qemu_conf.h 9.6 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, 2010 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 25
#ifndef __QEMUD_CONF_H
#define __QEMUD_CONF_H
D
Daniel P. Berrange 已提交
26

27
#include <config.h>
28

29
#include "ebtables.h"
30
#include "internal.h"
31
#include "bridge.h"
32
#include "capabilities.h"
33
#include "network_conf.h"
34
#include "domain_conf.h"
35
#include "domain_event.h"
36
#include "threads.h"
37
#include "security/security_driver.h"
38
#include "cgroup.h"
39
#include "pci.h"
40 41
#include "cpu_conf.h"
#include "driver.h"
42 43

#define qemudDebug(fmt, ...) do {} while(0)
44

45
#define QEMUD_CPUMASK_LEN CPU_SETSIZE
46

47 48
/* Internal flags to keep track of qemu command line capabilities */
enum qemud_cmd_flags {
49 50 51 52 53 54 55 56 57 58 59 60 61
    QEMUD_CMD_FLAG_KQEMU          = (1 << 0), /* Whether KQEMU is compiled in */
    QEMUD_CMD_FLAG_VNC_COLON      = (1 << 1), /* Does the VNC take just port, or address + display */
    QEMUD_CMD_FLAG_NO_REBOOT      = (1 << 2), /* Is the -no-reboot flag available */
    QEMUD_CMD_FLAG_DRIVE          = (1 << 3), /* Is the new -drive arg available */
    QEMUD_CMD_FLAG_DRIVE_BOOT     = (1 << 4), /* Does -drive support boot=on */
    QEMUD_CMD_FLAG_NAME           = (1 << 5), /* Is the -name flag available */
    QEMUD_CMD_FLAG_UUID           = (1 << 6), /* Is the -uuid flag available */
    QEMUD_CMD_FLAG_DOMID          = (1 << 7), /* Xenner only, special -domid flag available */
    QEMUD_CMD_FLAG_VNET_HDR        = (1 << 8),
    QEMUD_CMD_FLAG_MIGRATE_KVM_STDIO = (1 << 9),  /* Original migration code from KVM. Also had tcp, but we can't use that
                                                   * since it had a design bug blocking the entire monitor console */
    QEMUD_CMD_FLAG_MIGRATE_QEMU_TCP  = (1 << 10), /* New migration syntax after merge to QEMU with TCP transport */
    QEMUD_CMD_FLAG_MIGRATE_QEMU_EXEC = (1 << 11), /* New migration syntax after merge to QEMU with EXEC transport */
62
    QEMUD_CMD_FLAG_DRIVE_CACHE_V2    = (1 << 12), /* Is the cache= flag wanting new v2 values */
63
    QEMUD_CMD_FLAG_KVM               = (1 << 13), /* Whether KVM is compiled in */
64
    QEMUD_CMD_FLAG_DRIVE_FORMAT      = (1 << 14), /* Is -drive format= avail */
65
    QEMUD_CMD_FLAG_VGA               = (1 << 15), /* Is -vga avail */
66 67 68 69 70

    /* features added in qemu-0.10.0 */
    QEMUD_CMD_FLAG_0_10         = (1 << 16),
    QEMUD_CMD_FLAG_NET_NAME     = QEMUD_CMD_FLAG_0_10, /* -net ...,name=str */
    QEMUD_CMD_FLAG_HOST_NET_ADD = QEMUD_CMD_FLAG_0_10, /* host_net_add monitor command */
71 72

    QEMUD_CMD_FLAG_PCIDEVICE     = (1 << 17), /* PCI device assignment only supported by qemu-kvm */
73
    QEMUD_CMD_FLAG_MEM_PATH      = (1 << 18), /* mmap'ped guest backing supported */
74
    QEMUD_CMD_FLAG_DRIVE_SERIAL  = (1 << 19), /* -driver serial=  available */
75
    QEMUD_CMD_FLAG_XEN_DOMID     = (1 << 20), /* -xen-domid (new style xen integration) */
76
    QEMUD_CMD_FLAG_MIGRATE_QEMU_UNIX = (1 << 21), /* Does qemu support unix domain sockets for migration? */
77
    QEMUD_CMD_FLAG_CHARDEV       = (1 << 22), /* Is the new -chardev arg available */
78
    QEMUD_CMD_FLAG_ENABLE_KVM    = (1 << 23), /* Is the -enable-kvm flag available to "enable KVM full virtualization support" */
79
    QEMUD_CMD_FLAG_MONITOR_JSON  = (1 << 24), /* JSON mode for monitor */
80
    QEMUD_CMD_FLAG_BALLOON       = (1 << 25), /* -balloon available */
81
    QEMUD_CMD_FLAG_DEVICE        = (1 << 26), /* Is the new -device arg available */
82
    QEMUD_CMD_FLAG_SDL           = (1 << 27), /* Is the new -sdl arg available */
83
    QEMUD_CMD_FLAG_SMP_TOPOLOGY  = (1 << 28), /* Is sockets=s,cores=c,threads=t available for -smp? */
84 85 86 87
};

