3 # Test qcow2 with external data files
5 # Copyright (C) 2019 Red Hat, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 owner
=kwolf@redhat.com
25 echo "QA output created by $seq"
27 status
=1 # failure is the default!
32 _rm_test_img
"$TEST_IMG.data"
33 _rm_test_img
"$TEST_IMG.src"
35 trap "_cleanup; exit \$status" 0 1 2 3 15
37 # get standard environment, filters and checks
44 # External data files do not work with compat=0.10, and because we use
45 # our own external data file, we cannot let the user specify one
46 _unsupported_imgopts
'compat=0.10' data_file
49 echo "=== Create and open image with external data file ==="
52 echo "With data file name in the image:"
53 _make_test_img
-o "data_file=$TEST_IMG.data" 64M
56 $QEMU_IO -c "open $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
57 $QEMU_IO -c "open -odata-file.filename=$TEST_IMG.data $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
58 $QEMU_IO -c "open -odata-file.filename=inexistent $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
61 echo "Data file required, but without data file name in the image:"
62 $QEMU_IMG amend
-odata_file= $TEST_IMG
64 $QEMU_IO -c "open $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
65 $QEMU_IO -c "open -odata-file.filename=$TEST_IMG.data $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
66 $QEMU_IO -c "open -odata-file.filename=inexistent $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
69 echo "Setting data-file for an image with internal data:"
72 $QEMU_IO -c "open -odata-file.filename=$TEST_IMG.data $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
73 $QEMU_IO -c "open -odata-file.filename=inexistent $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir
76 echo "=== Conflicting features ==="
79 echo "Convert to compressed target with data file:"
80 TEST_IMG
="$TEST_IMG.src" _make_test_img
64M
82 $QEMU_IO -c 'write -P 0x11 0 1M' \
83 -f $IMGFMT "$TEST_IMG.src" |
86 $QEMU_IMG convert
-f $IMGFMT -O $IMGFMT -c -odata_file="$TEST_IMG.data" \
87 "$TEST_IMG.src" "$TEST_IMG"
90 echo "Convert uncompressed, then write compressed data manually:"
91 $QEMU_IMG convert
-f $IMGFMT -O $IMGFMT -odata_file="$TEST_IMG.data" \
92 "$TEST_IMG.src" "$TEST_IMG"
93 $QEMU_IMG compare
"$TEST_IMG.src" "$TEST_IMG"
95 $QEMU_IO -c 'write -c -P 0x22 0 1M' \
96 -f $IMGFMT "$TEST_IMG" |
101 echo "Take an internal snapshot:"
103 $QEMU_IMG snapshot
-c test "$TEST_IMG"
107 echo "=== Standalone image with external data file (efficient) ==="
110 _make_test_img
-o "data_file=$TEST_IMG.data" 64M
112 echo -n "qcow2 file size before I/O: "
113 du
-b $TEST_IMG | cut
-f1
115 # Create image with the following layout
116 # 0-1 MB: Unallocated
117 # 1-2 MB: Written (pattern 0x11)
119 # 3-4 MB: Zero write over discarded space
120 # 4-5 MB: Zero write over written space
121 # 5-6 MB: Zero write over unallocated space
124 $QEMU_IO -c 'write -P 0x11 1M 4M' \
126 -c 'write -z 3M 3M' \
127 -f $IMGFMT "$TEST_IMG" |
132 $QEMU_IMG map
--output=json
"$TEST_IMG"
135 $QEMU_IO -c 'read -P 0 0 1M' \
136 -c 'read -P 0x11 1M 1M' \
137 -c 'read -P 0 2M 4M' \
138 -f $IMGFMT "$TEST_IMG" |
141 # Zero clusters are only marked as such in the qcow2 metadata, but contain
142 # stale data in the external data file
144 $QEMU_IO -c 'read -P 0 0 1M' \
145 -c 'read -P 0x11 1M 1M' \
146 -c 'read -P 0x11 4M 1M' \
147 -c 'read -P 0 5M 1M' \
148 -f raw
"$TEST_IMG.data" |
152 echo -n "qcow2 file size after I/O: "
153 du
-b $TEST_IMG | cut
-f1
156 echo "=== Standalone image with external data file (valid raw) ==="
159 _make_test_img
-o "data_file=$TEST_IMG.data,data_file_raw=on" 64M
161 echo -n "qcow2 file size before I/O: "
162 du
-b $TEST_IMG | cut
-f1
165 $QEMU_IO -c 'write -P 0x11 1M 4M' \
167 -c 'write -z 3M 3M' \
168 -f $IMGFMT "$TEST_IMG" |
173 $QEMU_IMG map
--output=json
"$TEST_IMG"
176 $QEMU_IO -c 'read -P 0 0 1M' \
177 -c 'read -P 0x11 1M 1M' \
178 -c 'read -P 0 2M 4M' \
179 -f $IMGFMT "$TEST_IMG" |
182 # Discarded clusters are only marked as such in the qcow2 metadata, but
183 # they can contain stale data in the external data file. Instead, zero
184 # clusters must be zeroed in the external data file too.
186 $QEMU_IO -c 'read -P 0 0 1M' \
187 -c 'read -P 0x11 1M 1M' \
188 -c 'read -P 0 3M 3M' \
189 -f raw
"$TEST_IMG".data |
192 echo -n "qcow2 file size after I/O: "
193 du
-b $TEST_IMG | cut
-f1
196 echo "=== bdrv_co_block_status test for file and offset=0 ==="
199 _make_test_img
-o "data_file=$TEST_IMG.data" 64M
201 $QEMU_IO -c 'write -P 0x11 0 1M' -f $IMGFMT "$TEST_IMG" | _filter_qemu_io
202 $QEMU_IO -c 'read -P 0x11 0 1M' -f $IMGFMT "$TEST_IMG" | _filter_qemu_io
203 $QEMU_IMG map
--output=human
"$TEST_IMG" | _filter_testdir
204 $QEMU_IMG map
--output=json
"$TEST_IMG"
207 echo "=== Copy offloading ==="
210 # Make use of copy offloading if the test host can provide it
211 _make_test_img
-o "data_file=$TEST_IMG.data" 64M
212 $QEMU_IMG convert
-f $IMGFMT -O $IMGFMT -n -C "$TEST_IMG.src" "$TEST_IMG"
213 $QEMU_IMG compare
-f $IMGFMT -F $IMGFMT "$TEST_IMG.src" "$TEST_IMG"
215 # blkdebug doesn't support copy offloading, so this tests the error path
216 $QEMU_IMG amend
-f $IMGFMT -o "data_file=blkdebug::$TEST_IMG.data" "$TEST_IMG"
217 $QEMU_IMG convert
-f $IMGFMT -O $IMGFMT -n -C "$TEST_IMG.src" "$TEST_IMG"
218 $QEMU_IMG compare
-f $IMGFMT -F $IMGFMT "$TEST_IMG.src" "$TEST_IMG"