qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 3/5] virtio-blk: add vq_rq[] bounds check in virtio_blk_dma_r


From: Hanna Czenczek
Subject: Re: [PATCH 3/5] virtio-blk: add vq_rq[] bounds check in virtio_blk_dma_restart_cb()
Date: Tue, 6 Feb 2024 16:09:29 +0100
User-agent: Mozilla Thunderbird

On 05.02.24 18:26, Stefan Hajnoczi wrote:
Hanna Czenczek <hreitz@redhat.com> noted that the array index in
virtio_blk_dma_restart_cb() is not bounds-checked:

   g_autofree VirtIOBlockReq **vq_rq = g_new0(VirtIOBlockReq *, num_queues);
   ...
   while (rq) {
       VirtIOBlockReq *next = rq->next;
       uint16_t idx = virtio_get_queue_index(rq->vq);

       rq->next = vq_rq[idx];
                  ^^^^^^^^^^

The code is correct because both rq->vq and vq_rq[] depend on
num_queues, but this is indirect and not 100% obvious. Add an assertion.

Suggested-by: Hanna Czenczek <hreitz@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
  hw/block/virtio-blk.c | 1 +
  1 file changed, 1 insertion(+)

Reviewed-by: Hanna Czenczek <hreitz@redhat.com>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]