[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 for-5.1 9/9] qemu-img: Reject broken -o ""
From: |
Markus Armbruster |
Subject: |
[PATCH v2 for-5.1 9/9] qemu-img: Reject broken -o "" |
Date: |
Wed, 15 Apr 2020 09:49:27 +0200 |
qemu-img create, convert, amend, and measure use accumulate_options()
to merge multiple -o options. This is broken for -o "":
$ qemu-img create -f qcow2 -o backing_file=a -o "" -o
backing_fmt=raw,size=1M new.qcow2
qemu-img: warning: Could not verify backing image. This may become an error
in future versions.
Could not open 'a,backing_fmt=raw': No such file or directory
Formatting 'new.qcow2', fmt=qcow2 size=1048576
backing_file=a,,backing_fmt=raw cluster_size=65536 lazy_refcounts=off
refcount_bits=16
$ qemu-img info new.qcow2
image: new.qcow2
file format: qcow2
virtual size: 1 MiB (1048576 bytes)
disk size: 196 KiB
cluster_size: 65536
--> backing file: a,backing_fmt=raw
Format specific information:
compat: 1.1
lazy refcounts: false
refcount bits: 16
corrupt: false
Merging these three -o the obvious way is wrong, because it results in
an unwanted ',' escape:
backing_file=a,,backing_fmt=raw,size=1M
~~
We could silently drop -o "", but Kevin asked me to reject it instead.
Signed-off-by: Markus Armbruster <address@hidden>
---
qemu-img.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/qemu-img.c b/qemu-img.c
index cc51db7ed4..a2369766f0 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -229,14 +229,16 @@ static bool qemu_img_object_print_help(const char *type,
QemuOpts *opts)
* To make that work, @optarg must not start with ',' (or else a
* separating ',' preceding it gets escaped), and it must not end with
* an odd number of ',' (or else a separating ',' following it gets
- * escaped).
+ * escaped), or be empty (or else a separating ',' preceding it can
+ * escape a separating ',' following it).
+ *
*/
static bool is_valid_option_list(const char *optarg)
{
size_t len = strlen(optarg);
size_t i;
- if (optarg[0] == ',') {
+ if (!optarg[0] || optarg[0] == ',') {
return false;
}
--
2.21.1
- [PATCH v2 for-5.1 0/9] qemu-option: Fix corner cases and clean up, Markus Armbruster, 2020/04/15
- [PATCH v2 for-5.1 3/9] qemu-option: Fix sloppy recognition of "id=..." after ", , ", Markus Armbruster, 2020/04/15
- [PATCH v2 for-5.1 4/9] qemu-option: Fix has_help_option()'s sloppy parsing, Markus Armbruster, 2020/04/15
- [PATCH v2 for-5.1 6/9] qemu-option: Avoid has_help_option() in qemu_opts_parse_noisily(), Markus Armbruster, 2020/04/15
- [PATCH v2 for-5.1 5/9] test-qemu-opts: Simplify test_has_help_option() after bug fix, Markus Armbruster, 2020/04/15
- [PATCH v2 for-5.1 1/9] tests-qemu-opts: Cover has_help_option(), qemu_opt_has_help_opt(), Markus Armbruster, 2020/04/15
- [PATCH v2 for-5.1 7/9] qemu-img: Factor out accumulate_options() helper, Markus Armbruster, 2020/04/15
- [PATCH v2 for-5.1 2/9] qemu-options: Factor out get_opt_name_value() helper, Markus Armbruster, 2020/04/15
- [PATCH v2 for-5.1 9/9] qemu-img: Reject broken -o "",
Markus Armbruster <=
- [PATCH v2 for-5.1 8/9] qemu-img: Move is_valid_option_list() to qemu-img.c and rewrite, Markus Armbruster, 2020/04/15
- Re: [PATCH v2 for-5.1 0/9] qemu-option: Fix corner cases and clean up, no-reply, 2020/04/15
- Re: [PATCH v2 for-5.1 0/9] qemu-option: Fix corner cases and clean up, Markus Armbruster, 2020/04/29