05bba0
From 65ad32342584a286190e2ce56b8a3688f38f6535 Mon Sep 17 00:00:00 2001
05bba0
From: Max Reitz <mreitz@redhat.com>
05bba0
Date: Sat, 13 Jun 2015 16:22:17 +0200
05bba0
Subject: [PATCH 23/42] qcow2: Let inc_refcounts() return -errno
05bba0
05bba0
Message-id: <1434212556-3927-24-git-send-email-mreitz@redhat.com>
05bba0
Patchwork-id: 66042
05bba0
O-Subject: [RHEL-7.2 qemu-kvm PATCH 23/42] qcow2: Let inc_refcounts() return -errno
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
As of a future patch, inc_refcounts() will have to throw errors which
05bba0
are generally signaled by returning -errno. Therefore, let it return an
05bba0
integer which is either 0 for success or -errno and handle the -errno
05bba0
case in all callers.
05bba0
05bba0
Signed-off-by: Max Reitz <mreitz@redhat.com>
05bba0
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
05bba0
(cherry picked from commit fef4d3d5644f984e9fa427dea4f7cfa15de9059c)
05bba0
05bba0
Signed-off-by: Max Reitz <mreitz@redhat.com>
05bba0
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
05bba0
---
05bba0
 block/qcow2-refcount.c | 91 +++++++++++++++++++++++++++++++++-----------------
05bba0
 1 file changed, 60 insertions(+), 31 deletions(-)
05bba0
05bba0
diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c
05bba0
index 0dac4c9..4655fa2 100644
05bba0
--- a/block/qcow2-refcount.c
05bba0
+++ b/block/qcow2-refcount.c
05bba0
@@ -1053,17 +1053,18 @@ fail:
05bba0
  *
05bba0
  * Modifies the number of errors in res.
05bba0
  */
05bba0
-static void inc_refcounts(BlockDriverState *bs,
05bba0
-                          BdrvCheckResult *res,
05bba0
-                          uint16_t *refcount_table,
05bba0
-                          int64_t refcount_table_size,
05bba0
-                          int64_t offset, int64_t size)
05bba0
+static int inc_refcounts(BlockDriverState *bs,
05bba0
+                         BdrvCheckResult *res,
05bba0
+                         uint16_t *refcount_table,
05bba0
+                         int64_t refcount_table_size,
05bba0
+                         int64_t offset, int64_t size)
05bba0
 {
05bba0
     BDRVQcowState *s = bs->opaque;
05bba0
     uint64_t start, last, cluster_offset, k;
05bba0
 
05bba0
-    if (size <= 0)
05bba0
-        return;
05bba0
+    if (size <= 0) {
05bba0
+        return 0;
05bba0
+    }
05bba0
 
05bba0
     start = offset & ~(s->cluster_size - 1);
05bba0
     last = (offset + size - 1) & ~(s->cluster_size - 1);
05bba0
@@ -1083,6 +1084,8 @@ static void inc_refcounts(BlockDriverState *bs,
05bba0
             }
05bba0
         }
05bba0
     }
05bba0
+
05bba0
+    return 0;
05bba0
 }
05bba0
 
05bba0
 /* Flags for check_refcounts_l1() and check_refcounts_l2() */
