Blame SOURCES/kvm-raw-posix-Fix-raw_co_get_block_status-after-EOF.patch

9ae3a8
From d058befe667eb24da6884a78efc23443dd9de566 Mon Sep 17 00:00:00 2001
9ae3a8
From: Max Reitz <mreitz@redhat.com>
9ae3a8
Date: Tue, 18 Nov 2014 15:30:17 +0100
9ae3a8
Subject: [PATCH 38/41] raw-posix: Fix raw_co_get_block_status() after EOF
9ae3a8
9ae3a8
Message-id: <1416324620-16229-5-git-send-email-mreitz@redhat.com>
9ae3a8
Patchwork-id: 62439
9ae3a8
O-Subject: [RHEL-7.1/7.0.z qemu-kvm PATCH v3 4/7] raw-posix: Fix raw_co_get_block_status() after EOF
9ae3a8
Bugzilla: 1160237
9ae3a8
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
RH-Acked-by: Markus Armbruster <armbru@redhat.com>
9ae3a8
9ae3a8
As its comment states, raw_co_get_block_status() should unconditionally
9ae3a8
return 0 and set *pnum to 0 for after EOF.
9ae3a8
9ae3a8
An assertion after lseek(..., SEEK_HOLE) tried to catch this case by
9ae3a8
asserting that errno != -ENXIO (which would indicate a position after
9ae3a8
the EOF); but it should be errno != ENXIO instead. Regardless of that,
9ae3a8
there should be no such assertion at all. If bdrv_getlength() returned
9ae3a8
an outdated value and the image has been resized outside of qemu,
9ae3a8
lseek() will return with errno == ENXIO. Just return that value as an
9ae3a8
error then.
9ae3a8
9ae3a8
Setting *pnum to 0 and returning 0 should not be done here, as in that
9ae3a8
case we should update the device length as well. So, from qemu's
9ae3a8
perspective, the file has not been resized; it's just that there was an
9ae3a8
error querying sectors beyond a certain point (the actual file size).
9ae3a8
9ae3a8
Additionally, nb_sectors should be clamped against the image end. This
9ae3a8
was probably not an issue if FIEMAP or SEEK_HOLE/SEEK_DATA worked, but
9ae3a8
the fallback did not take this case into account.
9ae3a8
9ae3a8
Reported-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Signed-off-by: Max Reitz <mreitz@redhat.com>
9ae3a8
Reviewed-by: Eric Blake <eblake@redhat.com>
9ae3a8
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Message-id: 1414148280-17949-2-git-send-email-mreitz@redhat.com
9ae3a8
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
(cherry picked from commit e6d7ec32dd315422a023ed3425fe36df8c274eeb)
9ae3a8
9ae3a8
Signed-off-by: Max Reitz <mreitz@redhat.com>
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 block/raw-posix.c | 14 ++++++++++----
9ae3a8
 1 file changed, 10 insertions(+), 4 deletions(-)
9ae3a8
9ae3a8
diff --git a/block/raw-posix.c b/block/raw-posix.c
9ae3a8
index 781ebf3..75a81b1 100644
9ae3a8
--- a/block/raw-posix.c
9ae3a8
+++ b/block/raw-posix.c
9ae3a8
@@ -1362,10 +1362,6 @@ static int64_t try_seek_hole(BlockDriverState *bs, off_t start, off_t *data,
9ae3a8
 
9ae3a8
     *hole = lseek(s->fd, start, SEEK_HOLE);
9ae3a8
     if (*hole == -1) {
9ae3a8
-        /* -ENXIO indicates that sector_num was past the end of the file.
9ae3a8
-         * There is a virtual hole there.  */
9ae3a8
-        assert(errno != -ENXIO);
9ae3a8
-
9ae3a8
         return -errno;
9ae3a8
     }
9ae3a8
 
9ae3a8
@@ -1405,6 +1401,7 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
9ae3a8
                                                     int nb_sectors, int *pnum)
9ae3a8
 {
9ae3a8
     off_t start, data = 0, hole = 0;
9ae3a8
+    int64_t total_size;
9ae3a8
     int64_t ret;
9ae3a8
 
9ae3a8
     ret = fd_open(bs);
9ae3a8
@@ -1413,6 +1410,15 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
9ae3a8
     }
9ae3a8
 
9ae3a8
     start = sector_num * BDRV_SECTOR_SIZE;
9ae3a8
+    total_size = bdrv_getlength(bs);
9ae3a8
+    if (total_size < 0) {
9ae3a8
+        return total_size;
9ae3a8
+    } else if (start >= total_size) {
9ae3a8
+        *pnum = 0;
9ae3a8
+        return 0;
9ae3a8
+    } else if (start + nb_sectors * BDRV_SECTOR_SIZE > total_size) {
9ae3a8
+        nb_sectors = DIV_ROUND_UP(total_size - start, BDRV_SECTOR_SIZE);
9ae3a8
+    }
9ae3a8
 
9ae3a8
     ret = try_seek_hole(bs, start, &data, &hole, pnum);
9ae3a8
     if (ret < 0) {
9ae3a8
-- 
9ae3a8
1.8.3.1
9ae3a8