2019-03-15 02:19:18 +00:00
|
|
|
/*
|
|
|
|
* virdomainsnapshotobjlist.h: handle a tree of snapshot objects
|
|
|
|
* (derived from snapshot_conf.h)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2019 Red Hat, Inc.
|
|
|
|
* Copyright (C) 2006-2008 Daniel P. Berrange
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#pragma once
|
2019-03-15 02:19:18 +00:00
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#include "internal.h"
|
|
|
|
#include "virdomainmomentobjlist.h"
|
|
|
|
#include "virbuffer.h"
|
2019-03-15 02:19:18 +00:00
|
|
|
|
|
|
|
virDomainSnapshotObjListPtr virDomainSnapshotObjListNew(void);
|
|
|
|
void virDomainSnapshotObjListFree(virDomainSnapshotObjListPtr snapshots);
|
|
|
|
|
2019-03-22 04:45:25 +00:00
|
|
|
virDomainMomentObjPtr virDomainSnapshotAssignDef(virDomainSnapshotObjListPtr snapshots,
|
|
|
|
virDomainSnapshotDefPtr def);
|
2019-03-15 02:19:18 +00:00
|
|
|
|
|
|
|
int virDomainSnapshotObjListGetNames(virDomainSnapshotObjListPtr snapshots,
|
2019-03-22 04:45:25 +00:00
|
|
|
virDomainMomentObjPtr from,
|
2019-03-15 02:19:18 +00:00
|
|
|
char **const names, int maxnames,
|
|
|
|
unsigned int flags);
|
|
|
|
int virDomainSnapshotObjListNum(virDomainSnapshotObjListPtr snapshots,
|
2019-03-22 04:45:25 +00:00
|
|
|
virDomainMomentObjPtr from,
|
2019-03-15 02:19:18 +00:00
|
|
|
unsigned int flags);
|
2019-03-22 04:45:25 +00:00
|
|
|
virDomainMomentObjPtr virDomainSnapshotFindByName(virDomainSnapshotObjListPtr snapshots,
|
|
|
|
const char *name);
|
|
|
|
virDomainMomentObjPtr virDomainSnapshotGetCurrent(virDomainSnapshotObjListPtr snapshots);
|
2019-03-21 20:00:08 +00:00
|
|
|
const char *virDomainSnapshotGetCurrentName(virDomainSnapshotObjListPtr snapshots);
|
|
|
|
void virDomainSnapshotSetCurrent(virDomainSnapshotObjListPtr snapshots,
|
2019-03-22 04:45:25 +00:00
|
|
|
virDomainMomentObjPtr snapshot);
|
2019-03-21 20:00:08 +00:00
|
|
|
bool virDomainSnapshotObjListRemove(virDomainSnapshotObjListPtr snapshots,
|
2019-03-22 04:45:25 +00:00
|
|
|
virDomainMomentObjPtr snapshot);
|
2019-03-17 03:38:33 +00:00
|
|
|
void virDomainSnapshotObjListRemoveAll(virDomainSnapshotObjListPtr snapshots);
|
2019-03-15 02:19:18 +00:00
|
|
|
int virDomainSnapshotForEach(virDomainSnapshotObjListPtr snapshots,
|
|
|
|
virHashIterator iter,
|
|
|
|
void *data);
|
|
|
|
int virDomainSnapshotUpdateRelations(virDomainSnapshotObjListPtr snapshots);
|
2019-07-06 02:07:43 +00:00
|
|
|
int virDomainSnapshotCheckCycles(virDomainSnapshotObjListPtr snapshots,
|
|
|
|
virDomainSnapshotDefPtr def,
|
|
|
|
const char *domname);
|
2019-03-15 02:19:18 +00:00
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#define VIR_DOMAIN_SNAPSHOT_FILTERS_METADATA \
|
2019-03-20 02:33:23 +00:00
|
|
|
(VIR_DOMAIN_SNAPSHOT_LIST_METADATA | \
|
|
|
|
VIR_DOMAIN_SNAPSHOT_LIST_NO_METADATA)
|
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#define VIR_DOMAIN_SNAPSHOT_FILTERS_LEAVES \
|
2019-03-20 02:33:23 +00:00
|
|
|
(VIR_DOMAIN_SNAPSHOT_LIST_LEAVES | \
|
|
|
|
VIR_DOMAIN_SNAPSHOT_LIST_NO_LEAVES)
|
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#define VIR_DOMAIN_SNAPSHOT_FILTERS_STATUS \
|
2019-03-20 02:33:23 +00:00
|
|
|
(VIR_DOMAIN_SNAPSHOT_LIST_INACTIVE | \
|
|
|
|
VIR_DOMAIN_SNAPSHOT_LIST_ACTIVE | \
|
|
|
|
VIR_DOMAIN_SNAPSHOT_LIST_DISK_ONLY)
|
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#define VIR_DOMAIN_SNAPSHOT_FILTERS_LOCATION \
|
2019-03-20 02:33:23 +00:00
|
|
|
(VIR_DOMAIN_SNAPSHOT_LIST_INTERNAL | \
|
|
|
|
VIR_DOMAIN_SNAPSHOT_LIST_EXTERNAL)
|
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#define VIR_DOMAIN_SNAPSHOT_FILTERS_ALL \
|
2019-03-20 02:33:23 +00:00
|
|
|
(VIR_DOMAIN_SNAPSHOT_FILTERS_METADATA | \
|
|
|
|
VIR_DOMAIN_SNAPSHOT_FILTERS_LEAVES | \
|
|
|
|
VIR_DOMAIN_SNAPSHOT_FILTERS_STATUS | \
|
|
|
|
VIR_DOMAIN_SNAPSHOT_FILTERS_LOCATION)
|
|
|
|
|
2019-03-15 02:19:18 +00:00
|
|
|
int virDomainListSnapshots(virDomainSnapshotObjListPtr snapshots,
|
2019-03-22 04:45:25 +00:00
|
|
|
virDomainMomentObjPtr from,
|
2019-03-15 02:19:18 +00:00
|
|
|
virDomainPtr dom,
|
|
|
|
virDomainSnapshotPtr **snaps,
|
|
|
|
unsigned int flags);
|
|
|
|
|
2019-03-18 21:13:50 +00:00
|
|
|
/* Access the snapshot-specific definition from a given list member. */
|
|
|
|
static inline virDomainSnapshotDefPtr
|
2019-03-22 04:45:25 +00:00
|
|
|
virDomainSnapshotObjGetDef(virDomainMomentObjPtr obj)
|
2019-03-18 21:13:50 +00:00
|
|
|
{
|
Revert "snapshot: Allow NULL to virDomainSnapshotObjGetDef"
This reverts commit 6b90a8473875eb34bae27856857cf6561e079089.
It turns out gcc -O2 is not happy with it, complaining:
/home/pipo/libvirt/src/qemu/qemu_driver.c: In function 'qemuDomainSnapshotCreateXML':
/home/pipo/libvirt/src/qemu/qemu_driver.c:15389:26: error: potential null pointer dereference [-Werror=null-dereference]
bool memory = snapdef->memory == VIR_DOMAIN_SNAPSHOT_LOCATION_EXTERNAL;
~~~~~~~^~~~~~~~
/home/pipo/libvirt/src/qemu/qemu_driver.c:15389:26: error: potential null pointer dereference [-Werror=null-dereference]
In file included from /home/pipo/libvirt/src/util/virbuffer.h:27,
from /home/pipo/libvirt/src/conf/capabilities.h:27,
from /home/pipo/libvirt/src/conf/domain_conf.h:32,
from /home/pipo/libvirt/src/qemu/qemu_agent.h:26,
from /home/pipo/libvirt/src/qemu/qemu_driver.c:40:
/home/pipo/libvirt/src/util/viralloc.h:125:34: error: potential null pointer dereference [-Werror=null-dereference]
# define VIR_ALLOC_N(ptr, count) virAllocN(&(ptr), sizeof(*(ptr)), (count), true, \
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
VIR_FROM_THIS, __FILE__, __FUNCTION__, __LINE__)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/pipo/libvirt/src/qemu/qemu_driver.c:15103:9: note: in expansion of macro 'VIR_ALLOC_N'
if (VIR_ALLOC_N(ret, snapdef->ndisks) < 0)
^~~~~~~~~~~
/home/pipo/libvirt/src/qemu/qemu_driver.c:15798:45: error: null pointer dereference [-Werror=null-dereference]
virDomainSnapshotObjGetDef(snap)->memory == VIR_DOMAIN_SNAPSHOT_LOCATION_EXTERNAL) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
As the patch simplified one or two callers at the risk of making
many other callers now candidates to trigger aggressive compiler
warnings, it isn't worth it.
Signed-off-by: Eric Blake <eblake@redhat.com>
2019-03-27 14:19:31 +00:00
|
|
|
return (virDomainSnapshotDefPtr) obj->def;
|
2019-03-18 21:13:50 +00:00
|
|
|
}
|