qemu_conf.h 5.9 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 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 "internal.h"
30
#include "bridge.h"
31
#include "capabilities.h"
32
#include "network_conf.h"
33
#include "domain_conf.h"
34
#include "domain_event.h"
35
#include "threads.h"
36
#include "security.h"
37 38

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

40
#define QEMUD_CPUMASK_LEN CPU_SETSIZE
41

42 43
/* Internal flags to keep track of qemu command line capabilities */
enum qemud_cmd_flags {
44 45 46 47 48 49 50 51 52 53 54 55 56
    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 */
57
    QEMUD_CMD_FLAG_DRIVE_CACHE_V2    = (1 << 12), /* Is the cache= flag wanting new v2 values */
58
    QEMUD_CMD_FLAG_KVM               = (1 << 13), /* Whether KVM is compiled in */
59
    QEMUD_CMD_FLAG_DRIVE_FORMAT      = (1 << 14), /* Is -drive format= avail */
60
    QEMUD_CMD_FLAG_VGA               = (1 << 15), /* Is -vga avail */
61 62 63 64
};

/* Main driver state */
struct qemud_driver {
65
    virMutex lock;
66

67 68
    int privileged;

69 70 71
    uid_t user;
    gid_t group;

72
    unsigned int qemuVersion;
73
    int nextvmid;
74

75
    virDomainObjList domains;
76

77 78 79
    brControl *brctl;
    char *configDir;
    char *autostartDir;
80
    char *logDir;
81
    char *stateDir;
82 83
    unsigned int vncTLS : 1;
    unsigned int vncTLSx509verify : 1;
84
    unsigned int vncSASL : 1;
D
Daniel P. Berrange 已提交
85
    char *vncTLSx509certdir;
86
    char *vncListen;
87
    char *vncPassword;
88
    char *vncSASLdir;
89 90

    virCapsPtr caps;
91 92 93

    /* An array of callbacks */
    virDomainEventCallbackListPtr domainEventCallbacks;
94 95 96
    virDomainEventQueuePtr domainEventQueue;
    int domainEventTimer;
    int domainEventDispatching;
97 98 99

    char *securityDriverName;
    virSecurityDriverPtr securityDriver;
100 101
};

102

D
Daniel Veillard 已提交
103 104 105
/* Port numbers used for KVM migration. */
#define QEMUD_MIGRATION_FIRST_PORT 49152
#define QEMUD_MIGRATION_NUM_PORTS 64
106

107 108 109
/* Config type for XML import/export conversions */
#define QEMU_CONFIG_FORMAT_ARGV "qemu-argv"

110
#define qemudReportError(conn, dom, net, code, fmt...)                       \
111
        virReportErrorHelper(conn, VIR_FROM_QEMU, code, __FILE__,          \
112
                               __FUNCTION__, __LINE__, fmt)
113 114


D
Daniel P. Berrange 已提交
115 116
int qemudLoadDriverConfig(struct qemud_driver *driver,
                          const char *filename);
117

118 119
virCapsPtr  qemudCapsInit               (void);

120 121
int         qemudExtractVersion         (virConnectPtr conn,
                                         struct qemud_driver *driver);
122
int         qemudExtractVersionInfo     (const char *qemu,
123 124
                                         unsigned int *version,
                                         unsigned int *flags);
D
Daniel P. Berrange 已提交
125

126 127 128 129 130 131
int         qemudParseHelpStr           (const char *str,
                                         unsigned int *flags,
                                         unsigned int *version,
                                         unsigned int *is_kvm,
                                         unsigned int *kvm_version);

132
int         qemudBuildCommandLine       (virConnectPtr conn,
133
                                         struct qemud_driver *driver,
134
                                         virDomainDefPtr def,
135
                                         virDomainChrDefPtr monitor_chr,
136
                                         unsigned int qemuCmdFlags,
137 138
                                         const char ***retargv,
                                         const char ***retenv,
139 140 141
                                         int **tapfds,
                                         int *ntapfds,
                                         const char *migrateFrom);
142

143
virDomainDefPtr qemuParseCommandLine(virConnectPtr conn,
144
                                     virCapsPtr caps,
145 146 147
                                     const char **progenv,
                                     const char **progargv);
virDomainDefPtr qemuParseCommandLineString(virConnectPtr conn,
148
                                           virCapsPtr caps,
149 150
                                           const char *args);

151
#endif /* __QEMUD_CONF_H */