qemu_conf.c 51.7 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3
/*
 * config.c: VM configuration management
 *
4
 * Copyright (C) 2006, 2007, 2008, 2009 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
#include "virterror_internal.h"
40
#include "qemu_conf.h"
41
#include "uuid.h"
42
#include "buf.h"
D
Daniel P. Berrange 已提交
43
#include "conf.h"
44
#include "util.h"
45
#include "memory.h"
J
Jim Meyering 已提交
46
#include "verify.h"
47 48
#include "datatypes.h"
#include "xml.h"
49
#include "nodeinfo.h"
50

51 52
#define VIR_FROM_THIS VIR_FROM_QEMU

53 54 55 56 57 58
VIR_ENUM_DECL(virDomainDiskQEMUBus)
VIR_ENUM_IMPL(virDomainDiskQEMUBus, VIR_DOMAIN_DISK_BUS_LAST,
              "ide",
              "floppy",
              "scsi",
              "virtio",
59
              "xen",
60 61
              "usb",
              "uml")
62

63

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
VIR_ENUM_DECL(qemuDiskCacheV1)
VIR_ENUM_DECL(qemuDiskCacheV2)

VIR_ENUM_IMPL(qemuDiskCacheV1, VIR_DOMAIN_DISK_CACHE_LAST,
              "default",
              "off",
              "off", /* writethrough not supported, so for safety, disable */
              "on"); /* Old 'on' was equivalent to 'writeback' */

VIR_ENUM_IMPL(qemuDiskCacheV2, VIR_DOMAIN_DISK_CACHE_LAST,
              "default",
              "none",
              "writethrough",
              "writeback");


80 81
#define qemudLog(level, msg...) fprintf(stderr, msg)

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

    /* Setup 2 critical defaults */
88
    if (!(driver->vncListen = strdup("127.0.0.1"))) {
89
        virReportOOMError(NULL);
90 91
        return -1;
    }
D
Daniel P. Berrange 已提交
92
    if (!(driver->vncTLSx509certdir = strdup(SYSCONF_DIR "/pki/libvirt-vnc"))) {
93
        virReportOOMError(NULL);
D
Daniel P. Berrange 已提交
94 95 96 97 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
        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) {
125
        VIR_FREE(driver->vncTLSx509certdir);
D
Daniel P. Berrange 已提交
126
        if (!(driver->vncTLSx509certdir = strdup(p->str))) {
127
            virReportOOMError(NULL);
D
Daniel P. Berrange 已提交
128 129 130 131 132 133 134 135
            virConfFree(conf);
            return -1;
        }
    }

    p = virConfGetValue (conf, "vnc_listen");
    CHECK_TYPE ("vnc_listen", VIR_CONF_STRING);
    if (p && p->str) {
J
Jim Meyering 已提交
136
        VIR_FREE(driver->vncListen);
137
        if (!(driver->vncListen = strdup(p->str))) {
138
            virReportOOMError(NULL);
139 140 141
            virConfFree(conf);
            return -1;
        }
D
Daniel P. Berrange 已提交
142 143
    }

144 145 146 147 148 149 150 151 152 153 154
    p = virConfGetValue (conf, "vnc_password");
    CHECK_TYPE ("vnc_password", VIR_CONF_STRING);
    if (p && p->str) {
        VIR_FREE(driver->vncPassword);
        if (!(driver->vncPassword = strdup(p->str))) {
            virReportOOMError(NULL);
            virConfFree(conf);
            return -1;
        }
    }

D
Daniel P. Berrange 已提交
155 156 157 158
    virConfFree (conf);
    return 0;
}

D
Daniel P. Berrange 已提交
159 160
/* The list of possible machine types for various architectures,
   as supported by QEMU - taken from 'qemu -M ?' for each arch */
161 162
static const char *const arch_info_hvm_x86_machines[] = {
    "pc", "isapc"
D
Daniel P. Berrange 已提交
163
};
164 165
static const char *const arch_info_hvm_mips_machines[] = {
    "mips"
D
Daniel P. Berrange 已提交
166
};
167 168
static const char *const arch_info_hvm_sparc_machines[] = {
    "sun4m"
D
Daniel P. Berrange 已提交
169
};
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
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 已提交
192 193
};

194
/* Feature flags for the architecture info */
J
Jim Meyering 已提交
195
static const struct qemu_feature_flags const arch_info_i686_flags [] = {
196 197
    { "pae",  1, 0 },
    { "nonpae",  1, 0 },
198 199 200 201
    { "acpi", 1, 1 },
    { "apic", 1, 0 },
};

J
Jim Meyering 已提交
202
static const struct qemu_feature_flags const arch_info_x86_64_flags [] = {
203 204 205 206
    { "acpi", 1, 1 },
    { "apic", 1, 0 },
};

D
Daniel P. Berrange 已提交
207
/* The archicture tables for supported QEMU archs */
208 209 210 211 212 213 214 215 216 217 218 219 220
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 已提交
221 222
};

223 224 225 226 227 228
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 已提交
229

