2007-02-14 01:40:09 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
*/
|
|
|
|
|
2007-02-14 15:41:03 +00:00
|
|
|
#ifndef __QEMUD_CONF_H
|
|
|
|
#define __QEMUD_CONF_H
|
2007-02-14 01:40:09 +00:00
|
|
|
|
2008-01-29 18:15:54 +00:00
|
|
|
#include <config.h>
|
2007-11-26 11:50:16 +00:00
|
|
|
|
2007-06-27 00:12:29 +00:00
|
|
|
#include "internal.h"
|
2008-07-11 19:34:11 +00:00
|
|
|
#include "bridge.h"
|
2008-02-27 04:35:08 +00:00
|
|
|
#include "capabilities.h"
|
2008-07-11 17:33:45 +00:00
|
|
|
#include "network_conf.h"
|
2008-07-11 19:34:11 +00:00
|
|
|
#include "domain_conf.h"
|
2007-06-26 23:48:46 +00:00
|
|
|
|
|
|
|
#define qemudDebug(fmt, ...) do {} while(0)
|
2007-06-26 22:42:47 +00:00
|
|
|
|
2008-05-22 16:27:20 +00:00
|
|
|
#define QEMUD_CPUMASK_LEN CPU_SETSIZE
|
2007-06-26 23:48:46 +00:00
|
|
|
|
2007-06-26 22:13:21 +00:00
|
|
|
/* Internal flags to keep track of qemu command line capabilities */
|
|
|
|
enum qemud_cmd_flags {
|
2008-05-09 16:41:19 +00:00
|
|
|
QEMUD_CMD_FLAG_KQEMU = (1 << 0),
|
|
|
|
QEMUD_CMD_FLAG_VNC_COLON = (1 << 1),
|
|
|
|
QEMUD_CMD_FLAG_NO_REBOOT = (1 << 2),
|
2008-05-15 16:15:17 +00:00
|
|
|
QEMUD_CMD_FLAG_DRIVE = (1 << 3),
|
|
|
|
QEMUD_CMD_FLAG_DRIVE_BOOT = (1 << 4),
|
|
|
|
QEMUD_CMD_FLAG_NAME = (1 << 5),
|
2008-11-04 22:15:30 +00:00
|
|
|
QEMUD_CMD_FLAG_UUID = (1 << 6),
|
|
|
|
QEMUD_CMD_FLAG_DOMID = (1 << 7), /* Xenner only */
|
2007-06-26 22:13:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Main driver state */
|
|
|
|
struct qemud_driver {
|
2008-08-29 07:11:15 +00:00
|
|
|
unsigned int qemuVersion;
|
2007-06-26 22:13:21 +00:00
|
|
|
int nextvmid;
|
2008-07-11 17:33:45 +00:00
|
|
|
|
2008-10-10 14:20:37 +00:00
|
|
|
virDomainObjList domains;
|
2008-07-11 17:33:45 +00:00
|
|
|
|
2007-06-26 22:13:21 +00:00
|
|
|
brControl *brctl;
|
|
|
|
char *configDir;
|
|
|
|
char *autostartDir;
|
2008-07-11 19:34:11 +00:00
|
|
|
char *logDir;
|
2007-11-15 10:56:24 +00:00
|
|
|
unsigned int vncTLS : 1;
|
|
|
|
unsigned int vncTLSx509verify : 1;
|
2007-10-12 16:05:44 +00:00
|
|
|
char *vncTLSx509certdir;
|
2008-07-11 19:34:11 +00:00
|
|
|
char *vncListen;
|
2008-02-27 04:35:08 +00:00
|
|
|
|
|
|
|
virCapsPtr caps;
|
2008-10-23 13:18:18 +00:00
|
|
|
|
|
|
|
/* An array of callbacks */
|
|
|
|
virDomainEventCallbackListPtr domainEventCallbacks;
|
2007-06-26 22:13:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-10-09 15:38:31 +00:00
|
|
|
#define qemudReportError(conn, dom, net, code, fmt...) \
|
|
|
|
__virReportErrorHelper(conn, VIR_FROM_QEMU, code, __FILE__, \
|
|
|
|
__FUNCTION__, __LINE__, fmt)
|
2007-06-26 22:13:21 +00:00
|
|
|
|
|
|
|
|
2007-10-12 16:05:44 +00:00
|
|
|
int qemudLoadDriverConfig(struct qemud_driver *driver,
|
|
|
|
const char *filename);
|
2007-06-26 22:13:21 +00:00
|
|
|
|
2008-02-27 04:35:08 +00:00
|
|
|
virCapsPtr qemudCapsInit (void);
|
|
|
|
|
2007-07-12 15:09:01 +00:00
|
|
|
int qemudExtractVersion (virConnectPtr conn,
|
|
|
|
struct qemud_driver *driver);
|
2008-07-11 19:34:11 +00:00
|
|
|
int qemudExtractVersionInfo (const char *qemu,
|
2008-08-29 07:11:15 +00:00
|
|
|
unsigned int *version,
|
|
|
|
unsigned int *flags);
|
2007-10-27 01:18:38 +00:00
|
|
|
|
2008-07-11 19:34:11 +00:00
|
|
|
int qemudBuildCommandLine (virConnectPtr conn,
|
2007-07-12 15:09:01 +00:00
|
|
|
struct qemud_driver *driver,
|
2008-07-11 19:34:11 +00:00
|
|
|
virDomainObjPtr dom,
|
2008-08-29 07:11:15 +00:00
|
|
|
unsigned int qemuCmdFlags,
|
2008-10-10 16:52:20 +00:00
|
|
|
const char ***retargv,
|
|
|
|
const char ***retenv,
|
2008-07-11 19:34:11 +00:00
|
|
|
int **tapfds,
|
|
|
|
int *ntapfds,
|
|
|
|
const char *migrateFrom);
|
2007-02-23 08:48:02 +00:00
|
|
|
|
2008-05-07 16:16:44 +00:00
|
|
|
const char *qemudVirtTypeToString (int type);
|
2007-03-15 17:24:56 +00:00
|
|
|
|
2007-11-26 11:50:16 +00:00
|
|
|
#endif /* __QEMUD_CONF_H */
|