1#!/bin/bash 2# 3# Test command line configuration of block devices and driver-specific options 4# 5# Copyright (C) 2013 Red Hat, Inc. 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=kwolf@redhat.com 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 _cleanup_test_img 34} 35trap "_cleanup; exit \$status" 0 1 2 3 15 36 37# get standard environment, filters and checks 38. ./common.rc 39. ./common.filter 40 41_supported_fmt qcow2 42_supported_proto file 43_supported_os Linux 44 45function do_run_qemu() 46{ 47 echo Testing: "$@" 48 ( 49 if ! test -t 0; then 50 while read cmd; do 51 echo $cmd 52 done 53 fi 54 echo quit 55 ) | $QEMU -nographic -monitor stdio -serial none "$@" 56 echo 57} 58 59function run_qemu() 60{ 61 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu 62} 63 64size=128M 65 66_make_test_img $size 67cp "$TEST_IMG" "$TEST_IMG.orig" 68mv "$TEST_IMG" "$TEST_IMG.base" 69_make_test_img -b "$TEST_IMG.base" $size 70 71echo 72echo === Unknown option === 73echo 74 75run_qemu -drive file="$TEST_IMG",format=qcow2,unknown_opt= 76run_qemu -drive file="$TEST_IMG",format=qcow2,unknown_opt=on 77run_qemu -drive file="$TEST_IMG",format=qcow2,unknown_opt=1234 78run_qemu -drive file="$TEST_IMG",format=qcow2,unknown_opt=foo 79 80echo 81echo === Unknown protocol option === 82echo 83 84run_qemu -drive file="$TEST_IMG",format=qcow2,file.unknown_opt= 85run_qemu -drive file="$TEST_IMG",format=qcow2,file.unknown_opt=on 86run_qemu -drive file="$TEST_IMG",format=qcow2,file.unknown_opt=1234 87run_qemu -drive file="$TEST_IMG",format=qcow2,file.unknown_opt=foo 88 89echo 90echo === Invalid format === 91echo 92 93run_qemu -drive file="$TEST_IMG",format=foo 94run_qemu -drive file="$TEST_IMG",driver=foo 95run_qemu -drive file="$TEST_IMG",driver=raw,format=qcow2 96run_qemu -drive file="$TEST_IMG",driver=qcow2,format=qcow2 97 98echo 99echo === Overriding backing file === 100echo 101 102echo "info block" | run_qemu -drive file="$TEST_IMG",driver=qcow2,backing.file.filename="$TEST_IMG.orig" -nodefaults 103 104# Drivers that don't support backing files 105run_qemu -drive file="$TEST_IMG",driver=raw,backing.file.filename="$TEST_IMG.orig" 106run_qemu -drive file="$TEST_IMG",file.backing.driver=file,file.backing.filename="$TEST_IMG.orig" 107run_qemu -drive file="$TEST_IMG",file.backing.driver=qcow2,file.backing.file.filename="$TEST_IMG.orig" 108 109echo 110echo === Enable and disable lazy refcounting on the command line, plus some invalid values === 111echo 112 113run_qemu -drive file="$TEST_IMG",format=qcow2,lazy-refcounts=on 114run_qemu -drive file="$TEST_IMG",format=qcow2,lazy-refcounts=off 115run_qemu -drive file="$TEST_IMG",format=qcow2,lazy-refcounts= 116run_qemu -drive file="$TEST_IMG",format=qcow2,lazy-refcounts=42 117run_qemu -drive file="$TEST_IMG",format=qcow2,lazy-refcounts=foo 118 119 120echo 121echo === With version 2 images enabling lazy refcounts must fail === 122echo 123 124_make_test_img -ocompat=0.10 $size 125 126run_qemu -drive file="$TEST_IMG",format=qcow2,lazy-refcounts=on 127run_qemu -drive file="$TEST_IMG",format=qcow2,lazy-refcounts=off 128 129echo 130echo === No medium === 131echo 132 133run_qemu -drive if=floppy 134run_qemu -drive if=ide,media=cdrom 135run_qemu -drive if=scsi,media=cdrom 136 137run_qemu -drive if=ide 138run_qemu -drive if=virtio 139run_qemu -drive if=scsi 140 141run_qemu -drive if=none,id=disk -device ide-cd,drive=disk 142run_qemu -drive if=none,id=disk -device lsi53c895a -device scsi-cd,drive=disk 143 144run_qemu -drive if=none,id=disk -device ide-drive,drive=disk 145run_qemu -drive if=none,id=disk -device ide-hd,drive=disk 146run_qemu -drive if=none,id=disk -device lsi53c895a -device scsi-disk,drive=disk 147run_qemu -drive if=none,id=disk -device lsi53c895a -device scsi-hd,drive=disk 148 149echo 150echo === Read-only === 151echo 152 153run_qemu -drive file="$TEST_IMG",if=floppy,readonly=on 154run_qemu -drive file="$TEST_IMG",if=ide,media=cdrom,readonly=on 155run_qemu -drive file="$TEST_IMG",if=scsi,media=cdrom,readonly=on 156 157run_qemu -drive file="$TEST_IMG",if=ide,readonly=on 158run_qemu -drive file="$TEST_IMG",if=virtio,readonly=on 159run_qemu -drive file="$TEST_IMG",if=scsi,readonly=on 160 161run_qemu -drive file="$TEST_IMG",if=none,id=disk,readonly=on -device ide-cd,drive=disk 162run_qemu -drive file="$TEST_IMG",if=none,id=disk,readonly=on -device lsi53c895a -device scsi-cd,drive=disk 163 164run_qemu -drive file="$TEST_IMG",if=none,id=disk,readonly=on -device ide-drive,drive=disk 165run_qemu -drive file="$TEST_IMG",if=none,id=disk,readonly=on -device ide-hd,drive=disk 166run_qemu -drive file="$TEST_IMG",if=none,id=disk,readonly=on -device lsi53c895a -device scsi-disk,drive=disk 167run_qemu -drive file="$TEST_IMG",if=none,id=disk,readonly=on -device lsi53c895a -device scsi-hd,drive=disk 168 169echo 170echo === Cache modes === 171echo 172 173# Cannot use the test image because cache=none might not work on the host FS 174# Use cdrom so that we won't get errors about missing media 175 176run_qemu -drive media=cdrom,cache=none 177run_qemu -drive media=cdrom,cache=directsync 178run_qemu -drive media=cdrom,cache=writeback 179run_qemu -drive media=cdrom,cache=writethrough 180run_qemu -drive media=cdrom,cache=unsafe 181run_qemu -drive media=cdrom,cache=invalid_value 182 183echo 184echo === Specifying the protocol layer === 185echo 186 187run_qemu -drive file="$TEST_IMG",file.driver=file 188run_qemu -drive file="$TEST_IMG",file.driver=qcow2 189 190echo 191echo === Leaving out required options === 192echo 193 194run_qemu -drive driver=file 195run_qemu -drive driver=nbd 196run_qemu -drive driver=raw 197run_qemu -drive file.driver=file 198run_qemu -drive file.driver=nbd 199run_qemu -drive file.driver=raw 200run_qemu -drive foo=bar 201 202echo 203echo === Specifying both an option and its legacy alias === 204echo 205 206run_qemu -drive file="$TEST_IMG",iops=1234,throttling.iops-total=5678 207run_qemu -drive file="$TEST_IMG",iops_rd=1234,throttling.iops-read=5678 208run_qemu -drive file="$TEST_IMG",iops_wr=1234,throttling.iops-write=5678 209 210run_qemu -drive file="$TEST_IMG",bps=1234,throttling.bps-total=5678 211run_qemu -drive file="$TEST_IMG",bps_rd=1234,throttling.bps-read=5678 212run_qemu -drive file="$TEST_IMG",bps_wr=1234,throttling.bps-write=5678 213 214run_qemu -drive file="$TEST_IMG",iops_max=1234,throttling.iops-total-max=5678 215run_qemu -drive file="$TEST_IMG",iops_rd_max=1234,throttling.iops-read-max=5678 216run_qemu -drive file="$TEST_IMG",iops_wr_max=1234,throttling.iops-write-max=5678 217 218run_qemu -drive file="$TEST_IMG",bps_max=1234,throttling.bps-total-max=5678 219run_qemu -drive file="$TEST_IMG",bps_rd_max=1234,throttling.bps-read-max=5678 220run_qemu -drive file="$TEST_IMG",bps_wr_max=1234,throttling.bps-write-max=5678 221 222run_qemu -drive file="$TEST_IMG",iops_size=1234,throttling.iops-size=5678 223run_qemu -drive file="$TEST_IMG",readonly=on,read-only=off 224 225echo 226echo === Parsing protocol from file name === 227echo 228 229# Protocol strings are supposed to be parsed from traditional option strings, 230# but not when using driver-specific options. We can distinguish them by the 231# error message for non-existing files. 232 233run_qemu -hda foo:bar 234run_qemu -drive file=foo:bar 235run_qemu -drive file.filename=foo:bar 236 237run_qemu -hda "file:$TEST_IMG" 238run_qemu -drive file="file:$TEST_IMG" 239run_qemu -drive file.filename="file:$TEST_IMG" 240 241echo 242echo === Snapshot mode === 243echo 244 245$QEMU_IO -c "write -P 0x11 0 4k" "$TEST_IMG" | _filter_qemu_io 246 247echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file="$TEST_IMG" -snapshot | _filter_qemu_io 248echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file="$TEST_IMG",snapshot=on | _filter_qemu_io 249echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file.filename="$TEST_IMG",driver=qcow2,snapshot=on | _filter_qemu_io 250echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file.filename="$TEST_IMG",driver=qcow2 -snapshot | _filter_qemu_io 251echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file="file:$TEST_IMG" -snapshot | _filter_qemu_io 252echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file="file:$TEST_IMG",snapshot=on | _filter_qemu_io 253 254# Opening a read-only file r/w with snapshot=on 255chmod u-w "$TEST_IMG" 256echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file="$TEST_IMG" -snapshot | _filter_qemu_io 257echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file="$TEST_IMG",snapshot=on | _filter_qemu_io 258chmod u+w "$TEST_IMG" 259 260$QEMU_IO -c "read -P 0x11 0 4k" "$TEST_IMG" | _filter_qemu_io 261 262echo 'qemu-io ide0-hd0 "write -P 0x22 0 4k"' | run_qemu -drive file="$TEST_IMG",snapshot=off | _filter_qemu_io 263 264$QEMU_IO -c "read -P 0x22 0 4k" "$TEST_IMG" | _filter_qemu_io 265 266echo -e 'qemu-io ide0-hd0 "write -P 0x33 0 4k"\ncommit ide0-hd0' | run_qemu -drive file="$TEST_IMG",snapshot=on | _filter_qemu_io 267 268$QEMU_IO -c "read -P 0x33 0 4k" "$TEST_IMG" | _filter_qemu_io 269 270# success, all done 271echo "*** done" 272rm -f $seq.full 273status=0 274