1#!/bin/bash 2# 3# Test case for copy-on-read into qcow2 4# 5# Copyright (C) 2017 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=eblake@redhat.com 23 24seq="$(basename $0)" 25echo "QA output created by $seq" 26 27here="$PWD" 28status=1 # failure is the default! 29 30# get standard environment, filters and checks 31. ./common.rc 32. ./common.filter 33 34TEST_WRAP="$TEST_DIR/t.wrap.qcow2" 35BLKDBG_CONF="$TEST_DIR/blkdebug.conf" 36 37# Sanity check: our use of blkdebug fails if $TEST_DIR contains spaces 38# or other problems 39case "$TEST_DIR" in 40 *[^-_a-zA-Z0-9/]*) 41 _notrun "Suspicious TEST_DIR='$TEST_DIR', cowardly refusing to run" ;; 42esac 43 44_cleanup() 45{ 46 _cleanup_test_img 47 rm -f "$BLKDBG_CONF" 48} 49trap "_cleanup; exit \$status" 0 1 2 3 15 50 51# Test is supported for any backing file; but we force qcow2 for our wrapper. 52_supported_fmt generic 53_supported_proto generic 54_supported_os Linux 55# LUKS support may be possible, but it complicates things. 56_unsupported_fmt luks 57 58echo 59echo '=== Copy-on-read ===' 60echo 61 62# Prep the images 63_make_test_img 4G 64$QEMU_IO -c "write -P 55 3G 1k" "$TEST_IMG" | _filter_qemu_io 65IMGPROTO=file IMGFMT=qcow2 IMGOPTS= TEST_IMG_FILE="$TEST_WRAP" \ 66 _make_test_img -F "$IMGFMT" -b "$TEST_IMG" | _filter_img_create 67$QEMU_IO -f qcow2 -c "write -z -u 1M 64k" "$TEST_WRAP" | _filter_qemu_io 68 69# Ensure that a read of two clusters, but where one is already allocated, 70# does not re-write the allocated cluster 71cat > "$BLKDBG_CONF" <<EOF 72[inject-error] 73event = "cor_write" 74sector = "2048" 75EOF 76$QEMU_IO -c "open -C \ 77 -o driver=blkdebug,config=$BLKDBG_CONF,image.driver=qcow2 $TEST_WRAP" \ 78 -c "read -P 0 1M 128k" | _filter_qemu_io 79 80# Read the areas we want copied. A zero-length read should still be a 81# no-op. The next read is under 2G, but aligned so that rounding to 82# clusters copies more than 2G of zeroes. The final read will pick up 83# the non-zero data in the same cluster. Since a 2G read may exhaust 84# memory on some machines (particularly 32-bit), we skip the test if 85# that fails due to memory pressure. 86$QEMU_IO -f qcow2 -C -c "read 0 0" "$TEST_WRAP" | _filter_qemu_io 87output=$($QEMU_IO -f qcow2 -C -c "read -P 0 1k $((2*1024*1024*1024 - 512))" \ 88 "$TEST_WRAP" 2>&1 | _filter_qemu_io) 89case $output in 90 *allocate*) 91 _notrun "Insufficent memory to run test" ;; 92 *) printf '%s\n' "$output" ;; 93esac 94$QEMU_IO -f qcow2 -C -c "read -P 0 $((3*1024*1024*1024 + 1024)) 1k" \ 95 "$TEST_WRAP" | _filter_qemu_io 96 97# Copy-on-read is incompatible with read-only 98$QEMU_IO -f qcow2 -C -r "$TEST_WRAP" 2>&1 | _filter_testdir 99 100# Break the backing chain, and show that images are identical, and that 101# we properly copied over explicit zeros. 102$QEMU_IMG rebase -u -b "" -f qcow2 "$TEST_WRAP" 103$QEMU_IO -f qcow2 -c map "$TEST_WRAP" 104_check_test_img 105$QEMU_IMG compare -f $IMGFMT -F qcow2 "$TEST_IMG" "$TEST_WRAP" 106 107# success, all done 108echo '*** done' 109status=0 110