From: Kevin Wolf <kwolf@redhat.com>
To: Jeff Cody <jcody@redhat.com>
Cc: qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2 3/5] block: initial VHDX driver support framework - supports open and probe
Date: Thu, 25 Apr 2013 18:52:02 +0200 [thread overview]
Message-ID: <20130425165202.GB2486@dhcp-200-207.str.redhat.com> (raw)
In-Reply-To: <20130425150338.GB3525@localhost.localdomain>
Am 25.04.2013 um 17:03 hat Jeff Cody geschrieben:
> On Thu, Apr 25, 2013 at 03:04:23PM +0200, Kevin Wolf wrote:
> > Am 23.04.2013 um 16:24 hat Jeff Cody geschrieben:
> > > + if (!vhdx_checksum_is_valid(buffer, VHDX_HEADER_BLOCK_SIZE, 4) ||
> > > + s->rt.signature != VHDX_RT_MAGIC) {
> > > + ret = -EINVAL;
> > > + goto fail;
> > > + }
> > > +
> > > + for (i = 0; i < s->rt.entry_count; i++) {
> > > + memcpy(&rt_entry, buffer+offset, sizeof(rt_entry));
> > > + offset += sizeof(rt_entry);
> > > +
> > > + leguid_to_cpus(&rt_entry.guid);
> > > + le64_to_cpus(&rt_entry.file_offset);
> > > + le32_to_cpus(&rt_entry.length);
> > > + le32_to_cpus(&rt_entry.data_bits);
> > > +
> > > + /* see if we recognize the entry */
> > > + if (guid_eq(rt_entry.guid, bat_guid)) {
> > > + s->bat_rt = rt_entry;
> > > + continue;
> > > + }
> > > +
> > > + if (guid_eq(rt_entry.guid, metadata_guid)) {
> > > + s->metadata_rt = rt_entry;
> > > + continue;
> > > + }
> >
> > If the same regions occurs multiple times, the latest wins. Such images
> > aren't valid, but what should we do with such cases? Is this good enough
> > or should we detect it?
>
> I think such images are more undefined rather than explicitly invalid.
> I don't think the spec touches on the idea of multiple regions of the
> same type.
It says "The Guid field specifies a 128-bit identifier for the object
and must be unique within the table.", so it's explicitly forbidden to
have two regions of the same type.
> That said, I don't what to make of an image file with
> multiple BAT regions, for instance - I think error is the only sane
> option.
>
> Maybe keep a list of all entries, and if there are duplicates error
> out with -EINVAL?
We could do that if we really care. Or just check for the ones that we
recognise that they aren't set yet when we assign them.
> > > + /* We now have the file parameters, so we can tell if this is a
> > > + * differencing file (i.e.. has_parent), is dynamic or fixed
> > > + * sized (leave_blocks_allocated), and the block size */
> > > +
> > > + /* The parent locator required iff the file parameters has_parent set */
> > > + if (s->params.data_bits & VHDX_PARAMS_HAS_PARENT) {
> > > + if (s->metadata_entries.present & ~META_PARENT_LOCATOR_PRESENT) {
> >
> > Not sure what you're trying to achieve here. We get -ENOTSUP if any
> > metadata entry except the parent locator is present, and -EINVAL if
> > there is none?
> >
>
> That is a mistake - that check should be sans tilde:
> if (s->metadata_entries.present & META_PARENT_LOCATOR_PRESENT)
Right, that makes more sense.
Kevin
next prev parent reply other threads:[~2013-04-25 16:52 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-23 14:24 [Qemu-devel] [PATCH v2 0/5] Initial VHDX support Jeff Cody
2013-04-23 14:24 ` [Qemu-devel] [PATCH v2 1/5] qemu: add castagnoli crc32c checksum algorithm Jeff Cody
2013-04-23 14:24 ` [Qemu-devel] [PATCH v2 2/5] block: vhdx header for the QEMU support of VHDX images Jeff Cody
2013-04-23 15:10 ` Kevin Wolf
2013-04-23 16:32 ` Jeff Cody
2013-04-24 12:31 ` Stefan Hajnoczi
2013-04-24 12:34 ` Jeff Cody
2013-04-25 13:05 ` Kevin Wolf
2013-04-25 14:29 ` Jeff Cody
2013-04-23 14:24 ` [Qemu-devel] [PATCH v2 3/5] block: initial VHDX driver support framework - supports open and probe Jeff Cody
2013-04-23 15:46 ` Kevin Wolf
2013-04-23 16:11 ` Jeff Cody
2013-04-23 16:18 ` Kevin Wolf
2013-04-24 13:21 ` Stefan Hajnoczi
2013-04-24 13:40 ` Jeff Cody
2013-04-25 13:04 ` Kevin Wolf
2013-04-25 15:03 ` Jeff Cody
2013-04-25 16:52 ` Kevin Wolf [this message]
2013-04-28 7:29 ` Fam Zheng
2013-04-29 17:25 ` Jeff Cody
2013-04-28 9:58 ` Fam Zheng
2013-04-29 17:24 ` Jeff Cody
2013-04-23 14:24 ` [Qemu-devel] [PATCH v2 4/5] block: add read-only support to VHDX image format Jeff Cody
2013-04-24 14:38 ` Stefan Hajnoczi
2013-04-23 14:24 ` [Qemu-devel] [PATCH v2 5/5] block: add header update capability for VHDX images Jeff Cody
2013-04-24 14:47 ` Stefan Hajnoczi
2013-04-24 14:56 ` Jeff Cody
2013-04-25 7:20 ` Stefan Hajnoczi
2013-04-28 10:05 ` Fam Zheng
2013-04-29 17:19 ` Jeff Cody
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=20130425165202.GB2486@dhcp-200-207.str.redhat.com \
--to=kwolf@redhat.com \
--cc=jcody@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/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 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).