qemu_conf.c 48.4 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

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

39
#if HAVE_NUMACTL
40
#define NUMA_VERSION1_COMPATIBILITY 1
41 42 43
#include <numa.h>
#endif

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

VIR_ENUM_DECL(virDomainDiskQEMUBus)
VIR_ENUM_IMPL(virDomainDiskQEMUBus, VIR_DOMAIN_DISK_BUS_LAST,
              "ide",
              "floppy",
              "scsi",
              "virtio",
61
              "xen",
62 63
              "usb",
              "uml")
64

65

66 67
#define qemudLog(level, msg...) fprintf(stderr, msg)

D
Daniel P. Berrange 已提交
68 69 70 71 72 73
int qemudLoadDriverConfig(struct qemud_driver *driver,
                          const char *filename) {
    virConfPtr conf;
    virConfValuePtr p;

    /* Setup 2 critical defaults */
74 75 76 77 78
    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 已提交
79 80
    if (!(driver->vncTLSx509certdir = strdup(SYSCONF_DIR "/pki/libvirt-vnc"))) {
        qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
81
                         "%s", _("failed to allocate vncTLSx509certdir"));
D
Daniel P. Berrange 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
        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) {
113
        VIR_FREE(driver->vncTLSx509certdir);
D
Daniel P. Berrange 已提交
114 115
        if (!(driver->vncTLSx509certdir = strdup(p->str))) {
            qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
116
                             "%s", _("failed to allocate vncTLSx509certdir"));
D
Daniel P. Berrange 已提交
117 118 119 120 121 122 123 124
            virConfFree(conf);
            return -1;
        }
    }

    p = virConfGetValue (conf, "vnc_listen");
    CHECK_TYPE ("vnc_listen", VIR_CONF_STRING);
    if (p && p->str) {
J
Jim Meyering 已提交
125
        VIR_FREE(driver->vncListen);
126 127
        if (!(driver->vncListen = strdup(p->str))) {
            qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
J
Jim Meyering 已提交
128
                             "%s", _("failed to allocate vnc_listen"));
129 130 131
            virConfFree(conf);
            return -1;
        }
D
Daniel P. Berrange 已提交
132 133 134 135 136 137
    }

    virConfFree (conf);
    return 0;
}

D
Daniel P. Berrange 已提交
138 139
/* The list of possible machine types for various architectures,
   as supported by QEMU - taken from 'qemu -M ?' for each arch */
140 141
static const char *const arch_info_hvm_x86_machines[] = {
    "pc", "isapc"
D
Daniel P. Berrange 已提交
142
};
143 144
static const char *const arch_info_hvm_mips_machines[] = {
    "mips"
D
Daniel P. Berrange 已提交
145
};
146 147
static const char *const arch_info_hvm_sparc_machines[] = {
    "sun4m"
D
Daniel P. Berrange 已提交
148
};
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
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 已提交
171 172
};

173
/* Feature flags for the architecture info */
J
Jim Meyering 已提交
174
static const struct qemu_feature_flags const arch_info_i686_flags [] = {
175 176
    { "pae",  1, 0 },
    { "nonpae",  1, 0 },
177 178 179 180
    { "acpi", 1, 1 },
    { "apic", 1, 0 },
};

J
Jim Meyering 已提交
181
static const struct qemu_feature_flags const arch_info_x86_64_flags [] = {
182 183 184 185
    { "acpi", 1, 1 },
    { "apic", 1, 0 },
};

D
Daniel P. Berrange 已提交
186
/* The archicture tables for supported QEMU archs */
187 188 189 190 191 192 193 194 195 196 197 198 199
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 已提交
200 201
};

202 203 204 205 206 207
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 已提交
208

209 210 211 212 213 214
static int
qemudCapsInitGuest(virCapsPtr caps,
                   const char *hostmachine,
                   const struct qemu_arch_info *info,
                   int hvm) {
    virCapsGuestPtr guest;
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
    int i, haskvm, hasbase, samearch;
    const char *kvmbin = NULL;

    /* Check for existance of base emulator */
    hasbase = (access(info->binary, X_OK) == 0);

    samearch = STREQ(info->arch, hostmachine);
    if (samearch) {
        const char *const kvmbins[] = { "/usr/bin/qemu-kvm", /* Fedora */
                                        "/usr/bin/kvm" }; /* Upstream .spec */

        for (i = 0; i < ARRAY_CARDINALITY(kvmbins); ++i) {
            if ((haskvm = (access(kvmbins[i], X_OK) == 0))) {
                kvmbin = kvmbins[i];
                break;
            }
        }
    } else {
        haskvm = 0;
    }

    if (!hasbase && !haskvm)
        return 0;
D
Daniel P. Berrange 已提交
238

239 240 241 242 243 244 245 246 247
    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 已提交
248

249
    if (hvm) {
250
        if (hasbase &&
251 252 253 254 255 256 257
            virCapabilitiesAddGuestDomain(guest,
                                          "qemu",
                                          NULL,
                                          NULL,
                                          0,
                                          NULL) == NULL)
            return -1;
D
Daniel P. Berrange 已提交
258

259
        /* If guest & host match, then we can accelerate */
260
        if (samearch) {
261 262 263 264 265 266 267 268 269 270
            if (access("/dev/kqemu", F_OK) == 0 &&
                virCapabilitiesAddGuestDomain(guest,
                                              "kqemu",
                                              NULL,
                                              NULL,
                                              0,
                                              NULL) == NULL)
                return -1;

            if (access("/dev/kvm", F_OK) == 0 &&
271
                haskvm &&
272 273
                virCapabilitiesAddGuestDomain(guest,
                                              "kvm",
274
                                              kvmbin,
275 276 277 278 279 280 281 282 283 284 285 286 287 288
                                              NULL,
                                              0,
                                              NULL) == NULL)
                return -1;
        }
    } else {
        if (virCapabilitiesAddGuestDomain(guest,
                                          "kvm",
                                          NULL,
                                          NULL,
                                          0,
                                          NULL) == NULL)
            return -1;
    }
D
Daniel P. Berrange 已提交
289

290 291 292 293 294 295 296
    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 已提交
297 298 299
        }
    }