230 231 232 233 234 235
static int
qemudCapsInitGuest(virCapsPtr caps,
                   const char *hostmachine,
                   const struct qemu_arch_info *info,
                   int hvm) {
    virCapsGuestPtr guest;
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
    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 已提交
259

260 261 262 263 264 265 266 267 268
    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 已提交
269

270
    if (hvm) {
271
        if (hasbase &&
272 273 274 275 276 277 278
            virCapabilitiesAddGuestDomain(guest,
                                          "qemu",
                                          NULL,
                                          NULL,
                                          0,
                                          NULL) == NULL)
            return -1;
D
Daniel P. Berrange 已提交
279

280
        /* If guest & host match, then we can accelerate */
281
        if (samearch) {
282 283 284 285 286 287 288 289 290 291
            if (access("/dev/kqemu", F_OK) == 0 &&
                virCapabilitiesAddGuestDomain(guest,
                                              "kqemu",
                                              NULL,
                                              NULL,
                                              0,
                                              NULL) == NULL)
                return -1;

            if (access("/dev/kvm", F_OK) == 0 &&
292
                haskvm &&
293 294
                virCapabilitiesAddGuestDomain(guest,
                                              "kvm",
295
                                              kvmbin,
296 297 298 299 300 301 302 303 304 305 306 307 308 309
                                              NULL,
                                              0,
                                              NULL) == NULL)
                return -1;
        }
    } else {
        if (virCapabilitiesAddGuestDomain(guest,
                                          "kvm",
                                          NULL,
                                          NULL,
                                          0,
                                          NULL) == NULL)
            return -1;
    }
D
Daniel P. Berrange 已提交
310

311 312 313 314 315 316 317
    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 已提交
318 319 320
        }
    }

321
    return 0;
D
Daniel P. Berrange 已提交
322 323
}

324 325 326 327
virCapsPtr qemudCapsInit(void) {
    struct utsname utsname;
    virCapsPtr caps;
    int i;
D
Daniel P. Berrange 已提交
328

329 330 331 332 333 334 335
    /* Really, this never fails - look at the man-page. */
    uname (&utsname);

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

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

339
    if (virCapsInitNUMA(caps) < 0)
340 341
        goto no_memory;

J
Jim Meyering 已提交
342
    for (i = 0 ; i < ARRAY_CARDINALITY(arch_info_hvm) ; i++)
343 344 345 346 347 348 349
        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 已提交
350
        for (i = 0 ; i < ARRAY_CARDINALITY(arch_info_xen) ; i++)
351 352 353 354 355 356 357 358 359
            /* 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 已提交
360 361
    }

362 363 364 365 366
    return caps;

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

369

370 371 372 373 374
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 };
375
    pid_t child;
376
    int newstdout = -1;
377
    int ret = -1, status;
378
    unsigned int major, minor, micro;
379
    unsigned int version, kvm_version;
380 381 382 383 384 385 386 387 388 389
    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;
390

391 392 393 394 395
    char *help = NULL;
    enum { MAX_HELP_OUTPUT_SIZE = 8192 };
    int len = virFileReadLimFD(newstdout, MAX_HELP_OUTPUT_SIZE, &help);
    if (len < 0)
        goto cleanup2;
396

397 398 399 400 401 402
    if (sscanf(help, "QEMU PC emulator version %u.%u.%u (kvm-%u)",
               &major, &minor, &micro, &kvm_version) != 4)
        kvm_version = 0;

    if (!kvm_version && sscanf(help, "QEMU PC emulator version %u.%u.%u",
               &major, &minor, &micro) != 3)
403
        goto cleanup2;
404

405
    version = (major * 1000 * 1000) + (minor * 1000) + micro;
406

407 408 409 410 411 412
    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;
413 414 415 416
    if (strstr(help, "-uuid"))
        flags |= QEMUD_CMD_FLAG_UUID;
    if (strstr(help, "-domid"))
        flags |= QEMUD_CMD_FLAG_DOMID;
417
    if (strstr(help, "-drive")) {
418
        flags |= QEMUD_CMD_FLAG_DRIVE;
419 420 421
        if (strstr(help, "cache=writethrough|writeback|none"))
            flags |= QEMUD_CMD_FLAG_DRIVE_CACHE_V2;
    }
422 423 424 425
    if (strstr(help, "boot=on"))
        flags |= QEMUD_CMD_FLAG_DRIVE_BOOT;
    if (version >= 9000)
        flags |= QEMUD_CMD_FLAG_VNC_COLON;
426 427
    if (kvm_version >= 74)
        flags |= QEMUD_CMD_FLAG_VNET_HDR;
428

429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
    /*
     * Handling of -incoming arg with varying features
     *  -incoming tcp    (kvm >= 79)
     *  -incoming exec   (kvm >= 80)
     *  -incoming stdio  (all earlier kvm)
     *
     * NB, there was a pre-kvm-79 'tcp' support, but it
     * was broken, because it blocked the monitor console
     * while waiting for data, so pretend it doesn't exist
     *
     * XXX when next QEMU release after 0.9.1 arrives,
     * we'll need to add MIGRATE_QEMU_TCP/EXEC here too
     */
    if (kvm_version >= 79) {
        flags |= QEMUD_CMD_FLAG_MIGRATE_QEMU_TCP;
        if (kvm_version >= 80)
            flags |= QEMUD_CMD_FLAG_MIGRATE_QEMU_EXEC;
    } else if (kvm_version > 0) {
        flags |= QEMUD_CMD_FLAG_MIGRATE_KVM_STDIO;
    }

450 451 452 453
    if (retversion)
        *retversion = version;
    if (retflags)
        *retflags = flags;
454

455
    ret = 0;
456

457 458
    qemudDebug("Version %d %d %d  Cooked version: %d, with flags ? %d",
               major, minor, micro, version, flags);
459 460
    if (kvm_version)
        qemudDebug("KVM version %d detected", kvm_version);
461

462
cleanup2:
463
    VIR_FREE(help);
464 465
    if (close(newstdout) < 0)
        ret = -1;
466

467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
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));
484
    }
