qemu_conf.h 3.1 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * config.h: VM configuration management
 *
 * Copyright (C) 2006, 2007 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, 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 35

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

37
#define QEMUD_CPUMASK_LEN CPU_SETSIZE
38

39 40
/* Internal flags to keep track of qemu command line capabilities */
enum qemud_cmd_flags {
41 42 43
    QEMUD_CMD_FLAG_KQEMU          = (1 << 0),
    QEMUD_CMD_FLAG_VNC_COLON      = (1 << 1),
    QEMUD_CMD_FLAG_NO_REBOOT      = (1 << 2),
44 45 46
    QEMUD_CMD_FLAG_DRIVE          = (1 << 3),
    QEMUD_CMD_FLAG_DRIVE_BOOT     = (1 << 4),
    QEMUD_CMD_FLAG_NAME           = (1 << 5),
47 48 49 50
};

/* Main driver state */
struct qemud_driver {
51
    unsigned int qemuVersion;
52
    int nextvmid;
53

54
    virDomainObjPtr domains;
55

56 57 58
    brControl *brctl;
    char *configDir;
    char *autostartDir;
59
    char *logDir;
60 61
    unsigned int vncTLS : 1;
    unsigned int vncTLSx509verify : 1;
D
Daniel P. Berrange 已提交
62
    char *vncTLSx509certdir;
63
    char *vncListen;
64 65

    virCapsPtr caps;
66 67 68
};


69 70 71
#define qemudReportError(conn, dom, net, code, fmt...)                       \
        __virReportErrorHelper(conn, VIR_FROM_QEMU, code, __FILE__,          \
                               __FUNCTION__, __LINE__, fmt)
72 73


D
Daniel P. Berrange 已提交
74 75
int qemudLoadDriverConfig(struct qemud_driver *driver,
                          const char *filename);
76

77 78
virCapsPtr  qemudCapsInit               (void);

79 80
int         qemudExtractVersion         (virConnectPtr conn,
                                         struct qemud_driver *driver);
81
int         qemudExtractVersionInfo     (const char *qemu,
82 83
                                         unsigned int *version,
                                         unsigned int *flags);
D
Daniel P. Berrange 已提交
84

85
int         qemudBuildCommandLine       (virConnectPtr conn,
86
                                         struct qemud_driver *driver,
87
                                         virDomainObjPtr dom,
88
                                         unsigned int qemuCmdFlags,
89
                                         const char ***argv,
90 91 92
                                         int **tapfds,
                                         int *ntapfds,
                                         const char *migrateFrom);
93

94
const char *qemudVirtTypeToString       (int type);
95

96
#endif /* __QEMUD_CONF_H */