Docs/RCU: Correct sample code of qatomic_rcu_set
[qemu/ar7.git] / tests / qemu-iotests / 312
blob41340494b0c8b6c46a4413a731dc9e2c0223d17a
1 #!/usr/bin/env bash
3 # Test drive-mirror with quorum
5 # The goal of this test is to check how the quorum driver reports
6 # regions that are known to read as zeroes (BDRV_BLOCK_ZERO). The idea
7 # is that drive-mirror will try the efficient representation of zeroes
8 # in the destination image instead of writing actual zeroes.
10 # Copyright (C) 2020 Igalia, S.L.
11 # Author: Alberto Garcia <berto@igalia.com>
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
27 # creator
28 owner=berto@igalia.com
30 seq=`basename $0`
31 echo "QA output created by $seq"
33 status=1 # failure is the default!
35 _cleanup()
37 _rm_test_img "$TEST_IMG.0"
38 _rm_test_img "$TEST_IMG.1"
39 _rm_test_img "$TEST_IMG.2"
40 _rm_test_img "$TEST_IMG.3"
41 _cleanup_qemu
43 trap "_cleanup; exit \$status" 0 1 2 3 15
45 # get standard environment, filters and checks
46 . ./common.rc
47 . ./common.filter
48 . ./common.qemu
50 _supported_fmt qcow2
51 _supported_proto file
52 _supported_os Linux
53 _unsupported_imgopts cluster_size data_file
55 echo
56 echo '### Create all images' # three source (quorum), one destination
57 echo
58 TEST_IMG="$TEST_IMG.0" _make_test_img -o cluster_size=64k 10M
59 TEST_IMG="$TEST_IMG.1" _make_test_img -o cluster_size=64k 10M
60 TEST_IMG="$TEST_IMG.2" _make_test_img -o cluster_size=64k 10M
61 TEST_IMG="$TEST_IMG.3" _make_test_img -o cluster_size=64k 10M
63 quorum="driver=raw,file.driver=quorum,file.vote-threshold=2"
64 quorum="$quorum,file.children.0.file.filename=$TEST_IMG.0"
65 quorum="$quorum,file.children.1.file.filename=$TEST_IMG.1"
66 quorum="$quorum,file.children.2.file.filename=$TEST_IMG.2"
67 quorum="$quorum,file.children.0.driver=$IMGFMT"
68 quorum="$quorum,file.children.1.driver=$IMGFMT"
69 quorum="$quorum,file.children.2.driver=$IMGFMT"
71 echo
72 echo '### Output of qemu-img map (empty quorum)'
73 echo
74 $QEMU_IMG map --image-opts $quorum | _filter_qemu_img_map
76 # Now we write data to the quorum. All three images will read as
77 # zeroes in all cases, but with different ways to represent them
78 # (unallocated clusters, zero clusters, data clusters with zeroes)
79 # that will have an effect on how the data will be mirrored and the
80 # output of qemu-img map on the resulting image.
81 echo
82 echo '### Write data to the quorum'
83 echo
84 # Test 1: data regions surrounded by unallocated clusters.
85 # Three data regions, the largest one (0x30000) will be picked, end result:
86 # offset 0x10000, length 0x30000 -> data
87 $QEMU_IO -c "write -P 0 $((0x10000)) $((0x10000))" "$TEST_IMG.0" | _filter_qemu_io
88 $QEMU_IO -c "write -P 0 $((0x10000)) $((0x30000))" "$TEST_IMG.1" | _filter_qemu_io
89 $QEMU_IO -c "write -P 0 $((0x10000)) $((0x20000))" "$TEST_IMG.2" | _filter_qemu_io
91 # Test 2: zero regions surrounded by data clusters.
92 # First we allocate the data clusters.
93 $QEMU_IO -c "open -o $quorum" -c "write -P 0 $((0x100000)) $((0x40000))" | _filter_qemu_io
95 # Three zero regions, the smallest one (0x10000) will be picked, end result:
96 # offset 0x100000, length 0x10000 -> data
97 # offset 0x110000, length 0x10000 -> zeroes
98 # offset 0x120000, length 0x20000 -> data
99 $QEMU_IO -c "write -z $((0x110000)) $((0x10000))" "$TEST_IMG.0" | _filter_qemu_io
100 $QEMU_IO -c "write -z $((0x110000)) $((0x30000))" "$TEST_IMG.1" | _filter_qemu_io
101 $QEMU_IO -c "write -z $((0x110000)) $((0x20000))" "$TEST_IMG.2" | _filter_qemu_io
103 # Test 3: zero clusters surrounded by unallocated clusters.
104 # Everything reads as zeroes, no effect on the end result.
105 $QEMU_IO -c "write -z $((0x150000)) $((0x10000))" "$TEST_IMG.0" | _filter_qemu_io
106 $QEMU_IO -c "write -z $((0x150000)) $((0x30000))" "$TEST_IMG.1" | _filter_qemu_io
107 $QEMU_IO -c "write -z $((0x150000)) $((0x20000))" "$TEST_IMG.2" | _filter_qemu_io
109 # Test 4: mix of data and zero clusters.
110 # The zero region will be ignored in favor of the largest data region
111 # (0x20000), end result:
112 # offset 0x200000, length 0x20000 -> data
113 $QEMU_IO -c "write -P 0 $((0x200000)) $((0x10000))" "$TEST_IMG.0" | _filter_qemu_io
114 $QEMU_IO -c "write -z $((0x200000)) $((0x30000))" "$TEST_IMG.1" | _filter_qemu_io
115 $QEMU_IO -c "write -P 0 $((0x200000)) $((0x20000))" "$TEST_IMG.2" | _filter_qemu_io
117 # Test 5: write data to a region and then zeroize it, doing it
118 # directly on the quorum device instead of the individual images.
119 # This has no effect on the end result but proves that the quorum driver
120 # supports 'write -z'.
121 $QEMU_IO -c "open -o $quorum" -c "write -P 1 $((0x250000)) $((0x10000))" | _filter_qemu_io
122 # Verify the data that we just wrote
123 $QEMU_IO -c "open -o $quorum" -c "read -P 1 $((0x250000)) $((0x10000))" | _filter_qemu_io
124 $QEMU_IO -c "open -o $quorum" -c "write -z $((0x250000)) $((0x10000))" | _filter_qemu_io
125 # Now it should read back as zeroes
126 $QEMU_IO -c "open -o $quorum" -c "read -P 0 $((0x250000)) $((0x10000))" | _filter_qemu_io
128 echo
129 echo '### Launch the drive-mirror job'
130 echo
131 qemu_comm_method="qmp" _launch_qemu -drive if=virtio,"$quorum"
132 h=$QEMU_HANDLE
133 _send_qemu_cmd $h "{ 'execute': 'qmp_capabilities' }" 'return'
135 _send_qemu_cmd $h \
136 "{'execute': 'drive-mirror',
137 'arguments': {'device': 'virtio0',
138 'format': '$IMGFMT',
139 'target': '$TEST_IMG.3',
140 'sync': 'full',
141 'mode': 'existing' }}" \
142 "BLOCK_JOB_READY.*virtio0"
144 _send_qemu_cmd $h \
145 "{ 'execute': 'block-job-complete',
146 'arguments': { 'device': 'virtio0' } }" \
147 'BLOCK_JOB_COMPLETED'
149 _send_qemu_cmd $h "{ 'execute': 'quit' }" ''
151 echo
152 echo '### Output of qemu-img map (destination image)'
153 echo
154 $QEMU_IMG map "$TEST_IMG.3" | _filter_qemu_img_map
156 # success, all done
157 echo "*** done"
158 rm -f $seq.full
159 status=0