05bba0
@@ -1137,8 +1140,11 @@ static int check_refcounts_l2(BlockDriverState *bs, BdrvCheckResult *res,
05bba0
             nb_csectors = ((l2_entry >> s->csize_shift) &
05bba0
                            s->csize_mask) + 1;
05bba0
             l2_entry &= s->cluster_offset_mask;
05bba0
-            inc_refcounts(bs, res, refcount_table, refcount_table_size,
05bba0
-                l2_entry & ~511, nb_csectors * 512);
05bba0
+            ret = inc_refcounts(bs, res, refcount_table, refcount_table_size,
05bba0
+                                l2_entry & ~511, nb_csectors * 512);
05bba0
+            if (ret < 0) {
05bba0
+                goto fail;
05bba0
+            }
05bba0
 
05bba0
             if (flags & CHECK_FRAG_INFO) {
05bba0
                 res->bfi.allocated_clusters++;
05bba0
@@ -1173,8 +1179,11 @@ static int check_refcounts_l2(BlockDriverState *bs, BdrvCheckResult *res,
05bba0
             }
05bba0
 
05bba0
             /* Mark cluster as used */
05bba0
-            inc_refcounts(bs, res, refcount_table,refcount_table_size,
05bba0
-                offset, s->cluster_size);
05bba0
+            ret = inc_refcounts(bs, res, refcount_table, refcount_table_size,
05bba0
+                                offset, s->cluster_size);
05bba0
+            if (ret < 0) {
05bba0
+                goto fail;
05bba0
+            }
05bba0
 
05bba0
             /* Correct offsets are cluster aligned */
05bba0
             if (offset & (s->cluster_size - 1)) {
05bba0
@@ -1217,19 +1226,20 @@ static int check_refcounts_l1(BlockDriverState *bs,
05bba0
                               int flags)
05bba0
 {
05bba0
     BDRVQcowState *s = bs->opaque;
05bba0
-    uint64_t *l1_table, l2_offset, l1_size2;
05bba0
+    uint64_t *l1_table = NULL, l2_offset, l1_size2;
05bba0
     int i, ret;
05bba0
 
05bba0
     l1_size2 = l1_size * sizeof(uint64_t);
05bba0
 
05bba0
     /* Mark L1 table as used */
05bba0
-    inc_refcounts(bs, res, refcount_table, refcount_table_size,
05bba0
-        l1_table_offset, l1_size2);
05bba0
+    ret = inc_refcounts(bs, res, refcount_table, refcount_table_size,
05bba0
+                        l1_table_offset, l1_size2);
05bba0
+    if (ret < 0) {
05bba0
+        goto fail;
05bba0
+    }
05bba0
 
05bba0
     /* Read L1 table entries from disk */
05bba0
-    if (l1_size2 == 0) {
05bba0
-        l1_table = NULL;
05bba0
-    } else {
05bba0
+    if (l1_size2 > 0) {
05bba0
         l1_table = g_try_malloc(l1_size2);
05bba0
         if (l1_table == NULL) {
05bba0
             ret = -ENOMEM;
05bba0
@@ -1252,8 +1262,11 @@ static int check_refcounts_l1(BlockDriverState *bs,
05bba0
         if (l2_offset) {
05bba0
             /* Mark L2 table as used */
05bba0
             l2_offset &= L1E_OFFSET_MASK;
05bba0
-            inc_refcounts(bs, res, refcount_table, refcount_table_size,
05bba0
-                l2_offset, s->cluster_size);
05bba0
+            ret = inc_refcounts(bs, res, refcount_table, refcount_table_size,
05bba0
+                                l2_offset, s->cluster_size);
05bba0
+            if (ret < 0) {
05bba0
+                goto fail;
05bba0
+            }
05bba0
 
05bba0
             /* L2 tables are cluster aligned */
05bba0
             if (l2_offset & (s->cluster_size - 1)) {
05bba0
@@ -1520,6 +1533,7 @@ static int check_refblocks(BlockDriverState *bs, BdrvCheckResult *res,
05bba0
 {
05bba0
     BDRVQcowState *s = bs->opaque;
05bba0
     int64_t i;
05bba0
+    int ret;
05bba0
 
05bba0
     for(i = 0; i < s->refcount_table_size; i++) {
05bba0
         uint64_t offset, cluster;
05bba0
@@ -1542,8 +1556,11 @@ static int check_refblocks(BlockDriverState *bs, BdrvCheckResult *res,
05bba0
         }
05bba0
 
05bba0
         if (offset != 0) {
05bba0
-            inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
-                offset, s->cluster_size);
05bba0
+            ret = inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
+                                offset, s->cluster_size);
05bba0
+            if (ret < 0) {
05bba0
+                return ret;
05bba0
+            }
05bba0
             if ((*refcount_table)[cluster] != 1) {
05bba0
                 fprintf(stderr, "%s refcount block %" PRId64
05bba0
                     " refcount=%d\n",
05bba0
@@ -1572,8 +1589,11 @@ static int check_refblocks(BlockDriverState *bs, BdrvCheckResult *res,
05bba0
                                sizeof(**refcount_table));
05bba0
                     }
05bba0
                     (*refcount_table)[cluster]--;
05bba0
-                    inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
-                            new_offset, s->cluster_size);
05bba0
+                    ret = inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
+                                        new_offset, s->cluster_size);
05bba0
+                    if (ret < 0) {
05bba0
+                        return ret;
05bba0
+                    }
05bba0
 
05bba0
                     res->corruptions_fixed++;
05bba0
                 } else {
05bba0
@@ -1605,8 +1625,11 @@ static int calculate_refcounts(BlockDriverState *bs, BdrvCheckResult *res,
05bba0
     }
05bba0
 
05bba0
     /* header */
05bba0
-    inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
-        0, s->cluster_size);
05bba0
+    ret = inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
+                        0, s->cluster_size);
05bba0
+    if (ret < 0) {
05bba0
+        return ret;
05bba0
+    }
05bba0
 
05bba0
     /* current L1 table */
05bba0
     ret = check_refcounts_l1(bs, res, *refcount_table, *nb_clusters,
05bba0
@@ -1619,18 +1642,24 @@ static int calculate_refcounts(BlockDriverState *bs, BdrvCheckResult *res,
05bba0
     for (i = 0; i < s->nb_snapshots; i++) {
05bba0
         sn = s->snapshots + i;
05bba0
         ret = check_refcounts_l1(bs, res, *refcount_table, *nb_clusters,
05bba0
-            sn->l1_table_offset, sn->l1_size, 0);
05bba0
+                                 sn->l1_table_offset, sn->l1_size, 0);
05bba0
         if (ret < 0) {
05bba0
             return ret;
05bba0
         }
05bba0
     }
05bba0
-    inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
-        s->snapshots_offset, s->snapshots_size);
05bba0
+    ret = inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
+                        s->snapshots_offset, s->snapshots_size);
05bba0
+    if (ret < 0) {
05bba0
+        return ret;
05bba0
+    }
05bba0
 
05bba0
     /* refcount data */
05bba0
-    inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
-        s->refcount_table_offset,
05bba0
-        s->refcount_table_size * sizeof(uint64_t));
05bba0
+    ret = inc_refcounts(bs, res, *refcount_table, *nb_clusters,
05bba0
+                        s->refcount_table_offset,
05bba0
+                        s->refcount_table_size * sizeof(uint64_t));
05bba0
+    if (ret < 0) {
05bba0
+        return ret;
05bba0
+    }
05bba0
 
05bba0
     return check_refblocks(bs, res, fix, refcount_table, nb_clusters);
05bba0
 }
05bba0
-- 
05bba0
1.8.3.1
05bba0