qemu_conf.c 38.0 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3
/*
 * config.c: VM configuration management
 *
4
 * Copyright (C) 2006, 2007, 2008 Red Hat, Inc.
D
Daniel P. Berrange 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

24
#include <config.h>
25 26

#ifdef WITH_QEMU
27

D
Daniel P. Berrange 已提交
28 29 30 31 32 33 34 35
#include <dirent.h>
#include <string.h>
#include <limits.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
36
#include <sys/wait.h>
37
#include <arpa/inet.h>
38
#include <sys/utsname.h>
D
Daniel P. Berrange 已提交
39

40 41 42 43
#if HAVE_NUMACTL
#include <numa.h>
#endif

44
#include "qemu_conf.h"
45
#include "uuid.h"
46
#include "buf.h"
D
Daniel P. Berrange 已提交
47
#include "conf.h"
48
#include "util.h"
49
#include "memory.h"
J
Jim Meyering 已提交
50
#include "verify.h"
51 52 53 54 55 56 57 58 59

VIR_ENUM_DECL(virDomainDiskQEMUBus)
VIR_ENUM_IMPL(virDomainDiskQEMUBus, VIR_DOMAIN_DISK_BUS_LAST,
              "ide",
              "floppy",
              "scsi",
              "virtio",
              "xen")

60

61 62
#define qemudLog(level, msg...) fprintf(stderr, msg)

63 64 65 66 67
void qemudReportError(virConnectPtr conn,
                      virDomainPtr dom,
                      virNetworkPtr net,
                      int code, const char *fmt, ...) {
    va_list args;
68
    char errorMessage[1024];
D
Daniel Veillard 已提交
69
    const char *virerr;
70 71 72

    if (fmt) {
        va_start(args, fmt);
73
        vsnprintf(errorMessage, sizeof(errorMessage)-1, fmt, args);
74 75 76 77
        va_end(args);
    } else {
        errorMessage[0] = '\0';
    }
D
Daniel Veillard 已提交
78

79
    virerr = __virErrorMsg(code, (errorMessage[0] ? errorMessage : NULL));
80
    __virRaiseError(conn, dom, net, VIR_FROM_QEMU, code, VIR_ERR_ERROR,
D
Daniel Veillard 已提交
81
                    virerr, errorMessage, NULL, -1, -1, virerr, errorMessage);
82 83
}

D
Daniel P. Berrange 已提交
84 85 86 87 88 89
int qemudLoadDriverConfig(struct qemud_driver *driver,
                          const char *filename) {
    virConfPtr conf;
    virConfValuePtr p;

    /* Setup 2 critical defaults */
90 91 92 93 94
    if (!(driver->vncListen = strdup("127.0.0.1"))) {
        qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate vncListen"));
        return -1;
    }
D
Daniel P. Berrange 已提交
95 96
    if (!(driver->vncTLSx509certdir = strdup(SYSCONF_DIR "/pki/libvirt-vnc"))) {
        qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
97
                         "%s", _("failed to allocate vncTLSx509certdir"));
D
Daniel P. Berrange 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
        return -1;
    }

    /* Just check the file is readable before opening it, otherwise
     * libvirt emits an error.
     */
    if (access (filename, R_OK) == -1) return 0;

    conf = virConfReadFile (filename);
    if (!conf) return 0;


#define CHECK_TYPE(name,typ) if (p && p->type != (typ)) {               \
        qemudReportError(NULL, NULL, NULL, VIR_ERR_INTERNAL_ERROR,      \
                         "remoteReadConfigFile: %s: %s: expected type " #typ "\n", \
                         filename, (name));                             \
        virConfFree(conf);                                              \
        return -1;                                                      \
    }

    p = virConfGetValue (conf, "vnc_tls");
    CHECK_TYPE ("vnc_tls", VIR_CONF_LONG);
    if (p) driver->vncTLS = p->l;

    p = virConfGetValue (conf, "vnc_tls_x509_verify");
    CHECK_TYPE ("vnc_tls_x509_verify", VIR_CONF_LONG);
    if (p) driver->vncTLSx509verify = p->l;

    p = virConfGetValue (conf, "vnc_tls_x509_cert_dir");
    CHECK_TYPE ("vnc_tls_x509_cert_dir", VIR_CONF_STRING);
    if (p && p->str) {
129
        VIR_FREE(driver->vncTLSx509certdir);
D
Daniel P. Berrange 已提交
130 131
        if (!(driver->vncTLSx509certdir = strdup(p->str))) {
            qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
132
                             "%s", _("failed to allocate vncTLSx509certdir"));
D
Daniel P. Berrange 已提交
133 134 135 136 137 138 139 140
            virConfFree(conf);
            return -1;
        }
    }

    p = virConfGetValue (conf, "vnc_listen");
    CHECK_TYPE ("vnc_listen", VIR_CONF_STRING);
    if (p && p->str) {
141 142 143 144 145 146
        if (!(driver->vncListen = strdup(p->str))) {
            qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
                             "%s", _("failed to allocate vncTLSx509certdir"));
            virConfFree(conf);
            return -1;
        }
D
Daniel P. Berrange 已提交
147 148 149 150 151 152
    }

    virConfFree (conf);
    return 0;
}

D
Daniel P. Berrange 已提交
153 154
/* The list of possible machine types for various architectures,
   as supported by QEMU - taken from 'qemu -M ?' for each arch */
155 156
static const char *const arch_info_hvm_x86_machines[] = {
    "pc", "isapc"
D
Daniel P. Berrange 已提交
157
};
158 159
static const char *const arch_info_hvm_mips_machines[] = {
    "mips"
D
Daniel P. Berrange 已提交
160
};
161 162
static const char *const arch_info_hvm_sparc_machines[] = {
    "sun4m"
D
Daniel P. Berrange 已提交
163
};
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
static const char *const arch_info_hvm_ppc_machines[] = {
    "g3bw", "mac99", "prep"
};

