qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium
@ 2011-03-07 16:01 Ryan Harper
  2011-03-07 16:26 ` Stefan Hajnoczi
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Ryan Harper @ 2011-03-07 16:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: Stefan Hajnoczi

If the block device has been closed, we no longer have a medium to submit
IO against, check for this before submitting io.  This prevents a segfault
further in the code where we dereference elements of the block driver.

Signed-off-by: Ryan Harper <ryanh@us.ibm.com>
---
v1->v2:
    - move bs->drv check to top of function to match other bdrv_
    functions
    - fill out reqs response with error code before
      returning -1.

 block.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/block.c b/block.c
index f7d91a2..1544d81 100644
--- a/block.c
+++ b/block.c
@@ -2398,6 +2398,14 @@ int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
     MultiwriteCB *mcb;
     int i;
 
+    /* don't submit writes if we don't have a medium */
+    if (bs->drv == NULL) {
+        for (i = 0; i < num_reqs; i++) {
+            reqs[i].error = -ENOMEDIUM;
+        }
+        return -1;
+    }
+
     if (num_reqs == 0) {
         return 0;
     }
-- 
1.7.1


-- 
Ryan Harper
Software Engineer; Linux Technology Center
IBM Corp., Austin, Tx
ryanh@us.ibm.com

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium
  2011-03-07 16:01 [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium Ryan Harper
@ 2011-03-07 16:26 ` Stefan Hajnoczi
  2011-03-07 16:27   ` Stefan Hajnoczi
  2011-03-08 15:06 ` Kevin Wolf
  2011-03-30  7:34 ` Markus Armbruster
  2 siblings, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2011-03-07 16:26 UTC (permalink / raw)
  To: Ryan Harper; +Cc: Stefan Hajnoczi, qemu-devel

On Mon, Mar 7, 2011 at 4:01 PM, Ryan Harper <ryanh@us.ibm.com> wrote:
> If the block device has been closed, we no longer have a medium to submit
> IO against, check for this before submitting io.  This prevents a segfault
> further in the code where we dereference elements of the block driver.
>
> Signed-off-by: Ryan Harper <ryanh@us.ibm.com>
> ---
> v1->v2:
>    - move bs->drv check to top of function to match other bdrv_
>    functions
>    - fill out reqs response with error code before
>      returning -1.
>
>  block.c |    8 ++++++++
>  1 files changed, 8 insertions(+), 0 deletions(-)

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium
  2011-03-07 16:26 ` Stefan Hajnoczi
@ 2011-03-07 16:27   ` Stefan Hajnoczi
  0 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2011-03-07 16:27 UTC (permalink / raw)
  To: Ryan Harper; +Cc: Stefan Hajnoczi, qemu-devel

I meant:
Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium
  2011-03-07 16:01 [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium Ryan Harper
  2011-03-07 16:26 ` Stefan Hajnoczi
@ 2011-03-08 15:06 ` Kevin Wolf
  2011-03-30  7:34 ` Markus Armbruster
  2 siblings, 0 replies; 5+ messages in thread
From: Kevin Wolf @ 2011-03-08 15:06 UTC (permalink / raw)
  To: Ryan Harper; +Cc: Stefan Hajnoczi, qemu-devel

Am 07.03.2011 17:01, schrieb Ryan Harper:
> If the block device has been closed, we no longer have a medium to submit
> IO against, check for this before submitting io.  This prevents a segfault
> further in the code where we dereference elements of the block driver.
> 
> Signed-off-by: Ryan Harper <ryanh@us.ibm.com>

Thanks, applied to the block branch.

Kevin

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium
  2011-03-07 16:01 [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium Ryan Harper
  2011-03-07 16:26 ` Stefan Hajnoczi
  2011-03-08 15:06 ` Kevin Wolf
@ 2011-03-30  7:34 ` Markus Armbruster
  2 siblings, 0 replies; 5+ messages in thread
From: Markus Armbruster @ 2011-03-30  7:34 UTC (permalink / raw)
  To: Justin M. Forbes; +Cc: Stefan Hajnoczi, Ryan Harper, qemu-devel

I think this (commit 301db7c2) should be cherry-picked into stable-0.14.

Ryan Harper <ryanh@us.ibm.com> writes:

> If the block device has been closed, we no longer have a medium to submit
> IO against, check for this before submitting io.  This prevents a segfault
> further in the code where we dereference elements of the block driver.
>
> Signed-off-by: Ryan Harper <ryanh@us.ibm.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-03-30  7:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-07 16:01 [Qemu-devel] [PATCH v2] Don't allow multiwrites against a block device without underlying medium Ryan Harper
2011-03-07 16:26 ` Stefan Hajnoczi
2011-03-07 16:27   ` Stefan Hajnoczi
2011-03-08 15:06 ` Kevin Wolf
2011-03-30  7:34 ` Markus Armbruster

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).