- block: Parse filenames only when explicitly requested (CVE-2024-4467) - block: introduce bdrv_open_file_child() helper - qcow2: Don't open data_file with BDRV_O_NO_IO (CVE-2024-4467) - qcow2: Do not reopen data_file in invalidate_cache Signed-off-by: Jiabo Feng <fengjiabo1@huawei.com>
224 lines
9.3 KiB
Diff
224 lines
9.3 KiB
Diff
From 7619ae94b2d22fab824c1ea79e83b094d9e150f8 Mon Sep 17 00:00:00 2001
|
|
From: liuxiangdong <liuxiangdong5@huawei.com>
|
|
Date: Wed, 19 Jun 2024 19:15:15 +0800
|
|
Subject: [PATCH] block: Parse filenames only when explicitly requested
|
|
(CVE-2024-4467)
|
|
|
|
cherry-pick from https://github.com/qemu/qemu/commit/7ead946998610657d38d1a505d5f25300d4ca613
|
|
|
|
When handling image filenames from legacy options such as -drive or from
|
|
tools, these filenames are parsed for protocol prefixes, including for
|
|
the json:{} pseudo-protocol.
|
|
|
|
This behaviour is intended for filenames that come directly from the
|
|
command line and for backing files, which may come from the image file
|
|
itself. Higher level management tools generally take care to verify that
|
|
untrusted images don't contain a bad (or any) backing file reference;
|
|
'qemu-img info' is a suitable tool for this.
|
|
|
|
However, for other files that can be referenced in images, such as
|
|
qcow2 data files or VMDK extents, the string from the image file is
|
|
usually not verified by management tools - and 'qemu-img info' wouldn't
|
|
be suitable because in contrast to backing files, it already opens these
|
|
other referenced files. So here the string should be interpreted as a
|
|
literal local filename. More complex configurations need to be specified
|
|
explicitly on the command line or in QMP.
|
|
|
|
This patch changes bdrv_open_inherit() so that it only parses filenames
|
|
if a new parameter parse_filename is true. It is set for the top level
|
|
in bdrv_open(), for the file child and for the backing file child. All
|
|
other callers pass false and disable filename parsing this way.
|
|
|
|
Cc: qemu-stable@nongnu.org
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
Reviewed-by: Hanna Czenczek <hreitz@redhat.com>
|
|
Signed-off-by: liuxiangdong <liuxiangdong5@huawei.com>
|
|
---
|
|
block.c | 69 +++++++++++++++++++++++++++++++++++++--------------------
|
|
1 file changed, 45 insertions(+), 24 deletions(-)
|
|
|
|
diff --git a/block.c b/block.c
|
|
index 0e841dcf09..510857311e 100644
|
|
--- a/block.c
|
|
+++ b/block.c
|
|
@@ -76,6 +76,7 @@ static BlockDriverState *bdrv_open_inherit(const char *filename,
|
|
QDict *options, int flags,
|
|
BlockDriverState *parent,
|
|
const BdrvChildRole *child_role,
|
|
+ bool parse_filename,
|
|
Error **errp);
|
|
|
|
/* If non-zero, use only whitelisted block drivers */
|
|
@@ -1620,7 +1621,8 @@ static void parse_json_protocol(QDict *options, const char **pfilename,
|
|
* block driver has been specified explicitly.
|
|
*/
|
|
static int bdrv_fill_options(QDict **options, const char *filename,
|
|
- int *flags, Error **errp)
|
|
+ int *flags, bool allow_parse_filename,
|
|
+ Error **errp)
|
|
{
|
|
const char *drvname;
|
|
bool protocol = *flags & BDRV_O_PROTOCOL;
|
|
@@ -1660,7 +1662,7 @@ static int bdrv_fill_options(QDict **options, const char *filename,
|
|
if (protocol && filename) {
|
|
if (!qdict_haskey(*options, "filename")) {
|
|
qdict_put_str(*options, "filename", filename);
|
|
- parse_filename = true;
|
|
+ parse_filename = allow_parse_filename;
|
|
} else {
|
|
error_setg(errp, "Can't specify 'file' and 'filename' options at "
|
|
"the same time");
|
|
@@ -2654,7 +2656,7 @@ int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
|
|
}
|
|
|
|
backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
|
|
- &child_backing, errp);
|
|
+ &child_backing, true, errp);
|
|
if (!backing_hd) {
|
|
bs->open_flags |= BDRV_O_NO_BACKING;
|
|
error_prepend(errp, "Could not open backing file: ");
|
|
@@ -2689,7 +2691,7 @@ free_exit:
|
|
static BlockDriverState *
|
|
bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
|
|
BlockDriverState *parent, const BdrvChildRole *child_role,
|
|
- bool allow_none, Error **errp)
|
|
+ bool allow_none, bool parse_filename, Error **errp)
|
|
{
|
|
BlockDriverState *bs = NULL;
|
|
QDict *image_options;
|
|
@@ -2720,7 +2722,7 @@ bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
|
|
}
|
|
|
|
bs = bdrv_open_inherit(filename, reference, image_options, 0,
|
|
- parent, child_role, errp);
|
|
+ parent, child_role, parse_filename, errp);
|
|
if (!bs) {
|
|
goto done;
|
|
}
|
|
@@ -2730,6 +2732,24 @@ done:
|
|
return bs;
|
|
}
|
|
|
|
+static BdrvChild *bdrv_open_child_common(const char *filename,
|
|
+ QDict *options, const char *bdref_key,
|
|
+ BlockDriverState *parent,
|
|
+ const BdrvChildRole *child_role,
|
|
+ bool allow_none, bool parse_filename,
|
|
+ Error **errp)
|
|
+{
|
|
+ BlockDriverState *bs;
|
|
+
|
|
+ bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
|
|
+ allow_none, parse_filename, errp);
|
|
+ if (bs == NULL) {
|
|
+ return NULL;
|
|
+ }
|
|
+
|
|
+ return bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
|
|
+}
|
|
+
|
|
/*
|
|
* Opens a disk image whose options are given as BlockdevRef in another block
|
|
* device's options.
|
|
@@ -2750,26 +2770,22 @@ BdrvChild *bdrv_open_child(const char *filename,
|
|
const BdrvChildRole *child_role,
|
|
bool allow_none, Error **errp)
|
|
{
|
|
- BlockDriverState *bs;
|
|
-
|
|
- bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
|
|
- allow_none, errp);
|
|
- if (bs == NULL) {
|
|
- return NULL;
|
|
- }
|
|
-
|
|
- return bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
|
|
+ return bdrv_open_child_common(filename, options, bdref_key, parent,
|
|
+ child_role, allow_none, false,
|
|
+ errp);
|
|
}
|
|
|
|
/*
|
|
- * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
|
|
+ * This does mostly the same as bdrv_open_child(), but for opening the primary
|
|
+ * child of a node. A notable difference from bdrv_open_child() is that it
|
|
+ * enables filename parsing for protocol names (including json:).
|
|
*/
|
|
int bdrv_open_file_child(const char *filename,
|
|
QDict *options, const char *bdref_key,
|
|
BlockDriverState *parent, Error **errp)
|
|
{
|
|
- parent->file = bdrv_open_child(filename, options, bdref_key, parent,
|
|
- &child_file, false, errp);
|
|
+ parent->file = bdrv_open_child_common(filename, options, bdref_key, parent,
|
|
+ &child_file, false, true, errp);
|
|
|
|
return parent->file ? 0 : -EINVAL;
|
|
}
|
|
@@ -2812,7 +2828,8 @@ BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
|
|
|
|
}
|
|
|
|
- bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
|
|
+ bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, false,
|
|
+ errp);
|
|
obj = NULL;
|
|
|
|
fail:
|
|
@@ -2911,6 +2928,7 @@ static BlockDriverState *bdrv_open_inherit(const char *filename,
|
|
QDict *options, int flags,
|
|
BlockDriverState *parent,
|
|
const BdrvChildRole *child_role,
|
|
+ bool parse_filename,
|
|
Error **errp)
|
|
{
|
|
int ret;
|
|
@@ -2954,9 +2972,11 @@ static BlockDriverState *bdrv_open_inherit(const char *filename,
|
|
}
|
|
|
|
/* json: syntax counts as explicit options, as if in the QDict */
|
|
- parse_json_protocol(options, &filename, &local_err);
|
|
- if (local_err) {
|
|
- goto fail;
|
|
+ if (parse_filename) {
|
|
+ parse_json_protocol(options, &filename, &local_err);
|
|
+ if (local_err) {
|
|
+ goto fail;
|
|
+ }
|
|
}
|
|
|
|
bs->explicit_options = qdict_clone_shallow(options);
|
|
@@ -2967,7 +2987,8 @@ static BlockDriverState *bdrv_open_inherit(const char *filename,
|
|
parent->open_flags, parent->options);
|
|
}
|
|
|
|
- ret = bdrv_fill_options(&options, filename, &flags, &local_err);
|
|
+ ret = bdrv_fill_options(&options, filename, &flags, parse_filename,
|
|
+ &local_err);
|
|
if (local_err) {
|
|
goto fail;
|
|
}
|
|
@@ -3032,7 +3053,7 @@ static BlockDriverState *bdrv_open_inherit(const char *filename,
|
|
BlockDriverState *file_bs;
|
|
|
|
file_bs = bdrv_open_child_bs(filename, options, "file", bs,
|
|
- &child_file, true, &local_err);
|
|
+ &child_file, true, true, &local_err);
|
|
if (local_err) {
|
|
goto fail;
|
|
}
|
|
@@ -3177,7 +3198,7 @@ BlockDriverState *bdrv_open(const char *filename, const char *reference,
|
|
QDict *options, int flags, Error **errp)
|
|
{
|
|
return bdrv_open_inherit(filename, reference, options, flags, NULL,
|
|
- NULL, errp);
|
|
+ NULL, true, errp);
|
|
}
|
|
|
|
/* Return true if the NULL-terminated @list contains @str */
|
|
--
|
|
2.41.0.windows.1
|
|
|