static const char *const arch_info_xen_x86_machines[] = {
    "xenner"
};

struct qemu_feature_flags {
    const char *name;
    const int default_on;
    const int toggle;
};

struct qemu_arch_info {
    const char *arch;
    int wordsize;
    const char *const *machines;
    int nmachines;
    const char *binary;
    const struct qemu_feature_flags *flags;
    int nflags;
D
Daniel P. Berrange 已提交
186 187
};

188
/* Feature flags for the architecture info */
J
Jim Meyering 已提交
189
static const struct qemu_feature_flags const arch_info_i686_flags [] = {
190 191
    { "pae",  1, 0 },
    { "nonpae",  1, 0 },
192 193 194 195
    { "acpi", 1, 1 },
    { "apic", 1, 0 },
};

J
Jim Meyering 已提交
196
static const struct qemu_feature_flags const arch_info_x86_64_flags [] = {
197 198 199 200
    { "acpi", 1, 1 },
    { "apic", 1, 0 },
};

D
Daniel P. Berrange 已提交
201
/* The archicture tables for supported QEMU archs */
202 203 204 205 206 207 208 209 210 211 212 213 214
static const struct qemu_arch_info const arch_info_hvm[] = {
    {  "i686", 32, arch_info_hvm_x86_machines, 2,
       "/usr/bin/qemu", arch_info_i686_flags, 4 },
    {  "x86_64", 64, arch_info_hvm_x86_machines, 2,
       "/usr/bin/qemu-system-x86_64", arch_info_x86_64_flags, 2 },
    {  "mips", 32, arch_info_hvm_mips_machines, 1,
       "/usr/bin/qemu-system-mips", NULL, 0 },
    {  "mipsel", 32, arch_info_hvm_mips_machines, 1,
       "/usr/bin/qemu-system-mipsel", NULL, 0 },
    {  "sparc", 32, arch_info_hvm_sparc_machines, 1,
       "/usr/bin/qemu-system-sparc", NULL, 0 },
    {  "ppc", 32, arch_info_hvm_ppc_machines, 3,
       "/usr/bin/qemu-system-ppc", NULL, 0 },
D
Daniel P. Berrange 已提交
215 216
};

217 218 219 220 221 222
static const struct qemu_arch_info const arch_info_xen[] = {
    {  "i686", 32, arch_info_xen_x86_machines, 1,
       "/usr/bin/xenner", arch_info_i686_flags, 4 },
    {  "x86_64", 64, arch_info_xen_x86_machines, 1,
       "/usr/bin/xenner", arch_info_x86_64_flags, 2 },
};
D
Daniel P. Berrange 已提交
223

224 225 226 227 228 229
static int
qemudCapsInitGuest(virCapsPtr caps,
                   const char *hostmachine,
                   const struct qemu_arch_info *info,
                   int hvm) {
    virCapsGuestPtr guest;
D
Daniel P. Berrange 已提交
230 231
    int i;

232 233 234 235 236 237 238 239 240
    if ((guest = virCapabilitiesAddGuest(caps,
                                         hvm ? "hvm" : "xen",
                                         info->arch,
                                         info->wordsize,
                                         info->binary,
                                         NULL,
                                         info->nmachines,
                                         info->machines)) == NULL)
        return -1;
D
Daniel P. Berrange 已提交
241

242 243 244 245 246 247 248 249 250 251
    if (hvm) {
        /* Check for existance of base emulator */
        if (access(info->binary, X_OK) == 0 &&
            virCapabilitiesAddGuestDomain(guest,
                                          "qemu",
                                          NULL,
                                          NULL,
                                          0,
                                          NULL) == NULL)
            return -1;
D
Daniel P. Berrange 已提交
252

253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
        /* If guest & host match, then we can accelerate */
        if (STREQ(info->arch, hostmachine)) {
            if (access("/dev/kqemu", F_OK) == 0 &&
                virCapabilitiesAddGuestDomain(guest,
                                              "kqemu",
                                              NULL,
                                              NULL,
                                              0,
                                              NULL) == NULL)
                return -1;

            if (access("/dev/kvm", F_OK) == 0 &&
                virCapabilitiesAddGuestDomain(guest,
                                              "kvm",
                                              "/usr/bin/qemu-kvm",
                                              NULL,
                                              0,
                                              NULL) == NULL)
                return -1;
        }
    } else {
        if (virCapabilitiesAddGuestDomain(guest,
                                          "kvm",
                                          NULL,
                                          NULL,
                                          0,
                                          NULL) == NULL)
            return -1;
    }
D
Daniel P. Berrange 已提交
282

283 284 285 286 287 288 289
    if (info->nflags) {
        for (i = 0 ; i < info->nflags ; i++) {
            if (virCapabilitiesAddGuestFeature(guest,
                                               info->flags[i].name,
                                               info->flags[i].default_on,
                                               info->flags[i].toggle) == NULL)
                return -1;
D
Daniel P. Berrange 已提交
290 291 292
        }
    }

293
    return 0;
D
Daniel P. Berrange 已提交
294 295
}

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
#if HAVE_NUMACTL
#define MAX_CPUS 4096
#define MAX_CPUS_MASK_SIZE (sizeof(unsigned long))
#define MAX_CPUS_MASK_LEN (MAX_CPUS / MAX_CPUS_MASK_SIZE)
#define MAX_CPUS_MASK_BYTES (MAX_CPUS / 8)

#define MASK_CPU_ISSET(mask, cpu) \
    (((mask)[((cpu) / MAX_CPUS_MASK_SIZE)] >> ((cpu) % MAX_CPUS_MASK_SIZE)) & 1)