485 486

    return ret;
487 488
}

489
int qemudExtractVersion(virConnectPtr conn,
490 491
                        struct qemud_driver *driver) {
    const char *binary;
492
    struct stat sb;
493

494
    if (driver->qemuVersion > 0)
495 496
        return 0;

497 498
    if ((binary = virCapabilitiesDefaultGuestEmulator(driver->caps,
                                                      "hvm",
499 500 501
                                                      "i686",
                                                      "qemu")) == NULL)
        return -1;
502

503 504 505 506 507
    if (stat(binary, &sb) < 0) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Cannot find QEMU binary %s: %s"), binary,
                         strerror(errno));
        return -1;
508 509
    }

510
    if (qemudExtractVersionInfo(binary, &driver->qemuVersion, NULL) < 0) {
511 512
        return -1;
    }
D
Daniel P. Berrange 已提交
513

514
    return 0;
D
Daniel P. Berrange 已提交
515 516 517
}


518
static char *
519 520
qemudNetworkIfaceConnect(virConnectPtr conn,
                         struct qemud_driver *driver,
521 522 523
                         int **tapfds,
                         int *ntapfds,
                         virDomainNetDefPtr net,
524 525
                         int vlan,
                         int vnet_hdr)
526
{
527
    char *brname;
528 529 530 531 532
    char tapfdstr[4+3+32+7];
    char *retval = NULL;
    int err;
    int tapfd = -1;

533
    if (net->type == VIR_DOMAIN_NET_TYPE_NETWORK) {
534 535 536
        virNetworkPtr network = virNetworkLookupByName(conn,
                                                      net->data.network.name);
        if (!network) {
537
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
538
                             _("Network '%s' not found"),
539
                             net->data.network.name);
540
            goto error;
541 542 543 544 545 546
        }
        brname = virNetworkGetBridgeName(network);

        virNetworkFree(network);

        if (brname == NULL) {
547 548
            goto error;
        }
549 550
    } else if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE) {
        brname = net->data.bridge.brname;
551
    } else {
552
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
553
                         _("Network type %d is not supported"), net->type);
554 555 556
        goto error;
    }

557 558 559 560 561
    if (!net->ifname ||
        STRPREFIX(net->ifname, "vnet") ||
        strchr(net->ifname, '%')) {
        VIR_FREE(net->ifname);
        if (!(net->ifname = strdup("vnet%d"))) {
562
            virReportOOMError(conn);
563 564 565 566
            goto error;
        }
    }

567
    if (!driver->brctl && (err = brInit(&driver->brctl))) {
568
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
569 570
                         _("cannot initialize bridge support: %s"),
                         strerror(err));
571 572 573
        goto error;
    }

574
    if ((err = brAddTap(driver->brctl, brname,
575
                        &net->ifname, vnet_hdr, &tapfd))) {
576 577 578 579 580 581 582 583 584
        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"),
585
                             net->ifname, brname, strerror(err));
586
        }
587 588 589
        goto error;
    }

590 591
    snprintf(tapfdstr, sizeof(tapfdstr),
             "tap,fd=%d,script=,vlan=%d,ifname=%s",
592
             tapfd, vlan, net->ifname);
593 594 595 596

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

597
    if (VIR_REALLOC_N(*tapfds, (*ntapfds)+1) < 0)
598 599
        goto no_memory;

600
    (*tapfds)[(*ntapfds)++] = tapfd;
601 602 603 604

    return retval;

 no_memory:
605
    virReportOOMError(conn);
606
 error:
607
    VIR_FREE(retval);
608 609 610 611 612
    if (tapfd != -1)
        close(tapfd);
    return NULL;
}

613

614
static int qemudBuildCommandLineChrDevStr(virDomainChrDefPtr dev,
615 616 617
                                          char *buf,
                                          int buflen)
{
618 619
    switch (dev->type) {
    case VIR_DOMAIN_CHR_TYPE_NULL:
620 621 622 623
        strncpy(buf, "null", buflen);
        buf[buflen-1] = '\0';
        break;

624
    case VIR_DOMAIN_CHR_TYPE_VC:
625 626 627 628
        strncpy(buf, "vc", buflen);
        buf[buflen-1] = '\0';
        break;

629
    case VIR_DOMAIN_CHR_TYPE_PTY:
630 631 632 633
        strncpy(buf, "pty", buflen);
        buf[buflen-1] = '\0';
        break;

634
    case VIR_DOMAIN_CHR_TYPE_DEV:
635
        if (snprintf(buf, buflen, "%s",
636
                     dev->data.file.path) >= buflen)
637 638 639
            return -1;
        break;

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

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

652
    case VIR_DOMAIN_CHR_TYPE_STDIO:
653 654 655 656
        strncpy(buf, "stdio", buflen);
        buf[buflen-1] = '\0';
        break;

657
    case VIR_DOMAIN_CHR_TYPE_UDP:
658
        if (snprintf(buf, buflen, "udp:%s:%s@%s:%s",
659 660 661 662
                     dev->data.udp.connectHost,
                     dev->data.udp.connectService,
                     dev->data.udp.bindHost,
                     dev->data.udp.bindService) >= buflen)
663 664 665
            return -1;
        break;

666
    case VIR_DOMAIN_CHR_TYPE_TCP:
667 668 669 670
        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,
671
                         dev->data.tcp.listen ? ",server,nowait" : "") >= buflen)
