qemu_conf.h 4.4 KB
Newer Older
D
Daniel P. Berrange 已提交
1
/*
2
 * qemu_conf.h: QEMU configuration management
D
Daniel P. Berrange 已提交
3
 *
4
 * Copyright (C) 2006-2007, 2009-2011 Red Hat, Inc.
D
Daniel P. Berrange 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

24
#ifndef __QEMUD_CONF_H
25
# define __QEMUD_CONF_H
D
Daniel P. Berrange 已提交
26

27
# include <config.h>
28

29 30 31 32 33 34 35
# include "ebtables.h"
# include "internal.h"
# include "capabilities.h"
# include "network_conf.h"
# include "domain_conf.h"
# include "domain_event.h"
# include "threads.h"
36
# include "security/security_manager.h"
37 38 39 40
# include "cgroup.h"
# include "pci.h"
# include "cpu_conf.h"
# include "driver.h"
41
# include "bitmap.h"
E
Eric Blake 已提交
42
# include "command.h"
H
Hu Tao 已提交
43
# include "threadpool.h"
44
# include "locking/lock_manager.h"
45

46
# define QEMUD_CPUMASK_LEN CPU_SETSIZE
47

48 49 50

/* Main driver state */
struct qemud_driver {
51
    virMutex lock;
52

H
Hu Tao 已提交
53 54
    virThreadPoolPtr workerPool;

55 56
    int privileged;

57 58
    uid_t user;
    gid_t group;
59
    int dynamicOwnership;
60

61
    unsigned int qemuVersion;
62
    int nextvmid;
63

64
    virCgroupPtr cgroup;
65 66 67
    int cgroupControllers;
    char **cgroupDeviceACL;

68
    virDomainObjList domains;
69

70 71
    /* These four directories are ones libvirtd uses (so must be root:root
     * to avoid security risk from QEMU processes */
72 73
    char *configDir;
    char *autostartDir;
74
    char *logDir;
75
    char *stateDir;
76 77 78 79
    /* These two directories are ones QEMU processes use (so must match
     * the QEMU user/group */
    char *libDir;
    char *cacheDir;
80
    char *saveDir;
C
Chris Lalancette 已提交
81
    char *snapshotDir;
E
Eric Blake 已提交
82
    char *qemuImgBinary;
83
    unsigned int vncAutoUnixSocket : 1;
84 85
    unsigned int vncTLS : 1;
    unsigned int vncTLSx509verify : 1;
86
    unsigned int vncSASL : 1;
D
Daniel P. Berrange 已提交
87
    char *vncTLSx509certdir;
88
    char *vncListen;
89
    char *vncPassword;
90
    char *vncSASLdir;
91 92 93 94
    unsigned int spiceTLS : 1;
    char *spiceTLSx509certdir;
    char *spiceListen;
    char *spicePassword;
95 96
    char *hugetlbfs_mount;
    char *hugepage_path;
97

98 99 100
    unsigned int macFilter : 1;
    ebtablesContext *ebtables;

101
    unsigned int relaxedACS : 1;
102
    unsigned int vncAllowHostAudio : 1;
103
    unsigned int clearEmulatorCapabilities : 1;
104
    unsigned int allowDiskFormatProbing : 1;
105
    unsigned int setProcessName : 1;
106

107 108
    int maxProcesses;

109 110
    int max_queued;

111
    virCapsPtr caps;
112

113
    virDomainEventStatePtr domainEventState;
114 115

    char *securityDriverName;
116
    virSecurityManagerPtr securityManager;
117 118

    char *saveImageFormat;
119
    char *dumpImageFormat;
120

H
Hu Tao 已提交
121
    char *autoDumpPath;
122 123 124
    bool autoDumpBypassCache;

    bool autoStartBypassCache;
H
Hu Tao 已提交
125

126
    pciDeviceList *activePciHostdevs;
127 128

    virBitmapPtr reservedVNCPorts;
129 130

    virSysinfoDefPtr hostsysinfo;
131 132

    virLockManagerPluginPtr lockManager;
133 134 135 136 137

    /* Mapping of 'char *uuidstr' -> virConnectPtr
     * of guests which will be automatically killed
     * when the virConnectPtr is closed*/
    virHashTablePtr autodestroy;
138 139 140

    int keepAliveInterval;
    unsigned int keepAliveCount;
141 142
};

143 144 145 146 147 148 149 150 151 152 153
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;
};

D
Daniel Veillard 已提交
154
/* Port numbers used for KVM migration. */
155 156
# define QEMUD_MIGRATION_FIRST_PORT 49152
# define QEMUD_MIGRATION_NUM_PORTS 64
157

158
# define qemuReportError(code, ...)                                      \
159
    virReportErrorHelper(VIR_FROM_QEMU, code, __FILE__,                  \
160
                         __FUNCTION__, __LINE__, __VA_ARGS__)
161 162


163 164
void qemuDriverLock(struct qemud_driver *driver);
void qemuDriverUnlock(struct qemud_driver *driver);
D
Daniel P. Berrange 已提交
165 166
int qemudLoadDriverConfig(struct qemud_driver *driver,
                          const char *filename);
167

168 169 170 171 172 173
struct qemuDomainDiskInfo {
    bool removable;
    bool locked;
    bool tray_open;
};

174
#endif /* __QEMUD_CONF_H */