]> Git Repo - qemu.git/commitdiff
virtio-blk: Fix use after free in error case
authorKevin Wolf <[email protected]>
Wed, 31 Mar 2010 15:46:59 +0000 (17:46 +0200)
committerAurelien Jarno <[email protected]>
Sun, 18 Apr 2010 21:55:19 +0000 (23:55 +0200)
virtio_blk_req_complete frees the request, so we can't access it any more when
calling bdrv_mon_event. Use the pointer that was copied earlier.

Signed-off-by: Kevin Wolf <[email protected]>
Signed-off-by: Luiz Capitulino <[email protected]>
hw/virtio-blk.c

index 99158408873b5a7b9e3f14d45c6d50782b7e56bb..01d77b8672da6c3ba7741e271830387b816b8fe0 100644 (file)
@@ -65,7 +65,7 @@ static int virtio_blk_handle_rw_error(VirtIOBlockReq *req, int error,
     VirtIOBlock *s = req->dev;
 
     if (action == BLOCK_ERR_IGNORE) {
-        bdrv_mon_event(req->dev->bs, BDRV_ACTION_IGNORE, is_read);
+        bdrv_mon_event(s->bs, BDRV_ACTION_IGNORE, is_read);
         return 0;
     }
 
@@ -73,11 +73,11 @@ static int virtio_blk_handle_rw_error(VirtIOBlockReq *req, int error,
             || action == BLOCK_ERR_STOP_ANY) {
         req->next = s->rq;
         s->rq = req;
-        bdrv_mon_event(req->dev->bs, BDRV_ACTION_STOP, is_read);
+        bdrv_mon_event(s->bs, BDRV_ACTION_STOP, is_read);
         vm_stop(0);
     } else {
         virtio_blk_req_complete(req, VIRTIO_BLK_S_IOERR);
-        bdrv_mon_event(req->dev->bs, BDRV_ACTION_REPORT, is_read);
+        bdrv_mon_event(s->bs, BDRV_ACTION_REPORT, is_read);
     }
 
     return 1;
This page took 0.035416 seconds and 4 git commands to generate.