From: Paolo Bonzini <pbonzini@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: Feiran Zheng <famcool@gmail.com>,
qemu-devel@nongnu.org, stefanha@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH 3/8] vmdk: clean up open
Date: Thu, 20 Oct 2011 12:12:27 +0200 [thread overview]
Message-ID: <4E9FF40B.6070306@redhat.com> (raw)
In-Reply-To: <4E9FE9A5.7090809@redhat.com>
On 10/20/2011 11:28 AM, Kevin Wolf wrote:
> This code is moved into bdrv_open, but there's another path how this
> code can be reached:
>
> vmdk_parse_extents() -> vmdk_open_sparse() -> vmdk_open_vmdk4() ->
> vmdk_open_desc_file().
>
> Don't we forget to open the parent file there now?
Let's look at the call chain:
vmdk_open:
return vmdk_open_desc_file(bs, flags, 0);
-> vmdk_open_desc_file:
ret = vmdk_parse_extents(buf, bs, bs->file->filename);
-> vmdk_parse_extents:
p points into vmdk_open_desc_file's buf:
ret = sscanf(p, "%10s %" SCNd64 " %10s %511s %" SCNd64,
access, §ors, type, fname, &flat_offset);
path_combine(extent_path, sizeof(extent_path),
desc_file_path, fname);
ret = bdrv_file_open(&extent_file, extent_path, bs->open_flags);
ret = vmdk_open_sparse(bs, extent_file, bs->open_flags);
So here it finds the sub-vmdk, opens it and passes it to vmdk_open_sparse.
-> vmdk_open_sparse:
return vmdk_open_vmdk4(bs, file, flags);
The extent_file is then passed to vmdk_open_vmdk4:
-> vmdk_open_vmdk4:
ret = bdrv_pread(file, sizeof(magic), &header, sizeof(header));
return vmdk_open_desc_file(bs, flags, header.desc_offset << 9);
This reads the header from extent_file, but vmdk_open_desc_file will
still read from bs->file.
-> vmdk_open_desc_file:
s->desc_offset = 0;
if (vmdk_parent_open(bs)) {
-> vmdk_parent_open:
if (bdrv_pread(bs->file, s->desc_offset, desc, DESC_SIZE) != DESC_SIZE) {
So s->desc_offset is always zero, and bs->file never changes. So the data
that vmdk_parent_open reads comes always from the same place, and anyway
there have only one place where it can write it:
vmdk_parent_open:
pstrcpy(bs->backing_file, end_name - p_name + 1, p_name);
So the code is completely bogus in the case of recursive calls to
vmdk_open_desc_file with parent images. Maybe it simply cannot happen,
and in that case the patched code is less bogus.
It is also possible that it can happen, and the bug is in setting
s->desc_offset to zero. Even in that case, calling vmdk_parent_open
once would be correct and the patched code is less bogus.
Paolo
next prev parent reply other threads:[~2011-10-20 10:12 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-19 14:59 [Qemu-devel] [PATCH 0/8] finish coroutinization of drivers Paolo Bonzini
2011-10-19 14:59 ` [Qemu-devel] [PATCH 1/8] vpc: detect floppy disk geometries Paolo Bonzini
2011-10-20 9:14 ` Kevin Wolf
2011-10-20 10:13 ` Paolo Bonzini
2011-10-19 14:59 ` [Qemu-devel] [PATCH 2/8] vmdk: fix return values of vmdk_parent_open Paolo Bonzini
2011-10-20 9:16 ` Kevin Wolf
2011-10-19 14:59 ` [Qemu-devel] [PATCH 3/8] vmdk: clean up open Paolo Bonzini
2011-10-20 9:28 ` Kevin Wolf
2011-10-20 10:12 ` Paolo Bonzini [this message]
2011-10-20 10:25 ` Kevin Wolf
2011-10-19 14:59 ` [Qemu-devel] [PATCH 4/8] block: add a Rwlock to synchronous read/write drivers Paolo Bonzini
2011-10-20 9:47 ` Kevin Wolf
2011-10-19 14:59 ` [Qemu-devel] [PATCH 5/8] block: take lock around bdrv_read implementations Paolo Bonzini
2011-10-19 14:59 ` [Qemu-devel] [PATCH 6/8] block: take lock around bdrv_write implementations Paolo Bonzini
2011-10-19 14:59 ` [Qemu-devel] [PATCH 7/8] block: change flush to co_flush Paolo Bonzini
2011-10-20 10:04 ` Kevin Wolf
2011-10-19 14:59 ` [Qemu-devel] [PATCH 8/8] block: change discard to co_discard Paolo Bonzini
2011-10-20 10:08 ` Kevin Wolf
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=4E9FF40B.6070306@redhat.com \
--to=pbonzini@redhat.com \
--cc=famcool@gmail.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@linux.vnet.ibm.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).