From: "Daniel P. Berrange" <berrange@redhat.com>
To: Max Reitz <mreitz@redhat.com>
Cc: qemu-devel@nongnu.org, qemu-block@nongnu.org,
Kevin Wolf <kwolf@redhat.com>, Eric Blake <eblake@redhat.com>,
Fam Zheng <famz@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 6/6] qemu-img: copy *key-secret opts when opening newly created files
Date: Mon, 20 Feb 2017 12:46:52 +0000 [thread overview]
Message-ID: <20170220124652.GO15874@redhat.com> (raw)
In-Reply-To: <2a209a6e-338c-f352-6634-555b36daafb9@redhat.com>
On Fri, Feb 03, 2017 at 11:39:35PM +0100, Max Reitz wrote:
> On 03.02.2017 13:02, Daniel P. Berrange wrote:
> > The qemu-img dd/convert commands will create a image file and
> > then try to open it. Historically it has been possible to open
> > new files without passing any options. With encrypted files
> > though, the *key-secret options are mandatory, so we need to
> > provide those options when opening the newly created file.
> >
> > Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
> > ---
> > qemu-img.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++----
> > 1 file changed, 47 insertions(+), 4 deletions(-)
> >
> > diff --git a/qemu-img.c b/qemu-img.c
> > index dc4c6eb..98522dd 100644
> > --- a/qemu-img.c
> > +++ b/qemu-img.c
> > @@ -319,6 +319,49 @@ static BlockBackend *img_open_file(const char *filename,
> > }
> >
> >
> > +static int img_add_key_secrets(void *opaque,
> > + const char *name, const char *value,
> > + Error **errp)
> > +{
> > + QDict **options = opaque;
> > +
> > + if (g_str_has_suffix(name, "key-secret")) {
> > + if (!*options) {
> > + *options = qdict_new();
> > + }
> > + qdict_put(*options, name, qstring_from_str(value));
> > + }
> > +
> > + return 0;
> > +}
> > +
> > +static BlockBackend *img_open_new_file(const char *filename,
> > + QemuOpts *create_opts,
> > + const char *fmt, int flags,
> > + bool writethrough, bool quiet)
> > +{
> > + BlockBackend *blk;
> > + Error *local_err = NULL;
> > + QDict *options = NULL;
> > +
> > + if (fmt) {
> > + options = qdict_new();
> > + qdict_put(options, "driver", qstring_from_str(fmt));
> > + }
> > +
> > + qemu_opt_foreach(create_opts, img_add_key_secrets, &options, NULL);
>
> It would probably be easier to just unconditionally create an options
> QDict. It doesn't hurt if it's empty.
Ok, I will make that change.
> Anyway:
>
> Reviewed-by: Max Reitz <mreitz@redhat.com>
>
> > +
> > + blk = blk_new_open(filename, NULL, options, flags, &local_err);
> > + if (!blk) {
> > + error_reportf_err(local_err, "Could not open '%s': ", filename);
> > + return NULL;
> > + }
> > + blk_set_enable_write_cache(blk, !writethrough);
> > +
> > + return blk;
it seems I'm also leaking "options" so will adda QDECREF too
> > +}
> > +
> > +
Regards,
Daniel
--
|: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org -o- http://virt-manager.org :|
|: http://entangle-photo.org -o- http://search.cpan.org/~danberr/ :|
next prev parent reply other threads:[~2017-02-20 12:47 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-03 12:02 [Qemu-devel] [PATCH v2 0/6] qemu-img: improve convert & dd commands Daniel P. Berrange
2017-02-03 12:02 ` [Qemu-devel] [PATCH v2 1/6] qemu-img: add support for --object with 'dd' command Daniel P. Berrange
2017-02-03 21:01 ` Max Reitz
2017-02-20 12:32 ` Daniel P. Berrange
2017-02-03 12:02 ` [Qemu-devel] [PATCH v2 2/6] qemu-img: fix --image-opts usage with dd command Daniel P. Berrange
2017-02-03 21:08 ` Max Reitz
2017-02-03 12:02 ` [Qemu-devel] [PATCH v2 3/6] qemu-img: add support for conv=nocreat, notrunc args to " Daniel P. Berrange
2017-02-03 21:44 ` Max Reitz
2017-02-20 12:33 ` Daniel P. Berrange
2017-02-03 12:02 ` [Qemu-devel] [PATCH v2 4/6] qemu-img: add support for -o arg " Daniel P. Berrange
2017-02-03 22:07 ` Max Reitz
2017-02-20 12:33 ` Daniel P. Berrange
2017-02-03 12:02 ` [Qemu-devel] [PATCH v2 5/6] qemu-img: introduce --target-image-opts for 'convert' command Daniel P. Berrange
2017-02-03 22:32 ` Max Reitz
2017-02-20 12:44 ` Daniel P. Berrange
2017-02-03 12:02 ` [Qemu-devel] [PATCH v2 6/6] qemu-img: copy *key-secret opts when opening newly created files Daniel P. Berrange
2017-02-03 22:39 ` Max Reitz
2017-02-20 12:46 ` Daniel P. Berrange [this message]
2017-02-20 15:13 ` Daniel P. Berrange
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170220124652.GO15874@redhat.com \
--to=berrange@redhat.com \
--cc=eblake@redhat.com \
--cc=famz@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.