]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qcow2: Correct endianness in overlap check
authorMax Reitz <mreitz@redhat.com>
Mon, 30 Sep 2013 06:59:28 +0000 (08:59 +0200)
committerStefan Hajnoczi <stefanha@redhat.com>
Wed, 2 Oct 2013 09:06:35 +0000 (11:06 +0200)
If an inactive L1 table is loaded from disk, its entries are in big
endian and have to be converted to host byte order before using them.

Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
block/qcow2-refcount.c

index d2b7064a029b7be192552b7eac867537ae6f3e14..364eeba0facb02a934d8bf931b7e742a1287742b 100644 (file)
@@ -1733,8 +1733,8 @@ int qcow2_check_metadata_overlap(BlockDriverState *bs, int chk, int64_t offset,
             }
 
             for (j = 0; j < l1_sz; j++) {
-                if ((l1[j] & L1E_OFFSET_MASK) &&
-                    overlaps_with(l1[j] & L1E_OFFSET_MASK, s->cluster_size)) {
+                uint64_t l2_ofs = be64_to_cpu(l1[j]) & L1E_OFFSET_MASK;
+                if (l2_ofs && overlaps_with(l2_ofs, s->cluster_size)) {
                     g_free(l1);
                     return QCOW2_OL_INACTIVE_L2;
                 }