[libvirt PATCH 3/3] qemu: block: external snapshot-delete implementation for straightforward cases

Peter Krempa pkrempa at redhat.com
Wed Apr 22 13:49:57 UTC 2020


On Thu, Apr 16, 2020 at 17:07:35 +0200, Pavel Mores wrote:
> On Fri, Apr 03, 2020 at 05:56:59PM +0200, Pavel Mores wrote:
> > On Tue, Mar 31, 2020 at 12:06:15PM +0200, Peter Krempa wrote:
> > > On Tue, Mar 31, 2020 at 11:18:29 +0200, Pavel Mores wrote:
> > > > +            }
> > > > +
> > > > +            if (flags & VIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN)
> > > > +                topPath = disk->src->path;
> > > > +            else
> > > > +                topPath = snapdisk->src->path;
> > > 
> > > You must not use paths for doing this lookup. Paths at best work for
> > > local files only and this would make the code not future proof.
> > > 
> > > Also you want to verify that:
> > > - images you want to merge are actually in the backing chain
> > > - the backing chain looks as snapshots describe it (e.g you unplug vda
> > >   and plug a different chain back)
> > 
> > Let me check with you how exactly to perform this verification.
> > 
> > To retrieve the names of the disks included in a snapshot, I can use its
> > virDomainSnapshotDef which contains an array of disks
> > (virDomainSnapshotDiskDef's) whose 'name' member can be used to identify disks.
> > 
> > To get the state of the chain at moment the snapshot was created, I can use the
> > 'src' member and walk its 'backingStore' list to examine the whole chain.
> > 
> > To get the currently running configuration, I assume I can use the names of the
> > relevant disks (obtained from the snapshot as mentioned above) to get a
> > virDomainDiskDefPtr for each of them, whose 'src' member points to a
> > virStorageSource that represents the topmost image in the disk's chain.  From
> > there, I can walk the 'backingStore' list to get the other images in the chain
> > all the way to the base image.
> > 
> > The verification succeeds if the disk names and their chains in the snapshot
> > and the running config correspond.  Is the above correct?
> > 
> > If so, I'm still not certain how to compare two virStorageSource's.  How is
> > identity of two different virStorageSource instances is established?
> 
> After having a closer look into this I'm unfortunately even less clear as to
> how to perform the checks mentioned in the review.

Well unfortunately developing this is the main part why deleting
snapshots is complicated.

> In addition to the problem of establishing virStorageSource identity, a similar
> problem seems to come up with disks.  They often seem to be identified and
> referred to by the target name, however what happens if a snapshot is taken for
> 'vda', then the disk's target is changed to 'vdb' and now the snapshot is to be

In such case I'd consier it as being different. Similarly as we can't
really guarantee that the image described by a virStorageSource is the
same as it was when taking the snapshot. As long as the file is named
the same you can consider it identical IMO.

> deleted?  Is there a way to find out that the disk is still there, only under a
> different name?

No and it doesn't seem to be worth doing that.

> 
> And as far as comparing chains goes - I know can retrieve the chain for a
> running disk and I can retrieve what the chain looked like at the point a
> snapshot was made.  However, how do I establish they are equivalent?  How can I

What I meant is that you need to establish that the images you are going
to merge and the images you are going to merge into are the same
described by the snapshots and at the same time present in the current
backing chain of the disk. If they are not in the snapshot metadata
you'd potentially merge something unwanted, but this is covered by the
previous paragraphs.

You need to also verify that they are currently opened by qemu as you
can't do blockjobs on images which are not part of the chain.

> tell that snapshots in both chains compare identical in the first place?  Is
> the snapshot name stable and persistent enough to be useful for this?  Is it
> enough for chains to be equivalent that the chain at the point of snapshot
> creation be a superset of the currently running chain?  Probably yes, provided
> snapshots can't be inserted in the middle of a chain - but could that ever
> happen?

The main problem is that the configuration may change from the time when
the snapshot was taken. Either the XML or the on disk setup. In case a
user issues a blockjob manually which merges parts of the chain you
won't be able to delete the snapshot with data reorganisation via the
API. Similarly to when the VM config changes to point to other images
and or remove or add disks. The snapshot code should be able to at least
properly reject the operation if it's unclear whether we can do the
right thing.

Unfortunately all the above need to be considered and thought out before
because there isn't really any prior art in libvirt that could be
copied. There are helpers to compare two virStorageSource structs, but
that's far from all of the required logic.

While the initial implementation can be limited in what it can do, the
complement of what it can't do must be properly rejected to prevent any
ambiguity.




More information about the libvir-list mailing list