qemu_command.c 417.8 KB
Newer Older
1 2 3
/*
 * qemu_command.c: QEMU command generation
 *
M
Martin Kletzander 已提交
4
 * Copyright (C) 2006-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

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

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

#define VIR_FROM_THIS VIR_FROM_QEMU

65 66
VIR_LOG_INIT("qemu.qemu_command");

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

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


VIR_ENUM_DECL(qemuDiskCacheV1)
VIR_ENUM_DECL(qemuDiskCacheV2)

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

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

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

114 115 116 117 118 119 120 121 122 123
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");

124 125 126 127 128 129
VIR_ENUM_DECL(qemuSoundCodec)

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

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

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

153 154 155 156 157
VIR_ENUM_DECL(qemuNumaPolicy)
VIR_ENUM_IMPL(qemuNumaPolicy, VIR_DOMAIN_NUMATUNE_MEM_LAST,
              "bind",
              "preferred",
              "interleave");
158

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

181
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNET_HDR) &&
182 183 184
        net->model && STREQ(net->model, "virtio"))
        vnet_hdr = 1;

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

200
    virObjectUnref(cfg);
201 202 203 204
    return rc;
}


205 206 207 208 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
/**
 * 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]);
244 245
    virCommandPassFD(cmd, pair[1],
                     VIR_COMMAND_PASS_FD_CLOSE_PARENT);
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
    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 ||
265
        virCommandWait(cmd, NULL) < 0) {
266 267 268 269
        VIR_FORCE_CLOSE(*tapfd);
        *tapfd = -1;
    }

270
 cleanup:
271 272 273 274 275
    virCommandFree(cmd);
    VIR_FORCE_CLOSE(pair[0]);
    return *tapfd < 0 ? -1 : 0;
}

276
int
277 278
qemuNetworkIfaceConnect(virDomainDefPtr def,
                        virConnectPtr conn,
279
                        virQEMUDriverPtr driver,
280
                        virDomainNetDefPtr net,
281 282 283
                        virQEMUCapsPtr qemuCaps,
                        int *tapfd,
                        int *tapfdSize)
284 285
{
    char *brname = NULL;
286
    int ret = -1;
287
    unsigned int tap_create_flags = VIR_NETDEV_TAP_CREATE_IFUP;
E
Eric Blake 已提交
288
    bool template_ifname = false;
289
    int actualType = virDomainNetGetActualType(net);
290
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
291

292
    if (actualType == VIR_DOMAIN_NET_TYPE_NETWORK) {
293
        bool fail = false;
294 295 296 297
        virErrorPtr errobj;
        virNetworkPtr network = virNetworkLookupByName(conn,
                                                       net->data.network.name);
        if (!network)
298
            return ret;
299

300 301
        if (!(brname = virNetworkGetBridgeName(network)))
           fail = true;
302 303 304 305 306 307 308 309

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

        if (fail)
310
            return ret;
311

312
    } else if (actualType == VIR_DOMAIN_NET_TYPE_BRIDGE) {
313
        if (VIR_STRDUP(brname, virDomainNetGetActualBridgeName(net)) < 0)
314
            return ret;
315
    } else {
316 317 318
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Network type %d is not supported"),
                       virDomainNetGetActualType(net));
319
        return ret;
320 321 322
    }

    if (!net->ifname ||
E
Eric Blake 已提交
323
        STRPREFIX(net->ifname, VIR_NET_GENERATED_PREFIX) ||
324 325
        strchr(net->ifname, '%')) {
        VIR_FREE(net->ifname);
326
        if (VIR_STRDUP(net->ifname, VIR_NET_GENERATED_PREFIX "%d") < 0)
327
            goto cleanup;
328
        /* avoid exposing vnet%d in getXMLDesc or error outputs */
E
Eric Blake 已提交
329
        template_ifname = true;
330 331
    }

332
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNET_HDR) &&
333 334 335
        net->model && STREQ(net->model, "virtio")) {
        tap_create_flags |= VIR_NETDEV_TAP_CREATE_VNET_HDR;
    }
336

337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
    if (cfg->privileged) {
        if (virNetDevTapCreateInBridgePort(brname, &net->ifname, &net->mac,
                                           def->uuid, tapfd, *tapfdSize,
                                           virDomainNetGetActualVirtPortProfile(net),
                                           virDomainNetGetActualVlan(net),
                                           tap_create_flags) < 0) {
            virDomainAuditNetDevice(def, net, "/dev/net/tun", false);
            goto cleanup;
        }
    } else {
        if (qemuCreateInBridgePortWithHelper(cfg, brname,
                                             &net->ifname,
                                             tapfd, tap_create_flags) < 0) {
            virDomainAuditNetDevice(def, net, "/dev/net/tun", false);
            goto cleanup;
        }
        /* qemuCreateInBridgePortWithHelper can only create a single FD */
        if (*tapfdSize > 1) {
            VIR_WARN("Ignoring multiqueue network request");
            *tapfdSize = 1;
        }
358 359
    }

360 361 362
    virDomainAuditNetDevice(def, net, "/dev/net/tun", true);

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

368
    if (virNetDevBandwidthSet(net->ifname,
369
                              virDomainNetGetActualBandwidth(net),
370
                              false) < 0)
371 372
        goto cleanup;

373
    if (net->filter &&
374 375
        virDomainConfNWFilterInstantiate(conn, def->uuid, net) < 0) {
        goto cleanup;
376 377
    }

378 379
    ret = 0;

380
 cleanup:
381
    if (ret < 0) {
382
        size_t i;
383
        for (i = 0; i < *tapfdSize && tapfd[i] >= 0; i++)
384 385 386 387
            VIR_FORCE_CLOSE(tapfd[i]);
        if (template_ifname)
            VIR_FREE(net->ifname);
    }
388
    VIR_FREE(brname);
389
    virObjectUnref(cfg);
390

391
    return ret;
392 393
}

394
static bool
395 396 397
qemuDomainSupportsNicdev(virDomainDefPtr def,
                         virQEMUCapsPtr qemuCaps,
                         virDomainNetDefPtr net)
398 399 400 401
{
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
        return false;

402
    /* non-virtio ARM nics require legacy -net nic */
403 404
    if (((def->os.arch == VIR_ARCH_ARMV7L) ||
        (def->os.arch == VIR_ARCH_AARCH64)) &&
405
        net->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
406 407 408 409 410 411
        return false;

    return true;
}

static bool
412 413 414
qemuDomainSupportsNetdev(virDomainDefPtr def,
                         virQEMUCapsPtr qemuCaps,
                         virDomainNetDefPtr net)
415
{
416
    if (!qemuDomainSupportsNicdev(def, qemuCaps, net))
417 418 419
        return false;
    return virQEMUCapsGet(qemuCaps, QEMU_CAPS_NETDEV);
}
420

421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
/**
 * 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
 */
436
int
437 438
qemuOpenVhostNet(virDomainDefPtr def,
                 virDomainNetDefPtr net,
439
                 virQEMUCapsPtr qemuCaps,
440 441
                 int *vhostfd,
                 int *vhostfdSize)
442
{
443
    size_t i;
444

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

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

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

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

483 484 485 486 487 488 489 490 491 492 493
        /* If the config says explicitly to use vhost and we couldn't open it,
         * report an error.
         */
        if (vhostfd[i] < 0) {
            virDomainAuditNetDevice(def, net, "/dev/vhost-net", false);
            if (net->driver.virtio.name == VIR_DOMAIN_NET_BACKEND_TYPE_VHOST) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("vhost-net was requested for an interface, "
                                       "but is unavailable"));
                goto error;
            }
494
            VIR_WARN("Unable to open vhost-net. Opened so far %zu, requested %d",
495 496 497
                     i, *vhostfdSize);
            *vhostfdSize = i;
            break;
498
        }
499
    }
500
    virDomainAuditNetDevice(def, net, "/dev/vhost-net", *vhostfdSize);
501
    return 0;
502

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

    return -1;
508 509
}

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

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

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

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

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


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

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


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

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

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

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

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

    return 0;
}

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

    return 0;
721
}
722 723

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

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

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

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

    return 0;
}


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


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

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

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


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

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

    return 0;
}


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

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


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

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

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

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

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

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

    return idx;
}


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

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

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

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

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

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

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

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

    return 0;
}

1046

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

1058
    for (i = 0; i < def->ndisks; i++) {
1059 1060 1061 1062 1063
        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;
    }

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

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

1081 1082 1083 1084
    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;
1085

1086 1087 1088 1089 1090
    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;
    }
1091 1092
}

1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103

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

    if (STREQLEN(def->os.machine, "s390-ccw", 8) &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_CCW)) {
1111
        qemuDomainPrimeVirtioDeviceAddresses(
1112 1113
            def, VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW);

J
Ján Tomko 已提交
1114
        if (!(addrs = virDomainCCWAddressSetCreate()))
1115 1116
            goto cleanup;

J
Ján Tomko 已提交
1117
        if (virDomainDeviceInfoIterate(def, virDomainCCWAddressValidate,
1118 1119 1120
                                       addrs) < 0)
            goto cleanup;

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

    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 已提交
1134
            virDomainCCWAddressSetFree(priv->ccwaddrs);
1135 1136 1137 1138 1139 1140 1141 1142 1143
            priv->persistentAddrs = 1;
            priv->ccwaddrs = addrs;
            addrs = NULL;
        } else {
            priv->persistentAddrs = 0;
        }
    }
    ret = 0;

1144
 cleanup:
J
Ján Tomko 已提交
1145
    virDomainCCWAddressSetFree(addrs);
1146 1147

    return ret;
1148
}
1149

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

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

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

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

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

    return 0;
}

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

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

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

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

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

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

    if (def->nvram) {
        if (def->os.arch == VIR_ARCH_PPC64 &&
            STREQ(def->os.machine, "pseries"))
            def->nvram->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO;
        if (qemuAssignSpaprVIOAddress(def, &def->nvram->info,
                                      VIO_ADDR_NVRAM) < 0)
1267
            goto cleanup;
1268 1269 1270 1271
    }

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

1272
    ret = 0;
1273

1274
 cleanup:
1275
    return ret;
1276
}
1277 1278


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

1293 1294 1295 1296 1297 1298 1299
    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.
        */
1300
        return 0;
1301
    }
1302

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

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

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

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

1382 1383 1384 1385 1386 1387
    /* 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().
1388 1389 1390 1391 1392
     */

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

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

1421
    entireSlot = (addr->function == 0 &&
J
Ján Tomko 已提交
1422
                  addr->multi != VIR_TRISTATE_SWITCH_ON);
1423

1424 1425
    if (virDomainPCIAddressReserveAddr(addrs, addr, flags,
                                       entireSlot, true) < 0)
1426
        goto cleanup;
1427

1428
    ret = 0;
1429
 cleanup:
1430
    return ret;
1431 1432
}

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

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

    return false;
}
1444

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

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

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

        nbuses = max_idx + 1;

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

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

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

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

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

1506
        if (!(addrs = qemuDomainPCIAddressSetCreate(def, nbuses, false)))
1507 1508
            goto cleanup;

1509 1510 1511 1512
        if (qemuDomainSupportsPCI(def)) {
            if (qemuAssignDevicePCISlots(def, qemuCaps, addrs) < 0)
                goto cleanup;
        }
1513 1514
    }

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

1528 1529
    ret = 0;

1530
 cleanup:
1531
    virDomainPCIAddressSetFree(addrs);
1532 1533 1534 1535

    return ret;
}

1536
int qemuDomainAssignAddresses(virDomainDefPtr def,
1537
                              virQEMUCapsPtr qemuCaps,
1538
                              virDomainObjPtr obj)
1539
{
1540 1541
    int rc;

1542
    rc = qemuDomainAssignSpaprVIOAddresses(def, qemuCaps);
1543 1544 1545
    if (rc)
        return rc;

1546 1547 1548
    rc = qemuDomainAssignS390Addresses(def, qemuCaps, obj);
    if (rc)
        return rc;
1549

1550 1551 1552 1553
    rc = qemuDomainAssignARMVirtioMMIOAddresses(def, qemuCaps);
    if (rc)
        return rc;

1554
    return qemuDomainAssignPCIAddresses(def, qemuCaps, obj);
1555
}
1556

1557

1558
virDomainPCIAddressSetPtr
1559 1560 1561
qemuDomainPCIAddressSetCreate(virDomainDefPtr def,
                              unsigned int nbuses,
                              bool dryRun)
1562
{
1563
    virDomainPCIAddressSetPtr addrs;
1564
    size_t i;
1565

1566 1567
    if ((addrs = virDomainPCIAddressSetAlloc(nbuses)) == NULL)
        return NULL;
1568

1569
    addrs->nbuses = nbuses;
1570
    addrs->dryRun = dryRun;
1571

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

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

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

1605 1606 1607 1608 1609
    if (virDomainDeviceInfoIterate(def, qemuCollectPCIAddress, addrs) < 0)
        goto error;

    return addrs;

1610
 error:
1611
    virDomainPCIAddressSetFree(addrs);
1612 1613 1614
    return NULL;
}

1615

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


1641 1642 1643 1644 1645 1646 1647
#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))

1648 1649 1650 1651

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

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

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

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

1727
            if (!(addrStr = virDomainPCIAddressAsString(&tmp_addr)))
1728
                goto cleanup;
1729 1730
            if (!virDomainPCIAddressValidate(addrs, &tmp_addr,
                                             addrStr, flags, false))
1731
                goto cleanup;
1732

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

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


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


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


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

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

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

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

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

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

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

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


1953 1954 1955 1956 1957 1958 1959 1960 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
/*
 * 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,
1988
                         virDomainPCIAddressSetPtr addrs)
1989 1990
{
    size_t i, j;
1991
    virDomainPCIConnectFlags flags;
1992 1993 1994 1995 1996 1997 1998 1999 2000 2001
    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;
    }
2002

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

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

2042
    flags = VIR_PCI_CONNECT_HOTPLUGGABLE | VIR_PCI_CONNECT_TYPE_PCI;
2043

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

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

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

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

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

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

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

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

2146 2147
                addr.bus = tmp_addr.bus;
                addr.slot = tmp_addr.slot;
2148 2149 2150 2151

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

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

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

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

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

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

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

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

2217
    /* VirtIO RNG */
2218 2219 2220 2221 2222
    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;

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

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

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

    return 0;

2276
 error:
2277 2278 2279
    return -1;
}

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

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

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

2302
        if (!(devStr = virDomainPCIAddressAsString(&info->addr.pci)))
2303 2304 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
            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;
        }

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

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

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

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

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

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

#define QEMU_SERIAL_PARAM_ACCEPTED_CHARS \
  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_"

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

    return 0;
}

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

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

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

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

    if (encoded) {
        char *base64 = NULL;

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

2523
 cleanup:
2524 2525 2526
    virObjectUnref(sec);
    return secret;
}
2527

2528 2529 2530 2531

static int qemuAddRBDHost(virDomainDiskDefPtr disk, char *hostport)
{
    char *port;
2532 2533
    size_t skip;
    char **parts;
2534

2535
    if (VIR_EXPAND_N(disk->src->hosts, disk->src->nhosts, 1) < 0)
2536
        return -1;
2537

2538 2539 2540 2541 2542 2543 2544 2545 2546
    if ((port = strchr(hostport, ']'))) {
        /* ipv6, strip brackets */
        hostport += 1;
        skip = 3;
    } else {
        port = strstr(hostport, "\\:");
        skip = 2;
    }

2547 2548
    if (port) {
        *port = '\0';
2549
        port += skip;
2550
        if (VIR_STRDUP(disk->src->hosts[disk->src->nhosts - 1].port, port) < 0)
2551
            goto error;
2552
    } else {
2553
        if (VIR_STRDUP(disk->src->hosts[disk->src->nhosts - 1].port, "6789") < 0)
2554
            goto error;
2555
    }
2556 2557 2558

    parts = virStringSplit(hostport, "\\:", 0);
    if (!parts)
2559
        goto error;
2560
    disk->src->hosts[disk->src->nhosts-1].name = virStringJoin((const char **)parts, ":");
2561
    virStringFreeList(parts);
2562
    if (!disk->src->hosts[disk->src->nhosts-1].name)
2563
        goto error;
2564

2565 2566
    disk->src->hosts[disk->src->nhosts-1].transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
    disk->src->hosts[disk->src->nhosts-1].socket = NULL;
2567

2568 2569
    return 0;

2570
 error:
2571 2572
    VIR_FREE(disk->src->hosts[disk->src->nhosts-1].port);
    VIR_FREE(disk->src->hosts[disk->src->nhosts-1].name);
2573 2574 2575 2576 2577 2578 2579 2580
    return -1;
}

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

2583
    p = strchr(disk->src->path, ':');
2584
    if (p) {
2585 2586
        if (VIR_STRDUP(options, p + 1) < 0)
            goto error;
2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610
        *p = '\0';
    }

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

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

2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628
        if (STRPREFIX(p, "id=")) {
            const char *secrettype;
            /* formulate authdef for disk->src->auth */
            if (VIR_ALLOC(authdef) < 0)
                goto error;

            if (VIR_STRDUP(authdef->username, p + strlen("id=")) < 0)
                goto error;
            secrettype = virSecretUsageTypeToString(VIR_SECRET_USAGE_TYPE_CEPH);
            if (VIR_STRDUP(authdef->secrettype, secrettype) < 0)
                goto error;
            disk->src->auth = authdef;
            authdef = NULL;

            /* Cannot formulate a secretType (eg, usage or uuid) given
             * what is provided.
             */
        }
2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642
        if (STRPREFIX(p, "mon_host=")) {
            char *h, *sep;

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

2646 2647 2648 2649 2650 2651
                h = sep;
            }
        }

        p = next;
    }
2652
    VIR_FREE(options);
2653 2654
    return 0;

2655
 error:
2656
    VIR_FREE(options);
2657
    virStorageAuthDefFree(authdef);
2658 2659
    return -1;
}
2660

2661
static int
P
Paolo Bonzini 已提交
2662 2663
qemuParseDriveURIString(virDomainDiskDefPtr def, virURIPtr uri,
                        const char *scheme)
2664 2665 2666 2667 2668
{
    int ret = -1;
    char *transp = NULL;
    char *sock = NULL;
    char *volimg = NULL;
2669
    char *secret = NULL;
2670
    virStorageAuthDefPtr authdef = NULL;
2671

2672
    if (VIR_ALLOC(def->src->hosts) < 0)
2673
        goto error;
2674

P
Paolo Bonzini 已提交
2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685
    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) {
2686
        def->src->hosts->transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
P
Paolo Bonzini 已提交
2687
    } else {
2688 2689
        def->src->hosts->transport = virStorageNetHostTransportTypeFromString(transp);
        if (def->src->hosts->transport < 0) {
2690
            virReportError(VIR_ERR_INTERNAL_ERROR,
P
Paolo Bonzini 已提交
2691
                           _("Invalid %s transport type '%s'"), scheme, transp);
2692 2693 2694
            goto error;
        }
    }
2695
    def->src->nhosts = 0; /* set to 1 once everything succeeds */
2696

2697 2698
    if (def->src->hosts->transport != VIR_STORAGE_NET_HOST_TRANS_UNIX) {
        if (VIR_STRDUP(def->src->hosts->name, uri->server) < 0)
2699
            goto error;
2700

2701
        if (virAsprintf(&def->src->hosts->port, "%d", uri->port) < 0)
2702
            goto error;
2703
    } else {
2704 2705
        def->src->hosts->name = NULL;
        def->src->hosts->port = 0;
2706 2707 2708
        if (uri->query) {
            if (STRPREFIX(uri->query, "socket=")) {
                sock = strchr(uri->query, '=') + 1;
2709
                if (VIR_STRDUP(def->src->hosts->socket, sock) < 0)
2710
                    goto error;
2711 2712 2713 2714 2715 2716 2717
            } else {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Invalid query parameter '%s'"), uri->query);
                goto error;
            }
        }
    }
P
Paolo Bonzini 已提交
2718 2719
    if (uri->path) {
        volimg = uri->path + 1; /* skip the prefix slash */
2720 2721
        VIR_FREE(def->src->path);
        if (VIR_STRDUP(def->src->path, volimg) < 0)
2722
            goto error;
P
Paolo Bonzini 已提交
2723
    } else {
2724
        VIR_FREE(def->src->path);
P
Paolo Bonzini 已提交
2725
    }
2726

2727
    if (uri->user) {
2728 2729 2730 2731 2732
        const char *secrettype;
        /* formulate authdef for disk->src->auth */
        if (VIR_ALLOC(authdef) < 0)
            goto error;

2733 2734 2735 2736
        secret = strchr(uri->user, ':');
        if (secret)
            *secret = '\0';

2737
        if (VIR_STRDUP(authdef->username, uri->user) < 0)
2738
            goto error;
2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750
        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.
         */
2751 2752
    }

2753
    def->src->nhosts = 1;
2754 2755
    ret = 0;

2756
 cleanup:
2757 2758 2759 2760
    virURIFree(uri);

    return ret;

2761
 error:
2762 2763
    virStorageNetHostDefClear(def->src->hosts);
    VIR_FREE(def->src->hosts);
2764
    virStorageAuthDefFree(authdef);
2765 2766 2767
    goto cleanup;
}

P
Paolo Bonzini 已提交
2768 2769 2770 2771 2772
static int
qemuParseGlusterString(virDomainDiskDefPtr def)
{
    virURIPtr uri = NULL;

2773
    if (!(uri = virURIParse(def->src->path)))
P
Paolo Bonzini 已提交
2774 2775 2776 2777 2778
        return -1;

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

P
Paolo Bonzini 已提交
2779 2780 2781 2782 2783 2784 2785
static int
qemuParseISCSIString(virDomainDiskDefPtr def)
{
    virURIPtr uri = NULL;
    char *slash;
    unsigned lun;

2786
    if (!(uri = virURIParse(def->src->path)))
P
Paolo Bonzini 已提交
2787 2788 2789 2790 2791 2792 2793 2794 2795
        return -1;

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

        if (slash[1] == '\0')
            *slash = '\0';
        else if (virStrToLong_ui(slash + 1, NULL, 10, &lun) == -1) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
2796
                           _("invalid name '%s' for iSCSI disk"),
2797
                           def->src->path);
2798
            virURIFree(uri);
P
Paolo Bonzini 已提交
2799 2800 2801 2802 2803 2804 2805
            return -1;
        }
    }

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

2806 2807 2808
static int
qemuParseNBDString(virDomainDiskDefPtr disk)
{
2809
    virStorageNetHostDefPtr h = NULL;
2810
    char *host, *port;
P
Paolo Bonzini 已提交
2811
    char *src;
2812

P
Paolo Bonzini 已提交
2813 2814
    virURIPtr uri = NULL;

2815 2816
    if (strstr(disk->src->path, "://")) {
        if (!(uri = virURIParse(disk->src->path)))
2817 2818
            return -1;
        return qemuParseDriveURIString(disk, uri, "nbd");
P
Paolo Bonzini 已提交
2819 2820
    }

2821
    if (VIR_ALLOC(h) < 0)
2822
        goto error;
2823

2824
    host = disk->src->path + strlen("nbd:");
2825 2826 2827 2828
    if (STRPREFIX(host, "unix:/")) {
        src = strchr(host + strlen("unix:"), ':');
        if (src)
            *src++ = '\0';
2829

2830
        h->transport = VIR_STORAGE_NET_HOST_TRANS_UNIX;
2831 2832
        if (VIR_STRDUP(h->socket, host + strlen("unix:")) < 0)
            goto error;
2833 2834 2835 2836
    } else {
        port = strchr(host, ':');
        if (!port) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
2837
                           _("cannot parse nbd filename '%s'"), disk->src->path);
2838 2839
            goto error;
        }
2840

2841
        *port++ = '\0';
2842 2843
        if (VIR_STRDUP(h->name, host) < 0)
            goto error;
P
Paolo Bonzini 已提交
2844

2845 2846 2847 2848
        src = strchr(port, ':');
        if (src)
            *src++ = '\0';

2849 2850
        if (VIR_STRDUP(h->port, port) < 0)
            goto error;
2851
    }
2852

P
Paolo Bonzini 已提交
2853
    if (src && STRPREFIX(src, "exportname=")) {
2854 2855
        if (VIR_STRDUP(src, strchr(src, '=') + 1) < 0)
            goto error;
P
Paolo Bonzini 已提交
2856 2857 2858 2859
    } else {
        src = NULL;
    }

2860 2861 2862 2863
    VIR_FREE(disk->src->path);
    disk->src->path = src;
    disk->src->nhosts = 1;
    disk->src->hosts = h;
2864 2865
    return 0;

2866
 error:
2867
    virStorageNetHostDefClear(h);
2868 2869 2870 2871
    VIR_FREE(h);
    return -1;
}

2872

2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889
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;
    }

2890
    switch ((virStorageNetProtocol) protocol) {
2891
        case VIR_STORAGE_NET_PROTOCOL_HTTP:
2892 2893
            return 80;

2894
        case VIR_STORAGE_NET_PROTOCOL_HTTPS:
2895 2896
            return 443;

2897
        case VIR_STORAGE_NET_PROTOCOL_FTP:
2898 2899
            return 21;

2900
        case VIR_STORAGE_NET_PROTOCOL_FTPS:
2901 2902
            return 990;

2903
        case VIR_STORAGE_NET_PROTOCOL_TFTP:
2904 2905
            return 69;

2906
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
2907 2908
            return 7000;

2909
        case VIR_STORAGE_NET_PROTOCOL_NBD:
2910 2911
            return 10809;

2912 2913
        case VIR_STORAGE_NET_PROTOCOL_ISCSI:
        case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
2914 2915 2916
            /* no default port specified */
            return 0;

2917 2918
        case VIR_STORAGE_NET_PROTOCOL_RBD:
        case VIR_STORAGE_NET_PROTOCOL_LAST:
2919 2920
        case VIR_STORAGE_NET_PROTOCOL_NONE:
            /* not applicable */
2921 2922 2923 2924 2925 2926
            return -1;
    }

    return -1;
}

2927
#define QEMU_DEFAULT_NBD_PORT "10809"
2928

2929
static char *
2930 2931
qemuBuildNetworkDriveURI(int protocol,
                         const char *src,
2932
                         const char *volume,
2933
                         size_t nhosts,
2934
                         virStorageNetHostDefPtr hosts,
2935 2936 2937 2938
                         const char *username,
                         const char *secret)
{
    char *ret = NULL;
2939
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2940
    virURIPtr uri = NULL;
2941
    size_t i;
2942

2943
    switch ((virStorageNetProtocol) protocol) {
2944
        case VIR_STORAGE_NET_PROTOCOL_NBD:
2945 2946 2947
            if (nhosts != 1) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
2948
                               virStorageNetProtocolTypeToString(protocol));
2949 2950 2951 2952
                goto cleanup;
            }

            if (!((hosts->name && strchr(hosts->name, ':')) ||
2953
                  (hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP &&
2954
                   !hosts->name) ||
2955
                  (hosts->transport == VIR_STORAGE_NET_HOST_TRANS_UNIX &&
2956 2957 2958 2959 2960 2961
                   hosts->socket &&
                   hosts->socket[0] != '/'))) {

                virBufferAddLit(&buf, "nbd:");

                switch (hosts->transport) {
2962
                case VIR_STORAGE_NET_HOST_TRANS_TCP:
2963 2964 2965 2966 2967 2968
                    virBufferStrcat(&buf, hosts->name, NULL);
                    virBufferAsprintf(&buf, ":%s",
                                      hosts->port ? hosts->port :
                                      QEMU_DEFAULT_NBD_PORT);
                    break;

2969
                case VIR_STORAGE_NET_HOST_TRANS_UNIX:
2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982
                    if (!hosts->socket) {
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("socket attribute required for "
                                         "unix transport"));
                        goto cleanup;
                    }

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

                default:
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("nbd does not support transport '%s'"),
2983
                                   virStorageNetHostTransportTypeToString(hosts->transport));
2984 2985 2986 2987 2988 2989
                    goto cleanup;
                }

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

2990
                if (virBufferCheckError(&buf) < 0)
2991 2992 2993 2994 2995 2996 2997 2998
                    goto cleanup;

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

2999 3000 3001 3002 3003 3004 3005
        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:
3006 3007 3008
            if (nhosts != 1) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
3009
                               virStorageNetProtocolTypeToString(protocol));
3010 3011
                goto cleanup;
            }
3012

3013 3014
            if (VIR_ALLOC(uri) < 0)
                goto cleanup;
3015

3016
            if (hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP) {
3017
                if (VIR_STRDUP(uri->scheme,
3018
                               virStorageNetProtocolTypeToString(protocol)) < 0)
3019 3020 3021
                    goto cleanup;
            } else {
                if (virAsprintf(&uri->scheme, "%s+%s",
3022
                                virStorageNetProtocolTypeToString(protocol),
3023
                                virStorageNetHostTransportTypeToString(hosts->transport)) < 0)
3024 3025
                    goto cleanup;
            }
3026

3027 3028
            if ((uri->port = qemuNetworkDriveGetPort(protocol, hosts->port)) < 0)
                goto cleanup;
3029

3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041
            if (src) {
                if (volume) {
                    if (virAsprintf(&uri->path, "/%s%s",
                                    volume, src) < 0)
                        goto cleanup;
                } else {
                    if (virAsprintf(&uri->path, "%s%s",
                                    src[0] == '/' ? "" : "/",
                                    src) < 0)
                        goto cleanup;
                }
            }
3042

3043 3044
            if (hosts->socket &&
                virAsprintf(&uri->query, "socket=%s", hosts->socket) < 0)
3045
                goto cleanup;
3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057

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

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

3060
            ret = virURIFormat(uri);
3061

3062 3063
            break;

3064
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087
            if (!src) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("missing disk source for 'sheepdog' protocol"));
                goto cleanup;
            }

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

            break;

3088
        case VIR_STORAGE_NET_PROTOCOL_RBD:
3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123
            if (strchr(src, ':')) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("':' not allowed in RBD source volume name '%s'"),
                               src);
                goto cleanup;
            }

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

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

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

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

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

3124
            if (virBufferCheckError(&buf) < 0)
3125 3126 3127 3128 3129 3130
                goto cleanup;

            ret = virBufferContentAndReset(&buf);
            break;


3131
        case VIR_STORAGE_NET_PROTOCOL_LAST:
3132
        case VIR_STORAGE_NET_PROTOCOL_NONE:
3133 3134
            goto cleanup;
    }
3135

3136
 cleanup:
3137
    virBufferFreeAndReset(&buf);
3138 3139 3140 3141 3142 3143
    virURIFree(uri);

    return ret;
}


3144
int
3145 3146 3147
qemuGetDriveSourceString(virStorageSourcePtr src,
                         virConnectPtr conn,
                         char **source)
3148
{
3149 3150 3151 3152 3153 3154 3155 3156 3157
    int actualType = virStorageSourceGetActualType(src);
    char *secret = NULL;
    char *username = NULL;
    int ret = -1;

    *source = NULL;

    if (conn) {
        if (actualType == VIR_STORAGE_TYPE_NETWORK &&
3158
            src->auth &&
3159 3160 3161 3162 3163
            (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);
3164
            username = src->auth->username;
3165 3166 3167 3168 3169 3170

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

3172 3173 3174
            if (!(secret = qemuGetSecretString(conn,
                                               protocol,
                                               encode,
3175
                                               src->auth,
3176 3177 3178 3179 3180
                                               secretType)))
                goto cleanup;
        }
    }

3181
    switch ((virStorageType) actualType) {
E
Eric Blake 已提交
3182 3183 3184
    case VIR_STORAGE_TYPE_BLOCK:
    case VIR_STORAGE_TYPE_FILE:
    case VIR_STORAGE_TYPE_DIR:
3185 3186 3187 3188
        if (!src->path) {
            ret = 1;
            goto cleanup;
        }
3189

3190 3191
        if (VIR_STRDUP(*source, src->path) < 0)
            goto cleanup;
3192 3193 3194

        break;

E
Eric Blake 已提交
3195
    case VIR_STORAGE_TYPE_NETWORK:
3196 3197
        if (!(*source = qemuBuildNetworkDriveURI(src->protocol,
                                                 src->path,
3198
                                                 src->volume,
3199 3200 3201 3202 3203
                                                 src->nhosts,
                                                 src->hosts,
                                                 username,
                                                 secret)))
            goto cleanup;
3204 3205
        break;

E
Eric Blake 已提交
3206
    case VIR_STORAGE_TYPE_VOLUME:
3207
    case VIR_STORAGE_TYPE_NONE:
E
Eric Blake 已提交
3208
    case VIR_STORAGE_TYPE_LAST:
3209 3210 3211
        break;
    }

3212
    ret = 0;
3213

3214
 cleanup:
J
John Ferlan 已提交
3215
    VIR_FREE(secret);
3216 3217 3218
    return ret;
}

