Blame SOURCES/kvm-iotests-Add-case-for-a-corrupted-inactive-image.patch

357786
From e9dd4092392c53954bbd394e4286f3ac431f47aa Mon Sep 17 00:00:00 2001
357786
From: Max Reitz <mreitz@redhat.com>
357786
Date: Mon, 18 Jun 2018 18:00:55 +0200
357786
Subject: [PATCH 49/54] iotests: Add case for a corrupted inactive image
357786
357786
RH-Author: Max Reitz <mreitz@redhat.com>
357786
Message-id: <20180618180055.22739-4-mreitz@redhat.com>
357786
Patchwork-id: 80794
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 3/3] iotests: Add case for a corrupted inactive image
357786
Bugzilla: 1588039
357786
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
357786
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
357786
RH-Acked-by: John Snow <jsnow@redhat.com>
357786
357786
Reviewed-by: John Snow <jsnow@redhat.com>
357786
Tested-by: Jeff Cody <jcody@redhat.com>
357786
Reviewed-by: Jeff Cody <jcody@redhat.com>
357786
Signed-off-by: Max Reitz <mreitz@redhat.com>
357786
Message-id: 20180606193702.7113-4-mreitz@redhat.com
357786
Signed-off-by: Max Reitz <mreitz@redhat.com>
357786
(cherry picked from commit c50abd175a88cd41c2c08339de91f6f6e4a7b162)
357786
Signed-off-by: Max Reitz <mreitz@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 tests/qemu-iotests/060     | 30 ++++++++++++++++++++++++++++++
357786
 tests/qemu-iotests/060.out | 14 ++++++++++++++
357786
 2 files changed, 44 insertions(+)
357786
357786
diff --git a/tests/qemu-iotests/060 b/tests/qemu-iotests/060
357786
index 6c7407f..7bdf609 100755
357786
--- a/tests/qemu-iotests/060
357786
+++ b/tests/qemu-iotests/060
357786
@@ -440,6 +440,36 @@ echo "{'execute': 'qmp_capabilities'}
357786
             -drive if=none,node-name=drive,file="$TEST_IMG",driver=qcow2 \
357786
     | _filter_qmp | _filter_qemu_io
357786
 
357786
+echo
357786
+echo "=== Testing incoming inactive corrupted image ==="
357786
+echo
357786
+
357786
+_make_test_img 64M
357786
+# Create an unaligned L1 entry, so qemu will signal a corruption when
357786
+# reading from the covered area
357786
+poke_file "$TEST_IMG" "$l1_offset" "\x00\x00\x00\x00\x2a\x2a\x2a\x2a"
357786
+
357786
+# Inactive images are effectively read-only images, so this should be a
357786
+# non-fatal corruption (which does not modify the image)
357786
+echo "{'execute': 'qmp_capabilities'}
357786
+      {'execute': 'human-monitor-command',
357786
+       'arguments': {'command-line': 'qemu-io drive \"read 0 512\"'}}
357786
+      {'execute': 'quit'}" \
357786
+    | $QEMU -qmp stdio -nographic -nodefaults \
357786
+            -blockdev "{'node-name': 'drive',
357786
+                        'driver': 'qcow2',
357786
+                        'file': {
357786
+                            'driver': 'file',
357786
+                            'filename': '$TEST_IMG'
357786
+                        }}" \
357786
+            -incoming exec:'cat /dev/null' \
357786
+            2>&1 \
357786
+    | _filter_qmp | _filter_qemu_io
357786
+
357786
+echo
357786
+# Image should not have been marked corrupt
357786
+_img_info --format-specific | grep 'corrupt:'
357786
+
357786
 # success, all done
357786
 echo "*** done"
357786
 rm -f $seq.full
357786
diff --git a/tests/qemu-iotests/060.out b/tests/qemu-iotests/060.out
357786
index 25d5c39..99234fb 100644
357786
--- a/tests/qemu-iotests/060.out
357786
+++ b/tests/qemu-iotests/060.out
357786
@@ -420,4 +420,18 @@ write failed: Input/output error
357786
 {"return": ""}
357786
 {"return": {}}
357786
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+
357786
+=== Testing incoming inactive corrupted image ===
357786
+
357786
+Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
357786
+QMP_VERSION
357786
+{"return": {}}
357786
+qcow2: Image is corrupt: L2 table offset 0x2a2a2a00 unaligned (L1 index: 0); further non-fatal corruption events will be suppressed
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "BLOCK_IMAGE_CORRUPTED", "data": {"device": "", "msg": "L2 table offset 0x2a2a2a00 unaligned (L1 index: 0)", "node-name": "drive", "fatal": false}}
357786
+read failed: Input/output error
357786
+{"return": ""}
357786
+{"return": {}}
357786
+{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false}}
357786
+
357786
+    corrupt: false
357786
 *** done
357786
-- 
357786
1.8.3.1
357786