672 673 674 675 676
                return -1;
        } else {
            if (snprintf(buf, buflen, "tcp:%s:%s%s",
                         dev->data.tcp.host,
                         dev->data.tcp.service,
677
                         dev->data.tcp.listen ? ",server,nowait" : "") >= buflen)
678 679
                return -1;
        }
680 681
        break;

682
    case VIR_DOMAIN_CHR_TYPE_UNIX:
683
        if (snprintf(buf, buflen, "unix:%s%s",
684
                     dev->data.nix.path,
685
                     dev->data.nix.listen ? ",server,nowait" : "") >= buflen)
686 687 688 689 690 691 692
            return -1;
        break;
    }

    return 0;
}

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

721 722
    uname(&ut);

D
Daniel P. Berrange 已提交
723
    /* Nasty hack make i?86 look like i686 to simplify next comparison */
724 725 726 727
    if (ut.machine[0] == 'i' &&
        ut.machine[2] == '8' &&
        ut.machine[3] == '6' &&
        !ut.machine[4])
D
Daniel P. Berrange 已提交
728
        ut.machine[1] = '6';
729

730 731
    virUUIDFormat(vm->def->uuid, uuid);

732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
    /* Migration is very annoying due to wildly varying syntax & capabilities
     * over time of KVM / QEMU codebases
     */
    if (migrateFrom) {
        if (STRPREFIX(migrateFrom, "tcp")) {
            if (!(qemuCmdFlags & QEMUD_CMD_FLAG_MIGRATE_QEMU_TCP)) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_SUPPORT,
                                 "%s", _("TCP migration is not supported with this QEMU binary"));
                return -1;
            }
        } else if (STREQ(migrateFrom, "stdio")) {
            if (qemuCmdFlags & QEMUD_CMD_FLAG_MIGRATE_QEMU_EXEC) {
                migrateFrom = "exec:cat";
            } else if (!(qemuCmdFlags & QEMUD_CMD_FLAG_MIGRATE_KVM_STDIO)) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_SUPPORT,
                                 "%s", _("STDIO migration is not supported with this QEMU binary"));
                return -1;
            }
        } else if (STRPREFIX(migrateFrom, "exec")) {
            if (!(qemuCmdFlags & QEMUD_CMD_FLAG_MIGRATE_QEMU_EXEC)) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_SUPPORT,
                                 "%s", _("STDIO migration is not supported with this QEMU binary"));
                return -1;
            }
        }
    }

759 760 761 762 763
    /* Need to explicitly disable KQEMU if
     * 1. Arch matches host arch
     * 2. Guest is 'qemu'
     * 3. The qemu binary has the -no-kqemu flag
     */
764
    if ((qemuCmdFlags & QEMUD_CMD_FLAG_KQEMU) &&
765
        STREQ(ut.machine, vm->def->os.arch) &&
766
        vm->def->virtType == VIR_DOMAIN_VIRT_QEMU)
767 768
        disableKQEMU = 1;

769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
#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 已提交
790

791 792 793 794
#define ADD_USBDISK(thisarg)                                            \
    do {                                                                \
        ADD_ARG_LIT("-usbdevice");                                      \
        ADD_ARG_SPACE;                                                  \
795 796
        if ((virAsprintf((char **)&(qargv[qargc++]),                    \
                         "disk:%s", thisarg)) == -1) {                  \
797 798 799 800
            goto no_memory;                                             \
        }                                                               \
    } while (0)

801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
#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) {                                              \
829
            if (virAsprintf(&envval, "%s=%s", envname, val) < 0)        \
830 831 832 833 834
                goto no_memory;                                         \
            qenv[qenvc++] = envval;                                     \
        }                                                               \
    } while (0)

835
    snprintf(memory, sizeof(memory), "%lu", vm->def->memory/1024);
836
    snprintf(vcpus, sizeof(vcpus), "%lu", vm->def->vcpus);
837
    snprintf(domid, sizeof(domid), "%d", vm->def->id);
838 839 840
    pidfile = virFilePid(driver->stateDir, vm->def->name);
    if (!pidfile)
        goto error;
D
Daniel P. Berrange 已提交
841

842 843 844 845 846 847 848 849 850 851
    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");

852 853 854 855 856
    emulator = vm->def->emulator;
    if (!emulator)
        emulator = virDomainDefDefaultEmulator(conn, vm->def, driver->caps);
    if (!emulator)
        return -1;
857

858
    ADD_ARG_LIT(emulator);
859
    ADD_ARG_LIT("-S");
860 861 862 863 864 865 866 867 868 869

    /* This should *never* be NULL, since we always provide
     * a machine in the capabilities data for QEMU. So this
     * check is just here as a safety in case the unexpected
     * happens */
    if (vm->def->os.machine) {
        ADD_ARG_LIT("-M");
        ADD_ARG_LIT(vm->def->os.machine);
    }

870 871 872 873 874 875
    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 已提交
876

