* [Qemu-devel] [PATCH] qemu-img: add the simplest format recognition
@ 2017-12-01 20:05 Klim Kireev
2017-12-01 22:12 ` Eric Blake
0 siblings, 1 reply; 2+ messages in thread
From: Klim Kireev @ 2017-12-01 20:05 UTC (permalink / raw)
To: kwolf, mreitz, qemu-block, qemu-devel; +Cc: den, vsementsov, klim.kireev
Now, if you type something like
qemu-img create disk.qcow2 1G
or
qemu-img dd if=/dev/sda of=disk.qcow2
it creates a raw image and if you need you should
manually specify an image format with -f qcow2. It would
be more convenient if it could be detected from an extension.
This patch adds a simple heuristic to recognize the image format
for qcow, qcow2, vmdk, vhdx, vdi
Signed-off-by: Klim Kireev <klim.kireev@virtuozzo.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
---
qemu-img.c | 24 ++++++++++++++++++++++--
1 file changed, 22 insertions(+), 2 deletions(-)
diff --git a/qemu-img.c b/qemu-img.c
index 02a6e27beb..0a659d2257 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -421,11 +421,25 @@ static int64_t cvtnum(const char *s)
return value;
}
+static const char *get_format(const char *filename)
+{
+ const char *fmt = strrchr(filename, '.');
+ if (fmt == NULL) {
+ return "raw";
+ }
+ fmt++;
+ if (bdrv_find_format(fmt) != NULL) {
+ return fmt;
+ } else {
+ return "raw";
+ }
+}
+
static int img_create(int argc, char **argv)
{
int c;
uint64_t img_size = -1;
- const char *fmt = "raw";
+ const char *fmt = NULL;
const char *base_fmt = NULL;
const char *filename;
const char *base_filename = NULL;
@@ -496,6 +510,9 @@ static int img_create(int argc, char **argv)
/* Get the filename */
filename = (optind < argc) ? argv[optind] : NULL;
+ if (fmt == NULL) {
+ fmt = get_format(filename);
+ }
if (options && has_help_option(options)) {
g_free(options);
return print_block_option_help(filename, fmt);
@@ -4181,7 +4198,7 @@ static int img_dd(int argc, char **argv)
Error *local_err = NULL;
bool image_opts = false;
int c, i;
- const char *out_fmt = "raw";
+ const char *out_fmt = NULL;
const char *fmt = NULL;
int64_t size = 0;
int64_t block_count = 0, out_pos, in_pos;
@@ -4308,6 +4325,9 @@ static int img_dd(int argc, char **argv)
goto out;
}
+ if (out_fmt == NULL) {
+ out_fmt = get_format(out.filename);
+ }
drv = bdrv_find_format(out_fmt);
if (!drv) {
error_report("Unknown file format");
--
2.13.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] qemu-img: add the simplest format recognition
2017-12-01 20:05 [Qemu-devel] [PATCH] qemu-img: add the simplest format recognition Klim Kireev
@ 2017-12-01 22:12 ` Eric Blake
0 siblings, 0 replies; 2+ messages in thread
From: Eric Blake @ 2017-12-01 22:12 UTC (permalink / raw)
To: Klim Kireev, kwolf, mreitz, qemu-block, qemu-devel; +Cc: den, vsementsov
On 12/01/2017 02:05 PM, Klim Kireev wrote:
> Now, if you type something like
>
> qemu-img create disk.qcow2 1G
> or
> qemu-img dd if=/dev/sda of=disk.qcow2
>
> it creates a raw image and if you need you should
> manually specify an image format with -f qcow2. It would
> be more convenient if it could be detected from an extension.
>
> This patch adds a simple heuristic to recognize the image format
> for qcow, qcow2, vmdk, vhdx, vdi
>
> Signed-off-by: Klim Kireev <klim.kireev@virtuozzo.com>
> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
> ---
> qemu-img.c | 24 ++++++++++++++++++++++--
> 1 file changed, 22 insertions(+), 2 deletions(-)
Is it also worth warning the user that we guessed, and that they should
specify -f if our guess was wrong?
> @@ -496,6 +510,9 @@ static int img_create(int argc, char **argv)
>
> /* Get the filename */
> filename = (optind < argc) ? argv[optind] : NULL;
> + if (fmt == NULL) {
> + fmt = get_format(filename);
Particularly if fmt == "raw", because the user typed something like
'foo.img' instead of 'foo.qcow2'. I suspect another common mis-guess
would be users that type .qcow but want qcow2.
The idea makes sense to me, though.
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-12-01 22:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-01 20:05 [Qemu-devel] [PATCH] qemu-img: add the simplest format recognition Klim Kireev
2017-12-01 22:12 ` Eric Blake
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).