Commit f8de16605cf9864e258d91e95be0ed76bdeac744

Authored by aliguori
1 parent e68b98dc

Fix (at least one cause of) qcow2 corruption. (Nolan Leake)

qcow2's get_cluster_offset() scans forward in the l2 table to find other
clusters that have the same allocation status as the first cluster.
This is used by (among others) qcow_is_allocated().

Unfortunately, it was not checking to be sure that it didn't fall off
the end of the l2 table.  This patch adds that check.

The symptom that motivated me to look into this was that
bdrv_is_allocated() was returning false when there was in fact data
there.  This is one of many ways this bug could lead to data corruption.

I checked the other place that scans for consecutive unallocated blocks
(alloc_cluster_offset()) and it appears to be OK:
    nb_clusters = MIN(nb_clusters, s->l2_size - l2_index);
appears to prevent the same problem from occurring.

Signed-off-by: Nolan Leake <nolan <at> sigbus.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6977 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 4 additions and 0 deletions
block-qcow2.c
... ... @@ -761,6 +761,10 @@ static uint64_t get_cluster_offset(BlockDriverState *bs,
761 761  
762 762 nb_available = (nb_available >> 9) + index_in_cluster;
763 763  
  764 + if (nb_needed > nb_available) {
  765 + nb_needed = nb_available;
  766 + }
  767 +
764 768 cluster_offset = 0;
765 769  
766 770 /* seek the the l2 offset in the l1 table */
... ...