xref: /openbmc/qemu/tests/qemu-iotests/081 (revision 91bfcdb0)
1#!/bin/bash
2#
3# Test Quorum block driver
4#
5# Copyright (C) 2013 Nodalink, SARL.
6#
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.
11#
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.
16#
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/>.
19#
20
21# creator
22owner=benoit@irqsave.net
23
24seq=`basename $0`
25echo "QA output created by $seq"
26
27here=`pwd`
28tmp=/tmp/$$
29status=1	# failure is the default!
30
31_cleanup()
32{
33    rm -rf $TEST_DIR/1.raw
34    rm -rf $TEST_DIR/2.raw
35    rm -rf $TEST_DIR/3.raw
36}
37trap "_cleanup; exit \$status" 0 1 2 3 15
38
39# get standard environment, filters and checks
40. ./common.rc
41. ./common.filter
42
43_supported_fmt raw
44_supported_proto file
45_supported_os Linux
46
47function do_run_qemu()
48{
49    echo Testing: "$@" | _filter_imgfmt
50    $QEMU -nographic -qmp stdio -serial none "$@"
51    echo
52}
53
54function run_qemu()
55{
56    do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_qmp\
57                          | _filter_qemu_io | _filter_generated_node_ids
58}
59
60test_quorum=$($QEMU_IMG --help|grep quorum)
61[ "$test_quorum" = "" ] && _supported_fmt quorum
62
63quorum="driver=raw,file.driver=quorum,file.vote-threshold=2"
64quorum="$quorum,file.children.0.file.filename=$TEST_DIR/1.raw"
65quorum="$quorum,file.children.1.file.filename=$TEST_DIR/2.raw"
66quorum="$quorum,file.children.2.file.filename=$TEST_DIR/3.raw"
67quorum="$quorum,file.children.0.driver=raw"
68quorum="$quorum,file.children.1.driver=raw"
69quorum="$quorum,file.children.2.driver=raw"
70
71echo
72echo "== creating quorum files =="
73
74size=10M
75
76TEST_IMG="$TEST_DIR/1.raw" _make_test_img $size
77TEST_IMG="$TEST_DIR/2.raw" _make_test_img $size
78TEST_IMG="$TEST_DIR/3.raw" _make_test_img $size
79
80echo
81echo "== writing images =="
82
83$QEMU_IO -c "open -o $quorum" -c "write -P 0x32 0 $size" | _filter_qemu_io
84
85echo
86echo "== checking quorum write =="
87
88$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io
89$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
90$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/3.raw" | _filter_qemu_io
91
92echo
93echo "== corrupting image =="
94
95$QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
96
97echo
98echo "== checking quorum correction =="
99
100$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
101
102echo
103echo "== checking mixed reference/option specification =="
104
105run_qemu -drive "file=$TEST_DIR/2.raw,format=$IMGFMT,if=none,id=drive2" <<EOF
106{ "execute": "qmp_capabilities" }
107{ "execute": "blockdev-add",
108    "arguments": {
109        "options": {
110            "driver": "quorum",
111            "id": "drive0-quorum",
112            "vote-threshold": 2,
113            "children": [
114                {
115                    "driver": "raw",
116                    "file": {
117                        "driver": "file",
118                        "filename": "$TEST_DIR/1.raw"
119                    }
120                },
121                "drive2",
122                {
123                    "driver": "raw",
124                    "file": {
125                        "driver": "file",
126                        "filename": "$TEST_DIR/3.raw"
127                    }
128                }
129            ]
130        }
131    }
132}
133{ "execute": "human-monitor-command",
134    "arguments": {
135        "command-line": 'qemu-io drive0-quorum "read -P 0x32 0 $size"'
136    }
137}
138{ "execute": "quit" }
139EOF
140
141echo
142echo "== using quorum rewrite corrupted mode =="
143
144quorum="$quorum,file.rewrite-corrupted=on"
145
146$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
147
148echo
149echo "== checking that quorum has corrected the corrupted file =="
150
151$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
152
153echo
154echo "== breaking quorum =="
155
156$QEMU_IO -c "write -P 0x41 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io
157$QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
158
159echo
160echo "== checking that quorum is broken =="
161
162$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
163
164# success, all done
165echo "*** done"
166rm -f $seq.full
167status=0
168