111a82d14SPhilippe Mathieu-Daudé#!/usr/bin/env 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 32*f91ecbd7SMax Reitz for img in "$TEST_IMG".[01234]; do 33*f91ecbd7SMax Reitz _rm_test_img "$img" 34*f91ecbd7SMax Reitz done 3536f808faSKevin Wolf} 3636f808faSKevin Wolftrap "_cleanup; exit \$status" 0 1 2 3 15 3736f808faSKevin Wolf 3836f808faSKevin Wolf# get standard environment, filters and checks 3936f808faSKevin Wolf. ./common.rc 4036f808faSKevin Wolf. ./common.filter 4136f808faSKevin Wolf 4236f808faSKevin Wolf_supported_fmt generic 4336f808faSKevin Wolf_supported_proto file 4436f808faSKevin Wolf_supported_os Linux 4536f808faSKevin Wolf 468cedcffdSEric Blakedo_run_qemu() 4736f808faSKevin Wolf{ 4836f808faSKevin Wolf echo Testing: "$@" 4936f808faSKevin Wolf ( 5036f808faSKevin Wolf if ! test -t 0; then 5136f808faSKevin Wolf while read cmd; do 5236f808faSKevin Wolf echo $cmd 5336f808faSKevin Wolf done 5436f808faSKevin Wolf fi 5536f808faSKevin Wolf echo quit 5636f808faSKevin Wolf ) | $QEMU -nographic -monitor stdio -nodefaults "$@" 5736f808faSKevin Wolf echo 5836f808faSKevin Wolf} 5936f808faSKevin Wolf 608cedcffdSEric Blakerun_qemu() 6136f808faSKevin Wolf{ 6236f808faSKevin Wolf do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_hmp | 6336f808faSKevin Wolf _filter_generated_node_ids | _filter_imgfmt 6436f808faSKevin Wolf} 6536f808faSKevin Wolf 668cedcffdSEric Blakerun_qemu_info_block() 6736f808faSKevin Wolf{ 6836f808faSKevin Wolf echo "info block -n" | run_qemu "$@" | grep -e "(file" -e "QEMU_PROG" 6936f808faSKevin Wolf} 7036f808faSKevin Wolf 7136f808faSKevin Wolfsize=128M 7236f808faSKevin Wolf 7336f808faSKevin Wolf_make_test_img $size 7436f808faSKevin Wolf 75c48221aaSMax Reitzif [ -n "$TEST_IMG_FILE" ]; then 76c48221aaSMax Reitz TEST_IMG=$TEST_IMG_FILE 77c48221aaSMax Reitzfi 78c48221aaSMax Reitz 79d885ac33SVladimir Sementsov-Ogievskiychmod a-w $TEST_IMG 80d885ac33SVladimir Sementsov-Ogievskiy(echo test > $TEST_IMG) 2>/dev/null && \ 81d885ac33SVladimir Sementsov-Ogievskiy _notrun "Readonly attribute is ignored, probably you run this test as" \ 82d885ac33SVladimir Sementsov-Ogievskiy "root, which is unsupported." 83d885ac33SVladimir Sementsov-Ogievskiychmod a+w $TEST_IMG 84d885ac33SVladimir Sementsov-Ogievskiy 8536f808faSKevin Wolfecho 8636f808faSKevin Wolfecho "=== -drive with read-write image: read-only/auto-read-only combinations ===" 8736f808faSKevin Wolfecho 8836f808faSKevin Wolf 8936f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on,auto-read-only=off 9036f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on,auto-read-only=on 9136f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on 9236f808faSKevin Wolfecho 9336f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off,auto-read-only=off 9436f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off,auto-read-only=on 9536f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off 9636f808faSKevin Wolfecho 9736f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,auto-read-only=off 9836f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,auto-read-only=on 9936f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none 10036f808faSKevin Wolf 10136f808faSKevin Wolfecho 10236f808faSKevin Wolfecho "=== -drive with read-only image: read-only/auto-read-only combinations ===" 10336f808faSKevin Wolfecho 10436f808faSKevin Wolf 10536f808faSKevin Wolfchmod a-w $TEST_IMG 10636f808faSKevin Wolf 10736f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on,auto-read-only=off 10836f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on,auto-read-only=on 10936f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=on 11036f808faSKevin Wolfecho 11136f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off,auto-read-only=off 11236f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off,auto-read-only=on 11336f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,read-only=off 11436f808faSKevin Wolfecho 11536f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,auto-read-only=off 11636f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none,auto-read-only=on 11736f808faSKevin Wolfrun_qemu_info_block -drive driver=file,file="$TEST_IMG",if=none 11836f808faSKevin Wolf 11936f808faSKevin Wolfecho 12036f808faSKevin Wolfecho "=== -blockdev with read-write image: read-only/auto-read-only combinations ===" 12136f808faSKevin Wolfecho 12236f808faSKevin Wolf 12336f808faSKevin Wolfchmod a+w $TEST_IMG 12436f808faSKevin Wolf 12536f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on,auto-read-only=off 12636f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on,auto-read-only=on 12736f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on 12836f808faSKevin Wolfecho 12936f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off,auto-read-only=off 13036f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off,auto-read-only=on 13136f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off 13236f808faSKevin Wolfecho 13336f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,auto-read-only=off 13436f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,auto-read-only=on 13536f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0 13636f808faSKevin Wolf 13736f808faSKevin Wolfecho 13836f808faSKevin Wolfecho "=== -blockdev with read-only image: read-only/auto-read-only combinations ===" 13936f808faSKevin Wolfecho 14036f808faSKevin Wolf 14136f808faSKevin Wolfchmod a-w $TEST_IMG 14236f808faSKevin Wolf 14336f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on,auto-read-only=off 14436f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on,auto-read-only=on 14536f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=on 14636f808faSKevin Wolfecho 14736f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off,auto-read-only=off 14836f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off,auto-read-only=on 14936f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,read-only=off 15036f808faSKevin Wolfecho 15136f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,auto-read-only=off 15236f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0,auto-read-only=on 15336f808faSKevin Wolfrun_qemu_info_block -blockdev driver=file,filename="$TEST_IMG",node-name=node0 15436f808faSKevin Wolf 15536f808faSKevin Wolf# success, all done 15636f808faSKevin Wolfecho "*** done" 15736f808faSKevin Wolfrm -f $seq.full 15836f808faSKevin Wolfstatus=0 159