P
Paolo Bonzini 已提交
3219

3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286
/* 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;
}


3287
char *
3288
qemuBuildDriveStr(virConnectPtr conn,
3289
                  virDomainDiskDefPtr disk,
3290
                  bool bootable,
3291
                  virQEMUCapsPtr qemuCaps)
3292 3293 3294
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
3295 3296
    const char *trans =
        virDomainDiskGeometryTransTypeToString(disk->geometry.trans);
3297 3298
    int idx = virDiskNameToIndex(disk->dst);
    int busid = -1, unitid = -1;
3299
    char *source = NULL;
3300
    int actualType = virStorageSourceGetActualType(disk->src);
3301 3302

    if (idx < 0) {
3303 3304
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk type '%s'"), disk->dst);
3305 3306 3307 3308 3309 3310
        goto error;
    }

    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_SCSI:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
3311 3312
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for scsi disk"));
3313 3314 3315 3316 3317 3318 3319
            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) {
3320 3321
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("SCSI controller only supports 1 bus"));
3322 3323 3324 3325 3326 3327 3328 3329
            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) {
3330 3331
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for ide disk"));
3332 3333 3334 3335
            goto error;
        }
        /* We can only have 1 IDE controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
3336 3337
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s controller is supported"), bus);
3338 3339 3340 3341 3342 3343 3344 3345
            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) {
3346 3347
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for fdc disk"));
3348 3349 3350 3351
            goto error;
        }
        /* We can only have 1 FDC controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
3352 3353
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s controller is supported"), bus);
3354 3355 3356 3357
            goto error;
        }
        /* We can only have 1 FDC bus (currently) */
        if (disk->info.addr.drive.bus != 0) {
3358 3359
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s bus is supported"), bus);
3360 3361
            goto error;
        }
3362
        if (disk->info.addr.drive.target != 0) {
3363 3364
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for controller fdc"));
3365 3366
            goto error;
        }
3367 3368 3369 3370 3371 3372 3373 3374 3375
        unitid = disk->info.addr.drive.unit;

        break;

    case VIR_DOMAIN_DISK_BUS_VIRTIO:
        idx = -1;
        break;

    case VIR_DOMAIN_DISK_BUS_XEN:
3376 3377 3378
    case VIR_DOMAIN_DISK_BUS_SD:
        /* Xen and SD have no address type currently, so assign
         * based on index */
3379 3380 3381
        break;
    }

3382
    if (qemuGetDriveSourceString(disk->src, conn, &source) < 0)
3383 3384 3385
        goto error;

    if (source &&
3386 3387 3388
        !((disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY ||
           disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) &&
          disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN)) {
3389

3390 3391 3392
        virBufferAddLit(&opt, "file=");

        switch (actualType) {
E
Eric Blake 已提交
3393
        case VIR_STORAGE_TYPE_DIR:
3394
            /* QEMU only supports magic FAT format for now */
3395 3396
            if (disk->src->format > 0 &&
                disk->src->format != VIR_STORAGE_FILE_FAT) {
3397 3398
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unsupported disk driver type for '%s'"),
3399
                               virStorageFileFormatTypeToString(disk->src->format));
3400 3401
                goto error;
            }
3402

3403
            if (!disk->src->readonly) {
3404 3405
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("cannot create virtual FAT disks in read-write mode"));
3406 3407
                goto error;
            }
3408 3409 3410

            virBufferAddLit(&opt, "fat:");

3411
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY)
3412
                virBufferAddLit(&opt, "floppy:");
3413

3414 3415
            break;

E
Eric Blake 已提交
3416
        case VIR_STORAGE_TYPE_BLOCK:
3417
            if (disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN) {
3418
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
3419
                               disk->src->type == VIR_STORAGE_TYPE_VOLUME ?
3420 3421
                               _("tray status 'open' is invalid for block type volume") :
                               _("tray status 'open' is invalid for block type disk"));
3422 3423
                goto error;
            }
3424 3425 3426 3427 3428

            break;

        default:
            break;
3429
        }
3430 3431

        virBufferEscape(&opt, ',', ",", "%s,", source);
3432
    }
3433
    VIR_FREE(source);
3434

3435
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
3436 3437
        virBufferAddLit(&opt, "if=none");
    else
3438
        virBufferAsprintf(&opt, "if=%s", bus);
3439

3440
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
3441
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
3442
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD))
3443
                virBufferAddLit(&opt, ",media=cdrom");
3444
        } else if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
3445
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD))
3446
                virBufferAddLit(&opt, ",media=cdrom");
3447 3448 3449 3450
        } else {
            virBufferAddLit(&opt, ",media=cdrom");
        }
    }
3451

3452
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
3453
        virBufferAsprintf(&opt, ",id=%s%s", QEMU_DRIVE_HOST_PREFIX, disk->info.alias);
3454 3455 3456
    } else {
        if (busid == -1 && unitid == -1) {
            if (idx != -1)
3457
                virBufferAsprintf(&opt, ",index=%d", idx);
3458 3459
        } else {
            if (busid != -1)
3460
                virBufferAsprintf(&opt, ",bus=%d", busid);
3461
            if (unitid != -1)
3462
                virBufferAsprintf(&opt, ",unit=%d", unitid);
3463 3464 3465
        }
    }
    if (bootable &&
3466
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) &&
3467 3468
        (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK ||
         disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) &&
3469 3470
        disk->bus != VIR_DOMAIN_DISK_BUS_IDE)
        virBufferAddLit(&opt, ",boot=on");
3471
    if (disk->src->readonly &&
3472 3473 3474 3475 3476 3477 3478
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_READONLY)) {
        if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE &&
            disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("readonly ide disks are not supported"));
            goto error;
        }
3479
        virBufferAddLit(&opt, ",readonly=on");
3480
    }
3481
    if (disk->transient) {
3482 3483
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("transient disks not supported yet"));
3484 3485
        goto error;
    }
3486 3487
    if (disk->src->format > 0 &&
        disk->src->type != VIR_STORAGE_TYPE_DIR &&
3488
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_FORMAT))
3489
        virBufferAsprintf(&opt, ",format=%s",
3490
                          virStorageFileFormatTypeToString(disk->src->format));
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505

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

3506
    if (disk->serial &&
3507
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_SERIAL)) {
3508 3509
        if (qemuSafeSerialParamValue(disk->serial) < 0)
            goto error;
3510
        virBufferAsprintf(&opt, ",serial=%s", disk->serial);
3511 3512 3513
    }

    if (disk->cachemode) {
3514 3515
        const char *mode = NULL;

3516
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_V2)) {
3517 3518 3519
            mode = qemuDiskCacheV2TypeToString(disk->cachemode);

            if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_DIRECTSYNC &&
3520
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_DIRECTSYNC)) {
3521 3522 3523
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("disk cache mode 'directsync' is not "
                                 "supported by this QEMU"));
3524
                goto error;
3525
            } else if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_UNSAFE &&
3526
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_UNSAFE)) {
3527 3528 3529
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("disk cache mode 'unsafe' is not "
                                 "supported by this QEMU"));
3530
                goto error;
3531 3532 3533 3534
            }
        } else {
            mode = qemuDiskCacheV1TypeToString(disk->cachemode);
        }
3535

3536 3537 3538 3539 3540 3541 3542 3543 3544 3545
        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;
        }

3546
        virBufferAsprintf(&opt, ",cache=%s", mode);
3547
    } else if (disk->src->shared && !disk->src->readonly) {
3548 3549 3550
        virBufferAddLit(&opt, ",cache=off");
    }

O
Osier Yang 已提交
3551
    if (disk->copy_on_read) {
3552
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_COPY_ON_READ)) {
O
Osier Yang 已提交
3553
            virBufferAsprintf(&opt, ",copy-on-read=%s",
J
Ján Tomko 已提交
3554
                              virTristateSwitchTypeToString(disk->copy_on_read));
O
Osier Yang 已提交
3555
        } else {
3556 3557
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("copy_on_read is not supported by this QEMU binary"));
O
Osier Yang 已提交
3558 3559 3560 3561
            goto error;
        }
    }

O
Osier Yang 已提交
3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572
    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;
        }
    }

3573
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MONITOR_JSON)) {
3574 3575 3576 3577
        const char *wpolicy = NULL, *rpolicy = NULL;

        if (disk->error_policy)
            wpolicy = virDomainDiskErrorPolicyTypeToString(disk->error_policy);
3578 3579
        if (disk->rerror_policy)
            rpolicy = virDomainDiskErrorPolicyTypeToString(disk->rerror_policy);
3580 3581

        if (disk->error_policy == VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE) {
3582 3583 3584
            /* 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.
3585
             */
3586 3587 3588 3589
            wpolicy = "enospc";
        } else if (!rpolicy) {
            /* for other policies, rpolicy can match wpolicy */
            rpolicy = wpolicy;
3590
        }
3591 3592 3593 3594 3595

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

E
Eric Blake 已提交
3598
    if (disk->iomode) {
3599
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_AIO)) {
3600
            virBufferAsprintf(&opt, ",aio=%s",
E
Eric Blake 已提交
3601 3602
                              virDomainDiskIoTypeToString(disk->iomode));
        } else {
3603 3604 3605
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk aio mode not supported with this "
                             "QEMU binary"));
E
Eric Blake 已提交
3606 3607 3608 3609
            goto error;
        }
    }

3610
    /* block I/O throttling */
3611 3612 3613 3614 3615 3616
    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) &&
3617
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE)) {
3618 3619 3620
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("block I/O throttling not supported with this "
                         "QEMU binary"));
3621 3622 3623
        goto error;
    }

3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635
    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 ||
        disk->blkdeviotune.write_iops_sec > LLONG_MAX) {
        virReportError(VIR_ERR_OVERFLOW,
                      _("block I/O throttle limit must "
                        "be less than %llu using QEMU"), LLONG_MAX);
        goto error;
    }

3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665
    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);
    }

3666
    if (virBufferCheckError(&opt) < 0)
3667 3668 3669 3670
        goto error;

    return virBufferContentAndReset(&opt);

3671
 error:
3672
    VIR_FREE(source);
3673 3674 3675 3676 3677
    virBufferFreeAndReset(&opt);
    return NULL;
}

char *
3678 3679
qemuBuildDriveDevStr(virDomainDefPtr def,
                     virDomainDiskDefPtr disk,
3680
                     int bootindex,
3681
                     virQEMUCapsPtr qemuCaps)
3682 3683 3684
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
3685
    int controllerModel;
3686

3687
    if (qemuCheckDiskConfig(disk) < 0)
3688
        goto error;
3689

3690
    /* Live only checks */
3691
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
3692
        /* make sure that the qemu binary supports type='lun' (SG_IO). */
3693
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_SG_IO)) {
3694
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
3695 3696
                           _("disk device='lun' is not supported by "
                             "this QEMU"));
3697 3698
            goto error;
        }
3699 3700
    }

3701 3702
    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_IDE:
3703
        if (disk->info.addr.drive.target != 0) {
3704 3705
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
3706 3707
            goto error;
        }
3708

3709
        if (disk->wwn &&
3710
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_DRIVE_WWN)) {
3711 3712 3713 3714 3715 3716
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for ide disk is not supported "
                             "by this QEMU"));
            goto error;
        }

3717
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
3718 3719 3720 3721 3722 3723 3724 3725
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

3726
        virBufferAsprintf(&opt, ",bus=ide.%d,unit=%d",
3727 3728 3729 3730
                          disk->info.addr.drive.bus,
                          disk->info.addr.drive.unit);
        break;
    case VIR_DOMAIN_DISK_BUS_SCSI:
3731
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
3732
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_BLOCK)) {
3733 3734 3735
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support scsi-block for "
                                 "lun passthrough"));
3736 3737 3738 3739
                goto error;
            }
        }

3740
        if (disk->wwn &&
3741
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
3742 3743 3744 3745 3746 3747
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for scsi disk is not supported "
                             "by this QEMU"));
            goto error;
        }

3748 3749 3750 3751
        /* Properties wwn, vendor and product were introduced in the
         * same QEMU release (1.2.0).
         */
        if ((disk->vendor || disk->product) &&
3752
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
3753 3754 3755 3756 3757 3758
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product for scsi disk is not "
                             "supported by this QEMU"));
            goto error;
        }

3759
        controllerModel =
H
Han Cheng 已提交
3760 3761
            virDomainDeviceFindControllerModel(def, &disk->info,
                                               VIR_DOMAIN_CONTROLLER_TYPE_SCSI);
3762
        if ((qemuSetSCSIControllerModel(def, qemuCaps, &controllerModel)) < 0)
3763
            goto error;
3764 3765 3766

        if (controllerModel == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
            if (disk->info.addr.drive.target != 0) {
3767 3768 3769
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("target must be 0 for controller "
                                 "model 'lsilogic'"));
3770 3771 3772
                goto error;
            }

3773
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
3774
                virBufferAddLit(&opt, "scsi-block");
3775
            } else {
3776
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD)) {
3777 3778 3779 3780 3781 3782 3783 3784 3785
                    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                        virBufferAddLit(&opt, "scsi-cd");
                    else
                        virBufferAddLit(&opt, "scsi-hd");
                } else {
                    virBufferAddLit(&opt, "scsi-disk");
                }
            }

3786 3787 3788 3789 3790
            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 {
3791
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_CHANNEL)) {
3792
                if (disk->info.addr.drive.target > 7) {
3793 3794 3795
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU doesn't support target "
                                     "greater than 7"));
3796 3797 3798 3799 3800
                    goto error;
                }

                if ((disk->info.addr.drive.bus != disk->info.addr.drive.unit) &&
                    (disk->info.addr.drive.bus != 0)) {
3801 3802 3803
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU only supports both bus and "
                                     "unit equal to 0"));
3804 3805 3806 3807
                    goto error;
                }
            }

3808
            if (disk->device != VIR_DOMAIN_DISK_DEVICE_LUN) {
3809
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD)) {
3810 3811 3812 3813 3814 3815 3816 3817
                    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                        virBufferAddLit(&opt, "scsi-cd");
                    else
                        virBufferAddLit(&opt, "scsi-hd");
                } else {
                    virBufferAddLit(&opt, "scsi-disk");
                }
            } else {
3818
                virBufferAddLit(&opt, "scsi-block");
3819
            }
3820

3821 3822 3823 3824 3825 3826
            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);
        }
3827
        break;
J
Jim Fehlig 已提交
3828
    case VIR_DOMAIN_DISK_BUS_SATA:
3829
        if (disk->info.addr.drive.bus != 0) {
3830 3831
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("bus must be 0 for ide controller"));
3832 3833 3834
            goto error;
        }
        if (disk->info.addr.drive.target != 0) {
3835 3836
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
3837 3838
            goto error;
        }
3839

3840
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
3841 3842 3843 3844 3845 3846 3847 3848
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

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

        }
3904
        virBufferAddLit(&opt, "usb-storage");
3905

3906
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
3907
            goto error;
3908 3909
        break;
    default:
3910 3911
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk bus '%s' with device setup"), bus);
3912 3913
        goto error;
    }
3914 3915
    virBufferAsprintf(&opt, ",drive=%s%s", QEMU_DRIVE_HOST_PREFIX, disk->info.alias);
    virBufferAsprintf(&opt, ",id=%s", disk->info.alias);
3916
    if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
3917
        virBufferAsprintf(&opt, ",bootindex=%d", bootindex);
3918
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKIO)) {
V
Viktor Mihajlovski 已提交
3919
        if (disk->blockio.logical_block_size > 0)
3920
            virBufferAsprintf(&opt, ",logical_block_size=%u",
V
Viktor Mihajlovski 已提交
3921 3922
                              disk->blockio.logical_block_size);
        if (disk->blockio.physical_block_size > 0)
3923
            virBufferAsprintf(&opt, ",physical_block_size=%u",
V
Viktor Mihajlovski 已提交
3924
                              disk->blockio.physical_block_size);
3925
    }
3926

3927 3928 3929 3930 3931 3932
    if (disk->wwn) {
        if (STRPREFIX(disk->wwn, "0x"))
            virBufferAsprintf(&opt, ",wwn=%s", disk->wwn);
        else
            virBufferAsprintf(&opt, ",wwn=0x%s", disk->wwn);
    }
3933

3934 3935 3936 3937 3938 3939
    if (disk->vendor)
        virBufferAsprintf(&opt, ",vendor=%s", disk->vendor);

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

3940 3941
    if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_STORAGE_REMOVABLE)) {
J
Ján Tomko 已提交
3942
            if (disk->removable == VIR_TRISTATE_SWITCH_ON)
3943 3944 3945 3946
                virBufferAddLit(&opt, ",removable=on");
            else
                virBufferAddLit(&opt, ",removable=off");
        } else {
J
Ján Tomko 已提交
3947
            if (disk->removable != VIR_TRISTATE_SWITCH_ABSENT) {
3948 3949 3950 3951 3952 3953 3954 3955
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support setting the "
                                 "removable flag of USB storage devices"));
                goto error;
            }
        }
    }

3956
    if (virBufferCheckError(&opt) < 0)
3957 3958 3959 3960
        goto error;

    return virBufferContentAndReset(&opt);

3961
 error:
3962 3963 3964 3965 3966 3967
    virBufferFreeAndReset(&opt);
    return NULL;
}


char *qemuBuildFSStr(virDomainFSDefPtr fs,
3968
                     virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED)
3969 3970
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
3971
    const char *driver = qemuDomainFSDriverTypeToString(fs->fsdriver);
3972
    const char *wrpolicy = virDomainFSWrpolicyTypeToString(fs->wrpolicy);
3973 3974

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
3975 3976
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only supports mount filesystem type"));
3977 3978 3979
        goto error;
    }

3980
    if (!driver) {
3981 3982
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Filesystem driver type not supported"));
3983 3984 3985 3986
        goto error;
    }
    virBufferAdd(&opt, driver, -1);

3987 3988 3989 3990
    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");
3991
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
3992
            virBufferAddLit(&opt, ",security_model=passthrough");
3993
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_SQUASH) {
3994 3995 3996 3997 3998 3999
            virBufferAddLit(&opt, ",security_model=none");
        }
    } else {
        /* For other fs drivers, default(passthru) should always
         * be supported */
        if (fs->accessmode != VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
4000 4001
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("only supports passthrough accessmode"));
4002 4003
            goto error;
        }
4004
    }
4005 4006

    if (fs->wrpolicy) {
4007 4008 4009 4010 4011 4012 4013
        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;
        }
4014 4015
    }

4016 4017
    virBufferAsprintf(&opt, ",id=%s%s", QEMU_FSDEV_HOST_PREFIX, fs->info.alias);
    virBufferAsprintf(&opt, ",path=%s", fs->src);
4018

4019
    if (fs->readonly) {
4020
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV_READONLY)) {
4021 4022
            virBufferAddLit(&opt, ",readonly");
        } else {
4023 4024 4025
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("readonly filesystem is not supported by this "
                             "QEMU binary"));
4026 4027 4028 4029
            goto error;
        }
    }

4030
    if (virBufferCheckError(&opt) < 0)
4031 4032 4033 4034
        goto error;

    return virBufferContentAndReset(&opt);

4035
 error:
4036 4037 4038 4039 4040 4041
    virBufferFreeAndReset(&opt);
    return NULL;
}


char *
4042 4043
qemuBuildFSDevStr(virDomainDefPtr def,
                  virDomainFSDefPtr fs,
4044
                  virQEMUCapsPtr qemuCaps)
4045 4046 4047 4048
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
4049 4050
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("can only passthrough directories"));
4051 4052 4053 4054
        goto error;
    }

    virBufferAddLit(&opt, "virtio-9p-pci");
4055 4056 4057
    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 已提交
4058

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

4062
    if (virBufferCheckError(&opt) < 0)
4063 4064 4065 4066
        goto error;

    return virBufferContentAndReset(&opt);

4067
 error:
4068 4069 4070 4071 4072
    virBufferFreeAndReset(&opt);
    return NULL;
}


4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091
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 已提交
4092 4093
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI:
        return QEMU_CAPS_NEC_USB_XHCI;
4094 4095 4096 4097 4098 4099 4100
    default:
        return -1;
    }
}


static int
4101 4102
qemuBuildUSBControllerDevStr(virDomainDefPtr domainDef,
                             virDomainControllerDefPtr def,
4103
                             virQEMUCapsPtr qemuCaps,
4104 4105 4106
                             virBuffer *buf)
{
    const char *smodel;
4107
    int model, flags;
4108 4109

    model = def->model;
4110

4111
    if (model == -1) {
4112
        if (domainDef->os.arch == VIR_ARCH_PPC64)
4113 4114 4115 4116
            model = VIR_DOMAIN_CONTROLLER_MODEL_USB_PCI_OHCI;
        else
            model = VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI;
    }
4117 4118

    smodel = qemuControllerModelUSBTypeToString(model);
4119
    flags = qemuControllerModelUSBToCaps(model);
4120

4121
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
4122 4123
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), smodel);
4124 4125 4126
        return -1;
    }

4127 4128 4129
    virBufferAsprintf(buf, "%s", smodel);

    if (def->info.mastertype == VIR_DOMAIN_CONTROLLER_MASTER_USB) {
4130
        virBufferAddLit(buf, ",masterbus=");
4131
        qemuUSBId(buf, def->idx);
4132
        virBufferAsprintf(buf, ".0,firstport=%d", def->info.master.usb.startport);
4133
    } else {
4134
        virBufferAddLit(buf, ",id=");
4135
        qemuUSBId(buf, def->idx);
4136 4137
    }

4138 4139 4140
    return 0;
}

4141
char *
4142 4143
qemuBuildControllerDevStr(virDomainDefPtr domainDef,
                          virDomainControllerDefPtr def,
4144
                          virQEMUCapsPtr qemuCaps,
4145
                          int *nusbcontroller)
4146 4147
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4148
    int model;
4149

4150
    if (!(def->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI &&
4151
          def->model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI)) {
4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166
        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;
        }
4167 4168
    }

4169 4170
    switch (def->type) {
    case VIR_DOMAIN_CONTROLLER_TYPE_SCSI:
4171
        model = def->model;
4172
        if ((qemuSetSCSIControllerModel(domainDef, qemuCaps, &model)) < 0)
4173 4174
            return NULL;

4175
        switch (model) {
4176
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI:
4177 4178 4179 4180 4181
            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");
4182 4183 4184
            else if (def->info.type ==
                     VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
                virBufferAddLit(&buf, "virtio-scsi-device");
4185 4186
            else
                virBufferAddLit(&buf, "virtio-scsi-pci");
4187
            break;
4188
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC:
4189
            virBufferAddLit(&buf, "lsi");
4190 4191 4192 4193
            break;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI:
            virBufferAddLit(&buf, "spapr-vscsi");
            break;
4194 4195 4196
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1078:
            virBufferAddLit(&buf, "megasas");
            break;
4197
        default:
4198 4199 4200
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported controller model: %s"),
                           virDomainControllerModelSCSITypeToString(def->model));
4201
        }
4202
        virBufferAsprintf(&buf, ",id=scsi%d", def->idx);
4203 4204 4205 4206 4207
        break;

    case VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL:
        if (def->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
            virBufferAddLit(&buf, "virtio-serial-pci");
4208 4209 4210
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            virBufferAddLit(&buf, "virtio-serial-ccw");
4211 4212 4213
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
            virBufferAddLit(&buf, "virtio-serial-s390");
4214 4215 4216
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO) {
            virBufferAddLit(&buf, "virtio-serial-device");
4217 4218 4219
        } else {
            virBufferAddLit(&buf, "virtio-serial");
        }
4220
        virBufferAsprintf(&buf, ",id=" QEMU_VIRTIO_SERIAL_PREFIX "%d",
4221 4222
                          def->idx);
        if (def->opts.vioserial.ports != -1) {
4223
            virBufferAsprintf(&buf, ",max_ports=%d",
4224 4225 4226
                              def->opts.vioserial.ports);
        }
        if (def->opts.vioserial.vectors != -1) {
4227
            virBufferAsprintf(&buf, ",vectors=%d",
4228 4229 4230 4231
                              def->opts.vioserial.vectors);
        }
        break;

E
Eric Blake 已提交
4232
    case VIR_DOMAIN_CONTROLLER_TYPE_CCID:
4233
        virBufferAsprintf(&buf, "usb-ccid,id=ccid%d", def->idx);
E
Eric Blake 已提交
4234 4235
        break;

J
Jim Fehlig 已提交
4236 4237 4238 4239
    case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
        virBufferAsprintf(&buf, "ahci,id=ahci%d", def->idx);
        break;

4240
    case VIR_DOMAIN_CONTROLLER_TYPE_USB:
4241
        if (qemuBuildUSBControllerDevStr(domainDef, def, qemuCaps, &buf) == -1)
4242 4243 4244 4245 4246 4247 4248
            goto error;

        if (nusbcontroller)
            *nusbcontroller += 1;

        break;

4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259
    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;
4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273
        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;
4274
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
L
Laine Stump 已提交
4275
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
4276
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
L
Laine Stump 已提交
4277
                           _("wrong function called for pci-root/pcie-root"));
4278 4279 4280 4281
            return NULL;
        }
        break;

4282 4283 4284
    /* We always get an IDE controller, whether we want it or not. */
    case VIR_DOMAIN_CONTROLLER_TYPE_IDE:
    default:
4285 4286 4287
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unknown controller type: %s"),
                       virDomainControllerTypeToString(def->type));
4288 4289 4290
        goto error;
    }

4291 4292
    if (def->queues)
        virBufferAsprintf(&buf, ",num_queues=%u", def->queues);
4293

4294 4295 4296 4297 4298 4299
    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);

4300
    if (qemuBuildDeviceAddressStr(&buf, domainDef, &def->info, qemuCaps) < 0)
4301 4302
        goto error;

4303
    if (virBufferCheckError(&buf) < 0)
4304 4305 4306 4307
        goto error;

    return virBufferContentAndReset(&buf);

4308
 error:
4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319
    virBufferFreeAndReset(&buf);
    return NULL;
}


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

4322 4323 4324 4325 4326 4327 4328 4329 4330
    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 : "")));
4331 4332 4333 4334 4335
    return str;
}


char *
4336 4337
qemuBuildNicDevStr(virDomainDefPtr def,
                   virDomainNetDefPtr net,
4338
                   int vlan,
4339
                   int bootindex,
4340
                   int vhostfdSize,
4341
                   virQEMUCapsPtr qemuCaps)
4342 4343
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4344
    const char *nic = net->model;
4345
    bool usingVirtio = false;
4346
    char macaddr[VIR_MAC_STRING_BUFLEN];
4347

4348 4349
    if (STREQ(net->model, "virtio")) {
        if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
4350
            nic = "virtio-net-ccw";
4351
        else if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390)
4352
            nic = "virtio-net-s390";
4353 4354
        else if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
            nic = "virtio-net-device";
4355
        else
4356
            nic = "virtio-net-pci";
4357

4358
        usingVirtio = true;
4359 4360
    }

4361
    virBufferAdd(&buf, nic, -1);
4362
    if (usingVirtio && net->driver.virtio.txmode) {
4363
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_TX_ALG)) {
4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376
            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.
                     */
4377 4378
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("unrecognized virtio-net-pci 'tx' option"));
4379 4380 4381
                    goto error;
            }
        } else {
4382 4383
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-net-pci 'tx' option not supported in this QEMU binary"));
4384 4385 4386
            goto error;
        }
    }
4387
    if (usingVirtio) {
4388
        qemuBuildIoEventFdStr(&buf, net->driver.virtio.ioeventfd, qemuCaps);
4389
        if (net->driver.virtio.event_idx &&
4390
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_NET_EVENT_IDX)) {
4391
            virBufferAsprintf(&buf, ",event_idx=%s",
J
Ján Tomko 已提交
4392
                              virTristateSwitchTypeToString(net->driver.virtio.event_idx));
4393 4394
        }
    }
4395 4396
    if (usingVirtio && vhostfdSize > 1) {
        /* As advised at http://www.linux-kvm.org/page/Multiqueue
4397 4398
         * we should add vectors=2*N+2 where N is the vhostfdSize */
        virBufferAsprintf(&buf, ",mq=on,vectors=%d", 2 * vhostfdSize + 2);
4399
    }
4400
    if (vlan == -1)
4401
        virBufferAsprintf(&buf, ",netdev=host%s", net->info.alias);
4402
    else
4403 4404
        virBufferAsprintf(&buf, ",vlan=%d", vlan);
    virBufferAsprintf(&buf, ",id=%s", net->info.alias);
4405 4406
    virBufferAsprintf(&buf, ",mac=%s",
                      virMacAddrFormat(&net->mac, macaddr));
4407
    if (qemuBuildDeviceAddressStr(&buf, def, &net->info, qemuCaps) < 0)
4408
        goto error;
4409
    if (qemuBuildRomStr(&buf, &net->info, qemuCaps) < 0)
4410
       goto error;
4411
    if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
4412
        virBufferAsprintf(&buf, ",bootindex=%d", bootindex);
4413

4414
    if (virBufferCheckError(&buf) < 0)
4415 4416 4417 4418
        goto error;

    return virBufferContentAndReset(&buf);

4419
 error:
4420 4421 4422 4423 4424 4425 4426
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
qemuBuildHostNetStr(virDomainNetDefPtr net,
4427
                    virQEMUDriverPtr driver,
4428 4429
                    char type_sep,
                    int vlan,
4430 4431 4432 4433
                    char **tapfd,
                    int tapfdSize,
                    char **vhostfd,
                    int vhostfdSize)
4434
{
4435
    bool is_tap = false;
4436
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4437
    virDomainNetType netType = virDomainNetGetActualType(net);
4438
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4439
    size_t i;
4440

4441
    if (net->script && netType != VIR_DOMAIN_NET_TYPE_ETHERNET) {
4442 4443 4444
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("scripts are not supported on interfaces of type %s"),
                       virDomainNetTypeToString(netType));
4445
        virObjectUnref(cfg);
4446 4447 4448 4449
        return NULL;
    }

    switch (netType) {
R
Richa Marwaha 已提交
4450 4451 4452 4453 4454
    /*
     * If type='bridge', and we're running as privileged user
     * or -netdev bridge is not supported then it will fall
     * through, -net tap,fd
     */
4455
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
R
Richa Marwaha 已提交
4456
    case VIR_DOMAIN_NET_TYPE_NETWORK:
4457
    case VIR_DOMAIN_NET_TYPE_DIRECT:
4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470
        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);
            }
        }
4471
        type_sep = ',';
4472
        is_tap = true;
4473 4474 4475 4476 4477
        break;

    case VIR_DOMAIN_NET_TYPE_ETHERNET:
        virBufferAddLit(&buf, "tap");
        if (net->ifname) {
4478
            virBufferAsprintf(&buf, "%cifname=%s", type_sep, net->ifname);
4479 4480
            type_sep = ',';
        }
4481
        if (net->script) {
4482
            virBufferAsprintf(&buf, "%cscript=%s", type_sep,
4483
                              net->script);
4484 4485
            type_sep = ',';
        }
4486
        is_tap = true;
4487 4488 4489
        break;

    case VIR_DOMAIN_NET_TYPE_CLIENT:
4490 4491 4492 4493 4494 4495 4496
       virBufferAsprintf(&buf, "socket%cconnect=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;

4497
    case VIR_DOMAIN_NET_TYPE_SERVER:
4498 4499 4500 4501 4502 4503 4504
       virBufferAsprintf(&buf, "socket%clisten=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;

4505
    case VIR_DOMAIN_NET_TYPE_MCAST:
4506 4507 4508 4509 4510 4511
       virBufferAsprintf(&buf, "socket%cmcast=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;
4512 4513 4514 4515 4516 4517 4518 4519

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

    if (vlan >= 0) {
4520
        virBufferAsprintf(&buf, "%cvlan=%d", type_sep, vlan);
4521
        if (net->info.alias)
4522
            virBufferAsprintf(&buf, ",name=host%s",
4523 4524
                              net->info.alias);
    } else {
4525
        virBufferAsprintf(&buf, "%cid=host%s",
4526 4527 4528
                          type_sep, net->info.alias);
    }

4529
    if (is_tap) {
4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542
        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);
                }
            }
        }
4543
        if (net->tune.sndbuf_specified)
4544
            virBufferAsprintf(&buf, ",sndbuf=%lu", net->tune.sndbuf);
4545 4546
    }

4547 4548
    virObjectUnref(cfg);

