qemu_command.c 407.8 KB
Newer Older
1 2 3
/*
 * qemu_command.c: QEMU command generation
 *
M
Martin Kletzander 已提交
4
 * Copyright (C) 2006-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include "qemu_command.h"
27
#include "qemu_hostdev.h"
28 29
#include "qemu_capabilities.h"
#include "cpu/cpu.h"
30
#include "dirname.h"
31
#include "passfd.h"
32
#include "viralloc.h"
33
#include "virlog.h"
34
#include "virarch.h"
35
#include "virerror.h"
E
Eric Blake 已提交
36
#include "virfile.h"
37
#include "virnetdev.h"
38
#include "virstring.h"
39
#include "virtime.h"
40
#include "viruuid.h"
41 42
#include "c-ctype.h"
#include "domain_nwfilter.h"
43
#include "domain_addr.h"
44
#include "domain_audit.h"
M
Michal Novotny 已提交
45
#include "domain_conf.h"
46
#include "snapshot_conf.h"
47
#include "storage_conf.h"
48
#include "network/bridge_driver.h"
49
#include "virnetdevtap.h"
50
#include "base64.h"
51
#include "device_conf.h"
52
#include "virstoragefile.h"
53
#include "virtpm.h"
54
#include "virscsi.h"
55 56 57
#if defined(__linux__)
# include <linux/capability.h>
#endif
58 59 60 61 62 63

#include <sys/stat.h>
#include <fcntl.h>

#define VIR_FROM_THIS VIR_FROM_QEMU

64 65
VIR_LOG_INIT("qemu.qemu_command");

66 67 68 69
#define VIO_ADDR_NET 0x1000ul
#define VIO_ADDR_SCSI 0x2000ul
#define VIO_ADDR_SERIAL 0x30000000ul
#define VIO_ADDR_NVRAM 0x3000ul
70 71 72 73 74 75 76 77 78 79

VIR_ENUM_DECL(virDomainDiskQEMUBus)
VIR_ENUM_IMPL(virDomainDiskQEMUBus, VIR_DOMAIN_DISK_BUS_LAST,
              "ide",
              "floppy",
              "scsi",
              "virtio",
              "xen",
              "usb",
              "uml",
80 81
              "sata",
              "sd")
82 83 84 85 86 87 88 89


VIR_ENUM_DECL(qemuDiskCacheV1)
VIR_ENUM_DECL(qemuDiskCacheV2)

VIR_ENUM_IMPL(qemuDiskCacheV1, VIR_DOMAIN_DISK_CACHE_LAST,
              "default",
              "off",
90 91
              "off",  /* writethrough not supported, so for safety, disable */
              "on",   /* Old 'on' was equivalent to 'writeback' */
92 93
              "off",  /* directsync not supported, for safety, disable */
              "off"); /* unsafe not supported, for safety, disable */
94 95 96 97 98

VIR_ENUM_IMPL(qemuDiskCacheV2, VIR_DOMAIN_DISK_CACHE_LAST,
              "default",
              "none",
              "writethrough",
99
              "writeback",
100 101
              "directsync",
              "unsafe");
102 103 104 105 106 107 108 109 110 111 112

VIR_ENUM_DECL(qemuVideo)

VIR_ENUM_IMPL(qemuVideo, VIR_DOMAIN_VIDEO_TYPE_LAST,
              "std",
              "cirrus",
              "vmware",
              "", /* no arg needed for xen */
              "", /* don't support vbox */
              "qxl");

113 114 115 116 117 118 119 120 121 122
VIR_ENUM_DECL(qemuDeviceVideo)

VIR_ENUM_IMPL(qemuDeviceVideo, VIR_DOMAIN_VIDEO_TYPE_LAST,
              "VGA",
              "cirrus-vga",
              "vmware-svga",
              "", /* no device for xen */
              "", /* don't support vbox */
              "qxl-vga");

123 124 125 126 127 128
VIR_ENUM_DECL(qemuSoundCodec)

VIR_ENUM_IMPL(qemuSoundCodec, VIR_DOMAIN_SOUND_CODEC_TYPE_LAST,
              "hda-duplex",
              "hda-micro");

129 130 131 132 133 134 135 136 137 138 139
VIR_ENUM_DECL(qemuControllerModelUSB)

VIR_ENUM_IMPL(qemuControllerModelUSB, VIR_DOMAIN_CONTROLLER_MODEL_USB_LAST,
              "piix3-usb-uhci",
              "piix4-usb-uhci",
              "usb-ehci",
              "ich9-usb-ehci1",
              "ich9-usb-uhci1",
              "ich9-usb-uhci2",
              "ich9-usb-uhci3",
              "vt82c686b-usb-uhci",
G
Gerd Hoffmann 已提交
140
              "pci-ohci",
141 142
              "nec-usb-xhci",
              "none");
143

144 145 146 147
VIR_ENUM_DECL(qemuDomainFSDriver)
VIR_ENUM_IMPL(qemuDomainFSDriver, VIR_DOMAIN_FS_DRIVER_TYPE_LAST,
              "local",
              "local",
148
              "handle",
149
              NULL,
150
              NULL);
151

152

153 154
/**
 * qemuPhysIfaceConnect:
155
 * @def: the definition of the VM (needed by 802.1Qbh and audit)
156
 * @driver: pointer to the driver instance
157
 * @net: pointer to he VM's interface description with direct device type
158
 * @qemuCaps: flags for qemu
M
Michael Wood 已提交
159
 * @vmop: VM operation type
160 161 162 163
 *
 * Returns a filedescriptor on success or -1 in case of error.
 */
int
164
qemuPhysIfaceConnect(virDomainDefPtr def,
165
                     virQEMUDriverPtr driver,
166
                     virDomainNetDefPtr net,
167
                     virQEMUCapsPtr qemuCaps,
168
                     virNetDevVPortProfileOp vmop)
169 170 171 172
{
    int rc;
    char *res_ifname = NULL;
    int vnet_hdr = 0;
173
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
174

175
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNET_HDR) &&
176 177 178
        net->model && STREQ(net->model, "virtio"))
        vnet_hdr = 1;

179
    rc = virNetDevMacVLanCreateWithVPortProfile(
180
        net->ifname, &net->mac,
181 182
        virDomainNetGetActualDirectDev(net),
        virDomainNetGetActualDirectMode(net),
183
        true, vnet_hdr, def->uuid,
184
        virDomainNetGetActualVirtPortProfile(net),
185
        &res_ifname,
186
        vmop, cfg->stateDir,
187
        virDomainNetGetActualBandwidth(net));
188
    if (rc >= 0) {
189 190 191 192
        if (virSecurityManagerSetTapFDLabel(driver->securityManager,
                                            def, rc) < 0)
            goto error;

193
        virDomainAuditNetDevice(def, net, res_ifname, true);
194 195 196 197
        VIR_FREE(net->ifname);
        net->ifname = res_ifname;
    }

198
    virObjectUnref(cfg);
199
    return rc;
200

201
 error:
202 203 204 205 206
    ignore_value(virNetDevMacVLanDeleteWithVPortProfile(
                     res_ifname, &net->mac,
                     virDomainNetGetActualDirectDev(net),
                     virDomainNetGetActualDirectMode(net),
                     virDomainNetGetActualVirtPortProfile(net),
207
                     cfg->stateDir));
208
    VIR_FREE(res_ifname);
209
    virObjectUnref(cfg);
210
    return -1;
211 212 213
}


214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
/**
 * qemuCreateInBridgePortWithHelper:
 * @cfg: the configuration object in which the helper name is looked up
 * @brname: the bridge name
 * @ifname: the returned interface name
 * @macaddr: the returned MAC address
 * @tapfd: file descriptor return value for the new tap device
 * @flags: OR of virNetDevTapCreateFlags:

 *   VIR_NETDEV_TAP_CREATE_VNET_HDR
 *     - Enable IFF_VNET_HDR on the tap device
 *
 * This function creates a new tap device on a bridge using an external
 * helper.  The final name for the bridge will be stored in @ifname.
 *
 * Returns 0 in case of success or -1 on failure
 */
static int qemuCreateInBridgePortWithHelper(virQEMUDriverConfigPtr cfg,
                                            const char *brname,
                                            char **ifname,
                                            int *tapfd,
                                            unsigned int flags)
{
    virCommandPtr cmd;
    int pair[2] = { -1, -1 };

    if ((flags & ~VIR_NETDEV_TAP_CREATE_VNET_HDR) != VIR_NETDEV_TAP_CREATE_IFUP)
        return -1;

    if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) < 0) {
        virReportSystemError(errno, "%s", _("failed to create socket"));
        return -1;
    }

    cmd = virCommandNew(cfg->bridgeHelperName);
    if (flags & VIR_NETDEV_TAP_CREATE_VNET_HDR)
        virCommandAddArgFormat(cmd, "--use-vnet");
    virCommandAddArgFormat(cmd, "--br=%s", brname);
    virCommandAddArgFormat(cmd, "--fd=%d", pair[1]);
253 254
    virCommandPassFD(cmd, pair[1],
                     VIR_COMMAND_PASS_FD_CLOSE_PARENT);
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
    virCommandClearCaps(cmd);
#ifdef CAP_NET_ADMIN
    virCommandAllowCap(cmd, CAP_NET_ADMIN);
#endif
    if (virCommandRunAsync(cmd, NULL) < 0) {
        *tapfd = -1;
        goto cleanup;
    }

    do {
        *tapfd = recvfd(pair[0], 0);
    } while (*tapfd < 0 && errno == EINTR);
    if (*tapfd < 0) {
        virReportSystemError(errno, "%s",
                             _("failed to retrieve file descriptor for interface"));
        goto cleanup;
    }

    if (virNetDevTapGetName(*tapfd, ifname) < 0 ||
274
        virCommandWait(cmd, NULL) < 0) {
275 276 277 278
        VIR_FORCE_CLOSE(*tapfd);
        *tapfd = -1;
    }

279
 cleanup:
280 281 282 283 284
    virCommandFree(cmd);
    VIR_FORCE_CLOSE(pair[0]);
    return *tapfd < 0 ? -1 : 0;
}

285
int
286 287
qemuNetworkIfaceConnect(virDomainDefPtr def,
                        virConnectPtr conn,
288
                        virQEMUDriverPtr driver,
289
                        virDomainNetDefPtr net,
290 291 292
                        virQEMUCapsPtr qemuCaps,
                        int *tapfd,
                        int *tapfdSize)
293 294
{
    char *brname = NULL;
295
    int ret = -1;
296
    unsigned int tap_create_flags = VIR_NETDEV_TAP_CREATE_IFUP;
E
Eric Blake 已提交
297
    bool template_ifname = false;
298
    int actualType = virDomainNetGetActualType(net);
299
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
300

301
    if (actualType == VIR_DOMAIN_NET_TYPE_NETWORK) {
302
        bool fail = false;
303 304 305 306
        virErrorPtr errobj;
        virNetworkPtr network = virNetworkLookupByName(conn,
                                                       net->data.network.name);
        if (!network)
307
            return ret;
308

309 310
        if (!(brname = virNetworkGetBridgeName(network)))
           fail = true;
311 312 313 314 315 316 317 318

        /* Make sure any above failure is preserved */
        errobj = virSaveLastError();
        virNetworkFree(network);
        virSetError(errobj);
        virFreeError(errobj);

        if (fail)
319
            return ret;
320

321
    } else if (actualType == VIR_DOMAIN_NET_TYPE_BRIDGE) {
322
        if (VIR_STRDUP(brname, virDomainNetGetActualBridgeName(net)) < 0)
323
            return ret;
324
    } else {
325 326 327
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Network type %d is not supported"),
                       virDomainNetGetActualType(net));
328
        return ret;
329 330 331
    }

    if (!net->ifname ||
E
Eric Blake 已提交
332
        STRPREFIX(net->ifname, VIR_NET_GENERATED_PREFIX) ||
333 334
        strchr(net->ifname, '%')) {
        VIR_FREE(net->ifname);
335
        if (VIR_STRDUP(net->ifname, VIR_NET_GENERATED_PREFIX "%d") < 0)
336
            goto cleanup;
337
        /* avoid exposing vnet%d in getXMLDesc or error outputs */
E
Eric Blake 已提交
338
        template_ifname = true;
339 340
    }

341
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNET_HDR) &&
342 343 344
        net->model && STREQ(net->model, "virtio")) {
        tap_create_flags |= VIR_NETDEV_TAP_CREATE_VNET_HDR;
    }
345

346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
    if (cfg->privileged) {
        if (virNetDevTapCreateInBridgePort(brname, &net->ifname, &net->mac,
                                           def->uuid, tapfd, *tapfdSize,
                                           virDomainNetGetActualVirtPortProfile(net),
                                           virDomainNetGetActualVlan(net),
                                           tap_create_flags) < 0) {
            virDomainAuditNetDevice(def, net, "/dev/net/tun", false);
            goto cleanup;
        }
    } else {
        if (qemuCreateInBridgePortWithHelper(cfg, brname,
                                             &net->ifname,
                                             tapfd, tap_create_flags) < 0) {
            virDomainAuditNetDevice(def, net, "/dev/net/tun", false);
            goto cleanup;
        }
        /* qemuCreateInBridgePortWithHelper can only create a single FD */
        if (*tapfdSize > 1) {
            VIR_WARN("Ignoring multiqueue network request");
            *tapfdSize = 1;
        }
367 368
    }

369 370 371
    virDomainAuditNetDevice(def, net, "/dev/net/tun", true);

    if (cfg->macFilter &&
372 373 374 375
        ebtablesAddForwardAllowIn(driver->ebtables,
                                  net->ifname,
                                  &net->mac) < 0)
        goto cleanup;
376

377
    if (virNetDevBandwidthSet(net->ifname,
378 379
                              virDomainNetGetActualBandwidth(net),
                              false) < 0) {
380 381 382
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot set bandwidth limits on %s"),
                       net->ifname);
383 384 385
        goto cleanup;
    }

386 387 388
    if (net->filter && net->ifname &&
        virDomainConfNWFilterInstantiate(conn, def->uuid, net) < 0) {
        goto cleanup;
389 390
    }

391 392
    ret = 0;

393
 cleanup:
394
    if (ret < 0) {
395
        size_t i;
396
        for (i = 0; i < *tapfdSize && tapfd[i] >= 0; i++)
397 398 399 400
            VIR_FORCE_CLOSE(tapfd[i]);
        if (template_ifname)
            VIR_FREE(net->ifname);
    }
401
    VIR_FREE(brname);
402
    virObjectUnref(cfg);
403

404
    return ret;
405 406
}

407
static bool
408 409 410
qemuDomainSupportsNicdev(virDomainDefPtr def,
                         virQEMUCapsPtr qemuCaps,
                         virDomainNetDefPtr net)
411 412 413 414
{
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
        return false;

415
    /* non-virtio ARM nics require legacy -net nic */
416 417
    if (((def->os.arch == VIR_ARCH_ARMV7L) ||
        (def->os.arch == VIR_ARCH_AARCH64)) &&
418
        net->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
419 420 421 422 423 424
        return false;

    return true;
}

static bool
425 426 427
qemuDomainSupportsNetdev(virDomainDefPtr def,
                         virQEMUCapsPtr qemuCaps,
                         virDomainNetDefPtr net)
428
{
429
    if (!qemuDomainSupportsNicdev(def, qemuCaps, net))
430 431 432
        return false;
    return virQEMUCapsGet(qemuCaps, QEMU_CAPS_NETDEV);
}
433

434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
/**
 * qemuOpenVhostNet:
 * @def: domain definition
 * @net: network definition
 * @qemuCaps: qemu binary capabilities
 * @vhostfd: array of opened vhost-net device
 * @vhostfdSize: number of file descriptors in @vhostfd array
 *
 * Open vhost-net, multiple times - if requested.
 * In case, no vhost-net is needed, @vhostfdSize is set to 0
 * and 0 is returned.
 *
 * Returns: 0 on success
 *         -1 on failure
 */
449
int
450 451
qemuOpenVhostNet(virDomainDefPtr def,
                 virDomainNetDefPtr net,
452
                 virQEMUCapsPtr qemuCaps,
453 454
                 int *vhostfd,
                 int *vhostfdSize)
455
{
456
    size_t i;
457

458 459 460 461
    /* If running a plain QEMU guest, or
     * if the config says explicitly to not use vhost, return now*/
    if (def->virtType != VIR_DOMAIN_VIRT_KVM ||
        net->driver.virtio.name == VIR_DOMAIN_NET_BACKEND_TYPE_QEMU) {
462 463
        *vhostfdSize = 0;
        return 0;
464 465 466 467 468
    }

    /* If qemu doesn't support vhost-net mode (including the -netdev command
     * option), don't try to open the device.
     */
469
    if (!(virQEMUCapsGet(qemuCaps, QEMU_CAPS_VHOST_NET) &&
470
          qemuDomainSupportsNetdev(def, qemuCaps, net))) {
471
        if (net->driver.virtio.name == VIR_DOMAIN_NET_BACKEND_TYPE_VHOST) {
472 473 474
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("vhost-net is not supported with "
                                   "this QEMU binary"));
475 476
            return -1;
        }
477
        *vhostfdSize = 0;
478 479
        return 0;
    }
480

481 482
    /* If the nic model isn't virtio, don't try to open. */
    if (!(net->model && STREQ(net->model, "virtio"))) {
483
        if (net->driver.virtio.name == VIR_DOMAIN_NET_BACKEND_TYPE_VHOST) {
484 485 486
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("vhost-net is only supported for "
                                   "virtio network interfaces"));
487 488
            return -1;
        }
489
        *vhostfdSize = 0;
490 491 492
        return 0;
    }

493 494
    for (i = 0; i < *vhostfdSize; i++) {
        vhostfd[i] = open("/dev/vhost-net", O_RDWR);
495

496 497 498 499 500 501 502 503 504 505 506
        /* If the config says explicitly to use vhost and we couldn't open it,
         * report an error.
         */
        if (vhostfd[i] < 0) {
            virDomainAuditNetDevice(def, net, "/dev/vhost-net", false);
            if (net->driver.virtio.name == VIR_DOMAIN_NET_BACKEND_TYPE_VHOST) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("vhost-net was requested for an interface, "
                                       "but is unavailable"));
                goto error;
            }
507
            VIR_WARN("Unable to open vhost-net. Opened so far %zu, requested %d",
508 509 510
                     i, *vhostfdSize);
            *vhostfdSize = i;
            break;
511
        }
512
    }
513
    virDomainAuditNetDevice(def, net, "/dev/vhost-net", *vhostfdSize);
514
    return 0;
515

516
 error:
517 518 519 520
    while (i--)
        VIR_FORCE_CLOSE(vhostfd[i]);

    return -1;
521 522
}

523 524 525 526
int
qemuNetworkPrepareDevices(virDomainDefPtr def)
{
    int ret = -1;
527
    size_t i;
528

529 530
    for (i = 0; i < def->nnets; i++) {
        virDomainNetDefPtr net = def->nets[i];
531 532 533 534 535 536
        int actualType;

        /* If appropriate, grab a physical device from the configured
         * network's pool of devices, or resolve bridge device name
         * to the one defined in the network definition.
         */
537
        if (networkAllocateActualDevice(def, net) < 0)
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
            goto cleanup;

        actualType = virDomainNetGetActualType(net);
        if (actualType == VIR_DOMAIN_NET_TYPE_HOSTDEV &&
            net->type == VIR_DOMAIN_NET_TYPE_NETWORK) {
            /* Each type='hostdev' network device must also have a
             * corresponding entry in the hostdevs array. For netdevs
             * that are hardcoded as type='hostdev', this is already
             * done by the parser, but for those allocated from a
             * network / determined at runtime, we need to do it
             * separately.
             */
            virDomainHostdevDefPtr hostdev = virDomainNetGetActualHostdev(net);

            if (virDomainHostdevFind(def, hostdev, NULL) >= 0) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("PCI device %04x:%02x:%02x.%x "
                                 "allocated from network %s is already "
                                 "in use by domain %s"),
                               hostdev->source.subsys.u.pci.addr.domain,
                               hostdev->source.subsys.u.pci.addr.bus,
                               hostdev->source.subsys.u.pci.addr.slot,
                               hostdev->source.subsys.u.pci.addr.function,
                               net->data.network.name,
                               def->name);
                goto cleanup;
            }
565
            if (virDomainHostdevInsert(def, hostdev) < 0)
566 567 568 569
                goto cleanup;
        }
    }
    ret = 0;
570
 cleanup:
571 572
    return ret;
}
573

574
static int qemuDomainDeviceAliasIndex(const virDomainDeviceInfo *info,
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
                                      const char *prefix)
{
    int idx;

    if (!info->alias)
        return -1;
    if (!STRPREFIX(info->alias, prefix))
        return -1;

    if (virStrToLong_i(info->alias + strlen(prefix), NULL, 10, &idx) < 0)
        return -1;

    return idx;
}


int qemuDomainNetVLAN(virDomainNetDefPtr def)
{
    return qemuDomainDeviceAliasIndex(&def->info, "net");
}


/* Names used before -drive existed */
static int qemuAssignDeviceDiskAliasLegacy(virDomainDiskDefPtr disk)
{
600
    char *dev_name;
601

602 603 604
    if (VIR_STRDUP(dev_name,
                   disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM &&
                   STREQ(disk->dst, "hdc") ? "cdrom" : disk->dst) < 0)
605
        return -1;
606
    disk->info.alias = dev_name;
607 608 609 610 611
    return 0;
}


char *qemuDeviceDriveHostAlias(virDomainDiskDefPtr disk,
612
                               virQEMUCapsPtr qemuCaps)
613 614 615
{
    char *ret;

616
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
617 618
        ignore_value(virAsprintf(&ret, "%s%s", QEMU_DRIVE_HOST_PREFIX,
                                 disk->info.alias));
619
    } else {
620
        ignore_value(VIR_STRDUP(ret, disk->info.alias));
621 622 623 624 625 626 627 628 629 630
    }
    return ret;
}


/* Names used before -drive supported the id= option */
static int qemuAssignDeviceDiskAliasFixed(virDomainDiskDefPtr disk)
{
    int busid, devid;
    int ret;
631
    char *dev_name;
632 633

    if (virDiskNameToBusDeviceIndex(disk, &busid, &devid) < 0) {
634 635 636
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot convert disk '%s' to bus/device index"),
                       disk->dst);
637 638 639 640 641
        return -1;
    }

    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_IDE:
642
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK)
643
            ret = virAsprintf(&dev_name, "ide%d-hd%d", busid, devid);
644
        else
645
            ret = virAsprintf(&dev_name, "ide%d-cd%d", busid, devid);
646 647 648
        break;
    case VIR_DOMAIN_DISK_BUS_SCSI:
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK)
649
            ret = virAsprintf(&dev_name, "scsi%d-hd%d", busid, devid);
650
        else
651
            ret = virAsprintf(&dev_name, "scsi%d-cd%d", busid, devid);
652 653
        break;
    case VIR_DOMAIN_DISK_BUS_FDC:
654
        ret = virAsprintf(&dev_name, "floppy%d", devid);
655 656
        break;
    case VIR_DOMAIN_DISK_BUS_VIRTIO:
657
        ret = virAsprintf(&dev_name, "virtio%d", devid);
658 659
        break;
    case VIR_DOMAIN_DISK_BUS_XEN:
660
        ret = virAsprintf(&dev_name, "xenblk%d", devid);
661
        break;
662 663 664
    case VIR_DOMAIN_DISK_BUS_SD:
        ret = virAsprintf(&dev_name, "sd%d", devid);
        break;
665
    default:
666 667 668
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported disk name mapping for bus '%s'"),
                       virDomainDiskBusTypeToString(disk->bus));
669 670 671
        return -1;
    }

672
    if (ret == -1)
673 674
        return -1;

675
    disk->info.alias = dev_name;
676 677 678 679

    return 0;
}

680
static int
681
qemuSetSCSIControllerModel(virDomainDefPtr def,
682
                           virQEMUCapsPtr qemuCaps,
683
                           int *model)
684 685 686 687
{
    if (*model > 0) {
        switch (*model) {
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC:
688
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_LSI)) {
689 690
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support "
691
                                 "the LSI 53C895A SCSI controller"));
692 693 694 695
                return -1;
            }
            break;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI:
696
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_SCSI)) {
697 698 699 700 701 702 703 704 705
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support "
                                 "virtio scsi controller"));
                return -1;
            }
            break;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI:
            /*TODO: need checking work here if necessary */
            break;
706 707 708 709 710 711 712 713
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1078:
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_MEGASAS)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support "
                                 "the LSI SAS1078 controller"));
                return -1;
            }
            break;
714 715 716 717 718 719
        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported controller model: %s"),
                           virDomainControllerModelSCSITypeToString(*model));
            return -1;
        }
720
    } else {
721
        if ((def->os.arch == VIR_ARCH_PPC64) &&
722 723
            STREQ(def->os.machine, "pseries")) {
            *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI;
724
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_LSI)) {
725
            *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC;
726 727
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_SCSI)) {
            *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI;
728 729 730 731 732
        } else {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Unable to determine model for scsi controller"));
            return -1;
        }
733
    }
734 735

    return 0;
736
}
737 738

/* Our custom -drive naming scheme used with id= */
739 740
static int
qemuAssignDeviceDiskAliasCustom(virDomainDefPtr def,
741
                                virDomainDiskDefPtr disk,
742
                                virQEMUCapsPtr qemuCaps)
743 744
{
    const char *prefix = virDomainDiskBusTypeToString(disk->bus);
745 746
    int controllerModel = -1;

747
    if (disk->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
748 749
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
            controllerModel =
H
Han Cheng 已提交
750 751
                virDomainDeviceFindControllerModel(def, &disk->info,
                                                   VIR_DOMAIN_CONTROLLER_TYPE_SCSI);
752

753
            if ((qemuSetSCSIControllerModel(def, qemuCaps, &controllerModel)) < 0)
754 755
                return -1;
        }
756 757 758 759 760 761 762

        if (disk->bus != VIR_DOMAIN_DISK_BUS_SCSI ||
            controllerModel == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
            if (virAsprintf(&disk->info.alias, "%s%d-%d-%d", prefix,
                            disk->info.addr.drive.controller,
                            disk->info.addr.drive.bus,
                            disk->info.addr.drive.unit) < 0)
763
                return -1;
764 765 766 767 768 769
        } else {
            if (virAsprintf(&disk->info.alias, "%s%d-%d-%d-%d", prefix,
                            disk->info.addr.drive.controller,
                            disk->info.addr.drive.bus,
                            disk->info.addr.drive.target,
                            disk->info.addr.drive.unit) < 0)
770
                return -1;
771
        }
772 773 774
    } else {
        int idx = virDiskNameToIndex(disk->dst);
        if (virAsprintf(&disk->info.alias, "%s-disk%d", prefix, idx) < 0)
775
            return -1;
776 777 778 779 780 781 782
    }

    return 0;
}


int
783 784
qemuAssignDeviceDiskAlias(virDomainDefPtr vmdef,
                          virDomainDiskDefPtr def,
785
                          virQEMUCapsPtr qemuCaps)
786
{
787 788 789
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE)) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
            return qemuAssignDeviceDiskAliasCustom(vmdef, def, qemuCaps);
790 791 792 793 794 795 796 797 798 799 800 801
        else
            return qemuAssignDeviceDiskAliasFixed(def);
    } else {
        return qemuAssignDeviceDiskAliasLegacy(def);
    }
}


int
qemuAssignDeviceNetAlias(virDomainDefPtr def, virDomainNetDefPtr net, int idx)
{
    if (idx == -1) {
802
        size_t i;
803
        idx = 0;
804
        for (i = 0; i < def->nnets; i++) {
805
            int thisidx;
806

807 808
            if (virDomainNetGetActualType(def->nets[i])
                == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
809 810 811
                /* type='hostdev' interfaces have a hostdev%d alias */
               continue;
            }
812
            if ((thisidx = qemuDomainDeviceAliasIndex(&def->nets[i]->info, "net")) < 0) {
813 814
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Unable to determine device index for network device"));
815 816 817 818 819 820 821
                return -1;
            }
            if (thisidx >= idx)
                idx = thisidx + 1;
        }
    }

822 823 824
    if (virAsprintf(&net->info.alias, "net%d", idx) < 0)
        return -1;
    return 0;
825 826 827 828 829 830 831
}


int
qemuAssignDeviceHostdevAlias(virDomainDefPtr def, virDomainHostdevDefPtr hostdev, int idx)
{
    if (idx == -1) {
832
        size_t i;
833
        idx = 0;
834
        for (i = 0; i < def->nhostdevs; i++) {
835
            int thisidx;
836
            if ((thisidx = qemuDomainDeviceAliasIndex(def->hostdevs[i]->info, "hostdev")) < 0) {
837 838
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Unable to determine device index for hostdev device"));
839 840 841 842 843 844 845
                return -1;
            }
            if (thisidx >= idx)
                idx = thisidx + 1;
        }
    }

846
    if (virAsprintf(&hostdev->info->alias, "hostdev%d", idx) < 0)
847 848 849 850 851 852
        return -1;

    return 0;
}


853 854 855 856
int
qemuAssignDeviceRedirdevAlias(virDomainDefPtr def, virDomainRedirdevDefPtr redirdev, int idx)
{
    if (idx == -1) {
857
        size_t i;
858
        idx = 0;
859
        for (i = 0; i < def->nredirdevs; i++) {
860 861
            int thisidx;
            if ((thisidx = qemuDomainDeviceAliasIndex(&def->redirdevs[i]->info, "redir")) < 0) {
862 863
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Unable to determine device index for redirected device"));
864 865 866 867 868 869 870
                return -1;
            }
            if (thisidx >= idx)
                idx = thisidx + 1;
        }
    }

871 872 873
    if (virAsprintf(&redirdev->info.alias, "redir%d", idx) < 0)
        return -1;
    return 0;
874 875 876
}


877 878 879 880 881
int
qemuAssignDeviceControllerAlias(virDomainControllerDefPtr controller)
{
    const char *prefix = virDomainControllerTypeToString(controller->type);

882 883 884 885 886 887 888 889 890 891 892 893
    if (controller->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI) {
        /* only pcie-root uses a different naming convention
         * ("pcie.0"), because it is hardcoded that way in qemu. All
         * other buses use the consistent "pci.%u".
         */
        if (controller->model == VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT)
            return virAsprintf(&controller->info.alias, "pcie.%d", controller->idx);
        else
            return virAsprintf(&controller->info.alias, "pci.%d", controller->idx);
    }

    return virAsprintf(&controller->info.alias, "%s%d", prefix, controller->idx);
894 895
}

896 897 898 899 900
static ssize_t
qemuGetNextChrDevIndex(virDomainDefPtr def,
                       virDomainChrDefPtr chr,
                       const char *prefix)
{
901 902
    const virDomainChrDef **arrPtr;
    size_t cnt;
903 904 905 906 907 908 909
    size_t i;
    ssize_t idx = 0;
    const char *prefix2 = NULL;

    if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE)
        prefix2 = "serial";

910
    virDomainChrGetDomainPtrs(def, chr->deviceType, &arrPtr, &cnt);
911

912
    for (i = 0; i < cnt; i++) {
913
        ssize_t thisidx;
914
        if (((thisidx = qemuDomainDeviceAliasIndex(&arrPtr[i]->info, prefix)) < 0) &&
915
            (prefix2 &&
916
             (thisidx = qemuDomainDeviceAliasIndex(&arrPtr[i]->info, prefix2)) < 0)) {
917 918 919 920 921 922 923 924 925 926 927 928
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Unable to determine device index for character device"));
            return -1;
        }
        if (thisidx >= idx)
            idx = thisidx + 1;
    }

    return idx;
}


929
int
930
qemuAssignDeviceChrAlias(virDomainDefPtr def,
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956
                         virDomainChrDefPtr chr,
                         ssize_t idx)
{
    const char *prefix = NULL;

    switch ((enum virDomainChrDeviceType) chr->deviceType) {
    case VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL:
        prefix = "parallel";
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL:
        prefix = "serial";
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
        prefix = "console";
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
        prefix = "channel";
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_LAST:
        return -1;
    }

957 958 959
    if (idx == -1 && (idx = qemuGetNextChrDevIndex(def, chr, prefix)) < 0)
        return -1;

960 961
    return virAsprintf(&chr->info.alias, "%s%zd", prefix, idx);
}
962

963
int
964
qemuAssignDeviceAliases(virDomainDefPtr def, virQEMUCapsPtr qemuCaps)
965
{
966
    size_t i;
967

968
    for (i = 0; i < def->ndisks; i++) {
969
        if (qemuAssignDeviceDiskAlias(def, def->disks[i], qemuCaps) < 0)
970 971
            return -1;
    }
972 973
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NET_NAME) ||
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
974
        for (i = 0; i < def->nnets; i++) {
975 976 977
            /* type='hostdev' interfaces are also on the hostdevs list,
             * and will have their alias assigned with other hostdevs.
             */
978 979 980
            if (virDomainNetGetActualType(def->nets[i])
                != VIR_DOMAIN_NET_TYPE_HOSTDEV &&
                qemuAssignDeviceNetAlias(def, def->nets[i], i) < 0) {
981
                return -1;
982
            }
983 984 985
        }
    }

986
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
987 988
        return 0;

989
    for (i = 0; i < def->nfss; i++) {
990
        if (virAsprintf(&def->fss[i]->info.alias, "fs%zu", i) < 0)
991
            return -1;
992
    }
993
    for (i = 0; i < def->nsounds; i++) {
994
        if (virAsprintf(&def->sounds[i]->info.alias, "sound%zu", i) < 0)
995
            return -1;
996
    }
997
    for (i = 0; i < def->nhostdevs; i++) {
998 999 1000
        if (qemuAssignDeviceHostdevAlias(def, def->hostdevs[i], i) < 0)
            return -1;
    }
1001
    for (i = 0; i < def->nredirdevs; i++) {
1002 1003 1004
        if (qemuAssignDeviceRedirdevAlias(def, def->redirdevs[i], i) < 0)
            return -1;
    }
1005
    for (i = 0; i < def->nvideos; i++) {
1006
        if (virAsprintf(&def->videos[i]->info.alias, "video%zu", i) < 0)
1007
            return -1;
1008
    }
1009
    for (i = 0; i < def->ncontrollers; i++) {
1010 1011 1012
        if (qemuAssignDeviceControllerAlias(def->controllers[i]) < 0)
            return -1;
    }
1013
    for (i = 0; i < def->ninputs; i++) {
1014
        if (virAsprintf(&def->inputs[i]->info.alias, "input%zu", i) < 0)
1015
            return -1;
1016
    }
1017
    for (i = 0; i < def->nparallels; i++) {
1018
        if (qemuAssignDeviceChrAlias(def, def->parallels[i], i) < 0)
1019
            return -1;
1020
    }
1021
    for (i = 0; i < def->nserials; i++) {
1022
        if (qemuAssignDeviceChrAlias(def, def->serials[i], i) < 0)
1023
            return -1;
1024
    }
1025
    for (i = 0; i < def->nchannels; i++) {
1026
        if (qemuAssignDeviceChrAlias(def, def->channels[i], i) < 0)
1027
            return -1;
1028
    }
1029
    for (i = 0; i < def->nconsoles; i++) {
1030
        if (qemuAssignDeviceChrAlias(def, def->consoles[i], i) < 0)
1031
            return -1;
E
Eric Blake 已提交
1032
    }
1033
    for (i = 0; i < def->nhubs; i++) {
1034
        if (virAsprintf(&def->hubs[i]->info.alias, "hub%zu", i) < 0)
1035
            return -1;
M
Marc-André Lureau 已提交
1036
    }
1037
    for (i = 0; i < def->nsmartcards; i++) {
1038
        if (virAsprintf(&def->smartcards[i]->info.alias, "smartcard%zu", i) < 0)
1039
            return -1;
1040 1041 1042
    }
    if (def->watchdog) {
        if (virAsprintf(&def->watchdog->info.alias, "watchdog%d", 0) < 0)
1043
            return -1;
1044 1045 1046
    }
    if (def->memballoon) {
        if (virAsprintf(&def->memballoon->info.alias, "balloon%d", 0) < 0)
1047
            return -1;
1048
    }
1049 1050
    if (def->rng) {
        if (virAsprintf(&def->rng->info.alias, "rng%d", 0) < 0)
1051
            return -1;
1052
    }
1053 1054
    if (def->tpm) {
        if (virAsprintf(&def->tpm->info.alias, "tpm%d", 0) < 0)
1055
            return -1;
1056
    }
1057 1058 1059 1060

    return 0;
}

1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
/* S390 ccw bus support */

struct _qemuDomainCCWAddressSet {
    virHashTablePtr defined;
    virDomainDeviceCCWAddress next;
};

static char*
qemuCCWAddressAsString(virDomainDeviceCCWAddressPtr addr)
{
    char *addrstr = NULL;

1073 1074 1075 1076
    ignore_value(virAsprintf(&addrstr, "%x.%x.%04x",
                             addr->cssid,
                             addr->ssid,
                             addr->devno));
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
    return addrstr;
}

static int
qemuCCWAdressIncrement(virDomainDeviceCCWAddressPtr addr)
{
    virDomainDeviceCCWAddress ccwaddr = *addr;

    /* We are not touching subchannel sets and channel subsystems */
    if (++ccwaddr.devno > VIR_DOMAIN_DEVICE_CCW_MAX_DEVNO)
        return -1;

    *addr = ccwaddr;
    return 0;
}


int qemuDomainCCWAddressAssign(virDomainDeviceInfoPtr dev,
                               qemuDomainCCWAddressSetPtr addrs,
                               bool autoassign)
{
    int ret = -1;
    char *addr = NULL;

    if (dev->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
        return 0;

    if (!autoassign && dev->addr.ccw.assigned) {
        if (!(addr = qemuCCWAddressAsString(&dev->addr.ccw)))
            goto cleanup;

        if (virHashLookup(addrs->defined, addr)) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("The CCW devno '%s' is in use already "),
                           addr);
            goto cleanup;
        }
    } else if (autoassign && !dev->addr.ccw.assigned) {
        if (!(addr = qemuCCWAddressAsString(&addrs->next)) < 0)
            goto cleanup;

        while (virHashLookup(addrs->defined, addr)) {
            if (qemuCCWAdressIncrement(&addrs->next) < 0) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("There are no more free CCW devnos."));
                goto cleanup;
            }
            VIR_FREE(addr);
            addr = qemuCCWAddressAsString(&addrs->next);
        }
        dev->addr.ccw = addrs->next;
        dev->addr.ccw.assigned = true;
    } else {
        return 0;
    }

E
Eric Blake 已提交
1133
    if (virHashAddEntry(addrs->defined, addr, addr) < 0)
1134 1135 1136 1137 1138 1139
        goto cleanup;
    else
        addr = NULL; /* memory will be freed by hash table */

    ret = 0;

1140
 cleanup:
1141 1142 1143 1144
    VIR_FREE(addr);
    return ret;
}

1145
static void
1146 1147
qemuDomainPrimeVirtioDeviceAddresses(virDomainDefPtr def,
                                     enum virDomainDeviceAddressType type)
1148 1149 1150
{
    /*
       declare address-less virtio devices to be of address type 'type'
1151 1152
       disks, networks, consoles, controllers, memballoon and rng in this
       order
1153
    */
1154
    size_t i;
1155

1156
    for (i = 0; i < def->ndisks; i++) {
1157 1158 1159 1160 1161
        if (def->disks[i]->bus == VIR_DOMAIN_DISK_BUS_VIRTIO &&
            def->disks[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            def->disks[i]->info.type = type;
    }

1162
    for (i = 0; i < def->nnets; i++) {
E
Eric Blake 已提交
1163
        if (STREQ(def->nets[i]->model, "virtio") &&
1164
            def->nets[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
1165
            def->nets[i]->info.type = type;
1166
        }
1167 1168
    }

1169
    for (i = 0; i < def->ncontrollers; i++) {
1170 1171 1172 1173
        if ((def->controllers[i]->type ==
             VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL ||
             def->controllers[i]->type ==
             VIR_DOMAIN_CONTROLLER_TYPE_SCSI) &&
1174 1175 1176 1177 1178
            def->controllers[i]->info.type ==
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            def->controllers[i]->info.type = type;
    }

1179 1180 1181 1182
    if (def->memballoon &&
        def->memballoon->model == VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO &&
        def->memballoon->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
        def->memballoon->info.type = type;
1183 1184 1185 1186 1187

    if (def->rng &&
        def->rng->model == VIR_DOMAIN_RNG_MODEL_VIRTIO &&
        def->rng->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
        def->rng->info.type = type;
1188 1189
}

1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
static int
qemuDomainCCWAddressAllocate(virDomainDefPtr def ATTRIBUTE_UNUSED,
                             virDomainDeviceDefPtr dev ATTRIBUTE_UNUSED,
                             virDomainDeviceInfoPtr info,
                             void *data)
{
    return qemuDomainCCWAddressAssign(info, data, true);
}

static int
qemuDomainCCWAddressValidate(virDomainDefPtr def ATTRIBUTE_UNUSED,
                             virDomainDeviceDefPtr dev ATTRIBUTE_UNUSED,
                             virDomainDeviceInfoPtr info,
                             void *data)
{
    return qemuDomainCCWAddressAssign(info, data, false);
}

1208 1209 1210
static int
qemuDomainCCWAddressReleaseAddr(qemuDomainCCWAddressSetPtr addrs,
                                virDomainDeviceInfoPtr dev)
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
{
    char *addr;
    int ret;

    addr = qemuCCWAddressAsString(&(dev->addr.ccw));
    if (!addr)
        return -1;

    if ((ret = virHashRemoveEntry(addrs->defined, addr)) == 0 &&
        dev->addr.ccw.cssid == addrs->next.cssid &&
        dev->addr.ccw.ssid == addrs->next.ssid &&
        dev->addr.ccw.devno < addrs->next.devno) {
        addrs->next.devno = dev->addr.ccw.devno;
        addrs->next.assigned = false;
    }

    VIR_FREE(addr);

    return ret;
}

void qemuDomainCCWAddressSetFree(qemuDomainCCWAddressSetPtr addrs)
{
    if (!addrs)
        return;

    virHashFree(addrs->defined);
    VIR_FREE(addrs);
}

static qemuDomainCCWAddressSetPtr
qemuDomainCCWAddressSetCreate(void)
{
     qemuDomainCCWAddressSetPtr addrs = NULL;

    if (VIR_ALLOC(addrs) < 0)
1247
        goto error;
1248

E
Eric Blake 已提交
1249
    if (!(addrs->defined = virHashCreate(10, virHashValueFree)))
1250
        goto error;
1251 1252 1253 1254 1255 1256 1257 1258

    /* must use cssid = 0xfe (254) for virtio-ccw devices */
    addrs->next.cssid = 254;
    addrs->next.ssid = 0;
    addrs->next.devno = 0;
    addrs->next.assigned = 0;
    return addrs;

1259
 error:
1260
    qemuDomainCCWAddressSetFree(addrs);
1261
    return NULL;
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
}

/*
 * Three steps populating CCW devnos
 * 1. Allocate empty address set
 * 2. Gather addresses with explicit devno
 * 3. Assign defaults to the rest
 */
static int
qemuDomainAssignS390Addresses(virDomainDefPtr def,
                              virQEMUCapsPtr qemuCaps,
                              virDomainObjPtr obj)
1274
{
1275 1276 1277 1278 1279 1280
    int ret = -1;
    qemuDomainCCWAddressSetPtr addrs = NULL;
    qemuDomainObjPrivatePtr priv = NULL;

    if (STREQLEN(def->os.machine, "s390-ccw", 8) &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_CCW)) {
1281
        qemuDomainPrimeVirtioDeviceAddresses(
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
            def, VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW);

        if (!(addrs = qemuDomainCCWAddressSetCreate()))
            goto cleanup;

        if (virDomainDeviceInfoIterate(def, qemuDomainCCWAddressValidate,
                                       addrs) < 0)
            goto cleanup;

        if (virDomainDeviceInfoIterate(def, qemuDomainCCWAddressAllocate,
                                       addrs) < 0)
            goto cleanup;
    } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_S390)) {
        /* deal with legacy virtio-s390 */
1296
        qemuDomainPrimeVirtioDeviceAddresses(
1297
            def, VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390);
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
    }

    if (obj && obj->privateData) {
        priv = obj->privateData;
        if (addrs) {
            /* if this is the live domain object, we persist the CCW addresses*/
            qemuDomainCCWAddressSetFree(priv->ccwaddrs);
            priv->persistentAddrs = 1;
            priv->ccwaddrs = addrs;
            addrs = NULL;
        } else {
            priv->persistentAddrs = 0;
        }
    }
    ret = 0;

1314
 cleanup:
1315 1316 1317
    qemuDomainCCWAddressSetFree(addrs);

    return ret;
1318
}
1319

1320 1321 1322 1323
static int
qemuDomainAssignARMVirtioMMIOAddresses(virDomainDefPtr def,
                                       virQEMUCapsPtr qemuCaps)
{
1324 1325
    if (((def->os.arch == VIR_ARCH_ARMV7L) ||
        (def->os.arch == VIR_ARCH_AARCH64)) &&
1326 1327
        (STRPREFIX(def->os.machine, "vexpress-") ||
            STREQ(def->os.machine, "virt")) &&
1328 1329 1330 1331 1332 1333
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIRTIO_MMIO)) {
        qemuDomainPrimeVirtioDeviceAddresses(
            def, VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO);
    }
    return 0;
}
1334

1335 1336
static int
qemuSpaprVIOFindByReg(virDomainDefPtr def ATTRIBUTE_UNUSED,
1337
                      virDomainDeviceDefPtr device ATTRIBUTE_UNUSED,
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
                      virDomainDeviceInfoPtr info, void *opaque)
{
    virDomainDeviceInfoPtr target = opaque;

    if (info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO)
        return 0;

    /* Match a dev that has a reg, is not us, and has a matching reg */
    if (info->addr.spaprvio.has_reg && info != target &&
        info->addr.spaprvio.reg == target->addr.spaprvio.reg)
        /* Has to be < 0 so virDomainDeviceInfoIterate() will exit */
        return -1;

    return 0;
}

static int
qemuAssignSpaprVIOAddress(virDomainDefPtr def, virDomainDeviceInfoPtr info,
                          unsigned long long default_reg)
{
    bool user_reg;
1359
    int ret;
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370

    if (info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO)
        return 0;

    /* Check if the user has assigned the reg already, if so use it */
    user_reg = info->addr.spaprvio.has_reg;
    if (!user_reg) {
        info->addr.spaprvio.reg = default_reg;
        info->addr.spaprvio.has_reg = true;
    }

1371 1372
    ret = virDomainDeviceInfoIterate(def, qemuSpaprVIOFindByReg, info);
    while (ret != 0) {
1373
        if (user_reg) {
1374 1375 1376
            virReportError(VIR_ERR_XML_ERROR,
                           _("spapr-vio address %#llx already in use"),
                           info->addr.spaprvio.reg);
1377 1378 1379 1380 1381
            return -EEXIST;
        }

        /* We assigned the reg, so try a new value */
        info->addr.spaprvio.reg += 0x1000;
1382
        ret = virDomainDeviceInfoIterate(def, qemuSpaprVIOFindByReg, info);
1383 1384 1385 1386 1387
    }

    return 0;
}

1388
int qemuDomainAssignSpaprVIOAddresses(virDomainDefPtr def,
1389
                                      virQEMUCapsPtr qemuCaps)
1390
{
1391 1392
    size_t i;
    int ret = -1;
1393
    int model;
1394 1395 1396

    /* Default values match QEMU. See spapr_(llan|vscsi|vty).c */

1397
    for (i = 0; i < def->nnets; i++) {
1398 1399 1400
        if (def->nets[i]->model &&
            STREQ(def->nets[i]->model, "spapr-vlan"))
            def->nets[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
1401
        if (qemuAssignSpaprVIOAddress(def, &def->nets[i]->info,
1402
                                      VIO_ADDR_NET) < 0)
1403
            goto cleanup;
1404 1405
    }

1406
    for (i = 0; i < def->ncontrollers; i++) {
1407
        model = def->controllers[i]->model;
1408
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
1409
            if (qemuSetSCSIControllerModel(def, qemuCaps, &model) < 0)
1410 1411 1412
                goto cleanup;
        }

1413
        if (model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI &&
1414
            def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI)
1415
            def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
1416
        if (qemuAssignSpaprVIOAddress(def, &def->controllers[i]->info,
1417
                                      VIO_ADDR_SCSI) < 0)
1418
            goto cleanup;
1419 1420
    }

1421
    for (i = 0; i < def->nserials; i++) {
1422
        if (def->serials[i]->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
1423
            (def->os.arch == VIR_ARCH_PPC64) &&
1424 1425
            STREQ(def->os.machine, "pseries"))
            def->serials[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
1426
        if (qemuAssignSpaprVIOAddress(def, &def->serials[i]->info,
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
                                      VIO_ADDR_SERIAL) < 0)
            goto cleanup;
    }

    if (def->nvram) {
        if (def->os.arch == VIR_ARCH_PPC64 &&
            STREQ(def->os.machine, "pseries"))
            def->nvram->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
        if (qemuAssignSpaprVIOAddress(def, &def->nvram->info,
                                      VIO_ADDR_NVRAM) < 0)
1437
            goto cleanup;
1438 1439 1440 1441
    }

    /* No other devices are currently supported on spapr-vio */

1442
    ret = 0;
1443

1444
 cleanup:
1445
    return ret;
1446
}
1447 1448


1449 1450 1451 1452 1453
static int
qemuCollectPCIAddress(virDomainDefPtr def ATTRIBUTE_UNUSED,
                      virDomainDeviceDefPtr device,
                      virDomainDeviceInfoPtr info,
                      void *opaque)
1454
{
1455
    virDomainPCIAddressSetPtr addrs = opaque;
1456
    int ret = -1;
1457
    virDevicePCIAddressPtr addr = &info->addr.pci;
1458
    bool entireSlot;
1459
    /* flags may be changed from default below */
1460 1461
    virDomainPCIConnectFlags flags = (VIR_PCI_CONNECT_HOTPLUGGABLE |
                                      VIR_PCI_CONNECT_TYPE_PCI);
1462

1463 1464 1465 1466 1467 1468 1469
    if ((info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI)
        || ((device->type == VIR_DOMAIN_DEVICE_HOSTDEV) &&
            (device->data.hostdev->parent.type != VIR_DOMAIN_DEVICE_NONE))) {
        /* If a hostdev has a parent, its info will be a part of the
         * parent, and will have its address collected during the scan
         * of the parent's device type.
        */
1470
        return 0;
1471
    }
1472

1473 1474 1475
    /* Change flags according to differing requirements of different
     * devices.
     */
1476 1477 1478 1479 1480 1481 1482 1483 1484
    switch (device->type) {
    case VIR_DOMAIN_DEVICE_CONTROLLER:
        switch (device->data.controller->type) {
        case  VIR_DOMAIN_CONTROLLER_TYPE_PCI:
            switch (device->data.controller->model) {
            case VIR_DOMAIN_CONTROLLER_MODEL_PCI_BRIDGE:
                /* pci-bridge needs a PCI slot, but it isn't
                 * hot-pluggable, so it doesn't need a hot-pluggable slot.
                 */
1485
                flags = VIR_PCI_CONNECT_TYPE_PCI;
1486 1487 1488 1489 1490
                break;
            case VIR_DOMAIN_CONTROLLER_MODEL_DMI_TO_PCI_BRIDGE:
                /* pci-bridge needs a PCIe slot, but it isn't
                 * hot-pluggable, so it doesn't need a hot-pluggable slot.
                 */
1491
                flags = VIR_PCI_CONNECT_TYPE_PCIE;
1492 1493 1494 1495
                break;
            default:
                break;
            }
1496
            break;
1497 1498 1499 1500

        case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
            /* SATA controllers aren't hot-plugged, and can be put in
             * either a PCI or PCIe slot
1501
             */
1502
            flags = VIR_PCI_CONNECT_TYPE_PCI | VIR_PCI_CONNECT_TYPE_PCIE;
1503
            break;
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515

        case VIR_DOMAIN_CONTROLLER_TYPE_USB:
           /* allow UHCI and EHCI controllers to be manually placed on
            * the PCIe bus (but don't put them there automatically)
            */
           switch (device->data.controller->model) {
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_EHCI:
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_EHCI1:
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI1:
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI2:
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI3:
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_VT82C686B_UHCI:
1516 1517
              flags = (VIR_PCI_CONNECT_TYPE_PCI |
                       VIR_PCI_CONNECT_TYPE_EITHER_IF_CONFIG);
1518 1519 1520 1521 1522
              break;
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI:
              /* should this be PCIE-only? Or do we need to allow PCI
               * for backward compatibility?
               */
1523
              flags = VIR_PCI_CONNECT_TYPE_PCI | VIR_PCI_CONNECT_TYPE_PCIE;
1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
              break;
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_PCI_OHCI:
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI:
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX4_UHCI:
              /* Allow these for PCI only */
              break;
           }
        }
        break;

    case VIR_DOMAIN_DEVICE_SOUND:
        switch (device->data.sound->model) {
        case VIR_DOMAIN_SOUND_MODEL_ICH6:
1537
        case VIR_DOMAIN_SOUND_MODEL_ICH9:
1538 1539
            flags = (VIR_PCI_CONNECT_TYPE_PCI |
                     VIR_PCI_CONNECT_TYPE_EITHER_IF_CONFIG);
1540
            break;
1541
        }
1542
        break;
1543

1544 1545 1546 1547
    case VIR_DOMAIN_DEVICE_VIDEO:
        /* video cards aren't hot-plugged, and can be put in either a
         * PCI or PCIe slot
         */
1548
        flags = VIR_PCI_CONNECT_TYPE_PCI | VIR_PCI_CONNECT_TYPE_PCIE;
1549 1550
        break;
    }
1551

1552 1553 1554 1555 1556 1557
    /* Ignore implicit controllers on slot 0:0:1.0:
     * implicit IDE controller on 0:0:1.1 (no qemu command line)
     * implicit USB controller on 0:0:1.2 (-usb)
     *
     * If the machine does have a PCI bus, they will get reserved
     * in qemuAssignDevicePCISlots().
1558 1559 1560 1561 1562
     */

    /* These are the IDE and USB controllers in the PIIX3, hardcoded
     * to bus 0 slot 1.  They cannot be attached to a PCIe slot, only
     * PCI.
1563 1564 1565 1566
     */
    if (device->type == VIR_DOMAIN_DEVICE_CONTROLLER && addr->domain == 0 &&
        addr->bus == 0 && addr->slot == 1) {
        virDomainControllerDefPtr cont = device->data.controller;
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579

        if ((cont->type == VIR_DOMAIN_CONTROLLER_TYPE_IDE && cont->idx == 0 &&
             addr->function == 1) ||
            (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB && cont->idx == 0 &&
             (cont->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI ||
              cont->model == -1) && addr->function == 2)) {
            /* Note the check for nbuses > 0 - if there are no PCI
             * buses, we skip this check. This is a quirk required for
             * some machinetypes such as s390, which pretend to have a
             * PCI bus for long enough to generate the "-usb" on the
             * commandline, but that don't really care if a PCI bus
             * actually exists. */
            if (addrs->nbuses > 0 &&
1580
                !(addrs->buses[0].flags & VIR_PCI_CONNECT_TYPE_PCI)) {
1581 1582 1583 1584 1585 1586 1587 1588
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Bus 0 must be PCI for integrated PIIX3 "
                                 "USB or IDE controllers"));
                return -1;
            } else {
                return 0;
            }
        }
1589 1590
    }

1591 1592
    entireSlot = (addr->function == 0 &&
                  addr->multi != VIR_DEVICE_ADDRESS_PCI_MULTI_ON);
1593

1594 1595
    if (virDomainPCIAddressReserveAddr(addrs, addr, flags,
                                       entireSlot, true) < 0)
1596
        goto cleanup;
1597

1598
    ret = 0;
1599
 cleanup:
1600
    return ret;
1601 1602
}

1603
static bool
1604 1605
qemuDomainSupportsPCI(virDomainDefPtr def)
{
1606
    if ((def->os.arch != VIR_ARCH_ARMV7L) && (def->os.arch != VIR_ARCH_AARCH64))
1607 1608 1609 1610 1611 1612 1613
        return true;

    if (STREQ(def->os.machine, "versatilepb"))
        return true;

    return false;
}
1614

1615
int
1616
qemuDomainAssignPCIAddresses(virDomainDefPtr def,
1617
                             virQEMUCapsPtr qemuCaps,
1618
                             virDomainObjPtr obj)
1619 1620
{
    int ret = -1;
1621
    virDomainPCIAddressSetPtr addrs = NULL;
1622
    qemuDomainObjPrivatePtr priv = NULL;
1623

1624
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
1625
        int max_idx = -1;
1626
        int nbuses = 0;
1627
        size_t i;
1628
        int rv;
1629
        virDomainPCIConnectFlags flags = VIR_PCI_CONNECT_TYPE_PCI;
1630 1631

        for (i = 0; i < def->ncontrollers; i++) {
1632
            if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI) {
1633
                if ((int) def->controllers[i]->idx > max_idx)
1634 1635 1636 1637 1638 1639 1640 1641 1642
                    max_idx = def->controllers[i]->idx;
            }
        }

        nbuses = max_idx + 1;

        if (nbuses > 0 &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PCI_BRIDGE)) {
            virDomainDeviceInfo info;
1643

1644 1645 1646 1647 1648 1649
            /* 1st pass to figure out how many PCI bridges we need */
            if (!(addrs = qemuDomainPCIAddressSetCreate(def, nbuses, true)))
                goto cleanup;
            if (qemuAssignDevicePCISlots(def, qemuCaps, addrs) < 0)
                goto cleanup;
            /* Reserve 1 extra slot for a (potential) bridge */
1650
            if (virDomainPCIAddressReserveNextSlot(addrs, &info, flags) < 0)
1651 1652 1653
                goto cleanup;

            for (i = 1; i < addrs->nbuses; i++) {
1654
                virDomainPCIAddressBusPtr bus = &addrs->buses[i];
1655

1656
                if ((rv = virDomainDefMaybeAddController(
1657 1658
                         def, VIR_DOMAIN_CONTROLLER_TYPE_PCI,
                         i, bus->model)) < 0)
1659 1660
                    goto cleanup;
                /* If we added a new bridge, we will need one more address */
1661 1662
                if (rv > 0 && virDomainPCIAddressReserveNextSlot(addrs, &info,
                                                                 flags) < 0)
1663 1664 1665
                        goto cleanup;
            }
            nbuses = addrs->nbuses;
1666
            virDomainPCIAddressSetFree(addrs);
1667 1668 1669 1670 1671 1672 1673
            addrs = NULL;

        } else if (max_idx > 0) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("PCI bridges are not supported "
                             "by this QEMU binary"));
            goto cleanup;
1674 1675
        }

1676
        if (!(addrs = qemuDomainPCIAddressSetCreate(def, nbuses, false)))
1677 1678
            goto cleanup;

1679 1680 1681 1682
        if (qemuDomainSupportsPCI(def)) {
            if (qemuAssignDevicePCISlots(def, qemuCaps, addrs) < 0)
                goto cleanup;
        }
1683 1684
    }

1685 1686 1687 1688
    if (obj && obj->privateData) {
        priv = obj->privateData;
        if (addrs) {
            /* if this is the live domain object, we persist the PCI addresses*/
1689
            virDomainPCIAddressSetFree(priv->pciaddrs);
1690 1691 1692 1693 1694 1695 1696 1697
            priv->persistentAddrs = 1;
            priv->pciaddrs = addrs;
            addrs = NULL;
        } else {
            priv->persistentAddrs = 0;
        }
    }

1698 1699
    ret = 0;

1700
 cleanup:
1701
    virDomainPCIAddressSetFree(addrs);
1702 1703 1704 1705

    return ret;
}

1706
int qemuDomainAssignAddresses(virDomainDefPtr def,
1707
                              virQEMUCapsPtr qemuCaps,
1708
                              virDomainObjPtr obj)
1709
{
1710 1711
    int rc;

1712
    rc = qemuDomainAssignSpaprVIOAddresses(def, qemuCaps);
1713 1714 1715
    if (rc)
        return rc;

1716 1717 1718
    rc = qemuDomainAssignS390Addresses(def, qemuCaps, obj);
    if (rc)
        return rc;
1719

1720 1721 1722 1723
    rc = qemuDomainAssignARMVirtioMMIOAddresses(def, qemuCaps);
    if (rc)
        return rc;

1724
    return qemuDomainAssignPCIAddresses(def, qemuCaps, obj);
1725
}
1726

1727

1728
virDomainPCIAddressSetPtr
1729 1730 1731
qemuDomainPCIAddressSetCreate(virDomainDefPtr def,
                              unsigned int nbuses,
                              bool dryRun)
1732
{
1733
    virDomainPCIAddressSetPtr addrs;
1734
    size_t i;
1735

1736 1737
    if ((addrs = virDomainPCIAddressSetAlloc(nbuses)) == NULL)
        return NULL;
1738

1739
    addrs->nbuses = nbuses;
1740
    addrs->dryRun = dryRun;
1741

1742 1743 1744 1745 1746 1747 1748 1749
    /* As a safety measure, set default model='pci-root' for first pci
     * controller and 'pci-bridge' for all subsequent. After setting
     * those defaults, then scan the config and set the actual model
     * for all addrs[idx]->bus that already have a corresponding
     * controller in the config.
     *
     */
    if (nbuses > 0)
1750 1751
       virDomainPCIAddressBusSetModel(&addrs->buses[0],
                                      VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT);
1752
    for (i = 1; i < nbuses; i++) {
1753 1754
        virDomainPCIAddressBusSetModel(&addrs->buses[i],
                                       VIR_DOMAIN_CONTROLLER_MODEL_PCI_BRIDGE);
1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769
    }

    for (i = 0; i < def->ncontrollers; i++) {
        size_t idx = def->controllers[i]->idx;

        if (def->controllers[i]->type != VIR_DOMAIN_CONTROLLER_TYPE_PCI)
            continue;

        if (idx >= addrs->nbuses) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Inappropriate new pci controller index %zu "
                             "not found in addrs"), idx);
            goto error;
        }

1770 1771
        if (virDomainPCIAddressBusSetModel(&addrs->buses[idx],
                                           def->controllers[i]->model) < 0)
1772 1773
            goto error;
        }
1774

1775 1776 1777 1778 1779
    if (virDomainDeviceInfoIterate(def, qemuCollectPCIAddress, addrs) < 0)
        goto error;

    return addrs;

1780
 error:
1781
    virDomainPCIAddressSetFree(addrs);
1782 1783 1784
    return NULL;
}

1785

1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
void
qemuDomainReleaseDeviceAddress(virDomainObjPtr vm,
                               virDomainDeviceInfoPtr info,
                               const char *devstr)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!devstr)
        devstr = info->alias;

    if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW &&
        STREQLEN(vm->def->os.machine, "s390-ccw", 8) &&
        virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_VIRTIO_CCW) &&
        qemuDomainCCWAddressReleaseAddr(priv->ccwaddrs, info) < 0)
        VIR_WARN("Unable to release CCW address on %s",
                 NULLSTR(devstr));
    else if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI &&
             virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE) &&
1804 1805
             virDomainPCIAddressReleaseSlot(priv->pciaddrs,
                                            &info->addr.pci) < 0)
1806 1807 1808 1809 1810
        VIR_WARN("Unable to release PCI address on %s",
                 NULLSTR(devstr));
}


1811 1812 1813 1814 1815 1816 1817
#define IS_USB2_CONTROLLER(ctrl) \
    (((ctrl)->type == VIR_DOMAIN_CONTROLLER_TYPE_USB) && \
     ((ctrl)->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_EHCI1 || \
      (ctrl)->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI1 || \
      (ctrl)->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI2 || \
      (ctrl)->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI3))

1818 1819 1820 1821

static int
qemuValidateDevicePCISlotsPIIX3(virDomainDefPtr def,
                                virQEMUCapsPtr qemuCaps,
1822
                                virDomainPCIAddressSetPtr addrs)
1823
{
1824
    int ret = -1;
1825
    size_t i;
1826
    virDevicePCIAddress tmp_addr;
1827
    bool qemuDeviceVideoUsable = virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY);
1828
    char *addrStr = NULL;
1829
    virDomainPCIConnectFlags flags = VIR_PCI_CONNECT_HOTPLUGGABLE | VIR_PCI_CONNECT_TYPE_PCI;
1830

1831
    /* Verify that first IDE and USB controllers (if any) is on the PIIX3, fn 1 */
1832
    for (i = 0; i < def->ncontrollers; i++) {
1833 1834 1835 1836 1837 1838 1839 1840
        /* First IDE controller lives on the PIIX3 at slot=1, function=1 */
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_IDE &&
            def->controllers[i]->idx == 0) {
            if (def->controllers[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
                if (def->controllers[i]->info.addr.pci.domain != 0 ||
                    def->controllers[i]->info.addr.pci.bus != 0 ||
                    def->controllers[i]->info.addr.pci.slot != 1 ||
                    def->controllers[i]->info.addr.pci.function != 1) {
1841 1842
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("Primary IDE controller must have PCI address 0:0:1.1"));
1843
                    goto cleanup;
1844 1845 1846 1847 1848 1849 1850 1851
                }
            } else {
                def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
                def->controllers[i]->info.addr.pci.domain = 0;
                def->controllers[i]->info.addr.pci.bus = 0;
                def->controllers[i]->info.addr.pci.slot = 1;
                def->controllers[i]->info.addr.pci.function = 1;
            }
1852 1853
        } else if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
                   def->controllers[i]->idx == 0 &&
1854 1855
                   (def->controllers[i]->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI ||
                    def->controllers[i]->model == -1)) {
1856 1857 1858 1859 1860
            if (def->controllers[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
                if (def->controllers[i]->info.addr.pci.domain != 0 ||
                    def->controllers[i]->info.addr.pci.bus != 0 ||
                    def->controllers[i]->info.addr.pci.slot != 1 ||
                    def->controllers[i]->info.addr.pci.function != 2) {
1861 1862
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("PIIX3 USB controller must have PCI address 0:0:1.2"));
1863
                    goto cleanup;
1864 1865 1866 1867 1868 1869 1870 1871
                }
            } else {
                def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
                def->controllers[i]->info.addr.pci.domain = 0;
                def->controllers[i]->info.addr.pci.bus = 0;
                def->controllers[i]->info.addr.pci.slot = 1;
                def->controllers[i]->info.addr.pci.function = 2;
            }
1872 1873 1874 1875 1876 1877
        }
    }

    /* PIIX3 (ISA bridge, IDE controller, something else unknown, USB controller)
     * hardcoded slot=1, multifunction device
     */
1878 1879 1880
    if (addrs->nbuses) {
        memset(&tmp_addr, 0, sizeof(tmp_addr));
        tmp_addr.slot = 1;
1881
        if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0)
1882
            goto cleanup;
W
Wen Congyang 已提交
1883
    }
1884 1885

    if (def->nvideos > 0) {
1886 1887 1888 1889 1890 1891
        /* Because the PIIX3 integrated IDE/USB controllers are
         * already at slot 1, when qemu looks for the first free slot
         * to place the VGA controller (which is always the first
         * device added after integrated devices), it *always* ends up
         * at slot 2.
         */
1892 1893
        virDomainVideoDefPtr primaryVideo = def->videos[0];
        if (primaryVideo->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
1894 1895 1896
            memset(&tmp_addr, 0, sizeof(tmp_addr));
            tmp_addr.slot = 2;

1897
            if (!(addrStr = virDomainPCIAddressAsString(&tmp_addr)))
1898
                goto cleanup;
1899 1900
            if (!virDomainPCIAddressValidate(addrs, &tmp_addr,
                                             addrStr, flags, false))
1901
                goto cleanup;
1902

1903
            if (virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
1904
                if (qemuDeviceVideoUsable) {
1905 1906 1907
                    if (virDomainPCIAddressReserveNextSlot(addrs,
                                                           &primaryVideo->info,
                                                           flags) < 0)
1908
                        goto cleanup;
1909 1910 1911 1912
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("PCI address 0:0:2.0 is in use, "
                                     "QEMU needs it for primary video"));
1913
                    goto cleanup;
1914
                }
1915
            } else {
1916
                if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0)
1917 1918 1919
                    goto cleanup;
                primaryVideo->info.addr.pci = tmp_addr;
                primaryVideo->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
1920 1921 1922 1923 1924 1925
            }
        } else if (!qemuDeviceVideoUsable) {
            if (primaryVideo->info.addr.pci.domain != 0 ||
                primaryVideo->info.addr.pci.bus != 0 ||
                primaryVideo->info.addr.pci.slot != 2 ||
                primaryVideo->info.addr.pci.function != 0) {
1926 1927
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Primary video card must have PCI address 0:0:2.0"));
1928
                goto cleanup;
1929
            }
1930
            /* If TYPE == PCI, then qemuCollectPCIAddress() function
1931
             * has already reserved the address, so we must skip */
1932
        }
1933
    } else if (addrs->nbuses && !qemuDeviceVideoUsable) {
1934 1935
        memset(&tmp_addr, 0, sizeof(tmp_addr));
        tmp_addr.slot = 2;
1936

1937
        if (virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
1938 1939 1940 1941
            VIR_DEBUG("PCI address 0:0:2.0 in use, future addition of a video"
                      " device will not be possible without manual"
                      " intervention");
            virResetLastError();
1942
        } else if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0) {
1943
            goto cleanup;
1944 1945
        }
    }
1946
    ret = 0;
1947
 cleanup:
1948 1949
    VIR_FREE(addrStr);
    return ret;
1950 1951 1952
}


1953 1954 1955 1956 1957 1958 1959 1960
static bool
qemuDomainMachineIsQ35(virDomainDefPtr def)
{
    return (STRPREFIX(def->os.machine, "pc-q35") ||
            STREQ(def->os.machine, "q35"));
}


1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
static bool
qemuDomainMachineIsI440FX(virDomainDefPtr def)
{
    return (STREQ(def->os.machine, "pc") ||
            STRPREFIX(def->os.machine, "pc-0.") ||
            STRPREFIX(def->os.machine, "pc-1.") ||
            STRPREFIX(def->os.machine, "pc-i440") ||
            STRPREFIX(def->os.machine, "rhel"));
}


1972 1973 1974
static int
qemuDomainValidateDevicePCISlotsQ35(virDomainDefPtr def,
                                    virQEMUCapsPtr qemuCaps,
1975
                                    virDomainPCIAddressSetPtr addrs)
1976
{
1977
    int ret = -1;
1978 1979 1980
    size_t i;
    virDevicePCIAddress tmp_addr;
    bool qemuDeviceVideoUsable = virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY);
1981
    char *addrStr = NULL;
1982
    virDomainPCIConnectFlags flags = VIR_PCI_CONNECT_TYPE_PCIE;
1983 1984

    for (i = 0; i < def->ncontrollers; i++) {
1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006
        switch (def->controllers[i]->type) {
        case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
            /* Verify that the first SATA controller is at 00:1F.2 the
             * q35 machine type *always* has a SATA controller at this
             * address.
             */
            if (def->controllers[i]->idx == 0) {
                if (def->controllers[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
                    if (def->controllers[i]->info.addr.pci.domain != 0 ||
                        def->controllers[i]->info.addr.pci.bus != 0 ||
                        def->controllers[i]->info.addr.pci.slot != 0x1F ||
                        def->controllers[i]->info.addr.pci.function != 2) {
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("Primary SATA controller must have PCI address 0:0:1f.2"));
                        goto cleanup;
                    }
                } else {
                    def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
                    def->controllers[i]->info.addr.pci.domain = 0;
                    def->controllers[i]->info.addr.pci.bus = 0;
                    def->controllers[i]->info.addr.pci.slot = 0x1F;
                    def->controllers[i]->info.addr.pci.function = 2;
2007 2008
                }
            }
2009
            break;
2010 2011 2012 2013 2014 2015 2016 2017 2018 2019

        case VIR_DOMAIN_CONTROLLER_TYPE_PCI:
            if (def->controllers[i]->model == VIR_DOMAIN_CONTROLLER_MODEL_DMI_TO_PCI_BRIDGE &&
                def->controllers[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
                /* Try to assign this bridge to 00:1E.0 (because that
                * is its standard location on real hardware) unless
                * it's already taken, but don't insist on it.
                */
                memset(&tmp_addr, 0, sizeof(tmp_addr));
                tmp_addr.slot = 0x1E;
2020 2021 2022
                if (!virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
                    if (virDomainPCIAddressReserveAddr(addrs, &tmp_addr,
                                                       flags, true, false) < 0)
2023 2024 2025 2026 2027 2028 2029 2030 2031
                        goto cleanup;
                    def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
                    def->controllers[i]->info.addr.pci.domain = 0;
                    def->controllers[i]->info.addr.pci.bus = 0;
                    def->controllers[i]->info.addr.pci.slot = 0x1E;
                    def->controllers[i]->info.addr.pci.function = 0;
                }
            }
            break;
2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044
        }
    }

    /* Reserve slot 0x1F function 0 (ISA bridge, not in config model)
     * and function 3 (SMBus, also not (yet) in config model). As with
     * the SATA controller, these devices are always present in a q35
     * machine; there is no way to not have them.
     */
    if (addrs->nbuses) {
        memset(&tmp_addr, 0, sizeof(tmp_addr));
        tmp_addr.slot = 0x1F;
        tmp_addr.function = 0;
        tmp_addr.multi = 1;
2045 2046
        if (virDomainPCIAddressReserveAddr(addrs, &tmp_addr, flags,
                                           false, false) < 0)
2047
           goto cleanup;
2048 2049
        tmp_addr.function = 3;
        tmp_addr.multi = 0;
2050 2051
        if (virDomainPCIAddressReserveAddr(addrs, &tmp_addr, flags,
                                           false, false) < 0)
2052
           goto cleanup;
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063
    }

    if (def->nvideos > 0) {
        /* NB: unlike the pc machinetypes, on q35 machinetypes the
         * integrated devices are at slot 0x1f, so when qemu looks for
         * the first free lot for the first VGA, it will always be at
         * slot 1 (which was used up by the integrated PIIX3 devices
         * on pc machinetypes).
         */
        virDomainVideoDefPtr primaryVideo = def->videos[0];
        if (primaryVideo->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
2064 2065 2066
            memset(&tmp_addr, 0, sizeof(tmp_addr));
            tmp_addr.slot = 1;

2067
            if (!(addrStr = virDomainPCIAddressAsString(&tmp_addr)))
2068
                goto cleanup;
2069 2070
            if (!virDomainPCIAddressValidate(addrs, &tmp_addr,
                                             addrStr, flags, false))
2071
                goto cleanup;
2072

2073
            if (virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
2074
                if (qemuDeviceVideoUsable) {
2075 2076 2077
                    if (virDomainPCIAddressReserveNextSlot(addrs,
                                                           &primaryVideo->info,
                                                           flags) < 0)
2078
                        goto cleanup;
2079 2080 2081 2082
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("PCI address 0:0:1.0 is in use, "
                                     "QEMU needs it for primary video"));
2083
                    goto cleanup;
2084
                }
2085
            } else {
2086
                if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0)
2087 2088 2089
                    goto cleanup;
                primaryVideo->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
                primaryVideo->info.addr.pci = tmp_addr;
2090 2091 2092 2093 2094 2095 2096 2097
            }
        } else if (!qemuDeviceVideoUsable) {
            if (primaryVideo->info.addr.pci.domain != 0 ||
                primaryVideo->info.addr.pci.bus != 0 ||
                primaryVideo->info.addr.pci.slot != 1 ||
                primaryVideo->info.addr.pci.function != 0) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Primary video card must have PCI address 0:0:1.0"));
2098
                goto cleanup;
2099
            }
2100
            /* If TYPE == PCI, then qemuCollectPCIAddress() function
2101 2102 2103 2104 2105 2106
             * has already reserved the address, so we must skip */
        }
    } else if (addrs->nbuses && !qemuDeviceVideoUsable) {
        memset(&tmp_addr, 0, sizeof(tmp_addr));
        tmp_addr.slot = 1;

2107
        if (virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
2108 2109 2110 2111
            VIR_DEBUG("PCI address 0:0:1.0 in use, future addition of a video"
                      " device will not be possible without manual"
                      " intervention");
            virResetLastError();
2112
        } else if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0) {
2113
            goto cleanup;
2114 2115
        }
    }
2116
    ret = 0;
2117
 cleanup:
2118 2119
    VIR_FREE(addrStr);
    return ret;
2120 2121 2122
}


2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157
/*
 * This assigns static PCI slots to all configured devices.
 * The ordering here is chosen to match the ordering used
 * with old QEMU < 0.12, so that if a user updates a QEMU
 * host from old QEMU to QEMU >= 0.12, their guests should
 * get PCI addresses in the same order as before.
 *
 * NB, if they previously hotplugged devices then all bets
 * are off. Hotplug for old QEMU was unfixably broken wrt
 * to stable PCI addressing.
 *
 * Order is:
 *
 *  - Host bridge (slot 0)
 *  - PIIX3 ISA bridge, IDE controller, something else unknown, USB controller (slot 1)
 *  - Video (slot 2)
 *
 * Incrementally assign slots from 3 onwards:
 *
 *  - Net
 *  - Sound
 *  - SCSI controllers
 *  - VirtIO block
 *  - VirtIO balloon
 *  - Host device passthrough
 *  - Watchdog (not IB700)
 *
 * Prior to this function being invoked, qemuCollectPCIAddress() will have
 * added all existing PCI addresses from the 'def' to 'addrs'. Thus this
 * function must only try to reserve addresses if info.type == NONE and
 * skip over info.type == PCI
 */
int
qemuAssignDevicePCISlots(virDomainDefPtr def,
                         virQEMUCapsPtr qemuCaps,
2158
                         virDomainPCIAddressSetPtr addrs)
2159 2160
{
    size_t i, j;
2161
    virDomainPCIConnectFlags flags;
2162 2163 2164 2165 2166 2167 2168 2169 2170 2171
    virDevicePCIAddress tmp_addr;

    if ((STRPREFIX(def->os.machine, "pc-0.") ||
        STRPREFIX(def->os.machine, "pc-1.") ||
        STRPREFIX(def->os.machine, "pc-i440") ||
        STREQ(def->os.machine, "pc") ||
        STRPREFIX(def->os.machine, "rhel")) &&
        qemuValidateDevicePCISlotsPIIX3(def, qemuCaps, addrs) < 0) {
        goto error;
    }
2172

2173 2174 2175 2176 2177
    if (qemuDomainMachineIsQ35(def) &&
        qemuDomainValidateDevicePCISlotsQ35(def, qemuCaps, addrs) < 0) {
        goto error;
    }

2178 2179 2180 2181 2182
    /* PCI controllers */
    for (i = 0; i < def->ncontrollers; i++) {
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI) {
            if (def->controllers[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
                continue;
2183 2184
            switch (def->controllers[i]->model) {
            case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
L
Laine Stump 已提交
2185 2186
            case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
                /* pci-root and pcie-root are implicit in the machine,
2187 2188 2189 2190 2191 2192
                 * and needs no address */
                continue;
            case VIR_DOMAIN_CONTROLLER_MODEL_PCI_BRIDGE:
                /* pci-bridge doesn't require hot-plug
                 * (although it does provide hot-plug in its slots)
                 */
2193
                flags = VIR_PCI_CONNECT_TYPE_PCI;
2194
                break;
2195 2196 2197 2198
            case VIR_DOMAIN_CONTROLLER_MODEL_DMI_TO_PCI_BRIDGE:
                /* dmi-to-pci-bridge requires a non-hotplug PCIe
                 * slot
                 */
2199
                flags = VIR_PCI_CONNECT_TYPE_PCIE;
2200
                break;
2201
            default:
2202
                flags = VIR_PCI_CONNECT_HOTPLUGGABLE | VIR_PCI_CONNECT_TYPE_PCI;
2203 2204
                break;
            }
2205 2206 2207
            if (virDomainPCIAddressReserveNextSlot(addrs,
                                                   &def->controllers[i]->info,
                                                   flags) < 0)
2208 2209 2210 2211
                goto error;
        }
    }

2212
    flags = VIR_PCI_CONNECT_HOTPLUGGABLE | VIR_PCI_CONNECT_TYPE_PCI;
2213

2214
    for (i = 0; i < def->nfss; i++) {
2215 2216 2217 2218 2219
        if (def->fss[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            continue;

        /* Only support VirtIO-9p-pci so far. If that changes,
         * we might need to skip devices here */
2220 2221
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->fss[i]->info,
                                               flags) < 0)
2222 2223 2224 2225
            goto error;
    }

    /* Network interfaces */
2226
    for (i = 0; i < def->nnets; i++) {
2227 2228 2229 2230 2231 2232
        /* type='hostdev' network devices might be USB, and are also
         * in hostdevs list anyway, so handle them with other hostdevs
         * instead of here.
         */
        if ((def->nets[i]->type == VIR_DOMAIN_NET_TYPE_HOSTDEV) ||
            (def->nets[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)) {
2233
            continue;
2234
        }
2235 2236
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->nets[i]->info,
                                               flags) < 0)
2237 2238 2239 2240
            goto error;
    }

    /* Sound cards */
2241
    for (i = 0; i < def->nsounds; i++) {
2242 2243 2244 2245 2246 2247 2248
        if (def->sounds[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            continue;
        /* Skip ISA sound card, and PCSPK */
        if (def->sounds[i]->model == VIR_DOMAIN_SOUND_MODEL_SB16 ||
            def->sounds[i]->model == VIR_DOMAIN_SOUND_MODEL_PCSPK)
            continue;

2249 2250
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->sounds[i]->info,
                                               flags) < 0)
2251 2252 2253
            goto error;
    }

2254
    /* Device controllers (SCSI, USB, but not IDE, FDC or CCID) */
2255
    for (i = 0; i < def->ncontrollers; i++) {
2256
        /* PCI controllers have been dealt with earlier */
2257 2258
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI)
            continue;
2259

2260 2261 2262 2263 2264
        /* USB controller model 'none' doesn't need a PCI address */
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
            def->controllers[i]->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_NONE)
            continue;

E
Eric Blake 已提交
2265 2266 2267
        /* FDC lives behind the ISA bridge; CCID is a usb device */
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_FDC ||
            def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_CCID)
2268 2269 2270 2271 2272 2273 2274 2275
            continue;

        /* First IDE controller lives on the PIIX3 at slot=1, function=1,
           dealt with earlier on*/
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_IDE &&
            def->controllers[i]->idx == 0)
            continue;

2276 2277
        if (def->controllers[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO)
            continue;
2278 2279
        if (def->controllers[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            continue;
2280 2281 2282

        /* USB2 needs special handling to put all companions in the same slot */
        if (IS_USB2_CONTROLLER(def->controllers[i])) {
2283
            virDevicePCIAddress addr = { 0, 0, 0, 0, false };
2284
            memset(&tmp_addr, 0, sizeof(tmp_addr));
2285
            for (j = 0; j < i; j++) {
2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298
                if (IS_USB2_CONTROLLER(def->controllers[j]) &&
                    def->controllers[j]->idx == def->controllers[i]->idx) {
                    addr = def->controllers[j]->info.addr.pci;
                    break;
                }
            }

            switch (def->controllers[i]->model) {
            case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_EHCI1:
                addr.function = 7;
                break;
            case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI1:
                addr.function = 0;
2299
                addr.multi = VIR_DEVICE_ADDRESS_PCI_MULTI_ON;
2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311
                break;
            case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI2:
                addr.function = 1;
                break;
            case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI3:
                addr.function = 2;
                break;
            }

            if (addr.slot == 0) {
                /* This is the first part of the controller, so need
                 * to find a free slot & then reserve a function */
2312
                if (virDomainPCIAddressGetNextSlot(addrs, &tmp_addr, flags) < 0)
2313 2314
                    goto error;

2315 2316
                addr.bus = tmp_addr.bus;
                addr.slot = tmp_addr.slot;
2317 2318 2319 2320

                addrs->lastaddr = addr;
                addrs->lastaddr.function = 0;
                addrs->lastaddr.multi = 0;
2321 2322
            }
            /* Finally we can reserve the slot+function */
2323 2324
            if (virDomainPCIAddressReserveAddr(addrs, &addr, flags,
                                               false, false) < 0)
2325 2326 2327 2328 2329
                goto error;

            def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
            def->controllers[i]->info.addr.pci = addr;
        } else {
2330 2331 2332
            if (virDomainPCIAddressReserveNextSlot(addrs,
                                                   &def->controllers[i]->info,
                                                   flags) < 0)
2333 2334
                goto error;
        }
2335 2336
    }

2337
    /* Disks (VirtIO only for now) */
2338
    for (i = 0; i < def->ndisks; i++) {
2339 2340 2341 2342
        /* Only VirtIO disks use PCI addrs */
        if (def->disks[i]->bus != VIR_DOMAIN_DISK_BUS_VIRTIO)
            continue;

2343 2344 2345
        /* don't touch s390 devices */
        if (def->disks[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI ||
            def->disks[i]->info.type ==
2346 2347 2348
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390 ||
            def->disks[i]->info.type ==
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
2349 2350 2351
            continue;

        if (def->disks[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
2352 2353
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio only support device address type 'PCI'"));
2354 2355 2356
            goto error;
        }

2357 2358
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->disks[i]->info,
                                               flags) < 0)
2359 2360 2361 2362
            goto error;
    }

    /* Host PCI devices */
2363
    for (i = 0; i < def->nhostdevs; i++) {
2364
        if (def->hostdevs[i]->info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
2365 2366 2367 2368 2369
            continue;
        if (def->hostdevs[i]->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS ||
            def->hostdevs[i]->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI)
            continue;

2370 2371 2372
        if (virDomainPCIAddressReserveNextSlot(addrs,
                                               def->hostdevs[i]->info,
                                               flags) < 0)
2373 2374 2375 2376 2377 2378 2379
            goto error;
    }

    /* VirtIO balloon */
    if (def->memballoon &&
        def->memballoon->model == VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO &&
        def->memballoon->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
2380 2381 2382
        if (virDomainPCIAddressReserveNextSlot(addrs,
                                               &def->memballoon->info,
                                               flags) < 0)
2383 2384 2385
            goto error;
    }

2386 2387 2388 2389
    /* VirtIO RNG */
    if (def->rng &&
        def->rng->model == VIR_DOMAIN_RNG_MODEL_VIRTIO &&
        def->rng->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
2390 2391
        if (virDomainPCIAddressReserveNextSlot(addrs,
                                               &def->rng->info, flags) < 0)
2392 2393 2394
            goto error;
    }

2395
    /* A watchdog - skip IB700, it is not a PCI device */
2396
    if (def->watchdog &&
2397
        def->watchdog->model != VIR_DOMAIN_WATCHDOG_MODEL_IB700 &&
2398
        def->watchdog->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
2399 2400
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->watchdog->info,
                                               flags) < 0)
2401 2402 2403
            goto error;
    }

2404 2405 2406 2407
    /* Assign a PCI slot to the primary video card if there is not an
     * assigned address. */
    if (def->nvideos > 0 &&
        def->videos[0]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
2408 2409
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->videos[0]->info,
                                               flags) < 0)
2410 2411
            goto error;
    }
2412
    /* Further non-primary video cards which have to be qxl type */
2413
    for (i = 1; i < def->nvideos; i++) {
2414 2415 2416 2417 2418
        if (def->videos[i]->type != VIR_DOMAIN_VIDEO_TYPE_QXL) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("non-primary video device must be type of 'qxl'"));
            goto error;
        }
2419 2420
        if (def->videos[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            continue;
2421 2422
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->videos[i]->info,
                                               flags) < 0)
2423 2424
            goto error;
    }
2425
    for (i = 0; i < def->ninputs; i++) {
2426 2427
        /* Nada - none are PCI based (yet) */
    }
2428
    for (i = 0; i < def->nparallels; i++) {
2429 2430
        /* Nada - none are PCI based (yet) */
    }
2431
    for (i = 0; i < def->nserials; i++) {
2432 2433
        /* Nada - none are PCI based (yet) */
    }
2434
    for (i = 0; i < def->nchannels; i++) {
2435 2436
        /* Nada - none are PCI based (yet) */
    }
2437
    for (i = 0; i < def->nhubs; i++) {
M
Marc-André Lureau 已提交
2438 2439
        /* Nada - none are PCI based (yet) */
    }
2440 2441 2442

    return 0;

2443
 error:
2444 2445 2446
    return -1;
}

2447
static void
2448
qemuUSBId(virBufferPtr buf, int idx)
2449 2450
{
    if (idx == 0)
2451
        virBufferAddLit(buf, "usb");
2452 2453 2454
    else
        virBufferAsprintf(buf, "usb%d", idx);
}
2455 2456 2457

static int
qemuBuildDeviceAddressStr(virBufferPtr buf,
2458
                          virDomainDefPtr domainDef,
2459
                          virDomainDeviceInfoPtr info,
2460
                          virQEMUCapsPtr qemuCaps)
2461
{
2462 2463 2464
    int ret = -1;
    char *devStr = NULL;

2465
    if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
2466 2467 2468
        const char *contAlias = NULL;
        size_t i;

2469
        if (!(devStr = virDomainPCIAddressAsString(&info->addr.pci)))
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
            goto cleanup;
        for (i = 0; i < domainDef->ncontrollers; i++) {
            virDomainControllerDefPtr cont = domainDef->controllers[i];

            if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
                cont->idx == info->addr.pci.bus) {
                contAlias = cont->info.alias;
                if (!contAlias) {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Device alias was not set for PCI "
                                     "controller with index %u required "
                                     "for device at address %s"),
                                   info->addr.pci.bus, devStr);
                    goto cleanup;
                }
                break;
            }
        }
        if (!contAlias) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not find PCI "
                             "controller with index %u required "
                             "for device at address %s"),
                           info->addr.pci.bus, devStr);
            goto cleanup;
        }

2497
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_MULTIFUNCTION)) {
W
Wen Congyang 已提交
2498
            if (info->addr.pci.function != 0) {
2499 2500 2501
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Only PCI device addresses with function=0 "
                                 "are supported with this QEMU binary"));
2502
                goto cleanup;
2503
            }
2504
            if (info->addr.pci.multi == VIR_DEVICE_ADDRESS_PCI_MULTI_ON) {
2505 2506 2507
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("'multifunction=on' is not supported with "
                                 "this QEMU binary"));
2508
                goto cleanup;
W
Wen Congyang 已提交
2509
            }
2510 2511
        }

2512 2513 2514 2515 2516 2517 2518
        /*
         * PCI bridge support is required for multiple buses
         * 'pci.%u' is the ID of the bridge as specified in
         * qemuBuildControllerDevStr
         *
         * PCI_MULTIBUS capability indicates that the implicit
         * PCI bus is named 'pci.0' instead of 'pci'.
2519
         */
2520 2521
        if (info->addr.pci.bus != 0) {
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PCI_BRIDGE)) {
2522
                virBufferAsprintf(buf, ",bus=%s", contAlias);
2523 2524 2525 2526
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Multiple PCI buses are not supported "
                                 "with this QEMU binary"));
2527
                goto cleanup;
2528 2529
            }
        } else {
D
Daniel P. Berrange 已提交
2530
            if (virQEMUCapsHasPCIMultiBus(qemuCaps, domainDef)) {
2531 2532
                virBufferAsprintf(buf, ",bus=%s", contAlias);
            } else {
2533
                virBufferAddLit(buf, ",bus=pci");
2534
            }
2535
        }
2536
        if (info->addr.pci.multi == VIR_DEVICE_ADDRESS_PCI_MULTI_ON)
2537
            virBufferAddLit(buf, ",multifunction=on");
2538
        else if (info->addr.pci.multi == VIR_DEVICE_ADDRESS_PCI_MULTI_OFF)
2539 2540 2541 2542
            virBufferAddLit(buf, ",multifunction=off");
        virBufferAsprintf(buf, ",addr=0x%x", info->addr.pci.slot);
        if (info->addr.pci.function != 0)
           virBufferAsprintf(buf, ".0x%x", info->addr.pci.function);
2543
    } else if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB) {
2544
        virBufferAddLit(buf, ",bus=");
2545
        qemuUSBId(buf, info->addr.usb.bus);
2546
        virBufferAsprintf(buf, ".0,port=%s", info->addr.usb.port);
2547 2548 2549
    } else if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO) {
        if (info->addr.spaprvio.has_reg)
            virBufferAsprintf(buf, ",reg=0x%llx", info->addr.spaprvio.reg);
2550 2551 2552 2553 2554 2555
    } else if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
        if (info->addr.ccw.assigned)
            virBufferAsprintf(buf, ",devno=%x.%x.%04x",
                              info->addr.ccw.cssid,
                              info->addr.ccw.ssid,
                              info->addr.ccw.devno);
2556
    }
2557

2558
    ret = 0;
2559
 cleanup:
2560 2561
    VIR_FREE(devStr);
    return ret;
2562 2563
}

2564 2565 2566
static int
qemuBuildRomStr(virBufferPtr buf,
                virDomainDeviceInfoPtr info,
2567
                virQEMUCapsPtr qemuCaps)
2568
{
2569
    if (info->rombar || info->romfile) {
2570
        if (info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
2571 2572
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("rombar and romfile are supported only for PCI devices"));
2573 2574
            return -1;
        }
2575
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_ROMBAR)) {
2576 2577
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("rombar and romfile not supported in this QEMU binary"));
2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590
            return -1;
        }

        switch (info->rombar) {
        case VIR_DOMAIN_PCI_ROMBAR_OFF:
            virBufferAddLit(buf, ",rombar=0");
            break;
        case VIR_DOMAIN_PCI_ROMBAR_ON:
            virBufferAddLit(buf, ",rombar=1");
            break;
        default:
            break;
        }
2591 2592
        if (info->romfile)
           virBufferAsprintf(buf, ",romfile=%s", info->romfile);
2593 2594 2595 2596
    }
    return 0;
}

2597 2598 2599
static int
qemuBuildIoEventFdStr(virBufferPtr buf,
                      enum virDomainIoEventFd use,
2600
                      virQEMUCapsPtr qemuCaps)
2601
{
2602
    if (use && virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_IOEVENTFD))
2603 2604 2605 2606
        virBufferAsprintf(buf, ",ioeventfd=%s",
                          virDomainIoEventFdTypeToString(use));
    return 0;
}
2607 2608 2609 2610 2611 2612 2613

#define QEMU_SERIAL_PARAM_ACCEPTED_CHARS \
  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_"

static int
qemuSafeSerialParamValue(const char *value)
{
2614
    if (strspn(value, QEMU_SERIAL_PARAM_ACCEPTED_CHARS) != strlen(value)) {
2615 2616 2617
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("driver serial '%s' contains unsafe characters"),
                       value);
2618 2619 2620 2621 2622 2623
        return -1;
    }

    return 0;
}

2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635
static char *
qemuGetSecretString(virConnectPtr conn,
                    const char *scheme,
                    bool encoded,
                    int diskSecretType,
                    char *username,
                    unsigned char *uuid, char *usage,
                    virSecretUsageType secretUsageType)
{
    size_t secret_size;
    virSecretPtr sec = NULL;
    char *secret = NULL;
2636
    char uuidStr[VIR_UUID_STRING_BUFLEN];
2637 2638 2639

    /* look up secret */
    switch (diskSecretType) {
2640
    case VIR_STORAGE_SECRET_TYPE_UUID:
2641
        sec = virSecretLookupByUUID(conn, uuid);
2642
        virUUIDFormat(uuid, uuidStr);
2643
        break;
2644
    case VIR_STORAGE_SECRET_TYPE_USAGE:
2645 2646 2647 2648 2649
        sec = virSecretLookupByUsage(conn, secretUsageType, usage);
        break;
    }

    if (!sec) {
2650
        if (diskSecretType == VIR_STORAGE_SECRET_TYPE_UUID) {
2651 2652
            virReportError(VIR_ERR_NO_SECRET,
                           _("%s no secret matches uuid '%s'"),
2653
                           scheme, uuidStr);
2654 2655 2656 2657 2658
        } else {
            virReportError(VIR_ERR_NO_SECRET,
                           _("%s no secret matches usage value '%s'"),
                           scheme, usage);
        }
2659 2660 2661 2662 2663 2664
        goto cleanup;
    }

    secret = (char *)conn->secretDriver->secretGetValue(sec, &secret_size, 0,
                                                        VIR_SECRET_GET_VALUE_INTERNAL_CALL);
    if (!secret) {
2665
        if (diskSecretType == VIR_STORAGE_SECRET_TYPE_UUID) {
2666 2667 2668
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not get value of the secret for "
                             "username '%s' using uuid '%s'"),
2669
                           username, uuidStr);
2670 2671 2672 2673 2674 2675
        } else {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not get value of the secret for "
                             "username '%s' using usage value '%s'"),
                           username, usage);
        }
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690
        goto cleanup;
    }

    if (encoded) {
        char *base64 = NULL;

        base64_encode_alloc(secret, secret_size, &base64);
        VIR_FREE(secret);
        if (!base64) {
            virReportOOMError();
            goto cleanup;
        }
        secret = base64;
    }

2691
 cleanup:
2692 2693 2694
    virObjectUnref(sec);
    return secret;
}
2695

2696 2697 2698 2699

static int qemuAddRBDHost(virDomainDiskDefPtr disk, char *hostport)
{
    char *port;
2700 2701
    size_t skip;
    char **parts;
2702

2703
    if (VIR_EXPAND_N(disk->src.hosts, disk->src.nhosts, 1) < 0)
2704
        return -1;
2705

2706 2707 2708 2709 2710 2711 2712 2713 2714
    if ((port = strchr(hostport, ']'))) {
        /* ipv6, strip brackets */
        hostport += 1;
        skip = 3;
    } else {
        port = strstr(hostport, "\\:");
        skip = 2;
    }

2715 2716
    if (port) {
        *port = '\0';
2717
        port += skip;
2718
        if (VIR_STRDUP(disk->src.hosts[disk->src.nhosts - 1].port, port) < 0)
2719
            goto error;
2720
    } else {
2721
        if (VIR_STRDUP(disk->src.hosts[disk->src.nhosts - 1].port, "6789") < 0)
2722
            goto error;
2723
    }
2724 2725 2726

    parts = virStringSplit(hostport, "\\:", 0);
    if (!parts)
2727
        goto error;
2728
    disk->src.hosts[disk->src.nhosts-1].name = virStringJoin((const char **)parts, ":");
2729
    virStringFreeList(parts);
2730
    if (!disk->src.hosts[disk->src.nhosts-1].name)
2731
        goto error;
2732

2733
    disk->src.hosts[disk->src.nhosts-1].transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
2734
    disk->src.hosts[disk->src.nhosts-1].socket = NULL;
2735

2736 2737
    return 0;

2738
 error:
2739 2740
    VIR_FREE(disk->src.hosts[disk->src.nhosts-1].port);
    VIR_FREE(disk->src.hosts[disk->src.nhosts-1].name);
2741 2742 2743 2744 2745 2746 2747 2748 2749
    return -1;
}

/* disk->src initially has everything after the rbd: prefix */
static int qemuParseRBDString(virDomainDiskDefPtr disk)
{
    char *options = NULL;
    char *p, *e, *next;

2750
    p = strchr(disk->src.path, ':');
2751
    if (p) {
2752 2753
        if (VIR_STRDUP(options, p + 1) < 0)
            goto error;
2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777
        *p = '\0';
    }

    /* options */
    if (!options)
        return 0; /* all done */

    p = options;
    while (*p) {
        /* find : delimiter or end of string */
        for (e = p; *e && *e != ':'; ++e) {
            if (*e == '\\') {
                e++;
                if (*e == '\0')
                    break;
            }
        }
        if (*e == '\0') {
            next = e;    /* last kv pair */
        } else {
            next = e + 1;
            *e = '\0';
        }

2778
        if (STRPREFIX(p, "id=") &&
2779
            VIR_STRDUP(disk->src.auth.username, p + strlen("id=")) < 0)
2780
            goto error;
2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794
        if (STRPREFIX(p, "mon_host=")) {
            char *h, *sep;

            h = p + strlen("mon_host=");
            while (h < e) {
                for (sep = h; sep < e; ++sep) {
                    if (*sep == '\\' && (sep[1] == ',' ||
                                         sep[1] == ';' ||
                                         sep[1] == ' ')) {
                        *sep = '\0';
                        sep += 2;
                        break;
                    }
                }
2795 2796 2797
                if (qemuAddRBDHost(disk, h) < 0)
                    goto error;

2798 2799 2800 2801 2802 2803
                h = sep;
            }
        }

        p = next;
    }
2804
    VIR_FREE(options);
2805 2806
    return 0;

2807
 error:
2808
    VIR_FREE(options);
2809 2810
    return -1;
}
2811

2812
static int
P
Paolo Bonzini 已提交
2813 2814
qemuParseDriveURIString(virDomainDiskDefPtr def, virURIPtr uri,
                        const char *scheme)
2815 2816 2817 2818 2819
{
    int ret = -1;
    char *transp = NULL;
    char *sock = NULL;
    char *volimg = NULL;
2820
    char *secret = NULL;
2821

2822
    if (VIR_ALLOC(def->src.hosts) < 0)
2823
        goto error;
2824

P
Paolo Bonzini 已提交
2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835
    transp = strchr(uri->scheme, '+');
    if (transp)
        *transp++ = 0;

    if (!STREQ(uri->scheme, scheme)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Invalid transport/scheme '%s'"), uri->scheme);
        goto error;
    }

    if (!transp) {
2836
        def->src.hosts->transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
P
Paolo Bonzini 已提交
2837
    } else {
2838
        def->src.hosts->transport = virStorageNetHostTransportTypeFromString(transp);
2839
        if (def->src.hosts->transport < 0) {
2840
            virReportError(VIR_ERR_INTERNAL_ERROR,
P
Paolo Bonzini 已提交
2841
                           _("Invalid %s transport type '%s'"), scheme, transp);
2842 2843 2844
            goto error;
        }
    }
2845
    def->src.nhosts = 0; /* set to 1 once everything succeeds */
2846

2847
    if (def->src.hosts->transport != VIR_STORAGE_NET_HOST_TRANS_UNIX) {
2848
        if (VIR_STRDUP(def->src.hosts->name, uri->server) < 0)
2849
            goto error;
2850

2851
        if (virAsprintf(&def->src.hosts->port, "%d", uri->port) < 0)
2852
            goto error;
2853
    } else {
2854 2855
        def->src.hosts->name = NULL;
        def->src.hosts->port = 0;
2856 2857 2858
        if (uri->query) {
            if (STRPREFIX(uri->query, "socket=")) {
                sock = strchr(uri->query, '=') + 1;
2859
                if (VIR_STRDUP(def->src.hosts->socket, sock) < 0)
2860
                    goto error;
2861 2862 2863 2864 2865 2866 2867
            } else {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Invalid query parameter '%s'"), uri->query);
                goto error;
            }
        }
    }
P
Paolo Bonzini 已提交
2868 2869
    if (uri->path) {
        volimg = uri->path + 1; /* skip the prefix slash */
2870 2871
        VIR_FREE(def->src.path);
        if (VIR_STRDUP(def->src.path, volimg) < 0)
2872
            goto error;
P
Paolo Bonzini 已提交
2873
    } else {
2874
        VIR_FREE(def->src.path);
P
Paolo Bonzini 已提交
2875
    }
2876

2877 2878 2879 2880 2881
    if (uri->user) {
        secret = strchr(uri->user, ':');
        if (secret)
            *secret = '\0';

2882
        if (VIR_STRDUP(def->src.auth.username, uri->user) < 0)
2883
            goto error;
2884 2885
    }

2886
    def->src.nhosts = 1;
2887 2888
    ret = 0;

2889
 cleanup:
2890 2891 2892 2893
    virURIFree(uri);

    return ret;

2894
 error:
2895
    virStorageNetHostDefClear(def->src.hosts);
2896
    VIR_FREE(def->src.hosts);
2897 2898 2899
    goto cleanup;
}

P
Paolo Bonzini 已提交
2900 2901 2902 2903 2904
static int
qemuParseGlusterString(virDomainDiskDefPtr def)
{
    virURIPtr uri = NULL;

2905
    if (!(uri = virURIParse(def->src.path)))
P
Paolo Bonzini 已提交
2906 2907 2908 2909 2910
        return -1;

    return qemuParseDriveURIString(def, uri, "gluster");
}

P
Paolo Bonzini 已提交
2911 2912 2913 2914 2915 2916 2917
static int
qemuParseISCSIString(virDomainDiskDefPtr def)
{
    virURIPtr uri = NULL;
    char *slash;
    unsigned lun;

2918
    if (!(uri = virURIParse(def->src.path)))
P
Paolo Bonzini 已提交
2919 2920 2921 2922 2923 2924 2925 2926 2927
        return -1;

    if (uri->path &&
        (slash = strchr(uri->path + 1, '/')) != NULL) {

        if (slash[1] == '\0')
            *slash = '\0';
        else if (virStrToLong_ui(slash + 1, NULL, 10, &lun) == -1) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
2928 2929
                           _("invalid name '%s' for iSCSI disk"),
                           def->src.path);
P
Paolo Bonzini 已提交
2930 2931 2932 2933 2934 2935 2936
            return -1;
        }
    }

    return qemuParseDriveURIString(def, uri, "iscsi");
}

2937 2938 2939
static int
qemuParseNBDString(virDomainDiskDefPtr disk)
{
2940
    virStorageNetHostDefPtr h = NULL;
2941
    char *host, *port;
P
Paolo Bonzini 已提交
2942
    char *src;
2943

P
Paolo Bonzini 已提交
2944 2945
    virURIPtr uri = NULL;

2946 2947
    if (strstr(disk->src.path, "://")) {
        if (!(uri = virURIParse(disk->src.path)))
2948 2949
            return -1;
        return qemuParseDriveURIString(disk, uri, "nbd");
P
Paolo Bonzini 已提交
2950 2951
    }

2952
    if (VIR_ALLOC(h) < 0)
2953
        goto error;
2954

2955
    host = disk->src.path + strlen("nbd:");
2956 2957 2958 2959
    if (STRPREFIX(host, "unix:/")) {
        src = strchr(host + strlen("unix:"), ':');
        if (src)
            *src++ = '\0';
2960

2961
        h->transport = VIR_STORAGE_NET_HOST_TRANS_UNIX;
2962 2963
        if (VIR_STRDUP(h->socket, host + strlen("unix:")) < 0)
            goto error;
2964 2965 2966 2967
    } else {
        port = strchr(host, ':');
        if (!port) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
2968
                           _("cannot parse nbd filename '%s'"), disk->src.path);
2969 2970
            goto error;
        }
2971

2972
        *port++ = '\0';
2973 2974
        if (VIR_STRDUP(h->name, host) < 0)
            goto error;
P
Paolo Bonzini 已提交
2975

2976 2977 2978 2979
        src = strchr(port, ':');
        if (src)
            *src++ = '\0';

2980 2981
        if (VIR_STRDUP(h->port, port) < 0)
            goto error;
2982
    }
2983

P
Paolo Bonzini 已提交
2984
    if (src && STRPREFIX(src, "exportname=")) {
2985 2986
        if (VIR_STRDUP(src, strchr(src, '=') + 1) < 0)
            goto error;
P
Paolo Bonzini 已提交
2987 2988 2989 2990
    } else {
        src = NULL;
    }

2991 2992 2993 2994
    VIR_FREE(disk->src.path);
    disk->src.path = src;
    disk->src.nhosts = 1;
    disk->src.hosts = h;
2995 2996
    return 0;

2997
 error:
2998
    virStorageNetHostDefClear(h);
2999 3000 3001 3002
    VIR_FREE(h);
    return -1;
}

3003

3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020
static int
qemuNetworkDriveGetPort(int protocol,
                        const char *port)
{
    int ret = 0;

    if (port) {
        if (virStrToLong_i(port, NULL, 10, &ret) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("failed to parse port number '%s'"),
                           port);
            return -1;
        }

        return ret;
    }

3021
    switch ((virStorageNetProtocol) protocol) {
3022
        case VIR_STORAGE_NET_PROTOCOL_HTTP:
3023 3024
            return 80;

3025
        case VIR_STORAGE_NET_PROTOCOL_HTTPS:
3026 3027
            return 443;

3028
        case VIR_STORAGE_NET_PROTOCOL_FTP:
3029 3030
            return 21;

3031
        case VIR_STORAGE_NET_PROTOCOL_FTPS:
3032 3033
            return 990;

3034
        case VIR_STORAGE_NET_PROTOCOL_TFTP:
3035 3036
            return 69;

3037
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
3038 3039
            return 7000;

3040
        case VIR_STORAGE_NET_PROTOCOL_NBD:
3041 3042
            return 10809;

3043 3044
        case VIR_STORAGE_NET_PROTOCOL_ISCSI:
        case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
3045 3046 3047
            /* no default port specified */
            return 0;

3048 3049
        case VIR_STORAGE_NET_PROTOCOL_RBD:
        case VIR_STORAGE_NET_PROTOCOL_LAST:
3050 3051
        case VIR_STORAGE_NET_PROTOCOL_NONE:
            /* not applicable */
3052 3053 3054 3055 3056 3057
            return -1;
    }

    return -1;
}

3058
#define QEMU_DEFAULT_NBD_PORT "10809"
3059

3060
static char *
3061 3062
qemuBuildNetworkDriveURI(int protocol,
                         const char *src,
3063
                         const char *volume,
3064
                         size_t nhosts,
3065
                         virStorageNetHostDefPtr hosts,
3066 3067 3068 3069
                         const char *username,
                         const char *secret)
{
    char *ret = NULL;
3070
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3071
    virURIPtr uri = NULL;
3072
    size_t i;
3073

3074
    switch ((virStorageNetProtocol) protocol) {
3075
        case VIR_STORAGE_NET_PROTOCOL_NBD:
3076 3077 3078
            if (nhosts != 1) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
3079
                               virStorageNetProtocolTypeToString(protocol));
3080 3081 3082 3083
                goto cleanup;
            }

            if (!((hosts->name && strchr(hosts->name, ':')) ||
3084
                  (hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP &&
3085
                   !hosts->name) ||
3086
                  (hosts->transport == VIR_STORAGE_NET_HOST_TRANS_UNIX &&
3087 3088 3089 3090 3091 3092
                   hosts->socket &&
                   hosts->socket[0] != '/'))) {

                virBufferAddLit(&buf, "nbd:");

                switch (hosts->transport) {
3093
                case VIR_STORAGE_NET_HOST_TRANS_TCP:
3094 3095 3096 3097 3098 3099
                    virBufferStrcat(&buf, hosts->name, NULL);
                    virBufferAsprintf(&buf, ":%s",
                                      hosts->port ? hosts->port :
                                      QEMU_DEFAULT_NBD_PORT);
                    break;

3100
                case VIR_STORAGE_NET_HOST_TRANS_UNIX:
3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113
                    if (!hosts->socket) {
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("socket attribute required for "
                                         "unix transport"));
                        goto cleanup;
                    }

                    virBufferAsprintf(&buf, "unix:%s", hosts->socket);
                    break;

                default:
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("nbd does not support transport '%s'"),
3114
                                   virStorageNetHostTransportTypeToString(hosts->transport));
3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131
                    goto cleanup;
                }

                if (src)
                    virBufferAsprintf(&buf, ":exportname=%s", src);

                if (virBufferError(&buf) < 0) {
                    virReportOOMError();
                    goto cleanup;
                }

                ret = virBufferContentAndReset(&buf);
                goto cleanup;
            }
            /* fallthrough */
            /* NBD code uses same formatting scheme as others in some cases */

3132 3133 3134 3135 3136 3137 3138
        case VIR_STORAGE_NET_PROTOCOL_HTTP:
        case VIR_STORAGE_NET_PROTOCOL_HTTPS:
        case VIR_STORAGE_NET_PROTOCOL_FTP:
        case VIR_STORAGE_NET_PROTOCOL_FTPS:
        case VIR_STORAGE_NET_PROTOCOL_TFTP:
        case VIR_STORAGE_NET_PROTOCOL_ISCSI:
        case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
3139 3140 3141
            if (nhosts != 1) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
3142
                               virStorageNetProtocolTypeToString(protocol));
3143 3144
                goto cleanup;
            }
3145

3146 3147
            if (VIR_ALLOC(uri) < 0)
                goto cleanup;
3148

3149
            if (hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP) {
3150
                if (VIR_STRDUP(uri->scheme,
3151
                               virStorageNetProtocolTypeToString(protocol)) < 0)
3152 3153 3154
                    goto cleanup;
            } else {
                if (virAsprintf(&uri->scheme, "%s+%s",
3155
                                virStorageNetProtocolTypeToString(protocol),
3156
                                virStorageNetHostTransportTypeToString(hosts->transport)) < 0)
3157 3158
                    goto cleanup;
            }
3159

3160 3161
            if ((uri->port = qemuNetworkDriveGetPort(protocol, hosts->port)) < 0)
                goto cleanup;
3162

3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174
            if (src) {
                if (volume) {
                    if (virAsprintf(&uri->path, "/%s%s",
                                    volume, src) < 0)
                        goto cleanup;
                } else {
                    if (virAsprintf(&uri->path, "%s%s",
                                    src[0] == '/' ? "" : "/",
                                    src) < 0)
                        goto cleanup;
                }
            }
3175

3176 3177
            if (hosts->socket &&
                virAsprintf(&uri->query, "socket=%s", hosts->socket) < 0)
3178
                goto cleanup;
3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190

            if (username) {
                if (secret) {
                    if (virAsprintf(&uri->user, "%s:%s", username, secret) < 0)
                        goto cleanup;
                } else {
                    if (VIR_STRDUP(uri->user, username) < 0)
                        goto cleanup;
                }
            }

            if (VIR_STRDUP(uri->server, hosts->name) < 0)
3191 3192
                goto cleanup;

3193
            ret = virURIFormat(uri);
3194

3195 3196
            break;

3197
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220
            if (!src) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("missing disk source for 'sheepdog' protocol"));
                goto cleanup;
            }

            if (nhosts == 0) {
                if (virAsprintf(&ret, "sheepdog:%s", src) < 0)
                    goto cleanup;
            } else if (nhosts == 1) {
                if (virAsprintf(&ret, "sheepdog:%s:%s:%s",
                                hosts->name,
                                hosts->port ? hosts->port : "7000",
                                src) < 0)
                    goto cleanup;
            } else {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("protocol 'sheepdog' accepts up to one host"));
                goto cleanup;
            }

            break;

3221
        case VIR_STORAGE_NET_PROTOCOL_RBD:
3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265
            if (strchr(src, ':')) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("':' not allowed in RBD source volume name '%s'"),
                               src);
                goto cleanup;
            }

            virBufferStrcat(&buf, "rbd:", src, NULL);

            if (username) {
                virBufferEscape(&buf, '\\', ":", ":id=%s", username);
                virBufferEscape(&buf, '\\', ":",
                                ":key=%s:auth_supported=cephx\\;none",
                                secret);
            } else {
                virBufferAddLit(&buf, ":auth_supported=none");
            }

            if (nhosts > 0) {
                virBufferAddLit(&buf, ":mon_host=");
                for (i = 0; i < nhosts; i++) {
                    if (i)
                        virBufferAddLit(&buf, "\\;");

                    /* assume host containing : is ipv6 */
                    if (strchr(hosts[i].name, ':'))
                        virBufferEscape(&buf, '\\', ":", "[%s]", hosts[i].name);
                    else
                        virBufferAsprintf(&buf, "%s", hosts[i].name);

                    if (hosts[i].port)
                        virBufferAsprintf(&buf, "\\:%s", hosts[i].port);
                }
            }

            if (virBufferError(&buf) < 0) {
                virReportOOMError();
                goto cleanup;
            }

            ret = virBufferContentAndReset(&buf);
            break;


3266
        case VIR_STORAGE_NET_PROTOCOL_LAST:
3267
        case VIR_STORAGE_NET_PROTOCOL_NONE:
3268 3269
            goto cleanup;
    }
3270

3271
 cleanup:
3272
    virBufferFreeAndReset(&buf);
3273 3274 3275 3276 3277 3278
    virURIFree(uri);

    return ret;
}


3279
int
3280 3281 3282
qemuGetDriveSourceString(virStorageSourcePtr src,
                         virConnectPtr conn,
                         char **source)
3283
{
3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306
    int actualType = virStorageSourceGetActualType(src);
    char *secret = NULL;
    char *username = NULL;
    int ret = -1;

    *source = NULL;

    if (conn) {
        if (actualType == VIR_STORAGE_TYPE_NETWORK &&
            src->auth.username &&
            (src->protocol == VIR_STORAGE_NET_PROTOCOL_ISCSI ||
             src->protocol == VIR_STORAGE_NET_PROTOCOL_RBD)) {
            bool encode = false;
            int secretType = VIR_SECRET_USAGE_TYPE_ISCSI;
            const char *protocol = virStorageNetProtocolTypeToString(src->protocol);

            username = src->auth.username;

            if (src->protocol == VIR_STORAGE_NET_PROTOCOL_RBD) {
                /* qemu requires the secret to be encoded for RBD */
                encode = true;
                secretType = VIR_SECRET_USAGE_TYPE_CEPH;
            }
3307

3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319
            if (!(secret = qemuGetSecretString(conn,
                                               protocol,
                                               encode,
                                               src->auth.secretType,
                                               username,
                                               src->auth.secret.uuid,
                                               src->auth.secret.usage,
                                               secretType)))
                goto cleanup;
        }
    }

3320
    switch ((virStorageType) actualType) {
E
Eric Blake 已提交
3321 3322 3323
    case VIR_STORAGE_TYPE_BLOCK:
    case VIR_STORAGE_TYPE_FILE:
    case VIR_STORAGE_TYPE_DIR:
3324 3325 3326 3327
        if (!src->path) {
            ret = 1;
            goto cleanup;
        }
3328

3329 3330
        if (VIR_STRDUP(*source, src->path) < 0)
            goto cleanup;
3331 3332 3333

        break;

E
Eric Blake 已提交
3334
    case VIR_STORAGE_TYPE_NETWORK:
3335 3336
        if (!(*source = qemuBuildNetworkDriveURI(src->protocol,
                                                 src->path,
3337
                                                 src->volume,
3338 3339 3340 3341 3342
                                                 src->nhosts,
                                                 src->hosts,
                                                 username,
                                                 secret)))
            goto cleanup;
3343 3344
        break;

E
Eric Blake 已提交
3345
    case VIR_STORAGE_TYPE_VOLUME:
3346
    case VIR_STORAGE_TYPE_NONE:
E
Eric Blake 已提交
3347
    case VIR_STORAGE_TYPE_LAST:
3348 3349 3350
        break;
    }

3351
    ret = 0;
3352

3353
 cleanup:
J
John Ferlan 已提交
3354
    VIR_FREE(secret);
3355 3356 3357
    return ret;
}

P
Paolo Bonzini 已提交
3358

3359
char *
3360
qemuBuildDriveStr(virConnectPtr conn,
3361
                  virDomainDiskDefPtr disk,
3362
                  bool bootable,
3363
                  virQEMUCapsPtr qemuCaps)
3364 3365 3366
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
3367 3368
    const char *trans =
        virDomainDiskGeometryTransTypeToString(disk->geometry.trans);
3369 3370
    int idx = virDiskNameToIndex(disk->dst);
    int busid = -1, unitid = -1;
3371
    char *source = NULL;
3372
    int actualType = virStorageSourceGetActualType(&disk->src);
3373 3374

    if (idx < 0) {
3375 3376
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk type '%s'"), disk->dst);
3377 3378 3379 3380 3381 3382
        goto error;
    }

    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_SCSI:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
3383 3384
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for scsi disk"));
3385 3386 3387 3388 3389 3390 3391
            goto error;
        }

        /* Setting bus= attr for SCSI drives, causes a controller
         * to be created. Yes this is slightly odd. It is not possible
         * to have > 1 bus on a SCSI controller (yet). */
        if (disk->info.addr.drive.bus != 0) {
3392 3393
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("SCSI controller only supports 1 bus"));
3394 3395 3396 3397 3398 3399 3400 3401
            goto error;
        }
        busid = disk->info.addr.drive.controller;
        unitid = disk->info.addr.drive.unit;
        break;

    case VIR_DOMAIN_DISK_BUS_IDE:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
3402 3403
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for ide disk"));
3404 3405 3406 3407
            goto error;
        }
        /* We can only have 1 IDE controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
3408 3409
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s controller is supported"), bus);
3410 3411 3412 3413 3414 3415 3416 3417
            goto error;
        }
        busid = disk->info.addr.drive.bus;
        unitid = disk->info.addr.drive.unit;
        break;

    case VIR_DOMAIN_DISK_BUS_FDC:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
3418 3419
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for fdc disk"));
3420 3421 3422 3423
            goto error;
        }
        /* We can only have 1 FDC controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
3424 3425
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s controller is supported"), bus);
3426 3427 3428 3429
            goto error;
        }
        /* We can only have 1 FDC bus (currently) */
        if (disk->info.addr.drive.bus != 0) {
3430 3431
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s bus is supported"), bus);
3432 3433
            goto error;
        }
3434
        if (disk->info.addr.drive.target != 0) {
3435 3436
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for controller fdc"));
3437 3438
            goto error;
        }
3439 3440 3441 3442 3443 3444 3445 3446 3447
        unitid = disk->info.addr.drive.unit;

        break;

    case VIR_DOMAIN_DISK_BUS_VIRTIO:
        idx = -1;
        break;

    case VIR_DOMAIN_DISK_BUS_XEN:
3448 3449 3450
    case VIR_DOMAIN_DISK_BUS_SD:
        /* Xen and SD have no address type currently, so assign
         * based on index */
3451 3452 3453
        break;
    }

3454
    if (qemuGetDriveSourceString(&disk->src, conn, &source) < 0)
3455 3456 3457
        goto error;

    if (source &&
3458 3459 3460
        !((disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY ||
           disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) &&
          disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN)) {
3461

3462 3463 3464
        virBufferAddLit(&opt, "file=");

        switch (actualType) {
E
Eric Blake 已提交
3465
        case VIR_STORAGE_TYPE_DIR:
3466
            /* QEMU only supports magic FAT format for now */
3467 3468
            if (disk->src.format > 0 &&
                disk->src.format != VIR_STORAGE_FILE_FAT) {
3469 3470
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unsupported disk driver type for '%s'"),
3471
                               virStorageFileFormatTypeToString(disk->src.format));
3472 3473
                goto error;
            }
3474

3475
            if (!disk->readonly) {
3476 3477
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("cannot create virtual FAT disks in read-write mode"));
3478 3479
                goto error;
            }
3480 3481 3482

            virBufferAddLit(&opt, "fat:");

3483
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY)
3484
                virBufferAddLit(&opt, "floppy:");
3485

3486 3487
            break;

E
Eric Blake 已提交
3488
        case VIR_STORAGE_TYPE_BLOCK:
3489
            if (disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN) {
3490
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
E
Eric Blake 已提交
3491
                               disk->src.type == VIR_STORAGE_TYPE_VOLUME ?
3492 3493
                               _("tray status 'open' is invalid for block type volume") :
                               _("tray status 'open' is invalid for block type disk"));
3494 3495
                goto error;
            }
3496 3497 3498 3499 3500

            break;

        default:
            break;
3501
        }
3502 3503

        virBufferEscape(&opt, ',', ",", "%s,", source);
3504
    }
3505
    VIR_FREE(source);
3506

3507
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
3508 3509
        virBufferAddLit(&opt, "if=none");
    else
3510
        virBufferAsprintf(&opt, "if=%s", bus);
3511

3512
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
3513
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
3514
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD))
3515
                virBufferAddLit(&opt, ",media=cdrom");
3516
        } else if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
3517
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD))
3518
                virBufferAddLit(&opt, ",media=cdrom");
3519 3520 3521 3522
        } else {
            virBufferAddLit(&opt, ",media=cdrom");
        }
    }
3523

3524
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
3525
        virBufferAsprintf(&opt, ",id=%s%s", QEMU_DRIVE_HOST_PREFIX, disk->info.alias);
3526 3527 3528
    } else {
        if (busid == -1 && unitid == -1) {
            if (idx != -1)
3529
                virBufferAsprintf(&opt, ",index=%d", idx);
3530 3531
        } else {
            if (busid != -1)
3532
                virBufferAsprintf(&opt, ",bus=%d", busid);
3533
            if (unitid != -1)
3534
                virBufferAsprintf(&opt, ",unit=%d", unitid);
3535 3536 3537
        }
    }
    if (bootable &&
3538
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) &&
3539 3540
        (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK ||
         disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) &&
3541 3542 3543
        disk->bus != VIR_DOMAIN_DISK_BUS_IDE)
        virBufferAddLit(&opt, ",boot=on");
    if (disk->readonly &&
3544
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_READONLY))
3545
        virBufferAddLit(&opt, ",readonly=on");
3546
    if (disk->transient) {
3547 3548
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("transient disks not supported yet"));
3549 3550
        goto error;
    }
3551
    if (disk->src.format > 0 &&
E
Eric Blake 已提交
3552
        disk->src.type != VIR_STORAGE_TYPE_DIR &&
3553
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_FORMAT))
3554
        virBufferAsprintf(&opt, ",format=%s",
3555
                          virStorageFileFormatTypeToString(disk->src.format));
3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570

    /* generate geometry command string */
    if (disk->geometry.cylinders > 0 &&
        disk->geometry.heads > 0 &&
        disk->geometry.sectors > 0) {

        virBufferAsprintf(&opt, ",cyls=%u,heads=%u,secs=%u",
                          disk->geometry.cylinders,
                          disk->geometry.heads,
                          disk->geometry.sectors);

        if (disk->geometry.trans != VIR_DOMAIN_DISK_TRANS_DEFAULT)
            virBufferEscapeString(&opt, ",trans=%s", trans);
    }

3571
    if (disk->serial &&
3572
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_SERIAL)) {
3573 3574
        if (qemuSafeSerialParamValue(disk->serial) < 0)
            goto error;
3575
        virBufferAsprintf(&opt, ",serial=%s", disk->serial);
3576 3577 3578
    }

    if (disk->cachemode) {
3579 3580
        const char *mode = NULL;

3581
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_V2)) {
3582 3583 3584
            mode = qemuDiskCacheV2TypeToString(disk->cachemode);

            if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_DIRECTSYNC &&
3585
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_DIRECTSYNC)) {
3586 3587 3588
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("disk cache mode 'directsync' is not "
                                 "supported by this QEMU"));
3589
                goto error;
3590
            } else if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_UNSAFE &&
3591
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_UNSAFE)) {
3592 3593 3594
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("disk cache mode 'unsafe' is not "
                                 "supported by this QEMU"));
3595
                goto error;
3596 3597 3598 3599
            }
        } else {
            mode = qemuDiskCacheV1TypeToString(disk->cachemode);
        }
3600

3601
        virBufferAsprintf(&opt, ",cache=%s", mode);
3602 3603 3604 3605
    } else if (disk->shared && !disk->readonly) {
        virBufferAddLit(&opt, ",cache=off");
    }

O
Osier Yang 已提交
3606
    if (disk->copy_on_read) {
3607
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_COPY_ON_READ)) {
O
Osier Yang 已提交
3608 3609 3610
            virBufferAsprintf(&opt, ",copy-on-read=%s",
                              virDomainDiskCopyOnReadTypeToString(disk->copy_on_read));
        } else {
3611 3612
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("copy_on_read is not supported by this QEMU binary"));
O
Osier Yang 已提交
3613 3614 3615 3616
            goto error;
        }
    }

O
Osier Yang 已提交
3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627
    if (disk->discard) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_DISCARD)) {
            virBufferAsprintf(&opt, ",discard=%s",
                              virDomainDiskDiscardTypeToString(disk->discard));
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("discard is not supported by this QEMU binary"));
            goto error;
        }
    }

3628
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MONITOR_JSON)) {
3629 3630 3631 3632
        const char *wpolicy = NULL, *rpolicy = NULL;

        if (disk->error_policy)
            wpolicy = virDomainDiskErrorPolicyTypeToString(disk->error_policy);
3633 3634
        if (disk->rerror_policy)
            rpolicy = virDomainDiskErrorPolicyTypeToString(disk->rerror_policy);
3635 3636

        if (disk->error_policy == VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE) {
3637 3638 3639
            /* in the case of enospace, the option is spelled
             * differently in qemu, and it's only valid for werror,
             * not for rerror, so leave leave rerror NULL.
3640
             */
3641 3642 3643 3644
            wpolicy = "enospc";
        } else if (!rpolicy) {
            /* for other policies, rpolicy can match wpolicy */
            rpolicy = wpolicy;
3645
        }
3646 3647 3648 3649 3650

        if (wpolicy)
            virBufferAsprintf(&opt, ",werror=%s", wpolicy);
        if (rpolicy)
            virBufferAsprintf(&opt, ",rerror=%s", rpolicy);
3651 3652
    }

E
Eric Blake 已提交
3653
    if (disk->iomode) {
3654
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_AIO)) {
3655
            virBufferAsprintf(&opt, ",aio=%s",
E
Eric Blake 已提交
3656 3657
                              virDomainDiskIoTypeToString(disk->iomode));
        } else {
3658 3659 3660
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk aio mode not supported with this "
                             "QEMU binary"));
E
Eric Blake 已提交
3661 3662 3663 3664
            goto error;
        }
    }

3665
    /* block I/O throttling */
3666 3667 3668 3669 3670 3671
    if ((disk->blkdeviotune.total_bytes_sec ||
         disk->blkdeviotune.read_bytes_sec ||
         disk->blkdeviotune.write_bytes_sec ||
         disk->blkdeviotune.total_iops_sec ||
         disk->blkdeviotune.read_iops_sec ||
         disk->blkdeviotune.write_iops_sec) &&
3672
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE)) {
3673 3674 3675
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("block I/O throttling not supported with this "
                         "QEMU binary"));
3676 3677 3678
        goto error;
    }

3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708
    if (disk->blkdeviotune.total_bytes_sec) {
        virBufferAsprintf(&opt, ",bps=%llu",
                          disk->blkdeviotune.total_bytes_sec);
    }

    if (disk->blkdeviotune.read_bytes_sec) {
        virBufferAsprintf(&opt, ",bps_rd=%llu",
                          disk->blkdeviotune.read_bytes_sec);
    }

    if (disk->blkdeviotune.write_bytes_sec) {
        virBufferAsprintf(&opt, ",bps_wr=%llu",
                          disk->blkdeviotune.write_bytes_sec);
    }

    if (disk->blkdeviotune.total_iops_sec) {
        virBufferAsprintf(&opt, ",iops=%llu",
                          disk->blkdeviotune.total_iops_sec);
    }

    if (disk->blkdeviotune.read_iops_sec) {
        virBufferAsprintf(&opt, ",iops_rd=%llu",
                          disk->blkdeviotune.read_iops_sec);
    }

    if (disk->blkdeviotune.write_iops_sec) {
        virBufferAsprintf(&opt, ",iops_wr=%llu",
                          disk->blkdeviotune.write_iops_sec);
    }

3709 3710 3711 3712 3713 3714 3715
    if (virBufferError(&opt)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&opt);

3716
 error:
3717
    VIR_FREE(source);
3718 3719 3720 3721 3722
    virBufferFreeAndReset(&opt);
    return NULL;
}

char *
3723 3724
qemuBuildDriveDevStr(virDomainDefPtr def,
                     virDomainDiskDefPtr disk,
3725
                     int bootindex,
3726
                     virQEMUCapsPtr qemuCaps)
3727 3728 3729 3730
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
    int idx = virDiskNameToIndex(disk->dst);
3731
    int controllerModel;
3732 3733

    if (idx < 0) {
3734 3735
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk type '%s'"), disk->dst);
3736 3737 3738
        goto error;
    }

3739 3740 3741 3742 3743 3744 3745 3746 3747
    if (disk->wwn) {
        if ((disk->bus != VIR_DOMAIN_DISK_BUS_IDE) &&
            (disk->bus != VIR_DOMAIN_DISK_BUS_SCSI)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Only ide and scsi disk support wwn"));
            goto error;
        }
    }

3748 3749 3750 3751 3752 3753 3754
    if ((disk->vendor || disk->product) &&
        disk->bus != VIR_DOMAIN_DISK_BUS_SCSI) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Only scsi disk supports vendor and product"));
            goto error;
    }

3755 3756 3757 3758
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
        /* make sure that both the bus and the qemu binary support
         *  type='lun' (SG_IO).
         */
3759 3760
        if (disk->bus != VIR_DOMAIN_DISK_BUS_VIRTIO &&
            disk->bus != VIR_DOMAIN_DISK_BUS_SCSI) {
3761 3762 3763
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("disk device='lun' is not supported for bus='%s'"),
                           bus);
3764 3765
            goto error;
        }
E
Eric Blake 已提交
3766
        if (disk->src.type == VIR_STORAGE_TYPE_NETWORK) {
3767
            if (disk->src.protocol != VIR_STORAGE_NET_PROTOCOL_ISCSI) {
3768 3769
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("disk device='lun' is not supported for protocol='%s'"),
3770
                               virStorageNetProtocolTypeToString(disk->src.protocol));
3771 3772
                goto error;
            }
3773
        } else if (!virDomainDiskSourceIsBlockType(disk)) {
3774 3775
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk device='lun' is only valid for block type disk source"));
3776 3777
            goto error;
        }
3778
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_SG_IO)) {
3779 3780
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk device='lun' is not supported by this QEMU"));
3781 3782
            goto error;
        }
3783 3784 3785 3786 3787
        if (disk->wwn) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn is not supported for lun device"));
            goto error;
        }
3788 3789 3790 3791 3792 3793
        if (disk->vendor || disk->product) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product is not supported "
                             "for lun device"));
            goto error;
        }
3794 3795
    }

3796 3797
    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_IDE:
3798
        if (disk->info.addr.drive.target != 0) {
3799 3800
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
3801 3802
            goto error;
        }
3803

3804
        if (disk->wwn &&
3805
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_DRIVE_WWN)) {
3806 3807 3808 3809 3810 3811
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for ide disk is not supported "
                             "by this QEMU"));
            goto error;
        }

3812
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
3813 3814 3815 3816 3817 3818 3819 3820
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

3821
        virBufferAsprintf(&opt, ",bus=ide.%d,unit=%d",
3822 3823 3824 3825
                          disk->info.addr.drive.bus,
                          disk->info.addr.drive.unit);
        break;
    case VIR_DOMAIN_DISK_BUS_SCSI:
3826
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
3827
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_BLOCK)) {
3828 3829 3830
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support scsi-block for "
                                 "lun passthrough"));
3831 3832 3833 3834
                goto error;
            }
        }

3835
        if (disk->wwn &&
3836
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
3837 3838 3839 3840 3841 3842
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for scsi disk is not supported "
                             "by this QEMU"));
            goto error;
        }

3843 3844 3845 3846
        /* Properties wwn, vendor and product were introduced in the
         * same QEMU release (1.2.0).
         */
        if ((disk->vendor || disk->product) &&
3847
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
3848 3849 3850 3851 3852 3853
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product for scsi disk is not "
                             "supported by this QEMU"));
            goto error;
        }

3854
        controllerModel =
H
Han Cheng 已提交
3855 3856
            virDomainDeviceFindControllerModel(def, &disk->info,
                                               VIR_DOMAIN_CONTROLLER_TYPE_SCSI);
3857
        if ((qemuSetSCSIControllerModel(def, qemuCaps, &controllerModel)) < 0)
3858
            goto error;
3859 3860 3861

        if (controllerModel == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
            if (disk->info.addr.drive.target != 0) {
3862 3863 3864
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("target must be 0 for controller "
                                 "model 'lsilogic'"));
3865 3866 3867
                goto error;
            }

3868
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
3869
                virBufferAddLit(&opt, "scsi-block");
3870
            } else {
3871
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD)) {
3872 3873 3874 3875 3876 3877 3878 3879 3880
                    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                        virBufferAddLit(&opt, "scsi-cd");
                    else
                        virBufferAddLit(&opt, "scsi-hd");
                } else {
                    virBufferAddLit(&opt, "scsi-disk");
                }
            }

3881 3882 3883 3884 3885
            virBufferAsprintf(&opt, ",bus=scsi%d.%d,scsi-id=%d",
                              disk->info.addr.drive.controller,
                              disk->info.addr.drive.bus,
                              disk->info.addr.drive.unit);
        } else {
3886
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_CHANNEL)) {
3887
                if (disk->info.addr.drive.target > 7) {
3888 3889 3890
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU doesn't support target "
                                     "greater than 7"));
3891 3892 3893 3894 3895
                    goto error;
                }

                if ((disk->info.addr.drive.bus != disk->info.addr.drive.unit) &&
                    (disk->info.addr.drive.bus != 0)) {
3896 3897 3898
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU only supports both bus and "
                                     "unit equal to 0"));
3899 3900 3901 3902
                    goto error;
                }
            }

3903
            if (disk->device != VIR_DOMAIN_DISK_DEVICE_LUN) {
3904
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD)) {
3905 3906 3907 3908 3909 3910 3911 3912
                    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                        virBufferAddLit(&opt, "scsi-cd");
                    else
                        virBufferAddLit(&opt, "scsi-hd");
                } else {
                    virBufferAddLit(&opt, "scsi-disk");
                }
            } else {
3913
                virBufferAddLit(&opt, "scsi-block");
3914
            }
3915

3916 3917 3918 3919 3920 3921
            virBufferAsprintf(&opt, ",bus=scsi%d.0,channel=%d,scsi-id=%d,lun=%d",
                              disk->info.addr.drive.controller,
                              disk->info.addr.drive.bus,
                              disk->info.addr.drive.target,
                              disk->info.addr.drive.unit);
        }
3922
        break;
J
Jim Fehlig 已提交
3923
    case VIR_DOMAIN_DISK_BUS_SATA:
3924
        if (disk->info.addr.drive.bus != 0) {
3925 3926
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("bus must be 0 for ide controller"));
3927 3928 3929
            goto error;
        }
        if (disk->info.addr.drive.target != 0) {
3930 3931
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
3932 3933
            goto error;
        }
3934

3935
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
3936 3937 3938 3939 3940 3941 3942 3943
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

3944 3945 3946
        if (qemuDomainMachineIsQ35(def) &&
            disk->info.addr.drive.controller == 0) {
            /* Q35 machines have an implicit ahci (sata) controller at
3947 3948 3949
             * 00:1F.2 which for some reason is hardcoded with the id
             * "ide" instead of the seemingly more reasonable "ahci0"
             * or "sata0".
3950
             */
3951
            virBufferAsprintf(&opt, ",bus=ide.%d", disk->info.addr.drive.unit);
3952 3953
        } else {
            /* All other ahci controllers have been created by
3954 3955
             * libvirt, and we gave them the id "ahci${n}" where ${n}
             * is the controller number. So we identify them that way.
3956 3957 3958 3959 3960
             */
            virBufferAsprintf(&opt, ",bus=ahci%d.%d",
                              disk->info.addr.drive.controller,
                              disk->info.addr.drive.unit);
        }
J
Jim Fehlig 已提交
3961
        break;
3962
    case VIR_DOMAIN_DISK_BUS_VIRTIO:
3963 3964 3965 3966
        if (disk->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            virBufferAddLit(&opt, "virtio-blk-ccw");
        } else if (disk->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
3967
            virBufferAddLit(&opt, "virtio-blk-s390");
3968 3969 3970
        } else if (disk->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO) {
            virBufferAddLit(&opt, "virtio-blk-device");
3971 3972 3973
        } else {
            virBufferAddLit(&opt, "virtio-blk-pci");
        }
3974
        qemuBuildIoEventFdStr(&opt, disk->ioeventfd, qemuCaps);
3975
        if (disk->event_idx &&
3976
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_EVENT_IDX)) {
3977 3978 3979
            virBufferAsprintf(&opt, ",event_idx=%s",
                              virDomainVirtioEventIdxTypeToString(disk->event_idx));
        }
3980
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_SCSI)) {
3981 3982 3983 3984 3985 3986 3987
            /* if sg_io is true but the scsi option isn't supported,
             * that means it's just always on in this version of qemu.
             */
            virBufferAsprintf(&opt, ",scsi=%s",
                              (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN)
                              ? "on" : "off");
        }
3988
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
A
Alex Jia 已提交
3989
            goto error;
3990 3991
        break;
    case VIR_DOMAIN_DISK_BUS_USB:
3992 3993 3994 3995 3996 3997 3998
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_STORAGE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("This QEMU doesn't support '-device "
                             "usb-storage'"));
            goto error;

        }
3999
        virBufferAddLit(&opt, "usb-storage");
4000

4001
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
4002
            goto error;
4003 4004
        break;
    default:
4005 4006
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk bus '%s' with device setup"), bus);
4007 4008
        goto error;
    }
4009 4010
    virBufferAsprintf(&opt, ",drive=%s%s", QEMU_DRIVE_HOST_PREFIX, disk->info.alias);
    virBufferAsprintf(&opt, ",id=%s", disk->info.alias);
4011
    if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
4012
        virBufferAsprintf(&opt, ",bootindex=%d", bootindex);
4013
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKIO)) {
V
Viktor Mihajlovski 已提交
4014
        if (disk->blockio.logical_block_size > 0)
4015
            virBufferAsprintf(&opt, ",logical_block_size=%u",
V
Viktor Mihajlovski 已提交
4016 4017
                              disk->blockio.logical_block_size);
        if (disk->blockio.physical_block_size > 0)
4018
            virBufferAsprintf(&opt, ",physical_block_size=%u",
V
Viktor Mihajlovski 已提交
4019
                              disk->blockio.physical_block_size);
4020
    }
4021

4022 4023 4024 4025 4026 4027
    if (disk->wwn) {
        if (STRPREFIX(disk->wwn, "0x"))
            virBufferAsprintf(&opt, ",wwn=%s", disk->wwn);
        else
            virBufferAsprintf(&opt, ",wwn=0x%s", disk->wwn);
    }
4028

4029 4030 4031 4032 4033 4034
    if (disk->vendor)
        virBufferAsprintf(&opt, ",vendor=%s", disk->vendor);

    if (disk->product)
        virBufferAsprintf(&opt, ",product=%s", disk->product);

4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050
    if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_STORAGE_REMOVABLE)) {
            if (disk->removable == VIR_DOMAIN_FEATURE_STATE_ON)
                virBufferAddLit(&opt, ",removable=on");
            else
                virBufferAddLit(&opt, ",removable=off");
        } else {
            if (disk->removable != VIR_DOMAIN_FEATURE_STATE_DEFAULT) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support setting the "
                                 "removable flag of USB storage devices"));
                goto error;
            }
        }
    }

4051 4052 4053 4054 4055 4056 4057
    if (virBufferError(&opt)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&opt);

4058
 error:
4059 4060 4061 4062 4063 4064
    virBufferFreeAndReset(&opt);
    return NULL;
}


char *qemuBuildFSStr(virDomainFSDefPtr fs,
4065
                     virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED)
4066 4067
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
4068
    const char *driver = qemuDomainFSDriverTypeToString(fs->fsdriver);
4069
    const char *wrpolicy = virDomainFSWrpolicyTypeToString(fs->wrpolicy);
4070 4071

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
4072 4073
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only supports mount filesystem type"));
4074 4075 4076
        goto error;
    }

4077
    if (!driver) {
4078 4079
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Filesystem driver type not supported"));
4080 4081 4082 4083
        goto error;
    }
    virBufferAdd(&opt, driver, -1);

4084 4085 4086 4087
    if (fs->fsdriver == VIR_DOMAIN_FS_DRIVER_TYPE_PATH ||
        fs->fsdriver == VIR_DOMAIN_FS_DRIVER_TYPE_DEFAULT) {
        if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_MAPPED) {
            virBufferAddLit(&opt, ",security_model=mapped");
4088
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
4089
            virBufferAddLit(&opt, ",security_model=passthrough");
4090
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_SQUASH) {
4091 4092 4093 4094 4095 4096
            virBufferAddLit(&opt, ",security_model=none");
        }
    } else {
        /* For other fs drivers, default(passthru) should always
         * be supported */
        if (fs->accessmode != VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
4097 4098
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("only supports passthrough accessmode"));
4099 4100
            goto error;
        }
4101
    }
4102 4103

    if (fs->wrpolicy) {
4104
       if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV_WRITEOUT)) {
4105 4106
           virBufferAsprintf(&opt, ",writeout=%s", wrpolicy);
       } else {
4107
           virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
4108 4109 4110 4111 4112
                          _("filesystem writeout not supported"));
           goto error;
       }
    }

4113 4114
    virBufferAsprintf(&opt, ",id=%s%s", QEMU_FSDEV_HOST_PREFIX, fs->info.alias);
    virBufferAsprintf(&opt, ",path=%s", fs->src);
4115

4116
    if (fs->readonly) {
4117
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV_READONLY)) {
4118 4119
            virBufferAddLit(&opt, ",readonly");
        } else {
4120 4121 4122
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("readonly filesystem is not supported by this "
                             "QEMU binary"));
4123 4124 4125 4126
            goto error;
        }
    }

4127 4128 4129 4130 4131 4132 4133
    if (virBufferError(&opt)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&opt);

4134
 error:
4135 4136 4137 4138 4139 4140
    virBufferFreeAndReset(&opt);
    return NULL;
}


char *
4141 4142
qemuBuildFSDevStr(virDomainDefPtr def,
                  virDomainFSDefPtr fs,
4143
                  virQEMUCapsPtr qemuCaps)
4144 4145 4146 4147
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
4148 4149
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("can only passthrough directories"));
4150 4151 4152 4153
        goto error;
    }

    virBufferAddLit(&opt, "virtio-9p-pci");
4154 4155 4156
    virBufferAsprintf(&opt, ",id=%s", fs->info.alias);
    virBufferAsprintf(&opt, ",fsdev=%s%s", QEMU_FSDEV_HOST_PREFIX, fs->info.alias);
    virBufferAsprintf(&opt, ",mount_tag=%s", fs->dst);
A
Alex Jia 已提交
4157

4158
    if (qemuBuildDeviceAddressStr(&opt, def, &fs->info, qemuCaps) < 0)
A
Alex Jia 已提交
4159
        goto error;
4160 4161 4162 4163 4164 4165 4166 4167

    if (virBufferError(&opt)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&opt);

4168
 error:
4169 4170 4171 4172 4173
    virBufferFreeAndReset(&opt);
    return NULL;
}


4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192
static int
qemuControllerModelUSBToCaps(int model)
{
    switch (model) {
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI:
        return QEMU_CAPS_PIIX3_USB_UHCI;
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX4_UHCI:
        return QEMU_CAPS_PIIX4_USB_UHCI;
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_EHCI:
        return QEMU_CAPS_USB_EHCI;
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_EHCI1:
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI1:
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI2:
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI3:
        return QEMU_CAPS_ICH9_USB_EHCI1;
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_VT82C686B_UHCI:
        return QEMU_CAPS_VT82C686B_USB_UHCI;
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_PCI_OHCI:
        return QEMU_CAPS_PCI_OHCI;
G
Gerd Hoffmann 已提交
4193 4194
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI:
        return QEMU_CAPS_NEC_USB_XHCI;
4195 4196 4197 4198 4199 4200 4201
    default:
        return -1;
    }
}


static int
4202 4203
qemuBuildUSBControllerDevStr(virDomainDefPtr domainDef,
                             virDomainControllerDefPtr def,
4204
                             virQEMUCapsPtr qemuCaps,
4205 4206 4207
                             virBuffer *buf)
{
    const char *smodel;
4208
    int model, flags;
4209 4210

    model = def->model;
4211

4212
    if (model == -1) {
4213
        if (domainDef->os.arch == VIR_ARCH_PPC64)
4214 4215 4216 4217
            model = VIR_DOMAIN_CONTROLLER_MODEL_USB_PCI_OHCI;
        else
            model = VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI;
    }
4218 4219

    smodel = qemuControllerModelUSBTypeToString(model);
4220
    flags = qemuControllerModelUSBToCaps(model);
4221

4222
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
4223 4224
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), smodel);
4225 4226 4227
        return -1;
    }

4228 4229 4230
    virBufferAsprintf(buf, "%s", smodel);

    if (def->info.mastertype == VIR_DOMAIN_CONTROLLER_MASTER_USB) {
4231
        virBufferAddLit(buf, ",masterbus=");
4232
        qemuUSBId(buf, def->idx);
4233
        virBufferAsprintf(buf, ".0,firstport=%d", def->info.master.usb.startport);
4234
    } else {
4235
        virBufferAddLit(buf, ",id=");
4236
        qemuUSBId(buf, def->idx);
4237 4238
    }

4239 4240 4241
    return 0;
}

4242
char *
4243 4244
qemuBuildControllerDevStr(virDomainDefPtr domainDef,
                          virDomainControllerDefPtr def,
4245
                          virQEMUCapsPtr qemuCaps,
4246
                          int *nusbcontroller)
4247 4248
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4249
    int model;
4250

4251
    if (def->queues &&
4252 4253 4254
        !(def->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI &&
          def->model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
4255
                       _("'queues' is only supported by virtio-scsi controller"));
4256 4257 4258
        return NULL;
    }

4259 4260
    switch (def->type) {
    case VIR_DOMAIN_CONTROLLER_TYPE_SCSI:
4261
        model = def->model;
4262
        if ((qemuSetSCSIControllerModel(domainDef, qemuCaps, &model)) < 0)
4263 4264
            return NULL;

4265
        switch (model) {
4266
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI:
4267 4268 4269 4270 4271
            if (def->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
                virBufferAddLit(&buf, "virtio-scsi-ccw");
            else if (def->info.type ==
                     VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390)
                virBufferAddLit(&buf, "virtio-scsi-s390");
4272 4273 4274
            else if (def->info.type ==
                     VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
                virBufferAddLit(&buf, "virtio-scsi-device");
4275 4276
            else
                virBufferAddLit(&buf, "virtio-scsi-pci");
4277
            break;
4278
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC:
4279
            virBufferAddLit(&buf, "lsi");
4280 4281 4282 4283
            break;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI:
            virBufferAddLit(&buf, "spapr-vscsi");
            break;
4284 4285 4286
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1078:
            virBufferAddLit(&buf, "megasas");
            break;
4287
        default:
4288 4289 4290
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported controller model: %s"),
                           virDomainControllerModelSCSITypeToString(def->model));
4291
        }
4292
        virBufferAsprintf(&buf, ",id=scsi%d", def->idx);
4293 4294 4295 4296 4297
        break;

    case VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL:
        if (def->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
            virBufferAddLit(&buf, "virtio-serial-pci");
4298 4299 4300
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            virBufferAddLit(&buf, "virtio-serial-ccw");
4301 4302 4303
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
            virBufferAddLit(&buf, "virtio-serial-s390");
4304 4305 4306
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO) {
            virBufferAddLit(&buf, "virtio-serial-device");
4307 4308 4309
        } else {
            virBufferAddLit(&buf, "virtio-serial");
        }
4310
        virBufferAsprintf(&buf, ",id=" QEMU_VIRTIO_SERIAL_PREFIX "%d",
4311 4312
                          def->idx);
        if (def->opts.vioserial.ports != -1) {
4313
            virBufferAsprintf(&buf, ",max_ports=%d",
4314 4315 4316
                              def->opts.vioserial.ports);
        }
        if (def->opts.vioserial.vectors != -1) {
4317
            virBufferAsprintf(&buf, ",vectors=%d",
4318 4319 4320 4321
                              def->opts.vioserial.vectors);
        }
        break;

E
Eric Blake 已提交
4322
    case VIR_DOMAIN_CONTROLLER_TYPE_CCID:
4323
        virBufferAsprintf(&buf, "usb-ccid,id=ccid%d", def->idx);
E
Eric Blake 已提交
4324 4325
        break;

J
Jim Fehlig 已提交
4326 4327 4328 4329
    case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
        virBufferAsprintf(&buf, "ahci,id=ahci%d", def->idx);
        break;

4330
    case VIR_DOMAIN_CONTROLLER_TYPE_USB:
4331
        if (qemuBuildUSBControllerDevStr(domainDef, def, qemuCaps, &buf) == -1)
4332 4333 4334 4335 4336 4337 4338
            goto error;

        if (nusbcontroller)
            *nusbcontroller += 1;

        break;

4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349
    case VIR_DOMAIN_CONTROLLER_TYPE_PCI:
        switch (def->model) {
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_BRIDGE:
            if (def->idx == 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("PCI bridge index should be > 0"));
                goto error;
            }
            virBufferAsprintf(&buf, "pci-bridge,chassis_nr=%d,id=pci.%d",
                              def->idx, def->idx);
            break;
4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363
        case VIR_DOMAIN_CONTROLLER_MODEL_DMI_TO_PCI_BRIDGE:
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_DMI_TO_PCI_BRIDGE)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("The dmi-to-pci-bridge (i82801b11-bridge) "
                                 "controller is not supported in this QEMU binary"));
                goto error;
            }
            if (def->idx == 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("dmi-to-pci-bridge index should be > 0"));
                goto error;
            }
            virBufferAsprintf(&buf, "i82801b11-bridge,id=pci.%d", def->idx);
            break;
4364
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
L
Laine Stump 已提交
4365
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
4366
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
L
Laine Stump 已提交
4367
                           _("wrong function called for pci-root/pcie-root"));
4368 4369 4370 4371
            return NULL;
        }
        break;

4372 4373 4374
    /* We always get an IDE controller, whether we want it or not. */
    case VIR_DOMAIN_CONTROLLER_TYPE_IDE:
    default:
4375 4376 4377
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unknown controller type: %s"),
                       virDomainControllerTypeToString(def->type));
4378 4379 4380
        goto error;
    }

4381 4382
    if (def->queues)
        virBufferAsprintf(&buf, ",num_queues=%u", def->queues);
4383

4384
    if (qemuBuildDeviceAddressStr(&buf, domainDef, &def->info, qemuCaps) < 0)
4385 4386 4387 4388 4389 4390 4391 4392 4393
        goto error;

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

4394
 error:
4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
qemuBuildNicStr(virDomainNetDefPtr net,
                const char *prefix,
                int vlan)
{
    char *str;
4406 4407
    char macaddr[VIR_MAC_STRING_BUFLEN];

4408 4409 4410 4411 4412 4413 4414 4415 4416
    ignore_value(virAsprintf(&str,
                             "%smacaddr=%s,vlan=%d%s%s%s%s",
                             prefix ? prefix : "",
                             virMacAddrFormat(&net->mac, macaddr),
                             vlan,
                             (net->model ? ",model=" : ""),
                             (net->model ? net->model : ""),
                             (net->info.alias ? ",name=" : ""),
                             (net->info.alias ? net->info.alias : "")));
4417 4418 4419 4420 4421
    return str;
}


char *
4422 4423
qemuBuildNicDevStr(virDomainDefPtr def,
                   virDomainNetDefPtr net,
4424
                   int vlan,
4425
                   int bootindex,
4426
                   int vhostfdSize,
4427
                   virQEMUCapsPtr qemuCaps)
4428 4429
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4430
    const char *nic = net->model;
4431
    bool usingVirtio = false;
4432
    char macaddr[VIR_MAC_STRING_BUFLEN];
4433

4434 4435
    if (STREQ(net->model, "virtio")) {
        if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
4436
            nic = "virtio-net-ccw";
4437
        else if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390)
4438
            nic = "virtio-net-s390";
4439 4440
        else if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
            nic = "virtio-net-device";
4441
        else
4442
            nic = "virtio-net-pci";
4443

4444
        usingVirtio = true;
4445 4446
    }

4447
    virBufferAdd(&buf, nic, -1);
4448
    if (usingVirtio && net->driver.virtio.txmode) {
4449
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_TX_ALG)) {
4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462
            virBufferAddLit(&buf, ",tx=");
            switch (net->driver.virtio.txmode) {
                case VIR_DOMAIN_NET_VIRTIO_TX_MODE_IOTHREAD:
                    virBufferAddLit(&buf, "bh");
                    break;

                case VIR_DOMAIN_NET_VIRTIO_TX_MODE_TIMER:
                    virBufferAddLit(&buf, "timer");
                    break;
                default:
                    /* this should never happen, if it does, we need
                     * to add another case to this switch.
                     */
4463 4464
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("unrecognized virtio-net-pci 'tx' option"));
4465 4466 4467
                    goto error;
            }
        } else {
4468 4469
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-net-pci 'tx' option not supported in this QEMU binary"));
4470 4471 4472
            goto error;
        }
    }
4473
    if (usingVirtio) {
4474
        qemuBuildIoEventFdStr(&buf, net->driver.virtio.ioeventfd, qemuCaps);
4475
        if (net->driver.virtio.event_idx &&
4476
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_NET_EVENT_IDX)) {
4477 4478 4479 4480
            virBufferAsprintf(&buf, ",event_idx=%s",
                              virDomainVirtioEventIdxTypeToString(net->driver.virtio.event_idx));
        }
    }
4481 4482
    if (usingVirtio && vhostfdSize > 1) {
        /* As advised at http://www.linux-kvm.org/page/Multiqueue
4483 4484
         * we should add vectors=2*N+2 where N is the vhostfdSize */
        virBufferAsprintf(&buf, ",mq=on,vectors=%d", 2 * vhostfdSize + 2);
4485
    }
4486
    if (vlan == -1)
4487
        virBufferAsprintf(&buf, ",netdev=host%s", net->info.alias);
4488
    else
4489 4490
        virBufferAsprintf(&buf, ",vlan=%d", vlan);
    virBufferAsprintf(&buf, ",id=%s", net->info.alias);
4491 4492
    virBufferAsprintf(&buf, ",mac=%s",
                      virMacAddrFormat(&net->mac, macaddr));
4493
    if (qemuBuildDeviceAddressStr(&buf, def, &net->info, qemuCaps) < 0)
4494
        goto error;
4495
    if (qemuBuildRomStr(&buf, &net->info, qemuCaps) < 0)
4496
       goto error;
4497
    if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
4498
        virBufferAsprintf(&buf, ",bootindex=%d", bootindex);
4499 4500 4501 4502 4503 4504 4505 4506

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

4507
 error:
4508 4509 4510 4511 4512 4513 4514
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
qemuBuildHostNetStr(virDomainNetDefPtr net,
4515
                    virQEMUDriverPtr driver,
4516 4517
                    char type_sep,
                    int vlan,
4518 4519 4520 4521
                    char **tapfd,
                    int tapfdSize,
                    char **vhostfd,
                    int vhostfdSize)
4522
{
4523
    bool is_tap = false;
4524
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4525
    enum virDomainNetType netType = virDomainNetGetActualType(net);
4526
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4527
    size_t i;
4528

4529
    if (net->script && netType != VIR_DOMAIN_NET_TYPE_ETHERNET) {
4530 4531 4532
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("scripts are not supported on interfaces of type %s"),
                       virDomainNetTypeToString(netType));
4533
        virObjectUnref(cfg);
4534 4535 4536 4537
        return NULL;
    }

    switch (netType) {
R
Richa Marwaha 已提交
4538 4539 4540 4541 4542
    /*
     * If type='bridge', and we're running as privileged user
     * or -netdev bridge is not supported then it will fall
     * through, -net tap,fd
     */
4543
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
R
Richa Marwaha 已提交
4544
    case VIR_DOMAIN_NET_TYPE_NETWORK:
4545
    case VIR_DOMAIN_NET_TYPE_DIRECT:
4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558
        virBufferAsprintf(&buf, "tap%c", type_sep);
        /* for one tapfd 'fd=' shall be used,
         * for more than one 'fds=' is the right choice */
        if (tapfdSize == 1) {
            virBufferAsprintf(&buf, "fd=%s", tapfd[0]);
        } else {
            virBufferAddLit(&buf, "fds=");
            for (i = 0; i < tapfdSize; i++) {
                if (i)
                    virBufferAddChar(&buf, ':');
                virBufferAdd(&buf, tapfd[i], -1);
            }
        }
4559
        type_sep = ',';
4560
        is_tap = true;
4561 4562 4563 4564 4565
        break;

    case VIR_DOMAIN_NET_TYPE_ETHERNET:
        virBufferAddLit(&buf, "tap");
        if (net->ifname) {
4566
            virBufferAsprintf(&buf, "%cifname=%s", type_sep, net->ifname);
4567 4568
            type_sep = ',';
        }
4569
        if (net->script) {
4570
            virBufferAsprintf(&buf, "%cscript=%s", type_sep,
4571
                              net->script);
4572 4573
            type_sep = ',';
        }
4574
        is_tap = true;
4575 4576 4577
        break;

    case VIR_DOMAIN_NET_TYPE_CLIENT:
4578 4579 4580 4581 4582 4583 4584
       virBufferAsprintf(&buf, "socket%cconnect=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;

4585
    case VIR_DOMAIN_NET_TYPE_SERVER:
4586 4587 4588 4589 4590 4591 4592
       virBufferAsprintf(&buf, "socket%clisten=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;

4593
    case VIR_DOMAIN_NET_TYPE_MCAST:
4594 4595 4596 4597 4598 4599
       virBufferAsprintf(&buf, "socket%cmcast=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;
4600 4601 4602 4603 4604 4605 4606 4607

    case VIR_DOMAIN_NET_TYPE_USER:
    default:
        virBufferAddLit(&buf, "user");
        break;
    }

    if (vlan >= 0) {
4608
        virBufferAsprintf(&buf, "%cvlan=%d", type_sep, vlan);
4609
        if (net->info.alias)
4610
            virBufferAsprintf(&buf, ",name=host%s",
4611 4612
                              net->info.alias);
    } else {
4613
        virBufferAsprintf(&buf, "%cid=host%s",
4614 4615 4616
                          type_sep, net->info.alias);
    }

4617
    if (is_tap) {
4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630
        if (vhostfdSize) {
            virBufferAddLit(&buf, ",vhost=on,");
            if (vhostfdSize == 1) {
                virBufferAsprintf(&buf, "vhostfd=%s", vhostfd[0]);
            } else {
                virBufferAddLit(&buf, "vhostfds=");
                for (i = 0; i < vhostfdSize; i++) {
                    if (i)
                        virBufferAddChar(&buf, ':');
                    virBufferAdd(&buf, vhostfd[i], -1);
                }
            }
        }
4631
        if (net->tune.sndbuf_specified)
4632
            virBufferAsprintf(&buf, ",sndbuf=%lu", net->tune.sndbuf);
4633 4634
    }

4635 4636
    virObjectUnref(cfg);

4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647
    if (virBufferError(&buf)) {
        virBufferFreeAndReset(&buf);
        virReportOOMError();
        return NULL;
    }

    return virBufferContentAndReset(&buf);
}


char *
4648 4649
qemuBuildWatchdogDevStr(virDomainDefPtr def,
                        virDomainWatchdogDefPtr dev,
4650
                        virQEMUCapsPtr qemuCaps)
4651 4652 4653 4654 4655
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    const char *model = virDomainWatchdogModelTypeToString(dev->model);
    if (!model) {
4656 4657
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing watchdog model"));
4658 4659 4660
        goto error;
    }

4661
    virBufferAsprintf(&buf, "%s,id=%s", model, dev->info.alias);
4662
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4663 4664 4665 4666 4667 4668 4669 4670 4671
        goto error;

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

4672
 error:
4673 4674 4675 4676 4677 4678
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
4679 4680
qemuBuildMemballoonDevStr(virDomainDefPtr def,
                          virDomainMemballoonDefPtr dev,
4681
                          virQEMUCapsPtr qemuCaps)
4682 4683 4684
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4685 4686 4687 4688 4689 4690 4691
    switch (dev->info.type) {
        case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI:
            virBufferAddLit(&buf, "virtio-balloon-pci");
            break;
        case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW:
            virBufferAddLit(&buf, "virtio-balloon-ccw");
            break;
4692 4693 4694
        case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO:
            virBufferAddLit(&buf, "virtio-balloon-device");
            break;
4695
        default:
4696 4697 4698
            virReportError(VIR_ERR_XML_ERROR,
                           _("memballoon unsupported with address type '%s'"),
                           virDomainDeviceAddressTypeToString(dev->info.type));
4699 4700 4701
            goto error;
    }

4702
    virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
4703
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4704 4705 4706 4707 4708 4709 4710 4711 4712
        goto error;

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

4713
 error:
4714 4715 4716 4717
    virBufferFreeAndReset(&buf);
    return NULL;
}

4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739
static char *
qemuBuildNVRAMDevStr(virDomainNVRAMDefPtr dev)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO &&
        dev->info.addr.spaprvio.has_reg) {
        virBufferAsprintf(&buf, "spapr-nvram.reg=0x%llx",
                          dev->info.addr.spaprvio.reg);
    } else {
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("nvram address type must be spaprvio"));
        goto error;
    }

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

4740
 error:
4741 4742 4743
    virBufferFreeAndReset(&buf);
    return NULL;
}
4744 4745

char *
4746 4747
qemuBuildUSBInputDevStr(virDomainDefPtr def,
                        virDomainInputDefPtr dev,
4748
                        virQEMUCapsPtr qemuCaps)
4749 4750 4751
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764
    switch (dev->type) {
    case VIR_DOMAIN_INPUT_TYPE_MOUSE:
        virBufferAsprintf(&buf, "usb-mouse,id=%s", dev->info.alias);
        break;
    case VIR_DOMAIN_INPUT_TYPE_TABLET:
        virBufferAsprintf(&buf, "usb-tablet,id=%s", dev->info.alias);
        break;
    case VIR_DOMAIN_INPUT_TYPE_KBD:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_KBD))
            goto error;
        virBufferAsprintf(&buf, "usb-kbd,id=%s", dev->info.alias);
        break;
    }
4765

4766
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4767 4768
        goto error;

4769 4770 4771 4772 4773 4774 4775
    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

4776
 error:
4777 4778 4779 4780 4781 4782
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
4783 4784
qemuBuildSoundDevStr(virDomainDefPtr def,
                     virDomainSoundDefPtr sound,
4785
                     virQEMUCapsPtr qemuCaps)
4786 4787 4788 4789 4790
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const char *model = virDomainSoundModelTypeToString(sound->model);

    if (!model) {
4791 4792
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("invalid sound model"));
4793 4794 4795
        goto error;
    }

4796 4797 4798
    /* Hack for devices with different names in QEMU and libvirt */
    switch (sound->model) {
    case VIR_DOMAIN_SOUND_MODEL_ES1370:
4799
        model = "ES1370";
4800 4801
        break;
    case VIR_DOMAIN_SOUND_MODEL_AC97:
4802
        model = "AC97";
4803 4804
        break;
    case VIR_DOMAIN_SOUND_MODEL_ICH6:
4805
        model = "intel-hda";
4806
        break;
4807 4808 4809 4810 4811 4812 4813 4814 4815
    case VIR_DOMAIN_SOUND_MODEL_ICH9:
        model = "ich9-intel-hda";
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_ICH9_INTEL_HDA)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("The ich9-intel-hda audio controller "
                             "is not supported in this QEMU binary"));
            goto error;
        }
        break;
4816
    }
4817

4818
    virBufferAsprintf(&buf, "%s,id=%s", model, sound->info.alias);
4819
    if (qemuBuildDeviceAddressStr(&buf, def, &sound->info, qemuCaps) < 0)
4820 4821 4822 4823 4824 4825 4826 4827 4828
        goto error;

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

4829
 error:
4830 4831 4832 4833
    virBufferFreeAndReset(&buf);
    return NULL;
}

4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848

static int
qemuSoundCodecTypeToCaps(int type)
{
    switch (type) {
    case VIR_DOMAIN_SOUND_CODEC_TYPE_DUPLEX:
        return QEMU_CAPS_HDA_DUPLEX;
    case VIR_DOMAIN_SOUND_CODEC_TYPE_MICRO:
        return QEMU_CAPS_HDA_MICRO;
    default:
        return -1;
    }
}


4849 4850
static char *
qemuBuildSoundCodecStr(virDomainSoundDefPtr sound,
4851
                       virDomainSoundCodecDefPtr codec,
4852
                       virQEMUCapsPtr qemuCaps)
4853 4854
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4855
    const char *stype;
4856
    int type, flags;
4857

4858 4859
    type = codec->type;
    stype = qemuSoundCodecTypeToString(type);
4860
    flags = qemuSoundCodecTypeToCaps(type);
4861

4862
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
4863 4864
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), stype);
4865 4866 4867
        goto error;
    }

4868 4869 4870
    virBufferAsprintf(&buf, "%s,id=%s-codec%d,bus=%s.0,cad=%d",
                      stype, sound->info.alias, codec->cad, sound->info.alias, codec->cad);

4871 4872
    return virBufferContentAndReset(&buf);

4873
 error:
4874 4875 4876
    virBufferFreeAndReset(&buf);
    return NULL;
}
4877 4878

static char *
4879 4880
qemuBuildDeviceVideoStr(virDomainDefPtr def,
                        virDomainVideoDefPtr video,
4881
                        virQEMUCapsPtr qemuCaps,
4882
                        bool primary)
4883 4884
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4885
    const char *model;
4886

4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901
    if (primary) {
        model = qemuDeviceVideoTypeToString(video->type);
        if (!model || STREQ(model, "")) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("video type %s is not supported with QEMU"),
                           virDomainVideoTypeToString(video->type));
            goto error;
        }
    } else {
        if (video->type != VIR_DOMAIN_VIDEO_TYPE_QXL) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("non-primary video device must be type of 'qxl'"));
            goto error;
        }

4902
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL)) {
4903 4904 4905 4906 4907 4908
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("only one video card is currently supported"));
            goto error;
        }

        model = "qxl";
4909 4910
    }

4911
    virBufferAsprintf(&buf, "%s,id=%s", model, video->info.alias);
4912 4913

    if (video->type == VIR_DOMAIN_VIDEO_TYPE_QXL) {
4914
        if (video->vram > (UINT_MAX / 1024)) {
4915
            virReportError(VIR_ERR_OVERFLOW,
4916 4917
                           _("value for 'vram' must be less than '%u'"),
                           UINT_MAX / 1024);
4918 4919
            goto error;
        }
4920 4921 4922 4923 4924 4925 4926 4927 4928
        if (video->ram > (UINT_MAX / 1024)) {
            virReportError(VIR_ERR_OVERFLOW,
                           _("value for 'ram' must be less than '%u'"),
                           UINT_MAX / 1024);
            goto error;
        }

        /* QEMU accepts bytes for ram_size. */
        virBufferAsprintf(&buf, ",ram_size=%u", video->ram * 1024);
4929

4930
        /* QEMU accepts bytes for vram_size. */
4931
        virBufferAsprintf(&buf, ",vram_size=%u", video->vram * 1024);
4932 4933
    }

4934
    if (qemuBuildDeviceAddressStr(&buf, def, &video->info, qemuCaps) < 0)
4935 4936 4937 4938 4939 4940 4941 4942 4943
        goto error;

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

4944
 error:
4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956
    virBufferFreeAndReset(&buf);
    return NULL;
}


int
qemuOpenPCIConfig(virDomainHostdevDefPtr dev)
{
    char *path = NULL;
    int configfd = -1;

    if (virAsprintf(&path, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/config",
4957 4958 4959
                    dev->source.subsys.u.pci.addr.domain,
                    dev->source.subsys.u.pci.addr.bus,
                    dev->source.subsys.u.pci.addr.slot,
4960
                    dev->source.subsys.u.pci.addr.function) < 0)
4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973
        return -1;

    configfd = open(path, O_RDWR, 0);

    if (configfd < 0)
        virReportSystemError(errno, _("Failed opening %s"), path);

    VIR_FREE(path);

    return configfd;
}

char *
4974 4975 4976
qemuBuildPCIHostdevDevStr(virDomainDefPtr def,
                          virDomainHostdevDefPtr dev,
                          const char *configfd,
4977
                          virQEMUCapsPtr qemuCaps)
4978 4979
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4980
    int backend = dev->source.subsys.u.pci.backend;
4981

4982
    /* caller has to assign proper passthrough backend type */
4983
    switch ((virDomainHostdevSubsysPCIBackendType) backend) {
4984
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM:
4985 4986 4987
        virBufferAddLit(&buf, "pci-assign");
        if (configfd && *configfd)
            virBufferAsprintf(&buf, ",configfd=%s", configfd);
4988 4989 4990 4991 4992 4993
        break;

    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO:
        virBufferAddLit(&buf, "vfio-pci");
        break;

4994
    default:
4995 4996
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid PCI passthrough type '%s'"),
4997
                       virDomainHostdevSubsysPCIBackendTypeToString(backend));
4998
        break;
4999
    }
5000

5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012
    virBufferAddLit(&buf, ",host=");
    if (dev->source.subsys.u.pci.addr.domain) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_HOST_PCI_MULTIDOMAIN)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("non-zero domain='%.4x' in host device PCI address "
                             "not supported in this QEMU binary"),
                           dev->source.subsys.u.pci.addr.domain);
            goto error;
        }
        virBufferAsprintf(&buf, "%.4x:", dev->source.subsys.u.pci.addr.domain);
    }
    virBufferAsprintf(&buf, "%.2x:%.2x.%.1x",
5013 5014 5015
                      dev->source.subsys.u.pci.addr.bus,
                      dev->source.subsys.u.pci.addr.slot,
                      dev->source.subsys.u.pci.addr.function);
5016 5017 5018
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);
5019
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
5020
        goto error;
5021
    if (qemuBuildRomStr(&buf, dev->info, qemuCaps) < 0)
5022
       goto error;
5023

5024 5025 5026 5027 5028 5029 5030
    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5031
 error:
5032 5033 5034 5035 5036 5037
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
5038 5039
qemuBuildPCIHostdevPCIDevStr(virDomainHostdevDefPtr dev,
                             virQEMUCapsPtr qemuCaps)
5040 5041 5042
{
    char *ret = NULL;

5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062
    if (dev->source.subsys.u.pci.addr.domain) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_HOST_PCI_MULTIDOMAIN)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("non-zero domain='%.4x' in host device PCI address "
                             "not supported in this QEMU binary"),
                           dev->source.subsys.u.pci.addr.domain);
            goto cleanup;
        }
        ignore_value(virAsprintf(&ret, "host=%.4x:%.2x:%.2x.%.1x",
                                 dev->source.subsys.u.pci.addr.domain,
                                 dev->source.subsys.u.pci.addr.bus,
                                 dev->source.subsys.u.pci.addr.slot,
                                 dev->source.subsys.u.pci.addr.function));
    } else {
        ignore_value(virAsprintf(&ret, "host=%.2x:%.2x.%.1x",
                                 dev->source.subsys.u.pci.addr.bus,
                                 dev->source.subsys.u.pci.addr.slot,
                                 dev->source.subsys.u.pci.addr.function));
    }
 cleanup:
5063 5064 5065 5066
    return ret;
}


5067
char *
5068 5069
qemuBuildRedirdevDevStr(virDomainDefPtr def,
                        virDomainRedirdevDefPtr dev,
5070
                        virQEMUCapsPtr qemuCaps)
5071
{
5072
    size_t i;
5073
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5074
    virDomainRedirFilterDefPtr redirfilter = def->redirfilter;
5075 5076

    if (dev->bus != VIR_DOMAIN_REDIRDEV_BUS_USB) {
5077 5078 5079
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Redirection bus %s is not supported by QEMU"),
                       virDomainRedirdevBusTypeToString(dev->bus));
5080 5081 5082
        goto error;
    }

5083
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR)) {
5084 5085 5086
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("USB redirection is not supported "
                         "by this version of QEMU"));
5087 5088 5089 5090 5091 5092 5093
        goto error;
    }

    virBufferAsprintf(&buf, "usb-redir,chardev=char%s,id=%s",
                      dev->info.alias,
                      dev->info.alias);

5094
    if (redirfilter && redirfilter->nusbdevs) {
5095
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR_FILTER)) {
5096 5097 5098 5099 5100 5101
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("USB redirection filter is not "
                             "supported by this version of QEMU"));
            goto error;
        }

5102
        virBufferAddLit(&buf, ",filter=");
5103 5104

        for (i = 0; i < redirfilter->nusbdevs; i++) {
5105
            virDomainRedirFilterUSBDevDefPtr usbdev = redirfilter->usbdevs[i];
5106 5107 5108
            if (usbdev->usbClass >= 0)
                virBufferAsprintf(&buf, "0x%02X:", usbdev->usbClass);
            else
5109
                virBufferAddLit(&buf, "-1:");
5110 5111 5112 5113

            if (usbdev->vendor >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->vendor);
            else
5114
                virBufferAddLit(&buf, "-1:");
5115 5116 5117 5118

            if (usbdev->product >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->product);
            else
5119
                virBufferAddLit(&buf, "-1:");
5120 5121 5122 5123

            if (usbdev->version >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->version);
            else
5124
                virBufferAddLit(&buf, "-1:");
5125 5126 5127

            virBufferAsprintf(&buf, "%u", usbdev->allow);
            if (i < redirfilter->nusbdevs -1)
5128
                virBufferAddLit(&buf, "|");
5129 5130 5131
        }
    }

5132
    if (dev->info.bootIndex) {
5133
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR_BOOTINDEX)) {
5134 5135 5136 5137 5138 5139 5140 5141
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("USB redirection booting is not "
                             "supported by this version of QEMU"));
            goto error;
        }
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info.bootIndex);
    }

5142
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
5143 5144 5145 5146 5147 5148 5149 5150 5151
        goto error;

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5152
 error:
5153 5154 5155 5156
    virBufferFreeAndReset(&buf);
    return NULL;
}

5157
char *
5158 5159
qemuBuildUSBHostdevDevStr(virDomainDefPtr def,
                          virDomainHostdevDefPtr dev,
5160
                          virQEMUCapsPtr qemuCaps)
5161
{
5162
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5163

5164 5165
    if (!dev->missing &&
        !dev->source.subsys.u.usb.bus &&
5166
        !dev->source.subsys.u.usb.device) {
5167 5168
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
5169 5170 5171
        return NULL;
    }

5172 5173 5174 5175 5176 5177 5178
    virBufferAddLit(&buf, "usb-host");
    if (!dev->missing) {
        virBufferAsprintf(&buf, ",hostbus=%d,hostaddr=%d",
                          dev->source.subsys.u.usb.bus,
                          dev->source.subsys.u.usb.device);
    }
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
5179 5180
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);
5181

5182
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
5183 5184 5185
        goto error;

    if (virBufferError(&buf)) {
5186
        virReportOOMError();
5187 5188
        goto error;
    }
5189

5190 5191
    return virBufferContentAndReset(&buf);

5192
 error:
5193 5194
    virBufferFreeAndReset(&buf);
    return NULL;
5195 5196 5197
}


M
Marc-André Lureau 已提交
5198
char *
5199 5200
qemuBuildHubDevStr(virDomainDefPtr def,
                   virDomainHubDefPtr dev,
5201
                   virQEMUCapsPtr qemuCaps)
M
Marc-André Lureau 已提交
5202 5203 5204 5205
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (dev->type != VIR_DOMAIN_HUB_TYPE_USB) {
5206 5207 5208
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("hub type %s not supported"),
                       virDomainHubTypeToString(dev->type));
M
Marc-André Lureau 已提交
5209 5210 5211
        goto error;
    }

5212
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HUB)) {
5213
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
5214
                       _("usb-hub not supported by QEMU binary"));
M
Marc-André Lureau 已提交
5215 5216 5217 5218 5219
        goto error;
    }

    virBufferAddLit(&buf, "usb-hub");
    virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
5220
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
M
Marc-André Lureau 已提交
5221 5222 5223 5224 5225 5226 5227 5228 5229
        goto error;

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5230
 error:
M
Marc-André Lureau 已提交
5231 5232 5233 5234 5235
    virBufferFreeAndReset(&buf);
    return NULL;
}


5236
char *
5237
qemuBuildUSBHostdevUSBDevStr(virDomainHostdevDefPtr dev)
5238 5239 5240
{
    char *ret = NULL;

5241 5242 5243 5244 5245 5246
    if (dev->missing) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("This QEMU doesn't not support missing USB devices"));
        return NULL;
    }

5247 5248
    if (!dev->source.subsys.u.usb.bus &&
        !dev->source.subsys.u.usb.device) {
5249 5250
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
5251 5252 5253
        return NULL;
    }

5254 5255 5256
    ignore_value(virAsprintf(&ret, "host:%d.%d",
                             dev->source.subsys.u.usb.bus,
                             dev->source.subsys.u.usb.device));
5257 5258 5259
    return ret;
}

5260 5261
char *
qemuBuildSCSIHostdevDrvStr(virDomainHostdevDefPtr dev,
5262 5263
                           virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED,
                           qemuBuildCommandLineCallbacksPtr callbacks)
5264 5265 5266 5267
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *sg = NULL;

5268 5269
    sg = (callbacks->qemuGetSCSIDeviceSgName)(NULL,
                                              dev->source.subsys.u.scsi.adapter,
5270 5271 5272 5273
                                              dev->source.subsys.u.scsi.bus,
                                              dev->source.subsys.u.scsi.target,
                                              dev->source.subsys.u.scsi.unit);
    if (!sg)
5274 5275 5276 5277 5278 5279 5280
        goto error;

    virBufferAsprintf(&buf, "file=/dev/%s,if=none", sg);
    virBufferAsprintf(&buf, ",id=%s-%s",
                      virDomainDeviceAddressTypeToString(dev->info->type),
                      dev->info->alias);

O
Osier Yang 已提交
5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291
    if (dev->readonly) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_READONLY)) {
            virBufferAddLit(&buf, ",readonly=on");
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support 'readonly' "
                             "for -drive"));
            goto error;
        }
    }

5292 5293 5294 5295 5296 5297 5298
    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    VIR_FREE(sg);
    return virBufferContentAndReset(&buf);
5299
 error:
5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315
    VIR_FREE(sg);
    virBufferFreeAndReset(&buf);
    return NULL;
}

char *
qemuBuildSCSIHostdevDevStr(virDomainDefPtr def,
                           virDomainHostdevDefPtr dev,
                           virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int model = -1;

    model = virDomainDeviceFindControllerModel(def, dev->info,
                                               VIR_DOMAIN_CONTROLLER_TYPE_SCSI);

5316
    if (qemuSetSCSIControllerModel(def, qemuCaps, &model) < 0)
5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348
        goto error;

    if (model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
        if (dev->info->addr.drive.target != 0) {
           virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for scsi host device "
                             "if its controller model is 'lsilogic'"));
            goto error;
        }

        if (dev->info->addr.drive.unit > 7) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("unit must be not more than 7 for scsi host "
                             "device if its controller model is 'lsilogic'"));
            goto error;
        }
    }

    virBufferAddLit(&buf, "scsi-generic");

    if (model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
        virBufferAsprintf(&buf, ",bus=scsi%d.%d,scsi-id=%d",
                          dev->info->addr.drive.controller,
                          dev->info->addr.drive.bus,
                          dev->info->addr.drive.unit);
    } else {
        virBufferAsprintf(&buf, ",bus=scsi%d.0,channel=%d,scsi-id=%d,lun=%d",
                          dev->info->addr.drive.controller,
                          dev->info->addr.drive.bus,
                          dev->info->addr.drive.target,
                          dev->info->addr.drive.unit);
    }
5349

5350 5351 5352 5353
    virBufferAsprintf(&buf, ",drive=%s-%s,id=%s",
                      virDomainDeviceAddressTypeToString(dev->info->type),
                      dev->info->alias, dev->info->alias);

5354 5355 5356
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);

5357 5358 5359 5360 5361 5362
    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);
5363
 error:
5364 5365 5366
    virBufferFreeAndReset(&buf);
    return NULL;
}
5367 5368 5369

/* This function outputs a -chardev command line option which describes only the
 * host side of the character device */
5370
static char *
5371
qemuBuildChrChardevStr(virDomainChrSourceDefPtr dev, const char *alias,
5372
                       virQEMUCapsPtr qemuCaps)
5373 5374 5375 5376
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    bool telnet;

5377
    switch (dev->type) {
5378
    case VIR_DOMAIN_CHR_TYPE_NULL:
5379
        virBufferAsprintf(&buf, "null,id=char%s", alias);
5380 5381 5382
        break;

    case VIR_DOMAIN_CHR_TYPE_VC:
5383
        virBufferAsprintf(&buf, "vc,id=char%s", alias);
5384 5385 5386
        break;

    case VIR_DOMAIN_CHR_TYPE_PTY:
5387
        virBufferAsprintf(&buf, "pty,id=char%s", alias);
5388 5389 5390
        break;

    case VIR_DOMAIN_CHR_TYPE_DEV:
5391 5392 5393
        virBufferAsprintf(&buf, "%s,id=char%s,path=%s",
                          STRPREFIX(alias, "parallel") ? "parport" : "tty",
                          alias, dev->data.file.path);
5394 5395 5396
        break;

    case VIR_DOMAIN_CHR_TYPE_FILE:
5397
        virBufferAsprintf(&buf, "file,id=char%s,path=%s", alias,
5398
                          dev->data.file.path);
5399 5400 5401
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
5402
        virBufferAsprintf(&buf, "pipe,id=char%s,path=%s", alias,
5403
                          dev->data.file.path);
5404 5405 5406
        break;

    case VIR_DOMAIN_CHR_TYPE_STDIO:
5407
        virBufferAsprintf(&buf, "stdio,id=char%s", alias);
5408 5409
        break;

5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421
    case VIR_DOMAIN_CHR_TYPE_UDP: {
        const char *connectHost = dev->data.udp.connectHost;
        const char *bindHost = dev->data.udp.bindHost;
        const char *bindService = dev->data.udp.bindService;

        if (connectHost == NULL)
            connectHost = "";
        if (bindHost == NULL)
            bindHost = "";
        if (bindService == NULL)
            bindService = "0";

5422
        virBufferAsprintf(&buf,
5423 5424
                          "udp,id=char%s,host=%s,port=%s,localaddr=%s,"
                          "localport=%s",
5425
                          alias,
5426
                          connectHost,
5427
                          dev->data.udp.connectService,
5428
                          bindHost, bindService);
5429
        break;
5430
    }
5431 5432
    case VIR_DOMAIN_CHR_TYPE_TCP:
        telnet = dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
5433
        virBufferAsprintf(&buf,
5434
                          "socket,id=char%s,host=%s,port=%s%s%s",
5435
                          alias,
5436 5437 5438 5439 5440 5441 5442
                          dev->data.tcp.host,
                          dev->data.tcp.service,
                          telnet ? ",telnet" : "",
                          dev->data.tcp.listen ? ",server,nowait" : "");
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
5443
        virBufferAsprintf(&buf,
5444
                          "socket,id=char%s,path=%s%s",
5445
                          alias,
5446 5447 5448
                          dev->data.nix.path,
                          dev->data.nix.listen ? ",server,nowait" : "");
        break;
5449 5450

    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
5451
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_SPICEVMC)) {
5452
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
5453
                           _("spicevmc not supported in this QEMU binary"));
5454 5455
            goto error;
        }
5456
        virBufferAsprintf(&buf, "spicevmc,id=char%s,name=%s", alias,
E
Eric Blake 已提交
5457
                          virDomainChrSpicevmcTypeToString(dev->data.spicevmc));
5458 5459
        break;

5460 5461 5462 5463 5464 5465 5466 5467 5468 5469
    case VIR_DOMAIN_CHR_TYPE_SPICEPORT:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_SPICEPORT)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("spiceport not supported in this QEMU binary"));
            goto error;
        }
        virBufferAsprintf(&buf, "spiceport,id=char%s,name=%s", alias,
                          dev->data.spiceport.channel);
        break;

5470
    default:
5471 5472 5473
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported chardev '%s'"),
                       virDomainChrTypeToString(dev->type));
5474
        goto error;
5475 5476 5477 5478 5479 5480 5481 5482 5483
    }

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5484
 error:
5485 5486 5487 5488 5489
    virBufferFreeAndReset(&buf);
    return NULL;
}


5490 5491
static char *
qemuBuildChrArgStr(virDomainChrSourceDefPtr dev, const char *prefix)
5492 5493 5494 5495 5496 5497
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (prefix)
        virBufferAdd(&buf, prefix, strlen(prefix));

5498
    switch ((enum virDomainChrType)dev->type) {
5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515
    case VIR_DOMAIN_CHR_TYPE_NULL:
        virBufferAddLit(&buf, "null");
        break;

    case VIR_DOMAIN_CHR_TYPE_VC:
        virBufferAddLit(&buf, "vc");
        break;

    case VIR_DOMAIN_CHR_TYPE_PTY:
        virBufferAddLit(&buf, "pty");
        break;

    case VIR_DOMAIN_CHR_TYPE_DEV:
        virBufferStrcat(&buf, dev->data.file.path, NULL);
        break;

    case VIR_DOMAIN_CHR_TYPE_FILE:
5516
        virBufferAsprintf(&buf, "file:%s", dev->data.file.path);
5517 5518 5519
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
5520
        virBufferAsprintf(&buf, "pipe:%s", dev->data.file.path);
5521 5522 5523 5524 5525 5526
        break;

    case VIR_DOMAIN_CHR_TYPE_STDIO:
        virBufferAddLit(&buf, "stdio");
        break;

5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538
    case VIR_DOMAIN_CHR_TYPE_UDP: {
        const char *connectHost = dev->data.udp.connectHost;
        const char *bindHost = dev->data.udp.bindHost;
        const char *bindService  = dev->data.udp.bindService;

        if (connectHost == NULL)
            connectHost = "";
        if (bindHost == NULL)
            bindHost = "";
        if (bindService == NULL)
            bindService = "0";

5539
        virBufferAsprintf(&buf, "udp:%s:%s@%s:%s",
5540
                          connectHost,
5541
                          dev->data.udp.connectService,
5542 5543
                          bindHost,
                          bindService);
5544
        break;
5545
    }
5546 5547
    case VIR_DOMAIN_CHR_TYPE_TCP:
        if (dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET) {
5548
            virBufferAsprintf(&buf, "telnet:%s:%s%s",
5549 5550 5551 5552
                              dev->data.tcp.host,
                              dev->data.tcp.service,
                              dev->data.tcp.listen ? ",server,nowait" : "");
        } else {
5553
            virBufferAsprintf(&buf, "tcp:%s:%s%s",
5554 5555 5556 5557 5558 5559 5560
                              dev->data.tcp.host,
                              dev->data.tcp.service,
                              dev->data.tcp.listen ? ",server,nowait" : "");
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
5561
        virBufferAsprintf(&buf, "unix:%s%s",
5562 5563 5564
                          dev->data.nix.path,
                          dev->data.nix.listen ? ",server,nowait" : "");
        break;
5565

5566
    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
5567
    case VIR_DOMAIN_CHR_TYPE_SPICEPORT:
5568
    case VIR_DOMAIN_CHR_TYPE_NMDM:
5569
    case VIR_DOMAIN_CHR_TYPE_LAST:
5570
        break;
5571 5572 5573 5574 5575 5576 5577 5578 5579
    }

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5580
 error:
5581 5582 5583 5584 5585
    virBufferFreeAndReset(&buf);
    return NULL;
}


5586 5587
static char *
qemuBuildVirtioSerialPortDevStr(virDomainChrDefPtr dev,
5588
                                virQEMUCapsPtr qemuCaps)
5589 5590
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5591 5592
    switch (dev->deviceType) {
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
5593
        virBufferAddLit(&buf, "virtconsole");
5594 5595 5596 5597
        break;
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
        /* Legacy syntax  '-device spicevmc' */
        if (dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5598
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC)) {
5599 5600 5601 5602 5603 5604
            virBufferAddLit(&buf, "spicevmc");
        } else {
            virBufferAddLit(&buf, "virtserialport");
        }
        break;
    default:
5605 5606
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Cannot use virtio serial for parallel/serial devices"));
5607 5608
        return NULL;
    }
5609

5610
    if (dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
5611
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW &&
5612
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
5613 5614 5615 5616
        /* Check it's a virtio-serial address */
        if (dev->info.type !=
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_SERIAL)
        {
5617 5618
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("virtio serial device has invalid address type"));
5619 5620 5621
            goto error;
        }

5622
        virBufferAsprintf(&buf,
5623 5624 5625
                          ",bus=" QEMU_VIRTIO_SERIAL_PREFIX "%d.%d",
                          dev->info.addr.vioserial.controller,
                          dev->info.addr.vioserial.bus);
5626
        virBufferAsprintf(&buf,
5627 5628 5629 5630
                          ",nr=%d",
                          dev->info.addr.vioserial.port);
    }

5631 5632
    if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
        dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5633 5634
        dev->target.name &&
        STRNEQ(dev->target.name, "com.redhat.spice.0")) {
5635 5636 5637
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported spicevmc target name '%s'"),
                       dev->target.name);
5638 5639
        goto error;
    }
5640 5641 5642

    if (!(dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
          dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5643
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC))) {
5644
        virBufferAsprintf(&buf, ",chardev=char%s,id=%s",
5645
                          dev->info.alias, dev->info.alias);
5646 5647 5648
        if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL) {
            virBufferAsprintf(&buf, ",name=%s", dev->target.name
                              ? dev->target.name : "com.redhat.spice.0");
5649
        }
5650 5651
    } else {
        virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
5652 5653 5654 5655 5656 5657 5658 5659
    }
    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5660
 error:
5661 5662 5663 5664
    virBufferFreeAndReset(&buf);
    return NULL;
}

5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691
static char *
qemuBuildSclpDevStr(virDomainChrDefPtr dev)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE) {
        switch (dev->targetType) {
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLP:
            virBufferAddLit(&buf, "sclpconsole");
            break;
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLPLM:
            virBufferAddLit(&buf, "sclplmconsole");
            break;
        }
    } else {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Cannot use slcp with devices other than console"));
        goto error;
    }
    virBufferAsprintf(&buf, ",chardev=char%s,id=%s",
                      dev->info.alias, dev->info.alias);
    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5692
 error:
5693 5694 5695 5696
    virBufferFreeAndReset(&buf);
    return NULL;
}

5697 5698 5699 5700 5701 5702 5703

static int
qemuBuildRNGBackendArgs(virCommandPtr cmd,
                        virDomainRNGDefPtr dev,
                        virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5704
    char *backend = NULL;
5705 5706 5707 5708 5709 5710 5711
    int ret = -1;

    switch ((enum virDomainRNGBackend) dev->backend) {
    case VIR_DOMAIN_RNG_BACKEND_RANDOM:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_RNG_RANDOM)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support the rng-random "
5712
                             "backend"));
5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724
            goto cleanup;
        }

        virBufferAsprintf(&buf, "rng-random,id=%s", dev->info.alias);
        if (dev->source.file)
            virBufferAsprintf(&buf, ",filename=%s", dev->source.file);

        virCommandAddArg(cmd, "-object");
        virCommandAddArgBuffer(cmd, &buf);
        break;

    case VIR_DOMAIN_RNG_BACKEND_EGD:
5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741

        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_RNG_EGD)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support the rng-egd "
                             "backend"));
            goto cleanup;
        }

        if (!(backend = qemuBuildChrChardevStr(dev->source.chardev,
                                               dev->info.alias, qemuCaps)))
            goto cleanup;

        virCommandAddArgList(cmd, "-chardev", backend, NULL);

        virCommandAddArg(cmd, "-object");
        virCommandAddArgFormat(cmd, "rng-egd,chardev=char%s,id=%s",
                               dev->info.alias, dev->info.alias);
5742 5743 5744 5745 5746 5747 5748 5749
        break;

    case VIR_DOMAIN_RNG_BACKEND_LAST:
        break;
    }

    ret = 0;

5750
 cleanup:
5751
    virBufferFreeAndReset(&buf);
5752
    VIR_FREE(backend);
5753 5754 5755 5756 5757 5758
    return ret;
}


static int
qemuBuildRNGDeviceArgs(virCommandPtr cmd,
5759
                       virDomainDefPtr def,
5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773
                       virDomainRNGDefPtr dev,
                       virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int ret = -1;

    if (dev->model != VIR_DOMAIN_RNG_MODEL_VIRTIO ||
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIRTIO_RNG)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("this qemu doesn't support RNG device type '%s'"),
                       virDomainRNGModelTypeToString(dev->model));
        goto cleanup;
    }

5774 5775 5776 5777
    if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
        virBufferAsprintf(&buf, "virtio-rng-ccw,rng=%s", dev->info.alias);
    else if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390)
        virBufferAsprintf(&buf, "virtio-rng-s390,rng=%s", dev->info.alias);
5778 5779
    else if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
        virBufferAsprintf(&buf, "virtio-rng-device,rng=%s", dev->info.alias);
5780 5781
    else
        virBufferAsprintf(&buf, "virtio-rng-pci,rng=%s", dev->info.alias);
5782

5783 5784 5785 5786 5787 5788 5789 5790
    if (dev->rate > 0) {
        virBufferAsprintf(&buf, ",max-bytes=%u", dev->rate);
        if (dev->period)
            virBufferAsprintf(&buf, ",period=%u", dev->period);
        else
            virBufferAddLit(&buf, ",period=1000");
    }

5791
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
5792 5793 5794 5795 5796 5797 5798
        goto cleanup;

    virCommandAddArg(cmd, "-device");
    virCommandAddArgBuffer(cmd, &buf);

    ret = 0;

5799
 cleanup:
5800 5801 5802 5803 5804
    virBufferFreeAndReset(&buf);
    return ret;
}


E
Eric Blake 已提交
5805
static char *qemuBuildTPMBackendStr(const virDomainDef *def,
5806 5807 5808
                                    virQEMUCapsPtr qemuCaps,
                                    const char *emulator)
{
E
Eric Blake 已提交
5809
    const virDomainTPMDef *tpm = def->tpm;
5810 5811
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const char *type = virDomainTPMBackendTypeToString(tpm->type);
5812 5813
    char *cancel_path;
    const char *tpmdev;
5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856

    virBufferAsprintf(&buf, "%s,id=tpm-%s", type, tpm->info.alias);

    switch (tpm->type) {
    case VIR_DOMAIN_TPM_TYPE_PASSTHROUGH:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_TPM_PASSTHROUGH))
            goto no_support;

        tpmdev = tpm->data.passthrough.source.data.file.path;
        if (!(cancel_path = virTPMCreateCancelPath(tpmdev)))
            goto error;

        virBufferAddLit(&buf, ",path=");
        virBufferEscape(&buf, ',', ",", "%s", tpmdev);

        virBufferAddLit(&buf, ",cancel-path=");
        virBufferEscape(&buf, ',', ",", "%s", cancel_path);
        VIR_FREE(cancel_path);

        break;
    case VIR_DOMAIN_TPM_TYPE_LAST:
        goto error;
    }

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

 no_support:
    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                   _("The QEMU executable %s does not support TPM "
                     "backend type %s"),
                   emulator, type);

 error:
    virBufferFreeAndReset(&buf);
    return NULL;
}


E
Eric Blake 已提交
5857
static char *qemuBuildTPMDevStr(const virDomainDef *def,
5858 5859 5860 5861
                                virQEMUCapsPtr qemuCaps,
                                const char *emulator)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
E
Eric Blake 已提交
5862
    const virDomainTPMDef *tpm = def->tpm;
5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888
    const char *model = virDomainTPMModelTypeToString(tpm->model);

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_TPM_TIS)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("The QEMU executable %s does not support TPM "
                       "model %s"),
                       emulator, model);
        goto error;
    }

    virBufferAsprintf(&buf, "%s,tpmdev=tpm-%s,id=%s",
                      model, tpm->info.alias, tpm->info.alias);

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

 error:
    virBufferFreeAndReset(&buf);
    return NULL;
}


5889 5890 5891 5892 5893 5894
static char *qemuBuildSmbiosBiosStr(virSysinfoDefPtr def)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if ((def->bios_vendor == NULL) && (def->bios_version == NULL) &&
        (def->bios_date == NULL) && (def->bios_release == NULL))
5895
        return NULL;
5896 5897 5898 5899 5900

    virBufferAddLit(&buf, "type=0");

    /* 0:Vendor */
    if (def->bios_vendor)
5901
        virBufferAsprintf(&buf, ",vendor=%s", def->bios_vendor);
5902 5903
    /* 0:BIOS Version */
    if (def->bios_version)
5904
        virBufferAsprintf(&buf, ",version=%s", def->bios_version);
5905 5906
    /* 0:BIOS Release Date */
    if (def->bios_date)
5907
        virBufferAsprintf(&buf, ",date=%s", def->bios_date);
5908 5909
    /* 0:System BIOS Major Release and 0:System BIOS Minor Release */
    if (def->bios_release)
5910
        virBufferAsprintf(&buf, ",release=%s", def->bios_release);
5911 5912 5913 5914 5915 5916 5917 5918

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5919
 error:
5920
    virBufferFreeAndReset(&buf);
5921
    return NULL;
5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937
}

static char *qemuBuildSmbiosSystemStr(virSysinfoDefPtr def, bool skip_uuid)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if ((def->system_manufacturer == NULL) && (def->system_sku == NULL) &&
        (def->system_product == NULL) && (def->system_version == NULL) &&
        (def->system_serial == NULL) && (def->system_family == NULL) &&
        (def->system_uuid == NULL || skip_uuid))
        return NULL;

    virBufferAddLit(&buf, "type=1");

    /* 1:Manufacturer */
    if (def->system_manufacturer)
5938
        virBufferAsprintf(&buf, ",manufacturer=%s",
5939 5940 5941
                          def->system_manufacturer);
     /* 1:Product Name */
    if (def->system_product)
5942
        virBufferAsprintf(&buf, ",product=%s", def->system_product);
5943 5944
    /* 1:Version */
    if (def->system_version)
5945
        virBufferAsprintf(&buf, ",version=%s", def->system_version);
5946 5947
    /* 1:Serial Number */
    if (def->system_serial)
5948
        virBufferAsprintf(&buf, ",serial=%s", def->system_serial);
5949 5950
    /* 1:UUID */
    if (def->system_uuid && !skip_uuid)
5951
        virBufferAsprintf(&buf, ",uuid=%s", def->system_uuid);
5952 5953
    /* 1:SKU Number */
    if (def->system_sku)
5954
        virBufferAsprintf(&buf, ",sku=%s", def->system_sku);
5955 5956
    /* 1:Family */
    if (def->system_family)
5957
        virBufferAsprintf(&buf, ",family=%s", def->system_family);
5958 5959 5960 5961 5962 5963 5964 5965

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

5966
 error:
5967
    virBufferFreeAndReset(&buf);
5968
    return NULL;
5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989
}

static char *
qemuBuildClockArgStr(virDomainClockDefPtr def)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    switch (def->offset) {
    case VIR_DOMAIN_CLOCK_OFFSET_UTC:
        virBufferAddLit(&buf, "base=utc");
        break;

    case VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME:
    case VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE:
        virBufferAddLit(&buf, "base=localtime");
        break;

    case VIR_DOMAIN_CLOCK_OFFSET_VARIABLE: {
        time_t now = time(NULL);
        struct tm nowbits;

5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008
        if (def->data.variable.basis == VIR_DOMAIN_CLOCK_BASIS_LOCALTIME) {
            long localOffset;

            /* in the case of basis='localtime', rather than trying to
             * keep that basis (and associated offset from UTC) in the
             * status and deal with adding in the difference each time
             * there is an RTC_CHANGE event, it is simpler and less
             * error prone to just convert the adjustment an offset
             * from UTC right now (and change the status to
             * "basis='utc' to reflect this). This eliminates
             * potential errors in both RTC_CHANGE events and in
             * migration (in the case that the status of DST, or the
             * timezone of the destination host, changed relative to
             * startup).
             */
            if (virTimeLocalOffsetFromUTC(&localOffset) < 0)
               goto error;
            def->data.variable.adjustment += localOffset;
            def->data.variable.basis = VIR_DOMAIN_CLOCK_BASIS_UTC;
6009
        }
6010

6011 6012 6013
        now += def->data.variable.adjustment;
        gmtime_r(&now, &nowbits);

6014 6015 6016 6017 6018 6019 6020 6021
        /* when an RTC_CHANGE event is received from qemu, we need to
         * have the adjustment used at domain start time available to
         * compute the new offset from UTC. As this new value is
         * itself stored in def->data.variable.adjustment, we need to
         * save a copy of it now.
        */
        def->data.variable.adjustment0 = def->data.variable.adjustment;

6022
        virBufferAsprintf(&buf, "base=%d-%02d-%02dT%02d:%02d:%02d",
6023 6024 6025 6026 6027 6028 6029 6030 6031
                          nowbits.tm_year + 1900,
                          nowbits.tm_mon + 1,
                          nowbits.tm_mday,
                          nowbits.tm_hour,
                          nowbits.tm_min,
                          nowbits.tm_sec);
    }   break;

    default:
6032 6033 6034
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported clock offset '%s'"),
                       virDomainClockOffsetTypeToString(def->offset));
6035 6036 6037 6038
        goto error;
    }

    /* Look for an 'rtc' timer element, and add in appropriate clock= and driftfix= */
6039
    size_t i;
6040 6041 6042 6043 6044 6045
    for (i = 0; i < def->ntimers; i++) {
        if (def->timers[i]->name == VIR_DOMAIN_TIMER_NAME_RTC) {
            switch (def->timers[i]->track) {
            case -1: /* unspecified - use hypervisor default */
                break;
            case VIR_DOMAIN_TIMER_TRACK_BOOT:
6046 6047 6048
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer track '%s'"),
                               virDomainTimerTrackTypeToString(def->timers[i]->track));
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069
                goto error;
            case VIR_DOMAIN_TIMER_TRACK_GUEST:
                virBufferAddLit(&buf, ",clock=vm");
                break;
            case VIR_DOMAIN_TIMER_TRACK_WALL:
                virBufferAddLit(&buf, ",clock=host");
                break;
            }

            switch (def->timers[i]->tickpolicy) {
            case -1:
            case VIR_DOMAIN_TIMER_TICKPOLICY_DELAY:
                /* This is the default - missed ticks delivered when
                   next scheduled, at normal rate */
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
                /* deliver ticks at a faster rate until caught up */
                virBufferAddLit(&buf, ",driftfix=slew");
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_MERGE:
            case VIR_DOMAIN_TIMER_TICKPOLICY_DISCARD:
6070 6071 6072
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->timers[i]->tickpolicy));
6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085
                goto error;
            }
            break; /* no need to check other timers - there is only one rtc */
        }
    }

    if (virBufferError(&buf)) {
        virReportOOMError();
        goto error;
    }

    return virBufferContentAndReset(&buf);

6086
 error:
6087 6088 6089 6090 6091 6092
    virBufferFreeAndReset(&buf);
    return NULL;
}


static int
E
Eric Blake 已提交
6093 6094
qemuBuildCpuArgStr(virQEMUDriverPtr driver,
                   const virDomainDef *def,
6095
                   const char *emulator,
6096
                   virQEMUCapsPtr qemuCaps,
6097
                   virArch hostarch,
6098
                   char **opt,
6099 6100
                   bool *hasHwVirt,
                   bool migrating)
6101
{
6102
    virCPUDefPtr host = NULL;
6103
    virCPUDefPtr guest = NULL;
6104
    virCPUDefPtr cpu = NULL;
6105
    size_t ncpus = 0;
6106
    char **cpus = NULL;
6107
    const char *default_model;
6108
    virCPUDataPtr data = NULL;
6109
    bool have_cpu = false;
6110
    char *compare_msg = NULL;
6111 6112
    int ret = -1;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
6113
    size_t i;
6114
    virCapsPtr caps = NULL;
6115 6116 6117

    *hasHwVirt = false;

6118 6119 6120 6121 6122
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

    host = caps->host.cpu;

6123
    if (def->os.arch == VIR_ARCH_I686)
6124 6125 6126 6127
        default_model = "qemu32";
    else
        default_model = "qemu64";

6128 6129
    if (def->cpu &&
        (def->cpu->mode != VIR_CPU_MODE_CUSTOM || def->cpu->model)) {
6130 6131 6132
        virCPUCompareResult cmp;
        const char *preferred;

6133
        if (!host ||
J
Jiri Denemark 已提交
6134
            !host->model ||
6135
            (ncpus = virQEMUCapsGetCPUDefinitions(qemuCaps, &cpus)) == 0) {
6136 6137
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("CPU specification not supported by hypervisor"));
6138 6139 6140
            goto cleanup;
        }

6141 6142 6143 6144 6145 6146 6147 6148
        if (!(cpu = virCPUDefCopy(def->cpu)))
            goto cleanup;

        if (cpu->mode != VIR_CPU_MODE_CUSTOM &&
            !migrating &&
            cpuUpdate(cpu, host) < 0)
            goto cleanup;

6149
        cmp = cpuGuestData(host, cpu, &data, &compare_msg);
6150 6151
        switch (cmp) {
        case VIR_CPU_COMPARE_INCOMPATIBLE:
6152
            if (compare_msg) {
6153 6154 6155
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("guest and host CPU are not compatible: %s"),
                               compare_msg);
6156
            } else {
6157 6158
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("guest CPU is not compatible with host CPU"));
6159
            }
6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170
            /* fall through */
        case VIR_CPU_COMPARE_ERROR:
            goto cleanup;

        default:
            break;
        }

        /* Only 'svm' requires --enable-nesting. The nested
         * 'vmx' patches now simply hook off the CPU features
         */
6171 6172 6173 6174 6175 6176 6177
        if (def->os.arch == VIR_ARCH_X86_64 ||
            def->os.arch == VIR_ARCH_I686) {
            int hasSVM = cpuHasFeature(data, "svm");
            if (hasSVM < 0)
                goto cleanup;
            *hasHwVirt = hasSVM > 0 ? true : false;
        }
6178

6179 6180
        if (cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH) {
            const char *mode = virCPUModeTypeToString(cpu->mode);
6181
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CPU_HOST)) {
6182 6183 6184
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("CPU mode '%s' is not supported by QEMU"
                                 " binary"), mode);
6185 6186 6187
                goto cleanup;
            }
            if (def->virtType != VIR_DOMAIN_VIRT_KVM) {
6188 6189 6190
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("CPU mode '%s' is only supported with kvm"),
                               mode);
6191 6192 6193 6194
                goto cleanup;
            }
            virBufferAddLit(&buf, "host");
        } else {
6195
            if (VIR_ALLOC(guest) < 0)
6196 6197 6198
                goto cleanup;
            if (VIR_STRDUP(guest->vendor_id, cpu->vendor_id) < 0)
                goto cleanup;
6199

6200
            guest->arch = host->arch;
6201 6202
            if (cpu->match == VIR_CPU_MATCH_MINIMUM)
                preferred = host->model;
6203
            else
6204
                preferred = cpu->model;
6205

6206 6207
            guest->type = VIR_CPU_TYPE_GUEST;
            guest->fallback = cpu->fallback;
6208
            if (cpuDecode(guest, data, (const char **)cpus, ncpus, preferred) < 0)
6209 6210 6211
                goto cleanup;

            virBufferAdd(&buf, guest->model, -1);
6212 6213
            if (guest->vendor_id)
                virBufferAsprintf(&buf, ",vendor=%s", guest->vendor_id);
6214 6215 6216 6217 6218 6219 6220 6221 6222
            for (i = 0; i < guest->nfeatures; i++) {
                char sign;
                if (guest->features[i].policy == VIR_CPU_FEATURE_DISABLE)
                    sign = '-';
                else
                    sign = '+';

                virBufferAsprintf(&buf, ",%c%s", sign, guest->features[i].name);
            }
6223
        }
6224
        have_cpu = true;
6225
    } else {
6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237
        /*
         * Need to force a 32-bit guest CPU type if
         *
         *  1. guest OS is i686
         *  2. host OS is x86_64
         *  3. emulator is qemu-kvm or kvm
         *
         * Or
         *
         *  1. guest OS is i686
         *  2. emulator is qemu-system-x86_64
         */
6238
        if (def->os.arch == VIR_ARCH_I686 &&
6239
            ((hostarch == VIR_ARCH_X86_64 &&
6240
              strstr(emulator, "kvm")) ||
6241 6242 6243 6244 6245 6246
             strstr(emulator, "x86_64"))) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }
    }

6247
    /* Handle paravirtual timers  */
6248
    for (i = 0; i < def->clock.ntimers; i++) {
6249 6250 6251 6252 6253 6254
        virDomainTimerDefPtr timer = def->clock.timers[i];

        if (timer->present == -1)
            continue;

        if (timer->name == VIR_DOMAIN_TIMER_NAME_KVMCLOCK) {
6255 6256
            virBufferAsprintf(&buf, "%s,%ckvmclock",
                              have_cpu ? "" : default_model,
6257 6258 6259 6260 6261 6262
                              timer->present ? '+' : '-');
            have_cpu = true;
        } else if (timer->name == VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK &&
                   timer->present) {
            virBufferAsprintf(&buf, "%s,hv_time",
                              have_cpu ? "" : default_model);
M
Martin Kletzander 已提交
6263
            have_cpu = true;
6264
        }
6265 6266
    }

6267 6268
    if (def->apic_eoi) {
        char sign;
6269
        if (def->apic_eoi == VIR_DOMAIN_FEATURE_STATE_ON)
6270 6271 6272 6273 6274 6275 6276
            sign = '+';
        else
            sign = '-';

        virBufferAsprintf(&buf, "%s,%ckvm_pv_eoi",
                          have_cpu ? "" : default_model,
                          sign);
M
Martin Kletzander 已提交
6277
        have_cpu = true;
6278 6279
    }

6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292
    if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK]) {
        char sign;
        if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK] == VIR_DOMAIN_FEATURE_STATE_ON)
            sign = '+';
        else
            sign = '-';

        virBufferAsprintf(&buf, "%s,%ckvm_pv_unhalt",
                          have_cpu ? "" : default_model,
                          sign);
        have_cpu = true;
    }

6293
    if (def->features[VIR_DOMAIN_FEATURE_HYPERV] == VIR_DOMAIN_FEATURE_STATE_ON) {
6294 6295 6296 6297 6298 6299 6300 6301
        if (!have_cpu) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }

        for (i = 0; i < VIR_DOMAIN_HYPERV_LAST; i++) {
            switch ((enum virDomainHyperv) i) {
            case VIR_DOMAIN_HYPERV_RELAXED:
6302
            case VIR_DOMAIN_HYPERV_VAPIC:
6303 6304 6305 6306 6307
                if (def->hyperv_features[i] == VIR_DOMAIN_FEATURE_STATE_ON)
                    virBufferAsprintf(&buf, ",hv_%s",
                                      virDomainHypervTypeToString(i));
                break;

6308
            case VIR_DOMAIN_HYPERV_SPINLOCKS:
6309 6310 6311
                if (def->hyperv_features[i] == VIR_DOMAIN_FEATURE_STATE_ON)
                    virBufferAsprintf(&buf, ",hv_spinlocks=0x%x",
                                      def->hyperv_spinlocks);
6312 6313
                break;

6314 6315 6316 6317 6318 6319
            case VIR_DOMAIN_HYPERV_LAST:
                break;
            }
        }
    }

6320 6321 6322 6323
    if (virBufferError(&buf)) {
        virReportOOMError();
        goto cleanup;
    }
6324 6325 6326 6327 6328

    *opt = virBufferContentAndReset(&buf);

    ret = 0;

6329
 cleanup:
6330
    VIR_FREE(compare_msg);
J
Jiri Denemark 已提交
6331
    cpuDataFree(data);
6332
    virCPUDefFree(guest);
6333
    virCPUDefFree(cpu);
6334
    virObjectUnref(caps);
6335 6336 6337
    return ret;
}

6338 6339
static int
qemuBuildObsoleteAccelArg(virCommandPtr cmd,
E
Eric Blake 已提交
6340
                          const virDomainDef *def,
6341 6342
                          virQEMUCapsPtr qemuCaps)
{
6343 6344 6345 6346
    bool disableKQEMU = false;
    bool enableKQEMU = false;
    bool disableKVM = false;
    bool enableKVM = false;
6347 6348 6349 6350

    switch (def->virtType) {
    case VIR_DOMAIN_VIRT_QEMU:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KQEMU))
6351
            disableKQEMU = true;
6352
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM))
6353
            disableKVM = true;
6354 6355 6356 6357
        break;

    case VIR_DOMAIN_VIRT_KQEMU:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM))
6358
            disableKVM = true;
6359 6360

        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_KQEMU)) {
6361
            enableKQEMU = true;
6362 6363 6364 6365 6366 6367 6368 6369 6370
        } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_KQEMU)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("the QEMU binary does not support kqemu"));
            return -1;
        }
        break;

    case VIR_DOMAIN_VIRT_KVM:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KQEMU))
6371
            disableKQEMU = true;
6372 6373

        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_KVM)) {
6374
            enableKVM = true;
6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404
        } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("the QEMU binary does not support kvm"));
            return -1;
        }
        break;

    case VIR_DOMAIN_VIRT_XEN:
        /* XXX better check for xenner */
        break;

    default:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("the QEMU binary does not support %s"),
                       virDomainVirtTypeToString(def->virtType));
        return -1;
    }

    if (disableKQEMU)
        virCommandAddArg(cmd, "-no-kqemu");
    else if (enableKQEMU)
        virCommandAddArgList(cmd, "-enable-kqemu", "-kernel-kqemu", NULL);
    if (disableKVM)
        virCommandAddArg(cmd, "-no-kvm");
    if (enableKVM)
        virCommandAddArg(cmd, "-enable-kvm");

    return 0;
}

6405 6406
static int
qemuBuildMachineArgStr(virCommandPtr cmd,
E
Eric Blake 已提交
6407
                       const virDomainDef *def,
6408
                       virQEMUCapsPtr qemuCaps)
6409
{
6410 6411
    bool obsoleteAccel = false;

6412 6413 6414 6415 6416 6417 6418
    /* 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 (!def->os.machine)
        return 0;

6419
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_OPT)) {
6420 6421 6422 6423
        /* if no parameter to the machine type is needed, we still use
         * '-M' to keep the most of the compatibility with older versions.
         */
        virCommandAddArgList(cmd, "-M", def->os.machine, NULL);
6424 6425 6426 6427
        if (def->mem.dump_core) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("dump-guest-core is not available "
                             "with this QEMU binary"));
6428 6429
            return -1;
        }
6430 6431 6432 6433 6434 6435 6436 6437

        if (def->mem.nosharepages) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disable shared memory is not available "
                             "with this QEMU binary"));
             return -1;
        }

6438
        obsoleteAccel = true;
6439 6440
    } else {
        virBuffer buf = VIR_BUFFER_INITIALIZER;
6441 6442

        virCommandAddArg(cmd, "-machine");
6443 6444
        virBufferAdd(&buf, def->os.machine, -1);

6445 6446 6447 6448 6449 6450 6451
        if (def->virtType == VIR_DOMAIN_VIRT_QEMU)
            virBufferAddLit(&buf, ",accel=tcg");
        else if (def->virtType == VIR_DOMAIN_VIRT_KVM)
            virBufferAddLit(&buf, ",accel=kvm");
        else
            obsoleteAccel = true;

L
Li Zhang 已提交
6452 6453 6454 6455
        /* To avoid the collision of creating USB controllers when calling
         * machine->init in QEMU, it needs to set usb=off
         */
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_USB_OPT))
6456
            virBufferAddLit(&buf, ",usb=off");
L
Li Zhang 已提交
6457

6458 6459 6460 6461 6462
        if (def->mem.dump_core) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DUMP_GUEST_CORE)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("dump-guest-core is not available "
                                 "with this QEMU binary"));
6463
                virBufferFreeAndReset(&buf);
6464 6465 6466 6467 6468 6469 6470
                return -1;
            }

            virBufferAsprintf(&buf, ",dump-guest-core=%s",
                              virDomainMemDumpTypeToString(def->mem.dump_core));
        }

6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482
        if (def->mem.nosharepages) {
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MEM_MERGE)) {
                virBufferAddLit(&buf, ",mem-merge=off");
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("disable shared memory is not available "
                                 "with this QEMU binary"));
                virBufferFreeAndReset(&buf);
                return -1;
            }
        }

6483
        virCommandAddArgBuffer(cmd, &buf);
6484 6485
    }

6486 6487 6488 6489
    if (obsoleteAccel &&
        qemuBuildObsoleteAccelArg(cmd, def, qemuCaps) < 0)
        return -1;

6490 6491 6492
    return 0;
}

6493
static char *
E
Eric Blake 已提交
6494
qemuBuildSmpArgStr(const virDomainDef *def,
6495
                   virQEMUCapsPtr qemuCaps)
6496 6497 6498
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

6499
    virBufferAsprintf(&buf, "%u", def->vcpus);
6500

6501
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SMP_TOPOLOGY)) {
6502
        if (def->vcpus != def->maxvcpus)
6503
            virBufferAsprintf(&buf, ",maxcpus=%u", def->maxvcpus);
6504 6505 6506
        /* sockets, cores, and threads are either all zero
         * or all non-zero, thus checking one of them is enough */
        if (def->cpu && def->cpu->sockets) {
6507 6508 6509
            virBufferAsprintf(&buf, ",sockets=%u", def->cpu->sockets);
            virBufferAsprintf(&buf, ",cores=%u", def->cpu->cores);
            virBufferAsprintf(&buf, ",threads=%u", def->cpu->threads);
6510 6511
        }
        else {
6512 6513 6514
            virBufferAsprintf(&buf, ",sockets=%u", def->maxvcpus);
            virBufferAsprintf(&buf, ",cores=%u", 1);
            virBufferAsprintf(&buf, ",threads=%u", 1);
6515 6516 6517 6518
        }
    } else if (def->vcpus != def->maxvcpus) {
        virBufferFreeAndReset(&buf);
        /* FIXME - consider hot-unplugging cpus after boot for older qemu */
6519 6520 6521
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("setting current vcpu count less than maximum is "
                         "not supported with this QEMU binary"));
6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533
        return NULL;
    }

    if (virBufferError(&buf)) {
        virBufferFreeAndReset(&buf);
        virReportOOMError();
        return NULL;
    }

    return virBufferContentAndReset(&buf);
}

B
Bharata B Rao 已提交
6534
static int
E
Eric Blake 已提交
6535
qemuBuildNumaArgStr(const virDomainDef *def, virCommandPtr cmd)
B
Bharata B Rao 已提交
6536
{
6537
    size_t i;
B
Bharata B Rao 已提交
6538
    virBuffer buf = VIR_BUFFER_INITIALIZER;
6539 6540
    char *cpumask = NULL;
    int ret = -1;
B
Bharata B Rao 已提交
6541 6542

    for (i = 0; i < def->cpu->ncells; i++) {
6543
        VIR_FREE(cpumask);
B
Bharata B Rao 已提交
6544 6545 6546
        virCommandAddArg(cmd, "-numa");
        virBufferAsprintf(&buf, "node,nodeid=%d", def->cpu->cells[i].cellid);
        virBufferAddLit(&buf, ",cpus=");
6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560
        if (!(cpumask = virBitmapFormat(def->cpu->cells[i].cpumask)))
            goto cleanup;

        /* Up through qemu 1.4, -numa does not accept a cpus
         * argument any more complex than start-stop.
         *
         * XXX For qemu 1.5, the syntax has not yet been decided;
         * but when it is, we need a capability bit and
         * translation of our cpumask into the qemu syntax.  */
        if (strchr(cpumask, ',')) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disjoint NUMA cpu ranges are not supported "
                             "with this QEMU"));
            goto cleanup;
6561
        }
6562
        virBufferAdd(&buf, cpumask, -1);
6563 6564
        def->cpu->cells[i].mem = VIR_DIV_UP(def->cpu->cells[i].mem,
                                            1024) * 1024;
6565
        virBufferAsprintf(&buf, ",mem=%d", def->cpu->cells[i].mem / 1024);
B
Bharata B Rao 已提交
6566

6567 6568 6569 6570
        if (virBufferError(&buf)) {
            virReportOOMError();
            goto cleanup;
        }
B
Bharata B Rao 已提交
6571 6572 6573

        virCommandAddArgBuffer(cmd, &buf);
    }
6574
    ret = 0;
B
Bharata B Rao 已提交
6575

6576
 cleanup:
6577
    VIR_FREE(cpumask);
B
Bharata B Rao 已提交
6578
    virBufferFreeAndReset(&buf);
6579
    return ret;
B
Bharata B Rao 已提交
6580
}
6581

6582

6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606
static int
qemuBuildGraphicsVNCCommandLine(virQEMUDriverConfigPtr cfg,
                                virCommandPtr cmd,
                                virDomainDefPtr def,
                                virQEMUCapsPtr qemuCaps,
                                virDomainGraphicsDefPtr graphics)
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *listenNetwork;
    const char *listenAddr = NULL;
    char *netAddr = NULL;
    bool escapeAddr;
    int ret;

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNC)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("vnc graphics are not supported with this QEMU"));
        goto error;
    }

    if (graphics->data.vnc.socket || cfg->vncAutoUnixSocket) {
        if (!graphics->data.vnc.socket &&
            virAsprintf(&graphics->data.vnc.socket,
                        "%s/%s.vnc", cfg->libDir, def->name) == -1)
6607
            goto error;
6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660

        virBufferAsprintf(&opt, "unix:%s", graphics->data.vnc.socket);

    } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNC_COLON)) {
        switch (virDomainGraphicsListenGetType(graphics, 0)) {
        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS:
            listenAddr = virDomainGraphicsListenGetAddress(graphics, 0);
            break;

        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NETWORK:
            listenNetwork = virDomainGraphicsListenGetNetwork(graphics, 0);
            if (!listenNetwork)
                break;
            ret = networkGetNetworkAddress(listenNetwork, &netAddr);
            if (ret <= -2) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("network-based listen not possible, "
                                       "network driver not present"));
                goto error;
            }
            if (ret < 0) {
                virReportError(VIR_ERR_XML_ERROR,
                               _("listen network '%s' had no usable address"),
                               listenNetwork);
                goto error;
            }
            listenAddr = netAddr;
            /* store the address we found in the <graphics> element so it will
             * show up in status. */
            if (virDomainGraphicsListenSetAddress(graphics, 0,
                                                  listenAddr, -1, false) < 0)
               goto error;
            break;
        }

        if (!listenAddr)
            listenAddr = cfg->vncListen;

        escapeAddr = strchr(listenAddr, ':') != NULL;
        if (escapeAddr)
            virBufferAsprintf(&opt, "[%s]", listenAddr);
        else
            virBufferAdd(&opt, listenAddr, -1);
        virBufferAsprintf(&opt, ":%d",
                          graphics->data.vnc.port - 5900);

        VIR_FREE(netAddr);
    } else {
        virBufferAsprintf(&opt, "%d",
                          graphics->data.vnc.port - 5900);
    }

    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNC_COLON)) {
6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671
        if (!graphics->data.vnc.socket &&
            graphics->data.vnc.websocket) {
                if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNC_WEBSOCKET)) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("VNC WebSockets are not supported "
                                     "with this QEMU binary"));
                    goto error;
                }
                virBufferAsprintf(&opt, ",websocket=%d", graphics->data.vnc.websocket);
            }

6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684
        if (graphics->data.vnc.sharePolicy) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNC_SHARE_POLICY)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("vnc display sharing policy is not "
                                 "supported with this QEMU"));
                goto error;
            }

            virBufferAsprintf(&opt, ",share=%s",
                              virDomainGraphicsVNCSharePolicyTypeToString(
                              graphics->data.vnc.sharePolicy));
        }

6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715
        if (graphics->data.vnc.auth.passwd || cfg->vncPassword)
            virBufferAddLit(&opt, ",password");

        if (cfg->vncTLS) {
            virBufferAddLit(&opt, ",tls");
            if (cfg->vncTLSx509verify)
                virBufferAsprintf(&opt, ",x509verify=%s", cfg->vncTLSx509certdir);
            else
                virBufferAsprintf(&opt, ",x509=%s", cfg->vncTLSx509certdir);
        }

        if (cfg->vncSASL) {
            virBufferAddLit(&opt, ",sasl");

            if (cfg->vncSASLdir)
                virCommandAddEnvPair(cmd, "SASL_CONF_DIR", cfg->vncSASLdir);

            /* TODO: Support ACLs later */
        }
    }

    virCommandAddArg(cmd, "-vnc");
    virCommandAddArgBuffer(cmd, &opt);
    if (graphics->data.vnc.keymap)
        virCommandAddArgList(cmd, "-k", graphics->data.vnc.keymap, NULL);

    /* Unless user requested it, set the audio backend to none, to
     * prevent it opening the host OS audio devices, since that causes
     * security issues and might not work when using VNC.
     */
    if (cfg->vncAllowHostAudio)
6716
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
6717 6718 6719 6720 6721
    else
        virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");

    return 0;

6722
 error:
6723 6724 6725 6726 6727 6728
    VIR_FREE(netAddr);
    virBufferFreeAndReset(&opt);
    return -1;
}


6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742
static int
qemuBuildGraphicsSPICECommandLine(virQEMUDriverConfigPtr cfg,
                                  virCommandPtr cmd,
                                  virQEMUCapsPtr qemuCaps,
                                  virDomainGraphicsDefPtr graphics)
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *listenNetwork;
    const char *listenAddr = NULL;
    char *netAddr = NULL;
    int ret;
    int defaultMode = graphics->data.spice.defaultMode;
    int port = graphics->data.spice.port;
    int tlsPort = graphics->data.spice.tlsPort;
6743
    size_t i;
6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SPICE)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("spice graphics are not supported with this QEMU"));
        goto error;
    }

    if (port > 0 || tlsPort <= 0)
        virBufferAsprintf(&opt, "port=%u", port);

    if (tlsPort > 0) {
        if (!cfg->spiceTLS) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("spice TLS port set in XML configuration,"
                             " but TLS is disabled in qemu.conf"));
            goto error;
        }
        if (port > 0)
            virBufferAddChar(&opt, ',');
        virBufferAsprintf(&opt, "tls-port=%u", tlsPort);
    }

6766 6767 6768 6769 6770 6771 6772 6773 6774 6775
    if (cfg->spiceSASL) {
        virBufferAddLit(&opt, ",sasl");

        if (cfg->spiceSASLdir)
            virCommandAddEnvPair(cmd, "SASL_CONF_PATH",
                                 cfg->spiceSASLdir);

        /* TODO: Support ACLs later */
    }

6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816
    switch (virDomainGraphicsListenGetType(graphics, 0)) {
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS:
        listenAddr = virDomainGraphicsListenGetAddress(graphics, 0);
        break;

    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NETWORK:
        listenNetwork = virDomainGraphicsListenGetNetwork(graphics, 0);
        if (!listenNetwork)
            break;
        ret = networkGetNetworkAddress(listenNetwork, &netAddr);
        if (ret <= -2) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("network-based listen not possible, "
                                   "network driver not present"));
            goto error;
        }
        if (ret < 0) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("listen network '%s' had no usable address"),
                           listenNetwork);
            goto error;
        }
        listenAddr = netAddr;
        /* store the address we found in the <graphics> element so it will
         * show up in status. */
        if (virDomainGraphicsListenSetAddress(graphics, 0,
                                              listenAddr, -1, false) < 0)
           goto error;
        break;
    }

    if (!listenAddr)
        listenAddr = cfg->spiceListen;
    if (listenAddr)
        virBufferAsprintf(&opt, ",addr=%s", listenAddr);

    VIR_FREE(netAddr);

    if (graphics->data.spice.mousemode) {
        switch (graphics->data.spice.mousemode) {
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_SERVER:
6817
            virBufferAddLit(&opt, ",agent-mouse=off");
6818 6819
            break;
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_CLIENT:
6820
            virBufferAddLit(&opt, ",agent-mouse=on");
6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833
            break;
        default:
            break;
        }
    }

    /* In the password case we set it via monitor command, to avoid
     * making it visible on CLI, so there's no use of password=XXX
     * in this bit of the code */
    if (!graphics->data.spice.auth.passwd &&
        !cfg->spicePassword)
        virBufferAddLit(&opt, ",disable-ticketing");

6834 6835
    if (tlsPort > 0)
        virBufferAsprintf(&opt, ",x509-dir=%s", cfg->spiceTLSx509certdir);
6836 6837 6838

    switch (defaultMode) {
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
6839
        virBufferAddLit(&opt, ",tls-channel=default");
6840 6841
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
6842
        virBufferAddLit(&opt, ",plaintext-channel=default");
6843 6844 6845 6846 6847 6848
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
        /* nothing */
        break;
    }

6849
    for (i = 0; i < VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_LAST; i++) {
6850
        switch (graphics->data.spice.channels[i]) {
6851
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
6852
            if (tlsPort <= 0) {
6853 6854
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice secure channels set in XML configuration, "
6855
                                 "but TLS port is not provided"));
6856 6857 6858 6859 6860
                goto error;
            }
            virBufferAsprintf(&opt, ",tls-channel=%s",
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
6861

6862
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
6863 6864 6865 6866 6867 6868
            if (port <= 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice insecure channels set in XML "
                                 "configuration, but plain port is not provided"));
                goto error;
            }
6869 6870 6871
            virBufferAsprintf(&opt, ",plaintext-channel=%s",
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896

        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
            switch (defaultMode) {
            case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
                if (tlsPort <= 0) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("spice defaultMode secure requested in XML "
                                     "configuration but TLS port not provided"));
                    goto error;
                }
                break;

            case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
                if (port <= 0) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("spice defaultMode insecure requested in XML "
                                     "configuration but plain port not provided"));
                    goto error;
                }
                break;

            case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
                /* don't care */
            break;
            }
6897 6898
        }
    }
6899

6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916
    if (graphics->data.spice.image)
        virBufferAsprintf(&opt, ",image-compression=%s",
                          virDomainGraphicsSpiceImageCompressionTypeToString(graphics->data.spice.image));
    if (graphics->data.spice.jpeg)
        virBufferAsprintf(&opt, ",jpeg-wan-compression=%s",
                          virDomainGraphicsSpiceJpegCompressionTypeToString(graphics->data.spice.jpeg));
    if (graphics->data.spice.zlib)
        virBufferAsprintf(&opt, ",zlib-glz-wan-compression=%s",
                          virDomainGraphicsSpiceZlibCompressionTypeToString(graphics->data.spice.zlib));
    if (graphics->data.spice.playback)
        virBufferAsprintf(&opt, ",playback-compression=%s",
                          virDomainGraphicsSpicePlaybackCompressionTypeToString(graphics->data.spice.playback));
    if (graphics->data.spice.streaming)
        virBufferAsprintf(&opt, ",streaming-video=%s",
                          virDomainGraphicsSpiceStreamingModeTypeToString(graphics->data.spice.streaming));
    if (graphics->data.spice.copypaste == VIR_DOMAIN_GRAPHICS_SPICE_CLIPBOARD_COPYPASTE_NO)
        virBufferAddLit(&opt, ",disable-copy-paste");
6917 6918 6919 6920 6921 6922 6923 6924 6925
    if (graphics->data.spice.filetransfer == VIR_DOMAIN_GRAPHICS_SPICE_AGENT_FILE_TRANSFER_NO) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SPICE_FILE_XFER_DISABLE)) {
           virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                          _("This QEMU can't disable file transfers through spice"));
            goto error;
        } else {
            virBufferAddLit(&opt, ",disable-agent-file-xfer");
        }
    }
6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946

    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SEAMLESS_MIGRATION)) {
        /* If qemu supports seamless migration turn it
         * unconditionally on. If migration destination
         * doesn't support it, it fallbacks to previous
         * migration algorithm silently. */
        virBufferAddLit(&opt, ",seamless-migration=on");
    }

    virCommandAddArg(cmd, "-spice");
    virCommandAddArgBuffer(cmd, &opt);
    if (graphics->data.spice.keymap)
        virCommandAddArgList(cmd, "-k",
                             graphics->data.spice.keymap, NULL);
    /* SPICE includes native support for tunnelling audio, so we
     * set the audio backend to point at SPICE's own driver
     */
    virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=spice");

    return 0;

6947
 error:
6948 6949 6950 6951 6952
    VIR_FREE(netAddr);
    virBufferFreeAndReset(&opt);
    return -1;
}

6953
static int
6954
qemuBuildGraphicsCommandLine(virQEMUDriverConfigPtr cfg,
6955 6956
                             virCommandPtr cmd,
                             virDomainDefPtr def,
6957
                             virQEMUCapsPtr qemuCaps,
6958
                             virDomainGraphicsDefPtr graphics)
6959
{
6960 6961
    switch ((enum virDomainGraphicsType) graphics->type) {
    case VIR_DOMAIN_GRAPHICS_TYPE_SDL:
6962 6963
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_0_10) &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SDL)) {
6964
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
6965 6966
                           _("sdl not supported by '%s'"), def->emulator);
            return -1;
6967 6968
        }

6969
        if (graphics->data.sdl.xauth)
6970
            virCommandAddEnvPair(cmd, "XAUTHORITY", graphics->data.sdl.xauth);
6971
        if (graphics->data.sdl.display)
6972
            virCommandAddEnvPair(cmd, "DISPLAY", graphics->data.sdl.display);
6973 6974
        if (graphics->data.sdl.fullscreen)
            virCommandAddArg(cmd, "-full-screen");
6975

6976 6977 6978 6979
        /* If using SDL for video, then we should just let it
         * use QEMU's host audio drivers, possibly SDL too
         * User can set these two before starting libvirtd
         */
6980 6981
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
        virCommandAddEnvPassBlockSUID(cmd, "SDL_AUDIODRIVER", NULL);
B
Bharata B Rao 已提交
6982

6983 6984 6985
        /* New QEMU has this flag to let us explicitly ask for
         * SDL graphics. This is better than relying on the
         * default, since the default changes :-( */
6986
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SDL))
6987
            virCommandAddArg(cmd, "-sdl");
6988

6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999
        break;

    case VIR_DOMAIN_GRAPHICS_TYPE_VNC:
        return qemuBuildGraphicsVNCCommandLine(cfg, cmd, def, qemuCaps, graphics);

    case VIR_DOMAIN_GRAPHICS_TYPE_SPICE:
        return qemuBuildGraphicsSPICECommandLine(cfg, cmd, qemuCaps, graphics);

    case VIR_DOMAIN_GRAPHICS_TYPE_RDP:
    case VIR_DOMAIN_GRAPHICS_TYPE_DESKTOP:
    case VIR_DOMAIN_GRAPHICS_TYPE_LAST:
7000 7001 7002
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported graphics type '%s'"),
                       virDomainGraphicsTypeToString(graphics->type));
7003
        return -1;
7004
    }
7005

7006 7007
    return 0;
}
7008

7009 7010 7011 7012 7013 7014 7015 7016 7017
static int
qemuBuildInterfaceCommandLine(virCommandPtr cmd,
                              virQEMUDriverPtr driver,
                              virConnectPtr conn,
                              virDomainDefPtr def,
                              virDomainNetDefPtr net,
                              virQEMUCapsPtr qemuCaps,
                              int vlan,
                              int bootindex,
7018
                              virNetDevVPortProfileOp vmop,
7019
                              bool standalone)
7020 7021 7022
{
    int ret = -1;
    char *nic = NULL, *host = NULL;
7023 7024 7025 7026 7027 7028
    int *tapfd = NULL;
    int tapfdSize = 0;
    int *vhostfd = NULL;
    int vhostfdSize = 0;
    char **tapfdName = NULL;
    char **vhostfdName = NULL;
7029
    int actualType = virDomainNetGetActualType(net);
7030
    size_t i;
7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041

    if (actualType == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
        /* NET_TYPE_HOSTDEV devices are really hostdev devices, so
         * their commandlines are constructed with other hostdevs.
         */
        return 0;
    }

    if (!bootindex)
        bootindex = net->info.bootIndex;

7042 7043 7044 7045 7046 7047 7048 7049 7050 7051
    /* Currently nothing besides TAP devices supports multiqueue. */
    if (net->driver.virtio.queues > 0 &&
        !(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
          actualType == VIR_DOMAIN_NET_TYPE_BRIDGE)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Multiqueue network is not supported for: %s"),
                       virDomainNetTypeToString(actualType));
        return -1;
    }

7052 7053
    if (actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
        actualType == VIR_DOMAIN_NET_TYPE_BRIDGE) {
7054 7055 7056 7057 7058
        tapfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = 1;

        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0 ||
7059
            VIR_ALLOC_N(tapfdName, tapfdSize) < 0)
7060 7061
            goto cleanup;

7062 7063
        memset(tapfd, -1, tapfdSize * sizeof(tapfd[0]));

7064 7065
        if (qemuNetworkIfaceConnect(def, conn, driver, net,
                                    qemuCaps, tapfd, &tapfdSize) < 0)
7066 7067
            goto cleanup;
    } else if (actualType == VIR_DOMAIN_NET_TYPE_DIRECT) {
7068
        if (VIR_ALLOC(tapfd) < 0 || VIR_ALLOC(tapfdName) < 0)
7069 7070 7071 7072 7073
            goto cleanup;
        tapfdSize = 1;
        tapfd[0] = qemuPhysIfaceConnect(def, driver, net,
                                        qemuCaps, vmop);
        if (tapfd[0] < 0)
7074 7075 7076
            goto cleanup;
    }

7077 7078 7079 7080 7081
    if ((actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
         actualType == VIR_DOMAIN_NET_TYPE_BRIDGE ||
         actualType == VIR_DOMAIN_NET_TYPE_ETHERNET ||
         actualType == VIR_DOMAIN_NET_TYPE_DIRECT) &&
        !standalone) {
7082 7083
        /* Attempt to use vhost-net mode for these types of
           network device */
7084 7085 7086 7087 7088
        vhostfdSize = net->driver.virtio.queues;
        if (!vhostfdSize)
            vhostfdSize = 1;

        if (VIR_ALLOC_N(vhostfd, vhostfdSize) < 0 ||
7089
            VIR_ALLOC_N(vhostfdName, vhostfdSize))
7090 7091
            goto cleanup;

7092 7093
        memset(vhostfd, -1, vhostfdSize * sizeof(vhostfd[0]));

7094
        if (qemuOpenVhostNet(def, net, qemuCaps, vhostfd, &vhostfdSize) < 0)
7095 7096 7097
            goto cleanup;
    }

7098
    for (i = 0; i < tapfdSize; i++) {
7099 7100
        virCommandPassFD(cmd, tapfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
7101
        if (virAsprintf(&tapfdName[i], "%d", tapfd[i]) < 0)
7102 7103 7104
            goto cleanup;
    }

7105
    for (i = 0; i < vhostfdSize; i++) {
7106 7107
        virCommandPassFD(cmd, vhostfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
7108
        if (virAsprintf(&vhostfdName[i], "%d", vhostfd[i]) < 0)
7109
            goto cleanup;
7110 7111 7112 7113 7114 7115 7116 7117 7118 7119
    }

    /* Possible combinations:
     *
     *  1. Old way:   -net nic,model=e1000,vlan=1 -net tap,vlan=1
     *  2. Semi-new:  -device e1000,vlan=1        -net tap,vlan=1
     *  3. Best way:  -netdev type=tap,id=netdev1 -device e1000,id=netdev1
     *
     * NB, no support for -netdev without use of -device
     */
7120
    if (qemuDomainSupportsNetdev(def, qemuCaps, net)) {
7121
        if (!(host = qemuBuildHostNetStr(net, driver,
7122 7123 7124
                                         ',', vlan,
                                         tapfdName, tapfdSize,
                                         vhostfdName, vhostfdSize)))
7125 7126 7127
            goto cleanup;
        virCommandAddArgList(cmd, "-netdev", host, NULL);
    }
7128
    if (qemuDomainSupportsNicdev(def, qemuCaps, net)) {
7129
        if (!(nic = qemuBuildNicDevStr(def, net, vlan, bootindex,
7130
                                       vhostfdSize, qemuCaps)))
7131 7132 7133 7134 7135 7136 7137
            goto cleanup;
        virCommandAddArgList(cmd, "-device", nic, NULL);
    } else {
        if (!(nic = qemuBuildNicStr(net, "nic,", vlan)))
            goto cleanup;
        virCommandAddArgList(cmd, "-net", nic, NULL);
    }
7138
    if (!qemuDomainSupportsNetdev(def, qemuCaps, net)) {
7139
        if (!(host = qemuBuildHostNetStr(net, driver,
7140 7141 7142
                                         ',', vlan,
                                         tapfdName, tapfdSize,
                                         vhostfdName, vhostfdSize)))
7143 7144 7145 7146 7147
            goto cleanup;
        virCommandAddArgList(cmd, "-net", host, NULL);
    }

    ret = 0;
7148
 cleanup:
7149 7150
    if (ret < 0) {
        virErrorPtr saved_err = virSaveLastError();
7151
        virDomainConfNWFilterTeardown(net);
7152 7153 7154
        virSetError(saved_err);
        virFreeError(saved_err);
    }
7155
    for (i = 0; tapfd && i < tapfdSize && tapfd[i] >= 0; i++) {
7156 7157
        if (ret < 0)
            VIR_FORCE_CLOSE(tapfd[i]);
7158 7159
        if (tapfdName)
            VIR_FREE(tapfdName[i]);
7160
    }
7161
    for (i = 0; vhostfd && i < vhostfdSize && vhostfd[i] >= 0; i++) {
7162 7163
        if (ret < 0)
            VIR_FORCE_CLOSE(vhostfd[i]);
7164 7165
        if (vhostfdName)
            VIR_FREE(vhostfdName[i]);
7166 7167 7168
    }
    VIR_FREE(tapfd);
    VIR_FREE(vhostfd);
7169 7170 7171 7172 7173 7174 7175
    VIR_FREE(nic);
    VIR_FREE(host);
    VIR_FREE(tapfdName);
    VIR_FREE(vhostfdName);
    return ret;
}

7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187
static int
qemuBuildChrDeviceCommandLine(virCommandPtr cmd,
                              virDomainDefPtr def,
                              virDomainChrDefPtr chr,
                              virQEMUCapsPtr qemuCaps)
{
    char *devstr = NULL;

    if (qemuBuildChrDeviceStr(&devstr, def, chr, qemuCaps) < 0)
        return -1;

    virCommandAddArgList(cmd, "-device", devstr, NULL);
7188
    VIR_FREE(devstr);
7189 7190 7191
    return 0;
}

7192 7193 7194 7195
qemuBuildCommandLineCallbacks buildCommandLineCallbacks = {
    .qemuGetSCSIDeviceSgName = virSCSIDeviceGetSgName,
};

7196 7197 7198 7199 7200 7201 7202 7203 7204
/*
 * Constructs a argv suitable for launching qemu with config defined
 * for a given virtual machine.
 *
 * XXX 'conn' is only required to resolve network -> bridge name
 * figure out how to remove this requirement some day
 */
virCommandPtr
qemuBuildCommandLine(virConnectPtr conn,
7205
                     virQEMUDriverPtr driver,
7206 7207 7208
                     virDomainDefPtr def,
                     virDomainChrSourceDefPtr monitor_chr,
                     bool monitor_json,
7209
                     virQEMUCapsPtr qemuCaps,
7210 7211 7212
                     const char *migrateFrom,
                     int migrateFd,
                     virDomainSnapshotObjPtr snapshot,
7213
                     virNetDevVPortProfileOp vmop,
C
Cole Robinson 已提交
7214 7215
                     qemuBuildCommandLineCallbacksPtr callbacks,
                     bool standalone)
7216
{
7217
    virErrorPtr originalError = NULL;
7218
    size_t i, j;
7219 7220 7221 7222 7223 7224 7225
    const char *emulator;
    char uuid[VIR_UUID_STRING_BUFLEN];
    char *cpu;
    char *smp;
    int last_good_net = -1;
    bool hasHwVirt = false;
    virCommandPtr cmd = NULL;
7226
    bool allowReboot = true;
7227
    bool emitBootindex = false;
7228 7229 7230
    int sdl = 0;
    int vnc = 0;
    int spice = 0;
7231
    int usbcontroller = 0;
M
Martin Kletzander 已提交
7232
    int actualSerials = 0;
7233
    bool usblegacy = false;
7234
    bool mlock = false;
7235 7236 7237
    int contOrder[] = {
        /* We don't add an explicit IDE or FD controller because the
         * provided PIIX4 device already includes one. It isn't possible to
7238 7239 7240 7241 7242
         * remove the PIIX4.
         *
         * We don't add PCI root controller either, because it's implicit,
         * but we do add PCI bridges. */
        VIR_DOMAIN_CONTROLLER_TYPE_PCI,
7243 7244 7245 7246 7247 7248
        VIR_DOMAIN_CONTROLLER_TYPE_USB,
        VIR_DOMAIN_CONTROLLER_TYPE_SCSI,
        VIR_DOMAIN_CONTROLLER_TYPE_SATA,
        VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL,
        VIR_DOMAIN_CONTROLLER_TYPE_CCID,
    };
7249
    virArch hostarch = virArchFromHost();
7250
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
7251

7252
    VIR_DEBUG("conn=%p driver=%p def=%p mon=%p json=%d "
7253
              "qemuCaps=%p migrateFrom=%s migrateFD=%d "
7254 7255
              "snapshot=%p vmop=%d",
              conn, driver, def, monitor_chr, monitor_json,
7256
              qemuCaps, migrateFrom, migrateFd, snapshot, vmop);
7257

7258 7259 7260 7261
    virUUIDFormat(def->uuid, uuid);

    emulator = def->emulator;

7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278
    if (!cfg->privileged) {
        /* If we have no cgroups than we can have no tunings that
         * require them */

        if (def->mem.hard_limit || def->mem.soft_limit ||
            def->mem.min_guarantee || def->mem.swap_hard_limit) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Memory tuning is not available in session mode"));
            goto error;
        }

        if (def->blkio.weight || def->blkio.ndevices) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Block I/O tuning is not available in session mode"));
            goto error;
        }

7279
        if (def->cputune.sharesSpecified || def->cputune.period ||
7280 7281 7282 7283 7284 7285 7286 7287
            def->cputune.quota || def->cputune.emulator_period ||
            def->cputune.emulator_quota) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("CPU tuning is not available in session mode"));
            goto error;
        }
    }

7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301
    for (i = 0; i < def->ngraphics; ++i) {
        switch (def->graphics[i]->type) {
        case VIR_DOMAIN_GRAPHICS_TYPE_SDL:
            ++sdl;
            break;
        case VIR_DOMAIN_GRAPHICS_TYPE_VNC:
            ++vnc;
            break;
        case VIR_DOMAIN_GRAPHICS_TYPE_SPICE:
            ++spice;
            break;
        }
    }

7302 7303 7304 7305
    /*
     * do not use boot=on for drives when not using KVM since this
     * is not supported at all in upstream QEmu.
     */
7306
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM) &&
7307
        (def->virtType == VIR_DOMAIN_VIRT_QEMU))
7308
        virQEMUCapsClear(qemuCaps, QEMU_CAPS_DRIVE_BOOT);
7309 7310

    cmd = virCommandNew(emulator);
7311

7312
    virCommandAddEnvPassCommon(cmd);
7313

7314
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME)) {
7315
        virCommandAddArg(cmd, "-name");
7316
        if (cfg->setProcessName &&
7317
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME_PROCESS)) {
7318 7319 7320 7321
            virCommandAddArgFormat(cmd, "%s,process=qemu:%s",
                                   def->name, def->name);
        } else {
            virCommandAddArg(cmd, def->name);
7322 7323
        }
    }
C
Cole Robinson 已提交
7324 7325 7326 7327

    if (!standalone)
        virCommandAddArg(cmd, "-S"); /* freeze CPU */

7328 7329
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_FIPS))
        virCommandAddArg(cmd, "-enable-fips");
7330

7331
    if (qemuBuildMachineArgStr(cmd, def, qemuCaps) < 0)
7332
        goto error;
7333

7334
    if (qemuBuildCpuArgStr(driver, def, emulator, qemuCaps,
7335
                           hostarch, &cpu, &hasHwVirt, !!migrateFrom) < 0)
7336
        goto error;
7337

7338 7339 7340 7341
    if (cpu) {
        virCommandAddArgList(cmd, "-cpu", cpu, NULL);
        VIR_FREE(cpu);

7342
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NESTING) &&
7343 7344
            hasHwVirt)
            virCommandAddArg(cmd, "-enable-nesting");
7345
    }
7346

7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360
    if (def->os.loader) {
        virCommandAddArg(cmd, "-bios");
        virCommandAddArg(cmd, def->os.loader);
    }

    /* Set '-m MB' based on maxmem, because the lower 'memory' limit
     * is set post-startup using the balloon driver. If balloon driver
     * is not supported, then they're out of luck anyway.  Update the
     * XML to reflect our rounding.
     */
    virCommandAddArg(cmd, "-m");
    def->mem.max_balloon = VIR_DIV_UP(def->mem.max_balloon, 1024) * 1024;
    virCommandAddArgFormat(cmd, "%llu", def->mem.max_balloon / 1024);
    if (def->mem.hugepage_backed) {
7361
        if (!cfg->hugetlbfsMount) {
7362 7363 7364 7365
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("hugetlbfs filesystem is not mounted"));
            goto error;
        }
7366
        if (!cfg->hugepagePath) {
7367 7368 7369 7370
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("hugepages are disabled by administrator config"));
            goto error;
        }
7371
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MEM_PATH)) {
7372 7373 7374 7375 7376 7377
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("hugepage backing not supported by '%s'"),
                           def->emulator);
            goto error;
        }
        virCommandAddArgList(cmd, "-mem-prealloc", "-mem-path",
7378
                             cfg->hugepagePath, NULL);
7379 7380
    }

7381 7382 7383 7384 7385 7386 7387 7388 7389 7390
    if (def->mem.locked && !virQEMUCapsGet(qemuCaps, QEMU_CAPS_MLOCK)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("memory locking not supported by QEMU binary"));
        goto error;
    }
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MLOCK)) {
        virCommandAddArg(cmd, "-realtime");
        virCommandAddArgFormat(cmd, "mlock=%s",
                               def->mem.locked ? "on" : "off");
    }
7391
    mlock = def->mem.locked;
7392

7393
    virCommandAddArg(cmd, "-smp");
7394
    if (!(smp = qemuBuildSmpArgStr(def, qemuCaps)))
7395 7396 7397 7398 7399 7400 7401 7402
        goto error;
    virCommandAddArg(cmd, smp);
    VIR_FREE(smp);

    if (def->cpu && def->cpu->ncells)
        if (qemuBuildNumaArgStr(def, cmd) < 0)
            goto error;

7403
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_UUID))
7404 7405 7406 7407
        virCommandAddArgList(cmd, "-uuid", uuid, NULL);
    if (def->virtType == VIR_DOMAIN_VIRT_XEN ||
        STREQ(def->os.type, "xen") ||
        STREQ(def->os.type, "linux")) {
7408
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DOMID)) {
7409 7410
            virCommandAddArg(cmd, "-domid");
            virCommandAddArgFormat(cmd, "%d", def->id);
7411
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_XEN_DOMID)) {
7412 7413 7414 7415 7416 7417 7418
            virCommandAddArg(cmd, "-xen-attach");
            virCommandAddArg(cmd, "-xen-domid");
            virCommandAddArgFormat(cmd, "%d", def->id);
        } else {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("qemu emulator '%s' does not support xen"),
                           def->emulator);
7419 7420 7421 7422
            goto error;
        }
    }

7423 7424 7425 7426 7427
    if ((def->os.smbios_mode != VIR_DOMAIN_SMBIOS_NONE) &&
        (def->os.smbios_mode != VIR_DOMAIN_SMBIOS_EMULATE)) {
        virSysinfoDefPtr source = NULL;
        bool skip_uuid = false;

7428
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SMBIOS_TYPE)) {
7429 7430 7431
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("the QEMU binary %s does not support smbios settings"),
                           emulator);
7432 7433 7434
            goto error;
        }

7435 7436 7437
        /* should we really error out or just warn in those cases ? */
        if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_HOST) {
            if (driver->hostsysinfo == NULL) {
7438
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7439
                               _("Host SMBIOS information is not available"));
7440
                goto error;
7441
            }
7442 7443 7444 7445 7446 7447 7448 7449 7450
            source = driver->hostsysinfo;
            /* Host and guest uuid must differ, by definition of UUID. */
            skip_uuid = true;
        } else if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_SYSINFO) {
            if (def->sysinfo == NULL) {
                virReportError(VIR_ERR_XML_ERROR,
                               _("Domain '%s' sysinfo are not available"),
                               def->name);
                goto error;
7451
            }
7452 7453
            source = def->sysinfo;
            /* domain_conf guaranteed that system_uuid matches guest uuid. */
7454
        }
7455 7456
        if (source != NULL) {
            char *smbioscmd;
7457

7458 7459 7460 7461
            smbioscmd = qemuBuildSmbiosBiosStr(source);
            if (smbioscmd != NULL) {
                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
7462
            }
7463 7464 7465 7466
            smbioscmd = qemuBuildSmbiosSystemStr(source, skip_uuid);
            if (smbioscmd != NULL) {
                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
7467
            }
7468
        }
7469
    }
7470

7471 7472 7473 7474 7475 7476 7477
    /*
     * 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...
     */
7478
    if (!def->graphics) {
7479
        virCommandAddArg(cmd, "-nographic");
7480

7481
        if (cfg->nogfxAllowHostAudio)
7482
            virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
7483 7484 7485 7486
        else
            virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");
    }

7487
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7488
        /* Disable global config files and default devices */
7489
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_USER_CONFIG))
7490
            virCommandAddArg(cmd, "-no-user-config");
7491
        else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NODEFCONFIG))
7492 7493
            virCommandAddArg(cmd, "-nodefconfig");
        virCommandAddArg(cmd, "-nodefaults");
7494 7495
    }

7496 7497
    /* Serial graphics adapter */
    if (def->os.bios.useserial == VIR_DOMAIN_BIOS_USESERIAL_YES) {
7498
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7499 7500 7501 7502
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("qemu does not support -device"));
            goto error;
        }
7503
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SGA)) {
7504 7505 7506 7507 7508 7509 7510
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("qemu does not support SGA"));
            goto error;
        }
        if (!def->nserials) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("need at least one serial port to use SGA"));
7511 7512
            goto error;
        }
7513
        virCommandAddArgList(cmd, "-device", "sga", NULL);
7514 7515
    }

7516 7517 7518
    if (monitor_chr) {
        char *chrdev;
        /* Use -chardev if it's available */
7519
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV)) {
J
Jim Fehlig 已提交
7520

7521 7522
            virCommandAddArg(cmd, "-chardev");
            if (!(chrdev = qemuBuildChrChardevStr(monitor_chr, "monitor",
7523
                                                  qemuCaps)))
7524 7525 7526
                goto error;
            virCommandAddArg(cmd, chrdev);
            VIR_FREE(chrdev);
7527

7528 7529 7530 7531 7532 7533 7534 7535
            virCommandAddArg(cmd, "-mon");
            virCommandAddArgFormat(cmd,
                                   "chardev=charmonitor,id=monitor,mode=%s",
                                   monitor_json ? "control" : "readline");
        } else {
            const char *prefix = NULL;
            if (monitor_json)
                prefix = "control,";
7536

7537 7538 7539 7540 7541
            virCommandAddArg(cmd, "-monitor");
            if (!(chrdev = qemuBuildChrArgStr(monitor_chr, prefix)))
                goto error;
            virCommandAddArg(cmd, chrdev);
            VIR_FREE(chrdev);
7542 7543 7544
        }
    }

7545
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC)) {
7546
        char *rtcopt;
7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557
        virCommandAddArg(cmd, "-rtc");
        if (!(rtcopt = qemuBuildClockArgStr(&def->clock)))
            goto error;
        virCommandAddArg(cmd, rtcopt);
        VIR_FREE(rtcopt);
    } else {
        switch (def->clock.offset) {
        case VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME:
        case VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE:
            virCommandAddArg(cmd, "-localtime");
            break;
7558

7559 7560 7561
        case VIR_DOMAIN_CLOCK_OFFSET_UTC:
            /* Nothing, its the default */
            break;
7562

7563 7564 7565 7566
        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported clock offset '%s'"),
                           virDomainClockOffsetTypeToString(def->clock.offset));
7567
            goto error;
7568 7569 7570 7571 7572
        }
    }
    if (def->clock.offset == VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE &&
        def->clock.data.timezone) {
        virCommandAddEnvPair(cmd, "TZ", def->clock.data.timezone);
7573 7574
    }

7575
    for (i = 0; i < def->clock.ntimers; i++) {
7576
        switch ((enum virDomainTimerNameType) def->clock.timers[i]->name) {
7577 7578 7579 7580 7581 7582
        case VIR_DOMAIN_TIMER_NAME_PLATFORM:
        case VIR_DOMAIN_TIMER_NAME_TSC:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported timer type (name) '%s'"),
                           virDomainTimerNameTypeToString(def->clock.timers[i]->name));
            goto error;
7583

7584
        case VIR_DOMAIN_TIMER_NAME_KVMCLOCK:
7585 7586 7587
        case VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK:
            /* Timers above are handled when building -cpu.  */
        case VIR_DOMAIN_TIMER_NAME_LAST:
7588 7589 7590 7591 7592 7593
            break;

        case VIR_DOMAIN_TIMER_NAME_RTC:
            /* This has already been taken care of (in qemuBuildClockArgStr)
               if QEMU_CAPS_RTC is set (mutually exclusive with
               QEMUD_FLAG_RTC_TD_HACK) */
7594
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC_TD_HACK)) {
7595 7596 7597 7598
                switch (def->clock.timers[i]->tickpolicy) {
                case -1:
                case VIR_DOMAIN_TIMER_TICKPOLICY_DELAY:
                    /* the default - do nothing */
7599
                    break;
7600 7601
                case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
                    virCommandAddArg(cmd, "-rtc-td-hack");
7602
                    break;
7603 7604 7605 7606 7607
                case VIR_DOMAIN_TIMER_TICKPOLICY_MERGE:
                case VIR_DOMAIN_TIMER_TICKPOLICY_DISCARD:
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("unsupported rtc tickpolicy '%s'"),
                                   virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
J
Ján Tomko 已提交
7608
                    goto error;
7609
                }
7610
            } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC)
7611 7612 7613 7614 7615 7616 7617 7618 7619
                       && (def->clock.timers[i]->tickpolicy
                           != VIR_DOMAIN_TIMER_TICKPOLICY_DELAY)
                       && (def->clock.timers[i]->tickpolicy != -1)) {
                /* a non-default rtc policy was given, but there is no
                   way to implement it in this version of qemu */
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
                goto error;
7620
            }
7621
            break;
7622

7623 7624 7625 7626 7627 7628
        case VIR_DOMAIN_TIMER_NAME_PIT:
            switch (def->clock.timers[i]->tickpolicy) {
            case -1:
            case VIR_DOMAIN_TIMER_TICKPOLICY_DELAY:
                /* delay is the default if we don't have kernel
                   (-no-kvm-pit), otherwise, the default is catchup. */
7629 7630 7631 7632
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY))
                    virCommandAddArgList(cmd, "-global",
                                         "kvm-pit.lost_tick_policy=discard", NULL);
                else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_KVM_PIT))
7633 7634 7635
                    virCommandAddArg(cmd, "-no-kvm-pit-reinjection");
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
7636 7637
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_KVM_PIT) ||
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY)) {
7638
                    /* do nothing - this is default for kvm-pit */
7639
                } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_TDF)) {
7640 7641
                    /* -tdf switches to 'catchup' with userspace pit. */
                    virCommandAddArg(cmd, "-tdf");
7642
                } else {
7643 7644 7645 7646
                    /* can't catchup if we have neither pit mode */
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("unsupported pit tickpolicy '%s'"),
                                   virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
7647 7648 7649
                    goto error;
                }
                break;
7650 7651 7652 7653 7654 7655 7656
            case VIR_DOMAIN_TIMER_TICKPOLICY_MERGE:
            case VIR_DOMAIN_TIMER_TICKPOLICY_DISCARD:
                /* no way to support these modes for pit in qemu */
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported pit tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
                goto error;
7657
            }
7658
            break;
7659

7660 7661 7662 7663 7664 7665 7666
        case VIR_DOMAIN_TIMER_NAME_HPET:
            /* the only meaningful attribute for hpet is "present". If
             * present is -1, that means it wasn't specified, and
             * should be left at the default for the
             * hypervisor. "default" when -no-hpet exists is "yes",
             * and when -no-hpet doesn't exist is "no". "confusing"?
             * "yes"! */
7667

7668
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_HPET)) {
7669 7670 7671 7672 7673 7674 7675
                if (def->clock.timers[i]->present == 0)
                    virCommandAddArg(cmd, "-no-hpet");
            } else {
                /* no hpet timer available. The only possible action
                   is to raise an error if present="yes" */
                if (def->clock.timers[i]->present == 1) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
7676 7677
                                   "%s", _("hpet timer is not supported"));
                    goto error;
7678 7679
                }
            }
7680 7681 7682
            break;
        }
    }
7683

7684 7685 7686 7687 7688 7689 7690 7691 7692
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_REBOOT)) {
        /* Only add -no-reboot option if each event destroys domain */
        if (def->onReboot == VIR_DOMAIN_LIFECYCLE_DESTROY &&
            def->onPoweroff == VIR_DOMAIN_LIFECYCLE_DESTROY &&
            def->onCrash == VIR_DOMAIN_LIFECYCLE_DESTROY) {
            allowReboot = false;
            virCommandAddArg(cmd, "-no-reboot");
        }
    }
7693

7694 7695 7696 7697
    /* If JSON monitor is enabled, we can receive an event
     * when QEMU stops. If we use no-shutdown, then we can
     * watch for this event and do a soft/warm reboot.
     */
7698 7699
    if (monitor_json && allowReboot &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_SHUTDOWN)) {
7700
        virCommandAddArg(cmd, "-no-shutdown");
7701
    }
7702

7703
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_ACPI)) {
7704
        if (def->features[VIR_DOMAIN_FEATURE_ACPI] != VIR_DOMAIN_FEATURE_STATE_ON)
7705 7706
            virCommandAddArg(cmd, "-no-acpi");
    }
7707

7708
    if (def->pm.s3) {
7709
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DISABLE_S3)) {
7710 7711 7712
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("setting ACPI S3 not supported"));
            goto error;
7713
        }
7714 7715 7716 7717 7718 7719
        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "PIIX4_PM.disable_s3=%d",
                               def->pm.s3 == VIR_DOMAIN_PM_STATE_DISABLED);
    }

    if (def->pm.s4) {
7720
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DISABLE_S4)) {
7721
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
7722 7723 7724 7725 7726 7727 7728
                           "%s", _("setting ACPI S4 not supported"));
            goto error;
        }
        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "PIIX4_PM.disable_s4=%d",
                               def->pm.s4 == VIR_DOMAIN_PM_STATE_DISABLED);
    }
7729

7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741
    if (!def->os.bootloader) {
        int boot_nparams = 0;
        virBuffer boot_buf = VIR_BUFFER_INITIALIZER;
        /*
         * We prefer using explicit bootindex=N parameters for predictable
         * results even though domain XML doesn't use per device boot elements.
         * However, we can't use bootindex if boot menu was requested.
         */
        if (!def->os.nBootDevs) {
            /* def->os.nBootDevs is guaranteed to be > 0 unless per-device boot
             * configuration is used
             */
7742
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX)) {
7743
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7744
                               _("hypervisor lacks deviceboot feature"));
7745 7746
                goto error;
            }
7747
            emitBootindex = true;
7748
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX) &&
7749
                   (def->os.bootmenu != VIR_DOMAIN_BOOT_MENU_ENABLED ||
7750
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_MENU))) {
7751 7752
            emitBootindex = true;
        }
7753

7754 7755
        if (!emitBootindex) {
            char boot[VIR_DOMAIN_BOOT_LAST+1];
7756

7757
            for (i = 0; i < def->os.nBootDevs; i++) {
7758 7759 7760
                switch (def->os.bootDevs[i]) {
                case VIR_DOMAIN_BOOT_CDROM:
                    boot[i] = 'd';
7761
                    break;
7762 7763
                case VIR_DOMAIN_BOOT_FLOPPY:
                    boot[i] = 'a';
7764
                    break;
7765 7766 7767 7768 7769 7770 7771 7772
                case VIR_DOMAIN_BOOT_DISK:
                    boot[i] = 'c';
                    break;
                case VIR_DOMAIN_BOOT_NET:
                    boot[i] = 'n';
                    break;
                default:
                    boot[i] = 'c';
7773
                    break;
7774
                }
7775
            }
7776
            boot[def->os.nBootDevs] = '\0';
7777

7778 7779
            virBufferAsprintf(&boot_buf, "%s", boot);
            boot_nparams++;
7780 7781
        }

7782
        if (def->os.bootmenu) {
7783
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_MENU)) {
7784 7785
                if (boot_nparams++)
                    virBufferAddChar(&boot_buf, ',');
7786

7787
                if (def->os.bootmenu == VIR_DOMAIN_BOOT_MENU_ENABLED)
7788
                    virBufferAddLit(&boot_buf, "menu=on");
7789
                else
7790
                    virBufferAddLit(&boot_buf, "menu=off");
7791 7792 7793 7794 7795 7796 7797
            } else {
                /* We cannot emit an error when bootmenu is enabled but
                 * unsupported because of backward compatibility */
                VIR_WARN("bootmenu is enabled but not "
                         "supported by this QEMU binary");
            }
        }
7798

7799
        if (def->os.bios.rt_set) {
7800
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_REBOOT_TIMEOUT)) {
7801 7802 7803
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("reboot timeout is not supported "
                                 "by this QEMU binary"));
7804
                virBufferFreeAndReset(&boot_buf);
7805
                goto error;
7806 7807 7808 7809 7810 7811 7812 7813
            }

            if (boot_nparams++)
                virBufferAddChar(&boot_buf, ',');

            virBufferAsprintf(&boot_buf,
                              "reboot-timeout=%d",
                              def->os.bios.rt_delay);
7814 7815
        }

7816 7817 7818 7819 7820 7821
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_STRICT)) {
            if (boot_nparams++)
                virBufferAddChar(&boot_buf, ',');
            virBufferAddLit(&boot_buf, "strict=on");
        }

7822 7823
        if (boot_nparams > 0) {
            virCommandAddArg(cmd, "-boot");
7824

7825 7826 7827 7828 7829
            if (virBufferError(&boot_buf)) {
                virReportOOMError();
                goto error;
            }

7830 7831
            if (boot_nparams < 2 || emitBootindex) {
                virCommandAddArgBuffer(cmd, &boot_buf);
7832
                virBufferFreeAndReset(&boot_buf);
7833
            } else {
7834
                char *str = virBufferContentAndReset(&boot_buf);
7835 7836
                virCommandAddArgFormat(cmd,
                                       "order=%s",
7837 7838
                                       str);
                VIR_FREE(str);
7839 7840 7841
            }
        }

7842 7843 7844 7845 7846 7847
        if (def->os.kernel)
            virCommandAddArgList(cmd, "-kernel", def->os.kernel, NULL);
        if (def->os.initrd)
            virCommandAddArgList(cmd, "-initrd", def->os.initrd, NULL);
        if (def->os.cmdline)
            virCommandAddArgList(cmd, "-append", def->os.cmdline, NULL);
O
Olivia Yin 已提交
7848 7849 7850 7851 7852 7853 7854 7855 7856
        if (def->os.dtb) {
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DTB)) {
                virCommandAddArgList(cmd, "-dtb", def->os.dtb, NULL);
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("dtb is not supported with this QEMU binary"));
                goto error;
            }
        }
7857 7858 7859
    } else {
        virCommandAddArgList(cmd, "-bootloader", def->os.bootloader, NULL);
    }
7860

7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907
    for (i = 0; i < def->ncontrollers; i++) {
        virDomainControllerDefPtr cont = def->controllers[i];
        if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
            cont->opts.pciopts.pcihole64) {
            const char *hoststr = NULL;
            bool cap = false;
            bool machine = false;

            switch (cont->model) {
            case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
                hoststr = "i440FX-pcihost";
                cap = virQEMUCapsGet(qemuCaps, QEMU_CAPS_I440FX_PCI_HOLE64_SIZE);
                machine = qemuDomainMachineIsI440FX(def);
                break;

            case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
                hoststr = "q35-pcihost";
                cap = virQEMUCapsGet(qemuCaps, QEMU_CAPS_Q35_PCI_HOLE64_SIZE);
                machine = qemuDomainMachineIsQ35(def);
                break;

            default:
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("64-bit PCI hole setting is only for root"
                                 " PCI controllers"));
                goto error;
            }

            if (!machine) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                             _("Setting the 64-bit PCI hole size is not "
                             "supported for machine '%s'"), def->os.machine);
                goto error;
            }
            if (!cap) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("64-bit PCI hole size setting is not supported "
                                 "with this QEMU binary"));
                goto error;
            }

            virCommandAddArg(cmd, "-global");
            virCommandAddArgFormat(cmd, "%s.pci-hole64-size=%luK", hoststr,
                                   cont->opts.pciopts.pcihole64size);
        }
    }

7908
    for (i = 0; i < def->ndisks; i++) {
7909
        virDomainDiskDefPtr disk = def->disks[i];
7910

7911 7912
        if (disk->src.driverName != NULL &&
            !STREQ(disk->src.driverName, "qemu")) {
7913 7914
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported driver name '%s' for disk '%s'"),
7915
                           disk->src.driverName, disk->src.path);
7916 7917 7918 7919
            goto error;
        }
    }

7920
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7921 7922 7923
        for (j = 0; j < ARRAY_CARDINALITY(contOrder); j++) {
            for (i = 0; i < def->ncontrollers; i++) {
                virDomainControllerDefPtr cont = def->controllers[i];
7924

7925 7926
                if (cont->type != contOrder[j])
                    continue;
7927

7928 7929 7930 7931 7932 7933 7934
                /* Also, skip USB controllers with type none.*/
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
                    cont->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_NONE) {
                    usbcontroller = -1; /* mark we don't want a controller */
                    continue;
                }

L
Laine Stump 已提交
7935
                /* Skip pci-root/pcie-root */
7936
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
L
Laine Stump 已提交
7937 7938
                    (cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT ||
                     cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT)) {
7939 7940 7941
                    continue;
                }

7942 7943
                /* Only recent QEMU implements a SATA (AHCI) controller */
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_SATA) {
7944
                    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_ICH9_AHCI)) {
7945 7946 7947
                        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                       _("SATA is not supported with this "
                                         "QEMU binary"));
7948
                        goto error;
7949 7950 7951
                    } else if (cont->idx == 0 && qemuDomainMachineIsQ35(def)) {
                        /* first SATA controller on Q35 machines is implicit */
                        continue;
7952 7953
                    } else {
                        char *devstr;
7954

7955 7956
                        virCommandAddArg(cmd, "-device");
                        if (!(devstr = qemuBuildControllerDevStr(def, cont,
7957
                                                                 qemuCaps, NULL)))
7958
                            goto error;
7959 7960 7961

                        virCommandAddArg(cmd, devstr);
                        VIR_FREE(devstr);
7962
                    }
7963 7964
                } else if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
                           cont->model == -1 &&
7965
                           !qemuDomainMachineIsQ35(def) &&
7966
                           (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PIIX3_USB_UHCI) ||
7967 7968
                            (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_OHCI) &&
                             def->os.arch == VIR_ARCH_PPC64))) {
7969 7970 7971 7972
                    if (usblegacy) {
                        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                       _("Multiple legacy USB controllers are "
                                         "not supported"));
7973 7974
                        goto error;
                    }
7975 7976 7977 7978 7979
                    usblegacy = true;
                } else {
                    virCommandAddArg(cmd, "-device");

                    char *devstr;
7980
                    if (!(devstr = qemuBuildControllerDevStr(def, cont, qemuCaps,
7981 7982 7983 7984 7985
                                                             &usbcontroller)))
                        goto error;

                    virCommandAddArg(cmd, devstr);
                    VIR_FREE(devstr);
7986
                }
7987
            }
7988 7989
        }
    }
7990

7991
    if (usbcontroller == 0 && !qemuDomainMachineIsQ35(def))
7992
        virCommandAddArg(cmd, "-usb");
7993

7994
    for (i = 0; i < def->nhubs; i++) {
7995 7996
        virDomainHubDefPtr hub = def->hubs[i];
        char *optstr;
7997

7998
        virCommandAddArg(cmd, "-device");
7999
        if (!(optstr = qemuBuildHubDevStr(def, hub, qemuCaps)))
8000 8001 8002 8003
            goto error;
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);
    }
8004

8005
    /* If QEMU supports -drive param instead of old -hda, -hdb, -cdrom .. */
8006
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE)) {
8007
        int bootCD = 0, bootFloppy = 0, bootDisk = 0;
8008

8009
        if ((virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) || emitBootindex)) {
8010 8011
            /* bootDevs will get translated into either bootindex=N or boot=on
             * depending on what qemu supports */
8012
            for (i = 0; i < def->os.nBootDevs; i++) {
8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023
                switch (def->os.bootDevs[i]) {
                case VIR_DOMAIN_BOOT_CDROM:
                    bootCD = i + 1;
                    break;
                case VIR_DOMAIN_BOOT_FLOPPY:
                    bootFloppy = i + 1;
                    break;
                case VIR_DOMAIN_BOOT_DISK:
                    bootDisk = i + 1;
                    break;
                }
8024
            }
8025
        }
8026

8027
        for (i = 0; i < def->ndisks; i++) {
8028 8029 8030
            char *optstr;
            int bootindex = 0;
            virDomainDiskDefPtr disk = def->disks[i];
8031
            bool withDeviceArg = false;
8032
            bool deviceFlagMasked = false;
8033

8034 8035 8036
            /* Unless we have -device, then USB disks need special
               handling */
            if ((disk->bus == VIR_DOMAIN_DISK_BUS_USB) &&
8037
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8038 8039
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                    virCommandAddArg(cmd, "-usbdevice");
8040
                    virCommandAddArgFormat(cmd, "disk:%s", disk->src.path);
8041 8042 8043
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported usb disk type for '%s'"),
8044
                                   disk->src.path);
8045
                    goto error;
8046
                }
8047
                continue;
8048
            }
8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063

            switch (disk->device) {
            case VIR_DOMAIN_DISK_DEVICE_CDROM:
                bootindex = bootCD;
                bootCD = 0;
                break;
            case VIR_DOMAIN_DISK_DEVICE_FLOPPY:
                bootindex = bootFloppy;
                bootFloppy = 0;
                break;
            case VIR_DOMAIN_DISK_DEVICE_DISK:
            case VIR_DOMAIN_DISK_DEVICE_LUN:
                bootindex = bootDisk;
                bootDisk = 0;
                break;
8064
            }
8065 8066 8067 8068

            virCommandAddArg(cmd, "-drive");

            /* Unfortunately it is not possible to use
8069
               -device for floppies, xen PV, or SD
8070 8071 8072
               devices. Fortunately, those don't need
               static PCI addresses, so we don't really
               care that we can't use -device */
8073
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8074 8075
                if (disk->bus != VIR_DOMAIN_DISK_BUS_XEN &&
                    disk->bus != VIR_DOMAIN_DISK_BUS_SD) {
8076
                    withDeviceArg = true;
8077
                } else {
8078
                    virQEMUCapsClear(qemuCaps, QEMU_CAPS_DEVICE);
8079 8080
                    deviceFlagMasked = true;
                }
8081
            }
8082 8083
            optstr = qemuBuildDriveStr(conn, disk,
                                       emitBootindex ? false : !!bootindex,
8084
                                       qemuCaps);
8085
            if (deviceFlagMasked)
8086
                virQEMUCapsSet(qemuCaps, QEMU_CAPS_DEVICE);
8087 8088 8089 8090 8091 8092 8093 8094 8095
            if (!optstr)
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);

            if (!emitBootindex)
                bootindex = 0;
            else if (disk->info.bootIndex)
                bootindex = disk->info.bootIndex;
8096

8097 8098 8099 8100 8101 8102 8103
            if (withDeviceArg) {
                if (disk->bus == VIR_DOMAIN_DISK_BUS_FDC) {
                    virCommandAddArg(cmd, "-global");
                    virCommandAddArgFormat(cmd, "isa-fdc.drive%c=drive-%s",
                                           disk->info.addr.drive.unit
                                           ? 'B' : 'A',
                                           disk->info.alias);
E
Eric Blake 已提交
8104

8105 8106 8107 8108 8109 8110 8111 8112 8113
                    if (bootindex) {
                        virCommandAddArg(cmd, "-global");
                        virCommandAddArgFormat(cmd, "isa-fdc.bootindex%c=%d",
                                               disk->info.addr.drive.unit
                                               ? 'B' : 'A',
                                               bootindex);
                    }
                } else {
                    virCommandAddArg(cmd, "-device");
E
Eric Blake 已提交
8114

8115
                    if (!(optstr = qemuBuildDriveDevStr(def, disk, bootindex,
8116
                                                        qemuCaps)))
8117 8118 8119 8120
                        goto error;
                    virCommandAddArg(cmd, optstr);
                    VIR_FREE(optstr);
                }
E
Eric Blake 已提交
8121
            }
8122 8123
        }
    } else {
8124
        for (i = 0; i < def->ndisks; i++) {
8125 8126 8127 8128
            char dev[NAME_MAX];
            char *file;
            const char *fmt;
            virDomainDiskDefPtr disk = def->disks[i];
E
Eric Blake 已提交
8129

E
Eric Blake 已提交
8130
            if ((disk->src.type == VIR_STORAGE_TYPE_BLOCK) &&
8131
                (disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN)) {
8132
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8133 8134
                               _("tray status 'open' is invalid for "
                                 "block type disk"));
E
Eric Blake 已提交
8135 8136 8137
                goto error;
            }

8138 8139 8140
            if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                    virCommandAddArg(cmd, "-usbdevice");
8141
                    virCommandAddArgFormat(cmd, "disk:%s", disk->src.path);
8142 8143 8144
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported usb disk type for '%s'"),
8145
                                   disk->src.path);
E
Eric Blake 已提交
8146 8147
                    goto error;
                }
8148
                continue;
E
Eric Blake 已提交
8149
            }
8150 8151 8152

            if (STREQ(disk->dst, "hdc") &&
                disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
8153
                if (disk->src.path) {
8154 8155 8156
                    snprintf(dev, NAME_MAX, "-%s", "cdrom");
                } else {
                    continue;
E
Eric Blake 已提交
8157 8158
                }
            } else {
8159 8160 8161 8162 8163 8164 8165 8166
                if (STRPREFIX(disk->dst, "hd") ||
                    STRPREFIX(disk->dst, "fd")) {
                    snprintf(dev, NAME_MAX, "-%s", disk->dst);
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported disk type '%s'"), disk->dst);
                    goto error;
                }
E
Eric Blake 已提交
8167 8168
            }

E
Eric Blake 已提交
8169
            if (disk->src.type == VIR_STORAGE_TYPE_DIR) {
8170
                /* QEMU only supports magic FAT format for now */
8171 8172
                if (disk->src.format > 0 &&
                    disk->src.format != VIR_STORAGE_FILE_FAT) {
8173 8174
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported disk driver type for '%s'"),
8175
                                   virStorageFileFormatTypeToString(disk->src.format));
8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186
                    goto error;
                }
                if (!disk->readonly) {
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("cannot create virtual FAT disks in read-write mode"));
                    goto error;
                }
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY)
                    fmt = "fat:floppy:%s";
                else
                    fmt = "fat:%s";
E
Eric Blake 已提交
8187

8188
                if (virAsprintf(&file, fmt, disk->src) < 0)
8189
                    goto error;
E
Eric Blake 已提交
8190
            } else if (disk->src.type == VIR_STORAGE_TYPE_NETWORK) {
8191 8192
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("network disks are only supported with -drive"));
8193
                goto error;
8194
            } else {
8195
                if (VIR_STRDUP(file, disk->src.path) < 0) {
8196
                    goto error;
8197
                }
E
Eric Blake 已提交
8198 8199
            }

8200 8201 8202 8203 8204 8205 8206 8207
            /* Don't start with source if the tray is open for
             * CDROM and Floppy device.
             */
            if (!((disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY ||
                   disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) &&
                  disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN))
                virCommandAddArgList(cmd, dev, file, NULL);
            VIR_FREE(file);
E
Eric Blake 已提交
8208 8209 8210
        }
    }

8211
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV)) {
8212
        for (i = 0; i < def->nfss; i++) {
8213 8214
            char *optstr;
            virDomainFSDefPtr fs = def->fss[i];
8215

8216
            virCommandAddArg(cmd, "-fsdev");
8217
            if (!(optstr = qemuBuildFSStr(fs, qemuCaps)))
8218 8219 8220
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
8221

8222
            virCommandAddArg(cmd, "-device");
8223
            if (!(optstr = qemuBuildFSDevStr(def, fs, qemuCaps)))
8224 8225 8226 8227 8228 8229 8230 8231 8232
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
        }
    } else {
        if (def->nfss) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("filesystem passthrough not supported by this QEMU"));
            goto error;
8233 8234 8235
        }
    }

8236
    if (!def->nnets) {
8237
        /* If we have -device, then we set -nodefault already */
8238
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
8239
            virCommandAddArgList(cmd, "-net", "none", NULL);
8240
    } else {
8241
        int bootNet = 0;
8242

8243 8244 8245 8246
        if (emitBootindex) {
            /* convert <boot dev='network'/> to bootindex since we didn't emit
             * -boot n
             */
8247
            for (i = 0; i < def->os.nBootDevs; i++) {
8248 8249 8250 8251
                if (def->os.bootDevs[i] == VIR_DOMAIN_BOOT_NET) {
                    bootNet = i + 1;
                    break;
                }
8252 8253 8254
            }
        }

8255
        for (i = 0; i < def->nnets; i++) {
8256
            virDomainNetDefPtr net = def->nets[i];
8257
            int vlan;
8258

8259
            /* VLANs are not used with -netdev, so don't record them */
8260
            if (qemuDomainSupportsNetdev(def, qemuCaps, net))
8261
                vlan = -1;
8262 8263
            else
                vlan = i;
8264

8265
            if (qemuBuildInterfaceCommandLine(cmd, driver, conn, def, net,
8266 8267
                                              qemuCaps, vlan, bootNet, vmop,
                                              standalone) < 0)
8268 8269 8270
                goto error;
            last_good_net = i;
            bootNet = 0;
8271 8272 8273
        }
    }

8274 8275 8276 8277 8278
    if (def->nsmartcards) {
        /* -device usb-ccid was already emitted along with other
         * controllers.  For now, qemu handles only one smartcard.  */
        virDomainSmartcardDefPtr smartcard = def->smartcards[0];
        char *devstr;
8279
        virBuffer opt = VIR_BUFFER_INITIALIZER;
8280
        const char *database;
8281

8282 8283 8284 8285
        if (def->nsmartcards > 1 ||
            smartcard->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCID ||
            smartcard->info.addr.ccid.controller != 0 ||
            smartcard->info.addr.ccid.slot != 0) {
8286
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8287 8288 8289
                           _("this QEMU binary lacks multiple smartcard "
                             "support"));
            virBufferFreeAndReset(&opt);
8290 8291 8292
            goto error;
        }

8293 8294
        switch (smartcard->type) {
        case VIR_DOMAIN_SMARTCARD_TYPE_HOST:
8295 8296
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
8297 8298 8299 8300
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard host "
                                 "mode support"));
                goto error;
8301 8302
            }

8303 8304
            virBufferAddLit(&opt, "ccid-card-emulated,backend=nss-emulated");
            break;
8305

8306
        case VIR_DOMAIN_SMARTCARD_TYPE_HOST_CERTIFICATES:
8307 8308
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
8309 8310 8311 8312 8313
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard host "
                                 "mode support"));
                goto error;
            }
8314

8315 8316 8317 8318
            virBufferAddLit(&opt, "ccid-card-emulated,backend=certificates");
            for (j = 0; j < VIR_DOMAIN_SMARTCARD_NUM_CERTIFICATES; j++) {
                if (strchr(smartcard->data.cert.file[j], ',')) {
                    virBufferFreeAndReset(&opt);
8319
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
8320 8321
                                   _("invalid certificate name: %s"),
                                   smartcard->data.cert.file[j]);
8322 8323
                    goto error;
                }
8324
                virBufferAsprintf(&opt, ",cert%zu=%s", j + 1,
8325 8326 8327 8328 8329 8330 8331 8332
                                  smartcard->data.cert.file[j]);
            }
            if (smartcard->data.cert.database) {
                if (strchr(smartcard->data.cert.database, ',')) {
                    virBufferFreeAndReset(&opt);
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("invalid database name: %s"),
                                   smartcard->data.cert.database);
8333 8334
                    goto error;
                }
8335 8336 8337
                database = smartcard->data.cert.database;
            } else {
                database = VIR_DOMAIN_SMARTCARD_DEFAULT_DATABASE;
8338
            }
8339
            virBufferAsprintf(&opt, ",db=%s", database);
8340
            break;
8341

8342
        case VIR_DOMAIN_SMARTCARD_TYPE_PASSTHROUGH:
8343 8344
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_PASSTHRU)) {
8345 8346 8347 8348
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard "
                                 "passthrough mode support"));
                goto error;
8349 8350
            }

8351 8352 8353
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&smartcard->data.passthru,
                                                  smartcard->info.alias,
8354
                                                  qemuCaps))) {
8355 8356
                virBufferFreeAndReset(&opt);
                goto error;
8357
            }
8358 8359
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
8360

8361 8362 8363
            virBufferAsprintf(&opt, "ccid-card-passthru,chardev=char%s",
                              smartcard->info.alias);
            break;
8364

8365 8366 8367 8368 8369
        default:
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unexpected smartcard type %d"),
                           smartcard->type);
            virBufferFreeAndReset(&opt);
8370 8371
            goto error;
        }
8372 8373 8374 8375
        virCommandAddArg(cmd, "-device");
        virBufferAsprintf(&opt, ",id=%s,bus=ccid0.0", smartcard->info.alias);
        virCommandAddArgBuffer(cmd, &opt);
    }
8376

8377 8378 8379
    for (i = 0; i < def->nserials; i++) {
        virDomainChrDefPtr serial = def->serials[i];
        char *devstr;
8380

8381 8382 8383
        if (serial->source.type == VIR_DOMAIN_CHR_TYPE_SPICEPORT && !spice)
            continue;

8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401
        /* Use -chardev with -device if they are available */
        if (virQEMUCapsSupportsChardev(def, qemuCaps, serial)) {
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&serial->source,
                                                  serial->info.alias,
                                                  qemuCaps)))
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

            if (qemuBuildChrDeviceCommandLine(cmd, def, serial, qemuCaps) < 0)
                goto error;
        } else {
            virCommandAddArg(cmd, "-serial");
            if (!(devstr = qemuBuildChrArgStr(&serial->source, NULL)))
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
8402
        }
8403
        actualSerials++;
8404
    }
8405

M
Martin Kletzander 已提交
8406 8407 8408 8409
    /* If we have -device, then we set -nodefault already */
    if (!actualSerials && !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
            virCommandAddArgList(cmd, "-serial", "none", NULL);

8410 8411
    if (!def->nparallels) {
        /* If we have -device, then we set -nodefault already */
8412
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
8413 8414
            virCommandAddArgList(cmd, "-parallel", "none", NULL);
    } else {
8415
        for (i = 0; i < def->nparallels; i++) {
8416 8417
            virDomainChrDefPtr parallel = def->parallels[i];
            char *devstr;
8418

8419
            /* Use -chardev with -device if they are available */
8420 8421
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) &&
                virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8422 8423 8424
                virCommandAddArg(cmd, "-chardev");
                if (!(devstr = qemuBuildChrChardevStr(&parallel->source,
                                                      parallel->info.alias,
8425
                                                      qemuCaps)))
8426 8427 8428
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
8429

8430 8431
                if (qemuBuildChrDeviceCommandLine(cmd, def, parallel, qemuCaps) < 0)
                    goto error;
8432 8433 8434 8435 8436 8437 8438
            } else {
                virCommandAddArg(cmd, "-parallel");
                if (!(devstr = qemuBuildChrArgStr(&parallel->source, NULL)))
                      goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            }
8439
        }
8440
    }
8441

8442
    for (i = 0; i < def->nchannels; i++) {
8443 8444
        virDomainChrDefPtr channel = def->channels[i];
        char *devstr;
8445

8446 8447
        switch (channel->targetType) {
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_GUESTFWD:
8448 8449
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8450 8451
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("guestfwd requires QEMU to support -chardev & -device"));
8452 8453
                goto error;
            }
8454

8455 8456 8457
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&channel->source,
                                                  channel->info.alias,
8458
                                                  qemuCaps)))
8459 8460 8461 8462
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

8463
            if (qemuBuildChrDeviceStr(&devstr, def, channel, qemuCaps) < 0)
8464
                goto error;
8465 8466
            virCommandAddArgList(cmd, "-netdev", devstr, NULL);
            VIR_FREE(devstr);
8467 8468
            break;

8469
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO:
8470
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8471 8472
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("virtio channel requires QEMU to support -device"));
8473 8474
                goto error;
            }
8475

8476
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC) &&
8477 8478 8479 8480 8481 8482 8483 8484 8485
                channel->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC) {
                /* spicevmc was originally introduced via a -device
                 * with a backend internal to qemu; although we prefer
                 * the newer -chardev interface.  */
                ;
            } else {
                virCommandAddArg(cmd, "-chardev");
                if (!(devstr = qemuBuildChrChardevStr(&channel->source,
                                                      channel->info.alias,
8486
                                                      qemuCaps)))
8487 8488 8489
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
8490
            }
8491

8492
            if (qemuBuildChrDeviceCommandLine(cmd, def, channel, qemuCaps) < 0)
8493
                goto error;
8494 8495
            break;
        }
8496
    }
8497

8498
    /* Explicit console devices */
8499
    for (i = 0; i < def->nconsoles; i++) {
8500 8501
        virDomainChrDefPtr console = def->consoles[i];
        char *devstr;
8502

8503
        switch (console->targetType) {
8504 8505
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLP:
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLPLM:
8506
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8507 8508 8509 8510
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("sclp console requires QEMU to support -device"));
                goto error;
            }
8511
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCLP_S390)) {
8512 8513 8514 8515 8516 8517 8518 8519
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("sclp console requires QEMU to support s390-sclp"));
                goto error;
            }

            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&console->source,
                                                  console->info.alias,
8520
                                                  qemuCaps)))
8521 8522 8523 8524
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

8525
            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
8526 8527 8528
                goto error;
            break;

8529
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO:
8530
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8531 8532 8533
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("virtio channel requires QEMU to support -device"));
                goto error;
P
Peng Zhou 已提交
8534 8535
            }

8536 8537 8538
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&console->source,
                                                  console->info.alias,
8539
                                                  qemuCaps)))
8540 8541 8542
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
8543

8544
            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
8545
                goto error;
8546
            break;
8547 8548

        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL:
8549
            break;
8550 8551 8552 8553 8554 8555

        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported console target type %s"),
                           NULLSTR(virDomainChrConsoleTargetTypeToString(console->targetType)));
            goto error;
8556
        }
8557
    }
8558

8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574
    if (def->tpm) {
        char *optstr;

        if (!(optstr = qemuBuildTPMBackendStr(def, qemuCaps, emulator)))
            goto error;

        virCommandAddArgList(cmd, "-tpmdev", optstr, NULL);
        VIR_FREE(optstr);

        if (!(optstr = qemuBuildTPMDevStr(def, qemuCaps, emulator)))
            goto error;

        virCommandAddArgList(cmd, "-device", optstr, NULL);
        VIR_FREE(optstr);
    }

8575
    for (i = 0; i < def->ninputs; i++) {
8576 8577 8578
        virDomainInputDefPtr input = def->inputs[i];

        if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
8579
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8580 8581
                char *optstr;
                virCommandAddArg(cmd, "-device");
8582
                if (!(optstr = qemuBuildUSBInputDevStr(def, input, qemuCaps)))
8583
                    goto error;
8584 8585 8586
                virCommandAddArg(cmd, optstr);
                VIR_FREE(optstr);
            } else {
8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597
                switch (input->type) {
                    case VIR_DOMAIN_INPUT_TYPE_MOUSE:
                        virCommandAddArgList(cmd, "-usbdevice", "mouse", NULL);
                        break;
                    case VIR_DOMAIN_INPUT_TYPE_TABLET:
                        virCommandAddArgList(cmd, "-usbdevice", "tablet", NULL);
                        break;
                    case VIR_DOMAIN_INPUT_TYPE_KBD:
                        virCommandAddArgList(cmd, "-usbdevice", "keyboard", NULL);
                        break;
                }
8598 8599
            }
        }
8600
    }
8601

8602
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_0_10) && sdl + vnc + spice > 1) {
8603 8604 8605 8606 8607 8608 8609 8610
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only 1 graphics device is supported"));
        goto error;
    }
    if (sdl > 1 || vnc > 1 || spice > 1) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only 1 graphics device of each type "
                         "(sdl, vnc, spice) is supported"));
8611 8612 8613
        goto error;
    }

8614
    for (i = 0; i < def->ngraphics; ++i) {
8615
        if (qemuBuildGraphicsCommandLine(cfg, cmd, def, qemuCaps,
8616 8617 8618
                                         def->graphics[i]) < 0)
            goto error;
    }
8619

8620
    if (def->nvideos > 0) {
8621
        int primaryVideoType = def->videos[0]->type;
8622
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY) &&
8623
             ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VGA &&
8624
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VGA)) ||
8625
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_CIRRUS &&
8626
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_CIRRUS_VGA)) ||
8627
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
8628
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VMWARE_SVGA)) ||
8629
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_QXL &&
8630
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL_VGA)))
8631
           ) {
8632
            for (i = 0; i < def->nvideos; i++) {
8633 8634
                char *str;
                virCommandAddArg(cmd, "-device");
8635
                if (!(str = qemuBuildDeviceVideoStr(def, def->videos[i], qemuCaps, !i)))
8636 8637 8638 8639 8640
                    goto error;

                virCommandAddArg(cmd, str);
                VIR_FREE(str);
            }
8641
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA)) {
8642
            if (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_XEN) {
8643 8644
                /* nothing - vga has no effect on Xen pvfb */
            } else {
8645
                if ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_QXL) &&
8646
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_QXL)) {
8647 8648
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU does not support QXL graphics adapters"));
8649 8650 8651
                    goto error;
                }

8652
                const char *vgastr = qemuVideoTypeToString(primaryVideoType);
8653
                if (!vgastr || STREQ(vgastr, "")) {
8654 8655
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("video type %s is not supported with QEMU"),
8656
                                   virDomainVideoTypeToString(primaryVideoType));
8657 8658 8659 8660
                    goto error;
                }

                virCommandAddArgList(cmd, "-vga", vgastr, NULL);
8661

8662 8663
                if (def->videos[0]->type == VIR_DOMAIN_VIDEO_TYPE_QXL &&
                    (def->videos[0]->vram || def->videos[0]->ram) &&
8664 8665
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
                    const char *dev = (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL_VGA)
8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681
                                       ? "qxl-vga" : "qxl");
                    int ram = def->videos[0]->ram;
                    int vram = def->videos[0]->vram;

                    if (vram > (UINT_MAX / 1024)) {
                        virReportError(VIR_ERR_OVERFLOW,
                               _("value for 'vram' must be less than '%u'"),
                                       UINT_MAX / 1024);
                        goto error;
                    }
                    if (ram > (UINT_MAX / 1024)) {
                        virReportError(VIR_ERR_OVERFLOW,
                           _("value for 'ram' must be less than '%u'"),
                                       UINT_MAX / 1024);
                        goto error;
                    }
8682

8683
                    if (ram) {
E
Eric Blake 已提交
8684
                        virCommandAddArg(cmd, "-global");
8685 8686 8687 8688 8689 8690 8691
                        virCommandAddArgFormat(cmd, "%s.ram_size=%u",
                                               dev, ram * 1024);
                    }
                    if (vram) {
                        virCommandAddArg(cmd, "-global");
                        virCommandAddArgFormat(cmd, "%s.vram_size=%u",
                                               dev, vram * 1024);
8692 8693
                    }
                }
8694
            }
8695 8696

            if (def->nvideos > 1) {
8697
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8698
                    for (i = 1; i < def->nvideos; i++) {
8699 8700 8701 8702 8703 8704 8705 8706 8707 8708
                        char *str;
                        if (def->videos[i]->type != VIR_DOMAIN_VIDEO_TYPE_QXL) {
                            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                           _("video type %s is only valid as primary video card"),
                                           virDomainVideoTypeToString(def->videos[0]->type));
                            goto error;
                        }

                        virCommandAddArg(cmd, "-device");

8709
                        if (!(str = qemuBuildDeviceVideoStr(def, def->videos[i], qemuCaps, false)))
8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720
                            goto error;

                        virCommandAddArg(cmd, str);
                        VIR_FREE(str);
                    }
                } else {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   "%s", _("only one video card is currently supported"));
                    goto error;
                }
            }
8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737
        } else {

            switch (def->videos[0]->type) {
            case VIR_DOMAIN_VIDEO_TYPE_VGA:
                virCommandAddArg(cmd, "-std-vga");
                break;

            case VIR_DOMAIN_VIDEO_TYPE_VMVGA:
                virCommandAddArg(cmd, "-vmwarevga");
                break;

            case VIR_DOMAIN_VIDEO_TYPE_XEN:
            case VIR_DOMAIN_VIDEO_TYPE_CIRRUS:
                /* No special args - this is the default */
                break;

            default:
8738 8739 8740
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("video type %s is not supported with this QEMU"),
                               virDomainVideoTypeToString(def->videos[0]->type));
8741 8742 8743
                goto error;
            }

8744
            if (def->nvideos > 1) {
8745 8746
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("only one video card is currently supported"));
8747 8748 8749 8750 8751 8752
                goto error;
            }
        }

    } else {
        /* If we have -device, then we set -nodefault already */
8753 8754 8755
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_NONE))
8756 8757 8758 8759 8760
            virCommandAddArgList(cmd, "-vga", "none", NULL);
    }

    /* Add sound hardware */
    if (def->nsounds) {
8761
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8762
            for (i = 0; i < def->nsounds; i++) {
8763 8764 8765 8766 8767 8768 8769 8770 8771 8772
                virDomainSoundDefPtr sound = def->sounds[i];
                char *str = NULL;

                /* Sadly pcspk device doesn't use -device syntax. Fortunately
                 * we don't need to set any PCI address on it, so we don't
                 * mind too much */
                if (sound->model == VIR_DOMAIN_SOUND_MODEL_PCSPK) {
                    virCommandAddArgList(cmd, "-soundhw", "pcspk", NULL);
                } else {
                    virCommandAddArg(cmd, "-device");
8773
                    if (!(str = qemuBuildSoundDevStr(def, sound, qemuCaps)))
8774 8775 8776
                        goto error;

                    virCommandAddArg(cmd, str);
8777
                    VIR_FREE(str);
8778 8779
                    if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                        sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
8780 8781
                        char *codecstr = NULL;

8782
                        for (j = 0; j < sound->ncodecs; j++) {
8783
                            virCommandAddArg(cmd, "-device");
8784
                            if (!(codecstr = qemuBuildSoundCodecStr(sound, sound->codecs[j], qemuCaps))) {
8785
                                goto error;
8786

8787 8788 8789 8790
                            }
                            virCommandAddArg(cmd, codecstr);
                            VIR_FREE(codecstr);
                        }
8791
                        if (j == 0) {
8792 8793 8794 8795 8796
                            virDomainSoundCodecDef codec = {
                                VIR_DOMAIN_SOUND_CODEC_TYPE_DUPLEX,
                                0
                            };
                            virCommandAddArg(cmd, "-device");
8797
                            if (!(codecstr = qemuBuildSoundCodecStr(sound, &codec, qemuCaps))) {
8798 8799 8800 8801 8802 8803
                                goto error;

                            }
                            virCommandAddArg(cmd, codecstr);
                            VIR_FREE(codecstr);
                        }
8804
                    }
8805 8806 8807 8808 8809
                }
            }
        } else {
            int size = 100;
            char *modstr;
8810
            if (VIR_ALLOC_N(modstr, size+1) < 0)
8811
                goto error;
8812

8813
            for (i = 0; i < def->nsounds && size > 0; i++) {
8814 8815 8816 8817
                virDomainSoundDefPtr sound = def->sounds[i];
                const char *model = virDomainSoundModelTypeToString(sound->model);
                if (!model) {
                    VIR_FREE(modstr);
8818 8819
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("invalid sound model"));
8820 8821
                    goto error;
                }
8822

8823 8824
                if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                    sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
A
Alex Jia 已提交
8825
                    VIR_FREE(modstr);
8826 8827
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("this QEMU binary lacks hda support"));
8828 8829 8830
                    goto error;
                }

8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845
                strncat(modstr, model, size);
                size -= strlen(model);
                if (i < (def->nsounds - 1))
                    strncat(modstr, ",", size--);
            }
            virCommandAddArgList(cmd, "-soundhw", modstr, NULL);
            VIR_FREE(modstr);
        }
    }

    /* Add watchdog hardware */
    if (def->watchdog) {
        virDomainWatchdogDefPtr watchdog = def->watchdog;
        char *optstr;

8846
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8847 8848
            virCommandAddArg(cmd, "-device");

8849
            optstr = qemuBuildWatchdogDevStr(def, watchdog, qemuCaps);
8850 8851 8852 8853 8854 8855 8856
            if (!optstr)
                goto error;
        } else {
            virCommandAddArg(cmd, "-watchdog");

            const char *model = virDomainWatchdogModelTypeToString(watchdog->model);
            if (!model) {
8857 8858
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("missing watchdog model"));
8859 8860 8861
                goto error;
            }

8862 8863
            if (VIR_STRDUP(optstr, model) < 0)
                goto error;
8864 8865 8866 8867 8868 8869 8870 8871 8872
        }
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);

        int act = watchdog->action;
        if (act == VIR_DOMAIN_WATCHDOG_ACTION_DUMP)
            act = VIR_DOMAIN_WATCHDOG_ACTION_PAUSE;
        const char *action = virDomainWatchdogActionTypeToString(act);
        if (!action) {
8873 8874
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("invalid watchdog action"));
8875 8876 8877 8878 8879
            goto error;
        }
        virCommandAddArgList(cmd, "-watchdog-action", action, NULL);
    }

8880
    /* Add redirected devices */
8881
    for (i = 0; i < def->nredirdevs; i++) {
8882 8883 8884 8885 8886 8887
        virDomainRedirdevDefPtr redirdev = def->redirdevs[i];
        char *devstr;

        virCommandAddArg(cmd, "-chardev");
        if (!(devstr = qemuBuildChrChardevStr(&redirdev->source.chr,
                                              redirdev->info.alias,
8888
                                              qemuCaps))) {
8889 8890 8891 8892 8893 8894
            goto error;
        }

        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);

8895
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
8896 8897 8898
            goto error;

        virCommandAddArg(cmd, "-device");
8899
        if (!(devstr = qemuBuildRedirdevDevStr(def, redirdev, qemuCaps)))
8900 8901 8902 8903 8904
            goto error;
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);
    }

8905
    /* Add host passthrough hardware */
8906
    for (i = 0; i < def->nhostdevs; i++) {
8907 8908 8909
        virDomainHostdevDefPtr hostdev = def->hostdevs[i];
        char *devstr;

8910
        if (hostdev->info->bootIndex) {
8911
            if (hostdev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS ||
8912
                (hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI &&
8913 8914
                 hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
                 hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI)) {
8915
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8916
                               _("booting from assigned devices is only "
8917
                                 "supported for PCI, USB and SCSI devices"));
8918
                goto error;
8919
            } else {
8920 8921
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
                    if (hostdev->source.subsys.u.pci.backend
8922
                        == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936
                        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VFIO_PCI_BOOTINDEX)) {
                            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                           _("booting from PCI devices assigned with VFIO "
                                             "is not supported with this version of qemu"));
                            goto error;
                        }
                    } else {
                        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_BOOTINDEX)) {
                            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                           _("booting from assigned PCI devices is not "
                                             "supported with this version of qemu"));
                            goto error;
                        }
                    }
8937 8938
                }
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
8939
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HOST_BOOTINDEX)) {
8940
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8941 8942
                                   _("booting from assigned USB devices is not "
                                     "supported with this version of qemu"));
8943 8944
                    goto error;
                }
8945 8946 8947 8948 8949 8950 8951
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI &&
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SCSI_GENERIC_BOOTINDEX)) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("booting from assigned SCSI devices is not"
                                     " supported with this version of qemu"));
                    goto error;
                }
8952 8953 8954
            }
        }

8955 8956 8957 8958
        /* USB */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {

8959
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8960
                virCommandAddArg(cmd, "-device");
8961
                if (!(devstr = qemuBuildUSBHostdevDevStr(def, hostdev, qemuCaps)))
8962 8963 8964 8965 8966
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
                virCommandAddArg(cmd, "-usbdevice");
8967
                if (!(devstr = qemuBuildUSBHostdevUSBDevStr(hostdev)))
8968 8969 8970 8971 8972 8973 8974 8975 8976
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            }
        }

        /* PCI */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
8977
            int backend = hostdev->source.subsys.u.pci.backend;
8978

8979
            if (backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
8980 8981 8982 8983 8984 8985
                if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VFIO_PCI)) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("VFIO PCI device assignment is not "
                                     "supported by this version of qemu"));
                    goto error;
                }
8986 8987 8988
                /* VFIO requires all of the guest's memory to be locked
                 * resident */
                mlock = true;
8989 8990
            }

8991
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8992
                char *configfd_name = NULL;
8993
                if ((backend != VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) &&
8994
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_CONFIGFD)) {
8995 8996 8997 8998 8999
                    int configfd = qemuOpenPCIConfig(hostdev);

                    if (configfd >= 0) {
                        if (virAsprintf(&configfd_name, "%d", configfd) < 0) {
                            VIR_FORCE_CLOSE(configfd);
9000
                            goto error;
9001 9002
                        }

9003 9004
                        virCommandPassFD(cmd, configfd,
                                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
9005 9006 9007
                    }
                }
                virCommandAddArg(cmd, "-device");
9008
                devstr = qemuBuildPCIHostdevDevStr(def, hostdev, configfd_name, qemuCaps);
9009 9010 9011 9012 9013
                VIR_FREE(configfd_name);
                if (!devstr)
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
9014
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCIDEVICE)) {
9015
                virCommandAddArg(cmd, "-pcidevice");
9016
                if (!(devstr = qemuBuildPCIHostdevPCIDevStr(hostdev, qemuCaps)))
9017 9018 9019 9020
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
9021 9022
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("PCI device assignment is not supported by this version of qemu"));
9023 9024 9025
                goto error;
            }
        }
9026 9027 9028 9029 9030 9031 9032 9033 9034 9035

        /* SCSI */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI) {
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE) &&
                virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE) &&
                virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SCSI_GENERIC)) {
                char *drvstr;

                virCommandAddArg(cmd, "-drive");
9036
                if (!(drvstr = qemuBuildSCSIHostdevDrvStr(hostdev, qemuCaps, callbacks)))
9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051
                    goto error;
                virCommandAddArg(cmd, drvstr);
                VIR_FREE(drvstr);

                virCommandAddArg(cmd, "-device");
                if (!(devstr = qemuBuildSCSIHostdevDevStr(def, hostdev, qemuCaps)))
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("SCSI passthrough is not supported by this version of qemu"));
                goto error;
            }
        }
9052 9053
    }

9054 9055 9056 9057 9058 9059
    /* Migration is very annoying due to wildly varying syntax &
     * capabilities over time of KVM / QEMU codebases.
     */
    if (migrateFrom) {
        virCommandAddArg(cmd, "-incoming");
        if (STRPREFIX(migrateFrom, "tcp")) {
9060
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_TCP)) {
9061 9062 9063
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("TCP migration is not supported with "
                                       "this QEMU binary"));
9064 9065 9066 9067
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
        } else if (STREQ(migrateFrom, "stdio")) {
9068
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_FD)) {
9069
                virCommandAddArgFormat(cmd, "fd:%d", migrateFd);
9070
                virCommandPassFD(cmd, migrateFd, 0);
9071
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_EXEC)) {
9072 9073
                virCommandAddArg(cmd, "exec:cat");
                virCommandSetInputFD(cmd, migrateFd);
9074
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_KVM_STDIO)) {
9075 9076 9077
                virCommandAddArg(cmd, migrateFrom);
                virCommandSetInputFD(cmd, migrateFd);
            } else {
9078 9079 9080
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("STDIO migration is not supported "
                                       "with this QEMU binary"));
9081 9082 9083
                goto error;
            }
        } else if (STRPREFIX(migrateFrom, "exec")) {
9084
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_EXEC)) {
9085 9086 9087
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("EXEC migration is not supported "
                                       "with this QEMU binary"));
9088 9089 9090 9091
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
        } else if (STRPREFIX(migrateFrom, "fd")) {
9092
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_FD)) {
9093 9094 9095
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("FD migration is not supported "
                                       "with this QEMU binary"));
9096 9097 9098
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
9099
            virCommandPassFD(cmd, migrateFd, 0);
9100
        } else if (STRPREFIX(migrateFrom, "unix")) {
9101
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_UNIX)) {
9102 9103 9104
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("UNIX migration is not supported "
                                       "with this QEMU binary"));
9105 9106 9107
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
9108
        } else {
9109 9110
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("unknown migration protocol"));
9111 9112 9113
            goto error;
        }
    }
9114 9115 9116 9117 9118 9119 9120

    /* QEMU changed its default behavior to not include the virtio balloon
     * device.  Explicitly request it to ensure it will be present.
     *
     * NB: Earlier we declared that VirtIO balloon will always be in
     * slot 0x3 on bus 0x0
     */
9121 9122
    if (STREQLEN(def->os.machine, "s390-virtio", 10) &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_S390) && def->memballoon)
9123 9124 9125 9126
        def->memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_NONE;

    if (def->memballoon &&
        def->memballoon->model != VIR_DOMAIN_MEMBALLOON_MODEL_NONE) {
9127
        if (def->memballoon->model != VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO) {
9128 9129 9130
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Memory balloon device type '%s' is not supported by this version of qemu"),
                           virDomainMemballoonModelTypeToString(def->memballoon->model));
9131 9132
            goto error;
        }
9133
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9134 9135 9136
            char *optstr;
            virCommandAddArg(cmd, "-device");

9137
            optstr = qemuBuildMemballoonDevStr(def, def->memballoon, qemuCaps);
9138 9139 9140 9141
            if (!optstr)
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
9142
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BALLOON)) {
9143 9144 9145 9146
            virCommandAddArgList(cmd, "-balloon", "virtio", NULL);
        }
    }

9147 9148 9149 9150 9151 9152
    if (def->rng) {
        /* add the RNG source backend */
        if (qemuBuildRNGBackendArgs(cmd, def->rng, qemuCaps) < 0)
            goto error;

        /* add the device */
9153
        if (qemuBuildRNGDeviceArgs(cmd, def, def->rng, qemuCaps) < 0)
9154 9155 9156
            goto error;
    }

9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180
    if (def->nvram) {
        if (def->os.arch == VIR_ARCH_PPC64 &&
            STREQ(def->os.machine, "pseries")) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_NVRAM)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("nvram device is not supported by "
                                 "this QEMU binary"));
                goto error;
            }

            char *optstr;
            virCommandAddArg(cmd, "-global");
            optstr = qemuBuildNVRAMDevStr(def->nvram);
            if (!optstr)
                goto error;
            if (optstr)
                virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                          _("nvram device is only supported for PPC64"));
            goto error;
        }
    }
9181 9182
    if (snapshot)
        virCommandAddArgList(cmd, "-loadvm", snapshot->def->name, NULL);
9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195

    if (def->namespaceData) {
        qemuDomainCmdlineDefPtr qemucmd;

        qemucmd = def->namespaceData;
        for (i = 0; i < qemucmd->num_args; i++)
            virCommandAddArg(cmd, qemucmd->args[i]);
        for (i = 0; i < qemucmd->num_env; i++)
            virCommandAddEnvPair(cmd, qemucmd->env_name[i],
                                 qemucmd->env_value[i]
                                 ? qemucmd->env_value[i] : "");
    }

9196
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SECCOMP_SANDBOX)) {
9197
        if (cfg->seccompSandbox == 0)
9198
            virCommandAddArgList(cmd, "-sandbox", "off", NULL);
9199
        else if (cfg->seccompSandbox > 0)
9200
            virCommandAddArgList(cmd, "-sandbox", "on", NULL);
9201
    } else if (cfg->seccompSandbox > 0) {
9202 9203 9204 9205 9206
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("QEMU does not support seccomp sandboxes"));
        goto error;
    }

H
Hu Tao 已提交
9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222
    if (def->panic) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PANIC)) {
            if (def->panic->info.addr.isa.iobase > 0) {
                virCommandAddArg(cmd, "-device");
                virCommandAddArgFormat(cmd, "pvpanic,ioport=%d",
                                       def->panic->info.addr.isa.iobase);
            } else {
                virCommandAddArgList(cmd, "-device", "pvpanic", NULL);
            }
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("your QEMU is too old to support pvpanic"));
            goto error;
        }
    }

9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235
    if (mlock) {
        unsigned long long memKB;

        /* VFIO requires all of the guest's memory to be
         * locked resident, plus some amount for IO
         * space. Alex Williamson suggested adding 1GiB for IO
         * space just to be safe (some finer tuning might be
         * nice, though).
         */
        memKB = def->mem.hard_limit ?
            def->mem.hard_limit : def->mem.max_balloon + 1024 * 1024;
        virCommandSetMaxMemLock(cmd, memKB * 1024);
    }
9236

9237 9238 9239 9240
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MSG_TIMESTAMP) &&
        cfg->logTimestamp)
        virCommandAddArgList(cmd, "-msg", "timestamp=on", NULL);

9241
    virObjectUnref(cfg);
9242 9243
    return cmd;

9244
 error:
9245
    virObjectUnref(cfg);
9246 9247 9248
    /* free up any resources in the network driver
     * but don't overwrite the original error */
    originalError = virSaveLastError();
9249
    for (i = 0; last_good_net != -1 && i <= last_good_net; i++)
9250
        virDomainConfNWFilterTeardown(def->nets[i]);
9251
    virSetError(originalError);
J
John Ferlan 已提交
9252
    virFreeError(originalError);
9253 9254 9255 9256
    virCommandFree(cmd);
    return NULL;
}

9257 9258 9259
/* This function generates the correct '-device' string for character
 * devices of each architecture.
 */
9260 9261
static int
qemuBuildSerialChrDeviceStr(char **deviceStr,
9262
                            virDomainDefPtr def,
9263 9264 9265 9266
                            virDomainChrDefPtr serial,
                            virQEMUCapsPtr qemuCaps,
                            virArch arch,
                            char *machine)
9267 9268 9269
{
    virBuffer cmd = VIR_BUFFER_INITIALIZER;

9270
    if ((arch == VIR_ARCH_PPC64) && STREQ(machine, "pseries")) {
9271 9272 9273 9274
        if (serial->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
            serial->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO) {
            virBufferAsprintf(&cmd, "spapr-vty,chardev=char%s",
                              serial->info.alias);
9275
            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
9276 9277
                goto error;
        }
G
Guannan Ren 已提交
9278 9279 9280
    } else {
        virBufferAsprintf(&cmd, "%s,chardev=char%s,id=%s",
                          virDomainChrSerialTargetTypeToString(serial->targetType),
9281 9282
                          serial->info.alias, serial->info.alias);

G
Guannan Ren 已提交
9283
        if (serial->targetType == VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_USB) {
9284
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_SERIAL)) {
G
Guannan Ren 已提交
9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("usb-serial is not supported in this QEMU binary"));
                goto error;
            }

            if (serial->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
                serial->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("usb-serial requires address of usb type"));
                goto error;
            }

9297
            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
9298
                goto error;
G
Guannan Ren 已提交
9299 9300 9301
        }
    }

9302 9303 9304 9305 9306
    if (virBufferError(&cmd)) {
        virReportOOMError();
        goto error;
    }

9307 9308
    *deviceStr = virBufferContentAndReset(&cmd);
    return 0;
9309

9310
 error:
9311
    virBufferFreeAndReset(&cmd);
9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324
    return -1;
}

static int
qemuBuildParallelChrDeviceStr(char **deviceStr,
                              virDomainChrDefPtr chr)
{
    if (virAsprintf(deviceStr, "isa-parallel,chardev=char%s,id=%s",
                    chr->info.alias, chr->info.alias) < 0) {
        virReportOOMError();
        return -1;
    }
    return 0;
9325
}
9326

9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362
static int
qemuBuildChannelChrDeviceStr(char **deviceStr,
                             virDomainChrDefPtr chr,
                             virQEMUCapsPtr qemuCaps)
{
    int ret = -1;
    char *addr = NULL;
    int port;

    switch ((enum virDomainChrChannelTargetType) chr->targetType) {
    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_GUESTFWD:

        addr = virSocketAddrFormat(chr->target.addr);
        if (!addr)
            return ret;
        port = virSocketAddrGetPort(chr->target.addr);

        if (virAsprintf(deviceStr,
                        "user,guestfwd=tcp:%s:%i,chardev=char%s,id=user-%s",
                        addr, port, chr->info.alias, chr->info.alias) < 0) {
            virReportOOMError();
            goto cleanup;
        }
        break;

    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO:
        if (!(*deviceStr = qemuBuildVirtioSerialPortDevStr(chr, qemuCaps)))
                goto cleanup;
        break;

    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_NONE:
    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_LAST:
        return ret;
    }

    ret = 0;
9363
 cleanup:
9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397
    VIR_FREE(addr);
    return ret;
}

static int
qemuBuildConsoleChrDeviceStr(char **deviceStr,
                             virDomainChrDefPtr chr,
                             virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

    switch ((enum virDomainChrConsoleTargetType) chr->targetType) {
    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLP:
    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLPLM:
        if (!(*deviceStr = qemuBuildSclpDevStr(chr)))
            goto cleanup;
        break;

    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO:
        if (!(*deviceStr = qemuBuildVirtioSerialPortDevStr(chr, qemuCaps)))
            goto cleanup;
        break;

    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL:
    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_NONE:
    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_XEN:
    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_UML:
    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_LXC:
    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_OPENVZ:
    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_LAST:
        break;
    }

    ret = 0;
9398
 cleanup:
9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411
    return ret;
}

int
qemuBuildChrDeviceStr(char **deviceStr,
                      virDomainDefPtr vmdef,
                      virDomainChrDefPtr chr,
                      virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

    switch ((enum virDomainChrDeviceType) chr->deviceType) {
    case VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL:
9412
        ret = qemuBuildSerialChrDeviceStr(deviceStr, vmdef, chr, qemuCaps,
9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436
                                          vmdef->os.arch,
                                          vmdef->os.machine);
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL:
        ret = qemuBuildParallelChrDeviceStr(deviceStr, chr);
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
        ret = qemuBuildChannelChrDeviceStr(deviceStr, chr, qemuCaps);
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
        ret = qemuBuildConsoleChrDeviceStr(deviceStr, chr, qemuCaps);
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_LAST:
        return ret;
    }

    return ret;
}


9437 9438 9439 9440 9441 9442 9443
/*
 * This method takes a string representing a QEMU command line ARGV set
 * optionally prefixed by a list of environment variables. It then tries
 * to split it up into a NULL terminated list of env & argv, splitting
 * on space
 */
static int qemuStringToArgvEnv(const char *args,
E
Eric Blake 已提交
9444 9445
                               char ***retenv,
                               char ***retargv)
9446 9447
{
    char **arglist = NULL;
9448 9449 9450
    size_t argcount = 0;
    size_t argalloc = 0;
    size_t envend;
9451
    size_t i;
9452 9453
    const char *curr = args;
    const char *start;
E
Eric Blake 已提交
9454 9455
    char **progenv = NULL;
    char **progargv = NULL;
9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480

    /* Iterate over string, splitting on sequences of ' ' */
    while (curr && *curr != '\0') {
        char *arg;
        const char *next;

        start = curr;
        /* accept a space in CEPH_ARGS */
        if (STRPREFIX(curr, "CEPH_ARGS=-m ")) {
            start += strlen("CEPH_ARGS=-m ");
        }
        if (*start == '\'') {
            if (start == curr)
                curr++;
            next = strchr(start + 1, '\'');
        } else if (*start == '"') {
            if (start == curr)
                curr++;
            next = strchr(start + 1, '"');
        } else {
            next = strchr(start, ' ');
        }
        if (!next)
            next = strchr(curr, '\n');

9481
        if (VIR_STRNDUP(arg, curr, next ? next - curr : -1) < 0)
9482
            goto error;
9483

9484 9485
        if (next && (*next == '\'' || *next == '"'))
            next++;
9486

9487 9488 9489
        if (VIR_RESIZE_N(arglist, argalloc, argcount, 2) < 0) {
            VIR_FREE(arg);
            goto error;
9490 9491 9492
        }

        arglist[argcount++] = arg;
9493
        arglist[argcount] = NULL;
9494 9495 9496 9497 9498 9499 9500 9501 9502

        while (next && c_isspace(*next))
            next++;

        curr = next;
    }

    /* Iterate over list of args, finding first arg not containing
     * the '=' character (eg, skip over env vars FOO=bar) */
9503
    for (envend = 0; ((envend < argcount) &&
9504 9505 9506 9507 9508 9509 9510
                       (strchr(arglist[envend], '=') != NULL));
         envend++)
        ; /* nada */

    /* Copy the list of env vars */
    if (envend > 0) {
        if (VIR_REALLOC_N(progenv, envend+1) < 0)
9511
            goto error;
9512
        for (i = 0; i < envend; i++)
9513 9514 9515 9516 9517 9518
            progenv[i] = arglist[i];
        progenv[i] = NULL;
    }

    /* Copy the list of argv */
    if (VIR_REALLOC_N(progargv, argcount-envend + 1) < 0)
9519
        goto error;
9520
    for (i = envend; i < argcount; i++)
9521 9522 9523 9524 9525 9526 9527 9528 9529 9530
        progargv[i-envend] = arglist[i];
    progargv[i-envend] = NULL;

    VIR_FREE(arglist);

    *retenv = progenv;
    *retargv = progargv;

    return 0;

9531
 error:
9532 9533
    VIR_FREE(progenv);
    VIR_FREE(progargv);
E
Eric Blake 已提交
9534
    virStringFreeList(arglist);
9535 9536 9537 9538 9539 9540 9541
    return -1;
}


/*
 * Search for a named env variable, and return the value part
 */
E
Eric Blake 已提交
9542
static const char *qemuFindEnv(char **progenv,
9543 9544
                               const char *name)
{
9545
    size_t i;
9546 9547
    int len = strlen(name);

9548
    for (i = 0; progenv && progenv[i]; i++) {
9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566
        if (STREQLEN(progenv[i], name, len) &&
            progenv[i][len] == '=')
            return progenv[i] + len + 1;
    }
    return NULL;
}

/*
 * Takes a string containing a set of key=value,key=value,key...
 * parameters and splits them up, returning two arrays with
 * the individual keys and values. If allowEmptyValue is nonzero,
 * the "=value" part is optional and if a key with no value is found,
 * NULL is be placed into corresponding place in retvalues.
 */
int
qemuParseKeywords(const char *str,
                  char ***retkeywords,
                  char ***retvalues,
9567
                  int *retnkeywords,
9568 9569 9570 9571 9572 9573 9574 9575
                  int allowEmptyValue)
{
    int keywordCount = 0;
    int keywordAlloc = 0;
    char **keywords = NULL;
    char **values = NULL;
    const char *start = str;
    const char *end;
9576
    size_t i;
9577 9578 9579

    *retkeywords = NULL;
    *retvalues = NULL;
9580
    *retnkeywords = 0;
9581 9582 9583 9584 9585 9586 9587 9588
    end = start + strlen(str);

    while (start) {
        const char *separator;
        const char *endmark;
        char *keyword;
        char *value = NULL;

9589 9590 9591 9592 9593 9594 9595 9596
        endmark = start;
        do {
            /* Qemu accepts ',,' as an escape for a literal comma;
             * skip past those here while searching for the end of the
             * value, then strip them down below */
            endmark = strchr(endmark, ',');
        } while (endmark && endmark[1] == ',' && (endmark += 2));
        if (!endmark)
9597 9598 9599 9600 9601 9602
            endmark = end;
        if (!(separator = strchr(start, '=')))
            separator = end;

        if (separator >= endmark) {
            if (!allowEmptyValue) {
9603 9604
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("malformed keyword arguments in '%s'"), str);
9605 9606 9607 9608 9609
                goto error;
            }
            separator = endmark;
        }

9610 9611
        if (VIR_STRNDUP(keyword, start, separator - start) < 0)
            goto error;
9612 9613 9614

        if (separator < endmark) {
            separator++;
9615
            if (VIR_STRNDUP(value, separator, endmark - separator) < 0) {
9616
                VIR_FREE(keyword);
9617
                goto error;
9618
            }
9619 9620 9621 9622 9623 9624 9625 9626 9627 9628
            if (strchr(value, ',')) {
                char *p = strchr(value, ',') + 1;
                char *q = p + 1;
                while (*q) {
                    if (*q == ',')
                        q++;
                    *p++ = *q++;
                }
                *p = '\0';
            }
9629 9630 9631 9632 9633 9634 9635
        }

        if (keywordAlloc == keywordCount) {
            if (VIR_REALLOC_N(keywords, keywordAlloc + 10) < 0 ||
                VIR_REALLOC_N(values, keywordAlloc + 10) < 0) {
                VIR_FREE(keyword);
                VIR_FREE(value);
9636
                goto error;
9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649
            }
            keywordAlloc += 10;
        }

        keywords[keywordCount] = keyword;
        values[keywordCount] = value;
        keywordCount++;

        start = endmark < end ? endmark + 1 : NULL;
    }

    *retkeywords = keywords;
    *retvalues = values;
9650 9651
    *retnkeywords = keywordCount;
    return 0;
9652

9653
 error:
9654
    for (i = 0; i < keywordCount; i++) {
9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670
        VIR_FREE(keywords[i]);
        VIR_FREE(values[i]);
    }
    VIR_FREE(keywords);
    VIR_FREE(values);
    return -1;
}

/*
 * Tries to parse new style QEMU -drive  args.
 *
 * eg -drive file=/dev/HostVG/VirtData1,if=ide,index=1
 *
 * Will fail if not using the 'index' keyword
 */
static virDomainDiskDefPtr
9671
qemuParseCommandLineDisk(virDomainXMLOptionPtr xmlopt,
9672
                         const char *val,
9673
                         virDomainDefPtr dom,
9674 9675
                         int nvirtiodisk,
                         bool old_style_ceph_args)
9676 9677 9678 9679 9680
{
    virDomainDiskDefPtr def = NULL;
    char **keywords;
    char **values;
    int nkeywords;
9681
    size_t i;
9682 9683 9684
    int idx = -1;
    int busid = -1;
    int unitid = -1;
9685
    int trans = VIR_DOMAIN_DISK_TRANS_DEFAULT;
9686

9687 9688 9689 9690 9691
    if (qemuParseKeywords(val,
                          &keywords,
                          &values,
                          &nkeywords,
                          0) < 0)
9692 9693
        return NULL;

9694
    if (VIR_ALLOC(def) < 0)
9695 9696
        goto cleanup;

9697 9698 9699 9700 9701
    if (((dom->os.arch == VIR_ARCH_PPC64) &&
        dom->os.machine && STREQ(dom->os.machine, "pseries")))
        def->bus = VIR_DOMAIN_DISK_BUS_SCSI;
    else
       def->bus = VIR_DOMAIN_DISK_BUS_IDE;
9702
    def->device = VIR_DOMAIN_DISK_DEVICE_DISK;
E
Eric Blake 已提交
9703
    def->src.type = VIR_STORAGE_TYPE_FILE;
9704

9705
    for (i = 0; i < nkeywords; i++) {
9706 9707
        if (STREQ(keywords[i], "file")) {
            if (values[i] && STRNEQ(values[i], "")) {
9708
                def->src.path = values[i];
9709
                values[i] = NULL;
9710
                if (STRPREFIX(def->src.path, "/dev/"))
E
Eric Blake 已提交
9711
                    def->src.type = VIR_STORAGE_TYPE_BLOCK;
9712 9713
                else if (STRPREFIX(def->src.path, "nbd:") ||
                         STRPREFIX(def->src.path, "nbd+")) {
E
Eric Blake 已提交
9714
                    def->src.type = VIR_STORAGE_TYPE_NETWORK;
9715
                    def->src.protocol = VIR_STORAGE_NET_PROTOCOL_NBD;
9716

9717 9718
                    if (qemuParseNBDString(def) < 0)
                        goto error;
9719 9720
                } else if (STRPREFIX(def->src.path, "rbd:")) {
                    char *p = def->src.path;
9721

E
Eric Blake 已提交
9722
                    def->src.type = VIR_STORAGE_TYPE_NETWORK;
9723
                    def->src.protocol = VIR_STORAGE_NET_PROTOCOL_RBD;
9724
                    if (VIR_STRDUP(def->src.path, p + strlen("rbd:")) < 0)
9725
                        goto error;
9726
                    /* old-style CEPH_ARGS env variable is parsed later */
9727 9728 9729 9730
                    if (!old_style_ceph_args && qemuParseRBDString(def) < 0) {
                        VIR_FREE(p);
                        goto error;
                    }
9731 9732

                    VIR_FREE(p);
9733 9734
                } else if (STRPREFIX(def->src.path, "gluster:") ||
                           STRPREFIX(def->src.path, "gluster+")) {
E
Eric Blake 已提交
9735
                    def->src.type = VIR_STORAGE_TYPE_NETWORK;
9736
                    def->src.protocol = VIR_STORAGE_NET_PROTOCOL_GLUSTER;
9737 9738

                    if (qemuParseGlusterString(def) < 0)
9739
                        goto error;
9740
                } else if (STRPREFIX(def->src.path, "iscsi:")) {
E
Eric Blake 已提交
9741
                    def->src.type = VIR_STORAGE_TYPE_NETWORK;
9742
                    def->src.protocol = VIR_STORAGE_NET_PROTOCOL_ISCSI;
P
Paolo Bonzini 已提交
9743 9744 9745

                    if (qemuParseISCSIString(def) < 0)
                        goto error;
9746 9747
                } else if (STRPREFIX(def->src.path, "sheepdog:")) {
                    char *p = def->src.path;
9748 9749
                    char *port, *vdi;

E
Eric Blake 已提交
9750
                    def->src.type = VIR_STORAGE_TYPE_NETWORK;
9751
                    def->src.protocol = VIR_STORAGE_NET_PROTOCOL_SHEEPDOG;
9752
                    if (VIR_STRDUP(def->src.path, p + strlen("sheepdog:")) < 0)
9753
                        goto error;
9754
                    VIR_FREE(p);
9755

9756 9757
                    /* def->src.path must be [vdiname] or [host]:[port]:[vdiname] */
                    port = strchr(def->src.path, ':');
9758
                    if (port) {
9759 9760
                        *port = '\0';
                        vdi = strchr(port + 1, ':');
9761
                        if (!vdi) {
9762
                            *port = ':';
9763
                            virReportError(VIR_ERR_INTERNAL_ERROR,
9764 9765
                                           _("cannot parse sheepdog filename '%s'"),
                                           def->src.path);
9766
                            goto error;
9767
                        }
9768
                        port++;
9769
                        *vdi++ = '\0';
9770
                        if (VIR_ALLOC(def->src.hosts) < 0)
9771
                            goto error;
9772 9773 9774
                        def->src.nhosts = 1;
                        def->src.hosts->name = def->src.path;
                        if (VIR_STRDUP(def->src.hosts->port, port) < 0)
9775
                            goto error;
9776
                        def->src.hosts->transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
9777 9778
                        def->src.hosts->socket = NULL;
                        if (VIR_STRDUP(def->src.path, vdi) < 0)
9779
                            goto error;
9780 9781
                    }
                } else
E
Eric Blake 已提交
9782
                    def->src.type = VIR_STORAGE_TYPE_FILE;
9783
            } else {
E
Eric Blake 已提交
9784
                def->src.type = VIR_STORAGE_TYPE_FILE;
9785 9786
            }
        } else if (STREQ(keywords[i], "if")) {
9787
            if (STREQ(values[i], "ide")) {
9788
                def->bus = VIR_DOMAIN_DISK_BUS_IDE;
9789 9790 9791 9792 9793 9794 9795
                if (((dom->os.arch == VIR_ARCH_PPC64) &&
                     dom->os.machine && STREQ(dom->os.machine, "pseries"))) {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("pseries systems do not support ide devices '%s'"), val);
                    goto error;
                }
            } else if (STREQ(values[i], "scsi"))
9796 9797 9798 9799 9800
                def->bus = VIR_DOMAIN_DISK_BUS_SCSI;
            else if (STREQ(values[i], "virtio"))
                def->bus = VIR_DOMAIN_DISK_BUS_VIRTIO;
            else if (STREQ(values[i], "xen"))
                def->bus = VIR_DOMAIN_DISK_BUS_XEN;
9801 9802
            else if (STREQ(values[i], "sd"))
                def->bus = VIR_DOMAIN_DISK_BUS_SD;
9803 9804 9805
        } else if (STREQ(keywords[i], "media")) {
            if (STREQ(values[i], "cdrom")) {
                def->device = VIR_DOMAIN_DISK_DEVICE_CDROM;
9806
                def->readonly = true;
9807 9808 9809
            } else if (STREQ(values[i], "floppy"))
                def->device = VIR_DOMAIN_DISK_DEVICE_FLOPPY;
        } else if (STREQ(keywords[i], "format")) {
9810
            if (VIR_STRDUP(def->src.driverName, "qemu") < 0)
9811
                goto error;
9812
            def->src.format = virStorageFileFormatTypeFromString(values[i]);
9813 9814 9815 9816 9817 9818 9819 9820 9821
        } else if (STREQ(keywords[i], "cache")) {
            if (STREQ(values[i], "off") ||
                STREQ(values[i], "none"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_DISABLE;
            else if (STREQ(values[i], "writeback") ||
                     STREQ(values[i], "on"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_WRITEBACK;
            else if (STREQ(values[i], "writethrough"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_WRITETHRU;
9822 9823
            else if (STREQ(values[i], "directsync"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_DIRECTSYNC;
9824 9825
            else if (STREQ(values[i], "unsafe"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_UNSAFE;
9826
        } else if (STREQ(keywords[i], "werror")) {
9827 9828
            if (STREQ(values[i], "stop"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_STOP;
9829 9830
            else if (STREQ(values[i], "report"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_REPORT;
9831 9832
            else if (STREQ(values[i], "ignore"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_IGNORE;
9833
            else if (STREQ(values[i], "enospc"))
9834
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE;
9835 9836 9837 9838 9839 9840 9841
        } else if (STREQ(keywords[i], "rerror")) {
            if (STREQ(values[i], "stop"))
                def->rerror_policy = VIR_DOMAIN_DISK_ERROR_POLICY_STOP;
            else if (STREQ(values[i], "report"))
                def->rerror_policy = VIR_DOMAIN_DISK_ERROR_POLICY_REPORT;
            else if (STREQ(values[i], "ignore"))
                def->rerror_policy = VIR_DOMAIN_DISK_ERROR_POLICY_IGNORE;
9842 9843
        } else if (STREQ(keywords[i], "index")) {
            if (virStrToLong_i(values[i], NULL, 10, &idx) < 0) {
9844 9845
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive index '%s'"), val);
9846
                goto error;
9847 9848 9849
            }
        } else if (STREQ(keywords[i], "bus")) {
            if (virStrToLong_i(values[i], NULL, 10, &busid) < 0) {
9850 9851
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive bus '%s'"), val);
9852
                goto error;
9853 9854 9855
            }
        } else if (STREQ(keywords[i], "unit")) {
            if (virStrToLong_i(values[i], NULL, 10, &unitid) < 0) {
9856 9857
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive unit '%s'"), val);
9858
                goto error;
9859 9860 9861
            }
        } else if (STREQ(keywords[i], "readonly")) {
            if ((values[i] == NULL) || STREQ(values[i], "on"))
9862
                def->readonly = true;
E
Eric Blake 已提交
9863 9864
        } else if (STREQ(keywords[i], "aio")) {
            if ((def->iomode = virDomainDiskIoTypeFromString(values[i])) < 0) {
9865 9866
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse io mode '%s'"), values[i]);
9867
                goto error;
E
Eric Blake 已提交
9868
            }
9869 9870 9871 9872 9873 9874 9875 9876
        } else if (STREQ(keywords[i], "cyls")) {
            if (virStrToLong_ui(values[i], NULL, 10,
                                &(def->geometry.cylinders)) < 0) {
                virDomainDiskDefFree(def);
                def = NULL;
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse cylinders value'%s'"),
                               values[i]);
9877
                goto error;
9878 9879 9880 9881 9882 9883 9884 9885 9886
            }
        } else if (STREQ(keywords[i], "heads")) {
            if (virStrToLong_ui(values[i], NULL, 10,
                                &(def->geometry.heads)) < 0) {
                virDomainDiskDefFree(def);
                def = NULL;
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse heads value'%s'"),
                               values[i]);
9887
                goto error;
9888 9889 9890 9891 9892 9893 9894 9895 9896
            }
        } else if (STREQ(keywords[i], "secs")) {
            if (virStrToLong_ui(values[i], NULL, 10,
                                &(def->geometry.sectors)) < 0) {
                virDomainDiskDefFree(def);
                def = NULL;
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse sectors value'%s'"),
                               values[i]);
9897
                goto error;
9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908
            }
        } else if (STREQ(keywords[i], "trans")) {
            def->geometry.trans =
                virDomainDiskGeometryTransTypeFromString(values[i]);
            if ((trans < VIR_DOMAIN_DISK_TRANS_DEFAULT) ||
                (trans >= VIR_DOMAIN_DISK_TRANS_LAST)) {
                virDomainDiskDefFree(def);
                def = NULL;
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse translation value'%s'"),
                               values[i]);
9909
                goto error;
9910
            }
9911 9912 9913
        }
    }

9914 9915 9916
    if (def->rerror_policy == def->error_policy)
        def->rerror_policy = 0;

9917
    if (!def->src.path &&
9918
        def->device == VIR_DOMAIN_DISK_DEVICE_DISK &&
E
Eric Blake 已提交
9919
        def->src.type != VIR_STORAGE_TYPE_NETWORK) {
9920 9921
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("missing file parameter in drive '%s'"), val);
9922
        goto error;
9923 9924 9925 9926 9927 9928 9929 9930
    }
    if (idx == -1 &&
        def->bus == VIR_DOMAIN_DISK_BUS_VIRTIO)
        idx = nvirtiodisk;

    if (idx == -1 &&
        unitid == -1 &&
        busid == -1) {
9931
        virReportError(VIR_ERR_INTERNAL_ERROR,
9932 9933 9934
                       _("missing index/unit/bus parameter in drive '%s'"),
                       val);
        goto error;
9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955
    }

    if (idx == -1) {
        if (unitid == -1)
            unitid = 0;
        if (busid == -1)
            busid = 0;
        switch (def->bus) {
        case VIR_DOMAIN_DISK_BUS_IDE:
            idx = (busid * 2) + unitid;
            break;
        case VIR_DOMAIN_DISK_BUS_SCSI:
            idx = (busid * 7) + unitid;
            break;
        default:
            idx = unitid;
            break;
        }
    }

    if (def->bus == VIR_DOMAIN_DISK_BUS_IDE) {
9956
        ignore_value(VIR_STRDUP(def->dst, "hda"));
9957 9958
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_SCSI ||
               def->bus == VIR_DOMAIN_DISK_BUS_SD) {
9959
        ignore_value(VIR_STRDUP(def->dst, "sda"));
9960
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_VIRTIO) {
9961
        ignore_value(VIR_STRDUP(def->dst, "vda"));
9962
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_XEN) {
9963
        ignore_value(VIR_STRDUP(def->dst, "xvda"));
9964
    } else {
9965
        ignore_value(VIR_STRDUP(def->dst, "hda"));
9966 9967
    }

9968
    if (!def->dst)
9969
        goto error;
9970 9971 9972 9973 9974
    if (STREQ(def->dst, "xvda"))
        def->dst[3] = 'a' + idx;
    else
        def->dst[2] = 'a' + idx;

9975
    if (virDomainDiskDefAssignAddress(xmlopt, def) < 0) {
9976 9977
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid device name '%s'"), def->dst);
9978 9979
        virDomainDiskDefFree(def);
        def = NULL;
9980
        goto cleanup;
9981 9982
    }

9983
 cleanup:
9984
    for (i = 0; i < nkeywords; i++) {
9985 9986 9987 9988 9989 9990
        VIR_FREE(keywords[i]);
        VIR_FREE(values[i]);
    }
    VIR_FREE(keywords);
    VIR_FREE(values);
    return def;
9991

9992
 error:
9993 9994 9995
    virDomainDiskDefFree(def);
    def = NULL;
    goto cleanup;
9996 9997 9998 9999 10000 10001 10002 10003 10004 10005
}

/*
 * Tries to find a NIC definition matching a vlan we want
 */
static const char *
qemuFindNICForVLAN(int nnics,
                   const char **nics,
                   int wantvlan)
{
10006
    size_t i;
10007
    for (i = 0; i < nnics; i++) {
10008 10009 10010 10011 10012 10013 10014 10015 10016
        int gotvlan;
        const char *tmp = strstr(nics[i], "vlan=");
        char *end;
        if (!tmp)
            continue;

        tmp += strlen("vlan=");

        if (virStrToLong_i(tmp, &end, 10, &gotvlan) < 0) {
10017 10018
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot parse NIC vlan in '%s'"), nics[i]);
10019 10020 10021 10022 10023 10024 10025 10026 10027 10028
            return NULL;
        }

        if (gotvlan == wantvlan)
            return nics[i];
    }

    if (wantvlan == 0 && nnics > 0)
        return nics[0];

10029 10030
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("cannot find NIC definition for vlan %d"), wantvlan);
10031 10032 10033 10034 10035 10036 10037 10038 10039 10040
    return NULL;
}


/*
 * Tries to parse a QEMU -net backend argument. Gets given
 * a list of all known -net frontend arguments to try and
 * match up against. Horribly complicated stuff
 */
static virDomainNetDefPtr
10041
qemuParseCommandLineNet(virDomainXMLOptionPtr xmlopt,
10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052
                        const char *val,
                        int nnics,
                        const char **nics)
{
    virDomainNetDefPtr def = NULL;
    char **keywords = NULL;
    char **values = NULL;
    int nkeywords;
    const char *nic;
    int wantvlan = 0;
    const char *tmp;
10053
    bool genmac = true;
10054
    size_t i;
10055 10056 10057 10058

    tmp = strchr(val, ',');

    if (tmp) {
10059 10060 10061 10062 10063
        if (qemuParseKeywords(tmp+1,
                              &keywords,
                              &values,
                              &nkeywords,
                              0) < 0)
10064 10065 10066 10067 10068
            return NULL;
    } else {
        nkeywords = 0;
    }

10069
    if (VIR_ALLOC(def) < 0)
10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082
        goto cleanup;

    /* 'tap' could turn into libvirt type=ethernet, type=bridge or
     * type=network, but we can't tell, so use the generic config */
    if (STRPREFIX(val, "tap,"))
        def->type = VIR_DOMAIN_NET_TYPE_ETHERNET;
    else if (STRPREFIX(val, "socket"))
        def->type = VIR_DOMAIN_NET_TYPE_CLIENT;
    else if (STRPREFIX(val, "user"))
        def->type = VIR_DOMAIN_NET_TYPE_USER;
    else
        def->type = VIR_DOMAIN_NET_TYPE_ETHERNET;

10083
    for (i = 0; i < nkeywords; i++) {
10084 10085
        if (STREQ(keywords[i], "vlan")) {
            if (virStrToLong_i(values[i], NULL, 10, &wantvlan) < 0) {
10086 10087
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse vlan in '%s'"), val);
10088 10089 10090 10091 10092 10093
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
        } else if (def->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
                   STREQ(keywords[i], "script") && STRNEQ(values[i], "")) {
10094
            def->script = values[i];
10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115
            values[i] = NULL;
        } else if (def->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
                   STREQ(keywords[i], "ifname")) {
            def->ifname = values[i];
            values[i] = NULL;
        }
    }


    /* Done parsing the nic backend. Now to try and find corresponding
     * frontend, based off vlan number. NB this assumes a 1-1 mapping
     */

    nic = qemuFindNICForVLAN(nnics, nics, wantvlan);
    if (!nic) {
        virDomainNetDefFree(def);
        def = NULL;
        goto cleanup;
    }

    if (!STRPREFIX(nic, "nic")) {
10116 10117
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot parse NIC definition '%s'"), nic);
10118 10119 10120 10121 10122
        virDomainNetDefFree(def);
        def = NULL;
        goto cleanup;
    }

10123
    for (i = 0; i < nkeywords; i++) {
10124 10125 10126 10127 10128 10129 10130
        VIR_FREE(keywords[i]);
        VIR_FREE(values[i]);
    }
    VIR_FREE(keywords);
    VIR_FREE(values);

    if (STRPREFIX(nic, "nic,")) {
10131 10132 10133 10134 10135
        if (qemuParseKeywords(nic + strlen("nic,"),
                              &keywords,
                              &values,
                              &nkeywords,
                              0) < 0) {
10136 10137 10138 10139 10140 10141 10142 10143
            virDomainNetDefFree(def);
            def = NULL;
            goto cleanup;
        }
    } else {
        nkeywords = 0;
    }

10144
    for (i = 0; i < nkeywords; i++) {
10145
        if (STREQ(keywords[i], "macaddr")) {
10146
            genmac = false;
10147
            if (virMacAddrParse(values[i], &def->mac) < 0) {
10148 10149 10150
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unable to parse mac address '%s'"),
                               values[i]);
10151 10152 10153 10154 10155 10156 10157
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
        } else if (STREQ(keywords[i], "model")) {
            def->model = values[i];
            values[i] = NULL;
10158 10159
        } else if (STREQ(keywords[i], "vhost")) {
            if ((values[i] == NULL) || STREQ(values[i], "on")) {
10160
                def->driver.virtio.name = VIR_DOMAIN_NET_BACKEND_TYPE_VHOST;
10161
            } else if (STREQ(keywords[i], "off")) {
10162
                def->driver.virtio.name = VIR_DOMAIN_NET_BACKEND_TYPE_QEMU;
10163
            }
10164 10165
        } else if (STREQ(keywords[i], "sndbuf") && values[i]) {
            if (virStrToLong_ul(values[i], NULL, 10, &def->tune.sndbuf) < 0) {
10166 10167
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse sndbuf size in '%s'"), val);
10168 10169 10170 10171 10172
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
            def->tune.sndbuf_specified = true;
10173 10174 10175 10176
        }
    }

    if (genmac)
10177
        virDomainNetGenerateMAC(xmlopt, &def->mac);
10178

10179
 cleanup:
10180
    for (i = 0; i < nkeywords; i++) {
10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198
        VIR_FREE(keywords[i]);
        VIR_FREE(values[i]);
    }
    VIR_FREE(keywords);
    VIR_FREE(values);
    return def;
}


/*
 * Tries to parse a QEMU PCI device
 */
static virDomainHostdevDefPtr
qemuParseCommandLinePCI(const char *val)
{
    int bus = 0, slot = 0, func = 0;
    const char *start;
    char *end;
10199 10200 10201 10202
    virDomainHostdevDefPtr def = virDomainHostdevDefAlloc();

    if (!def)
       goto error;
10203 10204

    if (!STRPREFIX(val, "host=")) {
10205 10206
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown PCI device syntax '%s'"), val);
10207
        goto error;
10208 10209 10210 10211
    }

    start = val + strlen("host=");
    if (virStrToLong_i(start, &end, 16, &bus) < 0 || *end != ':') {
10212 10213
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device bus '%s'"), val);
10214
        goto error;
10215 10216 10217
    }
    start = end + 1;
    if (virStrToLong_i(start, &end, 16, &slot) < 0 || *end != '.') {
10218 10219
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device slot '%s'"), val);
10220
        goto error;
10221 10222 10223
    }
    start = end + 1;
    if (virStrToLong_i(start, NULL, 16, &func) < 0) {
10224 10225
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device function '%s'"), val);
10226
        goto error;
10227 10228 10229
    }

    def->mode = VIR_DOMAIN_HOSTDEV_MODE_SUBSYS;
10230
    def->managed = true;
10231
    def->source.subsys.type = VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI;
10232 10233 10234
    def->source.subsys.u.pci.addr.bus = bus;
    def->source.subsys.u.pci.addr.slot = slot;
    def->source.subsys.u.pci.addr.function = func;
10235
    return def;
10236 10237 10238 10239

 error:
    virDomainHostdevDefFree(def);
    return NULL;
10240 10241 10242 10243 10244 10245 10246 10247 10248
}


/*
 * Tries to parse a QEMU USB device
 */
static virDomainHostdevDefPtr
qemuParseCommandLineUSB(const char *val)
{
10249
    virDomainHostdevDefPtr def = virDomainHostdevDefAlloc();
10250 10251 10252 10253
    int first = 0, second = 0;
    const char *start;
    char *end;

10254 10255 10256
    if (!def)
       goto error;

10257
    if (!STRPREFIX(val, "host:")) {
10258 10259
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown USB device syntax '%s'"), val);
10260
        goto error;
10261 10262 10263 10264 10265
    }

    start = val + strlen("host:");
    if (strchr(start, ':')) {
        if (virStrToLong_i(start, &end, 16, &first) < 0 || *end != ':') {
10266 10267
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device vendor '%s'"), val);
10268
            goto error;
10269 10270 10271
        }
        start = end + 1;
        if (virStrToLong_i(start, NULL, 16, &second) < 0) {
10272 10273
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device product '%s'"), val);
10274
            goto error;
10275 10276 10277
        }
    } else {
        if (virStrToLong_i(start, &end, 10, &first) < 0 || *end != '.') {
10278 10279
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device bus '%s'"), val);
10280
            goto error;
10281 10282 10283
        }
        start = end + 1;
        if (virStrToLong_i(start, NULL, 10, &second) < 0) {
10284 10285
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device address '%s'"), val);
10286
            goto error;
10287 10288 10289 10290
        }
    }

    def->mode = VIR_DOMAIN_HOSTDEV_MODE_SUBSYS;
10291
    def->managed = false;
10292 10293 10294 10295 10296 10297 10298 10299 10300
    def->source.subsys.type = VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB;
    if (*end == '.') {
        def->source.subsys.u.usb.bus = first;
        def->source.subsys.u.usb.device = second;
    } else {
        def->source.subsys.u.usb.vendor = first;
        def->source.subsys.u.usb.product = second;
    }
    return def;
10301 10302 10303 10304

 error:
    virDomainHostdevDefFree(def);
    return NULL;
10305 10306 10307 10308 10309 10310
}


/*
 * Tries to parse a QEMU serial/parallel device
 */
10311 10312 10313
static int
qemuParseCommandLineChr(virDomainChrSourceDefPtr source,
                        const char *val)
10314 10315
{
    if (STREQ(val, "null")) {
10316
        source->type = VIR_DOMAIN_CHR_TYPE_NULL;
10317
    } else if (STREQ(val, "vc")) {
10318
        source->type = VIR_DOMAIN_CHR_TYPE_VC;
10319
    } else if (STREQ(val, "pty")) {
10320
        source->type = VIR_DOMAIN_CHR_TYPE_PTY;
10321
    } else if (STRPREFIX(val, "file:")) {
10322
        source->type = VIR_DOMAIN_CHR_TYPE_FILE;
10323 10324
        if (VIR_STRDUP(source->data.file.path, val + strlen("file:")) < 0)
            goto error;
10325
    } else if (STRPREFIX(val, "pipe:")) {
10326
        source->type = VIR_DOMAIN_CHR_TYPE_PIPE;
10327 10328
        if (VIR_STRDUP(source->data.file.path, val + strlen("pipe:")) < 0)
            goto error;
10329
    } else if (STREQ(val, "stdio")) {
10330
        source->type = VIR_DOMAIN_CHR_TYPE_STDIO;
10331 10332
    } else if (STRPREFIX(val, "udp:")) {
        const char *svc1, *host2, *svc2;
10333
        source->type = VIR_DOMAIN_CHR_TYPE_UDP;
10334 10335 10336 10337 10338
        val += strlen("udp:");
        svc1 = strchr(val, ':');
        host2 = svc1 ? strchr(svc1, '@') : NULL;
        svc2 = host2 ? strchr(host2, ':') : NULL;

10339 10340 10341
        if (svc1 && svc1 != val &&
            VIR_STRNDUP(source->data.udp.connectHost, val, svc1 - val) < 0)
            goto error;
10342 10343 10344

        if (svc1) {
            svc1++;
10345 10346 10347
            if (VIR_STRNDUP(source->data.udp.connectService, svc1,
                            host2 ? host2 - svc1 : strlen(svc1)) < 0)
                goto error;
10348 10349 10350 10351
        }

        if (host2) {
            host2++;
10352 10353
            if (svc2 && svc2 != host2 &&
                VIR_STRNDUP(source->data.udp.bindHost, host2, svc2 - host2) < 0)
10354
                goto error;
10355
        }
10356

10357 10358
        if (svc2) {
            svc2++;
10359
            if (STRNEQ(svc2, "0")) {
10360 10361
                if (VIR_STRDUP(source->data.udp.bindService, svc2) < 0)
                    goto error;
10362
            }
10363 10364 10365 10366
        }
    } else if (STRPREFIX(val, "tcp:") ||
               STRPREFIX(val, "telnet:")) {
        const char *opt, *svc;
10367
        source->type = VIR_DOMAIN_CHR_TYPE_TCP;
10368 10369 10370 10371
        if (STRPREFIX(val, "tcp:")) {
            val += strlen("tcp:");
        } else {
            val += strlen("telnet:");
10372
            source->data.tcp.protocol = VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
10373 10374 10375
        }
        svc = strchr(val, ':');
        if (!svc) {
10376 10377
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot find port number in character device %s"), val);
10378 10379 10380 10381
            goto error;
        }
        opt = strchr(svc, ',');
        if (opt && strstr(opt, "server"))
10382
            source->data.tcp.listen = true;
10383

10384 10385
        if (VIR_STRNDUP(source->data.tcp.host, val, svc - val) < 0)
            goto error;
10386
        svc++;
10387
        if (VIR_STRNDUP(source->data.tcp.service, svc, opt ? opt - svc : -1) < 0)
10388
            goto error;
10389 10390 10391 10392
    } else if (STRPREFIX(val, "unix:")) {
        const char *opt;
        val += strlen("unix:");
        opt = strchr(val, ',');
10393
        source->type = VIR_DOMAIN_CHR_TYPE_UNIX;
10394
        if (VIR_STRNDUP(source->data.nix.path, val, opt ? opt - val : -1) < 0)
10395
            goto error;
10396 10397

    } else if (STRPREFIX(val, "/dev")) {
10398
        source->type = VIR_DOMAIN_CHR_TYPE_DEV;
10399 10400
        if (VIR_STRDUP(source->data.file.path, val) < 0)
            goto error;
10401
    } else {
10402 10403
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown character device syntax %s"), val);
10404 10405 10406
        goto error;
    }

10407
    return 0;
10408

10409
 error:
10410
    return -1;
10411 10412 10413 10414 10415 10416 10417 10418 10419
}


static virCPUDefPtr
qemuInitGuestCPU(virDomainDefPtr dom)
{
    if (!dom->cpu) {
        virCPUDefPtr cpu;

10420
        if (VIR_ALLOC(cpu) < 0)
10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435
            return NULL;

        cpu->type = VIR_CPU_TYPE_GUEST;
        cpu->match = VIR_CPU_MATCH_EXACT;
        dom->cpu = cpu;
    }

    return dom->cpu;
}


static int
qemuParseCommandLineCPU(virDomainDefPtr dom,
                        const char *val)
{
10436
    virCPUDefPtr cpu = NULL;
10437
    char **tokens;
10438
    char **hv_tokens = NULL;
10439
    char *model = NULL;
10440
    int ret = -1;
10441
    size_t i;
10442

10443 10444
    if (!(tokens = virStringSplit(val, ",", 0)))
        goto cleanup;
10445

10446 10447
    if (tokens[0] == NULL)
        goto syntax;
10448

10449 10450 10451 10452 10453 10454 10455
    for (i = 0; tokens[i] != NULL; i++) {
        if (*tokens[i] == '\0')
            goto syntax;

        if (i == 0) {
            if (VIR_STRDUP(model, tokens[i]) < 0)
                goto cleanup;
10456 10457 10458

            if (!STREQ(model, "qemu32") && !STREQ(model, "qemu64")) {
                if (!(cpu = qemuInitGuestCPU(dom)))
10459
                    goto cleanup;
10460 10461 10462 10463

                cpu->model = model;
                model = NULL;
            }
10464 10465
        } else if (*tokens[i] == '+' || *tokens[i] == '-') {
            const char *feature = tokens[i] + 1; /* '+' or '-' */
10466 10467
            int policy;

10468
            if (*tokens[i] == '+')
10469 10470 10471 10472
                policy = VIR_CPU_FEATURE_REQUIRE;
            else
                policy = VIR_CPU_FEATURE_DISABLE;

10473
            if (*feature == '\0')
10474 10475
                goto syntax;

10476 10477 10478 10479 10480 10481 10482 10483
            if (dom->os.arch != VIR_ARCH_X86_64 &&
                dom->os.arch != VIR_ARCH_I686) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("%s platform doesn't support CPU features'"),
                               virArchToString(dom->os.arch));
                goto cleanup;
             }

10484 10485
            if (STREQ(feature, "kvmclock")) {
                bool present = (policy == VIR_CPU_FEATURE_REQUIRE);
10486
                size_t j;
10487

10488 10489
                for (j = 0; j < dom->clock.ntimers; j++) {
                    if (dom->clock.timers[j]->name == VIR_DOMAIN_TIMER_NAME_KVMCLOCK)
10490 10491 10492
                        break;
                }

10493
                if (j == dom->clock.ntimers) {
10494 10495 10496 10497 10498
                    virDomainTimerDefPtr timer;
                    if (VIR_ALLOC(timer) < 0 ||
                        VIR_APPEND_ELEMENT_COPY(dom->clock.timers,
                                                dom->clock.ntimers, timer) < 0) {
                        VIR_FREE(timer);
10499
                        goto cleanup;
10500 10501 10502 10503 10504 10505
                    }
                    timer->name = VIR_DOMAIN_TIMER_NAME_KVMCLOCK;
                    timer->present = present;
                    timer->tickpolicy = -1;
                    timer->track = -1;
                    timer->mode = -1;
10506 10507
                } else if (dom->clock.timers[j]->present != -1 &&
                    dom->clock.timers[j]->present != present) {
10508 10509
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("conflicting occurrences of kvmclock feature"));
10510
                    goto cleanup;
10511
                }
10512 10513
            } else if (STREQ(feature, "kvm_pv_eoi")) {
                if (policy == VIR_CPU_FEATURE_REQUIRE)
10514
                    dom->apic_eoi = VIR_DOMAIN_FEATURE_STATE_ON;
10515
                else
10516
                    dom->apic_eoi = VIR_DOMAIN_FEATURE_STATE_OFF;
10517 10518 10519
            } else {
                if (!cpu) {
                    if (!(cpu = qemuInitGuestCPU(dom)))
10520
                        goto cleanup;
10521

10522 10523 10524 10525
                    cpu->model = model;
                    model = NULL;
                }

10526 10527
                if (virCPUDefAddFeature(cpu, feature, policy) < 0)
                    goto cleanup;
10528
            }
10529
        } else if (STRPREFIX(tokens[i], "hv_")) {
10530 10531
            const char *token = tokens[i] + 3; /* "hv_" */
            const char *feature, *value;
10532 10533
            int f;

10534 10535 10536 10537 10538 10539 10540 10541 10542
            if (*token == '\0')
                goto syntax;

            if (!(hv_tokens = virStringSplit(token, "=", 2)))
                goto cleanup;

            feature = hv_tokens[0];
            value = hv_tokens[1];

10543
            if (*feature == '\0')
10544 10545
                goto syntax;

10546
            dom->features[VIR_DOMAIN_FEATURE_HYPERV] = VIR_DOMAIN_FEATURE_STATE_ON;
10547 10548 10549 10550 10551

            if ((f = virDomainHypervTypeFromString(feature)) < 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported HyperV Enlightenment feature "
                                 "'%s'"), feature);
10552
                goto cleanup;
10553 10554 10555 10556
            }

            switch ((enum virDomainHyperv) f) {
            case VIR_DOMAIN_HYPERV_RELAXED:
10557 10558 10559 10560 10561 10562 10563
            case VIR_DOMAIN_HYPERV_VAPIC:
                if (value) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("HyperV feature '%s' should not "
                                     "have a value"), feature);
                    goto cleanup;
                }
10564 10565 10566
                dom->hyperv_features[f] = VIR_DOMAIN_FEATURE_STATE_ON;
                break;

10567
            case VIR_DOMAIN_HYPERV_SPINLOCKS:
10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582
                dom->hyperv_features[f] = VIR_DOMAIN_FEATURE_STATE_ON;
                if (!value) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("missing HyperV spinlock retry count"));
                    goto cleanup;
                }

                if (virStrToLong_ui(value, NULL, 0, &dom->hyperv_spinlocks) < 0) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("cannot parse HyperV spinlock retry count"));
                    goto cleanup;
                }

                if (dom->hyperv_spinlocks < 0xFFF)
                    dom->hyperv_spinlocks = 0xFFF;
10583 10584
                break;

10585 10586 10587
            case VIR_DOMAIN_HYPERV_LAST:
                break;
            }
10588 10589
            virStringFreeList(hv_tokens);
            hv_tokens = NULL;
10590
        }
10591
    }
10592

10593
    if (dom->os.arch == VIR_ARCH_X86_64) {
10594
        bool is_32bit = false;
10595
        if (cpu) {
10596
            virCPUDataPtr cpuData = NULL;
10597

10598 10599 10600
            if (cpuEncode(VIR_ARCH_X86_64, cpu, NULL, &cpuData,
                          NULL, NULL, NULL, NULL) < 0)
                goto cleanup;
10601

J
Jiri Denemark 已提交
10602 10603
            is_32bit = (cpuHasFeature(cpuData, "lm") != 1);
            cpuDataFree(cpuData);
10604 10605 10606
        } else if (model) {
            is_32bit = STREQ(model, "qemu32");
        }
10607

10608
        if (is_32bit)
10609
            dom->os.arch = VIR_ARCH_I686;
10610
    }
10611 10612 10613

    ret = 0;

10614
 cleanup:
10615
    VIR_FREE(model);
10616
    virStringFreeList(tokens);
10617
    virStringFreeList(hv_tokens);
10618
    return ret;
10619

10620
 syntax:
10621 10622
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("unknown CPU syntax '%s'"), val);
10623
    goto cleanup;
10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634
}


static int
qemuParseCommandLineSmp(virDomainDefPtr dom,
                        const char *val)
{
    unsigned int sockets = 0;
    unsigned int cores = 0;
    unsigned int threads = 0;
    unsigned int maxcpus = 0;
10635
    size_t i;
10636 10637 10638 10639 10640 10641 10642
    int nkws;
    char **kws;
    char **vals;
    int n;
    char *end;
    int ret;

10643
    if (qemuParseKeywords(val, &kws, &vals, &nkws, 1) < 0)
10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682
        return -1;

    for (i = 0; i < nkws; i++) {
        if (vals[i] == NULL) {
            if (i > 0 ||
                virStrToLong_i(kws[i], &end, 10, &n) < 0 || *end != '\0')
                goto syntax;
            dom->vcpus = n;
        } else {
            if (virStrToLong_i(vals[i], &end, 10, &n) < 0 || *end != '\0')
                goto syntax;
            if (STREQ(kws[i], "sockets"))
                sockets = n;
            else if (STREQ(kws[i], "cores"))
                cores = n;
            else if (STREQ(kws[i], "threads"))
                threads = n;
            else if (STREQ(kws[i], "maxcpus"))
                maxcpus = n;
            else
                goto syntax;
        }
    }

    dom->maxvcpus = maxcpus ? maxcpus : dom->vcpus;

    if (sockets && cores && threads) {
        virCPUDefPtr cpu;

        if (!(cpu = qemuInitGuestCPU(dom)))
            goto error;
        cpu->sockets = sockets;
        cpu->cores = cores;
        cpu->threads = threads;
    } else if (sockets || cores || threads)
        goto syntax;

    ret = 0;

10683
 cleanup:
10684 10685 10686 10687 10688 10689 10690 10691 10692
    for (i = 0; i < nkws; i++) {
        VIR_FREE(kws[i]);
        VIR_FREE(vals[i]);
    }
    VIR_FREE(kws);
    VIR_FREE(vals);

    return ret;

10693
 syntax:
10694 10695
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("cannot parse CPU topology '%s'"), val);
10696
 error:
10697 10698 10699 10700 10701
    ret = -1;
    goto cleanup;
}


10702
static void
10703 10704
qemuParseCommandLineBootDevs(virDomainDefPtr def, const char *str)
{
10705 10706
    int n, b = 0;

10707
    for (n = 0; str[n] && b < VIR_DOMAIN_BOOT_LAST; n++) {
10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722
        if (str[n] == 'a')
            def->os.bootDevs[b++] = VIR_DOMAIN_BOOT_FLOPPY;
        else if (str[n] == 'c')
            def->os.bootDevs[b++] = VIR_DOMAIN_BOOT_DISK;
        else if (str[n] == 'd')
            def->os.bootDevs[b++] = VIR_DOMAIN_BOOT_CDROM;
        else if (str[n] == 'n')
            def->os.bootDevs[b++] = VIR_DOMAIN_BOOT_NET;
        else if (str[n] == ',')
            break;
    }
    def->os.nBootDevs = b;
}


10723 10724 10725 10726 10727
/*
 * Analyse the env and argv settings and reconstruct a
 * virDomainDefPtr representing these settings as closely
 * as is practical. This is not an exact science....
 */
E
Eric Blake 已提交
10728 10729 10730 10731 10732 10733 10734 10735
static virDomainDefPtr
qemuParseCommandLine(virCapsPtr qemuCaps,
                     virDomainXMLOptionPtr xmlopt,
                     char **progenv,
                     char **progargv,
                     char **pidfile,
                     virDomainChrSourceDefPtr *monConfig,
                     bool *monJSON)
10736 10737
{
    virDomainDefPtr def;
10738
    size_t i;
10739
    bool nographics = false;
10740
    bool fullscreen = false;
10741
    char *path;
10742
    size_t nnics = 0;
10743 10744 10745
    const char **nics = NULL;
    int video = VIR_DOMAIN_VIDEO_TYPE_CIRRUS;
    int nvirtiodisk = 0;
W
Wen Congyang 已提交
10746
    qemuDomainCmdlineDefPtr cmd = NULL;
E
Eric Blake 已提交
10747
    virDomainDiskDefPtr disk = NULL;
10748
    const char *ceph_args = qemuFindEnv(progenv, "CEPH_ARGS");
10749

10750 10751 10752 10753 10754 10755 10756
    if (pidfile)
        *pidfile = NULL;
    if (monConfig)
        *monConfig = NULL;
    if (monJSON)
        *monJSON = false;

10757
    if (!progargv[0]) {
10758 10759
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no emulator path found"));
10760 10761 10762 10763
        return NULL;
    }

    if (VIR_ALLOC(def) < 0)
10764
        goto error;
10765 10766 10767

    /* allocate the cmdlinedef up-front; if it's unused, we'll free it later */
    if (VIR_ALLOC(cmd) < 0)
10768
        goto error;
10769

E
Eric Blake 已提交
10770
    if (virUUIDGenerate(def->uuid) < 0) {
10771 10772
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to generate uuid"));
E
Eric Blake 已提交
10773 10774
        goto error;
    }
10775 10776 10777 10778 10779 10780

    def->id = -1;
    def->mem.cur_balloon = def->mem.max_balloon = 64 * 1024;
    def->maxvcpus = 1;
    def->vcpus = 1;
    def->clock.offset = VIR_DOMAIN_CLOCK_OFFSET_UTC;
10781

10782 10783 10784 10785
    def->onReboot = VIR_DOMAIN_LIFECYCLE_RESTART;
    def->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;
    def->onPoweroff = VIR_DOMAIN_LIFECYCLE_DESTROY;
    def->virtType = VIR_DOMAIN_VIRT_QEMU;
10786 10787
    if (VIR_STRDUP(def->emulator, progargv[0]) < 0)
        goto error;
10788

10789 10790
    if (!(path = last_component(def->emulator)))
        goto error;
10791

10792
    if (strstr(path, "xenner")) {
10793
        def->virtType = VIR_DOMAIN_VIRT_KVM;
10794 10795
        if (VIR_STRDUP(def->os.type, "xen") < 0)
            goto error;
10796
    } else {
10797 10798
        if (VIR_STRDUP(def->os.type, "hvm") < 0)
            goto error;
10799 10800
        if (strstr(path, "kvm")) {
            def->virtType = VIR_DOMAIN_VIRT_KVM;
10801
            def->features[VIR_DOMAIN_FEATURE_PAE] = VIR_DOMAIN_FEATURE_STATE_ON;
10802
        }
10803 10804
    }

10805
    if (def->virtType == VIR_DOMAIN_VIRT_KVM)
10806
        def->os.arch = qemuCaps->host.arch;
10807
    else if (STRPREFIX(path, "qemu-system-"))
10808
        def->os.arch = virArchFromString(path + strlen("qemu-system-"));
10809
    else
10810
        def->os.arch = VIR_ARCH_I686;
10811

10812 10813
    if ((def->os.arch == VIR_ARCH_I686) ||
        (def->os.arch == VIR_ARCH_X86_64))
10814
        def->features[VIR_DOMAIN_FEATURE_ACPI] = VIR_DOMAIN_FEATURE_STATE_ON;
10815

10816 10817 10818
#define WANT_VALUE()                                                   \
    const char *val = progargv[++i];                                   \
    if (!val) {                                                        \
10819
        virReportError(VIR_ERR_INTERNAL_ERROR,                         \
10820
                       _("missing value for %s argument"), arg);       \
10821 10822 10823 10824 10825
        goto error;                                                    \
    }

    /* One initial loop to get list of NICs, so we
     * can correlate them later */
10826
    for (i = 1; progargv[i]; i++) {
10827 10828 10829 10830 10831 10832 10833 10834
        const char *arg = progargv[i];
        /* Make sure we have a single - for all options to
           simplify next logic */
        if (STRPREFIX(arg, "--"))
            arg++;

        if (STREQ(arg, "-net")) {
            WANT_VALUE();
10835 10836 10837
            if (STRPREFIX(val, "nic") &&
                VIR_APPEND_ELEMENT(nics, nnics, val) < 0)
                goto error;
10838 10839 10840 10841
        }
    }

    /* Now the real processing loop */
10842
    for (i = 1; progargv[i]; i++) {
10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853
        const char *arg = progargv[i];
        /* Make sure we have a single - for all options to
           simplify next logic */
        if (STRPREFIX(arg, "--"))
            arg++;

        if (STREQ(arg, "-vnc")) {
            virDomainGraphicsDefPtr vnc;
            char *tmp;
            WANT_VALUE();
            if (VIR_ALLOC(vnc) < 0)
10854
                goto error;
10855 10856
            vnc->type = VIR_DOMAIN_GRAPHICS_TYPE_VNC;

10857
            if (STRPREFIX(val, "unix:")) {
10858
                /* -vnc unix:/some/big/path */
10859
                if (VIR_STRDUP(vnc->data.vnc.socket, val + 5) < 0) {
10860
                    virDomainGraphicsDefFree(vnc);
10861
                    goto error;
10862 10863
                }
            } else {
10864 10865 10866 10867 10868 10869
                /*
                 * -vnc 127.0.0.1:4
                 * -vnc [2001:1:2:3:4:5:1234:1234]:4
                 * -vnc some.host.name:4
                 */
                char *opts;
10870
                char *port;
10871 10872 10873 10874 10875
                const char *sep = ":";
                if (val[0] == '[')
                    sep = "]:";
                tmp = strstr(val, sep);
                if (!tmp) {
10876
                    virDomainGraphicsDefFree(vnc);
10877 10878
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("missing VNC port number in '%s'"), val);
10879 10880
                    goto error;
                }
10881 10882
                port = tmp + strlen(sep);
                if (virStrToLong_i(port, &opts, 10,
10883
                                   &vnc->data.vnc.port) < 0) {
10884
                    virDomainGraphicsDefFree(vnc);
10885
                    virReportError(VIR_ERR_INTERNAL_ERROR,
10886
                                   _("cannot parse VNC port '%s'"), port);
10887 10888 10889
                    goto error;
                }
                if (val[0] == '[')
10890 10891
                    virDomainGraphicsListenSetAddress(vnc, 0,
                                                      val+1, tmp-(val+1), true);
10892
                else
10893 10894 10895 10896
                    virDomainGraphicsListenSetAddress(vnc, 0,
                                                      val, tmp-val, true);
                if (!virDomainGraphicsListenGetAddress(vnc, 0)) {
                    virDomainGraphicsDefFree(vnc);
10897
                    goto error;
10898
                }
10899 10900

                if (*opts == ',') {
10901 10902 10903
                    char *orig_opts;

                    if (VIR_STRDUP(orig_opts, opts + 1) < 0) {
10904
                        virDomainGraphicsDefFree(vnc);
10905
                        goto error;
10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937
                    }
                    opts = orig_opts;

                    while (opts && *opts) {
                        char *nextopt = strchr(opts, ',');
                        if (nextopt)
                            *(nextopt++) = '\0';

                        if (STRPREFIX(opts, "websocket")) {
                            char *websocket = opts + strlen("websocket");
                            if (*(websocket++) == '=' &&
                                *websocket) {
                                /* If the websocket continues with
                                 * '=<something>', we'll parse it */
                                if (virStrToLong_i(websocket,
                                                   NULL, 0,
                                                   &vnc->data.vnc.websocket) < 0) {
                                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                                   _("cannot parse VNC "
                                                     "WebSocket port '%s'"),
                                                   websocket);
                                    virDomainGraphicsDefFree(vnc);
                                    VIR_FREE(orig_opts);
                                    goto error;
                                }
                            } else {
                                /* Otherwise, we'll compute the port the same
                                 * way QEMU does, by adding a 5700 to the
                                 * display value. */
                                vnc->data.vnc.websocket =
                                    vnc->data.vnc.port + 5700;
                            }
10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960
                        } else if (STRPREFIX(opts, "share=")) {
                            char *sharePolicy = opts + strlen("share=");
                            if (sharePolicy && *sharePolicy) {
                                int policy =
                                    virDomainGraphicsVNCSharePolicyTypeFromString(sharePolicy);

                                if (policy < 0) {
                                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                                   _("unknown vnc display sharing policy '%s'"),
                                                     sharePolicy);
                                    virDomainGraphicsDefFree(vnc);
                                    VIR_FREE(orig_opts);
                                    goto error;
                                } else {
                                    vnc->data.vnc.sharePolicy = policy;
                                }
                            } else {
                                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                               _("missing vnc sharing policy"));
                                virDomainGraphicsDefFree(vnc);
                                VIR_FREE(orig_opts);
                                goto error;
                            }
10961 10962 10963 10964 10965 10966
                        }

                        opts = nextopt;
                    }
                    VIR_FREE(orig_opts);
                }
10967
                vnc->data.vnc.port += 5900;
10968
                vnc->data.vnc.autoport = false;
10969 10970
            }

10971
            if (VIR_APPEND_ELEMENT(def->graphics, def->ngraphics, vnc) < 0) {
10972
                virDomainGraphicsDefFree(vnc);
10973
                goto error;
10974 10975 10976 10977 10978
            }
        } else if (STREQ(arg, "-m")) {
            int mem;
            WANT_VALUE();
            if (virStrToLong_i(val, NULL, 10, &mem) < 0) {
10979 10980
                virReportError(VIR_ERR_INTERNAL_ERROR, \
                               _("cannot parse memory level '%s'"), val);
10981 10982 10983 10984 10985 10986 10987 10988 10989 10990
                goto error;
            }
            def->mem.cur_balloon = def->mem.max_balloon = mem * 1024;
        } else if (STREQ(arg, "-smp")) {
            WANT_VALUE();
            if (qemuParseCommandLineSmp(def, val) < 0)
                goto error;
        } else if (STREQ(arg, "-uuid")) {
            WANT_VALUE();
            if (virUUIDParse(val, def->uuid) < 0) {
10991 10992
                virReportError(VIR_ERR_INTERNAL_ERROR, \
                               _("cannot parse UUID '%s'"), val);
10993 10994 10995 10996 10997 10998 10999 11000
                goto error;
            }
        } else if (STRPREFIX(arg, "-hd") ||
                   STRPREFIX(arg, "-sd") ||
                   STRPREFIX(arg, "-fd") ||
                   STREQ(arg, "-cdrom")) {
            WANT_VALUE();
            if (VIR_ALLOC(disk) < 0)
11001
                goto error;
11002 11003

            if (STRPREFIX(val, "/dev/"))
E
Eric Blake 已提交
11004
                disk->src.type = VIR_STORAGE_TYPE_BLOCK;
11005
            else if (STRPREFIX(val, "nbd:")) {
E
Eric Blake 已提交
11006
                disk->src.type = VIR_STORAGE_TYPE_NETWORK;
11007
                disk->src.protocol = VIR_STORAGE_NET_PROTOCOL_NBD;
11008
            } else if (STRPREFIX(val, "rbd:")) {
E
Eric Blake 已提交
11009
                disk->src.type = VIR_STORAGE_TYPE_NETWORK;
11010
                disk->src.protocol = VIR_STORAGE_NET_PROTOCOL_RBD;
11011
                val += strlen("rbd:");
11012
            } else if (STRPREFIX(val, "gluster")) {
E
Eric Blake 已提交
11013
                disk->src.type = VIR_STORAGE_TYPE_NETWORK;
11014
                disk->src.protocol = VIR_STORAGE_NET_PROTOCOL_GLUSTER;
11015
            } else if (STRPREFIX(val, "sheepdog:")) {
E
Eric Blake 已提交
11016
                disk->src.type = VIR_STORAGE_TYPE_NETWORK;
11017
                disk->src.protocol = VIR_STORAGE_NET_PROTOCOL_SHEEPDOG;
11018 11019
                val += strlen("sheepdog:");
            } else
E
Eric Blake 已提交
11020
                disk->src.type = VIR_STORAGE_TYPE_FILE;
11021 11022
            if (STREQ(arg, "-cdrom")) {
                disk->device = VIR_DOMAIN_DISK_DEVICE_CDROM;
11023 11024 11025
                if (((def->os.arch == VIR_ARCH_PPC64) &&
                    def->os.machine && STREQ(def->os.machine, "pseries")))
                    disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
11026 11027
                if (VIR_STRDUP(disk->dst, "hdc") < 0)
                    goto error;
11028
                disk->readonly = true;
11029 11030 11031 11032 11033 11034 11035 11036 11037 11038
            } else {
                if (STRPREFIX(arg, "-fd")) {
                    disk->device = VIR_DOMAIN_DISK_DEVICE_FLOPPY;
                    disk->bus = VIR_DOMAIN_DISK_BUS_FDC;
                } else {
                    disk->device = VIR_DOMAIN_DISK_DEVICE_DISK;
                    if (STRPREFIX(arg, "-hd"))
                        disk->bus = VIR_DOMAIN_DISK_BUS_IDE;
                    else
                        disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
11039 11040 11041
                   if (((def->os.arch == VIR_ARCH_PPC64) &&
                       def->os.machine && STREQ(def->os.machine, "pseries")))
                       disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
11042
                }
11043 11044
                if (VIR_STRDUP(disk->dst, arg + 1) < 0)
                    goto error;
11045
            }
11046
            if (VIR_STRDUP(disk->src.path, val) < 0)
11047
                goto error;
11048

E
Eric Blake 已提交
11049
            if (disk->src.type == VIR_STORAGE_TYPE_NETWORK) {
11050
                char *port;
11051

11052
                switch ((virStorageNetProtocol) disk->src.protocol) {
11053
                case VIR_STORAGE_NET_PROTOCOL_NBD:
11054
                    if (qemuParseNBDString(disk) < 0)
11055 11056
                        goto error;
                    break;
11057
                case VIR_STORAGE_NET_PROTOCOL_RBD:
11058 11059 11060
                    /* old-style CEPH_ARGS env variable is parsed later */
                    if (!ceph_args && qemuParseRBDString(disk) < 0)
                        goto error;
11061
                    break;
11062
                case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
11063
                    /* disk->src must be [vdiname] or [host]:[port]:[vdiname] */
11064
                    port = strchr(disk->src.path, ':');
11065 11066 11067 11068 11069 11070
                    if (port) {
                        char *vdi;

                        *port++ = '\0';
                        vdi = strchr(port, ':');
                        if (!vdi) {
11071 11072
                            virReportError(VIR_ERR_INTERNAL_ERROR,
                                           _("cannot parse sheepdog filename '%s'"), val);
11073 11074 11075
                            goto error;
                        }
                        *vdi++ = '\0';
11076
                        if (VIR_ALLOC(disk->src.hosts) < 0)
11077
                            goto error;
11078 11079 11080
                        disk->src.nhosts = 1;
                        disk->src.hosts->name = disk->src.path;
                        if (VIR_STRDUP(disk->src.hosts->port, port) < 0)
11081
                            goto error;
11082
                        if (VIR_STRDUP(disk->src.path, vdi) < 0)
11083
                            goto error;
11084 11085
                    }
                    break;
11086
                case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
11087 11088 11089
                    if (qemuParseGlusterString(disk) < 0)
                        goto error;

P
Paolo Bonzini 已提交
11090
                    break;
11091
                case VIR_STORAGE_NET_PROTOCOL_ISCSI:
P
Paolo Bonzini 已提交
11092 11093 11094
                    if (qemuParseISCSIString(disk) < 0)
                        goto error;

11095
                    break;
11096 11097 11098 11099 11100 11101
                case VIR_STORAGE_NET_PROTOCOL_HTTP:
                case VIR_STORAGE_NET_PROTOCOL_HTTPS:
                case VIR_STORAGE_NET_PROTOCOL_FTP:
                case VIR_STORAGE_NET_PROTOCOL_FTPS:
                case VIR_STORAGE_NET_PROTOCOL_TFTP:
                case VIR_STORAGE_NET_PROTOCOL_LAST:
11102
                case VIR_STORAGE_NET_PROTOCOL_NONE:
11103 11104
                    /* ignored for now */
                    break;
11105 11106 11107
                }
            }

11108
            if (virDomainDiskDefAssignAddress(xmlopt, disk) < 0) {
11109 11110 11111
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Cannot assign address for device name '%s'"),
                               disk->dst);
11112
                goto error;
11113
            }
11114

11115
            if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
11116
                goto error;
11117
        } else if (STREQ(arg, "-no-acpi")) {
11118
            def->features[VIR_DOMAIN_FEATURE_ACPI] = VIR_DOMAIN_FEATURE_STATE_DEFAULT;
11119 11120 11121 11122
        } else if (STREQ(arg, "-no-reboot")) {
            def->onReboot = VIR_DOMAIN_LIFECYCLE_DESTROY;
        } else if (STREQ(arg, "-no-kvm")) {
            def->virtType = VIR_DOMAIN_VIRT_QEMU;
P
Paolo Bonzini 已提交
11123 11124
        } else if (STREQ(arg, "-enable-kvm")) {
            def->virtType = VIR_DOMAIN_VIRT_KVM;
11125
        } else if (STREQ(arg, "-nographic")) {
11126
            nographics = true;
11127
        } else if (STREQ(arg, "-full-screen")) {
11128
            fullscreen = true;
11129 11130 11131 11132
        } else if (STREQ(arg, "-localtime")) {
            def->clock.offset = VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME;
        } else if (STREQ(arg, "-kernel")) {
            WANT_VALUE();
11133 11134
            if (VIR_STRDUP(def->os.kernel, val) < 0)
                goto error;
11135 11136
        } else if (STREQ(arg, "-bios")) {
            WANT_VALUE();
11137 11138
            if (VIR_STRDUP(def->os.loader, val) < 0)
                goto error;
11139 11140
        } else if (STREQ(arg, "-initrd")) {
            WANT_VALUE();
11141 11142
            if (VIR_STRDUP(def->os.initrd, val) < 0)
                goto error;
11143 11144
        } else if (STREQ(arg, "-append")) {
            WANT_VALUE();
11145 11146
            if (VIR_STRDUP(def->os.cmdline, val) < 0)
                goto error;
O
Olivia Yin 已提交
11147 11148
        } else if (STREQ(arg, "-dtb")) {
            WANT_VALUE();
11149 11150
            if (VIR_STRDUP(def->os.dtb, val) < 0)
                goto error;
11151
        } else if (STREQ(arg, "-boot")) {
11152
            const char *token = NULL;
11153 11154
            WANT_VALUE();

11155 11156 11157 11158 11159 11160 11161 11162 11163 11164
            if (!strchr(val, ','))
                qemuParseCommandLineBootDevs(def, val);
            else {
                token = val;
                while (token && *token) {
                    if (STRPREFIX(token, "order=")) {
                        token += strlen("order=");
                        qemuParseCommandLineBootDevs(def, token);
                    } else if (STRPREFIX(token, "menu=on")) {
                        def->os.bootmenu = 1;
11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180
                    } else if (STRPREFIX(token, "reboot-timeout=")) {
                        int num;
                        char *endptr;
                        if (virStrToLong_i(token + strlen("reboot-timeout="),
                                           &endptr, 10, &num) < 0 ||
                            (*endptr != '\0' && endptr != strchr(token, ','))) {
                            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                           _("cannot parse reboot-timeout value"));
                            goto error;
                        }
                        if (num > 65535)
                            num = 65535;
                        else if (num < -1)
                            num = -1;
                        def->os.bios.rt_delay = num;
                        def->os.bios.rt_set = true;
11181 11182 11183 11184 11185 11186 11187 11188
                    }
                    token = strchr(token, ',');
                    /* This incrementation has to be done here in order to make it
                     * possible to pass the token pointer properly into the loop */
                    if (token)
                        token++;
                }
            }
11189 11190 11191 11192 11193
        } else if (STREQ(arg, "-name")) {
            char *process;
            WANT_VALUE();
            process = strstr(val, ",process=");
            if (process == NULL) {
11194 11195
                if (VIR_STRDUP(def->name, val) < 0)
                    goto error;
11196
            } else {
11197 11198
                if (VIR_STRNDUP(def->name, val, process - val) < 0)
                    goto error;
11199
            }
11200 11201
            if (STREQ(def->name, ""))
                VIR_FREE(def->name);
11202 11203
        } else if (STREQ(arg, "-M") ||
                   STREQ(arg, "-machine")) {
11204 11205 11206 11207 11208 11209 11210
            char **list;
            char *param;
            size_t j = 0;

            /* -machine [type=]name[,prop[=value][,...]]
             * Set os.machine only if first parameter lacks '=' or
             * contains explicit type='...' */
11211
            WANT_VALUE();
11212 11213
            if (!(list = virStringSplit(val, ",", 0)))
                goto error;
11214 11215 11216 11217 11218 11219 11220
            param = list[0];

            if (STRPREFIX(param, "type="))
                param += strlen("type=");
            if (!strchr(param, '=')) {
                if (VIR_STRDUP(def->os.machine, param) < 0) {
                    virStringFreeList(list);
11221
                    goto error;
11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236
                }
                j++;
            }

            /* handle all remaining "-machine" parameters */
            while ((param = list[j++])) {
                if (STRPREFIX(param, "dump-guest-core=")) {
                    param += strlen("dump-guest-core=");
                    def->mem.dump_core = virDomainMemDumpTypeFromString(param);
                    if (def->mem.dump_core <= 0)
                        def->mem.dump_core = VIR_DOMAIN_MEM_DUMP_DEFAULT;
                } else if (STRPREFIX(param, "mem-merge=off")) {
                    def->mem.nosharepages = true;
                } else if (STRPREFIX(param, "accel=kvm")) {
                    def->virtType = VIR_DOMAIN_VIRT_KVM;
11237
                    def->features[VIR_DOMAIN_FEATURE_PAE] = VIR_DOMAIN_FEATURE_STATE_ON;
11238 11239
                }
            }
11240
            virStringFreeList(list);
11241 11242 11243 11244
        } else if (STREQ(arg, "-serial")) {
            WANT_VALUE();
            if (STRNEQ(val, "none")) {
                virDomainChrDefPtr chr;
11245 11246 11247 11248

                if (!(chr = virDomainChrDefNew()))
                    goto error;

E
Eric Blake 已提交
11249 11250
                if (qemuParseCommandLineChr(&chr->source, val) < 0) {
                    virDomainChrDefFree(chr);
11251
                    goto error;
E
Eric Blake 已提交
11252
                }
11253 11254 11255
                chr->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL;
                chr->target.port = def->nserials;
                if (VIR_APPEND_ELEMENT(def->serials, def->nserials, chr) < 0) {
11256
                    virDomainChrDefFree(chr);
11257
                    goto error;
11258 11259 11260 11261 11262 11263
                }
            }
        } else if (STREQ(arg, "-parallel")) {
            WANT_VALUE();
            if (STRNEQ(val, "none")) {
                virDomainChrDefPtr chr;
11264 11265 11266 11267

                if (!(chr = virDomainChrDefNew()))
                    goto error;

E
Eric Blake 已提交
11268 11269
                if (qemuParseCommandLineChr(&chr->source, val) < 0) {
                    virDomainChrDefFree(chr);
11270
                    goto error;
E
Eric Blake 已提交
11271
                }
11272 11273 11274
                chr->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL;
                chr->target.port = def->nparallels;
                if (VIR_APPEND_ELEMENT(def->parallels, def->nparallels, chr) < 0) {
11275
                    virDomainChrDefFree(chr);
11276
                    goto error;
11277 11278 11279 11280 11281
                }
            }
        } else if (STREQ(arg, "-usbdevice")) {
            WANT_VALUE();
            if (STREQ(val, "tablet") ||
11282 11283
                STREQ(val, "mouse") ||
                STREQ(val, "keyboard")) {
11284 11285
                virDomainInputDefPtr input;
                if (VIR_ALLOC(input) < 0)
11286
                    goto error;
11287 11288 11289
                input->bus = VIR_DOMAIN_INPUT_BUS_USB;
                if (STREQ(val, "tablet"))
                    input->type = VIR_DOMAIN_INPUT_TYPE_TABLET;
11290
                else if (STREQ(val, "mouse"))
11291
                    input->type = VIR_DOMAIN_INPUT_TYPE_MOUSE;
11292 11293 11294 11295
                else
                    input->type = VIR_DOMAIN_INPUT_TYPE_KBD;

                if (VIR_APPEND_ELEMENT(def->inputs, def->ninputs, input) < 0) {
11296
                    virDomainInputDefFree(input);
11297
                    goto error;
11298 11299 11300
                }
            } else if (STRPREFIX(val, "disk:")) {
                if (VIR_ALLOC(disk) < 0)
11301
                    goto error;
11302
                if (VIR_STRDUP(disk->src.path, val + strlen("disk:")) < 0)
11303
                    goto error;
11304
                if (STRPREFIX(disk->src.path, "/dev/"))
E
Eric Blake 已提交
11305
                    disk->src.type = VIR_STORAGE_TYPE_BLOCK;
11306
                else
E
Eric Blake 已提交
11307
                    disk->src.type = VIR_STORAGE_TYPE_FILE;
11308 11309
                disk->device = VIR_DOMAIN_DISK_DEVICE_DISK;
                disk->bus = VIR_DOMAIN_DISK_BUS_USB;
11310
                disk->removable = VIR_DOMAIN_FEATURE_STATE_DEFAULT;
11311 11312
                if (VIR_STRDUP(disk->dst, "sda") < 0)
                    goto error;
11313
                if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
11314
                    goto error;
11315 11316 11317 11318
            } else {
                virDomainHostdevDefPtr hostdev;
                if (!(hostdev = qemuParseCommandLineUSB(val)))
                    goto error;
11319
                if (VIR_APPEND_ELEMENT(def->hostdevs, def->nhostdevs, hostdev) < 0) {
11320
                    virDomainHostdevDefFree(hostdev);
11321
                    goto error;
11322 11323 11324 11325 11326 11327
                }
            }
        } else if (STREQ(arg, "-net")) {
            WANT_VALUE();
            if (!STRPREFIX(val, "nic") && STRNEQ(val, "none")) {
                virDomainNetDefPtr net;
11328
                if (!(net = qemuParseCommandLineNet(xmlopt, val, nnics, nics)))
11329
                    goto error;
11330
                if (VIR_APPEND_ELEMENT(def->nets, def->nnets, net) < 0) {
11331
                    virDomainNetDefFree(net);
11332
                    goto error;
11333 11334 11335 11336
                }
            }
        } else if (STREQ(arg, "-drive")) {
            WANT_VALUE();
11337
            if (!(disk = qemuParseCommandLineDisk(xmlopt, val, def,
11338
                                                  nvirtiodisk,
11339
                                                  ceph_args != NULL)))
11340 11341 11342
                goto error;
            if (disk->bus == VIR_DOMAIN_DISK_BUS_VIRTIO)
                nvirtiodisk++;
11343 11344
            if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
                goto error;
11345 11346 11347 11348 11349
        } else if (STREQ(arg, "-pcidevice")) {
            virDomainHostdevDefPtr hostdev;
            WANT_VALUE();
            if (!(hostdev = qemuParseCommandLinePCI(val)))
                goto error;
11350
            if (VIR_APPEND_ELEMENT(def->hostdevs, def->nhostdevs, hostdev) < 0) {
11351
                virDomainHostdevDefFree(hostdev);
11352
                goto error;
11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368
            }
        } else if (STREQ(arg, "-soundhw")) {
            const char *start;
            WANT_VALUE();
            start = val;
            while (start) {
                const char *tmp = strchr(start, ',');
                int type = -1;
                if (STRPREFIX(start, "pcspk")) {
                    type = VIR_DOMAIN_SOUND_MODEL_PCSPK;
                } else if (STRPREFIX(start, "sb16")) {
                    type = VIR_DOMAIN_SOUND_MODEL_SB16;
                } else if (STRPREFIX(start, "es1370")) {
                    type = VIR_DOMAIN_SOUND_MODEL_ES1370;
                } else if (STRPREFIX(start, "ac97")) {
                    type = VIR_DOMAIN_SOUND_MODEL_AC97;
11369 11370
                } else if (STRPREFIX(start, "hda")) {
                    type = VIR_DOMAIN_SOUND_MODEL_ICH6;
11371 11372 11373 11374 11375
                }

                if (type != -1) {
                    virDomainSoundDefPtr snd;
                    if (VIR_ALLOC(snd) < 0)
11376
                        goto error;
11377
                    snd->model = type;
11378
                    if (VIR_APPEND_ELEMENT(def->sounds, def->nsounds, snd) < 0) {
11379
                        VIR_FREE(snd);
11380
                        goto error;
11381 11382 11383 11384 11385 11386 11387
                    }
                }

                start = tmp ? tmp + 1 : NULL;
            }
        } else if (STREQ(arg, "-watchdog")) {
            WANT_VALUE();
11388
            int model = virDomainWatchdogModelTypeFromString(val);
11389 11390 11391 11392

            if (model != -1) {
                virDomainWatchdogDefPtr wd;
                if (VIR_ALLOC(wd) < 0)
11393
                    goto error;
11394 11395 11396 11397 11398 11399
                wd->model = model;
                wd->action = VIR_DOMAIN_WATCHDOG_ACTION_RESET;
                def->watchdog = wd;
            }
        } else if (STREQ(arg, "-watchdog-action") && def->watchdog) {
            WANT_VALUE();
11400
            int action = virDomainWatchdogActionTypeFromString(val);
11401 11402 11403 11404 11405

            if (action != -1)
                def->watchdog->action = action;
        } else if (STREQ(arg, "-bootloader")) {
            WANT_VALUE();
11406 11407
            if (VIR_STRDUP(def->os.bootloader, val) < 0)
                goto error;
11408 11409 11410 11411 11412 11413 11414 11415 11416
        } else if (STREQ(arg, "-vmwarevga")) {
            video = VIR_DOMAIN_VIDEO_TYPE_VMVGA;
        } else if (STREQ(arg, "-std-vga")) {
            video = VIR_DOMAIN_VIDEO_TYPE_VGA;
        } else if (STREQ(arg, "-vga")) {
            WANT_VALUE();
            if (STRNEQ(val, "none")) {
                video = qemuVideoTypeFromString(val);
                if (video < 0) {
11417 11418
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unknown video adapter type '%s'"), val);
11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429
                    goto error;
                }
            }
        } else if (STREQ(arg, "-cpu")) {
            WANT_VALUE();
            if (qemuParseCommandLineCPU(def, val) < 0)
                goto error;
        } else if (STREQ(arg, "-domid")) {
            WANT_VALUE();
            /* ignore, generted on the fly */
        } else if (STREQ(arg, "-usb")) {
11430 11431
            virDomainControllerDefPtr ctldef;
            if (VIR_ALLOC(ctldef) < 0)
11432
                goto error;
11433 11434 11435
            ctldef->type = VIR_DOMAIN_CONTROLLER_TYPE_USB;
            ctldef->idx = 0;
            ctldef->model = -1;
11436 11437
            if (virDomainControllerInsert(def, ctldef) < 0) {
                VIR_FREE(ctldef);
11438
                goto error;
11439
            }
11440 11441
        } else if (STREQ(arg, "-pidfile")) {
            WANT_VALUE();
11442
            if (pidfile)
11443 11444
                if (VIR_STRDUP(*pidfile, val) < 0)
                    goto error;
11445 11446 11447 11448 11449
        } else if (STREQ(arg, "-incoming")) {
            WANT_VALUE();
            /* ignore, used via restore/migrate APIs */
        } else if (STREQ(arg, "-monitor")) {
            WANT_VALUE();
11450 11451 11452 11453
            if (monConfig) {
                virDomainChrSourceDefPtr chr;

                if (VIR_ALLOC(chr) < 0)
11454
                    goto error;
11455

E
Eric Blake 已提交
11456 11457
                if (qemuParseCommandLineChr(chr, val) < 0) {
                    virDomainChrSourceDefFree(chr);
11458
                    goto error;
E
Eric Blake 已提交
11459
                }
11460 11461 11462

                *monConfig = chr;
            }
11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498
        } else if (STREQ(arg, "-global") &&
                   STRPREFIX(progargv[i + 1], "PIIX4_PM.disable_s3=")) {
            /* We want to parse only the known "-global" parameters,
             * so the ones that we don't know are still added to the
             * namespace */
            WANT_VALUE();

            val += strlen("PIIX4_PM.disable_s3=");
            if (STREQ(val, "0"))
                def->pm.s3 = VIR_DOMAIN_PM_STATE_ENABLED;
            else if (STREQ(val, "1"))
                def->pm.s3 = VIR_DOMAIN_PM_STATE_DISABLED;
            else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("invalid value for disable_s3 parameter: "
                                 "'%s'"), val);
                goto error;
            }

        } else if (STREQ(arg, "-global") &&
                   STRPREFIX(progargv[i + 1], "PIIX4_PM.disable_s4=")) {

            WANT_VALUE();

            val += strlen("PIIX4_PM.disable_s4=");
            if (STREQ(val, "0"))
                def->pm.s4 = VIR_DOMAIN_PM_STATE_ENABLED;
            else if (STREQ(val, "1"))
                def->pm.s4 = VIR_DOMAIN_PM_STATE_DISABLED;
            else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("invalid value for disable_s4 parameter: "
                                 "'%s'"), val);
                goto error;
            }

11499 11500 11501 11502 11503
        } else if (STREQ(arg, "-global") &&
                   STRPREFIX(progargv[i + 1], "spapr-nvram.reg=")) {
            WANT_VALUE();

            if (VIR_ALLOC(def->nvram) < 0)
11504
                goto error;
11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515

            def->nvram->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
            def->nvram->info.addr.spaprvio.has_reg = true;

            val += strlen("spapr-nvram.reg=");
            if (virStrToLong_ull(val, NULL, 16,
                                 &def->nvram->info.addr.spaprvio.reg) < 0) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse nvram's address '%s'"), val);
                goto error;
            }
11516 11517 11518
        } else if (STREQ(arg, "-S")) {
            /* ignore, always added by libvirt */
        } else {
11519
            char *tmp = NULL;
11520 11521 11522 11523 11524
            /* something we can't yet parse.  Add it to the qemu namespace
             * cmdline/environment advanced options and hope for the best
             */
            VIR_WARN("unknown QEMU argument '%s', adding to the qemu namespace",
                     arg);
11525 11526 11527
            if (VIR_STRDUP(tmp, arg) < 0 ||
                VIR_APPEND_ELEMENT(cmd->args, cmd->num_args, tmp) < 0) {
                VIR_FREE(tmp);
11528
                goto error;
11529
            }
11530 11531 11532 11533
        }
    }

#undef WANT_VALUE
11534 11535 11536
    if (def->ndisks > 0 && ceph_args) {
        char *hosts, *port, *saveptr = NULL, *token;
        virDomainDiskDefPtr first_rbd_disk = NULL;
11537
        for (i = 0; i < def->ndisks; i++) {
E
Eric Blake 已提交
11538
            if (def->disks[i]->src.type == VIR_STORAGE_TYPE_NETWORK &&
11539
                def->disks[i]->src.protocol == VIR_STORAGE_NET_PROTOCOL_RBD) {
11540 11541
                first_rbd_disk = def->disks[i];
                break;
11542
            }
11543
        }
11544

11545
        if (!first_rbd_disk) {
11546 11547
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("CEPH_ARGS was set without an rbd disk"));
11548 11549
            goto error;
        }
11550

11551 11552
        /* CEPH_ARGS should be: -m host1[:port1][,host2[:port2]]... */
        if (!STRPREFIX(ceph_args, "-m ")) {
11553 11554
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not parse CEPH_ARGS '%s'"), ceph_args);
11555 11556
            goto error;
        }
11557 11558
        if (VIR_STRDUP(hosts, strchr(ceph_args, ' ') + 1) < 0)
            goto error;
11559
        first_rbd_disk->src.nhosts = 0;
11560 11561
        token = strtok_r(hosts, ",", &saveptr);
        while (token != NULL) {
11562 11563
            if (VIR_REALLOC_N(first_rbd_disk->src.hosts,
                              first_rbd_disk->src.nhosts + 1) < 0) {
11564
                VIR_FREE(hosts);
11565
                goto error;
11566 11567 11568 11569
            }
            port = strchr(token, ':');
            if (port) {
                *port++ = '\0';
11570
                if (VIR_STRDUP(port, port) < 0) {
11571
                    VIR_FREE(hosts);
11572
                    goto error;
11573 11574
                }
            }
11575 11576
            first_rbd_disk->src.hosts[first_rbd_disk->src.nhosts].port = port;
            if (VIR_STRDUP(first_rbd_disk->src.hosts[first_rbd_disk->src.nhosts].name,
11577
                           token) < 0) {
11578
                VIR_FREE(hosts);
11579
                goto error;
11580
            }
11581
            first_rbd_disk->src.hosts[first_rbd_disk->src.nhosts].transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
11582
            first_rbd_disk->src.hosts[first_rbd_disk->src.nhosts].socket = NULL;
11583

11584
            first_rbd_disk->src.nhosts++;
11585 11586 11587 11588
            token = strtok_r(NULL, ",", &saveptr);
        }
        VIR_FREE(hosts);

11589
        if (first_rbd_disk->src.nhosts == 0) {
11590 11591
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("found no rbd hosts in CEPH_ARGS '%s'"), ceph_args);
11592
            goto error;
11593 11594 11595
        }
    }

11596 11597
    if (!def->os.machine) {
        const char *defaultMachine =
11598
                        virCapabilitiesDefaultGuestMachine(qemuCaps,
11599 11600 11601 11602
                                                           def->os.type,
                                                           def->os.arch,
                                                           virDomainVirtTypeToString(def->virtType));
        if (defaultMachine != NULL)
11603 11604
            if (VIR_STRDUP(def->os.machine, defaultMachine) < 0)
                goto error;
11605 11606
    }

11607 11608 11609 11610 11611
    if (!nographics && def->ngraphics == 0) {
        virDomainGraphicsDefPtr sdl;
        const char *display = qemuFindEnv(progenv, "DISPLAY");
        const char *xauth = qemuFindEnv(progenv, "XAUTHORITY");
        if (VIR_ALLOC(sdl) < 0)
11612
            goto error;
11613 11614
        sdl->type = VIR_DOMAIN_GRAPHICS_TYPE_SDL;
        sdl->data.sdl.fullscreen = fullscreen;
11615
        if (VIR_STRDUP(sdl->data.sdl.display, display) < 0) {
11616
            VIR_FREE(sdl);
11617
            goto error;
11618
        }
11619
        if (VIR_STRDUP(sdl->data.sdl.xauth, xauth) < 0) {
11620
            VIR_FREE(sdl);
11621
            goto error;
11622 11623
        }

11624
        if (VIR_APPEND_ELEMENT(def->graphics, def->ngraphics, sdl) < 0) {
11625
            virDomainGraphicsDefFree(sdl);
11626
            goto error;
11627 11628 11629 11630 11631 11632
        }
    }

    if (def->ngraphics) {
        virDomainVideoDefPtr vid;
        if (VIR_ALLOC(vid) < 0)
11633
            goto error;
11634 11635 11636 11637 11638
        if (def->virtType == VIR_DOMAIN_VIRT_XEN)
            vid->type = VIR_DOMAIN_VIDEO_TYPE_XEN;
        else
            vid->type = video;
        vid->vram = virDomainVideoDefaultRAM(def, vid->type);
11639 11640
        vid->ram = vid->type == VIR_DOMAIN_VIDEO_TYPE_QXL ?
                       virDomainVideoDefaultRAM(def, vid->type) : 0;
11641 11642
        vid->heads = 1;

11643
        if (VIR_APPEND_ELEMENT(def->videos, def->nvideos, vid) < 0) {
11644
            virDomainVideoDefFree(vid);
11645
            goto error;
11646 11647 11648 11649 11650 11651 11652 11653 11654
        }
    }

    /*
     * having a balloon is the default, define one with type="none" to avoid it
     */
    if (!def->memballoon) {
        virDomainMemballoonDefPtr memballoon;
        if (VIR_ALLOC(memballoon) < 0)
11655
            goto error;
11656 11657 11658 11659 11660 11661 11662 11663 11664 11665
        memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO;

        def->memballoon = memballoon;
    }

    VIR_FREE(nics);

    if (virDomainDefAddImplicitControllers(def) < 0)
        goto error;

11666 11667 11668
    if (virDomainDefPostParse(def, qemuCaps, xmlopt) < 0)
        goto error;

11669
    if (cmd->num_args || cmd->num_env) {
11670
        def->ns = *virDomainXMLOptionGetNamespace(xmlopt);
11671 11672 11673
        def->namespaceData = cmd;
    }
    else
11674
        qemuDomainCmdlineDefFree(cmd);
11675 11676 11677

    return def;

11678
 error:
E
Eric Blake 已提交
11679
    virDomainDiskDefFree(disk);
11680
    qemuDomainCmdlineDefFree(cmd);
11681 11682
    virDomainDefFree(def);
    VIR_FREE(nics);
11683 11684 11685 11686 11687 11688
    if (monConfig) {
        virDomainChrSourceDefFree(*monConfig);
        *monConfig = NULL;
    }
    if (pidfile)
        VIR_FREE(*pidfile);
11689 11690 11691 11692
    return NULL;
}


11693
virDomainDefPtr qemuParseCommandLineString(virCapsPtr qemuCaps,
11694
                                           virDomainXMLOptionPtr xmlopt,
11695 11696 11697 11698
                                           const char *args,
                                           char **pidfile,
                                           virDomainChrSourceDefPtr *monConfig,
                                           bool *monJSON)
11699
{
E
Eric Blake 已提交
11700 11701
    char **progenv = NULL;
    char **progargv = NULL;
11702 11703 11704 11705 11706
    virDomainDefPtr def = NULL;

    if (qemuStringToArgvEnv(args, &progenv, &progargv) < 0)
        goto cleanup;

11707
    def = qemuParseCommandLine(qemuCaps, xmlopt, progenv, progargv,
11708
                               pidfile, monConfig, monJSON);
11709

11710
 cleanup:
E
Eric Blake 已提交
11711 11712
    virStringFreeList(progargv);
    virStringFreeList(progenv);
11713 11714 11715

    return def;
}
11716 11717


11718
static int qemuParseProcFileStrings(int pid_value,
11719
                                    const char *name,
E
Eric Blake 已提交
11720
                                    char ***list)
11721 11722 11723 11724 11725 11726 11727
{
    char *path = NULL;
    int ret = -1;
    char *data = NULL;
    ssize_t len;
    char *tmp;
    size_t nstr = 0;
11728
    char **str = NULL;
11729

11730
    if (virAsprintf(&path, "/proc/%d/%s", pid_value, name) < 0)
11731 11732 11733 11734 11735 11736 11737
        goto cleanup;

    if ((len = virFileReadAll(path, 1024*128, &data)) < 0)
        goto cleanup;

    tmp = data;
    while (tmp < (data + len)) {
11738
        if (VIR_EXPAND_N(str, nstr, 1) < 0)
11739 11740
            goto cleanup;

11741
        if (VIR_STRDUP(str[nstr-1], tmp) < 0)
11742 11743 11744 11745 11746 11747 11748
            goto cleanup;
        /* Skip arg */
        tmp += strlen(tmp);
        /* Skip \0 separator */
        tmp++;
    }

11749
    if (VIR_EXPAND_N(str, nstr, 1) < 0)
11750 11751 11752 11753 11754
        goto cleanup;

    str[nstr-1] = NULL;

    ret = nstr-1;
E
Eric Blake 已提交
11755
    *list = str;
11756

11757
 cleanup:
E
Eric Blake 已提交
11758 11759
    if (ret < 0)
        virStringFreeList(str);
11760 11761 11762 11763 11764
    VIR_FREE(data);
    VIR_FREE(path);
    return ret;
}

11765
virDomainDefPtr qemuParseCommandLinePid(virCapsPtr qemuCaps,
11766
                                        virDomainXMLOptionPtr xmlopt,
11767
                                        pid_t pid,
11768 11769 11770 11771 11772
                                        char **pidfile,
                                        virDomainChrSourceDefPtr *monConfig,
                                        bool *monJSON)
{
    virDomainDefPtr def = NULL;
E
Eric Blake 已提交
11773 11774
    char **progargv = NULL;
    char **progenv = NULL;
11775 11776 11777
    char *exepath = NULL;
    char *emulator;

11778 11779 11780 11781
    /* The parser requires /proc/pid, which only exists on platforms
     * like Linux where pid_t fits in int.  */
    if ((int) pid != pid ||
        qemuParseProcFileStrings(pid, "cmdline", &progargv) < 0 ||
11782 11783 11784
        qemuParseProcFileStrings(pid, "environ", &progenv) < 0)
        goto cleanup;

11785
    if (!(def = qemuParseCommandLine(qemuCaps, xmlopt, progenv, progargv,
11786 11787 11788
                                     pidfile, monConfig, monJSON)))
        goto cleanup;

11789
    if (virAsprintf(&exepath, "/proc/%d/exe", (int) pid) < 0)
11790 11791 11792 11793 11794
        goto cleanup;

    if (virFileResolveLink(exepath, &emulator) < 0) {
        virReportSystemError(errno,
                             _("Unable to resolve %s for pid %u"),
11795
                             exepath, (int) pid);
11796 11797 11798 11799 11800
        goto cleanup;
    }
    VIR_FREE(def->emulator);
    def->emulator = emulator;

11801
 cleanup:
11802
    VIR_FREE(exepath);
E
Eric Blake 已提交
11803 11804
    virStringFreeList(progargv);
    virStringFreeList(progenv);
11805 11806
    return def;
}