tests: fix a memory in test_socket_unix_abstract_good
[qemu/ar7.git] / tests / qemu-iotests / 244
blobefe3c0428bee34f2c3607e3b9faff03a141ea649
1 #!/usr/bin/env bash
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/>.
21 # creator
22 owner=kwolf@redhat.com
24 seq=$(basename $0)
25 echo "QA output created by $seq"
27 status=1 # failure is the default!
29 _cleanup()
31 _cleanup_test_img
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
38 . ./common.rc
39 . ./common.filter
41 _supported_fmt qcow2
42 _supported_proto file
43 _supported_os Linux
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
48 echo
49 echo "=== Create and open image with external data file ==="
50 echo
52 echo "With data file name in the image:"
53 _make_test_img -o "data_file=$TEST_IMG.data" 64M
54 _check_test_img
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
60 echo
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
68 echo
69 echo "Setting data-file for an image with internal data:"
70 _make_test_img 64M
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
75 echo
76 echo "=== Conflicting features ==="
77 echo
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" |
84 _filter_qemu_io
86 $QEMU_IMG convert -f $IMGFMT -O $IMGFMT -c -odata_file="$TEST_IMG.data" \
87 "$TEST_IMG.src" "$TEST_IMG"
89 echo
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" |
97 _filter_qemu_io
98 _check_test_img
100 echo
101 echo "Take an internal snapshot:"
103 $QEMU_IMG snapshot -c test "$TEST_IMG"
104 _check_test_img
106 echo
107 echo "=== Standalone image with external data file (efficient) ==="
108 echo
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)
118 # 2-3 MB: Discarded
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
123 echo
124 $QEMU_IO -c 'write -P 0x11 1M 4M' \
125 -c 'discard 2M 2M' \
126 -c 'write -z 3M 3M' \
127 -f $IMGFMT "$TEST_IMG" |
128 _filter_qemu_io
129 _check_test_img
131 echo
132 $QEMU_IMG map --output=json "$TEST_IMG"
134 echo
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" |
139 _filter_qemu_io
141 # Zero clusters are only marked as such in the qcow2 metadata, but contain
142 # stale data in the external data file
143 echo
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" |
149 _filter_qemu_io
152 echo -n "qcow2 file size after I/O: "
153 du -b $TEST_IMG | cut -f1
155 echo
156 echo "=== Standalone image with external data file (valid raw) ==="
157 echo
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
164 echo
165 $QEMU_IO -c 'write -P 0x11 1M 4M' \
166 -c 'discard 2M 2M' \
167 -c 'write -z 3M 3M' \
168 -f $IMGFMT "$TEST_IMG" |
169 _filter_qemu_io
170 _check_test_img
172 echo
173 $QEMU_IMG map --output=json "$TEST_IMG"
175 echo
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" |
180 _filter_qemu_io
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.
185 echo
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 |
190 _filter_qemu_io
192 echo -n "qcow2 file size after I/O: "
193 du -b $TEST_IMG | cut -f1
195 echo
196 echo "=== bdrv_co_block_status test for file and offset=0 ==="
197 echo
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"
206 echo
207 echo "=== Copy offloading ==="
208 echo
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"
220 # success, all done
221 echo "*** done"
222 rm -f $seq.full
223 status=0