4549
    if (virBufferCheckError(&buf) < 0)
4550 4551 4552 4553 4554 4555 4556
        return NULL;

    return virBufferContentAndReset(&buf);
}


char *
4557 4558
qemuBuildWatchdogDevStr(virDomainDefPtr def,
                        virDomainWatchdogDefPtr dev,
4559
                        virQEMUCapsPtr qemuCaps)
4560 4561 4562 4563 4564
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    const char *model = virDomainWatchdogModelTypeToString(dev->model);
    if (!model) {
4565 4566
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing watchdog model"));
4567 4568 4569
        goto error;
    }

4570
    virBufferAsprintf(&buf, "%s,id=%s", model, dev->info.alias);
4571
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4572 4573
        goto error;

4574
    if (virBufferCheckError(&buf) < 0)
4575 4576 4577 4578
        goto error;

    return virBufferContentAndReset(&buf);

4579
 error:
4580 4581 4582 4583 4584 4585
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
4586 4587
qemuBuildMemballoonDevStr(virDomainDefPtr def,
                          virDomainMemballoonDefPtr dev,
4588
                          virQEMUCapsPtr qemuCaps)
4589 4590 4591
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4592 4593 4594 4595 4596 4597 4598
    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;
4599 4600 4601
        case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO:
            virBufferAddLit(&buf, "virtio-balloon-device");
            break;
4602
        default:
4603 4604 4605
            virReportError(VIR_ERR_XML_ERROR,
                           _("memballoon unsupported with address type '%s'"),
                           virDomainDeviceAddressTypeToString(dev->info.type));
4606 4607 4608
            goto error;
    }

4609
    virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
4610
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4611 4612
        goto error;

4613
    if (virBufferCheckError(&buf) < 0)
4614 4615 4616 4617
        goto error;

    return virBufferContentAndReset(&buf);

4618
 error:
4619 4620 4621 4622
    virBufferFreeAndReset(&buf);
    return NULL;
}

4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637
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;
    }

4638
    if (virBufferCheckError(&buf) < 0)
4639 4640 4641 4642
        goto error;

    return virBufferContentAndReset(&buf);

4643
 error:
4644 4645 4646
    virBufferFreeAndReset(&buf);
    return NULL;
}
4647 4648

char *
4649 4650
qemuBuildUSBInputDevStr(virDomainDefPtr def,
                        virDomainInputDefPtr dev,
4651
                        virQEMUCapsPtr qemuCaps)
4652 4653 4654
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667
    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;
    }
4668

4669
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4670 4671
        goto error;

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

    return virBufferContentAndReset(&buf);

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


char *
4684 4685
qemuBuildSoundDevStr(virDomainDefPtr def,
                     virDomainSoundDefPtr sound,
4686
                     virQEMUCapsPtr qemuCaps)
4687 4688
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4689
    const char *model = NULL;
4690

4691
    /* Hack for devices with different names in QEMU and libvirt */
4692
    switch ((virDomainSoundModel) sound->model) {
4693
    case VIR_DOMAIN_SOUND_MODEL_ES1370:
4694
        model = "ES1370";
4695 4696
        break;
    case VIR_DOMAIN_SOUND_MODEL_AC97:
4697
        model = "AC97";
4698 4699
        break;
    case VIR_DOMAIN_SOUND_MODEL_ICH6:
4700
        model = "intel-hda";
4701
        break;
4702 4703 4704 4705 4706 4707 4708 4709 4710
    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;
4711 4712 4713 4714 4715 4716 4717 4718 4719
    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;
4720 4721 4722 4723 4724 4725 4726 4727 4728
    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;
4729
    }
4730

4731
    virBufferAsprintf(&buf, "%s,id=%s", model, sound->info.alias);
4732
    if (qemuBuildDeviceAddressStr(&buf, def, &sound->info, qemuCaps) < 0)
4733 4734
        goto error;

4735
    if (virBufferCheckError(&buf) < 0)
4736 4737 4738 4739
        goto error;

    return virBufferContentAndReset(&buf);

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

4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759

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


4760 4761
static char *
qemuBuildSoundCodecStr(virDomainSoundDefPtr sound,
4762
                       virDomainSoundCodecDefPtr codec,
4763
                       virQEMUCapsPtr qemuCaps)
4764 4765
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4766
    const char *stype;
4767
    int type, flags;
4768

4769 4770
    type = codec->type;
    stype = qemuSoundCodecTypeToString(type);
4771
    flags = qemuSoundCodecTypeToCaps(type);
4772

4773
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
4774 4775
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), stype);
4776 4777 4778
        goto error;
    }

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

4782 4783
    return virBufferContentAndReset(&buf);

4784
 error:
4785 4786 4787
    virBufferFreeAndReset(&buf);
    return NULL;
}
4788 4789

static char *
4790 4791
qemuBuildDeviceVideoStr(virDomainDefPtr def,
                        virDomainVideoDefPtr video,
4792
                        virQEMUCapsPtr qemuCaps,
4793
                        bool primary)
4794 4795
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4796
    const char *model;
4797

4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812
    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;
        }

4813
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL)) {
4814 4815 4816 4817 4818 4819
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("only one video card is currently supported"));
            goto error;
        }

        model = "qxl";
4820 4821
    }

4822
    virBufferAsprintf(&buf, "%s,id=%s", model, video->info.alias);
4823 4824

    if (video->type == VIR_DOMAIN_VIDEO_TYPE_QXL) {
4825
        if (video->vram > (UINT_MAX / 1024)) {
4826
            virReportError(VIR_ERR_OVERFLOW,
4827 4828
                           _("value for 'vram' must be less than '%u'"),
                           UINT_MAX / 1024);
4829 4830
            goto error;
        }
4831 4832 4833 4834 4835 4836 4837 4838 4839
        if (video->ram > (UINT_MAX / 1024)) {
            virReportError(VIR_ERR_OVERFLOW,
                           _("value for 'ram' must be less than '%u'"),
                           UINT_MAX / 1024);
            goto error;
        }

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

4841
        /* QEMU accepts bytes for vram_size. */
4842
        virBufferAsprintf(&buf, ",vram_size=%u", video->vram * 1024);
4843 4844
    }

4845
    if (qemuBuildDeviceAddressStr(&buf, def, &video->info, qemuCaps) < 0)
4846 4847
        goto error;

4848
    if (virBufferCheckError(&buf) < 0)
4849 4850 4851 4852
        goto error;

    return virBufferContentAndReset(&buf);

4853
 error:
4854 4855 4856 4857 4858 4859 4860 4861
    virBufferFreeAndReset(&buf);
    return NULL;
}


int
qemuOpenPCIConfig(virDomainHostdevDefPtr dev)
{
4862
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
4863 4864 4865 4866
    char *path = NULL;
    int configfd = -1;

    if (virAsprintf(&path, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/config",
4867 4868
                    pcisrc->addr.domain, pcisrc->addr.bus,
                    pcisrc->addr.slot, pcisrc->addr.function) < 0)
4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881
        return -1;

    configfd = open(path, O_RDWR, 0);

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

    VIR_FREE(path);

    return configfd;
}

char *
4882 4883 4884
qemuBuildPCIHostdevDevStr(virDomainDefPtr def,
                          virDomainHostdevDefPtr dev,
                          const char *configfd,
4885
                          virQEMUCapsPtr qemuCaps)
4886 4887
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4888 4889
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
    int backend = pcisrc->backend;
4890

4891
    /* caller has to assign proper passthrough backend type */
4892
    switch ((virDomainHostdevSubsysPCIBackendType) backend) {
4893
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM:
4894 4895 4896
        virBufferAddLit(&buf, "pci-assign");
        if (configfd && *configfd)
            virBufferAsprintf(&buf, ",configfd=%s", configfd);
4897 4898 4899 4900 4901 4902
        break;

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

4903
    default:
4904 4905
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid PCI passthrough type '%s'"),
4906
                       virDomainHostdevSubsysPCIBackendTypeToString(backend));
4907
        goto error;
4908
    }
4909

4910
    virBufferAddLit(&buf, ",host=");
4911
    if (pcisrc->addr.domain) {
4912 4913 4914 4915
        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"),
4916
                           pcisrc->addr.domain);
4917 4918
            goto error;
        }
4919
        virBufferAsprintf(&buf, "%.4x:", pcisrc->addr.domain);
4920 4921
    }
    virBufferAsprintf(&buf, "%.2x:%.2x.%.1x",
4922 4923
                      pcisrc->addr.bus, pcisrc->addr.slot,
                      pcisrc->addr.function);
4924 4925 4926
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);
4927
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
4928
        goto error;
4929
    if (qemuBuildRomStr(&buf, dev->info, qemuCaps) < 0)
4930
       goto error;
4931

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

    return virBufferContentAndReset(&buf);

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


char *
4944 4945
qemuBuildPCIHostdevPCIDevStr(virDomainHostdevDefPtr dev,
                             virQEMUCapsPtr qemuCaps)
4946 4947
{
    char *ret = NULL;
4948
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
4949

4950
    if (pcisrc->addr.domain) {
4951 4952 4953 4954
        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"),
4955
                           pcisrc->addr.domain);
4956 4957 4958
            goto cleanup;
        }
        ignore_value(virAsprintf(&ret, "host=%.4x:%.2x:%.2x.%.1x",
4959 4960
                                 pcisrc->addr.domain, pcisrc->addr.bus,
                                 pcisrc->addr.slot, pcisrc->addr.function));
4961 4962
    } else {
        ignore_value(virAsprintf(&ret, "host=%.2x:%.2x.%.1x",
4963 4964
                                 pcisrc->addr.bus, pcisrc->addr.slot,
                                 pcisrc->addr.function));
4965 4966
    }
 cleanup:
4967 4968 4969 4970
    return ret;
}


4971
char *
4972 4973
qemuBuildRedirdevDevStr(virDomainDefPtr def,
                        virDomainRedirdevDefPtr dev,
4974
                        virQEMUCapsPtr qemuCaps)
4975
{
4976
    size_t i;
4977
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4978
    virDomainRedirFilterDefPtr redirfilter = def->redirfilter;
4979 4980

    if (dev->bus != VIR_DOMAIN_REDIRDEV_BUS_USB) {
4981 4982 4983
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Redirection bus %s is not supported by QEMU"),
                       virDomainRedirdevBusTypeToString(dev->bus));
4984 4985 4986
        goto error;
    }

4987
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR)) {
4988 4989 4990
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("USB redirection is not supported "
                         "by this version of QEMU"));
4991 4992 4993 4994 4995 4996 4997
        goto error;
    }

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

4998
    if (redirfilter && redirfilter->nusbdevs) {
4999
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR_FILTER)) {
5000 5001 5002 5003 5004 5005
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("USB redirection filter is not "
                             "supported by this version of QEMU"));
            goto error;
        }

5006
        virBufferAddLit(&buf, ",filter=");
5007 5008

        for (i = 0; i < redirfilter->nusbdevs; i++) {
5009
            virDomainRedirFilterUSBDevDefPtr usbdev = redirfilter->usbdevs[i];
5010 5011 5012
            if (usbdev->usbClass >= 0)
                virBufferAsprintf(&buf, "0x%02X:", usbdev->usbClass);
            else
5013
                virBufferAddLit(&buf, "-1:");
5014 5015 5016 5017

            if (usbdev->vendor >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->vendor);
            else
5018
                virBufferAddLit(&buf, "-1:");
5019 5020 5021 5022

            if (usbdev->product >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->product);
            else
5023
                virBufferAddLit(&buf, "-1:");
5024 5025 5026 5027

            if (usbdev->version >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->version);
            else
5028
                virBufferAddLit(&buf, "-1:");
5029 5030 5031

            virBufferAsprintf(&buf, "%u", usbdev->allow);
            if (i < redirfilter->nusbdevs -1)
5032
                virBufferAddLit(&buf, "|");
5033 5034 5035
        }
    }

5036
    if (dev->info.bootIndex) {
5037
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR_BOOTINDEX)) {
5038 5039 5040 5041 5042 5043 5044 5045
            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);
    }

5046
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
5047 5048
        goto error;

5049
    if (virBufferCheckError(&buf) < 0)
5050 5051 5052 5053
        goto error;

    return virBufferContentAndReset(&buf);

5054
 error:
5055 5056 5057 5058
    virBufferFreeAndReset(&buf);
    return NULL;
}

5059
char *
5060 5061
qemuBuildUSBHostdevDevStr(virDomainDefPtr def,
                          virDomainHostdevDefPtr dev,
5062
                          virQEMUCapsPtr qemuCaps)
5063
{
5064
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5065
    virDomainHostdevSubsysUSBPtr usbsrc = &dev->source.subsys.u.usb;
5066

5067
    if (!dev->missing && !usbsrc->bus && !usbsrc->device) {
5068 5069
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
5070 5071 5072
        return NULL;
    }

5073 5074 5075
    virBufferAddLit(&buf, "usb-host");
    if (!dev->missing) {
        virBufferAsprintf(&buf, ",hostbus=%d,hostaddr=%d",
5076
                          usbsrc->bus, usbsrc->device);
5077 5078
    }
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
5079 5080
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);
5081

5082
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
5083 5084
        goto error;

5085
    if (virBufferCheckError(&buf) < 0)
5086
        goto error;
5087

5088 5089
    return virBufferContentAndReset(&buf);

5090
 error:
5091 5092
    virBufferFreeAndReset(&buf);
    return NULL;
5093 5094 5095
}


M
Marc-André Lureau 已提交
5096
char *
5097 5098
qemuBuildHubDevStr(virDomainDefPtr def,
                   virDomainHubDefPtr dev,
5099
                   virQEMUCapsPtr qemuCaps)
M
Marc-André Lureau 已提交
5100 5101 5102 5103
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (dev->type != VIR_DOMAIN_HUB_TYPE_USB) {
5104 5105 5106
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("hub type %s not supported"),
                       virDomainHubTypeToString(dev->type));
M
Marc-André Lureau 已提交
5107 5108 5109
        goto error;
    }

5110
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HUB)) {
5111
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
5112
                       _("usb-hub not supported by QEMU binary"));
M
Marc-André Lureau 已提交
5113 5114 5115 5116 5117
        goto error;
    }

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

5121
    if (virBufferCheckError(&buf) < 0)
M
Marc-André Lureau 已提交
5122 5123 5124 5125
        goto error;

    return virBufferContentAndReset(&buf);

5126
 error:
M
Marc-André Lureau 已提交
5127 5128 5129 5130 5131
    virBufferFreeAndReset(&buf);
    return NULL;
}


5132
char *
5133
qemuBuildUSBHostdevUSBDevStr(virDomainHostdevDefPtr dev)
5134 5135
{
    char *ret = NULL;
5136
    virDomainHostdevSubsysUSBPtr usbsrc = &dev->source.subsys.u.usb;
5137

5138 5139 5140 5141 5142 5143
    if (dev->missing) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("This QEMU doesn't not support missing USB devices"));
        return NULL;
    }

5144
    if (!usbsrc->bus && !usbsrc->device) {
5145 5146
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
5147 5148 5149
        return NULL;
    }

5150
    ignore_value(virAsprintf(&ret, "host:%d.%d", usbsrc->bus, usbsrc->device));
5151 5152 5153
    return ret;
}

5154 5155 5156 5157
static char *
qemuBuildSCSIHostHostdevDrvStr(virDomainHostdevDefPtr dev,
                               virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED,
                               qemuBuildCommandLineCallbacksPtr callbacks)
5158
{
5159
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;
5160
    virDomainHostdevSubsysSCSIHostPtr scsihostsrc = &scsisrc->u.host;
5161 5162
    char *sg = NULL;

5163
    sg = (callbacks->qemuGetSCSIDeviceSgName)(NULL,
5164 5165 5166 5167
                                              scsihostsrc->adapter,
                                              scsihostsrc->bus,
                                              scsihostsrc->target,
                                              scsihostsrc->unit);
5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199
    return sg;
}

static char *
qemuBuildSCSIiSCSIHostdevDrvStr(virConnectPtr conn,
                                virDomainHostdevDefPtr dev)
{
    char *source = NULL;
    char *secret = NULL;
    char *username = NULL;
    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;
    }

    /* Rather than pull what we think we want - use the network disk code */
    source = qemuBuildNetworkDriveURI(VIR_STORAGE_NET_PROTOCOL_ISCSI,
                                      iscsisrc->path,
                                      NULL, /* volume */
                                      iscsisrc->nhosts,
                                      iscsisrc->hosts,
                                      username, secret);
5200

5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225
 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);
    }
5226 5227 5228 5229
    virBufferAsprintf(&buf, ",id=%s-%s",
                      virDomainDeviceAddressTypeToString(dev->info->type),
                      dev->info->alias);

O
Osier Yang 已提交
5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240
    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;
        }
    }

5241
    if (virBufferCheckError(&buf) < 0)
5242 5243
        goto error;

5244
    VIR_FREE(source);
5245
    return virBufferContentAndReset(&buf);
5246
 error:
5247
    VIR_FREE(source);
5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262
    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);

5263
    if (qemuSetSCSIControllerModel(def, qemuCaps, &model) < 0)
5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295
        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);
    }
5296

5297 5298 5299 5300
    virBufferAsprintf(&buf, ",drive=%s-%s,id=%s",
                      virDomainDeviceAddressTypeToString(dev->info->type),
                      dev->info->alias, dev->info->alias);

5301 5302 5303
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);

5304
    if (virBufferCheckError(&buf) < 0)
5305 5306 5307
        goto error;

    return virBufferContentAndReset(&buf);
5308
 error:
5309 5310 5311
    virBufferFreeAndReset(&buf);
    return NULL;
}
5312 5313 5314

/* This function outputs a -chardev command line option which describes only the
 * host side of the character device */
5315
static char *
5316
qemuBuildChrChardevStr(virDomainChrSourceDefPtr dev, const char *alias,
5317
                       virQEMUCapsPtr qemuCaps)
5318 5319 5320 5321
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    bool telnet;

5322
    switch (dev->type) {
5323
    case VIR_DOMAIN_CHR_TYPE_NULL:
5324
        virBufferAsprintf(&buf, "null,id=char%s", alias);
5325 5326 5327
        break;

    case VIR_DOMAIN_CHR_TYPE_VC:
5328
        virBufferAsprintf(&buf, "vc,id=char%s", alias);
5329 5330 5331
        break;

    case VIR_DOMAIN_CHR_TYPE_PTY:
5332
        virBufferAsprintf(&buf, "pty,id=char%s", alias);
5333 5334 5335
        break;

    case VIR_DOMAIN_CHR_TYPE_DEV:
5336 5337 5338
        virBufferAsprintf(&buf, "%s,id=char%s,path=%s",
                          STRPREFIX(alias, "parallel") ? "parport" : "tty",
                          alias, dev->data.file.path);
5339 5340 5341
        break;

    case VIR_DOMAIN_CHR_TYPE_FILE:
5342
        virBufferAsprintf(&buf, "file,id=char%s,path=%s", alias,
5343
                          dev->data.file.path);
5344 5345 5346
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
5347
        virBufferAsprintf(&buf, "pipe,id=char%s,path=%s", alias,
5348
                          dev->data.file.path);
5349 5350 5351
        break;

    case VIR_DOMAIN_CHR_TYPE_STDIO:
5352
        virBufferAsprintf(&buf, "stdio,id=char%s", alias);
5353 5354
        break;

5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366
    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";

5367
        virBufferAsprintf(&buf,
5368 5369
                          "udp,id=char%s,host=%s,port=%s,localaddr=%s,"
                          "localport=%s",
5370
                          alias,
5371
                          connectHost,
5372
                          dev->data.udp.connectService,
5373
                          bindHost, bindService);
5374
        break;
5375
    }
5376 5377
    case VIR_DOMAIN_CHR_TYPE_TCP:
        telnet = dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
5378
        virBufferAsprintf(&buf,
5379
                          "socket,id=char%s,host=%s,port=%s%s%s",
5380
                          alias,
5381 5382 5383 5384 5385 5386 5387
                          dev->data.tcp.host,
                          dev->data.tcp.service,
                          telnet ? ",telnet" : "",
                          dev->data.tcp.listen ? ",server,nowait" : "");
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
5388
        virBufferAsprintf(&buf,
5389
                          "socket,id=char%s,path=%s%s",
5390
                          alias,
5391 5392 5393
                          dev->data.nix.path,
                          dev->data.nix.listen ? ",server,nowait" : "");
        break;
5394 5395

    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
5396
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_SPICEVMC)) {
5397
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
5398
                           _("spicevmc not supported in this QEMU binary"));
5399 5400
            goto error;
        }
5401
        virBufferAsprintf(&buf, "spicevmc,id=char%s,name=%s", alias,
E
Eric Blake 已提交
5402
                          virDomainChrSpicevmcTypeToString(dev->data.spicevmc));
5403 5404
        break;

5405 5406 5407 5408 5409 5410 5411 5412 5413 5414
    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;

5415
    default:
5416 5417 5418
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported chardev '%s'"),
                       virDomainChrTypeToString(dev->type));
5419
        goto error;
5420 5421
    }

5422
    if (virBufferCheckError(&buf) < 0)
5423 5424 5425 5426
        goto error;

    return virBufferContentAndReset(&buf);

5427
 error:
5428 5429 5430 5431 5432
    virBufferFreeAndReset(&buf);
    return NULL;
}


5433 5434
static char *
qemuBuildChrArgStr(virDomainChrSourceDefPtr dev, const char *prefix)
5435 5436 5437 5438 5439 5440
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

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

5441
    switch ((virDomainChrType)dev->type) {
5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458
    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:
5459
        virBufferAsprintf(&buf, "file:%s", dev->data.file.path);
5460 5461 5462
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
5463
        virBufferAsprintf(&buf, "pipe:%s", dev->data.file.path);
5464 5465 5466 5467 5468 5469
        break;

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

5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481
    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";

5482
        virBufferAsprintf(&buf, "udp:%s:%s@%s:%s",
5483
                          connectHost,
5484
                          dev->data.udp.connectService,
5485 5486
                          bindHost,
                          bindService);
5487
        break;
5488
    }
5489 5490
    case VIR_DOMAIN_CHR_TYPE_TCP:
        if (dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET) {
5491
            virBufferAsprintf(&buf, "telnet:%s:%s%s",
5492 5493 5494 5495
                              dev->data.tcp.host,
                              dev->data.tcp.service,
                              dev->data.tcp.listen ? ",server,nowait" : "");
        } else {
5496
            virBufferAsprintf(&buf, "tcp:%s:%s%s",
5497 5498 5499 5500 5501 5502 5503
                              dev->data.tcp.host,
                              dev->data.tcp.service,
                              dev->data.tcp.listen ? ",server,nowait" : "");
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
5504
        virBufferAsprintf(&buf, "unix:%s%s",
5505 5506 5507
                          dev->data.nix.path,
                          dev->data.nix.listen ? ",server,nowait" : "");
        break;
5508

5509
    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
5510
    case VIR_DOMAIN_CHR_TYPE_SPICEPORT:
5511
    case VIR_DOMAIN_CHR_TYPE_NMDM:
5512
    case VIR_DOMAIN_CHR_TYPE_LAST:
5513
        break;
5514 5515
    }

5516
    if (virBufferCheckError(&buf) < 0)
5517 5518 5519 5520
        goto error;

    return virBufferContentAndReset(&buf);

5521
 error:
5522 5523 5524 5525 5526
    virBufferFreeAndReset(&buf);
    return NULL;
}


5527 5528
static char *
qemuBuildVirtioSerialPortDevStr(virDomainChrDefPtr dev,
5529
                                virQEMUCapsPtr qemuCaps)
5530 5531
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5532 5533
    switch (dev->deviceType) {
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
5534
        virBufferAddLit(&buf, "virtconsole");
5535 5536 5537 5538
        break;
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
        /* Legacy syntax  '-device spicevmc' */
        if (dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5539
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC)) {
5540 5541 5542 5543 5544 5545
            virBufferAddLit(&buf, "spicevmc");
        } else {
            virBufferAddLit(&buf, "virtserialport");
        }
        break;
    default:
5546 5547
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Cannot use virtio serial for parallel/serial devices"));
5548 5549
        return NULL;
    }
5550

5551
    if (dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
5552
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW &&
5553
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
5554 5555 5556 5557
        /* Check it's a virtio-serial address */
        if (dev->info.type !=
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_SERIAL)
        {
5558 5559
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("virtio serial device has invalid address type"));
5560 5561 5562
            goto error;
        }

5563
        virBufferAsprintf(&buf,
5564 5565 5566
                          ",bus=" QEMU_VIRTIO_SERIAL_PREFIX "%d.%d",
                          dev->info.addr.vioserial.controller,
                          dev->info.addr.vioserial.bus);
5567
        virBufferAsprintf(&buf,
5568 5569 5570 5571
                          ",nr=%d",
                          dev->info.addr.vioserial.port);
    }

5572 5573
    if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
        dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5574 5575
        dev->target.name &&
        STRNEQ(dev->target.name, "com.redhat.spice.0")) {
5576 5577 5578
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported spicevmc target name '%s'"),
                       dev->target.name);
5579 5580
        goto error;
    }
5581 5582 5583

    if (!(dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
          dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5584
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC))) {
5585
        virBufferAsprintf(&buf, ",chardev=char%s,id=%s",
5586
                          dev->info.alias, dev->info.alias);
5587 5588 5589
        if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL) {
            virBufferAsprintf(&buf, ",name=%s", dev->target.name
                              ? dev->target.name : "com.redhat.spice.0");
5590
        }
5591 5592
    } else {
        virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
5593
    }
5594
    if (virBufferCheckError(&buf) < 0)
5595 5596 5597 5598
        goto error;

    return virBufferContentAndReset(&buf);

5599
 error:
5600 5601 5602 5603
    virBufferFreeAndReset(&buf);
    return NULL;
}

5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623
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);
5624
    if (virBufferCheckError(&buf) < 0)
5625 5626 5627 5628
        goto error;

    return virBufferContentAndReset(&buf);

5629
 error:
5630 5631 5632 5633
    virBufferFreeAndReset(&buf);
    return NULL;
}

5634 5635 5636 5637 5638 5639 5640

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

5644
    switch ((virDomainRNGBackend) dev->backend) {
5645 5646 5647 5648
    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 "
5649
                             "backend"));
5650 5651 5652
            goto cleanup;
        }

5653 5654
        virBufferAsprintf(&buf, "rng-random,id=%s,filename=%s",
                          dev->info.alias, dev->source.file);
5655 5656 5657 5658 5659 5660

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

    case VIR_DOMAIN_RNG_BACKEND_EGD:
5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677

        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);
5678 5679 5680 5681 5682 5683 5684 5685
        break;

    case VIR_DOMAIN_RNG_BACKEND_LAST:
        break;
    }

    ret = 0;

5686
 cleanup:
5687
    virBufferFreeAndReset(&buf);
5688
    VIR_FREE(backend);
5689 5690 5691 5692 5693 5694
    return ret;
}


static int
qemuBuildRNGDeviceArgs(virCommandPtr cmd,
5695
                       virDomainDefPtr def,
5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709
                       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;
    }

5710 5711 5712 5713
    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);
5714 5715
    else if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
        virBufferAsprintf(&buf, "virtio-rng-device,rng=%s", dev->info.alias);
5716 5717
    else
        virBufferAsprintf(&buf, "virtio-rng-pci,rng=%s", dev->info.alias);
5718

5719 5720 5721 5722 5723 5724 5725 5726
    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");
    }

5727
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
5728 5729 5730 5731 5732 5733 5734
        goto cleanup;

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

    ret = 0;

5735
 cleanup:
5736 5737 5738 5739 5740
    virBufferFreeAndReset(&buf);
    return ret;
}


E
Eric Blake 已提交
5741
static char *qemuBuildTPMBackendStr(const virDomainDef *def,
5742 5743 5744
                                    virQEMUCapsPtr qemuCaps,
                                    const char *emulator)
{
E
Eric Blake 已提交
5745
    const virDomainTPMDef *tpm = def->tpm;
5746 5747
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const char *type = virDomainTPMBackendTypeToString(tpm->type);
5748 5749
    char *cancel_path;
    const char *tpmdev;
5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773

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

5774
    if (virBufferCheckError(&buf) < 0)
5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790
        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 已提交
5791
static char *qemuBuildTPMDevStr(const virDomainDef *def,
5792 5793 5794 5795
                                virQEMUCapsPtr qemuCaps,
                                const char *emulator)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
E
Eric Blake 已提交
5796
    const virDomainTPMDef *tpm = def->tpm;
5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809
    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);

5810
    if (virBufferCheckError(&buf) < 0)
5811 5812 5813 5814 5815 5816 5817 5818 5819 5820
        goto error;

    return virBufferContentAndReset(&buf);

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


5821 5822 5823 5824 5825 5826
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))
5827
        return NULL;
5828 5829 5830 5831 5832

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

    /* 0:Vendor */
    if (def->bios_vendor)
5833
        virBufferAsprintf(&buf, ",vendor=%s", def->bios_vendor);
5834 5835
    /* 0:BIOS Version */
    if (def->bios_version)
5836
        virBufferAsprintf(&buf, ",version=%s", def->bios_version);
5837 5838
    /* 0:BIOS Release Date */
    if (def->bios_date)
5839
        virBufferAsprintf(&buf, ",date=%s", def->bios_date);
5840 5841
    /* 0:System BIOS Major Release and 0:System BIOS Minor Release */
    if (def->bios_release)
5842
        virBufferAsprintf(&buf, ",release=%s", def->bios_release);
5843

5844
    if (virBufferCheckError(&buf) < 0)
5845 5846 5847 5848
        goto error;

    return virBufferContentAndReset(&buf);

5849
 error:
5850
    virBufferFreeAndReset(&buf);
5851
    return NULL;
5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867
}

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)
5868
        virBufferAsprintf(&buf, ",manufacturer=%s",
5869 5870 5871
                          def->system_manufacturer);
     /* 1:Product Name */
    if (def->system_product)
5872
        virBufferAsprintf(&buf, ",product=%s", def->system_product);
5873 5874
    /* 1:Version */
    if (def->system_version)
5875
        virBufferAsprintf(&buf, ",version=%s", def->system_version);
5876 5877
    /* 1:Serial Number */
    if (def->system_serial)
5878
        virBufferAsprintf(&buf, ",serial=%s", def->system_serial);
5879 5880
    /* 1:UUID */
    if (def->system_uuid && !skip_uuid)
5881
        virBufferAsprintf(&buf, ",uuid=%s", def->system_uuid);
5882 5883
    /* 1:SKU Number */
    if (def->system_sku)
5884
        virBufferAsprintf(&buf, ",sku=%s", def->system_sku);
5885 5886
    /* 1:Family */
    if (def->system_family)
5887
        virBufferAsprintf(&buf, ",family=%s", def->system_family);
5888

5889
    if (virBufferCheckError(&buf) < 0)
5890 5891 5892 5893
        goto error;

    return virBufferContentAndReset(&buf);

5894
 error:
5895
    virBufferFreeAndReset(&buf);
5896
    return NULL;
5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917
}

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;

5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936
        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;
5937
        }
5938

5939 5940 5941
        now += def->data.variable.adjustment;
        gmtime_r(&now, &nowbits);

5942 5943 5944 5945 5946 5947 5948 5949
        /* 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;

5950
        virBufferAsprintf(&buf, "base=%d-%02d-%02dT%02d:%02d:%02d",
5951 5952 5953 5954 5955 5956 5957 5958 5959
                          nowbits.tm_year + 1900,
                          nowbits.tm_mon + 1,
                          nowbits.tm_mday,
                          nowbits.tm_hour,
                          nowbits.tm_min,
                          nowbits.tm_sec);
    }   break;

    default:
5960 5961 5962
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported clock offset '%s'"),
                       virDomainClockOffsetTypeToString(def->offset));
5963 5964 5965 5966
        goto error;
    }

    /* Look for an 'rtc' timer element, and add in appropriate clock= and driftfix= */
5967
    size_t i;
5968 5969 5970 5971 5972 5973
    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:
5974 5975 5976
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer track '%s'"),
                               virDomainTimerTrackTypeToString(def->timers[i]->track));
5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997
                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:
5998 5999 6000
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->timers[i]->tickpolicy));
6001 6002 6003 6004 6005 6006
                goto error;
            }
            break; /* no need to check other timers - there is only one rtc */
        }
    }

6007
    if (virBufferCheckError(&buf) < 0)
6008 6009 6010 6011
        goto error;

    return virBufferContentAndReset(&buf);

6012
 error:
6013 6014 6015 6016 6017 6018
    virBufferFreeAndReset(&buf);
    return NULL;
}


