]> Git Repo - qemu.git/blame - tests/qemu-iotests/063
qcow2: Check refcount table size (CVE-2014-0144)
[qemu.git] / tests / qemu-iotests / 063
CommitLineData
b2e10493
AD
1#!/bin/bash
2#
3# test of qemu-img convert -n - convert without creation
4#
5# Copyright (C) 2009 Red Hat, Inc.
6# Copyright (C) 2013 Alex Bligh ([email protected])
7#
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#
21
22# creator
23[email protected]
24
25seq=`basename $0`
26echo "QA output created by $seq"
27
28here=`pwd`
29tmp=/tmp/$$
30status=1 # failure is the default!
31
32_cleanup()
33{
34 _cleanup_test_img
fef9c191 35 rm -f "$TEST_IMG.orig" "$TEST_IMG.raw" "$TEST_IMG.raw2"
b2e10493
AD
36}
37trap "_cleanup; exit \$status" 0 1 2 3 15
38
39# get standard environment, filters and checks
40. ./common.rc
41. ./common.filter
42. ./common.pattern
43
44_supported_fmt qcow qcow2 vmdk qed raw
1f7bf7d0 45_supported_proto file
b2e10493 46_supported_os Linux
d2329f27
FZ
47_unsupported_imgopts "subformat=monolithicFlat" \
48 "subformat=twoGbMaxExtentFlat" \
49 "subformat=twoGbMaxExtentSparse"
b2e10493
AD
50
51_make_test_img 4M
52
53echo "== Testing conversion with -n fails with no target file =="
54# check .orig file does not exist
fef9c191
JC
55rm -f "$TEST_IMG.orig"
56if $QEMU_IMG convert -f $IMGFMT -O $IMGFMT -n "$TEST_IMG" "$TEST_IMG.orig" >/dev/null 2>&1; then
b2e10493
AD
57 exit 1
58fi
59
60echo "== Testing conversion with -n succeeds with a target file =="
fef9c191
JC
61rm -f "$TEST_IMG.orig"
62cp "$TEST_IMG" "$TEST_IMG.orig"
63if ! $QEMU_IMG convert -f $IMGFMT -O $IMGFMT -n "$TEST_IMG" "$TEST_IMG.orig" ; then
b2e10493
AD
64 exit 1
65fi
66
67echo "== Testing conversion to raw is the same after conversion with -n =="
68# compare the raw files
fef9c191 69if ! $QEMU_IMG convert -f $IMGFMT -O raw "$TEST_IMG" "$TEST_IMG.raw1" ; then
b2e10493
AD
70 exit 1
71fi
72
fef9c191 73if ! $QEMU_IMG convert -f $IMGFMT -O raw "$TEST_IMG.orig" "$TEST_IMG.raw2" ; then
b2e10493
AD
74 exit 1
75fi
76
fef9c191 77if ! cmp "$TEST_IMG.raw1" "$TEST_IMG.raw2" ; then
b2e10493
AD
78 exit 1
79fi
80
81echo "== Testing conversion back to original format =="
fef9c191 82if ! $QEMU_IMG convert -f raw -O $IMGFMT -n "$TEST_IMG.raw2" "$TEST_IMG" ; then
b2e10493
AD
83 exit 1
84fi
85_check_test_img
86
87echo "== Testing conversion to a smaller file fails =="
fef9c191
JC
88rm -f "$TEST_IMG.orig"
89mv "$TEST_IMG" "$TEST_IMG.orig"
b2e10493 90_make_test_img 2M
fef9c191 91if $QEMU_IMG convert -f $IMGFMT -O $IMGFMT -n "$TEST_IMG.orig" "$TEST_IMG" >/dev/null 2>&1; then
b2e10493
AD
92 exit 1
93fi
94
fef9c191 95rm -f "$TEST_IMG.orig" "$TEST_IMG.raw" "$TEST_IMG.raw2"
b2e10493
AD
96
97echo "*** done"
98rm -f $seq.full
99status=0
100exit 0
This page took 0.063577 seconds and 4 git commands to generate.