static int
qemudCapsInitNUMA(virCapsPtr caps)
{
    int n, i;
    unsigned long *mask = NULL;
    int ncpus;
    int *cpus = NULL;
    int ret = -1;

    if (numa_available() < 0)
        return 0;

    if (VIR_ALLOC_N(mask, MAX_CPUS_MASK_LEN) < 0)
        goto cleanup;

    for (n = 0 ; n <= numa_max_node() ; n++) {
        if (numa_node_to_cpus(n, mask, MAX_CPUS_MASK_BYTES) < 0)
            goto cleanup;

        for (ncpus = 0, i = 0 ; i < MAX_CPUS ; i++)
            if (MASK_CPU_ISSET(mask, i))
                ncpus++;

        if (VIR_ALLOC_N(cpus, ncpus) < 0)
            goto cleanup;

        for (ncpus = 0, i = 0 ; i < MAX_CPUS ; i++)
            if (MASK_CPU_ISSET(mask, i))
                cpus[ncpus++] = i;

        if (virCapabilitiesAddHostNUMACell(caps,
                                           n,
                                           ncpus,
                                           cpus) < 0)
            goto cleanup;

        VIR_FREE(cpus);
    }

    ret = 0;

cleanup:
    VIR_FREE(cpus);
    VIR_FREE(mask);
    return ret;
}
#else
static int qemudCapsInitNUMA(virCapsPtr caps ATTRIBUTE_UNUSED) { return 0; }
#endif

355 356 357 358
virCapsPtr qemudCapsInit(void) {
    struct utsname utsname;
    virCapsPtr caps;
    int i;
D
Daniel P. Berrange 已提交
359

360 361 362 363 364 365 366
    /* Really, this never fails - look at the man-page. */
    uname (&utsname);

    if ((caps = virCapabilitiesNew(utsname.machine,
                                   0, 0)) == NULL)
        goto no_memory;

367 368 369
    if (qemudCapsInitNUMA(caps) < 0)
        goto no_memory;

370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
    for (i = 0 ; i < (sizeof(arch_info_hvm)/sizeof(arch_info_hvm[0])) ; i++)
        if (qemudCapsInitGuest(caps,
                               utsname.machine,
                               &arch_info_hvm[i], 1) < 0)
            goto no_memory;

    if (access("/usr/bin/xenner", X_OK) == 0 &&
        access("/dev/kvm", F_OK) == 0) {
        for (i = 0 ; i < (sizeof(arch_info_xen)/sizeof(arch_info_xen[0])) ; i++)
            /* Allow Xen 32-on-32, 32-on-64 and 64-on-64 */
            if (STREQ(arch_info_xen[i].arch, utsname.machine) ||
                (STREQ(utsname.machine, "x86_64") &&
                 STREQ(arch_info_xen[i].arch, "i686"))) {
                if (qemudCapsInitGuest(caps,
                                       utsname.machine,
                                       &arch_info_xen[i], 0) < 0)
                    goto no_memory;
            }
D
Daniel P. Berrange 已提交
388 389
    }

390 391 392 393 394
    return caps;

 no_memory:
    virCapabilitiesFree(caps);
    return NULL;
D
Daniel P. Berrange 已提交
395 396
}

397

398
int qemudExtractVersionInfo(const char *qemu, int *version, int *flags) {
399 400 401
    pid_t child;
    int newstdout[2];

402 403 404 405
    if (flags)
        *flags = 0;
    if (version)
        *version = 0;
406 407 408 409 410 411 412 413 414 415 416 417

    if (pipe(newstdout) < 0) {
        return -1;
    }

    if ((child = fork()) < 0) {
        close(newstdout[0]);
        close(newstdout[1]);
        return -1;
    }

    if (child == 0) { /* Kid */
418 419 420
        /* Just in case QEMU is translated someday we force to C locale.. */
        const char *const qemuenv[] = { "LANG=C", NULL };

421 422 423 424 425 426 427 428 429
        if (close(STDIN_FILENO) < 0)
            goto cleanup1;
        if (close(STDERR_FILENO) < 0)
            goto cleanup1;
        if (close(newstdout[0]) < 0)
            goto cleanup1;
        if (dup2(newstdout[1], STDOUT_FILENO) < 0)
            goto cleanup1;

430 431 432
        /* Passing -help, rather than relying on no-args which doesn't
           always work */
        execle(qemu, qemu, "-help", (char*)NULL, qemuenv);
433 434 435 436

    cleanup1:
        _exit(-1); /* Just in case */
    } else { /* Parent */
D
Daniel P. Berrange 已提交
437
        char help[8192]; /* Ought to be enough to hold QEMU help screen */
438
        int got = 0, ret = -1;
439
        int major, minor, micro;
440
        int ver;
441 442 443 444

        if (close(newstdout[1]) < 0)
            goto cleanup2;

D
Daniel P. Berrange 已提交
445 446 447 448 449 450 451 452 453 454
        while (got < (sizeof(help)-1)) {
            int len;
            if ((len = read(newstdout[0], help+got, sizeof(help)-got-1)) <= 0) {
                if (!len)
                    break;
                if (errno == EINTR)
                    continue;
                goto cleanup2;
            }
            got += len;
455 456 457 458 459 460 461
        }
        help[got] = '\0';

        if (sscanf(help, "QEMU PC emulator version %d.%d.%d", &major,&minor, &micro) != 3) {
            goto cleanup2;
        }

462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
        ver = (major * 1000 * 1000) + (minor * 1000) + micro;
        if (version)
            *version = ver;
        if (flags) {
            if (strstr(help, "-no-kqemu"))
                *flags |= QEMUD_CMD_FLAG_KQEMU;
            if (strstr(help, "-no-reboot"))
                *flags |= QEMUD_CMD_FLAG_NO_REBOOT;
            if (strstr(help, "-name"))
                *flags |= QEMUD_CMD_FLAG_NAME;
            if (strstr(help, "-drive"))
                *flags |= QEMUD_CMD_FLAG_DRIVE;
            if (strstr(help, "boot=on"))
                *flags |= QEMUD_CMD_FLAG_DRIVE_BOOT;
            if (ver >= 9000)
                *flags |= QEMUD_CMD_FLAG_VNC_COLON;
        }
479 480 481 482 483 484 485 486 487 488 489 490 491 492
        ret = 0;

        qemudDebug("Version %d %d %d  Cooked version: %d, with flags ? %d",
                   major, minor, micro, *version, *flags);

    cleanup2:
        if (close(newstdout[0]) < 0)
            ret = -1;

    rewait:
        if (waitpid(child, &got, 0) != child) {
            if (errno == EINTR) {
                goto rewait;
            }
493 494 495
            qemudLog(QEMUD_ERR,
                     _("Unexpected exit status from qemu %d pid %lu"),
                     got, (unsigned long)child);
496 497 498 499 500
            ret = -1;
        }
        /* Check & log unexpected exit status, but don't fail,
         * as there's really no need to throw an error if we did
         * actually read a valid version number above */
501
        if (WEXITSTATUS(got) != 0) {
502 503 504
            qemudLog(QEMUD_WARN,
                     _("Unexpected exit status '%d', qemu probably failed"),
                     got);
505 506 507 508 509 510
        }

        return ret;
    }
}