877
    if (qemuCmdFlags & QEMUD_CMD_FLAG_NAME) {
878 879
        ADD_ARG_LIT("-name");
        ADD_ARG_LIT(vm->def->name);
880
    }
881 882 883 884 885 886 887 888 889
    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);
    }

890 891 892 893 894 895 896
    /*
     * 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...
     */
897
    if (!vm->def->graphics)
898
        ADD_ARG_LIT("-nographic");
899

900 901
    ADD_ARG_LIT("-monitor");
    ADD_ARG_LIT("pty");
D
Daniel P. Berrange 已提交
902

903 904 905
    ADD_ARG_LIT("-pidfile");
    ADD_ARG(pidfile);

906 907
    if (vm->def->localtime)
        ADD_ARG_LIT("-localtime");
908

909 910
    if ((qemuCmdFlags & QEMUD_CMD_FLAG_NO_REBOOT) &&
        vm->def->onReboot != VIR_DOMAIN_LIFECYCLE_RESTART)
911
        ADD_ARG_LIT("-no-reboot");
D
Daniel P. Berrange 已提交
912

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

916
    if (!vm->def->os.bootloader) {
D
Daniel P. Berrange 已提交
917 918
        for (i = 0 ; i < vm->def->os.nBootDevs ; i++) {
            switch (vm->def->os.bootDevs[i]) {
919
            case VIR_DOMAIN_BOOT_CDROM:
D
Daniel P. Berrange 已提交
920 921
                boot[i] = 'd';
                break;
922
            case VIR_DOMAIN_BOOT_FLOPPY:
D
Daniel P. Berrange 已提交
923 924
                boot[i] = 'a';
                break;
925
            case VIR_DOMAIN_BOOT_DISK:
D
Daniel P. Berrange 已提交
926 927
                boot[i] = 'c';
                break;
928
            case VIR_DOMAIN_BOOT_NET:
D
Daniel P. Berrange 已提交
929 930 931 932 933 934 935 936
                boot[i] = 'n';
                break;
            default:
                boot[i] = 'c';
                break;
            }
        }
        boot[vm->def->os.nBootDevs] = '\0';
937 938
        ADD_ARG_LIT("-boot");
        ADD_ARG_LIT(boot);
D
Daniel P. Berrange 已提交
939

940
        if (vm->def->os.kernel) {
941 942
            ADD_ARG_LIT("-kernel");
            ADD_ARG_LIT(vm->def->os.kernel);
D
Daniel P. Berrange 已提交
943
        }
944
        if (vm->def->os.initrd) {
945 946
            ADD_ARG_LIT("-initrd");
            ADD_ARG_LIT(vm->def->os.initrd);
D
Daniel P. Berrange 已提交
947
        }
948
        if (vm->def->os.cmdline) {
949 950
            ADD_ARG_LIT("-append");
            ADD_ARG_LIT(vm->def->os.cmdline);
D
Daniel P. Berrange 已提交
951 952
        }
    } else {
953 954
        ADD_ARG_LIT("-bootloader");
        ADD_ARG_LIT(vm->def->os.bootloader);
D
Daniel P. Berrange 已提交
955 956
    }

957 958 959 960 961 962 963 964 965 966 967 968
    for (i = 0 ; i < vm->def->ndisks ; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];

        if (disk->driverName != NULL &&
            !STREQ(disk->driverName, "qemu")) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             _("unsupported driver name '%s' for disk '%s'"),
                             disk->driverName, disk->src);
            goto error;
        }
    }

969
    /* If QEMU supports -drive param instead of old -hda, -hdb, -cdrom .. */
970
    if (qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE) {
971 972 973
        int bootCD = 0, bootFloppy = 0, bootDisk = 0;

        /* If QEMU supports boot=on for -drive param... */
974
        if (qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE_BOOT) {
975 976
            for (i = 0 ; i < vm->def->os.nBootDevs ; i++) {
                switch (vm->def->os.bootDevs[i]) {
977
                case VIR_DOMAIN_BOOT_CDROM:
978 979
                    bootCD = 1;
                    break;
980
                case VIR_DOMAIN_BOOT_FLOPPY:
981 982
                    bootFloppy = 1;
                    break;
983
                case VIR_DOMAIN_BOOT_DISK:
984 985 986
                    bootDisk = 1;
                    break;
                }
987
            }
988
        }
D
Daniel P. Berrange 已提交
989

990
        for (i = 0 ; i < vm->def->ndisks ; i++) {
991 992
            virBuffer opt = VIR_BUFFER_INITIALIZER;
            char *optstr;
993
            int bootable = 0;
994
            virDomainDiskDefPtr disk = vm->def->disks[i];
995
            int idx = virDiskNameToIndex(disk->dst);
996
            const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
D
Daniel P. Berrange 已提交
997

998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
            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;
            }

1009 1010 1011 1012 1013 1014 1015
            if (idx < 0) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 _("unsupported disk type '%s'"), disk->dst);
                goto error;
            }

            switch (disk->device) {
1016
            case VIR_DOMAIN_DISK_DEVICE_CDROM:
1017 1018 1019
                bootable = bootCD;
                bootCD = 0;
                break;
1020
            case VIR_DOMAIN_DISK_DEVICE_FLOPPY:
1021 1022 1023
                bootable = bootFloppy;
                bootFloppy = 0;
                break;
1024
            case VIR_DOMAIN_DISK_DEVICE_DISK:
1025 1026 1027 1028 1029
                bootable = bootDisk;
                bootDisk = 0;
                break;
            }

