qemu_command.c 359.6 KB
Newer Older
1 2 3
/*
 * qemu_command.c: QEMU command generation
 *
4
 * Copyright (C) 2006-2016 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
 */

#include <config.h>

#include "qemu_command.h"
25
#include "qemu_hostdev.h"
26
#include "qemu_capabilities.h"
27
#include "qemu_interface.h"
28
#include "qemu_alias.h"
29
#include "qemu_security.h"
30
#include "qemu_block.h"
31
#include "cpu/cpu.h"
32
#include "dirname.h"
33
#include "viralloc.h"
34
#include "virlog.h"
35
#include "virarch.h"
36
#include "virerror.h"
E
Eric Blake 已提交
37
#include "virfile.h"
38
#include "virnetdev.h"
39
#include "virnetdevbridge.h"
40
#include "virqemu.h"
41
#include "virstring.h"
42
#include "virtime.h"
43
#include "viruuid.h"
44
#include "domain_nwfilter.h"
45
#include "domain_addr.h"
46
#include "domain_audit.h"
M
Michal Novotny 已提交
47
#include "domain_conf.h"
48
#include "netdev_bandwidth_conf.h"
49
#include "snapshot_conf.h"
50
#include "storage_conf.h"
51
#include "secret_conf.h"
52
#include "virnetdevtap.h"
53
#include "virnetdevopenvswitch.h"
54
#include "device_conf.h"
55
#include "virstoragefile.h"
56
#include "virtpm.h"
57
#include "virscsi.h"
58
#include "virnuma.h"
59
#include "virgic.h"
60
#include "virmdev.h"
61 62 63
#if defined(__linux__)
# include <linux/capability.h>
#endif
64
#include "logging/log_manager.h"
65 66 67 68 69 70

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

#define VIR_FROM_THIS VIR_FROM_QEMU

71 72
VIR_LOG_INIT("qemu.qemu_command");

73
VIR_ENUM_DECL(virDomainDiskQEMUBus);
74 75 76 77 78 79 80 81
VIR_ENUM_IMPL(virDomainDiskQEMUBus, VIR_DOMAIN_DISK_BUS_LAST,
              "ide",
              "floppy",
              "scsi",
              "virtio",
              "xen",
              "usb",
              "uml",
82 83
              "sata",
              "sd")
84 85


86
VIR_ENUM_DECL(qemuDiskCacheV2);
87 88 89 90 91

VIR_ENUM_IMPL(qemuDiskCacheV2, VIR_DOMAIN_DISK_CACHE_LAST,
              "default",
              "none",
              "writethrough",
92
              "writeback",
93 94
              "directsync",
              "unsafe");
95 96

VIR_ENUM_IMPL(qemuVideo, VIR_DOMAIN_VIDEO_TYPE_LAST,
97
              "", /* default value, we shouldn't see this */
98 99 100
              "std",
              "cirrus",
              "vmware",
101
              "", /* don't support xen */
102
              "", /* don't support vbox */
103
              "qxl",
M
Marc-André Lureau 已提交
104
              "", /* don't support parallels */
F
Fabian Freyer 已提交
105
              "", /* no need for virtio */
106 107
              "" /* don't support gop */,
              "" /* 'none' doesn't make sense here */);
108

109
VIR_ENUM_DECL(qemuDeviceVideo);
110 111

VIR_ENUM_IMPL(qemuDeviceVideo, VIR_DOMAIN_VIDEO_TYPE_LAST,
112
              "", /* default value, we shouldn't see this */
113 114 115
              "VGA",
              "cirrus-vga",
              "vmware-svga",
116
              "", /* don't support xen */
117
              "", /* don't support vbox */
118
              "qxl-vga",
M
Marc-André Lureau 已提交
119
              "", /* don't support parallels */
F
Fabian Freyer 已提交
120
              "virtio-vga",
121 122
              "" /* don't support gop */,
              "" /* 'none' doesn't make sense here */);
123

124
VIR_ENUM_DECL(qemuDeviceVideoSecondary);
125 126

VIR_ENUM_IMPL(qemuDeviceVideoSecondary, VIR_DOMAIN_VIDEO_TYPE_LAST,
127
              "", /* default value, we shouldn't see this */
128 129 130 131 132 133 134
              "", /* no secondary device for VGA */
              "", /* no secondary device for cirrus-vga */
              "", /* no secondary device for vmware-svga */
              "", /* don't support xen */
              "", /* don't support vbox */
              "qxl",
              "", /* don't support parallels */
135
              "virtio-gpu",
136 137
              "" /* don't support gop */,
              "" /* 'none' doesn't make sense here */);
138

139
VIR_ENUM_DECL(qemuSoundCodec);
140 141 142

VIR_ENUM_IMPL(qemuSoundCodec, VIR_DOMAIN_SOUND_CODEC_TYPE_LAST,
              "hda-duplex",
F
Filip Alac 已提交
143 144
              "hda-micro",
              "hda-output");
145

146
VIR_ENUM_DECL(qemuControllerModelUSB);
147 148 149 150 151 152 153 154 155 156

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 已提交
157
              "pci-ohci",
158
              "nec-usb-xhci",
159 160
              "qusb1",
              "qusb2",
161
              "qemu-xhci",
162
              "none");
163

164
VIR_ENUM_DECL(qemuDomainFSDriver);
165 166 167
VIR_ENUM_IMPL(qemuDomainFSDriver, VIR_DOMAIN_FS_DRIVER_TYPE_LAST,
              "local",
              "local",
168
              "handle",
169
              NULL,
D
Dmitry Guryanov 已提交
170
              NULL,
171
              NULL);
172

173
VIR_ENUM_DECL(qemuNumaPolicy);
174 175 176 177
VIR_ENUM_IMPL(qemuNumaPolicy, VIR_DOMAIN_NUMATUNE_MEM_LAST,
              "bind",
              "preferred",
              "interleave");
178

179

180 181 182 183 184 185 186 187 188 189 190 191
/**
 * qemuBuildMasterKeyCommandLine:
 * @cmd: the command to modify
 * @qemuCaps qemu capabilities object
 * @domainLibDir: location to find the master key

 * Formats the command line for a master key if available
 *
 * Returns 0 on success, -1 w/ error message on failure
 */
static int
qemuBuildMasterKeyCommandLine(virCommandPtr cmd,
192
                              qemuDomainObjPrivatePtr priv)
193 194 195 196
{
    int ret = -1;
    char *alias = NULL;
    char *path = NULL;
197
    virBuffer buf = VIR_BUFFER_INITIALIZER;
198 199 200 201 202

    /* If the -object secret does not exist, then just return. This just
     * means the domain won't be able to use a secret master key and is
     * not a failure.
     */
203
    if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_OBJECT_SECRET)) {
204 205 206 207 208 209 210 211 212 213 214 215
        VIR_INFO("secret object is not supported by this QEMU binary");
        return 0;
    }

    if (!(alias = qemuDomainGetMasterKeyAlias()))
        return -1;

    /* Get the path. NB, the mocked test will not have the created
     * file so we cannot check for existence, which is no different
     * than other command line options which do not check for the
     * existence of socket files before using.
     */
216
    if (!(path = qemuDomainGetMasterKeyFilePath(priv->libDir)))
217 218 219
        goto cleanup;

    virCommandAddArg(cmd, "-object");
220
    virBufferAsprintf(&buf, "secret,id=%s,format=raw,file=", alias);
221
    virQEMUBuildBufferEscapeComma(&buf, path);
222
    virCommandAddArgBuffer(cmd, &buf);
223 224 225 226

    ret = 0;

 cleanup:
227
    virBufferFreeAndReset(&buf);
228 229 230 231 232 233
    VIR_FREE(alias);
    VIR_FREE(path);
    return ret;
}


234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
/**
 * qemuVirCommandGetFDSet:
 * @cmd: the command to modify
 * @fd: fd to reassign to the child
 *
 * Get the parameters for the QEMU -add-fd command line option
 * for the given file descriptor. The file descriptor must previously
 * have been 'transferred' in a virCommandPassFD() call.
 * This function for example returns "set=10,fd=20".
 */
static char *
qemuVirCommandGetFDSet(virCommandPtr cmd, int fd)
{
    char *result = NULL;
    int idx = virCommandPassFDGetFDIndex(cmd, fd);

    if (idx >= 0) {
        ignore_value(virAsprintf(&result, "set=%d,fd=%d", idx, fd));
    } else {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("file descriptor %d has not been transferred"), fd);
    }

    return result;
}


/**
 * qemuVirCommandGetDevSet:
 * @cmd: the command to modify
 * @fd: fd to reassign to the child
 *
 * Get the parameters for the QEMU path= parameter where a file
 * descriptor is accessed via a file descriptor set, for example
 * /dev/fdset/10. The file descriptor must previously have been
 * 'transferred' in a virCommandPassFD() call.
 */
static char *
qemuVirCommandGetDevSet(virCommandPtr cmd, int fd)
{
    char *result = NULL;
    int idx = virCommandPassFDGetFDIndex(cmd, fd);

    if (idx >= 0) {
        ignore_value(virAsprintf(&result, "/dev/fdset/%d", idx));
    } else {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("file descriptor %d has not been transferred"), fd);
    }
    return result;
}


287 288
static int
qemuBuildDeviceAddressStr(virBufferPtr buf,
289
                          const virDomainDef *domainDef,
290
                          virDomainDeviceInfoPtr info,
291
                          virQEMUCapsPtr qemuCaps)
292
{
293 294
    int ret = -1;
    char *devStr = NULL;
295
    const char *contAlias = NULL;
296 297
    bool contIsPHB = false;
    int contTargetIndex = 0;
298

299
    if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
300 301
        size_t i;

302
        if (!(devStr = virPCIDeviceAddressAsString(&info->addr.pci)))
303 304 305 306 307 308
            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) {
309
                contAlias = cont->info.alias;
310
                contIsPHB = virDomainControllerIsPSeriesPHB(cont);
311
                contTargetIndex = cont->opts.pciopts.targetIndex;
312

313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
                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;
                }

                if (virDomainDeviceAliasIsUserAlias(contAlias)) {
                    /* When domain has builtin pci-root controller we don't put it
                     * onto cmd line. Therefore we can't set its alias. In that
                     * case, use the default one. */
                    if (!qemuDomainIsPSeries(domainDef) &&
                        cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT) {
                        if (virQEMUCapsHasPCIMultiBus(qemuCaps, domainDef))
                            contAlias = "pci.0";
                        else
                            contAlias = "pci";
                    } else if (cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT) {
                        contAlias = "pcie.0";
334
                    }
335 336 337 338 339 340 341 342 343 344 345 346 347
                }
                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;
        }

348 349 350 351 352 353 354 355 356 357 358
        if (contIsPHB && contTargetIndex > 0) {
            /* The PCI bus created by a spapr-pci-host-bridge device with
             * alias 'x' will be called 'x.0' rather than 'x'; however,
             * this does not apply to the implicit PHB in a pSeries guest,
             * which always has the hardcoded name 'pci.0' */
            virBufferAsprintf(buf, ",bus=%s.0", contAlias);
        } else {
            /* For all other controllers, the bus name matches the alias
             * of the corresponding controller */
            virBufferAsprintf(buf, ",bus=%s", contAlias);
        }
359

J
Ján Tomko 已提交
360
        if (info->addr.pci.multi == VIR_TRISTATE_SWITCH_ON)
361
            virBufferAddLit(buf, ",multifunction=on");
J
Ján Tomko 已提交
362
        else if (info->addr.pci.multi == VIR_TRISTATE_SWITCH_OFF)
363 364 365 366
            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);
367
    } else if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB) {
368 369 370 371
        if (!(contAlias = virDomainControllerAliasFind(domainDef,
                                                       VIR_DOMAIN_CONTROLLER_TYPE_USB,
                                                       info->addr.usb.bus)))
            goto cleanup;
J
Ján Tomko 已提交
372
        virBufferAsprintf(buf, ",bus=%s.0", contAlias);
373 374 375 376
        if (virDomainUSBAddressPortIsValid(info->addr.usb.port)) {
            virBufferAddLit(buf, ",port=");
            virDomainUSBAddressPortFormatBuf(buf, info->addr.usb.port);
        }
377 378 379
    } 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);
380 381 382 383 384 385
    } 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);
386 387 388 389
    } else if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_ISA) {
        virBufferAsprintf(buf, ",iobase=0x%x,irq=0x%x",
                          info->addr.isa.iobase,
                          info->addr.isa.irq);
390
    }
391

392
    ret = 0;
393
 cleanup:
394 395
    VIR_FREE(devStr);
    return ret;
396 397
}

398

399 400 401 402 403 404 405 406 407 408 409 410 411 412
/**
 * qemuBuildVirtioDevStr
 * @buf: virBufferPtr to append the built string
 * @baseName: qemu virtio device basename string. Ex: virtio-rng for <rng>
 * @devtype: virDomainDeviceType of the device. Ex: VIR_DOMAIN_DEVICE_TYPE_RNG
 * @devdata: *DefPtr of the device definition
 *
 * Build the qemu virtio -device name from the passed parameters. Currently
 * this is mostly about attaching the correct string prefix to @baseName for
 * the passed @type. So for @baseName "virtio-rng" and devdata->info.type
 * VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI, generate "virtio-rng-pci"
 *
 * Returns: -1 on failure, 0 on success
 */
413 414 415
static int
qemuBuildVirtioDevStr(virBufferPtr buf,
                      const char *baseName,
416 417
                      virDomainDeviceType devtype,
                      void *devdata)
418 419
{
    const char *implName = NULL;
420 421
    virDomainDeviceDef device = { .type = devtype };
    virDomainDeviceInfoPtr info;
422

423 424 425 426
    virDomainDeviceSetData(&device, devdata);
    info = virDomainDeviceGetInfo(&device);

    switch ((virDomainDeviceAddressType) info->type) {
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI:
        implName = "pci";
        break;

    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO:
        implName = "device";
        break;

    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW:
        implName = "ccw";
        break;

    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390:
        implName = "s390";
        break;

    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE:
    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_SERIAL:
    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCID:
    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB:
    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO:
    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_ISA:
    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DIMM:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unexpected address type for '%s'"), baseName);
        return -1;

    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE:
    case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_LAST:
    default:
457
        virReportEnumRangeError(virDomainDeviceAddressType, info->type);
458 459 460 461 462 463 464 465
        return -1;
    }

    virBufferAsprintf(buf, "%s-%s", baseName, implName);

    return 0;
}

466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
static int
qemuBuildVirtioOptionsStr(virBufferPtr buf,
                          virDomainVirtioOptionsPtr virtio,
                          virQEMUCapsPtr qemuCaps)
{
    if (!virtio)
        return 0;

    if (virtio->iommu != VIR_TRISTATE_SWITCH_ABSENT) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_PCI_IOMMU_PLATFORM)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("the iommu setting is not supported "
                             "with this QEMU binary"));
            return -1;
        }
        virBufferAsprintf(buf, ",iommu_platform=%s",
                          virTristateSwitchTypeToString(virtio->iommu));
    }
    if (virtio->ats != VIR_TRISTATE_SWITCH_ABSENT) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_PCI_ATS)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("the ats setting is not supported with this "
                             "QEMU binary"));
            return -1;
        }
        virBufferAsprintf(buf, ",ats=%s",
                          virTristateSwitchTypeToString(virtio->ats));
    }

    return 0;
}

498 499
static int
qemuBuildRomStr(virBufferPtr buf,
500
                virDomainDeviceInfoPtr info)
501
{
502
    if (info->romenabled || info->rombar || info->romfile) {
503
        if (info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
504
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
505
                           "%s", _("ROM tuning is only supported for PCI devices"));
506 507 508
            return -1;
        }

509 510 511 512 513 514 515
        /* Passing an empty romfile= tells QEMU to disable ROM entirely for
         * this device, and makes other settings irrelevant */
        if (info->romenabled == VIR_TRISTATE_BOOL_NO) {
            virBufferAddLit(buf, ",romfile=");
            return 0;
        }

516
        switch (info->rombar) {
J
Ján Tomko 已提交
517
        case VIR_TRISTATE_SWITCH_OFF:
518 519
            virBufferAddLit(buf, ",rombar=0");
            break;
J
Ján Tomko 已提交
520
        case VIR_TRISTATE_SWITCH_ON:
521 522 523 524 525
            virBufferAddLit(buf, ",rombar=1");
            break;
        default:
            break;
        }
526 527 528 529
        if (info->romfile) {
           virBufferAddLit(buf, ",romfile=");
           virQEMUBuildBufferEscapeComma(buf, info->romfile);
        }
530
    }
531

532 533 534
    return 0;
}

535 536
static int
qemuBuildIoEventFdStr(virBufferPtr buf,
J
Ján Tomko 已提交
537
                      virTristateSwitch use,
538
                      virQEMUCapsPtr qemuCaps)
539
{
540
    if (use && virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_IOEVENTFD))
541
        virBufferAsprintf(buf, ",ioeventfd=%s",
J
Ján Tomko 已提交
542
                          virTristateSwitchTypeToString(use));
543 544
    return 0;
}
545 546

#define QEMU_SERIAL_PARAM_ACCEPTED_CHARS \
547
  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_ .+"
548 549 550 551

static int
qemuSafeSerialParamValue(const char *value)
{
552
    if (strspn(value, QEMU_SERIAL_PARAM_ACCEPTED_CHARS) != strlen(value)) {
553 554 555
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("driver serial '%s' contains unsafe characters"),
                       value);
556 557 558 559 560 561
        return -1;
    }

    return 0;
}

562

563 564 565 566 567 568 569 570 571 572
/**
 * qemuBuildSecretInfoProps:
 * @secinfo: pointer to the secret info object
 * @props: json properties to return
 *
 * Build the JSON properties for the secret info type.
 *
 * Returns 0 on success with the filled in JSON property; otherwise,
 * returns -1 on failure error message set.
 */
573
int
574 575 576 577 578 579 580 581 582
qemuBuildSecretInfoProps(qemuDomainSecretInfoPtr secinfo,
                         virJSONValuePtr *propsret)
{
    int ret = -1;
    char *keyid = NULL;

    if (!(keyid = qemuDomainGetMasterKeyAlias()))
        return -1;

583 584 585 586 587 588
    ret = qemuMonitorCreateObjectProps(propsret,
                                       "secret", secinfo->s.aes.alias,
                                       "s:data", secinfo->s.aes.ciphertext,
                                       "s:keyid", keyid,
                                       "s:iv", secinfo->s.aes.iv,
                                       "s:format", "base64", NULL);
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610

    VIR_FREE(keyid);
    return ret;
}


/**
 * qemuBuildObjectSecretCommandLine:
 * @cmd: the command to modify
 * @secinfo: pointer to the secret info object
 *
 * If the secinfo is available and associated with an AES secret,
 * then format the command line for the secret object. This object
 * will be referenced by the device that needs/uses it, so it needs
 * to be in place first.
 *
 * Returns 0 on success, -1 w/ error message on failure
 */
static int
qemuBuildObjectSecretCommandLine(virCommandPtr cmd,
                                 qemuDomainSecretInfoPtr secinfo)
{
611
    virBuffer buf = VIR_BUFFER_INITIALIZER;
612 613 614
    int ret = -1;
    virJSONValuePtr props = NULL;

615
    if (qemuBuildSecretInfoProps(secinfo, &props) < 0)
616 617
        return -1;

618
    if (virQEMUBuildObjectCommandlineFromJSON(&buf, props) < 0)
619 620
        goto cleanup;

621 622 623 624
    virCommandAddArg(cmd, "-object");
    virCommandAddArgBuffer(cmd, &buf);

    ret  = 0;
625 626

 cleanup:
627
    virBufferFreeAndReset(&buf);
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
    virJSONValueFree(props);
    return ret;
}


/* qemuBuildDiskSecinfoCommandLine:
 * @cmd: Pointer to the command string
 * @secinfo: Pointer to a possible secinfo
 *
 * Add the secret object for the disks that will be using it to perform
 * their authentication.
 *
 * Returns 0 on success, -1 w/ error on some sort of failure.
 */
static int
qemuBuildDiskSecinfoCommandLine(virCommandPtr cmd,
                                qemuDomainSecretInfoPtr secinfo)
{
    /* Not necessary for non AES secrets */
    if (!secinfo || secinfo->type != VIR_DOMAIN_SECRET_INFO_TYPE_AES)
        return 0;

    return qemuBuildObjectSecretCommandLine(cmd, secinfo);
}


654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
/* qemuBuildGeneralSecinfoURI:
 * @uri: Pointer to the URI structure to add to
 * @secinfo: Pointer to the secret info data (if present)
 *
 * If we have a secinfo, then build the command line options for
 * the secret info for the "general" case (somewhat a misnomer since
 * an iscsi disk is the only one with a secinfo).
 *
 * Returns 0 on success or if no secinfo,
 * -1 and error message if fail to add secret information
 */
static int
qemuBuildGeneralSecinfoURI(virURIPtr uri,
                           qemuDomainSecretInfoPtr secinfo)
{
    if (!secinfo)
        return 0;

J
John Ferlan 已提交
672 673 674
    switch ((qemuDomainSecretInfoType) secinfo->type) {
    case VIR_DOMAIN_SECRET_INFO_TYPE_PLAIN:
        if (secinfo->s.plain.secret) {
675 676 677 678 679 680
            if (!virStringBufferIsPrintable(secinfo->s.plain.secret,
                                            secinfo->s.plain.secretlen)) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("found non printable characters in secret"));
                return -1;
            }
J
John Ferlan 已提交
681 682 683 684 685 686 687 688 689 690
            if (virAsprintf(&uri->user, "%s:%s",
                            secinfo->s.plain.username,
                            secinfo->s.plain.secret) < 0)
                return -1;
        } else {
            if (VIR_STRDUP(uri->user, secinfo->s.plain.username) < 0)
                return -1;
        }
        break;

691
    case VIR_DOMAIN_SECRET_INFO_TYPE_AES:
J
John Ferlan 已提交
692 693
    case VIR_DOMAIN_SECRET_INFO_TYPE_LAST:
        return -1;
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
    }

    return 0;
}


/* qemuBuildRBDSecinfoURI:
 * @uri: Pointer to the URI structure to add to
 * @secinfo: Pointer to the secret info data (if present)
 *
 * If we have a secinfo, then build the command line options for
 * the secret info for the RBD network storage. Assumption for this
 * is both username and secret exist for plaintext
 *
 * Returns 0 on success or if no secinfo,
 * -1 and error message if fail to add secret information
 */
static int
qemuBuildRBDSecinfoURI(virBufferPtr buf,
                       qemuDomainSecretInfoPtr secinfo)
{
715 716
    char *base64secret = NULL;

717 718 719 720 721
    if (!secinfo) {
        virBufferAddLit(buf, ":auth_supported=none");
        return 0;
    }

J
John Ferlan 已提交
722 723
    switch ((qemuDomainSecretInfoType) secinfo->type) {
    case VIR_DOMAIN_SECRET_INFO_TYPE_PLAIN:
724 725 726 727
        if (!(base64secret = virStringEncodeBase64(secinfo->s.plain.secret,
                                                   secinfo->s.plain.secretlen)))
            return -1;
        virBufferEscape(buf, '\\', ":", ":id=%s", secinfo->s.plain.username);
J
John Ferlan 已提交
728 729
        virBufferEscape(buf, '\\', ":",
                        ":key=%s:auth_supported=cephx\\;none",
730 731
                        base64secret);
        VIR_DISPOSE_STRING(base64secret);
J
John Ferlan 已提交
732 733
        break;

734
    case VIR_DOMAIN_SECRET_INFO_TYPE_AES:
735 736 737 738
        virBufferEscape(buf, '\\', ":", ":id=%s:auth_supported=cephx\\;none",
                        secinfo->s.aes.username);
        break;

J
John Ferlan 已提交
739 740 741
    case VIR_DOMAIN_SECRET_INFO_TYPE_LAST:
        return -1;
    }
742 743 744 745 746

    return 0;
}


747 748 749 750
/* qemuBuildTLSx509BackendProps:
 * @tlspath: path to the TLS credentials
 * @listen: boolen listen for client or server setting
 * @verifypeer: boolean to enable peer verification (form of authorization)
751
 * @alias: alias for the TLS credentials object
752
 * @secalias: if one exists, the alias of the security object for passwordid
753 754 755 756 757 758 759
 * @qemuCaps: capabilities
 * @propsret: json properties to return
 *
 * Create a backend string for the tls-creds-x509 object.
 *
 * Returns 0 on success, -1 on failure with error set.
 */
760
int
761
qemuBuildTLSx509BackendProps(const char *tlspath,
762
                             bool isListen,
763
                             bool verifypeer,
764
                             const char *alias,
765
                             const char *secalias,
766 767 768 769 770 771 772 773 774
                             virQEMUCapsPtr qemuCaps,
                             virJSONValuePtr *propsret)
{
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_TLS_CREDS_X509)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("tls-creds-x509 not supported in this QEMU binary"));
        return -1;
    }

775 776 777 778 779 780
    if (qemuMonitorCreateObjectProps(propsret, "tls-creds-x509", alias,
                                     "s:dir", tlspath,
                                     "s:endpoint", (isListen ? "server": "client"),
                                     "b:verify-peer", (isListen ? verifypeer : true),
                                     "S:passwordid", secalias,
                                     NULL) < 0)
781
        return -1;
782

783
    return 0;
784 785 786 787 788 789 790 791
}


/* qemuBuildTLSx509CommandLine:
 * @cmd: Pointer to command
 * @tlspath: path to the TLS credentials
 * @listen: boolen listen for client or server setting
 * @verifypeer: boolean to enable peer verification (form of authorization)
792 793
 * @certEncSecretAlias: alias of a 'secret' object for decrypting TLS private key
 *                      (optional)
794
 * @alias: TLS object alias
795 796 797 798 799 800 801 802 803
 * @qemuCaps: capabilities
 *
 * Create the command line for a TLS object
 *
 * Returns 0 on success, -1 on failure with error set.
 */
static int
qemuBuildTLSx509CommandLine(virCommandPtr cmd,
                            const char *tlspath,
804
                            bool isListen,
805
                            bool verifypeer,
806
                            const char *certEncSecretAlias,
807
                            const char *alias,
808 809
                            virQEMUCapsPtr qemuCaps)
{
810
    virBuffer buf = VIR_BUFFER_INITIALIZER;
811 812 813
    int ret = -1;
    virJSONValuePtr props = NULL;

814 815
    if (qemuBuildTLSx509BackendProps(tlspath, isListen, verifypeer, alias,
                                     certEncSecretAlias, qemuCaps, &props) < 0)
816 817
        goto cleanup;

818
    if (virQEMUBuildObjectCommandlineFromJSON(&buf, props) < 0)
819 820
        goto cleanup;

821 822
    virCommandAddArg(cmd, "-object");
    virCommandAddArgBuffer(cmd, &buf);
823 824 825 826

    ret = 0;

 cleanup:
827
    virBufferFreeAndReset(&buf);
828 829 830 831 832
    virJSONValueFree(props);
    return ret;
}


833 834 835 836 837 838 839
static char *
qemuBuildNetworkDriveURI(virStorageSourcePtr src,
                         qemuDomainSecretInfoPtr secinfo)
{
    virURIPtr uri = NULL;
    char *ret = NULL;

840
    if (!(uri = qemuBlockStorageSourceGetURI(src)))
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857
        goto cleanup;

    if (src->hosts->socket &&
        virAsprintf(&uri->query, "socket=%s", src->hosts->socket) < 0)
        goto cleanup;

    if (qemuBuildGeneralSecinfoURI(uri, secinfo) < 0)
        goto cleanup;

    ret = virURIFormat(uri);

 cleanup:
    virURIFree(uri);
    return ret;
}


858
static char *
859
qemuBuildNetworkDriveStr(virStorageSourcePtr src,
860
                         qemuDomainSecretInfoPtr secinfo)
861 862
{
    char *ret = NULL;
863
    virBuffer buf = VIR_BUFFER_INITIALIZER;
864
    size_t i;
865

866
    switch ((virStorageNetProtocol) src->protocol) {
867
        case VIR_STORAGE_NET_PROTOCOL_NBD:
868
            if (src->nhosts != 1) {
869 870
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
871
                               virStorageNetProtocolTypeToString(src->protocol));
872 873 874
                goto cleanup;
            }

875 876 877 878 879 880
            if (!((src->hosts->name && strchr(src->hosts->name, ':')) ||
                  (src->hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP &&
                   !src->hosts->name) ||
                  (src->hosts->transport == VIR_STORAGE_NET_HOST_TRANS_UNIX &&
                   src->hosts->socket &&
                   src->hosts->socket[0] != '/'))) {
881 882 883

                virBufferAddLit(&buf, "nbd:");

884
                switch (src->hosts->transport) {
885
                case VIR_STORAGE_NET_HOST_TRANS_TCP:
886 887
                    virBufferAsprintf(&buf, "%s:%u",
                                      src->hosts->name, src->hosts->port);
888 889
                    break;

890
                case VIR_STORAGE_NET_HOST_TRANS_UNIX:
891
                    if (!src->hosts->socket) {
892 893 894 895 896 897
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("socket attribute required for "
                                         "unix transport"));
                        goto cleanup;
                    }

898
                    virBufferAsprintf(&buf, "unix:%s", src->hosts->socket);
899 900 901 902 903
                    break;

                default:
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("nbd does not support transport '%s'"),
904
                                   virStorageNetHostTransportTypeToString(src->hosts->transport));
905 906 907
                    goto cleanup;
                }

908 909
                if (src->path)
                    virBufferAsprintf(&buf, ":exportname=%s", src->path);
910

911
                if (virBufferCheckError(&buf) < 0)
912 913 914 915 916
                    goto cleanup;

                ret = virBufferContentAndReset(&buf);
                goto cleanup;
            }
917 918 919
            /* NBD code uses URI formatting scheme as others in some cases */
            ret = qemuBuildNetworkDriveURI(src, secinfo);
            break;
920

921 922 923 924 925 926 927
        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:
928
            ret = qemuBuildNetworkDriveURI(src, secinfo);
929 930
            break;

931
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
932
            if (!src->path) {
933 934 935 936 937
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("missing disk source for 'sheepdog' protocol"));
                goto cleanup;
            }

938 939
            if (src->nhosts == 0) {
                if (virAsprintf(&ret, "sheepdog:%s", src->path) < 0)
940
                    goto cleanup;
941
            } else if (src->nhosts == 1) {
942
                if (virAsprintf(&ret, "sheepdog:%s:%u:%s",
943
                                src->hosts->name, src->hosts->port,
944
                                src->path) < 0)
945 946 947 948 949 950 951 952 953
                    goto cleanup;
            } else {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("protocol 'sheepdog' accepts up to one host"));
                goto cleanup;
            }

            break;

954
        case VIR_STORAGE_NET_PROTOCOL_RBD:
955
            if (strchr(src->path, ':')) {
956 957
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("':' not allowed in RBD source volume name '%s'"),
958
                               src->path);
959 960 961
                goto cleanup;
            }

962
            virBufferStrcat(&buf, "rbd:", src->volume, "/", src->path, NULL);
963

964 965 966
            if (src->snapshot)
                virBufferEscape(&buf, '\\', ":", "@%s", src->snapshot);

967 968
            if (qemuBuildRBDSecinfoURI(&buf, secinfo) < 0)
                goto cleanup;
969

970
            if (src->nhosts > 0) {
971
                virBufferAddLit(&buf, ":mon_host=");
972
                for (i = 0; i < src->nhosts; i++) {
973 974 975 976
                    if (i)
                        virBufferAddLit(&buf, "\\;");

                    /* assume host containing : is ipv6 */
977 978 979
                    if (strchr(src->hosts[i].name, ':'))
                        virBufferEscape(&buf, '\\', ":", "[%s]",
                                        src->hosts[i].name);
980
                    else
981
                        virBufferAsprintf(&buf, "%s", src->hosts[i].name);
982

983
                    if (src->hosts[i].port)
984
                        virBufferAsprintf(&buf, "\\:%u", src->hosts[i].port);
985 986 987
                }
            }

988 989 990
            if (src->configFile)
                virBufferEscape(&buf, '\\', ":", ":conf=%s", src->configFile);

991
            if (virBufferCheckError(&buf) < 0)
992 993 994 995 996
                goto cleanup;

            ret = virBufferContentAndReset(&buf);
            break;

997 998 999 1000 1001
        case VIR_STORAGE_NET_PROTOCOL_VXHS:
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("VxHS protocol does not support URI syntax"));
            goto cleanup;

1002 1003 1004 1005
        case VIR_STORAGE_NET_PROTOCOL_SSH:
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("'ssh' protocol is not yet supported"));
            goto cleanup;
1006

1007
        case VIR_STORAGE_NET_PROTOCOL_LAST:
1008
        case VIR_STORAGE_NET_PROTOCOL_NONE:
1009 1010 1011
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unexpected network protocol '%s'"),
                           virStorageNetProtocolTypeToString(src->protocol));
1012 1013
            goto cleanup;
    }
1014

1015
 cleanup:
1016
    virBufferFreeAndReset(&buf);
1017 1018 1019 1020 1021

    return ret;
}


1022
int
1023
qemuGetDriveSourceString(virStorageSourcePtr src,
1024
                         qemuDomainSecretInfoPtr secinfo,
1025
                         char **source)
1026
{
1027 1028 1029 1030 1031
    int actualType = virStorageSourceGetActualType(src);
    int ret = -1;

    *source = NULL;

1032 1033 1034 1035
    /* return 1 for empty sources */
    if (virStorageSourceIsEmpty(src))
        return 1;

1036
    switch ((virStorageType)actualType) {
E
Eric Blake 已提交
1037 1038 1039
    case VIR_STORAGE_TYPE_BLOCK:
    case VIR_STORAGE_TYPE_FILE:
    case VIR_STORAGE_TYPE_DIR:
1040 1041
        if (VIR_STRDUP(*source, src->path) < 0)
            goto cleanup;
1042 1043 1044

        break;

E
Eric Blake 已提交
1045
    case VIR_STORAGE_TYPE_NETWORK:
1046
        if (!(*source = qemuBuildNetworkDriveStr(src, secinfo)))
1047
            goto cleanup;
1048 1049
        break;

E
Eric Blake 已提交
1050
    case VIR_STORAGE_TYPE_VOLUME:
1051
    case VIR_STORAGE_TYPE_NONE:
E
Eric Blake 已提交
1052
    case VIR_STORAGE_TYPE_LAST:
1053 1054 1055
        break;
    }

1056
    ret = 0;
1057

1058
 cleanup:
1059 1060 1061
    return ret;
}

P
Paolo Bonzini 已提交
1062

1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
static bool
qemuDiskConfigBlkdeviotuneHasBasic(virDomainDiskDefPtr disk)
{
    return 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;
}


static bool
qemuDiskConfigBlkdeviotuneHasMax(virDomainDiskDefPtr disk)
{
    return disk->blkdeviotune.total_bytes_sec_max ||
           disk->blkdeviotune.read_bytes_sec_max ||
           disk->blkdeviotune.write_bytes_sec_max ||
           disk->blkdeviotune.total_iops_sec_max ||
           disk->blkdeviotune.read_iops_sec_max ||
           disk->blkdeviotune.write_iops_sec_max ||
           disk->blkdeviotune.size_iops_sec;
}


static bool
qemuDiskConfigBlkdeviotuneHasMaxLength(virDomainDiskDefPtr disk)
{
    return disk->blkdeviotune.total_bytes_sec_max_length ||
           disk->blkdeviotune.read_bytes_sec_max_length ||
           disk->blkdeviotune.write_bytes_sec_max_length ||
           disk->blkdeviotune.total_iops_sec_max_length ||
           disk->blkdeviotune.read_iops_sec_max_length ||
           disk->blkdeviotune.write_iops_sec_max_length;
}


1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
bool
qemuDiskConfigBlkdeviotuneEnabled(virDomainDiskDefPtr disk)
{
    return !!disk->blkdeviotune.group_name ||
           qemuDiskConfigBlkdeviotuneHasBasic(disk) ||
           qemuDiskConfigBlkdeviotuneHasMax(disk) ||
           qemuDiskConfigBlkdeviotuneHasMaxLength(disk);
}


1110 1111 1112 1113 1114 1115 1116 1117
/**
 * qemuCheckDiskConfigBlkdeviotune:
 * @disk: disk configuration
 * @qemuCaps: qemu capabilities, NULL if checking cold-configuration
 *
 * Checks whether block io tuning settings make sense. Returns -1 on error and
 * reports a proper libvirt error.
 */
1118 1119 1120 1121
static int
qemuCheckDiskConfigBlkdeviotune(virDomainDiskDefPtr disk,
                                virQEMUCapsPtr qemuCaps)
{
1122 1123 1124 1125 1126
    /* group_name by itself is ignored by qemu */
    if (disk->blkdeviotune.group_name &&
        !qemuDiskConfigBlkdeviotuneHasBasic(disk) &&
        !qemuDiskConfigBlkdeviotuneHasMax(disk) &&
        !qemuDiskConfigBlkdeviotuneHasMaxLength(disk)) {
1127
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1128 1129
                       _("group_name can be configured only together with "
                         "settings"));
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
        return -1;
    }

    if (disk->blkdeviotune.total_bytes_sec > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.read_bytes_sec > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.write_bytes_sec > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.total_iops_sec > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.read_iops_sec > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.write_iops_sec > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.total_bytes_sec_max > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.read_bytes_sec_max > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.write_bytes_sec_max > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.total_iops_sec_max > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.read_iops_sec_max > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.write_iops_sec_max > QEMU_BLOCK_IOTUNE_MAX ||
        disk->blkdeviotune.size_iops_sec > QEMU_BLOCK_IOTUNE_MAX) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED,
                      _("block I/O throttle limit must "
                        "be no more than %llu using QEMU"), QEMU_BLOCK_IOTUNE_MAX);
        return -1;
    }

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
    if (qemuCaps) {
        /* block I/O throttling 1.7 */
        if (qemuDiskConfigBlkdeviotuneHasMax(disk) &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE_MAX)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("there are some block I/O throttling parameters "
                             "that are not supported with this QEMU binary"));
            return -1;
        }

        /* block I/O group 2.4 */
        if (disk->blkdeviotune.group_name &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE_GROUP)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("the block I/O throttling group parameter is "
                             "not supported with this QEMU binary"));
            return -1;
        }

        /* block I/O throttling length 2.6 */
        if (qemuDiskConfigBlkdeviotuneHasMaxLength(disk) &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE_MAX_LENGTH)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("there are some block I/O throttling length parameters "
                             "that are not supported with this QEMU binary"));
            return -1;
        }
    }

1181 1182 1183 1184
    return 0;
}


1185 1186 1187 1188 1189 1190 1191 1192
/**
 * qemuCheckDiskConfig:
 * @disk: disk definition
 * @qemuCaps: qemu capabilities, may be NULL for cold-plug check
 *
 * Perform disk definition config validity checks. Returns -1 on error with
 * error reported.
 */
1193
int
1194 1195
qemuCheckDiskConfig(virDomainDiskDefPtr disk,
                    virQEMUCapsPtr qemuCaps)
1196
{
1197 1198 1199
    if (qemuCheckDiskConfigBlkdeviotune(disk, qemuCaps) < 0)
        return -1;

1200 1201 1202
    if (virDiskNameToIndex(disk->dst) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk type '%s'"), disk->dst);
1203
        return -1;
1204 1205 1206 1207 1208 1209 1210
    }

    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"));
1211
            return -1;
1212 1213 1214 1215 1216 1217 1218
        }
    }

    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"));
1219
            return -1;
1220 1221 1222 1223 1224 1225 1226 1227 1228
    }

    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));
1229
            return -1;
1230
        }
1231

1232 1233 1234 1235 1236 1237 1238 1239
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI &&
            disk->src->format != VIR_STORAGE_FILE_RAW) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk device 'lun' using target 'scsi' must use "
                             "'raw' format"));
            return -1;
        }

1240
        if (qemuDomainDefValidateDiskLunSource(disk->src) < 0)
1241
            return -1;
1242

1243 1244 1245
        if (disk->wwn) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn is not supported for lun device"));
1246
            return -1;
1247 1248 1249 1250 1251
        }
        if (disk->vendor || disk->product) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product is not supported "
                             "for lun device"));
1252
            return -1;
1253 1254
        }
    }
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351

    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_SCSI:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for scsi disk"));
            return -1;
        }

        /* 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) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("SCSI controller only supports 1 bus"));
            return -1;
        }
        break;

    case VIR_DOMAIN_DISK_BUS_IDE:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for ide disk"));
            return -1;
        }
        /* We can only have 1 IDE controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Only 1 IDE controller is supported"));
            return -1;
        }
        break;

    case VIR_DOMAIN_DISK_BUS_FDC:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for fdc disk"));
            return -1;
        }
        /* We can only have 1 FDC controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Only 1 fdc controller is supported"));
            return -1;
        }
        /* We can only have 1 FDC bus (currently) */
        if (disk->info.addr.drive.bus != 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Only 1 fdc bus is supported"));
            return -1;
        }
        if (disk->info.addr.drive.target != 0) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for controller fdc"));
            return -1;
        }
        break;

    case VIR_DOMAIN_DISK_BUS_VIRTIO:
    case VIR_DOMAIN_DISK_BUS_XEN:
    case VIR_DOMAIN_DISK_BUS_SD:
        break;
    }

    if (disk->src->readonly &&
        disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
        if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("readonly ide disks are not supported"));
            return -1;
        }

        if (disk->bus == VIR_DOMAIN_DISK_BUS_SATA) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("readonly sata disks are not supported"));
            return -1;
        }
    }

    if (disk->transient) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("transient disks not supported yet"));
        return -1;
    }

    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"));
        return -1;
    }

    if (qemuCaps) {
        if (disk->serial &&
1352 1353 1354 1355 1356 1357
            disk->bus == VIR_DOMAIN_DISK_BUS_SCSI &&
            disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("scsi-block 'lun' devices do not support the "
                             "serial property"));
            return -1;
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
        }

        if (disk->discard &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_DISCARD)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("discard is not supported by this QEMU binary"));
            return -1;
        }

        if (disk->detect_zeroes &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_DETECT_ZEROES)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("detect_zeroes is not supported by this QEMU binary"));
            return -1;
        }
    }

1375 1376 1377 1378
    if (disk->serial &&
        qemuSafeSerialParamValue(disk->serial) < 0)
        return -1;

1379 1380 1381 1382
    return 0;
}


P
Philipp Hahn 已提交
1383
/* QEMU 1.2 and later have a binary flag -enable-fips that must be
1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
 * used for VNC auth to obey FIPS settings; but the flag only
 * exists on Linux, and with no way to probe for it via QMP.  Our
 * solution: if FIPS mode is required, then unconditionally use
 * the flag, regardless of qemu version, for the following matrix:
 *
 *                          old QEMU            new QEMU
 * FIPS enabled             doesn't start       VNC auth disabled
 * FIPS disabled/missing    VNC auth enabled    VNC auth enabled
 */
bool
qemuCheckFips(void)
{
    bool ret = false;

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

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

    return ret;
}


1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
/**
 * qemuDiskBusNeedsDriveArg:
 * @bus: disk bus
 *
 * Unfortunately it is not possible to use -device for SD devices.
 * Fortunately, those don't need static PCI addresses, so we can use -drive
 * without -device.
 */
bool
qemuDiskBusNeedsDriveArg(int bus)
J
Ján Tomko 已提交
1422
{
1423
    return bus == VIR_DOMAIN_DISK_BUS_SD;
J
Ján Tomko 已提交
1424 1425 1426
}


1427 1428 1429 1430 1431 1432 1433 1434 1435
/**
 * qemuDiskSourceNeedsProps:
 * @src: disk source
 *
 * Returns true, if the disk source needs to be generated from the JSON
 * representation. Otherwise, the disk source should be represented using
 * the legacy representation.
 */
static bool
1436 1437
qemuDiskSourceNeedsProps(virStorageSourcePtr src,
                         virQEMUCapsPtr qemuCaps)
1438 1439 1440 1441 1442 1443 1444 1445
{
    int actualType = virStorageSourceGetActualType(src);

    if (actualType == VIR_STORAGE_TYPE_NETWORK &&
        src->protocol == VIR_STORAGE_NET_PROTOCOL_GLUSTER &&
        src->nhosts > 1)
        return true;

1446 1447 1448 1449
    if (actualType == VIR_STORAGE_TYPE_NETWORK &&
        src->protocol == VIR_STORAGE_NET_PROTOCOL_VXHS)
        return true;

1450 1451 1452 1453 1454
    if (actualType == VIR_STORAGE_TYPE_NETWORK &&
        src->protocol == VIR_STORAGE_NET_PROTOCOL_ISCSI &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_ISCSI_PASSWORD_SECRET))
        return true;

1455 1456 1457 1458 1459
    if (actualType == VIR_STORAGE_TYPE_NETWORK &&
        src->protocol == VIR_STORAGE_NET_PROTOCOL_NBD &&
        src->haveTLS == VIR_TRISTATE_BOOL_YES)
        return true;

1460 1461 1462 1463
    return false;
}


1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
/**
 * qemuDiskSourceGetProps:
 * @src: disk source struct
 *
 * Returns the disk source struct wrapped so that it can be used as disk source
 * directly by converting it from json.
 */
static virJSONValuePtr
qemuDiskSourceGetProps(virStorageSourcePtr src)
{
    virJSONValuePtr props;
    virJSONValuePtr ret;

1477
    if (!(props = qemuBlockStorageSourceGetBackendProps(src, true)))
1478 1479
        return NULL;

1480
    if (virJSONValueObjectCreate(&ret, "a:file", &props, NULL) < 0) {
1481 1482 1483 1484 1485 1486 1487 1488
        virJSONValueFree(props);
        return NULL;
    }

    return ret;
}


1489 1490 1491 1492 1493 1494 1495
static int
qemuBuildDriveSourcePR(virBufferPtr buf,
                       virDomainDiskDefPtr disk)
{
    char *alias = NULL;
    const char *defaultAlias = NULL;

1496
    if (!disk->src->pr)
1497 1498 1499 1500
        return 0;

    if (virStoragePRDefIsManaged(disk->src->pr))
        defaultAlias = qemuDomainGetManagedPRAlias();
1501
    else if (!(alias = qemuDomainGetUnmanagedPRAlias(disk->info.alias)))
1502 1503 1504 1505 1506 1507 1508 1509 1510
        return -1;


    virBufferAsprintf(buf, ",file.pr-manager=%s", alias ? alias : defaultAlias);
    VIR_FREE(alias);
    return 0;
}


1511 1512
static int
qemuBuildDriveSourceStr(virDomainDiskDefPtr disk,
1513
                        virQEMUCapsPtr qemuCaps,
1514
                        virBufferPtr buf)
1515 1516
{
    int actualType = virStorageSourceGetActualType(disk->src);
1517
    qemuDomainStorageSourcePrivatePtr srcpriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(disk->src);
1518 1519
    qemuDomainSecretInfoPtr secinfo = NULL;
    qemuDomainSecretInfoPtr encinfo = NULL;
1520
    virJSONValuePtr srcprops = NULL;
1521
    char *source = NULL;
1522
    bool rawluks = false;
1523 1524
    int ret = -1;

1525 1526 1527 1528 1529
    if (srcpriv) {
        secinfo = srcpriv->secinfo;
        encinfo = srcpriv->encinfo;
    }

1530
    if (qemuDiskSourceNeedsProps(disk->src, qemuCaps) &&
1531
        !(srcprops = qemuDiskSourceGetProps(disk->src)))
1532 1533 1534 1535
        goto cleanup;

    if (!srcprops &&
        qemuGetDriveSourceString(disk->src, secinfo, &source) < 0)
1536 1537
        goto cleanup;

1538
    /* nothing to format if the drive is empty */
1539
    if (!(source || srcprops) ||
1540 1541 1542 1543 1544 1545
        ((disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY ||
          disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) &&
         disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN)) {
        ret = 0;
        goto cleanup;
    }
1546

1547 1548 1549 1550 1551 1552 1553 1554
    if (actualType == VIR_STORAGE_TYPE_BLOCK &&
        disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       disk->src->type == VIR_STORAGE_TYPE_VOLUME ?
                       _("tray status 'open' is invalid for block type volume") :
                       _("tray status 'open' is invalid for block type disk"));
        goto cleanup;
    }
1555

1556 1557
    if (source) {
        virBufferAddLit(buf, "file=");
1558

1559 1560 1561 1562 1563 1564
        /* for now the DIR based storage is handled by the magic FAT format */
        if (actualType == VIR_STORAGE_TYPE_DIR) {
            virBufferAddLit(buf, "fat:");

            if (disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY)
                virBufferAddLit(buf, "floppy:");
1565 1566
        }

1567
        virQEMUBuildBufferEscapeComma(buf, source);
1568 1569 1570

        if (secinfo && secinfo->type == VIR_DOMAIN_SECRET_INFO_TYPE_AES)
            virBufferAsprintf(buf, ",file.password-secret=%s", secinfo->s.aes.alias);
1571 1572 1573

        if (disk->src->debug)
            virBufferAsprintf(buf, ",file.debug=%d", disk->src->debugLevel);
1574 1575 1576

        if (qemuBuildDriveSourcePR(buf, disk) < 0)
            goto cleanup;
1577 1578 1579
    } else {
        if (!(source = virQEMUBuildDriveCommandlineFromJSON(srcprops)))
            goto cleanup;
1580

1581
        virBufferAdd(buf, source, -1);
1582 1583
    }
    virBufferAddLit(buf, ",");
1584

1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
    if (encinfo) {
        if (disk->src->format == VIR_STORAGE_FILE_RAW) {
            virBufferAsprintf(buf, "key-secret=%s,", encinfo->s.aes.alias);
            rawluks = true;
        } else if (disk->src->format == VIR_STORAGE_FILE_QCOW2 &&
                   disk->src->encryption->format == VIR_STORAGE_ENCRYPTION_FORMAT_LUKS) {
            virBufferAddLit(buf, "encrypt.format=luks,");
            virBufferAsprintf(buf, "encrypt.key-secret=%s,", encinfo->s.aes.alias);
        }
    }
1595 1596

    if (disk->src->format > 0 &&
1597 1598
        disk->src->type != VIR_STORAGE_TYPE_DIR) {
        const char *qemuformat = virStorageFileFormatTypeToString(disk->src->format);
1599
        if (rawluks)
1600 1601 1602
            qemuformat = "luks";
        virBufferAsprintf(buf, "format=%s,", qemuformat);
    }
1603

1604 1605 1606 1607
    ret = 0;

 cleanup:
    VIR_FREE(source);
1608
    virJSONValueFree(srcprops);
1609 1610 1611 1612
    return ret;
}


1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
static void
qemuBuildDiskThrottling(virDomainDiskDefPtr disk,
                        virBufferPtr buf)
{
#define IOTUNE_ADD(_field, _label) \
    if (disk->blkdeviotune._field) { \
        virBufferAsprintf(buf, ",throttling." _label "=%llu", \
                          disk->blkdeviotune._field); \
    }

    IOTUNE_ADD(total_bytes_sec, "bps-total");
    IOTUNE_ADD(read_bytes_sec, "bps-read");
    IOTUNE_ADD(write_bytes_sec, "bps-write");
    IOTUNE_ADD(total_iops_sec, "iops-total");
    IOTUNE_ADD(read_iops_sec, "iops-read");
    IOTUNE_ADD(write_iops_sec, "iops-write");

    IOTUNE_ADD(total_bytes_sec_max, "bps-total-max");
    IOTUNE_ADD(read_bytes_sec_max, "bps-read-max");
    IOTUNE_ADD(write_bytes_sec_max, "bps-write-max");
    IOTUNE_ADD(total_iops_sec_max, "iops-total-max");
    IOTUNE_ADD(read_iops_sec_max, "iops-read-max");
    IOTUNE_ADD(write_iops_sec_max, "iops-write-max");

    IOTUNE_ADD(size_iops_sec, "iops-size");
    if (disk->blkdeviotune.group_name) {
1639 1640
        virBufferAddLit(buf, ",throttling.group=");
        virQEMUBuildBufferEscapeComma(buf, disk->blkdeviotune.group_name);
1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
    }

    IOTUNE_ADD(total_bytes_sec_max_length, "bps-total-max-length");
    IOTUNE_ADD(read_bytes_sec_max_length, "bps-read-max-length");
    IOTUNE_ADD(write_bytes_sec_max_length, "bps-write-max-length");
    IOTUNE_ADD(total_iops_sec_max_length, "iops-total-max-length");
    IOTUNE_ADD(read_iops_sec_max_length, "iops-read-max-length");
    IOTUNE_ADD(write_iops_sec_max_length, "iops-write-max-length");
#undef IOTUNE_ADD
}


1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
static void
qemuBuildDiskFrontendAttributeErrorPolicy(virDomainDiskDefPtr disk,
                                          virBufferPtr buf)
{
    const char *wpolicy = NULL;
    const char *rpolicy = NULL;

    if (disk->error_policy)
        wpolicy = virDomainDiskErrorPolicyTypeToString(disk->error_policy);

    if (disk->rerror_policy)
        rpolicy = virDomainDiskErrorPolicyTypeToString(disk->rerror_policy);

    if (disk->error_policy == VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE) {
        /* in the case of enospace, the option is spelled
         * differently in qemu, and it's only valid for werror,
         * not for rerror, so leave rerror NULL.
         */
        wpolicy = "enospc";
    } else if (!rpolicy) {
        /* for other policies, rpolicy can match wpolicy */
        rpolicy = wpolicy;
    }

    if (wpolicy)
        virBufferAsprintf(buf, ",werror=%s", wpolicy);
    if (rpolicy)
        virBufferAsprintf(buf, ",rerror=%s", rpolicy);
}


1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697
static void
qemuBuildDiskFrontendAttributes(virDomainDiskDefPtr disk,
                                virBufferPtr buf)
{
    /* generate geometry command string */
    if (disk->geometry.cylinders > 0 &&
        disk->geometry.heads > 0 &&
        disk->geometry.sectors > 0) {
        virBufferAsprintf(buf, ",cyls=%u,heads=%u,secs=%u",
                          disk->geometry.cylinders,
                          disk->geometry.heads,
                          disk->geometry.sectors);

        if (disk->geometry.trans != VIR_DOMAIN_DISK_TRANS_DEFAULT)
1698
            virBufferAsprintf(buf, ",bios-chs-trans=%s",
1699 1700
                              virDomainDiskGeometryTransTypeToString(disk->geometry.trans));
    }
1701

1702
    if (disk->serial) {
1703 1704 1705
        virBufferAddLit(buf, ",serial=");
        virBufferEscape(buf, '\\', " ", "%s", disk->serial);
    }
1706 1707 1708
}


1709
static char *
1710 1711 1712 1713
qemuBuildDriveStr(virDomainDiskDefPtr disk,
                  virQEMUCapsPtr qemuCaps)
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
1714 1715
    int detect_zeroes = virDomainDiskGetDetectZeroesMode(disk->discard,
                                                         disk->detect_zeroes);
1716

1717
    if (qemuBuildDriveSourceStr(disk, qemuCaps, &opt) < 0)
1718 1719
        goto error;

1720
    if (!qemuDiskBusNeedsDriveArg(disk->bus)) {
1721
        char *drivealias = qemuAliasDiskDriveFromDisk(disk);
1722 1723
        if (!drivealias)
            goto error;
1724 1725

        virBufferAddLit(&opt, "if=none");
1726 1727
        virBufferAsprintf(&opt, ",id=%s", drivealias);
        VIR_FREE(drivealias);
1728
    } else {
1729 1730 1731 1732 1733 1734 1735
        int idx = virDiskNameToIndex(disk->dst);

        if (idx < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unsupported disk type '%s'"), disk->dst);
            goto error;
        }
1736 1737 1738 1739 1740 1741 1742

        /* if we are using -device this will be checked elsewhere */
        if (qemuCheckDiskConfig(disk, qemuCaps) < 0)
            goto error;

        virBufferAsprintf(&opt, "if=%s",
                          virDomainDiskQEMUBusTypeToString(disk->bus));
1743
        virBufferAsprintf(&opt, ",index=%d", idx);
1744
    }
1745

1746 1747
    /* werror/rerror are really frontend attributes, but older
     * qemu requires them on -drive instead of -device */
1748 1749
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_STORAGE_WERROR))
        qemuBuildDiskFrontendAttributeErrorPolicy(disk, &opt);
1750

1751

1752 1753 1754
    /* While this is a frontend attribute, it only makes sense to be used when
     * legacy -drive is used. In modern qemu the 'ide-cd' or 'scsi-cd' are used.
     * virtio and other just ignore the attribute anyways */
1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD))
                virBufferAddLit(&opt, ",media=cdrom");
        } else if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD))
                virBufferAddLit(&opt, ",media=cdrom");
        } else {
            virBufferAddLit(&opt, ",media=cdrom");
        }
    }

1767 1768 1769
    if (!virStorageSourceIsEmpty(disk->src)) {
        if (disk->src->readonly)
            virBufferAddLit(&opt, ",readonly=on");
1770

1771 1772 1773 1774
        if (disk->cachemode) {
            virBufferAsprintf(&opt, ",cache=%s",
                              qemuDiskCacheV2TypeToString(disk->cachemode));
        }
1775

1776 1777 1778 1779
        if (disk->copy_on_read) {
            virBufferAsprintf(&opt, ",copy-on-read=%s",
                              virTristateSwitchTypeToString(disk->copy_on_read));
        }
1780

1781 1782 1783 1784
        if (disk->discard) {
            virBufferAsprintf(&opt, ",discard=%s",
                              virDomainDiskDiscardTypeToString(disk->discard));
        }
O
Osier Yang 已提交
1785

1786 1787 1788 1789
        if (detect_zeroes) {
            virBufferAsprintf(&opt, ",detect-zeroes=%s",
                              virDomainDiskDetectZeroesTypeToString(detect_zeroes));
        }
O
Osier Yang 已提交
1790

1791 1792 1793 1794
        if (disk->iomode) {
            virBufferAsprintf(&opt, ",aio=%s",
                              virDomainDiskIoTypeToString(disk->iomode));
        }
1795

1796
        qemuBuildDiskThrottling(disk, &opt);
E
Eric Blake 已提交
1797 1798
    }

1799
    if (virBufferCheckError(&opt) < 0)
1800 1801 1802 1803
        goto error;

    return virBufferContentAndReset(&opt);

1804
 error:
1805 1806 1807 1808
    virBufferFreeAndReset(&opt);
    return NULL;
}

1809

1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852
static bool
qemuCheckIOThreads(const virDomainDef *def,
                   virDomainDiskDefPtr disk)
{
    /* Right "type" of disk" */
    switch ((virDomainDiskBus)disk->bus) {
    case VIR_DOMAIN_DISK_BUS_VIRTIO:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI &&
            disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                            _("IOThreads only available for virtio pci and "
                              "virtio ccw disk"));
            return false;
        }
        break;

    case VIR_DOMAIN_DISK_BUS_IDE:
    case VIR_DOMAIN_DISK_BUS_FDC:
    case VIR_DOMAIN_DISK_BUS_SCSI:
    case VIR_DOMAIN_DISK_BUS_XEN:
    case VIR_DOMAIN_DISK_BUS_USB:
    case VIR_DOMAIN_DISK_BUS_UML:
    case VIR_DOMAIN_DISK_BUS_SATA:
    case VIR_DOMAIN_DISK_BUS_SD:
    case VIR_DOMAIN_DISK_BUS_LAST:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("IOThreads not available for bus %s target %s"),
                       virDomainDiskBusTypeToString(disk->bus), disk->dst);
        return false;
    }

    /* Can we find the disk iothread in the iothreadid list? */
    if (!virDomainIOThreadIDFind(def, disk->iothread)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Disk iothread '%u' not defined in iothreadid"),
                       disk->iothread);
        return false;
    }

    return true;
}


1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
static int
qemuBuildDriveDevCacheStr(virDomainDiskDefPtr disk,
                          virBufferPtr buf,
                          virQEMUCapsPtr qemuCaps)
{
    bool wb;

    if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_DEFAULT)
        return 0;

1863 1864 1865 1866 1867
    /* VIR_DOMAIN_DISK_DEVICE_LUN translates into 'scsi-block'
     * where any caching setting makes no sense. */
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN)
        return 0;

1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DISK_WRITE_CACHE))
        return 0;

    if (qemuDomainDiskCachemodeFlags(disk->cachemode, &wb, NULL, NULL) < 0)
        return -1;

    virBufferStrcat(buf, ",write-cache=",
                    virTristateSwitchTypeToString(virTristateSwitchFromBool(wb)),
                    NULL);

    return 0;
}


1882
char *
1883 1884 1885 1886
qemuBuildDiskDeviceStr(const virDomainDef *def,
                       virDomainDiskDefPtr disk,
                       unsigned int bootindex,
                       virQEMUCapsPtr qemuCaps)
1887 1888 1889
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
1890
    const char *contAlias;
1891
    char *backendAlias = NULL;
1892
    int controllerModel;
1893

1894
    if (qemuCheckDiskConfig(disk, qemuCaps) < 0)
1895
        goto error;
1896

1897
    if (!qemuDomainCheckCCWS390AddressSupport(def, &disk->info, qemuCaps, disk->dst))
1898 1899
        goto error;

1900 1901 1902
    if (disk->iothread && !qemuCheckIOThreads(def, disk))
        goto error;

1903 1904
    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_IDE:
1905
        if (disk->info.addr.drive.target != 0) {
1906 1907
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
1908 1909
            goto error;
        }
1910

1911
        if (disk->wwn &&
1912
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_DRIVE_WWN)) {
1913 1914 1915 1916 1917 1918
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for ide disk is not supported "
                             "by this QEMU"));
            goto error;
        }

1919
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
1920 1921 1922 1923 1924 1925 1926 1927
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938
        /* When domain has builtin IDE controller we don't put it onto cmd
         * line. Therefore we can't set its alias. In that case, use the
         * default one. */
        if (qemuDomainHasBuiltinIDE(def)) {
            contAlias = "ide";
        } else {
            if (!(contAlias = virDomainControllerAliasFind(def,
                                                           VIR_DOMAIN_CONTROLLER_TYPE_IDE,
                                                           disk->info.addr.drive.controller)))
                goto error;
        }
1939 1940
        virBufferAsprintf(&opt, ",bus=%s.%d,unit=%d",
                          contAlias,
1941 1942 1943
                          disk->info.addr.drive.bus,
                          disk->info.addr.drive.unit);
        break;
1944

1945
    case VIR_DOMAIN_DISK_BUS_SCSI:
1946
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
1947
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_BLOCK)) {
1948 1949 1950
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support scsi-block for "
                                 "lun passthrough"));
1951 1952 1953 1954
                goto error;
            }
        }

1955
        if (disk->wwn &&
1956
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
1957 1958 1959 1960 1961 1962
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for scsi disk is not supported "
                             "by this QEMU"));
            goto error;
        }

1963 1964 1965 1966
        /* Properties wwn, vendor and product were introduced in the
         * same QEMU release (1.2.0).
         */
        if ((disk->vendor || disk->product) &&
1967
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
1968 1969 1970 1971 1972 1973
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product for scsi disk is not "
                             "supported by this QEMU"));
            goto error;
        }

1974
        controllerModel = qemuDomainFindSCSIControllerModel(def, &disk->info);
1975
        if (controllerModel < 0)
1976
            goto error;
1977

1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
            virBufferAddLit(&opt, "scsi-block");
        } else {
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD)) {
                if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                    virBufferAddLit(&opt, "scsi-cd");
                else
                    virBufferAddLit(&opt, "scsi-hd");
            } else {
                virBufferAddLit(&opt, "scsi-disk");
            }
        }

1991 1992 1993 1994
        if (!(contAlias = virDomainControllerAliasFind(def, VIR_DOMAIN_CONTROLLER_TYPE_SCSI,
                                                       disk->info.addr.drive.controller)))
           goto error;

1995 1996
        if (controllerModel == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
            if (disk->info.addr.drive.target != 0) {
1997 1998 1999
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("target must be 0 for controller "
                                 "model 'lsilogic'"));
2000 2001 2002
                goto error;
            }

2003 2004
            virBufferAsprintf(&opt, ",bus=%s.%d,scsi-id=%d",
                              contAlias,
2005 2006 2007
                              disk->info.addr.drive.bus,
                              disk->info.addr.drive.unit);
        } else {
2008
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_CHANNEL)) {
2009
                if (disk->info.addr.drive.target > 7) {
2010 2011 2012
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU doesn't support target "
                                     "greater than 7"));
2013 2014 2015
                    goto error;
                }

2016 2017
                if (disk->info.addr.drive.bus != 0 &&
                    disk->info.addr.drive.unit != 0) {
2018 2019 2020
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU only supports both bus and "
                                     "unit equal to 0"));
2021 2022 2023 2024
                    goto error;
                }
            }

2025 2026
            virBufferAsprintf(&opt, ",bus=%s.0,channel=%d,scsi-id=%d,lun=%d",
                              contAlias,
2027 2028 2029 2030
                              disk->info.addr.drive.bus,
                              disk->info.addr.drive.target,
                              disk->info.addr.drive.unit);
        }
2031
        break;
2032

J
Jim Fehlig 已提交
2033
    case VIR_DOMAIN_DISK_BUS_SATA:
2034
        if (disk->info.addr.drive.bus != 0) {
2035 2036
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("bus must be 0 for ide controller"));
2037 2038 2039
            goto error;
        }
        if (disk->info.addr.drive.target != 0) {
2040 2041
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
2042 2043
            goto error;
        }
2044

2045
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
2046 2047 2048 2049 2050 2051 2052 2053
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065
        /* When domain has builtin SATA controller we don't put it onto cmd
         * line. Therefore we can't set its alias. In that case, use the
         * default one. */
        if (qemuDomainIsQ35(def) &&
            disk->info.addr.drive.controller == 0) {
            contAlias = "ide";
        } else {
            if (!(contAlias = virDomainControllerAliasFind(def,
                                                           VIR_DOMAIN_CONTROLLER_TYPE_SATA,
                                                           disk->info.addr.drive.controller)))
                goto error;
        }
2066 2067 2068
        virBufferAsprintf(&opt, ",bus=%s.%d",
                          contAlias,
                          disk->info.addr.drive.unit);
J
Jim Fehlig 已提交
2069
        break;
2070

2071
    case VIR_DOMAIN_DISK_BUS_VIRTIO:
2072 2073
        if (qemuBuildVirtioDevStr(&opt, "virtio-blk",
                                  VIR_DOMAIN_DEVICE_DISK, disk) < 0) {
2074
            goto error;
2075
        }
2076

2077
        if (disk->iothread)
2078 2079
            virBufferAsprintf(&opt, ",iothread=iothread%u", disk->iothread);

2080
        qemuBuildIoEventFdStr(&opt, disk->ioeventfd, qemuCaps);
2081
        if (disk->event_idx &&
2082
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_EVENT_IDX)) {
2083
            virBufferAsprintf(&opt, ",event_idx=%s",
J
Ján Tomko 已提交
2084
                              virTristateSwitchTypeToString(disk->event_idx));
2085
        }
2086
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_SCSI)) {
2087 2088 2089 2090 2091 2092 2093
            /* 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");
        }
2094

L
Lin Ma 已提交
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105
        if (disk->queues) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_NUM_QUEUES)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("num-queues property isn't supported by this "
                                 "QEMU binary"));
                goto error;
            }

            virBufferAsprintf(&opt, ",num-queues=%u", disk->queues);
        }

2106 2107 2108
        if (qemuBuildVirtioOptionsStr(&opt, disk->virtio, qemuCaps) < 0)
            goto error;

2109
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
A
Alex Jia 已提交
2110
            goto error;
2111
        break;
2112

2113
    case VIR_DOMAIN_DISK_BUS_USB:
2114 2115 2116 2117 2118 2119
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
            disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for usb disk"));
            goto error;
        }
2120 2121 2122 2123 2124 2125 2126
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_STORAGE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("This QEMU doesn't support '-device "
                             "usb-storage'"));
            goto error;

        }
2127
        virBufferAddLit(&opt, "usb-storage");
2128

2129
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
2130
            goto error;
2131
        break;
2132

2133 2134 2135 2136
    case VIR_DOMAIN_DISK_BUS_FDC:
        virBufferAsprintf(&opt, "floppy,unit=%d", disk->info.addr.drive.unit);
        break;

2137
    default:
2138 2139
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk bus '%s' with device setup"), bus);
2140 2141
        goto error;
    }
2142

2143 2144 2145 2146
    if (disk->src->shared &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DISK_SHARE_RW))
        virBufferAddLit(&opt, ",share-rw=on");

2147
    if (qemuDomainDiskGetBackendAlias(disk, qemuCaps, &backendAlias) < 0)
2148
        goto error;
2149 2150 2151 2152 2153 2154

    if (backendAlias)
        virBufferAsprintf(&opt, ",drive=%s", backendAlias);
    VIR_FREE(backendAlias);

    virBufferAsprintf(&opt, ",id=%s", disk->info.alias);
2155
    if (bootindex)
2156
        virBufferAsprintf(&opt, ",bootindex=%u", bootindex);
2157
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKIO)) {
V
Viktor Mihajlovski 已提交
2158
        if (disk->blockio.logical_block_size > 0)
2159
            virBufferAsprintf(&opt, ",logical_block_size=%u",
V
Viktor Mihajlovski 已提交
2160 2161
                              disk->blockio.logical_block_size);
        if (disk->blockio.physical_block_size > 0)
2162
            virBufferAsprintf(&opt, ",physical_block_size=%u",
V
Viktor Mihajlovski 已提交
2163
                              disk->blockio.physical_block_size);
2164
    }
2165

2166 2167 2168 2169 2170 2171
    if (disk->wwn) {
        if (STRPREFIX(disk->wwn, "0x"))
            virBufferAsprintf(&opt, ",wwn=%s", disk->wwn);
        else
            virBufferAsprintf(&opt, ",wwn=0x%s", disk->wwn);
    }
2172

2173 2174 2175 2176
    if (disk->vendor) {
        virBufferAddLit(&opt, ",vendor=");
        virQEMUBuildBufferEscapeComma(&opt, disk->vendor);
    }
2177

2178 2179 2180 2181
    if (disk->product) {
        virBufferAddLit(&opt, ",product=");
        virQEMUBuildBufferEscapeComma(&opt, disk->product);
    }
2182

2183 2184
    if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_STORAGE_REMOVABLE)) {
J
Ján Tomko 已提交
2185
            if (disk->removable == VIR_TRISTATE_SWITCH_ON)
2186 2187 2188 2189
                virBufferAddLit(&opt, ",removable=on");
            else
                virBufferAddLit(&opt, ",removable=off");
        } else {
J
Ján Tomko 已提交
2190
            if (disk->removable != VIR_TRISTATE_SWITCH_ABSENT) {
2191 2192 2193 2194 2195 2196 2197 2198
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support setting the "
                                 "removable flag of USB storage devices"));
                goto error;
            }
        }
    }

2199 2200 2201
    if (qemuBuildDriveDevCacheStr(disk, &opt, qemuCaps) < 0)
        goto error;

2202 2203
    qemuBuildDiskFrontendAttributes(disk, &opt);

2204 2205 2206
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_STORAGE_WERROR))
        qemuBuildDiskFrontendAttributeErrorPolicy(disk, &opt);

2207
    if (virBufferCheckError(&opt) < 0)
2208 2209 2210 2211
        goto error;

    return virBufferContentAndReset(&opt);

2212
 error:
2213
    VIR_FREE(backendAlias);
2214 2215 2216 2217
    virBufferFreeAndReset(&opt);
    return NULL;
}

2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268
char *
qemuBuildZPCIDevStr(virDomainDeviceInfoPtr dev)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    virBufferAsprintf(&buf,
                      "zpci,uid=%u,fid=%u,target=%s,id=zpci%u",
                      dev->addr.pci.zpci.uid,
                      dev->addr.pci.zpci.fid,
                      dev->alias,
                      dev->addr.pci.zpci.uid);

    if (virBufferCheckError(&buf) < 0) {
        virBufferFreeAndReset(&buf);
        return NULL;
    }

    return virBufferContentAndReset(&buf);
}

static int
qemuCommandAddZPCIDevice(virCommandPtr cmd,
                         virDomainDeviceInfoPtr dev)
{
    char *devstr = NULL;

    virCommandAddArg(cmd, "-device");

    if (!(devstr = qemuBuildZPCIDevStr(dev)))
        return -1;

    virCommandAddArg(cmd, devstr);

    VIR_FREE(devstr);
    return 0;
}

static int
qemuCommandAddExtDevice(virCommandPtr cmd,
                        virDomainDeviceInfoPtr dev)
{
    if (dev->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI ||
        dev->addr.pci.extFlags == VIR_PCI_ADDRESS_EXTENSION_NONE) {
        return 0;
    }

    if (dev->addr.pci.extFlags & VIR_PCI_ADDRESS_EXTENSION_ZPCI)
        return qemuCommandAddZPCIDevice(cmd, dev);

    return 0;
}
2269

2270
static int
2271 2272 2273 2274
qemuBuildFloppyCommandLineControllerOptions(virCommandPtr cmd,
                                            const virDomainDef *def,
                                            virQEMUCapsPtr qemuCaps,
                                            unsigned int bootFloppy)
2275 2276
{
    virBuffer fdc_opts = VIR_BUFFER_INITIALIZER;
2277 2278 2279
    bool explicitfdc = qemuDomainNeedsFDC(def);
    bool hasfloppy = false;
    unsigned int bootindex;
2280
    char driveLetter;
2281
    char *backendAlias = NULL;
2282 2283
    char *backendStr = NULL;
    char *bootindexStr = NULL;
2284
    size_t i;
2285
    int ret = -1;
2286

2287
    virBufferAddLit(&fdc_opts, "isa-fdc,");
2288

2289 2290
    for (i = 0; i < def->ndisks; i++) {
        virDomainDiskDefPtr disk = def->disks[i];
2291

2292 2293
        if (disk->bus != VIR_DOMAIN_DISK_BUS_FDC)
            continue;
2294

2295
        hasfloppy = true;
2296

2297 2298 2299 2300 2301
        if (disk->info.bootIndex) {
            bootindex = disk->info.bootIndex;
        } else {
            bootindex = bootFloppy;
            bootFloppy = 0;
2302 2303
        }

2304 2305 2306 2307 2308 2309 2310 2311 2312
        if (disk->info.addr.drive.unit)
            driveLetter = 'B';
        else
            driveLetter = 'A';

        if (bootindex &&
            virAsprintf(&bootindexStr, "bootindex%c=%u", driveLetter, bootindex) < 0)
            goto cleanup;

2313 2314 2315 2316 2317 2318 2319 2320 2321 2322
        /* with -blockdev we setup the floppy device and it's backend with -device */
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKDEV)) {
            if (qemuDomainDiskGetBackendAlias(disk, qemuCaps, &backendAlias) < 0)
                goto cleanup;

            if (backendAlias &&
                virAsprintf(&backendStr, "drive%c=%s", driveLetter, backendAlias) < 0)
                goto cleanup;
        }

2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335
        if (!explicitfdc) {
            if (backendStr) {
                virCommandAddArg(cmd, "-global");
                virCommandAddArgFormat(cmd, "isa-fdc.%s", backendStr);
            }

            if (bootindexStr) {
                virCommandAddArg(cmd, "-global");
                virCommandAddArgFormat(cmd, "isa-fdc.%s", bootindexStr);
            }
        } else {
            virBufferStrcat(&fdc_opts, backendStr, ",", NULL);
            virBufferStrcat(&fdc_opts, bootindexStr, ",", NULL);
2336
        }
2337 2338 2339 2340 2341 2342 2343

        VIR_FREE(backendAlias);
        VIR_FREE(backendStr);
        VIR_FREE(bootindexStr);
    }

    if (explicitfdc && hasfloppy) {
2344 2345
        /* Newer Q35 machine types require an explicit FDC controller */
        virBufferTrim(&fdc_opts, ",", -1);
2346
        virCommandAddArg(cmd, "-device");
2347
        virCommandAddArgBuffer(cmd, &fdc_opts);
2348 2349
    }

2350 2351 2352 2353
    ret = 0;

 cleanup:
    VIR_FREE(backendAlias);
2354 2355
    VIR_FREE(backendStr);
    VIR_FREE(bootindexStr);
2356
    virBufferFreeAndReset(&fdc_opts);
2357
    return ret;
2358 2359 2360
}


2361
static int
2362 2363
qemuBuildObjectCommandline(virCommandPtr cmd,
                           virJSONValuePtr objProps)
2364 2365 2366
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

2367
    if (!objProps)
2368 2369
        return 0;

2370 2371
    if (virQEMUBuildObjectCommandlineFromJSON(&buf, objProps) < 0) {
        virBufferFreeAndReset(&buf);
2372
        return -1;
2373
    }
2374 2375 2376 2377

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

2378 2379 2380 2381 2382 2383 2384 2385
    return 0;
}


static int
qemuBuildBlockStorageSourceAttachDataCommandline(virCommandPtr cmd,
                                                 qemuBlockStorageSourceAttachDataPtr data)
{
2386 2387
    char *tmp;

2388 2389 2390 2391 2392 2393 2394 2395 2396
    if (qemuBuildObjectCommandline(cmd, data->prmgrProps) < 0 ||
        qemuBuildObjectCommandline(cmd, data->authsecretProps) < 0 ||
        qemuBuildObjectCommandline(cmd, data->encryptsecretProps) < 0 ||
        qemuBuildObjectCommandline(cmd, data->tlsProps) < 0)
        return -1;

    if (data->driveCmd)
        virCommandAddArgList(cmd, "-drive", data->driveCmd, NULL);

2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
    if (data->storageProps) {
        if (!(tmp = virJSONValueToString(data->storageProps, false)))
            return -1;

        virCommandAddArgList(cmd, "-blockdev", tmp, NULL);
        VIR_FREE(tmp);
    }

    if (data->formatProps) {
        if (!(tmp = virJSONValueToString(data->formatProps, false)))
            return -1;

        virCommandAddArgList(cmd, "-blockdev", tmp, NULL);
        VIR_FREE(tmp);
    }

2413
    return 0;
2414 2415 2416
}


2417
static int
2418 2419
qemuBuildDiskSourceCommandLine(virCommandPtr cmd,
                               virDomainDiskDefPtr disk,
2420
                               virQEMUCapsPtr qemuCaps)
2421
{
2422 2423 2424 2425 2426 2427 2428
    qemuBlockStorageSourceAttachDataPtr *data = NULL;
    size_t ndata = 0;
    qemuBlockStorageSourceAttachDataPtr tmp = NULL;
    virJSONValuePtr copyOnReadProps = NULL;
    virStorageSourcePtr n;
    char *str = NULL;
    size_t i;
2429
    int ret = -1;
2430

2431 2432 2433 2434 2435
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKDEV)) {
        if (virStorageSourceIsEmpty(disk->src)) {
            ret = 0;
            goto cleanup;
        }
2436

2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
        for (n = disk->src; virStorageSourceIsBacking(n); n = n->backingStore) {
            if (!(tmp = qemuBlockStorageSourceAttachPrepareBlockdev(n)))
                goto cleanup;

            if (qemuBuildStorageSourceAttachPrepareCommon(n, tmp, qemuCaps) < 0)
                goto cleanup;

            if (VIR_APPEND_ELEMENT(data, ndata, tmp) < 0)
                goto cleanup;
        }

        if (disk->copy_on_read == VIR_TRISTATE_SWITCH_ON &&
            !(copyOnReadProps = qemuBlockStorageGetCopyOnReadProps(disk)))
            goto cleanup;
    } else {
        if (!(tmp = qemuBuildStorageSourceAttachPrepareDrive(disk, qemuCaps)))
            goto cleanup;

        if (qemuBuildStorageSourceAttachPrepareCommon(disk->src, tmp,
                                                      qemuCaps) < 0)
            goto cleanup;

        if (VIR_APPEND_ELEMENT(data, ndata, tmp) < 0)
            goto cleanup;
    }

    for (i = ndata; i > 0; i--) {
        if (qemuBuildBlockStorageSourceAttachDataCommandline(cmd,
                                                             data[i - 1]) < 0)
            goto cleanup;
    }

    if (copyOnReadProps) {
        if (!(str = virJSONValueToString(copyOnReadProps, false)))
            goto cleanup;

        virCommandAddArgList(cmd, "-blockdev", str, NULL);
        VIR_FREE(str);
    }
2476

2477 2478 2479
    ret = 0;

 cleanup:
2480 2481 2482 2483 2484 2485
    for (i = 0; i < ndata; i++)
        qemuBlockStorageSourceAttachDataFree(data[i]);
    VIR_FREE(data);
    qemuBlockStorageSourceAttachDataFree(tmp);
    virJSONValueFree(copyOnReadProps);
    VIR_FREE(str);
2486 2487 2488 2489 2490 2491 2492 2493 2494
    return ret;
}


static int
qemuBuildDiskCommandLine(virCommandPtr cmd,
                         const virDomainDef *def,
                         virDomainDiskDefPtr disk,
                         virQEMUCapsPtr qemuCaps,
2495
                         unsigned int bootindex)
2496 2497 2498
{
    char *optstr;

2499
    if (qemuBuildDiskSourceCommandLine(cmd, disk, qemuCaps) < 0)
2500
        return -1;
2501

2502
    if (!qemuDiskBusNeedsDriveArg(disk->bus)) {
2503 2504
        if (disk->bus != VIR_DOMAIN_DISK_BUS_FDC ||
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKDEV)) {
2505 2506 2507
            if (qemuCommandAddExtDevice(cmd, &disk->info) < 0)
                return -1;

2508 2509
            virCommandAddArg(cmd, "-device");

2510 2511
            if (!(optstr = qemuBuildDiskDeviceStr(def, disk, bootindex,
                                                  qemuCaps)))
2512 2513 2514 2515 2516 2517 2518 2519 2520 2521
                return -1;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
        }
    }

    return 0;
}


2522
static int
2523 2524 2525
qemuBuildDisksCommandLine(virCommandPtr cmd,
                          const virDomainDef *def,
                          virQEMUCapsPtr qemuCaps)
2526 2527
{
    size_t i;
2528 2529 2530
    unsigned int bootCD = 0;
    unsigned int bootFloppy = 0;
    unsigned int bootDisk = 0;
2531
    bool blockdev = virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKDEV);
2532

2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543
    for (i = 0; i < def->os.nBootDevs; i++) {
        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;
2544 2545 2546
        }
    }

2547 2548 2549 2550 2551 2552
    /* If we want to express the floppy drives via -device, the controller needs
     * to be instantiated prior to that */
    if (blockdev &&
        qemuBuildFloppyCommandLineControllerOptions(cmd, def, qemuCaps, bootFloppy) < 0)
        return -1;

2553
    for (i = 0; i < def->ndisks; i++) {
2554
        virDomainDiskDefPtr disk = def->disks[i];
2555
        unsigned int bootindex = 0;
2556

2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570
        if (disk->info.bootIndex) {
            bootindex = disk->info.bootIndex;
        } else {
            switch (disk->device) {
            case VIR_DOMAIN_DISK_DEVICE_CDROM:
                bootindex = bootCD;
                bootCD = 0;
                break;
            case VIR_DOMAIN_DISK_DEVICE_DISK:
            case VIR_DOMAIN_DISK_DEVICE_LUN:
                bootindex = bootDisk;
                bootDisk = 0;
                break;
            }
2571 2572
        }

2573 2574 2575 2576 2577 2578
        /* The floppy device itself does not support the bootindex property
         * so we need to set it up for the controller */
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY)
            bootindex = 0;

        if (qemuBuildDiskCommandLine(cmd, def, disk, qemuCaps, bootindex) < 0)
2579
            return -1;
2580
    }
2581

2582 2583
    if (!blockdev &&
        qemuBuildFloppyCommandLineControllerOptions(cmd, def, qemuCaps, bootFloppy) < 0)
2584 2585
        return -1;

2586 2587 2588 2589
    return 0;
}


2590
static char *
2591
qemuBuildFSStr(virDomainFSDefPtr fs)
2592 2593
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
2594
    const char *driver = qemuDomainFSDriverTypeToString(fs->fsdriver);
2595
    const char *wrpolicy = virDomainFSWrpolicyTypeToString(fs->wrpolicy);
2596 2597

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
2598 2599
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only supports mount filesystem type"));
2600 2601 2602
        goto error;
    }

2603
    if (!driver) {
2604 2605
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Filesystem driver type not supported"));
2606 2607 2608 2609
        goto error;
    }
    virBufferAdd(&opt, driver, -1);

2610 2611 2612 2613
    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");
2614
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
2615
            virBufferAddLit(&opt, ",security_model=passthrough");
2616
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_SQUASH) {
2617 2618 2619 2620 2621 2622
            virBufferAddLit(&opt, ",security_model=none");
        }
    } else {
        /* For other fs drivers, default(passthru) should always
         * be supported */
        if (fs->accessmode != VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
2623 2624
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("only supports passthrough accessmode"));
2625 2626
            goto error;
        }
2627
    }
2628

2629 2630
    if (fs->wrpolicy)
        virBufferAsprintf(&opt, ",writeout=%s", wrpolicy);
2631

2632
    virBufferAsprintf(&opt, ",id=%s%s", QEMU_FSDEV_HOST_PREFIX, fs->info.alias);
2633 2634
    virBufferAddLit(&opt, ",path=");
    virQEMUBuildBufferEscapeComma(&opt, fs->src->path);
2635

2636 2637
    if (fs->readonly)
        virBufferAddLit(&opt, ",readonly");
2638

2639
    if (virBufferCheckError(&opt) < 0)
2640 2641 2642 2643
        goto error;

    return virBufferContentAndReset(&opt);

2644
 error:
2645 2646 2647 2648 2649
    virBufferFreeAndReset(&opt);
    return NULL;
}


2650 2651
static char *
qemuBuildFSDevStr(const virDomainDef *def,
2652
                  virDomainFSDefPtr fs,
2653
                  virQEMUCapsPtr qemuCaps)
2654 2655 2656 2657
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
2658 2659
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("can only passthrough directories"));
2660 2661 2662
        goto error;
    }

2663 2664
    if (qemuBuildVirtioDevStr(&opt, "virtio-9p",
                              VIR_DOMAIN_DEVICE_FS, fs) < 0) {
2665
        goto error;
2666
    }
2667

2668
    virBufferAsprintf(&opt, ",id=%s", fs->info.alias);
2669 2670
    virBufferAsprintf(&opt, ",fsdev=%s%s",
                      QEMU_FSDEV_HOST_PREFIX, fs->info.alias);
2671 2672
    virBufferAddLit(&opt, ",mount_tag=");
    virQEMUBuildBufferEscapeComma(&opt, fs->dst);
A
Alex Jia 已提交
2673

2674 2675
    if (qemuBuildVirtioOptionsStr(&opt, fs->virtio, qemuCaps) < 0)
        goto error;
2676

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

2680
    if (virBufferCheckError(&opt) < 0)
2681 2682 2683 2684
        goto error;

    return virBufferContentAndReset(&opt);

2685
 error:
2686 2687 2688 2689 2690
    virBufferFreeAndReset(&opt);
    return NULL;
}


2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702
static int
qemuBuildFSDevCommandLine(virCommandPtr cmd,
                          const virDomainDef *def,
                          virQEMUCapsPtr qemuCaps)
{
    size_t i;

    for (i = 0; i < def->nfss; i++) {
        char *optstr;
        virDomainFSDefPtr fs = def->fss[i];

        virCommandAddArg(cmd, "-fsdev");
2703
        if (!(optstr = qemuBuildFSStr(fs)))
2704 2705 2706 2707
            return -1;
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);

2708 2709 2710
        if (qemuCommandAddExtDevice(cmd, &fs->info) < 0)
            return -1;

2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721
        virCommandAddArg(cmd, "-device");
        if (!(optstr = qemuBuildFSDevStr(def, fs, qemuCaps)))
            return -1;
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);
    }

    return 0;
}


2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740
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 已提交
2741 2742
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI:
        return QEMU_CAPS_NEC_USB_XHCI;
2743 2744
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_QEMU_XHCI:
        return QEMU_CAPS_DEVICE_QEMU_XHCI;
2745 2746 2747 2748 2749 2750
    default:
        return -1;
    }
}


2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775
static const char *
qemuBuildUSBControllerFindMasterAlias(const virDomainDef *domainDef,
                                      const virDomainControllerDef *def)
{
    size_t i;

    for (i = 0; i < domainDef->ncontrollers; i++) {
        const virDomainControllerDef *tmp = domainDef->controllers[i];

        if (tmp->type != VIR_DOMAIN_CONTROLLER_TYPE_USB)
            continue;

        if (tmp->idx != def->idx)
            continue;

        if (tmp->info.mastertype == VIR_DOMAIN_CONTROLLER_MASTER_USB)
            continue;

        return tmp->info.alias;
    }

    return NULL;
}


2776
static int
2777 2778
qemuBuildUSBControllerDevStr(const virDomainDef *domainDef,
                             virDomainControllerDefPtr def,
2779
                             virQEMUCapsPtr qemuCaps,
2780 2781 2782
                             virBuffer *buf)
{
    const char *smodel;
2783
    int model, flags;
2784 2785

    model = def->model;
2786

2787
    if (model == VIR_DOMAIN_CONTROLLER_MODEL_USB_DEFAULT) {
2788 2789 2790
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       "%s", _("no model provided for USB controller"));
        return -1;
2791
    }
2792 2793

    smodel = qemuControllerModelUSBTypeToString(model);
2794
    flags = qemuControllerModelUSBToCaps(model);
2795

2796
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
2797 2798
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), smodel);
2799 2800 2801
        return -1;
    }

2802 2803
    virBufferAsprintf(buf, "%s", smodel);

2804
    if (def->opts.usbopts.ports != -1) {
2805 2806 2807
        if ((model != VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI ||
             !virQEMUCapsGet(qemuCaps, QEMU_CAPS_NEC_USB_XHCI_PORTS)) &&
            model != VIR_DOMAIN_CONTROLLER_MODEL_USB_QEMU_XHCI) {
2808 2809 2810 2811 2812 2813 2814 2815 2816 2817
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("usb controller type %s doesn't support 'ports' "
                             "with this QEMU binary"), smodel);
            return -1;
        }

        virBufferAsprintf(buf, ",p2=%d,p3=%d",
                          def->opts.usbopts.ports, def->opts.usbopts.ports);
    }

2818 2819 2820 2821 2822 2823 2824 2825
    if (def->info.mastertype == VIR_DOMAIN_CONTROLLER_MASTER_USB) {
        const char *masterbus;

        if (!(masterbus = qemuBuildUSBControllerFindMasterAlias(domainDef, def))) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("masterbus not found"));
            return -1;
        }
2826
        virBufferAsprintf(buf, ",masterbus=%s.0,firstport=%d",
2827 2828
                          masterbus, def->info.master.usb.startport);
    } else {
2829
        virBufferAsprintf(buf, ",id=%s", def->info.alias);
2830
    }
2831

2832 2833 2834
    return 0;
}

2835

2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856
/**
 * qemuBuildControllerDevStr:
 * @domainDef: domain definition
 * @def: controller definition
 * @qemuCaps: QEMU binary capabilities
 * @devstr: device string
 * @nusbcontroller: number of USB controllers
 *
 * Turn @def into a description of the controller that QEMU will understand,
 * to be used either on the command line or through the monitor.
 *
 * The description will be returned in @devstr and can be NULL, eg. when
 * passing in one of the built-in controllers. The returned string must be
 * freed by the caller.
 *
 * The number pointed to by @nusbcontroller will be increased by one every
 * time the description for a USB controller has been generated successfully.
 *
 * Returns: 0 on success, <0 on failure
 */
int
2857
qemuBuildControllerDevStr(const virDomainDef *domainDef,
2858
                          virDomainControllerDefPtr def,
2859
                          virQEMUCapsPtr qemuCaps,
2860
                          char **devstr)
2861 2862
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2863

2864 2865
    *devstr = NULL;

2866
    switch ((virDomainControllerType)def->type) {
2867
    case VIR_DOMAIN_CONTROLLER_TYPE_SCSI:
2868
        switch ((virDomainControllerModelSCSI) def->model) {
2869
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI:
2870 2871
            if (qemuBuildVirtioDevStr(&buf, "virtio-scsi",
                                      VIR_DOMAIN_DEVICE_CONTROLLER, def) < 0) {
2872
                goto error;
2873
            }
2874 2875 2876 2877 2878 2879

            if (def->iothread) {
                virBufferAsprintf(&buf, ",iothread=iothread%u",
                                  def->iothread);
            }

2880 2881
            if (qemuBuildVirtioOptionsStr(&buf, def->virtio, qemuCaps) < 0)
                goto error;
2882
            break;
2883
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC:
2884
            virBufferAddLit(&buf, "lsi");
2885 2886 2887 2888
            break;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI:
            virBufferAddLit(&buf, "spapr-vscsi");
            break;
2889 2890 2891
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1068:
            virBufferAddLit(&buf, "mptsas1068");
            break;
2892 2893 2894
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1078:
            virBufferAddLit(&buf, "megasas");
            break;
2895 2896 2897
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_AUTO:
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_BUSLOGIC:
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VMPVSCSI:
2898 2899 2900
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported controller model: %s"),
                           virDomainControllerModelSCSITypeToString(def->model));
2901 2902 2903 2904 2905 2906 2907
            goto error;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_DEFAULT:
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LAST:
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unexpected SCSI controller model %d"),
                           def->model);
            goto error;
2908
        }
2909
        virBufferAsprintf(&buf, ",id=%s", def->info.alias);
2910 2911 2912
        break;

    case VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL:
2913 2914
        if (qemuBuildVirtioDevStr(&buf, "virtio-serial",
                                  VIR_DOMAIN_DEVICE_CONTROLLER, def) < 0) {
2915
            goto error;
2916
        }
2917

2918
        virBufferAsprintf(&buf, ",id=%s", def->info.alias);
2919
        if (def->opts.vioserial.ports != -1) {
2920
            virBufferAsprintf(&buf, ",max_ports=%d",
2921 2922 2923
                              def->opts.vioserial.ports);
        }
        if (def->opts.vioserial.vectors != -1) {
2924
            virBufferAsprintf(&buf, ",vectors=%d",
2925 2926
                              def->opts.vioserial.vectors);
        }
2927 2928
        if (qemuBuildVirtioOptionsStr(&buf, def->virtio, qemuCaps) < 0)
            goto error;
2929 2930
        break;

E
Eric Blake 已提交
2931
    case VIR_DOMAIN_CONTROLLER_TYPE_CCID:
2932
        virBufferAsprintf(&buf, "usb-ccid,id=%s", def->info.alias);
E
Eric Blake 已提交
2933 2934
        break;

J
Jim Fehlig 已提交
2935
    case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
2936
        virBufferAsprintf(&buf, "ahci,id=%s", def->info.alias);
J
Jim Fehlig 已提交
2937 2938
        break;

2939
    case VIR_DOMAIN_CONTROLLER_TYPE_USB:
2940
        if (qemuBuildUSBControllerDevStr(domainDef, def, qemuCaps, &buf) == -1)
2941 2942 2943 2944
            goto error;

        break;

2945 2946 2947
    case VIR_DOMAIN_CONTROLLER_TYPE_PCI: {
        const virDomainPCIControllerOpts *pciopts = &def->opts.pciopts;
        const char *modelName = virDomainControllerPCIModelNameTypeToString(pciopts->modelName);
2948

2949 2950 2951 2952 2953 2954 2955
        /* Skip the implicit PHB for pSeries guests */
        if (def->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT &&
            pciopts->modelName == VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_SPAPR_PCI_HOST_BRIDGE &&
            pciopts->targetIndex == 0) {
            goto done;
        }

2956 2957 2958 2959 2960 2961 2962
        if (!modelName) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown virDomainControllerPCIModelName value: %d"),
                           pciopts->modelName);
            return -1;
        }

2963
        switch ((virDomainControllerModelPCI) def->model) {
2964
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_BRIDGE:
2965
            virBufferAsprintf(&buf, "%s,chassis_nr=%d,id=%s",
2966
                              modelName, pciopts->chassisNr,
2967
                              def->info.alias);
2968
            break;
2969
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_EXPANDER_BUS:
2970
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_EXPANDER_BUS:
2971
            virBufferAsprintf(&buf, "%s,bus_nr=%d,id=%s",
2972
                              modelName, pciopts->busNr,
2973
                              def->info.alias);
2974 2975 2976 2977
            if (pciopts->numaNode != -1) {
                virBufferAsprintf(&buf, ",numa_node=%d",
                                  pciopts->numaNode);
            }
2978
            break;
2979
        case VIR_DOMAIN_CONTROLLER_MODEL_DMI_TO_PCI_BRIDGE:
2980
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_SWITCH_UPSTREAM_PORT:
2981
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_TO_PCI_BRIDGE:
2982 2983
            virBufferAsprintf(&buf, "%s,id=%s", modelName, def->info.alias);
            break;
2984
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT_PORT:
2985 2986
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_SWITCH_DOWNSTREAM_PORT:
            virBufferAsprintf(&buf, "%s,port=0x%x,chassis=%d,id=%s",
2987 2988
                              modelName, pciopts->port,
                              pciopts->chassis, def->info.alias);
2989
            break;
2990
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
2991
            virBufferAsprintf(&buf, "%s,index=%d,id=%s",
2992
                              modelName, pciopts->targetIndex,
2993
                              def->info.alias);
2994

2995
            if (pciopts->numaNode != -1)
2996
                virBufferAsprintf(&buf, ",numa_node=%d", pciopts->numaNode);
2997
            break;
2998
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
2999 3000 3001 3002
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Unsupported PCI Express root controller"));
            goto error;
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_DEFAULT:
3003
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_LAST:
3004 3005 3006
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unexpected PCI controller model %d"),
                           def->model);
3007 3008
            goto error;
        }
3009
        break;
3010
    }
3011

3012
    case VIR_DOMAIN_CONTROLLER_TYPE_IDE:
3013 3014
    case VIR_DOMAIN_CONTROLLER_TYPE_FDC:
    case VIR_DOMAIN_CONTROLLER_TYPE_LAST:
3015
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
3016
                       _("Unsupported controller type: %s"),
3017
                       virDomainControllerTypeToString(def->type));
3018 3019 3020
        goto error;
    }

3021 3022
    if (def->queues)
        virBufferAsprintf(&buf, ",num_queues=%u", def->queues);
3023

3024 3025 3026 3027 3028 3029
    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);

3030 3031
    qemuBuildIoEventFdStr(&buf, def->ioeventfd, qemuCaps);

3032
    if (qemuBuildDeviceAddressStr(&buf, domainDef, &def->info, qemuCaps) < 0)
3033 3034
        goto error;

3035
 done:
3036
    if (virBufferCheckError(&buf) < 0)
3037 3038
        goto error;

3039 3040
    *devstr = virBufferContentAndReset(&buf);
    return 0;
3041

3042
 error:
3043
    virBufferFreeAndReset(&buf);
3044
    return -1;
3045 3046 3047
}


3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059
static bool
qemuBuildDomainForbidLegacyUSBController(const virDomainDef *def)
{
    if (qemuDomainIsQ35(def) ||
        qemuDomainIsARMVirt(def) ||
        qemuDomainIsRISCVVirt(def))
        return true;

    return false;
}


3060 3061
static int
qemuBuildLegacyUSBControllerCommandLine(virCommandPtr cmd,
3062
                                        const virDomainDef *def)
3063
{
3064
    size_t i;
3065
    size_t nlegacy = 0;
3066
    size_t nusb = 0;
3067 3068 3069 3070 3071 3072 3073 3074 3075 3076

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

        if (cont->type != VIR_DOMAIN_CONTROLLER_TYPE_USB)
            continue;

        /* If we have mode='none', there are no other USB controllers */
        if (cont->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_NONE)
            return 0;
3077 3078 3079

        if (cont->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_DEFAULT)
            nlegacy++;
3080 3081
        else
            nusb++;
3082 3083 3084 3085 3086 3087 3088
    }

    if (nlegacy > 1) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Multiple legacy USB controllers are "
                         "not supported"));
        return -1;
3089 3090
    }

3091
    if (nusb == 0 &&
3092
        !qemuBuildDomainForbidLegacyUSBController(def) &&
3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103
        !ARCH_IS_S390(def->os.arch)) {
        /* We haven't added any USB controller yet, but we haven't been asked
         * not to add one either. Add a legacy USB controller, unless we're
         * creating a kind of guest we want to keep legacy-free */
        virCommandAddArg(cmd, "-usb");
    }

    return 0;
}


3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141
/**
 * qemuBuildSkipController:
 * @controller: Controller to check
 * @def: Domain definition
 *
 * Returns true if this controller can be skipped for command line
 * generation or device validation.
 */
static bool
qemuBuildSkipController(const virDomainControllerDef *controller,
                        const virDomainDef *def)
{
    /* skip pcie-root */
    if (controller->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
        controller->model == VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT)
        return true;

    /* Skip pci-root, except for pSeries guests (which actually
     * support more than one PCI Host Bridge per guest) */
    if (!qemuDomainIsPSeries(def) &&
        controller->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
        controller->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT)
        return true;

    /* first SATA controller on Q35 machines is implicit */
    if (controller->type == VIR_DOMAIN_CONTROLLER_TYPE_SATA &&
        controller->idx == 0 && qemuDomainIsQ35(def))
        return true;

    /* first IDE controller is implicit on various machines */
    if (controller->type == VIR_DOMAIN_CONTROLLER_TYPE_IDE &&
        controller->idx == 0 && qemuDomainHasBuiltinIDE(def))
        return true;

    return false;
}


3142 3143 3144 3145 3146 3147
static int
qemuBuildControllersByTypeCommandLine(virCommandPtr cmd,
                                      const virDomainDef *def,
                                      virQEMUCapsPtr qemuCaps,
                                      virDomainControllerType type)
{
3148
    char *devstr = NULL;
3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185
    int ret = -1;
    size_t i;

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

        if (cont->type != type)
            continue;

        if (qemuBuildSkipController(cont, def))
            continue;

        /* skip USB controllers with type none.*/
        if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
            cont->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_NONE) {
            continue;
        }

        if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
            cont->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_DEFAULT &&
            !qemuBuildDomainForbidLegacyUSBController(def)) {

            /* An appropriate default USB controller model should already
             * have been selected in qemuDomainDeviceDefPostParse(); if
             * we still have no model by now, we have to fall back to the
             * legacy USB controller.
             *
             * Note that we *don't* want to end up with the legacy USB
             * controller for q35 and virt machines, so we go ahead and
             * fail in qemuBuildControllerDevStr(); on the other hand,
             * for s390 machines we want to ignore any USB controller
             * (see 548ba43028 for the full story), so we skip
             * qemuBuildControllerDevStr() but we don't ultimately end
             * up adding the legacy USB controller */
            continue;
        }

3186
        VIR_FREE(devstr);
3187 3188 3189 3190
        if (qemuBuildControllerDevStr(def, cont, qemuCaps, &devstr) < 0)
            goto cleanup;

        if (devstr) {
3191
            if (qemuCommandAddExtDevice(cmd, &cont->info) < 0)
3192 3193 3194 3195 3196 3197 3198 3199 3200
                goto cleanup;

            virCommandAddArg(cmd, "-device");
            virCommandAddArg(cmd, devstr);
        }
    }

    ret = 0;
 cleanup:
3201
    VIR_FREE(devstr);
3202 3203 3204 3205
    return ret;
}


3206
static int
3207 3208 3209
qemuBuildControllersCommandLine(virCommandPtr cmd,
                                const virDomainDef *def,
                                virQEMUCapsPtr qemuCaps)
3210
{
3211
    size_t i;
3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226
    int contOrder[] = {
        /*
         * List of controller types that we add commandline args for,
         * *in the order we want to add them*.
         *
         * The floppy controller is implicit on PIIX4 and older Q35
         * machines. For newer Q35 machines it is added out of the
         * controllers loop, after the floppy drives.
         *
         * We don't add PCI/PCIe root controller either, because it's
         * implicit, but we do add PCI bridges and other PCI
         * controllers, so we leave that in to check each
         * one. Likewise, we don't do anything for the primary IDE
         * controller on an i440fx machine or primary SATA on q35, but
         * we do add those beyond these two exceptions.
3227 3228 3229
         *
         * CCID controllers are formatted separately after USB hubs,
         * because they go on the USB bus.
3230 3231 3232 3233 3234 3235 3236 3237
         */
        VIR_DOMAIN_CONTROLLER_TYPE_PCI,
        VIR_DOMAIN_CONTROLLER_TYPE_USB,
        VIR_DOMAIN_CONTROLLER_TYPE_SCSI,
        VIR_DOMAIN_CONTROLLER_TYPE_IDE,
        VIR_DOMAIN_CONTROLLER_TYPE_SATA,
        VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL,
    };
3238
    int ret = -1;
3239

3240 3241
    for (i = 0; i < ARRAY_CARDINALITY(contOrder); i++) {
        if (qemuBuildControllersByTypeCommandLine(cmd, def, qemuCaps, contOrder[i]) < 0)
3242
            goto cleanup;
3243 3244
    }

3245
    if (qemuBuildLegacyUSBControllerCommandLine(cmd, def) < 0)
3246
        goto cleanup;
3247

3248 3249 3250 3251
    ret = 0;

 cleanup:
    return ret;
3252 3253 3254
}


M
Marc-André Lureau 已提交
3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274
static int
qemuBuildMemoryBackendPropsShare(virJSONValuePtr props,
                                 virDomainMemoryAccess memAccess)
{
    switch (memAccess) {
    case VIR_DOMAIN_MEMORY_ACCESS_SHARED:
        return virJSONValueObjectAdd(props, "b:share", true, NULL);

    case VIR_DOMAIN_MEMORY_ACCESS_PRIVATE:
        return virJSONValueObjectAdd(props, "b:share", false, NULL);

    case VIR_DOMAIN_MEMORY_ACCESS_DEFAULT:
    case VIR_DOMAIN_MEMORY_ACCESS_LAST:
        break;
    }

    return 0;
}


3275
/**
3276
 * qemuBuildMemoryBackendProps:
3277
 * @backendProps: [out] constructed object
3278
 * @alias: alias of the device
3279
 * @cfg: qemu driver config object
3280
 * @priv: pointer to domain private object
3281 3282 3283 3284 3285
 * @def: domain definition object
 * @mem: memory definition object
 * @force: forcibly use one of the backends
 *
 * Creates a configuration object that represents memory backend of given guest
3286
 * NUMA node (domain @def and @mem). Use @priv->autoNodeset to fine tune the
3287 3288 3289 3290 3291
 * placement of the memory on the host NUMA nodes.
 *
 * By default, if no memory-backend-* object is necessary to fulfil the guest
 * configuration value of 1 is returned. This behaviour can be suppressed by
 * setting @force to true in which case 0 would be returned.
3292
 *
3293 3294
 * Then, if one of the three memory-backend-* should be used, the @priv->qemuCaps
 * is consulted to check if qemu does support it.
3295
 *
3296 3297 3298
 * Returns: 0 on success,
 *          1 on success and if there's no need to use memory-backend-*
 *         -1 on error.
3299
 */
3300
int
3301
qemuBuildMemoryBackendProps(virJSONValuePtr *backendProps,
3302
                            const char *alias,
3303
                            virQEMUDriverConfigPtr cfg,
3304
                            qemuDomainObjPrivatePtr priv,
3305 3306 3307
                            virDomainDefPtr def,
                            virDomainMemoryDefPtr mem,
                            bool force)
3308
{
3309
    const char *backendType = "memory-backend-file";
3310
    virDomainNumatuneMemMode mode;
3311
    const long system_page_size = virGetSystemPageSizeKB();
3312
    virDomainMemoryAccess memAccess = mem->access;
3313
    size_t i;
M
Michal Privoznik 已提交
3314 3315
    char *memPath = NULL;
    bool prealloc = false;
3316
    virBitmapPtr nodemask = NULL;
3317
    int ret = -1;
3318
    virJSONValuePtr props = NULL;
3319 3320
    bool nodeSpecified = virDomainNumatuneNodeSpecified(def->numa, mem->targetNode);
    unsigned long long pagesize = mem->pagesize;
3321
    bool needHugepage = !!pagesize;
3322
    bool useHugepage = !!pagesize;
3323
    int discard = mem->discard;
3324 3325 3326 3327 3328 3329

    /* The difference between @needHugepage and @useHugepage is that the latter
     * is true whenever huge page is defined for the current memory cell.
     * Either directly, or transitively via global domain huge pages. The
     * former is true whenever "memory-backend-file" must be used to satisfy
     * @useHugepage. */
3330

3331 3332
    *backendProps = NULL;

3333
    if (mem->targetNode >= 0) {
3334
        /* memory devices could provide a invalid guest node */
3335
        if (mem->targetNode >= virDomainNumaGetNodeCount(def->numa)) {
3336 3337 3338
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("can't add memory backend for guest node '%d' as "
                             "the guest has only '%zu' NUMA nodes configured"),
3339
                           mem->targetNode, virDomainNumaGetNodeCount(def->numa));
3340 3341
            return -1;
        }
3342

3343 3344 3345 3346 3347
        if (memAccess == VIR_DOMAIN_MEMORY_ACCESS_DEFAULT)
            memAccess = virDomainNumaGetNodeMemoryAccessMode(def->numa, mem->targetNode);

        if (discard == VIR_TRISTATE_BOOL_ABSENT)
            discard = virDomainNumaGetNodeDiscard(def->numa, mem->targetNode);
3348
    }
3349

3350 3351 3352
    if (memAccess == VIR_DOMAIN_MEMORY_ACCESS_DEFAULT)
        memAccess = def->mem.access;

3353 3354 3355
    if (discard == VIR_TRISTATE_BOOL_ABSENT)
        discard = def->mem.discard;

3356
    if (virDomainNumatuneGetMode(def->numa, mem->targetNode, &mode) < 0 &&
3357 3358
        virDomainNumatuneGetMode(def->numa, -1, &mode) < 0)
        mode = VIR_DOMAIN_NUMATUNE_MEM_STRICT;
3359

3360
    if (pagesize == 0) {
3361 3362
        virDomainHugePagePtr master_hugepage = NULL;
        virDomainHugePagePtr hugepage = NULL;
3363 3364
        bool thisHugepage = false;

3365 3366 3367 3368 3369 3370 3371 3372 3373
        /* Find the huge page size we want to use */
        for (i = 0; i < def->mem.nhugepages; i++) {
            hugepage = &def->mem.hugepages[i];

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

3374
            /* just find the master hugepage in case we don't use NUMA */
3375
            if (mem->targetNode < 0)
3376 3377
                continue;

3378
            if (virBitmapGetBit(hugepage->nodemask, mem->targetNode,
3379 3380 3381 3382 3383 3384 3385 3386 3387
                                &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 */
3388
                needHugepage = true;
3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399
                break;
            }
        }

        if (i == 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;
        }

3400
        if (hugepage) {
3401
            pagesize = hugepage->size;
3402 3403
            useHugepage = true;
        }
3404
    }
3405

3406 3407 3408 3409 3410
    if (pagesize == system_page_size) {
        /* However, if user specified to use "huge" page
         * of regular system page size, it's as if they
         * hasn't specified any huge pages at all. */
        pagesize = 0;
3411 3412
        needHugepage = false;
        useHugepage = false;
3413 3414
    }

3415 3416 3417
    if (!(props = virJSONValueNewObject()))
        return -1;

M
Marc-André Lureau 已提交
3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430
    if (def->mem.source == VIR_DOMAIN_MEMORY_SOURCE_MEMFD) {
        backendType = "memory-backend-memfd";

        if (useHugepage &&
            (virJSONValueObjectAdd(props, "b:hugetlb", useHugepage, NULL) < 0 ||
             virJSONValueObjectAdd(props, "U:hugetlbsize", pagesize << 10, NULL) < 0)) {
            goto cleanup;
        }

        if (qemuBuildMemoryBackendPropsShare(props, memAccess) < 0)
            goto cleanup;

    } else if (useHugepage || mem->nvdimmPath || memAccess ||
M
Michal Privoznik 已提交
3431
        def->mem.source == VIR_DOMAIN_MEMORY_SOURCE_FILE) {
3432

3433 3434
        if (mem->nvdimmPath) {
            if (VIR_STRDUP(memPath, mem->nvdimmPath) < 0)
3435
                goto cleanup;
3436 3437
            if (!priv->memPrealloc)
                prealloc = true;
3438 3439
        } else if (useHugepage) {
            if (qemuGetDomainHupageMemPath(def, cfg, pagesize, &memPath) < 0)
3440
                goto cleanup;
3441 3442
            if (!priv->memPrealloc)
                prealloc = true;
3443
        } else {
3444 3445
            /* We can have both pagesize and mem source. If that's the case,
             * prefer hugepages as those are more specific. */
3446
            if (qemuGetMemoryBackingPath(def, cfg, mem->info.alias, &memPath) < 0)
3447 3448
                goto cleanup;
        }
3449

M
Michal Privoznik 已提交
3450 3451 3452 3453 3454 3455
        if (virJSONValueObjectAdd(props,
                                  "B:prealloc", prealloc,
                                  "s:mem-path", memPath,
                                  NULL) < 0)
            goto cleanup;

3456 3457
        if (!mem->nvdimmPath &&
            discard == VIR_TRISTATE_BOOL_YES) {
3458
            if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE_DISCARD)) {
3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU doesn't support memory discard"));
                goto cleanup;
            }

            if (virJSONValueObjectAdd(props,
                                      "B:discard-data", true,
                                      NULL) < 0)
                goto cleanup;
        }

M
Marc-André Lureau 已提交
3470 3471
        if (qemuBuildMemoryBackendPropsShare(props, memAccess) < 0)
            goto cleanup;
3472
    } else {
3473
        backendType = "memory-backend-ram";
3474 3475
    }

3476
    if (virJSONValueObjectAdd(props, "U:size", mem->size * 1024, NULL) < 0)
3477
        goto cleanup;
3478

3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489
    if (mem->alignsize) {
        if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE_ALIGN)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("nvdimm align property is not available "
                             "with this QEMU binary"));
            goto cleanup;
        }
        if (virJSONValueObjectAdd(props, "U:align", mem->alignsize * 1024, NULL) < 0)
            goto cleanup;
    }

3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500
    if (mem->nvdimmPmem) {
        if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE_PMEM)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("nvdimm pmem property is not available "
                             "with this QEMU binary"));
            goto cleanup;
        }
        if (virJSONValueObjectAdd(props, "s:pmem", "on", NULL) < 0)
            goto cleanup;
    }

3501 3502
    if (mem->sourceNodes) {
        nodemask = mem->sourceNodes;
3503
    } else {
3504
        if (virDomainNumatuneMaybeGetNodeset(def->numa, priv->autoNodeset,
3505
                                             &nodemask, mem->targetNode) < 0)
3506 3507 3508 3509
            goto cleanup;
    }

    if (nodemask) {
3510 3511
        if (!virNumaNodesetIsAvailable(nodemask))
            goto cleanup;
3512 3513 3514 3515
        if (virJSONValueObjectAdd(props,
                                  "m:host-nodes", nodemask,
                                  "S:policy", qemuNumaPolicyTypeToString(mode),
                                  NULL) < 0)
3516 3517 3518
            goto cleanup;
    }

3519
    /* If none of the following is requested... */
3520
    if (!needHugepage && !mem->sourceNodes && !nodeSpecified &&
M
Michal Privoznik 已提交
3521
        !mem->nvdimmPath &&
3522
        memAccess == VIR_DOMAIN_MEMORY_ACCESS_DEFAULT &&
M
Marc-André Lureau 已提交
3523 3524 3525
        def->mem.source != VIR_DOMAIN_MEMORY_SOURCE_FILE &&
        def->mem.source != VIR_DOMAIN_MEMORY_SOURCE_MEMFD &&
        !force) {
3526 3527 3528 3529 3530
        /* report back that using the new backend is not necessary
         * to achieve the desired configuration */
        ret = 1;
    } else {
        /* otherwise check the required capability */
3531
        if (STREQ(backendType, "memory-backend-file") &&
3532
            !virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE)) {
3533 3534 3535 3536
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support the "
                             "memory-backend-file object"));
            goto cleanup;
3537
        } else if (STREQ(backendType, "memory-backend-ram") &&
3538
                   !virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM)) {
3539 3540 3541
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support the "
                             "memory-backend-ram object"));
3542
            goto cleanup;
M
Marc-André Lureau 已提交
3543
        } else if (STREQ(backendType, "memory-backend-memory") &&
3544
                   !virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_OBJECT_MEMORY_MEMFD)) {
M
Marc-André Lureau 已提交
3545 3546 3547 3548
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support the "
                             "memory-backend-memfd object"));
            goto cleanup;
3549 3550
        }

3551
        ret = 0;
3552 3553
    }

3554 3555 3556
    if (!(*backendProps = qemuMonitorCreateObjectPropsWrap(backendType, alias,
                                                           &props)))
        ret = -1;
3557 3558

 cleanup:
3559
    virJSONValueFree(props);
M
Michal Privoznik 已提交
3560
    VIR_FREE(memPath);
3561 3562 3563 3564 3565 3566 3567 3568
    return ret;
}


static int
qemuBuildMemoryCellBackendStr(virDomainDefPtr def,
                              virQEMUDriverConfigPtr cfg,
                              size_t cell,
3569
                              qemuDomainObjPrivatePtr priv,
3570
                              virBufferPtr buf)
3571
{
3572 3573 3574 3575
    virJSONValuePtr props = NULL;
    char *alias = NULL;
    int ret = -1;
    int rc;
3576
    virDomainMemoryDef mem = { 0 };
3577 3578
    unsigned long long memsize = virDomainNumaGetNodeMemorySize(def->numa,
                                                                cell);
3579

3580 3581 3582
    if (virAsprintf(&alias, "ram-node%zu", cell) < 0)
        goto cleanup;

3583 3584
    mem.size = memsize;
    mem.targetNode = cell;
3585
    mem.info.alias = alias;
3586

3587 3588
    if ((rc = qemuBuildMemoryBackendProps(&props, alias, cfg,
                                          priv, def, &mem, false)) < 0)
3589 3590
        goto cleanup;

3591
    if (virQEMUBuildObjectCommandlineFromJSON(buf, props) < 0)
3592 3593
        goto cleanup;

3594
    ret = rc;
3595 3596 3597 3598 3599

 cleanup:
    VIR_FREE(alias);
    virJSONValueFree(props);

3600 3601 3602 3603
    return ret;
}


3604 3605 3606
static int
qemuBuildMemoryDimmBackendStr(virBufferPtr buf,
                              virDomainMemoryDefPtr mem,
3607
                              virDomainDefPtr def,
3608
                              virQEMUDriverConfigPtr cfg,
3609
                              qemuDomainObjPrivatePtr priv)
3610 3611 3612
{
    virJSONValuePtr props = NULL;
    char *alias = NULL;
3613
    int ret = -1;
3614 3615 3616 3617

    if (!mem->info.alias) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("memory device alias is not assigned"));
3618
        return -1;
3619 3620 3621 3622 3623
    }

    if (virAsprintf(&alias, "mem%s", mem->info.alias) < 0)
        goto cleanup;

3624 3625
    if (qemuBuildMemoryBackendProps(&props, alias, cfg,
                                    priv, def, mem, true) < 0)
3626 3627
        goto cleanup;

3628 3629 3630 3631
    if (virQEMUBuildObjectCommandlineFromJSON(buf, props) < 0)
        goto cleanup;

    ret = 0;
3632 3633 3634 3635 3636 3637 3638 3639 3640

 cleanup:
    VIR_FREE(alias);
    virJSONValueFree(props);

    return ret;
}


3641
char *
3642 3643
qemuBuildMemoryDeviceStr(virDomainMemoryDefPtr mem,
                         qemuDomainObjPrivatePtr priv)
3644 3645
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
M
Michal Privoznik 已提交
3646
    const char *device;
3647 3648 3649 3650 3651 3652 3653 3654

    if (!mem->info.alias) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("missing alias for memory device"));
        return NULL;
    }

    switch ((virDomainMemoryModel) mem->model) {
M
Michal Privoznik 已提交
3655
    case VIR_DOMAIN_MEMORY_MODEL_NVDIMM:
3656
    case VIR_DOMAIN_MEMORY_MODEL_DIMM:
M
Michal Privoznik 已提交
3657 3658 3659 3660 3661 3662 3663

        if (mem->model == VIR_DOMAIN_MEMORY_MODEL_DIMM)
            device = "pc-dimm";
        else
            device = "nvdimm";

        virBufferAsprintf(&buf, "%s,", device);
3664 3665 3666 3667

        if (mem->targetNode >= 0)
            virBufferAsprintf(&buf, "node=%d,", mem->targetNode);

3668 3669 3670
        if (mem->labelsize)
            virBufferAsprintf(&buf, "label-size=%llu,", mem->labelsize * 1024);

3671 3672 3673 3674 3675 3676 3677 3678 3679 3680
        if (mem->readonly) {
            if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE_NVDIMM_UNARMED)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("nvdimm readonly property is not available "
                                 "with this QEMU binary"));
                return NULL;
            }
            virBufferAddLit(&buf, "unarmed=on,");
        }

3681 3682
        virBufferAsprintf(&buf, "memdev=mem%s,id=%s",
                          mem->info.alias, mem->info.alias);
3683 3684 3685

        if (mem->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DIMM) {
            virBufferAsprintf(&buf, ",slot=%d", mem->info.addr.dimm.slot);
3686 3687
            if (mem->info.addr.dimm.base)
                virBufferAsprintf(&buf, ",addr=%llu", mem->info.addr.dimm.base);
3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704
        }

        break;

    case VIR_DOMAIN_MEMORY_MODEL_NONE:
    case VIR_DOMAIN_MEMORY_MODEL_LAST:
        break;

    }

    if (virBufferCheckError(&buf) < 0)
        return NULL;

    return virBufferContentAndReset(&buf);
}


3705
static char *
3706
qemuBuildLegacyNicStr(virDomainNetDefPtr net)
3707 3708
{
    char *str;
3709 3710
    char macaddr[VIR_MAC_STRING_BUFLEN];

3711
    ignore_value(virAsprintf(&str,
3712
                             "nic,macaddr=%s,netdev=host%s%s%s%s%s",
3713
                             virMacAddrFormat(&net->mac, macaddr),
3714
                             net->info.alias,
3715 3716
                             (net->model ? ",model=" : ""),
                             (net->model ? net->model : ""),
3717
                             (net->info.alias ? ",id=" : ""),
3718
                             (net->info.alias ? net->info.alias : "")));
3719 3720 3721 3722 3723
    return str;
}


char *
3724
qemuBuildNicDevStr(virDomainDefPtr def,
3725
                   virDomainNetDefPtr net,
3726
                   unsigned int bootindex,
3727
                   size_t vhostfdSize,
3728
                   virQEMUCapsPtr qemuCaps)
3729 3730
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3731
    bool usingVirtio = false;
3732
    char macaddr[VIR_MAC_STRING_BUFLEN];
3733

3734
    if (virDomainNetIsVirtioModel(net)) {
3735 3736
        if (qemuBuildVirtioDevStr(&buf, "virtio-net",
                                  VIR_DOMAIN_DEVICE_NET, net) < 0) {
3737
            goto error;
3738
        }
3739

3740
        usingVirtio = true;
3741 3742
    } else {
        virBufferAddStr(&buf, net->model);
3743 3744
    }

3745
    if (usingVirtio && net->driver.virtio.txmode) {
3746
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_TX_ALG)) {
3747 3748 3749 3750 3751 3752 3753 3754 3755
            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;
3756 3757 3758 3759 3760

                case VIR_DOMAIN_NET_VIRTIO_TX_MODE_DEFAULT:
                    break;

                case VIR_DOMAIN_NET_VIRTIO_TX_MODE_LAST:
3761 3762 3763 3764
                default:
                    /* this should never happen, if it does, we need
                     * to add another case to this switch.
                     */
3765 3766
                    virReportEnumRangeError(virDomainNetVirtioTxModeType,
                                            net->driver.virtio.txmode);
3767 3768 3769
                    goto error;
            }
        } else {
3770 3771
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-net-pci 'tx' option not supported in this QEMU binary"));
3772 3773 3774
            goto error;
        }
    }
3775
    if (usingVirtio) {
3776
        qemuBuildIoEventFdStr(&buf, net->driver.virtio.ioeventfd, qemuCaps);
3777
        if (net->driver.virtio.event_idx &&
3778
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_NET_EVENT_IDX)) {
3779
            virBufferAsprintf(&buf, ",event_idx=%s",
J
Ján Tomko 已提交
3780
                              virTristateSwitchTypeToString(net->driver.virtio.event_idx));
3781
        }
3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805
        if (net->driver.virtio.host.csum) {
            virBufferAsprintf(&buf, ",csum=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.csum));
        }
        if (net->driver.virtio.host.gso) {
            virBufferAsprintf(&buf, ",gso=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.gso));
        }
        if (net->driver.virtio.host.tso4) {
            virBufferAsprintf(&buf, ",host_tso4=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.tso4));
        }
        if (net->driver.virtio.host.tso6) {
            virBufferAsprintf(&buf, ",host_tso6=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.tso6));
        }
        if (net->driver.virtio.host.ecn) {
            virBufferAsprintf(&buf, ",host_ecn=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.ecn));
        }
        if (net->driver.virtio.host.ufo) {
            virBufferAsprintf(&buf, ",host_ufo=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.ufo));
        }
J
Ján Tomko 已提交
3806 3807 3808 3809
        if (net->driver.virtio.host.mrg_rxbuf) {
            virBufferAsprintf(&buf, ",mrg_rxbuf=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.mrg_rxbuf));
        }
3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829
        if (net->driver.virtio.guest.csum) {
            virBufferAsprintf(&buf, ",guest_csum=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.csum));
        }
        if (net->driver.virtio.guest.tso4) {
            virBufferAsprintf(&buf, ",guest_tso4=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.tso4));
        }
        if (net->driver.virtio.guest.tso6) {
            virBufferAsprintf(&buf, ",guest_tso6=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.tso6));
        }
        if (net->driver.virtio.guest.ecn) {
            virBufferAsprintf(&buf, ",guest_ecn=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.ecn));
        }
        if (net->driver.virtio.guest.ufo) {
            virBufferAsprintf(&buf, ",guest_ufo=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.guest.ufo));
        }
3830
    }
3831
    if (usingVirtio && vhostfdSize > 1) {
3832 3833 3834 3835 3836 3837
        if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            /* ccw provides a one to one relation of fds to queues and
             * does not support the vectors option
             */
            virBufferAddLit(&buf, ",mq=on");
        } else {
3838
            /* As advised at https://www.linux-kvm.org/page/Multiqueue
3839 3840 3841 3842
             * we should add vectors=2*N+2 where N is the vhostfdSize
             */
            virBufferAsprintf(&buf, ",mq=on,vectors=%zu", 2 * vhostfdSize + 2);
        }
3843
    }
3844 3845 3846 3847 3848
    if (usingVirtio && net->driver.virtio.rx_queue_size) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_NET_RX_QUEUE_SIZE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio rx_queue_size option is not supported with this QEMU binary"));
            goto error;
3849
        }
3850
        virBufferAsprintf(&buf, ",rx_queue_size=%u", net->driver.virtio.rx_queue_size);
3851
    }
3852 3853 3854 3855 3856
    if (usingVirtio && net->driver.virtio.tx_queue_size) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_NET_TX_QUEUE_SIZE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio tx_queue_size option is not supported with this QEMU binary"));
            goto error;
3857
        }
3858
        virBufferAsprintf(&buf, ",tx_queue_size=%u", net->driver.virtio.tx_queue_size);
3859
    }
3860

3861 3862 3863 3864 3865
    if (usingVirtio && net->mtu) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_NET_HOST_MTU)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("setting MTU is not supported with this QEMU binary"));
            goto error;
3866
        }
3867
        virBufferAsprintf(&buf, ",host_mtu=%u", net->mtu);
3868 3869
    }

3870
    virBufferAsprintf(&buf, ",netdev=host%s", net->info.alias);
3871
    virBufferAsprintf(&buf, ",id=%s", net->info.alias);
3872 3873
    virBufferAsprintf(&buf, ",mac=%s",
                      virMacAddrFormat(&net->mac, macaddr));
3874

3875
    if (qemuBuildDeviceAddressStr(&buf, def, &net->info, qemuCaps) < 0)
3876
        goto error;
3877
    if (qemuBuildRomStr(&buf, &net->info) < 0)
3878
        goto error;
3879
    if (bootindex)
3880
        virBufferAsprintf(&buf, ",bootindex=%u", bootindex);
3881 3882 3883
    if (usingVirtio &&
        qemuBuildVirtioOptionsStr(&buf, net->virtio, qemuCaps) < 0)
        goto error;
3884

3885
    if (virBufferCheckError(&buf) < 0)
3886 3887 3888 3889
        goto error;

    return virBufferContentAndReset(&buf);

3890
 error:
3891 3892 3893 3894 3895 3896 3897
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
qemuBuildHostNetStr(virDomainNetDefPtr net,
3898
                    virQEMUDriverPtr driver,
3899
                    char **tapfd,
3900
                    size_t tapfdSize,
3901
                    char **vhostfd,
3902
                    size_t vhostfdSize)
3903
{
3904
    bool is_tap = false;
3905
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3906
    virDomainNetType netType = virDomainNetGetActualType(net);
3907
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
3908
    size_t i;
3909
    char *addr = NULL;
3910
    char *ret = NULL;
3911

3912
    if (net->script && netType != VIR_DOMAIN_NET_TYPE_ETHERNET) {
3913 3914 3915
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("scripts are not supported on interfaces of type %s"),
                       virDomainNetTypeToString(netType));
3916
        goto cleanup;
3917 3918 3919
    }

    switch (netType) {
M
Michal Privoznik 已提交
3920 3921 3922 3923 3924
        /*
         * If type='bridge', and we're running as privileged user
         * or -netdev bridge is not supported then it will fall
         * through, -net tap,fd
         */
3925
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
R
Richa Marwaha 已提交
3926
    case VIR_DOMAIN_NET_TYPE_NETWORK:
3927
    case VIR_DOMAIN_NET_TYPE_DIRECT:
3928
    case VIR_DOMAIN_NET_TYPE_ETHERNET:
3929
        virBufferAddLit(&buf, "tap,");
3930 3931 3932
        /* for one tapfd 'fd=' shall be used,
         * for more than one 'fds=' is the right choice */
        if (tapfdSize == 1) {
3933
            virBufferAsprintf(&buf, "fd=%s,", tapfd[0]);
3934 3935 3936 3937 3938 3939 3940
        } else {
            virBufferAddLit(&buf, "fds=");
            for (i = 0; i < tapfdSize; i++) {
                if (i)
                    virBufferAddChar(&buf, ':');
                virBufferAdd(&buf, tapfd[i], -1);
            }
3941
            virBufferAddChar(&buf, ',');
3942
        }
3943
        is_tap = true;
3944 3945 3946
        break;

    case VIR_DOMAIN_NET_TYPE_CLIENT:
3947
        virBufferAsprintf(&buf, "socket,connect=%s:%d,",
M
Michal Privoznik 已提交
3948 3949 3950
                          net->data.socket.address,
                          net->data.socket.port);
        break;
3951

3952
    case VIR_DOMAIN_NET_TYPE_SERVER:
3953
        virBufferAsprintf(&buf, "socket,listen=%s:%d,",
M
Michal Privoznik 已提交
3954 3955 3956 3957
                          net->data.socket.address ? net->data.socket.address
                          : "",
                          net->data.socket.port);
        break;
3958

3959
    case VIR_DOMAIN_NET_TYPE_MCAST:
3960
        virBufferAsprintf(&buf, "socket,mcast=%s:%d,",
M
Michal Privoznik 已提交
3961 3962 3963
                          net->data.socket.address,
                          net->data.socket.port);
        break;
3964

3965
    case VIR_DOMAIN_NET_TYPE_UDP:
3966
        virBufferAsprintf(&buf, "socket,udp=%s:%d,localaddr=%s:%d,",
M
Michal Privoznik 已提交
3967 3968 3969 3970 3971
                          net->data.socket.address,
                          net->data.socket.port,
                          net->data.socket.localaddr,
                          net->data.socket.localport);
        break;
3972

3973
    case VIR_DOMAIN_NET_TYPE_USER:
3974
        virBufferAddLit(&buf, "user,");
3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990
        for (i = 0; i < net->guestIP.nips; i++) {
            const virNetDevIPAddr *ip = net->guestIP.ips[i];
            const char *prefix = "";

            if (!(addr = virSocketAddrFormat(&ip->address)))
                goto cleanup;

            if (VIR_SOCKET_ADDR_IS_FAMILY(&ip->address, AF_INET))
                prefix = "net=";
            if (VIR_SOCKET_ADDR_IS_FAMILY(&ip->address, AF_INET6))
                prefix = "ipv6-net=";

            virBufferAsprintf(&buf, "%s%s", prefix, addr);
            if (ip->prefix)
                virBufferAsprintf(&buf, "/%u", ip->prefix);
            virBufferAddChar(&buf, ',');
3991
            VIR_FREE(addr);
3992 3993 3994
        }
        break;

3995
    case VIR_DOMAIN_NET_TYPE_INTERNAL:
3996
        virBufferAddLit(&buf, "user,");
3997
        break;
3998 3999

    case VIR_DOMAIN_NET_TYPE_VHOSTUSER:
4000
        virBufferAsprintf(&buf, "vhost-user,chardev=char%s,",
4001 4002
                          net->info.alias);
        if (net->driver.virtio.queues > 1)
4003
            virBufferAsprintf(&buf, "queues=%u,",
4004
                              net->driver.virtio.queues);
4005 4006
        break;

J
Ján Tomko 已提交
4007 4008
    case VIR_DOMAIN_NET_TYPE_HOSTDEV:
        /* Should have been handled earlier via PCI/USB hotplug code. */
4009 4010
    case VIR_DOMAIN_NET_TYPE_LAST:
        break;
4011 4012
    }

4013
    virBufferAsprintf(&buf, "id=host%s,", net->info.alias);
4014

4015
    if (is_tap) {
4016
        if (vhostfdSize) {
4017
            virBufferAddLit(&buf, "vhost=on,");
4018
            if (vhostfdSize == 1) {
4019
                virBufferAsprintf(&buf, "vhostfd=%s,", vhostfd[0]);
4020 4021 4022 4023 4024 4025 4026
            } else {
                virBufferAddLit(&buf, "vhostfds=");
                for (i = 0; i < vhostfdSize; i++) {
                    if (i)
                        virBufferAddChar(&buf, ':');
                    virBufferAdd(&buf, vhostfd[i], -1);
                }
4027
                virBufferAddChar(&buf, ',');
4028 4029
            }
        }
4030
        if (net->tune.sndbuf_specified)
4031
            virBufferAsprintf(&buf, "sndbuf=%lu,", net->tune.sndbuf);
4032 4033
    }

4034

4035
    virBufferTrim(&buf, ",", -1);
4036
    if (virBufferCheckError(&buf) < 0)
4037
        goto cleanup;
4038

4039 4040 4041 4042
    ret = virBufferContentAndReset(&buf);
 cleanup:
    virBufferFreeAndReset(&buf);
    virObjectUnref(cfg);
4043
    VIR_FREE(addr);
4044
    return ret;
4045 4046 4047
}


M
Michal Privoznik 已提交
4048
char *
4049
qemuBuildWatchdogDevStr(const virDomainDef *def,
4050
                        virDomainWatchdogDefPtr dev,
4051
                        virQEMUCapsPtr qemuCaps)
4052 4053 4054 4055 4056
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    const char *model = virDomainWatchdogModelTypeToString(dev->model);
    if (!model) {
4057 4058
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing watchdog model"));
4059 4060 4061
        goto error;
    }

4062
    virBufferAsprintf(&buf, "%s,id=%s", model, dev->info.alias);
4063
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4064 4065
        goto error;

4066
    if (virBufferCheckError(&buf) < 0)
4067 4068 4069 4070
        goto error;

    return virBufferContentAndReset(&buf);

4071
 error:
4072 4073 4074 4075 4076
    virBufferFreeAndReset(&buf);
    return NULL;
}


4077 4078 4079 4080 4081 4082 4083 4084
static int
qemuBuildWatchdogCommandLine(virCommandPtr cmd,
                             const virDomainDef *def,
                             virQEMUCapsPtr qemuCaps)
{
    virDomainWatchdogDefPtr watchdog = def->watchdog;
    char *optstr;
    const char *action;
4085
    int actualAction;
4086 4087 4088 4089

    if (!def->watchdog)
        return 0;

4090 4091 4092
    if (qemuCommandAddExtDevice(cmd, &def->watchdog->info) < 0)
        return -1;

4093
    virCommandAddArg(cmd, "-device");
4094

4095 4096 4097
    optstr = qemuBuildWatchdogDevStr(def, watchdog, qemuCaps);
    if (!optstr)
        return -1;
4098 4099 4100 4101

    virCommandAddArg(cmd, optstr);
    VIR_FREE(optstr);

4102 4103 4104 4105
    /* qemu doesn't have a 'dump' action; we tell qemu to 'pause', then
       libvirt listens for the watchdog event, and we perform the dump
       ourselves. so convert 'dump' to 'pause' for the qemu cli */
    actualAction = watchdog->action;
4106
    if (watchdog->action == VIR_DOMAIN_WATCHDOG_ACTION_DUMP)
4107
        actualAction = VIR_DOMAIN_WATCHDOG_ACTION_PAUSE;
4108

4109
    action = virDomainWatchdogActionTypeToString(actualAction);
4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120
    if (!action) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("invalid watchdog action"));
        return -1;
    }
    virCommandAddArgList(cmd, "-watchdog-action", action, NULL);

    return 0;
}


4121 4122 4123 4124
static int
qemuBuildMemballoonCommandLine(virCommandPtr cmd,
                               const virDomainDef *def,
                               virQEMUCapsPtr qemuCaps)
4125 4126 4127
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4128
    if (!virDomainDefHasMemballoon(def))
4129 4130
        return 0;

4131
    if (qemuBuildVirtioDevStr(&buf, "virtio-balloon",
4132 4133
                              VIR_DOMAIN_DEVICE_MEMBALLOON,
                              def->memballoon) < 0) {
4134
        goto error;
4135 4136
    }

4137 4138
    virBufferAsprintf(&buf, ",id=%s", def->memballoon->info.alias);
    if (qemuBuildDeviceAddressStr(&buf, def, &def->memballoon->info, qemuCaps) < 0)
4139 4140
        goto error;

4141
    if (def->memballoon->autodeflate != VIR_TRISTATE_SWITCH_ABSENT) {
4142
        virBufferAsprintf(&buf, ",deflate-on-oom=%s",
4143
                          virTristateSwitchTypeToString(def->memballoon->autodeflate));
4144 4145
    }

4146 4147 4148
    if (qemuBuildVirtioOptionsStr(&buf, def->memballoon->virtio, qemuCaps) < 0)
        goto error;

4149 4150 4151
    if (qemuCommandAddExtDevice(cmd, &def->memballoon->info) < 0)
        goto error;

4152 4153 4154
    virCommandAddArg(cmd, "-device");
    virCommandAddArgBuffer(cmd, &buf);
    return 0;
4155

4156
 error:
4157
    virBufferFreeAndReset(&buf);
4158
    return -1;
4159 4160 4161
}


4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176
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;
    }

4177
    if (virBufferCheckError(&buf) < 0)
4178 4179 4180 4181
        goto error;

    return virBufferContentAndReset(&buf);

4182
 error:
4183 4184 4185
    virBufferFreeAndReset(&buf);
    return NULL;
}
4186

4187 4188 4189 4190 4191 4192 4193 4194 4195

static int
qemuBuildNVRAMCommandLine(virCommandPtr cmd,
                          const virDomainDef *def,
                          virQEMUCapsPtr qemuCaps)
{
    if (!def->nvram)
        return 0;

4196
    if (qemuDomainIsPSeries(def)) {
4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_NVRAM)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("nvram device is not supported by "
                             "this QEMU binary"));
            return -1;
        }

        char *optstr;
        virCommandAddArg(cmd, "-global");
        optstr = qemuBuildNVRAMDevStr(def->nvram);
        if (!optstr)
            return -1;
        if (optstr)
            virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);
    } else {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                      _("nvram device is only supported for PPC64"));
        return -1;
    }

    return 0;
}


4222
static char *
4223
qemuBuildVirtioInputDevStr(const virDomainDef *def,
4224 4225 4226 4227 4228
                           virDomainInputDefPtr dev,
                           virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4229
    switch ((virDomainInputType)dev->type) {
4230
    case VIR_DOMAIN_INPUT_TYPE_MOUSE:
4231 4232
        if (qemuBuildVirtioDevStr(&buf, "virtio-mouse",
                                  VIR_DOMAIN_DEVICE_INPUT, dev) < 0) {
4233
            goto error;
4234
        }
4235 4236
        break;
    case VIR_DOMAIN_INPUT_TYPE_TABLET:
4237 4238
        if (qemuBuildVirtioDevStr(&buf, "virtio-tablet",
                                  VIR_DOMAIN_DEVICE_INPUT, dev) < 0) {
4239
            goto error;
4240
        }
4241 4242
        break;
    case VIR_DOMAIN_INPUT_TYPE_KBD:
4243 4244
        if (qemuBuildVirtioDevStr(&buf, "virtio-keyboard",
                                  VIR_DOMAIN_DEVICE_INPUT, dev) < 0) {
4245
            goto error;
4246
        }
4247
        break;
4248
    case VIR_DOMAIN_INPUT_TYPE_PASSTHROUGH:
4249 4250
        if (qemuBuildVirtioDevStr(&buf, "virtio-input-host",
                                  VIR_DOMAIN_DEVICE_INPUT, dev) < 0) {
4251
            goto error;
4252
        }
4253
        break;
4254
    case VIR_DOMAIN_INPUT_TYPE_LAST:
4255 4256 4257
    default:
        virReportEnumRangeError(virDomainInputType, dev->type);
        goto error;
4258 4259
    }

4260 4261 4262 4263 4264 4265 4266
    virBufferAsprintf(&buf, ",id=%s", dev->info.alias);

    if (dev->type == VIR_DOMAIN_INPUT_TYPE_PASSTHROUGH) {
        virBufferAddLit(&buf, ",evdev=");
        virQEMUBuildBufferEscapeComma(&buf, dev->source.evdev);
    }

4267 4268 4269
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
        goto error;

4270 4271 4272
    if (qemuBuildVirtioOptionsStr(&buf, dev->virtio, qemuCaps) < 0)
        goto error;

4273 4274 4275 4276 4277 4278 4279 4280 4281 4282
    if (virBufferCheckError(&buf) < 0)
        goto error;

    return virBufferContentAndReset(&buf);

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

4283 4284
static char *
qemuBuildUSBInputDevStr(const virDomainDef *def,
4285
                        virDomainInputDefPtr dev,
4286
                        virQEMUCapsPtr qemuCaps)
4287 4288 4289
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4290 4291 4292 4293 4294 4295 4296 4297
    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:
4298 4299 4300 4301
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_KBD)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("usb keyboard is not supported by this "
                             "QEMU binary"));
4302
            goto error;
4303
        }
4304 4305 4306
        virBufferAsprintf(&buf, "usb-kbd,id=%s", dev->info.alias);
        break;
    }
4307

4308
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4309 4310
        goto error;

4311
    if (virBufferCheckError(&buf) < 0)
4312 4313 4314 4315
        goto error;

    return virBufferContentAndReset(&buf);

4316
 error:
4317 4318 4319 4320 4321
    virBufferFreeAndReset(&buf);
    return NULL;
}


J
Ján Tomko 已提交
4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342
int
qemuBuildInputDevStr(char **devstr,
                     const virDomainDef *def,
                     virDomainInputDefPtr input,
                     virQEMUCapsPtr qemuCaps)
{
    switch (input->bus) {
    case VIR_DOMAIN_INPUT_BUS_USB:
        if (!(*devstr = qemuBuildUSBInputDevStr(def, input, qemuCaps)))
            return -1;
        break;

    case VIR_DOMAIN_INPUT_BUS_VIRTIO:
        if (!(*devstr = qemuBuildVirtioInputDevStr(def, input, qemuCaps)))
            return -1;
        break;
    }
    return 0;
}


4343 4344 4345 4346 4347 4348 4349 4350 4351
static int
qemuBuildInputCommandLine(virCommandPtr cmd,
                          const virDomainDef *def,
                          virQEMUCapsPtr qemuCaps)
{
    size_t i;

    for (i = 0; i < def->ninputs; i++) {
        virDomainInputDefPtr input = def->inputs[i];
J
Ján Tomko 已提交
4352
        char *devstr = NULL;
4353

4354 4355 4356
        if (qemuCommandAddExtDevice(cmd, &input->info) < 0)
            return -1;

J
Ján Tomko 已提交
4357 4358 4359 4360
        if (qemuBuildInputDevStr(&devstr, def, input, qemuCaps) < 0)
            return -1;

        if (devstr) {
4361
            virCommandAddArg(cmd, "-device");
J
Ján Tomko 已提交
4362
            virCommandAddArg(cmd, devstr);
4363
        }
J
Ján Tomko 已提交
4364 4365

        VIR_FREE(devstr);
4366 4367 4368 4369 4370 4371
    }

    return 0;
}


4372 4373
static char *
qemuBuildSoundDevStr(const virDomainDef *def,
4374
                     virDomainSoundDefPtr sound,
4375
                     virQEMUCapsPtr qemuCaps)
4376 4377
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4378
    const char *model = NULL;
4379

4380
    /* Hack for devices with different names in QEMU and libvirt */
4381
    switch ((virDomainSoundModel) sound->model) {
4382
    case VIR_DOMAIN_SOUND_MODEL_ES1370:
4383
        model = "ES1370";
4384 4385
        break;
    case VIR_DOMAIN_SOUND_MODEL_AC97:
4386
        model = "AC97";
4387 4388
        break;
    case VIR_DOMAIN_SOUND_MODEL_ICH6:
4389
        model = "intel-hda";
4390
        break;
4391 4392 4393 4394 4395 4396 4397 4398 4399
    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;
4400 4401 4402 4403 4404 4405 4406 4407 4408
    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;
4409 4410 4411 4412 4413 4414 4415 4416 4417
    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;
4418
    }
4419

4420
    virBufferAsprintf(&buf, "%s,id=%s", model, sound->info.alias);
4421
    if (qemuBuildDeviceAddressStr(&buf, def, &sound->info, qemuCaps) < 0)
4422 4423
        goto error;

4424
    if (virBufferCheckError(&buf) < 0)
4425 4426 4427 4428
        goto error;

    return virBufferContentAndReset(&buf);

4429
 error:
4430 4431 4432 4433
    virBufferFreeAndReset(&buf);
    return NULL;
}

4434 4435 4436 4437 4438 4439 4440 4441 4442

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;
4443 4444
    case VIR_DOMAIN_SOUND_CODEC_TYPE_OUTPUT:
        return QEMU_CAPS_HDA_OUTPUT;
4445 4446 4447 4448 4449 4450
    default:
        return -1;
    }
}


4451 4452
static char *
qemuBuildSoundCodecStr(virDomainSoundDefPtr sound,
4453
                       virDomainSoundCodecDefPtr codec,
4454
                       virQEMUCapsPtr qemuCaps)
4455 4456
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4457
    const char *stype;
4458
    int type, flags;
4459

4460 4461
    type = codec->type;
    stype = qemuSoundCodecTypeToString(type);
4462
    flags = qemuSoundCodecTypeToCaps(type);
4463

4464
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
4465 4466
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), stype);
4467 4468 4469
        goto error;
    }

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

4473 4474
    return virBufferContentAndReset(&buf);

4475
 error:
4476 4477 4478
    virBufferFreeAndReset(&buf);
    return NULL;
}
4479

4480 4481 4482 4483 4484 4485 4486 4487

static int
qemuBuildSoundCommandLine(virCommandPtr cmd,
                          const virDomainDef *def,
                          virQEMUCapsPtr qemuCaps)
{
    size_t i, j;

4488 4489 4490
    for (i = 0; i < def->nsounds; i++) {
        virDomainSoundDefPtr sound = def->sounds[i];
        char *str = NULL;
4491

4492 4493 4494 4495 4496 4497
        /* 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 {
4498 4499 4500
            if (qemuCommandAddExtDevice(cmd, &sound->info) < 0)
                return -1;

4501 4502 4503
            virCommandAddArg(cmd, "-device");
            if (!(str = qemuBuildSoundDevStr(def, sound, qemuCaps)))
                return -1;
4504

4505 4506 4507 4508 4509
            virCommandAddArg(cmd, str);
            VIR_FREE(str);
            if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
                char *codecstr = NULL;
4510

4511 4512 4513 4514 4515 4516
                for (j = 0; j < sound->ncodecs; j++) {
                    virCommandAddArg(cmd, "-device");
                    if (!(codecstr =
                          qemuBuildSoundCodecStr(sound, sound->codecs[j],
                                                 qemuCaps))) {
                        return -1;
4517 4518

                    }
4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531
                    virCommandAddArg(cmd, codecstr);
                    VIR_FREE(codecstr);
                }
                if (j == 0) {
                    virDomainSoundCodecDef codec = {
                        VIR_DOMAIN_SOUND_CODEC_TYPE_DUPLEX,
                        0
                    };
                    virCommandAddArg(cmd, "-device");
                    if (!(codecstr =
                          qemuBuildSoundCodecStr(sound, &codec,
                                                 qemuCaps))) {
                        return -1;
4532 4533

                    }
4534 4535
                    virCommandAddArg(cmd, codecstr);
                    VIR_FREE(codecstr);
4536 4537 4538 4539 4540 4541 4542 4543 4544
                }
            }
        }
    }
    return 0;
}



4545
static char *
4546
qemuBuildDeviceVideoStr(const virDomainDef *def,
4547
                        virDomainVideoDefPtr video,
4548
                        virQEMUCapsPtr qemuCaps)
4549 4550
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4551
    const char *model;
4552

4553 4554 4555 4556 4557
    /* We try to chose the best model for primary video device by preferring
     * model with VGA compatibility mode.  For some video devices on some
     * architectures there might not be such model so fallback to one
     * without VGA compatibility mode. */
    if (video->primary && qemuDomainSupportsVideoVga(video, qemuCaps))
4558
        model = qemuDeviceVideoTypeToString(video->type);
4559 4560 4561 4562 4563 4564 4565 4566
    else
        model = qemuDeviceVideoSecondaryTypeToString(video->type);

    if (!model || STREQ(model, "")) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid model for video type '%s'"),
                       virDomainVideoTypeToString(video->type));
        goto error;
4567 4568
    }

4569
    if (STREQ(model, "virtio-gpu")) {
4570 4571
        if (qemuBuildVirtioDevStr(&buf, "virtio-gpu",
                                  VIR_DOMAIN_DEVICE_VIDEO, video) < 0) {
4572
            goto error;
4573
        }
4574 4575 4576 4577 4578
    } else {
        virBufferAsprintf(&buf, "%s", model);
    }

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

4580 4581 4582 4583 4584 4585
    if (video->accel && video->accel->accel3d == VIR_TRISTATE_SWITCH_ON) {
        virBufferAsprintf(&buf, ",virgl=%s",
                          virTristateSwitchTypeToString(video->accel->accel3d));
    }

    if (video->type == VIR_DOMAIN_VIDEO_TYPE_QXL) {
4586 4587 4588 4589
        if (video->ram) {
            /* QEMU accepts bytes for ram_size. */
            virBufferAsprintf(&buf, ",ram_size=%u", video->ram * 1024);
        }
4590

4591 4592 4593 4594
        if (video->vram) {
            /* QEMU accepts bytes for vram_size. */
            virBufferAsprintf(&buf, ",vram_size=%u", video->vram * 1024);
        }
4595

4596
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VRAM64)) {
4597 4598 4599 4600
            /* QEMU accepts mebibytes for vram64_size_mb. */
            virBufferAsprintf(&buf, ",vram64_size_mb=%u", video->vram64 / 1024);
        }

4601
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VGAMEM)) {
4602 4603 4604
            /* QEMU accepts mebibytes for vgamem_mb. */
            virBufferAsprintf(&buf, ",vgamem_mb=%u", video->vgamem / 1024);
        }
4605

4606
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_MAX_OUTPUTS)) {
4607 4608 4609
            if (video->heads)
                virBufferAsprintf(&buf, ",max_outputs=%u", video->heads);
        }
4610 4611 4612 4613 4614
    } else if (video->type == VIR_DOMAIN_VIDEO_TYPE_VIRTIO) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_GPU_MAX_OUTPUTS)) {
            if (video->heads)
                virBufferAsprintf(&buf, ",max_outputs=%u", video->heads);
        }
4615 4616 4617 4618 4619 4620 4621
    } else if (video->vram &&
        ((video->type == VIR_DOMAIN_VIDEO_TYPE_VGA &&
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_VGAMEM)) ||
         (video->type == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_VMWARE_SVGA_VGAMEM)))) {

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

4624
    if (qemuBuildDeviceAddressStr(&buf, def, &video->info, qemuCaps) < 0)
4625 4626
        goto error;

4627 4628 4629
    if (qemuBuildVirtioOptionsStr(&buf, video->virtio, qemuCaps) < 0)
        goto error;

4630
    if (virBufferCheckError(&buf) < 0)
4631 4632 4633 4634
        goto error;

    return virBufferContentAndReset(&buf);

4635
 error:
4636 4637 4638 4639 4640
    virBufferFreeAndReset(&buf);
    return NULL;
}


4641 4642
static int
qemuBuildVgaVideoCommand(virCommandPtr cmd,
4643
                         virDomainVideoDefPtr video,
4644 4645
                         virQEMUCapsPtr qemuCaps)
{
4646
    const char *vgastr = qemuVideoTypeToString(video->type);
4647 4648 4649
    if (!vgastr || STREQ(vgastr, "")) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid model for video type '%s'"),
4650
                       virDomainVideoTypeToString(video->type));
4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666
        return -1;
    }

    virCommandAddArgList(cmd, "-vga", vgastr, NULL);

    /* If we cannot use --device option to specify the video device
     * in QEMU we will fallback to the old --vga option. To get the
     * correct device name for the --vga option the 'qemuVideo' is
     * used, but to set some device attributes we need to use the
     * --global option and for that we need to specify the device
     * name the same as for --device option and for that we need to
     * use 'qemuDeviceVideo'.
     *
     * See 'Graphics Devices' section in docs/qdev-device-use.txt in
     * QEMU repository.
     */
4667
    const char *dev = qemuDeviceVideoTypeToString(video->type);
4668

4669 4670 4671 4672 4673 4674
    if (video->type == VIR_DOMAIN_VIDEO_TYPE_QXL &&
        (video->vram || video->ram)) {
        unsigned int ram = video->ram;
        unsigned int vram = video->vram;
        unsigned int vram64 = video->vram64;
        unsigned int vgamem = video->vgamem;
4675
        unsigned int heads = video->heads;
4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698

        if (ram) {
            virCommandAddArg(cmd, "-global");
            virCommandAddArgFormat(cmd, "%s.ram_size=%u",
                                   dev, ram * 1024);
        }
        if (vram) {
            virCommandAddArg(cmd, "-global");
            virCommandAddArgFormat(cmd, "%s.vram_size=%u",
                                   dev, vram * 1024);
        }
        if (vram64 &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VRAM64)) {
            virCommandAddArg(cmd, "-global");
            virCommandAddArgFormat(cmd, "%s.vram64_size_mb=%u",
                                   dev, vram64 / 1024);
        }
        if (vgamem &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VGAMEM)) {
            virCommandAddArg(cmd, "-global");
            virCommandAddArgFormat(cmd, "%s.vgamem_mb=%u",
                                   dev, vgamem / 1024);
        }
4699 4700 4701 4702 4703 4704
        if (heads &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_MAX_OUTPUTS)) {
            virCommandAddArg(cmd, "-global");
            virCommandAddArgFormat(cmd, "%s.max_outputs=%u",
                                   dev, heads);
        }
4705 4706
    }

4707 4708
    if (video->vram &&
        ((video->type == VIR_DOMAIN_VIDEO_TYPE_VGA &&
4709
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_VGAMEM)) ||
4710
         (video->type == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
4711
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_VMWARE_SVGA_VGAMEM)))) {
4712
        unsigned int vram = video->vram;
4713 4714 4715 4716 4717 4718 4719 4720 4721 4722

        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "%s.vgamem_mb=%u",
                               dev, vram / 1024);
    }

    return 0;
}


4723 4724 4725 4726 4727 4728 4729
static int
qemuBuildVideoCommandLine(virCommandPtr cmd,
                          const virDomainDef *def,
                          virQEMUCapsPtr qemuCaps)
{
    size_t i;

4730 4731 4732
    for (i = 0; i < def->nvideos; i++) {
        char *str = NULL;
        virDomainVideoDefPtr video = def->videos[i];
4733

4734 4735 4736
        if (video->type == VIR_DOMAIN_VIDEO_TYPE_NONE)
            continue;

4737 4738
        if (video->primary) {
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY)) {
4739

4740 4741 4742 4743
                if (qemuCommandAddExtDevice(cmd,
                                            &def->videos[i]->info) < 0)
                    return -1;

4744
                virCommandAddArg(cmd, "-device");
4745

4746 4747
                if (!(str = qemuBuildDeviceVideoStr(def, video, qemuCaps)))
                    return -1;
4748

4749 4750 4751 4752 4753 4754 4755
                virCommandAddArg(cmd, str);
                VIR_FREE(str);
            } else {
                if (qemuBuildVgaVideoCommand(cmd, video, qemuCaps) < 0)
                    return -1;
            }
        } else {
4756 4757 4758
            if (qemuCommandAddExtDevice(cmd, &def->videos[i]->info) < 0)
                return -1;

4759
            virCommandAddArg(cmd, "-device");
4760

4761
            if (!(str = qemuBuildDeviceVideoStr(def, video, qemuCaps)))
4762
                return -1;
4763 4764 4765

            virCommandAddArg(cmd, str);
            VIR_FREE(str);
4766 4767 4768 4769 4770 4771 4772
        }
    }

    return 0;
}


4773 4774 4775
int
qemuOpenPCIConfig(virDomainHostdevDefPtr dev)
{
4776
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
4777 4778 4779 4780
    char *path = NULL;
    int configfd = -1;

    if (virAsprintf(&path, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/config",
4781 4782
                    pcisrc->addr.domain, pcisrc->addr.bus,
                    pcisrc->addr.slot, pcisrc->addr.function) < 0)
4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795
        return -1;

    configfd = open(path, O_RDWR, 0);

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

    VIR_FREE(path);

    return configfd;
}

char *
4796
qemuBuildPCIHostdevDevStr(const virDomainDef *def,
4797
                          virDomainHostdevDefPtr dev,
4798
                          unsigned int bootIndex, /* used iff dev->info->bootIndex == 0 */
4799
                          const char *configfd,
4800
                          virQEMUCapsPtr qemuCaps)
4801 4802
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4803 4804
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
    int backend = pcisrc->backend;
4805

4806
    /* caller has to assign proper passthrough backend type */
4807
    switch ((virDomainHostdevSubsysPCIBackendType)backend) {
4808
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM:
4809 4810 4811
        virBufferAddLit(&buf, "pci-assign");
        if (configfd && *configfd)
            virBufferAsprintf(&buf, ",configfd=%s", configfd);
4812 4813 4814 4815 4816 4817
        break;

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

4818 4819 4820
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_DEFAULT:
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_XEN:
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_TYPE_LAST:
4821 4822
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid PCI passthrough type '%s'"),
4823
                       virDomainHostdevSubsysPCIBackendTypeToString(backend));
4824
        goto error;
4825
    }
4826

4827
    virBufferAddLit(&buf, ",host=");
4828
    if (pcisrc->addr.domain)
4829
        virBufferAsprintf(&buf, "%.4x:", pcisrc->addr.domain);
4830
    virBufferAsprintf(&buf, "%.2x:%.2x.%.1x",
4831 4832
                      pcisrc->addr.bus, pcisrc->addr.slot,
                      pcisrc->addr.function);
4833 4834
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
    if (dev->info->bootIndex)
4835 4836
        bootIndex = dev->info->bootIndex;
    if (bootIndex)
4837
        virBufferAsprintf(&buf, ",bootindex=%u", bootIndex);
4838
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
4839
        goto error;
4840
    if (qemuBuildRomStr(&buf, dev->info) < 0)
4841
        goto error;
4842

4843
    if (virBufferCheckError(&buf) < 0)
4844 4845 4846 4847
        goto error;

    return virBufferContentAndReset(&buf);

4848
 error:
4849 4850 4851 4852 4853 4854
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
4855
qemuBuildUSBHostdevDevStr(const virDomainDef *def,
4856
                          virDomainHostdevDefPtr dev,
4857
                          virQEMUCapsPtr qemuCaps)
4858
{
4859
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4860
    virDomainHostdevSubsysUSBPtr usbsrc = &dev->source.subsys.u.usb;
4861

4862
    if (!dev->missing && !usbsrc->bus && !usbsrc->device) {
4863 4864
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
4865 4866 4867
        return NULL;
    }

4868 4869 4870
    virBufferAddLit(&buf, "usb-host");
    if (!dev->missing) {
        virBufferAsprintf(&buf, ",hostbus=%d,hostaddr=%d",
4871
                          usbsrc->bus, usbsrc->device);
4872 4873
    }
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
4874
    if (dev->info->bootIndex)
4875
        virBufferAsprintf(&buf, ",bootindex=%u", dev->info->bootIndex);
4876

4877
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
4878 4879
        goto error;

4880
    if (virBufferCheckError(&buf) < 0)
4881
        goto error;
4882

4883 4884
    return virBufferContentAndReset(&buf);

4885
 error:
4886 4887
    virBufferFreeAndReset(&buf);
    return NULL;
4888 4889 4890
}


4891 4892
static char *
qemuBuildHubDevStr(const virDomainDef *def,
4893
                   virDomainHubDefPtr dev,
4894
                   virQEMUCapsPtr qemuCaps)
M
Marc-André Lureau 已提交
4895 4896 4897 4898
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (dev->type != VIR_DOMAIN_HUB_TYPE_USB) {
4899 4900 4901
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("hub type %s not supported"),
                       virDomainHubTypeToString(dev->type));
M
Marc-André Lureau 已提交
4902 4903 4904
        goto error;
    }

4905
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HUB)) {
4906
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
4907
                       _("usb-hub not supported by QEMU binary"));
M
Marc-André Lureau 已提交
4908 4909 4910 4911 4912
        goto error;
    }

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

4916
    if (virBufferCheckError(&buf) < 0)
M
Marc-André Lureau 已提交
4917 4918 4919 4920
        goto error;

    return virBufferContentAndReset(&buf);

4921
 error:
M
Marc-André Lureau 已提交
4922 4923 4924 4925 4926
    virBufferFreeAndReset(&buf);
    return NULL;
}


4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948
static int
qemuBuildHubCommandLine(virCommandPtr cmd,
                        const virDomainDef *def,
                        virQEMUCapsPtr qemuCaps)
{
    size_t i;

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

        virCommandAddArg(cmd, "-device");
        if (!(optstr = qemuBuildHubDevStr(def, hub, qemuCaps)))
            return -1;
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);
    }

    return 0;
}


4949
static char *
J
Ján Tomko 已提交
4950
qemuBuildSCSIHostHostdevDrvStr(virDomainHostdevDefPtr dev)
4951
{
4952
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;
4953
    virDomainHostdevSubsysSCSIHostPtr scsihostsrc = &scsisrc->u.host;
J
Ján Tomko 已提交
4954 4955 4956 4957 4958 4959

    return virSCSIDeviceGetSgName(NULL,
                                  scsihostsrc->adapter,
                                  scsihostsrc->bus,
                                  scsihostsrc->target,
                                  scsihostsrc->unit);
4960 4961 4962
}

static char *
4963 4964
qemuBuildSCSIiSCSIHostdevDrvStr(virDomainHostdevDefPtr dev,
                                virQEMUCapsPtr qemuCaps)
4965
{
4966
    char *ret = NULL;
4967
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4968
    char *netsource = NULL;
4969
    virJSONValuePtr srcprops = NULL;
4970 4971
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;
    virDomainHostdevSubsysSCSIiSCSIPtr iscsisrc = &scsisrc->u.iscsi;
4972 4973
    qemuDomainStorageSourcePrivatePtr srcPriv =
        QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(iscsisrc->src);
4974

4975 4976 4977 4978 4979
    if (qemuDiskSourceNeedsProps(iscsisrc->src, qemuCaps)) {
        if (!(srcprops = qemuDiskSourceGetProps(iscsisrc->src)))
            goto cleanup;
        if (!(netsource = virQEMUBuildDriveCommandlineFromJSON(srcprops)))
            goto cleanup;
4980
        virBufferAsprintf(&buf, "%s,if=none,format=raw", netsource);
4981 4982 4983 4984 4985
    } else {
        /* Rather than pull what we think we want - use the network disk code */
        if (!(netsource = qemuBuildNetworkDriveStr(iscsisrc->src, srcPriv ?
                                                   srcPriv->secinfo : NULL)))
            goto cleanup;
4986 4987 4988
        virBufferAddLit(&buf, "file=");
        virQEMUBuildBufferEscapeComma(&buf, netsource);
        virBufferAddLit(&buf, ",if=none,format=raw");
4989
    }
4990

4991 4992 4993
    if (virBufferCheckError(&buf) < 0)
        goto cleanup;

4994
    ret = virBufferContentAndReset(&buf);
4995

4996 4997
 cleanup:
    VIR_FREE(netsource);
4998
    virJSONValueFree(srcprops);
4999
    virBufferFreeAndReset(&buf);
5000
    return ret;
5001 5002
}

5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017
char *
qemuBuildSCSIVHostHostdevDevStr(const virDomainDef *def,
                           virDomainHostdevDefPtr dev,
                           virQEMUCapsPtr qemuCaps,
                           char *vhostfdName)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    virDomainHostdevSubsysSCSIVHostPtr hostsrc = &dev->source.subsys.u.scsi_host;

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VHOST_SCSI)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("This QEMU doesn't support vhost-scsi devices"));
        goto cleanup;
    }

5018 5019
    if (qemuBuildVirtioDevStr(&buf, "vhost-scsi",
                              VIR_DOMAIN_DEVICE_HOSTDEV, dev) < 0) {
5020
        goto cleanup;
5021
    }
5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040

    virBufferAsprintf(&buf, ",wwpn=%s,vhostfd=%s,id=%s",
                      hostsrc->wwpn,
                      vhostfdName,
                      dev->info->alias);

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

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

    return virBufferContentAndReset(&buf);

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

5041
char *
5042 5043
qemuBuildSCSIHostdevDrvStr(virDomainHostdevDefPtr dev,
                           virQEMUCapsPtr qemuCaps)
5044 5045 5046
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *source = NULL;
J
John Ferlan 已提交
5047
    char *drivealias = NULL;
5048 5049 5050
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;

    if (scsisrc->protocol == VIR_DOMAIN_HOSTDEV_SCSI_PROTOCOL_TYPE_ISCSI) {
5051
        if (!(source = qemuBuildSCSIiSCSIHostdevDrvStr(dev, qemuCaps)))
5052
            goto error;
5053
        virBufferAdd(&buf, source, -1);
5054
    } else {
J
Ján Tomko 已提交
5055
        if (!(source = qemuBuildSCSIHostHostdevDrvStr(dev)))
5056
            goto error;
5057
        virBufferAsprintf(&buf, "file=/dev/%s,if=none,format=raw", source);
5058
    }
J
John Ferlan 已提交
5059 5060 5061 5062 5063 5064
    VIR_FREE(source);

    if (!(drivealias = qemuAliasFromHostdev(dev)))
        goto error;
    virBufferAsprintf(&buf, ",id=%s", drivealias);
    VIR_FREE(drivealias);
5065

5066 5067
    if (dev->readonly)
        virBufferAddLit(&buf, ",readonly=on");
O
Osier Yang 已提交
5068

5069
    if (virBufferCheckError(&buf) < 0)
5070 5071 5072
        goto error;

    return virBufferContentAndReset(&buf);
5073
 error:
5074 5075 5076 5077 5078
    virBufferFreeAndReset(&buf);
    return NULL;
}

char *
5079
qemuBuildSCSIHostdevDevStr(const virDomainDef *def,
5080
                           virDomainHostdevDefPtr dev)
5081 5082 5083
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int model = -1;
J
John Ferlan 已提交
5084
    char *driveAlias;
5085
    const char *contAlias;
5086

5087
    model = qemuDomainFindSCSIControllerModel(def, dev->info);
5088
    if (model < 0)
5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108
        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");

5109 5110 5111 5112
    if (!(contAlias = virDomainControllerAliasFind(def, VIR_DOMAIN_CONTROLLER_TYPE_SCSI,
                                                   dev->info->addr.drive.controller)))
        goto error;

5113
    if (model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
5114 5115
        virBufferAsprintf(&buf, ",bus=%s.%d,scsi-id=%d",
                          contAlias,
5116 5117 5118
                          dev->info->addr.drive.bus,
                          dev->info->addr.drive.unit);
    } else {
5119 5120
        virBufferAsprintf(&buf, ",bus=%s.0,channel=%d,scsi-id=%d,lun=%d",
                          contAlias,
5121 5122 5123 5124
                          dev->info->addr.drive.bus,
                          dev->info->addr.drive.target,
                          dev->info->addr.drive.unit);
    }
5125

J
John Ferlan 已提交
5126 5127 5128 5129
    if (!(driveAlias = qemuAliasFromHostdev(dev)))
        goto error;
    virBufferAsprintf(&buf, ",drive=%s,id=%s", driveAlias, dev->info->alias);
    VIR_FREE(driveAlias);
5130

5131
    if (dev->info->bootIndex)
5132
        virBufferAsprintf(&buf, ",bootindex=%u", dev->info->bootIndex);
5133

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

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

5143 5144 5145
static int
qemuBuildChrChardevFileStr(virLogManagerPtr logManager,
                           virCommandPtr cmd,
5146
                           const virDomainDef *def,
5147 5148 5149 5150 5151 5152 5153 5154 5155
                           virBufferPtr buf,
                           const char *filearg, const char *fileval,
                           const char *appendarg, int appendval)
{
    if (logManager) {
        char *fdset, *fdpath;
        int flags = 0;
        int logfd;

5156 5157
        if (appendval == VIR_TRISTATE_SWITCH_ABSENT ||
            appendval == VIR_TRISTATE_SWITCH_OFF)
5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182
            flags |= VIR_LOG_MANAGER_PROTOCOL_DOMAIN_OPEN_LOG_FILE_TRUNCATE;

        if ((logfd = virLogManagerDomainOpenLogFile(logManager,
                                                    "qemu",
                                                    def->uuid,
                                                    def->name,
                                                    fileval,
                                                    flags,
                                                    NULL, NULL)) < 0)
            return -1;

        virCommandPassFD(cmd, logfd, VIR_COMMAND_PASS_FD_CLOSE_PARENT);
        if (!(fdset = qemuVirCommandGetFDSet(cmd, logfd)))
            return -1;

        virCommandAddArg(cmd, "-add-fd");
        virCommandAddArg(cmd, fdset);
        VIR_FREE(fdset);

        if (!(fdpath = qemuVirCommandGetDevSet(cmd, logfd)))
            return -1;

        virBufferAsprintf(buf, ",%s=%s,%s=on", filearg, fdpath, appendarg);
        VIR_FREE(fdpath);
    } else {
5183 5184
        virBufferAsprintf(buf, ",%s=", filearg);
        virQEMUBuildBufferEscapeComma(buf, fileval);
5185 5186 5187 5188 5189 5190 5191 5192 5193
        if (appendval != VIR_TRISTATE_SWITCH_ABSENT) {
            virBufferAsprintf(buf, ",%s=%s", appendarg,
                              virTristateSwitchTypeToString(appendval));
        }
    }

    return 0;
}

5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206

static void
qemuBuildChrChardevReconnectStr(virBufferPtr buf,
                                const virDomainChrSourceReconnectDef *def)
{
    if (def->enabled == VIR_TRISTATE_BOOL_YES) {
        virBufferAsprintf(buf, ",reconnect=%u", def->timeout);
    } else if (def->enabled == VIR_TRISTATE_BOOL_NO) {
        virBufferAddLit(buf, ",reconnect=0");
    }
}


5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221
int
qemuOpenChrChardevUNIXSocket(const virDomainChrSourceDef *dev)
{
    struct sockaddr_un addr;
    socklen_t addrlen = sizeof(addr);
    int fd;

    if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to create UNIX socket"));
        goto error;
    }

    memset(&addr, 0, sizeof(addr));
    addr.sun_family = AF_UNIX;
5222
    if (virStrcpyStatic(addr.sun_path, dev->data.nix.path) < 0) {
5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("UNIX socket path '%s' too long"),
                       dev->data.nix.path);
        goto error;
    }

    if (unlink(dev->data.nix.path) < 0 && errno != ENOENT) {
        virReportSystemError(errno,
                             _("Unable to unlink %s"),
                             dev->data.nix.path);
        goto error;
    }

    if (bind(fd, (struct sockaddr *)&addr, addrlen) < 0) {
        virReportSystemError(errno,
                             _("Unable to bind to UNIX socket path '%s'"),
                             dev->data.nix.path);
        goto error;
    }

    if (listen(fd, 1) < 0) {
        virReportSystemError(errno,
                             _("Unable to listen to UNIX socket path '%s'"),
                             dev->data.nix.path);
        goto error;
    }

5250 5251 5252 5253 5254 5255
    /* We run QEMU with umask 0002. Compensate for the umask
     * libvirtd might be running under to get the same permission
     * QEMU would have. */
    if (virFileUpdatePerm(dev->data.nix.path, 0002, 0664) < 0)
        goto error;

5256 5257 5258 5259 5260 5261 5262
    return fd;

 error:
    VIR_FORCE_CLOSE(fd);
    return -1;
}

5263 5264 5265 5266

enum {
    QEMU_BUILD_CHARDEV_TCP_NOWAIT = (1 << 0),
    QEMU_BUILD_CHARDEV_FILE_LOGD  = (1 << 1),
5267
    QEMU_BUILD_CHARDEV_UNIX_FD_PASS = (1 << 2),
5268 5269
};

5270 5271
/* This function outputs a -chardev command line option which describes only the
 * host side of the character device */
5272
static char *
5273
qemuBuildChrChardevStr(virLogManagerPtr logManager,
5274
                       virSecurityManagerPtr secManager,
5275
                       virCommandPtr cmd,
5276
                       virQEMUDriverConfigPtr cfg,
5277
                       const virDomainDef *def,
5278
                       const virDomainChrSourceDef *dev,
5279
                       const char *alias,
5280
                       virQEMUCapsPtr qemuCaps,
5281
                       unsigned int flags)
5282
{
5283
    qemuDomainChrSourcePrivatePtr chrSourcePriv = QEMU_DOMAIN_CHR_SOURCE_PRIVATE(dev);
5284 5285
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    bool telnet;
5286
    char *charAlias = NULL;
5287
    char *ret = NULL;
5288 5289

    if (!(charAlias = qemuAliasChardevFromDevAlias(alias)))
5290
        goto cleanup;
5291

5292
    switch (dev->type) {
5293
    case VIR_DOMAIN_CHR_TYPE_NULL:
5294
        virBufferAsprintf(&buf, "null,id=%s", charAlias);
5295 5296 5297
        break;

    case VIR_DOMAIN_CHR_TYPE_VC:
5298
        virBufferAsprintf(&buf, "vc,id=%s", charAlias);
5299 5300 5301
        break;

    case VIR_DOMAIN_CHR_TYPE_PTY:
5302
        virBufferAsprintf(&buf, "pty,id=%s", charAlias);
5303 5304 5305
        break;

    case VIR_DOMAIN_CHR_TYPE_DEV:
5306
        virBufferAsprintf(&buf, "%s,id=%s,path=",
5307
                          STRPREFIX(alias, "parallel") ? "parport" : "tty",
5308 5309
                          charAlias);
        virQEMUBuildBufferEscapeComma(&buf, dev->data.file.path);
5310 5311 5312
        break;

    case VIR_DOMAIN_CHR_TYPE_FILE:
5313
        virBufferAsprintf(&buf, "file,id=%s", charAlias);
5314

5315 5316 5317 5318
        if (dev->data.file.append != VIR_TRISTATE_SWITCH_ABSENT &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_FILE_APPEND)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("append not supported in this QEMU binary"));
5319
            goto cleanup;
5320
        }
5321 5322
        if (qemuBuildChrChardevFileStr(flags & QEMU_BUILD_CHARDEV_FILE_LOGD ?
                                       logManager : NULL,
5323
                                       cmd, def, &buf,
5324 5325
                                       "path", dev->data.file.path,
                                       "append", dev->data.file.append) < 0)
5326
            goto cleanup;
5327 5328 5329
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
5330 5331
        virBufferAsprintf(&buf, "pipe,id=%s,path=", charAlias);
        virQEMUBuildBufferEscapeComma(&buf, dev->data.file.path);
5332 5333 5334
        break;

    case VIR_DOMAIN_CHR_TYPE_STDIO:
5335
        virBufferAsprintf(&buf, "stdio,id=%s", charAlias);
5336 5337
        break;

5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349
    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";

5350
        virBufferAsprintf(&buf,
5351
                          "udp,id=%s,host=%s,port=%s,localaddr=%s,"
5352
                          "localport=%s",
5353
                          charAlias,
5354
                          connectHost,
5355
                          dev->data.udp.connectService,
5356
                          bindHost, bindService);
5357
        break;
5358
    }
5359 5360
    case VIR_DOMAIN_CHR_TYPE_TCP:
        telnet = dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
5361
        virBufferAsprintf(&buf,
5362 5363
                          "socket,id=%s,host=%s,port=%s%s",
                          charAlias,
5364 5365
                          dev->data.tcp.host,
                          dev->data.tcp.service,
5366 5367
                          telnet ? ",telnet" : "");

5368 5369 5370 5371 5372
        if (dev->data.tcp.listen) {
            virBufferAddLit(&buf, ",server");
            if (flags & QEMU_BUILD_CHARDEV_TCP_NOWAIT)
                virBufferAddLit(&buf, ",nowait");
        }
5373

5374 5375
        qemuBuildChrChardevReconnectStr(&buf, &dev->data.tcp.reconnect);

5376
        if (dev->data.tcp.haveTLS == VIR_TRISTATE_BOOL_YES) {
J
John Ferlan 已提交
5377
            char *objalias = NULL;
5378
            const char *tlsCertEncSecAlias = NULL;
5379

5380 5381 5382 5383
            /* Add the secret object first if necessary. The
             * secinfo is added only to a TCP serial device during
             * qemuDomainSecretChardevPrepare. Subsequently called
             * functions can just check the config fields */
5384 5385 5386 5387 5388 5389 5390
            if (chrSourcePriv && chrSourcePriv->secinfo) {
                if (qemuBuildObjectSecretCommandLine(cmd,
                                                     chrSourcePriv->secinfo) < 0)
                    goto cleanup;

                tlsCertEncSecAlias = chrSourcePriv->secinfo->s.aes.alias;
            }
5391

5392 5393 5394
            if (!(objalias = qemuAliasTLSObjFromSrcAlias(charAlias)))
                goto cleanup;

J
John Ferlan 已提交
5395 5396 5397
            if (qemuBuildTLSx509CommandLine(cmd, cfg->chardevTLSx509certdir,
                                            dev->data.tcp.listen,
                                            cfg->chardevTLSx509verify,
5398
                                            tlsCertEncSecAlias,
5399 5400
                                            objalias, qemuCaps) < 0) {
                VIR_FREE(objalias);
5401
                goto cleanup;
5402
            }
5403

J
John Ferlan 已提交
5404 5405 5406
            virBufferAsprintf(&buf, ",tls-creds=%s", objalias);
            VIR_FREE(objalias);
        }
5407 5408 5409
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
5410
        virBufferAsprintf(&buf, "socket,id=%s", charAlias);
5411 5412
        if (dev->data.nix.listen &&
            (flags & QEMU_BUILD_CHARDEV_UNIX_FD_PASS) &&
5413
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_FD_PASS)) {
5414 5415
            if (qemuSecuritySetSocketLabel(secManager, (virDomainDefPtr)def) < 0)
                goto cleanup;
5416
            int fd = qemuOpenChrChardevUNIXSocket(dev);
5417 5418 5419 5420
            if (qemuSecurityClearSocketLabel(secManager, (virDomainDefPtr)def) < 0) {
                VIR_FORCE_CLOSE(fd);
                goto cleanup;
            }
5421 5422 5423
            if (fd < 0)
                goto cleanup;

5424
            virBufferAsprintf(&buf, ",fd=%d", fd);
5425 5426 5427

            virCommandPassFD(cmd, fd, VIR_COMMAND_PASS_FD_CLOSE_PARENT);
        } else {
5428
            virBufferAddLit(&buf, ",path=");
5429 5430
            virQEMUBuildBufferEscapeComma(&buf, dev->data.nix.path);
        }
5431 5432 5433 5434 5435
        if (dev->data.nix.listen) {
            virBufferAddLit(&buf, ",server");
            if (flags & QEMU_BUILD_CHARDEV_TCP_NOWAIT)
                virBufferAddLit(&buf, ",nowait");
        }
5436 5437

        qemuBuildChrChardevReconnectStr(&buf, &dev->data.nix.reconnect);
5438
        break;
5439 5440

    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
5441
        virBufferAsprintf(&buf, "spicevmc,id=%s,name=%s", charAlias,
E
Eric Blake 已提交
5442
                          virDomainChrSpicevmcTypeToString(dev->data.spicevmc));
5443 5444
        break;

5445
    case VIR_DOMAIN_CHR_TYPE_SPICEPORT:
5446
        virBufferAsprintf(&buf, "spiceport,id=%s,name=%s", charAlias,
5447 5448 5449
                          dev->data.spiceport.channel);
        break;

5450
    default:
5451 5452 5453
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported chardev '%s'"),
                       virDomainChrTypeToString(dev->type));
5454
        goto cleanup;
5455 5456
    }

5457 5458 5459 5460
    if (dev->logfile) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_LOGFILE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("logfile not supported in this QEMU binary"));
5461
            goto cleanup;
5462
        }
5463 5464 5465
        if (qemuBuildChrChardevFileStr(logManager, cmd, def, &buf,
                                       "logfile", dev->logfile,
                                       "logappend", dev->logappend) < 0)
5466
            goto cleanup;
5467 5468
    }

5469
    if (virBufferCheckError(&buf) < 0)
5470
        goto cleanup;
5471

5472 5473
    ret = virBufferContentAndReset(&buf);
 cleanup:
5474
    VIR_FREE(charAlias);
5475
    virBufferFreeAndReset(&buf);
5476
    return ret;
5477 5478
}

5479 5480 5481 5482 5483 5484 5485 5486
char *
qemuBuildHostdevMediatedDevStr(const virDomainDef *def,
                               virDomainHostdevDefPtr dev,
                               virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    virDomainHostdevSubsysMediatedDevPtr mdevsrc = &dev->source.subsys.u.mdev;
    char *ret = NULL;
5487
    char *mdevPath = NULL;
5488
    const char *dev_str = NULL;
5489 5490 5491

    if (!(mdevPath = virMediatedDeviceGetSysfsPath(mdevsrc->uuidstr)))
        goto cleanup;
5492

5493 5494 5495 5496 5497 5498
    dev_str = virMediatedDeviceModelTypeToString(mdevsrc->model);

    if (!dev_str)
        goto cleanup;

    virBufferAdd(&buf, dev_str, -1);
5499
    virBufferAsprintf(&buf, ",id=%s,sysfsdev=%s", dev->info->alias, mdevPath);
5500

5501 5502 5503 5504
    if (mdevsrc->display != VIR_TRISTATE_SWITCH_ABSENT)
        virBufferAsprintf(&buf, ",display=%s",
                          virTristateSwitchTypeToString(mdevsrc->display));

5505 5506 5507 5508 5509 5510 5511 5512 5513
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
        goto cleanup;

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

    ret = virBufferContentAndReset(&buf);

 cleanup:
5514
    VIR_FREE(mdevPath);
5515 5516 5517
    virBufferFreeAndReset(&buf);
    return ret;
}
5518

5519 5520 5521 5522
static int
qemuBuildHostdevCommandLine(virCommandPtr cmd,
                            const virDomainDef *def,
                            virQEMUCapsPtr qemuCaps,
5523
                            unsigned int *bootHostdevNet)
5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547
{
    size_t i;

    for (i = 0; i < def->nhostdevs; i++) {
        virDomainHostdevDefPtr hostdev = def->hostdevs[i];
        virDomainHostdevSubsysPtr subsys = &hostdev->source.subsys;
        char *devstr;

        if (hostdev->info->bootIndex) {
            if (hostdev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS ||
                (subsys->type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI &&
                 subsys->type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
                 subsys->type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("booting from assigned devices is only "
                                 "supported for PCI, USB and SCSI devices"));
                return -1;
            }
        }

        /* USB */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            subsys->type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {

5548 5549 5550 5551 5552 5553
            virCommandAddArg(cmd, "-device");
            if (!(devstr =
                  qemuBuildUSBHostdevDevStr(def, hostdev, qemuCaps)))
                return -1;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569
        }

        /* PCI */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            subsys->type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
            int backend = subsys->u.pci.backend;

            if (backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
                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"));
                    return -1;
                }
            }

5570 5571
            char *configfd_name = NULL;
            unsigned int bootIndex = hostdev->info->bootIndex;
5572

5573 5574 5575 5576 5577 5578 5579 5580
            /* bootNet will be non-0 if boot order was set and no other
             * net devices were encountered
             */
            if (hostdev->parent.type == VIR_DOMAIN_DEVICE_NET &&
                bootIndex == 0) {
                bootIndex = *bootHostdevNet;
                *bootHostdevNet = 0;
            }
5581
            if (backend != VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
5582
                int configfd = qemuOpenPCIConfig(hostdev);
5583

5584 5585 5586 5587
                if (configfd >= 0) {
                    if (virAsprintf(&configfd_name, "%d", configfd) < 0) {
                        VIR_FORCE_CLOSE(configfd);
                        return -1;
5588
                    }
5589 5590 5591

                    virCommandPassFD(cmd, configfd,
                                     VIR_COMMAND_PASS_FD_CLOSE_PARENT);
5592 5593
                }
            }
5594 5595 5596 5597

            if (qemuCommandAddExtDevice(cmd, hostdev->info) < 0)
                return -1;

5598 5599 5600 5601 5602 5603 5604 5605
            virCommandAddArg(cmd, "-device");
            devstr = qemuBuildPCIHostdevDevStr(def, hostdev, bootIndex,
                                               configfd_name, qemuCaps);
            VIR_FREE(configfd_name);
            if (!devstr)
                return -1;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
5606 5607 5608
        }

        /* SCSI */
5609
        if (virHostdevIsSCSIDevice(hostdev)) {
5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622
            virDomainHostdevSubsysSCSIPtr scsisrc =
                &hostdev->source.subsys.u.scsi;
            char *drvstr;

            if (scsisrc->protocol == VIR_DOMAIN_HOSTDEV_SCSI_PROTOCOL_TYPE_ISCSI) {
                virDomainHostdevSubsysSCSIiSCSIPtr iscsisrc =
                    &scsisrc->u.iscsi;
                qemuDomainStorageSourcePrivatePtr srcPriv =
                    QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(iscsisrc->src);

                if (qemuBuildDiskSecinfoCommandLine(cmd, srcPriv ?
                                                    srcPriv->secinfo :
                                                    NULL) < 0)
5623
                    return -1;
5624
            }
5625

5626 5627
            virCommandAddArg(cmd, "-drive");
            if (!(drvstr = qemuBuildSCSIHostdevDrvStr(hostdev, qemuCaps)))
5628
                return -1;
5629 5630 5631 5632 5633 5634 5635 5636
            virCommandAddArg(cmd, drvstr);
            VIR_FREE(drvstr);

            virCommandAddArg(cmd, "-device");
            if (!(devstr = qemuBuildSCSIHostdevDevStr(def, hostdev)))
                return -1;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
5637
        }
5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672

        /* SCSI_host */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            subsys->type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI_HOST) {
            if (hostdev->source.subsys.u.scsi_host.protocol ==
                VIR_DOMAIN_HOSTDEV_SUBSYS_SCSI_HOST_PROTOCOL_TYPE_VHOST) {
                char *vhostfdName = NULL;
                int vhostfd = -1;

                if (virSCSIVHostOpenVhostSCSI(&vhostfd) < 0)
                    return -1;

                if (virAsprintf(&vhostfdName, "%d", vhostfd) < 0) {
                    VIR_FORCE_CLOSE(vhostfd);
                    return -1;
                }

                virCommandPassFD(cmd, vhostfd,
                                 VIR_COMMAND_PASS_FD_CLOSE_PARENT);

                virCommandAddArg(cmd, "-device");
                if (!(devstr = qemuBuildSCSIVHostHostdevDevStr(def,
                                                               hostdev,
                                                               qemuCaps,
                                                               vhostfdName))) {
                    VIR_FREE(vhostfdName);
                    VIR_FORCE_CLOSE(vhostfd);
                    return -1;
                }
                virCommandAddArg(cmd, devstr);

                VIR_FREE(vhostfdName);
                VIR_FREE(devstr);
            }
        }
5673 5674

        /* MDEV */
5675
        if (virHostdevIsMdevDevice(hostdev)) {
5676 5677 5678
            virDomainHostdevSubsysMediatedDevPtr mdevsrc = &subsys->u.mdev;

            switch ((virMediatedDeviceModelType) mdevsrc->model) {
5679 5680 5681 5682 5683 5684 5685
            case VIR_MDEV_MODEL_TYPE_VFIO_PCI:
                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"));
                    return -1;
                }
5686

5687 5688 5689 5690 5691 5692 5693 5694 5695
                break;
            case VIR_MDEV_MODEL_TYPE_VFIO_CCW:
                if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VFIO_CCW)) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("VFIO CCW device assignment is not "
                                     "supported by this version of QEMU"));
                    return -1;
                }
                break;
B
Boris Fiuczynski 已提交
5696 5697 5698 5699 5700 5701 5702 5703
            case VIR_MDEV_MODEL_TYPE_VFIO_AP:
                if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VFIO_AP)) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("VFIO AP device assignment is not "
                                     "supported by this version of QEMU"));
                    return -1;
                }
                break;
5704
            case VIR_MDEV_MODEL_TYPE_LAST:
5705 5706 5707
            default:
                virReportEnumRangeError(virMediatedDeviceModelType,
                                        subsys->u.mdev.model);
5708 5709 5710 5711 5712 5713 5714 5715 5716 5717
                return -1;
            }

            virCommandAddArg(cmd, "-device");
            if (!(devstr =
                  qemuBuildHostdevMediatedDevStr(def, hostdev, qemuCaps)))
                return -1;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
        }
5718 5719 5720 5721 5722
    }

    return 0;
}

5723

5724
static int
5725
qemuBuildMonitorCommandLine(virLogManagerPtr logManager,
5726
                            virSecurityManagerPtr secManager,
5727
                            virCommandPtr cmd,
5728
                            virQEMUDriverConfigPtr cfg,
5729
                            virDomainDefPtr def,
5730
                            qemuDomainObjPrivatePtr priv)
5731 5732
{
    char *chrdev;
5733 5734
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
5735 5736
    if (priv->chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
5737

5738
    if (!priv->monConfig)
5739 5740
        return 0;

5741 5742
    if (!(chrdev = qemuBuildChrChardevStr(logManager, secManager,
                                          cmd, cfg, def,
5743
                                          priv->monConfig, "monitor",
5744
                                          priv->qemuCaps, cdevflags)))
5745 5746 5747 5748 5749 5750 5751 5752
        return -1;
    virCommandAddArg(cmd, "-chardev");
    virCommandAddArg(cmd, chrdev);
    VIR_FREE(chrdev);

    virCommandAddArg(cmd, "-mon");
    virCommandAddArgFormat(cmd,
                           "chardev=charmonitor,id=monitor,mode=%s",
5753
                           priv->monJSON ? "control" : "readline");
5754 5755 5756 5757 5758

    return 0;
}


5759
static char *
5760
qemuBuildVirtioSerialPortDevStr(const virDomainDef *def,
5761
                                virDomainChrDefPtr dev)
5762 5763
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5764 5765
    const char *contAlias;

5766 5767
    switch (dev->deviceType) {
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
5768
        virBufferAddLit(&buf, "virtconsole");
5769 5770
        break;
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
5771
        virBufferAddLit(&buf, "virtserialport");
5772 5773
        break;
    default:
5774 5775
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Cannot use virtio serial for parallel/serial devices"));
5776 5777
        return NULL;
    }
5778

5779
    if (dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
5780
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW &&
5781
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
5782
        /* Check it's a virtio-serial address */
5783
        if (dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_SERIAL) {
5784 5785
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("virtio serial device has invalid address type"));
5786 5787 5788
            goto error;
        }

5789 5790 5791 5792 5793 5794 5795
        contAlias = virDomainControllerAliasFind(def, VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL,
                                                 dev->info.addr.vioserial.controller);
        if (!contAlias)
            goto error;

        virBufferAsprintf(&buf, ",bus=%s.%d,nr=%d", contAlias,
                          dev->info.addr.vioserial.bus,
5796 5797 5798
                          dev->info.addr.vioserial.port);
    }

5799
    if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
5800
        dev->source->type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
5801 5802
        dev->target.name &&
        STRNEQ(dev->target.name, "com.redhat.spice.0")) {
5803 5804 5805
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported spicevmc target name '%s'"),
                       dev->target.name);
5806 5807
        goto error;
    }
5808

5809 5810 5811 5812 5813 5814 5815
    virBufferAsprintf(&buf, ",chardev=char%s,id=%s",
                      dev->info.alias, dev->info.alias);
    if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
        (dev->source->type == VIR_DOMAIN_CHR_TYPE_SPICEVMC ||
         dev->target.name)) {
        virBufferAsprintf(&buf, ",name=%s", dev->target.name
                          ? dev->target.name : "com.redhat.spice.0");
5816
    }
5817
    if (virBufferCheckError(&buf) < 0)
5818 5819 5820 5821
        goto error;

    return virBufferContentAndReset(&buf);

5822
 error:
5823 5824 5825 5826
    virBufferFreeAndReset(&buf);
    return NULL;
}

5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846
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);
5847
    if (virBufferCheckError(&buf) < 0)
5848 5849 5850 5851
        goto error;

    return virBufferContentAndReset(&buf);

5852
 error:
5853 5854 5855 5856
    virBufferFreeAndReset(&buf);
    return NULL;
}

5857 5858

static int
5859
qemuBuildRNGBackendChrdevStr(virLogManagerPtr logManager,
5860
                             virSecurityManagerPtr secManager,
5861
                             virCommandPtr cmd,
5862
                             virQEMUDriverConfigPtr cfg,
5863
                             const virDomainDef *def,
5864
                             virDomainRNGDefPtr rng,
5865
                             virQEMUCapsPtr qemuCaps,
5866 5867
                             char **chr,
                             bool chardevStdioLogd)
5868
{
5869 5870
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
5871 5872 5873

    *chr = NULL;

5874 5875
    if (chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
5876 5877 5878 5879 5880 5881 5882 5883

    switch ((virDomainRNGBackend) rng->backend) {
    case VIR_DOMAIN_RNG_BACKEND_RANDOM:
    case VIR_DOMAIN_RNG_BACKEND_LAST:
        /* no chardev backend is needed */
        return 0;

    case VIR_DOMAIN_RNG_BACKEND_EGD:
5884 5885
        if (!(*chr = qemuBuildChrChardevStr(logManager, secManager,
                                            cmd, cfg, def,
5886
                                            rng->source.chardev,
5887 5888
                                            rng->info.alias, qemuCaps,
                                            cdevflags)))
5889 5890 5891 5892 5893 5894 5895
            return -1;
    }

    return 0;
}


5896
int
5897 5898 5899 5900
qemuBuildRNGBackendProps(virDomainRNGDefPtr rng,
                         virQEMUCapsPtr qemuCaps,
                         virJSONValuePtr *props)
{
5901
    char *objAlias = NULL;
5902
    char *charBackendAlias = NULL;
5903 5904
    int ret = -1;

5905 5906 5907
    if (virAsprintf(&objAlias, "obj%s", rng->info.alias) < 0)
        goto cleanup;

5908
    switch ((virDomainRNGBackend) rng->backend) {
5909 5910 5911 5912
    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 "
5913
                             "backend"));
5914 5915 5916
            goto cleanup;
        }

5917 5918 5919
        if (qemuMonitorCreateObjectProps(props, "rng-random", objAlias,
                                         "s:filename", rng->source.file,
                                         NULL) < 0)
5920
            goto cleanup;
5921

5922 5923 5924
        break;

    case VIR_DOMAIN_RNG_BACKEND_EGD:
5925 5926 5927 5928 5929 5930 5931
        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;
        }

5932
        if (!(charBackendAlias = qemuAliasChardevFromDevAlias(rng->info.alias)))
5933 5934
            goto cleanup;

5935 5936 5937
        if (qemuMonitorCreateObjectProps(props, "rng-egd", objAlias,
                                         "s:chardev", charBackendAlias,
                                         NULL) < 0)
5938
            goto cleanup;
5939

5940 5941 5942
        break;

    case VIR_DOMAIN_RNG_BACKEND_LAST:
5943 5944 5945
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("unknown rng-random backend"));
        goto cleanup;
5946 5947 5948 5949
    }

    ret = 0;

5950
 cleanup:
5951
    VIR_FREE(objAlias);
5952 5953 5954 5955 5956
    VIR_FREE(charBackendAlias);
    return ret;
}


5957
char *
5958
qemuBuildRNGDevStr(const virDomainDef *def,
5959 5960
                   virDomainRNGDefPtr dev,
                   virQEMUCapsPtr qemuCaps)
5961 5962 5963
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

5964
    if (!qemuDomainCheckCCWS390AddressSupport(def, &dev->info, qemuCaps,
5965
                                              dev->source.file))
5966 5967
        goto error;

5968 5969
    if (qemuBuildVirtioDevStr(&buf, "virtio-rng",
                              VIR_DOMAIN_DEVICE_RNG, dev) < 0) {
5970
        goto error;
5971
    }
5972 5973 5974

    virBufferAsprintf(&buf, ",rng=obj%s,id=%s",
                      dev->info.alias, dev->info.alias);
5975

5976 5977 5978 5979 5980 5981 5982 5983
    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");
    }

5984 5985 5986
    if (qemuBuildVirtioOptionsStr(&buf, dev->virtio, qemuCaps) < 0)
        goto error;

5987
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
5988 5989 5990
        goto error;
    if (virBufferCheckError(&buf) < 0)
        goto error;
5991

5992
    return virBufferContentAndReset(&buf);
5993

5994
 error:
5995
    virBufferFreeAndReset(&buf);
5996
    return NULL;
5997 5998 5999
}


6000 6001
static int
qemuBuildRNGCommandLine(virLogManagerPtr logManager,
6002
                        virSecurityManagerPtr secManager,
6003
                        virCommandPtr cmd,
6004
                        virQEMUDriverConfigPtr cfg,
6005
                        const virDomainDef *def,
6006 6007
                        virQEMUCapsPtr qemuCaps,
                        bool chardevStdioLogd)
6008 6009 6010 6011
{
    size_t i;

    for (i = 0; i < def->nrngs; i++) {
6012 6013
        virJSONValuePtr props;
        virBuffer buf = VIR_BUFFER_INITIALIZER;
6014 6015
        virDomainRNGDefPtr rng = def->rngs[i];
        char *tmp;
6016
        int rc;
6017 6018 6019 6020 6021 6022 6023 6024

        if (!rng->info.alias) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("RNG device is missing alias"));
            return -1;
        }

        /* possibly add character device for backend */
6025
        if (qemuBuildRNGBackendChrdevStr(logManager, secManager, cmd, cfg, def,
6026 6027
                                         rng, qemuCaps, &tmp,
                                         chardevStdioLogd) < 0)
6028 6029 6030 6031 6032 6033 6034
            return -1;

        if (tmp) {
            virCommandAddArgList(cmd, "-chardev", tmp, NULL);
            VIR_FREE(tmp);
        }

6035
        if (qemuBuildRNGBackendProps(rng, qemuCaps, &props) < 0)
6036 6037
            return -1;

6038 6039 6040 6041 6042 6043 6044 6045
        rc = virQEMUBuildObjectCommandlineFromJSON(&buf, props);
        virJSONValueFree(props);

        if (rc < 0)
            return -1;

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

        /* add the device */
6048 6049 6050
        if (qemuCommandAddExtDevice(cmd, &rng->info) < 0)
            return -1;

6051 6052 6053 6054 6055 6056 6057 6058 6059 6060
        if (!(tmp = qemuBuildRNGDevStr(def, rng, qemuCaps)))
            return -1;
        virCommandAddArgList(cmd, "-device", tmp, NULL);
        VIR_FREE(tmp);
    }

    return 0;
}


6061 6062
static char *
qemuBuildSmbiosBiosStr(virSysinfoBIOSDefPtr def)
6063 6064 6065
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

6066
    if (!def)
6067
        return NULL;
6068 6069 6070 6071

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

    /* 0:Vendor */
6072 6073 6074 6075
    if (def->vendor) {
        virBufferAddLit(&buf, ",vendor=");
        virQEMUBuildBufferEscapeComma(&buf, def->vendor);
    }
6076
    /* 0:BIOS Version */
6077 6078 6079 6080
    if (def->version) {
        virBufferAddLit(&buf, ",version=");
        virQEMUBuildBufferEscapeComma(&buf, def->version);
    }
6081
    /* 0:BIOS Release Date */
6082 6083 6084 6085
    if (def->date) {
        virBufferAddLit(&buf, ",date=");
        virQEMUBuildBufferEscapeComma(&buf, def->date);
    }
6086
    /* 0:System BIOS Major Release and 0:System BIOS Minor Release */
6087 6088 6089 6090
    if (def->release) {
        virBufferAddLit(&buf, ",release=");
        virQEMUBuildBufferEscapeComma(&buf, def->release);
    }
6091 6092 6093 6094

    return virBufferContentAndReset(&buf);
}

6095 6096 6097 6098

static char *
qemuBuildSmbiosSystemStr(virSysinfoSystemDefPtr def,
                         bool skip_uuid)
6099 6100 6101
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

6102 6103 6104 6105
    if (!def ||
        (!def->manufacturer && !def->product && !def->version &&
         !def->serial && (!def->uuid || skip_uuid) &&
         def->sku && !def->family))
6106 6107 6108 6109 6110
        return NULL;

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

    /* 1:Manufacturer */
6111 6112 6113 6114
    if (def->manufacturer) {
        virBufferAddLit(&buf, ",manufacturer=");
        virQEMUBuildBufferEscapeComma(&buf, def->manufacturer);
    }
6115
     /* 1:Product Name */
6116 6117 6118 6119
    if (def->product) {
        virBufferAddLit(&buf, ",product=");
        virQEMUBuildBufferEscapeComma(&buf, def->product);
    }
6120
    /* 1:Version */
6121 6122 6123 6124
    if (def->version) {
        virBufferAddLit(&buf, ",version=");
        virQEMUBuildBufferEscapeComma(&buf, def->version);
    }
6125
    /* 1:Serial Number */
6126 6127 6128 6129
    if (def->serial) {
        virBufferAddLit(&buf, ",serial=");
        virQEMUBuildBufferEscapeComma(&buf, def->serial);
    }
6130
    /* 1:UUID */
6131 6132 6133 6134
    if (def->uuid && !skip_uuid) {
        virBufferAddLit(&buf, ",uuid=");
        virQEMUBuildBufferEscapeComma(&buf, def->uuid);
    }
6135
    /* 1:SKU Number */
6136 6137 6138 6139
    if (def->sku) {
        virBufferAddLit(&buf, ",sku=");
        virQEMUBuildBufferEscapeComma(&buf, def->sku);
    }
6140
    /* 1:Family */
6141 6142 6143 6144
    if (def->family) {
        virBufferAddLit(&buf, ",family=");
        virQEMUBuildBufferEscapeComma(&buf, def->family);
    }
6145 6146 6147 6148

    return virBufferContentAndReset(&buf);
}

6149 6150 6151

static char *
qemuBuildSmbiosBaseBoardStr(virSysinfoBaseBoardDefPtr def)
6152 6153 6154 6155 6156 6157 6158 6159 6160
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (!def)
        return NULL;

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

    /* 2:Manufacturer */
6161 6162
    virBufferAddLit(&buf, ",manufacturer=");
    virQEMUBuildBufferEscapeComma(&buf, def->manufacturer);
6163
    /* 2:Product Name */
6164 6165 6166 6167
    if (def->product) {
        virBufferAddLit(&buf, ",product=");
        virQEMUBuildBufferEscapeComma(&buf, def->product);
    }
6168
    /* 2:Version */
6169 6170 6171 6172
    if (def->version) {
        virBufferAddLit(&buf, ",version=");
        virQEMUBuildBufferEscapeComma(&buf, def->version);
    }
6173
    /* 2:Serial Number */
6174 6175 6176 6177
    if (def->serial) {
        virBufferAddLit(&buf, ",serial=");
        virQEMUBuildBufferEscapeComma(&buf, def->serial);
    }
6178
    /* 2:Asset Tag */
6179 6180 6181 6182
    if (def->asset) {
        virBufferAddLit(&buf, ",asset=");
        virQEMUBuildBufferEscapeComma(&buf, def->asset);
    }
6183
    /* 2:Location */
6184 6185 6186 6187
    if (def->location) {
        virBufferAddLit(&buf, ",location=");
        virQEMUBuildBufferEscapeComma(&buf, def->location);
    }
6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198

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

    return virBufferContentAndReset(&buf);

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

6199

6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219
static char *
qemuBuildSmbiosOEMStringsStr(virSysinfoOEMStringsDefPtr def)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    size_t i;

    if (!def)
        return NULL;

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

    for (i = 0; i < def->nvalues; i++) {
        virBufferAddLit(&buf, ",value=");
        virQEMUBuildBufferEscapeComma(&buf, def->values[i]);
    }

    return virBufferContentAndReset(&buf);
}


6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264
static char *
qemuBuildSmbiosChassisStr(virSysinfoChassisDefPtr def)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (!def)
        return NULL;

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

    /* 3:Manufacturer */
    virBufferAddLit(&buf, ",manufacturer=");
    virQEMUBuildBufferEscapeComma(&buf, def->manufacturer);
    /* 3:Version */
    if (def->version) {
        virBufferAddLit(&buf, ",version=");
        virQEMUBuildBufferEscapeComma(&buf, def->version);
    }
    /* 3:Serial Number */
    if (def->serial) {
        virBufferAddLit(&buf, ",serial=");
        virQEMUBuildBufferEscapeComma(&buf, def->serial);
    }
    /* 3:Asset Tag */
    if (def->asset) {
        virBufferAddLit(&buf, ",asset=");
        virQEMUBuildBufferEscapeComma(&buf, def->asset);
    }
    /* 3:Sku */
    if (def->sku) {
        virBufferAddLit(&buf, ",sku=");
        virQEMUBuildBufferEscapeComma(&buf, def->sku);
    }

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

    return virBufferContentAndReset(&buf);

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


6265 6266 6267
static int
qemuBuildSmbiosCommandLine(virCommandPtr cmd,
                           virQEMUDriverPtr driver,
6268
                           const virDomainDef *def)
6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326
{
    size_t i;
    virSysinfoDefPtr source = NULL;
    bool skip_uuid = false;

    if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_NONE ||
        def->os.smbios_mode == VIR_DOMAIN_SMBIOS_EMULATE)
        return 0;

    /* should we really error out or just warn in those cases ? */
    if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_HOST) {
        if (driver->hostsysinfo == NULL) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Host SMBIOS information is not available"));
            return -1;
        }
        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);
            return -1;
        }
        source = def->sysinfo;
        /* domain_conf guaranteed that system_uuid matches guest uuid. */
    }
    if (source != NULL) {
        char *smbioscmd;

        smbioscmd = qemuBuildSmbiosBiosStr(source->bios);
        if (smbioscmd != NULL) {
            virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
            VIR_FREE(smbioscmd);
        }
        smbioscmd = qemuBuildSmbiosSystemStr(source->system, skip_uuid);
        if (smbioscmd != NULL) {
            virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
            VIR_FREE(smbioscmd);
        }

        if (source->nbaseBoard > 1) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("qemu does not support more than "
                             "one entry to Type 2 in SMBIOS table"));
            return -1;
        }

        for (i = 0; i < source->nbaseBoard; i++) {
            if (!(smbioscmd =
                  qemuBuildSmbiosBaseBoardStr(source->baseBoard + i)))
                return -1;

            virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
            VIR_FREE(smbioscmd);
        }
6327

6328 6329 6330 6331 6332 6333
        smbioscmd = qemuBuildSmbiosChassisStr(source->chassis);
        if (smbioscmd != NULL) {
            virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
            VIR_FREE(smbioscmd);
        }

6334 6335 6336 6337 6338 6339 6340
        if (source->oemStrings) {
            if (!(smbioscmd = qemuBuildSmbiosOEMStringsStr(source->oemStrings)))
                return -1;

            virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
            VIR_FREE(smbioscmd);
        }
6341 6342 6343 6344 6345 6346
    }

    return 0;
}


6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374
static int
qemuBuildVMGenIDCommandLine(virCommandPtr cmd,
                            const virDomainDef *def,
                            virQEMUCapsPtr qemuCaps)
{
    virBuffer opts = VIR_BUFFER_INITIALIZER;
    char guid[VIR_UUID_STRING_BUFLEN];

    if (!def->genidRequested)
        return 0;

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VMGENID)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                      _("this QEMU does not support the 'genid' capability"));
        return -1;
    }

    virUUIDFormat(def->genid, guid);
    virBufferAsprintf(&opts, "vmgenid,guid=%s,id=vmgenid0", guid);

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

    virBufferFreeAndReset(&opts);
    return 0;
}


6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398
static int
qemuBuildSgaCommandLine(virCommandPtr cmd,
                        const virDomainDef *def,
                        virQEMUCapsPtr qemuCaps)
{
    /* Serial graphics adapter */
    if (def->os.bios.useserial == VIR_TRISTATE_BOOL_YES) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SGA)) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("qemu does not support SGA"));
            return -1;
        }
        if (!def->nserials) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("need at least one serial port to use SGA"));
            return -1;
        }
        virCommandAddArgList(cmd, "-device", "sga", NULL);
    }

    return 0;
}


6399 6400 6401
static char *
qemuBuildClockArgStr(virDomainClockDefPtr def)
{
6402
    size_t i;
6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418
    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;

6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437
        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;
6438
        }
6439

6440 6441 6442
        now += def->data.variable.adjustment;
        gmtime_r(&now, &nowbits);

6443 6444 6445 6446 6447 6448 6449 6450
        /* 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;

6451
        virBufferAsprintf(&buf, "base=%d-%02d-%02dT%02d:%02d:%02d",
6452 6453 6454 6455 6456 6457 6458 6459 6460
                          nowbits.tm_year + 1900,
                          nowbits.tm_mon + 1,
                          nowbits.tm_mday,
                          nowbits.tm_hour,
                          nowbits.tm_min,
                          nowbits.tm_sec);
    }   break;

    default:
6461 6462 6463
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported clock offset '%s'"),
                       virDomainClockOffsetTypeToString(def->offset));
6464 6465 6466
        goto error;
    }

6467 6468
    /* Look for an 'rtc' timer element, and add in appropriate
     * clock= and driftfix= */
6469 6470 6471 6472 6473 6474
    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:
6475 6476 6477
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer track '%s'"),
                               virDomainTimerTrackTypeToString(def->timers[i]->track));
6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498
                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:
6499 6500 6501
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->timers[i]->tickpolicy));
6502 6503 6504 6505 6506 6507
                goto error;
            }
            break; /* no need to check other timers - there is only one rtc */
        }
    }

6508
    if (virBufferCheckError(&buf) < 0)
6509 6510 6511 6512
        goto error;

    return virBufferContentAndReset(&buf);

6513
 error:
6514 6515 6516 6517
    virBufferFreeAndReset(&buf);
    return NULL;
}

6518 6519 6520 6521 6522 6523 6524 6525 6526 6527

/* NOTE: Building of commands can change def->clock->data.* values, so
 *       virDomainDef is not const here.
 */
static int
qemuBuildClockCommandLine(virCommandPtr cmd,
                          virDomainDefPtr def,
                          virQEMUCapsPtr qemuCaps)
{
    size_t i;
J
Ján Tomko 已提交
6528
    char *rtcopt;
6529

J
Ján Tomko 已提交
6530 6531 6532 6533 6534
    virCommandAddArg(cmd, "-rtc");
    if (!(rtcopt = qemuBuildClockArgStr(&def->clock)))
        return -1;
    virCommandAddArg(cmd, rtcopt);
    VIR_FREE(rtcopt);
6535 6536 6537 6538 6539 6540 6541

    if (def->clock.offset == VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE &&
        def->clock.data.timezone) {
        virCommandAddEnvPair(cmd, "TZ", def->clock.data.timezone);
    }

    for (i = 0; i < def->clock.ntimers; i++) {
6542
        switch ((virDomainTimerNameType)def->clock.timers[i]->name) {
6543 6544 6545 6546 6547 6548
        case VIR_DOMAIN_TIMER_NAME_PLATFORM:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported timer type (name) '%s'"),
                           virDomainTimerNameTypeToString(def->clock.timers[i]->name));
            return -1;

6549
        case VIR_DOMAIN_TIMER_NAME_TSC:
6550 6551 6552 6553 6554 6555 6556
        case VIR_DOMAIN_TIMER_NAME_KVMCLOCK:
        case VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK:
            /* Timers above are handled when building -cpu.  */
        case VIR_DOMAIN_TIMER_NAME_LAST:
            break;

        case VIR_DOMAIN_TIMER_NAME_RTC:
6557
            /* Already handled in qemuBuildClockArgStr */
6558 6559 6560 6561 6562 6563 6564
            break;

        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
J
Ján Tomko 已提交
6565
                   (kvm-pit), otherwise, the default is catchup. */
6566 6567
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY))
                    virCommandAddArgList(cmd, "-global",
6568
                                         "kvm-pit.lost_tick_policy=delay", NULL);
6569 6570
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
J
Ján Tomko 已提交
6571
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY)) {
6572 6573
                    /* do nothing - this is default for kvm-pit */
                } else {
J
Ján Tomko 已提交
6574
                    /* can't catchup if we don't have kvm-pit */
6575 6576 6577 6578 6579 6580 6581
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("unsupported pit tickpolicy '%s'"),
                                   virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
                    return -1;
                }
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_DISCARD:
6582 6583 6584 6585 6586 6587
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY))
                    virCommandAddArgList(cmd, "-global",
                                         "kvm-pit.lost_tick_policy=discard", NULL);
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_MERGE:
                /* no way to support this mode for pit in qemu */
6588 6589 6590 6591 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 6620 6621 6622
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported pit tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
                return -1;
            }
            break;

        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"! */

            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_HPET)) {
                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,
                                   "%s", _("hpet timer is not supported"));
                    return -1;
                }
            }
            break;
        }
    }

    return 0;
}


6623 6624 6625
static int
qemuBuildPMCommandLine(virCommandPtr cmd,
                       const virDomainDef *def,
6626
                       qemuDomainObjPrivatePtr priv)
6627
{
6628
    virQEMUCapsPtr qemuCaps = priv->qemuCaps;
6629 6630

    /* Only add -no-reboot option if each event destroys domain */
6631
    if (priv->allowReboot == VIR_TRISTATE_BOOL_NO)
6632 6633
        virCommandAddArg(cmd, "-no-reboot");

J
John Ferlan 已提交
6634
    if (qemuDomainIsUsingNoShutdown(priv))
6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648
        virCommandAddArg(cmd, "-no-shutdown");

    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_ACPI)) {
        if (def->features[VIR_DOMAIN_FEATURE_ACPI] != VIR_TRISTATE_SWITCH_ON)
            virCommandAddArg(cmd, "-no-acpi");
    }

    /* We fall back to PIIX4_PM even for q35, since it's what we did
       pre-q35-pm support. QEMU starts up fine (with a warning) if
       mixing PIIX PM and -M q35. Starting to reject things here
       could mean we refuse to start existing configs in the wild.*/
    if (def->pm.s3) {
        const char *pm_object = "PIIX4_PM";

6649
        if (qemuDomainIsQ35(def) &&
6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_ICH9_DISABLE_S3)) {
            pm_object = "ICH9-LPC";
        } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PIIX_DISABLE_S3)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("setting ACPI S3 not supported"));
            return -1;
        }

        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "%s.disable_s3=%d",
                               pm_object, def->pm.s3 == VIR_TRISTATE_BOOL_NO);
    }

    if (def->pm.s4) {
        const char *pm_object = "PIIX4_PM";

6666
        if (qemuDomainIsQ35(def) &&
6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_ICH9_DISABLE_S4)) {
            pm_object = "ICH9-LPC";
        } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PIIX_DISABLE_S4)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("setting ACPI S4 not supported"));
            return -1;
        }

        virCommandAddArg(cmd, "-global");
        virCommandAddArgFormat(cmd, "%s.disable_s4=%d",
                               pm_object, def->pm.s4 == VIR_TRISTATE_BOOL_NO);
    }

    return 0;
}


6684 6685 6686
static int
qemuBuildBootCommandLine(virCommandPtr cmd,
                         const virDomainDef *def,
6687
                         virQEMUCapsPtr qemuCaps)
6688 6689
{
    virBuffer boot_buf = VIR_BUFFER_INITIALIZER;
6690
    char *boot_opts_str = NULL;
6691 6692

    if (def->os.bootmenu) {
J
Ján Tomko 已提交
6693 6694 6695 6696
        if (def->os.bootmenu == VIR_TRISTATE_BOOL_YES)
            virBufferAddLit(&boot_buf, "menu=on,");
        else
            virBufferAddLit(&boot_buf, "menu=off,");
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 6728 6729 6730 6731
    }

    if (def->os.bios.rt_set) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_REBOOT_TIMEOUT)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("reboot timeout is not supported "
                             "by this QEMU binary"));
            goto error;
        }

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

    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"));
            goto error;
        }

        virBufferAsprintf(&boot_buf, "splash-time=%u,", def->os.bm_timeout);
    }

    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_STRICT))
        virBufferAddLit(&boot_buf, "strict=on,");

    virBufferTrim(&boot_buf, ",", -1);

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

    boot_opts_str = virBufferContentAndReset(&boot_buf);
6732
    if (boot_opts_str) {
6733
        virCommandAddArg(cmd, "-boot");
6734
        virCommandAddArg(cmd, boot_opts_str);
6735 6736 6737 6738 6739 6740 6741 6742 6743
    }
    VIR_FREE(boot_opts_str);

    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);
J
Ján Tomko 已提交
6744 6745
    if (def->os.dtb)
        virCommandAddArgList(cmd, "-dtb", def->os.dtb, NULL);
6746 6747 6748 6749
    if (def->os.slic_table) {
        virBuffer buf = VIR_BUFFER_INITIALIZER;
        virCommandAddArg(cmd, "-acpitable");
        virBufferAddLit(&buf, "sig=SLIC,file=");
6750
        virQEMUBuildBufferEscapeComma(&buf, def->os.slic_table);
6751 6752
        virCommandAddArgBuffer(cmd, &buf);
    }
6753 6754 6755 6756 6757 6758 6759 6760 6761 6762

    return 0;

 error:
    VIR_FREE(boot_opts_str);
    virBufferFreeAndReset(&boot_buf);
    return -1;
}


6763 6764 6765 6766 6767
static int
qemuBuildIOMMUCommandLine(virCommandPtr cmd,
                          const virDomainDef *def,
                          virQEMUCapsPtr qemuCaps)
{
6768 6769 6770 6771 6772
    virBuffer opts = VIR_BUFFER_INITIALIZER;
    const virDomainIOMMUDef *iommu = def->iommu;
    int ret = -1;

    if (!iommu)
6773 6774
        return 0;

6775 6776 6777 6778 6779 6780 6781 6782 6783
    switch (iommu->model) {
    case VIR_DOMAIN_IOMMU_MODEL_INTEL:
        if (iommu->intremap != VIR_TRISTATE_SWITCH_ABSENT &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_INTEL_IOMMU_INTREMAP)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("iommu: interrupt remapping is not supported "
                             "with this QEMU binary"));
            return -1;
        }
6784 6785 6786 6787 6788 6789 6790
        if (iommu->caching_mode != VIR_TRISTATE_SWITCH_ABSENT &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_INTEL_IOMMU_CACHING_MODE))  {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("iommu: caching mode is not supported "
                             "with this QEMU binary"));
            return -1;
        }
6791 6792 6793 6794 6795 6796 6797
        if (iommu->eim != VIR_TRISTATE_SWITCH_ABSENT &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_INTEL_IOMMU_EIM))  {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("iommu: eim is not supported "
                             "with this QEMU binary"));
            return -1;
        }
6798 6799 6800 6801 6802 6803 6804
        if (iommu->iotlb != VIR_TRISTATE_SWITCH_ABSENT &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_INTEL_IOMMU_DEVICE_IOTLB)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("iommu: device IOTLB is not supported "
                             "with this QEMU binary"));
            return -1;
        }
6805 6806 6807 6808 6809
        break;
    case VIR_DOMAIN_IOMMU_MODEL_LAST:
        break;
    }

6810 6811 6812
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_IOMMU))
        return 0; /* Already handled via -machine */

6813
    switch (iommu->model) {
6814 6815 6816 6817 6818
    case VIR_DOMAIN_IOMMU_MODEL_INTEL:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_INTEL_IOMMU)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("IOMMU device: '%s' is not supported with "
                             "this QEMU binary"),
6819
                           virDomainIOMMUModelTypeToString(iommu->model));
6820 6821
            return -1;
        }
6822
        if (!qemuDomainIsQ35(def)) {
6823 6824 6825
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("IOMMU device: '%s' is only supported with "
                             "Q35 machines"),
6826
                           virDomainIOMMUModelTypeToString(iommu->model));
6827 6828
            return -1;
        }
6829
        virBufferAddLit(&opts, "intel-iommu");
6830 6831 6832 6833
        if (iommu->intremap != VIR_TRISTATE_SWITCH_ABSENT) {
            virBufferAsprintf(&opts, ",intremap=%s",
                              virTristateSwitchTypeToString(iommu->intremap));
        }
6834 6835 6836 6837
        if (iommu->caching_mode != VIR_TRISTATE_SWITCH_ABSENT) {
            virBufferAsprintf(&opts, ",caching-mode=%s",
                              virTristateSwitchTypeToString(iommu->caching_mode));
        }
6838 6839 6840 6841
        if (iommu->eim != VIR_TRISTATE_SWITCH_ABSENT) {
            virBufferAsprintf(&opts, ",eim=%s",
                              virTristateSwitchTypeToString(iommu->eim));
        }
6842 6843 6844 6845
        if (iommu->iotlb != VIR_TRISTATE_SWITCH_ABSENT) {
            virBufferAsprintf(&opts, ",device-iotlb=%s",
                              virTristateSwitchTypeToString(iommu->iotlb));
        }
6846 6847 6848
    case VIR_DOMAIN_IOMMU_MODEL_LAST:
        break;
    }
6849 6850 6851 6852 6853 6854
    virCommandAddArg(cmd, "-device");
    virCommandAddArgBuffer(cmd, &opts);

    ret = 0;
    virBufferFreeAndReset(&opts);
    return ret;
6855 6856 6857
}


6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872
static int
qemuBuildGlobalControllerCommandLine(virCommandPtr cmd,
                                     const virDomainDef *def,
                                     virQEMUCapsPtr qemuCaps)
{
    size_t i;

    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;

6873
            switch (cont->model) {
6874 6875 6876
            case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
                hoststr = "i440FX-pcihost";
                cap = virQEMUCapsGet(qemuCaps, QEMU_CAPS_I440FX_PCI_HOLE64_SIZE);
6877
                machine = qemuDomainIsI440FX(def);
6878 6879 6880 6881 6882
                break;

            case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
                hoststr = "q35-pcihost";
                cap = virQEMUCapsGet(qemuCaps, QEMU_CAPS_Q35_PCI_HOLE64_SIZE);
6883
                machine = qemuDomainIsQ35(def);
6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915
                break;

            default:
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("64-bit PCI hole setting is only for root"
                                 " PCI controllers"));
                return -1;
            }

            if (!machine) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                             _("Setting the 64-bit PCI hole size is not "
                             "supported for machine '%s'"), def->os.machine);
                return -1;
            }
            if (!cap) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("64-bit PCI hole size setting is not supported "
                                 "with this QEMU binary"));
                return -1;
            }

            virCommandAddArg(cmd, "-global");
            virCommandAddArgFormat(cmd, "%s.pci-hole64-size=%luK", hoststr,
                                   cont->opts.pciopts.pcihole64size);
        }
    }

    return 0;
}


6916
static int
6917 6918 6919
qemuBuildCpuModelArgStr(virQEMUDriverPtr driver,
                        const virDomainDef *def,
                        virBufferPtr buf,
6920
                        virQEMUCapsPtr qemuCaps)
6921
{
6922 6923
    int ret = -1;
    size_t i;
6924
    virCapsPtr caps = NULL;
6925
    virCPUDefPtr cpu = def->cpu;
6926

6927 6928 6929
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

6930 6931
    switch ((virCPUMode) cpu->mode) {
    case VIR_CPU_MODE_HOST_PASSTHROUGH:
6932
        virBufferAddLit(buf, "host");
6933

6934
        if (def->os.arch == VIR_ARCH_ARMV7L &&
6935
            caps->host.arch == VIR_ARCH_AARCH64) {
6936 6937 6938 6939 6940 6941 6942 6943 6944
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CPU_AARCH64_OFF)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("QEMU binary does not support CPU "
                                 "host-passthrough for armv7l on "
                                 "aarch64 host"));
                goto cleanup;
            }
            virBufferAddLit(buf, ",aarch64=off");
        }
6945
        break;
6946

6947 6948 6949
    case VIR_CPU_MODE_HOST_MODEL:
        if (ARCH_IS_PPC64(def->os.arch)) {
            virBufferAddLit(buf, "host");
6950 6951 6952
            if (cpu->model &&
                !(qemuDomainIsPSeries(def) &&
                  virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_PSERIES_MAX_CPU_COMPAT))) {
6953
                virBufferAsprintf(buf, ",compat=%s", cpu->model);
6954
            }
6955
        } else {
6956 6957 6958
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unexpected host-model CPU for %s architecture"),
                           virArchToString(def->os.arch));
6959
            goto cleanup;
6960 6961
        }
        break;
6962

6963 6964 6965
    case VIR_CPU_MODE_CUSTOM:
        virBufferAdd(buf, cpu->model, -1);
        break;
6966

6967 6968 6969
    case VIR_CPU_MODE_LAST:
        break;
    }
6970

6971 6972 6973 6974 6975 6976 6977 6978
    if (ARCH_IS_S390(def->os.arch) && cpu->features &&
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_QUERY_CPU_MODEL_EXPANSION)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("CPU features not supported by hypervisor for %s "
                         "architecture"), virArchToString(def->os.arch));
        goto cleanup;
    }

6979 6980
    if (cpu->vendor_id)
        virBufferAsprintf(buf, ",vendor=%s", cpu->vendor_id);
6981

6982 6983 6984 6985
    for (i = 0; i < cpu->nfeatures; i++) {
        switch ((virCPUFeaturePolicy) cpu->features[i].policy) {
        case VIR_CPU_FEATURE_FORCE:
        case VIR_CPU_FEATURE_REQUIRE:
6986 6987 6988 6989
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_QUERY_CPU_MODEL_EXPANSION))
                virBufferAsprintf(buf, ",%s=on", cpu->features[i].name);
            else
                virBufferAsprintf(buf, ",+%s", cpu->features[i].name);
6990
            break;
6991

6992 6993
        case VIR_CPU_FEATURE_DISABLE:
        case VIR_CPU_FEATURE_FORBID:
6994 6995 6996 6997
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_QUERY_CPU_MODEL_EXPANSION))
                virBufferAsprintf(buf, ",%s=off", cpu->features[i].name);
            else
                virBufferAsprintf(buf, ",-%s", cpu->features[i].name);
6998
            break;
6999

7000 7001 7002
        case VIR_CPU_FEATURE_OPTIONAL:
        case VIR_CPU_FEATURE_LAST:
            break;
7003
        }
7004
    }
7005

7006
    ret = 0;
7007
 cleanup:
7008 7009 7010
    virObjectUnref(caps);
    return ret;
}
7011

7012
static int
7013 7014 7015
qemuBuildCpuCommandLine(virCommandPtr cmd,
                        virQEMUDriverPtr driver,
                        const virDomainDef *def,
7016
                        virQEMUCapsPtr qemuCaps)
7017
{
7018
    virArch hostarch = virArchFromHost();
7019
    char *cpu = NULL, *cpu_flags = NULL;
7020
    int ret = -1;
7021
    virBuffer cpu_buf = VIR_BUFFER_INITIALIZER;
7022 7023
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    size_t i;
7024

7025 7026
    if (def->cpu &&
        (def->cpu->mode != VIR_CPU_MODE_CUSTOM || def->cpu->model)) {
7027
        if (qemuBuildCpuModelArgStr(driver, def, &cpu_buf, qemuCaps) < 0)
7028
            goto cleanup;
7029
    } else {
7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041
        /*
         * 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
         */
7042
        if (def->os.arch == VIR_ARCH_I686 &&
7043
            ((hostarch == VIR_ARCH_X86_64 &&
J
John Ferlan 已提交
7044 7045
              strstr(def->emulator, "kvm")) ||
             strstr(def->emulator, "x86_64"))) {
7046
            virBufferAddLit(&cpu_buf, "qemu32");
7047 7048 7049
        }
    }

7050
    /* Handle paravirtual timers  */
7051
    for (i = 0; i < def->clock.ntimers; i++) {
7052 7053
        virDomainTimerDefPtr timer = def->clock.timers[i];

7054 7055
        if (timer->name == VIR_DOMAIN_TIMER_NAME_KVMCLOCK &&
            timer->present != -1) {
7056
            virBufferAsprintf(&buf, ",%ckvmclock",
7057 7058
                              timer->present ? '+' : '-');
        } else if (timer->name == VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK &&
7059
                   timer->present == 1) {
7060
            virBufferAddLit(&buf, ",hv_time");
7061 7062
        } else if (timer->name == VIR_DOMAIN_TIMER_NAME_TSC &&
                   timer->frequency > 0) {
7063
            virBufferAsprintf(&buf, ",tsc-frequency=%lu", timer->frequency);
7064
        }
7065 7066
    }

7067 7068
    if (def->apic_eoi) {
        char sign;
J
Ján Tomko 已提交
7069
        if (def->apic_eoi == VIR_TRISTATE_SWITCH_ON)
7070 7071 7072 7073
            sign = '+';
        else
            sign = '-';

7074
        virBufferAsprintf(&buf, ",%ckvm_pv_eoi", sign);
7075 7076
    }

7077 7078
    if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK]) {
        char sign;
7079 7080
        if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK] ==
            VIR_TRISTATE_SWITCH_ON)
7081 7082 7083 7084
            sign = '+';
        else
            sign = '-';

7085
        virBufferAsprintf(&buf, ",%ckvm_pv_unhalt", sign);
7086 7087
    }

J
Ján Tomko 已提交
7088
    if (def->features[VIR_DOMAIN_FEATURE_HYPERV] == VIR_TRISTATE_SWITCH_ON) {
7089
        for (i = 0; i < VIR_DOMAIN_HYPERV_LAST; i++) {
7090
            switch ((virDomainHyperv) i) {
7091
            case VIR_DOMAIN_HYPERV_RELAXED:
7092
            case VIR_DOMAIN_HYPERV_VAPIC:
7093 7094 7095 7096 7097
            case VIR_DOMAIN_HYPERV_VPINDEX:
            case VIR_DOMAIN_HYPERV_RUNTIME:
            case VIR_DOMAIN_HYPERV_SYNIC:
            case VIR_DOMAIN_HYPERV_STIMER:
            case VIR_DOMAIN_HYPERV_RESET:
7098
            case VIR_DOMAIN_HYPERV_FREQUENCIES:
7099
            case VIR_DOMAIN_HYPERV_REENLIGHTENMENT:
7100
            case VIR_DOMAIN_HYPERV_TLBFLUSH:
7101
            case VIR_DOMAIN_HYPERV_IPI:
7102
            case VIR_DOMAIN_HYPERV_EVMCS:
J
Ján Tomko 已提交
7103
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
7104 7105 7106 7107
                    virBufferAsprintf(&buf, ",hv_%s",
                                      virDomainHypervTypeToString(i));
                break;

7108
            case VIR_DOMAIN_HYPERV_SPINLOCKS:
J
Ján Tomko 已提交
7109
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
7110 7111
                    virBufferAsprintf(&buf, ",hv_spinlocks=0x%x",
                                      def->hyperv_spinlocks);
7112 7113
                break;

7114 7115 7116 7117 7118 7119
            case VIR_DOMAIN_HYPERV_VENDOR_ID:
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
                    virBufferAsprintf(&buf, ",hv_vendor_id=%s",
                                      def->hyperv_vendor_id);
                break;

7120
            /* coverity[dead_error_begin] */
7121 7122 7123 7124 7125 7126
            case VIR_DOMAIN_HYPERV_LAST:
                break;
            }
        }
    }

D
Dmitry Andreev 已提交
7127 7128 7129 7130 7131
    for (i = 0; i < def->npanics; i++) {
        if (def->panics[i]->model == VIR_DOMAIN_PANIC_MODEL_HYPERV) {
            virBufferAddLit(&buf, ",hv_crash");
            break;
        }
7132 7133
    }

7134 7135 7136 7137 7138 7139 7140 7141
    if (def->features[VIR_DOMAIN_FEATURE_KVM] == VIR_TRISTATE_SWITCH_ON) {
        for (i = 0; i < VIR_DOMAIN_KVM_LAST; i++) {
            switch ((virDomainKVM) i) {
            case VIR_DOMAIN_KVM_HIDDEN:
                if (def->kvm_features[i] == VIR_TRISTATE_SWITCH_ON)
                    virBufferAddLit(&buf, ",kvm=off");
                break;

J
John Ferlan 已提交
7142
            /* coverity[dead_error_begin] */
7143 7144 7145 7146 7147 7148
            case VIR_DOMAIN_KVM_LAST:
                break;
            }
        }
    }

7149 7150 7151 7152 7153 7154
    if (def->features[VIR_DOMAIN_FEATURE_PMU]) {
        virTristateSwitch pmu = def->features[VIR_DOMAIN_FEATURE_PMU];
        virBufferAsprintf(&buf, ",pmu=%s",
                          virTristateSwitchTypeToString(pmu));
    }

7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188
    if (def->cpu && def->cpu->cache) {
        virCPUCacheDefPtr cache = def->cpu->cache;
        bool hostOff = false;
        bool l3Off = false;

        switch (cache->mode) {
        case VIR_CPU_CACHE_MODE_EMULATE:
            virBufferAddLit(&buf, ",l3-cache=on");
            hostOff = true;
            break;

        case VIR_CPU_CACHE_MODE_PASSTHROUGH:
            virBufferAddLit(&buf, ",host-cache-info=on");
            l3Off = true;
            break;

        case VIR_CPU_CACHE_MODE_DISABLE:
            hostOff = l3Off = true;
            break;

        case VIR_CPU_CACHE_MODE_LAST:
            break;
        }

        if (hostOff &&
            def->cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_CPU_CACHE))
            virBufferAddLit(&buf, ",host-cache-info=off");

        if (l3Off &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_CPU_CACHE))
            virBufferAddLit(&buf, ",l3-cache=off");
    }

7189 7190
    if (virBufferCheckError(&cpu_buf) < 0)
        goto cleanup;
7191
    if (virBufferCheckError(&buf) < 0)
7192
        goto cleanup;
7193

7194 7195 7196 7197
    cpu = virBufferContentAndReset(&cpu_buf);
    cpu_flags = virBufferContentAndReset(&buf);

    if (cpu_flags && !cpu) {
7198 7199
        const char *default_model;

7200
        switch ((int)def->os.arch) {
7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214
        case VIR_ARCH_I686:
            default_model = "qemu32";
            break;
        case VIR_ARCH_X86_64:
            default_model = "qemu64";
            break;
        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("CPU flags requested but can't determine "
                             "default CPU for arch %s"),
                           virArchToString(def->os.arch));
            goto cleanup;
        }

7215 7216 7217
        if (VIR_STRDUP(cpu, default_model) < 0)
            goto cleanup;
    }
7218 7219

    if (cpu) {
7220 7221
        virCommandAddArg(cmd, "-cpu");
        virCommandAddArgFormat(cmd, "%s%s", cpu, cpu_flags ? cpu_flags : "");
7222
    }
7223 7224 7225

    ret = 0;

7226
 cleanup:
7227
    VIR_FREE(cpu);
7228
    VIR_FREE(cpu_flags);
7229
    virBufferFreeAndReset(&buf);
7230
    virBufferFreeAndReset(&cpu_buf);
7231 7232 7233
    return ret;
}

7234

7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267
static bool
qemuAppendKeyWrapMachineParm(virBuffer *buf, virQEMUCapsPtr qemuCaps,
                             int flag, const char *pname, int pstate)
{
    if (pstate != VIR_TRISTATE_SWITCH_ABSENT) {
        if (!virQEMUCapsGet(qemuCaps, flag)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("%s is not available with this QEMU binary"), pname);
            return false;
        }

        virBufferAsprintf(buf, ",%s=%s", pname,
                          virTristateSwitchTypeToString(pstate));
    }

    return true;
}

static bool
qemuAppendKeyWrapMachineParms(virBuffer *buf, virQEMUCapsPtr qemuCaps,
                              const virDomainKeyWrapDef *keywrap)
{
    if (!qemuAppendKeyWrapMachineParm(buf, qemuCaps, QEMU_CAPS_AES_KEY_WRAP,
                                      "aes-key-wrap", keywrap->aes))
        return false;

    if (!qemuAppendKeyWrapMachineParm(buf, qemuCaps, QEMU_CAPS_DEA_KEY_WRAP,
                                      "dea-key-wrap", keywrap->dea))
        return false;

    return true;
}

7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295

static void
qemuAppendLoadparmMachineParm(virBuffer *buf,
                              const virDomainDef *def)
{
    size_t i = 0;

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

        if (disk->info.bootIndex == 1 && disk->info.loadparm) {
            virBufferAsprintf(buf, ",loadparm=%s", disk->info.loadparm);
            return;
        }
    }

    /* Network boot device */
    for (i = 0; i < def->nnets; i++) {
        virDomainNetDefPtr net = def->nets[i];

        if (net->info.bootIndex == 1 && net->info.loadparm) {
            virBufferAsprintf(buf, ",loadparm=%s", net->info.loadparm);
            return;
        }
    }
}


M
Marc-André Lureau 已提交
7296 7297 7298 7299 7300 7301 7302 7303 7304 7305
static int
qemuBuildNameCommandLine(virCommandPtr cmd,
                         virQEMUDriverConfigPtr cfg,
                         const virDomainDef *def,
                         virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    virCommandAddArg(cmd, "-name");

7306 7307 7308 7309
    /* The 'guest' option let's us handle a name with '=' embedded in it */
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME_GUEST))
        virBufferAddLit(&buf, "guest=");

7310
    virQEMUBuildBufferEscapeComma(&buf, def->name);
M
Marc-André Lureau 已提交
7311

7312
    if (cfg->setProcessName)
M
Marc-André Lureau 已提交
7313 7314 7315 7316 7317 7318 7319 7320 7321 7322
        virBufferAsprintf(&buf, ",process=qemu:%s", def->name);

    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME_DEBUG_THREADS))
        virBufferAddLit(&buf, ",debug-threads=on");

    virCommandAddArgBuffer(cmd, &buf);

    return 0;
}

7323
static int
7324
qemuBuildMachineCommandLine(virCommandPtr cmd,
7325
                            virQEMUDriverConfigPtr cfg,
7326 7327
                            const virDomainDef *def,
                            virQEMUCapsPtr qemuCaps)
7328
{
7329 7330 7331
    virTristateSwitch vmport = def->features[VIR_DOMAIN_FEATURE_VMPORT];
    virTristateSwitch smm = def->features[VIR_DOMAIN_FEATURE_SMM];
    virCPUDefPtr cpu = def->cpu;
7332
    virBuffer buf = VIR_BUFFER_INITIALIZER;
M
Michal Privoznik 已提交
7333
    size_t i;
7334
    int ret = -1;
7335

7336 7337 7338 7339 7340 7341 7342
    /* 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;

7343 7344 7345
    virCommandAddArg(cmd, "-machine");
    virBufferAdd(&buf, def->os.machine, -1);

7346
    switch ((virDomainVirtType)def->virtType) {
7347
    case VIR_DOMAIN_VIRT_QEMU:
7348
        virBufferAddLit(&buf, ",accel=tcg");
7349 7350 7351
        break;

    case VIR_DOMAIN_VIRT_KVM:
7352
        virBufferAddLit(&buf, ",accel=kvm");
7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368
        break;

    case VIR_DOMAIN_VIRT_KQEMU:
    case VIR_DOMAIN_VIRT_XEN:
    case VIR_DOMAIN_VIRT_LXC:
    case VIR_DOMAIN_VIRT_UML:
    case VIR_DOMAIN_VIRT_OPENVZ:
    case VIR_DOMAIN_VIRT_TEST:
    case VIR_DOMAIN_VIRT_VMWARE:
    case VIR_DOMAIN_VIRT_HYPERV:
    case VIR_DOMAIN_VIRT_VBOX:
    case VIR_DOMAIN_VIRT_PHYP:
    case VIR_DOMAIN_VIRT_PARALLELS:
    case VIR_DOMAIN_VIRT_BHYVE:
    case VIR_DOMAIN_VIRT_VZ:
    case VIR_DOMAIN_VIRT_NONE:
7369 7370 7371 7372
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("the QEMU binary does not support %s"),
                       virDomainVirtTypeToString(def->virtType));
        return -1;
7373 7374 7375 7376 7377

    case VIR_DOMAIN_VIRT_LAST:
    default:
        virReportEnumRangeError(virDomainVirtType, def->virtType);
        return -1;
7378
    }
7379 7380 7381 7382

    /* To avoid the collision of creating USB controllers when calling
     * machine->init in QEMU, it needs to set usb=off
     */
7383
    virBufferAddLit(&buf, ",usb=off");
7384 7385 7386

    if (vmport) {
        if (!virQEMUCapsSupportsVmport(qemuCaps, def)) {
7387
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7388
                           _("vmport is not available "
7389
                             "with this QEMU binary"));
7390
            goto cleanup;
7391
        }
7392

7393 7394 7395 7396
        virBufferAsprintf(&buf, ",vmport=%s",
                          virTristateSwitchTypeToString(vmport));
    }

7397 7398
    if (smm)
        virBufferAsprintf(&buf, ",smm=%s", virTristateSwitchTypeToString(smm));
7399

7400 7401 7402
    if (def->mem.dump_core) {
        virBufferAsprintf(&buf, ",dump-guest-core=%s",
                          virTristateSwitchTypeToString(def->mem.dump_core));
7403
    } else {
7404 7405
        virBufferAsprintf(&buf, ",dump-guest-core=%s",
                          cfg->dumpGuestCore ? "on" : "off");
7406
    }
M
Michal Privoznik 已提交
7407

7408 7409 7410 7411 7412 7413
    if (def->mem.nosharepages) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MEM_MERGE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disable shared memory is not available "
                             "with this QEMU binary"));
            goto cleanup;
M
Michal Privoznik 已提交
7414
        }
7415

7416 7417
        virBufferAddLit(&buf, ",mem-merge=off");
    }
7418

7419 7420 7421
    if (def->keywrap &&
        !qemuAppendKeyWrapMachineParms(&buf, qemuCaps, def->keywrap))
        goto cleanup;
7422

7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438
    if (def->features[VIR_DOMAIN_FEATURE_GIC] == VIR_TRISTATE_SWITCH_ON) {
        bool hasGICVersionOption = virQEMUCapsGet(qemuCaps,
                                                  QEMU_CAPS_MACH_VIRT_GIC_VERSION);

        switch ((virGICVersion) def->gic_version) {
        case VIR_GIC_VERSION_2:
            if (!hasGICVersionOption) {
                /* If the gic-version option is not available, we can't
                 * configure the GIC; however, we know that before the
                 * option was introduced the guests would always get a
                 * GICv2, so in order to maintain compatibility with
                 * those old QEMU versions all we need to do is stop
                 * early instead of erroring out */
                break;
            }
            ATTRIBUTE_FALLTHROUGH;
L
Li Zhang 已提交
7439

7440 7441 7442
        case VIR_GIC_VERSION_3:
        case VIR_GIC_VERSION_HOST:
            if (!hasGICVersionOption) {
7443
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7444
                               _("gic-version option is not available "
7445
                                 "with this QEMU binary"));
7446
                goto cleanup;
7447 7448
            }

7449 7450 7451
            virBufferAsprintf(&buf, ",gic-version=%s",
                              virGICVersionTypeToString(def->gic_version));
            break;
M
Michal Privoznik 已提交
7452

7453 7454 7455 7456
        case VIR_GIC_VERSION_NONE:
        case VIR_GIC_VERSION_LAST:
        default:
            break;
M
Michal Privoznik 已提交
7457
        }
7458
    }
M
Michal Privoznik 已提交
7459

7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470
    /* We don't report errors on missing cap here - -device code will do that */
    if (def->iommu &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_IOMMU)) {
        switch (def->iommu->model) {
        case VIR_DOMAIN_IOMMU_MODEL_INTEL:
            if (!qemuDomainIsQ35(def)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("IOMMU device: '%s' is only supported with "
                                 "Q35 machines"),
                               virDomainIOMMUModelTypeToString(def->iommu->model));
                return -1;
7471
            }
7472 7473 7474 7475
            virBufferAddLit(&buf, ",iommu=on");
            break;
        case VIR_DOMAIN_IOMMU_MODEL_LAST:
            break;
7476
        }
7477
    }
7478

7479 7480 7481
    for (i = 0; i < def->nmems; i++) {
        if (def->mems[i]->model == VIR_DOMAIN_MEMORY_MODEL_NVDIMM) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_NVDIMM)) {
7482
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7483
                               _("nvdimm isn't supported by this QEMU binary"));
7484
                goto cleanup;
7485
            }
7486 7487
            virBufferAddLit(&buf, ",nvdimm=on");
            break;
7488
        }
7489
    }
7490

7491 7492 7493 7494 7495
    if (def->features[VIR_DOMAIN_FEATURE_IOAPIC] != VIR_DOMAIN_IOAPIC_NONE) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_KERNEL_IRQCHIP)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("I/O APIC tuning is not supported by this "
                             "QEMU binary"));
7496
            goto cleanup;
M
Michal Privoznik 已提交
7497
        }
7498 7499 7500
        switch ((virDomainIOAPIC) def->features[VIR_DOMAIN_FEATURE_IOAPIC]) {
        case VIR_DOMAIN_IOAPIC_QEMU:
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_KERNEL_IRQCHIP_SPLIT)) {
7501
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7502
                               _("split I/O APIC is not supported by this "
7503 7504 7505
                                 "QEMU binary"));
                goto cleanup;
            }
7506 7507 7508 7509 7510 7511 7512 7513
            virBufferAddLit(&buf, ",kernel_irqchip=split");
            break;
        case VIR_DOMAIN_IOAPIC_KVM:
            virBufferAddLit(&buf, ",kernel_irqchip=on");
            break;
        case VIR_DOMAIN_IOAPIC_NONE:
        case VIR_DOMAIN_IOAPIC_LAST:
            break;
7514
        }
7515
    }
7516

7517
    if (def->features[VIR_DOMAIN_FEATURE_HPT] == VIR_TRISTATE_SWITCH_ON) {
7518

7519 7520
        if (def->hpt_resizing != VIR_DOMAIN_HPT_RESIZING_NONE) {
            const char *str;
7521

7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_PSERIES_RESIZE_HPT)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("HTP resizing is not supported by this "
                                 "QEMU binary"));
                goto cleanup;
            }

            str = virDomainHPTResizingTypeToString(def->hpt_resizing);
            if (!str) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Invalid setting for HPT resizing"));
                goto cleanup;
            }
7535

7536 7537
            virBufferAsprintf(&buf, ",resize-hpt=%s", str);
        }
7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549

        if (def->hpt_maxpagesize > 0) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_PSERIES_CAP_HPT_MAX_PAGE_SIZE)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Configuring the page size for HPT guests "
                                 "is not supported by this QEMU binary"));
                goto cleanup;
            }

            virBufferAsprintf(&buf, ",cap-hpt-max-page-size=%lluk",
                              def->hpt_maxpagesize);
        }
7550
    }
7551

7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571
    if (def->features[VIR_DOMAIN_FEATURE_HTM] != VIR_TRISTATE_SWITCH_ABSENT) {
        const char *str;

        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_PSERIES_CAP_HTM)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("HTM configuration is not supported by this "
                             "QEMU binary"));
            goto cleanup;
        }

        str = virTristateSwitchTypeToString(def->features[VIR_DOMAIN_FEATURE_HTM]);
        if (!str) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Invalid setting for HTM state"));
            goto cleanup;
        }

        virBufferAsprintf(&buf, ",cap-htm=%s", str);
    }

7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591
    if (def->features[VIR_DOMAIN_FEATURE_NESTED_HV] != VIR_TRISTATE_SWITCH_ABSENT) {
        const char *str;

        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_PSERIES_CAP_NESTED_HV)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Nested HV configuration is not supported by "
                             "this QEMU binary"));
            goto cleanup;
        }

        str = virTristateSwitchTypeToString(def->features[VIR_DOMAIN_FEATURE_NESTED_HV]);
        if (!str) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Invalid setting for nested HV state"));
            goto cleanup;
        }

        virBufferAsprintf(&buf, ",cap-nested-hv=%s", str);
    }

7592 7593 7594 7595 7596
    if (cpu && cpu->model &&
        cpu->mode == VIR_CPU_MODE_HOST_MODEL &&
        qemuDomainIsPSeries(def) &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_PSERIES_MAX_CPU_COMPAT)) {
        virBufferAsprintf(&buf, ",max-cpu-compat=%s", cpu->model);
7597 7598
    }

7599
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_LOADPARM))
7600 7601
        qemuAppendLoadparmMachineParm(&buf, def);

7602 7603 7604
    if (def->sev)
        virBufferAddLit(&buf, ",memory-encryption=sev0");

7605 7606
    virCommandAddArgBuffer(cmd, &buf);

7607 7608 7609 7610
    ret = 0;
 cleanup:
    virBufferFreeAndReset(&buf);
    return ret;
7611 7612
}

7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628

static void
qemuBuildTSEGCommandLine(virCommandPtr cmd,
                         const virDomainDef *def)
{
    if (!def->tseg_specified)
        return;

    virCommandAddArg(cmd, "-global");

    /* PostParse callback guarantees that the size is divisible by 1 MiB */
    virCommandAddArgFormat(cmd, "mch.extended-tseg-mbytes=%llu",
                           def->tseg_size >> 20);
}


7629 7630
static int
qemuBuildSmpCommandLine(virCommandPtr cmd,
7631
                        virDomainDefPtr def)
7632
{
7633
    char *smp;
7634
    virBuffer buf = VIR_BUFFER_INITIALIZER;
7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646
    unsigned int maxvcpus = virDomainDefGetVcpusMax(def);
    unsigned int nvcpus = 0;
    virDomainVcpuDefPtr vcpu;
    size_t i;

    /* count non-hotpluggable enabled vcpus. Hotpluggable ones will be added
     * in a different way */
    for (i = 0; i < maxvcpus; i++) {
        vcpu = virDomainDefGetVcpu(def, i);
        if (vcpu->online && vcpu->hotpluggable == VIR_TRISTATE_BOOL_NO)
            nvcpus++;
    }
7647

7648 7649
    virCommandAddArg(cmd, "-smp");

7650
    virBufferAsprintf(&buf, "%u", nvcpus);
7651

7652 7653
    if (nvcpus != maxvcpus)
        virBufferAsprintf(&buf, ",maxcpus=%u", maxvcpus);
7654 7655 7656 7657 7658 7659 7660 7661 7662 7663
    /* 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) {
        virBufferAsprintf(&buf, ",sockets=%u", def->cpu->sockets);
        virBufferAsprintf(&buf, ",cores=%u", def->cpu->cores);
        virBufferAsprintf(&buf, ",threads=%u", def->cpu->threads);
    } else {
        virBufferAsprintf(&buf, ",sockets=%u", virDomainDefGetVcpusMax(def));
        virBufferAsprintf(&buf, ",cores=%u", 1);
        virBufferAsprintf(&buf, ",threads=%u", 1);
7664 7665
    }

7666
    if (virBufferCheckError(&buf) < 0)
7667
        return -1;
7668

7669 7670 7671 7672 7673
    smp = virBufferContentAndReset(&buf);
    virCommandAddArg(cmd, smp);
    VIR_FREE(smp);

    return 0;
7674 7675
}

7676

7677 7678
static int
qemuBuildMemPathStr(virQEMUDriverConfigPtr cfg,
7679
                    const virDomainDef *def,
7680 7681
                    virCommandPtr cmd,
                    qemuDomainObjPrivatePtr priv)
7682 7683 7684 7685
{
    const long system_page_size = virGetSystemPageSizeKB();
    char *mem_path = NULL;

7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699
    /* There are two cases where we want to put -mem-path onto
     * the command line: First one is when there are no guest
     * NUMA nodes and hugepages are configured. The second one is
     * if user requested file allocation. */
    if (def->mem.nhugepages &&
        def->mem.hugepages[0].size != system_page_size) {
        if (qemuGetDomainHupageMemPath(def, cfg,
                                       def->mem.hugepages[0].size,
                                       &mem_path) < 0)
            return -1;
    } else if (def->mem.source == VIR_DOMAIN_MEMORY_SOURCE_FILE) {
        if (qemuGetMemoryBackingPath(def, cfg, "ram", &mem_path) < 0)
            return -1;
    } else {
7700
        return 0;
7701
    }
7702

7703
    if (def->mem.allocation != VIR_DOMAIN_MEMORY_ALLOCATION_IMMEDIATE) {
7704
        virCommandAddArgList(cmd, "-mem-prealloc", NULL);
7705 7706
        priv->memPrealloc = true;
    }
7707 7708

    virCommandAddArgList(cmd, "-mem-path", mem_path, NULL);
7709 7710 7711 7712 7713
    VIR_FREE(mem_path);

    return 0;
}

7714 7715 7716 7717 7718

static int
qemuBuildMemCommandLine(virCommandPtr cmd,
                        virQEMUDriverConfigPtr cfg,
                        const virDomainDef *def,
7719 7720
                        virQEMUCapsPtr qemuCaps,
                        qemuDomainObjPrivatePtr priv)
7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738
{
    if (qemuDomainDefValidateMemoryHotplug(def, qemuCaps, NULL) < 0)
        return -1;

    virCommandAddArg(cmd, "-m");

    if (virDomainDefHasMemoryHotplug(def)) {
        /* Use the 'k' suffix to let qemu handle the units */
        virCommandAddArgFormat(cmd, "size=%lluk,slots=%u,maxmem=%lluk",
                               virDomainDefGetMemoryInitial(def),
                               def->mem.memory_slots,
                               def->mem.max_memory);

    } else {
       virCommandAddArgFormat(cmd, "%llu",
                              virDomainDefGetMemoryInitial(def) / 1024);
    }

7739
    if (def->mem.allocation == VIR_DOMAIN_MEMORY_ALLOCATION_IMMEDIATE) {
7740
        virCommandAddArgList(cmd, "-mem-prealloc", NULL);
7741 7742
        priv->memPrealloc = true;
    }
7743

7744
    /*
7745 7746
     * Add '-mem-path' (and '-mem-prealloc') parameter here if
     * the hugepages and no numa node is specified.
7747 7748
     */
    if (!virDomainNumaGetNodeCount(def->numa) &&
7749
        qemuBuildMemPathStr(cfg, def, cmd, priv) < 0)
7750 7751
        return -1;

7752
    if (def->mem.locked && !virQEMUCapsGet(qemuCaps, QEMU_CAPS_REALTIME_MLOCK)) {
7753 7754 7755 7756
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("memory locking not supported by QEMU binary"));
        return -1;
    }
7757
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_REALTIME_MLOCK)) {
7758 7759 7760 7761 7762 7763 7764 7765 7766
        virCommandAddArg(cmd, "-realtime");
        virCommandAddArgFormat(cmd, "mlock=%s",
                               def->mem.locked ? "on" : "off");
    }

    return 0;
}


7767 7768
static int
qemuBuildIOThreadCommandLine(virCommandPtr cmd,
7769
                             const virDomainDef *def)
7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790
{
    size_t i;

    if (def->niothreadids == 0)
        return 0;

    /* Create iothread objects using the defined iothreadids list
     * and the defined id and name from the list. These may be used
     * by a disk definition which will associate to an iothread by
     * supplying a value of an id from the list
     */
    for (i = 0; i < def->niothreadids; i++) {
        virCommandAddArg(cmd, "-object");
        virCommandAddArgFormat(cmd, "iothread,id=iothread%u",
                               def->iothreadids[i]->iothread_id);
    }

    return 0;
}


B
Bharata B Rao 已提交
7791
static int
7792
qemuBuildNumaArgStr(virQEMUDriverConfigPtr cfg,
7793
                    virDomainDefPtr def,
7794
                    virCommandPtr cmd,
7795
                    qemuDomainObjPrivatePtr priv)
B
Bharata B Rao 已提交
7796
{
7797
    size_t i, j;
7798
    virQEMUCapsPtr qemuCaps = priv->qemuCaps;
B
Bharata B Rao 已提交
7799
    virBuffer buf = VIR_BUFFER_INITIALIZER;
7800
    char *cpumask = NULL, *tmpmask = NULL, *next = NULL;
7801
    virBufferPtr nodeBackends = NULL;
7802 7803
    bool needBackend = false;
    int rc;
7804
    int ret = -1;
7805
    size_t ncells = virDomainNumaGetNodeCount(def->numa);
7806
    const long system_page_size = virGetSystemPageSizeKB();
7807
    bool numa_distances = false;
B
Bharata B Rao 已提交
7808

7809
    if (virDomainNumatuneHasPerNodeBinding(def->numa) &&
7810
        !(virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
M
Marc-André Lureau 已提交
7811 7812
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE) ||
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_MEMFD))) {
7813 7814 7815 7816 7817 7818
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Per-node memory binding is not supported "
                         "with this QEMU"));
        goto cleanup;
    }

7819 7820
    if (def->mem.nhugepages &&
        def->mem.hugepages[0].size != system_page_size &&
7821 7822 7823 7824 7825 7826 7827
        !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;
    }

7828
    if (!virDomainNumatuneNodesetIsAvailable(def->numa, priv->autoNodeset))
7829 7830
        goto cleanup;

7831
    if (VIR_ALLOC_N(nodeBackends, ncells) < 0)
7832 7833 7834 7835
        goto cleanup;

    /* using of -numa memdev= cannot be combined with -numa mem=, thus we
     * need to check which approach to use */
7836
    for (i = 0; i < ncells; i++) {
7837
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
M
Marc-André Lureau 已提交
7838 7839
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE) ||
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_MEMFD)) {
7840

7841
            if ((rc = qemuBuildMemoryCellBackendStr(def, cfg, i, priv,
7842
                                                    &nodeBackends[i])) < 0)
7843 7844
                goto cleanup;

7845 7846
            if (rc == 0)
                needBackend = true;
7847
        } else {
7848
            if (virDomainNumaGetNodeMemoryAccessMode(def->numa, i)) {
7849 7850 7851 7852 7853
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Shared memory mapping is not supported "
                                 "with this QEMU"));
                goto cleanup;
            }
7854
        }
7855 7856
    }

7857
    if (!needBackend &&
7858
        qemuBuildMemPathStr(cfg, def, cmd, priv) < 0)
7859 7860
        goto cleanup;

7861
    for (i = 0; i < ncells; i++) {
7862
        VIR_FREE(cpumask);
7863
        if (!(cpumask = virBitmapFormat(virDomainNumaGetNodeCpumask(def->numa, i))))
7864 7865 7866 7867 7868 7869 7870 7871 7872 7873
            goto cleanup;

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

7874 7875
        if (needBackend) {
            virCommandAddArg(cmd, "-object");
7876
            virCommandAddArgBuffer(cmd, &nodeBackends[i]);
7877
        }
7878

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

7882 7883 7884 7885 7886 7887 7888
        for (tmpmask = cpumask; tmpmask; tmpmask = next) {
            if ((next = strchr(tmpmask, ',')))
                *(next++) = '\0';
            virBufferAddLit(&buf, ",cpus=");
            virBufferAdd(&buf, tmpmask, -1);
        }

7889
        if (needBackend)
7890
            virBufferAsprintf(&buf, ",memdev=ram-node%zu", i);
7891
        else
7892
            virBufferAsprintf(&buf, ",mem=%llu",
7893
                              virDomainNumaGetNodeMemorySize(def->numa, i) / 1024);
B
Bharata B Rao 已提交
7894 7895 7896

        virCommandAddArgBuffer(cmd, &buf);
    }
7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932

    /* If NUMA node distance is specified for at least one pair
     * of nodes, we have to specify all the distances. Even
     * though they might be the default ones. */
    for (i = 0; i < ncells; i++) {
        for (j = 0; j < ncells; j++) {
            if (virDomainNumaNodeDistanceIsUsingDefaults(def->numa, i, j))
                continue;

            numa_distances = true;
            break;
        }
        if (numa_distances)
            break;
    }

    if (numa_distances) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_NUMA_DIST)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("setting NUMA distances is not "
                             "supported with this qemu"));
            goto cleanup;
        }

        for (i = 0; i < ncells; i++) {
            for (j = 0; j < ncells; j++) {
                size_t distance = virDomainNumaGetNodeDistance(def->numa, i, j);

                virCommandAddArg(cmd, "-numa");
                virBufferAsprintf(&buf, "dist,src=%zu,dst=%zu,val=%zu", i, j, distance);

                virCommandAddArgBuffer(cmd, &buf);
            }
        }
    }

7933
    ret = 0;
B
Bharata B Rao 已提交
7934

7935
 cleanup:
7936
    VIR_FREE(cpumask);
7937 7938

    if (nodeBackends) {
7939
        for (i = 0; i < ncells; i++)
7940
            virBufferFreeAndReset(&nodeBackends[i]);
7941 7942 7943 7944

        VIR_FREE(nodeBackends);
    }

B
Bharata B Rao 已提交
7945
    virBufferFreeAndReset(&buf);
7946
    return ret;
B
Bharata B Rao 已提交
7947
}
7948

7949

7950
static int
7951 7952 7953
qemuBuildMemoryDeviceCommandLine(virCommandPtr cmd,
                                 virQEMUDriverConfigPtr cfg,
                                 virDomainDefPtr def,
7954
                                 qemuDomainObjPrivatePtr priv)
7955 7956 7957 7958 7959 7960
{
    size_t i;

    /* memory hotplug requires NUMA to be enabled - we already checked
     * that memory devices are present only when NUMA is */
    for (i = 0; i < def->nmems; i++) {
7961
        virBuffer buf = VIR_BUFFER_INITIALIZER;
7962 7963
        char *dimmStr;

7964
        if (qemuBuildMemoryDimmBackendStr(&buf, def->mems[i], def, cfg, priv) < 0)
7965 7966
            return -1;

7967 7968 7969
        virCommandAddArg(cmd, "-object");
        virCommandAddArgBuffer(cmd, &buf);

7970
        if (!(dimmStr = qemuBuildMemoryDeviceStr(def->mems[i], priv)))
7971 7972
            return -1;

7973
        virCommandAddArgList(cmd, "-device", dimmStr, NULL);
7974 7975 7976 7977 7978 7979 7980 7981

        VIR_FREE(dimmStr);
    }

    return 0;
}


7982 7983 7984 7985 7986 7987
static int
qemuBuildGraphicsSDLCommandLine(virQEMUDriverConfigPtr cfg ATTRIBUTE_UNUSED,
                                virCommandPtr cmd,
                                virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED,
                                virDomainGraphicsDefPtr graphics)
{
7988 7989 7990
    int ret = -1;
    virBuffer opt = VIR_BUFFER_INITIALIZER;

7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004
    if (graphics->data.sdl.xauth)
        virCommandAddEnvPair(cmd, "XAUTHORITY", graphics->data.sdl.xauth);
    if (graphics->data.sdl.display)
        virCommandAddEnvPair(cmd, "DISPLAY", graphics->data.sdl.display);
    if (graphics->data.sdl.fullscreen)
        virCommandAddArg(cmd, "-full-screen");

    /* 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
     */
    virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
    virCommandAddEnvPassBlockSUID(cmd, "SDL_AUDIODRIVER", NULL);

8005 8006
    virCommandAddArg(cmd, "-display");
    virBufferAddLit(&opt, "sdl");
8007

8008
    if (graphics->data.sdl.gl != VIR_TRISTATE_BOOL_ABSENT) {
8009 8010
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SDL_GL)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8011 8012
                           _("OpenGL for SDL is not supported with this QEMU "
                             "binary"));
8013 8014 8015
            goto cleanup;
        }

8016
        virBufferAsprintf(&opt, ",gl=%s",
8017
                          virTristateSwitchTypeToString(graphics->data.sdl.gl));
8018

8019 8020
    }

8021 8022 8023 8024
    if (virBufferCheckError(&opt) < 0)
        goto cleanup;

    virCommandAddArgBuffer(cmd, &opt);
8025 8026 8027 8028 8029

    ret = 0;
 cleanup:
    virBufferFreeAndReset(&opt);
    return ret;
8030 8031 8032
}


8033 8034 8035 8036
static int
qemuBuildGraphicsVNCCommandLine(virQEMUDriverConfigPtr cfg,
                                virCommandPtr cmd,
                                virQEMUCapsPtr qemuCaps,
8037
                                virDomainGraphicsDefPtr graphics)
8038 8039
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
8040
    virDomainGraphicsListenDefPtr glisten = NULL;
8041 8042 8043 8044 8045 8046 8047 8048
    bool escapeAddr;

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

8049 8050 8051 8052 8053
    if (!(glisten = virDomainGraphicsGetListen(graphics, 0))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("missing listen element"));
        goto error;
    }
8054

8055 8056
    switch (glisten->type) {
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_SOCKET:
8057 8058 8059 8060
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNC_MULTI_SERVERS))
            virBufferAddLit(&opt, "vnc=unix:");
        else
            virBufferAddLit(&opt, "unix:");
8061
        virQEMUBuildBufferEscapeComma(&opt, glisten->socket);
8062
        break;
8063

8064 8065
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS:
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NETWORK:
8066 8067 8068 8069 8070 8071 8072
        if (!graphics->data.vnc.autoport &&
            (graphics->data.vnc.port < 5900 ||
             graphics->data.vnc.port > 65535)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("vnc port must be in range [5900,65535]"));
            goto error;
        }
8073

8074
        if (glisten->address) {
8075 8076 8077 8078 8079
            escapeAddr = strchr(glisten->address, ':') != NULL;
            if (escapeAddr)
                virBufferAsprintf(&opt, "[%s]", glisten->address);
            else
                virBufferAdd(&opt, glisten->address, -1);
8080 8081 8082
        }
        virBufferAsprintf(&opt, ":%d",
                          graphics->data.vnc.port - 5900);
8083

8084
        if (graphics->data.vnc.websocket)
8085
            virBufferAsprintf(&opt, ",websocket=%d", graphics->data.vnc.websocket);
8086 8087 8088
        break;

    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NONE:
8089 8090 8091
        virBufferAddLit(&opt, "none");
        break;

8092 8093
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_LAST:
        break;
8094
    }
8095

8096 8097 8098
    if (graphics->data.vnc.sharePolicy) {
        virBufferAsprintf(&opt, ",share=%s",
                          virDomainGraphicsVNCSharePolicyTypeToString(
8099
                              graphics->data.vnc.sharePolicy));
8100
    }
8101

8102 8103
    if (graphics->data.vnc.auth.passwd || cfg->vncPassword)
        virBufferAddLit(&opt, ",password");
8104

8105
    if (cfg->vncTLS) {
8106 8107
        qemuDomainGraphicsPrivatePtr gfxPriv = QEMU_DOMAIN_GRAPHICS_PRIVATE(graphics);
        if (gfxPriv->tlsAlias) {
8108 8109 8110 8111 8112 8113 8114 8115 8116
            const char *secretAlias = NULL;

            if (gfxPriv->secinfo) {
                if (qemuBuildObjectSecretCommandLine(cmd,
                                                     gfxPriv->secinfo) < 0)
                    goto error;
                secretAlias = gfxPriv->secinfo->s.aes.alias;
            }

J
Ján Tomko 已提交
8117 8118 8119 8120
            if (qemuBuildTLSx509CommandLine(cmd,
                                            cfg->vncTLSx509certdir,
                                            true,
                                            cfg->vncTLSx509verify,
8121
                                            secretAlias,
8122
                                            gfxPriv->tlsAlias,
J
Ján Tomko 已提交
8123 8124 8125
                                            qemuCaps) < 0)
                goto error;

8126
            virBufferAsprintf(&opt, ",tls-creds=%s", gfxPriv->tlsAlias);
8127
        } else {
J
Ján Tomko 已提交
8128 8129 8130 8131 8132 8133 8134 8135
            virBufferAddLit(&opt, ",tls");
            if (cfg->vncTLSx509verify) {
                virBufferAddLit(&opt, ",x509verify=");
                virQEMUBuildBufferEscapeComma(&opt, cfg->vncTLSx509certdir);
            } else {
                virBufferAddLit(&opt, ",x509=");
                virQEMUBuildBufferEscapeComma(&opt, cfg->vncTLSx509certdir);
            }
8136
        }
8137
    }
8138

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

8142 8143
        if (cfg->vncSASLdir)
            virCommandAddEnvPair(cmd, "SASL_CONF_PATH", cfg->vncSASLdir);
8144

8145
        /* TODO: Support ACLs later */
8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157
    }

    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)
8158
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
8159 8160 8161 8162 8163
    else
        virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");

    return 0;

8164
 error:
8165 8166 8167 8168 8169
    virBufferFreeAndReset(&opt);
    return -1;
}


8170 8171 8172 8173 8174 8175 8176
static int
qemuBuildGraphicsSPICECommandLine(virQEMUDriverConfigPtr cfg,
                                  virCommandPtr cmd,
                                  virQEMUCapsPtr qemuCaps,
                                  virDomainGraphicsDefPtr graphics)
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
8177
    virDomainGraphicsListenDefPtr glisten = NULL;
8178 8179
    int port = graphics->data.spice.port;
    int tlsPort = graphics->data.spice.tlsPort;
8180
    size_t i;
8181 8182
    bool hasSecure = false;
    bool hasInsecure = false;
8183 8184 8185 8186 8187 8188 8189

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

8190 8191 8192 8193
    if (!(glisten = virDomainGraphicsGetListen(graphics, 0))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("missing listen element"));
        goto error;
8194
    }
8195

8196 8197 8198
    switch (glisten->type) {
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_SOCKET:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SPICE_UNIX)) {
8199
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8200 8201
                           _("unix socket for spice graphics are not supported "
                             "with this QEMU"));
8202 8203 8204
            goto error;
        }

8205
        virBufferAddLit(&opt, "unix,addr=");
8206
        virQEMUBuildBufferEscapeComma(&opt, glisten->socket);
8207
        virBufferAddLit(&opt, ",");
8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236
        hasInsecure = true;
        break;

    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS:
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NETWORK:
        if (port > 0) {
            virBufferAsprintf(&opt, "port=%u,", port);
            hasInsecure = true;
        }

        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;
            }
            virBufferAsprintf(&opt, "tls-port=%u,", tlsPort);
            hasSecure = true;
        }

        if (port > 0 || tlsPort > 0) {
            if (glisten->address)
                virBufferAsprintf(&opt, "addr=%s,", glisten->address);
        }

        break;

    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NONE:
P
Pavel Hrdina 已提交
8237 8238 8239 8240 8241
        /* QEMU requires either port or tls-port to be specified if there is no
         * other argument. Use a dummy port=0. */
        virBufferAddLit(&opt, "port=0,");
        hasInsecure = true;
        break;
8242 8243
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_LAST:
        break;
8244
    }
8245

8246 8247 8248 8249 8250 8251 8252 8253 8254 8255
    if (cfg->spiceSASL) {
        virBufferAddLit(&opt, "sasl,");

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

        /* TODO: Support ACLs later */
    }

8256 8257 8258
    if (graphics->data.spice.mousemode) {
        switch (graphics->data.spice.mousemode) {
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_SERVER:
8259
            virBufferAddLit(&opt, "agent-mouse=off,");
8260 8261
            break;
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_CLIENT:
8262
            virBufferAddLit(&opt, "agent-mouse=on,");
8263
            break;
8264
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_DEFAULT:
8265
            break;
8266 8267 8268 8269 8270
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_LAST:
        default:
            virReportEnumRangeError(virDomainGraphicsSpiceMouseMode,
                                    graphics->data.spice.mousemode);
            goto error;
8271 8272 8273 8274 8275 8276 8277 8278
        }
    }

    /* 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)
8279
        virBufferAddLit(&opt, "disable-ticketing,");
8280

8281 8282 8283 8284 8285
    if (hasSecure) {
        virBufferAddLit(&opt, "x509-dir=");
        virQEMUBuildBufferEscapeComma(&opt, cfg->spiceTLSx509certdir);
        virBufferAddLit(&opt, ",");
    }
8286

8287
    switch (graphics->data.spice.defaultMode) {
8288
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
8289 8290 8291 8292 8293 8294 8295
        if (!hasSecure) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("spice defaultMode secure requested in XML "
                             "configuration, but TLS connection is not "
                             "available"));
            goto error;
        }
8296
        virBufferAddLit(&opt, "tls-channel=default,");
8297 8298
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
8299 8300 8301 8302 8303 8304 8305
        if (!hasInsecure) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("spice defaultMode insecure requested in XML "
                             "configuration, but plaintext connection is not "
                             "available"));
            goto error;
        }
8306
        virBufferAddLit(&opt, "plaintext-channel=default,");
8307 8308
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
8309
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_LAST:
8310 8311 8312 8313
        /* nothing */
        break;
    }

8314
    for (i = 0; i < VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_LAST; i++) {
8315
        switch (graphics->data.spice.channels[i]) {
8316
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
8317
            if (!hasSecure) {
8318
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8319 8320 8321
                               _("spice secure channels set in XML "
                                 "configuration, but TLS connection is not "
                                 "available"));
8322 8323
                goto error;
            }
8324
            virBufferAsprintf(&opt, "tls-channel=%s,",
8325 8326
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
8327

8328
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
8329
            if (!hasInsecure) {
8330 8331
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice insecure channels set in XML "
8332 8333
                                 "configuration, but plaintext connection "
                                 "is not available"));
8334 8335
                goto error;
            }
8336
            virBufferAsprintf(&opt, "plaintext-channel=%s,",
8337 8338
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
8339 8340 8341

        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
            break;
8342 8343
        }
    }
8344

8345
    if (graphics->data.spice.image)
8346
        virBufferAsprintf(&opt, "image-compression=%s,",
8347 8348
                          virDomainGraphicsSpiceImageCompressionTypeToString(graphics->data.spice.image));
    if (graphics->data.spice.jpeg)
8349
        virBufferAsprintf(&opt, "jpeg-wan-compression=%s,",
8350 8351
                          virDomainGraphicsSpiceJpegCompressionTypeToString(graphics->data.spice.jpeg));
    if (graphics->data.spice.zlib)
8352
        virBufferAsprintf(&opt, "zlib-glz-wan-compression=%s,",
8353 8354
                          virDomainGraphicsSpiceZlibCompressionTypeToString(graphics->data.spice.zlib));
    if (graphics->data.spice.playback)
8355
        virBufferAsprintf(&opt, "playback-compression=%s,",
J
Ján Tomko 已提交
8356
                          virTristateSwitchTypeToString(graphics->data.spice.playback));
8357
    if (graphics->data.spice.streaming)
8358
        virBufferAsprintf(&opt, "streaming-video=%s,",
8359
                          virDomainGraphicsSpiceStreamingModeTypeToString(graphics->data.spice.streaming));
J
Ján Tomko 已提交
8360
    if (graphics->data.spice.copypaste == VIR_TRISTATE_BOOL_NO)
8361 8362
        virBufferAddLit(&opt, "disable-copy-paste,");

J
Ján Tomko 已提交
8363
    if (graphics->data.spice.filetransfer == VIR_TRISTATE_BOOL_NO) {
8364 8365 8366 8367 8368
        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 {
8369
            virBufferAddLit(&opt, "disable-agent-file-xfer,");
8370 8371
        }
    }
8372

8373
    if (graphics->data.spice.gl == VIR_TRISTATE_BOOL_YES) {
8374 8375 8376 8377 8378 8379 8380 8381
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SPICE_GL)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("This QEMU doesn't support spice OpenGL"));
            goto error;
        }

        /* spice.gl is a TristateBool, but qemu expects on/off: use
         * TristateSwitch helper */
8382
        virBufferAsprintf(&opt, "gl=%s,",
8383
                          virTristateSwitchTypeToString(graphics->data.spice.gl));
8384 8385 8386 8387 8388 8389 8390 8391

        if (graphics->data.spice.rendernode) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SPICE_RENDERNODE)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support spice OpenGL rendernode"));
                goto error;
            }

8392 8393 8394
            virBufferAddLit(&opt, "rendernode=");
            virQEMUBuildBufferEscapeComma(&opt, graphics->data.spice.rendernode);
            virBufferAddLit(&opt, ",");
8395
        }
8396 8397
    }

8398 8399 8400 8401 8402
    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. */
8403
        virBufferAddLit(&opt, "seamless-migration=on,");
8404 8405
    }

8406 8407
    virBufferTrim(&opt, ",", -1);

8408
    virCommandAddArg(cmd, "-spice");
P
Pavel Hrdina 已提交
8409
    virCommandAddArgBuffer(cmd, &opt);
8410 8411 8412 8413 8414 8415 8416 8417 8418 8419
    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;

8420
 error:
8421 8422 8423 8424
    virBufferFreeAndReset(&opt);
    return -1;
}

8425

8426 8427 8428
static int
qemuBuildGraphicsEGLHeadlessCommandLine(virQEMUDriverConfigPtr cfg ATTRIBUTE_UNUSED,
                                        virCommandPtr cmd,
8429 8430
                                        virQEMUCapsPtr qemuCaps,
                                        virDomainGraphicsDefPtr graphics)
8431
{
8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452
    int ret = -1;
    virBuffer opt = VIR_BUFFER_INITIALIZER;

    virBufferAddLit(&opt, "egl-headless");

    if (graphics->data.egl_headless.rendernode) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_EGL_HEADLESS_RENDERNODE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("This QEMU doesn't support OpenGL rendernode "
                             "with egl-headless graphics type"));
            goto cleanup;
        }

        virBufferAddLit(&opt, ",rendernode=");
        virQEMUBuildBufferEscapeComma(&opt,
                                      graphics->data.egl_headless.rendernode);
    }

    if (virBufferCheckError(&opt) < 0)
        goto cleanup;

8453
    virCommandAddArg(cmd, "-display");
8454
    virCommandAddArgBuffer(cmd, &opt);
8455

8456 8457 8458 8459
    ret = 0;
 cleanup:
    virBufferFreeAndReset(&opt);
    return ret;
8460 8461 8462
}


8463
static int
8464
qemuBuildGraphicsCommandLine(virQEMUDriverConfigPtr cfg,
8465
                             virCommandPtr cmd,
8466 8467
                             virDomainDefPtr def,
                             virQEMUCapsPtr qemuCaps)
8468
{
8469
    size_t i;
8470

8471 8472
    for (i = 0; i < def->ngraphics; i++) {
        virDomainGraphicsDefPtr graphics = def->graphics[i];
8473

8474 8475 8476 8477 8478
        switch (graphics->type) {
        case VIR_DOMAIN_GRAPHICS_TYPE_SDL:
            if (qemuBuildGraphicsSDLCommandLine(cfg, cmd,
                                                qemuCaps, graphics) < 0)
                return -1;
8479

8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491
            break;
        case VIR_DOMAIN_GRAPHICS_TYPE_VNC:
            if (qemuBuildGraphicsVNCCommandLine(cfg, cmd,
                                                qemuCaps, graphics) < 0)
                return -1;

            break;
        case VIR_DOMAIN_GRAPHICS_TYPE_SPICE:
            if (qemuBuildGraphicsSPICECommandLine(cfg, cmd,
                                                  qemuCaps, graphics) < 0)
                return -1;

8492 8493
            break;
        case VIR_DOMAIN_GRAPHICS_TYPE_EGL_HEADLESS:
8494 8495 8496
            if (qemuBuildGraphicsEGLHeadlessCommandLine(cfg, cmd,
                                                        qemuCaps, graphics) < 0)
                return -1;
8497

8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509
            break;
        case VIR_DOMAIN_GRAPHICS_TYPE_RDP:
        case VIR_DOMAIN_GRAPHICS_TYPE_DESKTOP:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported graphics type '%s'"),
                           virDomainGraphicsTypeToString(graphics->type));
            return -1;
        case VIR_DOMAIN_GRAPHICS_TYPE_LAST:
        default:
            virReportEnumRangeError(virDomainGraphicsType, graphics->type);
            return -1;
        }
8510
    }
8511

8512 8513
    return 0;
}
8514

M
Michele Paolino 已提交
8515
static int
8516
qemuInterfaceVhostuserConnect(virQEMUDriverPtr driver,
8517
                              virLogManagerPtr logManager,
8518
                              virSecurityManagerPtr secManager,
8519
                              virCommandPtr cmd,
M
Michele Paolino 已提交
8520 8521
                              virDomainDefPtr def,
                              virDomainNetDefPtr net,
8522
                              virQEMUCapsPtr qemuCaps,
8523
                              char **chardev)
M
Michele Paolino 已提交
8524
{
8525
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
8526
    int ret = -1;
M
Michele Paolino 已提交
8527

8528
    switch ((virDomainChrType)net->data.vhostuser->type) {
M
Michele Paolino 已提交
8529
    case VIR_DOMAIN_CHR_TYPE_UNIX:
8530 8531 8532 8533
        if (!(*chardev = qemuBuildChrChardevStr(logManager, secManager,
                                                cmd, cfg, def,
                                                net->data.vhostuser,
                                                net->info.alias, qemuCaps, 0)))
8534
            goto cleanup;
M
Michele Paolino 已提交
8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551
        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"),
8552
                       virDomainChrTypeToString(net->data.vhostuser->type));
8553
        goto cleanup;
M
Michele Paolino 已提交
8554 8555
    }

8556 8557
    ret = 0;
 cleanup:
8558
    virObjectUnref(cfg);
8559
    return ret;
M
Michele Paolino 已提交
8560 8561
}

8562
static int
8563 8564
qemuBuildInterfaceCommandLine(virQEMUDriverPtr driver,
                              virLogManagerPtr logManager,
8565
                              virSecurityManagerPtr secManager,
8566
                              virCommandPtr cmd,
8567 8568 8569
                              virDomainDefPtr def,
                              virDomainNetDefPtr net,
                              virQEMUCapsPtr qemuCaps,
8570
                              unsigned int bootindex,
8571
                              virNetDevVPortProfileOp vmop,
8572
                              bool standalone,
8573
                              size_t *nnicindexes,
8574
                              int **nicindexes)
8575 8576
{
    int ret = -1;
8577 8578
    char *nic = NULL;
    char *host = NULL;
8579
    char *chardev = NULL;
8580
    int *tapfd = NULL;
8581
    size_t tapfdSize = 0;
8582
    int *vhostfd = NULL;
8583
    size_t vhostfdSize = 0;
8584 8585
    char **tapfdName = NULL;
    char **vhostfdName = NULL;
8586
    virDomainNetType actualType = virDomainNetGetActualType(net);
8587
    virNetDevBandwidthPtr actualBandwidth;
8588
    bool requireNicdev = false;
8589
    size_t i;
8590

8591 8592 8593 8594

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

8595 8596 8597
    /* Currently nothing besides TAP devices supports multiqueue. */
    if (net->driver.virtio.queues > 0 &&
        !(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
8598
          actualType == VIR_DOMAIN_NET_TYPE_BRIDGE ||
8599
          actualType == VIR_DOMAIN_NET_TYPE_DIRECT ||
8600 8601
          actualType == VIR_DOMAIN_NET_TYPE_ETHERNET ||
          actualType == VIR_DOMAIN_NET_TYPE_VHOSTUSER)) {
8602 8603 8604 8605 8606 8607
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Multiqueue network is not supported for: %s"),
                       virDomainNetTypeToString(actualType));
        return -1;
    }

8608
    /* and only TAP devices support nwfilter rules */
8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627
    if (net->filter) {
        virNetDevVPortProfilePtr vport = virDomainNetGetActualVirtPortProfile(net);
        if (!(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
              actualType == VIR_DOMAIN_NET_TYPE_BRIDGE ||
              actualType == VIR_DOMAIN_NET_TYPE_ETHERNET)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("filterref is not supported for "
                             "network interfaces of type %s"),
                           virDomainNetTypeToString(actualType));
            return -1;
        }
        if (vport && vport->virtPortType != VIR_NETDEV_VPORT_PROFILE_NONE) {
            /* currently none of the defined virtualport types support iptables */
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("filterref is not supported for "
                             "network interfaces with virtualport type %s"),
                           virNetDevVPortTypeToString(vport->virtPortType));
            return -1;
        }
8628 8629
    }

8630 8631
    if (net->backend.tap &&
        !(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
8632 8633
          actualType == VIR_DOMAIN_NET_TYPE_BRIDGE ||
          actualType == VIR_DOMAIN_NET_TYPE_ETHERNET)) {
8634 8635 8636 8637 8638 8639
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Custom tap device path is not supported for: %s"),
                       virDomainNetTypeToString(actualType));
        return -1;
    }

8640 8641 8642
    switch (actualType) {
    case VIR_DOMAIN_NET_TYPE_NETWORK:
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
8643 8644 8645 8646 8647
        tapfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = 1;

        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0 ||
8648
            VIR_ALLOC_N(tapfdName, tapfdSize) < 0)
8649 8650
            goto cleanup;

8651 8652
        memset(tapfd, -1, tapfdSize * sizeof(tapfd[0]));

8653
        if (qemuInterfaceBridgeConnect(def, driver, net,
8654
                                       tapfd, &tapfdSize) < 0)
8655
            goto cleanup;
8656 8657 8658
        break;

    case VIR_DOMAIN_NET_TYPE_DIRECT:
8659 8660 8661 8662 8663 8664
        tapfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = 1;

        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0 ||
            VIR_ALLOC_N(tapfdName, tapfdSize) < 0)
8665
            goto cleanup;
8666 8667 8668

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

8669 8670
        if (qemuInterfaceDirectConnect(def, driver, net,
                                       tapfd, tapfdSize, vmop) < 0)
8671
            goto cleanup;
8672 8673 8674
        break;

    case VIR_DOMAIN_NET_TYPE_ETHERNET:
8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685
        tapfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = 1;

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

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

        if (qemuInterfaceEthernetConnect(def, driver, net,
8686
                                         tapfd, tapfdSize) < 0)
8687
            goto cleanup;
8688 8689 8690
        break;

    case VIR_DOMAIN_NET_TYPE_HOSTDEV:
8691 8692 8693 8694 8695
        /* NET_TYPE_HOSTDEV devices are really hostdev devices, so
         * their commandlines are constructed with other hostdevs.
         */
        ret = 0;
        goto cleanup;
8696 8697 8698
        break;

    case VIR_DOMAIN_NET_TYPE_VHOSTUSER:
8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716
        requireNicdev = true;

        if (net->driver.virtio.queues > 1 &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_VHOSTUSER_MULTIQUEUE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("multi-queue is not supported for vhost-user "
                             "with this QEMU binary"));
            goto cleanup;
        }

        if (qemuInterfaceVhostuserConnect(driver, logManager, secManager,
                                          cmd, def, net, qemuCaps, &chardev) < 0)
            goto cleanup;

        if (virNetDevOpenvswitchGetVhostuserIfname(net->data.vhostuser->data.nix.path,
                                                   &net->ifname) < 0)
            goto cleanup;

8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727
        break;

    case VIR_DOMAIN_NET_TYPE_USER:
    case VIR_DOMAIN_NET_TYPE_SERVER:
    case VIR_DOMAIN_NET_TYPE_CLIENT:
    case VIR_DOMAIN_NET_TYPE_MCAST:
    case VIR_DOMAIN_NET_TYPE_INTERNAL:
    case VIR_DOMAIN_NET_TYPE_UDP:
    case VIR_DOMAIN_NET_TYPE_LAST:
        /* nada */
        break;
8728 8729
    }

8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743
    /* For types whose implementations use a netdev on the host, add
     * an entry to nicindexes for passing on to systemd.
    */
    switch ((virDomainNetType)actualType) {
    case VIR_DOMAIN_NET_TYPE_ETHERNET:
    case VIR_DOMAIN_NET_TYPE_NETWORK:
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
    case VIR_DOMAIN_NET_TYPE_DIRECT:
    {
        int nicindex;

        /* network and bridge use a tap device, and direct uses a
         * macvtap device
         */
8744 8745
        if (virQEMUDriverIsPrivileged(driver) && nicindexes && nnicindexes &&
            net->ifname) {
8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757
            if (virNetDevGetIndex(net->ifname, &nicindex) < 0 ||
                VIR_APPEND_ELEMENT(*nicindexes, *nnicindexes, nicindex) < 0)
                goto cleanup;
        }
        break;
    }

    case VIR_DOMAIN_NET_TYPE_USER:
    case VIR_DOMAIN_NET_TYPE_VHOSTUSER:
    case VIR_DOMAIN_NET_TYPE_SERVER:
    case VIR_DOMAIN_NET_TYPE_CLIENT:
    case VIR_DOMAIN_NET_TYPE_MCAST:
8758
    case VIR_DOMAIN_NET_TYPE_UDP:
8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774
    case VIR_DOMAIN_NET_TYPE_INTERNAL:
    case VIR_DOMAIN_NET_TYPE_HOSTDEV:
    case VIR_DOMAIN_NET_TYPE_LAST:
       /* These types don't use a network device on the host, but
        * instead use some other type of connection to the emulated
        * device in the qemu process.
        *
        * (Note that hostdev can't be considered as "using a network
        * device", because by the time it is being used, it has been
        * detached from the hostside network driver so it doesn't show
        * up in the list of interfaces on the host - it's just some
        * PCI device.)
        */
       break;
    }

8775 8776 8777 8778
    /* Set bandwidth or warn if requested and not supported. */
    actualBandwidth = virDomainNetGetActualBandwidth(net);
    if (actualBandwidth) {
        if (virNetDevSupportBandwidth(actualType)) {
8779 8780
            if (virNetDevBandwidthSet(net->ifname, actualBandwidth, false,
                                      !virDomainNetTypeSharesHostView(net)) < 0)
8781 8782 8783 8784 8785 8786 8787
                goto cleanup;
        } else {
            VIR_WARN("setting bandwidth on interfaces of "
                     "type '%s' is not implemented yet",
                     virDomainNetTypeToString(actualType));
        }
    }
8788

8789 8790 8791 8792
    if (net->mtu &&
        virNetDevSetMTU(net->ifname, net->mtu) < 0)
        goto cleanup;

8793 8794 8795 8796 8797
    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) {
8798 8799
        /* Attempt to use vhost-net mode for these types of
           network device */
8800 8801 8802 8803 8804
        vhostfdSize = net->driver.virtio.queues;
        if (!vhostfdSize)
            vhostfdSize = 1;

        if (VIR_ALLOC_N(vhostfd, vhostfdSize) < 0 ||
8805
            VIR_ALLOC_N(vhostfdName, vhostfdSize))
8806 8807
            goto cleanup;

8808 8809
        memset(vhostfd, -1, vhostfdSize * sizeof(vhostfd[0]));

J
Ján Tomko 已提交
8810
        if (qemuInterfaceOpenVhostNet(def, net, vhostfd, &vhostfdSize) < 0)
8811 8812 8813
            goto cleanup;
    }

8814
    for (i = 0; i < tapfdSize; i++) {
8815 8816
        if (qemuSecuritySetTapFDLabel(driver->securityManager,
                                      def, tapfd[i]) < 0)
M
Michal Privoznik 已提交
8817
            goto cleanup;
8818 8819
        virCommandPassFD(cmd, tapfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
8820
        if (virAsprintf(&tapfdName[i], "%d", tapfd[i]) < 0)
8821 8822 8823
            goto cleanup;
    }

8824
    for (i = 0; i < vhostfdSize; i++) {
8825 8826
        virCommandPassFD(cmd, vhostfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
8827
        if (virAsprintf(&vhostfdName[i], "%d", vhostfd[i]) < 0)
8828
            goto cleanup;
8829 8830
    }

8831 8832 8833
    if (chardev)
        virCommandAddArgList(cmd, "-chardev", chardev, NULL);

8834 8835 8836 8837 8838 8839
    if (!(host = qemuBuildHostNetStr(net, driver,
                                     tapfdName, tapfdSize,
                                     vhostfdName, vhostfdSize)))
        goto cleanup;
    virCommandAddArgList(cmd, "-netdev", host, NULL);

8840 8841
    /* Possible combinations:
     *
8842 8843 8844
     *   Old way: -netdev type=tap,id=netdev1 \
     *              -net nic,model=e1000,netdev=netdev1
     *   New way: -netdev type=tap,id=netdev1 -device e1000,id=netdev1
8845
     */
8846
    if (qemuDomainSupportsNicdev(def, net)) {
8847 8848 8849
        if (qemuCommandAddExtDevice(cmd, &net->info) < 0)
            goto cleanup;

8850
        if (!(nic = qemuBuildNicDevStr(def, net, bootindex,
8851
                                       net->driver.virtio.queues, qemuCaps)))
8852 8853
            goto cleanup;
        virCommandAddArgList(cmd, "-device", nic, NULL);
8854
    } else if (!requireNicdev) {
8855 8856 8857
        if (qemuCommandAddExtDevice(cmd, &net->info) < 0)
            goto cleanup;

8858
        if (!(nic = qemuBuildLegacyNicStr(net)))
8859 8860
            goto cleanup;
        virCommandAddArgList(cmd, "-net", nic, NULL);
8861 8862 8863 8864
    } else {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Nicdev support unavailable"));
        goto cleanup;
8865 8866 8867
    }

    ret = 0;
8868
 cleanup:
8869 8870
    if (ret < 0) {
        virErrorPtr saved_err = virSaveLastError();
8871
        virDomainConfNWFilterTeardown(net);
8872 8873 8874
        virSetError(saved_err);
        virFreeError(saved_err);
    }
8875
    for (i = 0; vhostfd && i < vhostfdSize && vhostfd[i] >= 0; i++) {
8876 8877
        if (ret < 0)
            VIR_FORCE_CLOSE(vhostfd[i]);
8878 8879
        if (vhostfdName)
            VIR_FREE(vhostfdName[i]);
8880
    }
8881 8882 8883 8884 8885 8886 8887 8888
    VIR_FREE(vhostfdName);
    for (i = 0; tapfd && i < tapfdSize && tapfd[i] >= 0; i++) {
        if (ret < 0)
            VIR_FORCE_CLOSE(tapfd[i]);
        if (tapfdName)
            VIR_FREE(tapfdName[i]);
    }
    VIR_FREE(tapfdName);
8889
    VIR_FREE(vhostfd);
8890
    VIR_FREE(tapfd);
8891
    VIR_FREE(chardev);
8892
    VIR_FREE(host);
8893
    VIR_FREE(nic);
8894 8895 8896
    return ret;
}

8897 8898

/* NOTE: Not using const virDomainDef here since eventually a call is made
8899
 *       into qemuSecuritySetTapFDLabel which calls it's driver
8900 8901 8902
 *       API domainSetSecurityTapFDLabel that doesn't use the const format.
 */
static int
8903 8904
qemuBuildNetCommandLine(virQEMUDriverPtr driver,
                        virLogManagerPtr logManager,
8905
                        virSecurityManagerPtr secManager,
8906
                        virCommandPtr cmd,
8907 8908 8909 8910 8911 8912
                        virDomainDefPtr def,
                        virQEMUCapsPtr qemuCaps,
                        virNetDevVPortProfileOp vmop,
                        bool standalone,
                        size_t *nnicindexes,
                        int **nicindexes,
8913
                        unsigned int *bootHostdevNet)
8914 8915 8916
{
    size_t i;
    int last_good_net = -1;
8917
    virErrorPtr originalError = NULL;
8918

J
Ján Tomko 已提交
8919
    if (def->nnets) {
8920
        unsigned int bootNet = 0;
8921

8922 8923 8924 8925 8926
        /* convert <boot dev='network'/> to bootindex since we didn't emit -boot n */
        for (i = 0; i < def->os.nBootDevs; i++) {
            if (def->os.bootDevs[i] == VIR_DOMAIN_BOOT_NET) {
                bootNet = i + 1;
                break;
8927 8928 8929 8930 8931 8932
            }
        }

        for (i = 0; i < def->nnets; i++) {
            virDomainNetDefPtr net = def->nets[i];

8933
            if (qemuBuildInterfaceCommandLine(driver, logManager, secManager, cmd, def, net,
8934
                                              qemuCaps, bootNet, vmop,
8935
                                              standalone, nnicindexes,
8936
                                              nicindexes) < 0)
8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955
                goto error;

            last_good_net = i;
            /* if this interface is a type='hostdev' interface and we
             * haven't yet added a "bootindex" parameter to an
             * emulated network device, save the bootindex - hostdev
             * interface commandlines will be built later on when we
             * cycle through all the hostdevs, and we'll use it then.
             */
            if (virDomainNetGetActualType(net) == VIR_DOMAIN_NET_TYPE_HOSTDEV &&
                *bootHostdevNet == 0) {
                *bootHostdevNet = bootNet;
            }
            bootNet = 0;
        }
    }
    return 0;

 error:
8956 8957 8958
    /* free up any resources in the network driver
     * but don't overwrite the original error */
    originalError = virSaveLastError();
8959 8960
    for (i = 0; last_good_net != -1 && i <= last_good_net; i++)
        virDomainConfNWFilterTeardown(def->nets[i]);
8961 8962
    virSetError(originalError);
    virFreeError(originalError);
8963 8964 8965 8966
    return -1;
}


8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992
static const char *
qemuBuildSmartcardFindCCIDController(const virDomainDef *def,
                                     const virDomainSmartcardDef *smartcard)
{
    size_t i;

    /* Should never happen. But doesn't hurt to check. */
    if (smartcard->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCID)
        return NULL;

    for (i = 0; i < def->ncontrollers; i++) {
        const virDomainControllerDef *tmp = def->controllers[i];

        if (tmp->type != VIR_DOMAIN_CONTROLLER_TYPE_CCID)
            continue;

        if (tmp->idx != smartcard->info.addr.ccid.controller)
            continue;

        return tmp->info.alias;
    }

    return NULL;
}


8993 8994
static int
qemuBuildSmartcardCommandLine(virLogManagerPtr logManager,
8995
                              virSecurityManagerPtr secManager,
8996
                              virCommandPtr cmd,
8997
                              virQEMUDriverConfigPtr cfg,
8998
                              const virDomainDef *def,
8999 9000
                              virQEMUCapsPtr qemuCaps,
                              bool chardevStdioLogd)
9001 9002 9003 9004 9005 9006
{
    size_t i;
    virDomainSmartcardDefPtr smartcard;
    char *devstr;
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *database;
9007
    const char *contAlias = NULL;
9008 9009
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
9010 9011
    if (chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032

    if (!def->nsmartcards)
        return 0;

    smartcard = def->smartcards[0];

    /* -device usb-ccid was already emitted along with other
     * controllers.  For now, qemu handles only one smartcard.  */
    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) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("this QEMU binary lacks multiple smartcard "
                         "support"));
        virBufferFreeAndReset(&opt);
        return -1;
    }

    switch (smartcard->type) {
    case VIR_DOMAIN_SMARTCARD_TYPE_HOST:
9033
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
9034 9035 9036 9037 9038 9039 9040 9041 9042 9043
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this QEMU binary lacks smartcard host "
                             "mode support"));
            return -1;
        }

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

    case VIR_DOMAIN_SMARTCARD_TYPE_HOST_CERTIFICATES:
9044
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
9045 9046 9047 9048 9049 9050 9051 9052
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this QEMU binary lacks smartcard host "
                             "mode support"));
            return -1;
        }

        virBufferAddLit(&opt, "ccid-card-emulated,backend=certificates");
        for (i = 0; i < VIR_DOMAIN_SMARTCARD_NUM_CERTIFICATES; i++) {
9053 9054
            virBufferAsprintf(&opt, ",cert%zu=", i + 1);
            virQEMUBuildBufferEscapeComma(&opt, smartcard->data.cert.file[i]);
9055 9056 9057 9058 9059 9060
        }
        if (smartcard->data.cert.database) {
            database = smartcard->data.cert.database;
        } else {
            database = VIR_DOMAIN_SMARTCARD_DEFAULT_DATABASE;
        }
9061 9062
        virBufferAddLit(&opt, ",db=");
        virQEMUBuildBufferEscapeComma(&opt, database);
9063 9064 9065
        break;

    case VIR_DOMAIN_SMARTCARD_TYPE_PASSTHROUGH:
9066
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_PASSTHRU)) {
9067 9068 9069 9070 9071 9072
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this QEMU binary lacks smartcard "
                             "passthrough mode support"));
            return -1;
        }

9073 9074
        if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                              cmd, cfg, def,
9075
                                              smartcard->data.passthru,
9076
                                              smartcard->info.alias,
9077
                                              qemuCaps, cdevflags))) {
9078 9079 9080
            virBufferFreeAndReset(&opt);
            return -1;
        }
9081
        virCommandAddArg(cmd, "-chardev");
9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);

        virBufferAsprintf(&opt, "ccid-card-passthru,chardev=char%s",
                          smartcard->info.alias);
        break;

    default:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unexpected smartcard type %d"),
                       smartcard->type);
        virBufferFreeAndReset(&opt);
        return -1;
    }
9096 9097 9098 9099 9100 9101 9102 9103 9104

    if (!(contAlias = qemuBuildSmartcardFindCCIDController(def,
                                                           smartcard))) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unable to find controller for %s"),
                       smartcard->info.alias);
        return -1;
    }

9105
    virCommandAddArg(cmd, "-device");
9106
    virBufferAsprintf(&opt, ",id=%s,bus=%s.0", smartcard->info.alias, contAlias);
9107 9108 9109 9110 9111 9112
    virCommandAddArgBuffer(cmd, &opt);

    return 0;
}


9113
static char *
9114 9115 9116
qemuBuildShmemDevLegacyStr(virDomainDefPtr def,
                           virDomainShmemDefPtr shmem,
                           virQEMUCapsPtr qemuCaps)
9117 9118 9119 9120 9121 9122 9123
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_IVSHMEM)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("ivshmem device is not supported "
                         "with this QEMU binary"));
9124
        return NULL;
9125 9126 9127
    }

    virBufferAddLit(&buf, "ivshmem");
9128 9129
    virBufferAsprintf(&buf, ",id=%s", shmem->info.alias);

9130
    if (shmem->size)
M
Martin Kletzander 已提交
9131
        virBufferAsprintf(&buf, ",size=%llum", shmem->size >> 20);
9132 9133

    if (!shmem->server.enabled) {
9134
        virBufferAsprintf(&buf, ",shm=%s", shmem->name);
9135
    } else {
9136
        virBufferAsprintf(&buf, ",chardev=char%s", shmem->info.alias);
9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152
        if (shmem->msi.enabled) {
            virBufferAddLit(&buf, ",msi=on");
            if (shmem->msi.vectors)
                virBufferAsprintf(&buf, ",vectors=%u", shmem->msi.vectors);
            if (shmem->msi.ioeventfd)
                virBufferAsprintf(&buf, ",ioeventfd=%s",
                                  virTristateSwitchTypeToString(shmem->msi.ioeventfd));
        }
    }

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

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

9153
    return virBufferContentAndReset(&buf);
9154 9155 9156

 error:
    virBufferFreeAndReset(&buf);
9157 9158 9159
    return NULL;
}

9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207
char *
qemuBuildShmemDevStr(virDomainDefPtr def,
                     virDomainShmemDefPtr shmem,
                     virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if ((shmem->model == VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_PLAIN &&
         !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_IVSHMEM_PLAIN)) ||
        (shmem->model == VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_DOORBELL &&
         !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_IVSHMEM_DOORBELL))) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("shmem model '%s' is not supported "
                             "by this QEMU binary"),
                           virDomainShmemModelTypeToString(shmem->model));
        return NULL;
    }

    virBufferAdd(&buf, virDomainShmemModelTypeToString(shmem->model), -1);
    virBufferAsprintf(&buf, ",id=%s", shmem->info.alias);

    if (shmem->server.enabled)
        virBufferAsprintf(&buf, ",chardev=char%s", shmem->info.alias);
    else
        virBufferAsprintf(&buf, ",memdev=shmmem-%s", shmem->info.alias);

    if (shmem->msi.vectors)
        virBufferAsprintf(&buf, ",vectors=%u", shmem->msi.vectors);
    if (shmem->msi.ioeventfd) {
        virBufferAsprintf(&buf, ",ioeventfd=%s",
                          virTristateSwitchTypeToString(shmem->msi.ioeventfd));
    }

    if (qemuBuildDeviceAddressStr(&buf, def, &shmem->info, qemuCaps) < 0) {
        virBufferFreeAndReset(&buf);
        return NULL;
    }

    if (virBufferCheckError(&buf) < 0)
        return NULL;

    return virBufferContentAndReset(&buf);
}


virJSONValuePtr
qemuBuildShmemBackendMemProps(virDomainShmemDefPtr shmem)
{
9208
    char *mem_alias = NULL;
9209 9210 9211 9212 9213 9214
    char *mem_path = NULL;
    virJSONValuePtr ret = NULL;

    if (virAsprintf(&mem_path, "/dev/shm/%s", shmem->name) < 0)
        return NULL;

9215
    if (virAsprintf(&mem_alias, "shmmem-%s", shmem->info.alias) < 0)
9216 9217
        goto cleanup;

9218 9219 9220 9221 9222
    qemuMonitorCreateObjectProps(&ret, "memory-backend-file", mem_alias,
                                 "s:mem-path", mem_path,
                                 "U:size", shmem->size,
                                 "b:share", true,
                                 NULL);
9223

9224 9225 9226
 cleanup:
    VIR_FREE(mem_alias);
    VIR_FREE(mem_path);
9227 9228 9229 9230
    return ret;
}


9231
static int
9232
qemuBuildShmemCommandLine(virLogManagerPtr logManager,
9233
                          virSecurityManagerPtr secManager,
9234
                          virCommandPtr cmd,
9235
                          virQEMUDriverConfigPtr cfg,
9236 9237
                          virDomainDefPtr def,
                          virDomainShmemDefPtr shmem,
9238 9239
                          virQEMUCapsPtr qemuCaps,
                          bool chardevStdioLogd)
9240
{
9241 9242
    virJSONValuePtr memProps = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
9243
    char *devstr = NULL;
9244
    int rc;
9245 9246
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
9247 9248
    if (chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
9249

9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275
    if (shmem->size) {
        /*
         * Thanks to our parsing code, we have a guarantee that the
         * size is power of two and is at least a mebibyte in size.
         * But because it may change in the future, the checks are
         * doubled in here.
         */
        if (shmem->size & (shmem->size - 1)) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("shmem size must be a power of two"));
            return -1;
        }
        if (shmem->size < 1024 * 1024) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("shmem size must be at least 1 MiB (1024 KiB)"));
            return -1;
        }
    }

    if (shmem->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only 'pci' addresses are supported for the "
                         "shared memory device"));
        return -1;
    }

9276 9277 9278 9279 9280
    switch ((virDomainShmemModel)shmem->model) {
    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM:
        devstr = qemuBuildShmemDevLegacyStr(def, shmem, qemuCaps);
        break;

9281
    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_PLAIN:
9282
        if (!(memProps = qemuBuildShmemBackendMemProps(shmem)))
9283 9284
            return -1;

9285 9286 9287 9288 9289 9290 9291 9292
        rc = virQEMUBuildObjectCommandlineFromJSON(&buf, memProps);
        virJSONValueFree(memProps);

        if (rc < 0)
            return -1;

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

M
Marc Hartmayer 已提交
9294
        ATTRIBUTE_FALLTHROUGH;
9295
    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_DOORBELL:
9296
        devstr = qemuBuildShmemDevStr(def, shmem, qemuCaps);
9297 9298
        break;

9299 9300 9301 9302 9303
    case VIR_DOMAIN_SHMEM_MODEL_LAST:
        break;
    }

    if (!devstr)
9304
        return -1;
9305 9306 9307 9308 9309 9310

    if (qemuCommandAddExtDevice(cmd, &shmem->info) < 0) {
        VIR_FREE(devstr);
        return -1;
    }

9311 9312
    virCommandAddArgList(cmd, "-device", devstr, NULL);
    VIR_FREE(devstr);
9313 9314

    if (shmem->server.enabled) {
9315 9316
        devstr = qemuBuildChrChardevStr(logManager, secManager,
                                        cmd, cfg, def,
9317
                                        &shmem->server.chr,
9318 9319
                                        shmem->info.alias, qemuCaps,
                                        cdevflags);
9320
        if (!devstr)
9321 9322
            return -1;

9323
        virCommandAddArgList(cmd, "-chardev", devstr, NULL);
9324 9325 9326 9327 9328 9329
        VIR_FREE(devstr);
    }

    return 0;
}

9330 9331 9332 9333 9334

static virQEMUCapsFlags
qemuChrSerialTargetModelToCaps(virDomainChrSerialTargetModel targetModel)
{
    switch (targetModel) {
9335 9336
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_ISA_SERIAL:
        return QEMU_CAPS_DEVICE_ISA_SERIAL;
9337 9338 9339 9340
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_USB_SERIAL:
        return QEMU_CAPS_DEVICE_USB_SERIAL;
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_PCI_SERIAL:
        return QEMU_CAPS_DEVICE_PCI_SERIAL;
9341 9342
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_SPAPR_VTY:
        return QEMU_CAPS_DEVICE_SPAPR_VTY;
9343 9344 9345 9346
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_SCLPCONSOLE:
        return QEMU_CAPS_DEVICE_SCLPCONSOLE;
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_SCLPLMCONSOLE:
        return QEMU_CAPS_DEVICE_SCLPLMCONSOLE;
9347
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_PL011:
9348
        return QEMU_CAPS_DEVICE_PL011;
9349
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_16550A:
9350 9351 9352 9353 9354 9355 9356 9357 9358
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_NONE:
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_LAST:
        break;
    }

    return 0;
}


9359 9360
static int
qemuBuildChrDeviceCommandLine(virCommandPtr cmd,
9361
                              const virDomainDef *def,
9362 9363 9364 9365 9366 9367 9368 9369 9370
                              virDomainChrDefPtr chr,
                              virQEMUCapsPtr qemuCaps)
{
    char *devstr = NULL;

    if (qemuBuildChrDeviceStr(&devstr, def, chr, qemuCaps) < 0)
        return -1;

    virCommandAddArgList(cmd, "-device", devstr, NULL);
9371
    VIR_FREE(devstr);
9372 9373 9374
    return 0;
}

9375

9376 9377 9378 9379
static bool
qemuChrIsPlatformDevice(const virDomainDef *def,
                        virDomainChrDefPtr chr)
{
S
Stefan Schallenberg 已提交
9380 9381 9382
    if (def->os.arch == VIR_ARCH_ARMV6L ||
        def->os.arch == VIR_ARCH_ARMV7L ||
        def->os.arch == VIR_ARCH_AARCH64) {
9383 9384

        /* pl011 (used on mach-virt) is a platform device */
9385
        if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
9386 9387
            chr->targetType == VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_SYSTEM &&
            chr->targetModel == VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_PL011) {
9388
            return true;
9389
        }
9390 9391
    }

9392 9393 9394 9395 9396 9397 9398 9399 9400 9401
    if (ARCH_IS_RISCV(def->os.arch)) {

        /* 16550a (used by riscv/virt guests) is a platform device */
        if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
            chr->targetType == VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_SYSTEM &&
            chr->targetModel == VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_16550A) {
            return true;
        }
    }

9402 9403 9404 9405 9406 9407 9408 9409
    /* If we got all the way here and we're still stuck with the default
     * target type for a serial device, it means we have no clue what kind of
     * device we're talking about and we must treat it as a platform device. */
    if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
        chr->targetType == VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_NONE) {
        return true;
    }

9410 9411 9412 9413
    return false;
}


9414 9415
static int
qemuBuildSerialCommandLine(virLogManagerPtr logManager,
9416
                           virSecurityManagerPtr secManager,
9417
                           virCommandPtr cmd,
9418
                           virQEMUDriverConfigPtr cfg,
9419
                           const virDomainDef *def,
9420 9421
                           virQEMUCapsPtr qemuCaps,
                           bool chardevStdioLogd)
9422 9423 9424
{
    size_t i;
    bool havespice = false;
9425 9426
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
9427 9428
    if (chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440

    if (def->nserials) {
        for (i = 0; i < def->ngraphics && !havespice; i++) {
            if (def->graphics[i]->type == VIR_DOMAIN_GRAPHICS_TYPE_SPICE)
                havespice = true;
        }
    }

    for (i = 0; i < def->nserials; i++) {
        virDomainChrDefPtr serial = def->serials[i];
        char *devstr;

9441
        if (serial->source->type == VIR_DOMAIN_CHR_TYPE_SPICEPORT && !havespice)
9442 9443
            continue;

9444 9445
        if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                              cmd, cfg, def,
9446 9447
                                              serial->source,
                                              serial->info.alias,
9448
                                              qemuCaps, cdevflags)))
9449 9450 9451 9452 9453
            return -1;
        virCommandAddArg(cmd, "-chardev");
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);

9454 9455
        /* If the device is not a platform device, build the devstr */
        if (!qemuChrIsPlatformDevice(def, serial)) {
9456 9457 9458
            if (qemuBuildChrDeviceCommandLine(cmd, def, serial, qemuCaps) < 0)
                return -1;
        } else {
9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469
            virQEMUCapsFlags caps;

            caps = qemuChrSerialTargetModelToCaps(serial->targetModel);

            if (caps && !virQEMUCapsGet(qemuCaps, caps)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("'%s' is not supported in this QEMU binary"),
                               virDomainChrSerialTargetModelTypeToString(serial->targetModel));
                return -1;
            }

9470
            virCommandAddArg(cmd, "-serial");
9471
            virCommandAddArgFormat(cmd, "chardev:char%s", serial->info.alias);
9472 9473 9474 9475 9476 9477 9478
        }
    }

    return 0;
}


9479 9480
static int
qemuBuildParallelsCommandLine(virLogManagerPtr logManager,
9481
                              virSecurityManagerPtr secManager,
9482
                              virCommandPtr cmd,
9483
                              virQEMUDriverConfigPtr cfg,
9484
                              const virDomainDef *def,
9485 9486
                              virQEMUCapsPtr qemuCaps,
                              bool chardevStdioLogd)
9487 9488
{
    size_t i;
9489 9490
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
9491 9492
    if (chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
9493 9494 9495 9496 9497

    for (i = 0; i < def->nparallels; i++) {
        virDomainChrDefPtr parallel = def->parallels[i];
        char *devstr;

9498 9499
        if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                              cmd, cfg, def,
9500 9501
                                              parallel->source,
                                              parallel->info.alias,
9502
                                              qemuCaps, cdevflags)))
9503 9504 9505 9506
            return -1;
        virCommandAddArg(cmd, "-chardev");
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);
9507

9508 9509 9510
        if (qemuBuildChrDeviceCommandLine(cmd, def, parallel,
                                          qemuCaps) < 0)
            return -1;
9511 9512 9513 9514 9515 9516
    }

    return 0;
}


9517 9518
static int
qemuBuildChannelsCommandLine(virLogManagerPtr logManager,
9519
                             virSecurityManagerPtr secManager,
9520
                             virCommandPtr cmd,
9521
                             virQEMUDriverConfigPtr cfg,
9522
                             const virDomainDef *def,
9523 9524
                             virQEMUCapsPtr qemuCaps,
                             bool chardevStdioLogd)
9525 9526
{
    size_t i;
9527 9528
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
9529 9530
    if (chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
9531 9532 9533 9534 9535 9536 9537

    for (i = 0; i < def->nchannels; i++) {
        virDomainChrDefPtr channel = def->channels[i];
        char *devstr;

        switch (channel->targetType) {
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_GUESTFWD:
9538 9539
            if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                                  cmd, cfg, def,
9540
                                                  channel->source,
9541
                                                  channel->info.alias,
9542
                                                  qemuCaps, cdevflags)))
9543
                return -1;
9544
            virCommandAddArg(cmd, "-chardev");
9545 9546 9547 9548 9549 9550 9551 9552 9553 9554
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

            if (qemuBuildChrDeviceStr(&devstr, def, channel, qemuCaps) < 0)
                return -1;
            virCommandAddArgList(cmd, "-netdev", devstr, NULL);
            VIR_FREE(devstr);
            break;

        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO:
9555 9556
            if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                                  cmd, cfg, def,
9557 9558
                                                  channel->source,
                                                  channel->info.alias,
9559
                                                  qemuCaps, cdevflags)))
9560 9561 9562 9563
                return -1;
            virCommandAddArg(cmd, "-chardev");
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574

            if (qemuBuildChrDeviceCommandLine(cmd, def, channel, qemuCaps) < 0)
                return -1;
            break;
        }
    }

    return 0;
}


9575 9576
static int
qemuBuildConsoleCommandLine(virLogManagerPtr logManager,
9577
                            virSecurityManagerPtr secManager,
9578
                            virCommandPtr cmd,
9579
                            virQEMUDriverConfigPtr cfg,
9580
                            const virDomainDef *def,
9581 9582
                            virQEMUCapsPtr qemuCaps,
                            bool chardevStdioLogd)
9583 9584
{
    size_t i;
9585 9586
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
9587 9588
    if (chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
9589 9590 9591 9592 9593 9594 9595 9596

    /* Explicit console devices */
    for (i = 0; i < def->nconsoles; i++) {
        virDomainChrDefPtr console = def->consoles[i];
        char *devstr;

        switch (console->targetType) {
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLP:
9597
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SCLPCONSOLE)) {
9598
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
9599
                               _("sclpconsole is not supported in this QEMU binary"));
9600 9601 9602
                return -1;
            }

9603 9604
            if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                                  cmd, cfg, def,
9605 9606
                                                  console->source,
                                                  console->info.alias,
9607
                                                  qemuCaps, cdevflags)))
9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623
                return -1;
            virCommandAddArg(cmd, "-chardev");
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
                return -1;
            break;

        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLPLM:
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SCLPLMCONSOLE)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("sclplmconsole is not supported in this QEMU binary"));
                return -1;
            }

9624 9625
            if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                                  cmd, cfg, def,
9626
                                                  console->source,
9627
                                                  console->info.alias,
9628
                                                  qemuCaps, cdevflags)))
9629
                return -1;
9630
            virCommandAddArg(cmd, "-chardev");
9631 9632 9633 9634 9635 9636 9637 9638
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
                return -1;
            break;

        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO:
9639 9640
            if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                                  cmd, cfg, def,
9641
                                                  console->source,
9642
                                                  console->info.alias,
9643
                                                  qemuCaps, cdevflags)))
9644
                return -1;
9645
            virCommandAddArg(cmd, "-chardev");
9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
                return -1;
            break;

        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL:
            break;

        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported console target type %s"),
                           NULLSTR(virDomainChrConsoleTargetTypeToString(console->targetType)));
            return -1;
        }
    }

    return 0;
}


9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731
char *
qemuBuildRedirdevDevStr(const virDomainDef *def,
                        virDomainRedirdevDefPtr dev,
                        virQEMUCapsPtr qemuCaps)
{
    size_t i;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    virDomainRedirFilterDefPtr redirfilter = def->redirfilter;

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

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("USB redirection is not supported "
                         "by this version of QEMU"));
        goto error;
    }

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

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

        virBufferAddLit(&buf, ",filter=");

        for (i = 0; i < redirfilter->nusbdevs; i++) {
            virDomainRedirFilterUSBDevDefPtr usbdev = redirfilter->usbdevs[i];
            if (usbdev->usbClass >= 0)
                virBufferAsprintf(&buf, "0x%02X:", usbdev->usbClass);
            else
                virBufferAddLit(&buf, "-1:");

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

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

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

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

9732
    if (dev->info.bootIndex)
9733
        virBufferAsprintf(&buf, ",bootindex=%u", dev->info.bootIndex);
9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750

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

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

    return virBufferContentAndReset(&buf);

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


static int
qemuBuildRedirdevCommandLine(virLogManagerPtr logManager,
9751
                             virSecurityManagerPtr secManager,
9752
                             virCommandPtr cmd,
9753
                             virQEMUDriverConfigPtr cfg,
9754
                             const virDomainDef *def,
9755 9756
                             virQEMUCapsPtr qemuCaps,
                             bool chardevStdioLogd)
9757 9758
{
    size_t i;
9759 9760
    unsigned int cdevflags = QEMU_BUILD_CHARDEV_TCP_NOWAIT |
        QEMU_BUILD_CHARDEV_UNIX_FD_PASS;
9761 9762
    if (chardevStdioLogd)
        cdevflags |= QEMU_BUILD_CHARDEV_FILE_LOGD;
9763 9764 9765 9766 9767

    for (i = 0; i < def->nredirdevs; i++) {
        virDomainRedirdevDefPtr redirdev = def->redirdevs[i];
        char *devstr;

9768 9769
        if (!(devstr = qemuBuildChrChardevStr(logManager, secManager,
                                              cmd, cfg, def,
9770
                                              redirdev->source,
9771
                                              redirdev->info.alias,
9772
                                              qemuCaps, cdevflags))) {
9773 9774 9775
            return -1;
        }

9776
        virCommandAddArg(cmd, "-chardev");
9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);

        virCommandAddArg(cmd, "-device");
        if (!(devstr = qemuBuildRedirdevDevStr(def, redirdev, qemuCaps)))
            return -1;
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);
    }

    return 0;
}


9791
static void
9792
qemuBuildDomainLoaderCommandLine(virCommandPtr cmd,
9793
                                 virDomainDefPtr def)
9794 9795 9796 9797 9798 9799
{
    virDomainLoaderDefPtr loader = def->os.loader;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int unit = 0;

    if (!loader)
9800
        return;
9801 9802 9803 9804 9805 9806 9807 9808 9809

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

    case VIR_DOMAIN_LOADER_TYPE_PFLASH:

M
Michal Privoznik 已提交
9810 9811 9812 9813 9814 9815 9816
        if (loader->secure == VIR_TRISTATE_BOOL_YES) {
            virCommandAddArgList(cmd,
                                 "-global",
                                 "driver=cfi.pflash01,property=secure,value=on",
                                 NULL);
        }

9817 9818 9819
        virBufferAddLit(&buf, "file=");
        virQEMUBuildBufferEscapeComma(&buf, loader->path);
        virBufferAsprintf(&buf, ",if=pflash,format=raw,unit=%d", unit);
9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831
        unit++;

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

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

        if (loader->nvram) {
            virBufferFreeAndReset(&buf);
9832 9833 9834
            virBufferAddLit(&buf, "file=");
            virQEMUBuildBufferEscapeComma(&buf, loader->nvram);
            virBufferAsprintf(&buf, ",if=pflash,format=raw,unit=%d", unit);
9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848

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

    case VIR_DOMAIN_LOADER_TYPE_LAST:
        /* nada */
        break;
    }

    virBufferFreeAndReset(&buf);
}

J
John Ferlan 已提交
9849

J
John Ferlan 已提交
9850 9851
static char *
qemuBuildTPMDevStr(const virDomainDef *def,
9852
                   virQEMUCapsPtr qemuCaps)
J
John Ferlan 已提交
9853 9854 9855 9856
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const virDomainTPMDef *tpm = def->tpm;
    const char *model = virDomainTPMModelTypeToString(tpm->model);
9857
    virQEMUCapsFlags flag;
J
John Ferlan 已提交
9858

9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872
    switch (tpm->model) {
    case VIR_DOMAIN_TPM_MODEL_TIS:
        flag = QEMU_CAPS_DEVICE_TPM_TIS;
        break;
    case VIR_DOMAIN_TPM_MODEL_CRB:
        flag = QEMU_CAPS_DEVICE_TPM_CRB;
        break;
    case VIR_DOMAIN_TPM_MODEL_LAST:
    default:
        virReportEnumRangeError(virDomainTPMModel, tpm->model);
        goto error;
    }

    if (!virQEMUCapsGet(qemuCaps, flag)) {
J
John Ferlan 已提交
9873 9874 9875
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("The QEMU executable %s does not support TPM "
                       "model %s"),
9876
                       def->emulator, model);
J
John Ferlan 已提交
9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893
        goto error;
    }

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

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

    return virBufferContentAndReset(&buf);

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


9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918
/* this function is exported so that tests can mock the FDs */
int
qemuBuildTPMOpenBackendFDs(const char *tpmdev,
                           const char *cancel_path,
                           int *tpmfd,
                           int *cancelfd)
{
    if ((*tpmfd = open(tpmdev, O_RDWR)) < 0) {
        virReportSystemError(errno, _("Could not open TPM device %s"),
                             tpmdev);
        return -1;
    }

    if ((*cancelfd = open(cancel_path, O_WRONLY)) < 0) {
        virReportSystemError(errno,
                             _("Could not open TPM device's cancel "
                               "path %s"), cancel_path);
        VIR_FORCE_CLOSE(*tpmfd);
        return -1;
    }

    return 0;
}


J
John Ferlan 已提交
9919 9920 9921 9922 9923
static char *
qemuBuildTPMBackendStr(const virDomainDef *def,
                       virCommandPtr cmd,
                       virQEMUCapsPtr qemuCaps,
                       int *tpmfd,
9924 9925
                       int *cancelfd,
                       char **chardev)
J
John Ferlan 已提交
9926 9927 9928
{
    const virDomainTPMDef *tpm = def->tpm;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
9929
    const char *type = NULL;
9930 9931 9932
    char *cancel_path = NULL;
    char *devset = NULL;
    char *cancelset = NULL;
J
John Ferlan 已提交
9933 9934 9935 9936 9937
    const char *tpmdev;

    *tpmfd = -1;
    *cancelfd = -1;

9938 9939 9940 9941 9942 9943 9944 9945 9946
    switch (tpm->type) {
    case VIR_DOMAIN_TPM_TYPE_PASSTHROUGH:
    case VIR_DOMAIN_TPM_TYPE_EMULATOR:
        type = virDomainTPMBackendTypeToString(tpm->type);
        break;
    case VIR_DOMAIN_TPM_TYPE_LAST:
        goto error;
    }

J
John Ferlan 已提交
9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957
    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;

9958 9959
        if (qemuBuildTPMOpenBackendFDs(tpmdev, cancel_path, tpmfd, cancelfd) < 0)
            goto error;
J
John Ferlan 已提交
9960

9961 9962 9963 9964 9965 9966
        virCommandPassFD(cmd, *tpmfd, VIR_COMMAND_PASS_FD_CLOSE_PARENT);
        virCommandPassFD(cmd, *cancelfd, VIR_COMMAND_PASS_FD_CLOSE_PARENT);

        if (!(devset = qemuVirCommandGetDevSet(cmd, *tpmfd)) ||
            !(cancelset = qemuVirCommandGetDevSet(cmd, *cancelfd)))
            goto error;
J
John Ferlan 已提交
9967 9968

        virBufferAddLit(&buf, ",path=");
9969
        virQEMUBuildBufferEscapeComma(&buf, devset);
J
John Ferlan 已提交
9970 9971

        virBufferAddLit(&buf, ",cancel-path=");
9972
        virQEMUBuildBufferEscapeComma(&buf, cancelset);
J
John Ferlan 已提交
9973 9974

        VIR_FREE(devset);
9975
        VIR_FREE(cancelset);
J
John Ferlan 已提交
9976 9977 9978
        VIR_FREE(cancel_path);

        break;
9979
    case VIR_DOMAIN_TPM_TYPE_EMULATOR:
9980 9981 9982 9983 9984 9985 9986 9987 9988 9989
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_TPM_EMULATOR))
            goto no_support;

        virBufferAddLit(&buf, ",chardev=chrtpm");

        if (virAsprintf(chardev, "socket,id=chrtpm,path=%s",
                        tpm->data.emulator.source.data.nix.path) < 0)
            goto error;

        break;
J
John Ferlan 已提交
9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002
    case VIR_DOMAIN_TPM_TYPE_LAST:
        goto error;
    }

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

    return virBufferContentAndReset(&buf);

 no_support:
    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                   _("The QEMU executable %s does not support TPM "
                     "backend type %s"),
10003
                   def->emulator, type);
J
John Ferlan 已提交
10004 10005 10006 10007 10008 10009 10010 10011 10012 10013

 error:
    VIR_FREE(devset);
    VIR_FREE(cancel_path);

    virBufferFreeAndReset(&buf);
    return NULL;
}


10014
static int
10015 10016 10017
qemuBuildTPMCommandLine(virCommandPtr cmd,
                        const virDomainDef *def,
                        virQEMUCapsPtr qemuCaps)
10018 10019
{
    char *optstr;
10020
    char *chardev = NULL;
10021 10022 10023
    int tpmfd = -1;
    int cancelfd = -1;
    char *fdset;
10024

10025 10026 10027 10028
    if (!def->tpm)
        return 0;

    if (!(optstr = qemuBuildTPMBackendStr(def, cmd, qemuCaps,
10029 10030
                                          &tpmfd, &cancelfd,
                                          &chardev)))
10031 10032 10033 10034 10035
        return -1;

    virCommandAddArgList(cmd, "-tpmdev", optstr, NULL);
    VIR_FREE(optstr);

10036 10037 10038 10039 10040
    if (chardev) {
        virCommandAddArgList(cmd, "-chardev", chardev, NULL);
        VIR_FREE(chardev);
    }

10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058
    if (tpmfd >= 0) {
        fdset = qemuVirCommandGetFDSet(cmd, tpmfd);
        if (!fdset)
            return -1;

        virCommandAddArgList(cmd, "-add-fd", fdset, NULL);
        VIR_FREE(fdset);
    }

    if (cancelfd >= 0) {
        fdset = qemuVirCommandGetFDSet(cmd, cancelfd);
        if (!fdset)
            return -1;

        virCommandAddArgList(cmd, "-add-fd", fdset, NULL);
        VIR_FREE(fdset);
    }

10059
    if (!(optstr = qemuBuildTPMDevStr(def, qemuCaps)))
10060 10061 10062 10063 10064 10065 10066 10067
        return -1;

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

    return 0;
}

10068
static int
J
Ján Tomko 已提交
10069
qemuBuildSEVCommandLine(virDomainObjPtr vm, virCommandPtr cmd,
10070
                        virDomainSEVDefPtr sev)
10071
{
10072
    virBuffer buf = VIR_BUFFER_INITIALIZER;
10073 10074
    qemuDomainObjPrivatePtr priv = vm->privateData;
    char *path = NULL;
10075
    int ret = -1;
10076 10077 10078 10079 10080 10081 10082

    if (!sev)
        return 0;

    VIR_DEBUG("policy=0x%x cbitpos=%d reduced_phys_bits=%d",
              sev->policy, sev->cbitpos, sev->reduced_phys_bits);

10083 10084 10085
    virBufferAsprintf(&buf, "sev-guest,id=sev0,cbitpos=%d", sev->cbitpos);
    virBufferAsprintf(&buf, ",reduced-phys-bits=%d", sev->reduced_phys_bits);
    virBufferAsprintf(&buf, ",policy=0x%x", sev->policy);
10086 10087 10088

    if (sev->dh_cert) {
        if (virAsprintf(&path, "%s/dh_cert.base64", priv->libDir) < 0)
10089
            goto cleanup;
10090
        virBufferAsprintf(&buf, ",dh-cert-file=%s", path);
10091 10092 10093 10094 10095
        VIR_FREE(path);
    }

    if (sev->session) {
        if (virAsprintf(&path, "%s/session.base64", priv->libDir) < 0)
10096
            goto cleanup;
10097
        virBufferAsprintf(&buf, ",session-file=%s", path);
10098 10099 10100
        VIR_FREE(path);
    }

10101 10102 10103 10104 10105 10106
    virCommandAddArg(cmd, "-object");
    virCommandAddArgBuffer(cmd, &buf);
    ret = 0;
 cleanup:
    virBufferFreeAndReset(&buf);
    return ret;
10107
}
10108

M
Marc-André Lureau 已提交
10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130
static int
qemuBuildVMCoreInfoCommandLine(virCommandPtr cmd,
                               const virDomainDef *def,
                               virQEMUCapsPtr qemuCaps)
{
    virTristateSwitch vmci = def->features[VIR_DOMAIN_FEATURE_VMCOREINFO];

    if (vmci != VIR_TRISTATE_SWITCH_ON)
        return 0;

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VMCOREINFO)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("vmcoreinfo is not available "
                         "with this QEMU binary"));
        return -1;
    }

    virCommandAddArgList(cmd, "-device", "vmcoreinfo", NULL);
    return 0;
}


10131 10132 10133 10134 10135 10136 10137 10138 10139
static int
qemuBuildPanicCommandLine(virCommandPtr cmd,
                          const virDomainDef *def,
                          virQEMUCapsPtr qemuCaps)
{
    size_t i;

    for (i = 0; i < def->npanics; i++) {
        switch ((virDomainPanicModel) def->panics[i]->model) {
10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158
        case VIR_DOMAIN_PANIC_MODEL_S390:
            /* For s390 guests, the hardware provides the same
             * functionality as the pvpanic device. The address
             * cannot be configured by the user */
            if (!ARCH_IS_S390(def->os.arch)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("only S390 guests support "
                                 "panic device of model 's390'"));
                return -1;
            }
            if (def->panics[i]->info.type !=
                VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("setting the panic device address is not "
                                 "supported for model 's390'"));
                return -1;
            }
            break;

10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181
        case VIR_DOMAIN_PANIC_MODEL_HYPERV:
            /* Panic with model 'hyperv' is not a device, it should
             * be configured in cpu commandline. The address
             * cannot be configured by the user */
            if (!ARCH_IS_X86(def->os.arch)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("only i686 and x86_64 guests support "
                                 "panic device of model 'hyperv'"));
                return -1;
            }
            if (def->panics[i]->info.type !=
                VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("setting the panic device address is not "
                                 "supported for model 'hyperv'"));
                return -1;
            }
            break;

        case VIR_DOMAIN_PANIC_MODEL_PSERIES:
            /* For pSeries guests, the firmware provides the same
             * functionality as the pvpanic device. The address
             * cannot be configured by the user */
10182
            if (!qemuDomainIsPSeries(def)) {
10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("only pSeries guests support panic device "
                                 "of model 'pseries'"));
                return -1;
            }
            if (def->panics[i]->info.type !=
                VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("setting the panic device address is not "
                                 "supported for model 'pseries'"));
                return -1;
            }
            break;

        case VIR_DOMAIN_PANIC_MODEL_ISA:
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PANIC)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("the QEMU binary does not support the "
10201
                                 "ISA panic device"));
10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233
                return -1;
            }

            switch (def->panics[i]->info.type) {
            case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_ISA:
                virCommandAddArg(cmd, "-device");
                virCommandAddArgFormat(cmd, "pvpanic,ioport=%d",
                                       def->panics[i]->info.addr.isa.iobase);
                break;

            case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE:
                virCommandAddArgList(cmd, "-device", "pvpanic", NULL);
                break;

            default:
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("panic is supported only "
                                 "with ISA address type"));
                return -1;
            }

        /* default model value was changed before in post parse */
        case VIR_DOMAIN_PANIC_MODEL_DEFAULT:
        case VIR_DOMAIN_PANIC_MODEL_LAST:
            break;
        }
    }

    return 0;
}


10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248
static virJSONValuePtr
qemuBuildPRManagerInfoPropsInternal(const char *alias,
                                    const char *path)
{
    virJSONValuePtr ret = NULL;

    if (qemuMonitorCreateObjectProps(&ret,
                                     "pr-manager-helper", alias,
                                     "s:path", path, NULL) < 0)
        return NULL;

    return ret;
}


10249
/**
10250
 * qemuBuildPRManagedManagerInfoProps:
10251
 *
10252 10253
 * Build the JSON properties for the pr-manager object corresponding to the PR
 * daemon managed by libvirt.
10254
 */
10255
virJSONValuePtr
10256
qemuBuildPRManagedManagerInfoProps(qemuDomainObjPrivatePtr priv)
10257
{
10258
    char *path = NULL;
10259 10260
    virJSONValuePtr ret = NULL;

10261
    if (!(path = qemuDomainGetManagedPRSocketPath(priv)))
10262 10263
        return NULL;

10264 10265 10266 10267
    ret = qemuBuildPRManagerInfoPropsInternal(qemuDomainGetManagedPRAlias(),
                                              path);

    VIR_FREE(path);
10268
    return ret;
10269 10270 10271
}


10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284
/**
 * qemuBuildPRManagerInfoProps:
 * @src: storage source
 *
 * Build the JSON properties for the pr-manager object.
 */
virJSONValuePtr
qemuBuildPRManagerInfoProps(virStorageSourcePtr src)
{
    return qemuBuildPRManagerInfoPropsInternal(src->pr->mgralias, src->pr->path);
}


10285
static int
10286 10287 10288
qemuBuildManagedPRCommandLine(virCommandPtr cmd,
                              const virDomainDef *def,
                              qemuDomainObjPrivatePtr priv)
10289
{
10290
    virBuffer buf = VIR_BUFFER_INITIALIZER;
10291 10292 10293
    virJSONValuePtr props = NULL;
    int ret = -1;

10294 10295
    if (!virDomainDefHasManagedPR(def))
        return 0;
10296

10297 10298
    if (!(props = qemuBuildPRManagedManagerInfoProps(priv)))
        return -1;
10299

10300 10301
    if (virQEMUBuildObjectCommandlineFromJSON(&buf, props) < 0)
        goto cleanup;
10302

10303 10304
    virCommandAddArg(cmd, "-object");
    virCommandAddArgBuffer(cmd, &buf);
10305 10306 10307

    ret = 0;
 cleanup:
10308
    virBufferFreeAndReset(&buf);
10309 10310 10311 10312 10313
    virJSONValueFree(props);
    return ret;
}


10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330
/**
 * qemuBuildCommandLineValidate:
 *
 * Prior to taking the plunge and building a long command line only
 * to find some configuration option isn't valid, let's do a couple
 * of checks and fail early.
 *
 * Returns 0 on success, returns -1 and messages what the issue is.
 */
static int
qemuBuildCommandLineValidate(virQEMUDriverPtr driver,
                             const virDomainDef *def)
{
    size_t i;
    int sdl = 0;
    int vnc = 0;
    int spice = 0;
10331
    int egl_headless = 0;
10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351

    if (!virQEMUDriverIsPrivileged(driver)) {
        /* If we have no cgroups then we can have no tunings that
         * require them */

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

        if (def->blkio.weight) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Block I/O tuning is not available in session mode"));
            return -1;
        }

        if (def->cputune.sharesSpecified || def->cputune.period ||
10352 10353
            def->cputune.quota || def->cputune.global_period ||
            def->cputune.global_quota || def->cputune.emulator_period ||
10354 10355
            def->cputune.emulator_quota || def->cputune.iothread_period ||
            def->cputune.iothread_quota) {
10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("CPU tuning is not available in session mode"));
            return -1;
        }
    }

    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;
10373 10374 10375
        case VIR_DOMAIN_GRAPHICS_TYPE_EGL_HEADLESS:
            ++egl_headless;
            break;
10376 10377 10378 10379
        case VIR_DOMAIN_GRAPHICS_TYPE_RDP:
        case VIR_DOMAIN_GRAPHICS_TYPE_DESKTOP:
        case VIR_DOMAIN_GRAPHICS_TYPE_LAST:
            break;
10380 10381 10382
        }
    }

10383
    if (sdl > 1 || vnc > 1 || spice > 1 || egl_headless > 1) {
10384 10385
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only 1 graphics device of each type "
10386
                         "(sdl, vnc, spice, headless) is supported"));
10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402
        return -1;
    }

    if (def->virtType == VIR_DOMAIN_VIRT_XEN ||
        def->os.type == VIR_DOMAIN_OSTYPE_XEN ||
        def->os.type == VIR_DOMAIN_OSTYPE_LINUX) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("qemu emulator '%s' does not support xen"),
                       def->emulator);
        return -1;
    }

    return 0;
}


10403 10404 10405 10406 10407
static int
qemuBuildSeccompSandboxCommandLine(virCommandPtr cmd,
                                   virQEMUDriverConfigPtr cfg,
                                   virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED)
{
10408
    if (cfg->seccompSandbox == 0) {
10409 10410
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SECCOMP_SANDBOX))
            virCommandAddArgList(cmd, "-sandbox", "off", NULL);
10411 10412 10413
        return 0;
    }

10414 10415 10416 10417 10418 10419 10420 10421 10422 10423
    /* Use blacklist by default if supported */
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SECCOMP_BLACKLIST)) {
        virCommandAddArgList(cmd, "-sandbox",
                             "on,obsolete=deny,elevateprivileges=deny,"
                             "spawn=deny,resourcecontrol=deny",
                             NULL);
        return 0;
    }

    /* Seccomp whitelist is opt-in */
10424
    if (cfg->seccompSandbox > 0)
10425 10426 10427 10428 10429 10430 10431
        virCommandAddArgList(cmd, "-sandbox", "on", NULL);

    return 0;

}


J
Ján Tomko 已提交
10432
char *
10433 10434
qemuBuildVsockDevStr(virDomainDefPtr def,
                     virDomainVsockDefPtr vsock,
J
Ján Tomko 已提交
10435 10436
                     virQEMUCapsPtr qemuCaps,
                     const char *fdprefix)
10437 10438 10439
{
    qemuDomainVsockPrivatePtr priv = (qemuDomainVsockPrivatePtr)vsock->privateData;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
10440
    char *ret = NULL;
10441

10442

10443 10444
    if (qemuBuildVirtioDevStr(&buf, "vhost-vsock",
                              VIR_DOMAIN_DEVICE_VSOCK, vsock) < 0) {
10445
        goto cleanup;
10446
    }
10447

10448 10449
    virBufferAsprintf(&buf, ",id=%s", vsock->info.alias);
    virBufferAsprintf(&buf, ",guest-cid=%u", vsock->guest_cid);
J
Ján Tomko 已提交
10450
    virBufferAsprintf(&buf, ",vhostfd=%s%u", fdprefix, priv->vhostfd);
10451 10452 10453 10454 10455 10456
    if (qemuBuildDeviceAddressStr(&buf, def, &vsock->info, qemuCaps) < 0)
        goto cleanup;

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

10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474
    ret = virBufferContentAndReset(&buf);

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


static int
qemuBuildVsockCommandLine(virCommandPtr cmd,
                          virDomainDefPtr def,
                          virDomainVsockDefPtr vsock,
                          virQEMUCapsPtr qemuCaps)
{
    qemuDomainVsockPrivatePtr priv = (qemuDomainVsockPrivatePtr)vsock->privateData;
    char *devstr = NULL;
    int ret = -1;

J
Ján Tomko 已提交
10475
    if (!(devstr = qemuBuildVsockDevStr(def, vsock, qemuCaps, "")))
10476
        goto cleanup;
10477 10478 10479

    virCommandPassFD(cmd, priv->vhostfd, VIR_COMMAND_PASS_FD_CLOSE_PARENT);
    priv->vhostfd = -1;
10480 10481 10482 10483

    if (qemuCommandAddExtDevice(cmd, &vsock->info) < 0)
        goto cleanup;

10484 10485 10486 10487 10488 10489 10490 10491 10492
    virCommandAddArgList(cmd, "-device", devstr, NULL);

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


10493 10494 10495 10496 10497
/*
 * Constructs a argv suitable for launching qemu with config defined
 * for a given virtual machine.
 */
virCommandPtr
10498
qemuBuildCommandLine(virQEMUDriverPtr driver,
10499
                     virLogManagerPtr logManager,
10500
                     virSecurityManagerPtr secManager,
10501
                     virDomainObjPtr vm,
10502
                     const char *migrateURI,
10503
                     virDomainSnapshotObjPtr snapshot,
10504
                     virNetDevVPortProfileOp vmop,
10505
                     bool standalone,
10506
                     bool enableFips,
10507
                     size_t *nnicindexes,
10508
                     int **nicindexes)
10509
{
10510
    size_t i;
10511 10512
    char uuid[VIR_UUID_STRING_BUFLEN];
    virCommandPtr cmd = NULL;
10513
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
10514
    unsigned int bootHostdevNet = 0;
10515 10516 10517 10518
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainDefPtr def = vm->def;
    virQEMUCapsPtr qemuCaps = priv->qemuCaps;
    bool chardevStdioLogd = priv->chardevStdioLogd;
10519

10520
    VIR_DEBUG("driver=%p def=%p mon=%p json=%d "
10521
              "qemuCaps=%p migrateURI=%s snapshot=%p vmop=%d",
10522
              driver, def, priv->monConfig, priv->monJSON,
10523
              qemuCaps, migrateURI, snapshot, vmop);
10524

10525 10526
    if (qemuBuildCommandLineValidate(driver, def) < 0)
        goto error;
10527

J
John Ferlan 已提交
10528
    cmd = virCommandNew(def->emulator);
10529

10530
    virCommandAddEnvPassCommon(cmd);
10531

M
Marc-André Lureau 已提交
10532 10533
    if (qemuBuildNameCommandLine(cmd, cfg, def, qemuCaps) < 0)
        goto error;
C
Cole Robinson 已提交
10534 10535 10536 10537

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

10538
    if (qemuBuildMasterKeyCommandLine(cmd, priv) < 0)
10539 10540
        goto error;

10541
    if (qemuBuildManagedPRCommandLine(cmd, def, priv) < 0)
10542 10543
        goto error;

10544
    if (enableFips)
10545
        virCommandAddArg(cmd, "-enable-fips");
10546

10547
    if (qemuBuildMachineCommandLine(cmd, cfg, def, qemuCaps) < 0)
10548
        goto error;
10549

10550 10551
    qemuBuildTSEGCommandLine(cmd, def);

10552
    if (qemuBuildCpuCommandLine(cmd, driver, def, qemuCaps) < 0)
10553
        goto error;
10554

10555
    qemuBuildDomainLoaderCommandLine(cmd, def);
10556

10557
    if (!migrateURI && !snapshot && qemuDomainAlignMemorySizes(def) < 0)
10558
        goto error;
10559

10560
    if (qemuBuildMemCommandLine(cmd, cfg, def, qemuCaps, priv) < 0)
10561 10562
        goto error;

10563
    if (qemuBuildSmpCommandLine(cmd, def) < 0)
10564 10565
        goto error;

10566
    if (qemuBuildIOThreadCommandLine(cmd, def) < 0)
10567
        goto error;
J
John Ferlan 已提交
10568

10569
    if (virDomainNumaGetNodeCount(def->numa) &&
10570
        qemuBuildNumaArgStr(cfg, def, cmd, priv) < 0)
10571 10572
        goto error;

10573
    if (qemuBuildMemoryDeviceCommandLine(cmd, cfg, def, priv) < 0)
10574
        goto error;
10575

10576
    virUUIDFormat(def->uuid, uuid);
10577
    virCommandAddArgList(cmd, "-uuid", uuid, NULL);
10578

10579
    if (qemuBuildSmbiosCommandLine(cmd, driver, def) < 0)
10580 10581 10582
        goto error;

    if (qemuBuildVMGenIDCommandLine(cmd, def, qemuCaps) < 0)
10583
        goto error;
10584

10585 10586 10587 10588 10589 10590 10591
    /*
     * 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...
     */
10592
    if (!def->ngraphics) {
J
Ján Tomko 已提交
10593 10594
        virCommandAddArg(cmd, "-display");
        virCommandAddArg(cmd, "none");
10595

10596
        if (cfg->nogfxAllowHostAudio)
10597
            virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
10598 10599 10600 10601
        else
            virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");
    }

J
Ján Tomko 已提交
10602
    /* Disable global config files and default devices */
10603
    virCommandAddArg(cmd, "-no-user-config");
J
Ján Tomko 已提交
10604
    virCommandAddArg(cmd, "-nodefaults");
10605

10606 10607
    if (qemuBuildSgaCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10608

10609
    if (qemuBuildMonitorCommandLine(logManager, secManager, cmd, cfg, def, priv) < 0)
10610
        goto error;
10611

10612 10613
    if (qemuBuildClockCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10614

10615
    if (qemuBuildPMCommandLine(cmd, def, priv) < 0)
10616
        goto error;
10617

10618
    if (qemuBuildBootCommandLine(cmd, def, qemuCaps) < 0)
10619
        goto error;
J
Ján Tomko 已提交
10620

10621 10622 10623
    if (qemuBuildIOMMUCommandLine(cmd, def, qemuCaps) < 0)
        goto error;

10624 10625
    if (qemuBuildGlobalControllerCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10626

10627
    if (qemuBuildControllersCommandLine(cmd, def, qemuCaps) < 0)
10628
        goto error;
10629

10630 10631
    if (qemuBuildHubCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10632

10633 10634 10635 10636
    if (qemuBuildControllersByTypeCommandLine(cmd, def, qemuCaps,
                                              VIR_DOMAIN_CONTROLLER_TYPE_CCID) < 0)
        goto error;

10637
    if (qemuBuildDisksCommandLine(cmd, def, qemuCaps) < 0)
10638
        goto error;
E
Eric Blake 已提交
10639

10640 10641
    if (qemuBuildFSDevCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10642

10643
    if (qemuBuildNetCommandLine(driver, logManager, secManager, cmd, def,
10644
                                qemuCaps, vmop, standalone,
10645
                                nnicindexes, nicindexes, &bootHostdevNet) < 0)
10646
        goto error;
10647

10648
    if (qemuBuildSmartcardCommandLine(logManager, secManager, cmd, cfg, def, qemuCaps,
10649
                                      chardevStdioLogd) < 0)
10650
        goto error;
10651

10652
    if (qemuBuildSerialCommandLine(logManager, secManager, cmd, cfg, def, qemuCaps,
10653
                                   chardevStdioLogd) < 0)
10654
        goto error;
M
Martin Kletzander 已提交
10655

10656
    if (qemuBuildParallelsCommandLine(logManager, secManager, cmd, cfg, def, qemuCaps,
10657
                                      chardevStdioLogd) < 0)
10658
        goto error;
10659

10660
    if (qemuBuildChannelsCommandLine(logManager, secManager, cmd, cfg, def, qemuCaps,
10661
                                     chardevStdioLogd) < 0)
10662
        goto error;
10663

10664
    if (qemuBuildConsoleCommandLine(logManager, secManager, cmd, cfg, def, qemuCaps,
10665
                                    chardevStdioLogd) < 0)
10666
        goto error;
10667

10668 10669
    if (qemuBuildTPMCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10670

10671 10672
    if (qemuBuildInputCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10673

10674 10675
    if (qemuBuildGraphicsCommandLine(cfg, cmd, def, qemuCaps) < 0)
        goto error;
10676

10677 10678
    if (qemuBuildVideoCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10679

10680 10681
    if (qemuBuildSoundCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10682

10683 10684
    if (qemuBuildWatchdogCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10685

10686
    if (qemuBuildRedirdevCommandLine(logManager, secManager, cmd, cfg, def, qemuCaps,
10687
                                     chardevStdioLogd) < 0)
10688
        goto error;
10689

10690
    if (qemuBuildHostdevCommandLine(cmd, def, qemuCaps, &bootHostdevNet) < 0)
10691
        goto error;
10692

10693
    if (migrateURI)
10694
        virCommandAddArgList(cmd, "-incoming", migrateURI, NULL);
10695

10696 10697
    if (qemuBuildMemballoonCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10698

10699
    if (qemuBuildRNGCommandLine(logManager, secManager, cmd, cfg, def, qemuCaps,
10700
                                chardevStdioLogd) < 0)
10701
        goto error;
10702

10703 10704
    if (qemuBuildNVRAMCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
10705

M
Marc-André Lureau 已提交
10706 10707 10708
    if (qemuBuildVMCoreInfoCommandLine(cmd, def, qemuCaps) < 0)
        goto error;

J
Ján Tomko 已提交
10709
    if (qemuBuildSEVCommandLine(vm, cmd, def->sev) < 0)
10710 10711
        goto error;

10712 10713
    if (snapshot)
        virCommandAddArgList(cmd, "-loadvm", snapshot->def->name, NULL);
10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726

    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] : "");
    }

10727 10728
    if (qemuBuildSeccompSandboxCommandLine(cmd, cfg, qemuCaps) < 0)
        goto error;
10729

10730 10731
    if (qemuBuildPanicCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
H
Hu Tao 已提交
10732

10733
    for (i = 0; i < def->nshmems; i++) {
10734
        if (qemuBuildShmemCommandLine(logManager, secManager, cmd, cfg,
10735 10736
                                      def, def->shmems[i], qemuCaps,
                                      chardevStdioLogd))
10737 10738 10739
            goto error;
    }

10740 10741 10742 10743
    if (def->vsock &&
        qemuBuildVsockCommandLine(cmd, def, def->vsock, qemuCaps) < 0)
        goto error;

10744 10745
    /* In some situations, eg. VFIO passthrough, QEMU might need to lock a
     * significant amount of memory, so we need to set the limit accordingly */
10746
    virCommandSetMaxMemLock(cmd, qemuDomainGetMemLockLimitBytes(def));
10747

10748 10749 10750 10751
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MSG_TIMESTAMP) &&
        cfg->logTimestamp)
        virCommandAddArgList(cmd, "-msg", "timestamp=on", NULL);

10752
    virObjectUnref(cfg);
10753 10754
    return cmd;

10755
 error:
10756
    virObjectUnref(cfg);
10757 10758 10759 10760
    virCommandFree(cmd);
    return NULL;
}

10761

10762 10763 10764
/* This function generates the correct '-device' string for character
 * devices of each architecture.
 */
10765 10766
static int
qemuBuildSerialChrDeviceStr(char **deviceStr,
10767
                            const virDomainDef *def,
10768
                            virDomainChrDefPtr serial,
10769
                            virQEMUCapsPtr qemuCaps)
10770 10771
{
    virBuffer cmd = VIR_BUFFER_INITIALIZER;
10772
    virQEMUCapsFlags caps;
10773

10774
    switch ((virDomainChrSerialTargetModel) serial->targetModel) {
10775
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_ISA_SERIAL:
10776 10777 10778
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_USB_SERIAL:
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_PCI_SERIAL:
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_SPAPR_VTY:
10779 10780
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_SCLPCONSOLE:
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_SCLPLMCONSOLE:
10781

10782
        caps = qemuChrSerialTargetModelToCaps(serial->targetModel);
M
Michal Privoznik 已提交
10783

10784 10785 10786 10787
        if (caps && !virQEMUCapsGet(qemuCaps, caps)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("'%s' is not supported in this QEMU binary"),
                           virDomainChrSerialTargetModelTypeToString(serial->targetModel));
10788
            goto error;
G
Guannan Ren 已提交
10789
        }
10790
        break;
10791

10792
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_PL011:
10793
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_16550A:
10794 10795 10796 10797 10798 10799 10800 10801 10802
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_NONE:
    case VIR_DOMAIN_CHR_SERIAL_TARGET_MODEL_LAST:
        /* Except from _LAST, which is just a guard value and will never
         * be used, all of the above are platform devices, which means
         * qemuBuildSerialCommandLine() will have taken the appropriate
         * branch and we will not have ended up here. */
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Invalid target model for serial device"));
        goto error;
G
Guannan Ren 已提交
10803 10804
    }

10805 10806 10807 10808
    virBufferAsprintf(&cmd, "%s,chardev=char%s,id=%s",
                      virDomainChrSerialTargetModelTypeToString(serial->targetModel),
                      serial->info.alias, serial->info.alias);

10809 10810 10811
    if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
        goto error;

10812
    if (virBufferCheckError(&cmd) < 0)
10813 10814
        goto error;

10815 10816
    *deviceStr = virBufferContentAndReset(&cmd);
    return 0;
10817

10818
 error:
10819
    virBufferFreeAndReset(&cmd);
10820 10821 10822 10823 10824 10825 10826 10827
    return -1;
}

static int
qemuBuildParallelChrDeviceStr(char **deviceStr,
                              virDomainChrDefPtr chr)
{
    if (virAsprintf(deviceStr, "isa-parallel,chardev=char%s,id=%s",
J
Ján Tomko 已提交
10828
                    chr->info.alias, chr->info.alias) < 0)
10829 10830
        return -1;
    return 0;
10831
}
10832

10833 10834
static int
qemuBuildChannelChrDeviceStr(char **deviceStr,
10835
                             const virDomainDef *def,
10836
                             virDomainChrDefPtr chr)
10837 10838 10839 10840 10841
{
    int ret = -1;
    char *addr = NULL;
    int port;

10842
    switch ((virDomainChrChannelTargetType)chr->targetType) {
10843 10844 10845 10846 10847 10848 10849 10850
    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,
10851
                        "user,guestfwd=tcp:%s:%i-chardev:char%s,id=user-%s",
J
Ján Tomko 已提交
10852
                        addr, port, chr->info.alias, chr->info.alias) < 0)
10853 10854 10855 10856
            goto cleanup;
        break;

    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO:
10857
        if (!(*deviceStr = qemuBuildVirtioSerialPortDevStr(def, chr)))
10858
            goto cleanup;
10859 10860
        break;

J
Joao Martins 已提交
10861
    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_XEN:
10862 10863 10864 10865 10866 10867
    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_NONE:
    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_LAST:
        return ret;
    }

    ret = 0;
10868
 cleanup:
10869 10870 10871 10872 10873 10874
    VIR_FREE(addr);
    return ret;
}

static int
qemuBuildConsoleChrDeviceStr(char **deviceStr,
10875
                             const virDomainDef *def,
10876
                             virDomainChrDefPtr chr)
10877 10878 10879
{
    int ret = -1;

10880
    switch ((virDomainChrConsoleTargetType)chr->targetType) {
10881 10882 10883 10884 10885 10886 10887
    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:
10888
        if (!(*deviceStr = qemuBuildVirtioSerialPortDevStr(def, chr)))
10889 10890 10891 10892
            goto cleanup;
        break;

    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL:
10893 10894
        break;

10895 10896 10897 10898 10899 10900
    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:
10901 10902 10903 10904
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported console target type %s"),
                       NULLSTR(virDomainChrConsoleTargetTypeToString(chr->targetType)));
        goto cleanup;
10905 10906 10907
    }

    ret = 0;
10908
 cleanup:
10909 10910 10911 10912 10913
    return ret;
}

int
qemuBuildChrDeviceStr(char **deviceStr,
10914
                      const virDomainDef *vmdef,
10915 10916 10917 10918 10919
                      virDomainChrDefPtr chr,
                      virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

10920
    switch ((virDomainChrDeviceType)chr->deviceType) {
10921
    case VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL:
10922
        ret = qemuBuildSerialChrDeviceStr(deviceStr, vmdef, chr, qemuCaps);
10923 10924 10925 10926 10927 10928 10929
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL:
        ret = qemuBuildParallelChrDeviceStr(deviceStr, chr);
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
10930
        ret = qemuBuildChannelChrDeviceStr(deviceStr, vmdef, chr);
10931 10932 10933
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
10934
        ret = qemuBuildConsoleChrDeviceStr(deviceStr, vmdef, chr);
10935 10936 10937 10938 10939 10940 10941 10942
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_LAST:
        return ret;
    }

    return ret;
}
10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966


virJSONValuePtr
qemuBuildHotpluggableCPUProps(const virDomainVcpuDef *vcpu)
{
    qemuDomainVcpuPrivatePtr vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpu);
    virJSONValuePtr ret = NULL;

    if (virJSONValueObjectCreate(&ret, "s:driver", vcpupriv->type,
                                       "s:id", vcpupriv->alias, NULL) < 0)
        goto error;

    if (vcpupriv->socket_id != -1 &&
        virJSONValueObjectAdd(ret, "i:socket-id", vcpupriv->socket_id, NULL) < 0)
        goto error;

    if (vcpupriv->core_id != -1 &&
        virJSONValueObjectAdd(ret, "i:core-id", vcpupriv->core_id, NULL) < 0)
        goto error;

    if (vcpupriv->thread_id != -1 &&
        virJSONValueObjectAdd(ret, "i:thread-id", vcpupriv->thread_id, NULL) < 0)
        goto error;

10967 10968 10969 10970
    if (vcpupriv->node_id != -1 &&
        virJSONValueObjectAdd(ret, "i:node-id", vcpupriv->node_id, NULL) < 0)
        goto error;

10971 10972 10973 10974 10975 10976
    return ret;

 error:
    virJSONValueFree(ret);
    return NULL;
}
10977 10978 10979 10980 10981 10982


/**
 * qemuBuildStorageSourceAttachPrepareDrive:
 * @disk: disk object to prepare
 * @qemuCaps: qemu capabilities object
10983
 * @driveBoot: bootable flag for disks which don't have -device part
10984 10985 10986 10987 10988 10989
 *
 * Prepare qemuBlockStorageSourceAttachDataPtr for use with the old approach
 * using -drive/drive_add. See qemuBlockStorageSourceAttachPrepareBlockdev.
 */
qemuBlockStorageSourceAttachDataPtr
qemuBuildStorageSourceAttachPrepareDrive(virDomainDiskDefPtr disk,
10990
                                         virQEMUCapsPtr qemuCaps)
10991 10992 10993 10994 10995 10996
{
    qemuBlockStorageSourceAttachDataPtr data = NULL;

    if (VIR_ALLOC(data) < 0)
        return NULL;

10997
    if (!(data->driveCmd = qemuBuildDriveStr(disk, qemuCaps)) ||
10998 10999 11000 11001 11002 11003 11004
        !(data->driveAlias = qemuAliasDiskDriveFromDisk(disk))) {
        qemuBlockStorageSourceAttachDataFree(data);
        return NULL;
    }

    return data;
}
11005 11006 11007 11008 11009 11010


/**
 * qemuBuildStorageSourceAttachPrepareCommon:
 * @src: storage source
 * @data: already initialized data for disk source addition
11011
 * @qemuCaps: qemu capabilities object
11012 11013 11014 11015 11016 11017
 *
 * Prepare data for configuration associated with the disk source such as
 * secrets/TLS/pr objects etc ...
 */
int
qemuBuildStorageSourceAttachPrepareCommon(virStorageSourcePtr src,
11018 11019
                                          qemuBlockStorageSourceAttachDataPtr data,
                                          virQEMUCapsPtr qemuCaps)
11020
{
11021 11022
    qemuDomainStorageSourcePrivatePtr srcpriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);

11023 11024 11025 11026 11027
    if (src->pr &&
        !virStoragePRDefIsManaged(src->pr) &&
        !(data->prmgrProps = qemuBuildPRManagerInfoProps(src)))
        return -1;

11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038
    if (srcpriv) {
        if (srcpriv->secinfo &&
            srcpriv->secinfo->type == VIR_DOMAIN_SECRET_INFO_TYPE_AES &&
            qemuBuildSecretInfoProps(srcpriv->secinfo, &data->authsecretProps) < 0)
            return -1;

        if (srcpriv->encinfo &&
            qemuBuildSecretInfoProps(srcpriv->encinfo, &data->encryptsecretProps) < 0)
            return -1;
    }

11039 11040 11041 11042 11043
    if (src->haveTLS == VIR_TRISTATE_BOOL_YES &&
        qemuBuildTLSx509BackendProps(src->tlsCertdir, false, true, src->tlsAlias,
                                     NULL, qemuCaps, &data->tlsProps) < 0)
        return -1;

11044 11045
    return 0;
}