2011-02-14 16:09:39 +00:00
|
|
|
/*
|
2013-07-26 12:24:55 +00:00
|
|
|
* qemu_process.h: QEMU process management
|
2011-02-14 16:09:39 +00:00
|
|
|
*
|
2015-01-08 14:37:50 +00:00
|
|
|
* Copyright (C) 2006-2012, 2015 Red Hat, Inc.
|
2011-02-14 16:09:39 +00:00
|
|
|
*
|
|
|
|
* 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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2011-02-14 16:09:39 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-06-18 16:12:37 +00:00
|
|
|
#pragma once
|
2011-02-14 16:09:39 +00:00
|
|
|
|
2019-06-18 16:12:37 +00:00
|
|
|
#include "qemu_conf.h"
|
|
|
|
#include "qemu_domain.h"
|
|
|
|
#include "virstoragefile.h"
|
2020-02-12 12:51:30 +00:00
|
|
|
#include "vireventthread.h"
|
2011-02-14 16:09:39 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessPrepareMonitorChr(virDomainChrSourceDef *monConfig,
|
2016-02-26 08:15:55 +00:00
|
|
|
const char *domainDir);
|
2011-02-14 16:09:39 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessStartCPUs(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
qemu: fix crash when mixing sync and async monitor jobs
Currently, we attempt to run sync job and async job at the same time. It
means that the monitor commands for two jobs can be run in any order.
In the function qemuDomainObjEnterMonitorInternal():
if (priv->job.active == QEMU_JOB_NONE && priv->job.asyncJob) {
if (qemuDomainObjBeginNestedJob(driver, obj) < 0)
We check whether the caller is an async job by priv->job.active and
priv->job.asynJob. But when an async job is running, and a sync job is
also running at the time of the check, then priv->job.active is not
QEMU_JOB_NONE. So we cannot check whether the caller is an async job
in the function qemuDomainObjEnterMonitorInternal(), and must instead
put the burden on the caller to tell us when an async command wants
to do a nested job.
Once the burden is on the caller, then only async monitor enters need
to worry about whether the VM is still running; for sync monitor enter,
the internal return is always 0, so lots of ignore_value can be dropped.
* src/qemu/THREADS.txt: Reflect new rules.
* src/qemu/qemu_domain.h (qemuDomainObjEnterMonitorAsync): New
prototype.
* src/qemu/qemu_process.h (qemuProcessStartCPUs)
(qemuProcessStopCPUs): Add parameter.
* src/qemu/qemu_migration.h (qemuMigrationToFile): Likewise.
(qemuMigrationWaitForCompletion): Make static.
* src/qemu/qemu_domain.c (qemuDomainObjEnterMonitorInternal): Add
parameter.
(qemuDomainObjEnterMonitorAsync): New function.
(qemuDomainObjEnterMonitor, qemuDomainObjEnterMonitorWithDriver):
Update callers.
* src/qemu/qemu_driver.c (qemuDomainSaveInternal)
(qemudDomainCoreDump, doCoreDump, processWatchdogEvent)
(qemudDomainSuspend, qemudDomainResume, qemuDomainSaveImageStartVM)
(qemuDomainSnapshotCreateActive, qemuDomainRevertToSnapshot):
Likewise.
* src/qemu/qemu_process.c (qemuProcessStopCPUs)
(qemuProcessFakeReboot, qemuProcessRecoverMigration)
(qemuProcessRecoverJob, qemuProcessStart): Likewise.
* src/qemu/qemu_migration.c (qemuMigrationToFile)
(qemuMigrationWaitForCompletion, qemuMigrationUpdateJobStatus)
(qemuMigrationJobStart, qemuDomainMigrateGraphicsRelocate)
(doNativeMigrate, doTunnelMigrate, qemuMigrationPerformJob)
(qemuMigrationPerformPhase, qemuMigrationFinish)
(qemuMigrationConfirm): Likewise.
* src/qemu/qemu_hotplug.c: Drop unneeded ignore_value.
2011-07-28 23:18:24 +00:00
|
|
|
virDomainRunningReason reason,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob);
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessStopCPUs(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
qemu: fix crash when mixing sync and async monitor jobs
Currently, we attempt to run sync job and async job at the same time. It
means that the monitor commands for two jobs can be run in any order.
In the function qemuDomainObjEnterMonitorInternal():
if (priv->job.active == QEMU_JOB_NONE && priv->job.asyncJob) {
if (qemuDomainObjBeginNestedJob(driver, obj) < 0)
We check whether the caller is an async job by priv->job.active and
priv->job.asynJob. But when an async job is running, and a sync job is
also running at the time of the check, then priv->job.active is not
QEMU_JOB_NONE. So we cannot check whether the caller is an async job
in the function qemuDomainObjEnterMonitorInternal(), and must instead
put the burden on the caller to tell us when an async command wants
to do a nested job.
Once the burden is on the caller, then only async monitor enters need
to worry about whether the VM is still running; for sync monitor enter,
the internal return is always 0, so lots of ignore_value can be dropped.
* src/qemu/THREADS.txt: Reflect new rules.
* src/qemu/qemu_domain.h (qemuDomainObjEnterMonitorAsync): New
prototype.
* src/qemu/qemu_process.h (qemuProcessStartCPUs)
(qemuProcessStopCPUs): Add parameter.
* src/qemu/qemu_migration.h (qemuMigrationToFile): Likewise.
(qemuMigrationWaitForCompletion): Make static.
* src/qemu/qemu_domain.c (qemuDomainObjEnterMonitorInternal): Add
parameter.
(qemuDomainObjEnterMonitorAsync): New function.
(qemuDomainObjEnterMonitor, qemuDomainObjEnterMonitorWithDriver):
Update callers.
* src/qemu/qemu_driver.c (qemuDomainSaveInternal)
(qemudDomainCoreDump, doCoreDump, processWatchdogEvent)
(qemudDomainSuspend, qemudDomainResume, qemuDomainSaveImageStartVM)
(qemuDomainSnapshotCreateActive, qemuDomainRevertToSnapshot):
Likewise.
* src/qemu/qemu_process.c (qemuProcessStopCPUs)
(qemuProcessFakeReboot, qemuProcessRecoverMigration)
(qemuProcessRecoverJob, qemuProcessStart): Likewise.
* src/qemu/qemu_migration.c (qemuMigrationToFile)
(qemuMigrationWaitForCompletion, qemuMigrationUpdateJobStatus)
(qemuMigrationJobStart, qemuDomainMigrateGraphicsRelocate)
(doNativeMigrate, doTunnelMigrate, qemuMigrationPerformJob)
(qemuMigrationPerformPhase, qemuMigrationFinish)
(qemuMigrationConfirm): Likewise.
* src/qemu/qemu_hotplug.c: Drop unneeded ignore_value.
2011-07-28 23:18:24 +00:00
|
|
|
virDomainPausedReason reason,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob);
|
2011-02-14 16:09:39 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessBuildDestroyMemoryPaths(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virDomainMemoryDef *mem,
|
2017-11-07 14:19:43 +00:00
|
|
|
bool build);
|
2017-06-07 12:47:37 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessDestroyMemoryBackingPath(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virDomainMemoryDef *mem);
|
2018-01-11 12:02:52 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
void qemuProcessReconnectAll(virQEMUDriver *driver);
|
2011-02-14 16:09:39 +00:00
|
|
|
|
2015-11-06 17:41:37 +00:00
|
|
|
typedef struct _qemuProcessIncomingDef qemuProcessIncomingDef;
|
|
|
|
struct _qemuProcessIncomingDef {
|
2016-01-07 23:07:37 +00:00
|
|
|
char *address; /* address where QEMU is supposed to listen */
|
2022-04-07 15:30:20 +00:00
|
|
|
char *uri; /* used when calling migrate-incoming QMP command */
|
2015-11-06 17:41:37 +00:00
|
|
|
int fd; /* for fd:N URI */
|
|
|
|
const char *path; /* path associated with fd */
|
|
|
|
};
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuProcessIncomingDef *qemuProcessIncomingDefNew(virQEMUCaps *qemuCaps,
|
2016-01-07 23:07:37 +00:00
|
|
|
const char *listenAddress,
|
2015-11-06 17:41:37 +00:00
|
|
|
const char *migrateFrom,
|
|
|
|
int fd,
|
|
|
|
const char *path);
|
2021-03-11 07:16:13 +00:00
|
|
|
void qemuProcessIncomingDefFree(qemuProcessIncomingDef *inc);
|
2015-11-06 17:41:37 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessBeginJob(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2018-03-21 12:01:59 +00:00
|
|
|
virDomainJobOperation operation,
|
|
|
|
unsigned long apiFlags);
|
2022-03-18 10:17:28 +00:00
|
|
|
void qemuProcessEndJob(virDomainObj *vm);
|
2015-10-21 08:55:43 +00:00
|
|
|
|
2012-03-08 13:20:19 +00:00
|
|
|
typedef enum {
|
|
|
|
VIR_QEMU_PROCESS_START_COLD = 1 << 0,
|
|
|
|
VIR_QEMU_PROCESS_START_PAUSED = 1 << 1,
|
2013-02-27 16:53:08 +00:00
|
|
|
VIR_QEMU_PROCESS_START_AUTODESTROY = 1 << 2,
|
2016-03-15 12:00:59 +00:00
|
|
|
VIR_QEMU_PROCESS_START_PRETEND = 1 << 3,
|
2016-05-27 11:45:05 +00:00
|
|
|
VIR_QEMU_PROCESS_START_NEW = 1 << 4, /* internal, new VM is starting */
|
2018-04-09 14:31:17 +00:00
|
|
|
VIR_QEMU_PROCESS_START_GEN_VMID = 1 << 5, /* Generate a new VMID */
|
2022-02-09 08:30:15 +00:00
|
|
|
VIR_QEMU_PROCESS_START_RESET_NVRAM = 1 << 6, /* Re-initialize NVRAM from template */
|
2012-03-08 13:20:19 +00:00
|
|
|
} qemuProcessStartFlags;
|
|
|
|
|
2011-02-14 16:09:39 +00:00
|
|
|
int qemuProcessStart(virConnectPtr conn,
|
2021-03-11 07:16:13 +00:00
|
|
|
virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virCPUDef *updatedCPU,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob,
|
2011-02-14 16:09:39 +00:00
|
|
|
const char *migrateFrom,
|
|
|
|
int stdin_fd,
|
|
|
|
const char *stdin_path,
|
2021-03-11 07:16:13 +00:00
|
|
|
virDomainMomentObj *snapshot,
|
2014-04-27 00:15:22 +00:00
|
|
|
virNetDevVPortProfileOp vmop,
|
2012-03-08 13:20:19 +00:00
|
|
|
unsigned int flags);
|
2011-02-14 16:09:39 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessCreatePretendCmdPrepare(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2020-10-15 12:39:16 +00:00
|
|
|
const char *migrateURI,
|
|
|
|
unsigned int flags);
|
|
|
|
|
2022-05-16 11:32:59 +00:00
|
|
|
virCommand *qemuProcessCreatePretendCmdBuild(virDomainObj *vm,
|
2022-05-16 11:55:25 +00:00
|
|
|
const char *migrateURI);
|
2016-02-04 14:25:29 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessInit(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virCPUDef *updatedCPU,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob,
|
2016-02-04 14:25:29 +00:00
|
|
|
bool migration,
|
2016-03-17 12:51:20 +00:00
|
|
|
unsigned int flags);
|
2015-11-10 15:58:12 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessPrepareDomain(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2016-03-15 12:00:59 +00:00
|
|
|
unsigned int flags);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessOpenVhostVsock(virDomainVsockDef *vsock);
|
2018-05-30 11:53:52 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessPrepareHostHostdev(virDomainHostdevDef *hostdev);
|
2020-10-15 13:06:01 +00:00
|
|
|
|
2022-02-03 10:04:56 +00:00
|
|
|
|
|
|
|
int qemuProcessPrepareHostBackendChardevHotplug(virDomainObj *vm,
|
|
|
|
virDomainDeviceDef *dev)
|
|
|
|
G_GNUC_NO_INLINE;
|
|
|
|
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessPrepareHost(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2017-10-03 08:14:21 +00:00
|
|
|
unsigned int flags);
|
2016-03-22 12:16:05 +00:00
|
|
|
|
2015-11-10 15:58:41 +00:00
|
|
|
int qemuProcessLaunch(virConnectPtr conn,
|
2021-03-11 07:16:13 +00:00
|
|
|
virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob,
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuProcessIncomingDef *incoming,
|
|
|
|
virDomainMomentObj *snapshot,
|
2015-11-10 15:58:41 +00:00
|
|
|
virNetDevVPortProfileOp vmop,
|
|
|
|
unsigned int flags);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessFinishStartup(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob,
|
2015-11-10 12:29:40 +00:00
|
|
|
bool startCPUs,
|
|
|
|
virDomainPausedReason pausedReason);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessRefreshState(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob);
|
2018-02-01 14:02:17 +00:00
|
|
|
|
2012-06-11 13:20:44 +00:00
|
|
|
typedef enum {
|
2012-06-11 13:57:19 +00:00
|
|
|
VIR_QEMU_PROCESS_STOP_MIGRATED = 1 << 0,
|
|
|
|
VIR_QEMU_PROCESS_STOP_NO_RELABEL = 1 << 1,
|
2012-06-11 13:20:44 +00:00
|
|
|
} qemuProcessStopFlags;
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessBeginStopJob(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainJob job,
|
2016-02-11 14:13:09 +00:00
|
|
|
bool forceKill);
|
2021-03-11 07:16:13 +00:00
|
|
|
void qemuProcessStop(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2012-06-11 13:20:44 +00:00
|
|
|
virDomainShutoffReason reason,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob,
|
2012-06-11 13:20:44 +00:00
|
|
|
unsigned int flags);
|
2011-02-14 16:09:39 +00:00
|
|
|
|
qemu: new GRACEFUL flag for virDomainDestroy w/ QEMU support
When libvirt's virDomainDestroy API is shutting down the qemu process,
it first sends SIGTERM, then waits for 1.6 seconds and, if it sees the
process still there, sends a SIGKILL.
There have been reports that this behavior can lead to data loss
because the guest running in qemu doesn't have time to flush its disk
cache buffers before it's unceremoniously whacked.
This patch maintains that default behavior, but provides a new flag
VIR_DOMAIN_DESTROY_GRACEFUL to alter the behavior. If this flag is set
in the call to virDomainDestroyFlags, SIGKILL will never be sent to
the qemu process; instead, if the timeout is reached and the qemu
process still exists, virDomainDestroy will return an error.
Once this patch is in, the recommended method for applications to call
virDomainDestroyFlags will be with VIR_DOMAIN_DESTROY_GRACEFUL
included. If that fails, then the application can decide if and when
to call virDomainDestroyFlags again without
VIR_DOMAIN_DESTROY_GRACEFUL (to force the issue with SIGKILL).
(Note that this does not address the issue of existing applications
that have not yet been modified to use VIR_DOMAIN_DESTROY_GRACEFUL.
That is a separate patch.)
2012-01-27 18:28:23 +00:00
|
|
|
typedef enum {
|
|
|
|
VIR_QEMU_PROCESS_KILL_FORCE = 1 << 0,
|
|
|
|
VIR_QEMU_PROCESS_KILL_NOWAIT = 1 << 1,
|
2012-03-30 06:21:49 +00:00
|
|
|
VIR_QEMU_PROCESS_KILL_NOCHECK = 1 << 2, /* bypass the running vm check */
|
qemu: new GRACEFUL flag for virDomainDestroy w/ QEMU support
When libvirt's virDomainDestroy API is shutting down the qemu process,
it first sends SIGTERM, then waits for 1.6 seconds and, if it sees the
process still there, sends a SIGKILL.
There have been reports that this behavior can lead to data loss
because the guest running in qemu doesn't have time to flush its disk
cache buffers before it's unceremoniously whacked.
This patch maintains that default behavior, but provides a new flag
VIR_DOMAIN_DESTROY_GRACEFUL to alter the behavior. If this flag is set
in the call to virDomainDestroyFlags, SIGKILL will never be sent to
the qemu process; instead, if the timeout is reached and the qemu
process still exists, virDomainDestroy will return an error.
Once this patch is in, the recommended method for applications to call
virDomainDestroyFlags will be with VIR_DOMAIN_DESTROY_GRACEFUL
included. If that fails, then the application can decide if and when
to call virDomainDestroyFlags again without
VIR_DOMAIN_DESTROY_GRACEFUL (to force the issue with SIGKILL).
(Note that this does not address the issue of existing applications
that have not yet been modified to use VIR_DOMAIN_DESTROY_GRACEFUL.
That is a separate patch.)
2012-01-27 18:28:23 +00:00
|
|
|
} virQemuProcessKillMode;
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessKill(virDomainObj *vm, unsigned int flags);
|
2011-04-21 15:19:06 +00:00
|
|
|
|
2021-12-14 15:36:15 +00:00
|
|
|
void qemuProcessShutdownOrReboot(virDomainObj *vm);
|
2013-06-07 10:23:33 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessAutoDestroyInit(virQEMUDriver *driver);
|
|
|
|
void qemuProcessAutoDestroyShutdown(virQEMUDriver *driver);
|
|
|
|
int qemuProcessAutoDestroyAdd(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2011-06-23 09:37:57 +00:00
|
|
|
virConnectPtr conn);
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessAutoDestroyRemove(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm);
|
|
|
|
bool qemuProcessAutoDestroyActive(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm);
|
2011-06-23 09:37:57 +00:00
|
|
|
|
2015-01-08 14:37:50 +00:00
|
|
|
int qemuProcessSetSchedParams(int id, pid_t pid, size_t nsp,
|
2021-03-11 07:16:13 +00:00
|
|
|
virDomainThreadSchedParam *sp);
|
2015-01-08 14:37:50 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
virDomainDiskDef *qemuProcessFindDomainDiskByAliasOrQOM(virDomainObj *vm,
|
2018-08-13 13:58:07 +00:00
|
|
|
const char *alias,
|
|
|
|
const char *qomid);
|
2015-03-13 15:59:26 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuConnectAgent(virQEMUDriver *driver, virDomainObj *vm);
|
2015-04-24 14:48:26 +00:00
|
|
|
|
2016-01-13 15:36:52 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessSetupVcpu(virDomainObj *vm,
|
2016-01-13 15:36:52 +00:00
|
|
|
unsigned int vcpuid);
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessSetupIOThread(virDomainObj *vm,
|
|
|
|
virDomainIOThreadIDDef *iothread);
|
2016-01-13 15:36:52 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuRefreshVirtioChannelState(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob);
|
2016-04-06 13:57:57 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessRefreshBalloonState(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2016-04-06 13:57:57 +00:00
|
|
|
int asyncJob);
|
2016-05-23 12:00:35 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessRefreshDisks(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2022-03-24 15:32:42 +00:00
|
|
|
virDomainAsyncJob asyncJob);
|
2016-05-23 12:00:35 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessStartManagedPRDaemon(virDomainObj *vm) G_GNUC_NO_INLINE;
|
2018-04-23 11:21:03 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
void qemuProcessKillManagedPRDaemon(virDomainObj *vm) G_GNUC_NO_INLINE;
|
2018-04-23 11:21:03 +00:00
|
|
|
|
2019-01-13 00:50:01 +00:00
|
|
|
typedef struct _qemuProcessQMP qemuProcessQMP;
|
|
|
|
struct _qemuProcessQMP {
|
2019-01-13 00:50:00 +00:00
|
|
|
char *binary;
|
2019-01-13 00:50:12 +00:00
|
|
|
char *libDir;
|
2019-01-13 00:50:00 +00:00
|
|
|
uid_t runUid;
|
|
|
|
gid_t runGid;
|
2019-10-16 11:22:13 +00:00
|
|
|
char *stdErr;
|
2019-01-13 00:50:00 +00:00
|
|
|
char *monarg;
|
|
|
|
char *monpath;
|
|
|
|
char *pidfile;
|
2019-02-13 16:22:31 +00:00
|
|
|
char *uniqDir;
|
2020-02-12 12:51:30 +00:00
|
|
|
virEventThread *eventThread;
|
2021-03-11 07:16:13 +00:00
|
|
|
virCommand *cmd;
|
|
|
|
qemuMonitor *mon;
|
2019-01-13 00:50:00 +00:00
|
|
|
pid_t pid;
|
2021-03-11 07:16:13 +00:00
|
|
|
virDomainObj *vm;
|
2019-01-13 00:50:06 +00:00
|
|
|
bool forceTCG;
|
2019-01-13 00:50:00 +00:00
|
|
|
};
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuProcessQMP *qemuProcessQMPNew(const char *binary,
|
2019-01-13 00:50:01 +00:00
|
|
|
const char *libDir,
|
|
|
|
uid_t runUid,
|
|
|
|
gid_t runGid,
|
2019-01-13 00:50:06 +00:00
|
|
|
bool forceTCG);
|
2019-01-13 00:50:00 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
void qemuProcessQMPFree(qemuProcessQMP *proc);
|
2020-07-17 21:15:52 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(qemuProcessQMP, qemuProcessQMPFree);
|
2019-01-13 00:50:00 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuProcessQMPStart(qemuProcessQMP *proc);
|
2021-08-30 04:30:42 +00:00
|
|
|
|
|
|
|
bool qemuProcessRebootAllowed(const virDomainDef *def);
|