mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-24 20:32:22 +00:00
Currently, if qemuProcessStart fail at some point, e.g. because domain being started wants a PCI/USB device already assigned to a different domain, we jump to cleanup label where qemuProcessStop is performed. This unconditionally calls virSecurityManagerRestoreAllLabel which is wrong because the other domain is still using those devices. However, once we successfully label all devices/paths in qemuProcessStart() from that point on, we have to perform a rollback on failure - that is - we have to virSecurityManagerRestoreAllLabel.
103 lines
3.9 KiB
C
103 lines
3.9 KiB
C
/*
|
|
* qemu_process.c: QEMU process management
|
|
*
|
|
* Copyright (C) 2006-2012 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
|
|
#ifndef __QEMU_PROCESS_H__
|
|
# define __QEMU_PROCESS_H__
|
|
|
|
# include "qemu_conf.h"
|
|
# include "qemu_domain.h"
|
|
|
|
int qemuProcessPrepareMonitorChr(struct qemud_driver *driver,
|
|
virDomainChrSourceDefPtr monConfig,
|
|
const char *vm);
|
|
|
|
int qemuProcessStartCPUs(struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
virConnectPtr conn,
|
|
virDomainRunningReason reason,
|
|
enum qemuDomainAsyncJob asyncJob);
|
|
int qemuProcessStopCPUs(struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
virDomainPausedReason reason,
|
|
enum qemuDomainAsyncJob asyncJob);
|
|
|
|
void qemuProcessAutostartAll(struct qemud_driver *driver);
|
|
void qemuProcessReconnectAll(virConnectPtr conn, struct qemud_driver *driver);
|
|
|
|
int qemuProcessAssignPCIAddresses(virDomainDefPtr def);
|
|
|
|
typedef enum {
|
|
VIR_QEMU_PROCESS_START_COLD = 1 << 0,
|
|
VIR_QEMU_PROCESS_START_PAUSED = 1 << 1,
|
|
VIR_QEMU_PROCESS_START_AUTODESROY = 1 << 2,
|
|
} qemuProcessStartFlags;
|
|
|
|
int qemuProcessStart(virConnectPtr conn,
|
|
struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
const char *migrateFrom,
|
|
int stdin_fd,
|
|
const char *stdin_path,
|
|
virDomainSnapshotObjPtr snapshot,
|
|
enum virNetDevVPortProfileOp vmop,
|
|
unsigned int flags);
|
|
|
|
typedef enum {
|
|
VIR_QEMU_PROCESS_STOP_MIGRATED = 1 << 0,
|
|
VIR_QEMU_PROCESS_STOP_NO_RELABEL = 1 << 1,
|
|
} qemuProcessStopFlags;
|
|
|
|
void qemuProcessStop(struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
virDomainShutoffReason reason,
|
|
unsigned int flags);
|
|
|
|
int qemuProcessAttach(virConnectPtr conn,
|
|
struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
pid_t pid,
|
|
const char *pidfile,
|
|
virDomainChrSourceDefPtr monConfig,
|
|
bool monJSON);
|
|
|
|
typedef enum {
|
|
VIR_QEMU_PROCESS_KILL_FORCE = 1 << 0,
|
|
VIR_QEMU_PROCESS_KILL_NOWAIT = 1 << 1,
|
|
VIR_QEMU_PROCESS_KILL_NOCHECK = 1 << 2, /* bypass the running vm check */
|
|
} virQemuProcessKillMode;
|
|
|
|
int qemuProcessKill(struct qemud_driver *driver,
|
|
virDomainObjPtr vm, unsigned int flags);
|
|
|
|
int qemuProcessAutoDestroyInit(struct qemud_driver *driver);
|
|
void qemuProcessAutoDestroyRun(struct qemud_driver *driver,
|
|
virConnectPtr conn);
|
|
void qemuProcessAutoDestroyShutdown(struct qemud_driver *driver);
|
|
int qemuProcessAutoDestroyAdd(struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
virConnectPtr conn);
|
|
int qemuProcessAutoDestroyRemove(struct qemud_driver *driver,
|
|
virDomainObjPtr vm);
|
|
bool qemuProcessAutoDestroyActive(struct qemud_driver *driver,
|
|
virDomainObjPtr vm);
|
|
|
|
#endif /* __QEMU_PROCESS_H__ */
|