qemu_command.c 436.7 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 "virnetdevbridge.h"
39
#include "virstring.h"
40
#include "virtime.h"
41
#include "viruuid.h"
42 43
#include "c-ctype.h"
#include "domain_nwfilter.h"
44
#include "domain_addr.h"
45
#include "domain_audit.h"
M
Michal Novotny 已提交
46
#include "domain_conf.h"
47
#include "netdev_bandwidth_conf.h"
48
#include "snapshot_conf.h"
49
#include "storage_conf.h"
50
#include "secret_conf.h"
51
#include "network/bridge_driver.h"
52
#include "virnetdevtap.h"
53
#include "base64.h"
54
#include "device_conf.h"
55
#include "virstoragefile.h"
56
#include "virtpm.h"
57
#include "virscsi.h"
58
#include "virnuma.h"
59 60 61
#if defined(__linux__)
# include <linux/capability.h>
#endif
62 63 64 65 66 67

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

#define VIR_FROM_THIS VIR_FROM_QEMU

68 69
VIR_LOG_INIT("qemu.qemu_command");

70 71 72 73
#define VIO_ADDR_NET 0x1000ul
#define VIO_ADDR_SCSI 0x2000ul
#define VIO_ADDR_SERIAL 0x30000000ul
#define VIO_ADDR_NVRAM 0x3000ul
74 75 76 77 78 79 80 81 82 83

VIR_ENUM_DECL(virDomainDiskQEMUBus)
VIR_ENUM_IMPL(virDomainDiskQEMUBus, VIR_DOMAIN_DISK_BUS_LAST,
              "ide",
              "floppy",
              "scsi",
              "virtio",
              "xen",
              "usb",
              "uml",
84 85
              "sata",
              "sd")
86 87 88 89 90 91 92 93


VIR_ENUM_DECL(qemuDiskCacheV1)
VIR_ENUM_DECL(qemuDiskCacheV2)

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

VIR_ENUM_IMPL(qemuDiskCacheV2, VIR_DOMAIN_DISK_CACHE_LAST,
              "default",
              "none",
              "writethrough",
103
              "writeback",
104 105
              "directsync",
              "unsafe");
106 107 108 109 110 111 112 113 114 115 116

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");

117 118 119 120 121 122 123 124 125 126
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");

127 128 129 130 131 132
VIR_ENUM_DECL(qemuSoundCodec)

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

133 134 135 136 137 138 139 140 141 142 143
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 已提交
144
              "pci-ohci",
145 146
              "nec-usb-xhci",
              "none");
147

148 149 150 151
VIR_ENUM_DECL(qemuDomainFSDriver)
VIR_ENUM_IMPL(qemuDomainFSDriver, VIR_DOMAIN_FS_DRIVER_TYPE_LAST,
              "local",
              "local",
152
              "handle",
153
              NULL,
154
              NULL);
155

156 157 158 159 160
VIR_ENUM_DECL(qemuNumaPolicy)
VIR_ENUM_IMPL(qemuNumaPolicy, VIR_DOMAIN_NUMATUNE_MEM_LAST,
              "bind",
              "preferred",
              "interleave");
161

162 163
/**
 * qemuPhysIfaceConnect:
164
 * @def: the definition of the VM (needed by 802.1Qbh and audit)
165
 * @driver: pointer to the driver instance
W
Wang Rui 已提交
166
 * @net: pointer to the VM's interface description with direct device type
167
 * @qemuCaps: flags for qemu
M
Michael Wood 已提交
168
 * @vmop: VM operation type
169 170 171 172
 *
 * Returns a filedescriptor on success or -1 in case of error.
 */
int
173
qemuPhysIfaceConnect(virDomainDefPtr def,
174
                     virQEMUDriverPtr driver,
175
                     virDomainNetDefPtr net,
176
                     virQEMUCapsPtr qemuCaps,
177
                     virNetDevVPortProfileOp vmop)
178 179 180 181
{
    int rc;
    char *res_ifname = NULL;
    int vnet_hdr = 0;
182
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
183
    unsigned int macvlan_create_flags = VIR_NETDEV_MACVLAN_CREATE_WITH_TAP;
184

185
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNET_HDR) &&
186 187 188
        net->model && STREQ(net->model, "virtio"))
        vnet_hdr = 1;

189
    rc = virNetDevMacVLanCreateWithVPortProfile(
190
        net->ifname, &net->mac,
191 192
        virDomainNetGetActualDirectDev(net),
        virDomainNetGetActualDirectMode(net),
193
        vnet_hdr, def->uuid,
194
        virDomainNetGetActualVirtPortProfile(net),
195
        &res_ifname,
196
        vmop, cfg->stateDir,
197
        macvlan_create_flags);
198
    if (rc >= 0) {
199
        virDomainAuditNetDevice(def, net, res_ifname, true);
200 201 202 203
        VIR_FREE(net->ifname);
        net->ifname = res_ifname;
    }

204
    virObjectUnref(cfg);
205 206 207 208
    return rc;
}


209 210 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
/**
 * 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]);
248 249
    virCommandPassFD(cmd, pair[1],
                     VIR_COMMAND_PASS_FD_CLOSE_PARENT);
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
    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 ||
269
        virCommandWait(cmd, NULL) < 0) {
270 271 272 273
        VIR_FORCE_CLOSE(*tapfd);
        *tapfd = -1;
    }

274
 cleanup:
275 276 277 278 279
    virCommandFree(cmd);
    VIR_FORCE_CLOSE(pair[0]);
    return *tapfd < 0 ? -1 : 0;
}

280 281 282 283 284
/* qemuNetworkIfaceConnect - *only* called if actualType is
 * VIR_DOMAIN_NET_TYPE_NETWORK or VIR_DOMAIN_NET_TYPE_BRIDGE (i.e. if
 * the connection is made with a tap device connecting to a bridge
 * device)
 */
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
    const char *brname;
295
    int ret = -1;
296
    unsigned int tap_create_flags = VIR_NETDEV_TAP_CREATE_IFUP;
E
Eric Blake 已提交
297
    bool template_ifname = false;
298
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
299 300 301 302
    const char *tunpath = "/dev/net/tun";

    if (net->backend.tap)
        tunpath = net->backend.tap;
303

304 305 306
    if (!(brname = virDomainNetGetActualBridgeName(net))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Missing bridge name"));
        goto cleanup;
307 308 309
    }

    if (!net->ifname ||
E
Eric Blake 已提交
310
        STRPREFIX(net->ifname, VIR_NET_GENERATED_PREFIX) ||
311 312
        strchr(net->ifname, '%')) {
        VIR_FREE(net->ifname);
313
        if (VIR_STRDUP(net->ifname, VIR_NET_GENERATED_PREFIX "%d") < 0)
314
            goto cleanup;
315
        /* avoid exposing vnet%d in getXMLDesc or error outputs */
E
Eric Blake 已提交
316
        template_ifname = true;
317 318
    }

319
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNET_HDR) &&
320 321 322
        net->model && STREQ(net->model, "virtio")) {
        tap_create_flags |= VIR_NETDEV_TAP_CREATE_VNET_HDR;
    }
323

324 325
    if (cfg->privileged) {
        if (virNetDevTapCreateInBridgePort(brname, &net->ifname, &net->mac,
326
                                           def->uuid, tunpath, tapfd, *tapfdSize,
327 328 329
                                           virDomainNetGetActualVirtPortProfile(net),
                                           virDomainNetGetActualVlan(net),
                                           tap_create_flags) < 0) {
330
            virDomainAuditNetDevice(def, net, tunpath, false);
331 332
            goto cleanup;
        }
333 334 335 336 337
        if (virDomainNetGetActualBridgeMACTableManager(net)
            == VIR_NETWORK_BRIDGE_MAC_TABLE_MANAGER_LIBVIRT) {
            /* libvirt is managing the FDB of the bridge this device
             * is attaching to, so we need to turn off learning and
             * unicast_flood on the device to prevent the kernel from
338 339 340
             * adding any FDB entries for it. We will add add an fdb
             * entry ourselves (during qemuInterfaceStartDevices(),
             * using the MAC address from the interface config.
341 342 343 344 345 346
             */
            if (virNetDevBridgePortSetLearning(brname, net->ifname, false) < 0)
                goto cleanup;
            if (virNetDevBridgePortSetUnicastFlood(brname, net->ifname, false) < 0)
                goto cleanup;
        }
347 348 349 350
    } else {
        if (qemuCreateInBridgePortWithHelper(cfg, brname,
                                             &net->ifname,
                                             tapfd, tap_create_flags) < 0) {
351
            virDomainAuditNetDevice(def, net, tunpath, false);
352 353 354 355 356 357 358
            goto cleanup;
        }
        /* qemuCreateInBridgePortWithHelper can only create a single FD */
        if (*tapfdSize > 1) {
            VIR_WARN("Ignoring multiqueue network request");
            *tapfdSize = 1;
        }
359 360
    }

361
    virDomainAuditNetDevice(def, net, tunpath, true);
362 363

    if (cfg->macFilter &&
364 365 366 367
        ebtablesAddForwardAllowIn(driver->ebtables,
                                  net->ifname,
                                  &net->mac) < 0)
        goto cleanup;
368

369
    if (net->filter &&
370 371
        virDomainConfNWFilterInstantiate(conn, def->uuid, net) < 0) {
        goto cleanup;
372 373
    }

374 375
    ret = 0;

376
 cleanup:
377
    if (ret < 0) {
378
        size_t i;
379
        for (i = 0; i < *tapfdSize && tapfd[i] >= 0; i++)
380 381 382 383
            VIR_FORCE_CLOSE(tapfd[i]);
        if (template_ifname)
            VIR_FREE(net->ifname);
    }
384
    virObjectUnref(cfg);
385

386
    return ret;
387 388
}

389
static bool
390 391 392
qemuDomainSupportsNicdev(virDomainDefPtr def,
                         virQEMUCapsPtr qemuCaps,
                         virDomainNetDefPtr net)
393 394 395 396
{
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
        return false;

397
    /* non-virtio ARM nics require legacy -net nic */
398 399
    if (((def->os.arch == VIR_ARCH_ARMV7L) ||
        (def->os.arch == VIR_ARCH_AARCH64)) &&
400
        net->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
401 402 403 404 405 406
        return false;

    return true;
}

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

416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
/**
 * 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
 */
431
int
432 433
qemuOpenVhostNet(virDomainDefPtr def,
                 virDomainNetDefPtr net,
434
                 virQEMUCapsPtr qemuCaps,
435 436
                 int *vhostfd,
                 int *vhostfdSize)
437
{
438
    size_t i;
439 440 441 442
    const char *vhostnet_path = net->backend.vhost;

    if (!vhostnet_path)
        vhostnet_path = "/dev/vhost-net";
443

444 445 446 447
    /* 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) {
448 449
        *vhostfdSize = 0;
        return 0;
450 451 452 453 454
    }

    /* If qemu doesn't support vhost-net mode (including the -netdev command
     * option), don't try to open the device.
     */
455
    if (!(virQEMUCapsGet(qemuCaps, QEMU_CAPS_VHOST_NET) &&
456
          qemuDomainSupportsNetdev(def, qemuCaps, net))) {
457
        if (net->driver.virtio.name == VIR_DOMAIN_NET_BACKEND_TYPE_VHOST) {
458 459 460
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("vhost-net is not supported with "
                                   "this QEMU binary"));
461 462
            return -1;
        }
463
        *vhostfdSize = 0;
464 465
        return 0;
    }
466

467 468
    /* If the nic model isn't virtio, don't try to open. */
    if (!(net->model && STREQ(net->model, "virtio"))) {
469
        if (net->driver.virtio.name == VIR_DOMAIN_NET_BACKEND_TYPE_VHOST) {
470 471 472
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("vhost-net is only supported for "
                                   "virtio network interfaces"));
473 474
            return -1;
        }
475
        *vhostfdSize = 0;
476 477 478
        return 0;
    }

479
    for (i = 0; i < *vhostfdSize; i++) {
480
        vhostfd[i] = open(vhostnet_path, O_RDWR);
481

482 483 484 485
        /* If the config says explicitly to use vhost and we couldn't open it,
         * report an error.
         */
        if (vhostfd[i] < 0) {
486
            virDomainAuditNetDevice(def, net, vhostnet_path, false);
487 488 489 490 491 492
            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;
            }
493
            VIR_WARN("Unable to open vhost-net. Opened so far %zu, requested %d",
494 495 496
                     i, *vhostfdSize);
            *vhostfdSize = i;
            break;
497
        }
498
    }
499
    virDomainAuditNetDevice(def, net, vhostnet_path, *vhostfdSize);
500
    return 0;
501

502
 error:
503 504 505 506
    while (i--)
        VIR_FORCE_CLOSE(vhostfd[i]);

    return -1;
507 508
}

509 510 511 512
int
qemuNetworkPrepareDevices(virDomainDefPtr def)
{
    int ret = -1;
513
    size_t i;
514

515 516
    for (i = 0; i < def->nnets; i++) {
        virDomainNetDefPtr net = def->nets[i];
517 518 519 520 521 522
        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.
         */
523
        if (networkAllocateActualDevice(def, net) < 0)
524 525 526 527 528 529 530 531 532 533 534 535 536
            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);
537
            virDomainHostdevSubsysPCIPtr pcisrc = &hostdev->source.subsys.u.pci;
538 539 540 541 542 543

            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"),
544 545 546
                               pcisrc->addr.domain, pcisrc->addr.bus,
                               pcisrc->addr.slot, pcisrc->addr.function,
                               net->data.network.name, def->name);
547 548
                goto cleanup;
            }
549
            if (virDomainHostdevInsert(def, hostdev) < 0)
550 551 552 553
                goto cleanup;
        }
    }
    ret = 0;
554
 cleanup:
555 556
    return ret;
}
557

558
static int qemuDomainDeviceAliasIndex(const virDomainDeviceInfo *info,
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
                                      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)
{
584
    char *dev_name;
585

586 587 588
    if (VIR_STRDUP(dev_name,
                   disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM &&
                   STREQ(disk->dst, "hdc") ? "cdrom" : disk->dst) < 0)
589
        return -1;
590
    disk->info.alias = dev_name;
591 592 593 594 595
    return 0;
}


char *qemuDeviceDriveHostAlias(virDomainDiskDefPtr disk,
596
                               virQEMUCapsPtr qemuCaps)
597 598 599
{
    char *ret;

600
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
601 602
        ignore_value(virAsprintf(&ret, "%s%s", QEMU_DRIVE_HOST_PREFIX,
                                 disk->info.alias));
603
    } else {
604
        ignore_value(VIR_STRDUP(ret, disk->info.alias));
605 606 607 608 609 610 611 612 613 614
    }
    return ret;
}


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

    if (virDiskNameToBusDeviceIndex(disk, &busid, &devid) < 0) {
618 619 620
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot convert disk '%s' to bus/device index"),
                       disk->dst);
621 622 623 624 625
        return -1;
    }

    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_IDE:
626
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK)
627
            ret = virAsprintf(&dev_name, "ide%d-hd%d", busid, devid);
628
        else
629
            ret = virAsprintf(&dev_name, "ide%d-cd%d", busid, devid);
630 631 632
        break;
    case VIR_DOMAIN_DISK_BUS_SCSI:
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK)
633
            ret = virAsprintf(&dev_name, "scsi%d-hd%d", busid, devid);
634
        else
635
            ret = virAsprintf(&dev_name, "scsi%d-cd%d", busid, devid);
636 637
        break;
    case VIR_DOMAIN_DISK_BUS_FDC:
638
        ret = virAsprintf(&dev_name, "floppy%d", devid);
639 640
        break;
    case VIR_DOMAIN_DISK_BUS_VIRTIO:
641
        ret = virAsprintf(&dev_name, "virtio%d", devid);
642 643
        break;
    case VIR_DOMAIN_DISK_BUS_XEN:
644
        ret = virAsprintf(&dev_name, "xenblk%d", devid);
645
        break;
646 647 648
    case VIR_DOMAIN_DISK_BUS_SD:
        ret = virAsprintf(&dev_name, "sd%d", devid);
        break;
649
    default:
650 651 652
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported disk name mapping for bus '%s'"),
                       virDomainDiskBusTypeToString(disk->bus));
653 654 655
        return -1;
    }

656
    if (ret == -1)
657 658
        return -1;

659
    disk->info.alias = dev_name;
660 661 662 663

    return 0;
}

664
static int
665
qemuSetSCSIControllerModel(virDomainDefPtr def,
666
                           virQEMUCapsPtr qemuCaps,
667
                           int *model)
668 669 670 671
{
    if (*model > 0) {
        switch (*model) {
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC:
672
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_LSI)) {
673 674
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support "
675
                                 "the LSI 53C895A SCSI controller"));
676 677 678 679
                return -1;
            }
            break;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI:
680
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_SCSI)) {
681 682 683 684 685 686 687 688 689
                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;
690 691 692 693 694 695 696 697
        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;
698 699 700 701 702 703
        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported controller model: %s"),
                           virDomainControllerModelSCSITypeToString(*model));
            return -1;
        }
704
    } else {
705
        if (ARCH_IS_PPC64(def->os.arch) &&
706
            STRPREFIX(def->os.machine, "pseries")) {
707
            *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI;
708
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_LSI)) {
709
            *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC;
710 711
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_SCSI)) {
            *model = VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI;
712 713 714 715 716
        } else {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Unable to determine model for scsi controller"));
            return -1;
        }
717
    }
718 719

    return 0;
720
}
721 722

/* Our custom -drive naming scheme used with id= */
723 724
static int
qemuAssignDeviceDiskAliasCustom(virDomainDefPtr def,
725
                                virDomainDiskDefPtr disk,
726
                                virQEMUCapsPtr qemuCaps)
727 728
{
    const char *prefix = virDomainDiskBusTypeToString(disk->bus);
729 730
    int controllerModel = -1;

731
    if (disk->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
732 733
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
            controllerModel =
H
Han Cheng 已提交
734 735
                virDomainDeviceFindControllerModel(def, &disk->info,
                                                   VIR_DOMAIN_CONTROLLER_TYPE_SCSI);
736

737
            if ((qemuSetSCSIControllerModel(def, qemuCaps, &controllerModel)) < 0)
738 739
                return -1;
        }
740 741 742 743 744 745 746

        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)
747
                return -1;
748 749 750 751 752 753
        } 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)
754
                return -1;
755
        }
756 757 758
    } else {
        int idx = virDiskNameToIndex(disk->dst);
        if (virAsprintf(&disk->info.alias, "%s-disk%d", prefix, idx) < 0)
759
            return -1;
760 761 762 763 764 765 766
    }

    return 0;
}


int
767 768
qemuAssignDeviceDiskAlias(virDomainDefPtr vmdef,
                          virDomainDiskDefPtr def,
769
                          virQEMUCapsPtr qemuCaps)
770
{
771 772 773
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE)) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
            return qemuAssignDeviceDiskAliasCustom(vmdef, def, qemuCaps);
774 775 776 777 778 779 780 781 782 783 784 785
        else
            return qemuAssignDeviceDiskAliasFixed(def);
    } else {
        return qemuAssignDeviceDiskAliasLegacy(def);
    }
}


int
qemuAssignDeviceNetAlias(virDomainDefPtr def, virDomainNetDefPtr net, int idx)
{
    if (idx == -1) {
786
        size_t i;
787
        idx = 0;
788
        for (i = 0; i < def->nnets; i++) {
789
            int thisidx;
790

791 792
            if (virDomainNetGetActualType(def->nets[i])
                == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
793 794 795
                /* type='hostdev' interfaces have a hostdev%d alias */
               continue;
            }
796
            if ((thisidx = qemuDomainDeviceAliasIndex(&def->nets[i]->info, "net")) < 0) {
797 798
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Unable to determine device index for network device"));
799 800 801 802 803 804 805
                return -1;
            }
            if (thisidx >= idx)
                idx = thisidx + 1;
        }
    }

806 807 808
    if (virAsprintf(&net->info.alias, "net%d", idx) < 0)
        return -1;
    return 0;
809 810 811 812 813 814 815
}


int
qemuAssignDeviceHostdevAlias(virDomainDefPtr def, virDomainHostdevDefPtr hostdev, int idx)
{
    if (idx == -1) {
816
        size_t i;
817
        idx = 0;
818
        for (i = 0; i < def->nhostdevs; i++) {
819
            int thisidx;
820
            if ((thisidx = qemuDomainDeviceAliasIndex(def->hostdevs[i]->info, "hostdev")) < 0) {
821 822
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Unable to determine device index for hostdev device"));
823 824 825 826 827 828 829
                return -1;
            }
            if (thisidx >= idx)
                idx = thisidx + 1;
        }
    }

830
    if (virAsprintf(&hostdev->info->alias, "hostdev%d", idx) < 0)
831 832 833 834 835 836
        return -1;

    return 0;
}


837 838 839 840
int
qemuAssignDeviceRedirdevAlias(virDomainDefPtr def, virDomainRedirdevDefPtr redirdev, int idx)
{
    if (idx == -1) {
841
        size_t i;
842
        idx = 0;
843
        for (i = 0; i < def->nredirdevs; i++) {
844 845
            int thisidx;
            if ((thisidx = qemuDomainDeviceAliasIndex(&def->redirdevs[i]->info, "redir")) < 0) {
846 847
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Unable to determine device index for redirected device"));
848 849 850 851 852 853 854
                return -1;
            }
            if (thisidx >= idx)
                idx = thisidx + 1;
        }
    }

855 856 857
    if (virAsprintf(&redirdev->info.alias, "redir%d", idx) < 0)
        return -1;
    return 0;
858 859 860
}


861 862 863 864 865
int
qemuAssignDeviceControllerAlias(virDomainControllerDefPtr controller)
{
    const char *prefix = virDomainControllerTypeToString(controller->type);

866 867 868 869 870 871 872 873 874 875 876 877
    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);
878 879
}

880 881 882 883 884
static ssize_t
qemuGetNextChrDevIndex(virDomainDefPtr def,
                       virDomainChrDefPtr chr,
                       const char *prefix)
{
885 886
    const virDomainChrDef **arrPtr;
    size_t cnt;
887 888 889 890 891 892 893
    size_t i;
    ssize_t idx = 0;
    const char *prefix2 = NULL;

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

894
    virDomainChrGetDomainPtrs(def, chr->deviceType, &arrPtr, &cnt);
895

896
    for (i = 0; i < cnt; i++) {
897
        ssize_t thisidx;
898
        if (((thisidx = qemuDomainDeviceAliasIndex(&arrPtr[i]->info, prefix)) < 0) &&
899
            (prefix2 &&
900
             (thisidx = qemuDomainDeviceAliasIndex(&arrPtr[i]->info, prefix2)) < 0)) {
901 902 903 904 905 906 907 908 909 910 911 912
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Unable to determine device index for character device"));
            return -1;
        }
        if (thisidx >= idx)
            idx = thisidx + 1;
    }

    return idx;
}


913
int
914
qemuAssignDeviceChrAlias(virDomainDefPtr def,
915 916 917 918 919
                         virDomainChrDefPtr chr,
                         ssize_t idx)
{
    const char *prefix = NULL;

920
    switch ((virDomainChrDeviceType) chr->deviceType) {
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
    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;
    }

941 942 943
    if (idx == -1 && (idx = qemuGetNextChrDevIndex(def, chr, prefix)) < 0)
        return -1;

944 945
    return virAsprintf(&chr->info.alias, "%s%zd", prefix, idx);
}
946

947
int
948
qemuAssignDeviceAliases(virDomainDefPtr def, virQEMUCapsPtr qemuCaps)
949
{
950
    size_t i;
951

952
    for (i = 0; i < def->ndisks; i++) {
953
        if (qemuAssignDeviceDiskAlias(def, def->disks[i], qemuCaps) < 0)
954 955
            return -1;
    }
956 957
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NET_NAME) ||
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
958
        for (i = 0; i < def->nnets; i++) {
959 960 961
            /* type='hostdev' interfaces are also on the hostdevs list,
             * and will have their alias assigned with other hostdevs.
             */
962 963 964
            if (virDomainNetGetActualType(def->nets[i])
                != VIR_DOMAIN_NET_TYPE_HOSTDEV &&
                qemuAssignDeviceNetAlias(def, def->nets[i], i) < 0) {
965
                return -1;
966
            }
967 968 969
        }
    }

970
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
971 972
        return 0;

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

    return 0;
}

1049

1050
static void
1051
qemuDomainPrimeVirtioDeviceAddresses(virDomainDefPtr def,
1052
                                     virDomainDeviceAddressType type)
1053 1054 1055
{
    /*
       declare address-less virtio devices to be of address type 'type'
1056 1057
       disks, networks, consoles, controllers, memballoon and rng in this
       order
1058
    */
1059
    size_t i;
1060

1061
    for (i = 0; i < def->ndisks; i++) {
1062 1063 1064 1065 1066
        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;
    }

1067
    for (i = 0; i < def->nnets; i++) {
E
Eric Blake 已提交
1068
        if (STREQ(def->nets[i]->model, "virtio") &&
1069
            def->nets[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
1070
            def->nets[i]->info.type = type;
1071
        }
1072 1073
    }

1074
    for (i = 0; i < def->ncontrollers; i++) {
1075 1076 1077 1078
        if ((def->controllers[i]->type ==
             VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL ||
             def->controllers[i]->type ==
             VIR_DOMAIN_CONTROLLER_TYPE_SCSI) &&
1079 1080 1081 1082 1083
            def->controllers[i]->info.type ==
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            def->controllers[i]->info.type = type;
    }

1084 1085 1086 1087
    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;
1088

1089 1090 1091 1092 1093
    for (i = 0; i < def->nrngs; i++) {
        if (def->rngs[i]->model == VIR_DOMAIN_RNG_MODEL_VIRTIO &&
            def->rngs[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            def->rngs[i]->info.type = type;
    }
1094 1095
}

1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106

/*
 * 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)
1107
{
1108
    int ret = -1;
J
Ján Tomko 已提交
1109
    virDomainCCWAddressSetPtr addrs = NULL;
1110 1111 1112 1113
    qemuDomainObjPrivatePtr priv = NULL;

    if (STREQLEN(def->os.machine, "s390-ccw", 8) &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_CCW)) {
1114
        qemuDomainPrimeVirtioDeviceAddresses(
1115 1116
            def, VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW);

J
Ján Tomko 已提交
1117
        if (!(addrs = virDomainCCWAddressSetCreate()))
1118 1119
            goto cleanup;

J
Ján Tomko 已提交
1120
        if (virDomainDeviceInfoIterate(def, virDomainCCWAddressValidate,
1121 1122 1123
                                       addrs) < 0)
            goto cleanup;

J
Ján Tomko 已提交
1124
        if (virDomainDeviceInfoIterate(def, virDomainCCWAddressAllocate,
1125 1126 1127 1128
                                       addrs) < 0)
            goto cleanup;
    } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_S390)) {
        /* deal with legacy virtio-s390 */
1129
        qemuDomainPrimeVirtioDeviceAddresses(
1130
            def, VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390);
1131 1132 1133 1134 1135 1136
    }

    if (obj && obj->privateData) {
        priv = obj->privateData;
        if (addrs) {
            /* if this is the live domain object, we persist the CCW addresses*/
J
Ján Tomko 已提交
1137
            virDomainCCWAddressSetFree(priv->ccwaddrs);
1138 1139 1140 1141 1142 1143 1144 1145 1146
            priv->persistentAddrs = 1;
            priv->ccwaddrs = addrs;
            addrs = NULL;
        } else {
            priv->persistentAddrs = 0;
        }
    }
    ret = 0;

1147
 cleanup:
J
Ján Tomko 已提交
1148
    virDomainCCWAddressSetFree(addrs);
1149 1150

    return ret;
1151
}
1152

1153 1154 1155 1156
static int
qemuDomainAssignARMVirtioMMIOAddresses(virDomainDefPtr def,
                                       virQEMUCapsPtr qemuCaps)
{
1157 1158
    if (((def->os.arch == VIR_ARCH_ARMV7L) ||
        (def->os.arch == VIR_ARCH_AARCH64)) &&
1159 1160
        (STRPREFIX(def->os.machine, "vexpress-") ||
            STREQ(def->os.machine, "virt")) &&
1161 1162 1163 1164 1165 1166
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIRTIO_MMIO)) {
        qemuDomainPrimeVirtioDeviceAddresses(
            def, VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO);
    }
    return 0;
}
1167

1168 1169
static int
qemuSpaprVIOFindByReg(virDomainDefPtr def ATTRIBUTE_UNUSED,
1170
                      virDomainDeviceDefPtr device ATTRIBUTE_UNUSED,
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
                      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;
1192
    int ret;
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203

    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;
    }

1204 1205
    ret = virDomainDeviceInfoIterate(def, qemuSpaprVIOFindByReg, info);
    while (ret != 0) {
1206
        if (user_reg) {
1207 1208 1209
            virReportError(VIR_ERR_XML_ERROR,
                           _("spapr-vio address %#llx already in use"),
                           info->addr.spaprvio.reg);
1210 1211 1212 1213 1214
            return -EEXIST;
        }

        /* We assigned the reg, so try a new value */
        info->addr.spaprvio.reg += 0x1000;
1215
        ret = virDomainDeviceInfoIterate(def, qemuSpaprVIOFindByReg, info);
1216 1217 1218 1219 1220
    }

    return 0;
}

1221
int qemuDomainAssignSpaprVIOAddresses(virDomainDefPtr def,
1222
                                      virQEMUCapsPtr qemuCaps)
1223
{
1224 1225
    size_t i;
    int ret = -1;
1226
    int model;
1227 1228 1229

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

1230
    for (i = 0; i < def->nnets; i++) {
1231 1232 1233
        if (def->nets[i]->model &&
            STREQ(def->nets[i]->model, "spapr-vlan"))
            def->nets[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
1234
        if (qemuAssignSpaprVIOAddress(def, &def->nets[i]->info,
1235
                                      VIO_ADDR_NET) < 0)
1236
            goto cleanup;
1237 1238
    }

1239
    for (i = 0; i < def->ncontrollers; i++) {
1240
        model = def->controllers[i]->model;
1241
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
1242
            if (qemuSetSCSIControllerModel(def, qemuCaps, &model) < 0)
1243 1244 1245
                goto cleanup;
        }

1246
        if (model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI &&
1247
            def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI)
1248
            def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
1249
        if (qemuAssignSpaprVIOAddress(def, &def->controllers[i]->info,
1250
                                      VIO_ADDR_SCSI) < 0)
1251
            goto cleanup;
1252 1253
    }

1254
    for (i = 0; i < def->nserials; i++) {
1255
        if (def->serials[i]->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
1256
            ARCH_IS_PPC64(def->os.arch) &&
1257
            STRPREFIX(def->os.machine, "pseries"))
1258
            def->serials[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
1259
        if (qemuAssignSpaprVIOAddress(def, &def->serials[i]->info,
1260 1261 1262 1263 1264
                                      VIO_ADDR_SERIAL) < 0)
            goto cleanup;
    }

    if (def->nvram) {
1265
        if (ARCH_IS_PPC64(def->os.arch) &&
1266
            STRPREFIX(def->os.machine, "pseries"))
1267 1268 1269
            def->nvram->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
        if (qemuAssignSpaprVIOAddress(def, &def->nvram->info,
                                      VIO_ADDR_NVRAM) < 0)
1270
            goto cleanup;
1271 1272 1273 1274
    }

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

1275
    ret = 0;
1276

1277
 cleanup:
1278
    return ret;
1279
}
1280 1281


1282 1283 1284 1285 1286
static int
qemuCollectPCIAddress(virDomainDefPtr def ATTRIBUTE_UNUSED,
                      virDomainDeviceDefPtr device,
                      virDomainDeviceInfoPtr info,
                      void *opaque)
1287
{
1288
    virDomainPCIAddressSetPtr addrs = opaque;
1289
    int ret = -1;
1290
    virDevicePCIAddressPtr addr = &info->addr.pci;
1291
    bool entireSlot;
1292
    /* flags may be changed from default below */
1293 1294
    virDomainPCIConnectFlags flags = (VIR_PCI_CONNECT_HOTPLUGGABLE |
                                      VIR_PCI_CONNECT_TYPE_PCI);
1295

1296 1297 1298 1299 1300 1301 1302
    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.
        */
1303
        return 0;
1304
    }
1305

1306 1307 1308
    /* Change flags according to differing requirements of different
     * devices.
     */
1309 1310 1311 1312 1313 1314 1315 1316 1317
    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.
                 */
1318
                flags = VIR_PCI_CONNECT_TYPE_PCI;
1319 1320 1321 1322 1323
                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.
                 */
1324
                flags = VIR_PCI_CONNECT_TYPE_PCIE;
1325 1326 1327 1328
                break;
            default:
                break;
            }
1329
            break;
1330 1331 1332 1333

        case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
            /* SATA controllers aren't hot-plugged, and can be put in
             * either a PCI or PCIe slot
1334
             */
1335
            flags = VIR_PCI_CONNECT_TYPE_PCI | VIR_PCI_CONNECT_TYPE_PCIE;
1336
            break;
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348

        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:
1349 1350
              flags = (VIR_PCI_CONNECT_TYPE_PCI |
                       VIR_PCI_CONNECT_TYPE_EITHER_IF_CONFIG);
1351 1352 1353 1354 1355
              break;
           case VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI:
              /* should this be PCIE-only? Or do we need to allow PCI
               * for backward compatibility?
               */
1356
              flags = VIR_PCI_CONNECT_TYPE_PCI | VIR_PCI_CONNECT_TYPE_PCIE;
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
              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:
1370
        case VIR_DOMAIN_SOUND_MODEL_ICH9:
1371 1372
            flags = (VIR_PCI_CONNECT_TYPE_PCI |
                     VIR_PCI_CONNECT_TYPE_EITHER_IF_CONFIG);
1373
            break;
1374
        }
1375
        break;
1376

1377 1378 1379 1380
    case VIR_DOMAIN_DEVICE_VIDEO:
        /* video cards aren't hot-plugged, and can be put in either a
         * PCI or PCIe slot
         */
1381
        flags = VIR_PCI_CONNECT_TYPE_PCI | VIR_PCI_CONNECT_TYPE_PCIE;
1382 1383
        break;
    }
1384

1385 1386 1387 1388 1389 1390
    /* 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().
1391 1392 1393 1394 1395
     */

    /* 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.
1396 1397 1398 1399
     */
    if (device->type == VIR_DOMAIN_DEVICE_CONTROLLER && addr->domain == 0 &&
        addr->bus == 0 && addr->slot == 1) {
        virDomainControllerDefPtr cont = device->data.controller;
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412

        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 &&
1413
                !(addrs->buses[0].flags & VIR_PCI_CONNECT_TYPE_PCI)) {
1414 1415 1416 1417 1418 1419 1420 1421
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Bus 0 must be PCI for integrated PIIX3 "
                                 "USB or IDE controllers"));
                return -1;
            } else {
                return 0;
            }
        }
1422 1423
    }

1424
    entireSlot = (addr->function == 0 &&
J
Ján Tomko 已提交
1425
                  addr->multi != VIR_TRISTATE_SWITCH_ON);
1426

1427 1428
    if (virDomainPCIAddressReserveAddr(addrs, addr, flags,
                                       entireSlot, true) < 0)
1429
        goto cleanup;
1430

1431
    ret = 0;
1432
 cleanup:
1433
    return ret;
1434 1435
}

1436
static bool
1437 1438
qemuDomainSupportsPCI(virDomainDefPtr def)
{
1439
    if ((def->os.arch != VIR_ARCH_ARMV7L) && (def->os.arch != VIR_ARCH_AARCH64))
1440 1441 1442 1443 1444 1445 1446
        return true;

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

    return false;
}
1447

1448
int
1449
qemuDomainAssignPCIAddresses(virDomainDefPtr def,
1450
                             virQEMUCapsPtr qemuCaps,
1451
                             virDomainObjPtr obj)
1452 1453
{
    int ret = -1;
1454
    virDomainPCIAddressSetPtr addrs = NULL;
1455
    qemuDomainObjPrivatePtr priv = NULL;
1456

1457
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
1458
        int max_idx = -1;
1459
        int nbuses = 0;
1460
        size_t i;
1461
        int rv;
1462
        virDomainPCIConnectFlags flags = VIR_PCI_CONNECT_TYPE_PCI;
1463 1464

        for (i = 0; i < def->ncontrollers; i++) {
1465
            if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI) {
1466
                if ((int) def->controllers[i]->idx > max_idx)
1467 1468 1469 1470 1471 1472 1473 1474 1475
                    max_idx = def->controllers[i]->idx;
            }
        }

        nbuses = max_idx + 1;

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

1477 1478 1479 1480 1481 1482
            /* 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 */
1483
            if (virDomainPCIAddressReserveNextSlot(addrs, &info, flags) < 0)
1484 1485 1486
                goto cleanup;

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

1489
                if ((rv = virDomainDefMaybeAddController(
1490 1491
                         def, VIR_DOMAIN_CONTROLLER_TYPE_PCI,
                         i, bus->model)) < 0)
1492 1493
                    goto cleanup;
                /* If we added a new bridge, we will need one more address */
1494 1495
                if (rv > 0 && virDomainPCIAddressReserveNextSlot(addrs, &info,
                                                                 flags) < 0)
1496 1497 1498
                        goto cleanup;
            }
            nbuses = addrs->nbuses;
1499
            virDomainPCIAddressSetFree(addrs);
1500 1501 1502 1503 1504 1505 1506
            addrs = NULL;

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

1509
        if (!(addrs = qemuDomainPCIAddressSetCreate(def, nbuses, false)))
1510 1511
            goto cleanup;

1512 1513 1514 1515
        if (qemuDomainSupportsPCI(def)) {
            if (qemuAssignDevicePCISlots(def, qemuCaps, addrs) < 0)
                goto cleanup;
        }
1516 1517
    }

1518 1519 1520 1521
    if (obj && obj->privateData) {
        priv = obj->privateData;
        if (addrs) {
            /* if this is the live domain object, we persist the PCI addresses*/
1522
            virDomainPCIAddressSetFree(priv->pciaddrs);
1523 1524 1525 1526 1527 1528 1529 1530
            priv->persistentAddrs = 1;
            priv->pciaddrs = addrs;
            addrs = NULL;
        } else {
            priv->persistentAddrs = 0;
        }
    }

1531 1532
    ret = 0;

1533
 cleanup:
1534
    virDomainPCIAddressSetFree(addrs);
1535 1536 1537 1538

    return ret;
}

1539
int qemuDomainAssignAddresses(virDomainDefPtr def,
1540
                              virQEMUCapsPtr qemuCaps,
1541
                              virDomainObjPtr obj)
1542
{
1543 1544
    int rc;

1545
    rc = qemuDomainAssignSpaprVIOAddresses(def, qemuCaps);
1546 1547 1548
    if (rc)
        return rc;

1549 1550 1551
    rc = qemuDomainAssignS390Addresses(def, qemuCaps, obj);
    if (rc)
        return rc;
1552

1553 1554 1555 1556
    rc = qemuDomainAssignARMVirtioMMIOAddresses(def, qemuCaps);
    if (rc)
        return rc;

1557
    return qemuDomainAssignPCIAddresses(def, qemuCaps, obj);
1558
}
1559

1560

1561
virDomainPCIAddressSetPtr
1562 1563 1564
qemuDomainPCIAddressSetCreate(virDomainDefPtr def,
                              unsigned int nbuses,
                              bool dryRun)
1565
{
1566
    virDomainPCIAddressSetPtr addrs;
1567
    size_t i;
1568

1569 1570
    if ((addrs = virDomainPCIAddressSetAlloc(nbuses)) == NULL)
        return NULL;
1571

1572
    addrs->nbuses = nbuses;
1573
    addrs->dryRun = dryRun;
1574

1575 1576 1577 1578 1579 1580 1581 1582
    /* 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)
1583 1584
       virDomainPCIAddressBusSetModel(&addrs->buses[0],
                                      VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT);
1585
    for (i = 1; i < nbuses; i++) {
1586 1587
        virDomainPCIAddressBusSetModel(&addrs->buses[i],
                                       VIR_DOMAIN_CONTROLLER_MODEL_PCI_BRIDGE);
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
    }

    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;
        }

1603 1604
        if (virDomainPCIAddressBusSetModel(&addrs->buses[idx],
                                           def->controllers[i]->model) < 0)
1605 1606
            goto error;
        }
1607

1608 1609 1610 1611 1612
    if (virDomainDeviceInfoIterate(def, qemuCollectPCIAddress, addrs) < 0)
        goto error;

    return addrs;

1613
 error:
1614
    virDomainPCIAddressSetFree(addrs);
1615 1616 1617
    return NULL;
}

1618

1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
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) &&
J
Ján Tomko 已提交
1632
        virDomainCCWAddressReleaseAddr(priv->ccwaddrs, info) < 0)
1633 1634 1635 1636
        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) &&
1637 1638
             virDomainPCIAddressReleaseSlot(priv->pciaddrs,
                                            &info->addr.pci) < 0)
1639 1640 1641 1642 1643
        VIR_WARN("Unable to release PCI address on %s",
                 NULLSTR(devstr));
}


1644 1645 1646 1647 1648 1649 1650
#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))

1651 1652 1653 1654

static int
qemuValidateDevicePCISlotsPIIX3(virDomainDefPtr def,
                                virQEMUCapsPtr qemuCaps,
1655
                                virDomainPCIAddressSetPtr addrs)
1656
{
1657
    int ret = -1;
1658
    size_t i;
1659
    virDevicePCIAddress tmp_addr;
1660
    bool qemuDeviceVideoUsable = virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY);
1661
    char *addrStr = NULL;
1662
    virDomainPCIConnectFlags flags = VIR_PCI_CONNECT_HOTPLUGGABLE | VIR_PCI_CONNECT_TYPE_PCI;
1663

1664
    /* Verify that first IDE and USB controllers (if any) is on the PIIX3, fn 1 */
1665
    for (i = 0; i < def->ncontrollers; i++) {
1666 1667 1668 1669 1670 1671 1672 1673
        /* 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) {
1674 1675
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("Primary IDE controller must have PCI address 0:0:1.1"));
1676
                    goto cleanup;
1677 1678 1679 1680 1681 1682 1683 1684
                }
            } 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;
            }
1685 1686
        } else if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
                   def->controllers[i]->idx == 0 &&
1687 1688
                   (def->controllers[i]->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI ||
                    def->controllers[i]->model == -1)) {
1689 1690 1691 1692 1693
            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) {
1694 1695
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("PIIX3 USB controller must have PCI address 0:0:1.2"));
1696
                    goto cleanup;
1697 1698 1699 1700 1701 1702 1703 1704
                }
            } 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;
            }
1705 1706 1707 1708 1709 1710
        }
    }

    /* PIIX3 (ISA bridge, IDE controller, something else unknown, USB controller)
     * hardcoded slot=1, multifunction device
     */
1711 1712 1713
    if (addrs->nbuses) {
        memset(&tmp_addr, 0, sizeof(tmp_addr));
        tmp_addr.slot = 1;
1714
        if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0)
1715
            goto cleanup;
W
Wen Congyang 已提交
1716
    }
1717 1718

    if (def->nvideos > 0) {
1719 1720 1721 1722 1723 1724
        /* 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.
         */
1725 1726
        virDomainVideoDefPtr primaryVideo = def->videos[0];
        if (primaryVideo->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
1727 1728 1729
            memset(&tmp_addr, 0, sizeof(tmp_addr));
            tmp_addr.slot = 2;

1730
            if (!(addrStr = virDomainPCIAddressAsString(&tmp_addr)))
1731
                goto cleanup;
1732 1733
            if (!virDomainPCIAddressValidate(addrs, &tmp_addr,
                                             addrStr, flags, false))
1734
                goto cleanup;
1735

1736
            if (virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
1737
                if (qemuDeviceVideoUsable) {
1738 1739 1740
                    if (virDomainPCIAddressReserveNextSlot(addrs,
                                                           &primaryVideo->info,
                                                           flags) < 0)
1741
                        goto cleanup;
1742 1743 1744 1745
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("PCI address 0:0:2.0 is in use, "
                                     "QEMU needs it for primary video"));
1746
                    goto cleanup;
1747
                }
1748
            } else {
1749
                if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0)
1750 1751 1752
                    goto cleanup;
                primaryVideo->info.addr.pci = tmp_addr;
                primaryVideo->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
1753 1754 1755 1756 1757 1758
            }
        } 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) {
1759 1760
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("Primary video card must have PCI address 0:0:2.0"));
1761
                goto cleanup;
1762
            }
1763
            /* If TYPE == PCI, then qemuCollectPCIAddress() function
1764
             * has already reserved the address, so we must skip */
1765
        }
1766
    } else if (addrs->nbuses && !qemuDeviceVideoUsable) {
1767 1768
        memset(&tmp_addr, 0, sizeof(tmp_addr));
        tmp_addr.slot = 2;
1769

1770
        if (virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
1771 1772 1773
            VIR_DEBUG("PCI address 0:0:2.0 in use, future addition of a video"
                      " device will not be possible without manual"
                      " intervention");
1774
        } else if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0) {
1775
            goto cleanup;
1776 1777
        }
    }
1778
    ret = 0;
1779
 cleanup:
1780 1781
    VIR_FREE(addrStr);
    return ret;
1782 1783 1784
}


1785 1786 1787 1788 1789 1790 1791 1792
static bool
qemuDomainMachineIsQ35(virDomainDefPtr def)
{
    return (STRPREFIX(def->os.machine, "pc-q35") ||
            STREQ(def->os.machine, "q35"));
}


1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
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"));
}


1804 1805 1806
static int
qemuDomainValidateDevicePCISlotsQ35(virDomainDefPtr def,
                                    virQEMUCapsPtr qemuCaps,
1807
                                    virDomainPCIAddressSetPtr addrs)
1808
{
1809
    int ret = -1;
1810 1811 1812
    size_t i;
    virDevicePCIAddress tmp_addr;
    bool qemuDeviceVideoUsable = virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY);
1813
    char *addrStr = NULL;
1814
    virDomainPCIConnectFlags flags = VIR_PCI_CONNECT_TYPE_PCIE;
1815 1816

    for (i = 0; i < def->ncontrollers; i++) {
1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
        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;
1839 1840
                }
            }
1841
            break;
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851

        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;
1852 1853 1854
                if (!virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
                    if (virDomainPCIAddressReserveAddr(addrs, &tmp_addr,
                                                       flags, true, false) < 0)
1855 1856 1857 1858 1859 1860 1861 1862 1863
                        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;
1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876
        }
    }

    /* 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;
1877 1878
        if (virDomainPCIAddressReserveAddr(addrs, &tmp_addr, flags,
                                           false, false) < 0)
1879
           goto cleanup;
1880 1881
        tmp_addr.function = 3;
        tmp_addr.multi = 0;
1882 1883
        if (virDomainPCIAddressReserveAddr(addrs, &tmp_addr, flags,
                                           false, false) < 0)
1884
           goto cleanup;
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895
    }

    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) {
1896 1897 1898
            memset(&tmp_addr, 0, sizeof(tmp_addr));
            tmp_addr.slot = 1;

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

1905
            if (virDomainPCIAddressSlotInUse(addrs, &tmp_addr)) {
1906
                if (qemuDeviceVideoUsable) {
1907 1908 1909
                    if (virDomainPCIAddressReserveNextSlot(addrs,
                                                           &primaryVideo->info,
                                                           flags) < 0)
1910
                        goto cleanup;
1911 1912 1913 1914
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("PCI address 0:0:1.0 is in use, "
                                     "QEMU needs it for primary video"));
1915
                    goto cleanup;
1916
                }
1917
            } else {
1918
                if (virDomainPCIAddressReserveSlot(addrs, &tmp_addr, flags) < 0)
1919 1920 1921
                    goto cleanup;
                primaryVideo->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
                primaryVideo->info.addr.pci = tmp_addr;
1922 1923 1924 1925 1926 1927 1928 1929
            }
        } 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"));
1930
                goto cleanup;
1931
            }
1932
            /* If TYPE == PCI, then qemuCollectPCIAddress() function
1933 1934 1935 1936 1937 1938
             * 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;

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


1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
/*
 * 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,
1990
                         virDomainPCIAddressSetPtr addrs)
1991 1992
{
    size_t i, j;
1993
    virDomainPCIConnectFlags flags;
1994 1995 1996 1997 1998 1999 2000 2001 2002 2003
    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;
    }
2004

2005 2006 2007 2008 2009
    if (qemuDomainMachineIsQ35(def) &&
        qemuDomainValidateDevicePCISlotsQ35(def, qemuCaps, addrs) < 0) {
        goto error;
    }

2010 2011 2012 2013 2014
    /* 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;
2015 2016
            switch (def->controllers[i]->model) {
            case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
L
Laine Stump 已提交
2017 2018
            case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
                /* pci-root and pcie-root are implicit in the machine,
2019 2020 2021 2022 2023 2024
                 * 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)
                 */
2025
                flags = VIR_PCI_CONNECT_TYPE_PCI;
2026
                break;
2027 2028 2029 2030
            case VIR_DOMAIN_CONTROLLER_MODEL_DMI_TO_PCI_BRIDGE:
                /* dmi-to-pci-bridge requires a non-hotplug PCIe
                 * slot
                 */
2031
                flags = VIR_PCI_CONNECT_TYPE_PCIE;
2032
                break;
2033
            default:
2034
                flags = VIR_PCI_CONNECT_HOTPLUGGABLE | VIR_PCI_CONNECT_TYPE_PCI;
2035 2036
                break;
            }
2037 2038 2039
            if (virDomainPCIAddressReserveNextSlot(addrs,
                                                   &def->controllers[i]->info,
                                                   flags) < 0)
2040 2041 2042 2043
                goto error;
        }
    }

2044
    flags = VIR_PCI_CONNECT_HOTPLUGGABLE | VIR_PCI_CONNECT_TYPE_PCI;
2045

2046
    for (i = 0; i < def->nfss; i++) {
2047 2048 2049 2050 2051
        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 */
2052 2053
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->fss[i]->info,
                                               flags) < 0)
2054 2055 2056 2057
            goto error;
    }

    /* Network interfaces */
2058
    for (i = 0; i < def->nnets; i++) {
2059 2060 2061 2062 2063 2064
        /* 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)) {
2065
            continue;
2066
        }
2067 2068
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->nets[i]->info,
                                               flags) < 0)
2069 2070 2071 2072
            goto error;
    }

    /* Sound cards */
2073
    for (i = 0; i < def->nsounds; i++) {
2074 2075
        if (def->sounds[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            continue;
2076
        /* Skip ISA sound card, PCSPK and usb-audio */
2077
        if (def->sounds[i]->model == VIR_DOMAIN_SOUND_MODEL_SB16 ||
2078 2079
            def->sounds[i]->model == VIR_DOMAIN_SOUND_MODEL_PCSPK ||
            def->sounds[i]->model == VIR_DOMAIN_SOUND_MODEL_USB)
2080 2081
            continue;

2082 2083
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->sounds[i]->info,
                                               flags) < 0)
2084 2085 2086
            goto error;
    }

2087
    /* Device controllers (SCSI, USB, but not IDE, FDC or CCID) */
2088
    for (i = 0; i < def->ncontrollers; i++) {
2089
        /* PCI controllers have been dealt with earlier */
2090 2091
        if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI)
            continue;
2092

2093 2094 2095 2096 2097
        /* 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 已提交
2098 2099 2100
        /* 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)
2101 2102 2103 2104 2105 2106 2107 2108
            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;

2109 2110
        if (def->controllers[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO)
            continue;
2111 2112
        if (def->controllers[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            continue;
2113 2114 2115

        /* USB2 needs special handling to put all companions in the same slot */
        if (IS_USB2_CONTROLLER(def->controllers[i])) {
2116
            virDevicePCIAddress addr = { 0, 0, 0, 0, false };
2117
            memset(&tmp_addr, 0, sizeof(tmp_addr));
2118
            for (j = 0; j < i; j++) {
2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131
                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;
J
Ján Tomko 已提交
2132
                addr.multi = VIR_TRISTATE_SWITCH_ON;
2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144
                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 */
2145
                if (virDomainPCIAddressGetNextSlot(addrs, &tmp_addr, flags) < 0)
2146 2147
                    goto error;

2148 2149
                addr.bus = tmp_addr.bus;
                addr.slot = tmp_addr.slot;
2150 2151 2152 2153

                addrs->lastaddr = addr;
                addrs->lastaddr.function = 0;
                addrs->lastaddr.multi = 0;
2154 2155
            }
            /* Finally we can reserve the slot+function */
2156 2157
            if (virDomainPCIAddressReserveAddr(addrs, &addr, flags,
                                               false, false) < 0)
2158 2159 2160 2161 2162
                goto error;

            def->controllers[i]->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
            def->controllers[i]->info.addr.pci = addr;
        } else {
2163 2164 2165
            if (virDomainPCIAddressReserveNextSlot(addrs,
                                                   &def->controllers[i]->info,
                                                   flags) < 0)
2166 2167
                goto error;
        }
2168 2169
    }

2170
    /* Disks (VirtIO only for now) */
2171
    for (i = 0; i < def->ndisks; i++) {
2172 2173 2174 2175
        /* Only VirtIO disks use PCI addrs */
        if (def->disks[i]->bus != VIR_DOMAIN_DISK_BUS_VIRTIO)
            continue;

2176 2177 2178
        /* don't touch s390 devices */
        if (def->disks[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI ||
            def->disks[i]->info.type ==
2179 2180 2181
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390 ||
            def->disks[i]->info.type ==
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
2182 2183 2184
            continue;

        if (def->disks[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
2185 2186
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio only support device address type 'PCI'"));
2187 2188 2189
            goto error;
        }

2190 2191
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->disks[i]->info,
                                               flags) < 0)
2192 2193 2194 2195
            goto error;
    }

    /* Host PCI devices */
2196
    for (i = 0; i < def->nhostdevs; i++) {
2197
        if (def->hostdevs[i]->info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
2198 2199 2200 2201 2202
            continue;
        if (def->hostdevs[i]->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS ||
            def->hostdevs[i]->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI)
            continue;

2203 2204 2205
        if (virDomainPCIAddressReserveNextSlot(addrs,
                                               def->hostdevs[i]->info,
                                               flags) < 0)
2206 2207 2208 2209 2210 2211 2212
            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) {
2213 2214 2215
        if (virDomainPCIAddressReserveNextSlot(addrs,
                                               &def->memballoon->info,
                                               flags) < 0)
2216 2217 2218
            goto error;
    }

2219
    /* VirtIO RNG */
2220 2221 2222 2223 2224
    for (i = 0; i < def->nrngs; i++) {
        if (def->rngs[i]->model != VIR_DOMAIN_RNG_MODEL_VIRTIO ||
            def->rngs[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            continue;

2225
        if (virDomainPCIAddressReserveNextSlot(addrs,
2226
                                               &def->rngs[i]->info, flags) < 0)
2227 2228 2229
            goto error;
    }

2230
    /* A watchdog - skip IB700, it is not a PCI device */
2231
    if (def->watchdog &&
2232
        def->watchdog->model != VIR_DOMAIN_WATCHDOG_MODEL_IB700 &&
2233
        def->watchdog->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
2234 2235
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->watchdog->info,
                                               flags) < 0)
2236 2237 2238
            goto error;
    }

2239 2240 2241 2242
    /* 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) {
2243 2244
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->videos[0]->info,
                                               flags) < 0)
2245 2246
            goto error;
    }
2247
    /* Further non-primary video cards which have to be qxl type */
2248
    for (i = 1; i < def->nvideos; i++) {
2249 2250 2251 2252 2253
        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;
        }
2254 2255
        if (def->videos[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE)
            continue;
2256 2257
        if (virDomainPCIAddressReserveNextSlot(addrs, &def->videos[i]->info,
                                               flags) < 0)
2258 2259
            goto error;
    }
2260
    for (i = 0; i < def->ninputs; i++) {
2261 2262
        /* Nada - none are PCI based (yet) */
    }
2263
    for (i = 0; i < def->nparallels; i++) {
2264 2265
        /* Nada - none are PCI based (yet) */
    }
2266
    for (i = 0; i < def->nserials; i++) {
2267 2268
        /* Nada - none are PCI based (yet) */
    }
2269
    for (i = 0; i < def->nchannels; i++) {
2270 2271
        /* Nada - none are PCI based (yet) */
    }
2272
    for (i = 0; i < def->nhubs; i++) {
M
Marc-André Lureau 已提交
2273 2274
        /* Nada - none are PCI based (yet) */
    }
2275 2276 2277

    return 0;

2278
 error:
2279 2280 2281
    return -1;
}

2282
static void
2283
qemuUSBId(virBufferPtr buf, int idx)
2284 2285
{
    if (idx == 0)
2286
        virBufferAddLit(buf, "usb");
2287 2288 2289
    else
        virBufferAsprintf(buf, "usb%d", idx);
}
2290 2291 2292

static int
qemuBuildDeviceAddressStr(virBufferPtr buf,
2293
                          virDomainDefPtr domainDef,
2294
                          virDomainDeviceInfoPtr info,
2295
                          virQEMUCapsPtr qemuCaps)
2296
{
2297 2298 2299
    int ret = -1;
    char *devStr = NULL;

2300
    if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
2301 2302 2303
        const char *contAlias = NULL;
        size_t i;

2304
        if (!(devStr = virDomainPCIAddressAsString(&info->addr.pci)))
2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331
            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;
        }

2332
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_MULTIFUNCTION)) {
W
Wen Congyang 已提交
2333
            if (info->addr.pci.function != 0) {
2334 2335 2336
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Only PCI device addresses with function=0 "
                                 "are supported with this QEMU binary"));
2337
                goto cleanup;
2338
            }
J
Ján Tomko 已提交
2339
            if (info->addr.pci.multi == VIR_TRISTATE_SWITCH_ON) {
2340 2341 2342
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("'multifunction=on' is not supported with "
                                 "this QEMU binary"));
2343
                goto cleanup;
W
Wen Congyang 已提交
2344
            }
2345 2346
        }

2347 2348 2349 2350 2351 2352 2353
        /*
         * 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'.
2354
         */
2355 2356
        if (info->addr.pci.bus != 0) {
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PCI_BRIDGE)) {
2357
                virBufferAsprintf(buf, ",bus=%s", contAlias);
2358 2359 2360 2361
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Multiple PCI buses are not supported "
                                 "with this QEMU binary"));
2362
                goto cleanup;
2363 2364
            }
        } else {
D
Daniel P. Berrange 已提交
2365
            if (virQEMUCapsHasPCIMultiBus(qemuCaps, domainDef)) {
2366 2367
                virBufferAsprintf(buf, ",bus=%s", contAlias);
            } else {
2368
                virBufferAddLit(buf, ",bus=pci");
2369
            }
2370
        }
J
Ján Tomko 已提交
2371
        if (info->addr.pci.multi == VIR_TRISTATE_SWITCH_ON)
2372
            virBufferAddLit(buf, ",multifunction=on");
J
Ján Tomko 已提交
2373
        else if (info->addr.pci.multi == VIR_TRISTATE_SWITCH_OFF)
2374 2375 2376 2377
            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);
2378
    } else if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB) {
2379
        virBufferAddLit(buf, ",bus=");
2380
        qemuUSBId(buf, info->addr.usb.bus);
2381
        virBufferAsprintf(buf, ".0,port=%s", info->addr.usb.port);
2382 2383 2384
    } 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);
2385 2386 2387 2388 2389 2390
    } 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);
2391
    }
2392

2393
    ret = 0;
2394
 cleanup:
2395 2396
    VIR_FREE(devStr);
    return ret;
2397 2398
}

2399 2400 2401
static int
qemuBuildRomStr(virBufferPtr buf,
                virDomainDeviceInfoPtr info,
2402
                virQEMUCapsPtr qemuCaps)
2403
{
2404
    if (info->rombar || info->romfile) {
2405
        if (info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
2406 2407
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("rombar and romfile are supported only for PCI devices"));
2408 2409
            return -1;
        }
2410
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_ROMBAR)) {
2411 2412
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("rombar and romfile not supported in this QEMU binary"));
2413 2414 2415 2416
            return -1;
        }

        switch (info->rombar) {
J
Ján Tomko 已提交
2417
        case VIR_TRISTATE_SWITCH_OFF:
2418 2419
            virBufferAddLit(buf, ",rombar=0");
            break;
J
Ján Tomko 已提交
2420
        case VIR_TRISTATE_SWITCH_ON:
2421 2422 2423 2424 2425
            virBufferAddLit(buf, ",rombar=1");
            break;
        default:
            break;
        }
2426 2427
        if (info->romfile)
           virBufferAsprintf(buf, ",romfile=%s", info->romfile);
2428 2429 2430 2431
    }
    return 0;
}

2432 2433
static int
qemuBuildIoEventFdStr(virBufferPtr buf,
J
Ján Tomko 已提交
2434
                      virTristateSwitch use,
2435
                      virQEMUCapsPtr qemuCaps)
2436
{
2437
    if (use && virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_IOEVENTFD))
2438
        virBufferAsprintf(buf, ",ioeventfd=%s",
J
Ján Tomko 已提交
2439
                          virTristateSwitchTypeToString(use));
2440 2441
    return 0;
}
2442 2443 2444 2445 2446 2447 2448

#define QEMU_SERIAL_PARAM_ACCEPTED_CHARS \
  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_"

static int
qemuSafeSerialParamValue(const char *value)
{
2449
    if (strspn(value, QEMU_SERIAL_PARAM_ACCEPTED_CHARS) != strlen(value)) {
2450 2451 2452
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("driver serial '%s' contains unsafe characters"),
                       value);
2453 2454 2455 2456 2457 2458
        return -1;
    }

    return 0;
}

2459 2460 2461 2462
static char *
qemuGetSecretString(virConnectPtr conn,
                    const char *scheme,
                    bool encoded,
2463
                    virStorageAuthDefPtr authdef,
2464 2465 2466 2467 2468
                    virSecretUsageType secretUsageType)
{
    size_t secret_size;
    virSecretPtr sec = NULL;
    char *secret = NULL;
2469
    char uuidStr[VIR_UUID_STRING_BUFLEN];
2470 2471

    /* look up secret */
2472
    switch (authdef->secretType) {
2473
    case VIR_STORAGE_SECRET_TYPE_UUID:
2474 2475
        sec = virSecretLookupByUUID(conn, authdef->secret.uuid);
        virUUIDFormat(authdef->secret.uuid, uuidStr);
2476
        break;
2477
    case VIR_STORAGE_SECRET_TYPE_USAGE:
2478 2479
        sec = virSecretLookupByUsage(conn, secretUsageType,
                                     authdef->secret.usage);
2480 2481 2482 2483
        break;
    }

    if (!sec) {
2484
        if (authdef->secretType == VIR_STORAGE_SECRET_TYPE_UUID) {
2485 2486
            virReportError(VIR_ERR_NO_SECRET,
                           _("%s no secret matches uuid '%s'"),
2487
                           scheme, uuidStr);
2488 2489 2490
        } else {
            virReportError(VIR_ERR_NO_SECRET,
                           _("%s no secret matches usage value '%s'"),
2491
                           scheme, authdef->secret.usage);
2492
        }
2493 2494 2495 2496 2497 2498
        goto cleanup;
    }

    secret = (char *)conn->secretDriver->secretGetValue(sec, &secret_size, 0,
                                                        VIR_SECRET_GET_VALUE_INTERNAL_CALL);
    if (!secret) {
2499
        if (authdef->secretType == VIR_STORAGE_SECRET_TYPE_UUID) {
2500 2501 2502
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not get value of the secret for "
                             "username '%s' using uuid '%s'"),
2503
                           authdef->username, uuidStr);
2504 2505 2506 2507
        } else {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not get value of the secret for "
                             "username '%s' using usage value '%s'"),
2508
                           authdef->username, authdef->secret.usage);
2509
        }
2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524
        goto cleanup;
    }

    if (encoded) {
        char *base64 = NULL;

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

2525
 cleanup:
2526 2527 2528
    virObjectUnref(sec);
    return secret;
}
2529

2530

2531 2532
static int
qemuParseRBDString(virDomainDiskDefPtr disk)
2533
{
2534 2535
    char *source = disk->src->path;
    int ret;
2536

2537
    disk->src->path = NULL;
2538

2539
    ret = virStorageSourceParseRBDColonString(source, disk->src);
2540

2541 2542
    VIR_FREE(source);
    return ret;
2543 2544
}

2545

2546
static int
P
Paolo Bonzini 已提交
2547 2548
qemuParseDriveURIString(virDomainDiskDefPtr def, virURIPtr uri,
                        const char *scheme)
2549 2550 2551 2552 2553
{
    int ret = -1;
    char *transp = NULL;
    char *sock = NULL;
    char *volimg = NULL;
2554
    char *secret = NULL;
2555
    virStorageAuthDefPtr authdef = NULL;
2556

2557
    if (VIR_ALLOC(def->src->hosts) < 0)
2558
        goto error;
2559

P
Paolo Bonzini 已提交
2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570
    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) {
2571
        def->src->hosts->transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
P
Paolo Bonzini 已提交
2572
    } else {
2573 2574
        def->src->hosts->transport = virStorageNetHostTransportTypeFromString(transp);
        if (def->src->hosts->transport < 0) {
2575
            virReportError(VIR_ERR_INTERNAL_ERROR,
P
Paolo Bonzini 已提交
2576
                           _("Invalid %s transport type '%s'"), scheme, transp);
2577 2578 2579
            goto error;
        }
    }
2580
    def->src->nhosts = 0; /* set to 1 once everything succeeds */
2581

2582 2583
    if (def->src->hosts->transport != VIR_STORAGE_NET_HOST_TRANS_UNIX) {
        if (VIR_STRDUP(def->src->hosts->name, uri->server) < 0)
2584
            goto error;
2585

2586
        if (virAsprintf(&def->src->hosts->port, "%d", uri->port) < 0)
2587
            goto error;
2588
    } else {
2589 2590
        def->src->hosts->name = NULL;
        def->src->hosts->port = 0;
2591 2592 2593
        if (uri->query) {
            if (STRPREFIX(uri->query, "socket=")) {
                sock = strchr(uri->query, '=') + 1;
2594
                if (VIR_STRDUP(def->src->hosts->socket, sock) < 0)
2595
                    goto error;
2596 2597 2598 2599 2600 2601 2602
            } else {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Invalid query parameter '%s'"), uri->query);
                goto error;
            }
        }
    }
P
Paolo Bonzini 已提交
2603 2604
    if (uri->path) {
        volimg = uri->path + 1; /* skip the prefix slash */
2605 2606
        VIR_FREE(def->src->path);
        if (VIR_STRDUP(def->src->path, volimg) < 0)
2607
            goto error;
P
Paolo Bonzini 已提交
2608
    } else {
2609
        VIR_FREE(def->src->path);
P
Paolo Bonzini 已提交
2610
    }
2611

2612
    if (uri->user) {
2613 2614 2615 2616 2617
        const char *secrettype;
        /* formulate authdef for disk->src->auth */
        if (VIR_ALLOC(authdef) < 0)
            goto error;

2618 2619 2620 2621
        secret = strchr(uri->user, ':');
        if (secret)
            *secret = '\0';

2622
        if (VIR_STRDUP(authdef->username, uri->user) < 0)
2623
            goto error;
2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635
        if (STREQ(scheme, "iscsi")) {
            secrettype =
                virSecretUsageTypeToString(VIR_SECRET_USAGE_TYPE_ISCSI);
            if (VIR_STRDUP(authdef->secrettype, secrettype) < 0)
                goto error;
        }
        def->src->auth = authdef;
        authdef = NULL;

        /* Cannot formulate a secretType (eg, usage or uuid) given
         * what is provided.
         */
2636 2637
    }

2638
    def->src->nhosts = 1;
2639 2640
    ret = 0;

2641
 cleanup:
2642 2643 2644 2645
    virURIFree(uri);

    return ret;

2646
 error:
2647 2648
    virStorageNetHostDefClear(def->src->hosts);
    VIR_FREE(def->src->hosts);
2649
    virStorageAuthDefFree(authdef);
2650 2651 2652
    goto cleanup;
}

P
Paolo Bonzini 已提交
2653 2654 2655 2656 2657
static int
qemuParseGlusterString(virDomainDiskDefPtr def)
{
    virURIPtr uri = NULL;

2658
    if (!(uri = virURIParse(def->src->path)))
P
Paolo Bonzini 已提交
2659 2660 2661 2662 2663
        return -1;

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

P
Paolo Bonzini 已提交
2664 2665 2666 2667 2668 2669 2670
static int
qemuParseISCSIString(virDomainDiskDefPtr def)
{
    virURIPtr uri = NULL;
    char *slash;
    unsigned lun;

2671
    if (!(uri = virURIParse(def->src->path)))
P
Paolo Bonzini 已提交
2672 2673 2674 2675 2676
        return -1;

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

2677
        if (slash[1] == '\0') {
P
Paolo Bonzini 已提交
2678
            *slash = '\0';
2679
        } else if (virStrToLong_ui(slash + 1, NULL, 10, &lun) == -1) {
P
Paolo Bonzini 已提交
2680
            virReportError(VIR_ERR_INTERNAL_ERROR,
2681
                           _("invalid name '%s' for iSCSI disk"),
2682
                           def->src->path);
2683
            virURIFree(uri);
P
Paolo Bonzini 已提交
2684 2685 2686 2687 2688 2689 2690
            return -1;
        }
    }

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

2691 2692 2693
static int
qemuParseNBDString(virDomainDiskDefPtr disk)
{
2694
    virStorageNetHostDefPtr h = NULL;
2695
    char *host, *port;
P
Paolo Bonzini 已提交
2696
    char *src;
2697

P
Paolo Bonzini 已提交
2698 2699
    virURIPtr uri = NULL;

2700 2701
    if (strstr(disk->src->path, "://")) {
        if (!(uri = virURIParse(disk->src->path)))
2702 2703
            return -1;
        return qemuParseDriveURIString(disk, uri, "nbd");
P
Paolo Bonzini 已提交
2704 2705
    }

2706
    if (VIR_ALLOC(h) < 0)
2707
        goto error;
2708

2709
    host = disk->src->path + strlen("nbd:");
2710 2711 2712 2713
    if (STRPREFIX(host, "unix:/")) {
        src = strchr(host + strlen("unix:"), ':');
        if (src)
            *src++ = '\0';
2714

2715
        h->transport = VIR_STORAGE_NET_HOST_TRANS_UNIX;
2716 2717
        if (VIR_STRDUP(h->socket, host + strlen("unix:")) < 0)
            goto error;
2718 2719 2720 2721
    } else {
        port = strchr(host, ':');
        if (!port) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
2722
                           _("cannot parse nbd filename '%s'"), disk->src->path);
2723 2724
            goto error;
        }
2725

2726
        *port++ = '\0';
2727 2728
        if (VIR_STRDUP(h->name, host) < 0)
            goto error;
P
Paolo Bonzini 已提交
2729

2730 2731 2732 2733
        src = strchr(port, ':');
        if (src)
            *src++ = '\0';

2734 2735
        if (VIR_STRDUP(h->port, port) < 0)
            goto error;
2736
    }
2737

P
Paolo Bonzini 已提交
2738
    if (src && STRPREFIX(src, "exportname=")) {
2739 2740
        if (VIR_STRDUP(src, strchr(src, '=') + 1) < 0)
            goto error;
P
Paolo Bonzini 已提交
2741 2742 2743 2744
    } else {
        src = NULL;
    }

2745 2746 2747 2748
    VIR_FREE(disk->src->path);
    disk->src->path = src;
    disk->src->nhosts = 1;
    disk->src->hosts = h;
2749 2750
    return 0;

2751
 error:
2752
    virStorageNetHostDefClear(h);
2753 2754 2755 2756
    VIR_FREE(h);
    return -1;
}

2757

2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774
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;
    }

2775
    switch ((virStorageNetProtocol) protocol) {
2776
        case VIR_STORAGE_NET_PROTOCOL_HTTP:
2777 2778
            return 80;

2779
        case VIR_STORAGE_NET_PROTOCOL_HTTPS:
2780 2781
            return 443;

2782
        case VIR_STORAGE_NET_PROTOCOL_FTP:
2783 2784
            return 21;

2785
        case VIR_STORAGE_NET_PROTOCOL_FTPS:
2786 2787
            return 990;

2788
        case VIR_STORAGE_NET_PROTOCOL_TFTP:
2789 2790
            return 69;

2791
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
2792 2793
            return 7000;

2794
        case VIR_STORAGE_NET_PROTOCOL_NBD:
2795 2796
            return 10809;

2797 2798
        case VIR_STORAGE_NET_PROTOCOL_ISCSI:
        case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
2799 2800 2801
            /* no default port specified */
            return 0;

2802 2803
        case VIR_STORAGE_NET_PROTOCOL_RBD:
        case VIR_STORAGE_NET_PROTOCOL_LAST:
2804 2805
        case VIR_STORAGE_NET_PROTOCOL_NONE:
            /* not applicable */
2806 2807 2808 2809 2810 2811
            return -1;
    }

    return -1;
}

2812
#define QEMU_DEFAULT_NBD_PORT "10809"
2813

2814
static char *
2815
qemuBuildNetworkDriveURI(virStorageSourcePtr src,
2816 2817 2818 2819
                         const char *username,
                         const char *secret)
{
    char *ret = NULL;
2820
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2821
    virURIPtr uri = NULL;
2822
    size_t i;
2823

2824
    switch ((virStorageNetProtocol) src->protocol) {
2825
        case VIR_STORAGE_NET_PROTOCOL_NBD:
2826
            if (src->nhosts != 1) {
2827 2828
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
2829
                               virStorageNetProtocolTypeToString(src->protocol));
2830 2831 2832
                goto cleanup;
            }

2833 2834 2835 2836 2837 2838
            if (!((src->hosts->name && strchr(src->hosts->name, ':')) ||
                  (src->hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP &&
                   !src->hosts->name) ||
                  (src->hosts->transport == VIR_STORAGE_NET_HOST_TRANS_UNIX &&
                   src->hosts->socket &&
                   src->hosts->socket[0] != '/'))) {
2839 2840 2841

                virBufferAddLit(&buf, "nbd:");

2842
                switch (src->hosts->transport) {
2843
                case VIR_STORAGE_NET_HOST_TRANS_TCP:
2844
                    virBufferStrcat(&buf, src->hosts->name, NULL);
2845
                    virBufferAsprintf(&buf, ":%s",
2846
                                      src->hosts->port ? src->hosts->port :
2847 2848 2849
                                      QEMU_DEFAULT_NBD_PORT);
                    break;

2850
                case VIR_STORAGE_NET_HOST_TRANS_UNIX:
2851
                    if (!src->hosts->socket) {
2852 2853 2854 2855 2856 2857
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("socket attribute required for "
                                         "unix transport"));
                        goto cleanup;
                    }

2858
                    virBufferAsprintf(&buf, "unix:%s", src->hosts->socket);
2859 2860 2861 2862 2863
                    break;

                default:
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("nbd does not support transport '%s'"),
2864
                                   virStorageNetHostTransportTypeToString(src->hosts->transport));
2865 2866 2867
                    goto cleanup;
                }

2868 2869
                if (src->path)
                    virBufferAsprintf(&buf, ":exportname=%s", src->path);
2870

2871
                if (virBufferCheckError(&buf) < 0)
2872 2873 2874 2875 2876 2877 2878 2879
                    goto cleanup;

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

2880 2881 2882 2883 2884 2885 2886
        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:
2887
            if (src->nhosts != 1) {
2888 2889
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
2890
                               virStorageNetProtocolTypeToString(src->protocol));
2891 2892
                goto cleanup;
            }
2893

2894 2895
            if (VIR_ALLOC(uri) < 0)
                goto cleanup;
2896

2897
            if (src->hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP) {
2898
                if (VIR_STRDUP(uri->scheme,
2899
                               virStorageNetProtocolTypeToString(src->protocol)) < 0)
2900 2901 2902
                    goto cleanup;
            } else {
                if (virAsprintf(&uri->scheme, "%s+%s",
2903 2904
                                virStorageNetProtocolTypeToString(src->protocol),
                                virStorageNetHostTransportTypeToString(src->hosts->transport)) < 0)
2905 2906
                    goto cleanup;
            }
2907

2908
            if ((uri->port = qemuNetworkDriveGetPort(src->protocol, src->hosts->port)) < 0)
2909
                goto cleanup;
2910

2911 2912
            if (src->path) {
                if (src->volume) {
2913
                    if (virAsprintf(&uri->path, "/%s%s",
2914
                                    src->volume, src->path) < 0)
2915 2916 2917
                        goto cleanup;
                } else {
                    if (virAsprintf(&uri->path, "%s%s",
2918 2919
                                    src->path[0] == '/' ? "" : "/",
                                    src->path) < 0)
2920 2921 2922
                        goto cleanup;
                }
            }
2923

2924 2925
            if (src->hosts->socket &&
                virAsprintf(&uri->query, "socket=%s", src->hosts->socket) < 0)
2926
                goto cleanup;
2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937

            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;
                }
            }

2938
            if (VIR_STRDUP(uri->server, src->hosts->name) < 0)
2939 2940
                goto cleanup;

2941
            ret = virURIFormat(uri);
2942

2943 2944
            break;

2945
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
2946
            if (!src->path) {
2947 2948 2949 2950 2951
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("missing disk source for 'sheepdog' protocol"));
                goto cleanup;
            }

2952 2953
            if (src->nhosts == 0) {
                if (virAsprintf(&ret, "sheepdog:%s", src->path) < 0)
2954
                    goto cleanup;
2955
            } else if (src->nhosts == 1) {
2956
                if (virAsprintf(&ret, "sheepdog:%s:%s:%s",
2957 2958 2959
                                src->hosts->name,
                                src->hosts->port ? src->hosts->port : "7000",
                                src->path) < 0)
2960 2961 2962 2963 2964 2965 2966 2967 2968
                    goto cleanup;
            } else {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("protocol 'sheepdog' accepts up to one host"));
                goto cleanup;
            }

            break;

2969
        case VIR_STORAGE_NET_PROTOCOL_RBD:
2970
            if (strchr(src->path, ':')) {
2971 2972
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("':' not allowed in RBD source volume name '%s'"),
2973
                               src->path);
2974 2975 2976
                goto cleanup;
            }

2977
            virBufferStrcat(&buf, "rbd:", src->path, NULL);
2978

2979 2980 2981
            if (src->snapshot)
                virBufferEscape(&buf, '\\', ":", "@%s", src->snapshot);

2982 2983 2984 2985 2986 2987 2988 2989 2990
            if (username) {
                virBufferEscape(&buf, '\\', ":", ":id=%s", username);
                virBufferEscape(&buf, '\\', ":",
                                ":key=%s:auth_supported=cephx\\;none",
                                secret);
            } else {
                virBufferAddLit(&buf, ":auth_supported=none");
            }

2991
            if (src->nhosts > 0) {
2992
                virBufferAddLit(&buf, ":mon_host=");
2993
                for (i = 0; i < src->nhosts; i++) {
2994 2995 2996 2997
                    if (i)
                        virBufferAddLit(&buf, "\\;");

                    /* assume host containing : is ipv6 */
2998 2999 3000
                    if (strchr(src->hosts[i].name, ':'))
                        virBufferEscape(&buf, '\\', ":", "[%s]",
                                        src->hosts[i].name);
3001
                    else
3002
                        virBufferAsprintf(&buf, "%s", src->hosts[i].name);
3003

3004 3005
                    if (src->hosts[i].port)
                        virBufferAsprintf(&buf, "\\:%s", src->hosts[i].port);
3006 3007 3008
                }
            }

3009 3010 3011
            if (src->configFile)
                virBufferEscape(&buf, '\\', ":", ":conf=%s", src->configFile);

3012
            if (virBufferCheckError(&buf) < 0)
3013 3014 3015 3016 3017 3018
                goto cleanup;

            ret = virBufferContentAndReset(&buf);
            break;


3019
        case VIR_STORAGE_NET_PROTOCOL_LAST:
3020
        case VIR_STORAGE_NET_PROTOCOL_NONE:
3021 3022
            goto cleanup;
    }
3023

3024
 cleanup:
3025
    virBufferFreeAndReset(&buf);
3026 3027 3028 3029 3030 3031
    virURIFree(uri);

    return ret;
}


3032
int
3033 3034 3035
qemuGetDriveSourceString(virStorageSourcePtr src,
                         virConnectPtr conn,
                         char **source)
3036
{
3037 3038 3039 3040 3041 3042 3043 3044 3045
    int actualType = virStorageSourceGetActualType(src);
    char *secret = NULL;
    char *username = NULL;
    int ret = -1;

    *source = NULL;

    if (conn) {
        if (actualType == VIR_STORAGE_TYPE_NETWORK &&
3046
            src->auth &&
3047 3048 3049 3050 3051
            (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);
3052
            username = src->auth->username;
3053 3054 3055 3056 3057 3058

            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;
            }
3059

3060 3061 3062
            if (!(secret = qemuGetSecretString(conn,
                                               protocol,
                                               encode,
3063
                                               src->auth,
3064 3065 3066 3067 3068
                                               secretType)))
                goto cleanup;
        }
    }

3069
    switch ((virStorageType) actualType) {
E
Eric Blake 已提交
3070 3071 3072
    case VIR_STORAGE_TYPE_BLOCK:
    case VIR_STORAGE_TYPE_FILE:
    case VIR_STORAGE_TYPE_DIR:
3073 3074 3075 3076
        if (!src->path) {
            ret = 1;
            goto cleanup;
        }
3077

3078 3079
        if (VIR_STRDUP(*source, src->path) < 0)
            goto cleanup;
3080 3081 3082

        break;

E
Eric Blake 已提交
3083
    case VIR_STORAGE_TYPE_NETWORK:
3084
        if (!(*source = qemuBuildNetworkDriveURI(src, username, secret)))
3085
            goto cleanup;
3086 3087
        break;

E
Eric Blake 已提交
3088
    case VIR_STORAGE_TYPE_VOLUME:
3089
    case VIR_STORAGE_TYPE_NONE:
E
Eric Blake 已提交
3090
    case VIR_STORAGE_TYPE_LAST:
3091 3092 3093
        break;
    }

3094
    ret = 0;
3095

3096
 cleanup:
J
John Ferlan 已提交
3097
    VIR_FREE(secret);
3098 3099 3100
    return ret;
}

P
Paolo Bonzini 已提交
3101

3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168
/* Perform disk definition config validity checks */
int
qemuCheckDiskConfig(virDomainDiskDefPtr disk)
{
    if (virDiskNameToIndex(disk->dst) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk type '%s'"), disk->dst);
        goto error;
    }

    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;
        }
    }

    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;
    }

    if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
        /* make sure that both the bus supports type='lun' (SG_IO). */
        if (disk->bus != VIR_DOMAIN_DISK_BUS_VIRTIO &&
            disk->bus != VIR_DOMAIN_DISK_BUS_SCSI) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("disk device='lun' is not supported for bus='%s'"),
                           virDomainDiskQEMUBusTypeToString(disk->bus));
            goto error;
        }
        if (disk->src->type == VIR_STORAGE_TYPE_NETWORK) {
            if (disk->src->protocol != VIR_STORAGE_NET_PROTOCOL_ISCSI) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("disk device='lun' is not supported "
                                 "for protocol='%s'"),
                               virStorageNetProtocolTypeToString(disk->src->protocol));
                goto error;
            }
        } else if (!virDomainDiskSourceIsBlockType(disk->src)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk device='lun' is only valid for block "
                             "type disk source"));
            goto error;
        }
        if (disk->wwn) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn is not supported for lun device"));
            goto error;
        }
        if (disk->vendor || disk->product) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product is not supported "
                             "for lun device"));
            goto error;
        }
    }
    return 0;
 error:
    return -1;
}


3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197
/* Qemu 1.2 and later have a binary flag -enable-fips that must be
 * used for VNC auth to obey FIPS settings; but the flag only
 * exists on Linux, and with no way to probe for it via QMP.  Our
 * solution: if FIPS mode is required, then unconditionally use
 * the flag, regardless of qemu version, for the following matrix:
 *
 *                          old QEMU            new QEMU
 * FIPS enabled             doesn't start       VNC auth disabled
 * FIPS disabled/missing    VNC auth enabled    VNC auth enabled
 */
bool
qemuCheckFips(void)
{
    bool ret = false;

    if (virFileExists("/proc/sys/crypto/fips_enabled")) {
        char *buf = NULL;

        if (virFileReadAll("/proc/sys/crypto/fips_enabled", 10, &buf) < 0)
            return ret;
        if (STREQ(buf, "1\n"))
            ret = true;
        VIR_FREE(buf);
    }

    return ret;
}


3198
char *
3199
qemuBuildDriveStr(virConnectPtr conn,
3200
                  virDomainDiskDefPtr disk,
3201
                  bool bootable,
3202
                  virQEMUCapsPtr qemuCaps)
3203 3204 3205
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
3206 3207
    const char *trans =
        virDomainDiskGeometryTransTypeToString(disk->geometry.trans);
3208 3209
    int idx = virDiskNameToIndex(disk->dst);
    int busid = -1, unitid = -1;
3210
    char *source = NULL;
3211
    int actualType = virStorageSourceGetActualType(disk->src);
3212 3213

    if (idx < 0) {
3214 3215
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk type '%s'"), disk->dst);
3216 3217 3218 3219 3220 3221
        goto error;
    }

    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_SCSI:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
3222 3223
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for scsi disk"));
3224 3225 3226 3227 3228 3229 3230
            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) {
3231 3232
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("SCSI controller only supports 1 bus"));
3233 3234 3235 3236 3237 3238 3239 3240
            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) {
3241 3242
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for ide disk"));
3243 3244 3245 3246
            goto error;
        }
        /* We can only have 1 IDE controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
3247 3248
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s controller is supported"), bus);
3249 3250 3251 3252 3253 3254 3255 3256
            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) {
3257 3258
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for fdc disk"));
3259 3260 3261 3262
            goto error;
        }
        /* We can only have 1 FDC controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
3263 3264
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s controller is supported"), bus);
3265 3266 3267 3268
            goto error;
        }
        /* We can only have 1 FDC bus (currently) */
        if (disk->info.addr.drive.bus != 0) {
3269 3270
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s bus is supported"), bus);
3271 3272
            goto error;
        }
3273
        if (disk->info.addr.drive.target != 0) {
3274 3275
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for controller fdc"));
3276 3277
            goto error;
        }
3278 3279 3280 3281 3282 3283 3284 3285 3286
        unitid = disk->info.addr.drive.unit;

        break;

    case VIR_DOMAIN_DISK_BUS_VIRTIO:
        idx = -1;
        break;

    case VIR_DOMAIN_DISK_BUS_XEN:
3287 3288 3289
    case VIR_DOMAIN_DISK_BUS_SD:
        /* Xen and SD have no address type currently, so assign
         * based on index */
3290 3291 3292
        break;
    }

3293
    if (qemuGetDriveSourceString(disk->src, conn, &source) < 0)
3294 3295 3296
        goto error;

    if (source &&
3297 3298 3299
        !((disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY ||
           disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) &&
          disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN)) {
3300

3301 3302 3303
        virBufferAddLit(&opt, "file=");

        switch (actualType) {
E
Eric Blake 已提交
3304
        case VIR_STORAGE_TYPE_DIR:
3305
            /* QEMU only supports magic FAT format for now */
3306 3307
            if (disk->src->format > 0 &&
                disk->src->format != VIR_STORAGE_FILE_FAT) {
3308 3309
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unsupported disk driver type for '%s'"),
3310
                               virStorageFileFormatTypeToString(disk->src->format));
3311 3312
                goto error;
            }
3313

3314
            if (!disk->src->readonly) {
3315 3316
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("cannot create virtual FAT disks in read-write mode"));
3317 3318
                goto error;
            }
3319 3320 3321

            virBufferAddLit(&opt, "fat:");

3322
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY)
3323
                virBufferAddLit(&opt, "floppy:");
3324

3325 3326
            break;

E
Eric Blake 已提交
3327
        case VIR_STORAGE_TYPE_BLOCK:
3328
            if (disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN) {
3329
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
3330
                               disk->src->type == VIR_STORAGE_TYPE_VOLUME ?
3331 3332
                               _("tray status 'open' is invalid for block type volume") :
                               _("tray status 'open' is invalid for block type disk"));
3333 3334
                goto error;
            }
3335 3336 3337 3338 3339

            break;

        default:
            break;
3340
        }
3341 3342

        virBufferEscape(&opt, ',', ",", "%s,", source);
3343
    }
3344
    VIR_FREE(source);
3345

3346
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
3347 3348
        virBufferAddLit(&opt, "if=none");
    else
3349
        virBufferAsprintf(&opt, "if=%s", bus);
3350

3351
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
3352
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
3353
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD))
3354
                virBufferAddLit(&opt, ",media=cdrom");
3355
        } else if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
3356
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD))
3357
                virBufferAddLit(&opt, ",media=cdrom");
3358 3359 3360 3361
        } else {
            virBufferAddLit(&opt, ",media=cdrom");
        }
    }
3362

3363
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
3364
        virBufferAsprintf(&opt, ",id=%s%s", QEMU_DRIVE_HOST_PREFIX, disk->info.alias);
3365 3366 3367
    } else {
        if (busid == -1 && unitid == -1) {
            if (idx != -1)
3368
                virBufferAsprintf(&opt, ",index=%d", idx);
3369 3370
        } else {
            if (busid != -1)
3371
                virBufferAsprintf(&opt, ",bus=%d", busid);
3372
            if (unitid != -1)
3373
                virBufferAsprintf(&opt, ",unit=%d", unitid);
3374 3375 3376
        }
    }
    if (bootable &&
3377
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) &&
3378 3379
        (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK ||
         disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) &&
3380 3381
        disk->bus != VIR_DOMAIN_DISK_BUS_IDE)
        virBufferAddLit(&opt, ",boot=on");
3382
    if (disk->src->readonly &&
3383
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_READONLY)) {
3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
            if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("readonly ide disks are not supported"));
                goto error;
            }
            if (disk->bus == VIR_DOMAIN_DISK_BUS_SATA) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("readonly sata disks are not supported"));
                goto error;
            }
3395
        }
3396
        virBufferAddLit(&opt, ",readonly=on");
3397
    }
3398
    if (disk->transient) {
3399 3400
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("transient disks not supported yet"));
3401 3402
        goto error;
    }
3403 3404
    if (disk->src->format > 0 &&
        disk->src->type != VIR_STORAGE_TYPE_DIR &&
3405
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_FORMAT))
3406
        virBufferAsprintf(&opt, ",format=%s",
3407
                          virStorageFileFormatTypeToString(disk->src->format));
3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422

    /* 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);
    }

3423
    if (disk->serial &&
3424
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_SERIAL)) {
3425 3426
        if (qemuSafeSerialParamValue(disk->serial) < 0)
            goto error;
3427
        virBufferAsprintf(&opt, ",serial=%s", disk->serial);
3428 3429 3430
    }

    if (disk->cachemode) {
3431 3432
        const char *mode = NULL;

3433
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_V2)) {
3434 3435 3436
            mode = qemuDiskCacheV2TypeToString(disk->cachemode);

            if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_DIRECTSYNC &&
3437
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_DIRECTSYNC)) {
3438 3439 3440
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("disk cache mode 'directsync' is not "
                                 "supported by this QEMU"));
3441
                goto error;
3442
            } else if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_UNSAFE &&
3443
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_UNSAFE)) {
3444 3445 3446
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("disk cache mode 'unsafe' is not "
                                 "supported by this QEMU"));
3447
                goto error;
3448 3449 3450 3451
            }
        } else {
            mode = qemuDiskCacheV1TypeToString(disk->cachemode);
        }
3452

3453 3454 3455 3456 3457 3458 3459 3460 3461 3462
        if (disk->iomode == VIR_DOMAIN_DISK_IO_NATIVE &&
            disk->cachemode != VIR_DOMAIN_DISK_CACHE_DIRECTSYNC &&
            disk->cachemode != VIR_DOMAIN_DISK_CACHE_DISABLE) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("native I/O needs either no disk cache "
                             "or directsync cache mode, QEMU will fallback "
                             "to aio=threads"));
            goto error;
        }

3463
        virBufferAsprintf(&opt, ",cache=%s", mode);
3464
    } else if (disk->src->shared && !disk->src->readonly) {
3465 3466 3467
        virBufferAddLit(&opt, ",cache=off");
    }

O
Osier Yang 已提交
3468
    if (disk->copy_on_read) {
3469
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_COPY_ON_READ)) {
O
Osier Yang 已提交
3470
            virBufferAsprintf(&opt, ",copy-on-read=%s",
J
Ján Tomko 已提交
3471
                              virTristateSwitchTypeToString(disk->copy_on_read));
O
Osier Yang 已提交
3472
        } else {
3473 3474
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("copy_on_read is not supported by this QEMU binary"));
O
Osier Yang 已提交
3475 3476 3477 3478
            goto error;
        }
    }

O
Osier Yang 已提交
3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489
    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;
        }
    }

3490
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MONITOR_JSON)) {
3491 3492 3493 3494
        const char *wpolicy = NULL, *rpolicy = NULL;

        if (disk->error_policy)
            wpolicy = virDomainDiskErrorPolicyTypeToString(disk->error_policy);
3495 3496
        if (disk->rerror_policy)
            rpolicy = virDomainDiskErrorPolicyTypeToString(disk->rerror_policy);
3497 3498

        if (disk->error_policy == VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE) {
3499 3500 3501
            /* 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.
3502
             */
3503 3504 3505 3506
            wpolicy = "enospc";
        } else if (!rpolicy) {
            /* for other policies, rpolicy can match wpolicy */
            rpolicy = wpolicy;
3507
        }
3508 3509 3510 3511 3512

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

E
Eric Blake 已提交
3515
    if (disk->iomode) {
3516
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_AIO)) {
3517
            virBufferAsprintf(&opt, ",aio=%s",
E
Eric Blake 已提交
3518 3519
                              virDomainDiskIoTypeToString(disk->iomode));
        } else {
3520 3521 3522
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk aio mode not supported with this "
                             "QEMU binary"));
E
Eric Blake 已提交
3523 3524 3525 3526
            goto error;
        }
    }

3527
    /* block I/O throttling */
3528 3529 3530 3531 3532 3533
    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) &&
3534
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE)) {
3535 3536 3537
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("block I/O throttling not supported with this "
                         "QEMU binary"));
3538 3539 3540
        goto error;
    }

3541 3542 3543 3544 3545 3546
    /* block I/O throttling 1.7 */
    if ((disk->blkdeviotune.total_bytes_sec_max ||
         disk->blkdeviotune.read_bytes_sec_max ||
         disk->blkdeviotune.write_bytes_sec_max ||
         disk->blkdeviotune.total_iops_sec_max ||
         disk->blkdeviotune.read_iops_sec_max ||
3547 3548
         disk->blkdeviotune.write_iops_sec_max ||
         disk->blkdeviotune.size_iops_sec) &&
3549 3550
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE_MAX)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
3551 3552
                       _("there are some block I/O throttling parameters "
                         "that are not supported with this QEMU binary"));
3553 3554 3555
        goto error;
    }

3556 3557 3558 3559 3560
    if (disk->blkdeviotune.total_bytes_sec > LLONG_MAX ||
        disk->blkdeviotune.read_bytes_sec > LLONG_MAX ||
        disk->blkdeviotune.write_bytes_sec > LLONG_MAX ||
        disk->blkdeviotune.total_iops_sec > LLONG_MAX ||
        disk->blkdeviotune.read_iops_sec > LLONG_MAX ||
3561 3562 3563 3564 3565 3566
        disk->blkdeviotune.write_iops_sec > LLONG_MAX ||
        disk->blkdeviotune.total_bytes_sec_max > LLONG_MAX ||
        disk->blkdeviotune.read_bytes_sec_max > LLONG_MAX ||
        disk->blkdeviotune.write_bytes_sec_max > LLONG_MAX ||
        disk->blkdeviotune.total_iops_sec_max > LLONG_MAX ||
        disk->blkdeviotune.read_iops_sec_max > LLONG_MAX ||
3567 3568
        disk->blkdeviotune.write_iops_sec_max > LLONG_MAX ||
        disk->blkdeviotune.size_iops_sec > LLONG_MAX) {
3569 3570 3571 3572 3573 3574
        virReportError(VIR_ERR_OVERFLOW,
                      _("block I/O throttle limit must "
                        "be less than %llu using QEMU"), LLONG_MAX);
        goto error;
    }

3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604
    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);
    }

3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634
    if (disk->blkdeviotune.total_bytes_sec_max) {
        virBufferAsprintf(&opt, ",bps_max=%llu",
                          disk->blkdeviotune.total_bytes_sec_max);
    }

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

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

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

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

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

3635
    if (disk->blkdeviotune.size_iops_sec) {
3636 3637 3638 3639
        virBufferAsprintf(&opt, ",iops_size=%llu",
                          disk->blkdeviotune.size_iops_sec);
    }

3640
    if (virBufferCheckError(&opt) < 0)
3641 3642 3643 3644
        goto error;

    return virBufferContentAndReset(&opt);

3645
 error:
3646
    VIR_FREE(source);
3647 3648 3649 3650
    virBufferFreeAndReset(&opt);
    return NULL;
}

3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664

static bool
qemuCheckIothreads(virDomainDefPtr def,
                   virQEMUCapsPtr qemuCaps,
                   virDomainDiskDefPtr disk)
{
    /* Have capability */
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_IOTHREAD)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("IOThreads not supported for this QEMU"));
        return false;
    }

    /* Right "type" of disk" */
3665
    if (disk->bus != VIR_DOMAIN_DISK_BUS_VIRTIO ||
3666 3667
        (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI &&
         disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)) {
3668
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
3669 3670
                       _("IOThreads only available for virtio pci and "
                         "virtio ccw disk"));
3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685
        return false;
    }

    /* Value larger than iothreads available? */
    if (disk->iothread > def->iothreads) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Disk iothread '%u' invalid only %u IOThreads"),
                       disk->iothread, def->iothreads);
        return false;
    }

    return true;
}


3686
char *
3687 3688
qemuBuildDriveDevStr(virDomainDefPtr def,
                     virDomainDiskDefPtr disk,
3689
                     int bootindex,
3690
                     virQEMUCapsPtr qemuCaps)
3691 3692 3693
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
3694
    int controllerModel;
3695

3696
    if (qemuCheckDiskConfig(disk) < 0)
3697
        goto error;
3698

3699
    /* Live only checks */
3700
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
3701
        /* make sure that the qemu binary supports type='lun' (SG_IO). */
3702
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_SG_IO)) {
3703
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
3704 3705
                           _("disk device='lun' is not supported by "
                             "this QEMU"));
3706 3707
            goto error;
        }
3708 3709
    }

3710 3711 3712
    if (disk->iothread && !qemuCheckIothreads(def, qemuCaps, disk))
        goto error;

3713 3714
    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_IDE:
3715
        if (disk->info.addr.drive.target != 0) {
3716 3717
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
3718 3719
            goto error;
        }
3720

3721
        if (disk->wwn &&
3722
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_DRIVE_WWN)) {
3723 3724 3725 3726 3727 3728
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for ide disk is not supported "
                             "by this QEMU"));
            goto error;
        }

3729
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
3730 3731 3732 3733 3734 3735 3736 3737
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

3738
        virBufferAsprintf(&opt, ",bus=ide.%d,unit=%d",
3739 3740 3741 3742
                          disk->info.addr.drive.bus,
                          disk->info.addr.drive.unit);
        break;
    case VIR_DOMAIN_DISK_BUS_SCSI:
3743
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
3744
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_BLOCK)) {
3745 3746 3747
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support scsi-block for "
                                 "lun passthrough"));
3748 3749 3750 3751
                goto error;
            }
        }

3752
        if (disk->wwn &&
3753
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
3754 3755 3756 3757 3758 3759
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for scsi disk is not supported "
                             "by this QEMU"));
            goto error;
        }

3760 3761 3762 3763
        /* Properties wwn, vendor and product were introduced in the
         * same QEMU release (1.2.0).
         */
        if ((disk->vendor || disk->product) &&
3764
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
3765 3766 3767 3768 3769 3770
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product for scsi disk is not "
                             "supported by this QEMU"));
            goto error;
        }

3771
        controllerModel =
H
Han Cheng 已提交
3772 3773
            virDomainDeviceFindControllerModel(def, &disk->info,
                                               VIR_DOMAIN_CONTROLLER_TYPE_SCSI);
3774
        if ((qemuSetSCSIControllerModel(def, qemuCaps, &controllerModel)) < 0)
3775
            goto error;
3776 3777 3778

        if (controllerModel == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
            if (disk->info.addr.drive.target != 0) {
3779 3780 3781
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("target must be 0 for controller "
                                 "model 'lsilogic'"));
3782 3783 3784
                goto error;
            }

3785
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
3786
                virBufferAddLit(&opt, "scsi-block");
3787
            } else {
3788
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD)) {
3789 3790 3791 3792 3793 3794 3795 3796 3797
                    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                        virBufferAddLit(&opt, "scsi-cd");
                    else
                        virBufferAddLit(&opt, "scsi-hd");
                } else {
                    virBufferAddLit(&opt, "scsi-disk");
                }
            }

3798 3799 3800 3801 3802
            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 {
3803
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_CHANNEL)) {
3804
                if (disk->info.addr.drive.target > 7) {
3805 3806 3807
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU doesn't support target "
                                     "greater than 7"));
3808 3809 3810 3811 3812
                    goto error;
                }

                if ((disk->info.addr.drive.bus != disk->info.addr.drive.unit) &&
                    (disk->info.addr.drive.bus != 0)) {
3813 3814 3815
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU only supports both bus and "
                                     "unit equal to 0"));
3816 3817 3818 3819
                    goto error;
                }
            }

3820
            if (disk->device != VIR_DOMAIN_DISK_DEVICE_LUN) {
3821
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD)) {
3822 3823 3824 3825 3826 3827 3828 3829
                    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                        virBufferAddLit(&opt, "scsi-cd");
                    else
                        virBufferAddLit(&opt, "scsi-hd");
                } else {
                    virBufferAddLit(&opt, "scsi-disk");
                }
            } else {
3830
                virBufferAddLit(&opt, "scsi-block");
3831
            }
3832

3833 3834 3835 3836 3837 3838
            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);
        }
3839
        break;
J
Jim Fehlig 已提交
3840
    case VIR_DOMAIN_DISK_BUS_SATA:
3841
        if (disk->info.addr.drive.bus != 0) {
3842 3843
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("bus must be 0 for ide controller"));
3844 3845 3846
            goto error;
        }
        if (disk->info.addr.drive.target != 0) {
3847 3848
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
3849 3850
            goto error;
        }
3851

3852
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
3853 3854 3855 3856 3857 3858 3859 3860
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

3861 3862 3863
        if (qemuDomainMachineIsQ35(def) &&
            disk->info.addr.drive.controller == 0) {
            /* Q35 machines have an implicit ahci (sata) controller at
3864 3865 3866
             * 00:1F.2 which for some reason is hardcoded with the id
             * "ide" instead of the seemingly more reasonable "ahci0"
             * or "sata0".
3867
             */
3868
            virBufferAsprintf(&opt, ",bus=ide.%d", disk->info.addr.drive.unit);
3869 3870
        } else {
            /* All other ahci controllers have been created by
3871 3872
             * libvirt, and we gave them the id "ahci${n}" where ${n}
             * is the controller number. So we identify them that way.
3873 3874 3875 3876 3877
             */
            virBufferAsprintf(&opt, ",bus=ahci%d.%d",
                              disk->info.addr.drive.controller,
                              disk->info.addr.drive.unit);
        }
J
Jim Fehlig 已提交
3878
        break;
3879
    case VIR_DOMAIN_DISK_BUS_VIRTIO:
3880 3881
        if (disk->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            virBufferAddLit(&opt, "virtio-blk-ccw");
3882 3883
            if (disk->iothread)
                virBufferAsprintf(&opt, ",iothread=iothread%u", disk->iothread);
3884 3885
        } else if (disk->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
3886
            virBufferAddLit(&opt, "virtio-blk-s390");
3887 3888 3889
        } else if (disk->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO) {
            virBufferAddLit(&opt, "virtio-blk-device");
3890 3891
        } else {
            virBufferAddLit(&opt, "virtio-blk-pci");
3892 3893
            if (disk->iothread)
                virBufferAsprintf(&opt, ",iothread=iothread%u", disk->iothread);
3894
        }
3895
        qemuBuildIoEventFdStr(&opt, disk->ioeventfd, qemuCaps);
3896
        if (disk->event_idx &&
3897
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_EVENT_IDX)) {
3898
            virBufferAsprintf(&opt, ",event_idx=%s",
J
Ján Tomko 已提交
3899
                              virTristateSwitchTypeToString(disk->event_idx));
3900
        }
3901
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_SCSI)) {
3902 3903 3904 3905 3906 3907 3908
            /* 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");
        }
3909
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
A
Alex Jia 已提交
3910
            goto error;
3911 3912
        break;
    case VIR_DOMAIN_DISK_BUS_USB:
3913 3914 3915 3916 3917 3918 3919
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_STORAGE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("This QEMU doesn't support '-device "
                             "usb-storage'"));
            goto error;

        }
3920
        virBufferAddLit(&opt, "usb-storage");
3921

3922
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
3923
            goto error;
3924 3925
        break;
    default:
3926 3927
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk bus '%s' with device setup"), bus);
3928 3929
        goto error;
    }
3930 3931
    virBufferAsprintf(&opt, ",drive=%s%s", QEMU_DRIVE_HOST_PREFIX, disk->info.alias);
    virBufferAsprintf(&opt, ",id=%s", disk->info.alias);
3932
    if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
3933
        virBufferAsprintf(&opt, ",bootindex=%d", bootindex);
3934
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKIO)) {
V
Viktor Mihajlovski 已提交
3935
        if (disk->blockio.logical_block_size > 0)
3936
            virBufferAsprintf(&opt, ",logical_block_size=%u",
V
Viktor Mihajlovski 已提交
3937 3938
                              disk->blockio.logical_block_size);
        if (disk->blockio.physical_block_size > 0)
3939
            virBufferAsprintf(&opt, ",physical_block_size=%u",
V
Viktor Mihajlovski 已提交
3940
                              disk->blockio.physical_block_size);
3941
    }
3942

3943 3944 3945 3946 3947 3948
    if (disk->wwn) {
        if (STRPREFIX(disk->wwn, "0x"))
            virBufferAsprintf(&opt, ",wwn=%s", disk->wwn);
        else
            virBufferAsprintf(&opt, ",wwn=0x%s", disk->wwn);
    }
3949

3950 3951 3952 3953 3954 3955
    if (disk->vendor)
        virBufferAsprintf(&opt, ",vendor=%s", disk->vendor);

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

3956 3957
    if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_STORAGE_REMOVABLE)) {
J
Ján Tomko 已提交
3958
            if (disk->removable == VIR_TRISTATE_SWITCH_ON)
3959 3960 3961 3962
                virBufferAddLit(&opt, ",removable=on");
            else
                virBufferAddLit(&opt, ",removable=off");
        } else {
J
Ján Tomko 已提交
3963
            if (disk->removable != VIR_TRISTATE_SWITCH_ABSENT) {
3964 3965 3966 3967 3968 3969 3970 3971
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support setting the "
                                 "removable flag of USB storage devices"));
                goto error;
            }
        }
    }

3972
    if (virBufferCheckError(&opt) < 0)
3973 3974 3975 3976
        goto error;

    return virBufferContentAndReset(&opt);

3977
 error:
3978 3979 3980 3981 3982 3983
    virBufferFreeAndReset(&opt);
    return NULL;
}


char *qemuBuildFSStr(virDomainFSDefPtr fs,
3984
                     virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED)
3985 3986
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
3987
    const char *driver = qemuDomainFSDriverTypeToString(fs->fsdriver);
3988
    const char *wrpolicy = virDomainFSWrpolicyTypeToString(fs->wrpolicy);
3989 3990

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
3991 3992
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only supports mount filesystem type"));
3993 3994 3995
        goto error;
    }

3996
    if (!driver) {
3997 3998
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Filesystem driver type not supported"));
3999 4000 4001 4002
        goto error;
    }
    virBufferAdd(&opt, driver, -1);

4003 4004 4005 4006
    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");
4007
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
4008
            virBufferAddLit(&opt, ",security_model=passthrough");
4009
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_SQUASH) {
4010 4011 4012 4013 4014 4015
            virBufferAddLit(&opt, ",security_model=none");
        }
    } else {
        /* For other fs drivers, default(passthru) should always
         * be supported */
        if (fs->accessmode != VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
4016 4017
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("only supports passthrough accessmode"));
4018 4019
            goto error;
        }
4020
    }
4021 4022

    if (fs->wrpolicy) {
4023 4024 4025 4026 4027 4028 4029
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV_WRITEOUT)) {
            virBufferAsprintf(&opt, ",writeout=%s", wrpolicy);
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("filesystem writeout not supported"));
            goto error;
        }
4030 4031
    }

4032 4033
    virBufferAsprintf(&opt, ",id=%s%s", QEMU_FSDEV_HOST_PREFIX, fs->info.alias);
    virBufferAsprintf(&opt, ",path=%s", fs->src);
4034

4035
    if (fs->readonly) {
4036
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV_READONLY)) {
4037 4038
            virBufferAddLit(&opt, ",readonly");
        } else {
4039 4040 4041
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("readonly filesystem is not supported by this "
                             "QEMU binary"));
4042 4043 4044 4045
            goto error;
        }
    }

4046
    if (virBufferCheckError(&opt) < 0)
4047 4048 4049 4050
        goto error;

    return virBufferContentAndReset(&opt);

4051
 error:
4052 4053 4054 4055 4056 4057
    virBufferFreeAndReset(&opt);
    return NULL;
}


char *
4058 4059
qemuBuildFSDevStr(virDomainDefPtr def,
                  virDomainFSDefPtr fs,
4060
                  virQEMUCapsPtr qemuCaps)
4061 4062 4063 4064
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
4065 4066
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("can only passthrough directories"));
4067 4068 4069 4070
        goto error;
    }

    virBufferAddLit(&opt, "virtio-9p-pci");
4071 4072 4073
    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 已提交
4074

4075
    if (qemuBuildDeviceAddressStr(&opt, def, &fs->info, qemuCaps) < 0)
A
Alex Jia 已提交
4076
        goto error;
4077

4078
    if (virBufferCheckError(&opt) < 0)
4079 4080 4081 4082
        goto error;

    return virBufferContentAndReset(&opt);

4083
 error:
4084 4085 4086 4087 4088
    virBufferFreeAndReset(&opt);
    return NULL;
}


4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107
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 已提交
4108 4109
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI:
        return QEMU_CAPS_NEC_USB_XHCI;
4110 4111 4112 4113 4114 4115 4116
    default:
        return -1;
    }
}


static int
4117 4118
qemuBuildUSBControllerDevStr(virDomainDefPtr domainDef,
                             virDomainControllerDefPtr def,
4119
                             virQEMUCapsPtr qemuCaps,
4120 4121 4122
                             virBuffer *buf)
{
    const char *smodel;
4123
    int model, flags;
4124 4125

    model = def->model;
4126

4127
    if (model == -1) {
4128
        if ARCH_IS_PPC64(domainDef->os.arch)
4129 4130 4131 4132
            model = VIR_DOMAIN_CONTROLLER_MODEL_USB_PCI_OHCI;
        else
            model = VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI;
    }
4133 4134

    smodel = qemuControllerModelUSBTypeToString(model);
4135
    flags = qemuControllerModelUSBToCaps(model);
4136

4137
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
4138 4139
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), smodel);
4140 4141 4142
        return -1;
    }

4143 4144 4145
    virBufferAsprintf(buf, "%s", smodel);

    if (def->info.mastertype == VIR_DOMAIN_CONTROLLER_MASTER_USB) {
4146
        virBufferAddLit(buf, ",masterbus=");
4147
        qemuUSBId(buf, def->idx);
4148
        virBufferAsprintf(buf, ".0,firstport=%d", def->info.master.usb.startport);
4149
    } else {
4150
        virBufferAddLit(buf, ",id=");
4151
        qemuUSBId(buf, def->idx);
4152 4153
    }

4154 4155 4156
    return 0;
}

4157
char *
4158 4159
qemuBuildControllerDevStr(virDomainDefPtr domainDef,
                          virDomainControllerDefPtr def,
4160
                          virQEMUCapsPtr qemuCaps,
4161
                          int *nusbcontroller)
4162 4163
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4164
    int model;
4165

4166
    if (!(def->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI &&
4167
          def->model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI)) {
4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182
        if (def->queues) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("'queues' is only supported by virtio-scsi controller"));
            return NULL;
        }
        if (def->cmd_per_lun) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("'cmd_per_lun' is only supported by virtio-scsi controller"));
            return NULL;
        }
        if (def->max_sectors) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("'max_sectors' is only supported by virtio-scsi controller"));
            return NULL;
        }
4183 4184
    }

4185 4186
    switch (def->type) {
    case VIR_DOMAIN_CONTROLLER_TYPE_SCSI:
4187
        model = def->model;
4188
        if ((qemuSetSCSIControllerModel(domainDef, qemuCaps, &model)) < 0)
4189 4190
            return NULL;

4191
        switch (model) {
4192
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI:
4193 4194 4195 4196 4197
            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");
4198 4199 4200
            else if (def->info.type ==
                     VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
                virBufferAddLit(&buf, "virtio-scsi-device");
4201 4202
            else
                virBufferAddLit(&buf, "virtio-scsi-pci");
4203
            break;
4204
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC:
4205
            virBufferAddLit(&buf, "lsi");
4206 4207 4208 4209
            break;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI:
            virBufferAddLit(&buf, "spapr-vscsi");
            break;
4210 4211 4212
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1078:
            virBufferAddLit(&buf, "megasas");
            break;
4213
        default:
4214 4215 4216
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported controller model: %s"),
                           virDomainControllerModelSCSITypeToString(def->model));
4217
        }
4218
        virBufferAsprintf(&buf, ",id=scsi%d", def->idx);
4219 4220 4221 4222 4223
        break;

    case VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL:
        if (def->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
            virBufferAddLit(&buf, "virtio-serial-pci");
4224 4225 4226
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            virBufferAddLit(&buf, "virtio-serial-ccw");
4227 4228 4229
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
            virBufferAddLit(&buf, "virtio-serial-s390");
4230 4231 4232
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO) {
            virBufferAddLit(&buf, "virtio-serial-device");
4233 4234 4235
        } else {
            virBufferAddLit(&buf, "virtio-serial");
        }
4236
        virBufferAsprintf(&buf, ",id=" QEMU_VIRTIO_SERIAL_PREFIX "%d",
4237 4238
                          def->idx);
        if (def->opts.vioserial.ports != -1) {
4239
            virBufferAsprintf(&buf, ",max_ports=%d",
4240 4241 4242
                              def->opts.vioserial.ports);
        }
        if (def->opts.vioserial.vectors != -1) {
4243
            virBufferAsprintf(&buf, ",vectors=%d",
4244 4245 4246 4247
                              def->opts.vioserial.vectors);
        }
        break;

E
Eric Blake 已提交
4248
    case VIR_DOMAIN_CONTROLLER_TYPE_CCID:
4249
        virBufferAsprintf(&buf, "usb-ccid,id=ccid%d", def->idx);
E
Eric Blake 已提交
4250 4251
        break;

J
Jim Fehlig 已提交
4252 4253 4254 4255
    case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
        virBufferAsprintf(&buf, "ahci,id=ahci%d", def->idx);
        break;

4256
    case VIR_DOMAIN_CONTROLLER_TYPE_USB:
4257
        if (qemuBuildUSBControllerDevStr(domainDef, def, qemuCaps, &buf) == -1)
4258 4259 4260 4261 4262 4263 4264
            goto error;

        if (nusbcontroller)
            *nusbcontroller += 1;

        break;

4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275
    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;
4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289
        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;
4290
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
L
Laine Stump 已提交
4291
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
4292
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
L
Laine Stump 已提交
4293
                           _("wrong function called for pci-root/pcie-root"));
4294 4295 4296 4297
            return NULL;
        }
        break;

4298 4299 4300
    /* We always get an IDE controller, whether we want it or not. */
    case VIR_DOMAIN_CONTROLLER_TYPE_IDE:
    default:
4301 4302 4303
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unknown controller type: %s"),
                       virDomainControllerTypeToString(def->type));
4304 4305 4306
        goto error;
    }

4307 4308
    if (def->queues)
        virBufferAsprintf(&buf, ",num_queues=%u", def->queues);
4309

4310 4311 4312 4313 4314 4315
    if (def->cmd_per_lun)
        virBufferAsprintf(&buf, ",cmd_per_lun=%u", def->cmd_per_lun);

    if (def->max_sectors)
        virBufferAsprintf(&buf, ",max_sectors=%u", def->max_sectors);

4316
    if (qemuBuildDeviceAddressStr(&buf, domainDef, &def->info, qemuCaps) < 0)
4317 4318
        goto error;

4319
    if (virBufferCheckError(&buf) < 0)
4320 4321 4322 4323
        goto error;

    return virBufferContentAndReset(&buf);

4324
 error:
4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335
    virBufferFreeAndReset(&buf);
    return NULL;
}


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

4338 4339 4340 4341 4342 4343 4344 4345 4346
    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 : "")));
4347 4348 4349 4350 4351
    return str;
}


char *
4352 4353
qemuBuildNicDevStr(virDomainDefPtr def,
                   virDomainNetDefPtr net,
4354
                   int vlan,
4355
                   int bootindex,
4356
                   int vhostfdSize,
4357
                   virQEMUCapsPtr qemuCaps)
4358 4359
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4360
    const char *nic = net->model;
4361
    bool usingVirtio = false;
4362
    char macaddr[VIR_MAC_STRING_BUFLEN];
4363

4364 4365
    if (STREQ(net->model, "virtio")) {
        if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
4366
            nic = "virtio-net-ccw";
4367
        else if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390)
4368
            nic = "virtio-net-s390";
4369 4370
        else if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
            nic = "virtio-net-device";
4371
        else
4372
            nic = "virtio-net-pci";
4373

4374
        usingVirtio = true;
4375 4376
    }

4377
    virBufferAdd(&buf, nic, -1);
4378
    if (usingVirtio && net->driver.virtio.txmode) {
4379
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_TX_ALG)) {
4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392
            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.
                     */
4393 4394
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("unrecognized virtio-net-pci 'tx' option"));
4395 4396 4397
                    goto error;
            }
        } else {
4398 4399
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-net-pci 'tx' option not supported in this QEMU binary"));
4400 4401 4402
            goto error;
        }
    }
4403
    if (usingVirtio) {
4404
        qemuBuildIoEventFdStr(&buf, net->driver.virtio.ioeventfd, qemuCaps);
4405
        if (net->driver.virtio.event_idx &&
4406
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_NET_EVENT_IDX)) {
4407
            virBufferAsprintf(&buf, ",event_idx=%s",
J
Ján Tomko 已提交
4408
                              virTristateSwitchTypeToString(net->driver.virtio.event_idx));
4409
        }
4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453
        if (net->driver.virtio.host.csum) {
            virBufferAsprintf(&buf, ",csum=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.csum));
        }
        if (net->driver.virtio.host.gso) {
            virBufferAsprintf(&buf, ",gso=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.gso));
        }
        if (net->driver.virtio.host.tso4) {
            virBufferAsprintf(&buf, ",host_tso4=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.tso4));
        }
        if (net->driver.virtio.host.tso6) {
            virBufferAsprintf(&buf, ",host_tso6=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.tso6));
        }
        if (net->driver.virtio.host.ecn) {
            virBufferAsprintf(&buf, ",host_ecn=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.ecn));
        }
        if (net->driver.virtio.host.ufo) {
            virBufferAsprintf(&buf, ",host_ufo=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.ufo));
        }
        if (net->driver.virtio.guest.csum) {
            virBufferAsprintf(&buf, ",guest_csum=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.csum));
        }
        if (net->driver.virtio.guest.tso4) {
            virBufferAsprintf(&buf, ",guest_tso4=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.tso4));
        }
        if (net->driver.virtio.guest.tso6) {
            virBufferAsprintf(&buf, ",guest_tso6=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.tso6));
        }
        if (net->driver.virtio.guest.ecn) {
            virBufferAsprintf(&buf, ",guest_ecn=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.ecn));
        }
        if (net->driver.virtio.guest.ufo) {
            virBufferAsprintf(&buf, ",guest_ufo=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.ufo));
        }
4454
    }
4455 4456
    if (usingVirtio && vhostfdSize > 1) {
        /* As advised at http://www.linux-kvm.org/page/Multiqueue
4457 4458
         * we should add vectors=2*N+2 where N is the vhostfdSize */
        virBufferAsprintf(&buf, ",mq=on,vectors=%d", 2 * vhostfdSize + 2);
4459
    }
4460
    if (vlan == -1)
4461
        virBufferAsprintf(&buf, ",netdev=host%s", net->info.alias);
4462
    else
4463 4464
        virBufferAsprintf(&buf, ",vlan=%d", vlan);
    virBufferAsprintf(&buf, ",id=%s", net->info.alias);
4465 4466
    virBufferAsprintf(&buf, ",mac=%s",
                      virMacAddrFormat(&net->mac, macaddr));
4467
    if (qemuBuildDeviceAddressStr(&buf, def, &net->info, qemuCaps) < 0)
4468
        goto error;
4469
    if (qemuBuildRomStr(&buf, &net->info, qemuCaps) < 0)
4470
       goto error;
4471
    if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
4472
        virBufferAsprintf(&buf, ",bootindex=%d", bootindex);
4473

4474
    if (virBufferCheckError(&buf) < 0)
4475 4476 4477 4478
        goto error;

    return virBufferContentAndReset(&buf);

4479
 error:
4480 4481 4482 4483 4484 4485 4486
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
qemuBuildHostNetStr(virDomainNetDefPtr net,
4487
                    virQEMUDriverPtr driver,
4488 4489
                    char type_sep,
                    int vlan,
4490 4491 4492 4493
                    char **tapfd,
                    int tapfdSize,
                    char **vhostfd,
                    int vhostfdSize)
4494
{
4495
    bool is_tap = false;
4496
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4497
    virDomainNetType netType = virDomainNetGetActualType(net);
4498
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4499
    size_t i;
4500

4501
    if (net->script && netType != VIR_DOMAIN_NET_TYPE_ETHERNET) {
4502 4503 4504
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("scripts are not supported on interfaces of type %s"),
                       virDomainNetTypeToString(netType));
4505
        virObjectUnref(cfg);
4506 4507 4508 4509
        return NULL;
    }

    switch (netType) {
R
Richa Marwaha 已提交
4510 4511 4512 4513 4514
    /*
     * If type='bridge', and we're running as privileged user
     * or -netdev bridge is not supported then it will fall
     * through, -net tap,fd
     */
4515
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
R
Richa Marwaha 已提交
4516
    case VIR_DOMAIN_NET_TYPE_NETWORK:
4517
    case VIR_DOMAIN_NET_TYPE_DIRECT:
4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530
        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);
            }
        }
4531
        type_sep = ',';
4532
        is_tap = true;
4533 4534 4535 4536 4537
        break;

    case VIR_DOMAIN_NET_TYPE_ETHERNET:
        virBufferAddLit(&buf, "tap");
        if (net->ifname) {
4538
            virBufferAsprintf(&buf, "%cifname=%s", type_sep, net->ifname);
4539 4540
            type_sep = ',';
        }
4541
        if (net->script) {
4542
            virBufferAsprintf(&buf, "%cscript=%s", type_sep,
4543
                              net->script);
4544 4545
            type_sep = ',';
        }
4546
        is_tap = true;
4547 4548 4549
        break;

    case VIR_DOMAIN_NET_TYPE_CLIENT:
4550 4551 4552 4553 4554 4555 4556
       virBufferAsprintf(&buf, "socket%cconnect=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;

4557
    case VIR_DOMAIN_NET_TYPE_SERVER:
4558 4559 4560 4561 4562 4563 4564
       virBufferAsprintf(&buf, "socket%clisten=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;

4565
    case VIR_DOMAIN_NET_TYPE_MCAST:
4566 4567 4568 4569 4570 4571
       virBufferAsprintf(&buf, "socket%cmcast=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;
4572 4573 4574 4575 4576 4577 4578 4579

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

    if (vlan >= 0) {
4580
        virBufferAsprintf(&buf, "%cvlan=%d", type_sep, vlan);
4581
        if (net->info.alias)
4582
            virBufferAsprintf(&buf, ",name=host%s",
4583 4584
                              net->info.alias);
    } else {
4585
        virBufferAsprintf(&buf, "%cid=host%s",
4586 4587 4588
                          type_sep, net->info.alias);
    }

4589
    if (is_tap) {
4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602
        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);
                }
            }
        }
4603
        if (net->tune.sndbuf_specified)
4604
            virBufferAsprintf(&buf, ",sndbuf=%lu", net->tune.sndbuf);
4605 4606
    }

4607 4608
    virObjectUnref(cfg);

4609
    if (virBufferCheckError(&buf) < 0)
4610 4611 4612 4613 4614 4615 4616
        return NULL;

    return virBufferContentAndReset(&buf);
}


char *
4617 4618
qemuBuildWatchdogDevStr(virDomainDefPtr def,
                        virDomainWatchdogDefPtr dev,
4619
                        virQEMUCapsPtr qemuCaps)
4620 4621 4622 4623 4624
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    const char *model = virDomainWatchdogModelTypeToString(dev->model);
    if (!model) {
4625 4626
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing watchdog model"));
4627 4628 4629
        goto error;
    }

4630
    virBufferAsprintf(&buf, "%s,id=%s", model, dev->info.alias);
4631
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4632 4633
        goto error;

4634
    if (virBufferCheckError(&buf) < 0)
4635 4636 4637 4638
        goto error;

    return virBufferContentAndReset(&buf);

4639
 error:
4640 4641 4642 4643 4644 4645
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
4646 4647
qemuBuildMemballoonDevStr(virDomainDefPtr def,
                          virDomainMemballoonDefPtr dev,
4648
                          virQEMUCapsPtr qemuCaps)
4649 4650 4651
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4652 4653 4654 4655 4656 4657 4658
    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;
4659 4660 4661
        case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO:
            virBufferAddLit(&buf, "virtio-balloon-device");
            break;
4662
        default:
4663 4664 4665
            virReportError(VIR_ERR_XML_ERROR,
                           _("memballoon unsupported with address type '%s'"),
                           virDomainDeviceAddressTypeToString(dev->info.type));
4666 4667 4668
            goto error;
    }

4669
    virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
4670
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4671 4672
        goto error;

4673
    if (virBufferCheckError(&buf) < 0)
4674 4675 4676 4677
        goto error;

    return virBufferContentAndReset(&buf);

4678
 error:
4679 4680 4681 4682
    virBufferFreeAndReset(&buf);
    return NULL;
}

4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697
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;
    }

4698
    if (virBufferCheckError(&buf) < 0)
4699 4700 4701 4702
        goto error;

    return virBufferContentAndReset(&buf);

4703
 error:
4704 4705 4706
    virBufferFreeAndReset(&buf);
    return NULL;
}
4707 4708

char *
4709 4710
qemuBuildUSBInputDevStr(virDomainDefPtr def,
                        virDomainInputDefPtr dev,
4711
                        virQEMUCapsPtr qemuCaps)
4712 4713 4714
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727
    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;
    }
4728

4729
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4730 4731
        goto error;

4732
    if (virBufferCheckError(&buf) < 0)
4733 4734 4735 4736
        goto error;

    return virBufferContentAndReset(&buf);

4737
 error:
4738 4739 4740 4741 4742 4743
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
4744 4745
qemuBuildSoundDevStr(virDomainDefPtr def,
                     virDomainSoundDefPtr sound,
4746
                     virQEMUCapsPtr qemuCaps)
4747 4748
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4749
    const char *model = NULL;
4750

4751
    /* Hack for devices with different names in QEMU and libvirt */
4752
    switch ((virDomainSoundModel) sound->model) {
4753
    case VIR_DOMAIN_SOUND_MODEL_ES1370:
4754
        model = "ES1370";
4755 4756
        break;
    case VIR_DOMAIN_SOUND_MODEL_AC97:
4757
        model = "AC97";
4758 4759
        break;
    case VIR_DOMAIN_SOUND_MODEL_ICH6:
4760
        model = "intel-hda";
4761
        break;
4762 4763 4764 4765 4766 4767 4768 4769 4770
    case VIR_DOMAIN_SOUND_MODEL_USB:
        model = "usb-audio";
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_USB_AUDIO)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("usb-audio controller is not supported "
                             "by this QEMU binary"));
            goto error;
        }
        break;
4771 4772 4773 4774 4775 4776 4777 4778 4779
    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;
4780 4781 4782 4783 4784 4785 4786 4787 4788
    case VIR_DOMAIN_SOUND_MODEL_SB16:
        model = "sb16";
        break;
    case VIR_DOMAIN_SOUND_MODEL_PCSPK: /* pc-speaker is handled separately */
    case VIR_DOMAIN_SOUND_MODEL_LAST:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("sound card model '%s' is not supported by qemu"),
                       virDomainSoundModelTypeToString(sound->model));
        goto error;
4789
    }
4790

4791
    virBufferAsprintf(&buf, "%s,id=%s", model, sound->info.alias);
4792
    if (qemuBuildDeviceAddressStr(&buf, def, &sound->info, qemuCaps) < 0)
4793 4794
        goto error;

4795
    if (virBufferCheckError(&buf) < 0)
4796 4797 4798 4799
        goto error;

    return virBufferContentAndReset(&buf);

4800
 error:
4801 4802 4803 4804
    virBufferFreeAndReset(&buf);
    return NULL;
}

4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819

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;
    }
}


4820 4821
static char *
qemuBuildSoundCodecStr(virDomainSoundDefPtr sound,
4822
                       virDomainSoundCodecDefPtr codec,
4823
                       virQEMUCapsPtr qemuCaps)
4824 4825
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4826
    const char *stype;
4827
    int type, flags;
4828

4829 4830
    type = codec->type;
    stype = qemuSoundCodecTypeToString(type);
4831
    flags = qemuSoundCodecTypeToCaps(type);
4832

4833
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
4834 4835
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), stype);
4836 4837 4838
        goto error;
    }

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

4842 4843
    return virBufferContentAndReset(&buf);

4844
 error:
4845 4846 4847
    virBufferFreeAndReset(&buf);
    return NULL;
}
4848 4849

static char *
4850 4851
qemuBuildDeviceVideoStr(virDomainDefPtr def,
                        virDomainVideoDefPtr video,
4852
                        virQEMUCapsPtr qemuCaps,
4853
                        bool primary)
4854 4855
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4856
    const char *model;
4857

4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872
    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;
        }

4873
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL)) {
4874 4875 4876 4877 4878 4879
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("only one video card is currently supported"));
            goto error;
        }

        model = "qxl";
4880 4881
    }

4882
    virBufferAsprintf(&buf, "%s,id=%s", model, video->info.alias);
4883 4884

    if (video->type == VIR_DOMAIN_VIDEO_TYPE_QXL) {
4885
        if (video->vram > (UINT_MAX / 1024)) {
4886
            virReportError(VIR_ERR_OVERFLOW,
4887 4888
                           _("value for 'vram' must be less than '%u'"),
                           UINT_MAX / 1024);
4889 4890
            goto error;
        }
4891 4892 4893 4894 4895 4896 4897
        if (video->ram > (UINT_MAX / 1024)) {
            virReportError(VIR_ERR_OVERFLOW,
                           _("value for 'ram' must be less than '%u'"),
                           UINT_MAX / 1024);
            goto error;
        }

4898 4899 4900 4901
        if (video->ram) {
            /* QEMU accepts bytes for ram_size. */
            virBufferAsprintf(&buf, ",ram_size=%u", video->ram * 1024);
        }
4902

4903 4904 4905 4906
        if (video->vram) {
            /* QEMU accepts bytes for vram_size. */
            virBufferAsprintf(&buf, ",vram_size=%u", video->vram * 1024);
        }
4907 4908 4909 4910 4911 4912

        if ((primary && virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VGA_VGAMEM)) ||
            (!primary && virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VGAMEM))) {
            /* QEMU accepts mebibytes for vgamem_mb. */
            virBufferAsprintf(&buf, ",vgamem_mb=%u", video->vgamem / 1024);
        }
4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926
    } else if (video->vram &&
        ((video->type == VIR_DOMAIN_VIDEO_TYPE_VGA &&
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_VGAMEM)) ||
         (video->type == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_VMWARE_SVGA_VGAMEM)))) {

        if (video->vram < 1024) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("value for 'vram' must be at least 1 MiB "
                                   "(1024 KiB)"));
            goto error;
        }

        virBufferAsprintf(&buf, ",vgamem_mb=%u", video->vram / 1024);
4927 4928
    }

4929
    if (qemuBuildDeviceAddressStr(&buf, def, &video->info, qemuCaps) < 0)
4930 4931
        goto error;

4932
    if (virBufferCheckError(&buf) < 0)
4933 4934 4935 4936
        goto error;

    return virBufferContentAndReset(&buf);

4937
 error:
4938 4939 4940 4941 4942 4943 4944 4945
    virBufferFreeAndReset(&buf);
    return NULL;
}


int
qemuOpenPCIConfig(virDomainHostdevDefPtr dev)
{
4946
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
4947 4948 4949 4950
    char *path = NULL;
    int configfd = -1;

    if (virAsprintf(&path, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/config",
4951 4952
                    pcisrc->addr.domain, pcisrc->addr.bus,
                    pcisrc->addr.slot, pcisrc->addr.function) < 0)
4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965
        return -1;

    configfd = open(path, O_RDWR, 0);

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

    VIR_FREE(path);

    return configfd;
}

char *
4966 4967 4968
qemuBuildPCIHostdevDevStr(virDomainDefPtr def,
                          virDomainHostdevDefPtr dev,
                          const char *configfd,
4969
                          virQEMUCapsPtr qemuCaps)
4970 4971
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4972 4973
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
    int backend = pcisrc->backend;
4974

4975
    /* caller has to assign proper passthrough backend type */
4976
    switch ((virDomainHostdevSubsysPCIBackendType) backend) {
4977
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM:
4978 4979 4980
        virBufferAddLit(&buf, "pci-assign");
        if (configfd && *configfd)
            virBufferAsprintf(&buf, ",configfd=%s", configfd);
4981 4982 4983 4984 4985 4986
        break;

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

4987
    default:
4988 4989
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid PCI passthrough type '%s'"),
4990
                       virDomainHostdevSubsysPCIBackendTypeToString(backend));
4991
        goto error;
4992
    }
4993

4994
    virBufferAddLit(&buf, ",host=");
4995
    if (pcisrc->addr.domain) {
4996 4997 4998 4999
        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"),
5000
                           pcisrc->addr.domain);
5001 5002
            goto error;
        }
5003
        virBufferAsprintf(&buf, "%.4x:", pcisrc->addr.domain);
5004 5005
    }
    virBufferAsprintf(&buf, "%.2x:%.2x.%.1x",
5006 5007
                      pcisrc->addr.bus, pcisrc->addr.slot,
                      pcisrc->addr.function);
5008 5009 5010
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);
5011
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
5012
        goto error;
5013
    if (qemuBuildRomStr(&buf, dev->info, qemuCaps) < 0)
5014
       goto error;
5015

5016
    if (virBufferCheckError(&buf) < 0)
5017 5018 5019 5020
        goto error;

    return virBufferContentAndReset(&buf);

5021
 error:
5022 5023 5024 5025 5026 5027
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
5028 5029
qemuBuildPCIHostdevPCIDevStr(virDomainHostdevDefPtr dev,
                             virQEMUCapsPtr qemuCaps)
5030 5031
{
    char *ret = NULL;
5032
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
5033

5034
    if (pcisrc->addr.domain) {
5035 5036 5037 5038
        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"),
5039
                           pcisrc->addr.domain);
5040 5041 5042
            goto cleanup;
        }
        ignore_value(virAsprintf(&ret, "host=%.4x:%.2x:%.2x.%.1x",
5043 5044
                                 pcisrc->addr.domain, pcisrc->addr.bus,
                                 pcisrc->addr.slot, pcisrc->addr.function));
5045 5046
    } else {
        ignore_value(virAsprintf(&ret, "host=%.2x:%.2x.%.1x",
5047 5048
                                 pcisrc->addr.bus, pcisrc->addr.slot,
                                 pcisrc->addr.function));
5049 5050
    }
 cleanup:
5051 5052 5053 5054
    return ret;
}


5055
char *
5056 5057
qemuBuildRedirdevDevStr(virDomainDefPtr def,
                        virDomainRedirdevDefPtr dev,
5058
                        virQEMUCapsPtr qemuCaps)
5059
{
5060
    size_t i;
5061
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5062
    virDomainRedirFilterDefPtr redirfilter = def->redirfilter;
5063 5064

    if (dev->bus != VIR_DOMAIN_REDIRDEV_BUS_USB) {
5065 5066 5067
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Redirection bus %s is not supported by QEMU"),
                       virDomainRedirdevBusTypeToString(dev->bus));
5068 5069 5070
        goto error;
    }

5071
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR)) {
5072 5073 5074
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("USB redirection is not supported "
                         "by this version of QEMU"));
5075 5076 5077 5078 5079 5080 5081
        goto error;
    }

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

5082
    if (redirfilter && redirfilter->nusbdevs) {
5083
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR_FILTER)) {
5084 5085 5086 5087 5088 5089
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("USB redirection filter is not "
                             "supported by this version of QEMU"));
            goto error;
        }

5090
        virBufferAddLit(&buf, ",filter=");
5091 5092

        for (i = 0; i < redirfilter->nusbdevs; i++) {
5093
            virDomainRedirFilterUSBDevDefPtr usbdev = redirfilter->usbdevs[i];
5094 5095 5096
            if (usbdev->usbClass >= 0)
                virBufferAsprintf(&buf, "0x%02X:", usbdev->usbClass);
            else
5097
                virBufferAddLit(&buf, "-1:");
5098 5099 5100 5101

            if (usbdev->vendor >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->vendor);
            else
5102
                virBufferAddLit(&buf, "-1:");
5103 5104 5105 5106

            if (usbdev->product >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->product);
            else
5107
                virBufferAddLit(&buf, "-1:");
5108 5109 5110 5111

            if (usbdev->version >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->version);
            else
5112
                virBufferAddLit(&buf, "-1:");
5113 5114 5115

            virBufferAsprintf(&buf, "%u", usbdev->allow);
            if (i < redirfilter->nusbdevs -1)
5116
                virBufferAddLit(&buf, "|");
5117 5118 5119
        }
    }

5120
    if (dev->info.bootIndex) {
5121
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR_BOOTINDEX)) {
5122 5123 5124 5125 5126 5127 5128 5129
            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);
    }

5130
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
5131 5132
        goto error;

5133
    if (virBufferCheckError(&buf) < 0)
5134 5135 5136 5137
        goto error;

    return virBufferContentAndReset(&buf);

5138
 error:
5139 5140 5141 5142
    virBufferFreeAndReset(&buf);
    return NULL;
}

5143
char *
5144 5145
qemuBuildUSBHostdevDevStr(virDomainDefPtr def,
                          virDomainHostdevDefPtr dev,
5146
                          virQEMUCapsPtr qemuCaps)
5147
{
5148
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5149
    virDomainHostdevSubsysUSBPtr usbsrc = &dev->source.subsys.u.usb;
5150

5151
    if (!dev->missing && !usbsrc->bus && !usbsrc->device) {
5152 5153
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
5154 5155 5156
        return NULL;
    }

5157 5158 5159
    virBufferAddLit(&buf, "usb-host");
    if (!dev->missing) {
        virBufferAsprintf(&buf, ",hostbus=%d,hostaddr=%d",
5160
                          usbsrc->bus, usbsrc->device);
5161 5162
    }
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
5163 5164
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);
5165

5166
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
5167 5168
        goto error;

5169
    if (virBufferCheckError(&buf) < 0)
5170
        goto error;
5171

5172 5173
    return virBufferContentAndReset(&buf);

5174
 error:
5175 5176
    virBufferFreeAndReset(&buf);
    return NULL;
5177 5178 5179
}


M
Marc-André Lureau 已提交
5180
char *
5181 5182
qemuBuildHubDevStr(virDomainDefPtr def,
                   virDomainHubDefPtr dev,
5183
                   virQEMUCapsPtr qemuCaps)
M
Marc-André Lureau 已提交
5184 5185 5186 5187
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (dev->type != VIR_DOMAIN_HUB_TYPE_USB) {
5188 5189 5190
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("hub type %s not supported"),
                       virDomainHubTypeToString(dev->type));
M
Marc-André Lureau 已提交
5191 5192 5193
        goto error;
    }

5194
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HUB)) {
5195
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
5196
                       _("usb-hub not supported by QEMU binary"));
M
Marc-André Lureau 已提交
5197 5198 5199 5200 5201
        goto error;
    }

    virBufferAddLit(&buf, "usb-hub");
    virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
5202
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
M
Marc-André Lureau 已提交
5203 5204
        goto error;

5205
    if (virBufferCheckError(&buf) < 0)
M
Marc-André Lureau 已提交
5206 5207 5208 5209
        goto error;

    return virBufferContentAndReset(&buf);

5210
 error:
M
Marc-André Lureau 已提交
5211 5212 5213 5214 5215
    virBufferFreeAndReset(&buf);
    return NULL;
}


5216
char *
5217
qemuBuildUSBHostdevUSBDevStr(virDomainHostdevDefPtr dev)
5218 5219
{
    char *ret = NULL;
5220
    virDomainHostdevSubsysUSBPtr usbsrc = &dev->source.subsys.u.usb;
5221

5222 5223 5224 5225 5226 5227
    if (dev->missing) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("This QEMU doesn't not support missing USB devices"));
        return NULL;
    }

5228
    if (!usbsrc->bus && !usbsrc->device) {
5229 5230
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
5231 5232 5233
        return NULL;
    }

5234
    ignore_value(virAsprintf(&ret, "host:%d.%d", usbsrc->bus, usbsrc->device));
5235 5236 5237
    return ret;
}

5238 5239 5240 5241
static char *
qemuBuildSCSIHostHostdevDrvStr(virDomainHostdevDefPtr dev,
                               virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED,
                               qemuBuildCommandLineCallbacksPtr callbacks)
5242
{
5243
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;
5244
    virDomainHostdevSubsysSCSIHostPtr scsihostsrc = &scsisrc->u.host;
5245 5246
    char *sg = NULL;

5247
    sg = (callbacks->qemuGetSCSIDeviceSgName)(NULL,
5248 5249 5250 5251
                                              scsihostsrc->adapter,
                                              scsihostsrc->bus,
                                              scsihostsrc->target,
                                              scsihostsrc->unit);
5252 5253 5254 5255 5256 5257 5258 5259 5260 5261
    return sg;
}

static char *
qemuBuildSCSIiSCSIHostdevDrvStr(virConnectPtr conn,
                                virDomainHostdevDefPtr dev)
{
    char *source = NULL;
    char *secret = NULL;
    char *username = NULL;
5262 5263 5264 5265
    virStorageSource src;

    memset(&src, 0, sizeof(src));

5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;
    virDomainHostdevSubsysSCSIiSCSIPtr iscsisrc = &scsisrc->u.iscsi;

    if (conn && iscsisrc->auth) {
        const char *protocol =
            virStorageNetProtocolTypeToString(VIR_STORAGE_NET_PROTOCOL_ISCSI);
        bool encode = false;
        int secretType = VIR_SECRET_USAGE_TYPE_ISCSI;

        username = iscsisrc->auth->username;
        if (!(secret = qemuGetSecretString(conn, protocol, encode,
                                           iscsisrc->auth, secretType)))
            goto cleanup;
    }

5281 5282 5283 5284 5285
    src.protocol = VIR_STORAGE_NET_PROTOCOL_ISCSI;
    src.path = iscsisrc->path;
    src.hosts = iscsisrc->hosts;
    src.nhosts = iscsisrc->nhosts;

5286
    /* Rather than pull what we think we want - use the network disk code */
5287
    source = qemuBuildNetworkDriveURI(&src, username, secret);
5288

5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313
 cleanup:
    VIR_FREE(secret);
    return source;
}

char *
qemuBuildSCSIHostdevDrvStr(virConnectPtr conn,
                           virDomainHostdevDefPtr dev,
                           virQEMUCapsPtr qemuCaps,
                           qemuBuildCommandLineCallbacksPtr callbacks)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *source = NULL;
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;

    if (scsisrc->protocol == VIR_DOMAIN_HOSTDEV_SCSI_PROTOCOL_TYPE_ISCSI) {
        if (!(source = qemuBuildSCSIiSCSIHostdevDrvStr(conn, dev)))
            goto error;
        virBufferAsprintf(&buf, "file=%s,if=none,format=raw", source);
    } else {
        if (!(source = qemuBuildSCSIHostHostdevDrvStr(dev, qemuCaps,
                                                      callbacks)))
            goto error;
        virBufferAsprintf(&buf, "file=/dev/%s,if=none", source);
    }
5314 5315 5316 5317
    virBufferAsprintf(&buf, ",id=%s-%s",
                      virDomainDeviceAddressTypeToString(dev->info->type),
                      dev->info->alias);

O
Osier Yang 已提交
5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328
    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;
        }
    }

5329
    if (virBufferCheckError(&buf) < 0)
5330 5331
        goto error;

5332
    VIR_FREE(source);
5333
    return virBufferContentAndReset(&buf);
5334
 error:
5335
    VIR_FREE(source);
5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350
    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);

5351
    if (qemuSetSCSIControllerModel(def, qemuCaps, &model) < 0)
5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383
        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);
    }
5384

5385 5386 5387 5388
    virBufferAsprintf(&buf, ",drive=%s-%s,id=%s",
                      virDomainDeviceAddressTypeToString(dev->info->type),
                      dev->info->alias, dev->info->alias);

5389 5390 5391
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);

5392
    if (virBufferCheckError(&buf) < 0)
5393 5394 5395
        goto error;

    return virBufferContentAndReset(&buf);
5396
 error:
5397 5398 5399
    virBufferFreeAndReset(&buf);
    return NULL;
}
5400 5401 5402

/* This function outputs a -chardev command line option which describes only the
 * host side of the character device */
5403
static char *
5404
qemuBuildChrChardevStr(virDomainChrSourceDefPtr dev, const char *alias,
5405
                       virQEMUCapsPtr qemuCaps)
5406 5407 5408 5409
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    bool telnet;

5410
    switch (dev->type) {
5411
    case VIR_DOMAIN_CHR_TYPE_NULL:
5412
        virBufferAsprintf(&buf, "null,id=char%s", alias);
5413 5414 5415
        break;

    case VIR_DOMAIN_CHR_TYPE_VC:
5416
        virBufferAsprintf(&buf, "vc,id=char%s", alias);
5417 5418 5419
        break;

    case VIR_DOMAIN_CHR_TYPE_PTY:
5420
        virBufferAsprintf(&buf, "pty,id=char%s", alias);
5421 5422 5423
        break;

    case VIR_DOMAIN_CHR_TYPE_DEV:
5424 5425 5426
        virBufferAsprintf(&buf, "%s,id=char%s,path=%s",
                          STRPREFIX(alias, "parallel") ? "parport" : "tty",
                          alias, dev->data.file.path);
5427 5428 5429
        break;

    case VIR_DOMAIN_CHR_TYPE_FILE:
5430
        virBufferAsprintf(&buf, "file,id=char%s,path=%s", alias,
5431
                          dev->data.file.path);
5432 5433 5434
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
5435
        virBufferAsprintf(&buf, "pipe,id=char%s,path=%s", alias,
5436
                          dev->data.file.path);
5437 5438 5439
        break;

    case VIR_DOMAIN_CHR_TYPE_STDIO:
5440
        virBufferAsprintf(&buf, "stdio,id=char%s", alias);
5441 5442
        break;

5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454
    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";

5455
        virBufferAsprintf(&buf,
5456 5457
                          "udp,id=char%s,host=%s,port=%s,localaddr=%s,"
                          "localport=%s",
5458
                          alias,
5459
                          connectHost,
5460
                          dev->data.udp.connectService,
5461
                          bindHost, bindService);
5462
        break;
5463
    }
5464 5465
    case VIR_DOMAIN_CHR_TYPE_TCP:
        telnet = dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
5466
        virBufferAsprintf(&buf,
5467
                          "socket,id=char%s,host=%s,port=%s%s%s",
5468
                          alias,
5469 5470 5471 5472 5473 5474 5475
                          dev->data.tcp.host,
                          dev->data.tcp.service,
                          telnet ? ",telnet" : "",
                          dev->data.tcp.listen ? ",server,nowait" : "");
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
5476
        virBufferAsprintf(&buf,
5477
                          "socket,id=char%s,path=%s%s",
5478
                          alias,
5479 5480 5481
                          dev->data.nix.path,
                          dev->data.nix.listen ? ",server,nowait" : "");
        break;
5482 5483

    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
5484
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_SPICEVMC)) {
5485
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
5486
                           _("spicevmc not supported in this QEMU binary"));
5487 5488
            goto error;
        }
5489
        virBufferAsprintf(&buf, "spicevmc,id=char%s,name=%s", alias,
E
Eric Blake 已提交
5490
                          virDomainChrSpicevmcTypeToString(dev->data.spicevmc));
5491 5492
        break;

5493 5494 5495 5496 5497 5498 5499 5500 5501 5502
    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;

5503
    default:
5504 5505 5506
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported chardev '%s'"),
                       virDomainChrTypeToString(dev->type));
5507
        goto error;
5508 5509
    }

5510
    if (virBufferCheckError(&buf) < 0)
5511 5512 5513 5514
        goto error;

    return virBufferContentAndReset(&buf);

5515
 error:
5516 5517 5518 5519 5520
    virBufferFreeAndReset(&buf);
    return NULL;
}


5521 5522
static char *
qemuBuildChrArgStr(virDomainChrSourceDefPtr dev, const char *prefix)
5523 5524 5525 5526 5527 5528
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

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

5529
    switch ((virDomainChrType)dev->type) {
5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546
    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:
5547
        virBufferAsprintf(&buf, "file:%s", dev->data.file.path);
5548 5549 5550
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
5551
        virBufferAsprintf(&buf, "pipe:%s", dev->data.file.path);
5552 5553 5554 5555 5556 5557
        break;

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

5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569
    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";

5570
        virBufferAsprintf(&buf, "udp:%s:%s@%s:%s",
5571
                          connectHost,
5572
                          dev->data.udp.connectService,
5573 5574
                          bindHost,
                          bindService);
5575
        break;
5576
    }
5577 5578
    case VIR_DOMAIN_CHR_TYPE_TCP:
        if (dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET) {
5579
            virBufferAsprintf(&buf, "telnet:%s:%s%s",
5580 5581 5582 5583
                              dev->data.tcp.host,
                              dev->data.tcp.service,
                              dev->data.tcp.listen ? ",server,nowait" : "");
        } else {
5584
            virBufferAsprintf(&buf, "tcp:%s:%s%s",
5585 5586 5587 5588 5589 5590 5591
                              dev->data.tcp.host,
                              dev->data.tcp.service,
                              dev->data.tcp.listen ? ",server,nowait" : "");
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
5592
        virBufferAsprintf(&buf, "unix:%s%s",
5593 5594 5595
                          dev->data.nix.path,
                          dev->data.nix.listen ? ",server,nowait" : "");
        break;
5596

5597
    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
5598
    case VIR_DOMAIN_CHR_TYPE_SPICEPORT:
5599
    case VIR_DOMAIN_CHR_TYPE_NMDM:
5600
    case VIR_DOMAIN_CHR_TYPE_LAST:
5601
        break;
5602 5603
    }

5604
    if (virBufferCheckError(&buf) < 0)
5605 5606 5607 5608
        goto error;

    return virBufferContentAndReset(&buf);

5609
 error:
5610 5611 5612 5613 5614
    virBufferFreeAndReset(&buf);
    return NULL;
}


5615 5616
static char *
qemuBuildVirtioSerialPortDevStr(virDomainChrDefPtr dev,
5617
                                virQEMUCapsPtr qemuCaps)
5618 5619
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5620 5621
    switch (dev->deviceType) {
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
5622
        virBufferAddLit(&buf, "virtconsole");
5623 5624 5625 5626
        break;
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
        /* Legacy syntax  '-device spicevmc' */
        if (dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5627
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC)) {
5628 5629 5630 5631 5632 5633
            virBufferAddLit(&buf, "spicevmc");
        } else {
            virBufferAddLit(&buf, "virtserialport");
        }
        break;
    default:
5634 5635
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Cannot use virtio serial for parallel/serial devices"));
5636 5637
        return NULL;
    }
5638

5639
    if (dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
5640
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW &&
5641
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
5642 5643 5644 5645
        /* Check it's a virtio-serial address */
        if (dev->info.type !=
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_SERIAL)
        {
5646 5647
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("virtio serial device has invalid address type"));
5648 5649 5650
            goto error;
        }

5651
        virBufferAsprintf(&buf,
5652 5653 5654
                          ",bus=" QEMU_VIRTIO_SERIAL_PREFIX "%d.%d",
                          dev->info.addr.vioserial.controller,
                          dev->info.addr.vioserial.bus);
5655
        virBufferAsprintf(&buf,
5656 5657 5658 5659
                          ",nr=%d",
                          dev->info.addr.vioserial.port);
    }

5660 5661
    if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
        dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5662 5663
        dev->target.name &&
        STRNEQ(dev->target.name, "com.redhat.spice.0")) {
5664 5665 5666
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported spicevmc target name '%s'"),
                       dev->target.name);
5667 5668
        goto error;
    }
5669 5670 5671

    if (!(dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
          dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5672
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC))) {
5673
        virBufferAsprintf(&buf, ",chardev=char%s,id=%s",
5674
                          dev->info.alias, dev->info.alias);
5675 5676 5677
        if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL) {
            virBufferAsprintf(&buf, ",name=%s", dev->target.name
                              ? dev->target.name : "com.redhat.spice.0");
5678
        }
5679 5680
    } else {
        virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
5681
    }
5682
    if (virBufferCheckError(&buf) < 0)
5683 5684 5685 5686
        goto error;

    return virBufferContentAndReset(&buf);

5687
 error:
5688 5689 5690 5691
    virBufferFreeAndReset(&buf);
    return NULL;
}

5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711
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);
5712
    if (virBufferCheckError(&buf) < 0)
5713 5714 5715 5716
        goto error;

    return virBufferContentAndReset(&buf);

5717
 error:
5718 5719 5720 5721
    virBufferFreeAndReset(&buf);
    return NULL;
}

5722 5723 5724 5725 5726 5727 5728

static int
qemuBuildRNGBackendArgs(virCommandPtr cmd,
                        virDomainRNGDefPtr dev,
                        virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5729
    char *backend = NULL;
5730 5731
    int ret = -1;

5732
    switch ((virDomainRNGBackend) dev->backend) {
5733 5734 5735 5736
    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 "
5737
                             "backend"));
5738 5739 5740
            goto cleanup;
        }

5741 5742
        virBufferAsprintf(&buf, "rng-random,id=%s,filename=%s",
                          dev->info.alias, dev->source.file);
5743 5744 5745 5746 5747 5748

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

    case VIR_DOMAIN_RNG_BACKEND_EGD:
5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765

        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);
5766 5767 5768 5769 5770 5771 5772 5773
        break;

    case VIR_DOMAIN_RNG_BACKEND_LAST:
        break;
    }

    ret = 0;

5774
 cleanup:
5775
    virBufferFreeAndReset(&buf);
5776
    VIR_FREE(backend);
5777 5778 5779 5780 5781 5782
    return ret;
}


static int
qemuBuildRNGDeviceArgs(virCommandPtr cmd,
5783
                       virDomainDefPtr def,
5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797
                       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;
    }

5798 5799 5800 5801
    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);
5802 5803
    else if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
        virBufferAsprintf(&buf, "virtio-rng-device,rng=%s", dev->info.alias);
5804 5805
    else
        virBufferAsprintf(&buf, "virtio-rng-pci,rng=%s", dev->info.alias);
5806

5807 5808 5809 5810 5811 5812 5813 5814
    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");
    }

5815
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
5816 5817 5818 5819 5820 5821 5822
        goto cleanup;

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

    ret = 0;

5823
 cleanup:
5824 5825 5826 5827 5828
    virBufferFreeAndReset(&buf);
    return ret;
}


E
Eric Blake 已提交
5829
static char *qemuBuildTPMBackendStr(const virDomainDef *def,
5830 5831 5832
                                    virQEMUCapsPtr qemuCaps,
                                    const char *emulator)
{
E
Eric Blake 已提交
5833
    const virDomainTPMDef *tpm = def->tpm;
5834 5835
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const char *type = virDomainTPMBackendTypeToString(tpm->type);
5836 5837
    char *cancel_path;
    const char *tpmdev;
5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861

    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;
    }

5862
    if (virBufferCheckError(&buf) < 0)
5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878
        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 已提交
5879
static char *qemuBuildTPMDevStr(const virDomainDef *def,
5880 5881 5882 5883
                                virQEMUCapsPtr qemuCaps,
                                const char *emulator)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
E
Eric Blake 已提交
5884
    const virDomainTPMDef *tpm = def->tpm;
5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897
    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);

5898
    if (virBufferCheckError(&buf) < 0)
5899 5900 5901 5902 5903 5904 5905 5906 5907 5908
        goto error;

    return virBufferContentAndReset(&buf);

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


5909 5910 5911 5912 5913 5914
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))
5915
        return NULL;
5916 5917 5918 5919 5920

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

    /* 0:Vendor */
    if (def->bios_vendor)
5921
        virBufferAsprintf(&buf, ",vendor=%s", def->bios_vendor);
5922 5923
    /* 0:BIOS Version */
    if (def->bios_version)
5924
        virBufferAsprintf(&buf, ",version=%s", def->bios_version);
5925 5926
    /* 0:BIOS Release Date */
    if (def->bios_date)
5927
        virBufferAsprintf(&buf, ",date=%s", def->bios_date);
5928 5929
    /* 0:System BIOS Major Release and 0:System BIOS Minor Release */
    if (def->bios_release)
5930
        virBufferAsprintf(&buf, ",release=%s", def->bios_release);
5931

5932
    if (virBufferCheckError(&buf) < 0)
5933 5934 5935 5936
        goto error;

    return virBufferContentAndReset(&buf);

5937
 error:
5938
    virBufferFreeAndReset(&buf);
5939
    return NULL;
5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955
}

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)
5956
        virBufferAsprintf(&buf, ",manufacturer=%s",
5957 5958 5959
                          def->system_manufacturer);
     /* 1:Product Name */
    if (def->system_product)
5960
        virBufferAsprintf(&buf, ",product=%s", def->system_product);
5961 5962
    /* 1:Version */
    if (def->system_version)
5963
        virBufferAsprintf(&buf, ",version=%s", def->system_version);
5964 5965
    /* 1:Serial Number */
    if (def->system_serial)
5966
        virBufferAsprintf(&buf, ",serial=%s", def->system_serial);
5967 5968
    /* 1:UUID */
    if (def->system_uuid && !skip_uuid)
5969
        virBufferAsprintf(&buf, ",uuid=%s", def->system_uuid);
5970 5971
    /* 1:SKU Number */
    if (def->system_sku)
5972
        virBufferAsprintf(&buf, ",sku=%s", def->system_sku);
5973 5974
    /* 1:Family */
    if (def->system_family)
5975
        virBufferAsprintf(&buf, ",family=%s", def->system_family);
5976

5977
    if (virBufferCheckError(&buf) < 0)
5978 5979 5980 5981
        goto error;

    return virBufferContentAndReset(&buf);

5982
 error:
5983
    virBufferFreeAndReset(&buf);
5984
    return NULL;
5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005
}

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;

6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024
        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;
6025
        }
6026

6027 6028 6029
        now += def->data.variable.adjustment;
        gmtime_r(&now, &nowbits);

6030 6031 6032 6033 6034 6035 6036 6037
        /* 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;

6038
        virBufferAsprintf(&buf, "base=%d-%02d-%02dT%02d:%02d:%02d",
6039 6040 6041 6042 6043 6044 6045 6046 6047
                          nowbits.tm_year + 1900,
                          nowbits.tm_mon + 1,
                          nowbits.tm_mday,
                          nowbits.tm_hour,
                          nowbits.tm_min,
                          nowbits.tm_sec);
    }   break;

    default:
6048 6049 6050
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported clock offset '%s'"),
                       virDomainClockOffsetTypeToString(def->offset));
6051 6052 6053 6054
        goto error;
    }

    /* Look for an 'rtc' timer element, and add in appropriate clock= and driftfix= */
6055
    size_t i;
6056 6057 6058 6059 6060 6061
    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:
6062 6063 6064
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer track '%s'"),
                               virDomainTimerTrackTypeToString(def->timers[i]->track));
6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085
                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:
6086 6087 6088
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->timers[i]->tickpolicy));
6089 6090 6091 6092 6093 6094
                goto error;
            }
            break; /* no need to check other timers - there is only one rtc */
        }
    }

6095
    if (virBufferCheckError(&buf) < 0)
6096 6097 6098 6099
        goto error;

    return virBufferContentAndReset(&buf);

6100
 error:
6101 6102 6103 6104 6105
    virBufferFreeAndReset(&buf);
    return NULL;
}

static int
6106 6107 6108 6109 6110 6111
qemuBuildCpuModelArgStr(virQEMUDriverPtr driver,
                        const virDomainDef *def,
                        virBufferPtr buf,
                        virQEMUCapsPtr qemuCaps,
                        bool *hasHwVirt,
                        bool migrating)
6112
{
6113 6114
    int ret = -1;
    size_t i;
6115
    virCPUDefPtr host = NULL;
6116
    virCPUDefPtr guest = NULL;
6117
    virCPUDefPtr cpu = NULL;
6118
    virCPUDefPtr featCpu = NULL;
6119
    size_t ncpus = 0;
6120
    char **cpus = NULL;
6121
    virCPUDataPtr data = NULL;
6122
    char *compare_msg = NULL;
6123 6124
    virCPUCompareResult cmp;
    const char *preferred;
6125
    virCapsPtr caps = NULL;
6126 6127 6128
    bool compareAgainstHost = ((def->virtType == VIR_DOMAIN_VIRT_KVM ||
                                def->cpu->mode != VIR_CPU_MODE_CUSTOM) &&
                               def->cpu->mode != VIR_CPU_MODE_HOST_PASSTHROUGH);
6129

6130 6131 6132 6133 6134
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

    host = caps->host.cpu;

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

6143 6144 6145
    if (!(cpu = virCPUDefCopy(def->cpu)))
        goto cleanup;

6146
    if (cpu->mode == VIR_CPU_MODE_HOST_MODEL &&
6147 6148 6149
        !migrating &&
        cpuUpdate(cpu, host) < 0)
        goto cleanup;
6150

6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166
    /* For non-KVM, CPU features are emulated, so host compat doesn't matter */
    if (compareAgainstHost) {
        cmp = cpuGuestData(host, cpu, &data, &compare_msg);
        switch (cmp) {
        case VIR_CPU_COMPARE_INCOMPATIBLE:
            if (compare_msg) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("guest and host CPU are not compatible: %s"),
                               compare_msg);
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("guest CPU is not compatible with host CPU"));
            }
            /* fall through */
        case VIR_CPU_COMPARE_ERROR:
            goto cleanup;
6167

6168 6169 6170
        default:
            break;
        }
6171 6172 6173 6174 6175
    }

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

6184 6185 6186
    if ((cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH) ||
        ((cpu->mode == VIR_CPU_MODE_HOST_MODEL) &&
          ARCH_IS_PPC64(def->os.arch))) {
6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200
        const char *mode = virCPUModeTypeToString(cpu->mode);
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CPU_HOST)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("CPU mode '%s' is not supported by QEMU"
                             " binary"), mode);
            goto cleanup;
        }
        if (def->virtType != VIR_DOMAIN_VIRT_KVM) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("CPU mode '%s' is only supported with kvm"),
                           mode);
            goto cleanup;
        }
        virBufferAddLit(buf, "host");
6201 6202 6203 6204

        if (ARCH_IS_PPC64(def->os.arch) &&
            cpu->mode == VIR_CPU_MODE_HOST_MODEL) {
            virBufferAsprintf(buf, ",compat=%s", def->cpu->model);
6205 6206
        } else {
            featCpu = cpu;
6207 6208
        }

6209 6210 6211 6212
    } else {
        if (VIR_ALLOC(guest) < 0)
            goto cleanup;
        if (VIR_STRDUP(guest->vendor_id, cpu->vendor_id) < 0)
6213 6214
            goto cleanup;

6215 6216 6217 6218 6219 6220
        if (compareAgainstHost) {
            guest->arch = host->arch;
            if (cpu->match == VIR_CPU_MATCH_MINIMUM)
                preferred = host->model;
            else
                preferred = cpu->model;
6221

6222 6223 6224 6225 6226 6227 6228 6229 6230 6231
            guest->type = VIR_CPU_TYPE_GUEST;
            guest->fallback = cpu->fallback;
            if (cpuDecode(guest, data,
                          (const char **)cpus, ncpus, preferred) < 0)
                goto cleanup;
        } else {
            guest->arch = def->os.arch;
            if (VIR_STRDUP(guest->model, cpu->model) < 0)
                goto cleanup;
        }
6232 6233 6234
        virBufferAdd(buf, guest->model, -1);
        if (guest->vendor_id)
            virBufferAsprintf(buf, ",vendor=%s", guest->vendor_id);
6235 6236 6237 6238 6239
        featCpu = guest;
    }

    if (featCpu) {
        for (i = 0; i < featCpu->nfeatures; i++) {
6240
            char sign;
6241
            if (featCpu->features[i].policy == VIR_CPU_FEATURE_DISABLE)
6242 6243 6244
                sign = '-';
            else
                sign = '+';
6245

6246
            virBufferAsprintf(buf, ",%c%s", sign, featCpu->features[i].name);
6247
        }
6248
    }
6249

6250
    ret = 0;
6251
 cleanup:
6252 6253 6254 6255 6256 6257 6258
    virObjectUnref(caps);
    VIR_FREE(compare_msg);
    cpuDataFree(data);
    virCPUDefFree(guest);
    virCPUDefFree(cpu);
    return ret;
}
6259

6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274
static int
qemuBuildCpuArgStr(virQEMUDriverPtr driver,
                   const virDomainDef *def,
                   const char *emulator,
                   virQEMUCapsPtr qemuCaps,
                   virArch hostarch,
                   char **opt,
                   bool *hasHwVirt,
                   bool migrating)
{
    const char *default_model;
    bool have_cpu = false;
    int ret = -1;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    size_t i;
6275

6276
    *hasHwVirt = false;
6277

6278 6279 6280 6281 6282 6283 6284 6285 6286 6287
    if (def->os.arch == VIR_ARCH_I686)
        default_model = "qemu32";
    else
        default_model = "qemu64";

    if (def->cpu &&
        (def->cpu->mode != VIR_CPU_MODE_CUSTOM || def->cpu->model)) {
        if (qemuBuildCpuModelArgStr(driver, def, &buf, qemuCaps,
                                    hasHwVirt, migrating) < 0)
            goto cleanup;
6288
        have_cpu = true;
6289
    } else {
6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301
        /*
         * 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
         */
6302
        if (def->os.arch == VIR_ARCH_I686 &&
6303
            ((hostarch == VIR_ARCH_X86_64 &&
6304
              strstr(emulator, "kvm")) ||
6305 6306 6307 6308 6309 6310
             strstr(emulator, "x86_64"))) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }
    }

6311
    /* Handle paravirtual timers  */
6312
    for (i = 0; i < def->clock.ntimers; i++) {
6313 6314 6315 6316 6317 6318
        virDomainTimerDefPtr timer = def->clock.timers[i];

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

        if (timer->name == VIR_DOMAIN_TIMER_NAME_KVMCLOCK) {
6319 6320
            virBufferAsprintf(&buf, "%s,%ckvmclock",
                              have_cpu ? "" : default_model,
6321 6322 6323 6324 6325 6326
                              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 已提交
6327
            have_cpu = true;
6328
        }
6329 6330
    }

6331 6332
    if (def->apic_eoi) {
        char sign;
J
Ján Tomko 已提交
6333
        if (def->apic_eoi == VIR_TRISTATE_SWITCH_ON)
6334 6335 6336 6337 6338 6339 6340
            sign = '+';
        else
            sign = '-';

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

6344 6345
    if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK]) {
        char sign;
J
Ján Tomko 已提交
6346
        if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK] == VIR_TRISTATE_SWITCH_ON)
6347 6348 6349 6350 6351 6352 6353 6354 6355 6356
            sign = '+';
        else
            sign = '-';

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

J
Ján Tomko 已提交
6357
    if (def->features[VIR_DOMAIN_FEATURE_HYPERV] == VIR_TRISTATE_SWITCH_ON) {
6358 6359 6360 6361 6362 6363
        if (!have_cpu) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }

        for (i = 0; i < VIR_DOMAIN_HYPERV_LAST; i++) {
6364
            switch ((virDomainHyperv) i) {
6365
            case VIR_DOMAIN_HYPERV_RELAXED:
6366
            case VIR_DOMAIN_HYPERV_VAPIC:
J
Ján Tomko 已提交
6367
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
6368 6369 6370 6371
                    virBufferAsprintf(&buf, ",hv_%s",
                                      virDomainHypervTypeToString(i));
                break;

6372
            case VIR_DOMAIN_HYPERV_SPINLOCKS:
J
Ján Tomko 已提交
6373
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
6374 6375
                    virBufferAsprintf(&buf, ",hv_spinlocks=0x%x",
                                      def->hyperv_spinlocks);
6376 6377
                break;

6378
            /* coverity[dead_error_begin] */
6379 6380 6381 6382 6383 6384
            case VIR_DOMAIN_HYPERV_LAST:
                break;
            }
        }
    }

6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397
    if (def->features[VIR_DOMAIN_FEATURE_KVM] == VIR_TRISTATE_SWITCH_ON) {
        if (!have_cpu) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }

        for (i = 0; i < VIR_DOMAIN_KVM_LAST; i++) {
            switch ((virDomainKVM) i) {
            case VIR_DOMAIN_KVM_HIDDEN:
                if (def->kvm_features[i] == VIR_TRISTATE_SWITCH_ON)
                    virBufferAddLit(&buf, ",kvm=off");
                break;

J
John Ferlan 已提交
6398
            /* coverity[dead_error_begin] */
6399 6400 6401 6402 6403 6404
            case VIR_DOMAIN_KVM_LAST:
                break;
            }
        }
    }

6405
    if (virBufferCheckError(&buf) < 0)
6406
        goto cleanup;
6407 6408 6409 6410 6411

    *opt = virBufferContentAndReset(&buf);

    ret = 0;

6412
 cleanup:
6413 6414 6415
    return ret;
}

6416 6417
static int
qemuBuildObsoleteAccelArg(virCommandPtr cmd,
E
Eric Blake 已提交
6418
                          const virDomainDef *def,
6419 6420
                          virQEMUCapsPtr qemuCaps)
{
6421 6422 6423 6424
    bool disableKQEMU = false;
    bool enableKQEMU = false;
    bool disableKVM = false;
    bool enableKVM = false;
6425 6426 6427 6428

    switch (def->virtType) {
    case VIR_DOMAIN_VIRT_QEMU:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KQEMU))
6429
            disableKQEMU = true;
6430
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM))
6431
            disableKVM = true;
6432 6433 6434 6435
        break;

    case VIR_DOMAIN_VIRT_KQEMU:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM))
6436
            disableKVM = true;
6437 6438

        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_KQEMU)) {
6439
            enableKQEMU = true;
6440 6441 6442 6443 6444 6445 6446 6447 6448
        } 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))
6449
            disableKQEMU = true;
6450 6451

        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_KVM)) {
6452
            enableKVM = true;
6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482
        } 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;
}

6483 6484
static int
qemuBuildMachineArgStr(virCommandPtr cmd,
E
Eric Blake 已提交
6485
                       const virDomainDef *def,
6486
                       virQEMUCapsPtr qemuCaps)
6487
{
6488 6489
    bool obsoleteAccel = false;

6490 6491 6492 6493 6494 6495 6496
    /* 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;

6497
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_OPT)) {
6498 6499 6500 6501
        /* 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);
6502 6503 6504 6505
        if (def->mem.dump_core) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("dump-guest-core is not available "
                             "with this QEMU binary"));
6506 6507
            return -1;
        }
6508 6509 6510 6511 6512 6513 6514 6515

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

6516
        obsoleteAccel = true;
6517 6518
    } else {
        virBuffer buf = VIR_BUFFER_INITIALIZER;
6519 6520

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

6523 6524 6525 6526 6527 6528 6529
        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 已提交
6530 6531 6532 6533
        /* 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))
6534
            virBufferAddLit(&buf, ",usb=off");
L
Li Zhang 已提交
6535

6536 6537 6538 6539 6540
        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"));
6541
                virBufferFreeAndReset(&buf);
6542 6543 6544 6545
                return -1;
            }

            virBufferAsprintf(&buf, ",dump-guest-core=%s",
J
Ján Tomko 已提交
6546
                              virTristateSwitchTypeToString(def->mem.dump_core));
6547 6548
        }

6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560
        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;
            }
        }

6561
        virCommandAddArgBuffer(cmd, &buf);
6562 6563
    }

6564 6565 6566 6567
    if (obsoleteAccel &&
        qemuBuildObsoleteAccelArg(cmd, def, qemuCaps) < 0)
        return -1;

6568 6569 6570
    return 0;
}

6571
static char *
E
Eric Blake 已提交
6572
qemuBuildSmpArgStr(const virDomainDef *def,
6573
                   virQEMUCapsPtr qemuCaps)
6574 6575 6576
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

6577
    virBufferAsprintf(&buf, "%u", def->vcpus);
6578

6579
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SMP_TOPOLOGY)) {
6580
        if (def->vcpus != def->maxvcpus)
6581
            virBufferAsprintf(&buf, ",maxcpus=%u", def->maxvcpus);
6582 6583 6584
        /* 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) {
6585 6586 6587
            virBufferAsprintf(&buf, ",sockets=%u", def->cpu->sockets);
            virBufferAsprintf(&buf, ",cores=%u", def->cpu->cores);
            virBufferAsprintf(&buf, ",threads=%u", def->cpu->threads);
6588
        } else {
6589 6590 6591
            virBufferAsprintf(&buf, ",sockets=%u", def->maxvcpus);
            virBufferAsprintf(&buf, ",cores=%u", 1);
            virBufferAsprintf(&buf, ",threads=%u", 1);
6592 6593 6594 6595
        }
    } else if (def->vcpus != def->maxvcpus) {
        virBufferFreeAndReset(&buf);
        /* FIXME - consider hot-unplugging cpus after boot for older qemu */
6596 6597 6598
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("setting current vcpu count less than maximum is "
                         "not supported with this QEMU binary"));
6599 6600 6601
        return NULL;
    }

6602
    if (virBufferCheckError(&buf) < 0)
6603 6604 6605 6606 6607
        return NULL;

    return virBufferContentAndReset(&buf);
}

B
Bharata B Rao 已提交
6608
static int
6609 6610
qemuBuildNumaArgStr(virQEMUDriverConfigPtr cfg,
                    const virDomainDef *def,
6611
                    virCommandPtr cmd,
6612 6613
                    virQEMUCapsPtr qemuCaps,
                    virBitmapPtr nodeset)
B
Bharata B Rao 已提交
6614
{
6615
    size_t i, j;
B
Bharata B Rao 已提交
6616
    virBuffer buf = VIR_BUFFER_INITIALIZER;
6617
    virDomainHugePagePtr master_hugepage = NULL;
6618
    char *cpumask = NULL, *tmpmask = NULL, *next = NULL;
6619
    char *nodemask = NULL;
6620
    char *mem_path = NULL;
6621
    int ret = -1;
6622
    const long system_page_size = sysconf(_SC_PAGESIZE) / 1024;
B
Bharata B Rao 已提交
6623

6624
    if (virDomainNumatuneHasPerNodeBinding(def->numatune) &&
6625 6626
        !(virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE))) {
6627 6628 6629 6630 6631 6632
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Per-node memory binding is not supported "
                         "with this QEMU"));
        goto cleanup;
    }

6633 6634
    if (def->mem.nhugepages &&
        def->mem.hugepages[0].size != system_page_size &&
6635 6636 6637 6638 6639 6640 6641
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("huge pages per NUMA node are not "
                         "supported with this QEMU"));
        goto cleanup;
    }

6642
    if (!virDomainNumatuneNodesetIsAvailable(def->numatune, nodeset))
6643 6644
        goto cleanup;

6645 6646 6647 6648 6649 6650 6651 6652 6653
    for (i = 0; i < def->mem.nhugepages; i++) {
        ssize_t next_bit, pos = 0;

        if (!def->mem.hugepages[i].nodemask) {
            /* This is the master hugepage to use. Skip it as it has no
             * nodemask anyway. */
            continue;
        }

6654
        if (def->cpu->ncells) {
6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668
            /* Fortunately, we allow only guest NUMA nodes to be continuous
             * starting from zero. */
            pos = def->cpu->ncells - 1;
        }

        next_bit = virBitmapNextSetBit(def->mem.hugepages[i].nodemask, pos);
        if (next_bit >= 0) {
            virReportError(VIR_ERR_XML_DETAIL,
                           _("hugepages: node %zd not found"),
                           next_bit);
            goto cleanup;
        }
    }

B
Bharata B Rao 已提交
6669
    for (i = 0; i < def->cpu->ncells; i++) {
6670
        virDomainHugePagePtr hugepage = NULL;
6671
        unsigned long long cellmem = VIR_DIV_UP(def->cpu->cells[i].mem, 1024);
M
Martin Kletzander 已提交
6672
        def->cpu->cells[i].mem = cellmem * 1024;
R
Roman Bogorodskiy 已提交
6673
        virMemAccess memAccess = def->cpu->cells[i].memAccess;
M
Martin Kletzander 已提交
6674

6675
        VIR_FREE(cpumask);
6676
        VIR_FREE(nodemask);
M
Martin Kletzander 已提交
6677 6678 6679 6680

        if (!(cpumask = virBitmapFormat(def->cpu->cells[i].cpumask)))
            goto cleanup;

6681 6682
        if (strchr(cpumask, ',') &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_NUMA)) {
M
Martin Kletzander 已提交
6683 6684 6685 6686 6687 6688
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disjoint NUMA cpu ranges are not supported "
                             "with this QEMU"));
            goto cleanup;
        }

6689 6690
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE)) {
6691 6692 6693 6694 6695 6696
            virDomainNumatuneMemMode mode;
            const char *policy = NULL;

            mode = virDomainNumatuneGetMode(def->numatune, i);
            policy = qemuNumaPolicyTypeToString(mode);

6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727
            /* Find the huge page size we want to use */
            for (j = 0; j < def->mem.nhugepages; j++) {
                bool thisHugepage = false;

                hugepage = &def->mem.hugepages[j];

                if (!hugepage->nodemask) {
                    master_hugepage = hugepage;
                    continue;
                }

                if (virBitmapGetBit(hugepage->nodemask, i, &thisHugepage) < 0) {
                    /* Ignore this error. It's not an error after all. Well,
                     * the nodemask for this <page/> can contain lower NUMA
                     * nodes than we are querying in here. */
                    continue;
                }

                if (thisHugepage) {
                    /* Hooray, we've found the page size */
                    break;
                }
            }

            if (j == def->mem.nhugepages) {
                /* We have not found specific huge page to be used with this
                 * NUMA node. Use the generic setting then (<page/> without any
                 * @nodemask) if possible. */
                hugepage = master_hugepage;
            }

6728 6729 6730 6731 6732 6733 6734
            if (hugepage && hugepage->size == system_page_size) {
                /* However, if user specified to use "huge" page
                 * of regular system page size, it's as if they
                 * hasn't specified any huge pages at all. */
                hugepage = NULL;
            }

6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757
            if (hugepage) {
                /* Now lets see, if the huge page we want to use is even mounted
                 * and ready to use */

                for (j = 0; j < cfg->nhugetlbfs; j++) {
                    if (cfg->hugetlbfs[j].size == hugepage->size)
                        break;
                }

                if (j == cfg->nhugetlbfs) {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Unable to find any usable hugetlbfs mount for %llu KiB"),
                                   hugepage->size);
                    goto cleanup;
                }

                VIR_FREE(mem_path);
                if (!(mem_path = qemuGetHugepagePath(&cfg->hugetlbfs[j])))
                    goto cleanup;

                virBufferAsprintf(&buf,
                                  "memory-backend-file,prealloc=yes,mem-path=%s",
                                  mem_path);
6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772

                switch (memAccess) {
                case VIR_MEM_ACCESS_SHARED:
                    virBufferAddLit(&buf, ",share=on");
                    break;

                case VIR_MEM_ACCESS_PRIVATE:
                    virBufferAddLit(&buf, ",share=off");
                    break;

                case VIR_MEM_ACCESS_DEFAULT:
                case VIR_MEM_ACCESS_LAST:
                    break;
                }

6773
            } else {
6774 6775 6776 6777 6778 6779
                if (memAccess) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("Shared memory mapping is supported "
                                     "only with hugepages"));
                    goto cleanup;
                }
6780 6781 6782
                virBufferAddLit(&buf, "memory-backend-ram");
            }

6783
            virBufferAsprintf(&buf, ",size=%lluM,id=ram-node%zu", cellmem, i);
6784

6785
            if (virDomainNumatuneMaybeFormatNodeset(def->numatune, nodeset,
6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807
                                                    &nodemask, i) < 0)
                goto cleanup;

            if (nodemask) {
                if (strchr(nodemask, ',') &&
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_NUMA)) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("disjoint NUMA node ranges are not supported "
                                     "with this QEMU"));
                    goto cleanup;
                }

                for (tmpmask = nodemask; tmpmask; tmpmask = next) {
                    if ((next = strchr(tmpmask, ',')))
                        *(next++) = '\0';
                    virBufferAddLit(&buf, ",host-nodes=");
                    virBufferAdd(&buf, tmpmask, -1);
                }

                virBufferAsprintf(&buf, ",policy=%s", policy);
            }

6808 6809 6810 6811 6812 6813
            if (hugepage || nodemask) {
                virCommandAddArg(cmd, "-object");
                virCommandAddArgBuffer(cmd, &buf);
            } else {
                virBufferFreeAndReset(&buf);
            }
6814 6815 6816 6817 6818 6819 6820
        } else {
            if (memAccess) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Shared memory mapping is not supported "
                                 "with this QEMU"));
                goto cleanup;
            }
6821 6822
        }

B
Bharata B Rao 已提交
6823
        virCommandAddArg(cmd, "-numa");
6824
        virBufferAsprintf(&buf, "node,nodeid=%zu", i);
6825

6826 6827 6828 6829 6830 6831 6832
        for (tmpmask = cpumask; tmpmask; tmpmask = next) {
            if ((next = strchr(tmpmask, ',')))
                *(next++) = '\0';
            virBufferAddLit(&buf, ",cpus=");
            virBufferAdd(&buf, tmpmask, -1);
        }

6833
        if (hugepage || nodemask)
6834
            virBufferAsprintf(&buf, ",memdev=ram-node%zu", i);
6835
        else
6836
            virBufferAsprintf(&buf, ",mem=%llu", cellmem);
B
Bharata B Rao 已提交
6837 6838 6839

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

6842
 cleanup:
6843
    VIR_FREE(cpumask);
6844
    VIR_FREE(nodemask);
6845
    VIR_FREE(mem_path);
B
Bharata B Rao 已提交
6846
    virBufferFreeAndReset(&buf);
6847
    return ret;
B
Bharata B Rao 已提交
6848
}
6849

6850

6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874
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)
6875
            goto error;
6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928

        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)) {
6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939
        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);
            }

6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952
        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));
        }

6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967
        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)
6968
                virCommandAddEnvPair(cmd, "SASL_CONF_PATH", cfg->vncSASLdir);
6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983

            /* 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)
6984
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
6985 6986 6987 6988 6989
    else
        virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");

    return 0;

6990
 error:
6991 6992 6993 6994 6995 6996
    VIR_FREE(netAddr);
    virBufferFreeAndReset(&opt);
    return -1;
}


6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010
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;
7011
    size_t i;
7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033

    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);
    }

7034 7035 7036 7037 7038 7039 7040 7041 7042 7043
    if (cfg->spiceSASL) {
        virBufferAddLit(&opt, ",sasl");

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

        /* TODO: Support ACLs later */
    }

7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084
    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:
7085
            virBufferAddLit(&opt, ",agent-mouse=off");
7086 7087
            break;
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_CLIENT:
7088
            virBufferAddLit(&opt, ",agent-mouse=on");
7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101
            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");

7102 7103
    if (tlsPort > 0)
        virBufferAsprintf(&opt, ",x509-dir=%s", cfg->spiceTLSx509certdir);
7104 7105 7106

    switch (defaultMode) {
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
7107
        virBufferAddLit(&opt, ",tls-channel=default");
7108 7109
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
7110
        virBufferAddLit(&opt, ",plaintext-channel=default");
7111 7112 7113 7114 7115 7116
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
        /* nothing */
        break;
    }

7117
    for (i = 0; i < VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_LAST; i++) {
7118
        switch (graphics->data.spice.channels[i]) {
7119
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
7120
            if (tlsPort <= 0) {
7121 7122
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice secure channels set in XML configuration, "
7123
                                 "but TLS port is not provided"));
7124 7125 7126 7127 7128
                goto error;
            }
            virBufferAsprintf(&opt, ",tls-channel=%s",
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
7129

7130
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
7131 7132 7133 7134 7135 7136
            if (port <= 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice insecure channels set in XML "
                                 "configuration, but plain port is not provided"));
                goto error;
            }
7137 7138 7139
            virBufferAsprintf(&opt, ",plaintext-channel=%s",
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164

        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;
            }
7165 7166
        }
    }
7167

7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178
    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",
J
Ján Tomko 已提交
7179
                          virTristateSwitchTypeToString(graphics->data.spice.playback));
7180 7181 7182
    if (graphics->data.spice.streaming)
        virBufferAsprintf(&opt, ",streaming-video=%s",
                          virDomainGraphicsSpiceStreamingModeTypeToString(graphics->data.spice.streaming));
J
Ján Tomko 已提交
7183
    if (graphics->data.spice.copypaste == VIR_TRISTATE_BOOL_NO)
7184
        virBufferAddLit(&opt, ",disable-copy-paste");
J
Ján Tomko 已提交
7185
    if (graphics->data.spice.filetransfer == VIR_TRISTATE_BOOL_NO) {
7186 7187 7188 7189 7190 7191 7192 7193
        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");
        }
    }
7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214

    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;

7215
 error:
7216 7217 7218 7219 7220
    VIR_FREE(netAddr);
    virBufferFreeAndReset(&opt);
    return -1;
}

7221
static int
7222
qemuBuildGraphicsCommandLine(virQEMUDriverConfigPtr cfg,
7223 7224
                             virCommandPtr cmd,
                             virDomainDefPtr def,
7225
                             virQEMUCapsPtr qemuCaps,
7226
                             virDomainGraphicsDefPtr graphics)
7227
{
7228
    switch ((virDomainGraphicsType) graphics->type) {
7229
    case VIR_DOMAIN_GRAPHICS_TYPE_SDL:
7230 7231
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_0_10) &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SDL)) {
7232
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
7233 7234
                           _("sdl not supported by '%s'"), def->emulator);
            return -1;
7235 7236
        }

7237
        if (graphics->data.sdl.xauth)
7238
            virCommandAddEnvPair(cmd, "XAUTHORITY", graphics->data.sdl.xauth);
7239
        if (graphics->data.sdl.display)
7240
            virCommandAddEnvPair(cmd, "DISPLAY", graphics->data.sdl.display);
7241 7242
        if (graphics->data.sdl.fullscreen)
            virCommandAddArg(cmd, "-full-screen");
7243

7244 7245 7246 7247
        /* 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
         */
7248 7249
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
        virCommandAddEnvPassBlockSUID(cmd, "SDL_AUDIODRIVER", NULL);
B
Bharata B Rao 已提交
7250

7251 7252 7253
        /* 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 :-( */
7254
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SDL))
7255
            virCommandAddArg(cmd, "-sdl");
7256

7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267
        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:
7268 7269 7270
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported graphics type '%s'"),
                       virDomainGraphicsTypeToString(graphics->type));
7271
        return -1;
7272
    }
7273

7274 7275
    return 0;
}
7276

M
Michele Paolino 已提交
7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346
static int
qemuBuildVhostuserCommandLine(virCommandPtr cmd,
                              virDomainDefPtr def,
                              virDomainNetDefPtr net,
                              virQEMUCapsPtr qemuCaps)
{
    virBuffer chardev_buf = VIR_BUFFER_INITIALIZER;
    virBuffer netdev_buf = VIR_BUFFER_INITIALIZER;
    char *nic = NULL;

    if (!qemuDomainSupportsNetdev(def, qemuCaps, net)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Netdev support unavailable"));
        goto error;
    }

    switch ((virDomainChrType) net->data.vhostuser->type) {
    case VIR_DOMAIN_CHR_TYPE_UNIX:
        virBufferAsprintf(&chardev_buf, "socket,id=char%s,path=%s%s",
                          net->info.alias, net->data.vhostuser->data.nix.path,
                          net->data.vhostuser->data.nix.listen ? ",server" : "");
        break;

    case VIR_DOMAIN_CHR_TYPE_NULL:
    case VIR_DOMAIN_CHR_TYPE_VC:
    case VIR_DOMAIN_CHR_TYPE_PTY:
    case VIR_DOMAIN_CHR_TYPE_DEV:
    case VIR_DOMAIN_CHR_TYPE_FILE:
    case VIR_DOMAIN_CHR_TYPE_PIPE:
    case VIR_DOMAIN_CHR_TYPE_STDIO:
    case VIR_DOMAIN_CHR_TYPE_UDP:
    case VIR_DOMAIN_CHR_TYPE_TCP:
    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
    case VIR_DOMAIN_CHR_TYPE_SPICEPORT:
    case VIR_DOMAIN_CHR_TYPE_NMDM:
    case VIR_DOMAIN_CHR_TYPE_LAST:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("vhost-user type '%s' not supported"),
                        virDomainChrTypeToString(net->data.vhostuser->type));
        goto error;
    }

    virBufferAsprintf(&netdev_buf, "type=vhost-user,id=host%s,chardev=char%s",
                      net->info.alias, net->info.alias);

    virCommandAddArg(cmd, "-chardev");
    virCommandAddArgBuffer(cmd, &chardev_buf);

    virCommandAddArg(cmd, "-netdev");
    virCommandAddArgBuffer(cmd, &netdev_buf);

    if (!(nic = qemuBuildNicDevStr(def, net, -1, 0, 0, qemuCaps))) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Error generating NIC -device string"));
        goto error;
    }

    virCommandAddArgList(cmd, "-device", nic, NULL);
    VIR_FREE(nic);

    return 0;

 error:
    virBufferFreeAndReset(&chardev_buf);
    virBufferFreeAndReset(&netdev_buf);
    VIR_FREE(nic);

    return -1;
}

7347 7348 7349 7350 7351 7352 7353 7354 7355
static int
qemuBuildInterfaceCommandLine(virCommandPtr cmd,
                              virQEMUDriverPtr driver,
                              virConnectPtr conn,
                              virDomainDefPtr def,
                              virDomainNetDefPtr net,
                              virQEMUCapsPtr qemuCaps,
                              int vlan,
                              int bootindex,
7356
                              virNetDevVPortProfileOp vmop,
7357
                              bool standalone)
7358 7359 7360
{
    int ret = -1;
    char *nic = NULL, *host = NULL;
7361 7362 7363 7364 7365 7366
    int *tapfd = NULL;
    int tapfdSize = 0;
    int *vhostfd = NULL;
    int vhostfdSize = 0;
    char **tapfdName = NULL;
    char **vhostfdName = NULL;
7367
    int actualType = virDomainNetGetActualType(net);
7368
    size_t i;
7369

M
Michele Paolino 已提交
7370 7371 7372
    if (actualType == VIR_DOMAIN_NET_TYPE_VHOSTUSER)
        return qemuBuildVhostuserCommandLine(cmd, def, net, qemuCaps);

7373 7374 7375 7376 7377 7378 7379 7380 7381 7382
    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;

7383 7384 7385 7386 7387 7388 7389 7390 7391 7392
    /* 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;
    }

7393 7394
    if (actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
        actualType == VIR_DOMAIN_NET_TYPE_BRIDGE) {
7395 7396 7397 7398 7399
        tapfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = 1;

        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0 ||
7400
            VIR_ALLOC_N(tapfdName, tapfdSize) < 0)
7401 7402
            goto cleanup;

7403 7404
        memset(tapfd, -1, tapfdSize * sizeof(tapfd[0]));

7405 7406
        if (qemuNetworkIfaceConnect(def, conn, driver, net,
                                    qemuCaps, tapfd, &tapfdSize) < 0)
7407 7408
            goto cleanup;
    } else if (actualType == VIR_DOMAIN_NET_TYPE_DIRECT) {
7409
        if (VIR_ALLOC(tapfd) < 0 || VIR_ALLOC(tapfdName) < 0)
7410 7411 7412 7413 7414
            goto cleanup;
        tapfdSize = 1;
        tapfd[0] = qemuPhysIfaceConnect(def, driver, net,
                                        qemuCaps, vmop);
        if (tapfd[0] < 0)
7415 7416 7417
            goto cleanup;
    }

7418 7419 7420 7421 7422 7423 7424
    /* Set Bandwidth */
    if (virNetDevSupportBandwidth(actualType) &&
        virNetDevBandwidthSet(net->ifname,
                              virDomainNetGetActualBandwidth(net),
                              false) < 0)
        goto cleanup;

7425 7426 7427 7428 7429
    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) {
7430 7431
        /* Attempt to use vhost-net mode for these types of
           network device */
7432 7433 7434 7435 7436
        vhostfdSize = net->driver.virtio.queues;
        if (!vhostfdSize)
            vhostfdSize = 1;

        if (VIR_ALLOC_N(vhostfd, vhostfdSize) < 0 ||
7437
            VIR_ALLOC_N(vhostfdName, vhostfdSize))
7438 7439
            goto cleanup;

7440 7441
        memset(vhostfd, -1, vhostfdSize * sizeof(vhostfd[0]));

7442
        if (qemuOpenVhostNet(def, net, qemuCaps, vhostfd, &vhostfdSize) < 0)
7443 7444 7445
            goto cleanup;
    }

7446
    for (i = 0; i < tapfdSize; i++) {
M
Michal Privoznik 已提交
7447 7448 7449
        if (virSecurityManagerSetTapFDLabel(driver->securityManager,
                                            def, tapfd[i]) < 0)
            goto cleanup;
7450 7451
        virCommandPassFD(cmd, tapfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
7452
        if (virAsprintf(&tapfdName[i], "%d", tapfd[i]) < 0)
7453 7454 7455
            goto cleanup;
    }

7456
    for (i = 0; i < vhostfdSize; i++) {
7457 7458
        virCommandPassFD(cmd, vhostfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
7459
        if (virAsprintf(&vhostfdName[i], "%d", vhostfd[i]) < 0)
7460
            goto cleanup;
7461 7462 7463 7464 7465 7466 7467 7468 7469 7470
    }

    /* 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
     */
7471
    if (qemuDomainSupportsNetdev(def, qemuCaps, net)) {
7472
        if (!(host = qemuBuildHostNetStr(net, driver,
7473 7474 7475
                                         ',', vlan,
                                         tapfdName, tapfdSize,
                                         vhostfdName, vhostfdSize)))
7476 7477 7478
            goto cleanup;
        virCommandAddArgList(cmd, "-netdev", host, NULL);
    }
7479
    if (qemuDomainSupportsNicdev(def, qemuCaps, net)) {
7480
        if (!(nic = qemuBuildNicDevStr(def, net, vlan, bootindex,
7481
                                       vhostfdSize, qemuCaps)))
7482 7483 7484 7485 7486 7487 7488
            goto cleanup;
        virCommandAddArgList(cmd, "-device", nic, NULL);
    } else {
        if (!(nic = qemuBuildNicStr(net, "nic,", vlan)))
            goto cleanup;
        virCommandAddArgList(cmd, "-net", nic, NULL);
    }
7489
    if (!qemuDomainSupportsNetdev(def, qemuCaps, net)) {
7490
        if (!(host = qemuBuildHostNetStr(net, driver,
7491 7492 7493
                                         ',', vlan,
                                         tapfdName, tapfdSize,
                                         vhostfdName, vhostfdSize)))
7494 7495 7496 7497 7498
            goto cleanup;
        virCommandAddArgList(cmd, "-net", host, NULL);
    }

    ret = 0;
7499
 cleanup:
7500 7501
    if (ret < 0) {
        virErrorPtr saved_err = virSaveLastError();
7502
        virDomainConfNWFilterTeardown(net);
7503 7504 7505
        virSetError(saved_err);
        virFreeError(saved_err);
    }
7506
    for (i = 0; tapfd && i < tapfdSize && tapfd[i] >= 0; i++) {
7507 7508
        if (ret < 0)
            VIR_FORCE_CLOSE(tapfd[i]);
7509 7510
        if (tapfdName)
            VIR_FREE(tapfdName[i]);
7511
    }
7512
    for (i = 0; vhostfd && i < vhostfdSize && vhostfd[i] >= 0; i++) {
7513 7514
        if (ret < 0)
            VIR_FORCE_CLOSE(vhostfd[i]);
7515 7516
        if (vhostfdName)
            VIR_FREE(vhostfdName[i]);
7517 7518 7519
    }
    VIR_FREE(tapfd);
    VIR_FREE(vhostfd);
7520 7521 7522 7523 7524 7525 7526
    VIR_FREE(nic);
    VIR_FREE(host);
    VIR_FREE(tapfdName);
    VIR_FREE(vhostfdName);
    return ret;
}

7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546
static int
qemuBuildShmemDevCmd(virCommandPtr cmd,
                     virDomainDefPtr def,
                     virDomainShmemDefPtr shmem,
                     virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_IVSHMEM)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("ivshmem device is not supported "
                         "with this QEMU binary"));
        goto error;
    }

    virBufferAddLit(&buf, "ivshmem");
    if (shmem->size) {
        /*
         * Thanks to our parsing code, we have a guarantee that the
         * size is power of two and is at least a mebibyte in size.
M
Martin Kletzander 已提交
7547
         * But because it may change in the future, the checks are
7548 7549 7550 7551 7552 7553 7554 7555 7556
         * doubled in here.
         */
        if (shmem->size & (shmem->size - 1)) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("shmem size must be a power of two"));
            goto error;
        }
        if (shmem->size < 1024 * 1024) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
7557
                           _("shmem size must be at least 1 MiB (1024 KiB)"));
7558 7559
            goto error;
        }
M
Martin Kletzander 已提交
7560
        virBufferAsprintf(&buf, ",size=%llum", shmem->size >> 20);
7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633
    }

    if (!shmem->server.enabled) {
        virBufferAsprintf(&buf, ",shm=%s", shmem->name);
    } else {
        virBufferAsprintf(&buf, ",chardev=char%s", shmem->info.alias);
        if (shmem->msi.enabled) {
            virBufferAddLit(&buf, ",msi=on");
            if (shmem->msi.vectors)
                virBufferAsprintf(&buf, ",vectors=%u", shmem->msi.vectors);
            if (shmem->msi.ioeventfd)
                virBufferAsprintf(&buf, ",ioeventfd=%s",
                                  virTristateSwitchTypeToString(shmem->msi.ioeventfd));
        }
    }

    if (qemuBuildDeviceAddressStr(&buf, def, &shmem->info, qemuCaps) < 0)
        goto error;

    if (virBufferCheckError(&buf) < 0)
        goto error;

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

    return 0;

 error:
    virBufferFreeAndReset(&buf);
    return -1;
}

static int
qemuBuildShmemCommandLine(virCommandPtr cmd,
                          virDomainDefPtr def,
                          virDomainShmemDefPtr shmem,
                          virQEMUCapsPtr qemuCaps)
{
    if (qemuBuildShmemDevCmd(cmd, def, shmem, qemuCaps) < 0)
        return -1;

    if (shmem->server.enabled) {
        char *devstr = NULL;
        virDomainChrSourceDef source = {
            .type = VIR_DOMAIN_CHR_TYPE_UNIX,
            .data.nix = {
                .path = shmem->server.path,
                .listen = false,
            }
        };

        if (!shmem->server.path &&
            virAsprintf(&source.data.nix.path,
                        "/var/lib/libvirt/shmem-%s-sock",
                        shmem->name) < 0)
            return -1;

        devstr = qemuBuildChrChardevStr(&source, shmem->info.alias, qemuCaps);

        if (!shmem->server.path)
            VIR_FREE(source.data.nix.path);

        if (!devstr)
            return -1;

        virCommandAddArg(cmd, "-chardev");
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);
    }

    return 0;
}

7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645
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);
7646
    VIR_FREE(devstr);
7647 7648 7649
    return 0;
}

7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729
static int
qemuBuildDomainLoaderCommandLine(virCommandPtr cmd,
                                 virDomainDefPtr def,
                                 virQEMUCapsPtr qemuCaps)
{
    int ret = -1;
    virDomainLoaderDefPtr loader = def->os.loader;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int unit = 0;

    if (!loader)
        return 0;

    switch ((virDomainLoader) loader->type) {
    case VIR_DOMAIN_LOADER_TYPE_ROM:
        virCommandAddArg(cmd, "-bios");
        virCommandAddArg(cmd, loader->path);
        break;

    case VIR_DOMAIN_LOADER_TYPE_PFLASH:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this QEMU binary doesn't support -drive"));
            goto cleanup;
        }
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_FORMAT)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this QEMU binary doesn't support passing "
                             "drive format"));
            goto cleanup;
        }
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_ACPI) &&
            def->features[VIR_DOMAIN_FEATURE_ACPI] != VIR_TRISTATE_SWITCH_ON) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("ACPI must be enabled in order to use UEFI"));
            goto cleanup;
        }

        virBufferAsprintf(&buf,
                          "file=%s,if=pflash,format=raw,unit=%d",
                          loader->path, unit);
        unit++;

        if (loader->readonly) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_READONLY)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this qemu doesn't support passing "
                                 "readonly attribute"));
                goto cleanup;
            }

            virBufferAsprintf(&buf, ",readonly=%s",
                              virTristateSwitchTypeToString(loader->readonly));
        }

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

        if (loader->nvram) {
            virBufferFreeAndReset(&buf);
            virBufferAsprintf(&buf,
                              "file=%s,if=pflash,format=raw,unit=%d",
                              loader->nvram, unit);

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

    case VIR_DOMAIN_LOADER_TYPE_LAST:
        /* nada */
        break;
    }

    ret = 0;
 cleanup:
    virBufferFreeAndReset(&buf);
    return ret;
}

7730 7731 7732 7733
qemuBuildCommandLineCallbacks buildCommandLineCallbacks = {
    .qemuGetSCSIDeviceSgName = virSCSIDeviceGetSgName,
};

7734 7735 7736 7737 7738 7739 7740 7741 7742
/*
 * 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,
7743
                     virQEMUDriverPtr driver,
7744 7745 7746
                     virDomainDefPtr def,
                     virDomainChrSourceDefPtr monitor_chr,
                     bool monitor_json,
7747
                     virQEMUCapsPtr qemuCaps,
7748 7749 7750
                     const char *migrateFrom,
                     int migrateFd,
                     virDomainSnapshotObjPtr snapshot,
7751
                     virNetDevVPortProfileOp vmop,
C
Cole Robinson 已提交
7752
                     qemuBuildCommandLineCallbacksPtr callbacks,
7753
                     bool standalone,
7754 7755
                     bool enableFips,
                     virBitmapPtr nodeset)
7756
{
7757
    virErrorPtr originalError = NULL;
7758
    size_t i, j;
7759 7760 7761 7762 7763 7764 7765
    const char *emulator;
    char uuid[VIR_UUID_STRING_BUFLEN];
    char *cpu;
    char *smp;
    int last_good_net = -1;
    bool hasHwVirt = false;
    virCommandPtr cmd = NULL;
7766
    bool allowReboot = true;
7767
    bool emitBootindex = false;
7768 7769 7770
    int sdl = 0;
    int vnc = 0;
    int spice = 0;
7771
    int usbcontroller = 0;
M
Martin Kletzander 已提交
7772
    int actualSerials = 0;
7773
    bool usblegacy = false;
7774
    bool mlock = false;
7775 7776 7777
    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
7778 7779 7780 7781 7782
         * 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,
7783 7784 7785 7786 7787 7788
        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,
    };
7789
    virArch hostarch = virArchFromHost();
7790
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
7791

7792
    VIR_DEBUG("conn=%p driver=%p def=%p mon=%p json=%d "
7793
              "qemuCaps=%p migrateFrom=%s migrateFD=%d "
7794 7795
              "snapshot=%p vmop=%d",
              conn, driver, def, monitor_chr, monitor_json,
7796
              qemuCaps, migrateFrom, migrateFd, snapshot, vmop);
7797

7798 7799 7800 7801
    virUUIDFormat(def->uuid, uuid);

    emulator = def->emulator;

7802
    if (!cfg->privileged) {
7803
        /* If we have no cgroups then we can have no tunings that
7804 7805 7806 7807 7808 7809 7810 7811 7812
         * 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;
        }

7813
        if (def->blkio.weight) {
7814 7815 7816 7817 7818
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Block I/O tuning is not available in session mode"));
            goto error;
        }

7819
        if (def->cputune.sharesSpecified || def->cputune.period ||
7820 7821 7822 7823 7824 7825 7826 7827
            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;
        }
    }

7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841
    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;
        }
    }

7842 7843 7844 7845
    /*
     * do not use boot=on for drives when not using KVM since this
     * is not supported at all in upstream QEmu.
     */
7846
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM) &&
7847
        (def->virtType == VIR_DOMAIN_VIRT_QEMU))
7848
        virQEMUCapsClear(qemuCaps, QEMU_CAPS_DRIVE_BOOT);
7849 7850

    cmd = virCommandNew(emulator);
7851

7852
    virCommandAddEnvPassCommon(cmd);
7853

7854
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME)) {
7855
        virCommandAddArg(cmd, "-name");
7856
        if (cfg->setProcessName &&
7857
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME_PROCESS)) {
7858 7859 7860 7861
            virCommandAddArgFormat(cmd, "%s,process=qemu:%s",
                                   def->name, def->name);
        } else {
            virCommandAddArg(cmd, def->name);
7862 7863
        }
    }
C
Cole Robinson 已提交
7864 7865 7866 7867

    if (!standalone)
        virCommandAddArg(cmd, "-S"); /* freeze CPU */

7868
    if (enableFips)
7869
        virCommandAddArg(cmd, "-enable-fips");
7870

7871
    if (qemuBuildMachineArgStr(cmd, def, qemuCaps) < 0)
7872
        goto error;
7873

7874
    if (qemuBuildCpuArgStr(driver, def, emulator, qemuCaps,
7875
                           hostarch, &cpu, &hasHwVirt, !!migrateFrom) < 0)
7876
        goto error;
7877

7878 7879 7880 7881
    if (cpu) {
        virCommandAddArgList(cmd, "-cpu", cpu, NULL);
        VIR_FREE(cpu);

7882
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NESTING) &&
7883 7884
            hasHwVirt)
            virCommandAddArg(cmd, "-enable-nesting");
7885
    }
7886

7887 7888
    if (qemuBuildDomainLoaderCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
7889 7890 7891 7892 7893 7894 7895 7896 7897

    /* 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);
7898
    if (def->mem.nhugepages && (!def->cpu || !def->cpu->ncells)) {
7899 7900
        const long system_page_size = sysconf(_SC_PAGESIZE) / 1024;
        char *mem_path = NULL;
7901

7902 7903 7904 7905 7906 7907 7908 7909 7910
        if (def->mem.hugepages[0].size == system_page_size) {
            /* There is one special case: if user specified "huge"
             * pages of regular system pages size. */
        } else {
            if (!cfg->nhugetlbfs) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("hugetlbfs filesystem is not mounted "
                                       "or disabled by administrator config"));
                goto error;
7911
            }
7912
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MEM_PATH)) {
7913
                virReportError(VIR_ERR_INTERNAL_ERROR,
7914 7915
                               _("hugepage backing not supported by '%s'"),
                               def->emulator);
7916 7917 7918
                goto error;
            }

7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938
            if (def->mem.hugepages[0].size) {
                for (j = 0; j < cfg->nhugetlbfs; j++) {
                    if (cfg->hugetlbfs[j].size == def->mem.hugepages[0].size)
                        break;
                }

                if (j == cfg->nhugetlbfs) {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Unable to find any usable hugetlbfs mount for %llu KiB"),
                                   def->mem.hugepages[0].size);
                    goto error;
                }

                if (!(mem_path = qemuGetHugepagePath(&cfg->hugetlbfs[j])))
                    goto error;
            } else {
                if (!(mem_path = qemuGetDefaultHugepath(cfg->hugetlbfs,
                                                        cfg->nhugetlbfs)))
                    goto error;
            }
7939
        }
7940

7941 7942 7943
        virCommandAddArg(cmd, "-mem-prealloc");
        if (mem_path)
            virCommandAddArgList(cmd, "-mem-path", mem_path, NULL);
7944
        VIR_FREE(mem_path);
7945 7946
    }

7947 7948 7949 7950 7951 7952 7953 7954 7955 7956
    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");
    }
7957
    mlock = def->mem.locked;
7958

7959
    virCommandAddArg(cmd, "-smp");
7960
    if (!(smp = qemuBuildSmpArgStr(def, qemuCaps)))
7961 7962 7963 7964
        goto error;
    virCommandAddArg(cmd, smp);
    VIR_FREE(smp);

J
John Ferlan 已提交
7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977
    if (def->iothreads > 0 &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_IOTHREAD)) {
        /* Create named iothread objects starting with 1. These may be used
         * by a disk definition which will associate to an iothread by
         * supplying a value of 1 up to the number of iothreads available
         * (since 0 would indicate to not use the feature).
         */
        for (i = 1; i <= def->iothreads; i++) {
            virCommandAddArg(cmd, "-object");
            virCommandAddArgFormat(cmd, "iothread,id=iothread%zu", i);
        }
    }

7978
    if (def->cpu && def->cpu->ncells)
7979
        if (qemuBuildNumaArgStr(cfg, def, cmd, qemuCaps, nodeset) < 0)
7980 7981
            goto error;

7982
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_UUID))
7983 7984 7985 7986
        virCommandAddArgList(cmd, "-uuid", uuid, NULL);
    if (def->virtType == VIR_DOMAIN_VIRT_XEN ||
        STREQ(def->os.type, "xen") ||
        STREQ(def->os.type, "linux")) {
7987
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DOMID)) {
7988 7989
            virCommandAddArg(cmd, "-domid");
            virCommandAddArgFormat(cmd, "%d", def->id);
7990
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_XEN_DOMID)) {
7991 7992 7993 7994 7995 7996 7997
            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);
7998 7999 8000 8001
            goto error;
        }
    }

8002 8003 8004 8005 8006
    if ((def->os.smbios_mode != VIR_DOMAIN_SMBIOS_NONE) &&
        (def->os.smbios_mode != VIR_DOMAIN_SMBIOS_EMULATE)) {
        virSysinfoDefPtr source = NULL;
        bool skip_uuid = false;

8007
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SMBIOS_TYPE)) {
8008 8009 8010
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("the QEMU binary %s does not support smbios settings"),
                           emulator);
8011 8012 8013
            goto error;
        }

8014 8015 8016
        /* should we really error out or just warn in those cases ? */
        if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_HOST) {
            if (driver->hostsysinfo == NULL) {
8017
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8018
                               _("Host SMBIOS information is not available"));
8019
                goto error;
8020
            }
8021 8022 8023 8024 8025 8026 8027 8028 8029
            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;
8030
            }
8031 8032
            source = def->sysinfo;
            /* domain_conf guaranteed that system_uuid matches guest uuid. */
8033
        }
8034 8035
        if (source != NULL) {
            char *smbioscmd;
8036

8037 8038 8039 8040
            smbioscmd = qemuBuildSmbiosBiosStr(source);
            if (smbioscmd != NULL) {
                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
8041
            }
8042 8043 8044 8045
            smbioscmd = qemuBuildSmbiosSystemStr(source, skip_uuid);
            if (smbioscmd != NULL) {
                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
8046
            }
8047
        }
8048
    }
8049

8050 8051 8052 8053 8054 8055 8056
    /*
     * 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...
     */
8057
    if (!def->graphics) {
8058
        virCommandAddArg(cmd, "-nographic");
8059

8060
        if (cfg->nogfxAllowHostAudio)
8061
            virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
8062 8063 8064 8065
        else
            virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");
    }

8066
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8067
        /* Disable global config files and default devices */
8068
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_USER_CONFIG))
8069
            virCommandAddArg(cmd, "-no-user-config");
8070
        else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NODEFCONFIG))
8071 8072
            virCommandAddArg(cmd, "-nodefconfig");
        virCommandAddArg(cmd, "-nodefaults");
8073 8074
    }

8075
    /* Serial graphics adapter */
J
Ján Tomko 已提交
8076
    if (def->os.bios.useserial == VIR_TRISTATE_BOOL_YES) {
8077
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8078 8079 8080 8081
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("qemu does not support -device"));
            goto error;
        }
8082
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SGA)) {
8083 8084 8085 8086 8087 8088 8089
            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"));
8090 8091
            goto error;
        }
8092
        virCommandAddArgList(cmd, "-device", "sga", NULL);
8093 8094
    }

8095 8096 8097
    if (monitor_chr) {
        char *chrdev;
        /* Use -chardev if it's available */
8098
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV)) {
J
Jim Fehlig 已提交
8099

8100 8101
            virCommandAddArg(cmd, "-chardev");
            if (!(chrdev = qemuBuildChrChardevStr(monitor_chr, "monitor",
8102
                                                  qemuCaps)))
8103 8104 8105
                goto error;
            virCommandAddArg(cmd, chrdev);
            VIR_FREE(chrdev);
8106

8107 8108 8109 8110 8111 8112 8113 8114
            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,";
8115

8116 8117 8118 8119 8120
            virCommandAddArg(cmd, "-monitor");
            if (!(chrdev = qemuBuildChrArgStr(monitor_chr, prefix)))
                goto error;
            virCommandAddArg(cmd, chrdev);
            VIR_FREE(chrdev);
8121 8122 8123
        }
    }

8124
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC)) {
8125
        char *rtcopt;
8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136
        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;
8137

8138 8139 8140
        case VIR_DOMAIN_CLOCK_OFFSET_UTC:
            /* Nothing, its the default */
            break;
8141

8142 8143 8144 8145
        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported clock offset '%s'"),
                           virDomainClockOffsetTypeToString(def->clock.offset));
8146
            goto error;
8147 8148 8149 8150 8151
        }
    }
    if (def->clock.offset == VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE &&
        def->clock.data.timezone) {
        virCommandAddEnvPair(cmd, "TZ", def->clock.data.timezone);
8152 8153
    }

8154
    for (i = 0; i < def->clock.ntimers; i++) {
8155
        switch ((virDomainTimerNameType) def->clock.timers[i]->name) {
8156 8157 8158 8159 8160 8161
        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;
8162

8163
        case VIR_DOMAIN_TIMER_NAME_KVMCLOCK:
8164 8165 8166
        case VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK:
            /* Timers above are handled when building -cpu.  */
        case VIR_DOMAIN_TIMER_NAME_LAST:
8167 8168 8169 8170 8171 8172
            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) */
8173
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC_TD_HACK)) {
8174 8175 8176 8177
                switch (def->clock.timers[i]->tickpolicy) {
                case -1:
                case VIR_DOMAIN_TIMER_TICKPOLICY_DELAY:
                    /* the default - do nothing */
8178
                    break;
8179 8180
                case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
                    virCommandAddArg(cmd, "-rtc-td-hack");
8181
                    break;
8182 8183 8184 8185 8186
                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 已提交
8187
                    goto error;
8188
                }
8189 8190 8191 8192
            } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC) &&
                       (def->clock.timers[i]->tickpolicy
                        != VIR_DOMAIN_TIMER_TICKPOLICY_DELAY) &&
                       (def->clock.timers[i]->tickpolicy != -1)) {
8193 8194 8195 8196 8197 8198
                /* 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;
8199
            }
8200
            break;
8201

8202 8203 8204 8205 8206 8207
        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. */
8208 8209 8210 8211
                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))
8212 8213 8214
                    virCommandAddArg(cmd, "-no-kvm-pit-reinjection");
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
8215 8216
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_KVM_PIT) ||
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY)) {
8217
                    /* do nothing - this is default for kvm-pit */
8218
                } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_TDF)) {
8219 8220
                    /* -tdf switches to 'catchup' with userspace pit. */
                    virCommandAddArg(cmd, "-tdf");
8221
                } else {
8222 8223 8224 8225
                    /* can't catchup if we have neither pit mode */
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("unsupported pit tickpolicy '%s'"),
                                   virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
8226 8227 8228
                    goto error;
                }
                break;
8229 8230 8231 8232 8233 8234 8235
            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;
8236
            }
8237
            break;
8238

8239 8240 8241 8242 8243 8244 8245
        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"! */
8246

8247
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_HPET)) {
8248 8249 8250 8251 8252 8253 8254
                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,
8255 8256
                                   "%s", _("hpet timer is not supported"));
                    goto error;
8257 8258
                }
            }
8259 8260 8261
            break;
        }
    }
8262

8263 8264 8265 8266 8267 8268 8269 8270 8271
    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");
        }
    }
8272

8273 8274 8275 8276
    /* 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.
     */
8277 8278
    if (monitor_json && allowReboot &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_SHUTDOWN)) {
8279
        virCommandAddArg(cmd, "-no-shutdown");
8280
    }
8281

8282
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_ACPI)) {
J
Ján Tomko 已提交
8283
        if (def->features[VIR_DOMAIN_FEATURE_ACPI] != VIR_TRISTATE_SWITCH_ON)
8284 8285
            virCommandAddArg(cmd, "-no-acpi");
    }
8286

8287
    if (def->pm.s3) {
8288
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DISABLE_S3)) {
8289 8290 8291
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("setting ACPI S3 not supported"));
            goto error;
8292
        }
8293 8294
        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "PIIX4_PM.disable_s3=%d",
J
Ján Tomko 已提交
8295
                               def->pm.s3 == VIR_TRISTATE_BOOL_NO);
8296 8297 8298
    }

    if (def->pm.s4) {
8299
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DISABLE_S4)) {
8300
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
8301 8302 8303 8304 8305
                           "%s", _("setting ACPI S4 not supported"));
            goto error;
        }
        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "PIIX4_PM.disable_s4=%d",
J
Ján Tomko 已提交
8306
                               def->pm.s4 == VIR_TRISTATE_BOOL_NO);
8307
    }
8308

8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320
    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
             */
8321
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX)) {
8322
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8323
                               _("hypervisor lacks deviceboot feature"));
8324 8325
                goto error;
            }
8326
            emitBootindex = true;
8327
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX) &&
J
Ján Tomko 已提交
8328
                   (def->os.bootmenu != VIR_TRISTATE_BOOL_YES ||
8329
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_MENU))) {
8330 8331
            emitBootindex = true;
        }
8332

8333 8334
        if (!emitBootindex) {
            char boot[VIR_DOMAIN_BOOT_LAST+1];
8335

8336
            for (i = 0; i < def->os.nBootDevs; i++) {
8337 8338 8339
                switch (def->os.bootDevs[i]) {
                case VIR_DOMAIN_BOOT_CDROM:
                    boot[i] = 'd';
8340
                    break;
8341 8342
                case VIR_DOMAIN_BOOT_FLOPPY:
                    boot[i] = 'a';
8343
                    break;
8344 8345 8346 8347 8348 8349 8350 8351
                case VIR_DOMAIN_BOOT_DISK:
                    boot[i] = 'c';
                    break;
                case VIR_DOMAIN_BOOT_NET:
                    boot[i] = 'n';
                    break;
                default:
                    boot[i] = 'c';
8352
                    break;
8353
                }
8354
            }
8355
            boot[def->os.nBootDevs] = '\0';
8356

8357 8358
            virBufferAsprintf(&boot_buf, "%s", boot);
            boot_nparams++;
8359 8360
        }

8361
        if (def->os.bootmenu) {
8362
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_MENU)) {
8363 8364
                if (boot_nparams++)
                    virBufferAddChar(&boot_buf, ',');
8365

J
Ján Tomko 已提交
8366
                if (def->os.bootmenu == VIR_TRISTATE_BOOL_YES)
8367
                    virBufferAddLit(&boot_buf, "menu=on");
8368
                else
8369
                    virBufferAddLit(&boot_buf, "menu=off");
8370 8371 8372 8373 8374 8375 8376
            } 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");
            }
        }
8377

8378
        if (def->os.bios.rt_set) {
8379
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_REBOOT_TIMEOUT)) {
8380 8381 8382
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("reboot timeout is not supported "
                                 "by this QEMU binary"));
8383
                virBufferFreeAndReset(&boot_buf);
8384
                goto error;
8385 8386 8387 8388 8389 8390 8391 8392
            }

            if (boot_nparams++)
                virBufferAddChar(&boot_buf, ',');

            virBufferAsprintf(&boot_buf,
                              "reboot-timeout=%d",
                              def->os.bios.rt_delay);
8393 8394
        }

8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409
        if (def->os.bm_timeout_set) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SPLASH_TIMEOUT)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("splash timeout is not supported "
                                 "by this QEMU binary"));
                virBufferFreeAndReset(&boot_buf);
                goto error;
            }

            if (boot_nparams++)
                virBufferAddChar(&boot_buf, ',');

            virBufferAsprintf(&boot_buf, "splash-time=%u", def->os.bm_timeout);
        }

8410 8411 8412 8413 8414 8415
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_STRICT)) {
            if (boot_nparams++)
                virBufferAddChar(&boot_buf, ',');
            virBufferAddLit(&boot_buf, "strict=on");
        }

8416 8417
        if (boot_nparams > 0) {
            virCommandAddArg(cmd, "-boot");
8418

8419
            if (virBufferCheckError(&boot_buf) < 0)
8420 8421
                goto error;

8422 8423
            if (boot_nparams < 2 || emitBootindex) {
                virCommandAddArgBuffer(cmd, &boot_buf);
8424
                virBufferFreeAndReset(&boot_buf);
8425
            } else {
8426
                char *str = virBufferContentAndReset(&boot_buf);
8427 8428
                virCommandAddArgFormat(cmd,
                                       "order=%s",
8429 8430
                                       str);
                VIR_FREE(str);
8431 8432 8433
            }
        }

8434 8435 8436 8437 8438 8439
        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 已提交
8440 8441 8442 8443 8444 8445 8446 8447 8448
        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;
            }
        }
8449 8450 8451
    } else {
        virCommandAddArgList(cmd, "-bootloader", def->os.bootloader, NULL);
    }
8452

8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499
    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);
        }
    }

8500
    for (i = 0; i < def->ndisks; i++) {
8501
        virDomainDiskDefPtr disk = def->disks[i];
8502

8503 8504
        if (disk->src->driverName != NULL &&
            !STREQ(disk->src->driverName, "qemu")) {
8505 8506
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported driver name '%s' for disk '%s'"),
8507
                           disk->src->driverName, disk->src->path);
8508 8509 8510 8511
            goto error;
        }
    }

8512
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8513 8514 8515
        for (j = 0; j < ARRAY_CARDINALITY(contOrder); j++) {
            for (i = 0; i < def->ncontrollers; i++) {
                virDomainControllerDefPtr cont = def->controllers[i];
8516

8517 8518
                if (cont->type != contOrder[j])
                    continue;
8519

8520 8521 8522 8523 8524 8525 8526
                /* 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 已提交
8527
                /* Skip pci-root/pcie-root */
8528
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
L
Laine Stump 已提交
8529 8530
                    (cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT ||
                     cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT)) {
8531 8532 8533
                    continue;
                }

8534 8535
                /* Only recent QEMU implements a SATA (AHCI) controller */
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_SATA) {
8536
                    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_ICH9_AHCI)) {
8537 8538 8539
                        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                       _("SATA is not supported with this "
                                         "QEMU binary"));
8540
                        goto error;
8541 8542 8543
                    } else if (cont->idx == 0 && qemuDomainMachineIsQ35(def)) {
                        /* first SATA controller on Q35 machines is implicit */
                        continue;
8544 8545
                    } else {
                        char *devstr;
8546

8547 8548
                        virCommandAddArg(cmd, "-device");
                        if (!(devstr = qemuBuildControllerDevStr(def, cont,
8549
                                                                 qemuCaps, NULL)))
8550
                            goto error;
8551 8552 8553

                        virCommandAddArg(cmd, devstr);
                        VIR_FREE(devstr);
8554
                    }
8555 8556
                } else if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
                           cont->model == -1 &&
8557
                           !qemuDomainMachineIsQ35(def) &&
8558
                           (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PIIX3_USB_UHCI) ||
8559
                            (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_OHCI) &&
8560
                             ARCH_IS_PPC64(def->os.arch)))) {
8561 8562 8563 8564
                    if (usblegacy) {
                        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                       _("Multiple legacy USB controllers are "
                                         "not supported"));
8565 8566
                        goto error;
                    }
8567 8568 8569 8570 8571
                    usblegacy = true;
                } else {
                    virCommandAddArg(cmd, "-device");

                    char *devstr;
8572
                    if (!(devstr = qemuBuildControllerDevStr(def, cont, qemuCaps,
8573 8574 8575 8576 8577
                                                             &usbcontroller)))
                        goto error;

                    virCommandAddArg(cmd, devstr);
                    VIR_FREE(devstr);
8578
                }
8579
            }
8580 8581
        }
    }
8582

8583
    if (usbcontroller == 0 && !qemuDomainMachineIsQ35(def))
8584
        virCommandAddArg(cmd, "-usb");
8585

8586
    for (i = 0; i < def->nhubs; i++) {
8587 8588
        virDomainHubDefPtr hub = def->hubs[i];
        char *optstr;
8589

8590
        virCommandAddArg(cmd, "-device");
8591
        if (!(optstr = qemuBuildHubDevStr(def, hub, qemuCaps)))
8592 8593 8594 8595
            goto error;
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);
    }
8596

8597
    /* If QEMU supports -drive param instead of old -hda, -hdb, -cdrom .. */
8598
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE)) {
8599
        int bootCD = 0, bootFloppy = 0, bootDisk = 0;
8600

8601
        if ((virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) || emitBootindex)) {
8602 8603
            /* bootDevs will get translated into either bootindex=N or boot=on
             * depending on what qemu supports */
8604
            for (i = 0; i < def->os.nBootDevs; i++) {
8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615
                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;
                }
8616
            }
8617
        }
8618

8619
        for (i = 0; i < def->ndisks; i++) {
8620 8621 8622
            char *optstr;
            int bootindex = 0;
            virDomainDiskDefPtr disk = def->disks[i];
8623
            bool withDeviceArg = false;
8624
            bool deviceFlagMasked = false;
8625

8626 8627 8628
            /* Unless we have -device, then USB disks need special
               handling */
            if ((disk->bus == VIR_DOMAIN_DISK_BUS_USB) &&
8629
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8630 8631
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                    virCommandAddArg(cmd, "-usbdevice");
8632
                    virCommandAddArgFormat(cmd, "disk:%s", disk->src->path);
8633 8634 8635
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported usb disk type for '%s'"),
8636
                                   disk->src->path);
8637
                    goto error;
8638
                }
8639
                continue;
8640
            }
8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655

            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;
8656
            }
8657 8658 8659 8660

            virCommandAddArg(cmd, "-drive");

            /* Unfortunately it is not possible to use
8661
               -device for floppies, xen PV, or SD
8662 8663 8664
               devices. Fortunately, those don't need
               static PCI addresses, so we don't really
               care that we can't use -device */
8665
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8666 8667
                if (disk->bus != VIR_DOMAIN_DISK_BUS_XEN &&
                    disk->bus != VIR_DOMAIN_DISK_BUS_SD) {
8668
                    withDeviceArg = true;
8669
                } else {
8670
                    virQEMUCapsClear(qemuCaps, QEMU_CAPS_DEVICE);
8671 8672
                    deviceFlagMasked = true;
                }
8673
            }
8674 8675
            optstr = qemuBuildDriveStr(conn, disk,
                                       emitBootindex ? false : !!bootindex,
8676
                                       qemuCaps);
8677
            if (deviceFlagMasked)
8678
                virQEMUCapsSet(qemuCaps, QEMU_CAPS_DEVICE);
8679 8680 8681 8682 8683 8684 8685 8686 8687
            if (!optstr)
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);

            if (!emitBootindex)
                bootindex = 0;
            else if (disk->info.bootIndex)
                bootindex = disk->info.bootIndex;
8688

8689 8690 8691 8692 8693 8694 8695
            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 已提交
8696

8697 8698 8699 8700 8701 8702 8703 8704 8705
                    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 已提交
8706

8707
                    if (!(optstr = qemuBuildDriveDevStr(def, disk, bootindex,
8708
                                                        qemuCaps)))
8709 8710 8711 8712
                        goto error;
                    virCommandAddArg(cmd, optstr);
                    VIR_FREE(optstr);
                }
E
Eric Blake 已提交
8713
            }
8714 8715
        }
    } else {
8716
        for (i = 0; i < def->ndisks; i++) {
8717 8718 8719 8720
            char dev[NAME_MAX];
            char *file;
            const char *fmt;
            virDomainDiskDefPtr disk = def->disks[i];
E
Eric Blake 已提交
8721

8722
            if ((disk->src->type == VIR_STORAGE_TYPE_BLOCK) &&
8723
                (disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN)) {
8724
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8725 8726
                               _("tray status 'open' is invalid for "
                                 "block type disk"));
E
Eric Blake 已提交
8727 8728 8729
                goto error;
            }

8730 8731 8732
            if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                    virCommandAddArg(cmd, "-usbdevice");
8733
                    virCommandAddArgFormat(cmd, "disk:%s", disk->src->path);
8734 8735 8736
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported usb disk type for '%s'"),
8737
                                   disk->src->path);
E
Eric Blake 已提交
8738 8739
                    goto error;
                }
8740
                continue;
E
Eric Blake 已提交
8741
            }
8742 8743 8744

            if (STREQ(disk->dst, "hdc") &&
                disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
8745
                if (disk->src->path) {
8746 8747 8748
                    snprintf(dev, NAME_MAX, "-%s", "cdrom");
                } else {
                    continue;
E
Eric Blake 已提交
8749 8750
                }
            } else {
8751 8752 8753 8754 8755 8756 8757 8758
                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 已提交
8759 8760
            }

8761
            if (disk->src->type == VIR_STORAGE_TYPE_DIR) {
8762
                /* QEMU only supports magic FAT format for now */
8763 8764
                if (disk->src->format > 0 &&
                    disk->src->format != VIR_STORAGE_FILE_FAT) {
8765 8766
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported disk driver type for '%s'"),
8767
                                   virStorageFileFormatTypeToString(disk->src->format));
8768 8769
                    goto error;
                }
8770
                if (!disk->src->readonly) {
8771 8772 8773 8774 8775 8776 8777 8778
                    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 已提交
8779

8780
                if (virAsprintf(&file, fmt, disk->src) < 0)
8781
                    goto error;
8782
            } else if (disk->src->type == VIR_STORAGE_TYPE_NETWORK) {
8783 8784
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("network disks are only supported with -drive"));
8785
                goto error;
8786
            } else {
8787
                if (VIR_STRDUP(file, disk->src->path) < 0)
8788
                    goto error;
E
Eric Blake 已提交
8789 8790
            }

8791 8792 8793 8794 8795 8796 8797 8798
            /* 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 已提交
8799 8800 8801
        }
    }

8802
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV)) {
8803
        for (i = 0; i < def->nfss; i++) {
8804 8805
            char *optstr;
            virDomainFSDefPtr fs = def->fss[i];
8806

8807
            virCommandAddArg(cmd, "-fsdev");
8808
            if (!(optstr = qemuBuildFSStr(fs, qemuCaps)))
8809 8810 8811
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
8812

8813
            virCommandAddArg(cmd, "-device");
8814
            if (!(optstr = qemuBuildFSDevStr(def, fs, qemuCaps)))
8815 8816 8817 8818 8819 8820 8821 8822 8823
                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;
8824 8825 8826
        }
    }

8827
    if (!def->nnets) {
8828
        /* If we have -device, then we set -nodefault already */
8829
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
8830
            virCommandAddArgList(cmd, "-net", "none", NULL);
8831
    } else {
8832
        int bootNet = 0;
8833

8834 8835 8836 8837
        if (emitBootindex) {
            /* convert <boot dev='network'/> to bootindex since we didn't emit
             * -boot n
             */
8838
            for (i = 0; i < def->os.nBootDevs; i++) {
8839 8840 8841 8842
                if (def->os.bootDevs[i] == VIR_DOMAIN_BOOT_NET) {
                    bootNet = i + 1;
                    break;
                }
8843 8844 8845
            }
        }

8846
        for (i = 0; i < def->nnets; i++) {
8847
            virDomainNetDefPtr net = def->nets[i];
8848
            int vlan;
8849

8850
            /* VLANs are not used with -netdev, so don't record them */
8851
            if (qemuDomainSupportsNetdev(def, qemuCaps, net))
8852
                vlan = -1;
8853 8854
            else
                vlan = i;
8855

8856
            if (qemuBuildInterfaceCommandLine(cmd, driver, conn, def, net,
8857 8858
                                              qemuCaps, vlan, bootNet, vmop,
                                              standalone) < 0)
8859 8860 8861
                goto error;
            last_good_net = i;
            bootNet = 0;
8862 8863 8864
        }
    }

8865 8866 8867 8868 8869
    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;
8870
        virBuffer opt = VIR_BUFFER_INITIALIZER;
8871
        const char *database;
8872

8873 8874 8875 8876
        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) {
8877
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8878 8879 8880
                           _("this QEMU binary lacks multiple smartcard "
                             "support"));
            virBufferFreeAndReset(&opt);
8881 8882 8883
            goto error;
        }

8884 8885
        switch (smartcard->type) {
        case VIR_DOMAIN_SMARTCARD_TYPE_HOST:
8886 8887
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
8888 8889 8890 8891
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard host "
                                 "mode support"));
                goto error;
8892 8893
            }

8894 8895
            virBufferAddLit(&opt, "ccid-card-emulated,backend=nss-emulated");
            break;
8896

8897
        case VIR_DOMAIN_SMARTCARD_TYPE_HOST_CERTIFICATES:
8898 8899
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
8900 8901 8902 8903 8904
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard host "
                                 "mode support"));
                goto error;
            }
8905

8906 8907 8908 8909
            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);
8910
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
8911 8912
                                   _("invalid certificate name: %s"),
                                   smartcard->data.cert.file[j]);
8913 8914
                    goto error;
                }
8915
                virBufferAsprintf(&opt, ",cert%zu=%s", j + 1,
8916 8917 8918 8919 8920 8921 8922 8923
                                  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);
8924 8925
                    goto error;
                }
8926 8927 8928
                database = smartcard->data.cert.database;
            } else {
                database = VIR_DOMAIN_SMARTCARD_DEFAULT_DATABASE;
8929
            }
8930
            virBufferAsprintf(&opt, ",db=%s", database);
8931
            break;
8932

8933
        case VIR_DOMAIN_SMARTCARD_TYPE_PASSTHROUGH:
8934 8935
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_PASSTHRU)) {
8936 8937 8938 8939
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard "
                                 "passthrough mode support"));
                goto error;
8940 8941
            }

8942 8943 8944
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&smartcard->data.passthru,
                                                  smartcard->info.alias,
8945
                                                  qemuCaps))) {
8946 8947
                virBufferFreeAndReset(&opt);
                goto error;
8948
            }
8949 8950
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
8951

8952 8953 8954
            virBufferAsprintf(&opt, "ccid-card-passthru,chardev=char%s",
                              smartcard->info.alias);
            break;
8955

8956 8957 8958 8959 8960
        default:
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unexpected smartcard type %d"),
                           smartcard->type);
            virBufferFreeAndReset(&opt);
8961 8962
            goto error;
        }
8963 8964 8965 8966
        virCommandAddArg(cmd, "-device");
        virBufferAsprintf(&opt, ",id=%s,bus=ccid0.0", smartcard->info.alias);
        virCommandAddArgBuffer(cmd, &opt);
    }
8967

8968 8969 8970
    for (i = 0; i < def->nserials; i++) {
        virDomainChrDefPtr serial = def->serials[i];
        char *devstr;
8971

8972 8973 8974
        if (serial->source.type == VIR_DOMAIN_CHR_TYPE_SPICEPORT && !spice)
            continue;

8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992
        /* 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);
8993
        }
8994
        actualSerials++;
8995
    }
8996

M
Martin Kletzander 已提交
8997 8998 8999 9000
    /* If we have -device, then we set -nodefault already */
    if (!actualSerials && !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
            virCommandAddArgList(cmd, "-serial", "none", NULL);

9001 9002
    if (!def->nparallels) {
        /* If we have -device, then we set -nodefault already */
9003
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
9004 9005
            virCommandAddArgList(cmd, "-parallel", "none", NULL);
    } else {
9006
        for (i = 0; i < def->nparallels; i++) {
9007 9008
            virDomainChrDefPtr parallel = def->parallels[i];
            char *devstr;
9009

9010
            /* Use -chardev with -device if they are available */
9011 9012
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) &&
                virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9013 9014 9015
                virCommandAddArg(cmd, "-chardev");
                if (!(devstr = qemuBuildChrChardevStr(&parallel->source,
                                                      parallel->info.alias,
9016
                                                      qemuCaps)))
9017 9018 9019
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
9020

9021 9022
                if (qemuBuildChrDeviceCommandLine(cmd, def, parallel, qemuCaps) < 0)
                    goto error;
9023 9024 9025 9026 9027 9028 9029
            } else {
                virCommandAddArg(cmd, "-parallel");
                if (!(devstr = qemuBuildChrArgStr(&parallel->source, NULL)))
                      goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            }
9030
        }
9031
    }
9032

9033
    for (i = 0; i < def->nchannels; i++) {
9034 9035
        virDomainChrDefPtr channel = def->channels[i];
        char *devstr;
9036

9037 9038
        switch (channel->targetType) {
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_GUESTFWD:
9039 9040
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9041 9042
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("guestfwd requires QEMU to support -chardev & -device"));
9043 9044
                goto error;
            }
9045

9046 9047 9048
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&channel->source,
                                                  channel->info.alias,
9049
                                                  qemuCaps)))
9050 9051 9052 9053
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

9054
            if (qemuBuildChrDeviceStr(&devstr, def, channel, qemuCaps) < 0)
9055
                goto error;
9056 9057
            virCommandAddArgList(cmd, "-netdev", devstr, NULL);
            VIR_FREE(devstr);
9058 9059
            break;

9060
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO:
9061
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9062 9063
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("virtio channel requires QEMU to support -device"));
9064 9065
                goto error;
            }
9066

9067
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC) &&
9068 9069 9070 9071 9072 9073 9074 9075 9076
                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,
9077
                                                      qemuCaps)))
9078 9079 9080
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
9081
            }
9082

9083
            if (qemuBuildChrDeviceCommandLine(cmd, def, channel, qemuCaps) < 0)
9084
                goto error;
9085 9086
            break;
        }
9087
    }
9088

9089
    /* Explicit console devices */
9090
    for (i = 0; i < def->nconsoles; i++) {
9091 9092
        virDomainChrDefPtr console = def->consoles[i];
        char *devstr;
9093

9094
        switch (console->targetType) {
9095 9096
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLP:
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLPLM:
9097
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9098 9099 9100 9101
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("sclp console requires QEMU to support -device"));
                goto error;
            }
9102
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCLP_S390)) {
9103 9104 9105 9106 9107 9108 9109 9110
                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,
9111
                                                  qemuCaps)))
9112 9113 9114 9115
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

9116
            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
9117 9118 9119
                goto error;
            break;

9120
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO:
9121
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9122 9123 9124
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("virtio channel requires QEMU to support -device"));
                goto error;
P
Peng Zhou 已提交
9125 9126
            }

9127 9128 9129
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&console->source,
                                                  console->info.alias,
9130
                                                  qemuCaps)))
9131 9132 9133
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
9134

9135
            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
9136
                goto error;
9137
            break;
9138 9139

        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL:
9140
            break;
9141 9142 9143 9144 9145 9146

        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported console target type %s"),
                           NULLSTR(virDomainChrConsoleTargetTypeToString(console->targetType)));
            goto error;
9147
        }
9148
    }
9149

9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165
    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);
    }

9166
    for (i = 0; i < def->ninputs; i++) {
9167 9168 9169
        virDomainInputDefPtr input = def->inputs[i];

        if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
9170
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9171 9172
                char *optstr;
                virCommandAddArg(cmd, "-device");
9173
                if (!(optstr = qemuBuildUSBInputDevStr(def, input, qemuCaps)))
9174
                    goto error;
9175 9176 9177
                virCommandAddArg(cmd, optstr);
                VIR_FREE(optstr);
            } else {
9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188
                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;
                }
9189 9190
            }
        }
9191
    }
9192

9193
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_0_10) && sdl + vnc + spice > 1) {
9194 9195 9196 9197 9198 9199 9200 9201
        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"));
9202 9203 9204
        goto error;
    }

9205
    for (i = 0; i < def->ngraphics; ++i) {
9206
        if (qemuBuildGraphicsCommandLine(cfg, cmd, def, qemuCaps,
9207 9208 9209
                                         def->graphics[i]) < 0)
            goto error;
    }
9210

9211
    if (def->nvideos > 0) {
9212
        int primaryVideoType = def->videos[0]->type;
9213
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY) &&
9214
             ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VGA &&
9215
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VGA)) ||
9216
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_CIRRUS &&
9217
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_CIRRUS_VGA)) ||
9218
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
9219
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VMWARE_SVGA)) ||
9220
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_QXL &&
9221
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL_VGA)))
9222
           ) {
9223
            for (i = 0; i < def->nvideos; i++) {
9224 9225
                char *str;
                virCommandAddArg(cmd, "-device");
9226
                if (!(str = qemuBuildDeviceVideoStr(def, def->videos[i], qemuCaps, !i)))
9227 9228 9229 9230 9231
                    goto error;

                virCommandAddArg(cmd, str);
                VIR_FREE(str);
            }
9232
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA)) {
9233
            if (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_XEN) {
9234 9235
                /* nothing - vga has no effect on Xen pvfb */
            } else {
9236
                if ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_QXL) &&
9237
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_QXL)) {
9238 9239
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU does not support QXL graphics adapters"));
9240 9241 9242
                    goto error;
                }

9243
                const char *vgastr = qemuVideoTypeToString(primaryVideoType);
9244
                if (!vgastr || STREQ(vgastr, "")) {
9245 9246
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("video type %s is not supported with QEMU"),
9247
                                   virDomainVideoTypeToString(primaryVideoType));
9248 9249 9250 9251
                    goto error;
                }

                virCommandAddArgList(cmd, "-vga", vgastr, NULL);
9252

9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265
                /* If we cannot use --device option to specify the video device
                 * in QEMU we will fallback to the old --vga option. To get the
                 * correct device name for the --vga option the 'qemuVideo' is
                 * used, but to set some device attributes we need to use the
                 * --global option and for that we need to specify the device
                 * name the same as for --device option and for that we need to
                 * use 'qemuDeviceVideo'.
                 *
                 * See 'Graphics Devices' section in docs/qdev-device-use.txt in
                 * QEMU repository.
                 */
                const char *dev = qemuDeviceVideoTypeToString(primaryVideoType);

9266 9267
                if (def->videos[0]->type == VIR_DOMAIN_VIDEO_TYPE_QXL &&
                    (def->videos[0]->vram || def->videos[0]->ram) &&
9268
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9269 9270
                    unsigned int ram = def->videos[0]->ram;
                    unsigned int vram = def->videos[0]->vram;
9271
                    unsigned int vgamem = def->videos[0]->vgamem;
9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284

                    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;
                    }
9285

9286
                    if (ram) {
E
Eric Blake 已提交
9287
                        virCommandAddArg(cmd, "-global");
9288 9289 9290 9291 9292 9293 9294
                        virCommandAddArgFormat(cmd, "%s.ram_size=%u",
                                               dev, ram * 1024);
                    }
                    if (vram) {
                        virCommandAddArg(cmd, "-global");
                        virCommandAddArgFormat(cmd, "%s.vram_size=%u",
                                               dev, vram * 1024);
9295
                    }
9296 9297 9298 9299 9300 9301
                    if (vgamem &&
                        virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VGA_VGAMEM)) {
                        virCommandAddArg(cmd, "-global");
                        virCommandAddArgFormat(cmd, "%s.vgamem_mb=%u",
                                               dev, vgamem / 1024);
                    }
9302
                }
9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322

                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE) &&
                    def->videos[0]->vram &&
                    ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VGA &&
                      virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_VGAMEM)) ||
                     (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
                      virQEMUCapsGet(qemuCaps, QEMU_CAPS_VMWARE_SVGA_VGAMEM)))) {
                    unsigned int vram = def->videos[0]->vram;

                    if (vram < 1024) {
                        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                       "%s", _("value for 'vgamem' must be at "
                                               "least 1 MiB (1024 KiB)"));
                        goto error;
                    }

                    virCommandAddArg(cmd, "-global");
                    virCommandAddArgFormat(cmd, "%s.vgamem_mb=%u",
                                           dev, vram / 1024);
                }
9323
            }
9324 9325

            if (def->nvideos > 1) {
9326
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9327
                    for (i = 1; i < def->nvideos; i++) {
9328 9329 9330 9331 9332 9333 9334 9335 9336 9337
                        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");

9338
                        if (!(str = qemuBuildDeviceVideoStr(def, def->videos[i], qemuCaps, false)))
9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349
                            goto error;

                        virCommandAddArg(cmd, str);
                        VIR_FREE(str);
                    }
                } else {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   "%s", _("only one video card is currently supported"));
                    goto error;
                }
            }
9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366
        } 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:
9367 9368 9369
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("video type %s is not supported with this QEMU"),
                               virDomainVideoTypeToString(def->videos[0]->type));
9370 9371 9372
                goto error;
            }

9373
            if (def->nvideos > 1) {
9374 9375
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("only one video card is currently supported"));
9376 9377 9378 9379 9380 9381
                goto error;
            }
        }

    } else {
        /* If we have -device, then we set -nodefault already */
9382 9383 9384
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_NONE))
9385 9386 9387 9388 9389
            virCommandAddArgList(cmd, "-vga", "none", NULL);
    }

    /* Add sound hardware */
    if (def->nsounds) {
9390
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9391
            for (i = 0; i < def->nsounds; i++) {
9392 9393 9394 9395 9396 9397 9398 9399 9400 9401
                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");
9402
                    if (!(str = qemuBuildSoundDevStr(def, sound, qemuCaps)))
9403 9404 9405
                        goto error;

                    virCommandAddArg(cmd, str);
9406
                    VIR_FREE(str);
9407 9408
                    if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                        sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
9409 9410
                        char *codecstr = NULL;

9411
                        for (j = 0; j < sound->ncodecs; j++) {
9412
                            virCommandAddArg(cmd, "-device");
9413
                            if (!(codecstr = qemuBuildSoundCodecStr(sound, sound->codecs[j], qemuCaps))) {
9414
                                goto error;
9415

9416 9417 9418 9419
                            }
                            virCommandAddArg(cmd, codecstr);
                            VIR_FREE(codecstr);
                        }
9420
                        if (j == 0) {
9421 9422 9423 9424 9425
                            virDomainSoundCodecDef codec = {
                                VIR_DOMAIN_SOUND_CODEC_TYPE_DUPLEX,
                                0
                            };
                            virCommandAddArg(cmd, "-device");
9426
                            if (!(codecstr = qemuBuildSoundCodecStr(sound, &codec, qemuCaps))) {
9427 9428 9429 9430 9431 9432
                                goto error;

                            }
                            virCommandAddArg(cmd, codecstr);
                            VIR_FREE(codecstr);
                        }
9433
                    }
9434 9435 9436 9437 9438
                }
            }
        } else {
            int size = 100;
            char *modstr;
9439
            if (VIR_ALLOC_N(modstr, size+1) < 0)
9440
                goto error;
9441

9442
            for (i = 0; i < def->nsounds && size > 0; i++) {
9443 9444 9445 9446
                virDomainSoundDefPtr sound = def->sounds[i];
                const char *model = virDomainSoundModelTypeToString(sound->model);
                if (!model) {
                    VIR_FREE(modstr);
9447 9448
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("invalid sound model"));
9449 9450
                    goto error;
                }
9451

9452 9453
                if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                    sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
A
Alex Jia 已提交
9454
                    VIR_FREE(modstr);
9455 9456
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("this QEMU binary lacks hda support"));
9457 9458 9459
                    goto error;
                }

9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474
                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;

9475
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9476 9477
            virCommandAddArg(cmd, "-device");

9478
            optstr = qemuBuildWatchdogDevStr(def, watchdog, qemuCaps);
9479 9480 9481 9482 9483 9484 9485
            if (!optstr)
                goto error;
        } else {
            virCommandAddArg(cmd, "-watchdog");

            const char *model = virDomainWatchdogModelTypeToString(watchdog->model);
            if (!model) {
9486 9487
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("missing watchdog model"));
9488 9489 9490
                goto error;
            }

9491 9492
            if (VIR_STRDUP(optstr, model) < 0)
                goto error;
9493 9494 9495 9496 9497 9498 9499 9500 9501
        }
        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) {
9502 9503
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("invalid watchdog action"));
9504 9505 9506 9507 9508
            goto error;
        }
        virCommandAddArgList(cmd, "-watchdog-action", action, NULL);
    }

9509
    /* Add redirected devices */
9510
    for (i = 0; i < def->nredirdevs; i++) {
9511 9512 9513 9514 9515 9516
        virDomainRedirdevDefPtr redirdev = def->redirdevs[i];
        char *devstr;

        virCommandAddArg(cmd, "-chardev");
        if (!(devstr = qemuBuildChrChardevStr(&redirdev->source.chr,
                                              redirdev->info.alias,
9517
                                              qemuCaps))) {
9518 9519 9520 9521 9522 9523
            goto error;
        }

        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);

9524 9525 9526
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("redirected devices are not supported by this QEMU"));
9527
            goto error;
9528 9529
        }

9530 9531

        virCommandAddArg(cmd, "-device");
9532
        if (!(devstr = qemuBuildRedirdevDevStr(def, redirdev, qemuCaps)))
9533 9534 9535 9536 9537
            goto error;
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);
    }

9538
    /* Add host passthrough hardware */
9539
    for (i = 0; i < def->nhostdevs; i++) {
9540 9541 9542
        virDomainHostdevDefPtr hostdev = def->hostdevs[i];
        char *devstr;

9543
        if (hostdev->info->bootIndex) {
9544
            if (hostdev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS ||
9545
                (hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI &&
9546 9547
                 hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
                 hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI)) {
9548
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
9549
                               _("booting from assigned devices is only "
9550
                                 "supported for PCI, USB and SCSI devices"));
9551
                goto error;
9552
            } else {
9553 9554
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
                    if (hostdev->source.subsys.u.pci.backend
9555
                        == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569
                        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;
                        }
                    }
9570 9571
                }
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
9572
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HOST_BOOTINDEX)) {
9573
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
9574 9575
                                   _("booting from assigned USB devices is not "
                                     "supported with this version of qemu"));
9576 9577
                    goto error;
                }
9578 9579 9580 9581 9582 9583 9584
                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;
                }
9585 9586 9587
            }
        }

9588 9589 9590 9591
        /* USB */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {

9592
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9593
                virCommandAddArg(cmd, "-device");
9594
                if (!(devstr = qemuBuildUSBHostdevDevStr(def, hostdev, qemuCaps)))
9595 9596 9597 9598 9599
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
                virCommandAddArg(cmd, "-usbdevice");
9600
                if (!(devstr = qemuBuildUSBHostdevUSBDevStr(hostdev)))
9601 9602 9603 9604 9605 9606 9607 9608 9609
                    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) {
9610
            int backend = hostdev->source.subsys.u.pci.backend;
9611

9612
            if (backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
9613 9614 9615 9616 9617 9618
                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;
                }
9619 9620 9621
                /* VFIO requires all of the guest's memory to be locked
                 * resident */
                mlock = true;
9622 9623
            }

9624
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9625
                char *configfd_name = NULL;
9626
                if ((backend != VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) &&
9627
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_CONFIGFD)) {
9628 9629 9630 9631 9632
                    int configfd = qemuOpenPCIConfig(hostdev);

                    if (configfd >= 0) {
                        if (virAsprintf(&configfd_name, "%d", configfd) < 0) {
                            VIR_FORCE_CLOSE(configfd);
9633
                            goto error;
9634 9635
                        }

9636 9637
                        virCommandPassFD(cmd, configfd,
                                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
9638 9639 9640
                    }
                }
                virCommandAddArg(cmd, "-device");
9641
                devstr = qemuBuildPCIHostdevDevStr(def, hostdev, configfd_name, qemuCaps);
9642 9643 9644 9645 9646
                VIR_FREE(configfd_name);
                if (!devstr)
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
9647
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCIDEVICE)) {
9648
                virCommandAddArg(cmd, "-pcidevice");
9649
                if (!(devstr = qemuBuildPCIHostdevPCIDevStr(hostdev, qemuCaps)))
9650 9651 9652 9653
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
9654 9655
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("PCI device assignment is not supported by this version of qemu"));
9656 9657 9658
                goto error;
            }
        }
9659 9660 9661 9662 9663 9664 9665 9666 9667 9668

        /* 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");
9669
                if (!(drvstr = qemuBuildSCSIHostdevDrvStr(conn, hostdev, qemuCaps, callbacks)))
9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684
                    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;
            }
        }
9685 9686
    }

9687 9688 9689 9690 9691 9692
    /* 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")) {
9693
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_TCP)) {
9694 9695 9696
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("TCP migration is not supported with "
                                       "this QEMU binary"));
M
Michael R. Hines 已提交
9697 9698 9699 9700 9701 9702 9703 9704
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
        } else if (STRPREFIX(migrateFrom, "rdma")) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_RDMA)) {
                virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                               _("incoming RDMA migration is not supported "
                                 "with this QEMU binary"));
9705 9706 9707 9708
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
        } else if (STREQ(migrateFrom, "stdio")) {
9709
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_FD)) {
9710
                virCommandAddArgFormat(cmd, "fd:%d", migrateFd);
9711
                virCommandPassFD(cmd, migrateFd, 0);
9712
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_EXEC)) {
9713 9714
                virCommandAddArg(cmd, "exec:cat");
                virCommandSetInputFD(cmd, migrateFd);
9715
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_KVM_STDIO)) {
9716 9717 9718
                virCommandAddArg(cmd, migrateFrom);
                virCommandSetInputFD(cmd, migrateFd);
            } else {
9719 9720 9721
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("STDIO migration is not supported "
                                       "with this QEMU binary"));
9722 9723 9724
                goto error;
            }
        } else if (STRPREFIX(migrateFrom, "exec")) {
9725
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_EXEC)) {
9726 9727 9728
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("EXEC migration is not supported "
                                       "with this QEMU binary"));
9729 9730 9731 9732
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
        } else if (STRPREFIX(migrateFrom, "fd")) {
9733
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_FD)) {
9734 9735 9736
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("FD migration is not supported "
                                       "with this QEMU binary"));
9737 9738 9739
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
9740
            virCommandPassFD(cmd, migrateFd, 0);
9741
        } else if (STRPREFIX(migrateFrom, "unix")) {
9742
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_UNIX)) {
9743 9744 9745
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("UNIX migration is not supported "
                                       "with this QEMU binary"));
9746 9747 9748
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
9749
        } else {
9750 9751
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("unknown migration protocol"));
9752 9753 9754
            goto error;
        }
    }
9755 9756 9757 9758 9759 9760 9761

    /* 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
     */
9762 9763
    if (STREQLEN(def->os.machine, "s390-virtio", 10) &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_S390) && def->memballoon)
9764 9765 9766 9767
        def->memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_NONE;

    if (def->memballoon &&
        def->memballoon->model != VIR_DOMAIN_MEMBALLOON_MODEL_NONE) {
9768
        if (def->memballoon->model != VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO) {
9769 9770 9771
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Memory balloon device type '%s' is not supported by this version of qemu"),
                           virDomainMemballoonModelTypeToString(def->memballoon->model));
9772 9773
            goto error;
        }
9774
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9775 9776 9777
            char *optstr;
            virCommandAddArg(cmd, "-device");

9778
            optstr = qemuBuildMemballoonDevStr(def, def->memballoon, qemuCaps);
9779 9780 9781 9782
            if (!optstr)
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
9783
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BALLOON)) {
9784 9785 9786 9787
            virCommandAddArgList(cmd, "-balloon", "virtio", NULL);
        }
    }

9788
    for (i = 0; i < def->nrngs; i++) {
9789
        /* add the RNG source backend */
9790
        if (qemuBuildRNGBackendArgs(cmd, def->rngs[i], qemuCaps) < 0)
9791 9792 9793
            goto error;

        /* add the device */
9794
        if (qemuBuildRNGDeviceArgs(cmd, def, def->rngs[i], qemuCaps) < 0)
9795 9796 9797
            goto error;
    }

9798
    if (def->nvram) {
9799
        if (ARCH_IS_PPC64(def->os.arch) &&
9800
            STRPREFIX(def->os.machine, "pseries")) {
9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821
            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;
        }
    }
9822 9823
    if (snapshot)
        virCommandAddArgList(cmd, "-loadvm", snapshot->def->name, NULL);
9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836

    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] : "");
    }

9837
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SECCOMP_SANDBOX)) {
9838
        if (cfg->seccompSandbox == 0)
9839
            virCommandAddArgList(cmd, "-sandbox", "off", NULL);
9840
        else if (cfg->seccompSandbox > 0)
9841
            virCommandAddArgList(cmd, "-sandbox", "on", NULL);
9842
    } else if (cfg->seccompSandbox > 0) {
9843 9844 9845 9846 9847
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("QEMU does not support seccomp sandboxes"));
        goto error;
    }

H
Hu Tao 已提交
9848 9849
    if (def->panic) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PANIC)) {
9850
            if (def->panic->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_ISA) {
H
Hu Tao 已提交
9851 9852 9853
                virCommandAddArg(cmd, "-device");
                virCommandAddArgFormat(cmd, "pvpanic,ioport=%d",
                                       def->panic->info.addr.isa.iobase);
9854 9855
            } else if (def->panic->info.type ==
                       VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
H
Hu Tao 已提交
9856
                virCommandAddArgList(cmd, "-device", "pvpanic", NULL);
9857 9858 9859 9860 9861
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("panic is supported only "
                                 "with ISA address type"));
                goto error;
H
Hu Tao 已提交
9862 9863 9864 9865 9866 9867 9868 9869
            }
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("your QEMU is too old to support pvpanic"));
            goto error;
        }
    }

9870 9871 9872 9873 9874
    for (i = 0; i < def->nshmems; i++) {
        if (qemuBuildShmemCommandLine(cmd, def, def->shmems[i], qemuCaps))
            goto error;
    }

9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887
    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);
    }
9888

9889 9890 9891 9892
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MSG_TIMESTAMP) &&
        cfg->logTimestamp)
        virCommandAddArgList(cmd, "-msg", "timestamp=on", NULL);

9893
    virObjectUnref(cfg);
9894 9895
    return cmd;

9896
 error:
9897
    virObjectUnref(cfg);
9898 9899 9900
    /* free up any resources in the network driver
     * but don't overwrite the original error */
    originalError = virSaveLastError();
9901
    for (i = 0; last_good_net != -1 && i <= last_good_net; i++)
9902
        virDomainConfNWFilterTeardown(def->nets[i]);
9903
    virSetError(originalError);
J
John Ferlan 已提交
9904
    virFreeError(originalError);
9905 9906 9907 9908
    virCommandFree(cmd);
    return NULL;
}

9909 9910 9911
/* This function generates the correct '-device' string for character
 * devices of each architecture.
 */
9912 9913
static int
qemuBuildSerialChrDeviceStr(char **deviceStr,
9914
                            virDomainDefPtr def,
9915 9916 9917 9918
                            virDomainChrDefPtr serial,
                            virQEMUCapsPtr qemuCaps,
                            virArch arch,
                            char *machine)
9919 9920 9921
{
    virBuffer cmd = VIR_BUFFER_INITIALIZER;

9922
    if (ARCH_IS_PPC64(arch) && STRPREFIX(machine, "pseries")) {
9923 9924 9925 9926
        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);
9927
            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
9928 9929
                goto error;
        }
G
Guannan Ren 已提交
9930 9931 9932
    } else {
        virBufferAsprintf(&cmd, "%s,chardev=char%s,id=%s",
                          virDomainChrSerialTargetTypeToString(serial->targetType),
9933 9934
                          serial->info.alias, serial->info.alias);

G
Guannan Ren 已提交
9935
        if (serial->targetType == VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_USB) {
9936
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_SERIAL)) {
G
Guannan Ren 已提交
9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948
                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;
            }

9949
            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
9950
                goto error;
G
Guannan Ren 已提交
9951 9952 9953
        }
    }

9954
    if (virBufferCheckError(&cmd) < 0)
9955 9956
        goto error;

9957 9958
    *deviceStr = virBufferContentAndReset(&cmd);
    return 0;
9959

9960
 error:
9961
    virBufferFreeAndReset(&cmd);
9962 9963 9964 9965 9966 9967 9968 9969
    return -1;
}

static int
qemuBuildParallelChrDeviceStr(char **deviceStr,
                              virDomainChrDefPtr chr)
{
    if (virAsprintf(deviceStr, "isa-parallel,chardev=char%s,id=%s",
J
Ján Tomko 已提交
9970
                    chr->info.alias, chr->info.alias) < 0)
9971 9972
        return -1;
    return 0;
9973
}
9974

9975 9976 9977 9978 9979 9980 9981 9982 9983
static int
qemuBuildChannelChrDeviceStr(char **deviceStr,
                             virDomainChrDefPtr chr,
                             virQEMUCapsPtr qemuCaps)
{
    int ret = -1;
    char *addr = NULL;
    int port;

9984
    switch ((virDomainChrChannelTargetType) chr->targetType) {
9985 9986 9987 9988 9989 9990 9991 9992
    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,
9993
                        "user,guestfwd=tcp:%s:%i-chardev:char%s,id=user-%s",
J
Ján Tomko 已提交
9994
                        addr, port, chr->info.alias, chr->info.alias) < 0)
9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008
            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;
10009
 cleanup:
10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020
    VIR_FREE(addr);
    return ret;
}

static int
qemuBuildConsoleChrDeviceStr(char **deviceStr,
                             virDomainChrDefPtr chr,
                             virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

10021
    switch ((virDomainChrConsoleTargetType) chr->targetType) {
10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043
    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;
10044
 cleanup:
10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055
    return ret;
}

int
qemuBuildChrDeviceStr(char **deviceStr,
                      virDomainDefPtr vmdef,
                      virDomainChrDefPtr chr,
                      virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

10056
    switch ((virDomainChrDeviceType) chr->deviceType) {
10057
    case VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL:
10058
        ret = qemuBuildSerialChrDeviceStr(deviceStr, vmdef, chr, qemuCaps,
10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082
                                          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;
}


10083 10084 10085 10086 10087 10088 10089
/*
 * 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 已提交
10090 10091
                               char ***retenv,
                               char ***retargv)
10092 10093
{
    char **arglist = NULL;
10094 10095 10096
    size_t argcount = 0;
    size_t argalloc = 0;
    size_t envend;
10097
    size_t i;
10098 10099
    const char *curr = args;
    const char *start;
E
Eric Blake 已提交
10100 10101
    char **progenv = NULL;
    char **progargv = NULL;
10102 10103 10104 10105 10106 10107 10108 10109

    /* Iterate over string, splitting on sequences of ' ' */
    while (curr && *curr != '\0') {
        char *arg;
        const char *next;

        start = curr;
        /* accept a space in CEPH_ARGS */
10110
        if (STRPREFIX(curr, "CEPH_ARGS=-m "))
10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125
            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');

10126
        if (VIR_STRNDUP(arg, curr, next ? next - curr : -1) < 0)
10127
            goto error;
10128

10129 10130
        if (next && (*next == '\'' || *next == '"'))
            next++;
10131

10132 10133 10134
        if (VIR_RESIZE_N(arglist, argalloc, argcount, 2) < 0) {
            VIR_FREE(arg);
            goto error;
10135 10136 10137
        }

        arglist[argcount++] = arg;
10138
        arglist[argcount] = NULL;
10139 10140 10141 10142 10143 10144 10145 10146 10147

        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) */
10148
    for (envend = 0; ((envend < argcount) &&
10149 10150 10151 10152 10153 10154 10155
                       (strchr(arglist[envend], '=') != NULL));
         envend++)
        ; /* nada */

    /* Copy the list of env vars */
    if (envend > 0) {
        if (VIR_REALLOC_N(progenv, envend+1) < 0)
10156
            goto error;
10157
        for (i = 0; i < envend; i++)
10158 10159 10160 10161 10162 10163
            progenv[i] = arglist[i];
        progenv[i] = NULL;
    }

    /* Copy the list of argv */
    if (VIR_REALLOC_N(progargv, argcount-envend + 1) < 0)
10164
        goto error;
10165
    for (i = envend; i < argcount; i++)
10166 10167 10168 10169 10170 10171 10172 10173 10174 10175
        progargv[i-envend] = arglist[i];
    progargv[i-envend] = NULL;

    VIR_FREE(arglist);

    *retenv = progenv;
    *retargv = progargv;

    return 0;

10176
 error:
10177 10178
    VIR_FREE(progenv);
    VIR_FREE(progargv);
E
Eric Blake 已提交
10179
    virStringFreeList(arglist);
10180 10181 10182 10183 10184 10185 10186
    return -1;
}


/*
 * Search for a named env variable, and return the value part
 */
E
Eric Blake 已提交
10187
static const char *qemuFindEnv(char **progenv,
10188 10189
                               const char *name)
{
10190
    size_t i;
10191 10192
    int len = strlen(name);

10193
    for (i = 0; progenv && progenv[i]; i++) {
10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211
        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,
10212
                  int *retnkeywords,
10213 10214 10215 10216 10217 10218 10219 10220
                  int allowEmptyValue)
{
    int keywordCount = 0;
    int keywordAlloc = 0;
    char **keywords = NULL;
    char **values = NULL;
    const char *start = str;
    const char *end;
10221
    size_t i;
10222 10223 10224

    *retkeywords = NULL;
    *retvalues = NULL;
10225
    *retnkeywords = 0;
10226 10227 10228 10229 10230 10231 10232 10233
    end = start + strlen(str);

    while (start) {
        const char *separator;
        const char *endmark;
        char *keyword;
        char *value = NULL;

10234 10235 10236 10237 10238 10239 10240 10241
        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)
10242 10243 10244 10245 10246 10247
            endmark = end;
        if (!(separator = strchr(start, '=')))
            separator = end;

        if (separator >= endmark) {
            if (!allowEmptyValue) {
10248 10249
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("malformed keyword arguments in '%s'"), str);
10250 10251 10252 10253 10254
                goto error;
            }
            separator = endmark;
        }

10255 10256
        if (VIR_STRNDUP(keyword, start, separator - start) < 0)
            goto error;
10257 10258 10259

        if (separator < endmark) {
            separator++;
10260
            if (VIR_STRNDUP(value, separator, endmark - separator) < 0) {
10261
                VIR_FREE(keyword);
10262
                goto error;
10263
            }
10264 10265 10266 10267 10268 10269 10270 10271 10272 10273
            if (strchr(value, ',')) {
                char *p = strchr(value, ',') + 1;
                char *q = p + 1;
                while (*q) {
                    if (*q == ',')
                        q++;
                    *p++ = *q++;
                }
                *p = '\0';
            }
10274 10275 10276 10277 10278 10279 10280
        }

        if (keywordAlloc == keywordCount) {
            if (VIR_REALLOC_N(keywords, keywordAlloc + 10) < 0 ||
                VIR_REALLOC_N(values, keywordAlloc + 10) < 0) {
                VIR_FREE(keyword);
                VIR_FREE(value);
10281
                goto error;
10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294
            }
            keywordAlloc += 10;
        }

        keywords[keywordCount] = keyword;
        values[keywordCount] = value;
        keywordCount++;

        start = endmark < end ? endmark + 1 : NULL;
    }

    *retkeywords = keywords;
    *retvalues = values;
10295 10296
    *retnkeywords = keywordCount;
    return 0;
10297

10298
 error:
10299
    for (i = 0; i < keywordCount; i++) {
10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315
        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
10316
qemuParseCommandLineDisk(virDomainXMLOptionPtr xmlopt,
10317
                         const char *val,
10318
                         virDomainDefPtr dom,
10319 10320
                         int nvirtiodisk,
                         bool old_style_ceph_args)
10321 10322 10323 10324 10325
{
    virDomainDiskDefPtr def = NULL;
    char **keywords;
    char **values;
    int nkeywords;
10326
    size_t i;
10327 10328 10329 10330
    int idx = -1;
    int busid = -1;
    int unitid = -1;

10331 10332 10333 10334 10335
    if (qemuParseKeywords(val,
                          &keywords,
                          &values,
                          &nkeywords,
                          0) < 0)
10336 10337
        return NULL;

10338
    if (VIR_ALLOC(def) < 0)
10339
        goto cleanup;
10340 10341
    if (VIR_ALLOC(def->src) < 0)
        goto error;
10342

10343
    if ((ARCH_IS_PPC64(dom->os.arch) &&
10344
        dom->os.machine && STRPREFIX(dom->os.machine, "pseries")))
10345 10346 10347
        def->bus = VIR_DOMAIN_DISK_BUS_SCSI;
    else
       def->bus = VIR_DOMAIN_DISK_BUS_IDE;
10348
    def->device = VIR_DOMAIN_DISK_DEVICE_DISK;
10349
    def->src->type = VIR_STORAGE_TYPE_FILE;
10350

10351
    for (i = 0; i < nkeywords; i++) {
10352 10353
        if (STREQ(keywords[i], "file")) {
            if (values[i] && STRNEQ(values[i], "")) {
10354
                def->src->path = values[i];
10355
                values[i] = NULL;
10356 10357 10358 10359 10360 10361
                if (STRPREFIX(def->src->path, "/dev/"))
                    def->src->type = VIR_STORAGE_TYPE_BLOCK;
                else if (STRPREFIX(def->src->path, "nbd:") ||
                         STRPREFIX(def->src->path, "nbd+")) {
                    def->src->type = VIR_STORAGE_TYPE_NETWORK;
                    def->src->protocol = VIR_STORAGE_NET_PROTOCOL_NBD;
10362

10363 10364
                    if (qemuParseNBDString(def) < 0)
                        goto error;
10365 10366
                } else if (STRPREFIX(def->src->path, "rbd:")) {
                    char *p = def->src->path;
10367

10368 10369 10370
                    def->src->type = VIR_STORAGE_TYPE_NETWORK;
                    def->src->protocol = VIR_STORAGE_NET_PROTOCOL_RBD;
                    if (VIR_STRDUP(def->src->path, p + strlen("rbd:")) < 0)
10371
                        goto error;
10372
                    /* old-style CEPH_ARGS env variable is parsed later */
10373 10374 10375 10376
                    if (!old_style_ceph_args && qemuParseRBDString(def) < 0) {
                        VIR_FREE(p);
                        goto error;
                    }
10377 10378

                    VIR_FREE(p);
10379 10380 10381 10382
                } else if (STRPREFIX(def->src->path, "gluster:") ||
                           STRPREFIX(def->src->path, "gluster+")) {
                    def->src->type = VIR_STORAGE_TYPE_NETWORK;
                    def->src->protocol = VIR_STORAGE_NET_PROTOCOL_GLUSTER;
10383 10384

                    if (qemuParseGlusterString(def) < 0)
10385
                        goto error;
10386 10387 10388
                } else if (STRPREFIX(def->src->path, "iscsi:")) {
                    def->src->type = VIR_STORAGE_TYPE_NETWORK;
                    def->src->protocol = VIR_STORAGE_NET_PROTOCOL_ISCSI;
P
Paolo Bonzini 已提交
10389 10390 10391

                    if (qemuParseISCSIString(def) < 0)
                        goto error;
10392 10393
                } else if (STRPREFIX(def->src->path, "sheepdog:")) {
                    char *p = def->src->path;
10394 10395
                    char *port, *vdi;

10396 10397 10398
                    def->src->type = VIR_STORAGE_TYPE_NETWORK;
                    def->src->protocol = VIR_STORAGE_NET_PROTOCOL_SHEEPDOG;
                    if (VIR_STRDUP(def->src->path, p + strlen("sheepdog:")) < 0)
10399
                        goto error;
10400
                    VIR_FREE(p);
10401

10402 10403
                    /* def->src->path must be [vdiname] or [host]:[port]:[vdiname] */
                    port = strchr(def->src->path, ':');
10404
                    if (port) {
10405 10406
                        *port = '\0';
                        vdi = strchr(port + 1, ':');
10407
                        if (!vdi) {
10408
                            *port = ':';
10409
                            virReportError(VIR_ERR_INTERNAL_ERROR,
10410
                                           _("cannot parse sheepdog filename '%s'"),
10411
                                           def->src->path);
10412
                            goto error;
10413
                        }
10414
                        port++;
10415
                        *vdi++ = '\0';
10416
                        if (VIR_ALLOC(def->src->hosts) < 0)
10417
                            goto error;
10418 10419 10420
                        def->src->nhosts = 1;
                        def->src->hosts->name = def->src->path;
                        if (VIR_STRDUP(def->src->hosts->port, port) < 0)
10421
                            goto error;
10422 10423 10424
                        def->src->hosts->transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
                        def->src->hosts->socket = NULL;
                        if (VIR_STRDUP(def->src->path, vdi) < 0)
10425
                            goto error;
10426
                    }
10427
                } else {
10428
                    def->src->type = VIR_STORAGE_TYPE_FILE;
10429
                }
10430
            } else {
10431
                def->src->type = VIR_STORAGE_TYPE_FILE;
10432 10433
            }
        } else if (STREQ(keywords[i], "if")) {
10434
            if (STREQ(values[i], "ide")) {
10435
                def->bus = VIR_DOMAIN_DISK_BUS_IDE;
10436
                if ((ARCH_IS_PPC64(dom->os.arch) &&
10437
                     dom->os.machine && STRPREFIX(dom->os.machine, "pseries"))) {
10438 10439 10440 10441
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("pseries systems do not support ide devices '%s'"), val);
                    goto error;
                }
10442
            } else if (STREQ(values[i], "scsi")) {
10443
                def->bus = VIR_DOMAIN_DISK_BUS_SCSI;
10444
            } else if (STREQ(values[i], "virtio")) {
10445
                def->bus = VIR_DOMAIN_DISK_BUS_VIRTIO;
10446
            } else if (STREQ(values[i], "xen")) {
10447
                def->bus = VIR_DOMAIN_DISK_BUS_XEN;
10448
            } else if (STREQ(values[i], "sd")) {
10449
                def->bus = VIR_DOMAIN_DISK_BUS_SD;
10450
            }
10451 10452 10453
        } else if (STREQ(keywords[i], "media")) {
            if (STREQ(values[i], "cdrom")) {
                def->device = VIR_DOMAIN_DISK_DEVICE_CDROM;
10454
                def->src->readonly = true;
10455
            } else if (STREQ(values[i], "floppy")) {
10456
                def->device = VIR_DOMAIN_DISK_DEVICE_FLOPPY;
10457
            }
10458
        } else if (STREQ(keywords[i], "format")) {
10459
            if (VIR_STRDUP(def->src->driverName, "qemu") < 0)
10460
                goto error;
10461
            def->src->format = virStorageFileFormatTypeFromString(values[i]);
10462 10463 10464 10465 10466 10467 10468 10469 10470
        } 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;
10471 10472
            else if (STREQ(values[i], "directsync"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_DIRECTSYNC;
10473 10474
            else if (STREQ(values[i], "unsafe"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_UNSAFE;
10475
        } else if (STREQ(keywords[i], "werror")) {
10476 10477
            if (STREQ(values[i], "stop"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_STOP;
10478 10479
            else if (STREQ(values[i], "report"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_REPORT;
10480 10481
            else if (STREQ(values[i], "ignore"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_IGNORE;
10482
            else if (STREQ(values[i], "enospc"))
10483
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE;
10484 10485 10486 10487 10488 10489 10490
        } 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;
10491 10492
        } else if (STREQ(keywords[i], "index")) {
            if (virStrToLong_i(values[i], NULL, 10, &idx) < 0) {
10493 10494
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive index '%s'"), val);
10495
                goto error;
10496 10497 10498
            }
        } else if (STREQ(keywords[i], "bus")) {
            if (virStrToLong_i(values[i], NULL, 10, &busid) < 0) {
10499 10500
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive bus '%s'"), val);
10501
                goto error;
10502 10503 10504
            }
        } else if (STREQ(keywords[i], "unit")) {
            if (virStrToLong_i(values[i], NULL, 10, &unitid) < 0) {
10505 10506
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive unit '%s'"), val);
10507
                goto error;
10508 10509 10510
            }
        } else if (STREQ(keywords[i], "readonly")) {
            if ((values[i] == NULL) || STREQ(values[i], "on"))
10511
                def->src->readonly = true;
E
Eric Blake 已提交
10512 10513
        } else if (STREQ(keywords[i], "aio")) {
            if ((def->iomode = virDomainDiskIoTypeFromString(values[i])) < 0) {
10514 10515
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse io mode '%s'"), values[i]);
10516
                goto error;
E
Eric Blake 已提交
10517
            }
10518 10519 10520 10521 10522 10523 10524 10525
        } 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]);
10526
                goto error;
10527 10528 10529 10530 10531 10532 10533 10534 10535
            }
        } 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]);
10536
                goto error;
10537 10538 10539 10540 10541 10542 10543 10544 10545
            }
        } 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]);
10546
                goto error;
10547 10548 10549 10550
            }
        } else if (STREQ(keywords[i], "trans")) {
            def->geometry.trans =
                virDomainDiskGeometryTransTypeFromString(values[i]);
10551 10552
            if ((def->geometry.trans < VIR_DOMAIN_DISK_TRANS_DEFAULT) ||
                (def->geometry.trans >= VIR_DOMAIN_DISK_TRANS_LAST)) {
10553 10554 10555
                virDomainDiskDefFree(def);
                def = NULL;
                virReportError(VIR_ERR_INTERNAL_ERROR,
10556
                               _("cannot parse translation value '%s'"),
10557
                               values[i]);
10558
                goto error;
10559
            }
10560 10561 10562
        }
    }

10563 10564 10565
    if (def->rerror_policy == def->error_policy)
        def->rerror_policy = 0;

10566
    if (!def->src->path &&
10567
        def->device == VIR_DOMAIN_DISK_DEVICE_DISK &&
10568
        def->src->type != VIR_STORAGE_TYPE_NETWORK) {
10569 10570
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("missing file parameter in drive '%s'"), val);
10571
        goto error;
10572 10573 10574 10575 10576 10577 10578 10579
    }
    if (idx == -1 &&
        def->bus == VIR_DOMAIN_DISK_BUS_VIRTIO)
        idx = nvirtiodisk;

    if (idx == -1 &&
        unitid == -1 &&
        busid == -1) {
10580
        virReportError(VIR_ERR_INTERNAL_ERROR,
10581 10582 10583
                       _("missing index/unit/bus parameter in drive '%s'"),
                       val);
        goto error;
10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604
    }

    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) {
10605
        ignore_value(VIR_STRDUP(def->dst, "hda"));
10606 10607
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_SCSI ||
               def->bus == VIR_DOMAIN_DISK_BUS_SD) {
10608
        ignore_value(VIR_STRDUP(def->dst, "sda"));
10609
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_VIRTIO) {
10610
        ignore_value(VIR_STRDUP(def->dst, "vda"));
10611
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_XEN) {
10612
        ignore_value(VIR_STRDUP(def->dst, "xvda"));
10613
    } else {
10614
        ignore_value(VIR_STRDUP(def->dst, "hda"));
10615 10616
    }

10617
    if (!def->dst)
10618
        goto error;
10619 10620 10621 10622 10623
    if (STREQ(def->dst, "xvda"))
        def->dst[3] = 'a' + idx;
    else
        def->dst[2] = 'a' + idx;

10624
    if (virDomainDiskDefAssignAddress(xmlopt, def) < 0) {
10625 10626
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid device name '%s'"), def->dst);
10627 10628
        virDomainDiskDefFree(def);
        def = NULL;
10629
        goto cleanup;
10630 10631
    }

10632
 cleanup:
10633
    for (i = 0; i < nkeywords; i++) {
10634 10635 10636 10637 10638 10639
        VIR_FREE(keywords[i]);
        VIR_FREE(values[i]);
    }
    VIR_FREE(keywords);
    VIR_FREE(values);
    return def;
10640

10641
 error:
10642 10643 10644
    virDomainDiskDefFree(def);
    def = NULL;
    goto cleanup;
10645 10646 10647 10648 10649 10650 10651 10652 10653 10654
}

/*
 * Tries to find a NIC definition matching a vlan we want
 */
static const char *
qemuFindNICForVLAN(int nnics,
                   const char **nics,
                   int wantvlan)
{
10655
    size_t i;
10656
    for (i = 0; i < nnics; i++) {
10657 10658 10659 10660 10661 10662 10663 10664 10665
        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) {
10666 10667
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot parse NIC vlan in '%s'"), nics[i]);
10668 10669 10670 10671 10672 10673 10674 10675 10676 10677
            return NULL;
        }

        if (gotvlan == wantvlan)
            return nics[i];
    }

    if (wantvlan == 0 && nnics > 0)
        return nics[0];

10678 10679
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("cannot find NIC definition for vlan %d"), wantvlan);
10680 10681 10682 10683 10684 10685 10686 10687 10688 10689
    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
10690
qemuParseCommandLineNet(virDomainXMLOptionPtr xmlopt,
10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701
                        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;
10702
    bool genmac = true;
10703
    size_t i;
10704 10705 10706 10707

    tmp = strchr(val, ',');

    if (tmp) {
10708 10709 10710 10711 10712
        if (qemuParseKeywords(tmp+1,
                              &keywords,
                              &values,
                              &nkeywords,
                              0) < 0)
10713 10714 10715 10716 10717
            return NULL;
    } else {
        nkeywords = 0;
    }

10718
    if (VIR_ALLOC(def) < 0)
10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731
        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;

10732
    for (i = 0; i < nkeywords; i++) {
10733 10734
        if (STREQ(keywords[i], "vlan")) {
            if (virStrToLong_i(values[i], NULL, 10, &wantvlan) < 0) {
10735 10736
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse vlan in '%s'"), val);
10737 10738 10739 10740 10741 10742
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
        } else if (def->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
                   STREQ(keywords[i], "script") && STRNEQ(values[i], "")) {
10743
            def->script = values[i];
10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764
            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")) {
10765 10766
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot parse NIC definition '%s'"), nic);
10767 10768 10769 10770 10771
        virDomainNetDefFree(def);
        def = NULL;
        goto cleanup;
    }

10772
    for (i = 0; i < nkeywords; i++) {
10773 10774 10775 10776 10777 10778 10779
        VIR_FREE(keywords[i]);
        VIR_FREE(values[i]);
    }
    VIR_FREE(keywords);
    VIR_FREE(values);

    if (STRPREFIX(nic, "nic,")) {
10780 10781 10782 10783 10784
        if (qemuParseKeywords(nic + strlen("nic,"),
                              &keywords,
                              &values,
                              &nkeywords,
                              0) < 0) {
10785 10786 10787 10788 10789 10790 10791 10792
            virDomainNetDefFree(def);
            def = NULL;
            goto cleanup;
        }
    } else {
        nkeywords = 0;
    }

10793
    for (i = 0; i < nkeywords; i++) {
10794
        if (STREQ(keywords[i], "macaddr")) {
10795
            genmac = false;
10796
            if (virMacAddrParse(values[i], &def->mac) < 0) {
10797 10798 10799
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unable to parse mac address '%s'"),
                               values[i]);
10800 10801 10802 10803 10804 10805 10806
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
        } else if (STREQ(keywords[i], "model")) {
            def->model = values[i];
            values[i] = NULL;
10807 10808
        } else if (STREQ(keywords[i], "vhost")) {
            if ((values[i] == NULL) || STREQ(values[i], "on")) {
10809
                def->driver.virtio.name = VIR_DOMAIN_NET_BACKEND_TYPE_VHOST;
10810
            } else if (STREQ(keywords[i], "off")) {
10811
                def->driver.virtio.name = VIR_DOMAIN_NET_BACKEND_TYPE_QEMU;
10812
            }
10813 10814
        } else if (STREQ(keywords[i], "sndbuf") && values[i]) {
            if (virStrToLong_ul(values[i], NULL, 10, &def->tune.sndbuf) < 0) {
10815 10816
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse sndbuf size in '%s'"), val);
10817 10818 10819 10820 10821
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
            def->tune.sndbuf_specified = true;
10822 10823 10824 10825
        }
    }

    if (genmac)
10826
        virDomainNetGenerateMAC(xmlopt, &def->mac);
10827

10828
 cleanup:
10829
    for (i = 0; i < nkeywords; i++) {
10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847
        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;
10848 10849 10850 10851
    virDomainHostdevDefPtr def = virDomainHostdevDefAlloc();

    if (!def)
       goto error;
10852 10853

    if (!STRPREFIX(val, "host=")) {
10854 10855
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown PCI device syntax '%s'"), val);
10856
        goto error;
10857 10858 10859 10860
    }

    start = val + strlen("host=");
    if (virStrToLong_i(start, &end, 16, &bus) < 0 || *end != ':') {
10861 10862
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device bus '%s'"), val);
10863
        goto error;
10864 10865 10866
    }
    start = end + 1;
    if (virStrToLong_i(start, &end, 16, &slot) < 0 || *end != '.') {
10867 10868
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device slot '%s'"), val);
10869
        goto error;
10870 10871 10872
    }
    start = end + 1;
    if (virStrToLong_i(start, NULL, 16, &func) < 0) {
10873 10874
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device function '%s'"), val);
10875
        goto error;
10876 10877 10878
    }

    def->mode = VIR_DOMAIN_HOSTDEV_MODE_SUBSYS;
10879
    def->managed = true;
10880
    def->source.subsys.type = VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI;
10881 10882 10883
    def->source.subsys.u.pci.addr.bus = bus;
    def->source.subsys.u.pci.addr.slot = slot;
    def->source.subsys.u.pci.addr.function = func;
10884
    return def;
10885 10886 10887 10888

 error:
    virDomainHostdevDefFree(def);
    return NULL;
10889 10890 10891 10892 10893 10894 10895 10896 10897
}


/*
 * Tries to parse a QEMU USB device
 */
static virDomainHostdevDefPtr
qemuParseCommandLineUSB(const char *val)
{
10898
    virDomainHostdevDefPtr def = virDomainHostdevDefAlloc();
10899
    virDomainHostdevSubsysUSBPtr usbsrc;
10900 10901 10902 10903
    int first = 0, second = 0;
    const char *start;
    char *end;

10904 10905
    if (!def)
       goto error;
10906
    usbsrc = &def->source.subsys.u.usb;
10907

10908
    if (!STRPREFIX(val, "host:")) {
10909 10910
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown USB device syntax '%s'"), val);
10911
        goto error;
10912 10913 10914 10915 10916
    }

    start = val + strlen("host:");
    if (strchr(start, ':')) {
        if (virStrToLong_i(start, &end, 16, &first) < 0 || *end != ':') {
10917 10918
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device vendor '%s'"), val);
10919
            goto error;
10920 10921 10922
        }
        start = end + 1;
        if (virStrToLong_i(start, NULL, 16, &second) < 0) {
10923 10924
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device product '%s'"), val);
10925
            goto error;
10926 10927 10928
        }
    } else {
        if (virStrToLong_i(start, &end, 10, &first) < 0 || *end != '.') {
10929 10930
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device bus '%s'"), val);
10931
            goto error;
10932 10933 10934
        }
        start = end + 1;
        if (virStrToLong_i(start, NULL, 10, &second) < 0) {
10935 10936
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device address '%s'"), val);
10937
            goto error;
10938 10939 10940 10941
        }
    }

    def->mode = VIR_DOMAIN_HOSTDEV_MODE_SUBSYS;
10942
    def->managed = false;
10943 10944
    def->source.subsys.type = VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB;
    if (*end == '.') {
10945 10946
        usbsrc->bus = first;
        usbsrc->device = second;
10947
    } else {
10948 10949
        usbsrc->vendor = first;
        usbsrc->product = second;
10950 10951
    }
    return def;
10952 10953 10954 10955

 error:
    virDomainHostdevDefFree(def);
    return NULL;
10956 10957 10958 10959 10960 10961
}


/*
 * Tries to parse a QEMU serial/parallel device
 */
10962 10963 10964
static int
qemuParseCommandLineChr(virDomainChrSourceDefPtr source,
                        const char *val)
10965 10966
{
    if (STREQ(val, "null")) {
10967
        source->type = VIR_DOMAIN_CHR_TYPE_NULL;
10968
    } else if (STREQ(val, "vc")) {
10969
        source->type = VIR_DOMAIN_CHR_TYPE_VC;
10970
    } else if (STREQ(val, "pty")) {
10971
        source->type = VIR_DOMAIN_CHR_TYPE_PTY;
10972
    } else if (STRPREFIX(val, "file:")) {
10973
        source->type = VIR_DOMAIN_CHR_TYPE_FILE;
10974 10975
        if (VIR_STRDUP(source->data.file.path, val + strlen("file:")) < 0)
            goto error;
10976
    } else if (STRPREFIX(val, "pipe:")) {
10977
        source->type = VIR_DOMAIN_CHR_TYPE_PIPE;
10978 10979
        if (VIR_STRDUP(source->data.file.path, val + strlen("pipe:")) < 0)
            goto error;
10980
    } else if (STREQ(val, "stdio")) {
10981
        source->type = VIR_DOMAIN_CHR_TYPE_STDIO;
10982 10983
    } else if (STRPREFIX(val, "udp:")) {
        const char *svc1, *host2, *svc2;
10984
        source->type = VIR_DOMAIN_CHR_TYPE_UDP;
10985 10986 10987 10988 10989
        val += strlen("udp:");
        svc1 = strchr(val, ':');
        host2 = svc1 ? strchr(svc1, '@') : NULL;
        svc2 = host2 ? strchr(host2, ':') : NULL;

10990 10991 10992
        if (svc1 && svc1 != val &&
            VIR_STRNDUP(source->data.udp.connectHost, val, svc1 - val) < 0)
            goto error;
10993 10994 10995

        if (svc1) {
            svc1++;
10996 10997 10998
            if (VIR_STRNDUP(source->data.udp.connectService, svc1,
                            host2 ? host2 - svc1 : strlen(svc1)) < 0)
                goto error;
10999 11000 11001 11002
        }

        if (host2) {
            host2++;
11003 11004
            if (svc2 && svc2 != host2 &&
                VIR_STRNDUP(source->data.udp.bindHost, host2, svc2 - host2) < 0)
11005
                goto error;
11006
        }
11007

11008 11009
        if (svc2) {
            svc2++;
11010
            if (STRNEQ(svc2, "0")) {
11011 11012
                if (VIR_STRDUP(source->data.udp.bindService, svc2) < 0)
                    goto error;
11013
            }
11014 11015 11016 11017
        }
    } else if (STRPREFIX(val, "tcp:") ||
               STRPREFIX(val, "telnet:")) {
        const char *opt, *svc;
11018
        source->type = VIR_DOMAIN_CHR_TYPE_TCP;
11019 11020 11021 11022
        if (STRPREFIX(val, "tcp:")) {
            val += strlen("tcp:");
        } else {
            val += strlen("telnet:");
11023
            source->data.tcp.protocol = VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
11024 11025 11026
        }
        svc = strchr(val, ':');
        if (!svc) {
11027 11028
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot find port number in character device %s"), val);
11029 11030 11031 11032
            goto error;
        }
        opt = strchr(svc, ',');
        if (opt && strstr(opt, "server"))
11033
            source->data.tcp.listen = true;
11034

11035 11036
        if (VIR_STRNDUP(source->data.tcp.host, val, svc - val) < 0)
            goto error;
11037
        svc++;
11038
        if (VIR_STRNDUP(source->data.tcp.service, svc, opt ? opt - svc : -1) < 0)
11039
            goto error;
11040 11041 11042 11043
    } else if (STRPREFIX(val, "unix:")) {
        const char *opt;
        val += strlen("unix:");
        opt = strchr(val, ',');
11044
        source->type = VIR_DOMAIN_CHR_TYPE_UNIX;
11045
        if (VIR_STRNDUP(source->data.nix.path, val, opt ? opt - val : -1) < 0)
11046
            goto error;
11047 11048

    } else if (STRPREFIX(val, "/dev")) {
11049
        source->type = VIR_DOMAIN_CHR_TYPE_DEV;
11050 11051
        if (VIR_STRDUP(source->data.file.path, val) < 0)
            goto error;
11052
    } else {
11053 11054
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown character device syntax %s"), val);
11055 11056 11057
        goto error;
    }

11058
    return 0;
11059

11060
 error:
11061
    return -1;
11062 11063 11064 11065 11066 11067 11068 11069 11070
}


static virCPUDefPtr
qemuInitGuestCPU(virDomainDefPtr dom)
{
    if (!dom->cpu) {
        virCPUDefPtr cpu;

11071
        if (VIR_ALLOC(cpu) < 0)
11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086
            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)
{
11087
    virCPUDefPtr cpu = NULL;
11088
    char **tokens;
11089
    char **hv_tokens = NULL;
11090
    char *model = NULL;
11091
    int ret = -1;
11092
    size_t i;
11093

11094 11095
    if (!(tokens = virStringSplit(val, ",", 0)))
        goto cleanup;
11096

11097 11098
    if (tokens[0] == NULL)
        goto syntax;
11099

11100 11101 11102 11103 11104 11105 11106
    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;
11107 11108 11109

            if (!STREQ(model, "qemu32") && !STREQ(model, "qemu64")) {
                if (!(cpu = qemuInitGuestCPU(dom)))
11110
                    goto cleanup;
11111 11112 11113 11114

                cpu->model = model;
                model = NULL;
            }
11115 11116
        } else if (*tokens[i] == '+' || *tokens[i] == '-') {
            const char *feature = tokens[i] + 1; /* '+' or '-' */
11117 11118
            int policy;

11119
            if (*tokens[i] == '+')
11120 11121 11122 11123
                policy = VIR_CPU_FEATURE_REQUIRE;
            else
                policy = VIR_CPU_FEATURE_DISABLE;

11124
            if (*feature == '\0')
11125 11126
                goto syntax;

11127 11128 11129 11130 11131 11132 11133 11134
            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;
             }

11135 11136
            if (STREQ(feature, "kvmclock")) {
                bool present = (policy == VIR_CPU_FEATURE_REQUIRE);
11137
                size_t j;
11138

11139 11140
                for (j = 0; j < dom->clock.ntimers; j++) {
                    if (dom->clock.timers[j]->name == VIR_DOMAIN_TIMER_NAME_KVMCLOCK)
11141 11142 11143
                        break;
                }

11144
                if (j == dom->clock.ntimers) {
11145 11146 11147 11148 11149
                    virDomainTimerDefPtr timer;
                    if (VIR_ALLOC(timer) < 0 ||
                        VIR_APPEND_ELEMENT_COPY(dom->clock.timers,
                                                dom->clock.ntimers, timer) < 0) {
                        VIR_FREE(timer);
11150
                        goto cleanup;
11151 11152 11153 11154 11155 11156
                    }
                    timer->name = VIR_DOMAIN_TIMER_NAME_KVMCLOCK;
                    timer->present = present;
                    timer->tickpolicy = -1;
                    timer->track = -1;
                    timer->mode = -1;
11157 11158
                } else if (dom->clock.timers[j]->present != -1 &&
                    dom->clock.timers[j]->present != present) {
11159 11160
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("conflicting occurrences of kvmclock feature"));
11161
                    goto cleanup;
11162
                }
11163 11164
            } else if (STREQ(feature, "kvm_pv_eoi")) {
                if (policy == VIR_CPU_FEATURE_REQUIRE)
J
Ján Tomko 已提交
11165
                    dom->apic_eoi = VIR_TRISTATE_SWITCH_ON;
11166
                else
J
Ján Tomko 已提交
11167
                    dom->apic_eoi = VIR_TRISTATE_SWITCH_OFF;
11168 11169 11170
            } else {
                if (!cpu) {
                    if (!(cpu = qemuInitGuestCPU(dom)))
11171
                        goto cleanup;
11172

11173 11174 11175 11176
                    cpu->model = model;
                    model = NULL;
                }

11177 11178
                if (virCPUDefAddFeature(cpu, feature, policy) < 0)
                    goto cleanup;
11179
            }
11180
        } else if (STRPREFIX(tokens[i], "hv_")) {
11181 11182
            const char *token = tokens[i] + 3; /* "hv_" */
            const char *feature, *value;
11183 11184
            int f;

11185 11186 11187 11188 11189 11190 11191 11192 11193
            if (*token == '\0')
                goto syntax;

            if (!(hv_tokens = virStringSplit(token, "=", 2)))
                goto cleanup;

            feature = hv_tokens[0];
            value = hv_tokens[1];

11194
            if (*feature == '\0')
11195 11196
                goto syntax;

J
Ján Tomko 已提交
11197
            dom->features[VIR_DOMAIN_FEATURE_HYPERV] = VIR_TRISTATE_SWITCH_ON;
11198 11199 11200 11201 11202

            if ((f = virDomainHypervTypeFromString(feature)) < 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported HyperV Enlightenment feature "
                                 "'%s'"), feature);
11203
                goto cleanup;
11204 11205
            }

11206
            switch ((virDomainHyperv) f) {
11207
            case VIR_DOMAIN_HYPERV_RELAXED:
11208 11209 11210 11211 11212 11213 11214
            case VIR_DOMAIN_HYPERV_VAPIC:
                if (value) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("HyperV feature '%s' should not "
                                     "have a value"), feature);
                    goto cleanup;
                }
J
Ján Tomko 已提交
11215
                dom->hyperv_features[f] = VIR_TRISTATE_SWITCH_ON;
11216 11217
                break;

11218
            case VIR_DOMAIN_HYPERV_SPINLOCKS:
J
Ján Tomko 已提交
11219
                dom->hyperv_features[f] = VIR_TRISTATE_SWITCH_ON;
11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233
                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;
11234 11235
                break;

11236 11237 11238
            case VIR_DOMAIN_HYPERV_LAST:
                break;
            }
11239 11240
            virStringFreeList(hv_tokens);
            hv_tokens = NULL;
11241 11242 11243
        } else if (STREQ(tokens[i], "kvm=off")) {
             dom->features[VIR_DOMAIN_FEATURE_KVM] = VIR_TRISTATE_SWITCH_ON;
             dom->kvm_features[VIR_DOMAIN_KVM_HIDDEN] = VIR_TRISTATE_SWITCH_ON;
11244
        }
11245
    }
11246

11247
    if (dom->os.arch == VIR_ARCH_X86_64) {
11248
        bool is_32bit = false;
11249
        if (cpu) {
11250
            virCPUDataPtr cpuData = NULL;
11251

11252 11253 11254
            if (cpuEncode(VIR_ARCH_X86_64, cpu, NULL, &cpuData,
                          NULL, NULL, NULL, NULL) < 0)
                goto cleanup;
11255

J
Jiri Denemark 已提交
11256 11257
            is_32bit = (cpuHasFeature(cpuData, "lm") != 1);
            cpuDataFree(cpuData);
11258 11259 11260
        } else if (model) {
            is_32bit = STREQ(model, "qemu32");
        }
11261

11262
        if (is_32bit)
11263
            dom->os.arch = VIR_ARCH_I686;
11264
    }
11265 11266 11267

    ret = 0;

11268
 cleanup:
11269
    VIR_FREE(model);
11270
    virStringFreeList(tokens);
11271
    virStringFreeList(hv_tokens);
11272
    return ret;
11273

11274
 syntax:
11275 11276
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("unknown CPU syntax '%s'"), val);
11277
    goto cleanup;
11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288
}


static int
qemuParseCommandLineSmp(virDomainDefPtr dom,
                        const char *val)
{
    unsigned int sockets = 0;
    unsigned int cores = 0;
    unsigned int threads = 0;
    unsigned int maxcpus = 0;
11289
    size_t i;
11290 11291 11292 11293 11294 11295 11296
    int nkws;
    char **kws;
    char **vals;
    int n;
    char *end;
    int ret;

11297
    if (qemuParseKeywords(val, &kws, &vals, &nkws, 1) < 0)
11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331
        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;
11332
    } else if (sockets || cores || threads) {
11333
        goto syntax;
11334
    }
11335 11336 11337

    ret = 0;

11338
 cleanup:
11339 11340 11341 11342 11343 11344 11345 11346 11347
    for (i = 0; i < nkws; i++) {
        VIR_FREE(kws[i]);
        VIR_FREE(vals[i]);
    }
    VIR_FREE(kws);
    VIR_FREE(vals);

    return ret;

11348
 syntax:
11349 11350
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("cannot parse CPU topology '%s'"), val);
11351
 error:
11352 11353 11354 11355 11356
    ret = -1;
    goto cleanup;
}


11357
static void
11358 11359
qemuParseCommandLineBootDevs(virDomainDefPtr def, const char *str)
{
11360 11361
    int n, b = 0;

11362
    for (n = 0; str[n] && b < VIR_DOMAIN_BOOT_LAST; n++) {
11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377
        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;
}


11378 11379 11380 11381 11382
/*
 * 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 已提交
11383 11384 11385 11386 11387 11388 11389 11390
static virDomainDefPtr
qemuParseCommandLine(virCapsPtr qemuCaps,
                     virDomainXMLOptionPtr xmlopt,
                     char **progenv,
                     char **progargv,
                     char **pidfile,
                     virDomainChrSourceDefPtr *monConfig,
                     bool *monJSON)
11391 11392
{
    virDomainDefPtr def;
11393
    size_t i;
11394
    bool nographics = false;
11395
    bool fullscreen = false;
11396
    char *path;
11397
    size_t nnics = 0;
11398 11399 11400
    const char **nics = NULL;
    int video = VIR_DOMAIN_VIDEO_TYPE_CIRRUS;
    int nvirtiodisk = 0;
W
Wen Congyang 已提交
11401
    qemuDomainCmdlineDefPtr cmd = NULL;
E
Eric Blake 已提交
11402
    virDomainDiskDefPtr disk = NULL;
11403
    const char *ceph_args = qemuFindEnv(progenv, "CEPH_ARGS");
11404

11405 11406 11407 11408 11409 11410 11411
    if (pidfile)
        *pidfile = NULL;
    if (monConfig)
        *monConfig = NULL;
    if (monJSON)
        *monJSON = false;

11412
    if (!progargv[0]) {
11413 11414
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no emulator path found"));
11415 11416 11417 11418
        return NULL;
    }

    if (VIR_ALLOC(def) < 0)
11419
        goto error;
11420 11421 11422

    /* allocate the cmdlinedef up-front; if it's unused, we'll free it later */
    if (VIR_ALLOC(cmd) < 0)
11423
        goto error;
11424

E
Eric Blake 已提交
11425
    if (virUUIDGenerate(def->uuid) < 0) {
11426 11427
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to generate uuid"));
E
Eric Blake 已提交
11428 11429
        goto error;
    }
11430 11431 11432 11433 11434 11435

    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;
11436

11437 11438 11439 11440
    def->onReboot = VIR_DOMAIN_LIFECYCLE_RESTART;
    def->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;
    def->onPoweroff = VIR_DOMAIN_LIFECYCLE_DESTROY;
    def->virtType = VIR_DOMAIN_VIRT_QEMU;
11441 11442
    if (VIR_STRDUP(def->emulator, progargv[0]) < 0)
        goto error;
11443

11444 11445
    if (!(path = last_component(def->emulator)))
        goto error;
11446

11447
    if (strstr(path, "xenner")) {
11448
        def->virtType = VIR_DOMAIN_VIRT_KVM;
11449 11450
        if (VIR_STRDUP(def->os.type, "xen") < 0)
            goto error;
11451
    } else {
11452 11453
        if (VIR_STRDUP(def->os.type, "hvm") < 0)
            goto error;
11454 11455
        if (strstr(path, "kvm")) {
            def->virtType = VIR_DOMAIN_VIRT_KVM;
J
Ján Tomko 已提交
11456
            def->features[VIR_DOMAIN_FEATURE_PAE] = VIR_TRISTATE_SWITCH_ON;
11457
        }
11458 11459
    }

11460
    if (def->virtType == VIR_DOMAIN_VIRT_KVM)
11461
        def->os.arch = qemuCaps->host.arch;
11462
    else if (STRPREFIX(path, "qemu-system-"))
11463
        def->os.arch = virArchFromString(path + strlen("qemu-system-"));
11464
    else
11465
        def->os.arch = VIR_ARCH_I686;
11466

11467 11468
    if ((def->os.arch == VIR_ARCH_I686) ||
        (def->os.arch == VIR_ARCH_X86_64))
J
Ján Tomko 已提交
11469
        def->features[VIR_DOMAIN_FEATURE_ACPI] = VIR_TRISTATE_SWITCH_ON;
11470

11471 11472 11473
#define WANT_VALUE()                                                   \
    const char *val = progargv[++i];                                   \
    if (!val) {                                                        \
11474
        virReportError(VIR_ERR_INTERNAL_ERROR,                         \
11475
                       _("missing value for %s argument"), arg);       \
11476 11477 11478 11479 11480
        goto error;                                                    \
    }

    /* One initial loop to get list of NICs, so we
     * can correlate them later */
11481
    for (i = 1; progargv[i]; i++) {
11482 11483 11484 11485 11486 11487 11488 11489
        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();
11490 11491 11492
            if (STRPREFIX(val, "nic") &&
                VIR_APPEND_ELEMENT(nics, nnics, val) < 0)
                goto error;
11493 11494 11495 11496
        }
    }

    /* Now the real processing loop */
11497
    for (i = 1; progargv[i]; i++) {
11498
        const char *arg = progargv[i];
L
Laine Stump 已提交
11499 11500
        bool argRecognized = true;

11501 11502 11503 11504 11505 11506 11507 11508 11509 11510
        /* 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)
11511
                goto error;
11512 11513
            vnc->type = VIR_DOMAIN_GRAPHICS_TYPE_VNC;

11514
            if (STRPREFIX(val, "unix:")) {
11515
                /* -vnc unix:/some/big/path */
11516
                if (VIR_STRDUP(vnc->data.vnc.socket, val + 5) < 0) {
11517
                    virDomainGraphicsDefFree(vnc);
11518
                    goto error;
11519 11520
                }
            } else {
11521 11522 11523 11524 11525 11526
                /*
                 * -vnc 127.0.0.1:4
                 * -vnc [2001:1:2:3:4:5:1234:1234]:4
                 * -vnc some.host.name:4
                 */
                char *opts;
11527
                char *port;
11528 11529 11530 11531 11532
                const char *sep = ":";
                if (val[0] == '[')
                    sep = "]:";
                tmp = strstr(val, sep);
                if (!tmp) {
11533
                    virDomainGraphicsDefFree(vnc);
11534 11535
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("missing VNC port number in '%s'"), val);
11536 11537
                    goto error;
                }
11538 11539
                port = tmp + strlen(sep);
                if (virStrToLong_i(port, &opts, 10,
11540
                                   &vnc->data.vnc.port) < 0) {
11541
                    virDomainGraphicsDefFree(vnc);
11542
                    virReportError(VIR_ERR_INTERNAL_ERROR,
11543
                                   _("cannot parse VNC port '%s'"), port);
11544 11545 11546
                    goto error;
                }
                if (val[0] == '[')
11547 11548
                    virDomainGraphicsListenSetAddress(vnc, 0,
                                                      val+1, tmp-(val+1), true);
11549
                else
11550 11551 11552 11553
                    virDomainGraphicsListenSetAddress(vnc, 0,
                                                      val, tmp-val, true);
                if (!virDomainGraphicsListenGetAddress(vnc, 0)) {
                    virDomainGraphicsDefFree(vnc);
11554
                    goto error;
11555
                }
11556 11557

                if (*opts == ',') {
11558 11559 11560
                    char *orig_opts;

                    if (VIR_STRDUP(orig_opts, opts + 1) < 0) {
11561
                        virDomainGraphicsDefFree(vnc);
11562
                        goto error;
11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594
                    }
                    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;
                            }
11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617
                        } 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;
                            }
11618 11619 11620 11621 11622 11623
                        }

                        opts = nextopt;
                    }
                    VIR_FREE(orig_opts);
                }
11624
                vnc->data.vnc.port += 5900;
11625
                vnc->data.vnc.autoport = false;
11626 11627
            }

11628
            if (VIR_APPEND_ELEMENT(def->graphics, def->ngraphics, vnc) < 0) {
11629
                virDomainGraphicsDefFree(vnc);
11630
                goto error;
11631 11632 11633 11634 11635
            }
        } else if (STREQ(arg, "-m")) {
            int mem;
            WANT_VALUE();
            if (virStrToLong_i(val, NULL, 10, &mem) < 0) {
11636 11637
                virReportError(VIR_ERR_INTERNAL_ERROR, \
                               _("cannot parse memory level '%s'"), val);
11638 11639 11640 11641 11642 11643 11644 11645 11646 11647
                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) {
11648 11649
                virReportError(VIR_ERR_INTERNAL_ERROR, \
                               _("cannot parse UUID '%s'"), val);
11650 11651 11652 11653 11654 11655 11656
                goto error;
            }
        } else if (STRPREFIX(arg, "-hd") ||
                   STRPREFIX(arg, "-sd") ||
                   STRPREFIX(arg, "-fd") ||
                   STREQ(arg, "-cdrom")) {
            WANT_VALUE();
11657
            if (!(disk = virDomainDiskDefNew()))
11658
                goto error;
11659

11660
            if (STRPREFIX(val, "/dev/")) {
11661
                disk->src->type = VIR_STORAGE_TYPE_BLOCK;
11662
            } else if (STRPREFIX(val, "nbd:")) {
11663 11664
                disk->src->type = VIR_STORAGE_TYPE_NETWORK;
                disk->src->protocol = VIR_STORAGE_NET_PROTOCOL_NBD;
11665
            } else if (STRPREFIX(val, "rbd:")) {
11666 11667
                disk->src->type = VIR_STORAGE_TYPE_NETWORK;
                disk->src->protocol = VIR_STORAGE_NET_PROTOCOL_RBD;
11668
                val += strlen("rbd:");
11669
            } else if (STRPREFIX(val, "gluster")) {
11670 11671
                disk->src->type = VIR_STORAGE_TYPE_NETWORK;
                disk->src->protocol = VIR_STORAGE_NET_PROTOCOL_GLUSTER;
11672
            } else if (STRPREFIX(val, "sheepdog:")) {
11673 11674
                disk->src->type = VIR_STORAGE_TYPE_NETWORK;
                disk->src->protocol = VIR_STORAGE_NET_PROTOCOL_SHEEPDOG;
11675
                val += strlen("sheepdog:");
11676
            } else {
11677
                disk->src->type = VIR_STORAGE_TYPE_FILE;
11678
            }
11679 11680
            if (STREQ(arg, "-cdrom")) {
                disk->device = VIR_DOMAIN_DISK_DEVICE_CDROM;
11681
                if ((ARCH_IS_PPC64(def->os.arch) &&
11682
                    def->os.machine && STRPREFIX(def->os.machine, "pseries")))
11683
                    disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
11684 11685
                if (VIR_STRDUP(disk->dst, "hdc") < 0)
                    goto error;
11686
                disk->src->readonly = true;
11687 11688 11689 11690 11691 11692 11693 11694 11695 11696
            } 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;
11697
                   if ((ARCH_IS_PPC64(def->os.arch) &&
11698
                       def->os.machine && STRPREFIX(def->os.machine, "pseries")))
11699
                       disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
11700
                }
11701 11702
                if (VIR_STRDUP(disk->dst, arg + 1) < 0)
                    goto error;
11703
            }
11704
            if (VIR_STRDUP(disk->src->path, val) < 0)
11705
                goto error;
11706

11707
            if (disk->src->type == VIR_STORAGE_TYPE_NETWORK) {
11708
                char *port;
11709

11710
                switch ((virStorageNetProtocol) disk->src->protocol) {
11711
                case VIR_STORAGE_NET_PROTOCOL_NBD:
11712
                    if (qemuParseNBDString(disk) < 0)
11713 11714
                        goto error;
                    break;
11715
                case VIR_STORAGE_NET_PROTOCOL_RBD:
11716 11717 11718
                    /* old-style CEPH_ARGS env variable is parsed later */
                    if (!ceph_args && qemuParseRBDString(disk) < 0)
                        goto error;
11719
                    break;
11720
                case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
11721
                    /* disk->src must be [vdiname] or [host]:[port]:[vdiname] */
11722
                    port = strchr(disk->src->path, ':');
11723 11724 11725 11726 11727 11728
                    if (port) {
                        char *vdi;

                        *port++ = '\0';
                        vdi = strchr(port, ':');
                        if (!vdi) {
11729 11730
                            virReportError(VIR_ERR_INTERNAL_ERROR,
                                           _("cannot parse sheepdog filename '%s'"), val);
11731 11732 11733
                            goto error;
                        }
                        *vdi++ = '\0';
11734
                        if (VIR_ALLOC(disk->src->hosts) < 0)
11735
                            goto error;
11736 11737 11738
                        disk->src->nhosts = 1;
                        disk->src->hosts->name = disk->src->path;
                        if (VIR_STRDUP(disk->src->hosts->port, port) < 0)
11739
                            goto error;
11740
                        if (VIR_STRDUP(disk->src->path, vdi) < 0)
11741
                            goto error;
11742 11743
                    }
                    break;
11744
                case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
11745 11746 11747
                    if (qemuParseGlusterString(disk) < 0)
                        goto error;

P
Paolo Bonzini 已提交
11748
                    break;
11749
                case VIR_STORAGE_NET_PROTOCOL_ISCSI:
P
Paolo Bonzini 已提交
11750 11751 11752
                    if (qemuParseISCSIString(disk) < 0)
                        goto error;

11753
                    break;
11754 11755 11756 11757 11758 11759
                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:
11760
                case VIR_STORAGE_NET_PROTOCOL_NONE:
11761 11762
                    /* ignored for now */
                    break;
11763 11764 11765
                }
            }

11766
            if (virDomainDiskDefAssignAddress(xmlopt, disk) < 0) {
11767 11768 11769
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Cannot assign address for device name '%s'"),
                               disk->dst);
11770
                goto error;
11771
            }
11772

11773
            if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
11774
                goto error;
11775
        } else if (STREQ(arg, "-no-acpi")) {
J
Ján Tomko 已提交
11776
            def->features[VIR_DOMAIN_FEATURE_ACPI] = VIR_TRISTATE_SWITCH_ABSENT;
11777 11778 11779 11780
        } 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 已提交
11781 11782
        } else if (STREQ(arg, "-enable-kvm")) {
            def->virtType = VIR_DOMAIN_VIRT_KVM;
11783
        } else if (STREQ(arg, "-nographic")) {
11784
            nographics = true;
11785
        } else if (STREQ(arg, "-full-screen")) {
11786
            fullscreen = true;
11787 11788 11789 11790
        } else if (STREQ(arg, "-localtime")) {
            def->clock.offset = VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME;
        } else if (STREQ(arg, "-kernel")) {
            WANT_VALUE();
11791 11792
            if (VIR_STRDUP(def->os.kernel, val) < 0)
                goto error;
11793 11794
        } else if (STREQ(arg, "-bios")) {
            WANT_VALUE();
11795 11796
            if (VIR_ALLOC(def->os.loader) < 0 ||
                VIR_STRDUP(def->os.loader->path, val) < 0)
11797
                goto error;
11798 11799
        } else if (STREQ(arg, "-initrd")) {
            WANT_VALUE();
11800 11801
            if (VIR_STRDUP(def->os.initrd, val) < 0)
                goto error;
11802 11803
        } else if (STREQ(arg, "-append")) {
            WANT_VALUE();
11804 11805
            if (VIR_STRDUP(def->os.cmdline, val) < 0)
                goto error;
O
Olivia Yin 已提交
11806 11807
        } else if (STREQ(arg, "-dtb")) {
            WANT_VALUE();
11808 11809
            if (VIR_STRDUP(def->os.dtb, val) < 0)
                goto error;
11810
        } else if (STREQ(arg, "-boot")) {
11811
            const char *token = NULL;
11812 11813
            WANT_VALUE();

11814
            if (!strchr(val, ',')) {
11815
                qemuParseCommandLineBootDevs(def, val);
11816
            } else {
11817 11818 11819 11820 11821 11822 11823
                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;
11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839
                    } 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;
11840 11841 11842 11843 11844 11845 11846 11847
                    }
                    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++;
                }
            }
11848 11849 11850 11851 11852
        } else if (STREQ(arg, "-name")) {
            char *process;
            WANT_VALUE();
            process = strstr(val, ",process=");
            if (process == NULL) {
11853 11854
                if (VIR_STRDUP(def->name, val) < 0)
                    goto error;
11855
            } else {
11856 11857
                if (VIR_STRNDUP(def->name, val, process - val) < 0)
                    goto error;
11858
            }
11859 11860
            if (STREQ(def->name, ""))
                VIR_FREE(def->name);
11861 11862
        } else if (STREQ(arg, "-M") ||
                   STREQ(arg, "-machine")) {
11863 11864 11865 11866 11867 11868 11869
            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='...' */
11870
            WANT_VALUE();
11871 11872
            if (!(list = virStringSplit(val, ",", 0)))
                goto error;
11873 11874 11875 11876 11877 11878 11879
            param = list[0];

            if (STRPREFIX(param, "type="))
                param += strlen("type=");
            if (!strchr(param, '=')) {
                if (VIR_STRDUP(def->os.machine, param) < 0) {
                    virStringFreeList(list);
11880
                    goto error;
11881 11882 11883 11884 11885 11886 11887 11888
                }
                j++;
            }

            /* handle all remaining "-machine" parameters */
            while ((param = list[j++])) {
                if (STRPREFIX(param, "dump-guest-core=")) {
                    param += strlen("dump-guest-core=");
J
Ján Tomko 已提交
11889
                    def->mem.dump_core = virTristateSwitchTypeFromString(param);
11890
                    if (def->mem.dump_core <= 0)
J
Ján Tomko 已提交
11891
                        def->mem.dump_core = VIR_TRISTATE_SWITCH_ABSENT;
11892 11893 11894 11895
                } else if (STRPREFIX(param, "mem-merge=off")) {
                    def->mem.nosharepages = true;
                } else if (STRPREFIX(param, "accel=kvm")) {
                    def->virtType = VIR_DOMAIN_VIRT_KVM;
J
Ján Tomko 已提交
11896
                    def->features[VIR_DOMAIN_FEATURE_PAE] = VIR_TRISTATE_SWITCH_ON;
11897 11898
                }
            }
11899
            virStringFreeList(list);
11900 11901 11902 11903
        } else if (STREQ(arg, "-serial")) {
            WANT_VALUE();
            if (STRNEQ(val, "none")) {
                virDomainChrDefPtr chr;
11904 11905 11906 11907

                if (!(chr = virDomainChrDefNew()))
                    goto error;

E
Eric Blake 已提交
11908 11909
                if (qemuParseCommandLineChr(&chr->source, val) < 0) {
                    virDomainChrDefFree(chr);
11910
                    goto error;
E
Eric Blake 已提交
11911
                }
11912 11913 11914
                chr->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL;
                chr->target.port = def->nserials;
                if (VIR_APPEND_ELEMENT(def->serials, def->nserials, chr) < 0) {
11915
                    virDomainChrDefFree(chr);
11916
                    goto error;
11917 11918 11919 11920 11921 11922
                }
            }
        } else if (STREQ(arg, "-parallel")) {
            WANT_VALUE();
            if (STRNEQ(val, "none")) {
                virDomainChrDefPtr chr;
11923 11924 11925 11926

                if (!(chr = virDomainChrDefNew()))
                    goto error;

E
Eric Blake 已提交
11927 11928
                if (qemuParseCommandLineChr(&chr->source, val) < 0) {
                    virDomainChrDefFree(chr);
11929
                    goto error;
E
Eric Blake 已提交
11930
                }
11931 11932 11933
                chr->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL;
                chr->target.port = def->nparallels;
                if (VIR_APPEND_ELEMENT(def->parallels, def->nparallels, chr) < 0) {
11934
                    virDomainChrDefFree(chr);
11935
                    goto error;
11936 11937 11938 11939 11940
                }
            }
        } else if (STREQ(arg, "-usbdevice")) {
            WANT_VALUE();
            if (STREQ(val, "tablet") ||
11941 11942
                STREQ(val, "mouse") ||
                STREQ(val, "keyboard")) {
11943 11944
                virDomainInputDefPtr input;
                if (VIR_ALLOC(input) < 0)
11945
                    goto error;
11946 11947 11948
                input->bus = VIR_DOMAIN_INPUT_BUS_USB;
                if (STREQ(val, "tablet"))
                    input->type = VIR_DOMAIN_INPUT_TYPE_TABLET;
11949
                else if (STREQ(val, "mouse"))
11950
                    input->type = VIR_DOMAIN_INPUT_TYPE_MOUSE;
11951 11952 11953 11954
                else
                    input->type = VIR_DOMAIN_INPUT_TYPE_KBD;

                if (VIR_APPEND_ELEMENT(def->inputs, def->ninputs, input) < 0) {
11955
                    virDomainInputDefFree(input);
11956
                    goto error;
11957 11958
                }
            } else if (STRPREFIX(val, "disk:")) {
11959
                if (!(disk = virDomainDiskDefNew()))
11960
                    goto error;
11961
                if (VIR_STRDUP(disk->src->path, val + strlen("disk:")) < 0)
11962
                    goto error;
11963 11964
                if (STRPREFIX(disk->src->path, "/dev/"))
                    disk->src->type = VIR_STORAGE_TYPE_BLOCK;
11965
                else
11966
                    disk->src->type = VIR_STORAGE_TYPE_FILE;
11967 11968
                disk->device = VIR_DOMAIN_DISK_DEVICE_DISK;
                disk->bus = VIR_DOMAIN_DISK_BUS_USB;
J
Ján Tomko 已提交
11969
                disk->removable = VIR_TRISTATE_SWITCH_ABSENT;
11970 11971
                if (VIR_STRDUP(disk->dst, "sda") < 0)
                    goto error;
11972
                if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
11973
                    goto error;
11974 11975 11976 11977
            } else {
                virDomainHostdevDefPtr hostdev;
                if (!(hostdev = qemuParseCommandLineUSB(val)))
                    goto error;
11978
                if (VIR_APPEND_ELEMENT(def->hostdevs, def->nhostdevs, hostdev) < 0) {
11979
                    virDomainHostdevDefFree(hostdev);
11980
                    goto error;
11981 11982 11983 11984 11985 11986
                }
            }
        } else if (STREQ(arg, "-net")) {
            WANT_VALUE();
            if (!STRPREFIX(val, "nic") && STRNEQ(val, "none")) {
                virDomainNetDefPtr net;
11987
                if (!(net = qemuParseCommandLineNet(xmlopt, val, nnics, nics)))
11988
                    goto error;
11989
                if (VIR_APPEND_ELEMENT(def->nets, def->nnets, net) < 0) {
11990
                    virDomainNetDefFree(net);
11991
                    goto error;
11992 11993 11994 11995
                }
            }
        } else if (STREQ(arg, "-drive")) {
            WANT_VALUE();
11996
            if (!(disk = qemuParseCommandLineDisk(xmlopt, val, def,
11997
                                                  nvirtiodisk,
11998
                                                  ceph_args != NULL)))
11999 12000 12001
                goto error;
            if (disk->bus == VIR_DOMAIN_DISK_BUS_VIRTIO)
                nvirtiodisk++;
12002 12003
            if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
                goto error;
12004 12005 12006 12007 12008
        } else if (STREQ(arg, "-pcidevice")) {
            virDomainHostdevDefPtr hostdev;
            WANT_VALUE();
            if (!(hostdev = qemuParseCommandLinePCI(val)))
                goto error;
12009
            if (VIR_APPEND_ELEMENT(def->hostdevs, def->nhostdevs, hostdev) < 0) {
12010
                virDomainHostdevDefFree(hostdev);
12011
                goto error;
12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027
            }
        } 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;
12028 12029
                } else if (STRPREFIX(start, "hda")) {
                    type = VIR_DOMAIN_SOUND_MODEL_ICH6;
12030 12031 12032 12033 12034
                }

                if (type != -1) {
                    virDomainSoundDefPtr snd;
                    if (VIR_ALLOC(snd) < 0)
12035
                        goto error;
12036
                    snd->model = type;
12037
                    if (VIR_APPEND_ELEMENT(def->sounds, def->nsounds, snd) < 0) {
12038
                        VIR_FREE(snd);
12039
                        goto error;
12040 12041 12042 12043 12044 12045 12046
                    }
                }

                start = tmp ? tmp + 1 : NULL;
            }
        } else if (STREQ(arg, "-watchdog")) {
            WANT_VALUE();
12047
            int model = virDomainWatchdogModelTypeFromString(val);
12048 12049 12050 12051

            if (model != -1) {
                virDomainWatchdogDefPtr wd;
                if (VIR_ALLOC(wd) < 0)
12052
                    goto error;
12053 12054 12055 12056 12057 12058
                wd->model = model;
                wd->action = VIR_DOMAIN_WATCHDOG_ACTION_RESET;
                def->watchdog = wd;
            }
        } else if (STREQ(arg, "-watchdog-action") && def->watchdog) {
            WANT_VALUE();
12059
            int action = virDomainWatchdogActionTypeFromString(val);
12060 12061 12062 12063 12064

            if (action != -1)
                def->watchdog->action = action;
        } else if (STREQ(arg, "-bootloader")) {
            WANT_VALUE();
12065 12066
            if (VIR_STRDUP(def->os.bootloader, val) < 0)
                goto error;
12067 12068 12069 12070 12071 12072 12073 12074 12075
        } 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) {
12076 12077
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unknown video adapter type '%s'"), val);
12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088
                    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")) {
12089 12090
            virDomainControllerDefPtr ctldef;
            if (VIR_ALLOC(ctldef) < 0)
12091
                goto error;
12092 12093 12094
            ctldef->type = VIR_DOMAIN_CONTROLLER_TYPE_USB;
            ctldef->idx = 0;
            ctldef->model = -1;
12095 12096
            if (virDomainControllerInsert(def, ctldef) < 0) {
                VIR_FREE(ctldef);
12097
                goto error;
12098
            }
12099 12100
        } else if (STREQ(arg, "-pidfile")) {
            WANT_VALUE();
12101
            if (pidfile)
12102 12103
                if (VIR_STRDUP(*pidfile, val) < 0)
                    goto error;
12104 12105 12106 12107 12108
        } else if (STREQ(arg, "-incoming")) {
            WANT_VALUE();
            /* ignore, used via restore/migrate APIs */
        } else if (STREQ(arg, "-monitor")) {
            WANT_VALUE();
12109 12110 12111 12112
            if (monConfig) {
                virDomainChrSourceDefPtr chr;

                if (VIR_ALLOC(chr) < 0)
12113
                    goto error;
12114

E
Eric Blake 已提交
12115 12116
                if (qemuParseCommandLineChr(chr, val) < 0) {
                    virDomainChrSourceDefFree(chr);
12117
                    goto error;
E
Eric Blake 已提交
12118
                }
12119 12120 12121

                *monConfig = chr;
            }
12122 12123 12124 12125 12126 12127 12128 12129
        } 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=");
12130
            if (STREQ(val, "0")) {
J
Ján Tomko 已提交
12131
                def->pm.s3 = VIR_TRISTATE_BOOL_YES;
12132
            } else if (STREQ(val, "1")) {
J
Ján Tomko 已提交
12133
                def->pm.s3 = VIR_TRISTATE_BOOL_NO;
12134
            } else {
12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146
                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=");
12147
            if (STREQ(val, "0")) {
J
Ján Tomko 已提交
12148
                def->pm.s4 = VIR_TRISTATE_BOOL_YES;
12149
            } else if (STREQ(val, "1")) {
J
Ján Tomko 已提交
12150
                def->pm.s4 = VIR_TRISTATE_BOOL_NO;
12151
            } else {
12152 12153 12154 12155 12156 12157
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("invalid value for disable_s4 parameter: "
                                 "'%s'"), val);
                goto error;
            }

12158 12159 12160 12161 12162
        } else if (STREQ(arg, "-global") &&
                   STRPREFIX(progargv[i + 1], "spapr-nvram.reg=")) {
            WANT_VALUE();

            if (VIR_ALLOC(def->nvram) < 0)
12163
                goto error;
12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174

            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;
            }
12175 12176 12177
        } else if (STREQ(arg, "-S") ||
                   STREQ(arg, "-nodefaults") ||
                   STREQ(arg, "-nodefconfig")) {
12178
            /* ignore, always added by libvirt */
L
Laine Stump 已提交
12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196
        } else if (STREQ(arg, "-device") && progargv[1 + 1]) {
            const char *opts = progargv[i + 1];

            /* NB: we can't do WANT_VALUE until we're sure that we
             * recognize the device, otherwise the !argRecognized
             * logic below will be messed up
             */

            if (STRPREFIX(opts, "virtio-balloon")) {
                WANT_VALUE();
                if (VIR_ALLOC(def->memballoon) < 0)
                    goto error;
                def->memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO;
            } else {
                /* add in new -device's here */

                argRecognized = false;
            }
12197
        } else {
L
Laine Stump 已提交
12198 12199 12200 12201
            argRecognized = false;
        }

        if (!argRecognized) {
12202
            char *tmp = NULL;
12203 12204 12205 12206 12207
            /* 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);
12208 12209 12210
            if (VIR_STRDUP(tmp, arg) < 0 ||
                VIR_APPEND_ELEMENT(cmd->args, cmd->num_args, tmp) < 0) {
                VIR_FREE(tmp);
12211
                goto error;
12212
            }
12213 12214 12215 12216
        }
    }

#undef WANT_VALUE
12217 12218 12219
    if (def->ndisks > 0 && ceph_args) {
        char *hosts, *port, *saveptr = NULL, *token;
        virDomainDiskDefPtr first_rbd_disk = NULL;
12220
        for (i = 0; i < def->ndisks; i++) {
12221 12222
            if (def->disks[i]->src->type == VIR_STORAGE_TYPE_NETWORK &&
                def->disks[i]->src->protocol == VIR_STORAGE_NET_PROTOCOL_RBD) {
12223 12224
                first_rbd_disk = def->disks[i];
                break;
12225
            }
12226
        }
12227

12228
        if (!first_rbd_disk) {
12229 12230
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("CEPH_ARGS was set without an rbd disk"));
12231 12232
            goto error;
        }
12233

12234 12235
        /* CEPH_ARGS should be: -m host1[:port1][,host2[:port2]]... */
        if (!STRPREFIX(ceph_args, "-m ")) {
12236 12237
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not parse CEPH_ARGS '%s'"), ceph_args);
12238 12239
            goto error;
        }
12240 12241
        if (VIR_STRDUP(hosts, strchr(ceph_args, ' ') + 1) < 0)
            goto error;
12242
        first_rbd_disk->src->nhosts = 0;
12243 12244
        token = strtok_r(hosts, ",", &saveptr);
        while (token != NULL) {
12245 12246
            if (VIR_REALLOC_N(first_rbd_disk->src->hosts,
                              first_rbd_disk->src->nhosts + 1) < 0) {
12247
                VIR_FREE(hosts);
12248
                goto error;
12249 12250 12251 12252
            }
            port = strchr(token, ':');
            if (port) {
                *port++ = '\0';
12253
                if (VIR_STRDUP(port, port) < 0) {
12254
                    VIR_FREE(hosts);
12255
                    goto error;
12256 12257
                }
            }
12258 12259
            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,
12260
                           token) < 0) {
12261
                VIR_FREE(hosts);
12262
                goto error;
12263
            }
12264 12265
            first_rbd_disk->src->hosts[first_rbd_disk->src->nhosts].transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
            first_rbd_disk->src->hosts[first_rbd_disk->src->nhosts].socket = NULL;
12266

12267
            first_rbd_disk->src->nhosts++;
12268 12269 12270 12271
            token = strtok_r(NULL, ",", &saveptr);
        }
        VIR_FREE(hosts);

12272
        if (first_rbd_disk->src->nhosts == 0) {
12273 12274
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("found no rbd hosts in CEPH_ARGS '%s'"), ceph_args);
12275
            goto error;
12276 12277 12278
        }
    }

12279 12280
    if (!def->os.machine) {
        const char *defaultMachine =
12281
                        virCapabilitiesDefaultGuestMachine(qemuCaps,
12282 12283 12284 12285
                                                           def->os.type,
                                                           def->os.arch,
                                                           virDomainVirtTypeToString(def->virtType));
        if (defaultMachine != NULL)
12286 12287
            if (VIR_STRDUP(def->os.machine, defaultMachine) < 0)
                goto error;
12288 12289
    }

12290 12291 12292 12293 12294
    if (!nographics && def->ngraphics == 0) {
        virDomainGraphicsDefPtr sdl;
        const char *display = qemuFindEnv(progenv, "DISPLAY");
        const char *xauth = qemuFindEnv(progenv, "XAUTHORITY");
        if (VIR_ALLOC(sdl) < 0)
12295
            goto error;
12296 12297
        sdl->type = VIR_DOMAIN_GRAPHICS_TYPE_SDL;
        sdl->data.sdl.fullscreen = fullscreen;
12298
        if (VIR_STRDUP(sdl->data.sdl.display, display) < 0) {
12299
            VIR_FREE(sdl);
12300
            goto error;
12301
        }
12302
        if (VIR_STRDUP(sdl->data.sdl.xauth, xauth) < 0) {
12303
            VIR_FREE(sdl);
12304
            goto error;
12305 12306
        }

12307
        if (VIR_APPEND_ELEMENT(def->graphics, def->ngraphics, sdl) < 0) {
12308
            virDomainGraphicsDefFree(sdl);
12309
            goto error;
12310 12311 12312 12313 12314 12315
        }
    }

    if (def->ngraphics) {
        virDomainVideoDefPtr vid;
        if (VIR_ALLOC(vid) < 0)
12316
            goto error;
12317 12318 12319 12320 12321
        if (def->virtType == VIR_DOMAIN_VIRT_XEN)
            vid->type = VIR_DOMAIN_VIDEO_TYPE_XEN;
        else
            vid->type = video;
        vid->vram = virDomainVideoDefaultRAM(def, vid->type);
12322 12323
        if (vid->type == VIR_DOMAIN_VIDEO_TYPE_QXL) {
            vid->ram = virDomainVideoDefaultRAM(def, vid->type);
12324
            vid->vgamem = QEMU_QXL_VGAMEM_DEFAULT;
12325 12326 12327 12328
        } else {
            vid->ram = 0;
            vid->vgamem = 0;
        }
12329 12330
        vid->heads = 1;

12331
        if (VIR_APPEND_ELEMENT(def->videos, def->nvideos, vid) < 0) {
12332
            virDomainVideoDefFree(vid);
12333
            goto error;
12334 12335 12336 12337 12338 12339 12340 12341 12342
        }
    }

    /*
     * having a balloon is the default, define one with type="none" to avoid it
     */
    if (!def->memballoon) {
        virDomainMemballoonDefPtr memballoon;
        if (VIR_ALLOC(memballoon) < 0)
12343
            goto error;
L
Laine Stump 已提交
12344
        memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_NONE;
12345 12346 12347 12348 12349 12350 12351 12352 12353

        def->memballoon = memballoon;
    }

    VIR_FREE(nics);

    if (virDomainDefAddImplicitControllers(def) < 0)
        goto error;

12354 12355 12356
    if (virDomainDefPostParse(def, qemuCaps, xmlopt) < 0)
        goto error;

12357
    if (cmd->num_args || cmd->num_env) {
12358
        def->ns = *virDomainXMLOptionGetNamespace(xmlopt);
12359 12360 12361
        def->namespaceData = cmd;
    }
    else
12362
        qemuDomainCmdlineDefFree(cmd);
12363 12364 12365

    return def;

12366
 error:
E
Eric Blake 已提交
12367
    virDomainDiskDefFree(disk);
12368
    qemuDomainCmdlineDefFree(cmd);
12369 12370
    virDomainDefFree(def);
    VIR_FREE(nics);
12371 12372 12373 12374 12375 12376
    if (monConfig) {
        virDomainChrSourceDefFree(*monConfig);
        *monConfig = NULL;
    }
    if (pidfile)
        VIR_FREE(*pidfile);
12377 12378 12379 12380
    return NULL;
}


12381
virDomainDefPtr qemuParseCommandLineString(virCapsPtr qemuCaps,
12382
                                           virDomainXMLOptionPtr xmlopt,
12383 12384 12385 12386
                                           const char *args,
                                           char **pidfile,
                                           virDomainChrSourceDefPtr *monConfig,
                                           bool *monJSON)
12387
{
E
Eric Blake 已提交
12388 12389
    char **progenv = NULL;
    char **progargv = NULL;
12390 12391 12392 12393 12394
    virDomainDefPtr def = NULL;

    if (qemuStringToArgvEnv(args, &progenv, &progargv) < 0)
        goto cleanup;

12395
    def = qemuParseCommandLine(qemuCaps, xmlopt, progenv, progargv,
12396
                               pidfile, monConfig, monJSON);
12397

12398
 cleanup:
E
Eric Blake 已提交
12399 12400
    virStringFreeList(progargv);
    virStringFreeList(progenv);
12401 12402 12403

    return def;
}
12404 12405


12406
static int qemuParseProcFileStrings(int pid_value,
12407
                                    const char *name,
E
Eric Blake 已提交
12408
                                    char ***list)
12409 12410 12411 12412 12413 12414 12415
{
    char *path = NULL;
    int ret = -1;
    char *data = NULL;
    ssize_t len;
    char *tmp;
    size_t nstr = 0;
12416
    char **str = NULL;
12417

12418
    if (virAsprintf(&path, "/proc/%d/%s", pid_value, name) < 0)
12419 12420 12421 12422 12423 12424 12425
        goto cleanup;

    if ((len = virFileReadAll(path, 1024*128, &data)) < 0)
        goto cleanup;

    tmp = data;
    while (tmp < (data + len)) {
12426
        if (VIR_EXPAND_N(str, nstr, 1) < 0)
12427 12428
            goto cleanup;

12429
        if (VIR_STRDUP(str[nstr-1], tmp) < 0)
12430 12431 12432 12433 12434 12435 12436
            goto cleanup;
        /* Skip arg */
        tmp += strlen(tmp);
        /* Skip \0 separator */
        tmp++;
    }

12437
    if (VIR_EXPAND_N(str, nstr, 1) < 0)
12438 12439 12440 12441 12442
        goto cleanup;

    str[nstr-1] = NULL;

    ret = nstr-1;
E
Eric Blake 已提交
12443
    *list = str;
12444

12445
 cleanup:
E
Eric Blake 已提交
12446 12447
    if (ret < 0)
        virStringFreeList(str);
12448 12449 12450 12451 12452
    VIR_FREE(data);
    VIR_FREE(path);
    return ret;
}

12453
virDomainDefPtr qemuParseCommandLinePid(virCapsPtr qemuCaps,
12454
                                        virDomainXMLOptionPtr xmlopt,
12455
                                        pid_t pid,
12456 12457 12458 12459 12460
                                        char **pidfile,
                                        virDomainChrSourceDefPtr *monConfig,
                                        bool *monJSON)
{
    virDomainDefPtr def = NULL;
E
Eric Blake 已提交
12461 12462
    char **progargv = NULL;
    char **progenv = NULL;
12463 12464 12465
    char *exepath = NULL;
    char *emulator;

12466 12467 12468 12469
    /* 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 ||
12470 12471 12472
        qemuParseProcFileStrings(pid, "environ", &progenv) < 0)
        goto cleanup;

12473
    if (!(def = qemuParseCommandLine(qemuCaps, xmlopt, progenv, progargv,
12474 12475 12476
                                     pidfile, monConfig, monJSON)))
        goto cleanup;

12477
    if (virAsprintf(&exepath, "/proc/%d/exe", (int) pid) < 0)
12478 12479 12480 12481 12482
        goto cleanup;

    if (virFileResolveLink(exepath, &emulator) < 0) {
        virReportSystemError(errno,
                             _("Unable to resolve %s for pid %u"),
12483
                             exepath, (int) pid);
12484 12485 12486 12487 12488
        goto cleanup;
    }
    VIR_FREE(def->emulator);
    def->emulator = emulator;

12489
 cleanup:
12490
    VIR_FREE(exepath);
E
Eric Blake 已提交
12491 12492
    virStringFreeList(progargv);
    virStringFreeList(progenv);
12493 12494
    return def;
}