static int
E
Eric Blake 已提交
6019 6020
qemuBuildCpuArgStr(virQEMUDriverPtr driver,
                   const virDomainDef *def,
6021
                   const char *emulator,
6022
                   virQEMUCapsPtr qemuCaps,
6023
                   virArch hostarch,
6024
                   char **opt,
6025 6026
                   bool *hasHwVirt,
                   bool migrating)
6027
{
6028
    virCPUDefPtr host = NULL;
6029
    virCPUDefPtr guest = NULL;
6030
    virCPUDefPtr cpu = NULL;
6031
    size_t ncpus = 0;
6032
    char **cpus = NULL;
6033
    const char *default_model;
6034
    virCPUDataPtr data = NULL;
6035
    bool have_cpu = false;
6036
    char *compare_msg = NULL;
6037 6038
    int ret = -1;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
6039
    size_t i;
6040
    virCapsPtr caps = NULL;
6041 6042 6043

    *hasHwVirt = false;

6044 6045 6046 6047 6048
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

    host = caps->host.cpu;

6049
    if (def->os.arch == VIR_ARCH_I686)
6050 6051 6052 6053
        default_model = "qemu32";
    else
        default_model = "qemu64";

6054 6055
    if (def->cpu &&
        (def->cpu->mode != VIR_CPU_MODE_CUSTOM || def->cpu->model)) {
6056 6057 6058
        virCPUCompareResult cmp;
        const char *preferred;

6059
        if (!host ||
J
Jiri Denemark 已提交
6060
            !host->model ||
6061
            (ncpus = virQEMUCapsGetCPUDefinitions(qemuCaps, &cpus)) == 0) {
6062 6063
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("CPU specification not supported by hypervisor"));
6064 6065 6066
            goto cleanup;
        }

6067 6068 6069 6070 6071 6072 6073 6074
        if (!(cpu = virCPUDefCopy(def->cpu)))
            goto cleanup;

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

6075
        cmp = cpuGuestData(host, cpu, &data, &compare_msg);
6076 6077
        switch (cmp) {
        case VIR_CPU_COMPARE_INCOMPATIBLE:
6078
            if (compare_msg) {
6079 6080 6081
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("guest and host CPU are not compatible: %s"),
                               compare_msg);
6082
            } else {
6083 6084
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("guest CPU is not compatible with host CPU"));
6085
            }
6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096
            /* fall through */
        case VIR_CPU_COMPARE_ERROR:
            goto cleanup;

        default:
            break;
        }

        /* Only 'svm' requires --enable-nesting. The nested
         * 'vmx' patches now simply hook off the CPU features
         */
6097 6098 6099 6100 6101 6102 6103
        if (def->os.arch == VIR_ARCH_X86_64 ||
            def->os.arch == VIR_ARCH_I686) {
            int hasSVM = cpuHasFeature(data, "svm");
            if (hasSVM < 0)
                goto cleanup;
            *hasHwVirt = hasSVM > 0 ? true : false;
        }
6104

6105 6106
        if (cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH) {
            const char *mode = virCPUModeTypeToString(cpu->mode);
6107
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CPU_HOST)) {
6108 6109 6110
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("CPU mode '%s' is not supported by QEMU"
                                 " binary"), mode);
6111 6112 6113
                goto cleanup;
            }
            if (def->virtType != VIR_DOMAIN_VIRT_KVM) {
6114 6115 6116
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("CPU mode '%s' is only supported with kvm"),
                               mode);
6117 6118 6119 6120
                goto cleanup;
            }
            virBufferAddLit(&buf, "host");
        } else {
6121
            if (VIR_ALLOC(guest) < 0)
6122 6123 6124
                goto cleanup;
            if (VIR_STRDUP(guest->vendor_id, cpu->vendor_id) < 0)
                goto cleanup;
6125

6126
            guest->arch = host->arch;
6127 6128
            if (cpu->match == VIR_CPU_MATCH_MINIMUM)
                preferred = host->model;
6129
            else
6130
                preferred = cpu->model;
6131

6132 6133
            guest->type = VIR_CPU_TYPE_GUEST;
            guest->fallback = cpu->fallback;
6134
            if (cpuDecode(guest, data, (const char **)cpus, ncpus, preferred) < 0)
6135 6136 6137
                goto cleanup;

            virBufferAdd(&buf, guest->model, -1);
6138 6139
            if (guest->vendor_id)
                virBufferAsprintf(&buf, ",vendor=%s", guest->vendor_id);
6140 6141 6142 6143 6144 6145 6146 6147 6148
            for (i = 0; i < guest->nfeatures; i++) {
                char sign;
                if (guest->features[i].policy == VIR_CPU_FEATURE_DISABLE)
                    sign = '-';
                else
                    sign = '+';

                virBufferAsprintf(&buf, ",%c%s", sign, guest->features[i].name);
            }
6149
        }
6150
        have_cpu = true;
6151
    } else {
6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163
        /*
         * 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
         */
6164
        if (def->os.arch == VIR_ARCH_I686 &&
6165
            ((hostarch == VIR_ARCH_X86_64 &&
6166
              strstr(emulator, "kvm")) ||
6167 6168 6169 6170 6171 6172
             strstr(emulator, "x86_64"))) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }
    }

6173
    /* Handle paravirtual timers  */
6174
    for (i = 0; i < def->clock.ntimers; i++) {
6175 6176 6177 6178 6179 6180
        virDomainTimerDefPtr timer = def->clock.timers[i];

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

        if (timer->name == VIR_DOMAIN_TIMER_NAME_KVMCLOCK) {
6181 6182
            virBufferAsprintf(&buf, "%s,%ckvmclock",
                              have_cpu ? "" : default_model,
6183 6184 6185 6186 6187 6188
                              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 已提交
6189
            have_cpu = true;
6190
        }
6191 6192
    }

6193 6194
    if (def->apic_eoi) {
        char sign;
J
Ján Tomko 已提交
6195
        if (def->apic_eoi == VIR_TRISTATE_SWITCH_ON)
6196 6197 6198 6199 6200 6201 6202
            sign = '+';
        else
            sign = '-';

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

6206 6207
    if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK]) {
        char sign;
J
Ján Tomko 已提交
6208
        if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK] == VIR_TRISTATE_SWITCH_ON)
6209 6210 6211 6212 6213 6214 6215 6216 6217 6218
            sign = '+';
        else
            sign = '-';

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

J
Ján Tomko 已提交
6219
    if (def->features[VIR_DOMAIN_FEATURE_HYPERV] == VIR_TRISTATE_SWITCH_ON) {
6220 6221 6222 6223 6224 6225
        if (!have_cpu) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }

        for (i = 0; i < VIR_DOMAIN_HYPERV_LAST; i++) {
6226
            switch ((virDomainHyperv) i) {
6227
            case VIR_DOMAIN_HYPERV_RELAXED:
6228
            case VIR_DOMAIN_HYPERV_VAPIC:
J
Ján Tomko 已提交
6229
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
6230 6231 6232 6233
                    virBufferAsprintf(&buf, ",hv_%s",
                                      virDomainHypervTypeToString(i));
                break;

6234
            case VIR_DOMAIN_HYPERV_SPINLOCKS:
J
Ján Tomko 已提交
6235
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
6236 6237
                    virBufferAsprintf(&buf, ",hv_spinlocks=0x%x",
                                      def->hyperv_spinlocks);
6238 6239
                break;

6240
            /* coverity[dead_error_begin] */
6241 6242 6243 6244 6245 6246
            case VIR_DOMAIN_HYPERV_LAST:
                break;
            }
        }
    }

6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265
    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;

            case VIR_DOMAIN_KVM_LAST:
                break;
            }
        }
    }

6266
    if (virBufferCheckError(&buf) < 0)
6267
        goto cleanup;
6268 6269 6270 6271 6272

    *opt = virBufferContentAndReset(&buf);

    ret = 0;

6273
 cleanup:
6274
    VIR_FREE(compare_msg);
J
Jiri Denemark 已提交
6275
    cpuDataFree(data);
6276
    virCPUDefFree(guest);
6277
    virCPUDefFree(cpu);
6278
    virObjectUnref(caps);
6279 6280 6281
    return ret;
}

6282 6283
static int
qemuBuildObsoleteAccelArg(virCommandPtr cmd,
E
Eric Blake 已提交
6284
                          const virDomainDef *def,
6285 6286
                          virQEMUCapsPtr qemuCaps)
{
6287 6288 6289 6290
    bool disableKQEMU = false;
    bool enableKQEMU = false;
    bool disableKVM = false;
    bool enableKVM = false;
6291 6292 6293 6294

    switch (def->virtType) {
    case VIR_DOMAIN_VIRT_QEMU:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KQEMU))
6295
            disableKQEMU = true;
6296
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM))
6297
            disableKVM = true;
6298 6299 6300 6301
        break;

    case VIR_DOMAIN_VIRT_KQEMU:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM))
6302
            disableKVM = true;
6303 6304

        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_KQEMU)) {
6305
            enableKQEMU = true;
6306 6307 6308 6309 6310 6311 6312 6313 6314
        } 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))
6315
            disableKQEMU = true;
6316 6317

        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_KVM)) {
6318
            enableKVM = true;
6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348
        } 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;
}

6349 6350
static int
qemuBuildMachineArgStr(virCommandPtr cmd,
E
Eric Blake 已提交
6351
                       const virDomainDef *def,
6352
                       virQEMUCapsPtr qemuCaps)
6353
{
6354 6355
    bool obsoleteAccel = false;

6356 6357 6358 6359 6360 6361 6362
    /* 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;

6363
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_OPT)) {
6364 6365 6366 6367
        /* 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);
6368 6369 6370 6371
        if (def->mem.dump_core) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("dump-guest-core is not available "
                             "with this QEMU binary"));
6372 6373
            return -1;
        }
6374 6375 6376 6377 6378 6379 6380 6381

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

6382
        obsoleteAccel = true;
6383 6384
    } else {
        virBuffer buf = VIR_BUFFER_INITIALIZER;
6385 6386

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

6389 6390 6391 6392 6393 6394 6395
        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 已提交
6396 6397 6398 6399
        /* 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))
6400
            virBufferAddLit(&buf, ",usb=off");
L
Li Zhang 已提交
6401

6402 6403 6404 6405 6406
        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"));
6407
                virBufferFreeAndReset(&buf);
6408 6409 6410 6411
                return -1;
            }

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

6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426
        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;
            }
        }

6427
        virCommandAddArgBuffer(cmd, &buf);
6428 6429
    }

6430 6431 6432 6433
    if (obsoleteAccel &&
        qemuBuildObsoleteAccelArg(cmd, def, qemuCaps) < 0)
        return -1;

6434 6435 6436
    return 0;
}

6437
static char *
E
Eric Blake 已提交
6438
qemuBuildSmpArgStr(const virDomainDef *def,
6439
                   virQEMUCapsPtr qemuCaps)
6440 6441 6442
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

6443
    virBufferAsprintf(&buf, "%u", def->vcpus);
6444

6445
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SMP_TOPOLOGY)) {
6446
        if (def->vcpus != def->maxvcpus)
6447
            virBufferAsprintf(&buf, ",maxcpus=%u", def->maxvcpus);
6448 6449 6450
        /* 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) {
6451 6452 6453
            virBufferAsprintf(&buf, ",sockets=%u", def->cpu->sockets);
            virBufferAsprintf(&buf, ",cores=%u", def->cpu->cores);
            virBufferAsprintf(&buf, ",threads=%u", def->cpu->threads);
6454 6455
        }
        else {
6456 6457 6458
            virBufferAsprintf(&buf, ",sockets=%u", def->maxvcpus);
            virBufferAsprintf(&buf, ",cores=%u", 1);
            virBufferAsprintf(&buf, ",threads=%u", 1);
6459 6460 6461 6462
        }
    } else if (def->vcpus != def->maxvcpus) {
        virBufferFreeAndReset(&buf);
        /* FIXME - consider hot-unplugging cpus after boot for older qemu */
6463 6464 6465
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("setting current vcpu count less than maximum is "
                         "not supported with this QEMU binary"));
6466 6467 6468
        return NULL;
    }

6469
    if (virBufferCheckError(&buf) < 0)
6470 6471 6472 6473 6474
        return NULL;

    return virBufferContentAndReset(&buf);
}

B
Bharata B Rao 已提交
6475
static int
6476 6477
qemuBuildNumaArgStr(virQEMUDriverConfigPtr cfg,
                    const virDomainDef *def,
6478 6479
                    virCommandPtr cmd,
                    virQEMUCapsPtr qemuCaps)
B
Bharata B Rao 已提交
6480
{
6481
    size_t i, j;
B
Bharata B Rao 已提交
6482
    virBuffer buf = VIR_BUFFER_INITIALIZER;
6483
    virDomainHugePagePtr master_hugepage = NULL;
6484
    char *cpumask = NULL, *tmpmask = NULL, *next = NULL;
6485
    char *nodemask = NULL;
6486
    char *mem_path = NULL;
6487
    int ret = -1;
B
Bharata B Rao 已提交
6488

6489
    if (virDomainNumatuneHasPerNodeBinding(def->numatune) &&
6490 6491
        !(virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE))) {
6492 6493 6494 6495 6496 6497
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Per-node memory binding is not supported "
                         "with this QEMU"));
        goto cleanup;
    }

6498 6499 6500 6501 6502 6503 6504 6505
    if (def->mem.nhugepages && def->mem.hugepages[0].size &&
        !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;
    }

B
Bharata B Rao 已提交
6506
    for (i = 0; i < def->cpu->ncells; i++) {
M
Martin Kletzander 已提交
6507 6508 6509
        int cellmem = VIR_DIV_UP(def->cpu->cells[i].mem, 1024);
        def->cpu->cells[i].mem = cellmem * 1024;

6510
        VIR_FREE(cpumask);
6511
        VIR_FREE(nodemask);
M
Martin Kletzander 已提交
6512 6513 6514 6515

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

6516 6517
        if (strchr(cpumask, ',') &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_NUMA)) {
M
Martin Kletzander 已提交
6518 6519 6520 6521 6522 6523
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disjoint NUMA cpu ranges are not supported "
                             "with this QEMU"));
            goto cleanup;
        }

6524 6525
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE)) {
6526
            virDomainNumatuneMemMode mode;
6527
            virDomainHugePagePtr hugepage = NULL;
6528 6529 6530 6531 6532
            const char *policy = NULL;

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

6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591
            /* 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;
            }

            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);
            } else {
                virBufferAddLit(&buf, "memory-backend-ram");
            }

            virBufferAsprintf(&buf, ",size=%dM,id=ram-node%zu", cellmem, i);
6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619

            if (virDomainNumatuneMaybeFormatNodeset(def->numatune, NULL,
                                                    &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);
            }

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

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

6623 6624 6625 6626 6627 6628 6629
        for (tmpmask = cpumask; tmpmask; tmpmask = next) {
            if ((next = strchr(tmpmask, ',')))
                *(next++) = '\0';
            virBufferAddLit(&buf, ",cpus=");
            virBufferAdd(&buf, tmpmask, -1);
        }

6630 6631
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE)) {
6632 6633 6634 6635
            virBufferAsprintf(&buf, ",memdev=ram-node%zu", i);
        } else {
            virBufferAsprintf(&buf, ",mem=%d", cellmem);
        }
B
Bharata B Rao 已提交
6636 6637 6638

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

6641
 cleanup:
6642
    VIR_FREE(cpumask);
6643
    VIR_FREE(nodemask);
6644
    VIR_FREE(mem_path);
B
Bharata B Rao 已提交
6645
    virBufferFreeAndReset(&buf);
6646
    return ret;
B
Bharata B Rao 已提交
6647
}
6648

6649

6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673
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)
6674
            goto error;
6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727

        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)) {
6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738
        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);
            }

6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751
        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));
        }

6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766
        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)
6767
                virCommandAddEnvPair(cmd, "SASL_CONF_PATH", cfg->vncSASLdir);
6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782

            /* 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)
6783
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
6784 6785 6786 6787 6788
    else
        virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");

    return 0;

6789
 error:
6790 6791 6792 6793 6794 6795
    VIR_FREE(netAddr);
    virBufferFreeAndReset(&opt);
    return -1;
}


6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809
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;
6810
    size_t i;
6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832

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

6833 6834 6835 6836 6837 6838 6839 6840 6841 6842
    if (cfg->spiceSASL) {
        virBufferAddLit(&opt, ",sasl");

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

        /* TODO: Support ACLs later */
    }

6843 6844 6845 6846 6847 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 6875 6876 6877 6878 6879 6880 6881 6882 6883
    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:
6884
            virBufferAddLit(&opt, ",agent-mouse=off");
6885 6886
            break;
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_CLIENT:
6887
            virBufferAddLit(&opt, ",agent-mouse=on");
6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900
            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");

6901 6902
    if (tlsPort > 0)
        virBufferAsprintf(&opt, ",x509-dir=%s", cfg->spiceTLSx509certdir);
6903 6904 6905

    switch (defaultMode) {
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
6906
        virBufferAddLit(&opt, ",tls-channel=default");
6907 6908
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
6909
        virBufferAddLit(&opt, ",plaintext-channel=default");
6910 6911 6912 6913 6914 6915
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
        /* nothing */
        break;
    }

6916
    for (i = 0; i < VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_LAST; i++) {
6917
        switch (graphics->data.spice.channels[i]) {
6918
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
6919
            if (tlsPort <= 0) {
6920 6921
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice secure channels set in XML configuration, "
6922
                                 "but TLS port is not provided"));
6923 6924 6925 6926 6927
                goto error;
            }
            virBufferAsprintf(&opt, ",tls-channel=%s",
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
6928

6929
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
6930 6931 6932 6933 6934 6935
            if (port <= 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice insecure channels set in XML "
                                 "configuration, but plain port is not provided"));
                goto error;
            }
6936 6937 6938
            virBufferAsprintf(&opt, ",plaintext-channel=%s",
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963

        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;
            }
6964 6965
        }
    }
6966

6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977
    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 已提交
6978
                          virTristateSwitchTypeToString(graphics->data.spice.playback));
6979 6980 6981
    if (graphics->data.spice.streaming)
        virBufferAsprintf(&opt, ",streaming-video=%s",
                          virDomainGraphicsSpiceStreamingModeTypeToString(graphics->data.spice.streaming));
J
Ján Tomko 已提交
6982
    if (graphics->data.spice.copypaste == VIR_TRISTATE_BOOL_NO)
6983
        virBufferAddLit(&opt, ",disable-copy-paste");
J
Ján Tomko 已提交
6984
    if (graphics->data.spice.filetransfer == VIR_TRISTATE_BOOL_NO) {
6985 6986 6987 6988 6989 6990 6991 6992
        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");
        }
    }
6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013

    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;

7014
 error:
7015 7016 7017 7018 7019
    VIR_FREE(netAddr);
    virBufferFreeAndReset(&opt);
    return -1;
}

7020
static int
7021
qemuBuildGraphicsCommandLine(virQEMUDriverConfigPtr cfg,
7022 7023
                             virCommandPtr cmd,
                             virDomainDefPtr def,
7024
                             virQEMUCapsPtr qemuCaps,
7025
                             virDomainGraphicsDefPtr graphics)
7026
{
7027
    switch ((virDomainGraphicsType) graphics->type) {
7028
    case VIR_DOMAIN_GRAPHICS_TYPE_SDL:
7029 7030
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_0_10) &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SDL)) {
7031
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
7032 7033
                           _("sdl not supported by '%s'"), def->emulator);
            return -1;
7034 7035
        }

7036
        if (graphics->data.sdl.xauth)
7037
            virCommandAddEnvPair(cmd, "XAUTHORITY", graphics->data.sdl.xauth);
7038
        if (graphics->data.sdl.display)
7039
            virCommandAddEnvPair(cmd, "DISPLAY", graphics->data.sdl.display);
7040 7041
        if (graphics->data.sdl.fullscreen)
            virCommandAddArg(cmd, "-full-screen");
7042

7043 7044 7045 7046
        /* 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
         */
7047 7048
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
        virCommandAddEnvPassBlockSUID(cmd, "SDL_AUDIODRIVER", NULL);
B
Bharata B Rao 已提交
7049

7050 7051 7052
        /* 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 :-( */
7053
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SDL))
7054
            virCommandAddArg(cmd, "-sdl");
7055

7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066
        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:
7067 7068 7069
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported graphics type '%s'"),
                       virDomainGraphicsTypeToString(graphics->type));
7070
        return -1;
7071
    }
7072

7073 7074
    return 0;
}
7075

M
Michele Paolino 已提交
7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145
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;
}

7146 7147 7148 7149 7150 7151 7152 7153 7154
static int
qemuBuildInterfaceCommandLine(virCommandPtr cmd,
                              virQEMUDriverPtr driver,
                              virConnectPtr conn,
                              virDomainDefPtr def,
                              virDomainNetDefPtr net,
                              virQEMUCapsPtr qemuCaps,
                              int vlan,
                              int bootindex,
7155
                              virNetDevVPortProfileOp vmop,
7156
                              bool standalone)
7157 7158 7159
{
    int ret = -1;
    char *nic = NULL, *host = NULL;
7160 7161 7162 7163 7164 7165
    int *tapfd = NULL;
    int tapfdSize = 0;
    int *vhostfd = NULL;
    int vhostfdSize = 0;
    char **tapfdName = NULL;
    char **vhostfdName = NULL;
7166
    int actualType = virDomainNetGetActualType(net);
7167
    size_t i;
7168

M
Michele Paolino 已提交
7169 7170 7171
    if (actualType == VIR_DOMAIN_NET_TYPE_VHOSTUSER)
        return qemuBuildVhostuserCommandLine(cmd, def, net, qemuCaps);

7172 7173 7174 7175 7176 7177 7178 7179 7180 7181
    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;

7182 7183 7184 7185 7186 7187 7188 7189 7190 7191
    /* 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;
    }

7192 7193
    if (actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
        actualType == VIR_DOMAIN_NET_TYPE_BRIDGE) {
7194 7195 7196 7197 7198
        tapfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = 1;

        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0 ||
7199
            VIR_ALLOC_N(tapfdName, tapfdSize) < 0)
7200 7201
            goto cleanup;

7202 7203
        memset(tapfd, -1, tapfdSize * sizeof(tapfd[0]));

7204 7205
        if (qemuNetworkIfaceConnect(def, conn, driver, net,
                                    qemuCaps, tapfd, &tapfdSize) < 0)
7206 7207
            goto cleanup;
    } else if (actualType == VIR_DOMAIN_NET_TYPE_DIRECT) {
7208
        if (VIR_ALLOC(tapfd) < 0 || VIR_ALLOC(tapfdName) < 0)
7209 7210 7211 7212 7213
            goto cleanup;
        tapfdSize = 1;
        tapfd[0] = qemuPhysIfaceConnect(def, driver, net,
                                        qemuCaps, vmop);
        if (tapfd[0] < 0)
7214 7215 7216
            goto cleanup;
    }

7217 7218 7219 7220 7221
    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) {
7222 7223
        /* Attempt to use vhost-net mode for these types of
           network device */
7224 7225 7226 7227 7228
        vhostfdSize = net->driver.virtio.queues;
        if (!vhostfdSize)
            vhostfdSize = 1;

        if (VIR_ALLOC_N(vhostfd, vhostfdSize) < 0 ||
7229
            VIR_ALLOC_N(vhostfdName, vhostfdSize))
7230 7231
            goto cleanup;

7232 7233
        memset(vhostfd, -1, vhostfdSize * sizeof(vhostfd[0]));

7234
        if (qemuOpenVhostNet(def, net, qemuCaps, vhostfd, &vhostfdSize) < 0)
7235 7236 7237
            goto cleanup;
    }

7238
    for (i = 0; i < tapfdSize; i++) {
M
Michal Privoznik 已提交
7239 7240 7241
        if (virSecurityManagerSetTapFDLabel(driver->securityManager,
                                            def, tapfd[i]) < 0)
            goto cleanup;
7242 7243
        virCommandPassFD(cmd, tapfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
7244
        if (virAsprintf(&tapfdName[i], "%d", tapfd[i]) < 0)
7245 7246 7247
            goto cleanup;
    }

7248
    for (i = 0; i < vhostfdSize; i++) {
7249 7250
        virCommandPassFD(cmd, vhostfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
7251
        if (virAsprintf(&vhostfdName[i], "%d", vhostfd[i]) < 0)
7252
            goto cleanup;
7253 7254 7255 7256 7257 7258 7259 7260 7261 7262
    }

    /* 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
     */
7263
    if (qemuDomainSupportsNetdev(def, qemuCaps, net)) {
7264
        if (!(host = qemuBuildHostNetStr(net, driver,
7265 7266 7267
                                         ',', vlan,
                                         tapfdName, tapfdSize,
                                         vhostfdName, vhostfdSize)))
7268 7269 7270
            goto cleanup;
        virCommandAddArgList(cmd, "-netdev", host, NULL);
    }
7271
    if (qemuDomainSupportsNicdev(def, qemuCaps, net)) {
7272
        if (!(nic = qemuBuildNicDevStr(def, net, vlan, bootindex,
7273
                                       vhostfdSize, qemuCaps)))
7274 7275 7276 7277 7278 7279 7280
            goto cleanup;
        virCommandAddArgList(cmd, "-device", nic, NULL);
    } else {
        if (!(nic = qemuBuildNicStr(net, "nic,", vlan)))
            goto cleanup;
        virCommandAddArgList(cmd, "-net", nic, NULL);
    }
7281
    if (!qemuDomainSupportsNetdev(def, qemuCaps, net)) {
7282
        if (!(host = qemuBuildHostNetStr(net, driver,
7283 7284 7285
                                         ',', vlan,
                                         tapfdName, tapfdSize,
                                         vhostfdName, vhostfdSize)))
7286 7287 7288 7289 7290
            goto cleanup;
        virCommandAddArgList(cmd, "-net", host, NULL);
    }

    ret = 0;
7291
 cleanup:
7292 7293
    if (ret < 0) {
        virErrorPtr saved_err = virSaveLastError();
7294
        virDomainConfNWFilterTeardown(net);
7295 7296 7297
        virSetError(saved_err);
        virFreeError(saved_err);
    }
7298
    for (i = 0; tapfd && i < tapfdSize && tapfd[i] >= 0; i++) {
7299 7300
        if (ret < 0)
            VIR_FORCE_CLOSE(tapfd[i]);
7301 7302
        if (tapfdName)
            VIR_FREE(tapfdName[i]);
7303
    }
7304
    for (i = 0; vhostfd && i < vhostfdSize && vhostfd[i] >= 0; i++) {
7305 7306
        if (ret < 0)
            VIR_FORCE_CLOSE(vhostfd[i]);
7307 7308
        if (vhostfdName)
            VIR_FREE(vhostfdName[i]);
7309 7310 7311
    }
    VIR_FREE(tapfd);
    VIR_FREE(vhostfd);
7312 7313 7314 7315 7316 7317 7318
    VIR_FREE(nic);
    VIR_FREE(host);
    VIR_FREE(tapfdName);
    VIR_FREE(vhostfdName);
    return ret;
}

7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330
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);
7331
    VIR_FREE(devstr);
7332 7333 7334
    return 0;
}

7335 7336 7337 7338
qemuBuildCommandLineCallbacks buildCommandLineCallbacks = {
    .qemuGetSCSIDeviceSgName = virSCSIDeviceGetSgName,
};

7339 7340 7341 7342 7343 7344 7345 7346 7347
/*
 * 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,
7348
                     virQEMUDriverPtr driver,
7349 7350 7351
                     virDomainDefPtr def,
                     virDomainChrSourceDefPtr monitor_chr,
                     bool monitor_json,
7352
                     virQEMUCapsPtr qemuCaps,
7353 7354 7355
                     const char *migrateFrom,
                     int migrateFd,
                     virDomainSnapshotObjPtr snapshot,
7356
                     virNetDevVPortProfileOp vmop,
C
Cole Robinson 已提交
7357 7358
                     qemuBuildCommandLineCallbacksPtr callbacks,
                     bool standalone)
7359
{
7360
    virErrorPtr originalError = NULL;
7361
    size_t i, j;
7362 7363 7364 7365 7366 7367 7368
    const char *emulator;
    char uuid[VIR_UUID_STRING_BUFLEN];
    char *cpu;
    char *smp;
    int last_good_net = -1;
    bool hasHwVirt = false;
    virCommandPtr cmd = NULL;
7369
    bool allowReboot = true;
7370
    bool emitBootindex = false;
7371 7372 7373
    int sdl = 0;
    int vnc = 0;
    int spice = 0;
7374
    int usbcontroller = 0;
M
Martin Kletzander 已提交
7375
    int actualSerials = 0;
7376
    bool usblegacy = false;
7377
    bool mlock = false;
7378 7379 7380
    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
7381 7382 7383 7384 7385
         * 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,
7386 7387 7388 7389 7390 7391
        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,
    };
7392
    virArch hostarch = virArchFromHost();
7393
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
7394

7395
    VIR_DEBUG("conn=%p driver=%p def=%p mon=%p json=%d "
7396
              "qemuCaps=%p migrateFrom=%s migrateFD=%d "
7397 7398
              "snapshot=%p vmop=%d",
              conn, driver, def, monitor_chr, monitor_json,
7399
              qemuCaps, migrateFrom, migrateFd, snapshot, vmop);
7400

7401 7402 7403 7404
    virUUIDFormat(def->uuid, uuid);

    emulator = def->emulator;

7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415
    if (!cfg->privileged) {
        /* If we have no cgroups than we can have no tunings that
         * require them */

        if (def->mem.hard_limit || def->mem.soft_limit ||
            def->mem.min_guarantee || def->mem.swap_hard_limit) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Memory tuning is not available in session mode"));
            goto error;
        }

7416
        if (def->blkio.weight) {
7417 7418 7419 7420 7421
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Block I/O tuning is not available in session mode"));
            goto error;
        }

7422
        if (def->cputune.sharesSpecified || def->cputune.period ||
7423 7424 7425 7426 7427 7428 7429 7430
            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;
        }
    }

7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444
    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;
        }
    }

7445 7446 7447 7448
    /*
     * do not use boot=on for drives when not using KVM since this
     * is not supported at all in upstream QEmu.
     */
7449
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM) &&
7450
        (def->virtType == VIR_DOMAIN_VIRT_QEMU))
7451
        virQEMUCapsClear(qemuCaps, QEMU_CAPS_DRIVE_BOOT);
7452 7453

    cmd = virCommandNew(emulator);
7454

7455
    virCommandAddEnvPassCommon(cmd);
7456

7457
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME)) {
7458
        virCommandAddArg(cmd, "-name");
7459
        if (cfg->setProcessName &&
7460
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME_PROCESS)) {
7461 7462 7463 7464
            virCommandAddArgFormat(cmd, "%s,process=qemu:%s",
                                   def->name, def->name);
        } else {
            virCommandAddArg(cmd, def->name);
7465 7466
        }
    }
C
Cole Robinson 已提交
7467 7468 7469 7470

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

7471 7472
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_FIPS))
        virCommandAddArg(cmd, "-enable-fips");
7473

7474
    if (qemuBuildMachineArgStr(cmd, def, qemuCaps) < 0)
7475
        goto error;
7476

7477
    if (qemuBuildCpuArgStr(driver, def, emulator, qemuCaps,
7478
                           hostarch, &cpu, &hasHwVirt, !!migrateFrom) < 0)
7479
        goto error;
7480

7481 7482 7483 7484
    if (cpu) {
        virCommandAddArgList(cmd, "-cpu", cpu, NULL);
        VIR_FREE(cpu);

7485
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NESTING) &&
7486 7487
            hasHwVirt)
            virCommandAddArg(cmd, "-enable-nesting");
7488
    }
7489

7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502
    if (def->os.loader) {
        virCommandAddArg(cmd, "-bios");
        virCommandAddArg(cmd, def->os.loader);
    }

    /* Set '-m MB' based on maxmem, because the lower 'memory' limit
     * is set post-startup using the balloon driver. If balloon driver
     * is not supported, then they're out of luck anyway.  Update the
     * XML to reflect our rounding.
     */
    virCommandAddArg(cmd, "-m");
    def->mem.max_balloon = VIR_DIV_UP(def->mem.max_balloon, 1024) * 1024;
    virCommandAddArgFormat(cmd, "%llu", def->mem.max_balloon / 1024);
7503
    if (def->mem.nhugepages && !def->mem.hugepages[0].size) {
7504 7505 7506
        char *mem_path;

        if (!cfg->nhugetlbfs) {
7507
            virReportError(VIR_ERR_INTERNAL_ERROR,
7508 7509
                           "%s", _("hugetlbfs filesystem is not mounted "
                                   "or disabled by administrator config"));
7510 7511
            goto error;
        }
7512
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MEM_PATH)) {
7513 7514 7515 7516 7517
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("hugepage backing not supported by '%s'"),
                           def->emulator);
            goto error;
        }