511
int qemudExtractVersion(virConnectPtr conn,
512 513
                        struct qemud_driver *driver) {
    const char *binary;
514
    struct stat sb;
515
    int ignored;
516

517
    if (driver->qemuVersion > 0)
518 519
        return 0;

520 521
    if ((binary = virCapabilitiesDefaultGuestEmulator(driver->caps,
                                                      "hvm",
522 523 524
                                                      "i686",
                                                      "qemu")) == NULL)
        return -1;
525

526 527 528 529 530
    if (stat(binary, &sb) < 0) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Cannot find QEMU binary %s: %s"), binary,
                         strerror(errno));
        return -1;
531 532
    }

533 534 535
    if (qemudExtractVersionInfo(binary, &driver->qemuVersion, &ignored) < 0) {
        return -1;
    }
D
Daniel P. Berrange 已提交
536

537
    return 0;
D
Daniel P. Berrange 已提交
538 539 540
}


541
static char *
542 543
qemudNetworkIfaceConnect(virConnectPtr conn,
                         struct qemud_driver *driver,
544 545 546
                         int **tapfds,
                         int *ntapfds,
                         virDomainNetDefPtr net,
547
                         int vlan)
548
{
549
    virNetworkObjPtr network = NULL;
550
    char *brname;
551 552 553 554 555
    char tapfdstr[4+3+32+7];
    char *retval = NULL;
    int err;
    int tapfd = -1;

556 557
    if (net->type == VIR_DOMAIN_NET_TYPE_NETWORK) {
        if (!(network = virNetworkFindByName(driver->networks, net->data.network.name))) {
558
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
559
                             _("Network '%s' not found"),
560
                             net->data.network.name);
561
            goto error;
562
        } else if (network->def->bridge == NULL) {
563
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
564
                             _("Network '%s' not active"),
565
                             net->data.network.name);
566 567
            goto error;
        }
568
        brname = network->def->bridge;
569 570
    } else if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE) {
        brname = net->data.bridge.brname;
571
    } else {
572
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
573
                         _("Network type %d is not supported"), net->type);
574 575 576
        goto error;
    }

577 578 579 580 581 582 583 584 585 586
    if (!net->ifname ||
        STRPREFIX(net->ifname, "vnet") ||
        strchr(net->ifname, '%')) {
        VIR_FREE(net->ifname);
        if (!(net->ifname = strdup("vnet%d"))) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY, NULL);
            goto error;
        }
    }

587
    if (!driver->brctl && (err = brInit(&driver->brctl))) {
588
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
589 590
                         _("cannot initialize bridge support: %s"),
                         strerror(err));
591 592 593
        goto error;
    }

594
    if ((err = brAddTap(driver->brctl, brname,
595
                        &net->ifname, &tapfd))) {
596 597 598 599 600 601 602 603 604
        if (errno == ENOTSUP) {
            /* In this particular case, give a better diagnostic. */
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             _("Failed to add tap interface to bridge. "
                               "%s is not a bridge device"), brname);
        } else {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             _("Failed to add tap interface '%s' "
                               "to bridge '%s' : %s"),
605
                             net->ifname, brname, strerror(err));
606
        }
607 608 609
        goto error;
    }

610 611
    snprintf(tapfdstr, sizeof(tapfdstr),
             "tap,fd=%d,script=,vlan=%d,ifname=%s",
612
             tapfd, vlan, net->ifname);
613 614 615 616

    if (!(retval = strdup(tapfdstr)))
        goto no_memory;

617
    if (VIR_REALLOC_N(*tapfds, (*ntapfds)+1) < 0)
618 619
        goto no_memory;

620
    (*tapfds)[(*ntapfds)++] = tapfd;
621 622 623 624

    return retval;

 no_memory:
625 626
    qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                     "%s", _("failed to allocate space for tapfds string"));
627
 error:
628
    VIR_FREE(retval);
629 630 631 632 633
    if (tapfd != -1)
        close(tapfd);
    return NULL;
}

