mirror of https://github.com/xemu-project/xemu.git
qemu-img: Require -F with -b backing image
Back in commit d9f059aa6c
(qemu-img: Deprecate use of -b without -F),
we deprecated the ability to create a file with a backing image that
requires qemu to perform format probing. Qemu can still probe older
files for backwards compatibility, but it is time to finish off the
ability to create such images, due to the potential security risk they
present. Update a couple of iotests affected by the change.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20210503213600.569128-3-eblake@redhat.com>
Reviewed-by: Connor Kuehl <ckuehl@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
5a385bf5c5
commit
497a30dbb0
35
block.c
35
block.c
|
@ -5074,7 +5074,7 @@ int coroutine_fn bdrv_co_check(BlockDriverState *bs,
|
||||||
* -ENOTSUP - format driver doesn't support changing the backing file
|
* -ENOTSUP - format driver doesn't support changing the backing file
|
||||||
*/
|
*/
|
||||||
int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
|
int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
|
||||||
const char *backing_fmt, bool warn)
|
const char *backing_fmt, bool require)
|
||||||
{
|
{
|
||||||
BlockDriver *drv = bs->drv;
|
BlockDriver *drv = bs->drv;
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -5088,10 +5088,8 @@ int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (warn && backing_file && !backing_fmt) {
|
if (require && backing_file && !backing_fmt) {
|
||||||
warn_report("Deprecated use of backing file without explicit "
|
return -EINVAL;
|
||||||
"backing format, use of this image requires "
|
|
||||||
"potentially unsafe format probing");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (drv->bdrv_change_backing_file != NULL) {
|
if (drv->bdrv_change_backing_file != NULL) {
|
||||||
|
@ -6601,24 +6599,11 @@ void bdrv_img_create(const char *filename, const char *fmt,
|
||||||
goto out;
|
goto out;
|
||||||
} else {
|
} else {
|
||||||
if (!backing_fmt) {
|
if (!backing_fmt) {
|
||||||
warn_report("Deprecated use of backing file without explicit "
|
error_setg(&local_err,
|
||||||
"backing format (detected format of %s)",
|
"Backing file specified without backing format");
|
||||||
|
error_append_hint(&local_err, "Detected format of %s.",
|
||||||
bs->drv->format_name);
|
bs->drv->format_name);
|
||||||
if (bs->drv != &bdrv_raw) {
|
goto out;
|
||||||
/*
|
|
||||||
* A probe of raw deserves the most attention:
|
|
||||||
* leaving the backing format out of the image
|
|
||||||
* will ensure bs->probed is set (ensuring we
|
|
||||||
* don't accidentally commit into the backing
|
|
||||||
* file), and allow more spots to warn the users
|
|
||||||
* to fix their toolchain when opening this image
|
|
||||||
* later. For other images, we can safely record
|
|
||||||
* the format that we probed.
|
|
||||||
*/
|
|
||||||
backing_fmt = bs->drv->format_name;
|
|
||||||
qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
|
|
||||||
NULL);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (size == -1) {
|
if (size == -1) {
|
||||||
/* Opened BS, have no size */
|
/* Opened BS, have no size */
|
||||||
|
@ -6635,9 +6620,9 @@ void bdrv_img_create(const char *filename, const char *fmt,
|
||||||
}
|
}
|
||||||
/* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
|
/* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
|
||||||
} else if (backing_file && !backing_fmt) {
|
} else if (backing_file && !backing_fmt) {
|
||||||
warn_report("Deprecated use of unopened backing file without "
|
error_setg(&local_err,
|
||||||
"explicit backing format, use of this image requires "
|
"Backing file specified without backing format");
|
||||||
"potentially unsafe format probing");
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (size == -1) {
|
if (size == -1) {
|
||||||
|
|
|
@ -282,26 +282,6 @@ this CPU is also deprecated.
|
||||||
Related binaries
|
Related binaries
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
qemu-img backing file without format (since 5.1)
|
|
||||||
''''''''''''''''''''''''''''''''''''''''''''''''
|
|
||||||
|
|
||||||
The use of ``qemu-img create``, ``qemu-img rebase``, or ``qemu-img
|
|
||||||
convert`` to create or modify an image that depends on a backing file
|
|
||||||
now recommends that an explicit backing format be provided. This is
|
|
||||||
for safety: if QEMU probes a different format than what you thought,
|
|
||||||
the data presented to the guest will be corrupt; similarly, presenting
|
|
||||||
a raw image to a guest allows a potential security exploit if a future
|
|
||||||
probe sees a non-raw image based on guest writes.
|
|
||||||
|
|
||||||
To avoid the warning message, or even future refusal to create an
|
|
||||||
unsafe image, you must pass ``-o backing_fmt=`` (or the shorthand
|
|
||||||
``-F`` during create) to specify the intended backing format. You may
|
|
||||||
use ``qemu-img rebase -u`` to retroactively add a backing format to an
|
|
||||||
existing image. However, be aware that there are already potential
|
|
||||||
security risks to blindly using ``qemu-img info`` to probe the format
|
|
||||||
of an untrusted backing image, when deciding what format to add into
|
|
||||||
an existing image.
|
|
||||||
|
|
||||||
Backwards compatibility
|
Backwards compatibility
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
|
|
@ -503,6 +503,25 @@ backing chain should be performed with ``qemu-img rebase -u`` either
|
||||||
before or after the remaining changes being performed by amend, as
|
before or after the remaining changes being performed by amend, as
|
||||||
appropriate.
|
appropriate.
|
||||||
|
|
||||||
|
qemu-img backing file without format (removed in 6.1)
|
||||||
|
'''''''''''''''''''''''''''''''''''''''''''''''''''''
|
||||||
|
|
||||||
|
The use of ``qemu-img create``, ``qemu-img rebase``, or ``qemu-img
|
||||||
|
convert`` to create or modify an image that depends on a backing file
|
||||||
|
now requires that an explicit backing format be provided. This is
|
||||||
|
for safety: if QEMU probes a different format than what you thought,
|
||||||
|
the data presented to the guest will be corrupt; similarly, presenting
|
||||||
|
a raw image to a guest allows a potential security exploit if a future
|
||||||
|
probe sees a non-raw image based on guest writes.
|
||||||
|
|
||||||
|
To avoid creating unsafe backing chains, you must pass ``-o
|
||||||
|
backing_fmt=`` (or the shorthand ``-F`` during create) to specify the
|
||||||
|
intended backing format. You may use ``qemu-img rebase -u`` to
|
||||||
|
retroactively add a backing format to an existing image. However, be
|
||||||
|
aware that there are already potential security risks to blindly using
|
||||||
|
``qemu-img info`` to probe the format of an untrusted backing image,
|
||||||
|
when deciding what format to add into an existing image.
|
||||||
|
|
||||||
Block devices
|
Block devices
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
|
|
@ -2508,8 +2508,10 @@ static int img_convert(int argc, char **argv)
|
||||||
|
|
||||||
if (out_baseimg_param) {
|
if (out_baseimg_param) {
|
||||||
if (!qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT)) {
|
if (!qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT)) {
|
||||||
warn_report("Deprecated use of backing file without explicit "
|
error_report("Use of backing file requires explicit "
|
||||||
"backing format");
|
"backing format");
|
||||||
|
ret = -1;
|
||||||
|
goto out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -920,8 +920,8 @@ class TestCommitWithOverriddenBacking(iotests.QMPTestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
qemu_img('create', '-f', iotests.imgfmt, self.img_base_a, '1M')
|
qemu_img('create', '-f', iotests.imgfmt, self.img_base_a, '1M')
|
||||||
qemu_img('create', '-f', iotests.imgfmt, self.img_base_b, '1M')
|
qemu_img('create', '-f', iotests.imgfmt, self.img_base_b, '1M')
|
||||||
qemu_img('create', '-f', iotests.imgfmt, '-b', self.img_base_a, \
|
qemu_img('create', '-f', iotests.imgfmt, '-b', self.img_base_a,
|
||||||
self.img_top)
|
'-F', iotests.imgfmt, self.img_top)
|
||||||
|
|
||||||
self.vm = iotests.VM()
|
self.vm = iotests.VM()
|
||||||
self.vm.launch()
|
self.vm.launch()
|
||||||
|
|
|
@ -1295,8 +1295,10 @@ class TestReplaces(iotests.QMPTestCase):
|
||||||
class TestFilters(iotests.QMPTestCase):
|
class TestFilters(iotests.QMPTestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
qemu_img('create', '-f', iotests.imgfmt, backing_img, '1M')
|
qemu_img('create', '-f', iotests.imgfmt, backing_img, '1M')
|
||||||
qemu_img('create', '-f', iotests.imgfmt, '-b', backing_img, test_img)
|
qemu_img('create', '-f', iotests.imgfmt, '-b', backing_img,
|
||||||
qemu_img('create', '-f', iotests.imgfmt, '-b', backing_img, target_img)
|
'-F', iotests.imgfmt, test_img)
|
||||||
|
qemu_img('create', '-f', iotests.imgfmt, '-b', backing_img,
|
||||||
|
'-F', iotests.imgfmt, target_img)
|
||||||
|
|
||||||
qemu_io('-c', 'write -P 1 0 512k', backing_img)
|
qemu_io('-c', 'write -P 1 0 512k', backing_img)
|
||||||
qemu_io('-c', 'write -P 2 512k 512k', test_img)
|
qemu_io('-c', 'write -P 2 512k 512k', test_img)
|
||||||
|
|
|
@ -44,16 +44,16 @@ _supported_os Linux
|
||||||
# qcow2.py does not work too well with external data files
|
# qcow2.py does not work too well with external data files
|
||||||
_unsupported_imgopts data_file
|
_unsupported_imgopts data_file
|
||||||
|
|
||||||
# Intentionally specify backing file without backing format; demonstrate
|
# Older qemu-img could set up backing file without backing format; modern
|
||||||
# the difference in warning messages when backing file could be probed.
|
# qemu can't but we can use qcow2.py to simulate older files.
|
||||||
# Note that only a non-raw probe result will affect the resulting image.
|
|
||||||
truncate -s $((64 * 1024 * 1024)) "$TEST_IMG.orig"
|
truncate -s $((64 * 1024 * 1024)) "$TEST_IMG.orig"
|
||||||
_make_test_img -b "$TEST_IMG.orig" 64M
|
_make_test_img -b "$TEST_IMG.orig" -F raw 64M
|
||||||
|
$PYTHON qcow2.py "$TEST_IMG" del-header-ext 0xE2792ACA
|
||||||
|
|
||||||
TEST_IMG="$TEST_IMG.base" _make_test_img 64M
|
TEST_IMG="$TEST_IMG.base" _make_test_img 64M
|
||||||
$QEMU_IMG convert -O qcow2 -B "$TEST_IMG.orig" "$TEST_IMG.orig" "$TEST_IMG"
|
$QEMU_IMG convert -O qcow2 -B "$TEST_IMG.orig" "$TEST_IMG.orig" "$TEST_IMG"
|
||||||
_make_test_img -b "$TEST_IMG.base" 64M
|
_make_test_img -b "$TEST_IMG.base" -F $IMGFMT 64M
|
||||||
_make_test_img -u -b "$TEST_IMG.base" 64M
|
_make_test_img -u -b "$TEST_IMG.base" -F $IMGFMT 64M
|
||||||
|
|
||||||
# Set an invalid backing file format
|
# Set an invalid backing file format
|
||||||
$PYTHON qcow2.py "$TEST_IMG" add-header-ext 0xE2792ACA "foo"
|
$PYTHON qcow2.py "$TEST_IMG" add-header-ext 0xE2792ACA "foo"
|
||||||
|
@ -64,9 +64,9 @@ _img_info
|
||||||
$QEMU_IO -c "open $TEST_IMG" -c "read 0 4k" 2>&1 | _filter_qemu_io | _filter_testdir
|
$QEMU_IO -c "open $TEST_IMG" -c "read 0 4k" 2>&1 | _filter_qemu_io | _filter_testdir
|
||||||
$QEMU_IO -c "open -o backing.driver=$IMGFMT $TEST_IMG" -c "read 0 4k" | _filter_qemu_io
|
$QEMU_IO -c "open -o backing.driver=$IMGFMT $TEST_IMG" -c "read 0 4k" | _filter_qemu_io
|
||||||
|
|
||||||
# Rebase the image, to show that omitting backing format triggers a warning,
|
# Rebase the image, to show that backing format is required.
|
||||||
# but probing now lets us use the backing file.
|
($QEMU_IMG rebase -u -b "$TEST_IMG.base" "$TEST_IMG" 2>&1 && echo "unexpected pass") | _filter_testdir
|
||||||
$QEMU_IMG rebase -u -b "$TEST_IMG.base" "$TEST_IMG"
|
$QEMU_IMG rebase -u -b "$TEST_IMG.base" -F $IMGFMT "$TEST_IMG"
|
||||||
$QEMU_IO -c "open $TEST_IMG" -c "read 0 4k" 2>&1 | _filter_qemu_io | _filter_testdir
|
$QEMU_IO -c "open $TEST_IMG" -c "read 0 4k" 2>&1 | _filter_qemu_io | _filter_testdir
|
||||||
|
|
||||||
# success, all done
|
# success, all done
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
QA output created by 114
|
QA output created by 114
|
||||||
qemu-img: warning: Deprecated use of backing file without explicit backing format (detected format of raw)
|
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.orig backing_fmt=raw
|
||||||
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.orig
|
|
||||||
Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=67108864
|
Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=67108864
|
||||||
qemu-img: warning: Deprecated use of backing file without explicit backing format
|
qemu-img: Use of backing file requires explicit backing format
|
||||||
qemu-img: warning: Deprecated use of backing file without explicit backing format (detected format of IMGFMT)
|
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=IMGFMT
|
||||||
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=IMGFMT
|
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=IMGFMT
|
||||||
qemu-img: warning: Deprecated use of unopened backing file without explicit backing format, use of this image requires potentially unsafe format probing
|
|
||||||
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base
|
|
||||||
image: TEST_DIR/t.IMGFMT
|
image: TEST_DIR/t.IMGFMT
|
||||||
file format: IMGFMT
|
file format: IMGFMT
|
||||||
virtual size: 64 MiB (67108864 bytes)
|
virtual size: 64 MiB (67108864 bytes)
|
||||||
|
@ -17,7 +14,7 @@ qemu-io: can't open device TEST_DIR/t.qcow2: Could not open backing file: Unknow
|
||||||
no file open, try 'help open'
|
no file open, try 'help open'
|
||||||
read 4096/4096 bytes at offset 0
|
read 4096/4096 bytes at offset 0
|
||||||
4 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
4 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
||||||
qemu-img: warning: Deprecated use of backing file without explicit backing format, use of this image requires potentially unsafe format probing
|
qemu-img: Could not change the backing file to 'TEST_DIR/t.qcow2.base': Invalid argument
|
||||||
read 4096/4096 bytes at offset 0
|
read 4096/4096 bytes at offset 0
|
||||||
4 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
4 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
|
||||||
*** done
|
*** done
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
# Test qcow backing file warnings
|
# Test qcow backing file warnings
|
||||||
#
|
#
|
||||||
# Copyright (C) 2020 Red Hat, Inc.
|
# Copyright (C) 2020-2021 Red Hat, Inc.
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -46,7 +46,6 @@ echo "== qcow backed by qcow =="
|
||||||
|
|
||||||
TEST_IMG="$TEST_IMG.base" _make_test_img $size
|
TEST_IMG="$TEST_IMG.base" _make_test_img $size
|
||||||
_make_test_img -b "$TEST_IMG.base" $size
|
_make_test_img -b "$TEST_IMG.base" $size
|
||||||
_img_info
|
|
||||||
_make_test_img -b "$TEST_IMG.base" -F $IMGFMT $size
|
_make_test_img -b "$TEST_IMG.base" -F $IMGFMT $size
|
||||||
_img_info
|
_img_info
|
||||||
|
|
||||||
|
@ -71,7 +70,6 @@ echo "== qcow backed by raw =="
|
||||||
rm "$TEST_IMG.base"
|
rm "$TEST_IMG.base"
|
||||||
truncate --size=$size "$TEST_IMG.base"
|
truncate --size=$size "$TEST_IMG.base"
|
||||||
_make_test_img -b "$TEST_IMG.base" $size
|
_make_test_img -b "$TEST_IMG.base" $size
|
||||||
_img_info
|
|
||||||
_make_test_img -b "$TEST_IMG.base" -F raw $size
|
_make_test_img -b "$TEST_IMG.base" -F raw $size
|
||||||
_img_info
|
_img_info
|
||||||
|
|
||||||
|
|
|
@ -2,13 +2,7 @@ QA output created by 301
|
||||||
|
|
||||||
== qcow backed by qcow ==
|
== qcow backed by qcow ==
|
||||||
Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=33554432
|
Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=33554432
|
||||||
qemu-img: warning: Deprecated use of backing file without explicit backing format (detected format of IMGFMT)
|
qemu-img: TEST_DIR/t.IMGFMT: Backing file specified without backing format
|
||||||
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=33554432 backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=IMGFMT
|
|
||||||
image: TEST_DIR/t.IMGFMT
|
|
||||||
file format: IMGFMT
|
|
||||||
virtual size: 32 MiB (33554432 bytes)
|
|
||||||
cluster_size: 512
|
|
||||||
backing file: TEST_DIR/t.IMGFMT.base
|
|
||||||
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=33554432 backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=IMGFMT
|
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=33554432 backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=IMGFMT
|
||||||
image: TEST_DIR/t.IMGFMT
|
image: TEST_DIR/t.IMGFMT
|
||||||
file format: IMGFMT
|
file format: IMGFMT
|
||||||
|
@ -36,13 +30,7 @@ cluster_size: 512
|
||||||
backing file: TEST_DIR/t.IMGFMT.base
|
backing file: TEST_DIR/t.IMGFMT.base
|
||||||
|
|
||||||
== qcow backed by raw ==
|
== qcow backed by raw ==
|
||||||
qemu-img: warning: Deprecated use of backing file without explicit backing format (detected format of raw)
|
qemu-img: TEST_DIR/t.IMGFMT: Backing file specified without backing format
|
||||||
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=33554432 backing_file=TEST_DIR/t.IMGFMT.base
|
|
||||||
image: TEST_DIR/t.IMGFMT
|
|
||||||
file format: IMGFMT
|
|
||||||
virtual size: 32 MiB (33554432 bytes)
|
|
||||||
cluster_size: 512
|
|
||||||
backing file: TEST_DIR/t.IMGFMT.base
|
|
||||||
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=33554432 backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=raw
|
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=33554432 backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=raw
|
||||||
image: TEST_DIR/t.IMGFMT
|
image: TEST_DIR/t.IMGFMT
|
||||||
file format: IMGFMT
|
file format: IMGFMT
|
||||||
|
|
Loading…
Reference in New Issue