mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-10 14:57:42 +00:00
c39757f700
If the attempt to attach a device failed, we erased the unattached device from the namespace. This resulted in erasing an already attached device in case of a duplicate. We need to check for existing file in the namespace in order to determine erasing it in case of a failure. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1780508 Signed-off-by: Kristina Hanicova <khanicov@redhat.com> Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
93 lines
3.3 KiB
C
93 lines
3.3 KiB
C
/*
|
|
* qemu_namespace.h: QEMU domain namespace helpers
|
|
*
|
|
* Copyright (C) 2006-2020 Red Hat, Inc.
|
|
* Copyright (C) 2006 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/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "virenum.h"
|
|
#include "qemu_conf.h"
|
|
#include "virconf.h"
|
|
|
|
typedef enum {
|
|
QEMU_DOMAIN_NS_MOUNT = 0,
|
|
QEMU_DOMAIN_NS_LAST
|
|
} qemuDomainNamespace;
|
|
VIR_ENUM_DECL(qemuDomainNamespace);
|
|
|
|
int qemuDomainEnableNamespace(virDomainObj *vm,
|
|
qemuDomainNamespace ns);
|
|
|
|
bool qemuDomainNamespaceEnabled(virDomainObj *vm,
|
|
qemuDomainNamespace ns);
|
|
|
|
int qemuDomainUnshareNamespace(virQEMUDriverConfig *cfg,
|
|
virSecurityManager *mgr,
|
|
virDomainObj *vm);
|
|
|
|
int qemuDomainBuildNamespace(virQEMUDriverConfig *cfg,
|
|
virDomainObj *vm);
|
|
|
|
void qemuDomainDestroyNamespace(virQEMUDriver *driver,
|
|
virDomainObj *vm);
|
|
|
|
bool qemuDomainNamespaceAvailable(qemuDomainNamespace ns);
|
|
|
|
int qemuDomainNamespaceSetupDisk(virDomainObj *vm,
|
|
virStorageSource *src,
|
|
bool *created);
|
|
|
|
int qemuDomainNamespaceTeardownDisk(virDomainObj *vm,
|
|
virStorageSource *src);
|
|
|
|
int qemuDomainNamespaceSetupHostdev(virDomainObj *vm,
|
|
virDomainHostdevDef *hostdev,
|
|
bool *created);
|
|
|
|
int qemuDomainNamespaceTeardownHostdev(virDomainObj *vm,
|
|
virDomainHostdevDef *hostdev);
|
|
|
|
int qemuDomainNamespaceSetupMemory(virDomainObj *vm,
|
|
virDomainMemoryDef *memory,
|
|
bool *created);
|
|
|
|
int qemuDomainNamespaceTeardownMemory(virDomainObj *vm,
|
|
virDomainMemoryDef *memory);
|
|
|
|
int qemuDomainNamespaceSetupChardev(virDomainObj *vm,
|
|
virDomainChrDef *chr,
|
|
bool *created);
|
|
|
|
int qemuDomainNamespaceTeardownChardev(virDomainObj *vm,
|
|
virDomainChrDef *chr);
|
|
|
|
int qemuDomainNamespaceSetupRNG(virDomainObj *vm,
|
|
virDomainRNGDef *rng,
|
|
bool *created);
|
|
|
|
int qemuDomainNamespaceTeardownRNG(virDomainObj *vm,
|
|
virDomainRNGDef *rng);
|
|
|
|
int qemuDomainNamespaceSetupInput(virDomainObj *vm,
|
|
virDomainInputDef *input,
|
|
bool *created);
|
|
|
|
int qemuDomainNamespaceTeardownInput(virDomainObj *vm,
|
|
virDomainInputDef *input);
|