block/blklogwrites: Make sure the log sector size is not too small
authorAri Sundholm <ari@tuxera.com>
Fri, 6 Jul 2018 12:00:38 +0000 (15:00 +0300)
committerKevin Wolf <kwolf@redhat.com>
Tue, 10 Jul 2018 11:17:48 +0000 (13:17 +0200)
The sector size needs to be large enough to accommodate the data
structures for the log super block and log write entries. This was
previously not properly checked, which made it possible to cause
QEMU to badly misbehave.

Signed-off-by: Ari Sundholm <ari@tuxera.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/blklogwrites.c

index 63bf6b34a91a4ae216c5e866fad8a8e77c8cc3ef..efa2c7a66ae39bac469a7e2112e7c08c7cb16da3 100644 (file)
@@ -89,7 +89,10 @@ static inline uint32_t blk_log_writes_log2(uint32_t value)
 
 static inline bool blk_log_writes_sector_size_valid(uint32_t sector_size)
 {
-    return sector_size < (1ull << 24) && is_power_of_2(sector_size);
+    return is_power_of_2(sector_size) &&
+        sector_size >= sizeof(struct log_write_super) &&
+        sector_size >= sizeof(struct log_write_entry) &&
+        sector_size < (1ull << 24);
 }
 
 static uint64_t blk_log_writes_find_cur_log_sector(BdrvChild *log,