Blame SOURCES/kvm-qcow2-Repair-OFLAG_COPIED-when-fixing-leaks.patch

383d26
From dfcb9147d46e9e0da762349fd62a4ac620100cb4 Mon Sep 17 00:00:00 2001
383d26
From: Max Reitz <mreitz@redhat.com>
383d26
Date: Mon, 18 Jun 2018 17:16:54 +0200
383d26
Subject: [PATCH 45/54] qcow2: Repair OFLAG_COPIED when fixing leaks
383d26
383d26
RH-Author: Max Reitz <mreitz@redhat.com>
383d26
Message-id: <20180618171655.25987-2-mreitz@redhat.com>
383d26
Patchwork-id: 80782
383d26
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 1/2] qcow2: Repair OFLAG_COPIED when fixing leaks
383d26
Bugzilla: 1527085
383d26
RH-Acked-by: John Snow <jsnow@redhat.com>
383d26
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
383d26
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
383d26
Repairing OFLAG_COPIED is usually safe because it is done after the
383d26
refcounts have been repaired.  Therefore, it we did not find anyone else
383d26
referencing a data or L2 cluster, it makes no sense to not set
383d26
OFLAG_COPIED -- and the other direction (clearing OFLAG_COPIED) is
383d26
always safe, anyway, it may just induce leaks.
383d26
383d26
Furthermore, if OFLAG_COPIED is actually consistent with a wrong (leaky)
383d26
refcount, we will decrement the refcount with -r leaks, but OFLAG_COPIED
383d26
will then be wrong.  qemu-img check should not produce images that are
383d26
more corrupted afterwards then they were before.
383d26
383d26
Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=1527085
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
Reviewed-by: Eric Blake <eblake@redhat.com>
383d26
Message-id: 20180509200059.31125-2-mreitz@redhat.com
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
(cherry picked from commit 3cce51c919c7b4028cf6676dfcb80a45741b5117)
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 block/qcow2-refcount.c | 25 +++++++++++++++++--------
383d26
 1 file changed, 17 insertions(+), 8 deletions(-)
383d26
383d26
diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c
383d26
index 6b8b635..4e14c0a 100644
383d26
--- a/block/qcow2-refcount.c
383d26
+++ b/block/qcow2-refcount.c
383d26
@@ -1799,6 +1799,19 @@ static int check_oflag_copied(BlockDriverState *bs, BdrvCheckResult *res,
383d26
     int ret;
383d26
     uint64_t refcount;
383d26
     int i, j;
383d26
+    bool repair;
383d26
+
383d26
+    if (fix & BDRV_FIX_ERRORS) {
383d26
+        /* Always repair */
383d26
+        repair = true;
383d26
+    } else if (fix & BDRV_FIX_LEAKS) {
383d26
+        /* Repair only if that seems safe: This function is always
383d26
+         * called after the refcounts have been fixed, so the refcount
383d26
+         * is accurate if that repair was successful */
383d26
+        repair = !res->check_errors && !res->corruptions && !res->leaks;
383d26
+    } else {
383d26
+        repair = false;
383d26
+    }
383d26
 
383d26
     for (i = 0; i < s->l1_size; i++) {
383d26
         uint64_t l1_entry = s->l1_table[i];
383d26
@@ -1818,10 +1831,8 @@ static int check_oflag_copied(BlockDriverState *bs, BdrvCheckResult *res,
383d26
         if ((refcount == 1) != ((l1_entry & QCOW_OFLAG_COPIED) != 0)) {
383d26
             fprintf(stderr, "%s OFLAG_COPIED L2 cluster: l1_index=%d "
383d26
                     "l1_entry=%" PRIx64 " refcount=%" PRIu64 "\n",
383d26
-                    fix & BDRV_FIX_ERRORS ? "Repairing" :
383d26
-                                            "ERROR",
383d26
-                    i, l1_entry, refcount);
383d26
-            if (fix & BDRV_FIX_ERRORS) {
383d26
+                    repair ? "Repairing" : "ERROR", i, l1_entry, refcount);
383d26
+            if (repair) {
383d26
                 s->l1_table[i] = refcount == 1
383d26
                                ? l1_entry |  QCOW_OFLAG_COPIED
383d26
                                : l1_entry & ~QCOW_OFLAG_COPIED;
383d26
@@ -1862,10 +1873,8 @@ static int check_oflag_copied(BlockDriverState *bs, BdrvCheckResult *res,
383d26
                 if ((refcount == 1) != ((l2_entry & QCOW_OFLAG_COPIED) != 0)) {
383d26
                     fprintf(stderr, "%s OFLAG_COPIED data cluster: "
383d26
                             "l2_entry=%" PRIx64 " refcount=%" PRIu64 "\n",
383d26
-                            fix & BDRV_FIX_ERRORS ? "Repairing" :
383d26
-                                                    "ERROR",
383d26
-                            l2_entry, refcount);
383d26
-                    if (fix & BDRV_FIX_ERRORS) {
383d26
+                            repair ? "Repairing" : "ERROR", l2_entry, refcount);
383d26
+                    if (repair) {
383d26
                         l2_table[j] = cpu_to_be64(refcount == 1
383d26
                                     ? l2_entry |  QCOW_OFLAG_COPIED
383d26
                                     : l2_entry & ~QCOW_OFLAG_COPIED);
383d26
-- 
383d26
1.8.3.1
383d26