634
static int qemudBuildCommandLineChrDevStr(virDomainChrDefPtr dev,
635 636 637
                                          char *buf,
                                          int buflen)
{
638 639
    switch (dev->type) {
    case VIR_DOMAIN_CHR_TYPE_NULL:
640 641 642 643
        strncpy(buf, "null", buflen);
        buf[buflen-1] = '\0';
        break;

644
    case VIR_DOMAIN_CHR_TYPE_VC:
645 646 647 648
        strncpy(buf, "vc", buflen);
        buf[buflen-1] = '\0';
        break;

649
    case VIR_DOMAIN_CHR_TYPE_PTY:
650 651 652 653
        strncpy(buf, "pty", buflen);
        buf[buflen-1] = '\0';
        break;

654
    case VIR_DOMAIN_CHR_TYPE_DEV:
655
        if (snprintf(buf, buflen, "%s",
656
                     dev->data.file.path) >= buflen)
657 658 659
            return -1;
        break;

660
    case VIR_DOMAIN_CHR_TYPE_FILE:
661
        if (snprintf(buf, buflen, "file:%s",
662
                     dev->data.file.path) >= buflen)
663 664 665
            return -1;
        break;

666
    case VIR_DOMAIN_CHR_TYPE_PIPE:
667
        if (snprintf(buf, buflen, "pipe:%s",
668
                     dev->data.file.path) >= buflen)
669 670 671
            return -1;
        break;

672
    case VIR_DOMAIN_CHR_TYPE_STDIO:
673 674 675 676
        strncpy(buf, "stdio", buflen);
        buf[buflen-1] = '\0';
        break;

677
    case VIR_DOMAIN_CHR_TYPE_UDP:
678
        if (snprintf(buf, buflen, "udp:%s:%s@%s:%s",
679 680 681 682
                     dev->data.udp.connectHost,
                     dev->data.udp.connectService,
                     dev->data.udp.bindHost,
                     dev->data.udp.bindService) >= buflen)
683 684 685
            return -1;
        break;

686
    case VIR_DOMAIN_CHR_TYPE_TCP:
687
        if (snprintf(buf, buflen, "%s:%s:%s%s",
688 689 690 691
                     dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET ? "telnet" : "tcp",
                     dev->data.tcp.host,
                     dev->data.tcp.service,
                     dev->data.tcp.listen ? ",listen" : "") >= buflen)
692 693 694
            return -1;
        break;

695
    case VIR_DOMAIN_CHR_TYPE_UNIX:
696
        if (snprintf(buf, buflen, "unix:%s%s",
697 698
                     dev->data.nix.path,
                     dev->data.nix.listen ? ",listen" : "") >= buflen)
699 700 701 702 703 704 705
            return -1;
        break;
    }

    return 0;
}

D
Daniel P. Berrange 已提交
706 707 708 709
/*
 * Constructs a argv suitable for launching qemu with config defined
 * for a given virtual machine.
 */
