136f808faSKevin Wolf#!/bin/bash 236f808faSKevin Wolf# 336f808faSKevin Wolf# Test for auto-read-only 436f808faSKevin Wolf# 536f808faSKevin Wolf# Copyright (C) 2018 Red Hat, Inc. 636f808faSKevin Wolf# 736f808faSKevin Wolf# This program is free software; you can redistribute it and/or modify 836f808faSKevin Wolf# it under the terms of the GNU General Public License as published by 936f808faSKevin Wolf# the Free Software Foundation; either version 2 of the License, or 1036f808faSKevin Wolf# (at your option) any later version. 1136f808faSKevin Wolf# 1236f808faSKevin Wolf# This program is distributed in the hope that it will be useful, 1336f808faSKevin Wolf# but WITHOUT ANY WARRANTY; without even the implied warranty of 1436f808faSKevin Wolf# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1536f808faSKevin Wolf# GNU General Public License for more details. 1636f808faSKevin Wolf# 1736f808faSKevin Wolf# You should have received a copy of the GNU General Public License 1836f808faSKevin Wolf# along with this program. If not, see <http://www.gnu.org/licenses/>. 1936f808faSKevin Wolf# 2036f808faSKevin Wolf 2136f808faSKevin Wolf# creator 2236f808faSKevin Wolfowner=kwolf@redhat.com 2336f808faSKevin Wolf 2436f808faSKevin Wolfseq=`basename $0` 2536f808faSKevin Wolfecho "QA output created by $seq" 2636f808faSKevin Wolf 2736f808faSKevin Wolfstatus=1 # failure is the default! 2836f808faSKevin Wolf 2936f808faSKevin Wolf_cleanup() 3036f808faSKevin Wolf{ 3136f808faSKevin Wolf _cleanup_test_img 3236f808faSKevin Wolf} 3336f808faSKevin Wolftrap "_cleanup; exit \$status" 0 1 2 3 15 3436f808faSKevin Wolf 3536f808faSKevin Wolf# get standard environment, filters and checks 3636f808faSKevin Wolf. ./common.rc 3736f808faSKevin Wolf. ./common.filter 3836f808faSKevin Wolf 3936f808faSKevin Wolf_supported_fmt generic 4036f808faSKevin Wolf_supported_proto file 4136f808faSKevin Wolf_supported_os Linux 4236f808faSKevin Wolf 438cedcffdSEric Blakedo_run_qemu() 4436f808faSKevin Wolf{ 4536f808faSKevin Wolf echo Testing: "$@" 4636f808faSKevin Wolf ( 4736f808faSKevin Wolf if ! test -t 0; then 4836f808faSKevin Wolf while read cmd; do 4936f808faSKevin Wolf echo $cmd 5036f808faSKevin Wolf done 5136f808faSKevin Wolf fi 5236f808faSKevin Wolf echo quit 5336f808faSKevin Wolf ) | $QEMU -nographic -monitor stdio -nodefaults "$@" 5436f808faSKevin Wolf echo 5536f808faSKevin Wolf} 5636f808faSKevin Wolf 578cedcffdSEric Blakerun_qemu() 5836f808faSKevin Wolf{ 5936f808faSKevin Wolf do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_hmp | 6036f808faSKevin Wolf _filter_generated_node_ids | _filter_imgfmt 6136f808faSKevin Wolf} 6236f808faSKevin Wolf 638cedcffdSEric Blakerun_qemu_info_block() 6436f808faSKevin Wolf{ 6536f808faSKevin Wolf echo "info block -n" | run_qemu "$@" | grep -e "(file" -e "QEMU_PROG" 6636f808faSKevin Wolf} 6736f808faSKevin Wolf 6836f808faSKevin Wolfsize=128M 6936f808faSKevin Wolf 7036f808faSKevin Wolf_make_test_img $size 7136f808faSKevin Wolf 72*c48221aaSMax Reitzif [ -n "$TEST_IMG_FILE" ]; then 73*c48221aaSMax Reitz TEST_IMG=$TEST_IMG_FILE 74*c48221aaSMax Reitzfi 75*c48221aaSMax Reitz 7636f808faSKevin Wolfecho 7736f808faSKevin Wolfecho "=== -drive with read-write image: read-only/auto-read-only combinations ===" 7836f808faSKevin Wolfecho 7936f808faSKevin Wolf 8036f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on,auto-read-only=off 8136f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on,auto-read-only=on 8236f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on 8336f808faSKevin Wolfecho 8436f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off,auto-read-only=off 8536f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off,auto-read-only=on 8636f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off 8736f808faSKevin Wolfecho 8836f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,auto-read-only=off 8936f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,auto-read-only=on 9036f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none 9136f808faSKevin Wolf 9236f808faSKevin Wolfecho 9336f808faSKevin Wolfecho "=== -drive with read-only image: read-only/auto-read-only combinations ===" 9436f808faSKevin Wolfecho 9536f808faSKevin Wolf 9636f808faSKevin Wolfchmod a-w $TEST_IMG 9736f808faSKevin Wolf 9836f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on,auto-read-only=off 9936f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on,auto-read-only=on 10036f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on 10136f808faSKevin Wolfecho 10236f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off,auto-read-only=off 10336f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off,auto-read-only=on 10436f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off 10536f808faSKevin Wolfecho 10636f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,auto-read-only=off 10736f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,auto-read-only=on 10836f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none 10936f808faSKevin Wolf 11036f808faSKevin Wolfecho 11136f808faSKevin Wolfecho "=== -blockdev with read-write image: read-only/auto-read-only combinations ===" 11236f808faSKevin Wolfecho 11336f808faSKevin Wolf 11436f808faSKevin Wolfchmod a+w $TEST_IMG 11536f808faSKevin Wolf 11636f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on,auto-read-only=off 11736f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on,auto-read-only=on 11836f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on 11936f808faSKevin Wolfecho 12036f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off,auto-read-only=off 12136f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off,auto-read-only=on 12236f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off 12336f808faSKevin Wolfecho 12436f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,auto-read-only=off 12536f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,auto-read-only=on 12636f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0 12736f808faSKevin Wolf 12836f808faSKevin Wolfecho 12936f808faSKevin Wolfecho "=== -blockdev with read-only image: read-only/auto-read-only combinations ===" 13036f808faSKevin Wolfecho 13136f808faSKevin Wolf 13236f808faSKevin Wolfchmod a-w $TEST_IMG 13336f808faSKevin Wolf 13436f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on,auto-read-only=off 13536f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on,auto-read-only=on 13636f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on 13736f808faSKevin Wolfecho 13836f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off,auto-read-only=off 13936f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off,auto-read-only=on 14036f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off 14136f808faSKevin Wolfecho 14236f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,auto-read-only=off 14336f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,auto-read-only=on 14436f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0 14536f808faSKevin Wolf 14636f808faSKevin Wolf# success, all done 14736f808faSKevin Wolfecho "*** done" 14836f808faSKevin Wolfrm -f $seq.full 14936f808faSKevin Wolfstatus=0 150