1*11a82d14SPhilippe Mathieu-Daudé#!/usr/bin/env 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 Canetstatus=1 # failure is the default! 28c7fc5bc2SBenoît Canet 29c7fc5bc2SBenoît Canet_cleanup() 30c7fc5bc2SBenoît Canet{ 31c7fc5bc2SBenoît Canet rm -rf $TEST_DIR/1.raw 32c7fc5bc2SBenoît Canet rm -rf $TEST_DIR/2.raw 33c7fc5bc2SBenoît Canet rm -rf $TEST_DIR/3.raw 34c7fc5bc2SBenoît Canet} 35c7fc5bc2SBenoît Canettrap "_cleanup; exit \$status" 0 1 2 3 15 36c7fc5bc2SBenoît Canet 37c7fc5bc2SBenoît Canet# get standard environment, filters and checks 38c7fc5bc2SBenoît Canet. ./common.rc 39c7fc5bc2SBenoît Canet. ./common.filter 40c7fc5bc2SBenoît Canet 41c7fc5bc2SBenoît Canet_supported_fmt raw 42c5f7c0afSPeter Lieven_supported_proto file 43c7fc5bc2SBenoît Canet_supported_os Linux 44c7fc5bc2SBenoît Canet 458cedcffdSEric Blakedo_run_qemu() 466141f3bdSMax Reitz{ 476141f3bdSMax Reitz echo Testing: "$@" | _filter_imgfmt 486141f3bdSMax Reitz $QEMU -nographic -qmp stdio -serial none "$@" 496141f3bdSMax Reitz echo 506141f3bdSMax Reitz} 516141f3bdSMax Reitz 528cedcffdSEric Blakerun_qemu() 536141f3bdSMax Reitz{ 5415489c76SJeff Cody do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_qmp\ 5515489c76SJeff Cody | _filter_qemu_io | _filter_generated_node_ids 566141f3bdSMax Reitz} 576141f3bdSMax Reitz 584b350f1dSBenoît Canettest_quorum=$($QEMU_IMG --help|grep quorum) 594b350f1dSBenoît Canet[ "$test_quorum" = "" ] && _supported_fmt quorum 604b350f1dSBenoît Canet 618f9e835fSKevin Wolfquorum="driver=raw,file.driver=quorum,file.vote-threshold=2" 628f9e835fSKevin Wolfquorum="$quorum,file.children.0.file.filename=$TEST_DIR/1.raw" 63c7fc5bc2SBenoît Canetquorum="$quorum,file.children.1.file.filename=$TEST_DIR/2.raw" 648f9e835fSKevin Wolfquorum="$quorum,file.children.2.file.filename=$TEST_DIR/3.raw" 658f9e835fSKevin Wolfquorum="$quorum,file.children.0.driver=raw" 668f9e835fSKevin Wolfquorum="$quorum,file.children.1.driver=raw" 678f9e835fSKevin Wolfquorum="$quorum,file.children.2.driver=raw" 68c7fc5bc2SBenoît Canet 69c7fc5bc2SBenoît Canetecho 70c7fc5bc2SBenoît Canetecho "== creating quorum files ==" 71c7fc5bc2SBenoît Canet 72c7fc5bc2SBenoît Canetsize=10M 73c7fc5bc2SBenoît Canet 74c7fc5bc2SBenoît CanetTEST_IMG="$TEST_DIR/1.raw" _make_test_img $size 75c7fc5bc2SBenoît CanetTEST_IMG="$TEST_DIR/2.raw" _make_test_img $size 76c7fc5bc2SBenoît CanetTEST_IMG="$TEST_DIR/3.raw" _make_test_img $size 77c7fc5bc2SBenoît Canet 78c7fc5bc2SBenoît Canetecho 79c7fc5bc2SBenoît Canetecho "== writing images ==" 80c7fc5bc2SBenoît Canet 81c7fc5bc2SBenoît Canet$QEMU_IO -c "open -o $quorum" -c "write -P 0x32 0 $size" | _filter_qemu_io 82c7fc5bc2SBenoît Canet 83c7fc5bc2SBenoît Canetecho 84c7fc5bc2SBenoît Canetecho "== checking quorum write ==" 85c7fc5bc2SBenoît Canet 86c7fc5bc2SBenoît Canet$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io 87c7fc5bc2SBenoît Canet$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io 88c7fc5bc2SBenoît Canet$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/3.raw" | _filter_qemu_io 89c7fc5bc2SBenoît Canet 90c7fc5bc2SBenoît Canetecho 91c7fc5bc2SBenoît Canetecho "== corrupting image ==" 92c7fc5bc2SBenoît Canet 93c7fc5bc2SBenoît Canet$QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io 94c7fc5bc2SBenoît Canet 95c7fc5bc2SBenoît Canetecho 96c7fc5bc2SBenoît Canetecho "== checking quorum correction ==" 97c7fc5bc2SBenoît Canet 98c7fc5bc2SBenoît Canet$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io 99c7fc5bc2SBenoît Canet 100c7fc5bc2SBenoît Canetecho 1016141f3bdSMax Reitzecho "== checking mixed reference/option specification ==" 1026141f3bdSMax Reitz 1038e9e6530SMax Reitzrun_qemu <<EOF 1046141f3bdSMax Reitz{ "execute": "qmp_capabilities" } 1056141f3bdSMax Reitz{ "execute": "blockdev-add", 1066141f3bdSMax Reitz "arguments": { 1078e9e6530SMax Reitz "node-name": "drive2", 1088e9e6530SMax Reitz "driver": "$IMGFMT", 1098e9e6530SMax Reitz "file": { 1108e9e6530SMax Reitz "driver": "file", 1118e9e6530SMax Reitz "filename": "$TEST_DIR/2.raw" 1128e9e6530SMax Reitz } 1138e9e6530SMax Reitz } 1148e9e6530SMax Reitz} 1158e9e6530SMax Reitz{ "execute": "blockdev-add", 1168e9e6530SMax Reitz "arguments": { 1176141f3bdSMax Reitz "driver": "quorum", 11826d5fa10SKevin Wolf "node-name": "drive0-quorum", 1196141f3bdSMax Reitz "vote-threshold": 2, 1206141f3bdSMax Reitz "children": [ 1216141f3bdSMax Reitz { 1228e9e6530SMax Reitz "driver": "$IMGFMT", 1236141f3bdSMax Reitz "file": { 1246141f3bdSMax Reitz "driver": "file", 1256141f3bdSMax Reitz "filename": "$TEST_DIR/1.raw" 1266141f3bdSMax Reitz } 1276141f3bdSMax Reitz }, 1286141f3bdSMax Reitz "drive2", 1296141f3bdSMax Reitz { 1308e9e6530SMax Reitz "driver": "$IMGFMT", 1316141f3bdSMax Reitz "file": { 1326141f3bdSMax Reitz "driver": "file", 1336141f3bdSMax Reitz "filename": "$TEST_DIR/3.raw" 1346141f3bdSMax Reitz } 1356141f3bdSMax Reitz } 1366141f3bdSMax Reitz ] 1376141f3bdSMax Reitz } 1386141f3bdSMax Reitz} 1396141f3bdSMax Reitz{ "execute": "human-monitor-command", 1406141f3bdSMax Reitz "arguments": { 1416141f3bdSMax Reitz "command-line": 'qemu-io drive0-quorum "read -P 0x32 0 $size"' 1426141f3bdSMax Reitz } 1436141f3bdSMax Reitz} 1446141f3bdSMax Reitz{ "execute": "quit" } 1456141f3bdSMax ReitzEOF 1466141f3bdSMax Reitz 1476141f3bdSMax Reitzecho 148cf29a570SBenoît Canetecho "== using quorum rewrite corrupted mode ==" 149cf29a570SBenoît Canet 150cf29a570SBenoît Canetquorum="$quorum,file.rewrite-corrupted=on" 151cf29a570SBenoît Canet 152cf29a570SBenoît Canet$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io 153cf29a570SBenoît Canet 154cf29a570SBenoît Canetecho 155cf29a570SBenoît Canetecho "== checking that quorum has corrected the corrupted file ==" 156cf29a570SBenoît Canet 157cf29a570SBenoît Canet$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io 158cf29a570SBenoît Canet 159cf29a570SBenoît Canetecho 160c7fc5bc2SBenoît Canetecho "== breaking quorum ==" 161c7fc5bc2SBenoît Canet 162c7fc5bc2SBenoît Canet$QEMU_IO -c "write -P 0x41 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io 163cf29a570SBenoît Canet$QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io 164cf29a570SBenoît Canet 165c7fc5bc2SBenoît Canetecho 166c7fc5bc2SBenoît Canetecho "== checking that quorum is broken ==" 167c7fc5bc2SBenoît Canet 168c7fc5bc2SBenoît Canet$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io 169c7fc5bc2SBenoît Canet 17082c4c859SAlberto Garciaecho 17182c4c859SAlberto Garciaecho "== checking the blkverify mode with broken content ==" 17282c4c859SAlberto Garcia 17382c4c859SAlberto Garciaquorum="driver=raw,file.driver=quorum,file.vote-threshold=2,file.blkverify=on" 17482c4c859SAlberto Garciaquorum="$quorum,file.children.0.file.filename=$TEST_DIR/1.raw" 17582c4c859SAlberto Garciaquorum="$quorum,file.children.1.file.filename=$TEST_DIR/2.raw" 17682c4c859SAlberto Garciaquorum="$quorum,file.children.0.driver=raw" 17782c4c859SAlberto Garciaquorum="$quorum,file.children.1.driver=raw" 17882c4c859SAlberto Garcia 17982c4c859SAlberto Garcia$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io 18082c4c859SAlberto Garcia 18182c4c859SAlberto Garciaecho 18282c4c859SAlberto Garciaecho "== writing the same data to both files ==" 18382c4c859SAlberto Garcia 18482c4c859SAlberto Garcia$QEMU_IO -c "write -P 0x32 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io 18582c4c859SAlberto Garcia$QEMU_IO -c "write -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io 18682c4c859SAlberto Garcia 18782c4c859SAlberto Garciaecho 18882c4c859SAlberto Garciaecho "== checking the blkverify mode with valid content ==" 18982c4c859SAlberto Garcia 19082c4c859SAlberto Garcia$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io 19182c4c859SAlberto Garcia 19282c4c859SAlberto Garciaecho 19382c4c859SAlberto Garciaecho "== checking the blkverify mode with invalid settings ==" 19482c4c859SAlberto Garcia 19582c4c859SAlberto Garciaquorum="$quorum,file.children.2.file.filename=$TEST_DIR/3.raw" 19682c4c859SAlberto Garciaquorum="$quorum,file.children.2.driver=raw" 19782c4c859SAlberto Garcia 19882c4c859SAlberto Garcia$QEMU_IO -c "open -o $quorum" | _filter_qemu_io 19982c4c859SAlberto Garcia 20004f600efSAlberto Garciaecho 20104f600efSAlberto Garciaecho "== dynamically adding a child to a quorum ==" 20204f600efSAlberto Garcia 20304f600efSAlberto Garciafor verify in false true; do 20404f600efSAlberto Garcia run_qemu <<EOF 20504f600efSAlberto Garcia { "execute": "qmp_capabilities" } 20604f600efSAlberto Garcia { "execute": "blockdev-add", 20704f600efSAlberto Garcia "arguments": { 20804f600efSAlberto Garcia "driver": "quorum", 20904f600efSAlberto Garcia "node-name": "drive0-quorum", 21004f600efSAlberto Garcia "vote-threshold": 2, 21104f600efSAlberto Garcia "blkverify": ${verify}, 21204f600efSAlberto Garcia "children": [ 21304f600efSAlberto Garcia { 21404f600efSAlberto Garcia "driver": "$IMGFMT", 21504f600efSAlberto Garcia "file": { 21604f600efSAlberto Garcia "driver": "file", 21704f600efSAlberto Garcia "filename": "$TEST_DIR/1.raw" 21804f600efSAlberto Garcia } 21904f600efSAlberto Garcia }, 22004f600efSAlberto Garcia { 22104f600efSAlberto Garcia "driver": "$IMGFMT", 22204f600efSAlberto Garcia "file": { 22304f600efSAlberto Garcia "driver": "file", 22404f600efSAlberto Garcia "filename": "$TEST_DIR/2.raw" 22504f600efSAlberto Garcia } 22604f600efSAlberto Garcia } 22704f600efSAlberto Garcia ] 22804f600efSAlberto Garcia } 22904f600efSAlberto Garcia } 23004f600efSAlberto Garcia { "execute": "blockdev-add", 23104f600efSAlberto Garcia "arguments": { 23204f600efSAlberto Garcia "node-name": "drive3", 23304f600efSAlberto Garcia "driver": "$IMGFMT", 23404f600efSAlberto Garcia "file": { 23504f600efSAlberto Garcia "driver": "file", 23604f600efSAlberto Garcia "filename": "$TEST_DIR/2.raw" 23704f600efSAlberto Garcia } 23804f600efSAlberto Garcia } 23904f600efSAlberto Garcia } 24004f600efSAlberto Garcia { "execute": "x-blockdev-change", 24104f600efSAlberto Garcia "arguments": { "parent": "drive0-quorum", 24204f600efSAlberto Garcia "node": "drive3" } } 24304f600efSAlberto Garcia { "execute": "quit" } 24404f600efSAlberto GarciaEOF 24504f600efSAlberto Garciadone 24604f600efSAlberto Garcia 24704f600efSAlberto Garciaecho 24804f600efSAlberto Garciaecho "== dynamically removing a child from a quorum ==" 24904f600efSAlberto Garcia 25004f600efSAlberto Garciafor verify in false true; do 25104f600efSAlberto Garcia for vote_threshold in 1 2; do 25204f600efSAlberto Garcia run_qemu <<EOF 25304f600efSAlberto Garcia { "execute": "qmp_capabilities" } 25404f600efSAlberto Garcia { "execute": "blockdev-add", 25504f600efSAlberto Garcia "arguments": { 25604f600efSAlberto Garcia "driver": "quorum", 25704f600efSAlberto Garcia "node-name": "drive0-quorum", 25804f600efSAlberto Garcia "vote-threshold": ${vote_threshold}, 25904f600efSAlberto Garcia "blkverify": ${verify}, 26004f600efSAlberto Garcia "children": [ 26104f600efSAlberto Garcia { 26204f600efSAlberto Garcia "driver": "$IMGFMT", 26304f600efSAlberto Garcia "file": { 26404f600efSAlberto Garcia "driver": "file", 26504f600efSAlberto Garcia "filename": "$TEST_DIR/1.raw" 26604f600efSAlberto Garcia } 26704f600efSAlberto Garcia }, 26804f600efSAlberto Garcia { 26904f600efSAlberto Garcia "driver": "$IMGFMT", 27004f600efSAlberto Garcia "file": { 27104f600efSAlberto Garcia "driver": "file", 27204f600efSAlberto Garcia "filename": "$TEST_DIR/2.raw" 27304f600efSAlberto Garcia } 27404f600efSAlberto Garcia } 27504f600efSAlberto Garcia ] 27604f600efSAlberto Garcia } 27704f600efSAlberto Garcia } 27804f600efSAlberto Garcia { "execute": "x-blockdev-change", 27904f600efSAlberto Garcia "arguments": { "parent": "drive0-quorum", 28004f600efSAlberto Garcia "child": "children.1" } } 28104f600efSAlberto Garcia { "execute": "quit" } 28204f600efSAlberto GarciaEOF 28304f600efSAlberto Garcia done 28404f600efSAlberto Garciadone 28504f600efSAlberto Garcia 286c7fc5bc2SBenoît Canet# success, all done 287c7fc5bc2SBenoît Canetecho "*** done" 288c7fc5bc2SBenoît Canetrm -f $seq.full 289c7fc5bc2SBenoît Canetstatus=0 290