|
|
05bba0 |
From 69fe324e32aad7e1afc6ad14021a6a08ad52646c Mon Sep 17 00:00:00 2001
|
|
|
05bba0 |
From: Max Reitz <mreitz@redhat.com>
|
|
|
05bba0 |
Date: Sat, 13 Jun 2015 16:22:27 +0200
|
|
|
05bba0 |
Subject: [PATCH 33/42] block: Respect underlying file's EOF
|
|
|
05bba0 |
|
|
|
05bba0 |
Message-id: <1434212556-3927-34-git-send-email-mreitz@redhat.com>
|
|
|
05bba0 |
Patchwork-id: 66052
|
|
|
05bba0 |
O-Subject: [RHEL-7.2 qemu-kvm PATCH 33/42] block: Respect underlying file's EOF
|
|
|
05bba0 |
Bugzilla: 1129893
|
|
|
05bba0 |
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
|
|
|
05bba0 |
RH-Acked-by: Fam Zheng <famz@redhat.com>
|
|
|
05bba0 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
05bba0 |
|
|
|
05bba0 |
BZ: 1129893
|
|
|
05bba0 |
|
|
|
05bba0 |
When falling through to the underlying file in
|
|
|
05bba0 |
bdrv_co_get_block_status(), if it returns that the query offset is
|
|
|
05bba0 |
beyond the file end (by setting *pnum to 0), return the range to be
|
|
|
05bba0 |
zero and do not let the number of sectors for which information could be
|
|
|
05bba0 |
obtained be overwritten.
|
|
|
05bba0 |
|
|
|
05bba0 |
Signed-off-by: Max Reitz <mreitz@redhat.com>
|
|
|
05bba0 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
05bba0 |
(cherry picked from commit 59c9a95fd29cfb3296ee58e8a446df251d14a459)
|
|
|
05bba0 |
|
|
|
05bba0 |
Signed-off-by: Max Reitz <mreitz@redhat.com>
|
|
|
05bba0 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
05bba0 |
---
|
|
|
05bba0 |
block.c | 15 +++++++++++++--
|
|
|
05bba0 |
1 file changed, 13 insertions(+), 2 deletions(-)
|
|
|
05bba0 |
|
|
|
05bba0 |
diff --git a/block.c b/block.c
|
|
|
05bba0 |
index 22ab762..fa6e192 100644
|
|
|
05bba0 |
--- a/block.c
|
|
|
05bba0 |
+++ b/block.c
|
|
|
05bba0 |
@@ -3797,13 +3797,24 @@ static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
|
|
|
05bba0 |
if (bs->file &&
|
|
|
05bba0 |
(ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
|
|
|
05bba0 |
(ret & BDRV_BLOCK_OFFSET_VALID)) {
|
|
|
05bba0 |
+ int file_pnum;
|
|
|
05bba0 |
+
|
|
|
05bba0 |
ret2 = bdrv_co_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS,
|
|
|
05bba0 |
- *pnum, pnum);
|
|
|
05bba0 |
+ *pnum, &file_pnum);
|
|
|
05bba0 |
if (ret2 >= 0) {
|
|
|
05bba0 |
/* Ignore errors. This is just providing extra information, it
|
|
|
05bba0 |
* is useful but not necessary.
|
|
|
05bba0 |
*/
|
|
|
05bba0 |
- ret |= (ret2 & BDRV_BLOCK_ZERO);
|
|
|
05bba0 |
+ if (!file_pnum) {
|
|
|
05bba0 |
+ /* !file_pnum indicates an offset at or beyond the EOF; it is
|
|
|
05bba0 |
+ * perfectly valid for the format block driver to point to such
|
|
|
05bba0 |
+ * offsets, so catch it and mark everything as zero */
|
|
|
05bba0 |
+ ret |= BDRV_BLOCK_ZERO;
|
|
|
05bba0 |
+ } else {
|
|
|
05bba0 |
+ /* Limit request to the range reported by the protocol driver */
|
|
|
05bba0 |
+ *pnum = file_pnum;
|
|
|
05bba0 |
+ ret |= (ret2 & BDRV_BLOCK_ZERO);
|
|
|
05bba0 |
+ }
|
|
|
05bba0 |
}
|
|
|
05bba0 |
}
|
|
|
05bba0 |
|
|
|
05bba0 |
--
|
|
|
05bba0 |
1.8.3.1
|
|
|
05bba0 |
|