710 711
int qemudBuildCommandLine(virConnectPtr conn,
                          struct qemud_driver *driver,
712 713 714 715 716 717
                          virDomainObjPtr vm,
                          int qemuCmdFlags,
                          char ***retargv,
                          int **tapfds,
                          int *ntapfds,
                          const char *migrateFrom) {
718
    int i;
D
Daniel P. Berrange 已提交
719 720
    char memory[50];
    char vcpus[50];
721 722 723 724 725
    char boot[VIR_DOMAIN_BOOT_LAST];
    virDomainDiskDefPtr disk = vm->def->disks;
    virDomainNetDefPtr net = vm->def->nets;
    virDomainInputDefPtr input = vm->def->inputs;
    virDomainSoundDefPtr sound = vm->def->sounds;
726
    virDomainHostdevDefPtr hostdev = vm->def->hostdevs;
727 728
    virDomainChrDefPtr serial = vm->def->serials;
    virDomainChrDefPtr parallel = vm->def->parallels;
729 730
    struct utsname ut;
    int disableKQEMU = 0;
731 732
    int qargc = 0, qarga = 0;
    char **qargv = NULL;
D
Daniel P. Berrange 已提交
733

734 735
    uname(&ut);

D
Daniel P. Berrange 已提交
736
    /* Nasty hack make i?86 look like i686 to simplify next comparison */
737 738 739 740
    if (ut.machine[0] == 'i' &&
        ut.machine[2] == '8' &&
        ut.machine[3] == '6' &&
        !ut.machine[4])
D
Daniel P. Berrange 已提交
741
        ut.machine[1] = '6';
742 743 744 745 746 747

    /* Need to explicitly disable KQEMU if
     * 1. Arch matches host arch
     * 2. Guest is 'qemu'
     * 3. The qemu binary has the -no-kqemu flag
     */
748
    if ((qemuCmdFlags & QEMUD_CMD_FLAG_KQEMU) &&
749
        STREQ(ut.machine, vm->def->os.arch) &&
750
        vm->def->virtType == VIR_DOMAIN_VIRT_QEMU)
751 752
        disableKQEMU = 1;

753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
#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)
D
Daniel P. Berrange 已提交
774

775
    snprintf(memory, sizeof(memory), "%lu", vm->def->memory/1024);
776
    snprintf(vcpus, sizeof(vcpus), "%lu", vm->def->vcpus);
D
Daniel P. Berrange 已提交
777

778

779
    ADD_ARG_LIT(vm->def->emulator);
780 781 782 783 784 785 786 787 788
    ADD_ARG_LIT("-S");
    ADD_ARG_LIT("-M");
    ADD_ARG_LIT(vm->def->os.machine);
    if (disableKQEMU)
        ADD_ARG_LIT("-no-kqemu");
    ADD_ARG_LIT("-m");
    ADD_ARG_LIT(memory);
    ADD_ARG_LIT("-smp");
    ADD_ARG_LIT(vcpus);
D
Daniel P. Berrange 已提交
789

790
    if (qemuCmdFlags & QEMUD_CMD_FLAG_NAME) {
791 792
        ADD_ARG_LIT("-name");
        ADD_ARG_LIT(vm->def->name);
793
    }
794 795 796 797 798 799 800
    /*
     * NB, -nographic *MUST* come before any serial, or monitor
     * or parallel port flags due to QEMU craziness, where it
     * decides to change the serial port & monitor to be on stdout
     * if you ask for nographic. So we have to make sure we override
     * these defaults ourselves...
     */
801
    if (!vm->def->graphics)
802
        ADD_ARG_LIT("-nographic");
803

804 805
    ADD_ARG_LIT("-monitor");
    ADD_ARG_LIT("pty");
D
Daniel P. Berrange 已提交
806

807 808
    if (vm->def->localtime)
        ADD_ARG_LIT("-localtime");
809

810 811
    if ((qemuCmdFlags & QEMUD_CMD_FLAG_NO_REBOOT) &&
        vm->def->onReboot != VIR_DOMAIN_LIFECYCLE_RESTART)
812
        ADD_ARG_LIT("-no-reboot");
D
Daniel P. Berrange 已提交
813

814
    if (!(vm->def->features & (1 << VIR_DOMAIN_FEATURE_ACPI)))
815
        ADD_ARG_LIT("-no-acpi");
D
Daniel P. Berrange 已提交
816

817
    if (!vm->def->os.bootloader) {
D
Daniel P. Berrange 已提交
818 819
        for (i = 0 ; i < vm->def->os.nBootDevs ; i++) {
            switch (vm->def->os.bootDevs[i]) {
820
            case VIR_DOMAIN_BOOT_CDROM:
D
Daniel P. Berrange 已提交
821 822
                boot[i] = 'd';
                break;
823
            case VIR_DOMAIN_BOOT_FLOPPY:
D
Daniel P. Berrange 已提交
824 825
                boot[i] = 'a';
                break;
826
            case VIR_DOMAIN_BOOT_DISK:
D
Daniel P. Berrange 已提交
827 828
                boot[i] = 'c';
                break;
829
            case VIR_DOMAIN_BOOT_NET:
D
Daniel P. Berrange 已提交
830 831 832 833 834 835 836 837
                boot[i] = 'n';
                break;
            default:
                boot[i] = 'c';
                break;
            }
        }
        boot[vm->def->os.nBootDevs] = '\0';
838 839
        ADD_ARG_LIT("-boot");
        ADD_ARG_LIT(boot);
D
Daniel P. Berrange 已提交
840

841
        if (vm->def->os.kernel) {
842 843
            ADD_ARG_LIT("-kernel");
            ADD_ARG_LIT(vm->def->os.kernel);
D
Daniel P. Berrange 已提交
844
        }
845
        if (vm->def->os.initrd) {
846 847
            ADD_ARG_LIT("-initrd");
            ADD_ARG_LIT(vm->def->os.initrd);
D
Daniel P. Berrange 已提交
848
        }
849
        if (vm->def->os.cmdline) {
850 851
            ADD_ARG_LIT("-append");
            ADD_ARG_LIT(vm->def->os.cmdline);
D
Daniel P. Berrange 已提交
852 853
        }
    } else {
854 855
        ADD_ARG_LIT("-bootloader");
        ADD_ARG_LIT(vm->def->os.bootloader);
D
Daniel P. Berrange 已提交
856 857
    }

858
    /* If QEMU supports -drive param instead of old -hda, -hdb, -cdrom .. */
859
    if (qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE) {
860 861 862
        int bootCD = 0, bootFloppy = 0, bootDisk = 0;

        /* If QEMU supports boot=on for -drive param... */
863
        if (qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE_BOOT) {
864 865
            for (i = 0 ; i < vm->def->os.nBootDevs ; i++) {
                switch (vm->def->os.bootDevs[i]) {
866
                case VIR_DOMAIN_BOOT_CDROM:
867 868
                    bootCD = 1;
                    break;
869
                case VIR_DOMAIN_BOOT_FLOPPY:
870 871
                    bootFloppy = 1;
                    break;
872
                case VIR_DOMAIN_BOOT_DISK:
873 874 875
                    bootDisk = 1;
                    break;
                }
876
            }
877
        }
D
Daniel P. Berrange 已提交
878

879 880 881 882 883
        while (disk) {
            char opt[PATH_MAX];
            const char *media = NULL;
            int bootable = 0;
            int idx = virDiskNameToIndex(disk->dst);
884
            const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
D
Daniel P. Berrange 已提交
885

886 887 888 889 890 891 892
            if (idx < 0) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 _("unsupported disk type '%s'"), disk->dst);
                goto error;
            }

            switch (disk->device) {
893
            case VIR_DOMAIN_DISK_DEVICE_CDROM:
894 895
                bootable = bootCD;
                bootCD = 0;
896
                media = "media=cdrom,";
897
                break;
898
            case VIR_DOMAIN_DISK_DEVICE_FLOPPY:
899 900 901
                bootable = bootFloppy;
                bootFloppy = 0;
                break;
902
            case VIR_DOMAIN_DISK_DEVICE_DISK:
903 904 905 906 907 908
                bootable = bootDisk;
                bootDisk = 0;
                break;
            }

            snprintf(opt, PATH_MAX, "file=%s,if=%s,%sindex=%d%s",
909
                     disk->src ? disk->src : "", bus,
910 911
                     media ? media : "",
                     idx,
912 913
                     bootable &&
                     disk->device == VIR_DOMAIN_DISK_DEVICE_DISK
914
                     ? ",boot=on" : "");
915

916 917
            ADD_ARG_LIT("-drive");
            ADD_ARG_LIT(opt);
918 919 920 921 922 923 924 925
            disk = disk->next;
        }
    } else {
        while (disk) {
            char dev[NAME_MAX];
            char file[PATH_MAX];

            if (STREQ(disk->dst, "hdc") &&
926 927
                disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
                if (disk->src) {
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
                    snprintf(dev, NAME_MAX, "-%s", "cdrom");
                } else {
                    disk = disk->next;
                    continue;
                }
            } else {
                if (STRPREFIX(disk->dst, "hd") ||
                    STRPREFIX(disk->dst, "fd")) {
                    snprintf(dev, NAME_MAX, "-%s", disk->dst);
                } else {
                    qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                     _("unsupported disk type '%s'"), disk->dst);
                    goto error;
                }
            }

            snprintf(file, PATH_MAX, "%s", disk->src);

946 947
            ADD_ARG_LIT(dev);
            ADD_ARG_LIT(file);
948 949 950

            disk = disk->next;
        }