/* Main driver state */
struct qemud_driver {
88
    virMutex lock;
89

90 91
    int privileged;

92 93 94
    uid_t user;
    gid_t group;

95
    unsigned int qemuVersion;
96
    int nextvmid;
97

98
    virCgroupPtr cgroup;
99 100 101
    int cgroupControllers;
    char **cgroupDeviceACL;

102
    virDomainObjList domains;
103

104
    brControl *brctl;
105 106
    /* These four directories are ones libvirtd uses (so must be root:root
     * to avoid security risk from QEMU processes */
107 108
    char *configDir;
    char *autostartDir;
109
    char *logDir;
110
    char *stateDir;
111 112 113 114
    /* These two directories are ones QEMU processes use (so must match
     * the QEMU user/group */
    char *libDir;
    char *cacheDir;
115 116
    unsigned int vncTLS : 1;
    unsigned int vncTLSx509verify : 1;
117
    unsigned int vncSASL : 1;
D
Daniel P. Berrange 已提交
118
    char *vncTLSx509certdir;
119
    char *vncListen;
120
    char *vncPassword;
121
    char *vncSASLdir;
122 123
    char *hugetlbfs_mount;
    char *hugepage_path;
124

125 126 127
    unsigned int macFilter : 1;
    ebtablesContext *ebtables;

128
    virCapsPtr caps;
129 130 131

    /* An array of callbacks */
    virDomainEventCallbackListPtr domainEventCallbacks;
132 133 134
    virDomainEventQueuePtr domainEventQueue;
    int domainEventTimer;
    int domainEventDispatching;
135 136 137

    char *securityDriverName;
    virSecurityDriverPtr securityDriver;
138 139

    char *saveImageFormat;
140 141

    pciDeviceList *activePciHostdevs;
142 143
};

144

D
Daniel Veillard 已提交
145 146 147
/* Port numbers used for KVM migration. */
#define QEMUD_MIGRATION_FIRST_PORT 49152
#define QEMUD_MIGRATION_NUM_PORTS 64
148

149 150 151
/* Config type for XML import/export conversions */
#define QEMU_CONFIG_FORMAT_ARGV "qemu-argv"

152
#define qemudReportError(conn, dom, net, code, fmt...)                       \
153
        virReportErrorHelper(conn, VIR_FROM_QEMU, code, __FILE__,          \
154
                               __FUNCTION__, __LINE__, fmt)
155 156


D
Daniel P. Berrange 已提交
157 158
int qemudLoadDriverConfig(struct qemud_driver *driver,
                          const char *filename);
159

160
virCapsPtr  qemudCapsInit               (virCapsPtr old_caps);
161

162 163
int         qemudExtractVersion         (virConnectPtr conn,
                                         struct qemud_driver *driver);
164
int         qemudExtractVersionInfo     (const char *qemu,
165 166
                                         unsigned int *version,
                                         unsigned int *flags);
D
Daniel P. Berrange 已提交
167

168 169 170 171 172 173
int         qemudParseHelpStr           (const char *str,
                                         unsigned int *flags,
                                         unsigned int *version,
                                         unsigned int *is_kvm,
                                         unsigned int *kvm_version);

174
int         qemudBuildCommandLine       (virConnectPtr conn,
175
                                         struct qemud_driver *driver,
176
                                         virDomainDefPtr def,
177
                                         virDomainChrDefPtr monitor_chr,
D
Daniel P. Berrange 已提交
178
                                         int monitor_json,
179
                                         unsigned int qemuCmdFlags,
180 181
                                         const char ***retargv,
                                         const char ***retenv,
182 183 184
                                         int **tapfds,
                                         int *ntapfds,
                                         const char *migrateFrom);
185

M
Mark McLoughlin 已提交
186 187 188 189
int         qemuBuildHostNetStr         (virConnectPtr conn,
                                         virDomainNetDefPtr net,
                                         char type_sep,
                                         int vlan,
190
                                         const char *tapfd,
M
Mark McLoughlin 已提交
191 192 193 194 195 196 197 198
                                         char **str);

int         qemuBuildNicStr             (virConnectPtr conn,
                                         virDomainNetDefPtr net,
                                         const char *prefix,
                                         int vlan,
                                         char **str);

199 200 201 202 203

char *      qemuBuildDriveStr           (virDomainDiskDefPtr disk,
                                         int bootable,
                                         int qemuCmdFlags);

204 205 206 207 208
int         qemudNetworkIfaceConnect    (virConnectPtr conn,
                                         struct qemud_driver *driver,
                                         virDomainNetDefPtr net,
                                         int qemuCmdFlags);

M
Mark McLoughlin 已提交
209 210 211
int         qemuAssignNetNames          (virDomainDefPtr def,
                                         virDomainNetDefPtr net);

212 213 214 215
int         qemudProbeMachineTypes      (const char *binary,
                                         virCapsGuestMachinePtr **machines,
                                         int *nmachines);

216 217 218 219 220
int         qemudProbeCPUModels         (const char *qemu,
                                         const char *arch,
                                         unsigned int *count,
                                         const char ***cpus);

221 222 223
int         qemudCanonicalizeMachine    (struct qemud_driver *driver,
                                         virDomainDefPtr def);

224
virDomainDefPtr qemuParseCommandLine(virConnectPtr conn,
225
                                     virCapsPtr caps,
226 227 228
                                     const char **progenv,
                                     const char **progargv);
virDomainDefPtr qemuParseCommandLineString(virConnectPtr conn,
229
                                           virCapsPtr caps,
230 231
                                           const char *args);

232
#endif /* __QEMUD_CONF_H */