qemu-block
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-block] [RFC PATCH 06/10] block: Allow changing the backing fil


From: Kevin Wolf
Subject: Re: [Qemu-block] [RFC PATCH 06/10] block: Allow changing the backing file on reopen
Date: Mon, 18 Jun 2018 18:12:29 +0200
User-agent: Mutt/1.9.1 (2017-09-22)

Am 18.06.2018 um 17:06 hat Alberto Garcia geschrieben:
> On Mon 18 Jun 2018 04:38:01 PM CEST, Kevin Wolf wrote:
> > Am 14.06.2018 um 17:49 hat Alberto Garcia geschrieben:
> >> This patch allows the user to change the backing file of an image that
> >> is being reopened. Here's what it does:
> >> 
> >>  - In bdrv_reopen_queue_child(): if the 'backing' option points to an
> >>    image different from the current backing file then it means that
> >>    the latter is going be detached so it must not be put in the reopen
> >>    queue.
> >> 
> >>  - In bdrv_reopen_prepare(): check that the value of 'backing' points
> >>    to an existing node or is null. If it points to an existing node it
> >>    also needs to make sure that replacing the backing file will not
> >>    create a cycle in the node graph (i.e. you cannot reach the parent
> >>    from the new backing file).
> >> 
> >>  - In bdrv_reopen_commit(): perform the actual node replacement by
> >>    calling bdrv_set_backing_hd(). It may happen that there are
> >>    temporary implicit nodes between the BDS that we are reopening and
> >>    the backing file that we want to replace (e.g. a commit fiter node),
> >>    so we must skip them.
> >
> > I think we shouldn't do this. blockdev-reopen is an advanced command
> > that requires knowledge of the graph at the node level. Therefore we can
> > expect the management tool to consider filter nodes when it reconfigures
> > the graph. This is important because it makes a difference whether a
> > new node is inserted above or below the filter node.
> 
> But those nodes that the management tool knows about would not be
> implicit, or would they?

Hm, you're right, they are only implicit if no node name was given. So
it's not as bad as I thought.

I still think of bs->implicit as a hack to maintain compatibility for
legacy commands rather than something to use in new commands.

> The reason why I did this is because there's several places in the QEMU
> codebase where bdrv_reopen() is called while there's a temporary
> implicit node. For example, on exit bdrv_commit() needs to call
> bdrv_set_backing_hd() to remove intermediate nodes from the chain. This
> happens while bdrv_mirror_top is still there, so if we don't skip it
> then QEMU crashes.

But isn't that bdrv_set_backing_hd() a separate operation? I would
understand that it matters if you changed the code so that it would use
bdrv_reopen() in order to change the backing file, but that's not what
it does, is it?

> >> Although x-blockdev-reopen is meant to be used like blockdev-add,
> >> there's two important things that must be taken into account:
> >> 
> >> 1) The only way to set a new backing file is by using a reference to
> >>    an existing node (previously added with e.g. blockdev-add).
> >>    If 'backing' contains a dictionary with a new set of options
> >>    ({"driver": "qcow2", "file": { ... }}) then it is interpreted that
> >>    the _existing_ backing file must be reopened with those options.
> >
> > This sounds a bit odd at first, but it makes perfect sense in fact.
> >
> > Maybe we should enforce that child nodes that were openend by reference
> > first must be reopened with a reference, and only those that were defined
> > inline (and therefore inherit options from the parent) can be reopened
> > inline?
> 
> I think that should be doable, yes.
> 
> >> 2) If the 'backing' option is omitted altogether then the existing
> >>    backing file (if any) is kept. Unlike blockdev-add this will _not_
> >>    open the default backing file specified in the image header.
> >
> > Hm... This is certainly an inconsistency. Is it unavoidable?
> 
> I don't think we want to open new nodes on reopen(), but one easy way to
> avoid this behavior is simply to return an error if the user omits the
> 'backing' option.

Hm, yes, not opening new nodes is a good point.

As long as find a good solution that can be consistently applied to all
BlockdevRef, it should be okay. So I don't necessarily object to the
special casing and just leaving them as they are by default.

> But this raises a few questions. Let's say you have an image with a
> backing file and you open it with blockdev-add omitting the 'backing'
> option. That means the default backing file is opened.
> 
>   - Do you still have to specify 'backing' on reopen? I suppose you
>     don't have to.

You would have to. I agree it's ugly (not the least because you probably
didn't assign an explicit node name, though -drive allows specifying
only the node name, but still using the filename from the image file).

>   - If you don't have to, can QEMU tell if bs->backing is the original
>     backing file or a new one? I suppose it can, by checking for
>     'backing / backing.*' in bs->options.
> 
>   - If you omit 'backing', does the backing file still get reopened? And
>     more importantly, does it keep its current options or are they
>     supposed to be reset to their default values?

If you make omitting it an error, then that's not really a question?

> >> +        /* If the 'backing' option is set and it points to a different
> >> +         * node then it means that we want to replace the current one,
> >> +         * so we shouldn't put it in the reopen queue */
> >> +        if (child->role == &child_backing && qdict_haskey(options, 
> >> "backing")) {
> >
> > I think checking child->name for "backing" makes more sense when we
> > also look for the "backing" key in the options QDict. This would make
> > generalising it for other children easier (which we probably should
> > do, whether in this patch or a follow-up).
> 
> Sounds reasonable.
> 
> > Do we need some way for e.g. block jobs to forbid changing the backing
> > file of the subchain they are operating on?
> 
> Are you thinking of any particular scenario?

Not specifically, but I think e.g. the commit job might get confused if
you break its backing chain because it assumes that base is somewhere in
the backing chain of top, and also that it called block_job_add_bdrv()
on everything in the subchain it is working on.

It just feels like we'd allow to break any such assumptions if we don't
block graph changes there.

Kevin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]