]> git.proxmox.com Git - qemu.git/commitdiff
qcow2: Fix corruption after error in update_refcount
authorKevin Wolf <kwolf@redhat.com>
Fri, 28 May 2010 10:21:27 +0000 (12:21 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Wed, 9 Jun 2010 16:36:09 +0000 (18:36 +0200)
After it is done with updating refcounts in the cache, update_refcount writes
all changed entries to disk. If a refcount block allocation fails, however,
there was no change yet and therefore first_index = last_index = -1. Don't
treat -1 as a normal sector index (resulting in a 512 byte write!) but return
without updating anything in this case.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
(cherry picked from commit 86fa8da83771238de55dc44819a1a27bafef5353)

block/qcow2-refcount.c

index fa78e46ee228b421c99cb0a76bcc6f0661dd98c5..465d5d36e8f256cedf13c9b30610e2cdc15b2a73 100644 (file)
@@ -402,6 +402,10 @@ static int write_refcount_block_entries(BDRVQcowState *s,
         return 0;
     }
 
+    if (first_index < 0) {
+        return 0;
+    }
+
     first_index &= ~(REFCOUNTS_PER_SECTOR - 1);
     last_index = (last_index + REFCOUNTS_PER_SECTOR)
         & ~(REFCOUNTS_PER_SECTOR - 1);