2006-11-16 19:06:13 +00:00
|
|
|
/*
|
|
|
|
* xm_internal.h: helper routines for dealing with inactive domains
|
|
|
|
*
|
2007-01-19 20:23:37 +00:00
|
|
|
* Copyright (C) 2006-2007 Red Hat
|
|
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
2006-11-16 19:06:13 +00:00
|
|
|
*
|
2007-01-19 20:23:37 +00:00
|
|
|
* 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>
|
2006-11-16 19:06:13 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-01-29 18:15:54 +00:00
|
|
|
#include <config.h>
|
2007-12-07 10:08:06 +00:00
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/stat.h>
|
2007-06-15 15:24:20 +00:00
|
|
|
#include <limits.h>
|
2007-07-04 13:16:57 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <xen/dom0_ops.h>
|
|
|
|
|
|
|
|
#include "xm_internal.h"
|
2008-07-25 14:10:49 +00:00
|
|
|
#include "xen_unified.h"
|
2006-11-16 19:06:13 +00:00
|
|
|
#include "xend_internal.h"
|
|
|
|
#include "hash.h"
|
2007-06-26 22:33:22 +00:00
|
|
|
#include "buf.h"
|
2007-08-09 20:19:12 +00:00
|
|
|
#include "uuid.h"
|
2008-02-27 16:14:44 +00:00
|
|
|
#include "util.h"
|
2008-05-29 19:20:22 +00:00
|
|
|
#include "memory.h"
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
/* The true Xen limit varies but so far is always way
|
|
|
|
less than 1024, which is the Linux kernel limit according
|
|
|
|
to sched.h, so we'll match that for now */
|
|
|
|
#define XEN_MAX_PHYSICAL_CPU 1024
|
|
|
|
|
2007-11-28 10:11:18 +00:00
|
|
|
static int xenXMConfigSetString(virConfPtr conf, const char *setting,
|
|
|
|
const char *str);
|
2008-07-25 13:50:08 +00:00
|
|
|
static int xenXMDiskCompare(virDomainDiskDefPtr a,
|
|
|
|
virDomainDiskDefPtr b);
|
2007-11-28 10:11:18 +00:00
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
typedef struct xenXMConfCache *xenXMConfCachePtr;
|
|
|
|
typedef struct xenXMConfCache {
|
|
|
|
time_t refreshedAt;
|
|
|
|
char filename[PATH_MAX];
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefPtr def;
|
2006-11-16 19:06:13 +00:00
|
|
|
} xenXMConfCache;
|
|
|
|
|
|
|
|
static char configDir[PATH_MAX];
|
2007-02-22 19:09:29 +00:00
|
|
|
/* Config file name to config object */
|
2006-11-16 19:06:13 +00:00
|
|
|
static virHashTablePtr configCache = NULL;
|
2007-02-22 19:09:29 +00:00
|
|
|
/* Name to config file name */
|
2006-12-19 21:54:20 +00:00
|
|
|
static virHashTablePtr nameConfigMap = NULL;
|
2006-11-16 19:06:13 +00:00
|
|
|
static int nconnections = 0;
|
|
|
|
static time_t lastRefresh = 0;
|
|
|
|
|
2008-02-06 17:57:10 +00:00
|
|
|
char * xenXMAutoAssignMac(void);
|
2008-02-07 10:14:43 +00:00
|
|
|
static int xenXMDomainAttachDevice(virDomainPtr domain, const char *xml);
|
|
|
|
static int xenXMDomainDetachDevice(virDomainPtr domain, const char *xml);
|
2008-02-06 17:57:10 +00:00
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
#define XM_REFRESH_INTERVAL 10
|
|
|
|
|
|
|
|
#define XM_CONFIG_DIR "/etc/xen"
|
|
|
|
#define XM_EXAMPLE_PREFIX "xmexample"
|
|
|
|
#define XEND_CONFIG_FILE "xend-config.sxp"
|
|
|
|
#define XEND_PCI_CONFIG_PREFIX "xend-pci-"
|
|
|
|
#define QEMU_IF_SCRIPT "qemu-ifup"
|
2008-02-06 17:57:10 +00:00
|
|
|
#define XM_XML_ERROR "Invalid xml"
|
2006-11-16 19:06:13 +00:00
|
|
|
|
Fri Jul 6 16:08:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
* src/proxy_internal.c, src/proxy_internal.h,
src.xen_internal.c, src/xen_internal.h,
src/xen_unified.c, src/xen_unified.h,
src/xend_internal.c, src/xend_internal.h,
src/xm_internal.c, src/xm_internal.h,
src/xs_internal.c, src/xs_internal.h: The interface
between xen_unified.c and its underlying driver now uses
a custom structure (struct xenUnifiedDriver) instead
of reusing virDriver.
* src/xen_unified.c: virDomainLookup* functions in Xen
now throw VIR_ERR_NO_DOMAIN if the domain does not exist.
* src/xs_internal.c: Fix indentation.
2007-07-06 15:11:22 +00:00
|
|
|
struct xenUnifiedDriver xenXMDriver = {
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMOpen, /* open */
|
|
|
|
xenXMClose, /* close */
|
|
|
|
NULL, /* version */
|
2007-06-26 11:42:46 +00:00
|
|
|
NULL, /* hostname */
|
|
|
|
NULL, /* URI */
|
2006-11-16 19:06:13 +00:00
|
|
|
NULL, /* nodeGetInfo */
|
2007-03-15 17:24:56 +00:00
|
|
|
NULL, /* getCapabilities */
|
2006-11-16 19:06:13 +00:00
|
|
|
NULL, /* listDomains */
|
|
|
|
NULL, /* numOfDomains */
|
|
|
|
NULL, /* domainCreateLinux */
|
|
|
|
NULL, /* domainSuspend */
|
|
|
|
NULL, /* domainResume */
|
|
|
|
NULL, /* domainShutdown */
|
|
|
|
NULL, /* domainReboot */
|
|
|
|
NULL, /* domainDestroy */
|
|
|
|
NULL, /* domainGetOSType */
|
|
|
|
xenXMDomainGetMaxMemory, /* domainGetMaxMemory */
|
|
|
|
xenXMDomainSetMaxMemory, /* domainSetMaxMemory */
|
|
|
|
xenXMDomainSetMemory, /* domainMaxMemory */
|
|
|
|
xenXMDomainGetInfo, /* domainGetInfo */
|
|
|
|
NULL, /* domainSave */
|
|
|
|
NULL, /* domainRestore */
|
2006-11-22 17:48:29 +00:00
|
|
|
NULL, /* domainCoreDump */
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMDomainSetVcpus, /* domainSetVcpus */
|
2007-11-28 10:11:18 +00:00
|
|
|
xenXMDomainPinVcpu, /* domainPinVcpu */
|
2006-11-16 19:06:13 +00:00
|
|
|
NULL, /* domainGetVcpus */
|
2007-03-08 08:31:07 +00:00
|
|
|
NULL, /* domainGetMaxVcpus */
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMListDefinedDomains, /* listDefinedDomains */
|
|
|
|
xenXMNumOfDefinedDomains, /* numOfDefinedDomains */
|
|
|
|
xenXMDomainCreate, /* domainCreate */
|
|
|
|
xenXMDomainDefineXML, /* domainDefineXML */
|
|
|
|
xenXMDomainUndefine, /* domainUndefine */
|
2008-02-06 17:57:10 +00:00
|
|
|
xenXMDomainAttachDevice, /* domainAttachDevice */
|
|
|
|
xenXMDomainDetachDevice, /* domainDetachDevice */
|
2007-02-23 08:51:30 +00:00
|
|
|
NULL, /* domainGetAutostart */
|
|
|
|
NULL, /* domainSetAutostart */
|
2007-06-05 12:06:08 +00:00
|
|
|
NULL, /* domainGetSchedulerType */
|
|
|
|
NULL, /* domainGetSchedulerParameters */
|
|
|
|
NULL, /* domainSetSchedulerParameters */
|
2006-11-16 19:06:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2008-07-25 13:50:08 +00:00
|
|
|
xenXMError(virConnectPtr conn, int code, const char *fmt, ...)
|
2006-11-16 19:06:13 +00:00
|
|
|
{
|
2008-07-25 13:50:08 +00:00
|
|
|
va_list args;
|
|
|
|
char errorMessage[1024];
|
|
|
|
const char *virerr;
|
|
|
|
|
|
|
|
if (fmt) {
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(errorMessage, sizeof(errorMessage)-1, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
} else {
|
|
|
|
errorMessage[0] = '\0';
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
virerr = __virErrorMsg(code, (errorMessage[0] ? errorMessage : NULL));
|
|
|
|
__virRaiseError(conn, NULL, NULL, VIR_FROM_XENXM, code, VIR_ERR_ERROR,
|
|
|
|
virerr, errorMessage, NULL, -1, -1, virerr, errorMessage);
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
2007-04-04 14:19:49 +00:00
|
|
|
int
|
|
|
|
xenXMInit (void)
|
2006-11-16 19:06:13 +00:00
|
|
|
{
|
|
|
|
char *envConfigDir;
|
|
|
|
int safeMode = 0;
|
|
|
|
|
|
|
|
/* Disable use of env variable if running setuid */
|
|
|
|
if ((geteuid() != getuid()) ||
|
|
|
|
(getegid() != getgid()))
|
|
|
|
safeMode = 1;
|
|
|
|
|
|
|
|
if (!safeMode &&
|
|
|
|
(envConfigDir = getenv("LIBVIRT_XM_CONFIG_DIR")) != NULL) {
|
|
|
|
strncpy(configDir, envConfigDir, PATH_MAX-1);
|
|
|
|
configDir[PATH_MAX-1] = '\0';
|
|
|
|
} else {
|
|
|
|
strcpy(configDir, XM_CONFIG_DIR);
|
|
|
|
}
|
2007-04-04 14:19:49 +00:00
|
|
|
|
|
|
|
return 0;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Convenience method to grab a int from the config file object */
|
2008-07-25 13:50:08 +00:00
|
|
|
static int xenXMConfigGetBool(virConnectPtr conn,
|
|
|
|
virConfPtr conf,
|
|
|
|
const char *name,
|
|
|
|
int *value,
|
|
|
|
int def) {
|
2006-11-16 19:06:13 +00:00
|
|
|
virConfValuePtr val;
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
*value = 0;
|
2006-11-16 19:06:13 +00:00
|
|
|
if (!(val = virConfGetValue(conf, name))) {
|
2008-07-25 13:50:08 +00:00
|
|
|
*value = def;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val->type == VIR_CONF_LONG) {
|
|
|
|
*value = val->l ? 1 : 0;
|
|
|
|
} else if (val->type == VIR_CONF_STRING) {
|
|
|
|
if (!val->str) {
|
|
|
|
*value = def;
|
|
|
|
}
|
|
|
|
*value = STREQ(val->str, "1") ? 1 : 0;
|
|
|
|
} else {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("config value %s was malformed"), name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Convenience method to grab a int from the config file object */
|
|
|
|
static int xenXMConfigGetULong(virConnectPtr conn,
|
|
|
|
virConfPtr conf,
|
|
|
|
const char *name,
|
|
|
|
unsigned long *value,
|
|
|
|
int def) {
|
|
|
|
virConfValuePtr val;
|
|
|
|
|
|
|
|
*value = 0;
|
|
|
|
if (!(val = virConfGetValue(conf, name))) {
|
|
|
|
*value = def;
|
|
|
|
return 0;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (val->type == VIR_CONF_LONG) {
|
|
|
|
*value = val->l;
|
|
|
|
} else if (val->type == VIR_CONF_STRING) {
|
|
|
|
char *ret;
|
2008-07-25 13:50:08 +00:00
|
|
|
if (!val->str) {
|
|
|
|
*value = def;
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
*value = strtol(val->str, &ret, 10);
|
2008-07-25 13:50:08 +00:00
|
|
|
if (ret == val->str) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("config value %s was malformed"), name);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
} else {
|
2008-07-25 13:50:08 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("config value %s was malformed"), name);
|
|
|
|
return -1;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
2008-07-25 13:50:08 +00:00
|
|
|
return 0;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Convenience method to grab a string from the config file object */
|
2008-07-25 13:50:08 +00:00
|
|
|
static int xenXMConfigGetString(virConnectPtr conn,
|
|
|
|
virConfPtr conf,
|
|
|
|
const char *name,
|
|
|
|
const char **value,
|
|
|
|
const char *def) {
|
2006-11-16 19:06:13 +00:00
|
|
|
virConfValuePtr val;
|
2008-07-25 13:50:08 +00:00
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
*value = NULL;
|
|
|
|
if (!(val = virConfGetValue(conf, name))) {
|
2008-07-25 13:50:08 +00:00
|
|
|
*value = def;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val->type != VIR_CONF_STRING) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("config value %s was malformed"), name);
|
|
|
|
return -1;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
if (!val->str)
|
2008-07-25 13:50:08 +00:00
|
|
|
*value = def;
|
|
|
|
else
|
|
|
|
*value = val->str;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int xenXMConfigCopyStringInternal(virConnectPtr conn,
|
|
|
|
virConfPtr conf,
|
|
|
|
const char *name,
|
|
|
|
char **value,
|
|
|
|
int allowMissing) {
|
|
|
|
virConfValuePtr val;
|
|
|
|
|
|
|
|
*value = NULL;
|
|
|
|
if (!(val = virConfGetValue(conf, name))) {
|
|
|
|
if (allowMissing)
|
|
|
|
return 0;
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("config value %s was missing"), name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val->type != VIR_CONF_STRING) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("config value %s was not a string"), name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!val->str) {
|
|
|
|
if (allowMissing)
|
|
|
|
return 0;
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("config value %s was missing"), name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(*value = strdup(val->str))) {
|
|
|
|
xenXMError(conn, VIR_ERR_NO_MEMORY, NULL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
|
|
|
|
static int xenXMConfigCopyString(virConnectPtr conn,
|
|
|
|
virConfPtr conf,
|
|
|
|
const char *name,
|
|
|
|
char **value) {
|
|
|
|
return xenXMConfigCopyStringInternal(conn, conf, name, value, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int xenXMConfigCopyStringOpt(virConnectPtr conn,
|
|
|
|
virConfPtr conf,
|
|
|
|
const char *name,
|
|
|
|
char **value) {
|
|
|
|
return xenXMConfigCopyStringInternal(conn, conf, name, value, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
/* Convenience method to grab a string UUID from the config file object */
|
|
|
|
static int xenXMConfigGetUUID(virConfPtr conf, const char *name, unsigned char *uuid) {
|
|
|
|
virConfValuePtr val;
|
|
|
|
if (!uuid || !name || !conf)
|
|
|
|
return (-1);
|
|
|
|
if (!(val = virConfGetValue(conf, name))) {
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val->type != VIR_CONF_STRING)
|
|
|
|
return (-1);
|
|
|
|
if (!val->str)
|
|
|
|
return (-1);
|
|
|
|
|
2007-08-09 20:19:12 +00:00
|
|
|
if (virUUIDParse(val->str, uuid) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Release memory associated with a cached config object */
|
|
|
|
static void xenXMConfigFree(void *payload, const char *key ATTRIBUTE_UNUSED) {
|
|
|
|
xenXMConfCachePtr entry = (xenXMConfCachePtr)payload;
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefFree(entry->def);
|
2008-05-29 19:20:22 +00:00
|
|
|
VIR_FREE(entry);
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
/* Remove any configs which were not refreshed recently */
|
|
|
|
static int xenXMConfigReaper(const void *payload, const char *key ATTRIBUTE_UNUSED, const void *data) {
|
|
|
|
time_t now = *(const time_t *)data;
|
|
|
|
xenXMConfCachePtr entry = (xenXMConfCachePtr)payload;
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
/* We're going to purge this config file, so check if it
|
|
|
|
is currently mapped as owner of a named domain. */
|
2006-12-19 21:54:20 +00:00
|
|
|
if (entry->refreshedAt != now) {
|
2008-07-25 13:39:02 +00:00
|
|
|
const char *olddomname = entry->def->name;
|
|
|
|
char *nameowner = (char *)virHashLookup(nameConfigMap, olddomname);
|
|
|
|
if (nameowner && STREQ(nameowner, key)) {
|
|
|
|
virHashRemoveEntry(nameConfigMap, olddomname, NULL);
|
2006-12-19 21:54:20 +00:00
|
|
|
}
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
|
|
|
|
static virDomainDefPtr
|
|
|
|
xenXMConfigReadFile(virConnectPtr conn, const char *filename) {
|
|
|
|
virConfPtr conf;
|
|
|
|
virDomainDefPtr def;
|
|
|
|
|
|
|
|
if (!(conf = virConfReadFile(filename)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
def = xenXMDomainConfigParse(conn, conf);
|
|
|
|
virConfFree(conf);
|
|
|
|
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xenXMConfigSaveFile(virConnectPtr conn, const char *filename, virDomainDefPtr def) {
|
|
|
|
virConfPtr conf;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(conf = xenXMDomainConfigFormat(conn, def)))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ret = virConfWriteFile(filename, conf);
|
|
|
|
virConfFree(conf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
/* This method is called by various methods to scan /etc/xen
|
|
|
|
(or whatever directory was set by LIBVIRT_XM_CONFIG_DIR
|
|
|
|
environment variable) and process any domain configs. It
|
|
|
|
has rate-limited so never rescans more frequently than
|
|
|
|
once every X seconds */
|
2007-07-04 13:16:57 +00:00
|
|
|
static int xenXMConfigCacheRefresh (virConnectPtr conn) {
|
2006-11-16 19:06:13 +00:00
|
|
|
DIR *dh;
|
|
|
|
struct dirent *ent;
|
|
|
|
time_t now = time(NULL);
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (now == ((time_t)-1)) {
|
2007-07-04 13:16:57 +00:00
|
|
|
xenXMError (conn, VIR_ERR_SYSTEM_ERROR, strerror (errno));
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rate limit re-scans */
|
|
|
|
if ((now - lastRefresh) < XM_REFRESH_INTERVAL)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
lastRefresh = now;
|
|
|
|
|
|
|
|
/* Process the files in the config dir */
|
|
|
|
if (!(dh = opendir(configDir))) {
|
2007-07-04 13:16:57 +00:00
|
|
|
xenXMError (conn, VIR_ERR_SYSTEM_ERROR, strerror (errno));
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((ent = readdir(dh))) {
|
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
struct stat st;
|
|
|
|
int newborn = 0;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Skip a bunch of crufty files that clearly aren't config files
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Like 'dot' files... */
|
2008-05-15 14:21:34 +00:00
|
|
|
if (STRPREFIX(ent->d_name, "."))
|
2006-11-16 19:06:13 +00:00
|
|
|
continue;
|
|
|
|
/* ...and the XenD server config file */
|
2008-05-15 14:21:34 +00:00
|
|
|
if (STRPREFIX(ent->d_name, XEND_CONFIG_FILE))
|
2006-11-16 19:06:13 +00:00
|
|
|
continue;
|
|
|
|
/* ...and random PCI config cruft */
|
2008-05-15 14:21:34 +00:00
|
|
|
if (STRPREFIX(ent->d_name, XEND_PCI_CONFIG_PREFIX))
|
2006-11-16 19:06:13 +00:00
|
|
|
continue;
|
|
|
|
/* ...and the example domain configs */
|
2008-05-15 14:21:34 +00:00
|
|
|
if (STRPREFIX(ent->d_name, XM_EXAMPLE_PREFIX))
|
2006-11-16 19:06:13 +00:00
|
|
|
continue;
|
|
|
|
/* ...and the QEMU networking script */
|
2008-05-15 14:21:34 +00:00
|
|
|
if (STRPREFIX(ent->d_name, QEMU_IF_SCRIPT))
|
2006-11-16 19:06:13 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* ...and editor backups */
|
|
|
|
if (ent->d_name[0] == '#')
|
|
|
|
continue;
|
|
|
|
if (ent->d_name[strlen(ent->d_name)-1] == '~')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Build the full file path */
|
|
|
|
if ((strlen(configDir) + 1 + strlen(ent->d_name) + 1) > PATH_MAX)
|
|
|
|
continue;
|
|
|
|
strcpy(path, configDir);
|
|
|
|
strcat(path, "/");
|
|
|
|
strcat(path, ent->d_name);
|
|
|
|
|
|
|
|
/* Skip anything which isn't a file (takes care of scripts/ subdir */
|
|
|
|
if ((stat(path, &st) < 0) ||
|
|
|
|
(!S_ISREG(st.st_mode))) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we already have a matching entry and it is not
|
|
|
|
modified, then carry on to next one*/
|
2006-12-19 21:54:20 +00:00
|
|
|
if ((entry = virHashLookup(configCache, path))) {
|
2008-07-25 13:39:02 +00:00
|
|
|
char *nameowner;
|
2006-12-19 21:54:20 +00:00
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
if (entry->refreshedAt >= st.st_mtime) {
|
|
|
|
entry->refreshedAt = now;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
/* If we currently own the name, then release it and
|
|
|
|
re-acquire it later - just in case it was renamed */
|
2008-07-25 13:39:02 +00:00
|
|
|
nameowner = (char *)virHashLookup(nameConfigMap, entry->def->name);
|
|
|
|
if (nameowner && STREQ(nameowner, path)) {
|
|
|
|
virHashRemoveEntry(nameConfigMap, entry->def->name, NULL);
|
2006-12-19 21:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear existing config entry which needs refresh */
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefFree(entry->def);
|
|
|
|
entry->def = NULL;
|
2006-11-16 19:06:13 +00:00
|
|
|
} else { /* Completely new entry */
|
|
|
|
newborn = 1;
|
2008-05-29 19:20:22 +00:00
|
|
|
if (VIR_ALLOC(entry) < 0) {
|
2007-07-04 13:16:57 +00:00
|
|
|
xenXMError (conn, VIR_ERR_NO_MEMORY, strerror (errno));
|
2006-11-16 19:06:13 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
memcpy(entry->filename, path, PATH_MAX);
|
|
|
|
}
|
|
|
|
entry->refreshedAt = now;
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(entry->def = xenXMConfigReadFile(conn, entry->filename))) {
|
|
|
|
if (!newborn)
|
2006-12-19 21:54:20 +00:00
|
|
|
virHashRemoveEntry(configCache, path, NULL);
|
2008-05-29 19:20:22 +00:00
|
|
|
VIR_FREE(entry);
|
2006-11-16 19:06:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If its a completely new entry, it must be stuck into
|
|
|
|
the cache (refresh'd entries are already registered) */
|
|
|
|
if (newborn) {
|
2006-12-19 21:54:20 +00:00
|
|
|
if (virHashAddEntry(configCache, entry->filename, entry) < 0) {
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefFree(entry->def);
|
2008-05-29 19:20:22 +00:00
|
|
|
VIR_FREE(entry);
|
Mark many more strings for translation.
* Makefile.maint (err_func_re): Add to the list and make it readable.
* po/POTFILES.in: Add src/util.c and src/xm_internal.c, and sort.
* src/storage_backend.c: Fix comment.
* src/util.c (virFileLinkPointsTo): Mark a string.
* qemud/remote.c (remoteDispatchClientRequest): Mark strings.
(remoteDispatchOpen, CHECK_CONN, remoteDispatchGetType): Likewise.
(remoteDispatchDomainGetSchedulerType): Likewise.
(remoteDispatchDomainGetSchedulerParameters): Likewise.
(remoteDispatchDomainSetSchedulerParameters): Likewise.
(remoteDispatchDomainBlockStats): Likewise.
(remoteDispatchDomainInterfaceStats): Likewise.
(remoteDispatchDomainAttachDevice, remoteDispatchDomainCreate):
(remoteDispatchDomainDestroy, remoteDispatchDomainDetachDevice):
(remoteDispatchDomainDumpXml, remoteDispatchDomainGetAutostart):
(remoteDispatchDomainGetInfo, remoteDispatchDomainGetMaxMemory):
(remoteDispatchDomainGetMaxVcpus, remoteDispatchDomainGetOsType):
(remoteDispatchDomainGetVcpus): Likewise.
(remoteDispatchDomainMigratePerform): Likewise.
(remoteDispatchListDefinedDomains, remoteDispatchDomainPinVcpu):
(remoteDispatchDomainReboot, remoteDispatchDomainResume):
(remoteDispatchDomainSave, remoteDispatchDomainCoreDump):
(remoteDispatchDomainSetAutostart): Likewise.
(remoteDispatchDomainSetMaxMemory, remoteDispatchDomainSetMemory):
(remoteDispatchDomainSetVcpus, remoteDispatchDomainShutdown):
(remoteDispatchDomainSuspend, remoteDispatchDomainUndefine):
(remoteDispatchListDefinedNetworks, remoteDispatchListDomains):
(remoteDispatchListNetworks, remoteDispatchNetworkCreate):
(remoteDispatchNetworkDestroy, remoteDispatchNetworkDumpXml):
(remoteDispatchNetworkGetAutostart, remoteDispatchNetworkGetBridgeName):
(remoteDispatchNetworkSetAutostart, remoteDispatchNetworkUndefine):
(addrToString, remoteDispatchAuthSaslInit, remoteDispatchAuthSaslStart):
(remoteDispatchAuthSaslStep, remoteDispatchListDefinedStoragePools):
(remoteDispatchListStoragePools, remoteDispatchStoragePoolCreate):
(remoteDispatchStoragePoolBuild, remoteDispatchStoragePoolDestroy):
(remoteDispatchStoragePoolDelete, remoteDispatchStoragePoolRefresh):
(remoteDispatchStoragePoolGetInfo, remoteDispatchStoragePoolDumpXml):
(remoteDispatchStoragePoolGetAutostart): Likewise.
(remoteDispatchStoragePoolSetAutostart):
(remoteDispatchStoragePoolListVolumes):
(remoteDispatchStoragePoolNumOfVolumes):
(remoteDispatchStoragePoolUndefine, remoteDispatchStorageVolCreateXml):
(remoteDispatchStorageVolDelete, remoteDispatchStorageVolGetInfo):
(remoteDispatchStorageVolDumpXml, remoteDispatchStorageVolGetPath):
(remoteDispatchStorageVolLookupByName): Likewise.
* src/qemu_driver.c (qemudOpenMonitor, qemudStartVMDaemon):
(dhcpStartDhcpDaemon, qemudStartNetworkDaemon):
(qemudDomainSuspend, qemudDomainResume, qemudDomainShutdown):
(qemudDomainGetOSType, qemudDomainSetMaxMemory):
(qemudDomainSetMemory, qemudDomainGetInfo, qemudDomainSave):
(qemudDomainRestore, qemudDomainDumpXML, qemudDomainStart):
(qemudDomainUndefine, qemudDomainChangeCDROM):
(qemudDomainAttachDevice, qemudDomainGetAutostart):
(qemudDomainSetAutostart, qemudDomainInterfaceStats):
(qemudNetworkLookupByUUID, qemudNetworkLookupByName):
(qemudNetworkUndefine, qemudNetworkStart, qemudNetworkDestroy):
(qemudNetworkDumpXML, qemudNetworkGetAutostart):
(qemudNetworkSetAutostart): Likewise.
* src/virsh.c (cmdVcpupin, cmdAttachDevice, cmdDetachDevice): Likewise.
* src/xm_internal.c (xenXMConfigCacheRefresh, xenXMDomainPinVcpu): Likewise.
2008-03-27 13:43:01 +00:00
|
|
|
xenXMError (conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("xenXMConfigCacheRefresh: virHashAddEntry"));
|
2006-11-16 19:06:13 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
2006-12-19 21:54:20 +00:00
|
|
|
|
|
|
|
/* See if we need to map this config file in as the primary owner
|
|
|
|
* of the domain in question
|
|
|
|
*/
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!virHashLookup(nameConfigMap, entry->def->name)) {
|
|
|
|
if (virHashAddEntry(nameConfigMap, entry->def->name, entry->filename) < 0) {
|
2006-12-19 21:54:20 +00:00
|
|
|
virHashRemoveEntry(configCache, ent->d_name, NULL);
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefFree(entry->def);
|
2008-05-29 19:20:22 +00:00
|
|
|
VIR_FREE(entry);
|
2006-12-19 21:54:20 +00:00
|
|
|
}
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Reap all entries which were not changed, by comparing
|
|
|
|
their refresh timestamp - the timestamp should match
|
|
|
|
'now' if they were refreshed. If timestamp doesn't match
|
|
|
|
then the config is no longer on disk */
|
|
|
|
virHashRemoveSet(configCache, xenXMConfigReaper, xenXMConfigFree, (const void*) &now);
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (dh)
|
|
|
|
closedir(dh);
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open a 'connection' to the config file directory ;-)
|
|
|
|
* We just create a hash table to store config files in.
|
|
|
|
* We only support a single directory, so repeated calls
|
|
|
|
* to open all end up using the same cache of files
|
|
|
|
*/
|
2007-04-04 14:19:49 +00:00
|
|
|
int
|
|
|
|
xenXMOpen (virConnectPtr conn ATTRIBUTE_UNUSED,
|
2007-12-05 18:28:05 +00:00
|
|
|
xmlURIPtr uri ATTRIBUTE_UNUSED,
|
|
|
|
virConnectAuthPtr auth ATTRIBUTE_UNUSED,
|
|
|
|
int flags ATTRIBUTE_UNUSED)
|
2007-04-04 14:19:49 +00:00
|
|
|
{
|
2007-07-04 13:16:57 +00:00
|
|
|
if (configCache == NULL) {
|
2006-11-16 19:06:13 +00:00
|
|
|
configCache = virHashCreate(50);
|
|
|
|
if (!configCache)
|
|
|
|
return (-1);
|
2006-12-19 21:54:20 +00:00
|
|
|
nameConfigMap = virHashCreate(50);
|
|
|
|
if (!nameConfigMap) {
|
|
|
|
virHashFree(configCache, NULL);
|
|
|
|
configCache = NULL;
|
|
|
|
return (-1);
|
|
|
|
}
|
2007-07-04 13:16:57 +00:00
|
|
|
/* Force the cache to be reloaded next time that
|
|
|
|
* xenXMConfigCacheRefresh is called.
|
|
|
|
*/
|
|
|
|
lastRefresh = 0;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
nconnections++;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free the config files in the cache if this is the
|
|
|
|
* last connection
|
|
|
|
*/
|
|
|
|
int xenXMClose(virConnectPtr conn ATTRIBUTE_UNUSED) {
|
2007-07-04 13:16:57 +00:00
|
|
|
nconnections--;
|
|
|
|
if (nconnections <= 0) {
|
2006-12-19 21:54:20 +00:00
|
|
|
virHashFree(nameConfigMap, NULL);
|
|
|
|
nameConfigMap = NULL;
|
2006-11-16 19:06:13 +00:00
|
|
|
virHashFree(configCache, xenXMConfigFree);
|
|
|
|
configCache = NULL;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Since these are all offline domains, we only return info about
|
2007-01-19 20:23:37 +00:00
|
|
|
* VCPUs and memory.
|
2006-11-16 19:06:13 +00:00
|
|
|
*/
|
|
|
|
int xenXMDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info) {
|
2006-12-19 21:54:20 +00:00
|
|
|
const char *filename;
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2007-01-22 16:25:27 +00:00
|
|
|
if (domain->id != -1)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
memset(info, 0, sizeof(virDomainInfo));
|
2008-07-25 13:39:02 +00:00
|
|
|
info->maxMem = entry->def->maxmem;
|
|
|
|
info->memory = entry->def->memory;
|
|
|
|
info->nrVirtCpu = entry->def->vcpus;
|
2006-11-16 19:06:13 +00:00
|
|
|
info->state = VIR_DOMAIN_SHUTOFF;
|
|
|
|
info->cpuTime = 0;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
#define MAX_VFB 1024
|
2006-11-16 19:06:13 +00:00
|
|
|
/*
|
|
|
|
* Turn a config record into a lump of XML describing the
|
|
|
|
* domain, suitable for later feeding for virDomainCreateLinux
|
|
|
|
*/
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefPtr
|
|
|
|
xenXMDomainConfigParse(virConnectPtr conn, virConfPtr conf) {
|
2006-11-16 19:06:13 +00:00
|
|
|
const char *str;
|
|
|
|
int hvm = 0;
|
2008-07-25 13:50:08 +00:00
|
|
|
int val;
|
2006-11-16 19:06:13 +00:00
|
|
|
virConfValuePtr list;
|
2007-04-04 14:19:49 +00:00
|
|
|
xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefPtr def = NULL;
|
2008-07-25 13:50:08 +00:00
|
|
|
virDomainDiskDefPtr disk = NULL;
|
|
|
|
virDomainNetDefPtr net = NULL;
|
|
|
|
virDomainGraphicsDefPtr graphics = NULL;
|
|
|
|
int i;
|
|
|
|
const char *defaultArch, *defaultMachine;
|
|
|
|
|
|
|
|
if (VIR_ALLOC(def) < 0)
|
|
|
|
return NULL;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
def->virtType = VIR_DOMAIN_VIRT_XEN;
|
|
|
|
def->id = -1;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigCopyString(conn, conf, "name", &def->name) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (xenXMConfigGetUUID(conf, "uuid", def->uuid) < 0)
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
|
|
|
|
if ((xenXMConfigGetString(conn, conf, "builder", &str, "linux") == 0) &&
|
2008-05-14 19:51:24 +00:00
|
|
|
STREQ(str, "hvm"))
|
2006-11-16 19:06:13 +00:00
|
|
|
hvm = 1;
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (!(def->os.type = strdup(hvm ? "hvm" : "xen")))
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
defaultArch = virCapabilitiesDefaultGuestArch(priv->caps, def->os.type);
|
|
|
|
if (defaultArch == NULL) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("no supported architecture for os type '%s'"),
|
|
|
|
def->os.type);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (!(def->os.arch = strdup(defaultArch)))
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
defaultMachine = virCapabilitiesDefaultGuestMachine(priv->caps,
|
|
|
|
def->os.type,
|
|
|
|
def->os.arch);
|
|
|
|
if (defaultMachine != NULL) {
|
|
|
|
if (!(def->os.machine = strdup(defaultMachine)))
|
|
|
|
goto no_memory;
|
|
|
|
}
|
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
if (hvm) {
|
2007-01-19 20:23:37 +00:00
|
|
|
const char *boot;
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigCopyString(conn, conf, "kernel", &def->os.loader) < 0)
|
|
|
|
goto cleanup;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetString(conn, conf, "boot", &boot, "c") < 0)
|
|
|
|
goto cleanup;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
for (i = 0 ; i < VIR_DOMAIN_BOOT_LAST && boot[i] ; i++) {
|
2007-01-19 20:23:37 +00:00
|
|
|
switch (*boot) {
|
|
|
|
case 'a':
|
2008-07-25 13:50:08 +00:00
|
|
|
def->os.bootDevs[i] = VIR_DOMAIN_BOOT_FLOPPY;
|
2007-01-19 20:23:37 +00:00
|
|
|
break;
|
|
|
|
case 'd':
|
2008-07-25 13:50:08 +00:00
|
|
|
def->os.bootDevs[i] = VIR_DOMAIN_BOOT_CDROM;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
def->os.bootDevs[i] = VIR_DOMAIN_BOOT_NET;
|
2007-01-19 20:23:37 +00:00
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
default:
|
2008-07-25 13:50:08 +00:00
|
|
|
def->os.bootDevs[i] = VIR_DOMAIN_BOOT_DISK;
|
2007-01-19 20:23:37 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-07-25 13:50:08 +00:00
|
|
|
def->os.nBootDevs++;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
} else {
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "bootloader", &def->os.bootloader) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "bootargs", &def->os.bootloaderArgs) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "kernel", &def->os.kernel) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "ramdisk", &def->os.initrd) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "extra", &def->os.cmdline) < 0)
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetULong(conn, conf, "memory", &def->memory, MIN_XEN_GUEST_SIZE * 2) < 0)
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetULong(conn, conf, "maxmem", &def->maxmem, def->memory) < 0)
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
def->memory *= 1024;
|
|
|
|
def->maxmem *= 1024;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetULong(conn, conf, "vcpus", &def->vcpus, 1) < 0)
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetString(conn, conf, "cpus", &str, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (str) {
|
|
|
|
def->cpumasklen = 4096;
|
|
|
|
if (VIR_ALLOC_N(def->cpumask, def->cpumasklen) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
if (virDomainCpuSetParse(conn, &str, 0,
|
|
|
|
def->cpumask, def->cpumasklen) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (xenXMConfigGetString(conn, conf, "on_poweroff", &str, "destroy") < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if ((def->onPoweroff = virDomainLifecycleTypeFromString(str)) < 0) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unexpected value %s for on_poweroff"), str);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xenXMConfigGetString(conn, conf, "on_reboot", &str, "restart") < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if ((def->onReboot = virDomainLifecycleTypeFromString(str)) < 0) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unexpected value %s for on_reboot"), str);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xenXMConfigGetString(conn, conf, "on_crash", &str, "restart") < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if ((def->onCrash = virDomainLifecycleTypeFromString(str)) < 0) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unexpected value %s for on_crash"), str);
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2006-11-17 02:03:18 +00:00
|
|
|
if (hvm) {
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetBool(conn, conf, "pae", &val, 0) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
else if (val)
|
|
|
|
def->features |= (1 << VIR_DOMAIN_FEATURE_PAE);
|
|
|
|
if (xenXMConfigGetBool(conn, conf, "acpi", &val, 0) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
else if (val)
|
|
|
|
def->features |= (1 << VIR_DOMAIN_FEATURE_ACPI);
|
|
|
|
if (xenXMConfigGetBool(conn, conf, "apic", &val, 0) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
else if (val)
|
|
|
|
def->features |= (1 << VIR_DOMAIN_FEATURE_APIC);
|
|
|
|
|
|
|
|
if (xenXMConfigGetBool(conn, conf, "localtime", &def->localtime, 0) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "device_model", &def->emulator) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
list = virConfGetValue(conf, "disk");
|
|
|
|
if (list && list->type == VIR_CONF_LIST) {
|
|
|
|
list = list->list;
|
|
|
|
while (list) {
|
|
|
|
char *head;
|
|
|
|
char *offset;
|
|
|
|
char *tmp, *tmp1;
|
|
|
|
|
|
|
|
if ((list->type != VIR_CONF_STRING) || (list->str == NULL))
|
|
|
|
goto skipdisk;
|
|
|
|
head = list->str;
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (VIR_ALLOC(disk) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
/*
|
|
|
|
* Disks have 3 components, SOURCE,DEST-DEVICE,MODE
|
|
|
|
* eg, phy:/dev/HostVG/XenGuest1,xvda,w
|
|
|
|
* The SOURCE is usually prefixed with a driver type,
|
|
|
|
* and optionally driver sub-type
|
|
|
|
* The DEST-DEVICE is optionally post-fixed with disk type
|
|
|
|
*/
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
/* Extract the source file path*/
|
2007-06-15 13:44:19 +00:00
|
|
|
if (!(offset = strchr(head, ',')) || offset[0] == '\0')
|
2006-11-16 19:06:13 +00:00
|
|
|
goto skipdisk;
|
2007-01-19 20:23:37 +00:00
|
|
|
if ((offset - head) >= (PATH_MAX-1))
|
|
|
|
goto skipdisk;
|
2008-07-25 13:50:08 +00:00
|
|
|
if (VIR_ALLOC_N(disk->src, (offset - head) + 1) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
strncpy(disk->src, head, (offset - head));
|
|
|
|
disk->src[(offset-head)] = '\0';
|
2007-01-19 20:23:37 +00:00
|
|
|
head = offset + 1;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
/* Remove legacy ioemu: junk */
|
|
|
|
if (STRPREFIX(head, "ioemu:"))
|
|
|
|
head = head + 6;
|
|
|
|
|
|
|
|
/* Extract the dest device name */
|
2007-06-15 13:44:19 +00:00
|
|
|
if (!(offset = strchr(head, ',')) || offset[0] == '\0')
|
2007-01-19 20:23:37 +00:00
|
|
|
goto skipdisk;
|
2008-07-25 13:50:08 +00:00
|
|
|
if (VIR_ALLOC_N(disk->dst, (offset - head) + 1) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
strncpy(disk->dst, head, (offset - head));
|
|
|
|
disk->dst[(offset-head)] = '\0';
|
2007-01-19 20:23:37 +00:00
|
|
|
head = offset + 1;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
/* Extract source driver type */
|
2008-07-25 13:50:08 +00:00
|
|
|
if (disk->src &&
|
|
|
|
(tmp = strchr(disk->src, ':')) != NULL) {
|
|
|
|
if (VIR_ALLOC_N(disk->driverName, (tmp - disk->src) + 1) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
strncpy(disk->driverName, disk->src, (tmp - disk->src));
|
|
|
|
disk->driverName[tmp - disk->src] = '\0';
|
|
|
|
} else {
|
|
|
|
if (!(disk->driverName = strdup("phy")))
|
|
|
|
goto no_memory;
|
|
|
|
tmp = disk->src;
|
2007-11-01 13:33:58 +00:00
|
|
|
}
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
/* And the source driver sub-type */
|
2008-07-25 13:50:08 +00:00
|
|
|
if (STRPREFIX(disk->driverName, "tap")) {
|
2007-06-15 13:44:19 +00:00
|
|
|
if (!(tmp1 = strchr(tmp+1, ':')) || !tmp1[0])
|
2007-01-19 20:23:37 +00:00
|
|
|
goto skipdisk;
|
2008-07-25 13:50:08 +00:00
|
|
|
if (VIR_ALLOC_N(disk->driverType, (tmp1-(tmp+1))) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
strncpy(disk->driverType, tmp+1, (tmp1-(tmp+1)));
|
|
|
|
memmove(disk->src, disk->src+(tmp1-disk->src)+1, strlen(disk->src)-(tmp1-disk->src));
|
2007-01-19 20:23:37 +00:00
|
|
|
} else {
|
2008-07-25 13:50:08 +00:00
|
|
|
disk->driverType = NULL;
|
|
|
|
if (disk->src[0] && tmp)
|
|
|
|
memmove(disk->src, disk->src+(tmp-disk->src)+1, strlen(disk->src)-(tmp-disk->src));
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
/* phy: type indicates a block device */
|
2008-07-25 13:50:08 +00:00
|
|
|
disk->type = STREQ(disk->driverName, "phy") ?
|
|
|
|
VIR_DOMAIN_DISK_TYPE_BLOCK : VIR_DOMAIN_DISK_TYPE_FILE;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
/* Check for a :cdrom/:disk postfix */
|
2008-07-25 13:50:08 +00:00
|
|
|
disk->device = VIR_DOMAIN_DISK_DEVICE_DISK;
|
|
|
|
if ((tmp = strchr(disk->dst, ':')) != NULL) {
|
2008-05-14 19:51:24 +00:00
|
|
|
if (STREQ(tmp, ":cdrom"))
|
2008-07-25 13:50:08 +00:00
|
|
|
disk->device = VIR_DOMAIN_DISK_DEVICE_CDROM;
|
2007-01-19 20:23:37 +00:00
|
|
|
tmp[0] = '\0';
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (STRPREFIX(disk->dst, "xvd") || !hvm) {
|
|
|
|
disk->bus = VIR_DOMAIN_DISK_BUS_XEN;
|
|
|
|
} else if (STRPREFIX(disk->dst, "sd")) {
|
|
|
|
disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
|
2008-05-08 14:41:56 +00:00
|
|
|
} else {
|
2008-07-25 13:50:08 +00:00
|
|
|
disk->bus = VIR_DOMAIN_DISK_BUS_IDE;
|
2008-05-08 14:41:56 +00:00
|
|
|
}
|
|
|
|
|
2008-05-14 19:51:24 +00:00
|
|
|
if (STREQ(head, "r") ||
|
|
|
|
STREQ(head, "ro"))
|
2008-07-25 13:50:08 +00:00
|
|
|
disk->readonly = 1;
|
2008-05-14 19:51:24 +00:00
|
|
|
else if ((STREQ(head, "w!")) ||
|
|
|
|
(STREQ(head, "!")))
|
2008-07-25 13:50:08 +00:00
|
|
|
disk->shared = 1;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
/* Maintain list in sorted order according to target device name */
|
|
|
|
if (def->disks == NULL) {
|
|
|
|
disk->next = def->disks;
|
|
|
|
def->disks = disk;
|
|
|
|
} else {
|
|
|
|
virDomainDiskDefPtr ptr = def->disks;
|
|
|
|
while (ptr) {
|
|
|
|
if (!ptr->next || xenXMDiskCompare(disk, ptr->next) < 0) {
|
|
|
|
disk->next = ptr->next;
|
|
|
|
ptr->next = disk;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ptr = ptr->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
disk = NULL;
|
|
|
|
|
|
|
|
skipdisk:
|
2007-01-19 20:23:37 +00:00
|
|
|
list = list->next;
|
2008-07-25 13:50:08 +00:00
|
|
|
virDomainDiskDefFree(disk);
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
2007-04-04 14:19:49 +00:00
|
|
|
if (hvm && priv->xendConfigVersion == 1) {
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetString(conn, conf, "cdrom", &str, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (str) {
|
|
|
|
if (VIR_ALLOC(disk) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
disk->type = VIR_DOMAIN_DISK_TYPE_FILE;
|
|
|
|
disk->device = VIR_DOMAIN_DISK_DEVICE_CDROM;
|
|
|
|
if (!(disk->driverName = strdup("file")))
|
|
|
|
goto no_memory;
|
|
|
|
if (!(disk->src = strdup(str)))
|
|
|
|
goto no_memory;
|
|
|
|
if (!(disk->dst = strdup("hdc")))
|
|
|
|
goto no_memory;
|
|
|
|
disk->bus = VIR_DOMAIN_DISK_BUS_IDE;
|
|
|
|
disk->readonly = 1;
|
|
|
|
|
|
|
|
|
|
|
|
/* Maintain list in sorted order according to target device name */
|
|
|
|
if (def->disks == NULL) {
|
|
|
|
disk->next = def->disks;
|
|
|
|
def->disks = disk;
|
|
|
|
} else {
|
|
|
|
virDomainDiskDefPtr ptr = def->disks;
|
|
|
|
while (ptr) {
|
|
|
|
if (!ptr->next || xenXMDiskCompare(disk, ptr->next) < 0) {
|
|
|
|
disk->next = ptr->next;
|
|
|
|
ptr->next = disk;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ptr = ptr->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
disk = NULL;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
list = virConfGetValue(conf, "vif");
|
|
|
|
if (list && list->type == VIR_CONF_LIST) {
|
|
|
|
list = list->list;
|
|
|
|
while (list) {
|
|
|
|
int type = -1;
|
|
|
|
char script[PATH_MAX];
|
2008-04-30 12:30:55 +00:00
|
|
|
char model[10];
|
2007-01-19 20:23:37 +00:00
|
|
|
char ip[16];
|
|
|
|
char mac[18];
|
2007-06-07 18:21:58 +00:00
|
|
|
char bridge[50];
|
2007-01-19 20:23:37 +00:00
|
|
|
char *key;
|
|
|
|
|
2007-06-07 18:21:58 +00:00
|
|
|
bridge[0] = '\0';
|
2007-01-19 20:23:37 +00:00
|
|
|
mac[0] = '\0';
|
|
|
|
script[0] = '\0';
|
|
|
|
ip[0] = '\0';
|
2008-04-30 12:30:55 +00:00
|
|
|
model[0] = '\0';
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
if ((list->type != VIR_CONF_STRING) || (list->str == NULL))
|
|
|
|
goto skipnic;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
key = list->str;
|
|
|
|
while (key) {
|
|
|
|
char *data;
|
2007-06-15 13:44:19 +00:00
|
|
|
char *nextkey = strchr(key, ',');
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2007-06-15 13:44:19 +00:00
|
|
|
if (!(data = strchr(key, '=')) || (data[0] == '\0'))
|
2007-01-19 20:23:37 +00:00
|
|
|
goto skipnic;
|
|
|
|
data++;
|
|
|
|
|
2008-05-14 19:51:24 +00:00
|
|
|
if (STRPREFIX(key, "mac=")) {
|
2007-01-19 20:23:37 +00:00
|
|
|
int len = nextkey ? (nextkey - data) : 17;
|
|
|
|
if (len > 17)
|
|
|
|
len = 17;
|
|
|
|
strncpy(mac, data, len);
|
|
|
|
mac[len] = '\0';
|
2008-05-14 19:51:24 +00:00
|
|
|
} else if (STRPREFIX(key, "bridge=")) {
|
2007-06-07 18:21:58 +00:00
|
|
|
int len = nextkey ? (nextkey - data) : sizeof(bridge)-1;
|
2007-01-19 20:23:37 +00:00
|
|
|
type = 1;
|
2007-06-07 18:21:58 +00:00
|
|
|
if (len > (sizeof(bridge)-1))
|
|
|
|
len = sizeof(bridge)-1;
|
|
|
|
strncpy(bridge, data, len);
|
|
|
|
bridge[len] = '\0';
|
2008-05-14 19:51:24 +00:00
|
|
|
} else if (STRPREFIX(key, "script=")) {
|
2007-01-19 20:23:37 +00:00
|
|
|
int len = nextkey ? (nextkey - data) : PATH_MAX-1;
|
|
|
|
if (len > (PATH_MAX-1))
|
|
|
|
len = PATH_MAX-1;
|
|
|
|
strncpy(script, data, len);
|
|
|
|
script[len] = '\0';
|
2008-05-14 19:51:24 +00:00
|
|
|
} else if (STRPREFIX(key, "model=")) {
|
2008-04-30 12:30:55 +00:00
|
|
|
int len = nextkey ? (nextkey - data) : sizeof(model)-1;
|
|
|
|
if (len > (sizeof(model)-1))
|
|
|
|
len = sizeof(model)-1;
|
|
|
|
strncpy(model, data, len);
|
|
|
|
model[len] = '\0';
|
2008-05-14 19:51:24 +00:00
|
|
|
} else if (STRPREFIX(key, "ip=")) {
|
2007-01-19 20:23:37 +00:00
|
|
|
int len = nextkey ? (nextkey - data) : 15;
|
|
|
|
if (len > 15)
|
|
|
|
len = 15;
|
|
|
|
strncpy(ip, data, len);
|
|
|
|
ip[len] = '\0';
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
while (nextkey && (nextkey[0] == ',' ||
|
|
|
|
nextkey[0] == ' ' ||
|
|
|
|
nextkey[0] == '\t'))
|
|
|
|
nextkey++;
|
|
|
|
key = nextkey;
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
/* XXX Forcing to pretend its a bridge */
|
|
|
|
if (type == -1) {
|
2006-11-16 19:06:13 +00:00
|
|
|
type = 1;
|
|
|
|
}
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (VIR_ALLOC(net) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (mac[0]) {
|
|
|
|
unsigned int rawmac[6];
|
|
|
|
sscanf(mac, "%02x:%02x:%02x:%02x:%02x:%02x",
|
|
|
|
(unsigned int*)&rawmac[0],
|
|
|
|
(unsigned int*)&rawmac[1],
|
|
|
|
(unsigned int*)&rawmac[2],
|
|
|
|
(unsigned int*)&rawmac[3],
|
|
|
|
(unsigned int*)&rawmac[4],
|
|
|
|
(unsigned int*)&rawmac[5]);
|
|
|
|
net->mac[0] = rawmac[0];
|
|
|
|
net->mac[1] = rawmac[1];
|
|
|
|
net->mac[2] = rawmac[2];
|
|
|
|
net->mac[3] = rawmac[3];
|
|
|
|
net->mac[4] = rawmac[4];
|
|
|
|
net->mac[5] = rawmac[5];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bridge[0] || STREQ(script, "vif-bridge"))
|
|
|
|
net->type = VIR_DOMAIN_NET_TYPE_BRIDGE;
|
|
|
|
else
|
|
|
|
net->type = VIR_DOMAIN_NET_TYPE_ETHERNET;
|
|
|
|
|
|
|
|
if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE) {
|
|
|
|
if (bridge[0] &&
|
|
|
|
!(net->data.bridge.brname = strdup(bridge)))
|
|
|
|
goto no_memory;
|
|
|
|
} else {
|
|
|
|
if (script[0] &&
|
|
|
|
!(net->data.ethernet.script = strdup(script)))
|
|
|
|
goto no_memory;
|
|
|
|
if (ip[0] &&
|
|
|
|
!(net->data.ethernet.ipaddr = strdup(ip)))
|
|
|
|
goto no_memory;
|
|
|
|
}
|
|
|
|
if (model[0] &&
|
|
|
|
!(net->model = strdup(model)))
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
if (!def->nets) {
|
|
|
|
net->next = NULL;
|
|
|
|
def->nets = net;
|
|
|
|
} else {
|
|
|
|
virDomainNetDefPtr ptr = def->nets;
|
|
|
|
while (ptr->next)
|
|
|
|
ptr = ptr->next;
|
|
|
|
ptr->next = net;
|
|
|
|
}
|
|
|
|
net = NULL;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
skipnic:
|
|
|
|
list = list->next;
|
2008-07-25 13:50:08 +00:00
|
|
|
virDomainNetDefFree(net);
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-18 21:08:22 +00:00
|
|
|
if (hvm) {
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetString(conn, conf, "usbdevice", &str, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (str &&
|
|
|
|
(STREQ(str, "tablet") ||
|
|
|
|
STREQ(str, "mouse"))) {
|
|
|
|
virDomainInputDefPtr input;
|
|
|
|
if (VIR_ALLOC(input) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
input->bus = VIR_DOMAIN_INPUT_BUS_USB;
|
|
|
|
input->type = STREQ(str, "tablet") ?
|
|
|
|
VIR_DOMAIN_INPUT_TYPE_TABLET :
|
|
|
|
VIR_DOMAIN_INPUT_TYPE_MOUSE;
|
|
|
|
def->inputs = input;
|
2007-07-18 21:08:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
/* HVM guests, or old PV guests use this config format */
|
2007-04-04 14:19:49 +00:00
|
|
|
if (hvm || priv->xendConfigVersion < 3) {
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetBool(conn, conf, "vnc", &val, 0) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
if (VIR_ALLOC(graphics) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
graphics->type = VIR_DOMAIN_GRAPHICS_TYPE_VNC;
|
|
|
|
if (xenXMConfigGetBool(conn, conf, "vncunused", &val, 1) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
graphics->data.vnc.autoport = val ? 1 : 0;
|
|
|
|
|
|
|
|
if (!graphics->data.vnc.autoport) {
|
|
|
|
unsigned long vncdisplay;
|
|
|
|
if (xenXMConfigGetULong(conn, conf, "vncdisplay", &vncdisplay, 0) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
graphics->data.vnc.port = (int)vncdisplay + 5900;
|
|
|
|
}
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "vnclisten", &graphics->data.vnc.listenAddr) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "vncpasswd", &graphics->data.vnc.passwd) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "keymap", &graphics->data.vnc.keymap) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
def->graphics = graphics;
|
|
|
|
graphics = NULL;
|
|
|
|
} else {
|
|
|
|
if (xenXMConfigGetBool(conn, conf, "sdl", &val, 0) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (val) {
|
|
|
|
if (VIR_ALLOC(graphics) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
graphics->type = VIR_DOMAIN_GRAPHICS_TYPE_SDL;
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "display", &graphics->data.sdl.display) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (xenXMConfigCopyStringOpt(conn, conf, "xauthority", &graphics->data.sdl.xauth) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
def->graphics = graphics;
|
|
|
|
graphics = NULL;
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
2007-10-10 17:55:38 +00:00
|
|
|
}
|
2008-07-25 13:50:08 +00:00
|
|
|
|
|
|
|
if (!hvm && def->graphics == NULL) { /* New PV guests use this format */
|
2007-01-19 20:23:37 +00:00
|
|
|
list = virConfGetValue(conf, "vfb");
|
|
|
|
if (list && list->type == VIR_CONF_LIST &&
|
|
|
|
list->list && list->list->type == VIR_CONF_STRING &&
|
|
|
|
list->list->str) {
|
2008-07-25 13:50:08 +00:00
|
|
|
char vfb[MAX_VFB];
|
2007-01-19 20:23:37 +00:00
|
|
|
char *key = vfb;
|
|
|
|
strncpy(vfb, list->list->str, MAX_VFB-1);
|
|
|
|
vfb[MAX_VFB-1] = '\0';
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (VIR_ALLOC(graphics) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
if (strstr(key, "type=sdl"))
|
|
|
|
graphics->type = VIR_DOMAIN_GRAPHICS_TYPE_SDL;
|
|
|
|
else
|
|
|
|
graphics->type = VIR_DOMAIN_GRAPHICS_TYPE_VNC;
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
while (key) {
|
|
|
|
char *data;
|
2007-06-15 13:44:19 +00:00
|
|
|
char *nextkey = strchr(key, ',');
|
2007-01-19 20:23:37 +00:00
|
|
|
char *end = nextkey;
|
|
|
|
if (nextkey) {
|
|
|
|
*end = '\0';
|
|
|
|
nextkey++;
|
|
|
|
}
|
|
|
|
|
2007-06-15 13:44:19 +00:00
|
|
|
if (!(data = strchr(key, '=')) || (data[0] == '\0'))
|
2007-01-19 20:23:37 +00:00
|
|
|
break;
|
|
|
|
data++;
|
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_VNC) {
|
|
|
|
if (STRPREFIX(key, "vncunused=")) {
|
|
|
|
if (STREQ(key + 10, "1"))
|
|
|
|
graphics->data.vnc.autoport = 1;
|
|
|
|
} else if (STRPREFIX(key, "vnclisten=")) {
|
|
|
|
if (!(graphics->data.vnc.listenAddr = strdup(key + 10)))
|
|
|
|
goto no_memory;
|
|
|
|
} else if (STRPREFIX(key, "vncpasswd=")) {
|
|
|
|
if (!(graphics->data.vnc.passwd = strdup(key + 10)))
|
|
|
|
goto no_memory;
|
|
|
|
} else if (STRPREFIX(key, "keymap=")) {
|
|
|
|
if (!(graphics->data.vnc.keymap = strdup(key + 7)))
|
|
|
|
goto no_memory;
|
|
|
|
} else if (STRPREFIX(key, "vncdisplay=")) {
|
|
|
|
graphics->data.vnc.port = strtol(key+11, NULL, 10) + 5900;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (STRPREFIX(key, "display=")) {
|
|
|
|
if (!(graphics->data.sdl.display = strdup(key + 8)))
|
|
|
|
goto no_memory;
|
|
|
|
} else if (STRPREFIX(key, "xauthority=")) {
|
|
|
|
if (!(graphics->data.sdl.xauth = strdup(key + 11)))
|
|
|
|
goto no_memory;
|
|
|
|
}
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
while (nextkey && (nextkey[0] == ',' ||
|
|
|
|
nextkey[0] == ' ' ||
|
|
|
|
nextkey[0] == '\t'))
|
|
|
|
nextkey++;
|
|
|
|
key = nextkey;
|
|
|
|
}
|
2008-07-25 13:50:08 +00:00
|
|
|
def->graphics = graphics;
|
|
|
|
graphics = NULL;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2006-11-17 02:03:18 +00:00
|
|
|
if (hvm) {
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetString(conn, conf, "parallel", &str, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (str && STRNEQ(str, "none") &&
|
|
|
|
!(def->parallels = xenDaemonParseSxprChar(conn, str, NULL)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (xenXMConfigGetString(conn, conf, "serial", &str, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
if (str && STRNEQ(str, "none") &&
|
|
|
|
!(def->serials = xenDaemonParseSxprChar(conn, str, NULL)))
|
|
|
|
goto cleanup;
|
2008-04-26 14:22:02 +00:00
|
|
|
} else {
|
2008-07-25 13:50:08 +00:00
|
|
|
if (!(def->console = xenDaemonParseSxprChar(conn, "pty", NULL)))
|
|
|
|
goto cleanup;
|
2006-11-17 02:03:18 +00:00
|
|
|
}
|
|
|
|
|
2008-05-07 14:04:40 +00:00
|
|
|
if (hvm) {
|
2008-07-25 13:50:08 +00:00
|
|
|
if (xenXMConfigGetString(conn, conf, "soundhw", &str, NULL) < 0)
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
if (str &&
|
|
|
|
xenDaemonParseSxprSound(conn, def, str) < 0)
|
|
|
|
goto cleanup;
|
2008-07-25 13:39:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return def;
|
2008-05-07 14:04:40 +00:00
|
|
|
|
2008-07-25 13:50:08 +00:00
|
|
|
no_memory:
|
|
|
|
xenXMError(conn, VIR_ERR_NO_MEMORY, NULL);
|
|
|
|
/* fallthrough */
|
|
|
|
cleanup:
|
|
|
|
virDomainGraphicsDefFree(graphics);
|
|
|
|
virDomainNetDefFree(net);
|
|
|
|
virDomainDiskDefFree(disk);
|
|
|
|
virDomainDefFree(def);
|
2008-05-07 14:04:40 +00:00
|
|
|
return NULL;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
/*
|
|
|
|
* Turn a config record into a lump of XML describing the
|
|
|
|
* domain, suitable for later feeding for virDomainCreateLinux
|
|
|
|
*/
|
2008-07-25 13:39:02 +00:00
|
|
|
char *xenXMDomainDumpXML(virDomainPtr domain, int flags) {
|
2007-01-19 20:23:37 +00:00
|
|
|
const char *filename;
|
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
|
|
|
|
if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
|
|
|
return(NULL);
|
|
|
|
}
|
2007-01-22 16:25:27 +00:00
|
|
|
if (domain->id != -1)
|
2007-01-19 20:23:37 +00:00
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
|
|
|
return (NULL);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
return virDomainDefFormat(domain->conn, entry->def, flags);
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
/*
|
|
|
|
* Update amount of memory in the config file
|
|
|
|
*/
|
|
|
|
int xenXMDomainSetMemory(virDomainPtr domain, unsigned long memory) {
|
2006-12-19 21:54:20 +00:00
|
|
|
const char *filename;
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
|
|
|
|
if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
2007-01-22 16:25:27 +00:00
|
|
|
if (domain->id != -1)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
entry->def->memory = memory;
|
|
|
|
if (entry->def->memory > entry->def->maxmem)
|
|
|
|
entry->def->memory = entry->def->maxmem;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
/* If this fails, should we try to undo our changes to the
|
|
|
|
* in-memory representation of the config file. I say not!
|
|
|
|
*/
|
2008-07-25 13:39:02 +00:00
|
|
|
if (xenXMConfigSaveFile(domain->conn, entry->filename, entry->def) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update maximum memory limit in config
|
|
|
|
*/
|
|
|
|
int xenXMDomainSetMaxMemory(virDomainPtr domain, unsigned long memory) {
|
2006-12-19 21:54:20 +00:00
|
|
|
const char *filename;
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
|
|
|
|
if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
2007-01-22 16:25:27 +00:00
|
|
|
if (domain->id != -1)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
entry->def->maxmem = memory;
|
|
|
|
if (entry->def->memory > entry->def->maxmem)
|
|
|
|
entry->def->memory = entry->def->maxmem;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
/* If this fails, should we try to undo our changes to the
|
|
|
|
* in-memory representation of the config file. I say not!
|
|
|
|
*/
|
2008-07-25 13:39:02 +00:00
|
|
|
if (xenXMConfigSaveFile(domain->conn, entry->filename, entry->def) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get max memory limit from config
|
|
|
|
*/
|
|
|
|
unsigned long xenXMDomainGetMaxMemory(virDomainPtr domain) {
|
2006-12-19 21:54:20 +00:00
|
|
|
const char *filename;
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
|
|
|
|
if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
2007-01-22 16:25:27 +00:00
|
|
|
if (domain->id != -1)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
return entry->def->maxmem;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the VCPU count in config
|
|
|
|
*/
|
|
|
|
int xenXMDomainSetVcpus(virDomainPtr domain, unsigned int vcpus) {
|
2006-12-19 21:54:20 +00:00
|
|
|
const char *filename;
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
|
|
|
|
if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
2007-01-22 16:25:27 +00:00
|
|
|
if (domain->id != -1)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
entry->def->vcpus = vcpus;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
/* If this fails, should we try to undo our changes to the
|
|
|
|
* in-memory representation of the config file. I say not!
|
|
|
|
*/
|
2008-07-25 13:39:02 +00:00
|
|
|
if (xenXMConfigSaveFile(domain->conn, entry->filename, entry->def) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2007-11-28 10:11:18 +00:00
|
|
|
/**
|
|
|
|
* xenXMDomainPinVcpu:
|
|
|
|
* @domain: pointer to domain object
|
|
|
|
* @vcpu: virtual CPU number (reserved)
|
|
|
|
* @cpumap: pointer to a bit map of real CPUs (in 8-bit bytes)
|
|
|
|
* @maplen: length of cpumap in bytes
|
|
|
|
*
|
|
|
|
* Set the vcpu affinity in config
|
|
|
|
*
|
|
|
|
* Returns 0 for success; -1 (with errno) on error
|
|
|
|
*/
|
|
|
|
int xenXMDomainPinVcpu(virDomainPtr domain,
|
|
|
|
unsigned int vcpu ATTRIBUTE_UNUSED,
|
|
|
|
unsigned char *cpumap, int maplen)
|
|
|
|
{
|
|
|
|
const char *filename;
|
|
|
|
xenXMConfCachePtr entry;
|
2008-04-28 15:14:59 +00:00
|
|
|
virBuffer mapbuf = VIR_BUFFER_INITIALIZER;
|
2007-11-28 10:11:18 +00:00
|
|
|
char *mapstr = NULL;
|
|
|
|
int i, j, n, comma = 0;
|
|
|
|
int ret = -1;
|
2008-07-25 13:39:02 +00:00
|
|
|
char *cpuset = NULL;
|
|
|
|
int maxcpu = XEN_MAX_PHYSICAL_CPU;
|
2007-11-28 10:11:18 +00:00
|
|
|
|
|
|
|
if (domain == NULL || domain->conn == NULL || domain->name == NULL
|
|
|
|
|| cpumap == NULL || maplen < 1 || maplen > (int)sizeof(cpumap_t)) {
|
|
|
|
xenXMError(domain ? domain->conn : NULL, VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO) {
|
Mark many more strings for translation.
* Makefile.maint (err_func_re): Add to the list and make it readable.
* po/POTFILES.in: Add src/util.c and src/xm_internal.c, and sort.
* src/storage_backend.c: Fix comment.
* src/util.c (virFileLinkPointsTo): Mark a string.
* qemud/remote.c (remoteDispatchClientRequest): Mark strings.
(remoteDispatchOpen, CHECK_CONN, remoteDispatchGetType): Likewise.
(remoteDispatchDomainGetSchedulerType): Likewise.
(remoteDispatchDomainGetSchedulerParameters): Likewise.
(remoteDispatchDomainSetSchedulerParameters): Likewise.
(remoteDispatchDomainBlockStats): Likewise.
(remoteDispatchDomainInterfaceStats): Likewise.
(remoteDispatchDomainAttachDevice, remoteDispatchDomainCreate):
(remoteDispatchDomainDestroy, remoteDispatchDomainDetachDevice):
(remoteDispatchDomainDumpXml, remoteDispatchDomainGetAutostart):
(remoteDispatchDomainGetInfo, remoteDispatchDomainGetMaxMemory):
(remoteDispatchDomainGetMaxVcpus, remoteDispatchDomainGetOsType):
(remoteDispatchDomainGetVcpus): Likewise.
(remoteDispatchDomainMigratePerform): Likewise.
(remoteDispatchListDefinedDomains, remoteDispatchDomainPinVcpu):
(remoteDispatchDomainReboot, remoteDispatchDomainResume):
(remoteDispatchDomainSave, remoteDispatchDomainCoreDump):
(remoteDispatchDomainSetAutostart): Likewise.
(remoteDispatchDomainSetMaxMemory, remoteDispatchDomainSetMemory):
(remoteDispatchDomainSetVcpus, remoteDispatchDomainShutdown):
(remoteDispatchDomainSuspend, remoteDispatchDomainUndefine):
(remoteDispatchListDefinedNetworks, remoteDispatchListDomains):
(remoteDispatchListNetworks, remoteDispatchNetworkCreate):
(remoteDispatchNetworkDestroy, remoteDispatchNetworkDumpXml):
(remoteDispatchNetworkGetAutostart, remoteDispatchNetworkGetBridgeName):
(remoteDispatchNetworkSetAutostart, remoteDispatchNetworkUndefine):
(addrToString, remoteDispatchAuthSaslInit, remoteDispatchAuthSaslStart):
(remoteDispatchAuthSaslStep, remoteDispatchListDefinedStoragePools):
(remoteDispatchListStoragePools, remoteDispatchStoragePoolCreate):
(remoteDispatchStoragePoolBuild, remoteDispatchStoragePoolDestroy):
(remoteDispatchStoragePoolDelete, remoteDispatchStoragePoolRefresh):
(remoteDispatchStoragePoolGetInfo, remoteDispatchStoragePoolDumpXml):
(remoteDispatchStoragePoolGetAutostart): Likewise.
(remoteDispatchStoragePoolSetAutostart):
(remoteDispatchStoragePoolListVolumes):
(remoteDispatchStoragePoolNumOfVolumes):
(remoteDispatchStoragePoolUndefine, remoteDispatchStorageVolCreateXml):
(remoteDispatchStorageVolDelete, remoteDispatchStorageVolGetInfo):
(remoteDispatchStorageVolDumpXml, remoteDispatchStorageVolGetPath):
(remoteDispatchStorageVolLookupByName): Likewise.
* src/qemu_driver.c (qemudOpenMonitor, qemudStartVMDaemon):
(dhcpStartDhcpDaemon, qemudStartNetworkDaemon):
(qemudDomainSuspend, qemudDomainResume, qemudDomainShutdown):
(qemudDomainGetOSType, qemudDomainSetMaxMemory):
(qemudDomainSetMemory, qemudDomainGetInfo, qemudDomainSave):
(qemudDomainRestore, qemudDomainDumpXML, qemudDomainStart):
(qemudDomainUndefine, qemudDomainChangeCDROM):
(qemudDomainAttachDevice, qemudDomainGetAutostart):
(qemudDomainSetAutostart, qemudDomainInterfaceStats):
(qemudNetworkLookupByUUID, qemudNetworkLookupByName):
(qemudNetworkUndefine, qemudNetworkStart, qemudNetworkDestroy):
(qemudNetworkDumpXML, qemudNetworkGetAutostart):
(qemudNetworkSetAutostart): Likewise.
* src/virsh.c (cmdVcpupin, cmdAttachDevice, cmdDetachDevice): Likewise.
* src/xm_internal.c (xenXMConfigCacheRefresh, xenXMDomainPinVcpu): Likewise.
2008-03-27 13:43:01 +00:00
|
|
|
xenXMError (domain->conn, VIR_ERR_INVALID_ARG,
|
|
|
|
_("read only connection"));
|
2007-11-28 10:11:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (domain->id != -1) {
|
Mark many more strings for translation.
* Makefile.maint (err_func_re): Add to the list and make it readable.
* po/POTFILES.in: Add src/util.c and src/xm_internal.c, and sort.
* src/storage_backend.c: Fix comment.
* src/util.c (virFileLinkPointsTo): Mark a string.
* qemud/remote.c (remoteDispatchClientRequest): Mark strings.
(remoteDispatchOpen, CHECK_CONN, remoteDispatchGetType): Likewise.
(remoteDispatchDomainGetSchedulerType): Likewise.
(remoteDispatchDomainGetSchedulerParameters): Likewise.
(remoteDispatchDomainSetSchedulerParameters): Likewise.
(remoteDispatchDomainBlockStats): Likewise.
(remoteDispatchDomainInterfaceStats): Likewise.
(remoteDispatchDomainAttachDevice, remoteDispatchDomainCreate):
(remoteDispatchDomainDestroy, remoteDispatchDomainDetachDevice):
(remoteDispatchDomainDumpXml, remoteDispatchDomainGetAutostart):
(remoteDispatchDomainGetInfo, remoteDispatchDomainGetMaxMemory):
(remoteDispatchDomainGetMaxVcpus, remoteDispatchDomainGetOsType):
(remoteDispatchDomainGetVcpus): Likewise.
(remoteDispatchDomainMigratePerform): Likewise.
(remoteDispatchListDefinedDomains, remoteDispatchDomainPinVcpu):
(remoteDispatchDomainReboot, remoteDispatchDomainResume):
(remoteDispatchDomainSave, remoteDispatchDomainCoreDump):
(remoteDispatchDomainSetAutostart): Likewise.
(remoteDispatchDomainSetMaxMemory, remoteDispatchDomainSetMemory):
(remoteDispatchDomainSetVcpus, remoteDispatchDomainShutdown):
(remoteDispatchDomainSuspend, remoteDispatchDomainUndefine):
(remoteDispatchListDefinedNetworks, remoteDispatchListDomains):
(remoteDispatchListNetworks, remoteDispatchNetworkCreate):
(remoteDispatchNetworkDestroy, remoteDispatchNetworkDumpXml):
(remoteDispatchNetworkGetAutostart, remoteDispatchNetworkGetBridgeName):
(remoteDispatchNetworkSetAutostart, remoteDispatchNetworkUndefine):
(addrToString, remoteDispatchAuthSaslInit, remoteDispatchAuthSaslStart):
(remoteDispatchAuthSaslStep, remoteDispatchListDefinedStoragePools):
(remoteDispatchListStoragePools, remoteDispatchStoragePoolCreate):
(remoteDispatchStoragePoolBuild, remoteDispatchStoragePoolDestroy):
(remoteDispatchStoragePoolDelete, remoteDispatchStoragePoolRefresh):
(remoteDispatchStoragePoolGetInfo, remoteDispatchStoragePoolDumpXml):
(remoteDispatchStoragePoolGetAutostart): Likewise.
(remoteDispatchStoragePoolSetAutostart):
(remoteDispatchStoragePoolListVolumes):
(remoteDispatchStoragePoolNumOfVolumes):
(remoteDispatchStoragePoolUndefine, remoteDispatchStorageVolCreateXml):
(remoteDispatchStorageVolDelete, remoteDispatchStorageVolGetInfo):
(remoteDispatchStorageVolDumpXml, remoteDispatchStorageVolGetPath):
(remoteDispatchStorageVolLookupByName): Likewise.
* src/qemu_driver.c (qemudOpenMonitor, qemudStartVMDaemon):
(dhcpStartDhcpDaemon, qemudStartNetworkDaemon):
(qemudDomainSuspend, qemudDomainResume, qemudDomainShutdown):
(qemudDomainGetOSType, qemudDomainSetMaxMemory):
(qemudDomainSetMemory, qemudDomainGetInfo, qemudDomainSave):
(qemudDomainRestore, qemudDomainDumpXML, qemudDomainStart):
(qemudDomainUndefine, qemudDomainChangeCDROM):
(qemudDomainAttachDevice, qemudDomainGetAutostart):
(qemudDomainSetAutostart, qemudDomainInterfaceStats):
(qemudNetworkLookupByUUID, qemudNetworkLookupByName):
(qemudNetworkUndefine, qemudNetworkStart, qemudNetworkDestroy):
(qemudNetworkDumpXML, qemudNetworkGetAutostart):
(qemudNetworkSetAutostart): Likewise.
* src/virsh.c (cmdVcpupin, cmdAttachDevice, cmdDetachDevice): Likewise.
* src/xm_internal.c (xenXMConfigCacheRefresh, xenXMDomainPinVcpu): Likewise.
2008-03-27 13:43:01 +00:00
|
|
|
xenXMError (domain->conn, VIR_ERR_INVALID_ARG,
|
|
|
|
_("not inactive domain"));
|
2007-11-28 10:11:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name))) {
|
Mark many more strings for translation.
* Makefile.maint (err_func_re): Add to the list and make it readable.
* po/POTFILES.in: Add src/util.c and src/xm_internal.c, and sort.
* src/storage_backend.c: Fix comment.
* src/util.c (virFileLinkPointsTo): Mark a string.
* qemud/remote.c (remoteDispatchClientRequest): Mark strings.
(remoteDispatchOpen, CHECK_CONN, remoteDispatchGetType): Likewise.
(remoteDispatchDomainGetSchedulerType): Likewise.
(remoteDispatchDomainGetSchedulerParameters): Likewise.
(remoteDispatchDomainSetSchedulerParameters): Likewise.
(remoteDispatchDomainBlockStats): Likewise.
(remoteDispatchDomainInterfaceStats): Likewise.
(remoteDispatchDomainAttachDevice, remoteDispatchDomainCreate):
(remoteDispatchDomainDestroy, remoteDispatchDomainDetachDevice):
(remoteDispatchDomainDumpXml, remoteDispatchDomainGetAutostart):
(remoteDispatchDomainGetInfo, remoteDispatchDomainGetMaxMemory):
(remoteDispatchDomainGetMaxVcpus, remoteDispatchDomainGetOsType):
(remoteDispatchDomainGetVcpus): Likewise.
(remoteDispatchDomainMigratePerform): Likewise.
(remoteDispatchListDefinedDomains, remoteDispatchDomainPinVcpu):
(remoteDispatchDomainReboot, remoteDispatchDomainResume):
(remoteDispatchDomainSave, remoteDispatchDomainCoreDump):
(remoteDispatchDomainSetAutostart): Likewise.
(remoteDispatchDomainSetMaxMemory, remoteDispatchDomainSetMemory):
(remoteDispatchDomainSetVcpus, remoteDispatchDomainShutdown):
(remoteDispatchDomainSuspend, remoteDispatchDomainUndefine):
(remoteDispatchListDefinedNetworks, remoteDispatchListDomains):
(remoteDispatchListNetworks, remoteDispatchNetworkCreate):
(remoteDispatchNetworkDestroy, remoteDispatchNetworkDumpXml):
(remoteDispatchNetworkGetAutostart, remoteDispatchNetworkGetBridgeName):
(remoteDispatchNetworkSetAutostart, remoteDispatchNetworkUndefine):
(addrToString, remoteDispatchAuthSaslInit, remoteDispatchAuthSaslStart):
(remoteDispatchAuthSaslStep, remoteDispatchListDefinedStoragePools):
(remoteDispatchListStoragePools, remoteDispatchStoragePoolCreate):
(remoteDispatchStoragePoolBuild, remoteDispatchStoragePoolDestroy):
(remoteDispatchStoragePoolDelete, remoteDispatchStoragePoolRefresh):
(remoteDispatchStoragePoolGetInfo, remoteDispatchStoragePoolDumpXml):
(remoteDispatchStoragePoolGetAutostart): Likewise.
(remoteDispatchStoragePoolSetAutostart):
(remoteDispatchStoragePoolListVolumes):
(remoteDispatchStoragePoolNumOfVolumes):
(remoteDispatchStoragePoolUndefine, remoteDispatchStorageVolCreateXml):
(remoteDispatchStorageVolDelete, remoteDispatchStorageVolGetInfo):
(remoteDispatchStorageVolDumpXml, remoteDispatchStorageVolGetPath):
(remoteDispatchStorageVolLookupByName): Likewise.
* src/qemu_driver.c (qemudOpenMonitor, qemudStartVMDaemon):
(dhcpStartDhcpDaemon, qemudStartNetworkDaemon):
(qemudDomainSuspend, qemudDomainResume, qemudDomainShutdown):
(qemudDomainGetOSType, qemudDomainSetMaxMemory):
(qemudDomainSetMemory, qemudDomainGetInfo, qemudDomainSave):
(qemudDomainRestore, qemudDomainDumpXML, qemudDomainStart):
(qemudDomainUndefine, qemudDomainChangeCDROM):
(qemudDomainAttachDevice, qemudDomainGetAutostart):
(qemudDomainSetAutostart, qemudDomainInterfaceStats):
(qemudNetworkLookupByUUID, qemudNetworkLookupByName):
(qemudNetworkUndefine, qemudNetworkStart, qemudNetworkDestroy):
(qemudNetworkDumpXML, qemudNetworkGetAutostart):
(qemudNetworkSetAutostart): Likewise.
* src/virsh.c (cmdVcpupin, cmdAttachDevice, cmdDetachDevice): Likewise.
* src/xm_internal.c (xenXMConfigCacheRefresh, xenXMDomainPinVcpu): Likewise.
2008-03-27 13:43:01 +00:00
|
|
|
xenXMError (domain->conn, VIR_ERR_INTERNAL_ERROR, _("virHashLookup"));
|
2007-11-28 10:11:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!(entry = virHashLookup(configCache, filename))) {
|
|
|
|
xenXMError (domain->conn, VIR_ERR_INTERNAL_ERROR,
|
Mark many more strings for translation.
* Makefile.maint (err_func_re): Add to the list and make it readable.
* po/POTFILES.in: Add src/util.c and src/xm_internal.c, and sort.
* src/storage_backend.c: Fix comment.
* src/util.c (virFileLinkPointsTo): Mark a string.
* qemud/remote.c (remoteDispatchClientRequest): Mark strings.
(remoteDispatchOpen, CHECK_CONN, remoteDispatchGetType): Likewise.
(remoteDispatchDomainGetSchedulerType): Likewise.
(remoteDispatchDomainGetSchedulerParameters): Likewise.
(remoteDispatchDomainSetSchedulerParameters): Likewise.
(remoteDispatchDomainBlockStats): Likewise.
(remoteDispatchDomainInterfaceStats): Likewise.
(remoteDispatchDomainAttachDevice, remoteDispatchDomainCreate):
(remoteDispatchDomainDestroy, remoteDispatchDomainDetachDevice):
(remoteDispatchDomainDumpXml, remoteDispatchDomainGetAutostart):
(remoteDispatchDomainGetInfo, remoteDispatchDomainGetMaxMemory):
(remoteDispatchDomainGetMaxVcpus, remoteDispatchDomainGetOsType):
(remoteDispatchDomainGetVcpus): Likewise.
(remoteDispatchDomainMigratePerform): Likewise.
(remoteDispatchListDefinedDomains, remoteDispatchDomainPinVcpu):
(remoteDispatchDomainReboot, remoteDispatchDomainResume):
(remoteDispatchDomainSave, remoteDispatchDomainCoreDump):
(remoteDispatchDomainSetAutostart): Likewise.
(remoteDispatchDomainSetMaxMemory, remoteDispatchDomainSetMemory):
(remoteDispatchDomainSetVcpus, remoteDispatchDomainShutdown):
(remoteDispatchDomainSuspend, remoteDispatchDomainUndefine):
(remoteDispatchListDefinedNetworks, remoteDispatchListDomains):
(remoteDispatchListNetworks, remoteDispatchNetworkCreate):
(remoteDispatchNetworkDestroy, remoteDispatchNetworkDumpXml):
(remoteDispatchNetworkGetAutostart, remoteDispatchNetworkGetBridgeName):
(remoteDispatchNetworkSetAutostart, remoteDispatchNetworkUndefine):
(addrToString, remoteDispatchAuthSaslInit, remoteDispatchAuthSaslStart):
(remoteDispatchAuthSaslStep, remoteDispatchListDefinedStoragePools):
(remoteDispatchListStoragePools, remoteDispatchStoragePoolCreate):
(remoteDispatchStoragePoolBuild, remoteDispatchStoragePoolDestroy):
(remoteDispatchStoragePoolDelete, remoteDispatchStoragePoolRefresh):
(remoteDispatchStoragePoolGetInfo, remoteDispatchStoragePoolDumpXml):
(remoteDispatchStoragePoolGetAutostart): Likewise.
(remoteDispatchStoragePoolSetAutostart):
(remoteDispatchStoragePoolListVolumes):
(remoteDispatchStoragePoolNumOfVolumes):
(remoteDispatchStoragePoolUndefine, remoteDispatchStorageVolCreateXml):
(remoteDispatchStorageVolDelete, remoteDispatchStorageVolGetInfo):
(remoteDispatchStorageVolDumpXml, remoteDispatchStorageVolGetPath):
(remoteDispatchStorageVolLookupByName): Likewise.
* src/qemu_driver.c (qemudOpenMonitor, qemudStartVMDaemon):
(dhcpStartDhcpDaemon, qemudStartNetworkDaemon):
(qemudDomainSuspend, qemudDomainResume, qemudDomainShutdown):
(qemudDomainGetOSType, qemudDomainSetMaxMemory):
(qemudDomainSetMemory, qemudDomainGetInfo, qemudDomainSave):
(qemudDomainRestore, qemudDomainDumpXML, qemudDomainStart):
(qemudDomainUndefine, qemudDomainChangeCDROM):
(qemudDomainAttachDevice, qemudDomainGetAutostart):
(qemudDomainSetAutostart, qemudDomainInterfaceStats):
(qemudNetworkLookupByUUID, qemudNetworkLookupByName):
(qemudNetworkUndefine, qemudNetworkStart, qemudNetworkDestroy):
(qemudNetworkDumpXML, qemudNetworkGetAutostart):
(qemudNetworkSetAutostart): Likewise.
* src/virsh.c (cmdVcpupin, cmdAttachDevice, cmdDetachDevice): Likewise.
* src/xm_internal.c (xenXMConfigCacheRefresh, xenXMDomainPinVcpu): Likewise.
2008-03-27 13:43:01 +00:00
|
|
|
_("can't retrieve config file for domain"));
|
2007-11-28 10:11:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* from bit map, build character string of mapped CPU numbers */
|
|
|
|
for (i = 0; i < maplen; i++)
|
|
|
|
for (j = 0; j < 8; j++)
|
|
|
|
if ((cpumap[i] & (1 << j))) {
|
|
|
|
n = i*8 + j;
|
|
|
|
|
2008-04-28 15:14:59 +00:00
|
|
|
if (comma)
|
|
|
|
virBufferAddLit (&mapbuf, ",");
|
2007-11-28 10:11:18 +00:00
|
|
|
comma = 1;
|
|
|
|
|
2008-04-28 15:14:59 +00:00
|
|
|
virBufferVSprintf (&mapbuf, "%d", n);
|
2007-11-28 10:11:18 +00:00
|
|
|
}
|
|
|
|
|
2008-04-28 15:14:59 +00:00
|
|
|
if (virBufferError(&mapbuf)) {
|
|
|
|
xenXMError(domain->conn, VIR_ERR_NO_MEMORY, _("allocate buffer"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapstr = virBufferContentAndReset(&mapbuf);
|
2007-11-28 10:11:18 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (VIR_ALLOC_N(cpuset, maxcpu) < 0) {
|
|
|
|
xenXMError(domain->conn, VIR_ERR_NO_MEMORY, _("allocate buffer"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (virDomainCpuSetParse(domain->conn,
|
|
|
|
(const char **)&mapstr, 0,
|
|
|
|
cpuset, maxcpu) < 0)
|
|
|
|
goto cleanup;
|
2007-11-28 10:11:18 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
VIR_FREE(entry->def->cpumask);
|
|
|
|
entry->def->cpumask = cpuset;
|
|
|
|
entry->def->cpumasklen = maxcpu;
|
|
|
|
cpuset = NULL;
|
2007-11-28 10:11:18 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (xenXMConfigSaveFile(domain->conn, entry->filename, entry->def) < 0)
|
2007-11-28 10:11:18 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2008-05-29 19:20:22 +00:00
|
|
|
VIR_FREE(mapstr);
|
2008-07-25 13:39:02 +00:00
|
|
|
VIR_FREE(cpuset);
|
2007-11-28 10:11:18 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
/*
|
|
|
|
* Find an inactive domain based on its name
|
|
|
|
*/
|
|
|
|
virDomainPtr xenXMDomainLookupByName(virConnectPtr conn, const char *domname) {
|
2006-12-19 21:54:20 +00:00
|
|
|
const char *filename;
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
virDomainPtr ret;
|
2008-07-25 13:39:02 +00:00
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
xenXMError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (domname == NULL) {
|
|
|
|
xenXMError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
2007-07-04 13:16:57 +00:00
|
|
|
if (xenXMConfigCacheRefresh (conn) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (NULL);
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domname)))
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, filename))) {
|
2006-11-16 19:06:13 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(ret = virGetDomain(conn, domname, entry->def->uuid))) {
|
2006-11-16 19:06:13 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
/* Ensure its marked inactive, because may be cached
|
|
|
|
handle to a previously active domain */
|
2007-01-22 16:25:27 +00:00
|
|
|
ret->id = -1;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hash table iterator to search for a domain based on UUID
|
|
|
|
*/
|
|
|
|
static int xenXMDomainSearchForUUID(const void *payload, const char *name ATTRIBUTE_UNUSED, const void *data) {
|
|
|
|
const unsigned char *wantuuid = (const unsigned char *)data;
|
|
|
|
const xenXMConfCachePtr entry = (const xenXMConfCachePtr)payload;
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!memcmp(entry->def->uuid, wantuuid, VIR_UUID_BUFLEN))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find an inactive domain based on its UUID
|
|
|
|
*/
|
|
|
|
virDomainPtr xenXMDomainLookupByUUID(virConnectPtr conn,
|
|
|
|
const unsigned char *uuid) {
|
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
virDomainPtr ret;
|
|
|
|
|
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
xenXMError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (uuid == NULL) {
|
|
|
|
xenXMError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
2007-07-04 13:16:57 +00:00
|
|
|
if (xenXMConfigCacheRefresh (conn) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (!(entry = virHashSearch(configCache, xenXMDomainSearchForUUID, (const void *)uuid))) {
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(ret = virGetDomain(conn, entry->def->name, uuid))) {
|
2006-11-16 19:06:13 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
/* Ensure its marked inactive, because may be cached
|
|
|
|
handle to a previously active domain */
|
2007-01-22 16:25:27 +00:00
|
|
|
ret->id = -1;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Start a domain from an existing defined config file
|
|
|
|
*/
|
|
|
|
int xenXMDomainCreate(virDomainPtr domain) {
|
|
|
|
char *sexpr;
|
2006-12-14 01:56:14 +00:00
|
|
|
int ret;
|
2007-04-04 14:19:49 +00:00
|
|
|
xenUnifiedPrivatePtr priv;
|
2008-07-25 13:39:02 +00:00
|
|
|
const char *filename;
|
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
|
|
|
|
priv = (xenUnifiedPrivatePtr) domain->conn->privateData;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-22 16:25:27 +00:00
|
|
|
if (domain->id != -1)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(sexpr = xenDaemonFormatSxpr(domain->conn, entry->def, priv->xendConfigVersion))) {
|
2008-07-25 13:17:27 +00:00
|
|
|
xenXMError(domain->conn, VIR_ERR_XML_ERROR,
|
|
|
|
_("failed to build sexpr"));
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
ret = xenDaemonDomainCreateLinux(domain->conn, sexpr);
|
2008-05-29 19:20:22 +00:00
|
|
|
VIR_FREE(sexpr);
|
2006-11-16 19:06:13 +00:00
|
|
|
if (ret != 0) {
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if ((ret = xenDaemonDomainLookupByName_ids(domain->conn, domain->name,
|
|
|
|
entry->def->uuid)) < 0) {
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2007-01-22 16:25:27 +00:00
|
|
|
domain->id = ret;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-02-22 19:09:29 +00:00
|
|
|
if ((ret = xend_wait_for_devices(domain->conn, domain->name)) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if ((ret = xenDaemonDomainResume(domain)) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (domain->id != -1) {
|
2006-11-16 19:06:13 +00:00
|
|
|
xenDaemonDomainDestroy(domain);
|
2007-01-22 16:25:27 +00:00
|
|
|
domain->id = -1;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
2007-02-22 19:09:29 +00:00
|
|
|
return (-1);
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
static
|
|
|
|
int xenXMConfigSetInt(virConfPtr conf, const char *setting, long l) {
|
|
|
|
virConfValuePtr value = NULL;
|
|
|
|
|
2008-05-29 19:20:22 +00:00
|
|
|
if (VIR_ALLOC(value) < 0)
|
2007-01-19 20:23:37 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
value->type = VIR_CONF_LONG;
|
|
|
|
value->next = NULL;
|
|
|
|
value->l = l;
|
|
|
|
|
|
|
|
return virConfSetValue(conf, setting, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static
|
|
|
|
int xenXMConfigSetString(virConfPtr conf, const char *setting, const char *str) {
|
|
|
|
virConfValuePtr value = NULL;
|
|
|
|
|
2008-05-29 19:20:22 +00:00
|
|
|
if (VIR_ALLOC(value) < 0)
|
2007-01-19 20:23:37 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
value->type = VIR_CONF_STRING;
|
|
|
|
value->next = NULL;
|
|
|
|
if (!(value->str = strdup(str))) {
|
2008-05-29 19:20:22 +00:00
|
|
|
VIR_FREE(value);
|
2007-01-19 20:23:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return virConfSetValue(conf, setting, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
static int xenXMDomainConfigFormatDisk(virConnectPtr conn,
|
|
|
|
virConfValuePtr list,
|
|
|
|
virDomainDiskDefPtr disk,
|
|
|
|
int hvm,
|
|
|
|
int xendConfigVersion)
|
|
|
|
{
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
virConfValuePtr val, tmp;
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
if(disk->src) {
|
|
|
|
if (disk->driverName) {
|
|
|
|
virBufferVSprintf(&buf, "%s:", disk->driverName);
|
|
|
|
if (STREQ(disk->driverName, "tap"))
|
|
|
|
virBufferVSprintf(&buf, "%s:", disk->driverType ? disk->driverType : "aio");
|
|
|
|
} else {
|
|
|
|
virBufferVSprintf(&buf, "%s:",
|
|
|
|
disk->type == VIR_DOMAIN_DISK_TYPE_FILE ?
|
|
|
|
"file" : "phy");
|
|
|
|
}
|
|
|
|
virBufferVSprintf(&buf, "%s", disk->src);
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2008-07-25 14:10:49 +00:00
|
|
|
virBufferAddLit(&buf, ",");
|
|
|
|
if (hvm && xendConfigVersion == 1)
|
|
|
|
virBufferAddLit(&buf, "ioemu:");
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
virBufferVSprintf(&buf, "%s", disk->dst);
|
|
|
|
if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
|
|
|
|
virBufferAddLit(&buf, ":cdrom");
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (disk->readonly)
|
|
|
|
virBufferAddLit(&buf, ",r");
|
|
|
|
else if (disk->shared)
|
|
|
|
virBufferAddLit(&buf, ",!");
|
|
|
|
else
|
|
|
|
virBufferAddLit(&buf, ",w");
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (virBufferError(&buf)) {
|
|
|
|
xenXMError(conn, VIR_ERR_NO_MEMORY, NULL);
|
|
|
|
return -1;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (VIR_ALLOC(val) < 0) {
|
|
|
|
xenXMError(conn, VIR_ERR_NO_MEMORY, NULL);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
val->type = VIR_CONF_STRING;
|
|
|
|
val->str = virBufferContentAndReset(&buf);
|
|
|
|
tmp = list->list;
|
|
|
|
while (tmp && tmp->next)
|
|
|
|
tmp = tmp->next;
|
|
|
|
if (tmp)
|
|
|
|
tmp->next = val;
|
|
|
|
else
|
|
|
|
list->list = val;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
return 0;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
cleanup:
|
|
|
|
str = virBufferContentAndReset(&buf);
|
|
|
|
VIR_FREE(str);
|
|
|
|
return -1;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
static int xenXMDomainConfigFormatNet(virConnectPtr conn,
|
|
|
|
virConfValuePtr list,
|
|
|
|
virDomainNetDefPtr net,
|
|
|
|
int hvm)
|
|
|
|
{
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
virConfValuePtr val, tmp;
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
virBufferVSprintf(&buf, "mac=%02x:%02x:%02x:%02x:%02x:%02x",
|
|
|
|
net->mac[0], net->mac[1],
|
|
|
|
net->mac[2], net->mac[3],
|
|
|
|
net->mac[4], net->mac[5]);
|
|
|
|
|
|
|
|
switch (net->type) {
|
|
|
|
case VIR_DOMAIN_NET_TYPE_BRIDGE:
|
|
|
|
virBufferVSprintf(&buf, ",bridge=%s", net->data.bridge.brname);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_ETHERNET:
|
|
|
|
if (net->data.ethernet.script)
|
|
|
|
virBufferVSprintf(&buf, ",script=%s", net->data.ethernet.script);
|
|
|
|
if (net->data.ethernet.ipaddr)
|
|
|
|
virBufferVSprintf(&buf, ",ip=%s", net->data.ethernet.ipaddr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_NETWORK:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unsupported network type %d"),
|
|
|
|
net->type);
|
2007-01-19 20:23:37 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (hvm)
|
|
|
|
virBufferAddLit(&buf, ",type=ioemu");
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (net->model)
|
|
|
|
virBufferVSprintf(&buf, ",model=%s",
|
|
|
|
net->model);
|
2007-11-01 13:33:58 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (VIR_ALLOC(val) < 0) {
|
|
|
|
xenXMError(conn, VIR_ERR_NO_MEMORY, NULL);
|
|
|
|
goto cleanup;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
val->type = VIR_CONF_STRING;
|
|
|
|
val->str = virBufferContentAndReset(&buf);
|
|
|
|
tmp = list->list;
|
|
|
|
while (tmp && tmp->next)
|
|
|
|
tmp = tmp->next;
|
|
|
|
if (tmp)
|
|
|
|
tmp->next = val;
|
2007-11-01 13:33:58 +00:00
|
|
|
else
|
2008-07-25 14:10:49 +00:00
|
|
|
list->list = val;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
return 0;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
cleanup:
|
|
|
|
str = virBufferContentAndReset(&buf);
|
|
|
|
VIR_FREE(str);
|
|
|
|
return -1;
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
virConfPtr xenXMDomainConfigFormat(virConnectPtr conn,
|
|
|
|
virDomainDefPtr def) {
|
2006-11-16 19:06:13 +00:00
|
|
|
virConfPtr conf = NULL;
|
2007-01-19 20:23:37 +00:00
|
|
|
int hvm = 0, i;
|
2007-04-04 14:19:49 +00:00
|
|
|
xenUnifiedPrivatePtr priv;
|
2008-07-25 14:10:49 +00:00
|
|
|
char *cpus = NULL;
|
|
|
|
const char *lifecycle;
|
|
|
|
char uuid[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virDomainDiskDefPtr disk;
|
|
|
|
virDomainNetDefPtr net;
|
|
|
|
virConfValuePtr diskVal = NULL;
|
|
|
|
virConfValuePtr netVal = NULL;
|
2008-07-25 13:39:02 +00:00
|
|
|
|
|
|
|
priv = (xenUnifiedPrivatePtr) conn->privateData;
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (!(conf = virConfNew()))
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (xenXMConfigSetString(conf, "name", def->name) < 0)
|
|
|
|
goto no_memory;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
virUUIDFormat(def->uuid, uuid);
|
|
|
|
if (xenXMConfigSetString(conf, "uuid", uuid) < 0)
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (xenXMConfigSetInt(conf, "maxmem", def->maxmem / 1024) < 0)
|
|
|
|
goto no_memory;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (xenXMConfigSetInt(conf, "memory", def->memory / 1024) < 0)
|
|
|
|
goto no_memory;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (xenXMConfigSetInt(conf, "vcpus", def->vcpus) < 0)
|
|
|
|
goto no_memory;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (def->cpumask &&
|
|
|
|
!(cpus = virDomainCpuSetFormat(conn, def->cpumask, def->cpumasklen)) < 0)
|
|
|
|
goto cleanup;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (cpus &&
|
|
|
|
xenXMConfigSetString(conf, "cpus", cpus) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
VIR_FREE(cpus);
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
hvm = STREQ(def->os.type, "hvm") ? 1 : 0;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (hvm) {
|
|
|
|
char boot[VIR_DOMAIN_BOOT_LAST+1];
|
|
|
|
if (xenXMConfigSetString(conf, "builder", "hvm") < 0)
|
|
|
|
goto no_memory;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (def->os.loader &&
|
|
|
|
xenXMConfigSetString(conf, "kernel", def->os.loader) < 0)
|
|
|
|
goto no_memory;
|
2007-10-31 09:39:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
for (i = 0 ; i < def->os.nBootDevs ; i++) {
|
|
|
|
switch (def->os.bootDevs[i]) {
|
|
|
|
case VIR_DOMAIN_BOOT_FLOPPY:
|
|
|
|
boot[i] = 'a';
|
|
|
|
break;
|
|
|
|
case VIR_DOMAIN_BOOT_CDROM:
|
|
|
|
boot[i] = 'd';
|
|
|
|
break;
|
|
|
|
case VIR_DOMAIN_BOOT_NET:
|
|
|
|
boot[i] = 'n';
|
|
|
|
break;
|
|
|
|
case VIR_DOMAIN_BOOT_DISK:
|
|
|
|
default:
|
|
|
|
boot[i] = 'c';
|
|
|
|
break;
|
|
|
|
}
|
2008-06-03 08:01:45 +00:00
|
|
|
}
|
2008-07-25 14:10:49 +00:00
|
|
|
if (!def->os.nBootDevs) {
|
|
|
|
boot[0] = 'c';
|
|
|
|
boot[1] = '\0';
|
|
|
|
} else {
|
|
|
|
boot[def->os.nBootDevs] = '\0';
|
2008-04-10 16:54:54 +00:00
|
|
|
}
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
if (xenXMConfigSetString(conf, "boot", boot) < 0)
|
2008-07-25 14:10:49 +00:00
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (xenXMConfigSetInt(conf, "pae",
|
|
|
|
(def->features &
|
|
|
|
(1 << VIR_DOMAIN_FEATURE_PAE)) ? 1 : 0) < 0)
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (xenXMConfigSetInt(conf, "acpi",
|
|
|
|
(def->features &
|
|
|
|
(1 << VIR_DOMAIN_FEATURE_ACPI)) ? 1 : 0) < 0)
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (xenXMConfigSetInt(conf, "apic",
|
|
|
|
(def->features &
|
|
|
|
(1 << VIR_DOMAIN_FEATURE_APIC)) ? 1 : 0) < 0)
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
|
|
|
|
if (xenXMConfigSetInt(conf, "localtime", def->localtime ? 1 : 0) < 0)
|
|
|
|
goto no_memory;
|
2007-07-16 21:30:30 +00:00
|
|
|
|
2007-04-04 14:19:49 +00:00
|
|
|
if (priv->xendConfigVersion == 1) {
|
2008-07-25 14:10:49 +00:00
|
|
|
disk = def->disks;
|
|
|
|
while (disk) {
|
|
|
|
if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM &&
|
|
|
|
disk->dst && STREQ(disk->dst, "hdc") && disk->src) {
|
|
|
|
if (xenXMConfigSetString(conf, "cdrom", disk->src) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
disk = disk->next;
|
|
|
|
}
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2008-07-25 14:10:49 +00:00
|
|
|
|
|
|
|
/* XXX floppy disks */
|
2007-01-19 20:23:37 +00:00
|
|
|
} else {
|
2008-07-25 14:10:49 +00:00
|
|
|
if (def->os.bootloader &&
|
|
|
|
xenXMConfigSetString(conf, "bootloader", def->os.bootloader) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->os.bootloaderArgs &&
|
|
|
|
xenXMConfigSetString(conf, "bootloader_args", def->os.bootloaderArgs) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->os.kernel &&
|
|
|
|
xenXMConfigSetString(conf, "kernel", def->os.kernel) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->os.initrd &&
|
|
|
|
xenXMConfigSetString(conf, "ramdisk", def->os.initrd) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->os.cmdline &&
|
|
|
|
xenXMConfigSetString(conf, "extra", def->os.cmdline) < 0)
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (!(lifecycle = virDomainLifecycleTypeToString(def->onPoweroff))) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unexpected lifecycle action %d"), def->onPoweroff);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (xenXMConfigSetString(conf, "on_poweroff", lifecycle) < 0)
|
|
|
|
goto no_memory;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (!(lifecycle = virDomainLifecycleTypeToString(def->onReboot))) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unexpected lifecycle action %d"), def->onReboot);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (xenXMConfigSetString(conf, "on_reboot", lifecycle) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
|
|
|
|
if (!(lifecycle = virDomainLifecycleTypeToString(def->onCrash))) {
|
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unexpected lifecycle action %d"), def->onCrash);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (xenXMConfigSetString(conf, "on_crash", lifecycle) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
if (hvm) {
|
2008-07-25 14:10:49 +00:00
|
|
|
virDomainInputDefPtr input;
|
|
|
|
if (def->emulator &&
|
|
|
|
xenXMConfigSetString(conf, "device_model", def->emulator) < 0)
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
input = def->inputs;
|
|
|
|
while (input) {
|
|
|
|
if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
|
|
|
|
if (xenXMConfigSetInt(conf, "usb", 1) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (xenXMConfigSetString(conf, "usbdevice",
|
|
|
|
input->type == VIR_DOMAIN_INPUT_TYPE_MOUSE ?
|
|
|
|
"mouse" : "tablet") < 0)
|
|
|
|
goto no_memory;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
input = input->next;
|
|
|
|
}
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (def->graphics) {
|
|
|
|
if (hvm || priv->xendConfigVersion < 3) {
|
|
|
|
if (def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_SDL) {
|
|
|
|
if (xenXMConfigSetInt(conf, "sdl", 1) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (xenXMConfigSetInt(conf, "vnc", 0) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->graphics->data.sdl.display &&
|
|
|
|
xenXMConfigSetString(conf, "display",
|
|
|
|
def->graphics->data.sdl.display) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->graphics->data.sdl.xauth &&
|
|
|
|
xenXMConfigSetString(conf, "xauthority",
|
|
|
|
def->graphics->data.sdl.xauth) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
} else {
|
|
|
|
if (xenXMConfigSetInt(conf, "sdl", 0) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (xenXMConfigSetInt(conf, "vnc", 1) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (xenXMConfigSetInt(conf, "vncunused",
|
|
|
|
def->graphics->data.vnc.autoport ? 1 : 0) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (!def->graphics->data.vnc.autoport &&
|
|
|
|
xenXMConfigSetInt(conf, "vncdisplay",
|
|
|
|
def->graphics->data.vnc.port - 5900) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->graphics->data.vnc.listenAddr &&
|
|
|
|
xenXMConfigSetString(conf, "vnclisten",
|
|
|
|
def->graphics->data.vnc.listenAddr) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->graphics->data.vnc.passwd &&
|
|
|
|
xenXMConfigSetString(conf, "vncpasswd",
|
|
|
|
def->graphics->data.vnc.passwd) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
if (def->graphics->data.vnc.keymap &&
|
|
|
|
xenXMConfigSetString(conf, "keymap",
|
|
|
|
def->graphics->data.vnc.keymap) < 0)
|
|
|
|
goto no_memory;
|
2007-10-10 17:55:38 +00:00
|
|
|
}
|
2008-07-25 14:10:49 +00:00
|
|
|
} else {
|
|
|
|
virConfValuePtr vfb, disp;
|
|
|
|
char *vfbstr = NULL;
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
if (def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_SDL) {
|
|
|
|
virBufferAddLit(&buf, "type=sdl");
|
|
|
|
if (def->graphics->data.sdl.display)
|
|
|
|
virBufferVSprintf(&buf, ",display=%s",
|
|
|
|
def->graphics->data.sdl.display);
|
|
|
|
if (def->graphics->data.sdl.xauth)
|
|
|
|
virBufferVSprintf(&buf, ",xauthority=%s",
|
|
|
|
def->graphics->data.sdl.xauth);
|
|
|
|
} else {
|
|
|
|
virBufferAddLit(&buf, "type=vnc");
|
|
|
|
virBufferVSprintf(&buf, ",vncunused=%d",
|
|
|
|
def->graphics->data.vnc.autoport ? 1 : 0);
|
|
|
|
if (!def->graphics->data.vnc.autoport)
|
|
|
|
virBufferVSprintf(&buf, ",vncdisplay=%d",
|
|
|
|
def->graphics->data.vnc.port - 5900);
|
|
|
|
if (def->graphics->data.vnc.listenAddr)
|
|
|
|
virBufferVSprintf(&buf, ",vnclisten=%s",
|
|
|
|
def->graphics->data.vnc.listenAddr);
|
|
|
|
if (def->graphics->data.vnc.passwd)
|
|
|
|
virBufferVSprintf(&buf, ",vncpasswd=%s",
|
|
|
|
def->graphics->data.vnc.passwd);
|
|
|
|
if (def->graphics->data.vnc.keymap)
|
|
|
|
virBufferVSprintf(&buf, ",keymap=%s",
|
|
|
|
def->graphics->data.vnc.keymap);
|
|
|
|
}
|
|
|
|
if (virBufferError(&buf))
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
vfbstr = virBufferContentAndReset(&buf);
|
|
|
|
|
2008-05-29 19:20:22 +00:00
|
|
|
if (VIR_ALLOC(vfb) < 0) {
|
2008-07-25 14:10:49 +00:00
|
|
|
VIR_FREE(vfbstr);
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (VIR_ALLOC(disp) < 0) {
|
|
|
|
VIR_FREE(vfb);
|
|
|
|
VIR_FREE(vfbstr);
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2008-07-25 14:10:49 +00:00
|
|
|
|
|
|
|
vfb->type = VIR_CONF_LIST;
|
|
|
|
vfb->list = disp;
|
|
|
|
disp->type = VIR_CONF_STRING;
|
|
|
|
disp->str = vfbstr;
|
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
if (virConfSetValue(conf, "vfb", vfb) < 0)
|
2008-07-25 14:10:49 +00:00
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* analyze of the devices */
|
2008-07-25 14:10:49 +00:00
|
|
|
disk = def->disks;
|
|
|
|
if (VIR_ALLOC(diskVal) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
diskVal->type = VIR_CONF_LIST;
|
|
|
|
diskVal->list = NULL;
|
|
|
|
|
|
|
|
while (disk) {
|
|
|
|
if (priv->xendConfigVersion == 1 &&
|
|
|
|
disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM &&
|
|
|
|
disk->dst && STREQ(disk->dst, "hdc")) {
|
|
|
|
disk = disk->next;
|
|
|
|
continue;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2008-07-25 14:10:49 +00:00
|
|
|
if (disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (xenXMDomainConfigFormatDisk(conn, diskVal, disk,
|
|
|
|
hvm, priv->xendConfigVersion) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
disk = disk->next;
|
|
|
|
}
|
|
|
|
if (diskVal->list == NULL)
|
|
|
|
VIR_FREE(diskVal);
|
|
|
|
else if (virConfSetValue(conf, "disk", diskVal) < 0) {
|
|
|
|
diskVal = NULL;
|
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2008-07-25 14:10:49 +00:00
|
|
|
diskVal = NULL;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
2008-04-26 14:22:02 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
net = def->nets;
|
|
|
|
if (VIR_ALLOC(netVal) < 0)
|
|
|
|
goto no_memory;
|
|
|
|
netVal->type = VIR_CONF_LIST;
|
|
|
|
netVal->list = NULL;
|
|
|
|
|
|
|
|
while (net) {
|
|
|
|
if (xenXMDomainConfigFormatNet(conn, netVal, net,
|
|
|
|
hvm) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
net = net->next;
|
|
|
|
}
|
|
|
|
if (netVal->list == NULL)
|
|
|
|
VIR_FREE(netVal);
|
|
|
|
else if (virConfSetValue(conf, "vif", netVal) < 0) {
|
|
|
|
netVal = NULL;
|
|
|
|
goto no_memory;
|
|
|
|
}
|
|
|
|
netVal = NULL;
|
2008-04-26 14:22:02 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (hvm) {
|
|
|
|
if (def->parallels) {
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
char *str;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = xenDaemonFormatSxprChr(conn, def->parallels, &buf);
|
|
|
|
str = virBufferContentAndReset(&buf);
|
|
|
|
if (ret == 0)
|
|
|
|
ret = xenXMConfigSetString(conf, "parallel", str);
|
|
|
|
VIR_FREE(str);
|
|
|
|
if (ret < 0)
|
|
|
|
goto no_memory;
|
2008-04-26 14:22:02 +00:00
|
|
|
} else {
|
|
|
|
if (xenXMConfigSetString(conf, "parallel", "none") < 0)
|
2008-07-25 14:10:49 +00:00
|
|
|
goto no_memory;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2008-04-26 14:22:02 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
if (def->serials) {
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
char *str;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = xenDaemonFormatSxprChr(conn, def->serials, &buf);
|
|
|
|
str = virBufferContentAndReset(&buf);
|
|
|
|
if (ret == 0)
|
|
|
|
ret = xenXMConfigSetString(conf, "serial", str);
|
|
|
|
VIR_FREE(str);
|
|
|
|
if (ret < 0)
|
|
|
|
goto no_memory;
|
2008-04-26 14:22:02 +00:00
|
|
|
} else {
|
2008-07-25 14:10:49 +00:00
|
|
|
if (xenXMConfigSetString(conf, "serial", "none") < 0)
|
|
|
|
goto no_memory;
|
2008-04-26 14:22:02 +00:00
|
|
|
}
|
2008-05-07 14:04:40 +00:00
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
|
|
|
|
if (def->sounds) {
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
char *str = NULL;
|
|
|
|
int ret = xenDaemonFormatSxprSound(conn,
|
|
|
|
def->sounds,
|
|
|
|
&buf);
|
|
|
|
str = virBufferContentAndReset(&buf);
|
|
|
|
if (ret == 0)
|
|
|
|
ret = xenXMConfigSetString(conf, "soundhw", str);
|
|
|
|
|
|
|
|
VIR_FREE(str);
|
|
|
|
if (ret < 0)
|
|
|
|
goto no_memory;
|
2008-05-07 14:04:40 +00:00
|
|
|
}
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return conf;
|
|
|
|
|
2008-07-25 14:10:49 +00:00
|
|
|
no_memory:
|
|
|
|
xenXMError(conn, VIR_ERR_NO_MEMORY, NULL);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virConfFreeValue(diskVal);
|
|
|
|
virConfFreeValue(netVal);
|
|
|
|
VIR_FREE(cpus);
|
2007-01-19 20:23:37 +00:00
|
|
|
if (conf)
|
|
|
|
virConfFree(conf);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a config file for a domain, based on an XML
|
|
|
|
* document describing its config
|
|
|
|
*/
|
|
|
|
virDomainPtr xenXMDomainDefineXML(virConnectPtr conn, const char *xml) {
|
|
|
|
virDomainPtr ret;
|
2007-05-22 00:39:59 +00:00
|
|
|
virDomainPtr olddomain;
|
2007-01-19 20:23:37 +00:00
|
|
|
char filename[PATH_MAX];
|
2007-05-22 00:39:59 +00:00
|
|
|
const char * oldfilename;
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefPtr def = NULL;
|
2007-01-19 20:23:37 +00:00
|
|
|
xenXMConfCachePtr entry = NULL;
|
2008-07-25 13:39:02 +00:00
|
|
|
xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;
|
2007-01-19 20:23:37 +00:00
|
|
|
|
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
xenXMError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (xml == NULL) {
|
|
|
|
xenXMError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (NULL);
|
|
|
|
|
2007-07-04 13:16:57 +00:00
|
|
|
if (xenXMConfigCacheRefresh (conn) < 0)
|
2007-01-19 20:23:37 +00:00
|
|
|
return (NULL);
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(def = virDomainDefParseString(conn, priv->caps, xml)))
|
|
|
|
return (NULL);
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (virHashLookup(nameConfigMap, def->name)) {
|
2007-05-22 00:39:59 +00:00
|
|
|
/* domain exists, we will overwrite it */
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(oldfilename = (char *)virHashLookup(nameConfigMap, def->name))) {
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("can't retrieve config filename for domain to overwrite"));
|
2007-05-22 00:39:59 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, oldfilename))) {
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("can't retrieve config entry for domain to overwrite"));
|
2007-05-22 00:39:59 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
/* XXX wtf.com is this line for - it appears to be amemory leak */
|
|
|
|
if (!(olddomain = virGetDomain(conn, def->name, entry->def->uuid)))
|
2007-05-22 00:39:59 +00:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
/* Remove the name -> filename mapping */
|
2008-07-25 13:39:02 +00:00
|
|
|
if (virHashRemoveEntry(nameConfigMap, def->name, NULL) < 0) {
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("failed to remove old domain from config map"));
|
2007-05-22 00:39:59 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove the config record itself */
|
|
|
|
if (virHashRemoveEntry(configCache, oldfilename, xenXMConfigFree) < 0) {
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("failed to remove old domain from config map"));
|
2007-05-22 00:39:59 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry = NULL;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if ((strlen(configDir) + 1 + strlen(def->name) + 1) > PATH_MAX) {
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("config file name is too long"));
|
2006-11-16 19:06:13 +00:00
|
|
|
goto error;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
strcpy(filename, configDir);
|
|
|
|
strcat(filename, "/");
|
2008-07-25 13:39:02 +00:00
|
|
|
strcat(filename, def->name);
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (xenXMConfigSaveFile(conn, filename, def) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
goto error;
|
|
|
|
|
2008-05-29 19:20:22 +00:00
|
|
|
if (VIR_ALLOC(entry) < 0) {
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_NO_MEMORY, _("config"));
|
2006-11-16 19:06:13 +00:00
|
|
|
goto error;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
if ((entry->refreshedAt = time(NULL)) == ((time_t)-1)) {
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unable to get current time"));
|
2006-11-16 19:06:13 +00:00
|
|
|
goto error;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
memmove(entry->filename, filename, PATH_MAX);
|
2008-07-25 13:39:02 +00:00
|
|
|
entry->def = def;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-19 20:23:37 +00:00
|
|
|
if (virHashAddEntry(configCache, filename, entry) < 0) {
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unable to store config file handle"));
|
2006-12-19 21:54:20 +00:00
|
|
|
goto error;
|
2007-01-19 20:23:37 +00:00
|
|
|
}
|
2006-12-19 21:54:20 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (virHashAddEntry(nameConfigMap, def->name, entry->filename) < 0) {
|
2006-12-19 21:54:20 +00:00
|
|
|
virHashRemoveEntry(configCache, filename, NULL);
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unable to store config file handle"));
|
2006-11-16 19:06:13 +00:00
|
|
|
goto error;
|
2006-12-19 21:54:20 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(ret = virGetDomain(conn, def->name, def->uuid)))
|
|
|
|
return NULL;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
2007-01-22 16:25:27 +00:00
|
|
|
ret->id = -1;
|
2006-11-16 19:06:13 +00:00
|
|
|
|
|
|
|
return (ret);
|
|
|
|
|
|
|
|
error:
|
2008-05-29 19:20:22 +00:00
|
|
|
VIR_FREE(entry);
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDefFree(def);
|
2006-11-16 19:06:13 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Delete a domain from disk
|
|
|
|
*/
|
|
|
|
int xenXMDomainUndefine(virDomainPtr domain) {
|
2006-12-19 21:54:20 +00:00
|
|
|
const char *filename;
|
2006-11-16 19:06:13 +00:00
|
|
|
xenXMConfCachePtr entry;
|
|
|
|
if ((domain == NULL) || (domain->conn == NULL) || (domain->name == NULL)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2007-01-22 16:25:27 +00:00
|
|
|
if (domain->id != -1)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
|
|
|
return (-1);
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (unlink(entry->filename) < 0)
|
|
|
|
return (-1);
|
|
|
|
|
2007-02-22 19:09:29 +00:00
|
|
|
/* Remove the name -> filename mapping */
|
|
|
|
if (virHashRemoveEntry(nameConfigMap, domain->name, NULL) < 0)
|
2006-12-19 21:54:20 +00:00
|
|
|
return(-1);
|
|
|
|
|
2007-02-22 19:09:29 +00:00
|
|
|
/* Remove the config record itself */
|
|
|
|
if (virHashRemoveEntry(configCache, entry->filename, xenXMConfigFree) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct xenXMListIteratorContext {
|
|
|
|
virConnectPtr conn;
|
|
|
|
int max;
|
|
|
|
int count;
|
2007-03-06 21:55:44 +00:00
|
|
|
char ** names;
|
2006-11-16 19:06:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void xenXMListIterator(const void *payload ATTRIBUTE_UNUSED, const char *name, const void *data) {
|
|
|
|
struct xenXMListIteratorContext *ctx = (struct xenXMListIteratorContext *)data;
|
|
|
|
virDomainPtr dom = NULL;
|
|
|
|
|
|
|
|
if (ctx->count == ctx->max)
|
|
|
|
return;
|
|
|
|
|
Fri Jul 6 16:08:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
* src/proxy_internal.c, src/proxy_internal.h,
src.xen_internal.c, src/xen_internal.h,
src/xen_unified.c, src/xen_unified.h,
src/xend_internal.c, src/xend_internal.h,
src/xm_internal.c, src/xm_internal.h,
src/xs_internal.c, src/xs_internal.h: The interface
between xen_unified.c and its underlying driver now uses
a custom structure (struct xenUnifiedDriver) instead
of reusing virDriver.
* src/xen_unified.c: virDomainLookup* functions in Xen
now throw VIR_ERR_NO_DOMAIN if the domain does not exist.
* src/xs_internal.c: Fix indentation.
2007-07-06 15:11:22 +00:00
|
|
|
dom = xenDaemonLookupByName(ctx->conn, name);
|
2006-11-16 19:06:13 +00:00
|
|
|
if (!dom) {
|
|
|
|
ctx->names[ctx->count] = strdup(name);
|
|
|
|
ctx->count++;
|
|
|
|
} else {
|
|
|
|
virDomainFree(dom);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* List all defined domains, filtered to remove any which
|
|
|
|
* are currently running
|
|
|
|
*/
|
2007-03-06 21:55:44 +00:00
|
|
|
int xenXMListDefinedDomains(virConnectPtr conn, char **const names, int maxnames) {
|
2006-11-16 19:06:13 +00:00
|
|
|
struct xenXMListIteratorContext ctx;
|
|
|
|
|
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
xenXMError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2007-07-04 13:16:57 +00:00
|
|
|
if (xenXMConfigCacheRefresh (conn) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (maxnames > virHashSize(configCache))
|
|
|
|
maxnames = virHashSize(configCache);
|
|
|
|
|
|
|
|
ctx.conn = conn;
|
|
|
|
ctx.count = 0;
|
|
|
|
ctx.max = maxnames;
|
|
|
|
ctx.names = names;
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
virHashForEach(nameConfigMap, xenXMListIterator, &ctx);
|
2006-11-16 19:06:13 +00:00
|
|
|
return (ctx.count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the maximum number of defined domains - not filtered
|
|
|
|
* based on number running
|
|
|
|
*/
|
|
|
|
int xenXMNumOfDefinedDomains(virConnectPtr conn) {
|
|
|
|
if (!VIR_IS_CONNECT(conn)) {
|
|
|
|
xenXMError(conn, VIR_ERR_INVALID_CONN, __FUNCTION__);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2007-07-04 13:16:57 +00:00
|
|
|
if (xenXMConfigCacheRefresh (conn) < 0)
|
2006-11-16 19:06:13 +00:00
|
|
|
return (-1);
|
|
|
|
|
2006-12-19 21:54:20 +00:00
|
|
|
return virHashSize(nameConfigMap);
|
2006-11-16 19:06:13 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
static int xenXMDiskCompare(virDomainDiskDefPtr a,
|
|
|
|
virDomainDiskDefPtr b) {
|
|
|
|
if (a->bus == b->bus)
|
|
|
|
return virDiskNameToIndex(a->dst) - virDiskNameToIndex(b->dst);
|
|
|
|
else
|
|
|
|
return a->bus - b->bus;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-06 17:57:10 +00:00
|
|
|
/**
|
|
|
|
* xenXMDomainAttachDevice:
|
|
|
|
* @domain: pointer to domain object
|
|
|
|
* @xml: pointer to XML description of device
|
2008-02-07 12:34:19 +00:00
|
|
|
*
|
2008-02-06 17:57:10 +00:00
|
|
|
* Create a virtual device attachment to backend.
|
|
|
|
* XML description is translated into config file.
|
2008-02-07 12:34:19 +00:00
|
|
|
*
|
2008-02-06 17:57:10 +00:00
|
|
|
* Returns 0 in case of success, -1 in case of failure.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
xenXMDomainAttachDevice(virDomainPtr domain, const char *xml) {
|
|
|
|
const char *filename = NULL;
|
|
|
|
xenXMConfCachePtr entry = NULL;
|
2008-07-25 13:39:02 +00:00
|
|
|
int ret = -1;
|
|
|
|
virDomainDeviceDefPtr dev = NULL;
|
2008-02-06 17:57:10 +00:00
|
|
|
|
|
|
|
if ((!domain) || (!domain->conn) || (!domain->name) || (!xml)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
}
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
if (domain->id != -1)
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
|
|
|
|
2008-02-06 17:57:10 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(dev = virDomainDeviceDefParse(domain->conn,
|
|
|
|
entry->def,
|
|
|
|
xml)))
|
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
switch (dev->type) {
|
|
|
|
case VIR_DOMAIN_DEVICE_DISK:
|
|
|
|
{
|
|
|
|
/* Maintain list in sorted order according to target device name */
|
|
|
|
if (entry->def->disks == NULL) {
|
|
|
|
dev->data.disk->next = entry->def->disks;
|
|
|
|
entry->def->disks = dev->data.disk;
|
|
|
|
} else {
|
|
|
|
virDomainDiskDefPtr ptr = entry->def->disks;
|
|
|
|
while (ptr) {
|
|
|
|
if (!ptr->next || xenXMDiskCompare(dev->data.disk, ptr->next) < 0) {
|
|
|
|
dev->data.disk->next = ptr->next;
|
|
|
|
ptr->next = dev->data.disk;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ptr = ptr->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dev->data.disk = NULL;
|
2008-02-06 17:57:10 +00:00
|
|
|
}
|
2008-07-25 13:39:02 +00:00
|
|
|
break;
|
2008-02-06 17:57:10 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
case VIR_DOMAIN_DEVICE_NET:
|
|
|
|
{
|
|
|
|
virDomainNetDefPtr net = entry->def->nets;
|
|
|
|
while (net && net->next)
|
|
|
|
net = net->next;
|
|
|
|
if (net)
|
|
|
|
net->next = dev->data.net;
|
|
|
|
else
|
|
|
|
entry->def->nets = dev->data.net;
|
|
|
|
dev->data.net = NULL;
|
|
|
|
break;
|
2008-02-06 17:57:10 +00:00
|
|
|
}
|
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
default:
|
2008-03-27 13:45:26 +00:00
|
|
|
xenXMError(domain->conn, VIR_ERR_XML_ERROR,
|
|
|
|
_("unknown device"));
|
2008-02-06 17:57:10 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If this fails, should we try to undo our changes to the
|
|
|
|
* in-memory representation of the config file. I say not!
|
|
|
|
*/
|
2008-07-25 13:39:02 +00:00
|
|
|
if (xenXMConfigSaveFile(domain->conn, entry->filename, entry->def) < 0)
|
2008-02-06 17:57:10 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDeviceDefFree(dev);
|
2008-02-06 17:57:10 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* xenXMAutoAssignMac:
|
|
|
|
* @mac: pointer to Mac String
|
2008-02-07 12:34:19 +00:00
|
|
|
*
|
2008-02-06 17:57:10 +00:00
|
|
|
* a mac is assigned automatically.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success, -1 in case of failure.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
xenXMAutoAssignMac() {
|
|
|
|
char *buf;
|
|
|
|
|
2008-05-29 19:20:22 +00:00
|
|
|
if (VIR_ALLOC_N(buf, 18) < 0)
|
2008-02-06 17:57:10 +00:00
|
|
|
return 0;
|
|
|
|
srand((unsigned)time(NULL));
|
|
|
|
sprintf(buf, "00:16:3e:%02x:%02x:%02x"
|
|
|
|
,1 + (int)(256*(rand()/(RAND_MAX+1.0)))
|
|
|
|
,1 + (int)(256*(rand()/(RAND_MAX+1.0)))
|
|
|
|
,1 + (int)(256*(rand()/(RAND_MAX+1.0))));
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* xenXMDomainDetachDevice:
|
|
|
|
* @domain: pointer to domain object
|
|
|
|
* @xml: pointer to XML description of device
|
2008-02-07 12:34:19 +00:00
|
|
|
*
|
2008-02-06 17:57:10 +00:00
|
|
|
* Destroy a virtual device attachment to backend.
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success, -1 in case of failure.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
xenXMDomainDetachDevice(virDomainPtr domain, const char *xml) {
|
|
|
|
const char *filename = NULL;
|
|
|
|
xenXMConfCachePtr entry = NULL;
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDeviceDefPtr dev = NULL;
|
2008-02-06 17:57:10 +00:00
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if ((!domain) || (!domain->conn) || (!domain->name) || (!xml)) {
|
|
|
|
xenXMError((domain ? domain->conn : NULL), VIR_ERR_INVALID_ARG,
|
|
|
|
__FUNCTION__);
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
}
|
|
|
|
if (domain->conn->flags & VIR_CONNECT_RO)
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
if (domain->id != -1)
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
if (!(filename = virHashLookup(nameConfigMap, domain->name)))
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
if (!(entry = virHashLookup(configCache, filename)))
|
2008-07-25 13:39:02 +00:00
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
if (!(dev = virDomainDeviceDefParse(domain->conn,
|
|
|
|
entry->def,
|
|
|
|
xml)))
|
|
|
|
return -1;
|
2008-02-06 17:57:10 +00:00
|
|
|
|
2008-07-25 13:39:02 +00:00
|
|
|
switch (dev->type) {
|
|
|
|
case VIR_DOMAIN_DEVICE_DISK:
|
|
|
|
{
|
|
|
|
virDomainDiskDefPtr disk = entry->def->disks;
|
|
|
|
virDomainDiskDefPtr prev = NULL;
|
|
|
|
while (disk) {
|
|
|
|
if (disk->dst &&
|
|
|
|
dev->data.disk->dst &&
|
|
|
|
STREQ(disk->dst, dev->data.disk->dst)) {
|
|
|
|
if (prev) {
|
|
|
|
prev->next = disk->next;
|
|
|
|
} else {
|
|
|
|
entry->def->disks = disk->next;
|
2008-02-06 17:57:10 +00:00
|
|
|
}
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDiskDefFree(disk);
|
|
|
|
break;
|
2008-02-06 17:57:10 +00:00
|
|
|
}
|
2008-07-25 13:39:02 +00:00
|
|
|
prev = disk;
|
|
|
|
disk = disk->next;
|
2008-02-06 17:57:10 +00:00
|
|
|
}
|
2008-07-25 13:39:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case VIR_DOMAIN_DEVICE_NET:
|
|
|
|
{
|
|
|
|
virDomainNetDefPtr net = entry->def->nets;
|
|
|
|
virDomainNetDefPtr prev = NULL;
|
|
|
|
while (net) {
|
|
|
|
if (!memcmp(net->mac, dev->data.net->mac, VIR_DOMAIN_NET_MAC_SIZE)) {
|
|
|
|
if (prev) {
|
|
|
|
prev->next = net->next;
|
|
|
|
} else {
|
|
|
|
entry->def->nets = net->next;
|
|
|
|
}
|
|
|
|
virDomainNetDefFree(net);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prev = net;
|
|
|
|
net = net->next;
|
|
|
|
}
|
|
|
|
break;
|
2008-02-06 17:57:10 +00:00
|
|
|
}
|
2008-07-25 13:39:02 +00:00
|
|
|
default:
|
|
|
|
xenXMError(domain->conn, VIR_ERR_XML_ERROR,
|
|
|
|
_("unknown device"));
|
2008-02-06 17:57:10 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If this fails, should we try to undo our changes to the
|
|
|
|
* in-memory representation of the config file. I say not!
|
|
|
|
*/
|
2008-07-25 13:39:02 +00:00
|
|
|
if (xenXMConfigSaveFile(domain->conn, entry->filename, entry->def) < 0)
|
2008-02-06 17:57:10 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2008-07-25 13:39:02 +00:00
|
|
|
virDomainDeviceDefFree(dev);
|
2008-02-06 17:57:10 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
virDomainBlockPeek call
* configure.in: Document AC_SYS_LARGEFILE.
* docs/hvsupport.html.in: Document HV support for virDomainBlockPeek.
* include/libvirt/libvirt.h.in, src/driver.h, src/libvirt.c,
src/libvirt_sym.version: Add virDomainBlockPeek infrastructure.
* src/qemu_driver.c, src/test.c: Null versions of this call.
* src/xen_unified.c, src/xend_internal.c, src/xend_internal.h,
src/xm_internal.c, src/xm_internal.h: Xen implementation.
* tests/sexpr2xmldata/sexpr2xml-curmem.xml,
tests/sexpr2xmldata/sexpr2xml-no-source-cdrom.xml: XML output
has been reordered slightly in the Xen driver, but should be
functionally the same.
2008-06-05 13:17:45 +00:00
|
|
|
int
|
|
|
|
xenXMDomainBlockPeek (virDomainPtr dom,
|
|
|
|
const char *path ATTRIBUTE_UNUSED,
|
|
|
|
unsigned long long offset ATTRIBUTE_UNUSED,
|
|
|
|
size_t size ATTRIBUTE_UNUSED,
|
|
|
|
void *buffer ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
xenXMError (dom->conn, VIR_ERR_NO_SUPPORT, __FUNCTION__);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|