300
    return 0;
D
Daniel P. Berrange 已提交
301 302
}

303 304 305
#if HAVE_NUMACTL
#define MAX_CPUS 4096
#define MAX_CPUS_MASK_SIZE (sizeof(unsigned long))
306 307
#define MAX_CPUS_MASK_BITS (MAX_CPUS_MASK_SIZE * 8)
#define MAX_CPUS_MASK_LEN (MAX_CPUS / (MAX_CPUS_MASK_BITS))
308 309

#define MASK_CPU_ISSET(mask, cpu) \
310
    (((mask)[((cpu) / MAX_CPUS_MASK_BITS)] >> ((cpu) % MAX_CPUS_MASK_BITS)) & 1)
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327

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++) {
328 329
        int mask_n_bytes = numa_all_cpus_ptr->size / 8;
        if (numa_node_to_cpus(n, mask, mask_n_bytes) < 0)
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 355 356 357 358 359 360 361 362
            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

363 364 365 366
virCapsPtr qemudCapsInit(void) {
    struct utsname utsname;
    virCapsPtr caps;
    int i;
D
Daniel P. Berrange 已提交
367

368 369 370 371 372 373 374
    /* Really, this never fails - look at the man-page. */
    uname (&utsname);

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

375 376 377
    /* Using KVM's mac prefix for QEMU too */
    virCapabilitiesSetMacPrefix(caps, (unsigned char[]){ 0x52, 0x54, 0x00 });

378 379 380
    if (qemudCapsInitNUMA(caps) < 0)
        goto no_memory;

J
Jim Meyering 已提交
381
    for (i = 0 ; i < ARRAY_CARDINALITY(arch_info_hvm) ; i++)
382 383 384 385 386 387 388
        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) {
J
Jim Meyering 已提交
389
        for (i = 0 ; i < ARRAY_CARDINALITY(arch_info_xen) ; i++)
390 391 392 393 394 395 396 397 398
            /* 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 已提交
399 400
    }

401 402 403 404 405
    return caps;

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

408

409 410 411 412 413
int qemudExtractVersionInfo(const char *qemu,
                            unsigned int *retversion,
                            unsigned int *retflags) {
    const char *const qemuarg[] = { qemu, "-help", NULL };
    const char *const qemuenv[] = { "LC_ALL=C", NULL };
414
    pid_t child;
415
    int newstdout = -1;
416
    int ret = -1, status;
417 418 419 420 421 422 423 424 425 426 427 428
    unsigned int major, minor, micro;
    unsigned int version;
    unsigned int flags = 0;

    if (retflags)
        *retflags = 0;
    if (retversion)
        *retversion = 0;

    if (virExec(NULL, qemuarg, qemuenv, NULL,
                &child, -1, &newstdout, NULL, VIR_EXEC_NONE) < 0)
        return -1;
429

430 431 432 433 434
    char *help = NULL;
    enum { MAX_HELP_OUTPUT_SIZE = 8192 };
    int len = virFileReadLimFD(newstdout, MAX_HELP_OUTPUT_SIZE, &help);
    if (len < 0)
        goto cleanup2;
435

436 437 438
    if (sscanf(help, "QEMU PC emulator version %u.%u.%u",
               &major, &minor, &micro) != 3) {
        goto cleanup2;
439 440
    }

441
    version = (major * 1000 * 1000) + (minor * 1000) + micro;
442

443 444 445 446 447 448
    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;
449 450 451 452
    if (strstr(help, "-uuid"))
        flags |= QEMUD_CMD_FLAG_UUID;
    if (strstr(help, "-domid"))
        flags |= QEMUD_CMD_FLAG_DOMID;
453 454 455 456 457 458
    if (strstr(help, "-drive"))
        flags |= QEMUD_CMD_FLAG_DRIVE;
    if (strstr(help, "boot=on"))
        flags |= QEMUD_CMD_FLAG_DRIVE_BOOT;
    if (version >= 9000)
        flags |= QEMUD_CMD_FLAG_VNC_COLON;
459

460 461 462 463
    if (retversion)
        *retversion = version;
    if (retflags)
        *retflags = flags;
464

465
    ret = 0;
466

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

470
cleanup2:
471
    VIR_FREE(help);
472 473
    if (close(newstdout) < 0)
        ret = -1;
474

475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
rewait:
    if (waitpid(child, &status, 0) != child) {
        if (errno == EINTR)
            goto rewait;

        qemudLog(QEMUD_ERR,
                 _("Unexpected exit status from qemu %d pid %lu"),
                 WEXITSTATUS(status), (unsigned long)child);
        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 */
    if (WEXITSTATUS(status) != 0) {
        qemudLog(QEMUD_WARN,
                 _("Unexpected exit status '%d', qemu probably failed"),
                 WEXITSTATUS(status));
492
    }
493 494

    return ret;
495 496
}

497
int qemudExtractVersion(virConnectPtr conn,
498 499
                        struct qemud_driver *driver) {
    const char *binary;
500
    struct stat sb;
501

502
    if (driver->qemuVersion > 0)
503 504
        return 0;

505 506
    if ((binary = virCapabilitiesDefaultGuestEmulator(driver->caps,
                                                      "hvm",
507 508 509
                                                      "i686",
                                                      "qemu")) == NULL)
        return -1;
510

511 512 513 514 515
    if (stat(binary, &sb) < 0) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Cannot find QEMU binary %s: %s"), binary,
                         strerror(errno));
        return -1;
516 517
    }