1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
            virBufferVSprintf(&opt, "file=%s", disk->src ? disk->src : "");
            virBufferVSprintf(&opt, ",if=%s", bus);
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, ",media=cdrom");
            virBufferVSprintf(&opt, ",index=%d", idx);
            if (bootable &&
                disk->device == VIR_DOMAIN_DISK_DEVICE_DISK)
                virBufferAddLit(&opt, ",boot=on");
            if (disk->driverType)
                virBufferVSprintf(&opt, ",fmt=%s", disk->driverType);

1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
            if (disk->cachemode) {
                const char *mode =
                    (qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE_CACHE_V2) ?
                    qemuDiskCacheV2TypeToString(disk->cachemode) :
                    qemuDiskCacheV1TypeToString(disk->cachemode);

                virBufferVSprintf(&opt, ",cache=%s", mode);
            } else if (disk->shared && !disk->readonly) {
                virBufferAddLit(&opt, ",cache=off");
            }

1052 1053 1054 1055 1056 1057
            if (virBufferError(&opt)) {
                virReportOOMError(conn);
                goto error;
            }

            optstr = virBufferContentAndReset(&opt);
1058

1059
            ADD_ARG_LIT("-drive");
1060
            ADD_ARG(optstr);
1061 1062
        }
    } else {
1063
        for (i = 0 ; i < vm->def->ndisks ; i++) {
1064 1065
            char dev[NAME_MAX];
            char file[PATH_MAX];
1066
            virDomainDiskDefPtr disk = vm->def->disks[i];
1067

1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
            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;
            }

1079
            if (STREQ(disk->dst, "hdc") &&
1080 1081
                disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
                if (disk->src) {
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
                    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);

1099 1100
            ADD_ARG_LIT(dev);
            ADD_ARG_LIT(file);
1101
        }
D
Daniel P. Berrange 已提交
1102 1103
    }

1104
    if (!vm->def->nnets) {
1105 1106
        ADD_ARG_LIT("-net");
        ADD_ARG_LIT("none");
D
Daniel P. Berrange 已提交
1107
    } else {
1108
        int vlan = 0;
1109
        for (i = 0 ; i < vm->def->nnets ; i++) {
1110
            char nic[100];
1111
            virDomainNetDefPtr net = vm->def->nets[i];
1112

1113 1114
            if (snprintf(nic, sizeof(nic),
                         "nic,macaddr=%02x:%02x:%02x:%02x:%02x:%02x,vlan=%d%s%s",
1115 1116 1117
                         net->mac[0], net->mac[1],
                         net->mac[2], net->mac[3],
                         net->mac[4], net->mac[5],
1118
                         vlan,
1119 1120
                         (net->model ? ",model=" : ""),
                         (net->model ? net->model : "")) >= sizeof(nic))
1121
                goto error;
D
Daniel P. Berrange 已提交
1122

1123 1124 1125
            ADD_ARG_LIT("-net");
            ADD_ARG_LIT(nic);
            ADD_ARG_LIT("-net");
1126

1127
            switch (net->type) {
1128 1129
            case VIR_DOMAIN_NET_TYPE_NETWORK:
            case VIR_DOMAIN_NET_TYPE_BRIDGE:
1130
                {
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
                    char *tap;
                    int vnet_hdr = 0;

                    if (qemuCmdFlags & QEMUD_CMD_FLAG_VNET_HDR &&
                        net->model && STREQ(net->model, "virtio"))
                        vnet_hdr = 1;

                    tap = qemudNetworkIfaceConnect(conn, driver,
                                                   tapfds, ntapfds,
                                                   net, vlan, vnet_hdr);
1141 1142 1143 1144 1145
                    if (tap == NULL)
                        goto error;
                    ADD_ARG(tap);
                    break;
                }
1146

1147
            case VIR_DOMAIN_NET_TYPE_ETHERNET:
1148 1149 1150
                {
                    char arg[PATH_MAX];
                    if (snprintf(arg, PATH_MAX-1, "tap,ifname=%s,script=%s,vlan=%d",
1151 1152
                                 net->ifname,
                                 net->data.ethernet.script,
1153 1154 1155
                                 vlan) >= (PATH_MAX-1))
                        goto error;

1156
                    ADD_ARG_LIT(arg);
1157 1158 1159
                }
                break;

1160 1161 1162
            case VIR_DOMAIN_NET_TYPE_CLIENT:
            case VIR_DOMAIN_NET_TYPE_SERVER:
            case VIR_DOMAIN_NET_TYPE_MCAST:
1163 1164 1165 1166
                {
                    char arg[PATH_MAX];
                    const char *mode = NULL;
                    switch (net->type) {
1167
                    case VIR_DOMAIN_NET_TYPE_CLIENT:
1168 1169
                        mode = "connect";
                        break;
1170
                    case VIR_DOMAIN_NET_TYPE_SERVER:
1171 1172
                        mode = "listen";
                        break;
1173
                    case VIR_DOMAIN_NET_TYPE_MCAST:
1174 1175 1176 1177 1178
                        mode = "mcast";
                        break;
                    }
                    if (snprintf(arg, PATH_MAX-1, "socket,%s=%s:%d,vlan=%d",
                                 mode,
1179 1180
                                 net->data.socket.address,
                                 net->data.socket.port,
1181 1182 1183
                                 vlan) >= (PATH_MAX-1))
                        goto error;

1184
                    ADD_ARG_LIT(arg);
1185 1186 1187
                }
                break;

1188
            case VIR_DOMAIN_NET_TYPE_USER:
1189 1190 1191 1192 1193 1194
            default:
                {
                    char arg[PATH_MAX];
                    if (snprintf(arg, PATH_MAX-1, "user,vlan=%d", vlan) >= (PATH_MAX-1))
                        goto error;

1195
                    ADD_ARG_LIT(arg);
1196
                }
1197
            }
D
Daniel P. Berrange 已提交
1198

1199
            vlan++;
D
Daniel P. Berrange 已提交
1200 1201 1202
        }
    }