7518 7519 7520 7521 7522

        if (!(mem_path = qemuGetDefaultHugepath(cfg->hugetlbfs,
                                                cfg->nhugetlbfs)))
            goto error;

7523
        virCommandAddArgList(cmd, "-mem-prealloc", "-mem-path",
7524 7525
                             mem_path, NULL);
        VIR_FREE(mem_path);
7526 7527
    }

7528 7529 7530 7531 7532 7533 7534 7535 7536 7537
    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");
    }
7538
    mlock = def->mem.locked;
7539

7540
    virCommandAddArg(cmd, "-smp");
7541
    if (!(smp = qemuBuildSmpArgStr(def, qemuCaps)))
7542 7543 7544 7545
        goto error;
    virCommandAddArg(cmd, smp);
    VIR_FREE(smp);

J
John Ferlan 已提交
7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558
    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);
        }
    }

7559
    if (def->cpu && def->cpu->ncells)
7560
        if (qemuBuildNumaArgStr(cfg, def, cmd, qemuCaps) < 0)
7561 7562
            goto error;

7563
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_UUID))
7564 7565 7566 7567
        virCommandAddArgList(cmd, "-uuid", uuid, NULL);
    if (def->virtType == VIR_DOMAIN_VIRT_XEN ||
        STREQ(def->os.type, "xen") ||
        STREQ(def->os.type, "linux")) {
7568
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DOMID)) {
7569 7570
            virCommandAddArg(cmd, "-domid");
            virCommandAddArgFormat(cmd, "%d", def->id);
7571
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_XEN_DOMID)) {
7572 7573 7574 7575 7576 7577 7578
            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);
7579 7580 7581 7582
            goto error;
        }
    }

7583 7584 7585 7586 7587
    if ((def->os.smbios_mode != VIR_DOMAIN_SMBIOS_NONE) &&
        (def->os.smbios_mode != VIR_DOMAIN_SMBIOS_EMULATE)) {
        virSysinfoDefPtr source = NULL;
        bool skip_uuid = false;

7588
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SMBIOS_TYPE)) {
7589 7590 7591
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("the QEMU binary %s does not support smbios settings"),
                           emulator);
7592 7593 7594
            goto error;
        }

7595 7596 7597
        /* should we really error out or just warn in those cases ? */
        if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_HOST) {
            if (driver->hostsysinfo == NULL) {
7598
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7599
                               _("Host SMBIOS information is not available"));
7600
                goto error;
7601
            }
7602 7603 7604 7605 7606 7607 7608 7609 7610
            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;
7611
            }
7612 7613
            source = def->sysinfo;
            /* domain_conf guaranteed that system_uuid matches guest uuid. */
7614
        }
7615 7616
        if (source != NULL) {
            char *smbioscmd;
7617

7618 7619 7620 7621
            smbioscmd = qemuBuildSmbiosBiosStr(source);
            if (smbioscmd != NULL) {
                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
7622
            }
7623 7624 7625 7626
            smbioscmd = qemuBuildSmbiosSystemStr(source, skip_uuid);
            if (smbioscmd != NULL) {
                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
7627
            }
7628
        }
7629
    }
7630

7631 7632 7633 7634 7635 7636 7637
    /*
     * 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...
     */
7638
    if (!def->graphics) {
7639
        virCommandAddArg(cmd, "-nographic");
7640

7641
        if (cfg->nogfxAllowHostAudio)
7642
            virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
7643 7644 7645 7646
        else
            virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");
    }

7647
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7648
        /* Disable global config files and default devices */
7649
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_USER_CONFIG))
7650
            virCommandAddArg(cmd, "-no-user-config");
7651
        else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NODEFCONFIG))
7652 7653
            virCommandAddArg(cmd, "-nodefconfig");
        virCommandAddArg(cmd, "-nodefaults");
7654 7655
    }

7656
    /* Serial graphics adapter */
J
Ján Tomko 已提交
7657
    if (def->os.bios.useserial == VIR_TRISTATE_BOOL_YES) {
7658
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7659 7660 7661 7662
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("qemu does not support -device"));
            goto error;
        }
7663
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SGA)) {
7664 7665 7666 7667 7668 7669 7670
            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"));
7671 7672
            goto error;
        }
7673
        virCommandAddArgList(cmd, "-device", "sga", NULL);
7674 7675
    }

7676 7677 7678
    if (monitor_chr) {
        char *chrdev;
        /* Use -chardev if it's available */
7679
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV)) {
J
Jim Fehlig 已提交
7680

7681 7682
            virCommandAddArg(cmd, "-chardev");
            if (!(chrdev = qemuBuildChrChardevStr(monitor_chr, "monitor",
7683
                                                  qemuCaps)))
7684 7685 7686
                goto error;
            virCommandAddArg(cmd, chrdev);
            VIR_FREE(chrdev);
7687

7688 7689 7690 7691 7692 7693 7694 7695
            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,";
7696

7697 7698 7699 7700 7701
            virCommandAddArg(cmd, "-monitor");
            if (!(chrdev = qemuBuildChrArgStr(monitor_chr, prefix)))
                goto error;
            virCommandAddArg(cmd, chrdev);
            VIR_FREE(chrdev);
7702 7703 7704
        }
    }

7705
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC)) {
7706
        char *rtcopt;
7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717
        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;
7718

7719 7720 7721
        case VIR_DOMAIN_CLOCK_OFFSET_UTC:
            /* Nothing, its the default */
            break;
7722

7723 7724 7725 7726
        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported clock offset '%s'"),
                           virDomainClockOffsetTypeToString(def->clock.offset));
7727
            goto error;
7728 7729 7730 7731 7732
        }
    }
    if (def->clock.offset == VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE &&
        def->clock.data.timezone) {
        virCommandAddEnvPair(cmd, "TZ", def->clock.data.timezone);
7733 7734
    }

7735
    for (i = 0; i < def->clock.ntimers; i++) {
7736
        switch ((virDomainTimerNameType) def->clock.timers[i]->name) {
7737 7738 7739 7740 7741 7742
        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;
7743

7744
        case VIR_DOMAIN_TIMER_NAME_KVMCLOCK:
7745 7746 7747
        case VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK:
            /* Timers above are handled when building -cpu.  */
        case VIR_DOMAIN_TIMER_NAME_LAST:
7748 7749 7750 7751 7752 7753
            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) */
7754
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC_TD_HACK)) {
7755 7756 7757 7758
                switch (def->clock.timers[i]->tickpolicy) {
                case -1:
                case VIR_DOMAIN_TIMER_TICKPOLICY_DELAY:
                    /* the default - do nothing */
7759
                    break;
7760 7761
                case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
                    virCommandAddArg(cmd, "-rtc-td-hack");
7762
                    break;
7763 7764 7765 7766 7767
                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 已提交
7768
                    goto error;
7769
                }
7770
            } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC)
7771 7772 7773 7774 7775 7776 7777 7778 7779
                       && (def->clock.timers[i]->tickpolicy
                           != VIR_DOMAIN_TIMER_TICKPOLICY_DELAY)
                       && (def->clock.timers[i]->tickpolicy != -1)) {
                /* a non-default rtc policy was given, but there is no
                   way to implement it in this version of qemu */
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
                goto error;
7780
            }
7781
            break;
7782

7783 7784 7785 7786 7787 7788
        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. */
7789 7790 7791 7792
                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))
7793 7794 7795
                    virCommandAddArg(cmd, "-no-kvm-pit-reinjection");
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
7796 7797
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_KVM_PIT) ||
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY)) {
7798
                    /* do nothing - this is default for kvm-pit */
7799
                } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_TDF)) {
7800 7801
                    /* -tdf switches to 'catchup' with userspace pit. */
                    virCommandAddArg(cmd, "-tdf");
7802
                } else {
7803 7804 7805 7806
                    /* can't catchup if we have neither pit mode */
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("unsupported pit tickpolicy '%s'"),
                                   virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
7807 7808 7809
                    goto error;
                }
                break;
7810 7811 7812 7813 7814 7815 7816
            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;
7817
            }
7818
            break;
7819

7820 7821 7822 7823 7824 7825 7826
        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"! */
7827

7828
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_HPET)) {
7829 7830 7831 7832 7833 7834 7835
                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,
7836 7837
                                   "%s", _("hpet timer is not supported"));
                    goto error;
7838 7839
                }
            }
7840 7841 7842
            break;
        }
    }
7843

7844 7845 7846 7847 7848 7849 7850 7851 7852
    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");
        }
    }
7853

7854 7855 7856 7857
    /* 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.
     */
7858 7859
    if (monitor_json && allowReboot &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_SHUTDOWN)) {
7860
        virCommandAddArg(cmd, "-no-shutdown");
7861
    }
7862

7863
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_ACPI)) {
J
Ján Tomko 已提交
7864
        if (def->features[VIR_DOMAIN_FEATURE_ACPI] != VIR_TRISTATE_SWITCH_ON)
7865 7866
            virCommandAddArg(cmd, "-no-acpi");
    }
7867

7868
    if (def->pm.s3) {
7869
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DISABLE_S3)) {
7870 7871 7872
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("setting ACPI S3 not supported"));
            goto error;
7873
        }
7874 7875
        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "PIIX4_PM.disable_s3=%d",
J
Ján Tomko 已提交
7876
                               def->pm.s3 == VIR_TRISTATE_BOOL_NO);
7877 7878 7879
    }

    if (def->pm.s4) {
7880
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DISABLE_S4)) {
7881
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
7882 7883 7884 7885 7886
                           "%s", _("setting ACPI S4 not supported"));
            goto error;
        }
        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "PIIX4_PM.disable_s4=%d",
J
Ján Tomko 已提交
7887
                               def->pm.s4 == VIR_TRISTATE_BOOL_NO);
7888
    }
7889

7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901
    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
             */
7902
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX)) {
7903
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7904
                               _("hypervisor lacks deviceboot feature"));
7905 7906
                goto error;
            }
7907
            emitBootindex = true;
7908
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX) &&
J
Ján Tomko 已提交
7909
                   (def->os.bootmenu != VIR_TRISTATE_BOOL_YES ||
7910
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_MENU))) {
7911 7912
            emitBootindex = true;
        }
7913

7914 7915
        if (!emitBootindex) {
            char boot[VIR_DOMAIN_BOOT_LAST+1];
7916

7917
            for (i = 0; i < def->os.nBootDevs; i++) {
7918 7919 7920
                switch (def->os.bootDevs[i]) {
                case VIR_DOMAIN_BOOT_CDROM:
                    boot[i] = 'd';
7921
                    break;
7922 7923
                case VIR_DOMAIN_BOOT_FLOPPY:
                    boot[i] = 'a';
7924
                    break;
7925 7926 7927 7928 7929 7930 7931 7932
                case VIR_DOMAIN_BOOT_DISK:
                    boot[i] = 'c';
                    break;
                case VIR_DOMAIN_BOOT_NET:
                    boot[i] = 'n';
                    break;
                default:
                    boot[i] = 'c';
7933
                    break;
7934
                }
7935
            }
7936
            boot[def->os.nBootDevs] = '\0';
7937

7938 7939
            virBufferAsprintf(&boot_buf, "%s", boot);
            boot_nparams++;
7940 7941
        }

7942
        if (def->os.bootmenu) {
7943
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_MENU)) {
7944 7945
                if (boot_nparams++)
                    virBufferAddChar(&boot_buf, ',');
7946

J
Ján Tomko 已提交
7947
                if (def->os.bootmenu == VIR_TRISTATE_BOOL_YES)
7948
                    virBufferAddLit(&boot_buf, "menu=on");
7949
                else
7950
                    virBufferAddLit(&boot_buf, "menu=off");
7951 7952 7953 7954 7955 7956 7957
            } 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");
            }
        }
7958

7959
        if (def->os.bios.rt_set) {
7960
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_REBOOT_TIMEOUT)) {
7961 7962 7963
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("reboot timeout is not supported "
                                 "by this QEMU binary"));
7964
                virBufferFreeAndReset(&boot_buf);
7965
                goto error;
7966 7967 7968 7969 7970 7971 7972 7973
            }

            if (boot_nparams++)
                virBufferAddChar(&boot_buf, ',');

            virBufferAsprintf(&boot_buf,
                              "reboot-timeout=%d",
                              def->os.bios.rt_delay);
7974 7975
        }

7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990
        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);
        }

7991 7992 7993 7994 7995 7996
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_STRICT)) {
            if (boot_nparams++)
                virBufferAddChar(&boot_buf, ',');
            virBufferAddLit(&boot_buf, "strict=on");
        }

7997 7998
        if (boot_nparams > 0) {
            virCommandAddArg(cmd, "-boot");
7999

8000
            if (virBufferCheckError(&boot_buf) < 0)
8001 8002
                goto error;

8003 8004
            if (boot_nparams < 2 || emitBootindex) {
                virCommandAddArgBuffer(cmd, &boot_buf);
8005
                virBufferFreeAndReset(&boot_buf);
8006
            } else {
8007
                char *str = virBufferContentAndReset(&boot_buf);
8008 8009
                virCommandAddArgFormat(cmd,
                                       "order=%s",
8010 8011
                                       str);
                VIR_FREE(str);
8012 8013 8014
            }
        }

8015 8016 8017 8018 8019 8020
        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 已提交
8021 8022 8023 8024 8025 8026 8027 8028 8029
        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;
            }
        }
8030 8031 8032
    } else {
        virCommandAddArgList(cmd, "-bootloader", def->os.bootloader, NULL);
    }
8033

8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080
    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);
        }
    }

8081
    for (i = 0; i < def->ndisks; i++) {
8082
        virDomainDiskDefPtr disk = def->disks[i];
8083

8084 8085
        if (disk->src->driverName != NULL &&
            !STREQ(disk->src->driverName, "qemu")) {
8086 8087
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported driver name '%s' for disk '%s'"),
8088
                           disk->src->driverName, disk->src->path);
8089 8090 8091 8092
            goto error;
        }
    }

8093
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8094 8095 8096
        for (j = 0; j < ARRAY_CARDINALITY(contOrder); j++) {
            for (i = 0; i < def->ncontrollers; i++) {
                virDomainControllerDefPtr cont = def->controllers[i];
8097

8098 8099
                if (cont->type != contOrder[j])
                    continue;
8100

8101 8102 8103 8104 8105 8106 8107
                /* 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 已提交
8108
                /* Skip pci-root/pcie-root */
8109
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
L
Laine Stump 已提交
8110 8111
                    (cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT ||
                     cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT)) {
8112 8113 8114
                    continue;
                }

8115 8116
                /* Only recent QEMU implements a SATA (AHCI) controller */
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_SATA) {
8117
                    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_ICH9_AHCI)) {
8118 8119 8120
                        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                       _("SATA is not supported with this "
                                         "QEMU binary"));
8121
                        goto error;
8122 8123 8124
                    } else if (cont->idx == 0 && qemuDomainMachineIsQ35(def)) {
                        /* first SATA controller on Q35 machines is implicit */
                        continue;
8125 8126
                    } else {
                        char *devstr;
8127

8128 8129
                        virCommandAddArg(cmd, "-device");
                        if (!(devstr = qemuBuildControllerDevStr(def, cont,
8130
                                                                 qemuCaps, NULL)))
8131
                            goto error;
8132 8133 8134

                        virCommandAddArg(cmd, devstr);
                        VIR_FREE(devstr);
8135
                    }
8136 8137
                } else if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
                           cont->model == -1 &&
8138
                           !qemuDomainMachineIsQ35(def) &&
8139
                           (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PIIX3_USB_UHCI) ||
8140 8141
                            (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_OHCI) &&
                             def->os.arch == VIR_ARCH_PPC64))) {
8142 8143 8144 8145
                    if (usblegacy) {
                        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                       _("Multiple legacy USB controllers are "
                                         "not supported"));
8146 8147
                        goto error;
                    }
8148 8149 8150 8151 8152
                    usblegacy = true;
                } else {
                    virCommandAddArg(cmd, "-device");

                    char *devstr;
8153
                    if (!(devstr = qemuBuildControllerDevStr(def, cont, qemuCaps,
8154 8155 8156 8157 8158
                                                             &usbcontroller)))
                        goto error;

                    virCommandAddArg(cmd, devstr);
                    VIR_FREE(devstr);
8159
                }
8160
            }
8161 8162
        }
    }
8163

8164
    if (usbcontroller == 0 && !qemuDomainMachineIsQ35(def))
8165
        virCommandAddArg(cmd, "-usb");
8166

8167
    for (i = 0; i < def->nhubs; i++) {
8168 8169
        virDomainHubDefPtr hub = def->hubs[i];
        char *optstr;
8170

8171
        virCommandAddArg(cmd, "-device");
8172
        if (!(optstr = qemuBuildHubDevStr(def, hub, qemuCaps)))
8173 8174 8175 8176
            goto error;
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);
    }
8177

8178
    /* If QEMU supports -drive param instead of old -hda, -hdb, -cdrom .. */
8179
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE)) {
8180
        int bootCD = 0, bootFloppy = 0, bootDisk = 0;
8181

8182
        if ((virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) || emitBootindex)) {
8183 8184
            /* bootDevs will get translated into either bootindex=N or boot=on
             * depending on what qemu supports */
8185
            for (i = 0; i < def->os.nBootDevs; i++) {
8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196
                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;
                }
8197
            }
8198
        }
8199

8200
        for (i = 0; i < def->ndisks; i++) {
8201 8202 8203
            char *optstr;
            int bootindex = 0;
            virDomainDiskDefPtr disk = def->disks[i];
8204
            bool withDeviceArg = false;
8205
            bool deviceFlagMasked = false;
8206

8207 8208 8209
            /* Unless we have -device, then USB disks need special
               handling */
            if ((disk->bus == VIR_DOMAIN_DISK_BUS_USB) &&
8210
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8211 8212
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                    virCommandAddArg(cmd, "-usbdevice");
8213
                    virCommandAddArgFormat(cmd, "disk:%s", disk->src->path);
8214 8215 8216
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported usb disk type for '%s'"),
8217
                                   disk->src->path);
8218
                    goto error;
8219
                }
8220
                continue;
8221
            }
8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236

            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;
8237
            }
8238 8239 8240 8241

            virCommandAddArg(cmd, "-drive");

            /* Unfortunately it is not possible to use
8242
               -device for floppies, xen PV, or SD
8243 8244 8245
               devices. Fortunately, those don't need
               static PCI addresses, so we don't really
               care that we can't use -device */
8246
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8247 8248
                if (disk->bus != VIR_DOMAIN_DISK_BUS_XEN &&
                    disk->bus != VIR_DOMAIN_DISK_BUS_SD) {
8249
                    withDeviceArg = true;
8250
                } else {
8251
                    virQEMUCapsClear(qemuCaps, QEMU_CAPS_DEVICE);
8252 8253
                    deviceFlagMasked = true;
                }
8254
            }
8255 8256
            optstr = qemuBuildDriveStr(conn, disk,
                                       emitBootindex ? false : !!bootindex,
8257
                                       qemuCaps);
8258
            if (deviceFlagMasked)
8259
                virQEMUCapsSet(qemuCaps, QEMU_CAPS_DEVICE);
8260 8261 8262 8263 8264 8265 8266 8267 8268
            if (!optstr)
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);

            if (!emitBootindex)
                bootindex = 0;
            else if (disk->info.bootIndex)
                bootindex = disk->info.bootIndex;
8269

8270 8271 8272 8273 8274 8275 8276
            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 已提交
8277

8278 8279 8280 8281 8282 8283 8284 8285 8286
                    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 已提交
8287

8288
                    if (!(optstr = qemuBuildDriveDevStr(def, disk, bootindex,
8289
                                                        qemuCaps)))
8290 8291 8292 8293
                        goto error;
                    virCommandAddArg(cmd, optstr);
                    VIR_FREE(optstr);
                }
E
Eric Blake 已提交
8294
            }
8295 8296
        }
    } else {
8297
        for (i = 0; i < def->ndisks; i++) {
8298 8299 8300 8301
            char dev[NAME_MAX];
            char *file;
            const char *fmt;
            virDomainDiskDefPtr disk = def->disks[i];
E
Eric Blake 已提交
8302

8303
            if ((disk->src->type == VIR_STORAGE_TYPE_BLOCK) &&
8304
                (disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN)) {
8305
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8306 8307
                               _("tray status 'open' is invalid for "
                                 "block type disk"));
E
Eric Blake 已提交
8308 8309 8310
                goto error;
            }

8311 8312 8313
            if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                    virCommandAddArg(cmd, "-usbdevice");
8314
                    virCommandAddArgFormat(cmd, "disk:%s", disk->src->path);
8315 8316 8317
                } else {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported usb disk type for '%s'"),
8318
                                   disk->src->path);
E
Eric Blake 已提交
8319 8320
                    goto error;
                }
8321
                continue;
E
Eric Blake 已提交
8322
            }
8323 8324 8325

            if (STREQ(disk->dst, "hdc") &&
                disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
8326
                if (disk->src->path) {
8327 8328 8329
                    snprintf(dev, NAME_MAX, "-%s", "cdrom");
                } else {
                    continue;
E
Eric Blake 已提交
8330 8331
                }
            } else {
8332 8333 8334 8335 8336 8337 8338 8339
                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 已提交
8340 8341
            }

8342
            if (disk->src->type == VIR_STORAGE_TYPE_DIR) {
8343
                /* QEMU only supports magic FAT format for now */
8344 8345
                if (disk->src->format > 0 &&
                    disk->src->format != VIR_STORAGE_FILE_FAT) {
8346 8347
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unsupported disk driver type for '%s'"),
8348
                                   virStorageFileFormatTypeToString(disk->src->format));
8349 8350
                    goto error;
                }
8351
                if (!disk->src->readonly) {
8352 8353 8354 8355 8356 8357 8358 8359
                    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 已提交
8360

8361
                if (virAsprintf(&file, fmt, disk->src) < 0)
8362
                    goto error;
8363
            } else if (disk->src->type == VIR_STORAGE_TYPE_NETWORK) {
8364 8365
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("network disks are only supported with -drive"));
8366
                goto error;
8367
            } else {
8368
                if (VIR_STRDUP(file, disk->src->path) < 0) {
8369
                    goto error;
8370
                }
E
Eric Blake 已提交
8371 8372
            }

8373 8374 8375 8376 8377 8378 8379 8380
            /* 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 已提交
8381 8382 8383
        }
    }

8384
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV)) {
8385
        for (i = 0; i < def->nfss; i++) {
8386 8387
            char *optstr;
            virDomainFSDefPtr fs = def->fss[i];
8388

8389
            virCommandAddArg(cmd, "-fsdev");
8390
            if (!(optstr = qemuBuildFSStr(fs, qemuCaps)))
8391 8392 8393
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
8394

8395
            virCommandAddArg(cmd, "-device");
8396
            if (!(optstr = qemuBuildFSDevStr(def, fs, qemuCaps)))
8397 8398 8399 8400 8401 8402 8403 8404 8405
                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;
8406 8407 8408
        }
    }

8409
    if (!def->nnets) {
8410
        /* If we have -device, then we set -nodefault already */
8411
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
8412
            virCommandAddArgList(cmd, "-net", "none", NULL);
8413
    } else {
8414
        int bootNet = 0;
8415

8416 8417 8418 8419
        if (emitBootindex) {
            /* convert <boot dev='network'/> to bootindex since we didn't emit
             * -boot n
             */
8420
            for (i = 0; i < def->os.nBootDevs; i++) {
8421 8422 8423 8424
                if (def->os.bootDevs[i] == VIR_DOMAIN_BOOT_NET) {
                    bootNet = i + 1;
                    break;
                }
8425 8426 8427
            }
        }

8428
        for (i = 0; i < def->nnets; i++) {
8429
            virDomainNetDefPtr net = def->nets[i];
8430
            int vlan;
8431

8432
            /* VLANs are not used with -netdev, so don't record them */
8433
            if (qemuDomainSupportsNetdev(def, qemuCaps, net))
8434
                vlan = -1;
8435 8436
            else
                vlan = i;
8437

8438
            if (qemuBuildInterfaceCommandLine(cmd, driver, conn, def, net,
8439 8440
                                              qemuCaps, vlan, bootNet, vmop,
                                              standalone) < 0)
8441 8442 8443
                goto error;
            last_good_net = i;
            bootNet = 0;
8444 8445 8446
        }
    }

8447 8448 8449 8450 8451
    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;
8452
        virBuffer opt = VIR_BUFFER_INITIALIZER;
8453
        const char *database;
8454

8455 8456 8457 8458
        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) {
8459
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8460 8461 8462
                           _("this QEMU binary lacks multiple smartcard "
                             "support"));
            virBufferFreeAndReset(&opt);
8463 8464 8465
            goto error;
        }

8466 8467
        switch (smartcard->type) {
        case VIR_DOMAIN_SMARTCARD_TYPE_HOST:
8468 8469
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
8470 8471 8472 8473
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard host "
                                 "mode support"));
                goto error;
8474 8475
            }

8476 8477
            virBufferAddLit(&opt, "ccid-card-emulated,backend=nss-emulated");
            break;
8478

8479
        case VIR_DOMAIN_SMARTCARD_TYPE_HOST_CERTIFICATES:
8480 8481
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
8482 8483 8484 8485 8486
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard host "
                                 "mode support"));
                goto error;
            }
8487

8488 8489 8490 8491
            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);
8492
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
8493 8494
                                   _("invalid certificate name: %s"),
                                   smartcard->data.cert.file[j]);
8495 8496
                    goto error;
                }
8497
                virBufferAsprintf(&opt, ",cert%zu=%s", j + 1,
8498 8499 8500 8501 8502 8503 8504 8505
                                  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);
8506 8507
                    goto error;
                }
8508 8509 8510
                database = smartcard->data.cert.database;
            } else {
                database = VIR_DOMAIN_SMARTCARD_DEFAULT_DATABASE;
8511
            }
8512
            virBufferAsprintf(&opt, ",db=%s", database);
8513
            break;
8514

8515
        case VIR_DOMAIN_SMARTCARD_TYPE_PASSTHROUGH:
8516 8517
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_PASSTHRU)) {
8518 8519 8520 8521
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard "
                                 "passthrough mode support"));
                goto error;
8522 8523
            }

8524 8525 8526
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&smartcard->data.passthru,
                                                  smartcard->info.alias,
8527
                                                  qemuCaps))) {
8528 8529
                virBufferFreeAndReset(&opt);
                goto error;
8530
            }
8531 8532
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
8533

8534 8535 8536
            virBufferAsprintf(&opt, "ccid-card-passthru,chardev=char%s",
                              smartcard->info.alias);
            break;
8537

8538 8539 8540 8541 8542
        default:
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unexpected smartcard type %d"),
                           smartcard->type);
            virBufferFreeAndReset(&opt);
8543 8544
            goto error;
        }
8545 8546 8547 8548
        virCommandAddArg(cmd, "-device");
        virBufferAsprintf(&opt, ",id=%s,bus=ccid0.0", smartcard->info.alias);
        virCommandAddArgBuffer(cmd, &opt);
    }
8549

8550 8551 8552
    for (i = 0; i < def->nserials; i++) {
        virDomainChrDefPtr serial = def->serials[i];
        char *devstr;
8553

8554 8555 8556
        if (serial->source.type == VIR_DOMAIN_CHR_TYPE_SPICEPORT && !spice)
            continue;

8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574
        /* 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);
8575
        }
8576
        actualSerials++;
8577
    }
8578

M
Martin Kletzander 已提交
8579 8580 8581 8582
    /* If we have -device, then we set -nodefault already */
    if (!actualSerials && !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
            virCommandAddArgList(cmd, "-serial", "none", NULL);

8583 8584
    if (!def->nparallels) {
        /* If we have -device, then we set -nodefault already */
8585
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
8586 8587
            virCommandAddArgList(cmd, "-parallel", "none", NULL);
    } else {
8588
        for (i = 0; i < def->nparallels; i++) {
8589 8590
            virDomainChrDefPtr parallel = def->parallels[i];
            char *devstr;
8591

8592
            /* Use -chardev with -device if they are available */
8593 8594
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) &&
                virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8595 8596 8597
                virCommandAddArg(cmd, "-chardev");
                if (!(devstr = qemuBuildChrChardevStr(&parallel->source,
                                                      parallel->info.alias,
8598
                                                      qemuCaps)))
8599 8600 8601
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
8602

8603 8604
                if (qemuBuildChrDeviceCommandLine(cmd, def, parallel, qemuCaps) < 0)
                    goto error;
8605 8606 8607 8608 8609 8610 8611
            } else {
                virCommandAddArg(cmd, "-parallel");
                if (!(devstr = qemuBuildChrArgStr(&parallel->source, NULL)))
                      goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            }
8612
        }
8613
    }
8614

8615
    for (i = 0; i < def->nchannels; i++) {
8616 8617
        virDomainChrDefPtr channel = def->channels[i];
        char *devstr;
8618

8619 8620
        switch (channel->targetType) {
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_GUESTFWD:
8621 8622
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8623 8624
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("guestfwd requires QEMU to support -chardev & -device"));
8625 8626
                goto error;
            }
8627

8628 8629 8630
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&channel->source,
                                                  channel->info.alias,
8631
                                                  qemuCaps)))
8632 8633 8634 8635
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

8636
            if (qemuBuildChrDeviceStr(&devstr, def, channel, qemuCaps) < 0)
8637
                goto error;
8638 8639
            virCommandAddArgList(cmd, "-netdev", devstr, NULL);
            VIR_FREE(devstr);
8640 8641
            break;

8642
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO:
8643
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8644 8645
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("virtio channel requires QEMU to support -device"));
8646 8647
                goto error;
            }
8648

8649
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC) &&
8650 8651 8652 8653 8654 8655 8656 8657 8658
                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,
8659
                                                      qemuCaps)))
8660 8661 8662
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
8663
            }
8664

8665
            if (qemuBuildChrDeviceCommandLine(cmd, def, channel, qemuCaps) < 0)
8666
                goto error;
8667 8668
            break;
        }
8669
    }
8670

8671
    /* Explicit console devices */
8672
    for (i = 0; i < def->nconsoles; i++) {
8673 8674
        virDomainChrDefPtr console = def->consoles[i];
        char *devstr;
8675

8676
        switch (console->targetType) {
8677 8678
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLP:
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLPLM:
8679
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8680 8681 8682 8683
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("sclp console requires QEMU to support -device"));
                goto error;
            }
8684
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCLP_S390)) {
8685 8686 8687 8688 8689 8690 8691 8692
                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,
8693
                                                  qemuCaps)))
8694 8695 8696 8697
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

8698
            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
8699 8700 8701
                goto error;
            break;

8702
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO:
8703
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8704 8705 8706
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("virtio channel requires QEMU to support -device"));
                goto error;
P
Peng Zhou 已提交
8707 8708
            }

8709 8710 8711
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&console->source,
                                                  console->info.alias,
8712
                                                  qemuCaps)))
8713 8714 8715
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
8716

8717
            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
8718
                goto error;
8719
            break;
8720 8721

        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL:
8722
            break;
8723 8724 8725 8726 8727 8728

        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported console target type %s"),
                           NULLSTR(virDomainChrConsoleTargetTypeToString(console->targetType)));
            goto error;
8729
        }
8730
    }
8731

8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747
    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);
    }

8748
    for (i = 0; i < def->ninputs; i++) {
8749 8750 8751
        virDomainInputDefPtr input = def->inputs[i];

        if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
8752
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8753 8754
                char *optstr;
                virCommandAddArg(cmd, "-device");
8755
                if (!(optstr = qemuBuildUSBInputDevStr(def, input, qemuCaps)))
8756
                    goto error;
8757 8758 8759
                virCommandAddArg(cmd, optstr);
                VIR_FREE(optstr);
            } else {
8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770
                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;
                }
8771 8772
            }
        }
8773
    }
8774

8775
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_0_10) && sdl + vnc + spice > 1) {
8776 8777 8778 8779 8780 8781 8782 8783
        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"));
8784 8785 8786
        goto error;
    }

8787
    for (i = 0; i < def->ngraphics; ++i) {
8788
        if (qemuBuildGraphicsCommandLine(cfg, cmd, def, qemuCaps,
8789 8790 8791
                                         def->graphics[i]) < 0)
            goto error;
    }
8792

8793
    if (def->nvideos > 0) {
8794
        int primaryVideoType = def->videos[0]->type;
8795
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY) &&
8796
             ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VGA &&