D
Daniel P. Berrange 已提交
951 952 953
    }

    if (!net) {
954 955
        ADD_ARG_LIT("-net");
        ADD_ARG_LIT("none");
D
Daniel P. Berrange 已提交
956
    } else {
957
        int vlan = 0;
D
Daniel P. Berrange 已提交
958
        while (net) {
959
            char nic[100];
960

961 962
            if (snprintf(nic, sizeof(nic),
                         "nic,macaddr=%02x:%02x:%02x:%02x:%02x:%02x,vlan=%d%s%s",
963 964 965
                         net->mac[0], net->mac[1],
                         net->mac[2], net->mac[3],
                         net->mac[4], net->mac[5],
966
                         vlan,
967 968
                         (net->model ? ",model=" : ""),
                         (net->model ? net->model : "")) >= sizeof(nic))
969
                goto error;
D
Daniel P. Berrange 已提交
970

971 972 973
            ADD_ARG_LIT("-net");
            ADD_ARG_LIT(nic);
            ADD_ARG_LIT("-net");
974

975
            switch (net->type) {
976 977
            case VIR_DOMAIN_NET_TYPE_NETWORK:
            case VIR_DOMAIN_NET_TYPE_BRIDGE:
978
                {
979 980 981
                    char *tap = qemudNetworkIfaceConnect(conn, driver,
                                                         tapfds, ntapfds,
                                                         net, vlan);
982 983 984 985 986
                    if (tap == NULL)
                        goto error;
                    ADD_ARG(tap);
                    break;
                }
987

988
            case VIR_DOMAIN_NET_TYPE_ETHERNET:
989 990 991
                {
                    char arg[PATH_MAX];
                    if (snprintf(arg, PATH_MAX-1, "tap,ifname=%s,script=%s,vlan=%d",
992 993
                                 net->ifname,
                                 net->data.ethernet.script,
994 995 996
                                 vlan) >= (PATH_MAX-1))
                        goto error;

997
                    ADD_ARG_LIT(arg);
998 999 1000
                }
                break;

1001 1002 1003
            case VIR_DOMAIN_NET_TYPE_CLIENT:
            case VIR_DOMAIN_NET_TYPE_SERVER:
            case VIR_DOMAIN_NET_TYPE_MCAST:
1004 1005 1006 1007
                {
                    char arg[PATH_MAX];
                    const char *mode = NULL;
                    switch (net->type) {
1008
                    case VIR_DOMAIN_NET_TYPE_CLIENT:
1009 1010
                        mode = "connect";
                        break;
1011
                    case VIR_DOMAIN_NET_TYPE_SERVER:
1012 1013
                        mode = "listen";
                        break;
1014
                    case VIR_DOMAIN_NET_TYPE_MCAST:
1015 1016 1017 1018 1019
                        mode = "mcast";
                        break;
                    }
                    if (snprintf(arg, PATH_MAX-1, "socket,%s=%s:%d,vlan=%d",
                                 mode,
1020 1021
                                 net->data.socket.address,
                                 net->data.socket.port,
1022 1023 1024
                                 vlan) >= (PATH_MAX-1))
                        goto error;

1025
                    ADD_ARG_LIT(arg);
1026 1027 1028
                }
                break;

1029
            case VIR_DOMAIN_NET_TYPE_USER:
1030 1031 1032 1033 1034 1035
            default:
                {
                    char arg[PATH_MAX];
                    if (snprintf(arg, PATH_MAX-1, "user,vlan=%d", vlan) >= (PATH_MAX-1))
                        goto error;

1036
                    ADD_ARG_LIT(arg);
1037
                }
1038
            }
D
Daniel P. Berrange 已提交
1039 1040

            net = net->next;
1041
            vlan++;
D
Daniel P. Berrange 已提交
1042 1043 1044
        }
    }

1045
    if (!serial) {
1046 1047
        ADD_ARG_LIT("-serial");
        ADD_ARG_LIT("none");
1048 1049 1050 1051 1052 1053 1054
    } else {
        while (serial) {
            char buf[4096];

            if (qemudBuildCommandLineChrDevStr(serial, buf, sizeof(buf)) < 0)
                goto error;

1055 1056
            ADD_ARG_LIT("-serial");
            ADD_ARG_LIT(buf);
1057 1058 1059 1060 1061 1062

            serial = serial->next;
        }
    }

    if (!parallel) {
1063 1064
        ADD_ARG_LIT("-parallel");
        ADD_ARG_LIT("none");
1065 1066 1067 1068 1069 1070 1071
    } else {
        while (parallel) {
            char buf[4096];

            if (qemudBuildCommandLineChrDevStr(parallel, buf, sizeof(buf)) < 0)
                goto error;

1072 1073
            ADD_ARG_LIT("-parallel");
            ADD_ARG_LIT(buf);
1074 1075 1076 1077 1078

            parallel = parallel->next;
        }
    }

