2019-03-07 15:58:38 +01:00
|
|
|
#!/usr/bin/env bash
|
2021-01-16 14:44:19 +01:00
|
|
|
# group: rw auto quick
|
2017-07-24 17:39:52 +02:00
|
|
|
#
|
|
|
|
# qemu-img measure sub-command tests on huge qcow2 files
|
|
|
|
#
|
qcow2: Expose bitmaps' size during measure
It's useful to know how much space can be occupied by qcow2 persistent
bitmaps, even though such metadata is unrelated to the guest-visible
data. Report this value as an additional QMP field, present when
measuring an existing image and output format that both support
bitmaps. Update iotest 178 and 190 to updated output, as well as new
coverage in 190 demonstrating non-zero values made possible with the
recently-added qemu-img bitmap command (see 3b51ab4b).
The new 'bitmaps size:' field is displayed automatically as part of
'qemu-img measure' any time it is present in QMP (that is, any time
both the source image being measured and destination format support
bitmaps, even if the measurement is 0 because there are no bitmaps
present). If the field is absent, it means that no bitmaps can be
copied (source, destination, or both lack bitmaps, including when
measuring based on size rather than on a source image). This behavior
is compatible with an upcoming patch adding 'qemu-img convert
--bitmaps': that command will fail in the same situations where this
patch omits the field.
The addition of a new field demonstrates why we should always
zero-initialize qapi C structs; while the qcow2 driver still fully
populates all fields, the raw and crypto drivers had to be tweaked to
avoid uninitialized data.
Consideration was also given towards having a 'qemu-img measure
--bitmaps' which errors out when bitmaps are not possible, and
otherwise sums the bitmaps into the existing allocation totals rather
than displaying as a separate field, as a potential convenience
factor. But this was ultimately decided to be more complexity than
necessary when the QMP interface was sufficient enough with bitmaps
remaining a separate field.
See also: https://bugzilla.redhat.com/1779904
Reported-by: Nir Soffer <nsoffer@redhat.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200521192137.1120211-3-eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2020-05-21 21:21:34 +02:00
|
|
|
# Copyright (C) 2017-2020 Red Hat, Inc.
|
2017-07-24 17:39:52 +02:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
# creator
|
|
|
|
owner=eblake@redhat.com
|
|
|
|
|
|
|
|
seq=`basename $0`
|
|
|
|
echo "QA output created by $seq"
|
|
|
|
|
|
|
|
status=1 # failure is the default!
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
{
|
|
|
|
_cleanup_test_img
|
2019-11-07 17:37:01 +01:00
|
|
|
_rm_test_img "$TEST_IMG.converted"
|
2017-07-24 17:39:52 +02:00
|
|
|
}
|
|
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
|
|
|
. ./common.rc
|
|
|
|
. ./common.filter
|
|
|
|
. ./common.pattern
|
|
|
|
|
|
|
|
# See 178 for more extensive tests across more formats
|
|
|
|
_supported_fmt qcow2
|
|
|
|
_supported_proto file
|
2020-06-17 12:48:22 +02:00
|
|
|
# compat=0.10 does not support bitmaps
|
|
|
|
_unsupported_imgopts 'compat=0.10'
|
2017-07-24 17:39:52 +02:00
|
|
|
|
qcow2: Expose bitmaps' size during measure
It's useful to know how much space can be occupied by qcow2 persistent
bitmaps, even though such metadata is unrelated to the guest-visible
data. Report this value as an additional QMP field, present when
measuring an existing image and output format that both support
bitmaps. Update iotest 178 and 190 to updated output, as well as new
coverage in 190 demonstrating non-zero values made possible with the
recently-added qemu-img bitmap command (see 3b51ab4b).
The new 'bitmaps size:' field is displayed automatically as part of
'qemu-img measure' any time it is present in QMP (that is, any time
both the source image being measured and destination format support
bitmaps, even if the measurement is 0 because there are no bitmaps
present). If the field is absent, it means that no bitmaps can be
copied (source, destination, or both lack bitmaps, including when
measuring based on size rather than on a source image). This behavior
is compatible with an upcoming patch adding 'qemu-img convert
--bitmaps': that command will fail in the same situations where this
patch omits the field.
The addition of a new field demonstrates why we should always
zero-initialize qapi C structs; while the qcow2 driver still fully
populates all fields, the raw and crypto drivers had to be tweaked to
avoid uninitialized data.
Consideration was also given towards having a 'qemu-img measure
--bitmaps' which errors out when bitmaps are not possible, and
otherwise sums the bitmaps into the existing allocation totals rather
than displaying as a separate field, as a potential convenience
factor. But this was ultimately decided to be more complexity than
necessary when the QMP interface was sufficient enough with bitmaps
remaining a separate field.
See also: https://bugzilla.redhat.com/1779904
Reported-by: Nir Soffer <nsoffer@redhat.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200521192137.1120211-3-eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2020-05-21 21:21:34 +02:00
|
|
|
echo "== Huge file without bitmaps =="
|
2017-07-24 17:39:52 +02:00
|
|
|
echo
|
|
|
|
|
2019-11-07 17:36:57 +01:00
|
|
|
_make_test_img -o 'cluster_size=2M' 2T
|
2017-07-24 17:39:52 +02:00
|
|
|
|
|
|
|
$QEMU_IMG measure -O raw -f qcow2 "$TEST_IMG"
|
|
|
|
$QEMU_IMG measure -O qcow2 -o cluster_size=64k -f qcow2 "$TEST_IMG"
|
|
|
|
$QEMU_IMG measure -O qcow2 -o cluster_size=2M -f qcow2 "$TEST_IMG"
|
|
|
|
|
qcow2: Expose bitmaps' size during measure
It's useful to know how much space can be occupied by qcow2 persistent
bitmaps, even though such metadata is unrelated to the guest-visible
data. Report this value as an additional QMP field, present when
measuring an existing image and output format that both support
bitmaps. Update iotest 178 and 190 to updated output, as well as new
coverage in 190 demonstrating non-zero values made possible with the
recently-added qemu-img bitmap command (see 3b51ab4b).
The new 'bitmaps size:' field is displayed automatically as part of
'qemu-img measure' any time it is present in QMP (that is, any time
both the source image being measured and destination format support
bitmaps, even if the measurement is 0 because there are no bitmaps
present). If the field is absent, it means that no bitmaps can be
copied (source, destination, or both lack bitmaps, including when
measuring based on size rather than on a source image). This behavior
is compatible with an upcoming patch adding 'qemu-img convert
--bitmaps': that command will fail in the same situations where this
patch omits the field.
The addition of a new field demonstrates why we should always
zero-initialize qapi C structs; while the qcow2 driver still fully
populates all fields, the raw and crypto drivers had to be tweaked to
avoid uninitialized data.
Consideration was also given towards having a 'qemu-img measure
--bitmaps' which errors out when bitmaps are not possible, and
otherwise sums the bitmaps into the existing allocation totals rather
than displaying as a separate field, as a potential convenience
factor. But this was ultimately decided to be more complexity than
necessary when the QMP interface was sufficient enough with bitmaps
remaining a separate field.
See also: https://bugzilla.redhat.com/1779904
Reported-by: Nir Soffer <nsoffer@redhat.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200521192137.1120211-3-eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2020-05-21 21:21:34 +02:00
|
|
|
echo
|
|
|
|
echo "== Huge file with bitmaps =="
|
|
|
|
echo
|
|
|
|
|
|
|
|
$QEMU_IMG bitmap --add --granularity 512 -f qcow2 "$TEST_IMG" b1
|
|
|
|
$QEMU_IMG bitmap --add -g 2M -f qcow2 "$TEST_IMG" b2
|
|
|
|
|
|
|
|
# No bitmap without a source
|
|
|
|
$QEMU_IMG measure -O qcow2 --size 10M
|
|
|
|
# No bitmap output, since raw does not support it
|
|
|
|
$QEMU_IMG measure -O raw -f qcow2 "$TEST_IMG"
|
|
|
|
# No bitmap output, since no bitmaps on raw source. Munge required size, as
|
|
|
|
# some filesystems store the qcow2 file with less sparseness than others
|
|
|
|
$QEMU_IMG measure -O qcow2 -f raw "$TEST_IMG" |
|
|
|
|
sed '/^required size:/ s/[0-9][0-9]*/SIZE/'
|
|
|
|
# No bitmap output, since v2 does not support it
|
|
|
|
$QEMU_IMG measure -O qcow2 -o compat=0.10 -f qcow2 "$TEST_IMG"
|
|
|
|
|
|
|
|
# Compute expected output: bitmap clusters + bitmap tables + bitmaps directory
|
|
|
|
echo
|
|
|
|
val2T=$((2*1024*1024*1024*1024))
|
|
|
|
cluster=$((64*1024))
|
|
|
|
b1clusters=$(( (val2T/512/8 + cluster - 1) / cluster ))
|
|
|
|
b2clusters=$(( (val2T/2/1024/1024/8 + cluster - 1) / cluster ))
|
|
|
|
echo expected bitmap $((b1clusters * cluster +
|
|
|
|
(b1clusters * 8 + cluster - 1) / cluster * cluster +
|
|
|
|
b2clusters * cluster +
|
|
|
|
(b2clusters * 8 + cluster - 1) / cluster * cluster +
|
|
|
|
cluster))
|
|
|
|
$QEMU_IMG measure -O qcow2 -o cluster_size=64k -f qcow2 "$TEST_IMG"
|
|
|
|
|
|
|
|
# Compute expected output: bitmap clusters + bitmap tables + bitmaps directory
|
|
|
|
echo
|
|
|
|
cluster=$((2*1024*1024))
|
|
|
|
b1clusters=$(( (val2T/512/8 + cluster - 1) / cluster ))
|
|
|
|
b2clusters=$(( (val2T/2/1024/1024/8 + cluster - 1) / cluster ))
|
|
|
|
echo expected bitmap $((b1clusters * cluster +
|
|
|
|
(b1clusters * 8 + cluster - 1) / cluster * cluster +
|
|
|
|
b2clusters * cluster +
|
|
|
|
(b2clusters * 8 + cluster - 1) / cluster * cluster +
|
|
|
|
cluster))
|
|
|
|
$QEMU_IMG measure --output=json -O qcow2 -o cluster_size=2M -f qcow2 "$TEST_IMG"
|
|
|
|
|
2017-07-24 17:39:52 +02:00
|
|
|
# success, all done
|
|
|
|
echo "*** done"
|
|
|
|
rm -f $seq.full
|
|
|
|
status=0
|