8797
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VGA)) ||
8798
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_CIRRUS &&
8799
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_CIRRUS_VGA)) ||
8800
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
8801
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VMWARE_SVGA)) ||
8802
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_QXL &&
8803
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL_VGA)))
8804
           ) {
8805
            for (i = 0; i < def->nvideos; i++) {
8806 8807
                char *str;
                virCommandAddArg(cmd, "-device");
8808
                if (!(str = qemuBuildDeviceVideoStr(def, def->videos[i], qemuCaps, !i)))
8809 8810 8811 8812 8813
                    goto error;

                virCommandAddArg(cmd, str);
                VIR_FREE(str);
            }
8814
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA)) {
8815
            if (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_XEN) {
8816 8817
                /* nothing - vga has no effect on Xen pvfb */
            } else {
8818
                if ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_QXL) &&
8819
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_QXL)) {
8820 8821
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU does not support QXL graphics adapters"));
8822 8823 8824
                    goto error;
                }

8825
                const char *vgastr = qemuVideoTypeToString(primaryVideoType);
8826
                if (!vgastr || STREQ(vgastr, "")) {
8827 8828
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("video type %s is not supported with QEMU"),
8829
                                   virDomainVideoTypeToString(primaryVideoType));
8830 8831 8832 8833
                    goto error;
                }

                virCommandAddArgList(cmd, "-vga", vgastr, NULL);
8834

8835 8836
                if (def->videos[0]->type == VIR_DOMAIN_VIDEO_TYPE_QXL &&
                    (def->videos[0]->vram || def->videos[0]->ram) &&
8837 8838
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
                    const char *dev = (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL_VGA)
8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854
                                       ? "qxl-vga" : "qxl");
                    int ram = def->videos[0]->ram;
                    int vram = def->videos[0]->vram;

                    if (vram > (UINT_MAX / 1024)) {
                        virReportError(VIR_ERR_OVERFLOW,
                               _("value for 'vram' must be less than '%u'"),
                                       UINT_MAX / 1024);
                        goto error;
                    }
                    if (ram > (UINT_MAX / 1024)) {
                        virReportError(VIR_ERR_OVERFLOW,
                           _("value for 'ram' must be less than '%u'"),
                                       UINT_MAX / 1024);
                        goto error;
                    }
8855

8856
                    if (ram) {
E
Eric Blake 已提交
8857
                        virCommandAddArg(cmd, "-global");
8858 8859 8860 8861 8862 8863 8864
                        virCommandAddArgFormat(cmd, "%s.ram_size=%u",
                                               dev, ram * 1024);
                    }
                    if (vram) {
                        virCommandAddArg(cmd, "-global");
                        virCommandAddArgFormat(cmd, "%s.vram_size=%u",
                                               dev, vram * 1024);
8865 8866
                    }
                }
8867
            }
8868 8869

            if (def->nvideos > 1) {
8870
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8871
                    for (i = 1; i < def->nvideos; i++) {
8872 8873 8874 8875 8876 8877 8878 8879 8880 8881
                        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");

8882
                        if (!(str = qemuBuildDeviceVideoStr(def, def->videos[i], qemuCaps, false)))
8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893
                            goto error;

                        virCommandAddArg(cmd, str);
                        VIR_FREE(str);
                    }
                } else {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   "%s", _("only one video card is currently supported"));
                    goto error;
                }
            }
8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910
        } 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:
8911 8912 8913
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("video type %s is not supported with this QEMU"),
                               virDomainVideoTypeToString(def->videos[0]->type));
8914 8915 8916
                goto error;
            }

8917
            if (def->nvideos > 1) {
8918 8919
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("only one video card is currently supported"));
8920 8921 8922 8923 8924 8925
                goto error;
            }
        }

    } else {
        /* If we have -device, then we set -nodefault already */
8926 8927 8928
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_NONE))
8929 8930 8931 8932 8933
            virCommandAddArgList(cmd, "-vga", "none", NULL);
    }

    /* Add sound hardware */
    if (def->nsounds) {
8934
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8935
            for (i = 0; i < def->nsounds; i++) {
8936 8937 8938 8939 8940 8941 8942 8943 8944 8945
                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");
8946
                    if (!(str = qemuBuildSoundDevStr(def, sound, qemuCaps)))
8947 8948 8949
                        goto error;

                    virCommandAddArg(cmd, str);
8950
                    VIR_FREE(str);
8951 8952
                    if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                        sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
8953 8954
                        char *codecstr = NULL;

8955
                        for (j = 0; j < sound->ncodecs; j++) {
8956
                            virCommandAddArg(cmd, "-device");
8957
                            if (!(codecstr = qemuBuildSoundCodecStr(sound, sound->codecs[j], qemuCaps))) {
8958
                                goto error;
8959

8960 8961 8962 8963
                            }
                            virCommandAddArg(cmd, codecstr);
                            VIR_FREE(codecstr);
                        }
8964
                        if (j == 0) {
8965 8966 8967 8968 8969
                            virDomainSoundCodecDef codec = {
                                VIR_DOMAIN_SOUND_CODEC_TYPE_DUPLEX,
                                0
                            };
                            virCommandAddArg(cmd, "-device");
8970
                            if (!(codecstr = qemuBuildSoundCodecStr(sound, &codec, qemuCaps))) {
8971 8972 8973 8974 8975 8976
                                goto error;

                            }
                            virCommandAddArg(cmd, codecstr);
                            VIR_FREE(codecstr);
                        }
8977
                    }
8978 8979 8980 8981 8982
                }
            }
        } else {
            int size = 100;
            char *modstr;
8983
            if (VIR_ALLOC_N(modstr, size+1) < 0)
8984
                goto error;
8985

8986
            for (i = 0; i < def->nsounds && size > 0; i++) {
8987 8988 8989 8990
                virDomainSoundDefPtr sound = def->sounds[i];
                const char *model = virDomainSoundModelTypeToString(sound->model);
                if (!model) {
                    VIR_FREE(modstr);
8991 8992
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("invalid sound model"));
8993 8994
                    goto error;
                }
8995

8996 8997
                if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                    sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
A
Alex Jia 已提交
8998
                    VIR_FREE(modstr);
8999 9000
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("this QEMU binary lacks hda support"));
9001 9002 9003
                    goto error;
                }

9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018
                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;

9019
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9020 9021
            virCommandAddArg(cmd, "-device");

9022
            optstr = qemuBuildWatchdogDevStr(def, watchdog, qemuCaps);
9023 9024 9025 9026 9027 9028 9029
            if (!optstr)
                goto error;
        } else {
            virCommandAddArg(cmd, "-watchdog");

            const char *model = virDomainWatchdogModelTypeToString(watchdog->model);
            if (!model) {
9030 9031
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("missing watchdog model"));
9032 9033 9034
                goto error;
            }

9035 9036
            if (VIR_STRDUP(optstr, model) < 0)
                goto error;
9037 9038 9039 9040 9041 9042 9043 9044 9045
        }
        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) {
9046 9047
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("invalid watchdog action"));
9048 9049 9050 9051 9052
            goto error;
        }
        virCommandAddArgList(cmd, "-watchdog-action", action, NULL);
    }

9053
    /* Add redirected devices */
9054
    for (i = 0; i < def->nredirdevs; i++) {
9055 9056 9057 9058 9059 9060
        virDomainRedirdevDefPtr redirdev = def->redirdevs[i];
        char *devstr;

        virCommandAddArg(cmd, "-chardev");
        if (!(devstr = qemuBuildChrChardevStr(&redirdev->source.chr,
                                              redirdev->info.alias,
9061
                                              qemuCaps))) {
9062 9063 9064 9065 9066 9067
            goto error;
        }

        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);

9068
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
9069 9070 9071
            goto error;

        virCommandAddArg(cmd, "-device");
9072
        if (!(devstr = qemuBuildRedirdevDevStr(def, redirdev, qemuCaps)))
9073 9074 9075 9076 9077
            goto error;
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);
    }

9078
    /* Add host passthrough hardware */
9079
    for (i = 0; i < def->nhostdevs; i++) {
9080 9081 9082
        virDomainHostdevDefPtr hostdev = def->hostdevs[i];
        char *devstr;

9083
        if (hostdev->info->bootIndex) {
9084
            if (hostdev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS ||
9085
                (hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI &&
9086 9087
                 hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
                 hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI)) {
9088
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
9089
                               _("booting from assigned devices is only "
9090
                                 "supported for PCI, USB and SCSI devices"));
9091
                goto error;
9092
            } else {
9093 9094
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
                    if (hostdev->source.subsys.u.pci.backend
9095
                        == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109
                        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;
                        }
                    }
9110 9111
                }
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
9112
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HOST_BOOTINDEX)) {
9113
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
9114 9115
                                   _("booting from assigned USB devices is not "
                                     "supported with this version of qemu"));
9116 9117
                    goto error;
                }
9118 9119 9120 9121 9122 9123 9124
                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;
                }
9125 9126 9127
            }
        }

9128 9129 9130 9131
        /* USB */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {

9132
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9133
                virCommandAddArg(cmd, "-device");
9134
                if (!(devstr = qemuBuildUSBHostdevDevStr(def, hostdev, qemuCaps)))
9135 9136 9137 9138 9139
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
                virCommandAddArg(cmd, "-usbdevice");
9140
                if (!(devstr = qemuBuildUSBHostdevUSBDevStr(hostdev)))
9141 9142 9143 9144 9145 9146 9147 9148 9149
                    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) {
9150
            int backend = hostdev->source.subsys.u.pci.backend;
9151

9152
            if (backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
9153 9154 9155 9156 9157 9158
                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;
                }
9159 9160 9161
                /* VFIO requires all of the guest's memory to be locked
                 * resident */
                mlock = true;
9162 9163
            }

9164
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9165
                char *configfd_name = NULL;
9166
                if ((backend != VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) &&
9167
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_CONFIGFD)) {
9168 9169 9170 9171 9172
                    int configfd = qemuOpenPCIConfig(hostdev);

                    if (configfd >= 0) {
                        if (virAsprintf(&configfd_name, "%d", configfd) < 0) {
                            VIR_FORCE_CLOSE(configfd);
9173
                            goto error;
9174 9175
                        }

9176 9177
                        virCommandPassFD(cmd, configfd,
                                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
9178 9179 9180
                    }
                }
                virCommandAddArg(cmd, "-device");
9181
                devstr = qemuBuildPCIHostdevDevStr(def, hostdev, configfd_name, qemuCaps);
9182 9183 9184 9185 9186
                VIR_FREE(configfd_name);
                if (!devstr)
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
9187
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCIDEVICE)) {
9188
                virCommandAddArg(cmd, "-pcidevice");
9189
                if (!(devstr = qemuBuildPCIHostdevPCIDevStr(hostdev, qemuCaps)))
9190 9191 9192 9193
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
9194 9195
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("PCI device assignment is not supported by this version of qemu"));
9196 9197 9198
                goto error;
            }
        }
9199 9200 9201 9202 9203 9204 9205 9206 9207 9208

        /* 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");
9209
                if (!(drvstr = qemuBuildSCSIHostdevDrvStr(conn, hostdev, qemuCaps, callbacks)))
9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224
                    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;
            }
        }
9225 9226
    }

9227 9228 9229 9230 9231 9232
    /* 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")) {
9233
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_TCP)) {
9234 9235 9236
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("TCP migration is not supported with "
                                       "this QEMU binary"));
9237 9238 9239 9240
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
        } else if (STREQ(migrateFrom, "stdio")) {
9241
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_FD)) {
9242
                virCommandAddArgFormat(cmd, "fd:%d", migrateFd);
9243
                virCommandPassFD(cmd, migrateFd, 0);
9244
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_EXEC)) {
9245 9246
                virCommandAddArg(cmd, "exec:cat");
                virCommandSetInputFD(cmd, migrateFd);
9247
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_KVM_STDIO)) {
9248 9249 9250
                virCommandAddArg(cmd, migrateFrom);
                virCommandSetInputFD(cmd, migrateFd);
            } else {
9251 9252 9253
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("STDIO migration is not supported "
                                       "with this QEMU binary"));
9254 9255 9256
                goto error;
            }
        } else if (STRPREFIX(migrateFrom, "exec")) {
9257
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_EXEC)) {
9258 9259 9260
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("EXEC migration is not supported "
                                       "with this QEMU binary"));
9261 9262 9263 9264
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
        } else if (STRPREFIX(migrateFrom, "fd")) {
9265
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_FD)) {
9266 9267 9268
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("FD migration is not supported "
                                       "with this QEMU binary"));
9269 9270 9271
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
9272
            virCommandPassFD(cmd, migrateFd, 0);
9273
        } else if (STRPREFIX(migrateFrom, "unix")) {
9274
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_QEMU_UNIX)) {
9275 9276 9277
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("UNIX migration is not supported "
                                       "with this QEMU binary"));
9278 9279 9280
                goto error;
            }
            virCommandAddArg(cmd, migrateFrom);
9281
        } else {
9282 9283
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("unknown migration protocol"));
9284 9285 9286
            goto error;
        }
    }
9287 9288 9289 9290 9291 9292 9293

    /* 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
     */
9294 9295
    if (STREQLEN(def->os.machine, "s390-virtio", 10) &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_S390) && def->memballoon)
9296 9297 9298 9299
        def->memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_NONE;

    if (def->memballoon &&
        def->memballoon->model != VIR_DOMAIN_MEMBALLOON_MODEL_NONE) {
9300
        if (def->memballoon->model != VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO) {
9301 9302 9303
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Memory balloon device type '%s' is not supported by this version of qemu"),
                           virDomainMemballoonModelTypeToString(def->memballoon->model));
9304 9305
            goto error;
        }
9306
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
9307 9308 9309
            char *optstr;
            virCommandAddArg(cmd, "-device");

9310
            optstr = qemuBuildMemballoonDevStr(def, def->memballoon, qemuCaps);
9311 9312 9313 9314
            if (!optstr)
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
9315
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BALLOON)) {
9316 9317 9318 9319
            virCommandAddArgList(cmd, "-balloon", "virtio", NULL);
        }
    }

9320
    for (i = 0; i < def->nrngs; i++) {
9321
        /* add the RNG source backend */
9322
        if (qemuBuildRNGBackendArgs(cmd, def->rngs[i], qemuCaps) < 0)
9323 9324 9325
            goto error;

        /* add the device */
9326
        if (qemuBuildRNGDeviceArgs(cmd, def, def->rngs[i], qemuCaps) < 0)
9327 9328 9329
            goto error;
    }

9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353
    if (def->nvram) {
        if (def->os.arch == VIR_ARCH_PPC64 &&
            STREQ(def->os.machine, "pseries")) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_NVRAM)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("nvram device is not supported by "
                                 "this QEMU binary"));
                goto error;
            }

            char *optstr;
            virCommandAddArg(cmd, "-global");
            optstr = qemuBuildNVRAMDevStr(def->nvram);
            if (!optstr)
                goto error;
            if (optstr)
                virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                          _("nvram device is only supported for PPC64"));
            goto error;
        }
    }
9354 9355
    if (snapshot)
        virCommandAddArgList(cmd, "-loadvm", snapshot->def->name, NULL);
9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368

    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] : "");
    }

9369
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SECCOMP_SANDBOX)) {
9370
        if (cfg->seccompSandbox == 0)
9371
            virCommandAddArgList(cmd, "-sandbox", "off", NULL);
9372
        else if (cfg->seccompSandbox > 0)
9373
            virCommandAddArgList(cmd, "-sandbox", "on", NULL);
9374
    } else if (cfg->seccompSandbox > 0) {
9375 9376 9377 9378 9379
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("QEMU does not support seccomp sandboxes"));
        goto error;
    }

H
Hu Tao 已提交
9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395
    if (def->panic) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PANIC)) {
            if (def->panic->info.addr.isa.iobase > 0) {
                virCommandAddArg(cmd, "-device");
                virCommandAddArgFormat(cmd, "pvpanic,ioport=%d",
                                       def->panic->info.addr.isa.iobase);
            } else {
                virCommandAddArgList(cmd, "-device", "pvpanic", NULL);
            }
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("your QEMU is too old to support pvpanic"));
            goto error;
        }
    }

9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408
    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);
    }
9409

9410 9411 9412 9413
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MSG_TIMESTAMP) &&
        cfg->logTimestamp)
        virCommandAddArgList(cmd, "-msg", "timestamp=on", NULL);

9414
    virObjectUnref(cfg);
9415 9416
    return cmd;

9417
 error:
9418
    virObjectUnref(cfg);
9419 9420 9421
    /* free up any resources in the network driver
     * but don't overwrite the original error */
    originalError = virSaveLastError();
9422
    for (i = 0; last_good_net != -1 && i <= last_good_net; i++)
9423
        virDomainConfNWFilterTeardown(def->nets[i]);
9424
    virSetError(originalError);
J
John Ferlan 已提交
9425
    virFreeError(originalError);
9426 9427 9428 9429
    virCommandFree(cmd);
    return NULL;
}

9430 9431 9432
/* This function generates the correct '-device' string for character
 * devices of each architecture.
 */
9433 9434
static int
qemuBuildSerialChrDeviceStr(char **deviceStr,
9435
                            virDomainDefPtr def,
9436 9437 9438 9439
                            virDomainChrDefPtr serial,
                            virQEMUCapsPtr qemuCaps,
                            virArch arch,
                            char *machine)
9440 9441 9442
{
    virBuffer cmd = VIR_BUFFER_INITIALIZER;

9443
    if ((arch == VIR_ARCH_PPC64) && STREQ(machine, "pseries")) {
9444 9445 9446 9447
        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);
9448
            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
9449 9450
                goto error;
        }
G
Guannan Ren 已提交
9451 9452 9453
    } else {
        virBufferAsprintf(&cmd, "%s,chardev=char%s,id=%s",
                          virDomainChrSerialTargetTypeToString(serial->targetType),
9454 9455
                          serial->info.alias, serial->info.alias);

G
Guannan Ren 已提交
9456
        if (serial->targetType == VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_USB) {
9457
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_SERIAL)) {
G
Guannan Ren 已提交
9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469
                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;
            }

9470
            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
9471
                goto error;
G
Guannan Ren 已提交
9472 9473 9474
        }
    }

9475
    if (virBufferCheckError(&cmd) < 0)
9476 9477
        goto error;

9478 9479
    *deviceStr = virBufferContentAndReset(&cmd);
    return 0;
9480

9481
 error:
9482
    virBufferFreeAndReset(&cmd);
9483 9484 9485 9486 9487 9488 9489 9490
    return -1;
}

static int
qemuBuildParallelChrDeviceStr(char **deviceStr,
                              virDomainChrDefPtr chr)
{
    if (virAsprintf(deviceStr, "isa-parallel,chardev=char%s,id=%s",
J
Ján Tomko 已提交
9491
                    chr->info.alias, chr->info.alias) < 0)
9492 9493
        return -1;
    return 0;
9494
}
9495

9496 9497 9498 9499 9500 9501 9502 9503 9504
static int
qemuBuildChannelChrDeviceStr(char **deviceStr,
                             virDomainChrDefPtr chr,
                             virQEMUCapsPtr qemuCaps)
{
    int ret = -1;
    char *addr = NULL;
    int port;

9505
    switch ((virDomainChrChannelTargetType) chr->targetType) {
9506 9507 9508 9509 9510 9511 9512 9513
    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,
9514
                        "user,guestfwd=tcp:%s:%i-chardev:char%s,id=user-%s",
J
Ján Tomko 已提交
9515
                        addr, port, chr->info.alias, chr->info.alias) < 0)
9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529
            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;
9530
 cleanup:
9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541
    VIR_FREE(addr);
    return ret;
}

static int
qemuBuildConsoleChrDeviceStr(char **deviceStr,
                             virDomainChrDefPtr chr,
                             virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

9542
    switch ((virDomainChrConsoleTargetType) chr->targetType) {
9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564
    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;
9565
 cleanup:
9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576
    return ret;
}

int
qemuBuildChrDeviceStr(char **deviceStr,
                      virDomainDefPtr vmdef,
                      virDomainChrDefPtr chr,
                      virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

9577
    switch ((virDomainChrDeviceType) chr->deviceType) {
9578
    case VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL:
9579
        ret = qemuBuildSerialChrDeviceStr(deviceStr, vmdef, chr, qemuCaps,
9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603
                                          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;
}


9604 9605 9606 9607 9608 9609 9610
/*
 * 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 已提交
9611 9612
                               char ***retenv,
                               char ***retargv)
9613 9614
{
    char **arglist = NULL;
9615 9616 9617
    size_t argcount = 0;
    size_t argalloc = 0;
    size_t envend;
9618
    size_t i;
9619 9620
    const char *curr = args;
    const char *start;
E
Eric Blake 已提交
9621 9622
    char **progenv = NULL;
    char **progargv = NULL;
9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647

    /* Iterate over string, splitting on sequences of ' ' */
    while (curr && *curr != '\0') {
        char *arg;
        const char *next;

        start = curr;
        /* accept a space in CEPH_ARGS */
        if (STRPREFIX(curr, "CEPH_ARGS=-m ")) {
            start += strlen("CEPH_ARGS=-m ");
        }
        if (*start == '\'') {
            if (start == curr)
                curr++;
            next = strchr(start + 1, '\'');
        } else if (*start == '"') {
            if (start == curr)
                curr++;
            next = strchr(start + 1, '"');
        } else {
            next = strchr(start, ' ');
        }
        if (!next)
            next = strchr(curr, '\n');

9648
        if (VIR_STRNDUP(arg, curr, next ? next - curr : -1) < 0)
9649
            goto error;
9650

9651 9652
        if (next && (*next == '\'' || *next == '"'))
            next++;
9653

9654 9655 9656
        if (VIR_RESIZE_N(arglist, argalloc, argcount, 2) < 0) {
            VIR_FREE(arg);
            goto error;
9657 9658 9659
        }

        arglist[argcount++] = arg;
9660
        arglist[argcount] = NULL;
9661 9662 9663 9664 9665 9666 9667 9668 9669

        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) */
9670
    for (envend = 0; ((envend < argcount) &&
9671 9672 9673 9674 9675 9676 9677
                       (strchr(arglist[envend], '=') != NULL));
         envend++)
        ; /* nada */

    /* Copy the list of env vars */
    if (envend > 0) {
        if (VIR_REALLOC_N(progenv, envend+1) < 0)
9678
            goto error;
9679
        for (i = 0; i < envend; i++)
9680 9681 9682 9683 9684 9685
            progenv[i] = arglist[i];
        progenv[i] = NULL;
    }

    /* Copy the list of argv */
    if (VIR_REALLOC_N(progargv, argcount-envend + 1) < 0)
9686
        goto error;
9687
    for (i = envend; i < argcount; i++)
9688 9689 9690 9691 9692 9693 9694 9695 9696 9697
        progargv[i-envend] = arglist[i];
    progargv[i-envend] = NULL;

    VIR_FREE(arglist);

    *retenv = progenv;
    *retargv = progargv;

    return 0;

9698
 error:
9699 9700
    VIR_FREE(progenv);
    VIR_FREE(progargv);
E
Eric Blake 已提交
9701
    virStringFreeList(arglist);
9702 9703 9704 9705 9706 9707 9708
    return -1;
}


/*
 * Search for a named env variable, and return the value part
 */
E
Eric Blake 已提交
9709
static const char *qemuFindEnv(char **progenv,
9710 9711
                               const char *name)
{
9712
    size_t i;
9713 9714
    int len = strlen(name);

9715
    for (i = 0; progenv && progenv[i]; i++) {
9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733
        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,
9734
                  int *retnkeywords,
9735 9736 9737 9738 9739 9740 9741 9742
                  int allowEmptyValue)
{
    int keywordCount = 0;
    int keywordAlloc = 0;
    char **keywords = NULL;
    char **values = NULL;
    const char *start = str;
    const char *end;
9743
    size_t i;
9744 9745 9746

    *retkeywords = NULL;
    *retvalues = NULL;
9747
    *retnkeywords = 0;
9748 9749 9750 9751 9752 9753 9754 9755
    end = start + strlen(str);

    while (start) {
        const char *separator;
        const char *endmark;
        char *keyword;
        char *value = NULL;

9756 9757 9758 9759 9760 9761 9762 9763
        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)
9764 9765 9766 9767 9768 9769
            endmark = end;
        if (!(separator = strchr(start, '=')))
            separator = end;

        if (separator >= endmark) {
            if (!allowEmptyValue) {
9770 9771
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("malformed keyword arguments in '%s'"), str);
9772 9773 9774 9775 9776
                goto error;
            }
            separator = endmark;
        }

9777 9778
        if (VIR_STRNDUP(keyword, start, separator - start) < 0)
            goto error;
9779 9780 9781

        if (separator < endmark) {
            separator++;
9782
            if (VIR_STRNDUP(value, separator, endmark - separator) < 0) {
9783
                VIR_FREE(keyword);
9784
                goto error;
9785
            }
9786 9787 9788 9789 9790 9791 9792 9793 9794 9795
            if (strchr(value, ',')) {
                char *p = strchr(value, ',') + 1;
                char *q = p + 1;
                while (*q) {
                    if (*q == ',')
                        q++;
                    *p++ = *q++;
                }
                *p = '\0';
            }
9796 9797 9798 9799 9800 9801 9802
        }

        if (keywordAlloc == keywordCount) {
            if (VIR_REALLOC_N(keywords, keywordAlloc + 10) < 0 ||
                VIR_REALLOC_N(values, keywordAlloc + 10) < 0) {
                VIR_FREE(keyword);
                VIR_FREE(value);
9803
                goto error;
9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816
            }
            keywordAlloc += 10;
        }

        keywords[keywordCount] = keyword;
        values[keywordCount] = value;
        keywordCount++;

        start = endmark < end ? endmark + 1 : NULL;
    }

    *retkeywords = keywords;
    *retvalues = values;
9817 9818
    *retnkeywords = keywordCount;
    return 0;
9819

9820
 error:
9821
    for (i = 0; i < keywordCount; i++) {
9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837
        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
9838
qemuParseCommandLineDisk(virDomainXMLOptionPtr xmlopt,
9839
                         const char *val,
9840
                         virDomainDefPtr dom,
9841 9842
                         int nvirtiodisk,
                         bool old_style_ceph_args)
9843 9844 9845 9846 9847
{
    virDomainDiskDefPtr def = NULL;
    char **keywords;
    char **values;
    int nkeywords;
9848
    size_t i;
9849 9850 9851 9852
    int idx = -1;
    int busid = -1;
    int unitid = -1;

9853 9854 9855 9856 9857
    if (qemuParseKeywords(val,
                          &keywords,
                          &values,
                          &nkeywords,
                          0) < 0)
9858 9859
        return NULL;

9860
    if (VIR_ALLOC(def) < 0)
9861
        goto cleanup;
9862 9863
    if (VIR_ALLOC(def->src) < 0)
        goto error;
9864

9865 9866 9867 9868 9869
    if (((dom->os.arch == VIR_ARCH_PPC64) &&
        dom->os.machine && STREQ(dom->os.machine, "pseries")))
        def->bus = VIR_DOMAIN_DISK_BUS_SCSI;
    else
       def->bus = VIR_DOMAIN_DISK_BUS_IDE;
9870
    def->device = VIR_DOMAIN_DISK_DEVICE_DISK;
9871
    def->src->type = VIR_STORAGE_TYPE_FILE;
9872

9873
    for (i = 0; i < nkeywords; i++) {
9874 9875
        if (STREQ(keywords[i], "file")) {
            if (values[i] && STRNEQ(values[i], "")) {
9876
                def->src->path = values[i];
9877
                values[i] = NULL;
9878 9879 9880 9881 9882 9883
                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;
9884

9885 9886
                    if (qemuParseNBDString(def) < 0)
                        goto error;
9887 9888
                } else if (STRPREFIX(def->src->path, "rbd:")) {
                    char *p = def->src->path;
9889

9890 9891 9892
                    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)
9893
                        goto error;
9894
                    /* old-style CEPH_ARGS env variable is parsed later */
9895 9896 9897 9898
                    if (!old_style_ceph_args && qemuParseRBDString(def) < 0) {
                        VIR_FREE(p);
                        goto error;
                    }
9899 9900

                    VIR_FREE(p);
9901 9902 9903 9904
                } 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;
9905 9906

                    if (qemuParseGlusterString(def) < 0)
9907
                        goto error;
9908 9909 9910
                } 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 已提交
9911 9912 9913

                    if (qemuParseISCSIString(def) < 0)
                        goto error;
9914 9915
                } else if (STRPREFIX(def->src->path, "sheepdog:")) {
                    char *p = def->src->path;
9916 9917
                    char *port, *vdi;

9918 9919 9920
                    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)
9921
                        goto error;
9922
                    VIR_FREE(p);
9923

9924 9925
                    /* def->src->path must be [vdiname] or [host]:[port]:[vdiname] */
                    port = strchr(def->src->path, ':');
9926
                    if (port) {
9927 9928
                        *port = '\0';
                        vdi = strchr(port + 1, ':');
9929
                        if (!vdi) {
9930
                            *port = ':';
9931
                            virReportError(VIR_ERR_INTERNAL_ERROR,
9932
                                           _("cannot parse sheepdog filename '%s'"),
9933
                                           def->src->path);
9934
                            goto error;
9935
                        }
9936
                        port++;
9937
                        *vdi++ = '\0';
9938
                        if (VIR_ALLOC(def->src->hosts) < 0)
9939
                            goto error;
9940 9941 9942
                        def->src->nhosts = 1;
                        def->src->hosts->name = def->src->path;
                        if (VIR_STRDUP(def->src->hosts->port, port) < 0)
9943
                            goto error;
9944 9945 9946
                        def->src->hosts->transport = VIR_STORAGE_NET_HOST_TRANS_TCP;
                        def->src->hosts->socket = NULL;
                        if (VIR_STRDUP(def->src->path, vdi) < 0)
9947
                            goto error;
9948 9949
                    }
                } else
9950
                    def->src->type = VIR_STORAGE_TYPE_FILE;
9951
            } else {
9952
                def->src->type = VIR_STORAGE_TYPE_FILE;
9953 9954
            }
        } else if (STREQ(keywords[i], "if")) {
9955
            if (STREQ(values[i], "ide")) {
9956
                def->bus = VIR_DOMAIN_DISK_BUS_IDE;
9957 9958 9959 9960 9961 9962 9963
                if (((dom->os.arch == VIR_ARCH_PPC64) &&
                     dom->os.machine && STREQ(dom->os.machine, "pseries"))) {
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("pseries systems do not support ide devices '%s'"), val);
                    goto error;
                }
            } else if (STREQ(values[i], "scsi"))
9964 9965 9966 9967 9968
                def->bus = VIR_DOMAIN_DISK_BUS_SCSI;
            else if (STREQ(values[i], "virtio"))
                def->bus = VIR_DOMAIN_DISK_BUS_VIRTIO;
            else if (STREQ(values[i], "xen"))
                def->bus = VIR_DOMAIN_DISK_BUS_XEN;
9969 9970
            else if (STREQ(values[i], "sd"))
                def->bus = VIR_DOMAIN_DISK_BUS_SD;
9971 9972 9973
        } else if (STREQ(keywords[i], "media")) {
            if (STREQ(values[i], "cdrom")) {
                def->device = VIR_DOMAIN_DISK_DEVICE_CDROM;
9974
                def->src->readonly = true;
9975 9976 9977
            } else if (STREQ(values[i], "floppy"))
                def->device = VIR_DOMAIN_DISK_DEVICE_FLOPPY;
        } else if (STREQ(keywords[i], "format")) {
9978
            if (VIR_STRDUP(def->src->driverName, "qemu") < 0)
9979
                goto error;
9980
            def->src->format = virStorageFileFormatTypeFromString(values[i]);
9981 9982 9983 9984 9985 9986 9987 9988 9989
        } 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;
