* [Qemu-devel] [PATCH] virtio-blk: fail unaligned requests
@ 2011-04-06 18:28 Christoph Hellwig
2011-04-07 8:46 ` Stefan Hajnoczi
2011-04-07 13:55 ` Kevin Wolf
0 siblings, 2 replies; 3+ messages in thread
From: Christoph Hellwig @ 2011-04-06 18:28 UTC (permalink / raw)
To: qemu-devel; +Cc: Conor Murphy
Like all block drivers virtio-blk should not allow small than block size
granularity access. But given that the protocol specifies a
byte unit length field we currently accept such requests, which cause
qemu to abort() in lower layers. Add checks to the main read and
write handlers to catch them early.
Reported-by: Conor Murphy <conor_murphy_virt@hotmail.com>
Tested-by: Conor Murphy <conor_murphy_virt@hotmail.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Index: qemu/hw/virtio-blk.c
===================================================================
--- qemu.orig/hw/virtio-blk.c 2011-03-30 11:46:10.268665534 -0700
+++ qemu/hw/virtio-blk.c 2011-03-30 11:49:45.655247322 -0700
@@ -290,6 +290,10 @@ static void virtio_blk_handle_write(Virt
virtio_blk_rw_complete(req, -EIO);
return;
}
+ if (req->qiov.size % req->dev->conf->logical_block_size) {
+ virtio_blk_rw_complete(req, -EIO);
+ return;
+ }
if (mrb->num_writes == 32) {
virtio_submit_multiwrite(req->dev->bs, mrb);
@@ -317,6 +321,10 @@ static void virtio_blk_handle_read(VirtI
virtio_blk_rw_complete(req, -EIO);
return;
}
+ if (req->qiov.size % req->dev->conf->logical_block_size) {
+ virtio_blk_rw_complete(req, -EIO);
+ return;
+ }
acb = bdrv_aio_readv(req->dev->bs, sector, &req->qiov,
req->qiov.size / BDRV_SECTOR_SIZE,
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] virtio-blk: fail unaligned requests
2011-04-06 18:28 [Qemu-devel] [PATCH] virtio-blk: fail unaligned requests Christoph Hellwig
@ 2011-04-07 8:46 ` Stefan Hajnoczi
2011-04-07 13:55 ` Kevin Wolf
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2011-04-07 8:46 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: Conor Murphy, qemu-devel
On Wed, Apr 06, 2011 at 08:28:34PM +0200, Christoph Hellwig wrote:
> Like all block drivers virtio-blk should not allow small than block size
> granularity access. But given that the protocol specifies a
> byte unit length field we currently accept such requests, which cause
> qemu to abort() in lower layers. Add checks to the main read and
> write handlers to catch them early.
>
> Reported-by: Conor Murphy <conor_murphy_virt@hotmail.com>
> Tested-by: Conor Murphy <conor_murphy_virt@hotmail.com>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] virtio-blk: fail unaligned requests
2011-04-06 18:28 [Qemu-devel] [PATCH] virtio-blk: fail unaligned requests Christoph Hellwig
2011-04-07 8:46 ` Stefan Hajnoczi
@ 2011-04-07 13:55 ` Kevin Wolf
1 sibling, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2011-04-07 13:55 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: Conor Murphy, qemu-devel
Am 06.04.2011 20:28, schrieb Christoph Hellwig:
> Like all block drivers virtio-blk should not allow small than block size
> granularity access. But given that the protocol specifies a
> byte unit length field we currently accept such requests, which cause
> qemu to abort() in lower layers. Add checks to the main read and
> write handlers to catch them early.
>
> Reported-by: Conor Murphy <conor_murphy_virt@hotmail.com>
> Tested-by: Conor Murphy <conor_murphy_virt@hotmail.com>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
Thanks, applied to the block branch.
Kevin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-04-07 13:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-06 18:28 [Qemu-devel] [PATCH] virtio-blk: fail unaligned requests Christoph Hellwig
2011-04-07 8:46 ` Stefan Hajnoczi
2011-04-07 13:55 ` Kevin Wolf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).