xref: /openbmc/qemu/tests/qemu-iotests/125 (revision 4c112a397c2f61038914fa315a7896ce6d645d18)
1ced14843SMax Reitz#!/bin/bash
2ced14843SMax Reitz#
3ced14843SMax Reitz# Test preallocated growth of qcow2 images
4ced14843SMax Reitz#
5ced14843SMax Reitz# Copyright (C) 2017 Red Hat, Inc.
6ced14843SMax Reitz#
7ced14843SMax Reitz# This program is free software; you can redistribute it and/or modify
8ced14843SMax Reitz# it under the terms of the GNU General Public License as published by
9ced14843SMax Reitz# the Free Software Foundation; either version 2 of the License, or
10ced14843SMax Reitz# (at your option) any later version.
11ced14843SMax Reitz#
12ced14843SMax Reitz# This program is distributed in the hope that it will be useful,
13ced14843SMax Reitz# but WITHOUT ANY WARRANTY; without even the implied warranty of
14ced14843SMax Reitz# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15ced14843SMax Reitz# GNU General Public License for more details.
16ced14843SMax Reitz#
17ced14843SMax Reitz# You should have received a copy of the GNU General Public License
18ced14843SMax Reitz# along with this program.  If not, see <http://www.gnu.org/licenses/>.
19ced14843SMax Reitz#
20ced14843SMax Reitz
21ced14843SMax Reitz# creator
22ced14843SMax Reitzowner=mreitz@redhat.com
23ced14843SMax Reitz
24ced14843SMax Reitzseq=$(basename $0)
25ced14843SMax Reitzecho "QA output created by $seq"
26ced14843SMax Reitz
27ced14843SMax Reitzhere=$PWD
28ced14843SMax Reitzstatus=1	# failure is the default!
29ced14843SMax Reitz
30ced14843SMax Reitz_cleanup()
31ced14843SMax Reitz{
32ced14843SMax Reitz	_cleanup_test_img
33ced14843SMax Reitz}
34ced14843SMax Reitztrap "_cleanup; exit \$status" 0 1 2 3 15
35ced14843SMax Reitz
36ced14843SMax Reitzget_image_size_on_host()
37ced14843SMax Reitz{
38ced14843SMax Reitz    $QEMU_IMG info -f "$IMGFMT" "$TEST_IMG" | grep "disk size" \
39ced14843SMax Reitz        | sed -e 's/^[^0-9]*\([0-9]\+\).*$/\1/'
40ced14843SMax Reitz}
41ced14843SMax Reitz
42ced14843SMax Reitz# get standard environment and filters
43ced14843SMax Reitz. ./common.rc
44ced14843SMax Reitz. ./common.filter
45ced14843SMax Reitz
46ced14843SMax Reitz_supported_fmt qcow2
47ced14843SMax Reitz_supported_proto file
48ced14843SMax Reitz_supported_os Linux
49ced14843SMax Reitz
50ced14843SMax Reitzif [ -z "$TEST_IMG_FILE" ]; then
51ced14843SMax Reitz    TEST_IMG_FILE=$TEST_IMG
52ced14843SMax Reitzfi
53ced14843SMax Reitz
54ced14843SMax Reitz# Generally, we create some image with or without existing preallocation and
55ced14843SMax Reitz# then resize it. Then we write some data into the image and verify that its
56ced14843SMax Reitz# size does not change if we have used preallocation.
57ced14843SMax Reitz
58ced14843SMax Reitz# With a cluster size of 512 B, one L2 table covers 64 * 512 B = 32 kB.
59ced14843SMax Reitz# One cluster of the L1 table covers 64 * 32 kB = 2 MB.
60ced14843SMax Reitz# There are multiple cases we want to test:
61ced14843SMax Reitz# (1) Grow an image without having to allocate a new L2 table.
62ced14843SMax Reitz# (2) Grow an image, having to allocate a new L2 table.
63ced14843SMax Reitz# (3) Grow an image, having to grow the L1 table.
64ced14843SMax Reitz# Therefore, we create an image that is 48 kB below 2 MB. Then:
65ced14843SMax Reitz# (1) We resize it to 2 MB - 32 kB. (+ 16 kB)
66ced14843SMax Reitz# (2) We resize it to 2 MB.         (+ 48 kB)
67ced14843SMax Reitz# (3) We resize it to 2 MB + 32 kB. (+ 80 kB)
68ced14843SMax Reitz
69ced14843SMax Reitz# in B
70ced14843SMax ReitzCREATION_SIZE=$((2 * 1024 * 1024 - 48 * 1024))
71ced14843SMax Reitz
72*4c112a39SMax Reitz# 512 is the actual test -- but it's good to test 64k as well, just to be sure.
73*4c112a39SMax Reitzfor cluster_size in 512 64k; do
74ced14843SMax Reitz# in kB
75ced14843SMax Reitzfor GROWTH_SIZE in 16 48 80; do
76ced14843SMax Reitz    for create_mode in off metadata falloc full; do
77ced14843SMax Reitz        for growth_mode in off metadata falloc full; do
78*4c112a39SMax Reitz            echo "--- cluster_size=$cluster_size growth_size=$GROWTH_SIZE create_mode=$create_mode growth_mode=$growth_mode ---"
79ced14843SMax Reitz
80*4c112a39SMax Reitz            IMGOPTS="preallocation=$create_mode,cluster_size=$cluster_size" _make_test_img ${CREATION_SIZE}
81ced14843SMax Reitz            $QEMU_IMG resize -f "$IMGFMT" --preallocation=$growth_mode "$TEST_IMG" +${GROWTH_SIZE}K
82ced14843SMax Reitz
83ced14843SMax Reitz            host_size_0=$(get_image_size_on_host)
84ced14843SMax Reitz            file_length_0=$(stat -c '%s' "$TEST_IMG_FILE")
85ced14843SMax Reitz
86ced14843SMax Reitz            $QEMU_IO -c "write 0 $CREATION_SIZE" "$TEST_IMG" | _filter_qemu_io
87ced14843SMax Reitz
88ced14843SMax Reitz            host_size_1=$(get_image_size_on_host)
89ced14843SMax Reitz            file_length_1=$(stat -c '%s' "$TEST_IMG_FILE")
90ced14843SMax Reitz
91ced14843SMax Reitz            $QEMU_IO -c "write $CREATION_SIZE ${GROWTH_SIZE}K" "$TEST_IMG" | _filter_qemu_io
92ced14843SMax Reitz
93ced14843SMax Reitz            host_size_2=$(get_image_size_on_host)
94ced14843SMax Reitz            file_length_2=$(stat -c '%s' "$TEST_IMG_FILE")
95ced14843SMax Reitz
96ced14843SMax Reitz            # Test creation preallocation: Compare #0 against #1
97ced14843SMax Reitz            if [ $create_mode != off ]; then
98ced14843SMax Reitz                # The image length should not have grown
99ced14843SMax Reitz                if [ $file_length_1 -gt $file_length_0 ]; then
100ced14843SMax Reitz                    echo "ERROR (create): Image length has grown from $file_length_0 to $file_length_1"
101ced14843SMax Reitz                fi
102ced14843SMax Reitz                if [ $create_mode != metadata ]; then
103ced14843SMax Reitz                    # The host size should not have grown either
104ced14843SMax Reitz                    if [ $host_size_1 -gt $host_size_0 ]; then
105ced14843SMax Reitz                        echo "ERROR (create): Host size has grown from $host_size_0 to $host_size_1"
106ced14843SMax Reitz                    fi
107ced14843SMax Reitz                fi
108ced14843SMax Reitz            fi
109ced14843SMax Reitz
110ced14843SMax Reitz            # Test resize preallocation: Compare #2 against #1
111ced14843SMax Reitz            if [ $growth_mode != off ]; then
112ced14843SMax Reitz                # The image length should not have grown
113ced14843SMax Reitz                if [ $file_length_2 -gt $file_length_1 ]; then
114ced14843SMax Reitz                    echo "ERROR (grow): Image length has grown from $file_length_1 to $file_length_2"
115ced14843SMax Reitz                fi
116ced14843SMax Reitz                if [ $create_mode != metadata ]; then
117ced14843SMax Reitz                    # The host size should not have grown either
118ced14843SMax Reitz                    if [ $host_size_2 -gt $host_size_1 ]; then
119ced14843SMax Reitz                        echo "ERROR (grow): Host size has grown from $host_size_1 to $host_size_2"
120ced14843SMax Reitz                    fi
121ced14843SMax Reitz                fi
122ced14843SMax Reitz            fi
123ced14843SMax Reitz
124ced14843SMax Reitz            echo
125ced14843SMax Reitz        done
126ced14843SMax Reitz    done
127ced14843SMax Reitzdone
128*4c112a39SMax Reitzdone
129ced14843SMax Reitz
130ced14843SMax Reitz# success, all done
131ced14843SMax Reitzecho '*** done'
132ced14843SMax Reitzrm -f $seq.full
133ced14843SMax Reitzstatus=0
134