111a82d14SPhilippe Mathieu-Daudé#!/usr/bin/env bash 2ed4dc684SKevin Wolf# 3ed4dc684SKevin Wolf# Commit changes to backing file 4ed4dc684SKevin Wolf# 5ed4dc684SKevin Wolf# Copyright (C) 2009 Red Hat, Inc. 6ed4dc684SKevin Wolf# 7ed4dc684SKevin Wolf# This program is free software; you can redistribute it and/or modify 8ed4dc684SKevin Wolf# it under the terms of the GNU General Public License as published by 9ed4dc684SKevin Wolf# the Free Software Foundation; either version 2 of the License, or 10ed4dc684SKevin Wolf# (at your option) any later version. 11ed4dc684SKevin Wolf# 12ed4dc684SKevin Wolf# This program is distributed in the hope that it will be useful, 13ed4dc684SKevin Wolf# but WITHOUT ANY WARRANTY; without even the implied warranty of 14ed4dc684SKevin Wolf# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15ed4dc684SKevin Wolf# GNU General Public License for more details. 16ed4dc684SKevin Wolf# 17ed4dc684SKevin Wolf# You should have received a copy of the GNU General Public License 18e8c212d6SChristoph Hellwig# along with this program. If not, see <http://www.gnu.org/licenses/>. 19ed4dc684SKevin Wolf# 20ed4dc684SKevin Wolf 21ed4dc684SKevin Wolf# creator 22ed4dc684SKevin Wolfowner=kwolf@redhat.com 23ed4dc684SKevin Wolf 24ed4dc684SKevin Wolfseq=`basename $0` 25ed4dc684SKevin Wolfecho "QA output created by $seq" 26ed4dc684SKevin Wolf 27ed4dc684SKevin Wolfstatus=1 # failure is the default! 28ed4dc684SKevin Wolf 29ed4dc684SKevin Wolf_cleanup() 30ed4dc684SKevin Wolf{ 31ed4dc684SKevin Wolf _cleanup_test_img 32f91ecbd7SMax Reitz _rm_test_img "$TEST_IMG.base" 33f91ecbd7SMax Reitz _rm_test_img "$TEST_IMG.orig" 34*6c3e1106SMax Reitz 35*6c3e1106SMax Reitz _rm_test_img "$TEST_DIR/subdir/t.$IMGFMT.base" 36*6c3e1106SMax Reitz _rm_test_img "$TEST_DIR/subdir/t.$IMGFMT.mid" 37*6c3e1106SMax Reitz _rm_test_img "$TEST_DIR/subdir/t.$IMGFMT" 38*6c3e1106SMax Reitz rmdir "$TEST_DIR/subdir" &> /dev/null 39ed4dc684SKevin Wolf} 40ed4dc684SKevin Wolftrap "_cleanup; exit \$status" 0 1 2 3 15 41ed4dc684SKevin Wolf 42ed4dc684SKevin Wolf# get standard environment, filters and checks 43ed4dc684SKevin Wolf. ./common.rc 44ed4dc684SKevin Wolf. ./common.filter 45ed4dc684SKevin Wolf. ./common.pattern 46ed4dc684SKevin Wolf 47ed4dc684SKevin Wolf# Any format supporting backing files 48f5a4bbd9SStefan Hajnoczi_supported_fmt qcow qcow2 vmdk qed 498e5decb5SMax Reitz_supported_proto file 50d2329f27SFam Zheng_unsupported_imgopts "subformat=monolithicFlat" \ 51d2329f27SFam Zheng "subformat=twoGbMaxExtentFlat" \ 52325dd915SMax Reitz "subformat=twoGbMaxExtentSparse" \ 53325dd915SMax Reitz "subformat=streamOptimized" 54ed4dc684SKevin Wolf 55ed4dc684SKevin WolfTEST_OFFSETS="0 4294967296" 56ed4dc684SKevin Wolf 5771ad7617SFam ZhengTEST_IMG_SAVE="$TEST_IMG" 5871ad7617SFam ZhengTEST_IMG="$TEST_IMG.base" 5971ad7617SFam Zheng 60ed4dc684SKevin Wolf_make_test_img 6G 61ed4dc684SKevin Wolf 62ed4dc684SKevin Wolfecho "Filling base image" 63ed4dc684SKevin Wolfecho 64ed4dc684SKevin Wolf 65ed4dc684SKevin Wolffor offset in $TEST_OFFSETS; do 66ed4dc684SKevin Wolf # Some clusters with alternating backing file/image file reads 67ed4dc684SKevin Wolf io writev $(( offset )) 512 1024 64 68ed4dc684SKevin Wolf 69ed4dc684SKevin Wolf # Complete backing clusters 70ed4dc684SKevin Wolf io writev $(( offset + 64 * 1024)) 65536 65536 1 71ed4dc684SKevin Wolfdone 72ed4dc684SKevin Wolf_check_test_img 73ed4dc684SKevin Wolf 74ed4dc684SKevin Wolfecho "Creating test image with backing file" 75ed4dc684SKevin Wolfecho 76ed4dc684SKevin Wolf 7771ad7617SFam ZhengTEST_IMG="$TEST_IMG_SAVE" 78b66ff2c2SEric Blake_make_test_img -b "$TEST_IMG.base" -F $IMGFMT 6G 79ed4dc684SKevin Wolf 80ed4dc684SKevin Wolfecho "Filling test image" 81ed4dc684SKevin Wolfecho 82ed4dc684SKevin Wolf 83ed4dc684SKevin Wolffor offset in $TEST_OFFSETS; do 84ed4dc684SKevin Wolf # Some clusters with alternating backing file/image file reads 85ed4dc684SKevin Wolf io writev $(( offset + 512 )) 512 1024 64 86ed4dc684SKevin Wolf 87ed4dc684SKevin Wolf # Complete test image clusters 88ed4dc684SKevin Wolf io writev $(( offset + 64 * 1024 + 65536)) 65536 65536 1 89ed4dc684SKevin Wolfdone 90ed4dc684SKevin Wolf_check_test_img 91ed4dc684SKevin Wolf 92fef9c191SJeff Cody$QEMU_IMG commit "$TEST_IMG" 9371ad7617SFam ZhengTEST_IMG="$TEST_IMG.base" 94ed4dc684SKevin Wolf 95ed4dc684SKevin Wolfecho "Reading from the backing file" 96ed4dc684SKevin Wolfecho 97ed4dc684SKevin Wolf 98ed4dc684SKevin Wolffor offset in $TEST_OFFSETS; do 99ed4dc684SKevin Wolf # Some clusters with alternating backing file/image file reads 100ed4dc684SKevin Wolf io readv $(( offset )) 512 1024 64 101ed4dc684SKevin Wolf io readv $(( offset + 512 )) 512 1024 64 102ed4dc684SKevin Wolf 103ed4dc684SKevin Wolf # Complete test image clusters 104ed4dc684SKevin Wolf io readv $(( offset + 64 * 1024)) 65536 65536 1 105ed4dc684SKevin Wolf io readv $(( offset + 64 * 1024 + 65536)) 65536 65536 1 106ed4dc684SKevin Wolf 107ed4dc684SKevin Wolf # Empty sectors 108ed4dc684SKevin Wolf io_zero readv $(( offset + 64 * 1024 + 65536 * 4 )) 65536 65536 1 109ed4dc684SKevin Wolfdone 110ed4dc684SKevin Wolf_check_test_img 1112b773193SMax Reitz_cleanup 1122b773193SMax ReitzTEST_IMG=$TEST_IMG_SAVE 1132b773193SMax Reitz 1142b773193SMax Reitzecho 1152b773193SMax Reitzecho 'Testing failing commit' 1162b773193SMax Reitzecho 1172b773193SMax Reitz 1188c97fcf4SMax ReitzTEST_IMG="$TEST_IMG.base" _make_test_img 1M 1198c97fcf4SMax Reitz 1202b773193SMax Reitz# Create an image with a null backing file to which committing will fail (with 1212b773193SMax Reitz# ENOSPC so we can distinguish the result from some generic EIO which may be 1222b773193SMax Reitz# generated anywhere in the block layer) 1234b196cd1SMax Reitzbacking="json:{'driver': '$IMGFMT', 1242b773193SMax Reitz 'file': { 1252b773193SMax Reitz 'driver': 'blkdebug', 1262b773193SMax Reitz 'inject-error': [{ 1272b773193SMax Reitz 'event': 'write_aio', 1282b773193SMax Reitz 'errno': 28, 1292b773193SMax Reitz 'once': true 1302b773193SMax Reitz }], 1312b773193SMax Reitz 'image': { 1328c97fcf4SMax Reitz 'driver': 'file', 1338c97fcf4SMax Reitz 'filename': '$TEST_IMG.base' 1342b773193SMax Reitz }}}" 1352b773193SMax Reitz 1364b196cd1SMax Reitz# Filter out newlines and collapse spaces 1374b196cd1SMax Reitzbacking=$(echo "$backing" | tr -d '\n' | tr -s ' ') 1384b196cd1SMax Reitz 139b66ff2c2SEric Blake_make_test_img -b "$backing" -F $IMGFMT 1404b196cd1SMax Reitz 1412b773193SMax Reitz# Just write anything so committing will not be a no-op 1422b773193SMax Reitz$QEMU_IO -c 'writev 0 64k' "$TEST_IMG" | _filter_qemu_io 1432b773193SMax Reitz 1442b773193SMax Reitz$QEMU_IMG commit "$TEST_IMG" 1458c97fcf4SMax Reitz_cleanup 146ed4dc684SKevin Wolf 147*6c3e1106SMax Reitz 148*6c3e1106SMax Reitzecho 149*6c3e1106SMax Reitzecho 'Testing commit in sub-directory with relative filenames' 150*6c3e1106SMax Reitzecho 151*6c3e1106SMax Reitz 152*6c3e1106SMax Reitzpushd "$TEST_DIR" > /dev/null 153*6c3e1106SMax Reitz 154*6c3e1106SMax Reitzmkdir subdir 155*6c3e1106SMax Reitz 156*6c3e1106SMax ReitzTEST_IMG="subdir/t.$IMGFMT.base" _make_test_img 1M 157*6c3e1106SMax ReitzTEST_IMG="subdir/t.$IMGFMT.mid" _make_test_img -b "t.$IMGFMT.base" -F $IMGFMT 158*6c3e1106SMax ReitzTEST_IMG="subdir/t.$IMGFMT" _make_test_img -b "t.$IMGFMT.mid" -F $IMGFMT 159*6c3e1106SMax Reitz 160*6c3e1106SMax Reitz# Should work 161*6c3e1106SMax Reitz$QEMU_IMG commit -b "t.$IMGFMT.mid" "subdir/t.$IMGFMT" 162*6c3e1106SMax Reitz 163*6c3e1106SMax Reitz# Might theoretically work, but does not in practice (we have to 164*6c3e1106SMax Reitz# decide between this and the above; and since we always represent 165*6c3e1106SMax Reitz# backing file names as relative to the overlay, we go for the above) 166*6c3e1106SMax Reitz$QEMU_IMG commit -b "subdir/t.$IMGFMT.mid" "subdir/t.$IMGFMT" 2>&1 | \ 167*6c3e1106SMax Reitz _filter_imgfmt 168*6c3e1106SMax Reitz 169*6c3e1106SMax Reitz# This should work as well 170*6c3e1106SMax Reitz$QEMU_IMG commit -b "$TEST_DIR/subdir/t.$IMGFMT.mid" "subdir/t.$IMGFMT" 171*6c3e1106SMax Reitz 172*6c3e1106SMax Reitzpopd > /dev/null 173*6c3e1106SMax Reitz 174*6c3e1106SMax Reitz# Now let's try with just absolute filenames 175*6c3e1106SMax Reitz# (This will not work with external data files, though, because when 176*6c3e1106SMax Reitz# using relative paths for those, qemu will always resolve them 177*6c3e1106SMax Reitz# relative to its CWD. Therefore, it cannot find those data files now 178*6c3e1106SMax Reitz# that we left $TEST_DIR.) 179*6c3e1106SMax Reitzif _get_data_file '' > /dev/null; then 180*6c3e1106SMax Reitz echo 'Image committed.' # Skip test 181*6c3e1106SMax Reitzelse 182*6c3e1106SMax Reitz $QEMU_IMG commit -b "$TEST_DIR/subdir/t.$IMGFMT.mid" \ 183*6c3e1106SMax Reitz "$TEST_DIR/subdir/t.$IMGFMT" 184*6c3e1106SMax Reitzfi 185*6c3e1106SMax Reitz 186ed4dc684SKevin Wolf# success, all done 187ed4dc684SKevin Wolfecho "*** done" 188ed4dc684SKevin Wolfrm -f $seq.full 189ed4dc684SKevin Wolfstatus=0 190