19128ae5eSKevin Wolf#!/bin/sh 29128ae5eSKevin Wolf# 39128ae5eSKevin Wolf# When using a backing file for the output image in qemu-img convert, 49128ae5eSKevin Wolf# the backing file clusters must not copied. The data must still be 59128ae5eSKevin Wolf# read correctly. 69128ae5eSKevin Wolf# 79128ae5eSKevin Wolf# Copyright (C) 2009 Red Hat, Inc. 89128ae5eSKevin Wolf# 99128ae5eSKevin Wolf# This program is free software; you can redistribute it and/or modify 109128ae5eSKevin Wolf# it under the terms of the GNU General Public License as published by 119128ae5eSKevin Wolf# the Free Software Foundation; either version 2 of the License, or 129128ae5eSKevin Wolf# (at your option) any later version. 139128ae5eSKevin Wolf# 149128ae5eSKevin Wolf# This program is distributed in the hope that it will be useful, 159128ae5eSKevin Wolf# but WITHOUT ANY WARRANTY; without even the implied warranty of 169128ae5eSKevin Wolf# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 179128ae5eSKevin Wolf# GNU General Public License for more details. 189128ae5eSKevin Wolf# 199128ae5eSKevin Wolf# You should have received a copy of the GNU General Public License 20e8c212d6SChristoph Hellwig# along with this program. If not, see <http://www.gnu.org/licenses/>. 219128ae5eSKevin Wolf# 229128ae5eSKevin Wolf 239128ae5eSKevin Wolf# creator 249128ae5eSKevin Wolfowner=kwolf@redhat.com 259128ae5eSKevin Wolf 269128ae5eSKevin Wolfseq=`basename $0` 279128ae5eSKevin Wolfecho "QA output created by $seq" 289128ae5eSKevin Wolf 299128ae5eSKevin Wolfhere=`pwd` 309128ae5eSKevin Wolftmp=/tmp/$$ 319128ae5eSKevin Wolfstatus=1 # failure is the default! 329128ae5eSKevin Wolf 339128ae5eSKevin Wolf_cleanup() 349128ae5eSKevin Wolf{ 359128ae5eSKevin Wolf _cleanup_test_img 369128ae5eSKevin Wolf rm -f $TEST_IMG.base 379128ae5eSKevin Wolf rm -f $TEST_IMG.orig 389128ae5eSKevin Wolf} 399128ae5eSKevin Wolftrap "_cleanup; exit \$status" 0 1 2 3 15 409128ae5eSKevin Wolf 419128ae5eSKevin Wolf# get standard environment, filters and checks 429128ae5eSKevin Wolf. ./common.rc 439128ae5eSKevin Wolf. ./common.filter 449128ae5eSKevin Wolf. ./common.pattern 459128ae5eSKevin Wolf 469128ae5eSKevin Wolf# Any format supporting backing files 479128ae5eSKevin Wolf_supported_fmt qcow qcow2 vmdk 489128ae5eSKevin Wolf_supported_os Linux 499128ae5eSKevin Wolf 509128ae5eSKevin WolfTEST_OFFSETS="0 4294967296" 518fc1024cSKevin WolfCLUSTER_SIZE=65536 529128ae5eSKevin Wolf 539128ae5eSKevin Wolf_make_test_img 6G 549128ae5eSKevin Wolf 559128ae5eSKevin Wolfecho "Filling base image" 569128ae5eSKevin Wolfecho 579128ae5eSKevin Wolf 589128ae5eSKevin Wolffor offset in $TEST_OFFSETS; do 599128ae5eSKevin Wolf # Some clusters with alternating backing file/image file reads 609128ae5eSKevin Wolf io writev $(( offset )) 512 1024 64 619128ae5eSKevin Wolf 629128ae5eSKevin Wolf # Complete backing clusters 63*3da9c8fbSKevin Wolf io writev $(( offset + 1024 * 1024)) $CLUSTER_SIZE $CLUSTER_SIZE 1 649128ae5eSKevin Wolfdone 659128ae5eSKevin Wolf_check_test_img 669128ae5eSKevin Wolf 679128ae5eSKevin Wolfecho "Creating test image with backing file" 689128ae5eSKevin Wolfecho 699128ae5eSKevin Wolf 709128ae5eSKevin Wolfmv $TEST_IMG $TEST_IMG.base 719128ae5eSKevin Wolf_make_test_img -b $TEST_IMG.base 6G 729128ae5eSKevin Wolf 739128ae5eSKevin Wolfecho "Filling test image" 749128ae5eSKevin Wolfecho 759128ae5eSKevin Wolf 769128ae5eSKevin Wolffor offset in $TEST_OFFSETS; do 779128ae5eSKevin Wolf # Some clusters with alternating backing file/image file reads 789128ae5eSKevin Wolf io writev $(( offset + 512 )) 512 1024 64 799128ae5eSKevin Wolf 809128ae5eSKevin Wolf # Complete test image clusters 81*3da9c8fbSKevin Wolf io writev $(( offset + 1024 * 1024 + $CLUSTER_SIZE)) $CLUSTER_SIZE $CLUSTER_SIZE 1 829128ae5eSKevin Wolfdone 839128ae5eSKevin Wolf_check_test_img 849128ae5eSKevin Wolf 859128ae5eSKevin Wolfmv $TEST_IMG $TEST_IMG.orig 869128ae5eSKevin Wolf$QEMU_IMG convert -O $IMGFMT -B $TEST_IMG.base $TEST_IMG.orig $TEST_IMG 879128ae5eSKevin Wolf 889128ae5eSKevin Wolfecho "Checking if backing clusters are allocated when they shouldn't" 899128ae5eSKevin Wolfecho 909128ae5eSKevin Wolffor offset in $TEST_OFFSETS; do 919128ae5eSKevin Wolf # Complete backing clusters 92*3da9c8fbSKevin Wolf is_allocated $(( offset + 1024 * 1024)) $CLUSTER_SIZE $CLUSTER_SIZE 1 939128ae5eSKevin Wolfdone 949128ae5eSKevin Wolf 959128ae5eSKevin Wolfecho "Reading" 969128ae5eSKevin Wolfecho 979128ae5eSKevin Wolf 989128ae5eSKevin Wolffor offset in $TEST_OFFSETS; do 999128ae5eSKevin Wolf # Some clusters with alternating backing file/image file reads 1009128ae5eSKevin Wolf io readv $(( offset )) 512 1024 64 1019128ae5eSKevin Wolf io readv $(( offset + 512 )) 512 1024 64 1029128ae5eSKevin Wolf 1039128ae5eSKevin Wolf # Complete test image clusters 104*3da9c8fbSKevin Wolf io readv $(( offset + 1024 * 1024)) $CLUSTER_SIZE $CLUSTER_SIZE 1 105*3da9c8fbSKevin Wolf io readv $(( offset + 1024 * 1024 + $CLUSTER_SIZE)) $CLUSTER_SIZE $CLUSTER_SIZE 1 1069128ae5eSKevin Wolf 1079128ae5eSKevin Wolf # Empty sectors 108*3da9c8fbSKevin Wolf io_zero readv $(( offset + 1024 * 1024 + $CLUSTER_SIZE * 4 )) $CLUSTER_SIZE $CLUSTER_SIZE 1 1099128ae5eSKevin Wolfdone 1109128ae5eSKevin Wolf_check_test_img 1119128ae5eSKevin Wolf 1129128ae5eSKevin Wolf# success, all done 1139128ae5eSKevin Wolfecho "*** done" 1149128ae5eSKevin Wolfrm -f $seq.full 1159128ae5eSKevin Wolfstatus=0 116