xref: /qemu/tests/qemu-iotests/081 (revision 26d5fa10ff9a0701bf5860e6548b9eda496b3474)
1c7fc5bc2SBenoît Canet#!/bin/bash
2c7fc5bc2SBenoît Canet#
3c7fc5bc2SBenoît Canet# Test Quorum block driver
4c7fc5bc2SBenoît Canet#
5c7fc5bc2SBenoît Canet# Copyright (C) 2013 Nodalink, SARL.
6c7fc5bc2SBenoît Canet#
7c7fc5bc2SBenoît Canet# This program is free software; you can redistribute it and/or modify
8c7fc5bc2SBenoît Canet# it under the terms of the GNU General Public License as published by
9c7fc5bc2SBenoît Canet# the Free Software Foundation; either version 2 of the License, or
10c7fc5bc2SBenoît Canet# (at your option) any later version.
11c7fc5bc2SBenoît Canet#
12c7fc5bc2SBenoît Canet# This program is distributed in the hope that it will be useful,
13c7fc5bc2SBenoît Canet# but WITHOUT ANY WARRANTY; without even the implied warranty of
14c7fc5bc2SBenoît Canet# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15c7fc5bc2SBenoît Canet# GNU General Public License for more details.
16c7fc5bc2SBenoît Canet#
17c7fc5bc2SBenoît Canet# You should have received a copy of the GNU General Public License
18c7fc5bc2SBenoît Canet# along with this program.  If not, see <http://www.gnu.org/licenses/>.
19c7fc5bc2SBenoît Canet#
20c7fc5bc2SBenoît Canet
21c7fc5bc2SBenoît Canet# creator
22c7fc5bc2SBenoît Canetowner=benoit@irqsave.net
23c7fc5bc2SBenoît Canet
24c7fc5bc2SBenoît Canetseq=`basename $0`
25c7fc5bc2SBenoît Canetecho "QA output created by $seq"
26c7fc5bc2SBenoît Canet
27c7fc5bc2SBenoît Canethere=`pwd`
28c7fc5bc2SBenoît Canetstatus=1	# failure is the default!
29c7fc5bc2SBenoît Canet
30c7fc5bc2SBenoît Canet_cleanup()
31c7fc5bc2SBenoît Canet{
32c7fc5bc2SBenoît Canet    rm -rf $TEST_DIR/1.raw
33c7fc5bc2SBenoît Canet    rm -rf $TEST_DIR/2.raw
34c7fc5bc2SBenoît Canet    rm -rf $TEST_DIR/3.raw
35c7fc5bc2SBenoît Canet}
36c7fc5bc2SBenoît Canettrap "_cleanup; exit \$status" 0 1 2 3 15
37c7fc5bc2SBenoît Canet
38c7fc5bc2SBenoît Canet# get standard environment, filters and checks
39c7fc5bc2SBenoît Canet. ./common.rc
40c7fc5bc2SBenoît Canet. ./common.filter
41c7fc5bc2SBenoît Canet
42c7fc5bc2SBenoît Canet_supported_fmt raw
43c5f7c0afSPeter Lieven_supported_proto file
44c7fc5bc2SBenoît Canet_supported_os Linux
45c7fc5bc2SBenoît Canet
466141f3bdSMax Reitzfunction do_run_qemu()
476141f3bdSMax Reitz{
486141f3bdSMax Reitz    echo Testing: "$@" | _filter_imgfmt
496141f3bdSMax Reitz    $QEMU -nographic -qmp stdio -serial none "$@"
506141f3bdSMax Reitz    echo
516141f3bdSMax Reitz}
526141f3bdSMax Reitz
536141f3bdSMax Reitzfunction run_qemu()
546141f3bdSMax Reitz{
5515489c76SJeff Cody    do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_qmp\
5615489c76SJeff Cody                          | _filter_qemu_io | _filter_generated_node_ids
576141f3bdSMax Reitz}
586141f3bdSMax Reitz
594b350f1dSBenoît Canettest_quorum=$($QEMU_IMG --help|grep quorum)
604b350f1dSBenoît Canet[ "$test_quorum" = "" ] && _supported_fmt quorum
614b350f1dSBenoît Canet
628f9e835fSKevin Wolfquorum="driver=raw,file.driver=quorum,file.vote-threshold=2"
638f9e835fSKevin Wolfquorum="$quorum,file.children.0.file.filename=$TEST_DIR/1.raw"
64c7fc5bc2SBenoît Canetquorum="$quorum,file.children.1.file.filename=$TEST_DIR/2.raw"
658f9e835fSKevin Wolfquorum="$quorum,file.children.2.file.filename=$TEST_DIR/3.raw"
668f9e835fSKevin Wolfquorum="$quorum,file.children.0.driver=raw"
678f9e835fSKevin Wolfquorum="$quorum,file.children.1.driver=raw"
688f9e835fSKevin Wolfquorum="$quorum,file.children.2.driver=raw"
69c7fc5bc2SBenoît Canet
70c7fc5bc2SBenoît Canetecho
71c7fc5bc2SBenoît Canetecho "== creating quorum files =="
72c7fc5bc2SBenoît Canet
73c7fc5bc2SBenoît Canetsize=10M
74c7fc5bc2SBenoît Canet
75c7fc5bc2SBenoît CanetTEST_IMG="$TEST_DIR/1.raw" _make_test_img $size
76c7fc5bc2SBenoît CanetTEST_IMG="$TEST_DIR/2.raw" _make_test_img $size
77c7fc5bc2SBenoît CanetTEST_IMG="$TEST_DIR/3.raw" _make_test_img $size
78c7fc5bc2SBenoît Canet
79c7fc5bc2SBenoît Canetecho
80c7fc5bc2SBenoît Canetecho "== writing images =="
81c7fc5bc2SBenoît Canet
82c7fc5bc2SBenoît Canet$QEMU_IO -c "open -o $quorum" -c "write -P 0x32 0 $size" | _filter_qemu_io
83c7fc5bc2SBenoît Canet
84c7fc5bc2SBenoît Canetecho
85c7fc5bc2SBenoît Canetecho "== checking quorum write =="
86c7fc5bc2SBenoît Canet
87c7fc5bc2SBenoît Canet$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io
88c7fc5bc2SBenoît Canet$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
89c7fc5bc2SBenoît Canet$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/3.raw" | _filter_qemu_io
90c7fc5bc2SBenoît Canet
91c7fc5bc2SBenoît Canetecho
92c7fc5bc2SBenoît Canetecho "== corrupting image =="
93c7fc5bc2SBenoît Canet
94c7fc5bc2SBenoît Canet$QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
95c7fc5bc2SBenoît Canet
96c7fc5bc2SBenoît Canetecho
97c7fc5bc2SBenoît Canetecho "== checking quorum correction =="
98c7fc5bc2SBenoît Canet
99c7fc5bc2SBenoît Canet$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
100c7fc5bc2SBenoît Canet
101c7fc5bc2SBenoît Canetecho
1026141f3bdSMax Reitzecho "== checking mixed reference/option specification =="
1036141f3bdSMax Reitz
1048e9e6530SMax Reitzrun_qemu <<EOF
1056141f3bdSMax Reitz{ "execute": "qmp_capabilities" }
1066141f3bdSMax Reitz{ "execute": "blockdev-add",
1076141f3bdSMax Reitz    "arguments": {
1086141f3bdSMax Reitz        "options": {
1098e9e6530SMax Reitz            "node-name": "drive2",
1108e9e6530SMax Reitz            "driver": "$IMGFMT",
1118e9e6530SMax Reitz            "file": {
1128e9e6530SMax Reitz                "driver": "file",
1138e9e6530SMax Reitz                "filename": "$TEST_DIR/2.raw"
1148e9e6530SMax Reitz            }
1158e9e6530SMax Reitz        }
1168e9e6530SMax Reitz    }
1178e9e6530SMax Reitz}
1188e9e6530SMax Reitz{ "execute": "blockdev-add",
1198e9e6530SMax Reitz    "arguments": {
1208e9e6530SMax Reitz        "options": {
1216141f3bdSMax Reitz            "driver": "quorum",
122*26d5fa10SKevin Wolf            "node-name": "drive0-quorum",
1236141f3bdSMax Reitz            "vote-threshold": 2,
1246141f3bdSMax Reitz            "children": [
1256141f3bdSMax Reitz                {
1268e9e6530SMax Reitz                    "driver": "$IMGFMT",
1276141f3bdSMax Reitz                    "file": {
1286141f3bdSMax Reitz                        "driver": "file",
1296141f3bdSMax Reitz                        "filename": "$TEST_DIR/1.raw"
1306141f3bdSMax Reitz                    }
1316141f3bdSMax Reitz                },
1326141f3bdSMax Reitz                "drive2",
1336141f3bdSMax Reitz                {
1348e9e6530SMax Reitz                    "driver": "$IMGFMT",
1356141f3bdSMax Reitz                    "file": {
1366141f3bdSMax Reitz                        "driver": "file",
1376141f3bdSMax Reitz                        "filename": "$TEST_DIR/3.raw"
1386141f3bdSMax Reitz                    }
1396141f3bdSMax Reitz                }
1406141f3bdSMax Reitz            ]
1416141f3bdSMax Reitz        }
1426141f3bdSMax Reitz    }
1436141f3bdSMax Reitz}
1446141f3bdSMax Reitz{ "execute": "human-monitor-command",
1456141f3bdSMax Reitz    "arguments": {
1466141f3bdSMax Reitz        "command-line": 'qemu-io drive0-quorum "read -P 0x32 0 $size"'
1476141f3bdSMax Reitz    }
1486141f3bdSMax Reitz}
1496141f3bdSMax Reitz{ "execute": "quit" }
1506141f3bdSMax ReitzEOF
1516141f3bdSMax Reitz
1526141f3bdSMax Reitzecho
153cf29a570SBenoît Canetecho "== using quorum rewrite corrupted mode =="
154cf29a570SBenoît Canet
155cf29a570SBenoît Canetquorum="$quorum,file.rewrite-corrupted=on"
156cf29a570SBenoît Canet
157cf29a570SBenoît Canet$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
158cf29a570SBenoît Canet
159cf29a570SBenoît Canetecho
160cf29a570SBenoît Canetecho "== checking that quorum has corrected the corrupted file =="
161cf29a570SBenoît Canet
162cf29a570SBenoît Canet$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
163cf29a570SBenoît Canet
164cf29a570SBenoît Canetecho
165c7fc5bc2SBenoît Canetecho "== breaking quorum =="
166c7fc5bc2SBenoît Canet
167c7fc5bc2SBenoît Canet$QEMU_IO -c "write -P 0x41 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io
168cf29a570SBenoît Canet$QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
169cf29a570SBenoît Canet
170c7fc5bc2SBenoît Canetecho
171c7fc5bc2SBenoît Canetecho "== checking that quorum is broken =="
172c7fc5bc2SBenoît Canet
173c7fc5bc2SBenoît Canet$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
174c7fc5bc2SBenoît Canet
175c7fc5bc2SBenoît Canet# success, all done
176c7fc5bc2SBenoît Canetecho "*** done"
177c7fc5bc2SBenoît Canetrm -f $seq.full
178c7fc5bc2SBenoît Canetstatus=0
179