2008-11-19 16:58:23 +00:00
|
|
|
/*
|
|
|
|
* uml_conf.c: UML driver configuration
|
|
|
|
*
|
2009-01-29 12:10:32 +00:00
|
|
|
* Copyright (C) 2006-2009 Red Hat, Inc.
|
2008-11-19 16:58:23 +00:00
|
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
|
|
|
#include "uml_conf.h"
|
|
|
|
#include "uuid.h"
|
|
|
|
#include "buf.h"
|
|
|
|
#include "conf.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "memory.h"
|
make NUMA-initialization code more portable and more robust
qemudCapsInitNUMA and umlCapsInitNUMA were identical, so this change
factors them into a new function, virCapsInitNUMA, and puts it in
nodeinfo.c.
In addition to factoring out the duplicates, this change also
adjusts that function definition (along with its macros) so
that it works with Fedora 9's numactl version 1, and makes it
so the code will work even if someone builds the kernel with
CONFIG_NR_CPUS > 4096.
Finally, also perform this NUMA initialization for the lxc
and openvz drivers.
* src/nodeinfo.c: Include <stdint.h>, <numa.h> and "memory.h".
(virCapsInitNUMA): Rename from qemudCapsInitNUMA and umlCapsInitNUMA.
(NUMA_MAX_N_CPUS): Define depending on NUMA API version.
(n_bits, MASK_CPU_ISSET): Define, adjust, use uint64 rather than long.
* src/nodeinfo.h: Include "capabilities.h".
(virCapsInitNUMA): Declare it.
* examples/domain-events/events-c/Makefile.am:
* src/Makefile.am: Add $(NUMACTL_CFLAGS) and $(NUMACTL_LIBS) to various
compile/link-related variables.
* src/qemu_conf.c: Include "nodeinfo.h".
(qemudCapsInitNUMA): Remove duplicate code. Adjust caller.
* src/uml_conf.c (umlCapsInitNUMA): Likewise.
Include "nodeinfo.h".
* src/lxc_conf.c: Include "nodeinfo.h".
(lxcCapsInit): Perform NUMA initialization here, too.
* src/openvz_conf.c (openvzCapsInit): And here.
Include "nodeinfo.h".
* src/libvirt_sym.version.in: Add virCapsInitNUMA so that libvirtd
can link to this function.
2008-12-21 18:55:09 +00:00
|
|
|
#include "nodeinfo.h"
|
2008-11-19 16:58:23 +00:00
|
|
|
#include "verify.h"
|
2009-06-03 11:13:33 +00:00
|
|
|
#include "bridge.h"
|
2008-11-19 16:58:23 +00:00
|
|
|
|
2009-01-29 12:10:32 +00:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_UML
|
2008-11-19 16:58:23 +00:00
|
|
|
|
2008-12-22 10:53:07 +00:00
|
|
|
#define umlLog(level, msg, ...) \
|
|
|
|
virLogMessage(__FILE__, level, 0, msg, __VA_ARGS__)
|
2008-11-19 16:58:23 +00:00
|
|
|
|
|
|
|
virCapsPtr umlCapsInit(void) {
|
|
|
|
struct utsname utsname;
|
|
|
|
virCapsPtr caps;
|
|
|
|
virCapsGuestPtr guest;
|
|
|
|
|
|
|
|
/* Really, this never fails - look at the man-page. */
|
|
|
|
uname (&utsname);
|
|
|
|
|
|
|
|
if ((caps = virCapabilitiesNew(utsname.machine,
|
|
|
|
0, 0)) == NULL)
|
|
|
|
goto no_memory;
|
|
|
|
|
2009-06-03 13:28:02 +00:00
|
|
|
if (nodeCapsInitNUMA(caps) < 0)
|
2008-11-19 16:58:23 +00:00
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
if ((guest = virCapabilitiesAddGuest(caps,
|
|
|
|
"uml",
|
|
|
|
utsname.machine,
|
|
|
|
STREQ(utsname.machine, "x86_64") ? 64 : 32,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL)) == NULL)
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
if (virCapabilitiesAddGuestDomain(guest,
|
|
|
|
"uml",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL) == NULL)
|
|
|
|
goto no_memory;
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
|
|
|
|
no_memory:
|
|
|
|
virCapabilitiesFree(caps);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-03 11:13:33 +00:00
|
|
|
static int
|
|
|
|
umlConnectTapDevice(virConnectPtr conn,
|
|
|
|
virDomainNetDefPtr net,
|
|
|
|
const char *bridge)
|
|
|
|
{
|
|
|
|
int tapfd = -1;
|
|
|
|
int err;
|
|
|
|
brControl *brctl = NULL;
|
|
|
|
|
|
|
|
if (!net->ifname ||
|
|
|
|
STRPREFIX(net->ifname, "vnet") ||
|
|
|
|
strchr(net->ifname, '%')) {
|
|
|
|
VIR_FREE(net->ifname);
|
|
|
|
if (!(net->ifname = strdup("vnet%d")))
|
|
|
|
goto no_memory;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((err = brInit(&brctl))) {
|
|
|
|
char ebuf[1024];
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("cannot initialize bridge support: %s"),
|
|
|
|
virStrerror(err, ebuf, sizeof ebuf));
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((err = brAddTap(brctl, bridge,
|
|
|
|
&net->ifname, BR_TAP_PERSIST, &tapfd))) {
|
|
|
|
if (errno == ENOTSUP) {
|
|
|
|
/* In this particular case, give a better diagnostic. */
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Failed to add tap interface to bridge. "
|
|
|
|
"%s is not a bridge device"), bridge);
|
|
|
|
} else {
|
|
|
|
char ebuf[1024];
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Failed to add tap interface '%s' "
|
|
|
|
"to bridge '%s' : %s"),
|
|
|
|
net->ifname, bridge, virStrerror(err, ebuf, sizeof ebuf));
|
|
|
|
}
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
close(tapfd);
|
|
|
|
|
|
|
|
brShutdown(brctl);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
no_memory:
|
|
|
|
virReportOOMError(conn);
|
|
|
|
error:
|
|
|
|
brShutdown(brctl);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
umlBuildCommandLineNet(virConnectPtr conn,
|
|
|
|
virDomainNetDefPtr def,
|
|
|
|
int idx)
|
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
|
|
|
|
/* General format: ethNN=type,options */
|
|
|
|
|
|
|
|
virBufferVSprintf(&buf, "eth%d=", idx);
|
|
|
|
|
|
|
|
switch (def->type) {
|
|
|
|
case VIR_DOMAIN_NET_TYPE_USER:
|
|
|
|
/* ethNNN=slirp,macaddr */
|
|
|
|
virBufferAddLit(&buf, "slirp");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_ETHERNET:
|
|
|
|
/* ethNNN=tuntap,tapname,macaddr,gateway */
|
|
|
|
virBufferAddLit(&buf, "tuntap");
|
|
|
|
if (def->data.ethernet.ipaddr) {
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("IP address not supported for ethernet inteface"));
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (def->data.ethernet.script) {
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("script execution not supported for ethernet inteface"));
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_SERVER:
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("TCP server networking type not supported"));
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_CLIENT:
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("TCP client networking type not supported"));
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_MCAST:
|
|
|
|
/* ethNNN=tuntap,macaddr,ipaddr,port */
|
|
|
|
virBufferAddLit(&buf, "mcast");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_NETWORK:
|
|
|
|
{
|
|
|
|
char *bridge;
|
|
|
|
virNetworkPtr network = virNetworkLookupByName(conn,
|
|
|
|
def->data.network.name);
|
|
|
|
if (!network) {
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Network '%s' not found"),
|
|
|
|
def->data.network.name);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
bridge = virNetworkGetBridgeName(network);
|
|
|
|
virNetworkFree(network);
|
|
|
|
if (bridge == NULL) {
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (umlConnectTapDevice(conn, def, bridge) < 0) {
|
|
|
|
VIR_FREE(bridge);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ethNNN=tuntap,tapname,macaddr,gateway */
|
|
|
|
virBufferVSprintf(&buf, "tuntap,%s", def->ifname);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_BRIDGE:
|
|
|
|
if (umlConnectTapDevice(conn, def, def->data.bridge.brname) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
/* ethNNN=tuntap,tapname,macaddr,gateway */
|
|
|
|
virBufferVSprintf(&buf, "tuntap,%s", def->ifname);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_NET_TYPE_INTERNAL:
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("internal networking type not supported"));
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
virBufferVSprintf(&buf, ",%02x:%02x:%02x:%02x:%02x:%02x",
|
|
|
|
def->mac[0], def->mac[1], def->mac[2],
|
|
|
|
def->mac[3], def->mac[4], def->mac[5]);
|
|
|
|
|
|
|
|
if (def->type == VIR_DOMAIN_NET_TYPE_MCAST) {
|
|
|
|
virBufferVSprintf(&buf, ",%s,%d",
|
|
|
|
def->data.socket.address,
|
|
|
|
def->data.socket.port);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virBufferError(&buf)) {
|
|
|
|
virReportOOMError(conn);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return virBufferContentAndReset(&buf);
|
|
|
|
|
|
|
|
error:
|
|
|
|
ret = virBufferContentAndReset(&buf);
|
|
|
|
VIR_FREE(ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-11-19 16:58:23 +00:00
|
|
|
static char *
|
|
|
|
umlBuildCommandLineChr(virConnectPtr conn,
|
|
|
|
virDomainChrDefPtr def,
|
|
|
|
const char *dev)
|
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
|
|
|
|
switch (def->type) {
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_NULL:
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&ret, "%s%d=null", dev, def->dstPort) < 0) {
|
2009-01-29 12:10:32 +00:00
|
|
|
virReportOOMError(conn);
|
2008-11-19 16:58:23 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_PTY:
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&ret, "%s%d=pts", dev, def->dstPort) < 0) {
|
2009-01-29 12:10:32 +00:00
|
|
|
virReportOOMError(conn);
|
2008-11-19 16:58:23 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_DEV:
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&ret, "%s%d=tty:%s", dev, def->dstPort,
|
|
|
|
def->data.file.path) < 0) {
|
2009-01-29 12:10:32 +00:00
|
|
|
virReportOOMError(conn);
|
2008-11-19 16:58:23 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_STDIO:
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&ret, "%s%d=fd:0,fd:1", dev, def->dstPort) < 0) {
|
2009-01-29 12:10:32 +00:00
|
|
|
virReportOOMError(conn);
|
2008-11-19 16:58:23 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_TCP:
|
|
|
|
if (def->data.tcp.listen != 1) {
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"%s", _("only TCP listen is supported for chr device"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&ret, "%s%d=port:%s", dev, def->dstPort,
|
|
|
|
def->data.tcp.service) < 0) {
|
2009-01-29 12:10:32 +00:00
|
|
|
virReportOOMError(conn);
|
2008-11-19 16:58:23 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_FILE:
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_PIPE:
|
|
|
|
/* XXX could open the file/pipe & just pass the FDs */
|
|
|
|
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_VC:
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_UDP:
|
|
|
|
case VIR_DOMAIN_CHR_TYPE_UNIX:
|
|
|
|
default:
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unsupported chr device type %d"), def->type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constructs a argv suitable for launching uml with config defined
|
|
|
|
* for a given virtual machine.
|
|
|
|
*/
|
|
|
|
int umlBuildCommandLine(virConnectPtr conn,
|
|
|
|
struct uml_driver *driver ATTRIBUTE_UNUSED,
|
|
|
|
virDomainObjPtr vm,
|
|
|
|
const char ***retargv,
|
2009-06-03 11:13:33 +00:00
|
|
|
const char ***retenv)
|
|
|
|
{
|
2008-11-19 16:58:23 +00:00
|
|
|
int i, j;
|
|
|
|
char memory[50];
|
|
|
|
struct utsname ut;
|
|
|
|
int qargc = 0, qarga = 0;
|
|
|
|
const char **qargv = NULL;
|
|
|
|
int qenvc = 0, qenva = 0;
|
|
|
|
const char **qenv = NULL;
|
|
|
|
|
|
|
|
uname(&ut);
|
|
|
|
|
|
|
|
#define ADD_ARG_SPACE \
|
|
|
|
do { \
|
|
|
|
if (qargc == qarga) { \
|
|
|
|
qarga += 10; \
|
|
|
|
if (VIR_REALLOC_N(qargv, qarga) < 0) \
|
|
|
|
goto no_memory; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ADD_ARG(thisarg) \
|
|
|
|
do { \
|
|
|
|
ADD_ARG_SPACE; \
|
|
|
|
qargv[qargc++] = thisarg; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ADD_ARG_LIT(thisarg) \
|
|
|
|
do { \
|
|
|
|
ADD_ARG_SPACE; \
|
|
|
|
if ((qargv[qargc++] = strdup(thisarg)) == NULL) \
|
|
|
|
goto no_memory; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ADD_ARG_PAIR(key,val) \
|
|
|
|
do { \
|
|
|
|
char *arg; \
|
|
|
|
ADD_ARG_SPACE; \
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&arg, "%s=%s", key, val) < 0) \
|
2008-11-19 16:58:23 +00:00
|
|
|
goto no_memory; \
|
2008-12-23 13:03:29 +00:00
|
|
|
qargv[qargc++] = arg; \
|
2008-11-19 16:58:23 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define ADD_ENV_SPACE \
|
|
|
|
do { \
|
|
|
|
if (qenvc == qenva) { \
|
|
|
|
qenva += 10; \
|
|
|
|
if (VIR_REALLOC_N(qenv, qenva) < 0) \
|
|
|
|
goto no_memory; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ADD_ENV(thisarg) \
|
|
|
|
do { \
|
|
|
|
ADD_ENV_SPACE; \
|
|
|
|
qenv[qenvc++] = thisarg; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ADD_ENV_LIT(thisarg) \
|
|
|
|
do { \
|
|
|
|
ADD_ENV_SPACE; \
|
|
|
|
if ((qenv[qenvc++] = strdup(thisarg)) == NULL) \
|
|
|
|
goto no_memory; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ADD_ENV_COPY(envname) \
|
|
|
|
do { \
|
|
|
|
char *val = getenv(envname); \
|
|
|
|
char *envval; \
|
|
|
|
ADD_ENV_SPACE; \
|
|
|
|
if (val != NULL) { \
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&envval, "%s=%s", envname, val) < 0) \
|
2008-11-19 16:58:23 +00:00
|
|
|
goto no_memory; \
|
|
|
|
qenv[qenvc++] = envval; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
snprintf(memory, sizeof(memory), "%luK", vm->def->memory);
|
|
|
|
|
|
|
|
ADD_ENV_LIT("LC_ALL=C");
|
|
|
|
|
|
|
|
ADD_ENV_COPY("LD_PRELOAD");
|
|
|
|
ADD_ENV_COPY("LD_LIBRARY_PATH");
|
|
|
|
ADD_ENV_COPY("PATH");
|
|
|
|
ADD_ENV_COPY("HOME");
|
|
|
|
ADD_ENV_COPY("USER");
|
|
|
|
ADD_ENV_COPY("LOGNAME");
|
|
|
|
ADD_ENV_COPY("TMPDIR");
|
|
|
|
|
|
|
|
ADD_ARG_LIT(vm->def->os.kernel);
|
|
|
|
//ADD_ARG_PAIR("con0", "fd:0,fd:1");
|
|
|
|
ADD_ARG_PAIR("mem", memory);
|
|
|
|
ADD_ARG_PAIR("umid", vm->def->name);
|
|
|
|
|
|
|
|
if (vm->def->os.root)
|
|
|
|
ADD_ARG_PAIR("root", vm->def->os.root);
|
|
|
|
|
|
|
|
for (i = 0 ; i < vm->def->ndisks ; i++) {
|
|
|
|
virDomainDiskDefPtr disk = vm->def->disks[i];
|
|
|
|
|
|
|
|
if (!STRPREFIX(disk->dst, "ubd")) {
|
|
|
|
umlReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("unsupported disk type '%s'"), disk->dst);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
ADD_ARG_PAIR(disk->dst, disk->src);
|
|
|
|
}
|
|
|
|
|
2009-06-03 11:13:33 +00:00
|
|
|
for (i = 0 ; i < vm->def->nnets ; i++) {
|
|
|
|
char *ret = umlBuildCommandLineNet(conn, vm->def->nets[i], i);
|
|
|
|
if (!ret)
|
|
|
|
goto error;
|
|
|
|
ADD_ARG(ret);
|
|
|
|
}
|
|
|
|
|
2008-11-19 16:58:23 +00:00
|
|
|
for (i = 0 ; i < UML_MAX_CHAR_DEVICE ; i++) {
|
|
|
|
char *ret;
|
|
|
|
if (i == 0 && vm->def->console)
|
|
|
|
ret = umlBuildCommandLineChr(conn, vm->def->console, "con");
|
|
|
|
else
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&ret, "con%d=none", i) < 0)
|
2008-11-19 16:58:23 +00:00
|
|
|
goto no_memory;
|
|
|
|
ADD_ARG(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0 ; i < UML_MAX_CHAR_DEVICE ; i++) {
|
|
|
|
virDomainChrDefPtr chr = NULL;
|
|
|
|
char *ret;
|
|
|
|
for (j = 0 ; j < vm->def->nserials ; j++)
|
|
|
|
if (vm->def->serials[j]->dstPort == i)
|
|
|
|
chr = vm->def->serials[j];
|
|
|
|
if (chr)
|
|
|
|
ret = umlBuildCommandLineChr(conn, chr, "ssl");
|
|
|
|
else
|
2008-12-23 13:03:29 +00:00
|
|
|
if (virAsprintf(&ret, "ssl%d=none", i) < 0)
|
2008-11-19 16:58:23 +00:00
|
|
|
goto no_memory;
|
|
|
|
ADD_ARG(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
ADD_ARG(NULL);
|
|
|
|
ADD_ENV(NULL);
|
|
|
|
|
|
|
|
*retargv = qargv;
|
|
|
|
*retenv = qenv;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
no_memory:
|
2009-01-29 12:10:32 +00:00
|
|
|
virReportOOMError(conn);
|
2008-11-19 16:58:23 +00:00
|
|
|
error:
|
2009-06-03 11:13:33 +00:00
|
|
|
|
2008-11-19 16:58:23 +00:00
|
|
|
if (qargv) {
|
|
|
|
for (i = 0 ; i < qargc ; i++)
|
|
|
|
VIR_FREE((qargv)[i]);
|
|
|
|
VIR_FREE(qargv);
|
|
|
|
}
|
|
|
|
if (qenv) {
|
|
|
|
for (i = 0 ; i < qenvc ; i++)
|
|
|
|
VIR_FREE((qenv)[i]);
|
|
|
|
VIR_FREE(qenv);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
#undef ADD_ARG
|
|
|
|
#undef ADD_ARG_LIT
|
|
|
|
#undef ADD_ARG_SPACE
|
|
|
|
#undef ADD_USBDISK
|
|
|
|
#undef ADD_ENV
|
|
|
|
#undef ADD_ENV_COPY
|
|
|
|
#undef ADD_ENV_LIT
|
|
|
|
#undef ADD_ENV_SPACE
|
|
|
|
}
|