518
    if (qemudExtractVersionInfo(binary, &driver->qemuVersion, NULL) < 0) {
519 520
        return -1;
    }
D
Daniel P. Berrange 已提交
521

522
    return 0;
D
Daniel P. Berrange 已提交
523 524 525
}


526
static char *
527 528
qemudNetworkIfaceConnect(virConnectPtr conn,
                         struct qemud_driver *driver,
529 530 531
                         int **tapfds,
                         int *ntapfds,
                         virDomainNetDefPtr net,
532
                         int vlan)
533
{
534
    char *brname;
535 536 537 538 539
    char tapfdstr[4+3+32+7];
    char *retval = NULL;
    int err;
    int tapfd = -1;

540
    if (net->type == VIR_DOMAIN_NET_TYPE_NETWORK) {
541 542 543
        virNetworkPtr network = virNetworkLookupByName(conn,
                                                      net->data.network.name);
        if (!network) {
544
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
545
                             _("Network '%s' not found"),
546
                             net->data.network.name);
547
            goto error;
548 549 550 551 552 553
        }
        brname = virNetworkGetBridgeName(network);

        virNetworkFree(network);

        if (brname == NULL) {
554 555
            goto error;
        }
556 557
    } else if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE) {
        brname = net->data.bridge.brname;
558
    } else {
559
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
560
                         _("Network type %d is not supported"), net->type);
561 562 563
        goto error;
    }

564 565 566 567 568 569 570 571 572 573
    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;
        }
    }

574
    if (!driver->brctl && (err = brInit(&driver->brctl))) {
575
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
576 577
                         _("cannot initialize bridge support: %s"),
                         strerror(err));
578 579 580
        goto error;
    }

581
    if ((err = brAddTap(driver->brctl, brname,
582
                        &net->ifname, &tapfd))) {
583 584 585 586 587 588 589 590 591
        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"),
592
                             net->ifname, brname, strerror(err));
593
        }
594 595 596
        goto error;
    }

597 598
    snprintf(tapfdstr, sizeof(tapfdstr),
             "tap,fd=%d,script=,vlan=%d,ifname=%s",
599
             tapfd, vlan, net->ifname);
600 601 602 603

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

604
    if (VIR_REALLOC_N(*tapfds, (*ntapfds)+1) < 0)
605 606
        goto no_memory;

607
    (*tapfds)[(*ntapfds)++] = tapfd;
608 609 610 611

    return retval;

 no_memory:
612 613
    qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                     "%s", _("failed to allocate space for tapfds string"));
614
 error:
615
    VIR_FREE(retval);
616 617 618 619 620
    if (tapfd != -1)
        close(tapfd);
    return NULL;
}

621
static int qemudBuildCommandLineChrDevStr(virDomainChrDefPtr dev,
622 623 624
                                          char *buf,
                                          int buflen)
{
625 626
    switch (dev->type) {
    case VIR_DOMAIN_CHR_TYPE_NULL:
627 628 629 630
        strncpy(buf, "null", buflen);
        buf[buflen-1] = '\0';
        break;

631
    case VIR_DOMAIN_CHR_TYPE_VC:
632 633 634 635
        strncpy(buf, "vc", buflen);
        buf[buflen-1] = '\0';
        break;

636
    case VIR_DOMAIN_CHR_TYPE_PTY:
637 638 639 640
        strncpy(buf, "pty", buflen);
        buf[buflen-1] = '\0';
        break;

641
    case VIR_DOMAIN_CHR_TYPE_DEV:
642
        if (snprintf(buf, buflen, "%s",
643
                     dev->data.file.path) >= buflen)
644 645 646
            return -1;
        break;

647
    case VIR_DOMAIN_CHR_TYPE_FILE:
648
        if (snprintf(buf, buflen, "file:%s",
649
                     dev->data.file.path) >= buflen)
650 651 652
            return -1;
        break;

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

659
    case VIR_DOMAIN_CHR_TYPE_STDIO:
660 661 662 663
        strncpy(buf, "stdio", buflen);
        buf[buflen-1] = '\0';
        break;

664
    case VIR_DOMAIN_CHR_TYPE_UDP:
665
        if (snprintf(buf, buflen, "udp:%s:%s@%s:%s",
666 667 668 669
                     dev->data.udp.connectHost,
                     dev->data.udp.connectService,
                     dev->data.udp.bindHost,
                     dev->data.udp.bindService) >= buflen)
670 671 672
            return -1;
        break;

673
    case VIR_DOMAIN_CHR_TYPE_TCP:
674 675 676 677
        if (dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET) {
            if (snprintf(buf, buflen, "telnet:%s:%s%s",
                         dev->data.tcp.host,
                         dev->data.tcp.service,
678
                         dev->data.tcp.listen ? ",server,nowait" : "") >= buflen)
679 680 681 682 683
                return -1;
        } else {
            if (snprintf(buf, buflen, "tcp:%s:%s%s",
                         dev->data.tcp.host,
                         dev->data.tcp.service,
684
                         dev->data.tcp.listen ? ",server,nowait" : "") >= buflen)
685 686
                return -1;
        }
687 688
        break;

689
    case VIR_DOMAIN_CHR_TYPE_UNIX:
690
        if (snprintf(buf, buflen, "unix:%s%s",
691
                     dev->data.nix.path,
692
                     dev->data.nix.listen ? ",server,nowait" : "") >= buflen)
693 694 695 696 697 698 699
            return -1;
        break;
    }

    return 0;
}

