mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 07:05:28 +00:00
216 lines
6.1 KiB
C
216 lines
6.1 KiB
C
/*
|
|
* qemu_conf.h: QEMU configuration management
|
|
*
|
|
* Copyright (C) 2006-2007, 2009-2012 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/>.
|
|
*
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
*/
|
|
|
|
#ifndef __QEMUD_CONF_H
|
|
# define __QEMUD_CONF_H
|
|
|
|
# include <config.h>
|
|
|
|
# include "virebtables.h"
|
|
# include "internal.h"
|
|
# include "capabilities.h"
|
|
# include "network_conf.h"
|
|
# include "domain_conf.h"
|
|
# include "domain_event.h"
|
|
# include "virthread.h"
|
|
# include "security/security_manager.h"
|
|
# include "vircgroup.h"
|
|
# include "virpci.h"
|
|
# include "virusb.h"
|
|
# include "cpu_conf.h"
|
|
# include "driver.h"
|
|
# include "virbitmap.h"
|
|
# include "vircommand.h"
|
|
# include "virthreadpool.h"
|
|
# include "locking/lock_manager.h"
|
|
# include "qemu_capabilities.h"
|
|
|
|
# define QEMUD_CPUMASK_LEN CPU_SETSIZE
|
|
|
|
typedef struct _qemuDriverCloseDef qemuDriverCloseDef;
|
|
typedef qemuDriverCloseDef *qemuDriverCloseDefPtr;
|
|
|
|
typedef struct _virQEMUDriver virQEMUDriver;
|
|
typedef virQEMUDriver *virQEMUDriverPtr;
|
|
|
|
/* Main driver state */
|
|
struct _virQEMUDriver {
|
|
virMutex lock;
|
|
|
|
virThreadPoolPtr workerPool;
|
|
|
|
bool privileged;
|
|
const char *uri;
|
|
|
|
uid_t user;
|
|
gid_t group;
|
|
int dynamicOwnership;
|
|
|
|
unsigned int qemuVersion;
|
|
int nextvmid;
|
|
|
|
virCgroupPtr cgroup;
|
|
int cgroupControllers;
|
|
char **cgroupDeviceACL;
|
|
|
|
size_t nactive;
|
|
virStateInhibitCallback inhibitCallback;
|
|
void *inhibitOpaque;
|
|
|
|
virDomainObjList domains;
|
|
|
|
/* These five directories are ones libvirtd uses (so must be root:root
|
|
* to avoid security risk from QEMU processes */
|
|
char *configBaseDir;
|
|
char *configDir;
|
|
char *autostartDir;
|
|
char *logDir;
|
|
char *stateDir;
|
|
/* These two directories are ones QEMU processes use (so must match
|
|
* the QEMU user/group */
|
|
char *libDir;
|
|
char *cacheDir;
|
|
char *saveDir;
|
|
char *snapshotDir;
|
|
char *qemuImgBinary;
|
|
unsigned int vncAutoUnixSocket : 1;
|
|
unsigned int vncTLS : 1;
|
|
unsigned int vncTLSx509verify : 1;
|
|
unsigned int vncSASL : 1;
|
|
char *vncTLSx509certdir;
|
|
char *vncListen;
|
|
char *vncPassword;
|
|
char *vncSASLdir;
|
|
unsigned int spiceTLS : 1;
|
|
char *spiceTLSx509certdir;
|
|
char *spiceListen;
|
|
char *spicePassword;
|
|
int remotePortMin;
|
|
int remotePortMax;
|
|
char *hugetlbfs_mount;
|
|
char *hugepage_path;
|
|
|
|
unsigned int macFilter : 1;
|
|
ebtablesContext *ebtables;
|
|
|
|
unsigned int relaxedACS : 1;
|
|
unsigned int vncAllowHostAudio : 1;
|
|
unsigned int clearEmulatorCapabilities : 1;
|
|
unsigned int allowDiskFormatProbing : 1;
|
|
unsigned int setProcessName : 1;
|
|
|
|
int maxProcesses;
|
|
int maxFiles;
|
|
|
|
int max_queued;
|
|
|
|
virCapsPtr caps;
|
|
qemuCapsCachePtr capsCache;
|
|
|
|
virDomainEventStatePtr domainEventState;
|
|
|
|
char **securityDriverNames;
|
|
bool securityDefaultConfined;
|
|
bool securityRequireConfined;
|
|
virSecurityManagerPtr securityManager;
|
|
|
|
char *saveImageFormat;
|
|
char *dumpImageFormat;
|
|
|
|
char *autoDumpPath;
|
|
bool autoDumpBypassCache;
|
|
|
|
bool autoStartBypassCache;
|
|
|
|
pciDeviceList *activePciHostdevs;
|
|
usbDeviceList *activeUsbHostdevs;
|
|
|
|
/* The devices which is are not in use by the host or any guest. */
|
|
pciDeviceList *inactivePciHostdevs;
|
|
|
|
virBitmapPtr reservedRemotePorts;
|
|
|
|
virSysinfoDefPtr hostsysinfo;
|
|
|
|
virLockManagerPluginPtr lockManager;
|
|
|
|
/* Mapping of 'char *uuidstr' -> qemuDriverCloseDefPtr of domains
|
|
* which want a specific cleanup to be done when a connection is
|
|
* closed. Such cleanup may be to automatically destroy the
|
|
* domain or abort a particular job running on it.
|
|
*/
|
|
virHashTablePtr closeCallbacks;
|
|
|
|
int keepAliveInterval;
|
|
unsigned int keepAliveCount;
|
|
int seccompSandbox;
|
|
};
|
|
|
|
typedef struct _qemuDomainCmdlineDef qemuDomainCmdlineDef;
|
|
typedef qemuDomainCmdlineDef *qemuDomainCmdlineDefPtr;
|
|
struct _qemuDomainCmdlineDef {
|
|
unsigned int num_args;
|
|
char **args;
|
|
|
|
unsigned int num_env;
|
|
char **env_name;
|
|
char **env_value;
|
|
};
|
|
|
|
/* Port numbers used for KVM migration. */
|
|
# define QEMUD_MIGRATION_FIRST_PORT 49152
|
|
# define QEMUD_MIGRATION_NUM_PORTS 64
|
|
|
|
|
|
void qemuDriverLock(virQEMUDriverPtr driver);
|
|
void qemuDriverUnlock(virQEMUDriverPtr driver);
|
|
int qemuLoadDriverConfig(virQEMUDriverPtr driver,
|
|
const char *filename);
|
|
|
|
struct qemuDomainDiskInfo {
|
|
bool removable;
|
|
bool locked;
|
|
bool tray_open;
|
|
int io_status;
|
|
};
|
|
|
|
typedef virDomainObjPtr (*qemuDriverCloseCallback)(virQEMUDriverPtr driver,
|
|
virDomainObjPtr vm,
|
|
virConnectPtr conn);
|
|
int qemuDriverCloseCallbackInit(virQEMUDriverPtr driver);
|
|
void qemuDriverCloseCallbackShutdown(virQEMUDriverPtr driver);
|
|
int qemuDriverCloseCallbackSet(virQEMUDriverPtr driver,
|
|
virDomainObjPtr vm,
|
|
virConnectPtr conn,
|
|
qemuDriverCloseCallback cb);
|
|
int qemuDriverCloseCallbackUnset(virQEMUDriverPtr driver,
|
|
virDomainObjPtr vm,
|
|
qemuDriverCloseCallback cb);
|
|
qemuDriverCloseCallback qemuDriverCloseCallbackGet(virQEMUDriverPtr driver,
|
|
virDomainObjPtr vm,
|
|
virConnectPtr conn);
|
|
void qemuDriverCloseCallbackRunAll(virQEMUDriverPtr driver,
|
|
virConnectPtr conn);
|
|
|
|
#endif /* __QEMUD_CONF_H */
|