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