1203
    if (!vm->def->nserials) {
1204 1205
        ADD_ARG_LIT("-serial");
        ADD_ARG_LIT("none");
1206
    } else {
1207
        for (i = 0 ; i < vm->def->nserials ; i++) {
1208
            char buf[4096];
1209
            virDomainChrDefPtr serial = vm->def->serials[i];
1210 1211 1212 1213

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

1214 1215
            ADD_ARG_LIT("-serial");
            ADD_ARG_LIT(buf);
1216 1217 1218
        }
    }

1219
    if (!vm->def->nparallels) {
1220 1221
        ADD_ARG_LIT("-parallel");
        ADD_ARG_LIT("none");
1222
    } else {
1223
        for (i = 0 ; i < vm->def->nparallels ; i++) {
1224
            char buf[4096];
1225
            virDomainChrDefPtr parallel = vm->def->parallels[i];
1226 1227 1228 1229

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

1230 1231
            ADD_ARG_LIT("-parallel");
            ADD_ARG_LIT(buf);
1232 1233 1234
        }
    }

1235
    ADD_ARG_LIT("-usb");
1236 1237 1238
    for (i = 0 ; i < vm->def->ninputs ; i++) {
        virDomainInputDefPtr input = vm->def->inputs[i];

1239
        if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
1240
            ADD_ARG_LIT("-usbdevice");
1241
            ADD_ARG_LIT(input->type == VIR_DOMAIN_INPUT_TYPE_MOUSE ? "mouse" : "tablet");
1242 1243 1244
        }
    }

1245 1246
    if (vm->def->graphics &&
        vm->def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_VNC) {
1247 1248
        virBuffer opt = VIR_BUFFER_INITIALIZER;
        char *optstr;
D
Daniel P. Berrange 已提交
1249

1250
        if (qemuCmdFlags & QEMUD_CMD_FLAG_VNC_COLON) {
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
            if (vm->def->graphics->data.vnc.listenAddr)
                virBufferAdd(&opt, vm->def->graphics->data.vnc.listenAddr, -1);
            else if (driver->vncListen)
                virBufferAdd(&opt, driver->vncListen, -1);

            virBufferVSprintf(&opt, ":%d",
                              vm->def->graphics->data.vnc.port - 5900);

            if (vm->def->graphics->data.vnc.passwd ||
                driver->vncPassword)
                virBufferAddLit(&opt, ",password");

D
Daniel P. Berrange 已提交
1263
            if (driver->vncTLS) {
1264
                virBufferAddLit(&opt, ",tls");
D
Daniel P. Berrange 已提交
1265
                if (driver->vncTLSx509verify) {
1266 1267
                    virBufferVSprintf(&opt, ",x509verify=%s",
                                      driver->vncTLSx509certdir);
D
Daniel P. Berrange 已提交
1268
                } else {
1269 1270
                    virBufferVSprintf(&opt, ",x509=%s",
                                      driver->vncTLSx509certdir);
D
Daniel P. Berrange 已提交
1271 1272 1273
                }
            }
        } else {
1274 1275
            virBufferVSprintf(&opt, "%d",
                              vm->def->graphics->data.vnc.port - 5900);
D
Daniel P. Berrange 已提交
1276
        }
1277 1278 1279 1280
        if (virBufferError(&opt))
            goto no_memory;

        optstr = virBufferContentAndReset(&opt);
1281

1282
        ADD_ARG_LIT("-vnc");
1283
        ADD_ARG(optstr);
1284
        if (vm->def->graphics->data.vnc.keymap) {
1285
            ADD_ARG_LIT("-k");
1286
            ADD_ARG_LIT(vm->def->graphics->data.vnc.keymap);
1287
        }
1288 1289
    } else if (vm->def->graphics &&
               vm->def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_SDL) {
1290 1291 1292 1293
        char *xauth = NULL;
        char *display = NULL;

        if (vm->def->graphics->data.sdl.xauth &&
1294 1295
            virAsprintf(&xauth, "XAUTHORITY=%s",
                        vm->def->graphics->data.sdl.xauth) < 0)
1296 1297
            goto no_memory;
        if (vm->def->graphics->data.sdl.display &&
1298 1299
            virAsprintf(&display, "DISPLAY=%s",
                        vm->def->graphics->data.sdl.display) < 0) {
1300 1301 1302 1303 1304 1305 1306 1307
            VIR_FREE(xauth);
            goto no_memory;
        }

        if (xauth)
            ADD_ENV(xauth);
        if (display)
            ADD_ENV(display);
1308 1309
        if (vm->def->graphics->data.sdl.fullscreen)
            ADD_ARG_LIT("-full-screen");
D
Daniel P. Berrange 已提交
1310 1311
    }