9990 9991
            else if (STREQ(values[i], "directsync"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_DIRECTSYNC;
9992 9993
            else if (STREQ(values[i], "unsafe"))
                def->cachemode = VIR_DOMAIN_DISK_CACHE_UNSAFE;
9994
        } else if (STREQ(keywords[i], "werror")) {
9995 9996
            if (STREQ(values[i], "stop"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_STOP;
9997 9998
            else if (STREQ(values[i], "report"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_REPORT;
9999 10000
            else if (STREQ(values[i], "ignore"))
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_IGNORE;
10001
            else if (STREQ(values[i], "enospc"))
10002
                def->error_policy = VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE;
10003 10004 10005 10006 10007 10008 10009
        } 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;
10010 10011
        } else if (STREQ(keywords[i], "index")) {
            if (virStrToLong_i(values[i], NULL, 10, &idx) < 0) {
10012 10013
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive index '%s'"), val);
10014
                goto error;
10015 10016 10017
            }
        } else if (STREQ(keywords[i], "bus")) {
            if (virStrToLong_i(values[i], NULL, 10, &busid) < 0) {
10018 10019
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive bus '%s'"), val);
10020
                goto error;
10021 10022 10023
            }
        } else if (STREQ(keywords[i], "unit")) {
            if (virStrToLong_i(values[i], NULL, 10, &unitid) < 0) {
10024 10025
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse drive unit '%s'"), val);
10026
                goto error;
10027 10028 10029
            }
        } else if (STREQ(keywords[i], "readonly")) {
            if ((values[i] == NULL) || STREQ(values[i], "on"))
10030
                def->src->readonly = true;
E
Eric Blake 已提交
10031 10032
        } else if (STREQ(keywords[i], "aio")) {
            if ((def->iomode = virDomainDiskIoTypeFromString(values[i])) < 0) {
10033 10034
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse io mode '%s'"), values[i]);
10035
                goto error;
E
Eric Blake 已提交
10036
            }
10037 10038 10039 10040 10041 10042 10043 10044
        } 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]);
10045
                goto error;
10046 10047 10048 10049 10050 10051 10052 10053 10054
            }
        } 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]);
10055
                goto error;
10056 10057 10058 10059 10060 10061 10062 10063 10064
            }
        } 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]);
10065
                goto error;
10066 10067 10068 10069
            }
        } else if (STREQ(keywords[i], "trans")) {
            def->geometry.trans =
                virDomainDiskGeometryTransTypeFromString(values[i]);
10070 10071
            if ((def->geometry.trans < VIR_DOMAIN_DISK_TRANS_DEFAULT) ||
                (def->geometry.trans >= VIR_DOMAIN_DISK_TRANS_LAST)) {
10072 10073 10074
                virDomainDiskDefFree(def);
                def = NULL;
                virReportError(VIR_ERR_INTERNAL_ERROR,
10075
                               _("cannot parse translation value '%s'"),
10076
                               values[i]);
10077
                goto error;
10078
            }
10079 10080 10081
        }
    }

10082 10083 10084
    if (def->rerror_policy == def->error_policy)
        def->rerror_policy = 0;

10085
    if (!def->src->path &&
10086
        def->device == VIR_DOMAIN_DISK_DEVICE_DISK &&
10087
        def->src->type != VIR_STORAGE_TYPE_NETWORK) {
10088 10089
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("missing file parameter in drive '%s'"), val);
10090
        goto error;
10091 10092 10093 10094 10095 10096 10097 10098
    }
    if (idx == -1 &&
        def->bus == VIR_DOMAIN_DISK_BUS_VIRTIO)
        idx = nvirtiodisk;

    if (idx == -1 &&
        unitid == -1 &&
        busid == -1) {
10099
        virReportError(VIR_ERR_INTERNAL_ERROR,
10100 10101 10102
                       _("missing index/unit/bus parameter in drive '%s'"),
                       val);
        goto error;
10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123
    }

    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) {
10124
        ignore_value(VIR_STRDUP(def->dst, "hda"));
10125 10126
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_SCSI ||
               def->bus == VIR_DOMAIN_DISK_BUS_SD) {
10127
        ignore_value(VIR_STRDUP(def->dst, "sda"));
10128
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_VIRTIO) {
10129
        ignore_value(VIR_STRDUP(def->dst, "vda"));
10130
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_XEN) {
10131
        ignore_value(VIR_STRDUP(def->dst, "xvda"));
10132
    } else {
10133
        ignore_value(VIR_STRDUP(def->dst, "hda"));
10134 10135
    }

10136
    if (!def->dst)
10137
        goto error;
10138 10139 10140 10141 10142
    if (STREQ(def->dst, "xvda"))
        def->dst[3] = 'a' + idx;
    else
        def->dst[2] = 'a' + idx;

10143
    if (virDomainDiskDefAssignAddress(xmlopt, def) < 0) {
10144 10145
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid device name '%s'"), def->dst);
10146 10147
        virDomainDiskDefFree(def);
        def = NULL;
10148
        goto cleanup;
10149 10150
    }

10151
 cleanup:
10152
    for (i = 0; i < nkeywords; i++) {
10153 10154 10155 10156 10157 10158
        VIR_FREE(keywords[i]);
        VIR_FREE(values[i]);
    }
    VIR_FREE(keywords);
    VIR_FREE(values);
    return def;
10159

10160
 error:
10161 10162 10163
    virDomainDiskDefFree(def);
    def = NULL;
    goto cleanup;
10164 10165 10166 10167 10168 10169 10170 10171 10172 10173
}

/*
 * Tries to find a NIC definition matching a vlan we want
 */
static const char *
qemuFindNICForVLAN(int nnics,
                   const char **nics,
                   int wantvlan)
{
10174
    size_t i;
10175
    for (i = 0; i < nnics; i++) {
10176 10177 10178 10179 10180 10181 10182 10183 10184
        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) {
10185 10186
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot parse NIC vlan in '%s'"), nics[i]);
10187 10188 10189 10190 10191 10192 10193 10194 10195 10196
            return NULL;
        }

        if (gotvlan == wantvlan)
            return nics[i];
    }

    if (wantvlan == 0 && nnics > 0)
        return nics[0];

10197 10198
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("cannot find NIC definition for vlan %d"), wantvlan);
10199 10200 10201 10202 10203 10204 10205 10206 10207 10208
    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
10209
qemuParseCommandLineNet(virDomainXMLOptionPtr xmlopt,
10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220
                        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;
10221
    bool genmac = true;
10222
    size_t i;
10223 10224 10225 10226

    tmp = strchr(val, ',');

    if (tmp) {
10227 10228 10229 10230 10231
        if (qemuParseKeywords(tmp+1,
                              &keywords,
                              &values,
                              &nkeywords,
                              0) < 0)
10232 10233 10234 10235 10236
            return NULL;
    } else {
        nkeywords = 0;
    }

10237
    if (VIR_ALLOC(def) < 0)
10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250
        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;

10251
    for (i = 0; i < nkeywords; i++) {
10252 10253
        if (STREQ(keywords[i], "vlan")) {
            if (virStrToLong_i(values[i], NULL, 10, &wantvlan) < 0) {
10254 10255
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse vlan in '%s'"), val);
10256 10257 10258 10259 10260 10261
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
        } else if (def->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
                   STREQ(keywords[i], "script") && STRNEQ(values[i], "")) {
10262
            def->script = values[i];
10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283
            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")) {
10284 10285
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot parse NIC definition '%s'"), nic);
10286 10287 10288 10289 10290
        virDomainNetDefFree(def);
        def = NULL;
        goto cleanup;
    }

10291
    for (i = 0; i < nkeywords; i++) {
10292 10293 10294 10295 10296 10297 10298
        VIR_FREE(keywords[i]);
        VIR_FREE(values[i]);
    }
    VIR_FREE(keywords);
    VIR_FREE(values);

    if (STRPREFIX(nic, "nic,")) {
10299 10300 10301 10302 10303
        if (qemuParseKeywords(nic + strlen("nic,"),
                              &keywords,
                              &values,
                              &nkeywords,
                              0) < 0) {
10304 10305 10306 10307 10308 10309 10310 10311
            virDomainNetDefFree(def);
            def = NULL;
            goto cleanup;
        }
    } else {
        nkeywords = 0;
    }

10312
    for (i = 0; i < nkeywords; i++) {
10313
        if (STREQ(keywords[i], "macaddr")) {
10314
            genmac = false;
10315
            if (virMacAddrParse(values[i], &def->mac) < 0) {
10316 10317 10318
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unable to parse mac address '%s'"),
                               values[i]);
10319 10320 10321 10322 10323 10324 10325
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
        } else if (STREQ(keywords[i], "model")) {
            def->model = values[i];
            values[i] = NULL;
10326 10327
        } else if (STREQ(keywords[i], "vhost")) {
            if ((values[i] == NULL) || STREQ(values[i], "on")) {
10328
                def->driver.virtio.name = VIR_DOMAIN_NET_BACKEND_TYPE_VHOST;
10329
            } else if (STREQ(keywords[i], "off")) {
10330
                def->driver.virtio.name = VIR_DOMAIN_NET_BACKEND_TYPE_QEMU;
10331
            }
10332 10333
        } else if (STREQ(keywords[i], "sndbuf") && values[i]) {
            if (virStrToLong_ul(values[i], NULL, 10, &def->tune.sndbuf) < 0) {
10334 10335
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("cannot parse sndbuf size in '%s'"), val);
10336 10337 10338 10339 10340
                virDomainNetDefFree(def);
                def = NULL;
                goto cleanup;
            }
            def->tune.sndbuf_specified = true;
10341 10342 10343 10344
        }
    }

    if (genmac)
10345
        virDomainNetGenerateMAC(xmlopt, &def->mac);
10346

10347
 cleanup:
10348
    for (i = 0; i < nkeywords; i++) {
10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366
        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;
10367 10368 10369 10370
    virDomainHostdevDefPtr def = virDomainHostdevDefAlloc();

    if (!def)
       goto error;
10371 10372

    if (!STRPREFIX(val, "host=")) {
10373 10374
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown PCI device syntax '%s'"), val);
10375
        goto error;
10376 10377 10378 10379
    }

    start = val + strlen("host=");
    if (virStrToLong_i(start, &end, 16, &bus) < 0 || *end != ':') {
10380 10381
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device bus '%s'"), val);
10382
        goto error;
10383 10384 10385
    }
    start = end + 1;
    if (virStrToLong_i(start, &end, 16, &slot) < 0 || *end != '.') {
10386 10387
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device slot '%s'"), val);
10388
        goto error;
10389 10390 10391
    }
    start = end + 1;
    if (virStrToLong_i(start, NULL, 16, &func) < 0) {
10392 10393
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot extract PCI device function '%s'"), val);
10394
        goto error;
10395 10396 10397
    }

    def->mode = VIR_DOMAIN_HOSTDEV_MODE_SUBSYS;
10398
    def->managed = true;
10399
    def->source.subsys.type = VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI;
10400 10401 10402
    def->source.subsys.u.pci.addr.bus = bus;
    def->source.subsys.u.pci.addr.slot = slot;
    def->source.subsys.u.pci.addr.function = func;
10403
    return def;
10404 10405 10406 10407

 error:
    virDomainHostdevDefFree(def);
    return NULL;
10408 10409 10410 10411 10412 10413 10414 10415 10416
}


/*
 * Tries to parse a QEMU USB device
 */
static virDomainHostdevDefPtr
qemuParseCommandLineUSB(const char *val)
{
10417
    virDomainHostdevDefPtr def = virDomainHostdevDefAlloc();
10418
    virDomainHostdevSubsysUSBPtr usbsrc;
10419 10420 10421 10422
    int first = 0, second = 0;
    const char *start;
    char *end;

10423 10424
    if (!def)
       goto error;
10425
    usbsrc = &def->source.subsys.u.usb;
10426

10427
    if (!STRPREFIX(val, "host:")) {
10428 10429
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown USB device syntax '%s'"), val);
10430
        goto error;
10431 10432 10433 10434 10435
    }

    start = val + strlen("host:");
    if (strchr(start, ':')) {
        if (virStrToLong_i(start, &end, 16, &first) < 0 || *end != ':') {
10436 10437
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device vendor '%s'"), val);
10438
            goto error;
10439 10440 10441
        }
        start = end + 1;
        if (virStrToLong_i(start, NULL, 16, &second) < 0) {
10442 10443
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device product '%s'"), val);
10444
            goto error;
10445 10446 10447
        }
    } else {
        if (virStrToLong_i(start, &end, 10, &first) < 0 || *end != '.') {
10448 10449
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device bus '%s'"), val);
10450
            goto error;
10451 10452 10453
        }
        start = end + 1;
        if (virStrToLong_i(start, NULL, 10, &second) < 0) {
10454 10455
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot extract USB device address '%s'"), val);
10456
            goto error;
10457 10458 10459 10460
        }
    }

    def->mode = VIR_DOMAIN_HOSTDEV_MODE_SUBSYS;
10461
    def->managed = false;
10462 10463
    def->source.subsys.type = VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB;
    if (*end == '.') {
10464 10465
        usbsrc->bus = first;
        usbsrc->device = second;
10466
    } else {
10467 10468
        usbsrc->vendor = first;
        usbsrc->product = second;
10469 10470
    }
    return def;
10471 10472 10473 10474

 error:
    virDomainHostdevDefFree(def);
    return NULL;
10475 10476 10477 10478 10479 10480
}


/*
 * Tries to parse a QEMU serial/parallel device
 */
10481 10482 10483
static int
qemuParseCommandLineChr(virDomainChrSourceDefPtr source,
                        const char *val)
10484 10485
{
    if (STREQ(val, "null")) {
10486
        source->type = VIR_DOMAIN_CHR_TYPE_NULL;
10487
    } else if (STREQ(val, "vc")) {
10488
        source->type = VIR_DOMAIN_CHR_TYPE_VC;
10489
    } else if (STREQ(val, "pty")) {
10490
        source->type = VIR_DOMAIN_CHR_TYPE_PTY;
10491
    } else if (STRPREFIX(val, "file:")) {
10492
        source->type = VIR_DOMAIN_CHR_TYPE_FILE;
10493 10494
        if (VIR_STRDUP(source->data.file.path, val + strlen("file:")) < 0)
            goto error;
10495
    } else if (STRPREFIX(val, "pipe:")) {
10496
        source->type = VIR_DOMAIN_CHR_TYPE_PIPE;
10497 10498
        if (VIR_STRDUP(source->data.file.path, val + strlen("pipe:")) < 0)
            goto error;
10499
    } else if (STREQ(val, "stdio")) {
10500
        source->type = VIR_DOMAIN_CHR_TYPE_STDIO;
10501 10502
    } else if (STRPREFIX(val, "udp:")) {
        const char *svc1, *host2, *svc2;
10503
        source->type = VIR_DOMAIN_CHR_TYPE_UDP;
10504 10505 10506 10507 10508
        val += strlen("udp:");
        svc1 = strchr(val, ':');
        host2 = svc1 ? strchr(svc1, '@') : NULL;
        svc2 = host2 ? strchr(host2, ':') : NULL;

10509 10510 10511
        if (svc1 && svc1 != val &&
            VIR_STRNDUP(source->data.udp.connectHost, val, svc1 - val) < 0)
            goto error;
10512 10513 10514

        if (svc1) {
            svc1++;
10515 10516 10517
            if (VIR_STRNDUP(source->data.udp.connectService, svc1,
                            host2 ? host2 - svc1 : strlen(svc1)) < 0)
                goto error;
10518 10519 10520 10521
        }

        if (host2) {
            host2++;
10522 10523
            if (svc2 && svc2 != host2 &&
                VIR_STRNDUP(source->data.udp.bindHost, host2, svc2 - host2) < 0)
10524
                goto error;
10525
        }
10526

10527 10528
        if (svc2) {
            svc2++;
10529
            if (STRNEQ(svc2, "0")) {
10530 10531
                if (VIR_STRDUP(source->data.udp.bindService, svc2) < 0)
                    goto error;
10532
            }
10533 10534 10535 10536
        }
    } else if (STRPREFIX(val, "tcp:") ||
               STRPREFIX(val, "telnet:")) {
        const char *opt, *svc;
10537
        source->type = VIR_DOMAIN_CHR_TYPE_TCP;
10538 10539 10540 10541
        if (STRPREFIX(val, "tcp:")) {
            val += strlen("tcp:");
        } else {
            val += strlen("telnet:");
10542
            source->data.tcp.protocol = VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
10543 10544 10545
        }
        svc = strchr(val, ':');
        if (!svc) {
10546 10547
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot find port number in character device %s"), val);
10548 10549 10550 10551
            goto error;
        }
        opt = strchr(svc, ',');
        if (opt && strstr(opt, "server"))
10552
            source->data.tcp.listen = true;
10553

10554 10555
        if (VIR_STRNDUP(source->data.tcp.host, val, svc - val) < 0)
            goto error;
10556
        svc++;
10557
        if (VIR_STRNDUP(source->data.tcp.service, svc, opt ? opt - svc : -1) < 0)
10558
            goto error;
10559 10560 10561 10562
    } else if (STRPREFIX(val, "unix:")) {
        const char *opt;
        val += strlen("unix:");
        opt = strchr(val, ',');
10563
        source->type = VIR_DOMAIN_CHR_TYPE_UNIX;
10564
        if (VIR_STRNDUP(source->data.nix.path, val, opt ? opt - val : -1) < 0)
10565
            goto error;
10566 10567

    } else if (STRPREFIX(val, "/dev")) {
10568
        source->type = VIR_DOMAIN_CHR_TYPE_DEV;
10569 10570
        if (VIR_STRDUP(source->data.file.path, val) < 0)
            goto error;
10571
    } else {
10572 10573
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown character device syntax %s"), val);
10574 10575 10576
        goto error;
    }

10577
    return 0;
10578

10579
 error:
10580
    return -1;
10581 10582 10583 10584 10585 10586 10587 10588 10589
}


static virCPUDefPtr
qemuInitGuestCPU(virDomainDefPtr dom)
{
    if (!dom->cpu) {
        virCPUDefPtr cpu;

10590
        if (VIR_ALLOC(cpu) < 0)
10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605
            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)
{
10606
    virCPUDefPtr cpu = NULL;
10607
    char **tokens;
10608
    char **hv_tokens = NULL;
10609
    char *model = NULL;
10610
    int ret = -1;
10611
    size_t i;
10612

10613 10614
    if (!(tokens = virStringSplit(val, ",", 0)))
        goto cleanup;
10615

10616 10617
    if (tokens[0] == NULL)
        goto syntax;
10618

10619 10620 10621 10622 10623 10624 10625
    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;
10626 10627 10628

            if (!STREQ(model, "qemu32") && !STREQ(model, "qemu64")) {
                if (!(cpu = qemuInitGuestCPU(dom)))
10629
                    goto cleanup;
10630 10631 10632 10633

                cpu->model = model;
                model = NULL;
            }
10634 10635
        } else if (*tokens[i] == '+' || *tokens[i] == '-') {
            const char *feature = tokens[i] + 1; /* '+' or '-' */
10636 10637
            int policy;

10638
            if (*tokens[i] == '+')
10639 10640 10641 10642
                policy = VIR_CPU_FEATURE_REQUIRE;
            else
                policy = VIR_CPU_FEATURE_DISABLE;

10643
            if (*feature == '\0')
10644 10645
                goto syntax;

10646 10647 10648 10649 10650 10651 10652 10653
            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;
             }

10654 10655
            if (STREQ(feature, "kvmclock")) {
                bool present = (policy == VIR_CPU_FEATURE_REQUIRE);
10656
                size_t j;
10657

10658 10659
                for (j = 0; j < dom->clock.ntimers; j++) {
                    if (dom->clock.timers[j]->name == VIR_DOMAIN_TIMER_NAME_KVMCLOCK)
10660 10661 10662
                        break;
                }

10663
                if (j == dom->clock.ntimers) {
10664 10665 10666 10667 10668
                    virDomainTimerDefPtr timer;
                    if (VIR_ALLOC(timer) < 0 ||
                        VIR_APPEND_ELEMENT_COPY(dom->clock.timers,
                                                dom->clock.ntimers, timer) < 0) {
                        VIR_FREE(timer);
10669
                        goto cleanup;
10670 10671 10672 10673 10674 10675
                    }
                    timer->name = VIR_DOMAIN_TIMER_NAME_KVMCLOCK;
                    timer->present = present;
                    timer->tickpolicy = -1;
                    timer->track = -1;
                    timer->mode = -1;
10676 10677
                } else if (dom->clock.timers[j]->present != -1 &&
                    dom->clock.timers[j]->present != present) {
10678 10679
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("conflicting occurrences of kvmclock feature"));
10680
                    goto cleanup;
10681
                }
10682 10683
            } else if (STREQ(feature, "kvm_pv_eoi")) {
                if (policy == VIR_CPU_FEATURE_REQUIRE)
J
Ján Tomko 已提交
10684
                    dom->apic_eoi = VIR_TRISTATE_SWITCH_ON;
10685
                else
J
Ján Tomko 已提交
10686
                    dom->apic_eoi = VIR_TRISTATE_SWITCH_OFF;
10687 10688 10689
            } else {
                if (!cpu) {
                    if (!(cpu = qemuInitGuestCPU(dom)))
10690
                        goto cleanup;
10691

10692 10693 10694 10695
                    cpu->model = model;
                    model = NULL;
                }

10696 10697
                if (virCPUDefAddFeature(cpu, feature, policy) < 0)
                    goto cleanup;
10698
            }
10699
        } else if (STRPREFIX(tokens[i], "hv_")) {
10700 10701
            const char *token = tokens[i] + 3; /* "hv_" */
            const char *feature, *value;
10702 10703
            int f;

10704 10705 10706 10707 10708 10709 10710 10711 10712
            if (*token == '\0')
                goto syntax;

            if (!(hv_tokens = virStringSplit(token, "=", 2)))
                goto cleanup;

            feature = hv_tokens[0];
            value = hv_tokens[1];

10713
            if (*feature == '\0')
10714 10715
                goto syntax;

J
Ján Tomko 已提交
10716
            dom->features[VIR_DOMAIN_FEATURE_HYPERV] = VIR_TRISTATE_SWITCH_ON;
10717 10718 10719 10720 10721

            if ((f = virDomainHypervTypeFromString(feature)) < 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported HyperV Enlightenment feature "
                                 "'%s'"), feature);
10722
                goto cleanup;
10723 10724
            }

10725
            switch ((virDomainHyperv) f) {
10726
            case VIR_DOMAIN_HYPERV_RELAXED:
10727 10728 10729 10730 10731 10732 10733
            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 已提交
10734
                dom->hyperv_features[f] = VIR_TRISTATE_SWITCH_ON;
10735 10736
                break;

10737
            case VIR_DOMAIN_HYPERV_SPINLOCKS:
J
Ján Tomko 已提交
10738
                dom->hyperv_features[f] = VIR_TRISTATE_SWITCH_ON;
10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752
                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;
10753 10754
                break;

10755 10756 10757
            case VIR_DOMAIN_HYPERV_LAST:
                break;
            }
10758 10759
            virStringFreeList(hv_tokens);
            hv_tokens = NULL;
10760 10761 10762
        } 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;
10763
        }
10764
    }
10765

10766
    if (dom->os.arch == VIR_ARCH_X86_64) {
10767
        bool is_32bit = false;
10768
        if (cpu) {
10769
            virCPUDataPtr cpuData = NULL;
10770

10771 10772 10773
            if (cpuEncode(VIR_ARCH_X86_64, cpu, NULL, &cpuData,
                          NULL, NULL, NULL, NULL) < 0)
                goto cleanup;
10774

J
Jiri Denemark 已提交
10775 10776
            is_32bit = (cpuHasFeature(cpuData, "lm") != 1);
            cpuDataFree(cpuData);
10777 10778 10779
        } else if (model) {
            is_32bit = STREQ(model, "qemu32");
        }
10780

10781
        if (is_32bit)
10782
            dom->os.arch = VIR_ARCH_I686;
10783
    }
10784 10785 10786

    ret = 0;

10787
 cleanup:
10788
    VIR_FREE(model);
10789
    virStringFreeList(tokens);
10790
    virStringFreeList(hv_tokens);
10791
    return ret;
10792

10793
 syntax:
10794 10795
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("unknown CPU syntax '%s'"), val);
10796
    goto cleanup;
10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807
}


static int
qemuParseCommandLineSmp(virDomainDefPtr dom,
                        const char *val)
{
    unsigned int sockets = 0;
    unsigned int cores = 0;
    unsigned int threads = 0;
    unsigned int maxcpus = 0;
10808
    size_t i;
10809 10810 10811 10812 10813 10814 10815
    int nkws;
    char **kws;
    char **vals;
    int n;
    char *end;
    int ret;

10816
    if (qemuParseKeywords(val, &kws, &vals, &nkws, 1) < 0)
10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855
        return -1;

    for (i = 0; i < nkws; i++) {
        if (vals[i] == NULL) {
            if (i > 0 ||
                virStrToLong_i(kws[i], &end, 10, &n) < 0 || *end != '\0')
                goto syntax;
            dom->vcpus = n;
        } else {
            if (virStrToLong_i(vals[i], &end, 10, &n) < 0 || *end != '\0')
                goto syntax;
            if (STREQ(kws[i], "sockets"))
                sockets = n;
            else if (STREQ(kws[i], "cores"))
                cores = n;
            else if (STREQ(kws[i], "threads"))
                threads = n;
            else if (STREQ(kws[i], "maxcpus"))
                maxcpus = n;
            else
                goto syntax;
        }
    }

    dom->maxvcpus = maxcpus ? maxcpus : dom->vcpus;

    if (sockets && cores && threads) {
        virCPUDefPtr cpu;

        if (!(cpu = qemuInitGuestCPU(dom)))
            goto error;
        cpu->sockets = sockets;
        cpu->cores = cores;
        cpu->threads = threads;
    } else if (sockets || cores || threads)
        goto syntax;

    ret = 0;

10856
 cleanup:
10857 10858 10859 10860 10861 10862 10863 10864 10865
    for (i = 0; i < nkws; i++) {
        VIR_FREE(kws[i]);
        VIR_FREE(vals[i]);
    }
    VIR_FREE(kws);
    VIR_FREE(vals);

    return ret;

10866
 syntax:
10867 10868
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("cannot parse CPU topology '%s'"), val);
10869
 error:
10870 10871 10872 10873 10874
    ret = -1;
    goto cleanup;
}


10875
static void
10876 10877
qemuParseCommandLineBootDevs(virDomainDefPtr def, const char *str)
{
10878 10879
    int n, b = 0;

10880
    for (n = 0; str[n] && b < VIR_DOMAIN_BOOT_LAST; n++) {
10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895
        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;
}


10896 10897 10898 10899 10900
/*
 * 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 已提交
10901 10902 10903 10904 10905 10906 10907 10908
static virDomainDefPtr
qemuParseCommandLine(virCapsPtr qemuCaps,
                     virDomainXMLOptionPtr xmlopt,
                     char **progenv,
                     char **progargv,
                     char **pidfile,
                     virDomainChrSourceDefPtr *monConfig,
                     bool *monJSON)
10909 10910
{
    virDomainDefPtr def;
10911
    size_t i;
10912
    bool nographics = false;
10913
    bool fullscreen = false;
10914
    char *path;
10915
    size_t nnics = 0;
10916 10917 10918
    const char **nics = NULL;
    int video = VIR_DOMAIN_VIDEO_TYPE_CIRRUS;
    int nvirtiodisk = 0;
W
Wen Congyang 已提交
10919
    qemuDomainCmdlineDefPtr cmd = NULL;
E
Eric Blake 已提交
10920
    virDomainDiskDefPtr disk = NULL;
10921
    const char *ceph_args = qemuFindEnv(progenv, "CEPH_ARGS");
10922

10923 10924 10925 10926 10927 10928 10929
    if (pidfile)
        *pidfile = NULL;
    if (monConfig)
        *monConfig = NULL;
    if (monJSON)
        *monJSON = false;

10930
    if (!progargv[0]) {
10931 10932
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no emulator path found"));
10933 10934 10935 10936
        return NULL;
    }

    if (VIR_ALLOC(def) < 0)
10937
        goto error;
10938 10939 10940

    /* allocate the cmdlinedef up-front; if it's unused, we'll free it later */
    if (VIR_ALLOC(cmd) < 0)
10941
        goto error;
10942

E
Eric Blake 已提交
10943
    if (virUUIDGenerate(def->uuid) < 0) {
10944 10945
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to generate uuid"));
E
Eric Blake 已提交
10946 10947
        goto error;
    }
10948 10949 10950 10951 10952 10953

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

10955 10956 10957 10958
    def->onReboot = VIR_DOMAIN_LIFECYCLE_RESTART;
    def->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;
    def->onPoweroff = VIR_DOMAIN_LIFECYCLE_DESTROY;
    def->virtType = VIR_DOMAIN_VIRT_QEMU;
10959 10960
    if (VIR_STRDUP(def->emulator, progargv[0]) < 0)
        goto error;
10961

10962 10963
    if (!(path = last_component(def->emulator)))
        goto error;
10964

10965
    if (strstr(path, "xenner")) {
10966
        def->virtType = VIR_DOMAIN_VIRT_KVM;
10967 10968
        if (VIR_STRDUP(def->os.type, "xen") < 0)
            goto error;
10969
    } else {
10970 10971
        if (VIR_STRDUP(def->os.type, "hvm") < 0)
            goto error;
10972 10973
        if (strstr(path, "kvm")) {
            def->virtType = VIR_DOMAIN_VIRT_KVM;
J
Ján Tomko 已提交
10974
            def->features[VIR_DOMAIN_FEATURE_PAE] = VIR_TRISTATE_SWITCH_ON;
10975
        }
10976 10977
    }

10978
    if (def->virtType == VIR_DOMAIN_VIRT_KVM)
10979
        def->os.arch = qemuCaps->host.arch;
10980
    else if (STRPREFIX(path, "qemu-system-"))
10981
        def->os.arch = virArchFromString(path + strlen("qemu-system-"));
10982
    else
10983
        def->os.arch = VIR_ARCH_I686;
10984

10985 10986
    if ((def->os.arch == VIR_ARCH_I686) ||
        (def->os.arch == VIR_ARCH_X86_64))
J
Ján Tomko 已提交
10987
        def->features[VIR_DOMAIN_FEATURE_ACPI] = VIR_TRISTATE_SWITCH_ON;
10988

10989 10990 10991
#define WANT_VALUE()                                                   \
    const char *val = progargv[++i];                                   \
    if (!val) {                                                        \
10992
        virReportError(VIR_ERR_INTERNAL_ERROR,                         \
10993
                       _("missing value for %s argument"), arg);       \
10994 10995 10996 10997 10998
        goto error;                                                    \
    }

    /* One initial loop to get list of NICs, so we
     * can correlate them later */
10999
    for (i = 1; progargv[i]; i++) {
11000 11001 11002 11003 11004 11005 11006 11007
        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();
11008 11009 11010
            if (STRPREFIX(val, "nic") &&
                VIR_APPEND_ELEMENT(nics, nnics, val) < 0)
                goto error;
11011 11012 11013 11014
        }
    }

    /* Now the real processing loop */
11015
    for (i = 1; progargv[i]; i++) {
11016
        const char *arg = progargv[i];
L
Laine Stump 已提交
11017 11018
        bool argRecognized = true;

11019 11020 11021 11022 11023 11024 11025 11026 11027 11028
        /* 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)
11029
                goto error;
11030 11031
            vnc->type = VIR_DOMAIN_GRAPHICS_TYPE_VNC;

11032
            if (STRPREFIX(val, "unix:")) {
11033
                /* -vnc unix:/some/big/path */
11034
                if (VIR_STRDUP(vnc->data.vnc.socket, val + 5) < 0) {
11035
                    virDomainGraphicsDefFree(vnc);
11036
                    goto error;
11037 11038
                }
            } else {
11039 11040 11041 11042 11043 11044
                /*
                 * -vnc 127.0.0.1:4
                 * -vnc [2001:1:2:3:4:5:1234:1234]:4
                 * -vnc some.host.name:4
                 */
                char *opts;
11045
                char *port;
11046 11047 11048 11049 11050
                const char *sep = ":";
                if (val[0] == '[')
                    sep = "]:";
                tmp = strstr(val, sep);
                if (!tmp) {
11051
                    virDomainGraphicsDefFree(vnc);
11052 11053
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("missing VNC port number in '%s'"), val);
11054 11055
                    goto error;
                }
11056 11057
                port = tmp + strlen(sep);
                if (virStrToLong_i(port, &opts, 10,
11058
                                   &vnc->data.vnc.port) < 0) {
11059
                    virDomainGraphicsDefFree(vnc);
11060
                    virReportError(VIR_ERR_INTERNAL_ERROR,
11061
                                   _("cannot parse VNC port '%s'"), port);
11062 11063 11064
                    goto error;
                }
                if (val[0] == '[')
11065 11066
                    virDomainGraphicsListenSetAddress(vnc, 0,
                                                      val+1, tmp-(val+1), true);
11067
                else
11068 11069 11070 11071
                    virDomainGraphicsListenSetAddress(vnc, 0,
                                                      val, tmp-val, true);
                if (!virDomainGraphicsListenGetAddress(vnc, 0)) {
                    virDomainGraphicsDefFree(vnc);
11072
                    goto error;
11073
                }