D
Daniel P. Berrange 已提交
700 701 702 703
/*
 * Constructs a argv suitable for launching qemu with config defined
 * for a given virtual machine.
 */
704 705
int qemudBuildCommandLine(virConnectPtr conn,
                          struct qemud_driver *driver,
706
                          virDomainObjPtr vm,
707
                          unsigned int qemuCmdFlags,
708
                          const char ***retargv,
709
                          const char ***retenv,
710 711 712
                          int **tapfds,
                          int *ntapfds,
                          const char *migrateFrom) {
713
    int i;
D
Daniel P. Berrange 已提交
714 715
    char memory[50];
    char vcpus[50];
716
    char boot[VIR_DOMAIN_BOOT_LAST];
717 718
    struct utsname ut;
    int disableKQEMU = 0;
719
    int qargc = 0, qarga = 0;
720
    const char **qargv = NULL;
721 722
    int qenvc = 0, qenva = 0;
    const char **qenv = NULL;
723
    const char *emulator;
724 725
    char uuid[VIR_UUID_STRING_BUFLEN];
    char domid[50];
726
    char *pidfile;
D
Daniel P. Berrange 已提交
727

728 729
    uname(&ut);

D
Daniel P. Berrange 已提交
730
    /* Nasty hack make i?86 look like i686 to simplify next comparison */
731 732 733 734
    if (ut.machine[0] == 'i' &&
        ut.machine[2] == '8' &&
        ut.machine[3] == '6' &&
        !ut.machine[4])
D
Daniel P. Berrange 已提交
735
        ut.machine[1] = '6';
736

737 738
    virUUIDFormat(vm->def->uuid, uuid);

739 740 741 742 743
    /* Need to explicitly disable KQEMU if
     * 1. Arch matches host arch
     * 2. Guest is 'qemu'
     * 3. The qemu binary has the -no-kqemu flag
     */
744
    if ((qemuCmdFlags & QEMUD_CMD_FLAG_KQEMU) &&
745
        STREQ(ut.machine, vm->def->os.arch) &&
746
        vm->def->virtType == VIR_DOMAIN_VIRT_QEMU)
747 748
        disableKQEMU = 1;

749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
#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 已提交
770

771 772 773 774
#define ADD_USBDISK(thisarg)                                            \
    do {                                                                \
        ADD_ARG_LIT("-usbdevice");                                      \
        ADD_ARG_SPACE;                                                  \
775 776
        if ((asprintf((char **)&(qargv[qargc++]),                       \
                      "disk:%s", thisarg)) == -1) {                     \
777 778 779 780 781
            qargv[qargc-1] = NULL;                                      \
            goto no_memory;                                             \
        }                                                               \
    } while (0)

782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
#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) {                                              \
            if (asprintf(&envval, "%s=%s", envname, val) < 0)           \
                goto no_memory;                                         \
            qenv[qenvc++] = envval;                                     \
        }                                                               \
    } while (0)

816
    snprintf(memory, sizeof(memory), "%lu", vm->def->memory/1024);
817
    snprintf(vcpus, sizeof(vcpus), "%lu", vm->def->vcpus);
818
    snprintf(domid, sizeof(domid), "%d", vm->def->id);
819 820 821
    pidfile = virFilePid(driver->stateDir, vm->def->name);
    if (!pidfile)
        goto error;
D
Daniel P. Berrange 已提交
822

823 824 825 826 827 828 829 830 831 832
    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");

833 834 835 836 837
    emulator = vm->def->emulator;
    if (!emulator)
        emulator = virDomainDefDefaultEmulator(conn, vm->def, driver->caps);
    if (!emulator)
        return -1;
838

839
    ADD_ARG_LIT(emulator);
840 841 842 843 844 845 846 847 848
    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 已提交
849

850
    if (qemuCmdFlags & QEMUD_CMD_FLAG_NAME) {
851 852
        ADD_ARG_LIT("-name");
        ADD_ARG_LIT(vm->def->name);
853
    }
854 855 856 857 858 859 860 861 862
    if (qemuCmdFlags & QEMUD_CMD_FLAG_UUID) {
        ADD_ARG_LIT("-uuid");
        ADD_ARG_LIT(uuid);
    }
    if (qemuCmdFlags & QEMUD_CMD_FLAG_DOMID) {
        ADD_ARG_LIT("-domid");
        ADD_ARG_LIT(domid);
    }

863 864 865 866 867 868 869
    /*
     * 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...
     */
870
    if (!vm->def->graphics)
871
        ADD_ARG_LIT("-nographic");
872

873 874
    ADD_ARG_LIT("-monitor");
    ADD_ARG_LIT("pty");
D
Daniel P. Berrange 已提交
875

876 877 878
    ADD_ARG_LIT("-pidfile");
    ADD_ARG(pidfile);

879 880
    if (vm->def->localtime)
        ADD_ARG_LIT("-localtime");
881

882 883
    if ((qemuCmdFlags & QEMUD_CMD_FLAG_NO_REBOOT) &&
        vm->def->onReboot != VIR_DOMAIN_LIFECYCLE_RESTART)
884
        ADD_ARG_LIT("-no-reboot");
D
Daniel P. Berrange 已提交
885

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