1079
    ADD_ARG_LIT("-usb");
1080
    while (input) {
1081
        if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
1082
            ADD_ARG_LIT("-usbdevice");
1083
            ADD_ARG_LIT(input->type == VIR_DOMAIN_INPUT_TYPE_MOUSE ? "mouse" : "tablet");
1084 1085 1086 1087 1088
        }

        input = input->next;
    }

1089 1090
    if (vm->def->graphics &&
        vm->def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_VNC) {
D
Daniel P. Berrange 已提交
1091
        char vncdisplay[PATH_MAX];
1092
        int ret;
D
Daniel P. Berrange 已提交
1093

1094
        if (qemuCmdFlags & QEMUD_CMD_FLAG_VNC_COLON) {
D
Daniel P. Berrange 已提交
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
            char options[PATH_MAX] = "";
            if (driver->vncTLS) {
                strcat(options, ",tls");
                if (driver->vncTLSx509verify) {
                    strcat(options, ",x509verify=");
                } else {
                    strcat(options, ",x509=");
                }
                strncat(options, driver->vncTLSx509certdir,
                        sizeof(options) - (strlen(driver->vncTLSx509certdir)-1));
                options[sizeof(options)-1] = '\0';
            }
            ret = snprintf(vncdisplay, sizeof(vncdisplay), "%s:%d%s",
D
Daniel P. Berrange 已提交
1108 1109 1110
                           (vm->def->graphics->data.vnc.listenAddr ?
                            vm->def->graphics->data.vnc.listenAddr :
                            (driver->vncListen ? driver->vncListen : "")),
1111
                           vm->def->graphics->data.vnc.port - 5900,
D
Daniel P. Berrange 已提交
1112 1113
                           options);
        } else {
1114
            ret = snprintf(vncdisplay, sizeof(vncdisplay), "%d",
1115
                           vm->def->graphics->data.vnc.port - 5900);
D
Daniel P. Berrange 已提交
1116
        }
1117
        if (ret < 0 || ret >= (int)sizeof(vncdisplay))
1118 1119
            goto error;

1120 1121
        ADD_ARG_LIT("-vnc");
        ADD_ARG_LIT(vncdisplay);
1122
        if (vm->def->graphics->data.vnc.keymap) {
1123
            ADD_ARG_LIT("-k");
1124
            ADD_ARG_LIT(vm->def->graphics->data.vnc.keymap);
1125
        }
1126 1127
    } else if (vm->def->graphics &&
               vm->def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_SDL) {
D
Daniel P. Berrange 已提交
1128 1129 1130
        /* SDL is the default. no args needed */
    }

D
Daniel Veillard 已提交
1131 1132 1133
    /* Add sound hardware */
    if (sound) {
        int size = 100;
1134 1135
        char *modstr;
        if (VIR_ALLOC_N(modstr, size+1) < 0)
D
Daniel Veillard 已提交
1136 1137 1138
            goto no_memory;

        while(sound && size > 0) {
1139
            const char *model = virDomainSoundModelTypeToString(sound->model);
D
Daniel Veillard 已提交
1140
            if (!model) {
1141
                VIR_FREE(modstr);
1142 1143 1144
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("invalid sound model"));
                goto error;
D
Daniel Veillard 已提交
1145 1146 1147 1148 1149 1150 1151
            }
            strncat(modstr, model, size);
            size -= strlen(model);
            sound = sound->next;
            if (sound)
               strncat(modstr, ",", size--);
        }
1152 1153
        ADD_ARG_LIT("-soundhw");
        ADD_ARG(modstr);
D
Daniel Veillard 已提交
1154 1155
    }

1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
    /* Add host passthrough hardware */
    while (hostdev) {
        int ret;
        char* usbdev;

        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {
            if(hostdev->source.subsys.usb.vendor) {
                    ret = asprintf(&usbdev, "host:%.4x:%.4x",
                               hostdev->source.subsys.usb.vendor,
                               hostdev->source.subsys.usb.product);

            } else {
                    ret = asprintf(&usbdev, "host:%.3d.%.3d",
                               hostdev->source.subsys.usb.bus,
                               hostdev->source.subsys.usb.device);
            }
            if (ret < 0) {
                usbdev = NULL;
                goto error;
            }
            ADD_ARG_LIT("-usbdevice");
            ADD_ARG_LIT(usbdev);
            VIR_FREE(usbdev);
        }
        hostdev = hostdev->next;
    }

1184
    if (migrateFrom) {
1185
        ADD_ARG_LIT("-incoming");
1186
        ADD_ARG_LIT(migrateFrom);
1187 1188
    }

1189
    ADD_ARG(NULL);
D
Daniel P. Berrange 已提交
1190

1191
    *retargv = qargv;
D
Daniel P. Berrange 已提交
1192 1193 1194
    return 0;

 no_memory:
1195 1196
    qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                     "%s", _("failed to allocate space for argv string"));
1197
 error:
1198 1199 1200 1201 1202 1203
    if (tapfds &&
        *tapfds) {
        for (i = 0; ntapfds; i++)
            close((*tapfds)[i]);
        VIR_FREE(*tapfds);
        *ntapfds = 0;
1204
    }
1205 1206
    if (qargv) {
        for (i = 0 ; i < qargc ; i++)
1207 1208
            VIR_FREE((qargv)[i]);
        VIR_FREE(qargv);
D
Daniel P. Berrange 已提交
1209 1210
    }
    return -1;
1211 1212 1213 1214

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
D
Daniel P. Berrange 已提交
1215 1216 1217
}


1218
#endif /* WITH_QEMU */