* [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create
@ 2013-11-29 20:41 Max Reitz
2013-11-29 22:01 ` Benoît Canet
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Max Reitz @ 2013-11-29 20:41 UTC (permalink / raw)
To: qemu-devel; +Cc: Kevin Wolf, Stefan Hajnoczi, Max Reitz
Leaving the backing file open although it is not needed anymore can
cause problems if it is opened through a block driver which allows
exclusive access only and if the create function of the block driver
used for the top image (the one being created) tries to close and reopen
the image file (which will include opening the backing file a second
time).
In particular, this will happen with a backing file opened through
qemu-nbd and using qcow2 as the top image file format (which reopens the
image to flush it to disk).
Signed-off-by: Max Reitz <mreitz@redhat.com>
---
v2:
- Minimizing the changes prevents introducing a leak of the
BlockDriverState in case of an error in bdrv_open() (thanks, Kevin).
---
block.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/block.c b/block.c
index 382ea71..6d571ad 100644
--- a/block.c
+++ b/block.c
@@ -4608,6 +4608,9 @@ void bdrv_img_create(const char *filename, const char *fmt,
snprintf(buf, sizeof(buf), "%" PRId64, size);
set_option_parameter(param, BLOCK_OPT_SIZE, buf);
+
+ bdrv_unref(bs);
+ bs = NULL;
} else {
error_setg(errp, "Image creation needs a size parameter");
goto out;
--
1.8.4.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create
2013-11-29 20:41 [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create Max Reitz
@ 2013-11-29 22:01 ` Benoît Canet
2013-12-02 3:37 ` Wenchao Xia
2013-12-02 10:33 ` Kevin Wolf
2 siblings, 0 replies; 5+ messages in thread
From: Benoît Canet @ 2013-11-29 22:01 UTC (permalink / raw)
To: Max Reitz; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi
Le Friday 29 Nov 2013 à 21:41:29 (+0100), Max Reitz a écrit :
> Leaving the backing file open although it is not needed anymore can
> cause problems if it is opened through a block driver which allows
> exclusive access only and if the create function of the block driver
> used for the top image (the one being created) tries to close and reopen
> the image file (which will include opening the backing file a second
> time).
>
> In particular, this will happen with a backing file opened through
> qemu-nbd and using qcow2 as the top image file format (which reopens the
> image to flush it to disk).
>
> Signed-off-by: Max Reitz <mreitz@redhat.com>
> ---
> v2:
> - Minimizing the changes prevents introducing a leak of the
> BlockDriverState in case of an error in bdrv_open() (thanks, Kevin).
> ---
> block.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/block.c b/block.c
> index 382ea71..6d571ad 100644
> --- a/block.c
> +++ b/block.c
> @@ -4608,6 +4608,9 @@ void bdrv_img_create(const char *filename, const char *fmt,
>
> snprintf(buf, sizeof(buf), "%" PRId64, size);
> set_option_parameter(param, BLOCK_OPT_SIZE, buf);
> +
> + bdrv_unref(bs);
> + bs = NULL;
> } else {
> error_setg(errp, "Image creation needs a size parameter");
> goto out;
Reviewed-by: Benoit Canet <benoit@irqsave.net>
> --
> 1.8.4.2
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create
2013-11-29 20:41 [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create Max Reitz
2013-11-29 22:01 ` Benoît Canet
@ 2013-12-02 3:37 ` Wenchao Xia
2013-12-02 13:05 ` Stefan Hajnoczi
2013-12-02 10:33 ` Kevin Wolf
2 siblings, 1 reply; 5+ messages in thread
From: Wenchao Xia @ 2013-12-02 3:37 UTC (permalink / raw)
To: Max Reitz, qemu-devel; +Cc: Kevin Wolf, Stefan Hajnoczi
于 2013/11/30 4:41, Max Reitz 写道:
> Leaving the backing file open although it is not needed anymore can
> cause problems if it is opened through a block driver which allows
> exclusive access only and if the create function of the block driver
> used for the top image (the one being created) tries to close and reopen
> the image file (which will include opening the backing file a second
> time).
>
> In particular, this will happen with a backing file opened through
> qemu-nbd and using qcow2 as the top image file format (which reopens the
> image to flush it to disk).
>
> Signed-off-by: Max Reitz <mreitz@redhat.com>
> ---
> v2:
> - Minimizing the changes prevents introducing a leak of the
> BlockDriverState in case of an error in bdrv_open() (thanks, Kevin).
> ---
> block.c | 3 +++
> 1 file changed, 3 insertions(+)
>
Minor comments:
I think your v1 have better orgnize of code, since it tips reader
that bs is a variable used only in backing file code. Why not improve
it by just adding one line in v1:
line 4587:
ret = bdrv_open(bs, backing_file->value.s, NULL, back_flags,
backing_drv, &local_err);
if (ret < 0) {
error_setg_errno(errp, -ret, "Could not open '%s': %s",
backing_file->value.s,
error_get_pretty(local_err));
error_free(local_err);
local_err = NULL;
bdrv_unref(bs);
goto out;
}
It is not a big problem, I am OK if you stick to this version.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create
2013-11-29 20:41 [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create Max Reitz
2013-11-29 22:01 ` Benoît Canet
2013-12-02 3:37 ` Wenchao Xia
@ 2013-12-02 10:33 ` Kevin Wolf
2 siblings, 0 replies; 5+ messages in thread
From: Kevin Wolf @ 2013-12-02 10:33 UTC (permalink / raw)
To: Max Reitz; +Cc: qemu-devel, Stefan Hajnoczi
Am 29.11.2013 um 21:41 hat Max Reitz geschrieben:
> Leaving the backing file open although it is not needed anymore can
> cause problems if it is opened through a block driver which allows
> exclusive access only and if the create function of the block driver
> used for the top image (the one being created) tries to close and reopen
> the image file (which will include opening the backing file a second
> time).
>
> In particular, this will happen with a backing file opened through
> qemu-nbd and using qcow2 as the top image file format (which reopens the
> image to flush it to disk).
>
> Signed-off-by: Max Reitz <mreitz@redhat.com>
> ---
> v2:
> - Minimizing the changes prevents introducing a leak of the
> BlockDriverState in case of an error in bdrv_open() (thanks, Kevin).
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create
2013-12-02 3:37 ` Wenchao Xia
@ 2013-12-02 13:05 ` Stefan Hajnoczi
0 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2013-12-02 13:05 UTC (permalink / raw)
To: Max Reitz; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi, Wenchao Xia
On Mon, Dec 02, 2013 at 11:37:36AM +0800, Wenchao Xia wrote:
> 于 2013/11/30 4:41, Max Reitz 写道:
> > Leaving the backing file open although it is not needed anymore can
> > cause problems if it is opened through a block driver which allows
> > exclusive access only and if the create function of the block driver
> > used for the top image (the one being created) tries to close and reopen
> > the image file (which will include opening the backing file a second
> > time).
> >
> > In particular, this will happen with a backing file opened through
> > qemu-nbd and using qcow2 as the top image file format (which reopens the
> > image to flush it to disk).
> >
> > Signed-off-by: Max Reitz <mreitz@redhat.com>
> > ---
> > v2:
> > - Minimizing the changes prevents introducing a leak of the
> > BlockDriverState in case of an error in bdrv_open() (thanks, Kevin).
> > ---
> > block.c | 3 +++
> > 1 file changed, 3 insertions(+)
> >
>
> Minor comments:
> I think your v1 have better orgnize of code, since it tips reader
> that bs is a variable used only in backing file code. Why not improve
> it by just adding one line in v1:
>
> line 4587:
> ret = bdrv_open(bs, backing_file->value.s, NULL, back_flags,
> backing_drv, &local_err);
> if (ret < 0) {
> error_setg_errno(errp, -ret, "Could not open '%s': %s",
> backing_file->value.s,
> error_get_pretty(local_err));
> error_free(local_err);
> local_err = NULL;
> bdrv_unref(bs);
> goto out;
> }
Agreed, tightening the scope of 'bs' was a good idea.
Max: can you send a final version as suggested by Wenchao?
Thanks,
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-12-02 13:06 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-29 20:41 [Qemu-devel] [PATCH v2] block: Close backing file early in bdrv_img_create Max Reitz
2013-11-29 22:01 ` Benoît Canet
2013-12-02 3:37 ` Wenchao Xia
2013-12-02 13:05 ` Stefan Hajnoczi
2013-12-02 10:33 ` Kevin Wolf
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).