889
    if (!vm->def->os.bootloader) {
D
Daniel P. Berrange 已提交
890 891
        for (i = 0 ; i < vm->def->os.nBootDevs ; i++) {
            switch (vm->def->os.bootDevs[i]) {
892
            case VIR_DOMAIN_BOOT_CDROM:
D
Daniel P. Berrange 已提交
893 894
                boot[i] = 'd';
                break;
895
            case VIR_DOMAIN_BOOT_FLOPPY:
D
Daniel P. Berrange 已提交
896 897
                boot[i] = 'a';
                break;
898
            case VIR_DOMAIN_BOOT_DISK:
D
Daniel P. Berrange 已提交
899 900
                boot[i] = 'c';
                break;
901
            case VIR_DOMAIN_BOOT_NET:
D
Daniel P. Berrange 已提交
902 903 904 905 906 907 908 909
                boot[i] = 'n';
                break;
            default:
                boot[i] = 'c';
                break;
            }
        }
        boot[vm->def->os.nBootDevs] = '\0';
910 911
        ADD_ARG_LIT("-boot");
        ADD_ARG_LIT(boot);
D
Daniel P. Berrange 已提交
912

913
        if (vm->def->os.kernel) {
914 915
            ADD_ARG_LIT("-kernel");
            ADD_ARG_LIT(vm->def->os.kernel);
D
Daniel P. Berrange 已提交
916
        }
917
        if (vm->def->os.initrd) {
918 919
            ADD_ARG_LIT("-initrd");
            ADD_ARG_LIT(vm->def->os.initrd);
D
Daniel P. Berrange 已提交
920
        }
921
        if (vm->def->os.cmdline) {
922 923
            ADD_ARG_LIT("-append");
            ADD_ARG_LIT(vm->def->os.cmdline);
D
Daniel P. Berrange 已提交
924 925
        }
    } else {
926 927
        ADD_ARG_LIT("-bootloader");
        ADD_ARG_LIT(vm->def->os.bootloader);
D
Daniel P. Berrange 已提交
928 929
    }

930
    /* If QEMU supports -drive param instead of old -hda, -hdb, -cdrom .. */
931
    if (qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE) {
932 933 934
        int bootCD = 0, bootFloppy = 0, bootDisk = 0;

        /* If QEMU supports boot=on for -drive param... */
935
        if (qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE_BOOT) {
936 937
            for (i = 0 ; i < vm->def->os.nBootDevs ; i++) {
                switch (vm->def->os.bootDevs[i]) {
938
                case VIR_DOMAIN_BOOT_CDROM:
939 940
                    bootCD = 1;
                    break;
941
                case VIR_DOMAIN_BOOT_FLOPPY:
942 943
                    bootFloppy = 1;
                    break;
944
                case VIR_DOMAIN_BOOT_DISK:
945 946 947
                    bootDisk = 1;
                    break;
                }
948
            }
949
        }
D
Daniel P. Berrange 已提交
950

951
        for (i = 0 ; i < vm->def->ndisks ; i++) {
952 953 954
            char opt[PATH_MAX];
            const char *media = NULL;
            int bootable = 0;
955
            virDomainDiskDefPtr disk = vm->def->disks[i];
956
            int idx = virDiskNameToIndex(disk->dst);
957
            const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
D
Daniel P. Berrange 已提交
958

959 960 961 962 963 964 965 966 967 968 969
            if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                    ADD_USBDISK(disk->src);
                } else {
                    qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                     _("unsupported usb disk type for '%s'"), disk->src);
                    goto error;
                }
                continue;
            }

970 971 972 973 974 975 976
            if (idx < 0) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 _("unsupported disk type '%s'"), disk->dst);
                goto error;
            }

            switch (disk->device) {
977
            case VIR_DOMAIN_DISK_DEVICE_CDROM:
978 979
                bootable = bootCD;
                bootCD = 0;
980
                media = "media=cdrom,";
981
                break;
982
            case VIR_DOMAIN_DISK_DEVICE_FLOPPY:
983 984 985
                bootable = bootFloppy;
                bootFloppy = 0;
                break;
986
            case VIR_DOMAIN_DISK_DEVICE_DISK:
987 988 989 990 991
                bootable = bootDisk;
                bootDisk = 0;
                break;
            }

992
            snprintf(opt, PATH_MAX, "file=%s,if=%s,%sindex=%d%s%s",
993
                     disk->src ? disk->src : "", bus,
994 995
                     media ? media : "",
                     idx,
996 997
                     bootable &&
                     disk->device == VIR_DOMAIN_DISK_DEVICE_DISK
998 999 1000
                     ? ",boot=on" : "",
                     disk->shared && ! disk->readonly
                     ? ",cache=off" : "");
1001

1002 1003
            ADD_ARG_LIT("-drive");
            ADD_ARG_LIT(opt);
1004 1005
        }
    } else {
1006
        for (i = 0 ; i < vm->def->ndisks ; i++) {
1007 1008
            char dev[NAME_MAX];
            char file[PATH_MAX];
1009
            virDomainDiskDefPtr disk = vm->def->disks[i];
1010

1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
            if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                    ADD_USBDISK(disk->src);
                } else {
                    qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                     _("unsupported usb disk type for '%s'"), disk->src);
                    goto error;
                }
                continue;
            }

1022
            if (STREQ(disk->dst, "hdc") &&
1023 1024
                disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
                if (disk->src) {
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
                    snprintf(dev, NAME_MAX, "-%s", "cdrom");
                } else {
                    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);

1042 1043
            ADD_ARG_LIT(dev);
            ADD_ARG_LIT(file);
1044
        }
