1#!/usr/bin/env bash 2# 3# Test qcow2 with external data files 4# 5# Copyright (C) 2019 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 27status=1 # failure is the default! 28 29_cleanup() 30{ 31 _cleanup_test_img 32 _rm_test_img "$TEST_IMG.data" 33 _rm_test_img "$TEST_IMG.src" 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# External data files do not work with compat=0.10, and because we use 45# our own external data file, we cannot let the user specify one 46_unsupported_imgopts 'compat=0.10' data_file 47 48echo 49echo "=== Create and open image with external data file ===" 50echo 51 52echo "With data file name in the image:" 53_make_test_img -o "data_file=$TEST_IMG.data" 64M 54_check_test_img 55 56$QEMU_IO -c "open $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir 57$QEMU_IO -c "open -odata-file.filename=$TEST_IMG.data $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir 58$QEMU_IO -c "open -odata-file.filename=inexistent $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir 59 60echo 61echo "Data file required, but without data file name in the image:" 62$QEMU_IMG amend -odata_file= $TEST_IMG 63 64$QEMU_IO -c "open $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir 65$QEMU_IO -c "open -odata-file.filename=$TEST_IMG.data $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir 66$QEMU_IO -c "open -odata-file.filename=inexistent $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir 67 68echo 69echo "Setting data-file for an image with internal data:" 70_make_test_img 64M 71 72$QEMU_IO -c "open -odata-file.filename=$TEST_IMG.data $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir 73$QEMU_IO -c "open -odata-file.filename=inexistent $TEST_IMG" -c "read -P 0 0 64k" 2>&1 | _filter_qemu_io | _filter_testdir 74 75echo 76echo "=== Conflicting features ===" 77echo 78 79echo "Convert to compressed target with data file:" 80TEST_IMG="$TEST_IMG.src" _make_test_img 64M 81 82$QEMU_IO -c 'write -P 0x11 0 1M' \ 83 -f $IMGFMT "$TEST_IMG.src" | 84 _filter_qemu_io 85 86$QEMU_IMG convert -f $IMGFMT -O $IMGFMT -c -odata_file="$TEST_IMG.data" \ 87 "$TEST_IMG.src" "$TEST_IMG" 88 89echo 90echo "Convert uncompressed, then write compressed data manually:" 91$QEMU_IMG convert -f $IMGFMT -O $IMGFMT -odata_file="$TEST_IMG.data" \ 92 "$TEST_IMG.src" "$TEST_IMG" 93$QEMU_IMG compare "$TEST_IMG.src" "$TEST_IMG" 94 95$QEMU_IO -c 'write -c -P 0x22 0 1M' \ 96 -f $IMGFMT "$TEST_IMG" | 97 _filter_qemu_io 98_check_test_img 99 100echo 101echo "Take an internal snapshot:" 102 103$QEMU_IMG snapshot -c test "$TEST_IMG" 104_check_test_img 105 106echo 107echo "=== Standalone image with external data file (efficient) ===" 108echo 109 110_make_test_img -o "data_file=$TEST_IMG.data" 64M 111 112echo -n "qcow2 file size before I/O: " 113du -b $TEST_IMG | cut -f1 114 115# Create image with the following layout 116# 0-1 MB: Unallocated 117# 1-2 MB: Written (pattern 0x11) 118# 2-3 MB: Discarded 119# 3-4 MB: Zero write over discarded space 120# 4-5 MB: Zero write over written space 121# 5-6 MB: Zero write over unallocated space 122 123echo 124$QEMU_IO -c 'write -P 0x11 1M 4M' \ 125 -c 'discard 2M 2M' \ 126 -c 'write -z 3M 3M' \ 127 -f $IMGFMT "$TEST_IMG" | 128 _filter_qemu_io 129_check_test_img 130 131echo 132$QEMU_IMG map --output=json "$TEST_IMG" 133 134echo 135$QEMU_IO -c 'read -P 0 0 1M' \ 136 -c 'read -P 0x11 1M 1M' \ 137 -c 'read -P 0 2M 4M' \ 138 -f $IMGFMT "$TEST_IMG" | 139 _filter_qemu_io 140 141# Zero clusters are only marked as such in the qcow2 metadata, but contain 142# stale data in the external data file 143echo 144$QEMU_IO -c 'read -P 0 0 1M' \ 145 -c 'read -P 0x11 1M 1M' \ 146 -c 'read -P 0 2M 2M' \ 147 -c 'read -P 0x11 4M 1M' \ 148 -c 'read -P 0 5M 1M' \ 149 -f raw "$TEST_IMG.data" | 150 _filter_qemu_io 151 152 153echo -n "qcow2 file size after I/O: " 154du -b $TEST_IMG | cut -f1 155 156echo 157echo "=== Standalone image with external data file (valid raw) ===" 158echo 159 160_make_test_img -o "data_file=$TEST_IMG.data,data_file_raw=on" 64M 161 162echo -n "qcow2 file size before I/O: " 163du -b $TEST_IMG | cut -f1 164 165echo 166$QEMU_IO -c 'write -P 0x11 1M 4M' \ 167 -c 'discard 2M 2M' \ 168 -c 'write -z 3M 3M' \ 169 -f $IMGFMT "$TEST_IMG" | 170 _filter_qemu_io 171_check_test_img 172 173echo 174$QEMU_IMG map --output=json "$TEST_IMG" 175 176echo 177$QEMU_IO -c 'read -P 0 0 1M' \ 178 -c 'read -P 0x11 1M 1M' \ 179 -c 'read -P 0 2M 4M' \ 180 -f $IMGFMT "$TEST_IMG" | 181 _filter_qemu_io 182 183echo 184$QEMU_IMG compare "$TEST_IMG" "$TEST_IMG.data" 185 186echo -n "qcow2 file size after I/O: " 187du -b $TEST_IMG | cut -f1 188 189echo 190echo "=== bdrv_co_block_status test for file and offset=0 ===" 191echo 192 193_make_test_img -o "data_file=$TEST_IMG.data" 64M 194 195$QEMU_IO -c 'write -P 0x11 0 1M' -f $IMGFMT "$TEST_IMG" | _filter_qemu_io 196$QEMU_IO -c 'read -P 0x11 0 1M' -f $IMGFMT "$TEST_IMG" | _filter_qemu_io 197$QEMU_IMG map --output=human "$TEST_IMG" | _filter_testdir 198$QEMU_IMG map --output=json "$TEST_IMG" 199 200# success, all done 201echo "*** done" 202rm -f $seq.full 203status=0 204