xref: /openbmc/qemu/tests/qemu-iotests/125 (revision e6e8db0337307eb600d0903adea44eaa7ff14cc3)
111a82d14SPhilippe Mathieu-Daudé#!/usr/bin/env 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 Reitzstatus=1	# failure is the default!
28ced14843SMax Reitz
29ced14843SMax Reitz_cleanup()
30ced14843SMax Reitz{
31ced14843SMax Reitz	_cleanup_test_img
32ced14843SMax Reitz}
33ced14843SMax Reitztrap "_cleanup; exit \$status" 0 1 2 3 15
34ced14843SMax Reitz
35ced14843SMax Reitzget_image_size_on_host()
36ced14843SMax Reitz{
37ced14843SMax Reitz    $QEMU_IMG info -f "$IMGFMT" "$TEST_IMG" | grep "disk size" \
38ced14843SMax Reitz        | sed -e 's/^[^0-9]*\([0-9]\+\).*$/\1/'
39ced14843SMax Reitz}
40ced14843SMax Reitz
41ced14843SMax Reitz# get standard environment and filters
42ced14843SMax Reitz. ./common.rc
43ced14843SMax Reitz. ./common.filter
44ced14843SMax Reitz
45ced14843SMax Reitz_supported_fmt qcow2
46ced14843SMax Reitz_supported_proto file
47ced14843SMax Reitz
48ced14843SMax Reitzif [ -z "$TEST_IMG_FILE" ]; then
49ced14843SMax Reitz    TEST_IMG_FILE=$TEST_IMG
50ced14843SMax Reitzfi
51ced14843SMax Reitz
52ced14843SMax Reitz# Generally, we create some image with or without existing preallocation and
53ced14843SMax Reitz# then resize it. Then we write some data into the image and verify that its
54ced14843SMax Reitz# size does not change if we have used preallocation.
55ced14843SMax Reitz
56ced14843SMax Reitz# With a cluster size of 512 B, one L2 table covers 64 * 512 B = 32 kB.
57ced14843SMax Reitz# One cluster of the L1 table covers 64 * 32 kB = 2 MB.
58ced14843SMax Reitz# There are multiple cases we want to test:
59ced14843SMax Reitz# (1) Grow an image without having to allocate a new L2 table.
60ced14843SMax Reitz# (2) Grow an image, having to allocate a new L2 table.
61ced14843SMax Reitz# (3) Grow an image, having to grow the L1 table.
62ced14843SMax Reitz# Therefore, we create an image that is 48 kB below 2 MB. Then:
63ced14843SMax Reitz# (1) We resize it to 2 MB - 32 kB. (+ 16 kB)
64ced14843SMax Reitz# (2) We resize it to 2 MB.         (+ 48 kB)
65ced14843SMax Reitz# (3) We resize it to 2 MB + 32 kB. (+ 80 kB)
66ced14843SMax Reitz
67ced14843SMax Reitz# in B
68ced14843SMax ReitzCREATION_SIZE=$((2 * 1024 * 1024 - 48 * 1024))
69ced14843SMax Reitz
704c112a39SMax Reitz# 512 is the actual test -- but it's good to test 64k as well, just to be sure.
714c112a39SMax Reitzfor cluster_size in 512 64k; do
72ced14843SMax Reitz# in kB
73ced14843SMax Reitzfor GROWTH_SIZE in 16 48 80; do
74ced14843SMax Reitz    for create_mode in off metadata falloc full; do
75ced14843SMax Reitz        for growth_mode in off metadata falloc full; do
764c112a39SMax Reitz            echo "--- cluster_size=$cluster_size growth_size=$GROWTH_SIZE create_mode=$create_mode growth_mode=$growth_mode ---"
77ced14843SMax Reitz
784c112a39SMax Reitz            IMGOPTS="preallocation=$create_mode,cluster_size=$cluster_size" _make_test_img ${CREATION_SIZE}
79ced14843SMax Reitz            $QEMU_IMG resize -f "$IMGFMT" --preallocation=$growth_mode "$TEST_IMG" +${GROWTH_SIZE}K
80ced14843SMax Reitz
81ced14843SMax Reitz            host_size_0=$(get_image_size_on_host)
82ced14843SMax Reitz            file_length_0=$(stat -c '%s' "$TEST_IMG_FILE")
83ced14843SMax Reitz
84ced14843SMax Reitz            $QEMU_IO -c "write 0 $CREATION_SIZE" "$TEST_IMG" | _filter_qemu_io
85ced14843SMax Reitz
86ced14843SMax Reitz            host_size_1=$(get_image_size_on_host)
87ced14843SMax Reitz            file_length_1=$(stat -c '%s' "$TEST_IMG_FILE")
88ced14843SMax Reitz
89ced14843SMax Reitz            $QEMU_IO -c "write $CREATION_SIZE ${GROWTH_SIZE}K" "$TEST_IMG" | _filter_qemu_io
90ced14843SMax Reitz
91ced14843SMax Reitz            host_size_2=$(get_image_size_on_host)
92ced14843SMax Reitz            file_length_2=$(stat -c '%s' "$TEST_IMG_FILE")
93ced14843SMax Reitz
94ced14843SMax Reitz            # Test creation preallocation: Compare #0 against #1
95ced14843SMax Reitz            if [ $create_mode != off ]; then
96ced14843SMax Reitz                # The image length should not have grown
97ced14843SMax Reitz                if [ $file_length_1 -gt $file_length_0 ]; then
98ced14843SMax Reitz                    echo "ERROR (create): Image length has grown from $file_length_0 to $file_length_1"
99ced14843SMax Reitz                fi
100ced14843SMax Reitz                if [ $create_mode != metadata ]; then
101ced14843SMax Reitz                    # The host size should not have grown either
102ced14843SMax Reitz                    if [ $host_size_1 -gt $host_size_0 ]; then
103ced14843SMax Reitz                        echo "ERROR (create): Host size has grown from $host_size_0 to $host_size_1"
104ced14843SMax Reitz                    fi
105ced14843SMax Reitz                fi
106ced14843SMax Reitz            fi
107ced14843SMax Reitz
108ced14843SMax Reitz            # Test resize preallocation: Compare #2 against #1
109ced14843SMax Reitz            if [ $growth_mode != off ]; then
110ced14843SMax Reitz                # The image length should not have grown
111ced14843SMax Reitz                if [ $file_length_2 -gt $file_length_1 ]; then
112ced14843SMax Reitz                    echo "ERROR (grow): Image length has grown from $file_length_1 to $file_length_2"
113ced14843SMax Reitz                fi
114*e6e8db03SMax Reitz                if [ $growth_mode != metadata ]; then
115ced14843SMax Reitz                    # The host size should not have grown either
116ced14843SMax Reitz                    if [ $host_size_2 -gt $host_size_1 ]; then
117ced14843SMax Reitz                        echo "ERROR (grow): Host size has grown from $host_size_1 to $host_size_2"
118ced14843SMax Reitz                    fi
119ced14843SMax Reitz                fi
120ced14843SMax Reitz            fi
121ced14843SMax Reitz
122ced14843SMax Reitz            echo
123ced14843SMax Reitz        done
124ced14843SMax Reitz    done
125ced14843SMax Reitzdone
1264c112a39SMax Reitzdone
127ced14843SMax Reitz
128ced14843SMax Reitz# success, all done
129ced14843SMax Reitzecho '*** done'
130ced14843SMax Reitzrm -f $seq.full
131ced14843SMax Reitzstatus=0
132