D
Daniel P. Berrange 已提交
1045 1046
    }

1047
    if (!vm->def->nnets) {
1048 1049
        ADD_ARG_LIT("-net");
        ADD_ARG_LIT("none");
D
Daniel P. Berrange 已提交
1050
    } else {
1051
        int vlan = 0;
1052
        for (i = 0 ; i < vm->def->nnets ; i++) {
1053
            char nic[100];
1054
            virDomainNetDefPtr net = vm->def->nets[i];
1055

1056 1057
            if (snprintf(nic, sizeof(nic),
                         "nic,macaddr=%02x:%02x:%02x:%02x:%02x:%02x,vlan=%d%s%s",
1058 1059 1060
                         net->mac[0], net->mac[1],
                         net->mac[2], net->mac[3],
                         net->mac[4], net->mac[5],
1061
                         vlan,
1062 1063
                         (net->model ? ",model=" : ""),
                         (net->model ? net->model : "")) >= sizeof(nic))
1064
                goto error;
D
Daniel P. Berrange 已提交
1065

1066 1067 1068
            ADD_ARG_LIT("-net");
            ADD_ARG_LIT(nic);
            ADD_ARG_LIT("-net");
1069

1070
            switch (net->type) {
1071 1072
            case VIR_DOMAIN_NET_TYPE_NETWORK:
            case VIR_DOMAIN_NET_TYPE_BRIDGE:
1073
                {
1074 1075 1076
                    char *tap = qemudNetworkIfaceConnect(conn, driver,
                                                         tapfds, ntapfds,
                                                         net, vlan);
1077 1078 1079 1080 1081
                    if (tap == NULL)
                        goto error;
                    ADD_ARG(tap);
                    break;
                }
1082

1083
            case VIR_DOMAIN_NET_TYPE_ETHERNET:
1084 1085 1086
                {
                    char arg[PATH_MAX];
                    if (snprintf(arg, PATH_MAX-1, "tap,ifname=%s,script=%s,vlan=%d",
1087 1088
                                 net->ifname,
                                 net->data.ethernet.script,
1089 1090 1091
                                 vlan) >= (PATH_MAX-1))
                        goto error;

1092
                    ADD_ARG_LIT(arg);
1093 1094 1095
                }
                break;

1096 1097 1098
            case VIR_DOMAIN_NET_TYPE_CLIENT:
            case VIR_DOMAIN_NET_TYPE_SERVER:
            case VIR_DOMAIN_NET_TYPE_MCAST:
1099 1100 1101 1102
                {
                    char arg[PATH_MAX];
                    const char *mode = NULL;
                    switch (net->type) {
1103
                    case VIR_DOMAIN_NET_TYPE_CLIENT:
1104 1105
                        mode = "connect";
                        break;
1106
                    case VIR_DOMAIN_NET_TYPE_SERVER:
1107 1108
                        mode = "listen";
                        break;
1109
                    case VIR_DOMAIN_NET_TYPE_MCAST:
1110 1111 1112 1113 1114
                        mode = "mcast";
                        break;
                    }
                    if (snprintf(arg, PATH_MAX-1, "socket,%s=%s:%d,vlan=%d",
                                 mode,
1115 1116
                                 net->data.socket.address,
                                 net->data.socket.port,
1117 1118 1119
                                 vlan) >= (PATH_MAX-1))
                        goto error;

1120
                    ADD_ARG_LIT(arg);
1121 1122 1123
                }
                break;

1124
            case VIR_DOMAIN_NET_TYPE_USER:
1125 1126 1127 1128 1129 1130
            default:
                {
                    char arg[PATH_MAX];
                    if (snprintf(arg, PATH_MAX-1, "user,vlan=%d", vlan) >= (PATH_MAX-1))
                        goto error;

1131
                    ADD_ARG_LIT(arg);
1132
                }
1133
            }
D
Daniel P. Berrange 已提交
1134

1135
            vlan++;
D
Daniel P. Berrange 已提交
1136 1137 1138
        }
    }

1139
    if (!vm->def->nserials) {
1140 1141
        ADD_ARG_LIT("-serial");
        ADD_ARG_LIT("none");
1142
    } else {
1143
        for (i = 0 ; i < vm->def->nserials ; i++) {
1144
            char buf[4096];
1145
            virDomainChrDefPtr serial = vm->def->serials[i];
1146 1147 1148 1149

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

1150 1151
            ADD_ARG_LIT("-serial");
            ADD_ARG_LIT(buf);
1152 1153 1154
        }
    }

1155
    if (!vm->def->nparallels) {
1156 1157
        ADD_ARG_LIT("-parallel");
        ADD_ARG_LIT("none");
1158
    } else {
1159
        for (i = 0 ; i < vm->def->nparallels ; i++) {
1160
            char buf[4096];
1161
            virDomainChrDefPtr parallel = vm->def->parallels[i];
1162 1163 1164 1165

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

1166 1167
            ADD_ARG_LIT("-parallel");
            ADD_ARG_LIT(buf);
1168 1169 1170
        }
    }

1171
    ADD_ARG_LIT("-usb");
1172 1173 1174
    for (i = 0 ; i < vm->def->ninputs ; i++) {
        virDomainInputDefPtr input = vm->def->inputs[i];

1175
        if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
1176
            ADD_ARG_LIT("-usbdevice");
1177
            ADD_ARG_LIT(input->type == VIR_DOMAIN_INPUT_TYPE_MOUSE ? "mouse" : "tablet");
1178 1179 1180
        }
    }