11074 11075

                if (*opts == ',') {
11076 11077 11078
                    char *orig_opts;

                    if (VIR_STRDUP(orig_opts, opts + 1) < 0) {
11079
                        virDomainGraphicsDefFree(vnc);
11080
                        goto error;
11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112
                    }
                    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;
                            }
11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135
                        } 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;
                            }
11136 11137 11138 11139 11140 11141
                        }

                        opts = nextopt;
                    }
                    VIR_FREE(orig_opts);
                }
11142
                vnc->data.vnc.port += 5900;
11143
                vnc->data.vnc.autoport = false;
11144 11145
            }

11146
            if (VIR_APPEND_ELEMENT(def->graphics, def->ngraphics, vnc) < 0) {
11147
                virDomainGraphicsDefFree(vnc);
11148
                goto error;
11149 11150 11151 11152 11153
            }
        } else if (STREQ(arg, "-m")) {
            int mem;
            WANT_VALUE();
            if (virStrToLong_i(val, NULL, 10, &mem) < 0) {
11154 11155
                virReportError(VIR_ERR_INTERNAL_ERROR, \
                               _("cannot parse memory level '%s'"), val);
11156 11157 11158 11159 11160 11161 11162 11163 11164 11165
                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) {
11166 11167
                virReportError(VIR_ERR_INTERNAL_ERROR, \
                               _("cannot parse UUID '%s'"), val);
11168 11169 11170 11171 11172 11173 11174
                goto error;
            }
        } else if (STRPREFIX(arg, "-hd") ||
                   STRPREFIX(arg, "-sd") ||
                   STRPREFIX(arg, "-fd") ||
                   STREQ(arg, "-cdrom")) {
            WANT_VALUE();
11175
            if (!(disk = virDomainDiskDefNew()))
11176
                goto error;
11177 11178

            if (STRPREFIX(val, "/dev/"))
11179
                disk->src->type = VIR_STORAGE_TYPE_BLOCK;
11180
            else if (STRPREFIX(val, "nbd:")) {
11181 11182
                disk->src->type = VIR_STORAGE_TYPE_NETWORK;
                disk->src->protocol = VIR_STORAGE_NET_PROTOCOL_NBD;
11183
            } else if (STRPREFIX(val, "rbd:")) {
11184 11185
                disk->src->type = VIR_STORAGE_TYPE_NETWORK;
                disk->src->protocol = VIR_STORAGE_NET_PROTOCOL_RBD;
11186
                val += strlen("rbd:");
11187
            } else if (STRPREFIX(val, "gluster")) {
11188 11189
                disk->src->type = VIR_STORAGE_TYPE_NETWORK;
                disk->src->protocol = VIR_STORAGE_NET_PROTOCOL_GLUSTER;
11190
            } else if (STRPREFIX(val, "sheepdog:")) {
11191 11192
                disk->src->type = VIR_STORAGE_TYPE_NETWORK;
                disk->src->protocol = VIR_STORAGE_NET_PROTOCOL_SHEEPDOG;
11193 11194
                val += strlen("sheepdog:");
            } else
11195
                disk->src->type = VIR_STORAGE_TYPE_FILE;
11196 11197
            if (STREQ(arg, "-cdrom")) {
                disk->device = VIR_DOMAIN_DISK_DEVICE_CDROM;
11198 11199 11200
                if (((def->os.arch == VIR_ARCH_PPC64) &&
                    def->os.machine && STREQ(def->os.machine, "pseries")))
                    disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
11201 11202
                if (VIR_STRDUP(disk->dst, "hdc") < 0)
                    goto error;
11203
                disk->src->readonly = true;
11204 11205 11206 11207 11208 11209 11210 11211 11212 11213
            } 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;
11214 11215 11216
                   if (((def->os.arch == VIR_ARCH_PPC64) &&
                       def->os.machine && STREQ(def->os.machine, "pseries")))
                       disk->bus = VIR_DOMAIN_DISK_BUS_SCSI;
11217
                }
11218 11219
                if (VIR_STRDUP(disk->dst, arg + 1) < 0)
                    goto error;
11220
            }
11221
            if (VIR_STRDUP(disk->src->path, val) < 0)
11222
                goto error;
11223

11224
            if (disk->src->type == VIR_STORAGE_TYPE_NETWORK) {
11225
                char *port;
11226

11227
                switch ((virStorageNetProtocol) disk->src->protocol) {
11228
                case VIR_STORAGE_NET_PROTOCOL_NBD:
11229
                    if (qemuParseNBDString(disk) < 0)
11230 11231
                        goto error;
                    break;
11232
                case VIR_STORAGE_NET_PROTOCOL_RBD:
11233 11234 11235
                    /* old-style CEPH_ARGS env variable is parsed later */
                    if (!ceph_args && qemuParseRBDString(disk) < 0)
                        goto error;
11236
                    break;
11237
                case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
11238
                    /* disk->src must be [vdiname] or [host]:[port]:[vdiname] */
11239
                    port = strchr(disk->src->path, ':');
11240 11241 11242 11243 11244 11245
                    if (port) {
                        char *vdi;

                        *port++ = '\0';
                        vdi = strchr(port, ':');
                        if (!vdi) {
11246 11247
                            virReportError(VIR_ERR_INTERNAL_ERROR,
                                           _("cannot parse sheepdog filename '%s'"), val);
11248 11249 11250
                            goto error;
                        }
                        *vdi++ = '\0';
11251
                        if (VIR_ALLOC(disk->src->hosts) < 0)
11252
                            goto error;
11253 11254 11255
                        disk->src->nhosts = 1;
                        disk->src->hosts->name = disk->src->path;
                        if (VIR_STRDUP(disk->src->hosts->port, port) < 0)
11256
                            goto error;
11257
                        if (VIR_STRDUP(disk->src->path, vdi) < 0)
11258
                            goto error;
11259 11260
                    }
                    break;
11261
                case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
11262 11263 11264
                    if (qemuParseGlusterString(disk) < 0)
                        goto error;

P
Paolo Bonzini 已提交
11265
                    break;
11266
                case VIR_STORAGE_NET_PROTOCOL_ISCSI:
P
Paolo Bonzini 已提交
11267 11268 11269
                    if (qemuParseISCSIString(disk) < 0)
                        goto error;

11270
                    break;
11271 11272 11273 11274 11275 11276
                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:
11277
                case VIR_STORAGE_NET_PROTOCOL_NONE:
11278 11279
                    /* ignored for now */
                    break;
11280 11281 11282
                }
            }

11283
            if (virDomainDiskDefAssignAddress(xmlopt, disk) < 0) {
11284 11285 11286
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Cannot assign address for device name '%s'"),
                               disk->dst);
11287
                goto error;
11288
            }
11289

11290
            if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
11291
                goto error;
11292
        } else if (STREQ(arg, "-no-acpi")) {
J
Ján Tomko 已提交
11293
            def->features[VIR_DOMAIN_FEATURE_ACPI] = VIR_TRISTATE_SWITCH_ABSENT;
11294 11295 11296 11297
        } 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 已提交
11298 11299
        } else if (STREQ(arg, "-enable-kvm")) {
            def->virtType = VIR_DOMAIN_VIRT_KVM;
11300
        } else if (STREQ(arg, "-nographic")) {
11301
            nographics = true;
11302
        } else if (STREQ(arg, "-full-screen")) {
11303
            fullscreen = true;
11304 11305 11306 11307
        } else if (STREQ(arg, "-localtime")) {
            def->clock.offset = VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME;
        } else if (STREQ(arg, "-kernel")) {
            WANT_VALUE();
11308 11309
            if (VIR_STRDUP(def->os.kernel, val) < 0)
                goto error;
11310 11311
        } else if (STREQ(arg, "-bios")) {
            WANT_VALUE();
11312 11313
            if (VIR_STRDUP(def->os.loader, val) < 0)
                goto error;
11314 11315
        } else if (STREQ(arg, "-initrd")) {
            WANT_VALUE();
11316 11317
            if (VIR_STRDUP(def->os.initrd, val) < 0)
                goto error;
11318 11319
        } else if (STREQ(arg, "-append")) {
            WANT_VALUE();
11320 11321
            if (VIR_STRDUP(def->os.cmdline, val) < 0)
                goto error;
O
Olivia Yin 已提交
11322 11323
        } else if (STREQ(arg, "-dtb")) {
            WANT_VALUE();
11324 11325
            if (VIR_STRDUP(def->os.dtb, val) < 0)
                goto error;
11326
        } else if (STREQ(arg, "-boot")) {
11327
            const char *token = NULL;
11328 11329
            WANT_VALUE();

11330 11331 11332 11333 11334 11335 11336 11337 11338 11339
            if (!strchr(val, ','))
                qemuParseCommandLineBootDevs(def, val);
            else {
                token = val;
                while (token && *token) {
                    if (STRPREFIX(token, "order=")) {
                        token += strlen("order=");
                        qemuParseCommandLineBootDevs(def, token);
                    } else if (STRPREFIX(token, "menu=on")) {
                        def->os.bootmenu = 1;
11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355
                    } 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;
11356 11357 11358 11359 11360 11361 11362 11363
                    }
                    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++;
                }
            }
11364 11365 11366 11367 11368
        } else if (STREQ(arg, "-name")) {
            char *process;
            WANT_VALUE();
            process = strstr(val, ",process=");
            if (process == NULL) {
11369 11370
                if (VIR_STRDUP(def->name, val) < 0)
                    goto error;
11371
            } else {
11372 11373
                if (VIR_STRNDUP(def->name, val, process - val) < 0)
                    goto error;
11374
            }
11375 11376
            if (STREQ(def->name, ""))
                VIR_FREE(def->name);
11377 11378
        } else if (STREQ(arg, "-M") ||
                   STREQ(arg, "-machine")) {
11379 11380 11381 11382 11383 11384 11385
            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='...' */
11386
            WANT_VALUE();
11387 11388
            if (!(list = virStringSplit(val, ",", 0)))
                goto error;
11389 11390 11391 11392 11393 11394 11395
            param = list[0];

            if (STRPREFIX(param, "type="))
                param += strlen("type=");
            if (!strchr(param, '=')) {
                if (VIR_STRDUP(def->os.machine, param) < 0) {
                    virStringFreeList(list);
11396
                    goto error;
11397 11398 11399 11400 11401 11402 11403 11404
                }
                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 已提交
11405
                    def->mem.dump_core = virTristateSwitchTypeFromString(param);
11406
                    if (def->mem.dump_core <= 0)
J
Ján Tomko 已提交
11407
                        def->mem.dump_core = VIR_TRISTATE_SWITCH_ABSENT;
11408 11409 11410 11411
                } 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 已提交
11412
                    def->features[VIR_DOMAIN_FEATURE_PAE] = VIR_TRISTATE_SWITCH_ON;
11413 11414
                }
            }
11415
            virStringFreeList(list);
11416 11417 11418 11419
        } else if (STREQ(arg, "-serial")) {
            WANT_VALUE();
            if (STRNEQ(val, "none")) {
                virDomainChrDefPtr chr;
11420 11421 11422 11423

                if (!(chr = virDomainChrDefNew()))
                    goto error;

E
Eric Blake 已提交
11424 11425
                if (qemuParseCommandLineChr(&chr->source, val) < 0) {
                    virDomainChrDefFree(chr);
11426
                    goto error;
E
Eric Blake 已提交
11427
                }
11428 11429 11430
                chr->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL;
                chr->target.port = def->nserials;
                if (VIR_APPEND_ELEMENT(def->serials, def->nserials, chr) < 0) {
11431
                    virDomainChrDefFree(chr);
11432
                    goto error;
11433 11434 11435 11436 11437 11438
                }
            }
        } else if (STREQ(arg, "-parallel")) {
            WANT_VALUE();
            if (STRNEQ(val, "none")) {
                virDomainChrDefPtr chr;
11439 11440 11441 11442

                if (!(chr = virDomainChrDefNew()))
                    goto error;

E
Eric Blake 已提交
11443 11444
                if (qemuParseCommandLineChr(&chr->source, val) < 0) {
                    virDomainChrDefFree(chr);
11445
                    goto error;
E
Eric Blake 已提交
11446
                }
11447 11448 11449
                chr->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL;
                chr->target.port = def->nparallels;
                if (VIR_APPEND_ELEMENT(def->parallels, def->nparallels, chr) < 0) {
11450
                    virDomainChrDefFree(chr);
11451
                    goto error;
11452 11453 11454 11455 11456
                }
            }
        } else if (STREQ(arg, "-usbdevice")) {
            WANT_VALUE();
            if (STREQ(val, "tablet") ||
11457 11458
                STREQ(val, "mouse") ||
                STREQ(val, "keyboard")) {
11459 11460
                virDomainInputDefPtr input;
                if (VIR_ALLOC(input) < 0)
11461
                    goto error;
11462 11463 11464
                input->bus = VIR_DOMAIN_INPUT_BUS_USB;
                if (STREQ(val, "tablet"))
                    input->type = VIR_DOMAIN_INPUT_TYPE_TABLET;
11465
                else if (STREQ(val, "mouse"))
11466
                    input->type = VIR_DOMAIN_INPUT_TYPE_MOUSE;
11467 11468 11469 11470
                else
                    input->type = VIR_DOMAIN_INPUT_TYPE_KBD;

                if (VIR_APPEND_ELEMENT(def->inputs, def->ninputs, input) < 0) {
11471
                    virDomainInputDefFree(input);
11472
                    goto error;
11473 11474
                }
            } else if (STRPREFIX(val, "disk:")) {
11475
                if (!(disk = virDomainDiskDefNew()))
11476
                    goto error;
11477
                if (VIR_STRDUP(disk->src->path, val + strlen("disk:")) < 0)
11478
                    goto error;
11479 11480
                if (STRPREFIX(disk->src->path, "/dev/"))
                    disk->src->type = VIR_STORAGE_TYPE_BLOCK;
11481
                else
11482
                    disk->src->type = VIR_STORAGE_TYPE_FILE;
11483 11484
                disk->device = VIR_DOMAIN_DISK_DEVICE_DISK;
                disk->bus = VIR_DOMAIN_DISK_BUS_USB;
J
Ján Tomko 已提交
11485
                disk->removable = VIR_TRISTATE_SWITCH_ABSENT;
11486 11487
                if (VIR_STRDUP(disk->dst, "sda") < 0)
                    goto error;
11488
                if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
11489
                    goto error;
11490 11491 11492 11493
            } else {
                virDomainHostdevDefPtr hostdev;
                if (!(hostdev = qemuParseCommandLineUSB(val)))
                    goto error;
11494
                if (VIR_APPEND_ELEMENT(def->hostdevs, def->nhostdevs, hostdev) < 0) {
11495
                    virDomainHostdevDefFree(hostdev);
11496
                    goto error;
11497 11498 11499 11500 11501 11502
                }
            }
        } else if (STREQ(arg, "-net")) {
            WANT_VALUE();
            if (!STRPREFIX(val, "nic") && STRNEQ(val, "none")) {
                virDomainNetDefPtr net;
11503
                if (!(net = qemuParseCommandLineNet(xmlopt, val, nnics, nics)))
11504
                    goto error;
11505
                if (VIR_APPEND_ELEMENT(def->nets, def->nnets, net) < 0) {
11506
                    virDomainNetDefFree(net);
11507
                    goto error;
11508 11509 11510 11511
                }
            }
        } else if (STREQ(arg, "-drive")) {
            WANT_VALUE();
11512
            if (!(disk = qemuParseCommandLineDisk(xmlopt, val, def,
11513
                                                  nvirtiodisk,
11514
                                                  ceph_args != NULL)))
11515 11516 11517
                goto error;
            if (disk->bus == VIR_DOMAIN_DISK_BUS_VIRTIO)
                nvirtiodisk++;
11518 11519
            if (VIR_APPEND_ELEMENT(def->disks, def->ndisks, disk) < 0)
                goto error;
11520 11521 11522 11523 11524
        } else if (STREQ(arg, "-pcidevice")) {
            virDomainHostdevDefPtr hostdev;
            WANT_VALUE();
            if (!(hostdev = qemuParseCommandLinePCI(val)))
                goto error;
11525
            if (VIR_APPEND_ELEMENT(def->hostdevs, def->nhostdevs, hostdev) < 0) {
11526
                virDomainHostdevDefFree(hostdev);
11527
                goto error;
11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543
            }
        } 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;
11544 11545
                } else if (STRPREFIX(start, "hda")) {
                    type = VIR_DOMAIN_SOUND_MODEL_ICH6;
11546 11547 11548 11549 11550
                }

                if (type != -1) {
                    virDomainSoundDefPtr snd;
                    if (VIR_ALLOC(snd) < 0)
11551
                        goto error;
11552
                    snd->model = type;
11553
                    if (VIR_APPEND_ELEMENT(def->sounds, def->nsounds, snd) < 0) {
11554
                        VIR_FREE(snd);
11555
                        goto error;
11556 11557 11558 11559 11560 11561 11562
                    }
                }

                start = tmp ? tmp + 1 : NULL;
            }
        } else if (STREQ(arg, "-watchdog")) {
            WANT_VALUE();
11563
            int model = virDomainWatchdogModelTypeFromString(val);
11564 11565 11566 11567

            if (model != -1) {
                virDomainWatchdogDefPtr wd;
                if (VIR_ALLOC(wd) < 0)
11568
                    goto error;
11569 11570 11571 11572 11573 11574
                wd->model = model;
                wd->action = VIR_DOMAIN_WATCHDOG_ACTION_RESET;
                def->watchdog = wd;
            }
        } else if (STREQ(arg, "-watchdog-action") && def->watchdog) {
            WANT_VALUE();
11575
            int action = virDomainWatchdogActionTypeFromString(val);
11576 11577 11578 11579 11580

            if (action != -1)
                def->watchdog->action = action;
        } else if (STREQ(arg, "-bootloader")) {
            WANT_VALUE();
11581 11582
            if (VIR_STRDUP(def->os.bootloader, val) < 0)
                goto error;
11583 11584 11585 11586 11587 11588 11589 11590 11591
        } 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) {
11592 11593
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("unknown video adapter type '%s'"), val);
11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604
                    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")) {
11605 11606
            virDomainControllerDefPtr ctldef;
            if (VIR_ALLOC(ctldef) < 0)
11607
                goto error;
11608 11609 11610
            ctldef->type = VIR_DOMAIN_CONTROLLER_TYPE_USB;
            ctldef->idx = 0;
            ctldef->model = -1;
11611 11612
            if (virDomainControllerInsert(def, ctldef) < 0) {
                VIR_FREE(ctldef);
11613
                goto error;
11614
            }
11615 11616
        } else if (STREQ(arg, "-pidfile")) {
            WANT_VALUE();
11617
            if (pidfile)
11618 11619
                if (VIR_STRDUP(*pidfile, val) < 0)
                    goto error;
11620 11621 11622 11623 11624
        } else if (STREQ(arg, "-incoming")) {
            WANT_VALUE();
            /* ignore, used via restore/migrate APIs */
        } else if (STREQ(arg, "-monitor")) {
            WANT_VALUE();
11625 11626 11627 11628
            if (monConfig) {
                virDomainChrSourceDefPtr chr;

                if (VIR_ALLOC(chr) < 0)
11629
                    goto error;
11630

E
Eric Blake 已提交
11631 11632
                if (qemuParseCommandLineChr(chr, val) < 0) {
                    virDomainChrSourceDefFree(chr);
11633
                    goto error;
E
Eric Blake 已提交
11634
                }
11635 11636 11637

                *monConfig = chr;
            }
11638 11639 11640 11641 11642 11643 11644 11645 11646
        } else if (STREQ(arg, "-global") &&
                   STRPREFIX(progargv[i + 1], "PIIX4_PM.disable_s3=")) {
            /* We want to parse only the known "-global" parameters,
             * so the ones that we don't know are still added to the
             * namespace */
            WANT_VALUE();

            val += strlen("PIIX4_PM.disable_s3=");
            if (STREQ(val, "0"))
J
Ján Tomko 已提交
11647
                def->pm.s3 = VIR_TRISTATE_BOOL_YES;
11648
            else if (STREQ(val, "1"))
J
Ján Tomko 已提交
11649
                def->pm.s3 = VIR_TRISTATE_BOOL_NO;
11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663
            else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("invalid value for disable_s3 parameter: "
                                 "'%s'"), val);
                goto error;
            }

        } else if (STREQ(arg, "-global") &&
                   STRPREFIX(progargv[i + 1], "PIIX4_PM.disable_s4=")) {

            WANT_VALUE();

            val += strlen("PIIX4_PM.disable_s4=");
            if (STREQ(val, "0"))
J
Ján Tomko 已提交
11664
                def->pm.s4 = VIR_TRISTATE_BOOL_YES;
11665
            else if (STREQ(val, "1"))
J
Ján Tomko 已提交
11666
                def->pm.s4 = VIR_TRISTATE_BOOL_NO;
11667 11668 11669 11670 11671 11672 11673
            else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("invalid value for disable_s4 parameter: "
                                 "'%s'"), val);
                goto error;
            }

11674 11675 11676 11677 11678
        } else if (STREQ(arg, "-global") &&
                   STRPREFIX(progargv[i + 1], "spapr-nvram.reg=")) {
            WANT_VALUE();

            if (VIR_ALLOC(def->nvram) < 0)
11679
                goto error;
11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690

            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;
            }
11691 11692 11693
        } else if (STREQ(arg, "-S") ||
                   STREQ(arg, "-nodefaults") ||
                   STREQ(arg, "-nodefconfig")) {
11694
            /* ignore, always added by libvirt */
L
Laine Stump 已提交
11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712
        } 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;
            }
11713
        } else {
L
Laine Stump 已提交
11714 11715 11716 11717
            argRecognized = false;
        }

        if (!argRecognized) {
11718
            char *tmp = NULL;
11719 11720 11721 11722 11723
            /* 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);
11724 11725 11726
            if (VIR_STRDUP(tmp, arg) < 0 ||
                VIR_APPEND_ELEMENT(cmd->args, cmd->num_args, tmp) < 0) {
                VIR_FREE(tmp);
11727
                goto error;
11728
            }
11729 11730 11731 11732
        }
    }

#undef WANT_VALUE
11733 11734 11735
    if (def->ndisks > 0 && ceph_args) {
        char *hosts, *port, *saveptr = NULL, *token;
        virDomainDiskDefPtr first_rbd_disk = NULL;
11736
        for (i = 0; i < def->ndisks; i++) {
11737 11738
            if (def->disks[i]->src->type == VIR_STORAGE_TYPE_NETWORK &&
                def->disks[i]->src->protocol == VIR_STORAGE_NET_PROTOCOL_RBD) {
11739 11740
                first_rbd_disk = def->disks[i];
                break;
11741
            }
11742
        }
11743

11744
        if (!first_rbd_disk) {
11745 11746
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("CEPH_ARGS was set without an rbd disk"));
11747 11748
            goto error;
        }
11749

11750 11751
        /* CEPH_ARGS should be: -m host1[:port1][,host2[:port2]]... */
        if (!STRPREFIX(ceph_args, "-m ")) {
11752 11753
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not parse CEPH_ARGS '%s'"), ceph_args);
11754 11755
            goto error;
        }
11756 11757
        if (VIR_STRDUP(hosts, strchr(ceph_args, ' ') + 1) < 0)
            goto error;
11758
        first_rbd_disk->src->nhosts = 0;
11759 11760
        token = strtok_r(hosts, ",", &saveptr);
        while (token != NULL) {
11761 11762
            if (VIR_REALLOC_N(first_rbd_disk->src->hosts,
                              first_rbd_disk->src->nhosts + 1) < 0) {
11763
                VIR_FREE(hosts);
11764
                goto error;
11765 11766 11767 11768
            }
            port = strchr(token, ':');
            if (port) {
                *port++ = '\0';
11769
                if (VIR_STRDUP(port, port) < 0) {
11770
                    VIR_FREE(hosts);
11771
                    goto error;
11772 11773
                }
            }
11774 11775
            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,
11776
                           token) < 0) {
11777
                VIR_FREE(hosts);
11778
                goto error;
11779
            }
11780 11781
            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;
11782

11783
            first_rbd_disk->src->nhosts++;
11784 11785 11786 11787
            token = strtok_r(NULL, ",", &saveptr);
        }
        VIR_FREE(hosts);

11788
        if (first_rbd_disk->src->nhosts == 0) {
11789 11790
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("found no rbd hosts in CEPH_ARGS '%s'"), ceph_args);
11791
            goto error;
11792 11793 11794
        }
    }

11795 11796
    if (!def->os.machine) {
        const char *defaultMachine =
11797
                        virCapabilitiesDefaultGuestMachine(qemuCaps,
11798 11799 11800 11801
                                                           def->os.type,
                                                           def->os.arch,
                                                           virDomainVirtTypeToString(def->virtType));
        if (defaultMachine != NULL)
11802 11803
            if (VIR_STRDUP(def->os.machine, defaultMachine) < 0)
                goto error;
11804 11805
    }

11806 11807 11808 11809 11810
    if (!nographics && def->ngraphics == 0) {
        virDomainGraphicsDefPtr sdl;
        const char *display = qemuFindEnv(progenv, "DISPLAY");
        const char *xauth = qemuFindEnv(progenv, "XAUTHORITY");
        if (VIR_ALLOC(sdl) < 0)
11811
            goto error;
11812 11813
        sdl->type = VIR_DOMAIN_GRAPHICS_TYPE_SDL;
        sdl->data.sdl.fullscreen = fullscreen;
11814
        if (VIR_STRDUP(sdl->data.sdl.display, display) < 0) {
11815
            VIR_FREE(sdl);
11816
            goto error;
11817
        }
11818
        if (VIR_STRDUP(sdl->data.sdl.xauth, xauth) < 0) {
11819
            VIR_FREE(sdl);
11820
            goto error;
11821 11822
        }

11823
        if (VIR_APPEND_ELEMENT(def->graphics, def->ngraphics, sdl) < 0) {
11824
            virDomainGraphicsDefFree(sdl);
11825
            goto error;
11826 11827 11828 11829 11830 11831
        }
    }

    if (def->ngraphics) {
        virDomainVideoDefPtr vid;
        if (VIR_ALLOC(vid) < 0)
11832
            goto error;
11833 11834 11835 11836 11837
        if (def->virtType == VIR_DOMAIN_VIRT_XEN)
            vid->type = VIR_DOMAIN_VIDEO_TYPE_XEN;
        else
            vid->type = video;
        vid->vram = virDomainVideoDefaultRAM(def, vid->type);
11838 11839
        vid->ram = vid->type == VIR_DOMAIN_VIDEO_TYPE_QXL ?
                       virDomainVideoDefaultRAM(def, vid->type) : 0;
11840 11841
        vid->heads = 1;

11842
        if (VIR_APPEND_ELEMENT(def->videos, def->nvideos, vid) < 0) {
11843
            virDomainVideoDefFree(vid);
11844
            goto error;
11845 11846 11847 11848 11849 11850 11851 11852 11853
        }
    }

    /*
     * having a balloon is the default, define one with type="none" to avoid it
     */
    if (!def->memballoon) {
        virDomainMemballoonDefPtr memballoon;
        if (VIR_ALLOC(memballoon) < 0)
11854
            goto error;
L
Laine Stump 已提交
11855
        memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_NONE;
11856 11857 11858 11859 11860 11861 11862 11863 11864

        def->memballoon = memballoon;
    }

    VIR_FREE(nics);

    if (virDomainDefAddImplicitControllers(def) < 0)
        goto error;

11865 11866 11867
    if (virDomainDefPostParse(def, qemuCaps, xmlopt) < 0)
        goto error;

11868
    if (cmd->num_args || cmd->num_env) {
11869
        def->ns = *virDomainXMLOptionGetNamespace(xmlopt);
11870 11871 11872
        def->namespaceData = cmd;
    }
    else
11873
        qemuDomainCmdlineDefFree(cmd);
11874 11875 11876

    return def;

11877
 error:
E
Eric Blake 已提交
11878
    virDomainDiskDefFree(disk);
11879
    qemuDomainCmdlineDefFree(cmd);
11880 11881
    virDomainDefFree(def);
    VIR_FREE(nics);
11882 11883 11884 11885 11886 11887
    if (monConfig) {
        virDomainChrSourceDefFree(*monConfig);
        *monConfig = NULL;
    }
    if (pidfile)
        VIR_FREE(*pidfile);
11888 11889 11890 11891
    return NULL;
}


11892
virDomainDefPtr qemuParseCommandLineString(virCapsPtr qemuCaps,
11893
                                           virDomainXMLOptionPtr xmlopt,
11894 11895 11896 11897
                                           const char *args,
                                           char **pidfile,
                                           virDomainChrSourceDefPtr *monConfig,
                                           bool *monJSON)
11898
{
E
Eric Blake 已提交
11899 11900
    char **progenv = NULL;
    char **progargv = NULL;
11901 11902 11903 11904 11905
    virDomainDefPtr def = NULL;

    if (qemuStringToArgvEnv(args, &progenv, &progargv) < 0)
        goto cleanup;

11906
    def = qemuParseCommandLine(qemuCaps, xmlopt, progenv, progargv,
11907
                               pidfile, monConfig, monJSON);
11908

11909
 cleanup:
E
Eric Blake 已提交
11910 11911
    virStringFreeList(progargv);
    virStringFreeList(progenv);
11912 11913 11914

    return def;
}
11915 11916


11917
static int qemuParseProcFileStrings(int pid_value,
11918
                                    const char *name,
E
Eric Blake 已提交
11919
                                    char ***list)
11920 11921 11922 11923 11924 11925 11926
{
    char *path = NULL;
    int ret = -1;
    char *data = NULL;
    ssize_t len;
    char *tmp;
    size_t nstr = 0;
11927
    char **str = NULL;
11928

11929
    if (virAsprintf(&path, "/proc/%d/%s", pid_value, name) < 0)
11930 11931 11932 11933 11934 11935 11936
        goto cleanup;

    if ((len = virFileReadAll(path, 1024*128, &data)) < 0)
        goto cleanup;

    tmp = data;
    while (tmp < (data + len)) {
11937
        if (VIR_EXPAND_N(str, nstr, 1) < 0)
11938 11939
            goto cleanup;

11940
        if (VIR_STRDUP(str[nstr-1], tmp) < 0)
11941 11942 11943 11944 11945 11946 11947
            goto cleanup;
        /* Skip arg */
        tmp += strlen(tmp);
        /* Skip \0 separator */
        tmp++;
    }

11948
    if (VIR_EXPAND_N(str, nstr, 1) < 0)
11949 11950 11951 11952 11953
        goto cleanup;

    str[nstr-1] = NULL;

    ret = nstr-1;
E
Eric Blake 已提交
11954
    *list = str;
11955

11956
 cleanup:
E
Eric Blake 已提交
11957 11958
    if (ret < 0)
        virStringFreeList(str);
11959 11960 11961 11962 11963
    VIR_FREE(data);
    VIR_FREE(path);
    return ret;
}

11964
virDomainDefPtr qemuParseCommandLinePid(virCapsPtr qemuCaps,
11965
                                        virDomainXMLOptionPtr xmlopt,
11966
                                        pid_t pid,
11967 11968 11969 11970 11971
                                        char **pidfile,
                                        virDomainChrSourceDefPtr *monConfig,
                                        bool *monJSON)
{
    virDomainDefPtr def = NULL;
E
Eric Blake 已提交
11972 11973
    char **progargv = NULL;
    char **progenv = NULL;
11974 11975 11976
    char *exepath = NULL;
    char *emulator;

11977 11978 11979 11980
    /* 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 ||
11981 11982 11983
        qemuParseProcFileStrings(pid, "environ", &progenv) < 0)
        goto cleanup;

11984
    if (!(def = qemuParseCommandLine(qemuCaps, xmlopt, progenv, progargv,
11985 11986 11987
                                     pidfile, monConfig, monJSON)))
        goto cleanup;

11988
    if (virAsprintf(&exepath, "/proc/%d/exe", (int) pid) < 0)
11989 11990 11991 11992 11993
        goto cleanup;

    if (virFileResolveLink(exepath, &emulator) < 0) {
        virReportSystemError(errno,
                             _("Unable to resolve %s for pid %u"),
11994
                             exepath, (int) pid);
11995 11996 11997 11998 11999
        goto cleanup;
    }
    VIR_FREE(def->emulator);
    def->emulator = emulator;

12000
 cleanup:
12001
    VIR_FREE(exepath);
E
Eric Blake 已提交
12002 12003
    virStringFreeList(progargv);
    virStringFreeList(progenv);
12004 12005
    return def;
}