mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
0d44788fc3
Introduce a bunch of new public APIs related to backup checkpoints. Checkpoints are modeled heavily after virDomainSnapshotPtr (both represent a point in time of the guest), although a snapshot exists with the intent of rolling back to that state, while a checkpoint exists to make it possible to create an incremental backup at a later time. We may have a future hypervisor that can completely manage checkpoints without libvirt metadata, but the first two planned hypervisors (qemu and test) both always use libvirt for tracking metadata relations between checkpoints, so for now, I've deferred the counterpart of virDomainSnapshotHasMetadata for a separate API addition at a later date if there is ever a need for it. Note that until we allow snapshots and checkpoints to exist simultaneously on the same domain (although the actual prevention of this will be in a separate patch for the sake of an easier revert down the road), that it is not possible to branch out to create more than one checkpoint child to a given parent, although it may become possible later when we revert to a snapshot that coincides with a checkpoint. This also means that for now, the decision of which checkpoint becomes the parent of a newly created one is the only checkpoint with no child (so while there are APIs for dealing with a current snapshot, we do not need those for checkpoints). We may end up exposing a notion of a current checkpoint later, but it's easier to add stuff when proven needed than to blindly support it now and wish we hadn't exposed it. The following map shows the API relations to snapshots, with new APIs on the right: Operate on a domain object to create/redefine a child: virDomainSnapshotCreateXML virDomainCheckpointCreateXML Operate on a child object for lifetime management: virDomainSnapshotDelete virDomainCheckpointDelete virDomainSnapshotFree virDomainCheckpointFree virDomainSnapshotRef virDomainCheckpointRef Operate on a child object to learn more about it: virDomainSnapshotGetXMLDesc virDomainCheckpointGetXMLDesc virDomainSnapshotGetConnect virDomainCheckpointGetConnect virDomainSnapshotGetDomain virDomainCheckpointGetDomain virDomainSnapshotGetName virDomainCheckpiontGetName virDomainSnapshotGetParent virDomainCheckpiontGetParent virDomainSnapshotHasMetadata (deferred for later) virDomainSnapshotIsCurrent (no counterpart, see note above) Operate on a domain object to list all children: virDomainSnapshotNum (no counterparts, these are the old virDomainSnapshotListNames racy interfaces) virDomainSnapshotListAllSnapshots virDomainListAllCheckpoints Operate on a child object to list descendents: virDomainSnapshotNumChildren (no counterparts, these are the old virDomainSnapshotListChildrenNames racy interfaces) virDomainSnapshotListAllChildren virDomainCheckpointListAllChildren Operate on a domain to locate a particular child: virDomainSnapshotLookupByName virDomainCheckpointLookupByName virDomainSnapshotCurrent (no counterpart, see note above) virDomainHasCurrentSnapshot (no counterpart, old racy interface) Operate on a snapshot to roll back to earlier state: virDomainSnapshotRevert (no counterpart, instead checkpoints are used in incremental backups via XML to virDomainBackupBegin) Signed-off-by: Eric Blake <eblake@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
138 lines
6.3 KiB
C
138 lines
6.3 KiB
C
/*
|
|
* libvirt-domain-checkpoint.h
|
|
* Summary: APIs for management of domain checkpoints
|
|
* Description: Provides APIs for the management of domain checkpoints
|
|
*
|
|
* Copyright (C) 2006-2019 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef LIBVIRT_DOMAIN_CHECKPOINT_H
|
|
# define LIBVIRT_DOMAIN_CHECKPOINT_H
|
|
|
|
# ifndef __VIR_LIBVIRT_H_INCLUDES__
|
|
# error "Don't include this file directly, only use libvirt/libvirt.h"
|
|
# endif
|
|
|
|
/**
|
|
* virDomainCheckpoint:
|
|
*
|
|
* A virDomainCheckpoint is a private structure representing a checkpoint of
|
|
* a domain. A checkpoint is useful for tracking which portions of the
|
|
* domain disks have been altered since a point in time, but by itself does
|
|
* not allow reverting back to that point in time.
|
|
*/
|
|
typedef struct _virDomainCheckpoint virDomainCheckpoint;
|
|
|
|
/**
|
|
* virDomainCheckpointPtr:
|
|
*
|
|
* A virDomainCheckpointPtr is pointer to a virDomainCheckpoint
|
|
* private structure, and is the type used to reference a domain
|
|
* checkpoint in the API.
|
|
*/
|
|
typedef virDomainCheckpoint *virDomainCheckpointPtr;
|
|
|
|
const char *virDomainCheckpointGetName(virDomainCheckpointPtr checkpoint);
|
|
virDomainPtr virDomainCheckpointGetDomain(virDomainCheckpointPtr checkpoint);
|
|
virConnectPtr virDomainCheckpointGetConnect(virDomainCheckpointPtr checkpoint);
|
|
|
|
typedef enum {
|
|
VIR_DOMAIN_CHECKPOINT_CREATE_REDEFINE = (1 << 0), /* Restore or alter
|
|
metadata */
|
|
VIR_DOMAIN_CHECKPOINT_CREATE_QUIESCE = (1 << 1), /* use guest agent to
|
|
quiesce all mounted
|
|
file systems within
|
|
the domain */
|
|
} virDomainCheckpointCreateFlags;
|
|
|
|
/* Create a checkpoint using the current VM state. */
|
|
virDomainCheckpointPtr virDomainCheckpointCreateXML(virDomainPtr domain,
|
|
const char *xmlDesc,
|
|
unsigned int flags);
|
|
|
|
typedef enum {
|
|
VIR_DOMAIN_CHECKPOINT_XML_SECURE = (1 << 0), /* Include sensitive data */
|
|
VIR_DOMAIN_CHECKPOINT_XML_NO_DOMAIN = (1 << 1), /* Suppress <domain>
|
|
subelement */
|
|
VIR_DOMAIN_CHECKPOINT_XML_SIZE = (1 << 2), /* Include dynamic
|
|
per-<disk> size */
|
|
} virDomainCheckpointXMLFlags;
|
|
|
|
/* Dump the XML of a checkpoint */
|
|
char *virDomainCheckpointGetXMLDesc(virDomainCheckpointPtr checkpoint,
|
|
unsigned int flags);
|
|
|
|
/**
|
|
* virDomainCheckpointListFlags:
|
|
*
|
|
* Flags valid for virDomainListAllCheckpoints() and
|
|
* virDomainCheckpointListAllChildren(). Note that the interpretation of
|
|
* flag (1<<0) depends on which function it is passed to; but serves
|
|
* to toggle the per-call default of whether the listing is shallow or
|
|
* recursive. Remaining bits come in groups; if all bits from a group
|
|
* are 0, then that group is not used to filter results. */
|
|
typedef enum {
|
|
VIR_DOMAIN_CHECKPOINT_LIST_ROOTS = (1 << 0), /* Filter by checkpoints
|
|
with no parents, when
|
|
listing a domain */
|
|
VIR_DOMAIN_CHECKPOINT_LIST_DESCENDANTS = (1 << 0), /* List all descendants,
|
|
not just children, when
|
|
listing a checkpoint */
|
|
VIR_DOMAIN_CHECKPOINT_LIST_TOPOLOGICAL = (1 << 1), /* Ensure parents occur
|
|
before children in
|
|
the resulting list */
|
|
|
|
VIR_DOMAIN_CHECKPOINT_LIST_LEAVES = (1 << 2), /* Filter by checkpoints
|
|
with no children */
|
|
VIR_DOMAIN_CHECKPOINT_LIST_NO_LEAVES = (1 << 3), /* Filter by checkpoints
|
|
that have children */
|
|
} virDomainCheckpointListFlags;
|
|
|
|
/* Get all checkpoint objects for this domain */
|
|
int virDomainListAllCheckpoints(virDomainPtr domain,
|
|
virDomainCheckpointPtr **checkpoints,
|
|
unsigned int flags);
|
|
|
|
/* Get all checkpoint object children for this checkpoint */
|
|
int virDomainCheckpointListAllChildren(virDomainCheckpointPtr checkpoint,
|
|
virDomainCheckpointPtr **children,
|
|
unsigned int flags);
|
|
|
|
/* Get a handle to a named checkpoint */
|
|
virDomainCheckpointPtr virDomainCheckpointLookupByName(virDomainPtr domain,
|
|
const char *name,
|
|
unsigned int flags);
|
|
|
|
/* Get a handle to the parent checkpoint, if one exists */
|
|
virDomainCheckpointPtr virDomainCheckpointGetParent(virDomainCheckpointPtr checkpoint,
|
|
unsigned int flags);
|
|
|
|
/* Delete a checkpoint */
|
|
typedef enum {
|
|
VIR_DOMAIN_CHECKPOINT_DELETE_CHILDREN = (1 << 0), /* Also delete children */
|
|
VIR_DOMAIN_CHECKPOINT_DELETE_METADATA_ONLY = (1 << 1), /* Delete just metadata */
|
|
VIR_DOMAIN_CHECKPOINT_DELETE_CHILDREN_ONLY = (1 << 2), /* Delete just children */
|
|
} virDomainCheckpointDeleteFlags;
|
|
|
|
int virDomainCheckpointDelete(virDomainCheckpointPtr checkpoint,
|
|
unsigned int flags);
|
|
|
|
int virDomainCheckpointRef(virDomainCheckpointPtr checkpoint);
|
|
int virDomainCheckpointFree(virDomainCheckpointPtr checkpoint);
|
|
|
|
#endif /* LIBVIRT_DOMAIN_CHECKPOINT_H */
|