1181 1182
    if (vm->def->graphics &&
        vm->def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_VNC) {
D
Daniel P. Berrange 已提交
1183
        char vncdisplay[PATH_MAX];
1184
        int ret;
D
Daniel P. Berrange 已提交
1185

1186
        if (qemuCmdFlags & QEMUD_CMD_FLAG_VNC_COLON) {
D
Daniel P. Berrange 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
            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 已提交
1200 1201 1202
                           (vm->def->graphics->data.vnc.listenAddr ?
                            vm->def->graphics->data.vnc.listenAddr :
                            (driver->vncListen ? driver->vncListen : "")),
1203
                           vm->def->graphics->data.vnc.port - 5900,
D
Daniel P. Berrange 已提交
1204 1205
                           options);
        } else {
1206
            ret = snprintf(vncdisplay, sizeof(vncdisplay), "%d",
1207
                           vm->def->graphics->data.vnc.port - 5900);
D
Daniel P. Berrange 已提交
1208
        }
1209
        if (ret < 0 || ret >= (int)sizeof(vncdisplay))
1210 1211
            goto error;

1212 1213
        ADD_ARG_LIT("-vnc");
        ADD_ARG_LIT(vncdisplay);
1214
        if (vm->def->graphics->data.vnc.keymap) {
1215
            ADD_ARG_LIT("-k");
1216
            ADD_ARG_LIT(vm->def->graphics->data.vnc.keymap);
1217
        }
1218 1219
    } else if (vm->def->graphics &&
               vm->def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_SDL) {
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
        char *xauth = NULL;
        char *display = NULL;

        if (vm->def->graphics->data.sdl.xauth &&
            asprintf(&xauth, "XAUTHORITY=%s",
                     vm->def->graphics->data.sdl.xauth) < 0)
            goto no_memory;
        if (vm->def->graphics->data.sdl.display &&
            asprintf(&display, "DISPLAY=%s",
                     vm->def->graphics->data.sdl.display) < 0) {
            VIR_FREE(xauth);
            goto no_memory;
        }

        if (xauth)
            ADD_ENV(xauth);
        if (display)
            ADD_ENV(display);
1238 1239
        if (vm->def->graphics->data.sdl.fullscreen)
            ADD_ARG_LIT("-full-screen");
D
Daniel P. Berrange 已提交
1240 1241
    }

D
Daniel Veillard 已提交
1242
    /* Add sound hardware */
1243
    if (vm->def->nsounds) {
D
Daniel Veillard 已提交
1244
        int size = 100;
1245 1246
        char *modstr;
        if (VIR_ALLOC_N(modstr, size+1) < 0)
D
Daniel Veillard 已提交
1247 1248
            goto no_memory;

1249 1250
        for (i = 0 ; i < vm->def->nsounds && size > 0 ; i++) {
            virDomainSoundDefPtr sound = vm->def->sounds[i];
1251
            const char *model = virDomainSoundModelTypeToString(sound->model);
D
Daniel Veillard 已提交
1252
            if (!model) {
1253
                VIR_FREE(modstr);
1254 1255 1256
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("invalid sound model"));
                goto error;
D
Daniel Veillard 已提交
1257 1258 1259
            }
            strncat(modstr, model, size);
            size -= strlen(model);
1260
            if (i < (vm->def->nsounds - 1))
D
Daniel Veillard 已提交
1261 1262
               strncat(modstr, ",", size--);
        }
1263 1264
        ADD_ARG_LIT("-soundhw");
        ADD_ARG(modstr);
D
Daniel Veillard 已提交
1265 1266
    }

1267
    /* Add host passthrough hardware */
1268
    for (i = 0 ; i < vm->def->nhostdevs ; i++) {
1269 1270
        int ret;
        char* usbdev;
1271
        virDomainHostdevDefPtr hostdev = vm->def->hostdevs[i];
1272 1273 1274

        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {
1275
            if(hostdev->source.subsys.u.usb.vendor) {
1276
                    ret = asprintf(&usbdev, "host:%.4x:%.4x",
1277 1278
                               hostdev->source.subsys.u.usb.vendor,
                               hostdev->source.subsys.u.usb.product);
1279 1280 1281

            } else {
                    ret = asprintf(&usbdev, "host:%.3d.%.3d",
1282 1283
                               hostdev->source.subsys.u.usb.bus,
                               hostdev->source.subsys.u.usb.device);
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
            }
            if (ret < 0) {
                usbdev = NULL;
                goto error;
            }
            ADD_ARG_LIT("-usbdevice");
            ADD_ARG_LIT(usbdev);
            VIR_FREE(usbdev);
        }
    }

1295
    if (migrateFrom) {
1296
        ADD_ARG_LIT("-incoming");
1297
        ADD_ARG_LIT(migrateFrom);
1298 1299
    }

1300
    ADD_ARG(NULL);
1301
    ADD_ENV(NULL);
D
Daniel P. Berrange 已提交
1302

1303
    *retargv = qargv;
1304
    *retenv = qenv;
D
Daniel P. Berrange 已提交
1305 1306 1307
    return 0;

 no_memory:
1308 1309
    qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                     "%s", _("failed to allocate space for argv string"));
1310
 error:
1311 1312
    if (tapfds &&
        *tapfds) {
1313
        for (i = 0; i < *ntapfds; i++)
1314 1315 1316
            close((*tapfds)[i]);
        VIR_FREE(*tapfds);
        *ntapfds = 0;
1317
    }
1318 1319
    if (qargv) {
        for (i = 0 ; i < qargc ; i++)
1320 1321
            VIR_FREE((qargv)[i]);
        VIR_FREE(qargv);
D
Daniel P. Berrange 已提交
1322
    }