D
Daniel Veillard 已提交
1312
    /* Add sound hardware */
1313
    if (vm->def->nsounds) {
D
Daniel Veillard 已提交
1314
        int size = 100;
1315 1316
        char *modstr;
        if (VIR_ALLOC_N(modstr, size+1) < 0)
D
Daniel Veillard 已提交
1317 1318
            goto no_memory;

1319 1320
        for (i = 0 ; i < vm->def->nsounds && size > 0 ; i++) {
            virDomainSoundDefPtr sound = vm->def->sounds[i];
1321
            const char *model = virDomainSoundModelTypeToString(sound->model);
D
Daniel Veillard 已提交
1322
            if (!model) {
1323
                VIR_FREE(modstr);
1324 1325 1326
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("invalid sound model"));
                goto error;
D
Daniel Veillard 已提交
1327 1328 1329
            }
            strncat(modstr, model, size);
            size -= strlen(model);
1330
            if (i < (vm->def->nsounds - 1))
D
Daniel Veillard 已提交
1331 1332
               strncat(modstr, ",", size--);
        }
1333 1334
        ADD_ARG_LIT("-soundhw");
        ADD_ARG(modstr);
D
Daniel Veillard 已提交
1335 1336
    }

1337
    /* Add host passthrough hardware */
1338
    for (i = 0 ; i < vm->def->nhostdevs ; i++) {
1339 1340
        int ret;
        char* usbdev;
1341
        char* pcidev;
1342
        virDomainHostdevDefPtr hostdev = vm->def->hostdevs[i];
1343

1344
        /* USB */
1345 1346
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {
1347
            if(hostdev->source.subsys.u.usb.vendor) {
1348
                    ret = virAsprintf(&usbdev, "host:%.4x:%.4x",
1349 1350
                               hostdev->source.subsys.u.usb.vendor,
                               hostdev->source.subsys.u.usb.product);
1351 1352

            } else {
1353
                    ret = virAsprintf(&usbdev, "host:%.3d.%.3d",
1354 1355
                               hostdev->source.subsys.u.usb.bus,
                               hostdev->source.subsys.u.usb.device);
1356
            }
1357
            if (ret < 0)
1358
                goto error;
1359

1360 1361 1362 1363
            ADD_ARG_LIT("-usbdevice");
            ADD_ARG_LIT(usbdev);
            VIR_FREE(usbdev);
        }
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380

        /* PCI */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
            ret = virAsprintf(&pcidev, "host=%.2x:%.2x.%.1x",
                           hostdev->source.subsys.u.pci.bus,
                           hostdev->source.subsys.u.pci.slot,
                           hostdev->source.subsys.u.pci.function);
            if (ret < 0) {
                pcidev = NULL;
                goto error;
            }
            ADD_ARG_LIT("-pcidevice");
            ADD_ARG_LIT(pcidev);
            VIR_FREE(pcidev);
        }

1381 1382
    }

1383
    if (migrateFrom) {
1384
        ADD_ARG_LIT("-incoming");
1385
        ADD_ARG_LIT(migrateFrom);
1386 1387
    }

1388
    ADD_ARG(NULL);
1389
    ADD_ENV(NULL);
D
Daniel P. Berrange 已提交
1390

1391
    *retargv = qargv;
1392
    *retenv = qenv;
D
Daniel P. Berrange 已提交
1393 1394 1395
    return 0;

 no_memory:
1396
    virReportOOMError(conn);
1397
 error:
1398 1399
    if (tapfds &&
        *tapfds) {
1400
        for (i = 0; i < *ntapfds; i++)
1401 1402 1403
            close((*tapfds)[i]);
        VIR_FREE(*tapfds);
        *ntapfds = 0;
1404
    }
1405 1406
    if (qargv) {
        for (i = 0 ; i < qargc ; i++)
1407 1408
            VIR_FREE((qargv)[i]);
        VIR_FREE(qargv);
D
Daniel P. Berrange 已提交
1409
    }
1410 1411 1412 1413 1414
    if (qenv) {
        for (i = 0 ; i < qenvc ; i++)
            VIR_FREE((qenv)[i]);
        VIR_FREE(qenv);
    }
D
Daniel P. Berrange 已提交
1415
    return -1;
1416 1417 1418 1419

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
1420 1421 1422 1423 1424
#undef ADD_USBDISK
#undef ADD_ENV
#undef ADD_ENV_COPY
#undef ADD_ENV_LIT
#undef ADD_ENV_SPACE
D
Daniel P. Berrange 已提交
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


/* 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) {
1470
        virReportOOMError(conn);
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
        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) {
1500
        virReportOOMError(conn);
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
        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;
1511
    if(!(tmp = virXPathString(conn, "string(./@state)", ctxt))) {
1512 1513 1514
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("invalid domain state"));
        goto error;
1515 1516 1517 1518
    } else {
        status->state = virDomainStateTypeFromString(tmp);
        VIR_FREE(tmp);
    }
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570

    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;

1571 1572 1573
    virBufferVSprintf(&buf, "<domstatus state='%s' pid='%d'>\n",
                      virDomainStateTypeToString(vm->state),
                      vm->pid);
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
    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;
}