1323 1324 1325 1326 1327
    if (qenv) {
        for (i = 0 ; i < qenvc ; i++)
            VIR_FREE((qenv)[i]);
        VIR_FREE(qenv);
    }
D
Daniel P. Berrange 已提交
1328
    return -1;
1329 1330 1331 1332

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
1333 1334 1335 1336 1337
#undef ADD_USBDISK
#undef ADD_ENV
#undef ADD_ENV_COPY
#undef ADD_ENV_LIT
#undef ADD_ENV_SPACE
D
Daniel P. Berrange 已提交
1338
}
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527


/* Called from SAX on parsing errors in the XML. */
static void
catchXMLError (void *ctx, const char *msg ATTRIBUTE_UNUSED, ...)
{
    xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;

    if (ctxt) {
        virConnectPtr conn = ctxt->_private;

        if (ctxt->lastError.level == XML_ERR_FATAL &&
            ctxt->lastError.message != NULL) {
            qemudReportError (conn, NULL, NULL, VIR_ERR_XML_DETAIL,
                                  _("at line %d: %s"),
                                  ctxt->lastError.line,
                                  ctxt->lastError.message);
        }
    }
}


/**
 * qemudDomainStatusParseFile
 *
 * read the last known status of a domain
 *
 * Returns 0 on success
 */
qemudDomainStatusPtr
qemudDomainStatusParseFile(virConnectPtr conn,
                           virCapsPtr caps,
                           const char *filename, int flags)
{
    xmlParserCtxtPtr pctxt = NULL;
    xmlXPathContextPtr ctxt = NULL;
    xmlDocPtr xml = NULL;
    xmlNodePtr root, config_root;
    virDomainDefPtr def = NULL;
    char *tmp = NULL;
    long val;
    qemudDomainStatusPtr status = NULL;

    if (VIR_ALLOC(status) < 0) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for vm status"));
        goto error;
    }

    /* Set up a parser context so we can catch the details of XML errors. */
    pctxt = xmlNewParserCtxt ();
    if (!pctxt || !pctxt->sax)
        goto error;
    pctxt->sax->error = catchXMLError;
    pctxt->_private = conn;

    if (conn) virResetError (&conn->err);
    xml = xmlCtxtReadFile (pctxt, filename, NULL,
                           XML_PARSE_NOENT | XML_PARSE_NONET |
                           XML_PARSE_NOWARNING);
    if (!xml) {
        if (conn && conn->err.code == VIR_ERR_NONE)
              qemudReportError(conn, NULL, NULL, VIR_ERR_XML_ERROR,
                                   "%s", _("failed to parse xml document"));
        goto error;
    }

    if ((root = xmlDocGetRootElement(xml)) == NULL) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                              "%s", _("missing root element"));
        goto error;
    }

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY, NULL);
        goto error;
    }

    if (!xmlStrEqual(root->name, BAD_CAST "domstatus")) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("incorrect root element"));
        goto error;
    }

    ctxt->node = root;
    if((virXPathLong(conn, "string(./@state)", ctxt, &val)) < 0) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("invalid domain state"));
        goto error;
    } else
        status->state = (int)val;

    if((virXPathLong(conn, "string(./@pid)", ctxt, &val)) < 0) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("invalid pid"));
        goto error;
    } else
        status->pid = (pid_t)val;

    if(!(tmp = virXPathString(conn, "string(./monitor[1]/@path)", ctxt))) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("no monitor path"));
        goto error;
    } else
        status->monitorpath = tmp;

    if(!(config_root = virXPathNode(conn, "./domain", ctxt))) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("no domain config"));
        goto error;
    }
    if(!(def = virDomainDefParseNode(conn, caps, xml, config_root, flags)))
        goto error;
    else
        status->def = def;

cleanup:
    xmlFreeParserCtxt (pctxt);
    xmlXPathFreeContext(ctxt);
    xmlFreeDoc (xml);
    return status;

error:
    VIR_FREE(tmp);
    VIR_FREE(status);
    goto cleanup;
}


/**
 * qemudDomainStatusFormat
 *
 * Get the state of a running domain as XML
 *
 * Returns xml on success
 */
static char*
qemudDomainStatusFormat(virConnectPtr conn,
                        virDomainObjPtr vm)
{
    char *config_xml = NULL, *xml = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    virBufferVSprintf(&buf, "<domstatus state='%d' pid='%d'>\n", vm->state, vm->pid);
    virBufferEscapeString(&buf, "  <monitor path='%s'/>\n", vm->monitorpath);

    if (!(config_xml = virDomainDefFormat(conn,
                                          vm->def,
                                          VIR_DOMAIN_XML_SECURE)))
        goto cleanup;

    virBufferAdd(&buf, config_xml, strlen(config_xml));
    virBufferAddLit(&buf, "</domstatus>\n");

    xml = virBufferContentAndReset(&buf);
cleanup:
    VIR_FREE(config_xml);
    return xml;
}


/**
 * qemudSaveDomainStatus
 *
 * Save the current status of a running domain
 *
 * Returns 0 on success
 */
int
qemudSaveDomainStatus(virConnectPtr conn,
                      struct qemud_driver *driver,
                      virDomainObjPtr vm)
{
    int ret = -1;
    char *xml = NULL;

    if (!(xml = qemudDomainStatusFormat(conn, vm)))
        goto cleanup;

    if ((ret = virDomainSaveXML(conn, driver->stateDir, vm->def, xml)))
        goto cleanup;

    ret = 0;
cleanup:
    VIR_FREE(xml);
    return ret;
}