qemu_command.c 314.7 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 25 26
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

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

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

#define VIR_FROM_THIS VIR_FROM_QEMU

69 70
VIR_LOG_INIT("qemu.qemu_command");

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


VIR_ENUM_DECL(qemuDiskCacheV2)

VIR_ENUM_IMPL(qemuDiskCacheV2, VIR_DOMAIN_DISK_CACHE_LAST,
              "default",
              "none",
              "writethrough",
90
              "writeback",
91 92
              "directsync",
              "unsafe");
93 94 95 96 97 98 99

VIR_ENUM_IMPL(qemuVideo, VIR_DOMAIN_VIDEO_TYPE_LAST,
              "std",
              "cirrus",
              "vmware",
              "", /* no arg needed for xen */
              "", /* don't support vbox */
100
              "qxl",
M
Marc-André Lureau 已提交
101 102
              "", /* don't support parallels */
              "" /* no need for virtio */);
103

104 105 106 107 108 109 110 111
VIR_ENUM_DECL(qemuDeviceVideo)

VIR_ENUM_IMPL(qemuDeviceVideo, VIR_DOMAIN_VIDEO_TYPE_LAST,
              "VGA",
              "cirrus-vga",
              "vmware-svga",
              "", /* no device for xen */
              "", /* don't support vbox */
112
              "qxl-vga",
M
Marc-André Lureau 已提交
113 114
              "", /* don't support parallels */
              "virtio-vga");
115

116 117 118 119 120 121
VIR_ENUM_DECL(qemuSoundCodec)

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

122 123 124 125 126 127 128 129 130 131 132
VIR_ENUM_DECL(qemuControllerModelUSB)

VIR_ENUM_IMPL(qemuControllerModelUSB, VIR_DOMAIN_CONTROLLER_MODEL_USB_LAST,
              "piix3-usb-uhci",
              "piix4-usb-uhci",
              "usb-ehci",
              "ich9-usb-ehci1",
              "ich9-usb-uhci1",
              "ich9-usb-uhci2",
              "ich9-usb-uhci3",
              "vt82c686b-usb-uhci",
G
Gerd Hoffmann 已提交
133
              "pci-ohci",
134 135
              "nec-usb-xhci",
              "none");
136

137 138 139 140
VIR_ENUM_DECL(qemuDomainFSDriver)
VIR_ENUM_IMPL(qemuDomainFSDriver, VIR_DOMAIN_FS_DRIVER_TYPE_LAST,
              "local",
              "local",
141
              "handle",
142
              NULL,
D
Dmitry Guryanov 已提交
143
              NULL,
144
              NULL);
145

146 147 148 149 150
VIR_ENUM_DECL(qemuNumaPolicy)
VIR_ENUM_IMPL(qemuNumaPolicy, VIR_DOMAIN_NUMATUNE_MEM_LAST,
              "bind",
              "preferred",
              "interleave");
151

152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
static int
qemuBuildObjectCommandLinePropsInternal(const char *key,
                                        const virJSONValue *value,
                                        virBufferPtr buf,
                                        bool nested)
{
    virJSONValuePtr elem;
    virBitmapPtr bitmap = NULL;
    ssize_t pos = -1;
    ssize_t end;
    size_t i;

    switch ((virJSONType) value->type) {
    case VIR_JSON_TYPE_STRING:
        virBufferAsprintf(buf, ",%s=%s", key, value->data.string);
        break;

    case VIR_JSON_TYPE_NUMBER:
        virBufferAsprintf(buf, ",%s=%s", key, value->data.number);
        break;

    case VIR_JSON_TYPE_BOOLEAN:
        if (value->data.boolean)
            virBufferAsprintf(buf, ",%s=yes", key);
        else
            virBufferAsprintf(buf, ",%s=no", key);

        break;

    case VIR_JSON_TYPE_ARRAY:
        if (nested) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("nested -object property arrays are not supported"));
            return -1;
        }

        if (virJSONValueGetArrayAsBitmap(value, &bitmap) == 0) {
            while ((pos = virBitmapNextSetBit(bitmap, pos)) > -1) {
                if ((end = virBitmapNextClearBit(bitmap, pos)) < 0)
                    end = virBitmapLastSetBit(bitmap) + 1;

                if (end - 1 > pos) {
                    virBufferAsprintf(buf, ",%s=%zd-%zd", key, pos, end - 1);
                    pos = end;
                } else {
                    virBufferAsprintf(buf, ",%s=%zd", key, pos);
                }
            }
        } else {
            /* fallback, treat the array as a non-bitmap, adding the key
             * for each member */
            for (i = 0; i < virJSONValueArraySize(value); i++) {
                elem = virJSONValueArrayGet((virJSONValuePtr)value, i);

                /* recurse to avoid duplicating code */
                if (qemuBuildObjectCommandLinePropsInternal(key, elem, buf,
                                                            true) < 0)
                    return -1;
            }
        }
        break;

    case VIR_JSON_TYPE_OBJECT:
    case VIR_JSON_TYPE_NULL:
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("NULL and OBJECT JSON types can't be converted to "
                         "commandline string"));
        return -1;
    }

    virBitmapFree(bitmap);
    return 0;
}


static int
qemuBuildObjectCommandLineProps(const char *key,
                                const virJSONValue *value,
                                void *opaque)
{
    return qemuBuildObjectCommandLinePropsInternal(key, value, opaque, false);
}


char *
qemuBuildObjectCommandlineFromJSON(const char *type,
                                   const char *alias,
                                   virJSONValuePtr props)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *ret = NULL;

    virBufferAsprintf(&buf, "%s,id=%s", type, alias);

    if (virJSONValueObjectForeachKeyValue(props,
                                          qemuBuildObjectCommandLineProps,
                                          &buf) < 0)
        goto cleanup;

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

    ret = virBufferContentAndReset(&buf);

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


262
char *qemuDeviceDriveHostAlias(virDomainDiskDefPtr disk,
263
                               virQEMUCapsPtr qemuCaps)
264 265 266
{
    char *ret;

267
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
268 269
        ignore_value(virAsprintf(&ret, "%s%s", QEMU_DRIVE_HOST_PREFIX,
                                 disk->info.alias));
270
    } else {
271
        ignore_value(VIR_STRDUP(ret, disk->info.alias));
272 273 274 275 276 277 278
    }
    return ret;
}


static int
qemuBuildDeviceAddressStr(virBufferPtr buf,
279
                          virDomainDefPtr domainDef,
280
                          virDomainDeviceInfoPtr info,
281
                          virQEMUCapsPtr qemuCaps)
282
{
283 284
    int ret = -1;
    char *devStr = NULL;
285
    const char *contAlias = NULL;
286

287
    if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
288 289
        size_t i;

290
        if (!(devStr = virDomainPCIAddressAsString(&info->addr.pci)))
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
            goto cleanup;
        for (i = 0; i < domainDef->ncontrollers; i++) {
            virDomainControllerDefPtr cont = domainDef->controllers[i];

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

318
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_MULTIFUNCTION)) {
W
Wen Congyang 已提交
319
            if (info->addr.pci.function != 0) {
320 321 322
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Only PCI device addresses with function=0 "
                                 "are supported with this QEMU binary"));
323
                goto cleanup;
324
            }
J
Ján Tomko 已提交
325
            if (info->addr.pci.multi == VIR_TRISTATE_SWITCH_ON) {
326 327 328
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("'multifunction=on' is not supported with "
                                 "this QEMU binary"));
329
                goto cleanup;
W
Wen Congyang 已提交
330
            }
331 332
        }

333 334 335 336 337 338
        if (info->addr.pci.bus != 0 &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PCI_BRIDGE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Multiple PCI buses are not supported "
                             "with this QEMU binary"));
            goto cleanup;
339
        }
340 341
        virBufferAsprintf(buf, ",bus=%s", contAlias);

J
Ján Tomko 已提交
342
        if (info->addr.pci.multi == VIR_TRISTATE_SWITCH_ON)
343
            virBufferAddLit(buf, ",multifunction=on");
J
Ján Tomko 已提交
344
        else if (info->addr.pci.multi == VIR_TRISTATE_SWITCH_OFF)
345 346 347 348
            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);
349
    } else if (info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB) {
350 351 352 353 354
        if (!(contAlias = virDomainControllerAliasFind(domainDef,
                                                       VIR_DOMAIN_CONTROLLER_TYPE_USB,
                                                       info->addr.usb.bus)))
            goto cleanup;
        virBufferAsprintf(buf, ",bus=%s.0,port=%s", contAlias, info->addr.usb.port);
355 356 357
    } 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);
358 359 360 361 362 363
    } 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);
364 365 366 367
    } 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);
368
    }
369

370
    ret = 0;
371
 cleanup:
372 373
    VIR_FREE(devStr);
    return ret;
374 375
}

376 377 378
static int
qemuBuildRomStr(virBufferPtr buf,
                virDomainDeviceInfoPtr info,
379
                virQEMUCapsPtr qemuCaps)
380
{
381
    if (info->rombar || info->romfile) {
382
        if (info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
383 384
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("rombar and romfile are supported only for PCI devices"));
385 386
            return -1;
        }
387
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_ROMBAR)) {
388 389
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("rombar and romfile not supported in this QEMU binary"));
390 391 392 393
            return -1;
        }

        switch (info->rombar) {
J
Ján Tomko 已提交
394
        case VIR_TRISTATE_SWITCH_OFF:
395 396
            virBufferAddLit(buf, ",rombar=0");
            break;
J
Ján Tomko 已提交
397
        case VIR_TRISTATE_SWITCH_ON:
398 399 400 401 402
            virBufferAddLit(buf, ",rombar=1");
            break;
        default:
            break;
        }
403 404
        if (info->romfile)
           virBufferAsprintf(buf, ",romfile=%s", info->romfile);
405 406 407 408
    }
    return 0;
}

409 410
static int
qemuBuildIoEventFdStr(virBufferPtr buf,
J
Ján Tomko 已提交
411
                      virTristateSwitch use,
412
                      virQEMUCapsPtr qemuCaps)
413
{
414
    if (use && virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_IOEVENTFD))
415
        virBufferAsprintf(buf, ",ioeventfd=%s",
J
Ján Tomko 已提交
416
                          virTristateSwitchTypeToString(use));
417 418
    return 0;
}
419 420

#define QEMU_SERIAL_PARAM_ACCEPTED_CHARS \
421
  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_ "
422 423 424 425

static int
qemuSafeSerialParamValue(const char *value)
{
426
    if (strspn(value, QEMU_SERIAL_PARAM_ACCEPTED_CHARS) != strlen(value)) {
427 428 429
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("driver serial '%s' contains unsafe characters"),
                       value);
430 431 432 433 434 435
        return -1;
    }

    return 0;
}

436 437 438 439
static char *
qemuGetSecretString(virConnectPtr conn,
                    const char *scheme,
                    bool encoded,
440
                    virStorageAuthDefPtr authdef,
441 442 443 444 445
                    virSecretUsageType secretUsageType)
{
    size_t secret_size;
    virSecretPtr sec = NULL;
    char *secret = NULL;
446
    char uuidStr[VIR_UUID_STRING_BUFLEN];
447 448

    /* look up secret */
449
    switch (authdef->secretType) {
450
    case VIR_STORAGE_SECRET_TYPE_UUID:
451 452
        sec = virSecretLookupByUUID(conn, authdef->secret.uuid);
        virUUIDFormat(authdef->secret.uuid, uuidStr);
453
        break;
454
    case VIR_STORAGE_SECRET_TYPE_USAGE:
455 456
        sec = virSecretLookupByUsage(conn, secretUsageType,
                                     authdef->secret.usage);
457 458 459 460
        break;
    }

    if (!sec) {
461
        if (authdef->secretType == VIR_STORAGE_SECRET_TYPE_UUID) {
462 463
            virReportError(VIR_ERR_NO_SECRET,
                           _("%s no secret matches uuid '%s'"),
464
                           scheme, uuidStr);
465 466 467
        } else {
            virReportError(VIR_ERR_NO_SECRET,
                           _("%s no secret matches usage value '%s'"),
468
                           scheme, authdef->secret.usage);
469
        }
470 471 472 473 474 475
        goto cleanup;
    }

    secret = (char *)conn->secretDriver->secretGetValue(sec, &secret_size, 0,
                                                        VIR_SECRET_GET_VALUE_INTERNAL_CALL);
    if (!secret) {
476
        if (authdef->secretType == VIR_STORAGE_SECRET_TYPE_UUID) {
477 478 479
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not get value of the secret for "
                             "username '%s' using uuid '%s'"),
480
                           authdef->username, uuidStr);
481 482 483 484
        } else {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("could not get value of the secret for "
                             "username '%s' using usage value '%s'"),
485
                           authdef->username, authdef->secret.usage);
486
        }
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
        goto cleanup;
    }

    if (encoded) {
        char *base64 = NULL;

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

502
 cleanup:
503 504 505
    virObjectUnref(sec);
    return secret;
}
506

507

508 509 510 511 512 513 514
static int
qemuNetworkDriveGetPort(int protocol,
                        const char *port)
{
    int ret = 0;

    if (port) {
515
        if (virStrToLong_i(port, NULL, 10, &ret) < 0 || ret < 0) {
516 517 518 519 520 521 522 523 524
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("failed to parse port number '%s'"),
                           port);
            return -1;
        }

        return ret;
    }

525
    switch ((virStorageNetProtocol) protocol) {
526
        case VIR_STORAGE_NET_PROTOCOL_HTTP:
527 528
            return 80;

529
        case VIR_STORAGE_NET_PROTOCOL_HTTPS:
530 531
            return 443;

532
        case VIR_STORAGE_NET_PROTOCOL_FTP:
533 534
            return 21;

535
        case VIR_STORAGE_NET_PROTOCOL_FTPS:
536 537
            return 990;

538
        case VIR_STORAGE_NET_PROTOCOL_TFTP:
539 540
            return 69;

541
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
542 543
            return 7000;

544
        case VIR_STORAGE_NET_PROTOCOL_NBD:
545 546
            return 10809;

547 548
        case VIR_STORAGE_NET_PROTOCOL_ISCSI:
        case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
549 550 551
            /* no default port specified */
            return 0;

552 553
        case VIR_STORAGE_NET_PROTOCOL_RBD:
        case VIR_STORAGE_NET_PROTOCOL_LAST:
554 555
        case VIR_STORAGE_NET_PROTOCOL_NONE:
            /* not applicable */
556 557 558 559 560 561
            return -1;
    }

    return -1;
}

562
#define QEMU_DEFAULT_NBD_PORT "10809"
563

564
static char *
565
qemuBuildNetworkDriveURI(virStorageSourcePtr src,
566 567 568 569
                         const char *username,
                         const char *secret)
{
    char *ret = NULL;
570
    virBuffer buf = VIR_BUFFER_INITIALIZER;
571
    virURIPtr uri = NULL;
572
    size_t i;
573

574
    switch ((virStorageNetProtocol) src->protocol) {
575
        case VIR_STORAGE_NET_PROTOCOL_NBD:
576
            if (src->nhosts != 1) {
577 578
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
579
                               virStorageNetProtocolTypeToString(src->protocol));
580 581 582
                goto cleanup;
            }

583 584 585 586 587 588
            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] != '/'))) {
589 590 591

                virBufferAddLit(&buf, "nbd:");

592
                switch (src->hosts->transport) {
593
                case VIR_STORAGE_NET_HOST_TRANS_TCP:
594
                    virBufferStrcat(&buf, src->hosts->name, NULL);
595
                    virBufferAsprintf(&buf, ":%s",
596
                                      src->hosts->port ? src->hosts->port :
597 598 599
                                      QEMU_DEFAULT_NBD_PORT);
                    break;

600
                case VIR_STORAGE_NET_HOST_TRANS_UNIX:
601
                    if (!src->hosts->socket) {
602 603 604 605 606 607
                        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                       _("socket attribute required for "
                                         "unix transport"));
                        goto cleanup;
                    }

608
                    virBufferAsprintf(&buf, "unix:%s", src->hosts->socket);
609 610 611 612 613
                    break;

                default:
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("nbd does not support transport '%s'"),
614
                                   virStorageNetHostTransportTypeToString(src->hosts->transport));
615 616 617
                    goto cleanup;
                }

618 619
                if (src->path)
                    virBufferAsprintf(&buf, ":exportname=%s", src->path);
620

621
                if (virBufferCheckError(&buf) < 0)
622 623 624 625 626 627 628 629
                    goto cleanup;

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

630 631 632 633 634 635 636
        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:
637
            if (src->nhosts != 1) {
638 639
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("protocol '%s' accepts only one host"),
640
                               virStorageNetProtocolTypeToString(src->protocol));
641 642
                goto cleanup;
            }
643

644 645
            if (VIR_ALLOC(uri) < 0)
                goto cleanup;
646

647
            if (src->hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP) {
648
                if (VIR_STRDUP(uri->scheme,
649
                               virStorageNetProtocolTypeToString(src->protocol)) < 0)
650 651 652
                    goto cleanup;
            } else {
                if (virAsprintf(&uri->scheme, "%s+%s",
653 654
                                virStorageNetProtocolTypeToString(src->protocol),
                                virStorageNetHostTransportTypeToString(src->hosts->transport)) < 0)
655 656
                    goto cleanup;
            }
657

658
            if ((uri->port = qemuNetworkDriveGetPort(src->protocol, src->hosts->port)) < 0)
659
                goto cleanup;
660

661 662
            if (src->path) {
                if (src->volume) {
663
                    if (virAsprintf(&uri->path, "/%s%s",
664
                                    src->volume, src->path) < 0)
665 666 667
                        goto cleanup;
                } else {
                    if (virAsprintf(&uri->path, "%s%s",
668 669
                                    src->path[0] == '/' ? "" : "/",
                                    src->path) < 0)
670 671 672
                        goto cleanup;
                }
            }
673

674 675
            if (src->hosts->socket &&
                virAsprintf(&uri->query, "socket=%s", src->hosts->socket) < 0)
676
                goto cleanup;
677 678 679 680 681 682 683 684 685 686 687

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

688
            if (VIR_STRDUP(uri->server, src->hosts->name) < 0)
689 690
                goto cleanup;

691
            ret = virURIFormat(uri);
692

693 694
            break;

695
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
696
            if (!src->path) {
697 698 699 700 701
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("missing disk source for 'sheepdog' protocol"));
                goto cleanup;
            }

702 703
            if (src->nhosts == 0) {
                if (virAsprintf(&ret, "sheepdog:%s", src->path) < 0)
704
                    goto cleanup;
705
            } else if (src->nhosts == 1) {
706
                if (virAsprintf(&ret, "sheepdog:%s:%s:%s",
707 708 709
                                src->hosts->name,
                                src->hosts->port ? src->hosts->port : "7000",
                                src->path) < 0)
710 711 712 713 714 715 716 717 718
                    goto cleanup;
            } else {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("protocol 'sheepdog' accepts up to one host"));
                goto cleanup;
            }

            break;

719
        case VIR_STORAGE_NET_PROTOCOL_RBD:
720
            if (strchr(src->path, ':')) {
721 722
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("':' not allowed in RBD source volume name '%s'"),
723
                               src->path);
724 725 726
                goto cleanup;
            }

727
            virBufferStrcat(&buf, "rbd:", src->path, NULL);
728

729 730 731
            if (src->snapshot)
                virBufferEscape(&buf, '\\', ":", "@%s", src->snapshot);

732 733 734 735 736 737 738 739 740
            if (username) {
                virBufferEscape(&buf, '\\', ":", ":id=%s", username);
                virBufferEscape(&buf, '\\', ":",
                                ":key=%s:auth_supported=cephx\\;none",
                                secret);
            } else {
                virBufferAddLit(&buf, ":auth_supported=none");
            }

741
            if (src->nhosts > 0) {
742
                virBufferAddLit(&buf, ":mon_host=");
743
                for (i = 0; i < src->nhosts; i++) {
744 745 746 747
                    if (i)
                        virBufferAddLit(&buf, "\\;");

                    /* assume host containing : is ipv6 */
748 749 750
                    if (strchr(src->hosts[i].name, ':'))
                        virBufferEscape(&buf, '\\', ":", "[%s]",
                                        src->hosts[i].name);
751
                    else
752
                        virBufferAsprintf(&buf, "%s", src->hosts[i].name);
753

754 755
                    if (src->hosts[i].port)
                        virBufferAsprintf(&buf, "\\:%s", src->hosts[i].port);
756 757 758
                }
            }

759 760 761
            if (src->configFile)
                virBufferEscape(&buf, '\\', ":", ":conf=%s", src->configFile);

762
            if (virBufferCheckError(&buf) < 0)
763 764 765 766 767 768
                goto cleanup;

            ret = virBufferContentAndReset(&buf);
            break;


769
        case VIR_STORAGE_NET_PROTOCOL_LAST:
770
        case VIR_STORAGE_NET_PROTOCOL_NONE:
771 772 773
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unexpected network protocol '%s'"),
                           virStorageNetProtocolTypeToString(src->protocol));
774 775
            goto cleanup;
    }
776

777
 cleanup:
778
    virBufferFreeAndReset(&buf);
779 780 781 782 783 784
    virURIFree(uri);

    return ret;
}


785
int
786 787 788
qemuGetDriveSourceString(virStorageSourcePtr src,
                         virConnectPtr conn,
                         char **source)
789
{
790 791 792 793 794 795 796
    int actualType = virStorageSourceGetActualType(src);
    char *secret = NULL;
    char *username = NULL;
    int ret = -1;

    *source = NULL;

797 798 799 800
    /* return 1 for empty sources */
    if (virStorageSourceIsEmpty(src))
        return 1;

801 802
    if (conn) {
        if (actualType == VIR_STORAGE_TYPE_NETWORK &&
803
            src->auth &&
804 805 806 807 808
            (src->protocol == VIR_STORAGE_NET_PROTOCOL_ISCSI ||
             src->protocol == VIR_STORAGE_NET_PROTOCOL_RBD)) {
            bool encode = false;
            int secretType = VIR_SECRET_USAGE_TYPE_ISCSI;
            const char *protocol = virStorageNetProtocolTypeToString(src->protocol);
809
            username = src->auth->username;
810 811 812 813 814 815

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

817 818 819
            if (!(secret = qemuGetSecretString(conn,
                                               protocol,
                                               encode,
820
                                               src->auth,
821 822 823 824 825
                                               secretType)))
                goto cleanup;
        }
    }

826
    switch ((virStorageType) actualType) {
E
Eric Blake 已提交
827 828 829
    case VIR_STORAGE_TYPE_BLOCK:
    case VIR_STORAGE_TYPE_FILE:
    case VIR_STORAGE_TYPE_DIR:
830 831
        if (VIR_STRDUP(*source, src->path) < 0)
            goto cleanup;
832 833 834

        break;

E
Eric Blake 已提交
835
    case VIR_STORAGE_TYPE_NETWORK:
836
        if (!(*source = qemuBuildNetworkDriveURI(src, username, secret)))
837
            goto cleanup;
838 839
        break;

E
Eric Blake 已提交
840
    case VIR_STORAGE_TYPE_VOLUME:
841
    case VIR_STORAGE_TYPE_NONE:
E
Eric Blake 已提交
842
    case VIR_STORAGE_TYPE_LAST:
843 844 845
        break;
    }

846
    ret = 0;
847

848
 cleanup:
J
John Ferlan 已提交
849
    VIR_FREE(secret);
850 851 852
    return ret;
}

P
Paolo Bonzini 已提交
853

854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
/* Perform disk definition config validity checks */
int
qemuCheckDiskConfig(virDomainDiskDefPtr disk)
{
    if (virDiskNameToIndex(disk->dst) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk type '%s'"), disk->dst);
        goto error;
    }

    if (disk->wwn) {
        if ((disk->bus != VIR_DOMAIN_DISK_BUS_IDE) &&
            (disk->bus != VIR_DOMAIN_DISK_BUS_SCSI)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Only ide and scsi disk support wwn"));
            goto error;
        }
    }

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

    if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
        /* make sure that both the bus supports type='lun' (SG_IO). */
        if (disk->bus != VIR_DOMAIN_DISK_BUS_VIRTIO &&
            disk->bus != VIR_DOMAIN_DISK_BUS_SCSI) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("disk device='lun' is not supported for bus='%s'"),
                           virDomainDiskQEMUBusTypeToString(disk->bus));
            goto error;
        }
        if (disk->src->type == VIR_STORAGE_TYPE_NETWORK) {
            if (disk->src->protocol != VIR_STORAGE_NET_PROTOCOL_ISCSI) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("disk device='lun' is not supported "
                                 "for protocol='%s'"),
                               virStorageNetProtocolTypeToString(disk->src->protocol));
                goto error;
            }
897
        } else if (!virDomainDiskSourceIsBlockType(disk->src, true)) {
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
            goto error;
        }
        if (disk->wwn) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn is not supported for lun device"));
            goto error;
        }
        if (disk->vendor || disk->product) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product is not supported "
                             "for lun device"));
            goto error;
        }
    }
    return 0;
 error:
    return -1;
}


918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957
/* Check whether the device address is using either 'ccw' or default s390
 * address format and whether that's "legal" for the current qemu and/or
 * guest os.machine type. This is the corollary to the code which doesn't
 * find the address type set using an emulator that supports either 'ccw'
 * or s390 and sets the address type based on the capabilities.
 *
 * If the address is using 'ccw' or s390 and it's not supported, generate
 * an error and return false; otherwise, return true.
 */
bool
qemuCheckCCWS390AddressSupport(virDomainDefPtr def,
                               virDomainDeviceInfo info,
                               virQEMUCapsPtr qemuCaps,
                               const char *devicename)
{
    if (info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
        if (!qemuDomainMachineIsS390CCW(def)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("cannot use CCW address type for device "
                             "'%s' using machine type '%s'"),
                       devicename, def->os.machine);
            return false;
        } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_CCW)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("CCW address type is not supported by "
                             "this QEMU"));
            return false;
        }
    } else if (info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_S390)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio S390 address type is not supported by "
                             "this QEMU"));
            return false;
        }
    }
    return true;
}


958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
/* Qemu 1.2 and later have a binary flag -enable-fips that must be
 * used for VNC auth to obey FIPS settings; but the flag only
 * exists on Linux, and with no way to probe for it via QMP.  Our
 * solution: if FIPS mode is required, then unconditionally use
 * the flag, regardless of qemu version, for the following matrix:
 *
 *                          old QEMU            new QEMU
 * FIPS enabled             doesn't start       VNC auth disabled
 * FIPS disabled/missing    VNC auth enabled    VNC auth enabled
 */
bool
qemuCheckFips(void)
{
    bool ret = false;

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

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

    return ret;
}


987
char *
988
qemuBuildDriveStr(virConnectPtr conn,
989
                  virDomainDiskDefPtr disk,
990
                  bool bootable,
991
                  virQEMUCapsPtr qemuCaps)
992 993 994
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
995 996
    const char *trans =
        virDomainDiskGeometryTransTypeToString(disk->geometry.trans);
997 998
    int idx = virDiskNameToIndex(disk->dst);
    int busid = -1, unitid = -1;
999
    char *source = NULL;
1000
    int actualType = virStorageSourceGetActualType(disk->src);
1001 1002

    if (idx < 0) {
1003 1004
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk type '%s'"), disk->dst);
1005 1006 1007 1008 1009 1010
        goto error;
    }

    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_SCSI:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
1011 1012
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for scsi disk"));
1013 1014 1015 1016 1017 1018 1019
            goto error;
        }

        /* Setting bus= attr for SCSI drives, causes a controller
         * to be created. Yes this is slightly odd. It is not possible
         * to have > 1 bus on a SCSI controller (yet). */
        if (disk->info.addr.drive.bus != 0) {
1020 1021
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("SCSI controller only supports 1 bus"));
1022 1023 1024 1025 1026 1027 1028 1029
            goto error;
        }
        busid = disk->info.addr.drive.controller;
        unitid = disk->info.addr.drive.unit;
        break;

    case VIR_DOMAIN_DISK_BUS_IDE:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
1030 1031
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for ide disk"));
1032 1033 1034 1035
            goto error;
        }
        /* We can only have 1 IDE controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
1036 1037
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s controller is supported"), bus);
1038 1039 1040 1041 1042 1043 1044 1045
            goto error;
        }
        busid = disk->info.addr.drive.bus;
        unitid = disk->info.addr.drive.unit;
        break;

    case VIR_DOMAIN_DISK_BUS_FDC:
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
1046 1047
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unexpected address type for fdc disk"));
1048 1049 1050 1051
            goto error;
        }
        /* We can only have 1 FDC controller (currently) */
        if (disk->info.addr.drive.controller != 0) {
1052 1053
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s controller is supported"), bus);
1054 1055 1056 1057
            goto error;
        }
        /* We can only have 1 FDC bus (currently) */
        if (disk->info.addr.drive.bus != 0) {
1058 1059
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Only 1 %s bus is supported"), bus);
1060 1061
            goto error;
        }
1062
        if (disk->info.addr.drive.target != 0) {
1063 1064
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for controller fdc"));
1065 1066
            goto error;
        }
1067 1068 1069 1070 1071 1072 1073 1074 1075
        unitid = disk->info.addr.drive.unit;

        break;

    case VIR_DOMAIN_DISK_BUS_VIRTIO:
        idx = -1;
        break;

    case VIR_DOMAIN_DISK_BUS_XEN:
1076 1077 1078
    case VIR_DOMAIN_DISK_BUS_SD:
        /* Xen and SD have no address type currently, so assign
         * based on index */
1079 1080 1081
        break;
    }

1082
    if (qemuGetDriveSourceString(disk->src, conn, &source) < 0)
1083 1084 1085
        goto error;

    if (source &&
1086 1087 1088
        !((disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY ||
           disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) &&
          disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN)) {
1089

1090 1091 1092
        virBufferAddLit(&opt, "file=");

        switch (actualType) {
E
Eric Blake 已提交
1093
        case VIR_STORAGE_TYPE_DIR:
1094
            /* QEMU only supports magic FAT format for now */
1095 1096
            if (disk->src->format > 0 &&
                disk->src->format != VIR_STORAGE_FILE_FAT) {
1097 1098
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unsupported disk driver type for '%s'"),
1099
                               virStorageFileFormatTypeToString(disk->src->format));
1100 1101
                goto error;
            }
1102

1103
            if (!disk->src->readonly) {
1104 1105
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("cannot create virtual FAT disks in read-write mode"));
1106 1107
                goto error;
            }
1108 1109 1110

            virBufferAddLit(&opt, "fat:");

1111
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY)
1112
                virBufferAddLit(&opt, "floppy:");
1113

1114 1115
            break;

E
Eric Blake 已提交
1116
        case VIR_STORAGE_TYPE_BLOCK:
1117
            if (disk->tray_status == VIR_DOMAIN_DISK_TRAY_OPEN) {
1118
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1119
                               disk->src->type == VIR_STORAGE_TYPE_VOLUME ?
1120 1121
                               _("tray status 'open' is invalid for block type volume") :
                               _("tray status 'open' is invalid for block type disk"));
1122 1123
                goto error;
            }
1124 1125 1126 1127 1128

            break;

        default:
            break;
1129
        }
1130 1131

        virBufferEscape(&opt, ',', ",", "%s,", source);
1132 1133 1134 1135 1136

        if (disk->src->format > 0 &&
            disk->src->type != VIR_STORAGE_TYPE_DIR)
            virBufferAsprintf(&opt, "format=%s,",
                              virStorageFileFormatTypeToString(disk->src->format));
1137
    }
1138
    VIR_FREE(source);
1139

1140
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
1141 1142
        virBufferAddLit(&opt, "if=none");
    else
1143
        virBufferAsprintf(&opt, "if=%s", bus);
1144

1145
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
1146
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
1147
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_CD))
1148
                virBufferAddLit(&opt, ",media=cdrom");
1149
        } else if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
1150
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD))
1151
                virBufferAddLit(&opt, ",media=cdrom");
1152 1153 1154 1155
        } else {
            virBufferAddLit(&opt, ",media=cdrom");
        }
    }
1156

1157
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
1158
        virBufferAsprintf(&opt, ",id=%s%s", QEMU_DRIVE_HOST_PREFIX, disk->info.alias);
1159 1160 1161
    } else {
        if (busid == -1 && unitid == -1) {
            if (idx != -1)
1162
                virBufferAsprintf(&opt, ",index=%d", idx);
1163 1164
        } else {
            if (busid != -1)
1165
                virBufferAsprintf(&opt, ",bus=%d", busid);
1166
            if (unitid != -1)
1167
                virBufferAsprintf(&opt, ",unit=%d", unitid);
1168 1169 1170
        }
    }
    if (bootable &&
1171
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) &&
1172 1173
        (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK ||
         disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) &&
1174 1175
        disk->bus != VIR_DOMAIN_DISK_BUS_IDE)
        virBufferAddLit(&opt, ",boot=on");
1176
    if (disk->src->readonly &&
1177
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_READONLY)) {
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
            if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("readonly ide disks are not supported"));
                goto error;
            }
            if (disk->bus == VIR_DOMAIN_DISK_BUS_SATA) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("readonly sata disks are not supported"));
                goto error;
            }
1189
        }
1190
        virBufferAddLit(&opt, ",readonly=on");
1191
    }
1192
    if (disk->transient) {
1193 1194
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("transient disks not supported yet"));
1195 1196
        goto error;
    }
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208

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

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

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

1212
    if (disk->serial &&
1213
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_SERIAL)) {
1214 1215
        if (qemuSafeSerialParamValue(disk->serial) < 0)
            goto error;
1216 1217 1218 1219 1220 1221 1222
        if (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"));
            goto error;
        }
1223 1224
        virBufferAddLit(&opt, ",serial=");
        virBufferEscape(&opt, '\\', " ", "%s", disk->serial);
1225 1226 1227
    }

    if (disk->cachemode) {
1228 1229
        const char *mode = NULL;

1230
        mode = qemuDiskCacheV2TypeToString(disk->cachemode);
1231

1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
        if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_DIRECTSYNC &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_DIRECTSYNC)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk cache mode 'directsync' is not "
                             "supported by this QEMU"));
            goto error;
        } else if (disk->cachemode == VIR_DOMAIN_DISK_CACHE_UNSAFE &&
                   !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_CACHE_UNSAFE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk cache mode 'unsafe' is not "
                             "supported by this QEMU"));
            goto error;
1244
        }
1245

1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
        if (disk->iomode == VIR_DOMAIN_DISK_IO_NATIVE &&
            disk->cachemode != VIR_DOMAIN_DISK_CACHE_DIRECTSYNC &&
            disk->cachemode != VIR_DOMAIN_DISK_CACHE_DISABLE) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("native I/O needs either no disk cache "
                             "or directsync cache mode, QEMU will fallback "
                             "to aio=threads"));
            goto error;
        }

1256
        virBufferAsprintf(&opt, ",cache=%s", mode);
1257
    } else if (disk->src->shared && !disk->src->readonly) {
1258
        virBufferAddLit(&opt, ",cache=none");
1259 1260
    }

O
Osier Yang 已提交
1261
    if (disk->copy_on_read) {
1262
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_COPY_ON_READ)) {
O
Osier Yang 已提交
1263
            virBufferAsprintf(&opt, ",copy-on-read=%s",
J
Ján Tomko 已提交
1264
                              virTristateSwitchTypeToString(disk->copy_on_read));
O
Osier Yang 已提交
1265
        } else {
1266 1267
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("copy_on_read is not supported by this QEMU binary"));
O
Osier Yang 已提交
1268 1269 1270 1271
            goto error;
        }
    }

O
Osier Yang 已提交
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
    if (disk->discard) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_DISCARD)) {
            virBufferAsprintf(&opt, ",discard=%s",
                              virDomainDiskDiscardTypeToString(disk->discard));
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("discard is not supported by this QEMU binary"));
            goto error;
        }
    }

1283
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MONITOR_JSON)) {
1284 1285 1286 1287
        const char *wpolicy = NULL, *rpolicy = NULL;

        if (disk->error_policy)
            wpolicy = virDomainDiskErrorPolicyTypeToString(disk->error_policy);
1288 1289
        if (disk->rerror_policy)
            rpolicy = virDomainDiskErrorPolicyTypeToString(disk->rerror_policy);
1290 1291

        if (disk->error_policy == VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE) {
1292 1293 1294
            /* in the case of enospace, the option is spelled
             * differently in qemu, and it's only valid for werror,
             * not for rerror, so leave leave rerror NULL.
1295
             */
1296 1297 1298 1299
            wpolicy = "enospc";
        } else if (!rpolicy) {
            /* for other policies, rpolicy can match wpolicy */
            rpolicy = wpolicy;
1300
        }
1301 1302 1303 1304 1305

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

E
Eric Blake 已提交
1308
    if (disk->iomode) {
1309
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_AIO)) {
1310
            virBufferAsprintf(&opt, ",aio=%s",
E
Eric Blake 已提交
1311 1312
                              virDomainDiskIoTypeToString(disk->iomode));
        } else {
1313 1314 1315
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk aio mode not supported with this "
                             "QEMU binary"));
E
Eric Blake 已提交
1316 1317 1318 1319
            goto error;
        }
    }

1320
    /* block I/O throttling */
1321 1322 1323 1324 1325 1326
    if ((disk->blkdeviotune.total_bytes_sec ||
         disk->blkdeviotune.read_bytes_sec ||
         disk->blkdeviotune.write_bytes_sec ||
         disk->blkdeviotune.total_iops_sec ||
         disk->blkdeviotune.read_iops_sec ||
         disk->blkdeviotune.write_iops_sec) &&
1327
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE)) {
1328 1329 1330
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("block I/O throttling not supported with this "
                         "QEMU binary"));
1331 1332 1333
        goto error;
    }

1334 1335 1336 1337 1338 1339
    /* block I/O throttling 1.7 */
    if ((disk->blkdeviotune.total_bytes_sec_max ||
         disk->blkdeviotune.read_bytes_sec_max ||
         disk->blkdeviotune.write_bytes_sec_max ||
         disk->blkdeviotune.total_iops_sec_max ||
         disk->blkdeviotune.read_iops_sec_max ||
1340 1341
         disk->blkdeviotune.write_iops_sec_max ||
         disk->blkdeviotune.size_iops_sec) &&
1342 1343
        !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_IOTUNE_MAX)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1344 1345
                       _("there are some block I/O throttling parameters "
                         "that are not supported with this QEMU binary"));
1346 1347 1348
        goto error;
    }

1349 1350 1351 1352 1353
    if (disk->blkdeviotune.total_bytes_sec > LLONG_MAX ||
        disk->blkdeviotune.read_bytes_sec > LLONG_MAX ||
        disk->blkdeviotune.write_bytes_sec > LLONG_MAX ||
        disk->blkdeviotune.total_iops_sec > LLONG_MAX ||
        disk->blkdeviotune.read_iops_sec > LLONG_MAX ||
1354 1355 1356 1357 1358 1359
        disk->blkdeviotune.write_iops_sec > LLONG_MAX ||
        disk->blkdeviotune.total_bytes_sec_max > LLONG_MAX ||
        disk->blkdeviotune.read_bytes_sec_max > LLONG_MAX ||
        disk->blkdeviotune.write_bytes_sec_max > LLONG_MAX ||
        disk->blkdeviotune.total_iops_sec_max > LLONG_MAX ||
        disk->blkdeviotune.read_iops_sec_max > LLONG_MAX ||
1360 1361
        disk->blkdeviotune.write_iops_sec_max > LLONG_MAX ||
        disk->blkdeviotune.size_iops_sec > LLONG_MAX) {
1362 1363 1364 1365 1366 1367
        virReportError(VIR_ERR_OVERFLOW,
                      _("block I/O throttle limit must "
                        "be less than %llu using QEMU"), LLONG_MAX);
        goto error;
    }

1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
    if (disk->blkdeviotune.total_bytes_sec) {
        virBufferAsprintf(&opt, ",bps=%llu",
                          disk->blkdeviotune.total_bytes_sec);
    }

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

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

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

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

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

1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427
    if (disk->blkdeviotune.total_bytes_sec_max) {
        virBufferAsprintf(&opt, ",bps_max=%llu",
                          disk->blkdeviotune.total_bytes_sec_max);
    }

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

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

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

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

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

1428
    if (disk->blkdeviotune.size_iops_sec) {
1429 1430 1431 1432
        virBufferAsprintf(&opt, ",iops_size=%llu",
                          disk->blkdeviotune.size_iops_sec);
    }

1433
    if (virBufferCheckError(&opt) < 0)
1434 1435 1436 1437
        goto error;

    return virBufferContentAndReset(&opt);

1438
 error:
1439
    VIR_FREE(source);
1440 1441 1442 1443
    virBufferFreeAndReset(&opt);
    return NULL;
}

1444 1445

static bool
1446
qemuCheckIOThreads(virDomainDefPtr def,
1447 1448 1449
                   virDomainDiskDefPtr disk)
{
    /* Right "type" of disk" */
1450
    if (disk->bus != VIR_DOMAIN_DISK_BUS_VIRTIO ||
1451 1452
        (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI &&
         disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)) {
1453
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1454 1455
                       _("IOThreads only available for virtio pci and "
                         "virtio ccw disk"));
1456 1457 1458
        return false;
    }

1459 1460
    /* Can we find the disk iothread in the iothreadid list? */
    if (!virDomainIOThreadIDFind(def, disk->iothread)) {
1461
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1462 1463
                       _("Disk iothread '%u' not defined in iothreadid"),
                       disk->iothread);
1464 1465 1466 1467 1468 1469 1470
        return false;
    }

    return true;
}


1471
char *
1472 1473
qemuBuildDriveDevStr(virDomainDefPtr def,
                     virDomainDiskDefPtr disk,
1474
                     int bootindex,
1475
                     virQEMUCapsPtr qemuCaps)
1476 1477 1478
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *bus = virDomainDiskQEMUBusTypeToString(disk->bus);
1479
    const char *contAlias;
1480
    int controllerModel;
1481

1482
    if (qemuCheckDiskConfig(disk) < 0)
1483
        goto error;
1484

1485
    /* Live only checks */
1486
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
1487
        /* make sure that the qemu binary supports type='lun' (SG_IO). */
1488
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_SG_IO)) {
1489
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1490 1491
                           _("disk device='lun' is not supported by "
                             "this QEMU"));
1492 1493
            goto error;
        }
1494 1495
    }

1496 1497 1498
    if (!qemuCheckCCWS390AddressSupport(def, disk->info, qemuCaps, disk->dst))
        goto error;

1499
    if (disk->iothread && !qemuCheckIOThreads(def, disk))
1500 1501
        goto error;

1502 1503
    switch (disk->bus) {
    case VIR_DOMAIN_DISK_BUS_IDE:
1504
        if (disk->info.addr.drive.target != 0) {
1505 1506
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
1507 1508
            goto error;
        }
1509

1510
        if (disk->wwn &&
1511
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_DRIVE_WWN)) {
1512 1513 1514 1515 1516 1517
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for ide disk is not supported "
                             "by this QEMU"));
            goto error;
        }

1518
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
1519 1520 1521 1522 1523 1524 1525 1526
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

1527 1528 1529 1530 1531
        if (!(contAlias = virDomainControllerAliasFind(def, VIR_DOMAIN_CONTROLLER_TYPE_IDE,
                                                       disk->info.addr.drive.controller)))
           goto error;
        virBufferAsprintf(&opt, ",bus=%s.%d,unit=%d",
                          contAlias,
1532 1533 1534
                          disk->info.addr.drive.bus,
                          disk->info.addr.drive.unit);
        break;
1535

1536
    case VIR_DOMAIN_DISK_BUS_SCSI:
1537
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
1538
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_BLOCK)) {
1539 1540 1541
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support scsi-block for "
                                 "lun passthrough"));
1542 1543 1544 1545
                goto error;
            }
        }

1546
        if (disk->wwn &&
1547
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
1548 1549 1550 1551 1552 1553
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting wwn for scsi disk is not supported "
                             "by this QEMU"));
            goto error;
        }

1554 1555 1556 1557
        /* Properties wwn, vendor and product were introduced in the
         * same QEMU release (1.2.0).
         */
        if ((disk->vendor || disk->product) &&
1558
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_WWN)) {
1559 1560 1561 1562 1563 1564
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Setting vendor or product for scsi disk is not "
                             "supported by this QEMU"));
            goto error;
        }

1565
        controllerModel =
H
Han Cheng 已提交
1566 1567
            virDomainDeviceFindControllerModel(def, &disk->info,
                                               VIR_DOMAIN_CONTROLLER_TYPE_SCSI);
1568 1569
        if ((qemuDomainSetSCSIControllerModel(def, qemuCaps,
                                              &controllerModel)) < 0)
1570
            goto error;
1571

1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584
        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");
            }
        }

1585 1586 1587 1588
        if (!(contAlias = virDomainControllerAliasFind(def, VIR_DOMAIN_CONTROLLER_TYPE_SCSI,
                                                       disk->info.addr.drive.controller)))
           goto error;

1589 1590
        if (controllerModel == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
            if (disk->info.addr.drive.target != 0) {
1591 1592 1593
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("target must be 0 for controller "
                                 "model 'lsilogic'"));
1594 1595 1596
                goto error;
            }

1597 1598
            virBufferAsprintf(&opt, ",bus=%s.%d,scsi-id=%d",
                              contAlias,
1599 1600 1601
                              disk->info.addr.drive.bus,
                              disk->info.addr.drive.unit);
        } else {
1602
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCSI_DISK_CHANNEL)) {
1603
                if (disk->info.addr.drive.target > 7) {
1604 1605 1606
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU doesn't support target "
                                     "greater than 7"));
1607 1608 1609
                    goto error;
                }

1610 1611
                if (disk->info.addr.drive.bus != 0 &&
                    disk->info.addr.drive.unit != 0) {
1612 1613 1614
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU only supports both bus and "
                                     "unit equal to 0"));
1615 1616 1617 1618
                    goto error;
                }
            }

1619 1620
            virBufferAsprintf(&opt, ",bus=%s.0,channel=%d,scsi-id=%d,lun=%d",
                              contAlias,
1621 1622 1623 1624
                              disk->info.addr.drive.bus,
                              disk->info.addr.drive.target,
                              disk->info.addr.drive.unit);
        }
1625
        break;
1626

J
Jim Fehlig 已提交
1627
    case VIR_DOMAIN_DISK_BUS_SATA:
1628
        if (disk->info.addr.drive.bus != 0) {
1629 1630
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("bus must be 0 for ide controller"));
1631 1632 1633
            goto error;
        }
        if (disk->info.addr.drive.target != 0) {
1634 1635
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("target must be 0 for ide controller"));
1636 1637
            goto error;
        }
1638

1639
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_IDE_CD)) {
1640 1641 1642 1643 1644 1645 1646 1647
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
                virBufferAddLit(&opt, "ide-cd");
            else
                virBufferAddLit(&opt, "ide-hd");
        } else {
            virBufferAddLit(&opt, "ide-drive");
        }

1648 1649 1650 1651 1652 1653
        if (!(contAlias = virDomainControllerAliasFind(def, VIR_DOMAIN_CONTROLLER_TYPE_SATA,
                                                      disk->info.addr.drive.controller)))
           goto error;
        virBufferAsprintf(&opt, ",bus=%s.%d",
                          contAlias,
                          disk->info.addr.drive.unit);
J
Jim Fehlig 已提交
1654
        break;
1655

1656
    case VIR_DOMAIN_DISK_BUS_VIRTIO:
1657 1658
        if (disk->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            virBufferAddLit(&opt, "virtio-blk-ccw");
1659 1660
            if (disk->iothread)
                virBufferAsprintf(&opt, ",iothread=iothread%u", disk->iothread);
1661 1662
        } else if (disk->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
1663
            virBufferAddLit(&opt, "virtio-blk-s390");
1664 1665 1666
        } else if (disk->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO) {
            virBufferAddLit(&opt, "virtio-blk-device");
1667 1668
        } else {
            virBufferAddLit(&opt, "virtio-blk-pci");
1669 1670
            if (disk->iothread)
                virBufferAsprintf(&opt, ",iothread=iothread%u", disk->iothread);
1671
        }
1672
        qemuBuildIoEventFdStr(&opt, disk->ioeventfd, qemuCaps);
1673
        if (disk->event_idx &&
1674
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_EVENT_IDX)) {
1675
            virBufferAsprintf(&opt, ",event_idx=%s",
J
Ján Tomko 已提交
1676
                              virTristateSwitchTypeToString(disk->event_idx));
1677
        }
1678
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BLK_SCSI)) {
1679 1680 1681 1682 1683 1684 1685
            /* 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");
        }
1686
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
A
Alex Jia 已提交
1687
            goto error;
1688
        break;
1689

1690
    case VIR_DOMAIN_DISK_BUS_USB:
1691 1692 1693 1694 1695 1696
        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;
        }
1697 1698 1699 1700 1701 1702 1703
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_STORAGE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("This QEMU doesn't support '-device "
                             "usb-storage'"));
            goto error;

        }
1704
        virBufferAddLit(&opt, "usb-storage");
1705

1706
        if (qemuBuildDeviceAddressStr(&opt, def, &disk->info, qemuCaps) < 0)
1707
            goto error;
1708
        break;
1709

1710
    default:
1711 1712
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported disk bus '%s' with device setup"), bus);
1713 1714
        goto error;
    }
1715

1716 1717
    virBufferAsprintf(&opt, ",drive=%s%s", QEMU_DRIVE_HOST_PREFIX, disk->info.alias);
    virBufferAsprintf(&opt, ",id=%s", disk->info.alias);
1718
    if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
1719
        virBufferAsprintf(&opt, ",bootindex=%d", bootindex);
1720
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKIO)) {
V
Viktor Mihajlovski 已提交
1721
        if (disk->blockio.logical_block_size > 0)
1722
            virBufferAsprintf(&opt, ",logical_block_size=%u",
V
Viktor Mihajlovski 已提交
1723 1724
                              disk->blockio.logical_block_size);
        if (disk->blockio.physical_block_size > 0)
1725
            virBufferAsprintf(&opt, ",physical_block_size=%u",
V
Viktor Mihajlovski 已提交
1726
                              disk->blockio.physical_block_size);
1727
    }
1728

1729 1730 1731 1732 1733 1734
    if (disk->wwn) {
        if (STRPREFIX(disk->wwn, "0x"))
            virBufferAsprintf(&opt, ",wwn=%s", disk->wwn);
        else
            virBufferAsprintf(&opt, ",wwn=0x%s", disk->wwn);
    }
1735

1736 1737 1738 1739 1740 1741
    if (disk->vendor)
        virBufferAsprintf(&opt, ",vendor=%s", disk->vendor);

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

1742 1743
    if (disk->bus == VIR_DOMAIN_DISK_BUS_USB) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_STORAGE_REMOVABLE)) {
J
Ján Tomko 已提交
1744
            if (disk->removable == VIR_TRISTATE_SWITCH_ON)
1745 1746 1747 1748
                virBufferAddLit(&opt, ",removable=on");
            else
                virBufferAddLit(&opt, ",removable=off");
        } else {
J
Ján Tomko 已提交
1749
            if (disk->removable != VIR_TRISTATE_SWITCH_ABSENT) {
1750 1751 1752 1753 1754 1755 1756 1757
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("This QEMU doesn't support setting the "
                                 "removable flag of USB storage devices"));
                goto error;
            }
        }
    }

1758
    if (virBufferCheckError(&opt) < 0)
1759 1760 1761 1762
        goto error;

    return virBufferContentAndReset(&opt);

1763
 error:
1764 1765 1766 1767 1768 1769
    virBufferFreeAndReset(&opt);
    return NULL;
}


char *qemuBuildFSStr(virDomainFSDefPtr fs,
1770
                     virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED)
1771 1772
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
1773
    const char *driver = qemuDomainFSDriverTypeToString(fs->fsdriver);
1774
    const char *wrpolicy = virDomainFSWrpolicyTypeToString(fs->wrpolicy);
1775 1776

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
1777 1778
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only supports mount filesystem type"));
1779 1780 1781
        goto error;
    }

1782
    if (!driver) {
1783 1784
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Filesystem driver type not supported"));
1785 1786 1787 1788
        goto error;
    }
    virBufferAdd(&opt, driver, -1);

1789 1790 1791 1792
    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");
1793
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
1794
            virBufferAddLit(&opt, ",security_model=passthrough");
1795
        } else if (fs->accessmode == VIR_DOMAIN_FS_ACCESSMODE_SQUASH) {
1796 1797 1798 1799 1800 1801
            virBufferAddLit(&opt, ",security_model=none");
        }
    } else {
        /* For other fs drivers, default(passthru) should always
         * be supported */
        if (fs->accessmode != VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH) {
1802 1803
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("only supports passthrough accessmode"));
1804 1805
            goto error;
        }
1806
    }
1807 1808

    if (fs->wrpolicy) {
1809 1810 1811 1812 1813 1814 1815
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV_WRITEOUT)) {
            virBufferAsprintf(&opt, ",writeout=%s", wrpolicy);
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("filesystem writeout not supported"));
            goto error;
        }
1816 1817
    }

1818 1819
    virBufferAsprintf(&opt, ",id=%s%s", QEMU_FSDEV_HOST_PREFIX, fs->info.alias);
    virBufferAsprintf(&opt, ",path=%s", fs->src);
1820

1821
    if (fs->readonly) {
1822
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV_READONLY)) {
1823 1824
            virBufferAddLit(&opt, ",readonly");
        } else {
1825 1826 1827
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("readonly filesystem is not supported by this "
                             "QEMU binary"));
1828 1829 1830 1831
            goto error;
        }
    }

1832
    if (virBufferCheckError(&opt) < 0)
1833 1834 1835 1836
        goto error;

    return virBufferContentAndReset(&opt);

1837
 error:
1838 1839 1840 1841 1842 1843
    virBufferFreeAndReset(&opt);
    return NULL;
}


char *
1844 1845
qemuBuildFSDevStr(virDomainDefPtr def,
                  virDomainFSDefPtr fs,
1846
                  virQEMUCapsPtr qemuCaps)
1847 1848 1849 1850
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;

    if (fs->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
1851 1852
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("can only passthrough directories"));
1853 1854 1855
        goto error;
    }

1856 1857 1858 1859 1860
    if (fs->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
        virBufferAddLit(&opt, "virtio-9p-ccw");
    else
        virBufferAddLit(&opt, "virtio-9p-pci");

1861 1862 1863
    virBufferAsprintf(&opt, ",id=%s", fs->info.alias);
    virBufferAsprintf(&opt, ",fsdev=%s%s", QEMU_FSDEV_HOST_PREFIX, fs->info.alias);
    virBufferAsprintf(&opt, ",mount_tag=%s", fs->dst);
A
Alex Jia 已提交
1864

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

1868
    if (virBufferCheckError(&opt) < 0)
1869 1870 1871 1872
        goto error;

    return virBufferContentAndReset(&opt);

1873
 error:
1874 1875 1876 1877 1878
    virBufferFreeAndReset(&opt);
    return NULL;
}


1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
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 已提交
1898 1899
    case VIR_DOMAIN_CONTROLLER_MODEL_USB_NEC_XHCI:
        return QEMU_CAPS_NEC_USB_XHCI;
1900 1901 1902 1903 1904 1905 1906
    default:
        return -1;
    }
}


static int
1907 1908
qemuBuildUSBControllerDevStr(virDomainDefPtr domainDef,
                             virDomainControllerDefPtr def,
1909
                             virQEMUCapsPtr qemuCaps,
1910 1911 1912
                             virBuffer *buf)
{
    const char *smodel;
1913
    int model, flags;
1914 1915

    model = def->model;
1916

1917
    if (model == -1) {
1918
        if ARCH_IS_PPC64(domainDef->os.arch)
1919 1920 1921 1922
            model = VIR_DOMAIN_CONTROLLER_MODEL_USB_PCI_OHCI;
        else
            model = VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI;
    }
1923 1924

    smodel = qemuControllerModelUSBTypeToString(model);
1925
    flags = qemuControllerModelUSBToCaps(model);
1926

1927
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
1928 1929
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), smodel);
1930 1931 1932
        return -1;
    }

1933 1934
    virBufferAsprintf(buf, "%s", smodel);

1935 1936 1937 1938 1939
    if (def->info.mastertype == VIR_DOMAIN_CONTROLLER_MASTER_USB)
        virBufferAsprintf(buf, ",masterbus=%s.0,firstport=%d",
                          def->info.alias, def->info.master.usb.startport);
    else
        virBufferAsprintf(buf, ",id=%s", def->info.alias);
1940

1941 1942 1943
    return 0;
}

1944
char *
1945 1946
qemuBuildControllerDevStr(virDomainDefPtr domainDef,
                          virDomainControllerDefPtr def,
1947
                          virQEMUCapsPtr qemuCaps,
1948
                          int *nusbcontroller)
1949 1950
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
1951
    int model = def->model;
1952
    const char *modelName = NULL;
1953

1954 1955 1956 1957
    if (!qemuCheckCCWS390AddressSupport(domainDef, def->info, qemuCaps,
                                        "controller"))
        return NULL;

1958
    if (def->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
1959
        if ((qemuDomainSetSCSIControllerModel(domainDef, qemuCaps, &model)) < 0)
1960 1961
            return NULL;
    }
1962

1963
    if (!(def->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI &&
1964
          model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI)) {
1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979
        if (def->queues) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("'queues' is only supported by virtio-scsi controller"));
            return NULL;
        }
        if (def->cmd_per_lun) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("'cmd_per_lun' is only supported by virtio-scsi controller"));
            return NULL;
        }
        if (def->max_sectors) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("'max_sectors' is only supported by virtio-scsi controller"));
            return NULL;
        }
1980 1981 1982 1983 1984
        if (def->ioeventfd) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("'ioeventfd' is only supported by virtio-scsi controller"));
            return NULL;
        }
1985 1986
    }

1987 1988
    switch (def->type) {
    case VIR_DOMAIN_CONTROLLER_TYPE_SCSI:
1989
        switch (model) {
1990
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI:
1991 1992 1993 1994 1995
            if (def->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
                virBufferAddLit(&buf, "virtio-scsi-ccw");
            else if (def->info.type ==
                     VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390)
                virBufferAddLit(&buf, "virtio-scsi-s390");
1996 1997 1998
            else if (def->info.type ==
                     VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
                virBufferAddLit(&buf, "virtio-scsi-device");
1999 2000
            else
                virBufferAddLit(&buf, "virtio-scsi-pci");
2001
            break;
2002
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC:
2003
            virBufferAddLit(&buf, "lsi");
2004 2005 2006 2007
            break;
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_IBMVSCSI:
            virBufferAddLit(&buf, "spapr-vscsi");
            break;
2008 2009 2010
        case VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1078:
            virBufferAddLit(&buf, "megasas");
            break;
2011
        default:
2012 2013 2014
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported controller model: %s"),
                           virDomainControllerModelSCSITypeToString(def->model));
2015
        }
2016
        virBufferAsprintf(&buf, ",id=%s", def->info.alias);
2017 2018 2019 2020 2021
        break;

    case VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL:
        if (def->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
            virBufferAddLit(&buf, "virtio-serial-pci");
2022 2023 2024
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
            virBufferAddLit(&buf, "virtio-serial-ccw");
2025 2026 2027
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
            virBufferAddLit(&buf, "virtio-serial-s390");
2028 2029 2030
        } else if (def->info.type ==
                   VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO) {
            virBufferAddLit(&buf, "virtio-serial-device");
2031 2032 2033
        } else {
            virBufferAddLit(&buf, "virtio-serial");
        }
2034
        virBufferAsprintf(&buf, ",id=%s", def->info.alias);
2035
        if (def->opts.vioserial.ports != -1) {
2036
            virBufferAsprintf(&buf, ",max_ports=%d",
2037 2038 2039
                              def->opts.vioserial.ports);
        }
        if (def->opts.vioserial.vectors != -1) {
2040
            virBufferAsprintf(&buf, ",vectors=%d",
2041 2042 2043 2044
                              def->opts.vioserial.vectors);
        }
        break;

E
Eric Blake 已提交
2045
    case VIR_DOMAIN_CONTROLLER_TYPE_CCID:
2046
        virBufferAsprintf(&buf, "usb-ccid,id=%s", def->info.alias);
E
Eric Blake 已提交
2047 2048
        break;

J
Jim Fehlig 已提交
2049
    case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
2050 2051 2052 2053 2054 2055
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_ICH9_AHCI)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("SATA is not supported with this "
                             "QEMU binary"));
            goto error;
        }
2056
        virBufferAsprintf(&buf, "ahci,id=%s", def->info.alias);
J
Jim Fehlig 已提交
2057 2058
        break;

2059
    case VIR_DOMAIN_CONTROLLER_TYPE_USB:
2060
        if (qemuBuildUSBControllerDevStr(domainDef, def, qemuCaps, &buf) == -1)
2061 2062 2063 2064 2065 2066 2067
            goto error;

        if (nusbcontroller)
            *nusbcontroller += 1;

        break;

2068
    case VIR_DOMAIN_CONTROLLER_TYPE_PCI:
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080
        if (def->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT ||
            def->model == VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("wrong function called for pci-root/pcie-root"));
            return NULL;
        }
        if (def->idx == 0) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("index for pci controllers of model '%s' must be > 0"),
                           virDomainControllerModelPCITypeToString(def->model));
            goto error;
        }
2081 2082
        switch (def->model) {
        case VIR_DOMAIN_CONTROLLER_MODEL_PCI_BRIDGE:
2083
            if (def->opts.pciopts.modelName
2084 2085
                == VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_NONE ||
                def->opts.pciopts.chassisNr == -1) {
2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("autogenerated pci-bridge options not set"));
                goto error;
            }

            modelName = virDomainControllerPCIModelNameTypeToString(def->opts.pciopts.modelName);
            if (!modelName) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unknown pci-bridge model name value %d"),
                               def->opts.pciopts.modelName);
                goto error;
            }
            if (def->opts.pciopts.modelName
                != VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_PCI_BRIDGE) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("PCI controller model name '%s' "
                                 "is not valid for a pci-bridge"),
                               modelName);
                goto error;
            }
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PCI_BRIDGE)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("the pci-bridge controller "
                                 "is not supported in this QEMU binary"));
                goto error;
            }
            virBufferAsprintf(&buf, "%s,chassis_nr=%d,id=%s",
2113 2114
                              modelName, def->opts.pciopts.chassisNr,
                              def->info.alias);
2115
            break;
2116
        case VIR_DOMAIN_CONTROLLER_MODEL_DMI_TO_PCI_BRIDGE:
2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138
            if (def->opts.pciopts.modelName
                == VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_NONE) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("autogenerated dmi-to-pci-bridge options not set"));
                goto error;
            }

            modelName = virDomainControllerPCIModelNameTypeToString(def->opts.pciopts.modelName);
            if (!modelName) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unknown dmi-to-pci-bridge model name value %d"),
                               def->opts.pciopts.modelName);
                goto error;
            }
            if (def->opts.pciopts.modelName
                != VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_I82801B11_BRIDGE) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("PCI controller model name '%s' "
                                 "is not valid for a dmi-to-pci-bridge"),
                               modelName);
                goto error;
            }
2139 2140
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_DMI_TO_PCI_BRIDGE)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2141
                               _("the dmi-to-pci-bridge (i82801b11-bridge) "
2142 2143 2144
                                 "controller is not supported in this QEMU binary"));
                goto error;
            }
2145
            virBufferAsprintf(&buf, "%s,id=%s", modelName, def->info.alias);
2146
            break;
2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT_PORT:
            if (def->opts.pciopts.modelName
                == VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_NONE) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("autogenerated pcie-root-port options not set"));
                goto error;
            }
            modelName = virDomainControllerPCIModelNameTypeToString(def->opts.pciopts.modelName);
            if (!modelName) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unknown pcie-root-port model name value %d"),
                               def->opts.pciopts.modelName);
                goto error;
            }
            if (def->opts.pciopts.modelName
                != VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_IOH3420) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("PCI controller model name '%s' "
                                 "is not valid for a pcie-root-port"),
                               modelName);
                goto error;
            }
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_IOH3420)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("the pcie-root-port (ioh3420) "
                                 "controller is not supported in this QEMU binary"));
                goto error;
            }

            virBufferAsprintf(&buf, "%s,port=0x%x,chassis=%d,id=%s",
                              modelName, def->opts.pciopts.port,
                              def->opts.pciopts.chassis, def->info.alias);
            break;
2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_SWITCH_UPSTREAM_PORT:
            if (def->opts.pciopts.modelName
                == VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_NONE) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("autogenerated pcie-switch-upstream-port options not set"));
                goto error;
            }
            modelName = virDomainControllerPCIModelNameTypeToString(def->opts.pciopts.modelName);
            if (!modelName) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unknown pcie-switch-upstream-port model name value %d"),
                               def->opts.pciopts.modelName);
                goto error;
            }
            if (def->opts.pciopts.modelName
                != VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_X3130_UPSTREAM) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("PCI controller model name '%s' "
                                 "is not valid for a pcie-switch-upstream-port"),
                               modelName);
                goto error;
            }
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_X3130_UPSTREAM)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("the pcie-switch-upstream-port (x3130-upstream) "
                                 "controller is not supported in this QEMU binary"));
                goto error;
            }

            virBufferAsprintf(&buf, "%s,id=%s", modelName, def->info.alias);
            break;
2211 2212 2213 2214 2215 2216 2217 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
        case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_SWITCH_DOWNSTREAM_PORT:
            if (def->opts.pciopts.modelName
                == VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_NONE ||
                def->opts.pciopts.chassis == -1 ||
                def->opts.pciopts.port == -1) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("autogenerated pcie-switch-downstream-port "
                                 "options not set"));
                goto error;
            }

            modelName = virDomainControllerPCIModelNameTypeToString(def->opts.pciopts.modelName);
            if (!modelName) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unknown pcie-switch-downstream-port model name value %d"),
                               def->opts.pciopts.modelName);
                goto error;
            }
            if (def->opts.pciopts.modelName
                != VIR_DOMAIN_CONTROLLER_PCI_MODEL_NAME_XIO3130_DOWNSTREAM) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("PCI controller model name '%s' "
                                 "is not valid for a pcie-switch-downstream-port"),
                               modelName);
                goto error;
            }
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_XIO3130_DOWNSTREAM)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("The pcie-switch-downstream-port "
                                 "(xio3130-downstream) controller "
                                 "is not supported in this QEMU binary"));
                goto error;
            }
            virBufferAsprintf(&buf, "%s,port=0x%x,chassis=%d,id=%s",
                              modelName, def->opts.pciopts.port,
                              def->opts.pciopts.chassis, def->info.alias);
            break;
2248 2249 2250
        }
        break;

2251
    case VIR_DOMAIN_CONTROLLER_TYPE_IDE:
2252 2253 2254 2255 2256
        /* Since we currently only support the integrated IDE
         * controller on various boards, if we ever get to here, it's
         * because some other machinetype had an IDE controller
         * specified, or one with a single IDE contraller had multiple
         * ide controllers specified.
2257
         */
2258
        if (qemuDomainMachineHasBuiltinIDE(domainDef))
2259
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
2260
                           _("Only a single IDE controller is supported "
2261 2262 2263 2264 2265 2266 2267
                             "for this machine type"));
        else
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("IDE controllers are unsupported for "
                             "this QEMU binary or machine type"));
        goto error;

2268
    default:
2269
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
2270
                       _("Unsupported controller type: %s"),
2271
                       virDomainControllerTypeToString(def->type));
2272 2273 2274
        goto error;
    }

2275 2276
    if (def->queues)
        virBufferAsprintf(&buf, ",num_queues=%u", def->queues);
2277

2278 2279 2280 2281 2282 2283
    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);

2284 2285
    qemuBuildIoEventFdStr(&buf, def->ioeventfd, qemuCaps);

2286
    if (qemuBuildDeviceAddressStr(&buf, domainDef, &def->info, qemuCaps) < 0)
2287 2288
        goto error;

2289
    if (virBufferCheckError(&buf) < 0)
2290 2291 2292 2293
        goto error;

    return virBufferContentAndReset(&buf);

2294
 error:
2295 2296 2297 2298 2299
    virBufferFreeAndReset(&buf);
    return NULL;
}


2300 2301 2302 2303
/**
 * qemuBuildMemoryBackendStr:
 * @size: size of the memory device in kibibytes
 * @pagesize: size of the requested memory page in KiB, 0 for default
2304 2305
 * @guestNode: NUMA node in the guest that the memory object will be attached
 *             to, or -1 if NUMA is not used in the guest
2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322
 * @hostNodes: map of host nodes to alloc the memory in, NULL for default
 * @autoNodeset: fallback nodeset in case of automatic numa placement
 * @def: domain definition object
 * @qemuCaps: qemu capabilities object
 * @cfg: qemu driver config object
 * @aliasPrefix: prefix string of the alias (to allow for multiple frontents)
 * @id: index of the device (to construct the alias)
 * @backendStr: returns the object string
 *
 * Formats the configuration string for the memory device backend according
 * to the configuration. @pagesize and @hostNodes can be used to override the
 * default source configuration, both are optional.
 *
 * Returns 0 on success, 1 if only the implicit memory-device-ram with no
 * other configuration was used (to detect legacy configurations). Returns
 * -1 in case of an error.
 */
2323
int
2324 2325 2326 2327 2328 2329 2330 2331
qemuBuildMemoryBackendStr(unsigned long long size,
                          unsigned long long pagesize,
                          int guestNode,
                          virBitmapPtr userNodeset,
                          virBitmapPtr autoNodeset,
                          virDomainDefPtr def,
                          virQEMUCapsPtr qemuCaps,
                          virQEMUDriverConfigPtr cfg,
2332 2333
                          const char **backendType,
                          virJSONValuePtr *backendProps,
2334 2335 2336 2337 2338
                          bool force)
{
    virDomainHugePagePtr master_hugepage = NULL;
    virDomainHugePagePtr hugepage = NULL;
    virDomainNumatuneMemMode mode;
2339
    const long system_page_size = virGetSystemPageSizeKB();
2340
    virNumaMemAccess memAccess = VIR_NUMA_MEM_ACCESS_DEFAULT;
2341 2342
    size_t i;
    char *mem_path = NULL;
2343
    virBitmapPtr nodemask = NULL;
2344
    int ret = -1;
2345
    virJSONValuePtr props = NULL;
2346
    bool nodeSpecified = virDomainNumatuneNodeSpecified(def->numa, guestNode);
2347

2348 2349 2350
    *backendProps = NULL;
    *backendType = NULL;

2351 2352 2353 2354 2355 2356 2357 2358 2359
    if (guestNode >= 0) {
        /* memory devices could provide a invalid guest node */
        if (guestNode >= virDomainNumaGetNodeCount(def->numa)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("can't add memory backend for guest node '%d' as "
                             "the guest has only '%zu' NUMA nodes configured"),
                           guestNode, virDomainNumaGetNodeCount(def->numa));
            return -1;
        }
2360

2361 2362
        memAccess = virDomainNumaGetNodeMemoryAccessMode(def->numa, guestNode);
    }
2363

2364 2365 2366
    if (virDomainNumatuneGetMode(def->numa, guestNode, &mode) < 0 &&
        virDomainNumatuneGetMode(def->numa, -1, &mode) < 0)
        mode = VIR_DOMAIN_NUMATUNE_MEM_STRICT;
2367

2368
    if (pagesize == 0) {
2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
        /* Find the huge page size we want to use */
        for (i = 0; i < def->mem.nhugepages; i++) {
            bool thisHugepage = false;

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

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

2380 2381 2382 2383
            /* just find the master hugepage in case we don't use NUMA */
            if (guestNode < 0)
                continue;

2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406
            if (virBitmapGetBit(hugepage->nodemask, guestNode,
                                &thisHugepage) < 0) {
                /* Ignore this error. It's not an error after all. Well,
                 * the nodemask for this <page/> can contain lower NUMA
                 * nodes than we are querying in here. */
                continue;
            }

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

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

        if (hugepage)
            pagesize = hugepage->size;
2407
    }
2408

2409 2410 2411 2412 2413 2414
    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;
        hugepage = NULL;
2415 2416
    }

2417 2418 2419
    if (!(props = virJSONValueNewObject()))
        return -1;

2420 2421
    if (pagesize || hugepage) {
        if (pagesize) {
2422 2423 2424
            /* Now lets see, if the huge page we want to use is even mounted
             * and ready to use */
            for (i = 0; i < cfg->nhugetlbfs; i++) {
2425
                if (cfg->hugetlbfs[i].size == pagesize)
2426 2427
                    break;
            }
2428

2429 2430 2431
            if (i == cfg->nhugetlbfs) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Unable to find any usable hugetlbfs mount for %llu KiB"),
2432
                               pagesize);
2433 2434
                goto cleanup;
            }
2435

2436 2437 2438 2439 2440 2441 2442
            if (!(mem_path = qemuGetHugepagePath(&cfg->hugetlbfs[i])))
                goto cleanup;
        } else {
            if (!(mem_path = qemuGetDefaultHugepath(cfg->hugetlbfs,
                                                    cfg->nhugetlbfs)))
                goto cleanup;
        }
2443

2444 2445 2446 2447 2448 2449 2450
        *backendType = "memory-backend-file";

        if (virJSONValueObjectAdd(props,
                                  "b:prealloc", true,
                                  "s:mem-path", mem_path,
                                  NULL) < 0)
            goto cleanup;
2451 2452

        switch (memAccess) {
2453
        case VIR_NUMA_MEM_ACCESS_SHARED:
2454 2455
            if (virJSONValueObjectAdd(props, "b:share", true, NULL) < 0)
                goto cleanup;
2456 2457
            break;

2458
        case VIR_NUMA_MEM_ACCESS_PRIVATE:
2459 2460
            if (virJSONValueObjectAdd(props, "b:share", false, NULL) < 0)
                goto cleanup;
2461 2462
            break;

2463 2464
        case VIR_NUMA_MEM_ACCESS_DEFAULT:
        case VIR_NUMA_MEM_ACCESS_LAST:
2465 2466 2467 2468 2469 2470 2471 2472 2473 2474
            break;
        }
    } else {
        if (memAccess) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Shared memory mapping is supported "
                             "only with hugepages"));
            goto cleanup;
        }

2475
        *backendType = "memory-backend-ram";
2476 2477
    }

2478 2479
    if (virJSONValueObjectAdd(props, "U:size", size * 1024, NULL) < 0)
        goto cleanup;
2480 2481

    if (userNodeset) {
2482
        nodemask = userNodeset;
2483
    } else {
2484
        if (virDomainNumatuneMaybeGetNodeset(def->numa, autoNodeset,
2485
                                             &nodemask, guestNode) < 0)
2486 2487 2488 2489
            goto cleanup;
    }

    if (nodemask) {
2490 2491
        if (!virNumaNodesetIsAvailable(nodemask))
            goto cleanup;
2492 2493 2494 2495
        if (virJSONValueObjectAdd(props,
                                  "m:host-nodes", nodemask,
                                  "S:policy", qemuNumaPolicyTypeToString(mode),
                                  NULL) < 0)
2496 2497 2498
            goto cleanup;
    }

2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513
    /* If none of the following is requested... */
    if (!pagesize && !userNodeset && !memAccess && !nodeSpecified && !force) {
        /* report back that using the new backend is not necessary
         * to achieve the desired configuration */
        ret = 1;
    } else {
        /* otherwise check the required capability */
        if (STREQ(*backendType, "memory-backend-file") &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support the "
                             "memory-backend-file object"));
            goto cleanup;
        } else if (STREQ(*backendType, "memory-backend-ram") &&
                   !virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM)) {
2514 2515 2516
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support the "
                             "memory-backend-ram object"));
2517
            goto cleanup;
2518 2519
        }

2520
        ret = 0;
2521 2522
    }

2523 2524
    *backendProps = props;
    props = NULL;
2525 2526

 cleanup:
2527
    virJSONValueFree(props);
2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541
    VIR_FREE(mem_path);

    return ret;
}


static int
qemuBuildMemoryCellBackendStr(virDomainDefPtr def,
                              virQEMUCapsPtr qemuCaps,
                              virQEMUDriverConfigPtr cfg,
                              size_t cell,
                              virBitmapPtr auto_nodeset,
                              char **backendStr)
{
2542 2543 2544 2545 2546
    virJSONValuePtr props = NULL;
    char *alias = NULL;
    const char *backendType;
    int ret = -1;
    int rc;
2547 2548
    unsigned long long memsize = virDomainNumaGetNodeMemorySize(def->numa,
                                                                cell);
2549

2550
    *backendStr = NULL;
2551

2552 2553 2554
    if (virAsprintf(&alias, "ram-node%zu", cell) < 0)
        goto cleanup;

2555 2556 2557
    if ((rc = qemuBuildMemoryBackendStr(memsize, 0, cell, NULL, auto_nodeset,
                                        def, qemuCaps, cfg, &backendType,
                                        &props, false)) < 0)
2558 2559 2560 2561 2562 2563 2564
        goto cleanup;

    if (!(*backendStr = qemuBuildObjectCommandlineFromJSON(backendType,
                                                           alias,
                                                           props)))
        goto cleanup;

2565
    ret = rc;
2566 2567 2568 2569 2570

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

2571 2572 2573 2574
    return ret;
}


2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610
static char *
qemuBuildMemoryDimmBackendStr(virDomainMemoryDefPtr mem,
                              virDomainDefPtr def,
                              virQEMUCapsPtr qemuCaps,
                              virQEMUDriverConfigPtr cfg)
{
    virJSONValuePtr props = NULL;
    char *alias = NULL;
    const char *backendType;
    char *ret = NULL;

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

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

    if (qemuBuildMemoryBackendStr(mem->size, mem->pagesize,
                                  mem->targetNode, mem->sourceNodes, NULL,
                                  def, qemuCaps, cfg,
                                  &backendType, &props, true) < 0)
        goto cleanup;

    ret = qemuBuildObjectCommandlineFromJSON(backendType, alias, props);

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

    return ret;
}


2611
char *
2612
qemuBuildMemoryDeviceStr(virDomainMemoryDefPtr mem)
2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

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

    switch ((virDomainMemoryModel) mem->model) {
    case VIR_DOMAIN_MEMORY_MODEL_DIMM:
2624 2625 2626 2627 2628 2629 2630
        virBufferAddLit(&buf, "pc-dimm,");

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

        virBufferAsprintf(&buf, "memdev=mem%s,id=%s",
                          mem->info.alias, mem->info.alias);
2631 2632 2633

        if (mem->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DIMM) {
            virBufferAsprintf(&buf, ",slot=%d", mem->info.addr.dimm.slot);
2634
            virBufferAsprintf(&buf, ",addr=%llu", mem->info.addr.dimm.base);
2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653
        }

        break;

    case VIR_DOMAIN_MEMORY_MODEL_NONE:
    case VIR_DOMAIN_MEMORY_MODEL_LAST:
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("invalid memory device type"));
        break;

    }

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

    return virBufferContentAndReset(&buf);
}


2654 2655 2656 2657 2658 2659
char *
qemuBuildNicStr(virDomainNetDefPtr net,
                const char *prefix,
                int vlan)
{
    char *str;
2660 2661
    char macaddr[VIR_MAC_STRING_BUFLEN];

2662 2663 2664 2665 2666 2667 2668 2669 2670
    ignore_value(virAsprintf(&str,
                             "%smacaddr=%s,vlan=%d%s%s%s%s",
                             prefix ? prefix : "",
                             virMacAddrFormat(&net->mac, macaddr),
                             vlan,
                             (net->model ? ",model=" : ""),
                             (net->model ? net->model : ""),
                             (net->info.alias ? ",name=" : ""),
                             (net->info.alias ? net->info.alias : "")));
2671 2672 2673 2674 2675
    return str;
}


char *
2676 2677
qemuBuildNicDevStr(virDomainDefPtr def,
                   virDomainNetDefPtr net,
2678
                   int vlan,
2679
                   int bootindex,
2680
                   size_t vhostfdSize,
2681
                   virQEMUCapsPtr qemuCaps)
2682 2683
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2684
    const char *nic = net->model;
2685
    bool usingVirtio = false;
2686
    char macaddr[VIR_MAC_STRING_BUFLEN];
2687

2688 2689
    if (STREQ(net->model, "virtio")) {
        if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
2690
            nic = "virtio-net-ccw";
2691
        else if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390)
2692
            nic = "virtio-net-s390";
2693 2694
        else if (net->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
            nic = "virtio-net-device";
2695
        else
2696
            nic = "virtio-net-pci";
2697

2698
        usingVirtio = true;
2699 2700
    }

2701
    virBufferAdd(&buf, nic, -1);
2702
    if (usingVirtio && net->driver.virtio.txmode) {
2703
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_TX_ALG)) {
2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716
            virBufferAddLit(&buf, ",tx=");
            switch (net->driver.virtio.txmode) {
                case VIR_DOMAIN_NET_VIRTIO_TX_MODE_IOTHREAD:
                    virBufferAddLit(&buf, "bh");
                    break;

                case VIR_DOMAIN_NET_VIRTIO_TX_MODE_TIMER:
                    virBufferAddLit(&buf, "timer");
                    break;
                default:
                    /* this should never happen, if it does, we need
                     * to add another case to this switch.
                     */
2717 2718
                    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                                   _("unrecognized virtio-net-pci 'tx' option"));
2719 2720 2721
                    goto error;
            }
        } else {
2722 2723
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-net-pci 'tx' option not supported in this QEMU binary"));
2724 2725 2726
            goto error;
        }
    }
2727
    if (usingVirtio) {
2728
        qemuBuildIoEventFdStr(&buf, net->driver.virtio.ioeventfd, qemuCaps);
2729
        if (net->driver.virtio.event_idx &&
2730
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_NET_EVENT_IDX)) {
2731
            virBufferAsprintf(&buf, ",event_idx=%s",
J
Ján Tomko 已提交
2732
                              virTristateSwitchTypeToString(net->driver.virtio.event_idx));
2733
        }
2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757
        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 已提交
2758 2759 2760 2761
        if (net->driver.virtio.host.mrg_rxbuf) {
            virBufferAsprintf(&buf, ",mrg_rxbuf=%s",
                              virTristateSwitchTypeToString(net->driver.virtio.host.mrg_rxbuf));
        }
2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781
        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));
        }
2782
    }
2783
    if (usingVirtio && vhostfdSize > 1) {
2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794
        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 {
            /* As advised at http://www.linux-kvm.org/page/Multiqueue
             * we should add vectors=2*N+2 where N is the vhostfdSize
             */
            virBufferAsprintf(&buf, ",mq=on,vectors=%zu", 2 * vhostfdSize + 2);
        }
2795
    }
2796
    if (vlan == -1)
2797
        virBufferAsprintf(&buf, ",netdev=host%s", net->info.alias);
2798
    else
2799 2800
        virBufferAsprintf(&buf, ",vlan=%d", vlan);
    virBufferAsprintf(&buf, ",id=%s", net->info.alias);
2801 2802
    virBufferAsprintf(&buf, ",mac=%s",
                      virMacAddrFormat(&net->mac, macaddr));
2803
    if (qemuBuildDeviceAddressStr(&buf, def, &net->info, qemuCaps) < 0)
2804
        goto error;
2805
    if (qemuBuildRomStr(&buf, &net->info, qemuCaps) < 0)
2806
        goto error;
2807
    if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
2808
        virBufferAsprintf(&buf, ",bootindex=%d", bootindex);
2809

2810
    if (virBufferCheckError(&buf) < 0)
2811 2812 2813 2814
        goto error;

    return virBufferContentAndReset(&buf);

2815
 error:
2816 2817 2818 2819 2820 2821 2822
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
qemuBuildHostNetStr(virDomainNetDefPtr net,
2823
                    virQEMUDriverPtr driver,
2824 2825
                    char type_sep,
                    int vlan,
2826
                    char **tapfd,
2827
                    size_t tapfdSize,
2828
                    char **vhostfd,
2829
                    size_t vhostfdSize)
2830
{
2831
    bool is_tap = false;
2832
    virBuffer buf = VIR_BUFFER_INITIALIZER;
2833
    virDomainNetType netType = virDomainNetGetActualType(net);
2834
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
2835
    size_t i;
2836

2837
    if (net->script && netType != VIR_DOMAIN_NET_TYPE_ETHERNET) {
2838 2839 2840
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("scripts are not supported on interfaces of type %s"),
                       virDomainNetTypeToString(netType));
2841
        virObjectUnref(cfg);
2842 2843 2844 2845
        return NULL;
    }

    switch (netType) {
R
Richa Marwaha 已提交
2846 2847 2848 2849 2850
    /*
     * If type='bridge', and we're running as privileged user
     * or -netdev bridge is not supported then it will fall
     * through, -net tap,fd
     */
2851
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
R
Richa Marwaha 已提交
2852
    case VIR_DOMAIN_NET_TYPE_NETWORK:
2853
    case VIR_DOMAIN_NET_TYPE_DIRECT:
2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866
        virBufferAsprintf(&buf, "tap%c", type_sep);
        /* for one tapfd 'fd=' shall be used,
         * for more than one 'fds=' is the right choice */
        if (tapfdSize == 1) {
            virBufferAsprintf(&buf, "fd=%s", tapfd[0]);
        } else {
            virBufferAddLit(&buf, "fds=");
            for (i = 0; i < tapfdSize; i++) {
                if (i)
                    virBufferAddChar(&buf, ':');
                virBufferAdd(&buf, tapfd[i], -1);
            }
        }
2867
        type_sep = ',';
2868
        is_tap = true;
2869 2870 2871 2872 2873
        break;

    case VIR_DOMAIN_NET_TYPE_ETHERNET:
        virBufferAddLit(&buf, "tap");
        if (net->ifname) {
2874
            virBufferAsprintf(&buf, "%cifname=%s", type_sep, net->ifname);
2875 2876
            type_sep = ',';
        }
2877
        if (net->script) {
2878
            virBufferAsprintf(&buf, "%cscript=%s", type_sep,
2879
                              net->script);
2880 2881
            type_sep = ',';
        }
2882
        is_tap = true;
2883 2884 2885
        break;

    case VIR_DOMAIN_NET_TYPE_CLIENT:
2886 2887 2888 2889 2890 2891 2892
       virBufferAsprintf(&buf, "socket%cconnect=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;

2893
    case VIR_DOMAIN_NET_TYPE_SERVER:
2894 2895
       virBufferAsprintf(&buf, "socket%clisten=%s:%d",
                         type_sep,
2896 2897
                         net->data.socket.address ? net->data.socket.address
                                                  : "",
2898 2899 2900 2901
                         net->data.socket.port);
       type_sep = ',';
       break;

2902
    case VIR_DOMAIN_NET_TYPE_MCAST:
2903 2904 2905 2906 2907 2908
       virBufferAsprintf(&buf, "socket%cmcast=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port);
       type_sep = ',';
       break;
2909

2910 2911 2912 2913 2914 2915 2916 2917 2918 2919
    case VIR_DOMAIN_NET_TYPE_UDP:
       virBufferAsprintf(&buf, "socket%cudp=%s:%d,localaddr=%s:%d",
                         type_sep,
                         net->data.socket.address,
                         net->data.socket.port,
                         net->data.socket.localaddr,
                         net->data.socket.localport);
       type_sep = ',';
       break;

2920 2921 2922 2923 2924 2925 2926
    case VIR_DOMAIN_NET_TYPE_USER:
    default:
        virBufferAddLit(&buf, "user");
        break;
    }

    if (vlan >= 0) {
2927
        virBufferAsprintf(&buf, "%cvlan=%d", type_sep, vlan);
2928
        if (net->info.alias)
2929
            virBufferAsprintf(&buf, ",name=host%s",
2930 2931
                              net->info.alias);
    } else {
2932
        virBufferAsprintf(&buf, "%cid=host%s",
2933 2934 2935
                          type_sep, net->info.alias);
    }

2936
    if (is_tap) {
2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949
        if (vhostfdSize) {
            virBufferAddLit(&buf, ",vhost=on,");
            if (vhostfdSize == 1) {
                virBufferAsprintf(&buf, "vhostfd=%s", vhostfd[0]);
            } else {
                virBufferAddLit(&buf, "vhostfds=");
                for (i = 0; i < vhostfdSize; i++) {
                    if (i)
                        virBufferAddChar(&buf, ':');
                    virBufferAdd(&buf, vhostfd[i], -1);
                }
            }
        }
2950
        if (net->tune.sndbuf_specified)
2951
            virBufferAsprintf(&buf, ",sndbuf=%lu", net->tune.sndbuf);
2952 2953
    }

2954 2955
    virObjectUnref(cfg);

2956
    if (virBufferCheckError(&buf) < 0)
2957 2958 2959 2960 2961 2962 2963
        return NULL;

    return virBufferContentAndReset(&buf);
}


char *
2964 2965
qemuBuildWatchdogDevStr(virDomainDefPtr def,
                        virDomainWatchdogDefPtr dev,
2966
                        virQEMUCapsPtr qemuCaps)
2967 2968 2969 2970 2971
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    const char *model = virDomainWatchdogModelTypeToString(dev->model);
    if (!model) {
2972 2973
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing watchdog model"));
2974 2975 2976
        goto error;
    }

2977
    virBufferAsprintf(&buf, "%s,id=%s", model, dev->info.alias);
2978
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
2979 2980
        goto error;

2981
    if (virBufferCheckError(&buf) < 0)
2982 2983 2984 2985
        goto error;

    return virBufferContentAndReset(&buf);

2986
 error:
2987 2988 2989 2990 2991 2992
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
2993 2994
qemuBuildMemballoonDevStr(virDomainDefPtr def,
                          virDomainMemballoonDefPtr dev,
2995
                          virQEMUCapsPtr qemuCaps)
2996 2997 2998
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

2999 3000 3001 3002 3003 3004 3005
    switch (dev->info.type) {
        case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI:
            virBufferAddLit(&buf, "virtio-balloon-pci");
            break;
        case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW:
            virBufferAddLit(&buf, "virtio-balloon-ccw");
            break;
3006 3007 3008
        case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO:
            virBufferAddLit(&buf, "virtio-balloon-device");
            break;
3009
        default:
3010 3011 3012
            virReportError(VIR_ERR_XML_ERROR,
                           _("memballoon unsupported with address type '%s'"),
                           virDomainDeviceAddressTypeToString(dev->info.type));
3013 3014 3015
            goto error;
    }

3016
    virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
3017
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
3018 3019
        goto error;

3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030
    if (dev->autodeflate != VIR_TRISTATE_SWITCH_ABSENT) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_BALLOON_AUTODEFLATE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("deflate-on-oom is not supported by this QEMU binary"));
            goto error;
        }

        virBufferAsprintf(&buf, ",deflate-on-oom=%s",
                          virTristateSwitchTypeToString(dev->autodeflate));
    }

3031
    if (virBufferCheckError(&buf) < 0)
3032 3033 3034 3035
        goto error;

    return virBufferContentAndReset(&buf);

3036
 error:
3037 3038 3039 3040
    virBufferFreeAndReset(&buf);
    return NULL;
}

3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055
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;
    }

3056
    if (virBufferCheckError(&buf) < 0)
3057 3058 3059 3060
        goto error;

    return virBufferContentAndReset(&buf);

3061
 error:
3062 3063 3064
    virBufferFreeAndReset(&buf);
    return NULL;
}
3065

3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109
static char *
qemuBuildVirtioInputDevStr(virDomainDefPtr def,
                           virDomainInputDefPtr dev,
                           virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const char *suffix;

    if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
        suffix = "-pci";
    } else if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO) {
        suffix = "-device";
    } else {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported address type %s for virtio input device"),
                       virDomainDeviceAddressTypeToString(dev->info.type));
        goto error;
    }

    switch ((virDomainInputType) dev->type) {
    case VIR_DOMAIN_INPUT_TYPE_MOUSE:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_MOUSE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-mouse is not supported by this QEMU binary"));
            goto error;
        }
        virBufferAsprintf(&buf, "virtio-mouse%s,id=%s", suffix, dev->info.alias);
        break;
    case VIR_DOMAIN_INPUT_TYPE_TABLET:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_TABLET)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-tablet is not supported by this QEMU binary"));
            goto error;
        }
        virBufferAsprintf(&buf, "virtio-tablet%s,id=%s", suffix, dev->info.alias);
        break;
    case VIR_DOMAIN_INPUT_TYPE_KBD:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_KEYBOARD)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-keyboard is not supported by this QEMU binary"));
            goto error;
        }
        virBufferAsprintf(&buf, "virtio-keyboard%s,id=%s", suffix, dev->info.alias);
        break;
3110
    case VIR_DOMAIN_INPUT_TYPE_PASSTHROUGH:
3111 3112 3113 3114 3115 3116 3117 3118
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_INPUT_HOST)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("virtio-input-host is not supported by this QEMU binary"));
            goto error;
        }
        virBufferAsprintf(&buf, "virtio-input-host%s,id=%s,evdev=", suffix, dev->info.alias);
        virBufferEscape(&buf, ',', ",", "%s", dev->source.evdev);
        break;
3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135
    case VIR_DOMAIN_INPUT_TYPE_LAST:
        break;
    }

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

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

    return virBufferContentAndReset(&buf);

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

3136
char *
3137 3138
qemuBuildUSBInputDevStr(virDomainDefPtr def,
                        virDomainInputDefPtr dev,
3139
                        virQEMUCapsPtr qemuCaps)
3140 3141 3142
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155
    switch (dev->type) {
    case VIR_DOMAIN_INPUT_TYPE_MOUSE:
        virBufferAsprintf(&buf, "usb-mouse,id=%s", dev->info.alias);
        break;
    case VIR_DOMAIN_INPUT_TYPE_TABLET:
        virBufferAsprintf(&buf, "usb-tablet,id=%s", dev->info.alias);
        break;
    case VIR_DOMAIN_INPUT_TYPE_KBD:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_KBD))
            goto error;
        virBufferAsprintf(&buf, "usb-kbd,id=%s", dev->info.alias);
        break;
    }
3156

3157
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
3158 3159
        goto error;

3160
    if (virBufferCheckError(&buf) < 0)
3161 3162 3163 3164
        goto error;

    return virBufferContentAndReset(&buf);

3165
 error:
3166 3167 3168 3169 3170 3171
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
3172 3173
qemuBuildSoundDevStr(virDomainDefPtr def,
                     virDomainSoundDefPtr sound,
3174
                     virQEMUCapsPtr qemuCaps)
3175 3176
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3177
    const char *model = NULL;
3178

3179
    /* Hack for devices with different names in QEMU and libvirt */
3180
    switch ((virDomainSoundModel) sound->model) {
3181
    case VIR_DOMAIN_SOUND_MODEL_ES1370:
3182
        model = "ES1370";
3183 3184
        break;
    case VIR_DOMAIN_SOUND_MODEL_AC97:
3185
        model = "AC97";
3186 3187
        break;
    case VIR_DOMAIN_SOUND_MODEL_ICH6:
3188
        model = "intel-hda";
3189
        break;
3190 3191 3192 3193 3194 3195 3196 3197 3198
    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;
3199 3200 3201 3202 3203 3204 3205 3206 3207
    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;
3208 3209 3210 3211 3212 3213 3214 3215 3216
    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;
3217
    }
3218

3219
    virBufferAsprintf(&buf, "%s,id=%s", model, sound->info.alias);
3220
    if (qemuBuildDeviceAddressStr(&buf, def, &sound->info, qemuCaps) < 0)
3221 3222
        goto error;

3223
    if (virBufferCheckError(&buf) < 0)
3224 3225 3226 3227
        goto error;

    return virBufferContentAndReset(&buf);

3228
 error:
3229 3230 3231 3232
    virBufferFreeAndReset(&buf);
    return NULL;
}

3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247

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


3248 3249
static char *
qemuBuildSoundCodecStr(virDomainSoundDefPtr sound,
3250
                       virDomainSoundCodecDefPtr codec,
3251
                       virQEMUCapsPtr qemuCaps)
3252 3253
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3254
    const char *stype;
3255
    int type, flags;
3256

3257 3258
    type = codec->type;
    stype = qemuSoundCodecTypeToString(type);
3259
    flags = qemuSoundCodecTypeToCaps(type);
3260

3261
    if (flags == -1 || !virQEMUCapsGet(qemuCaps, flags)) {
3262 3263
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s not supported in this QEMU binary"), stype);
3264 3265 3266
        goto error;
    }

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

3270 3271
    return virBufferContentAndReset(&buf);

3272
 error:
3273 3274 3275
    virBufferFreeAndReset(&buf);
    return NULL;
}
3276 3277

static char *
3278 3279
qemuBuildDeviceVideoStr(virDomainDefPtr def,
                        virDomainVideoDefPtr video,
3280
                        virQEMUCapsPtr qemuCaps,
3281
                        bool primary)
3282 3283
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3284
    const char *model;
3285

3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300
    if (primary) {
        model = qemuDeviceVideoTypeToString(video->type);
        if (!model || STREQ(model, "")) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("video type %s is not supported with QEMU"),
                           virDomainVideoTypeToString(video->type));
            goto error;
        }
    } else {
        if (video->type != VIR_DOMAIN_VIDEO_TYPE_QXL) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("non-primary video device must be type of 'qxl'"));
            goto error;
        }

3301
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL)) {
3302 3303 3304 3305 3306 3307
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("only one video card is currently supported"));
            goto error;
        }

        model = "qxl";
3308 3309
    }

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

3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323
    if (video->type == VIR_DOMAIN_VIDEO_TYPE_VIRTIO) {
        if (video->accel && video->accel->accel3d) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIRTIO_GPU_VIRGL)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("virtio-gpu 3d acceleration is not supported"));
                goto error;
            }

            virBufferAsprintf(&buf, ",virgl=%s",
                              virTristateSwitchTypeToString(video->accel->accel3d));
        }
    } else if (video->type == VIR_DOMAIN_VIDEO_TYPE_QXL) {
3324
        if (video->vram > (UINT_MAX / 1024)) {
3325
            virReportError(VIR_ERR_OVERFLOW,
3326 3327
                           _("value for 'vram' must be less than '%u'"),
                           UINT_MAX / 1024);
3328 3329
            goto error;
        }
3330 3331 3332 3333 3334 3335 3336
        if (video->ram > (UINT_MAX / 1024)) {
            virReportError(VIR_ERR_OVERFLOW,
                           _("value for 'ram' must be less than '%u'"),
                           UINT_MAX / 1024);
            goto error;
        }

3337 3338 3339 3340
        if (video->ram) {
            /* QEMU accepts bytes for ram_size. */
            virBufferAsprintf(&buf, ",ram_size=%u", video->ram * 1024);
        }
3341

3342 3343 3344 3345
        if (video->vram) {
            /* QEMU accepts bytes for vram_size. */
            virBufferAsprintf(&buf, ",vram_size=%u", video->vram * 1024);
        }
3346 3347 3348 3349 3350 3351

        if ((primary && virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VGA_VGAMEM)) ||
            (!primary && virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VGAMEM))) {
            /* QEMU accepts mebibytes for vgamem_mb. */
            virBufferAsprintf(&buf, ",vgamem_mb=%u", video->vgamem / 1024);
        }
3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365
    } else if (video->vram &&
        ((video->type == VIR_DOMAIN_VIDEO_TYPE_VGA &&
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_VGAMEM)) ||
         (video->type == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_VMWARE_SVGA_VGAMEM)))) {

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

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

3368
    if (qemuBuildDeviceAddressStr(&buf, def, &video->info, qemuCaps) < 0)
3369 3370
        goto error;

3371
    if (virBufferCheckError(&buf) < 0)
3372 3373 3374 3375
        goto error;

    return virBufferContentAndReset(&buf);

3376
 error:
3377 3378 3379 3380 3381 3382 3383 3384
    virBufferFreeAndReset(&buf);
    return NULL;
}


int
qemuOpenPCIConfig(virDomainHostdevDefPtr dev)
{
3385
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
3386 3387 3388 3389
    char *path = NULL;
    int configfd = -1;

    if (virAsprintf(&path, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/config",
3390 3391
                    pcisrc->addr.domain, pcisrc->addr.bus,
                    pcisrc->addr.slot, pcisrc->addr.function) < 0)
3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404
        return -1;

    configfd = open(path, O_RDWR, 0);

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

    VIR_FREE(path);

    return configfd;
}

char *
3405 3406
qemuBuildPCIHostdevDevStr(virDomainDefPtr def,
                          virDomainHostdevDefPtr dev,
3407
                          int bootIndex, /* used iff dev->info->bootIndex == 0 */
3408
                          const char *configfd,
3409
                          virQEMUCapsPtr qemuCaps)
3410 3411
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3412 3413
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
    int backend = pcisrc->backend;
3414

3415
    /* caller has to assign proper passthrough backend type */
3416
    switch ((virDomainHostdevSubsysPCIBackendType) backend) {
3417
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM:
3418 3419 3420
        virBufferAddLit(&buf, "pci-assign");
        if (configfd && *configfd)
            virBufferAsprintf(&buf, ",configfd=%s", configfd);
3421 3422 3423 3424 3425 3426
        break;

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

3427
    default:
3428 3429
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid PCI passthrough type '%s'"),
3430
                       virDomainHostdevSubsysPCIBackendTypeToString(backend));
3431
        goto error;
3432
    }
3433

3434
    virBufferAddLit(&buf, ",host=");
3435
    if (pcisrc->addr.domain) {
3436 3437 3438 3439
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_HOST_PCI_MULTIDOMAIN)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("non-zero domain='%.4x' in host device PCI address "
                             "not supported in this QEMU binary"),
3440
                           pcisrc->addr.domain);
3441 3442
            goto error;
        }
3443
        virBufferAsprintf(&buf, "%.4x:", pcisrc->addr.domain);
3444 3445
    }
    virBufferAsprintf(&buf, "%.2x:%.2x.%.1x",
3446 3447
                      pcisrc->addr.bus, pcisrc->addr.slot,
                      pcisrc->addr.function);
3448 3449
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
    if (dev->info->bootIndex)
3450 3451 3452
        bootIndex = dev->info->bootIndex;
    if (bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", bootIndex);
3453
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
3454
        goto error;
3455
    if (qemuBuildRomStr(&buf, dev->info, qemuCaps) < 0)
3456
        goto error;
3457

3458
    if (virBufferCheckError(&buf) < 0)
3459 3460 3461 3462
        goto error;

    return virBufferContentAndReset(&buf);

3463
 error:
3464 3465 3466 3467 3468 3469
    virBufferFreeAndReset(&buf);
    return NULL;
}


char *
3470 3471
qemuBuildPCIHostdevPCIDevStr(virDomainHostdevDefPtr dev,
                             virQEMUCapsPtr qemuCaps)
3472 3473
{
    char *ret = NULL;
3474
    virDomainHostdevSubsysPCIPtr pcisrc = &dev->source.subsys.u.pci;
3475

3476
    if (pcisrc->addr.domain) {
3477 3478 3479 3480
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_HOST_PCI_MULTIDOMAIN)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("non-zero domain='%.4x' in host device PCI address "
                             "not supported in this QEMU binary"),
3481
                           pcisrc->addr.domain);
3482 3483 3484
            goto cleanup;
        }
        ignore_value(virAsprintf(&ret, "host=%.4x:%.2x:%.2x.%.1x",
3485 3486
                                 pcisrc->addr.domain, pcisrc->addr.bus,
                                 pcisrc->addr.slot, pcisrc->addr.function));
3487 3488
    } else {
        ignore_value(virAsprintf(&ret, "host=%.2x:%.2x.%.1x",
3489 3490
                                 pcisrc->addr.bus, pcisrc->addr.slot,
                                 pcisrc->addr.function));
3491 3492
    }
 cleanup:
3493 3494 3495 3496
    return ret;
}


3497
char *
3498 3499
qemuBuildRedirdevDevStr(virDomainDefPtr def,
                        virDomainRedirdevDefPtr dev,
3500
                        virQEMUCapsPtr qemuCaps)
3501
{
3502
    size_t i;
3503
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3504
    virDomainRedirFilterDefPtr redirfilter = def->redirfilter;
3505 3506

    if (dev->bus != VIR_DOMAIN_REDIRDEV_BUS_USB) {
3507 3508 3509
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Redirection bus %s is not supported by QEMU"),
                       virDomainRedirdevBusTypeToString(dev->bus));
3510 3511 3512
        goto error;
    }

3513
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR)) {
3514 3515 3516
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("USB redirection is not supported "
                         "by this version of QEMU"));
3517 3518 3519 3520
        goto error;
    }

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

3523
    if (redirfilter && redirfilter->nusbdevs) {
3524
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR_FILTER)) {
3525 3526 3527 3528 3529 3530
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("USB redirection filter is not "
                             "supported by this version of QEMU"));
            goto error;
        }

3531
        virBufferAddLit(&buf, ",filter=");
3532 3533

        for (i = 0; i < redirfilter->nusbdevs; i++) {
3534
            virDomainRedirFilterUSBDevDefPtr usbdev = redirfilter->usbdevs[i];
3535 3536 3537
            if (usbdev->usbClass >= 0)
                virBufferAsprintf(&buf, "0x%02X:", usbdev->usbClass);
            else
3538
                virBufferAddLit(&buf, "-1:");
3539 3540 3541 3542

            if (usbdev->vendor >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->vendor);
            else
3543
                virBufferAddLit(&buf, "-1:");
3544 3545 3546 3547

            if (usbdev->product >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->product);
            else
3548
                virBufferAddLit(&buf, "-1:");
3549 3550 3551 3552

            if (usbdev->version >= 0)
                virBufferAsprintf(&buf, "0x%04X:", usbdev->version);
            else
3553
                virBufferAddLit(&buf, "-1:");
3554 3555 3556

            virBufferAsprintf(&buf, "%u", usbdev->allow);
            if (i < redirfilter->nusbdevs -1)
3557
                virBufferAddLit(&buf, "|");
3558 3559 3560
        }
    }

3561
    if (dev->info.bootIndex) {
3562
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_REDIR_BOOTINDEX)) {
3563 3564 3565 3566 3567 3568 3569 3570
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("USB redirection booting is not "
                             "supported by this version of QEMU"));
            goto error;
        }
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info.bootIndex);
    }

3571
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
3572 3573
        goto error;

3574
    if (virBufferCheckError(&buf) < 0)
3575 3576 3577 3578
        goto error;

    return virBufferContentAndReset(&buf);

3579
 error:
3580 3581 3582 3583
    virBufferFreeAndReset(&buf);
    return NULL;
}

3584
char *
3585 3586
qemuBuildUSBHostdevDevStr(virDomainDefPtr def,
                          virDomainHostdevDefPtr dev,
3587
                          virQEMUCapsPtr qemuCaps)
3588
{
3589
    virBuffer buf = VIR_BUFFER_INITIALIZER;
3590
    virDomainHostdevSubsysUSBPtr usbsrc = &dev->source.subsys.u.usb;
3591

3592
    if (!dev->missing && !usbsrc->bus && !usbsrc->device) {
3593 3594
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
3595 3596 3597
        return NULL;
    }

3598 3599 3600
    virBufferAddLit(&buf, "usb-host");
    if (!dev->missing) {
        virBufferAsprintf(&buf, ",hostbus=%d,hostaddr=%d",
3601
                          usbsrc->bus, usbsrc->device);
3602 3603
    }
    virBufferAsprintf(&buf, ",id=%s", dev->info->alias);
3604 3605
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);
3606

3607
    if (qemuBuildDeviceAddressStr(&buf, def, dev->info, qemuCaps) < 0)
3608 3609
        goto error;

3610
    if (virBufferCheckError(&buf) < 0)
3611
        goto error;
3612

3613 3614
    return virBufferContentAndReset(&buf);

3615
 error:
3616 3617
    virBufferFreeAndReset(&buf);
    return NULL;
3618 3619 3620
}


M
Marc-André Lureau 已提交
3621
char *
3622 3623
qemuBuildHubDevStr(virDomainDefPtr def,
                   virDomainHubDefPtr dev,
3624
                   virQEMUCapsPtr qemuCaps)
M
Marc-André Lureau 已提交
3625 3626 3627 3628
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (dev->type != VIR_DOMAIN_HUB_TYPE_USB) {
3629 3630 3631
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("hub type %s not supported"),
                       virDomainHubTypeToString(dev->type));
M
Marc-André Lureau 已提交
3632 3633 3634
        goto error;
    }

3635
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HUB)) {
3636
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
3637
                       _("usb-hub not supported by QEMU binary"));
M
Marc-André Lureau 已提交
3638 3639 3640 3641 3642
        goto error;
    }

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

3646
    if (virBufferCheckError(&buf) < 0)
M
Marc-André Lureau 已提交
3647 3648 3649 3650
        goto error;

    return virBufferContentAndReset(&buf);

3651
 error:
M
Marc-André Lureau 已提交
3652 3653 3654 3655 3656
    virBufferFreeAndReset(&buf);
    return NULL;
}


3657
char *
3658
qemuBuildUSBHostdevUSBDevStr(virDomainHostdevDefPtr dev)
3659 3660
{
    char *ret = NULL;
3661
    virDomainHostdevSubsysUSBPtr usbsrc = &dev->source.subsys.u.usb;
3662

3663 3664 3665 3666 3667 3668
    if (dev->missing) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("This QEMU doesn't not support missing USB devices"));
        return NULL;
    }

3669
    if (!usbsrc->bus && !usbsrc->device) {
3670 3671
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("USB host device is missing bus/device information"));
3672 3673 3674
        return NULL;
    }

3675
    ignore_value(virAsprintf(&ret, "host:%d.%d", usbsrc->bus, usbsrc->device));
3676 3677 3678
    return ret;
}

3679 3680 3681 3682
static char *
qemuBuildSCSIHostHostdevDrvStr(virDomainHostdevDefPtr dev,
                               virQEMUCapsPtr qemuCaps ATTRIBUTE_UNUSED,
                               qemuBuildCommandLineCallbacksPtr callbacks)
3683
{
3684
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;
3685
    virDomainHostdevSubsysSCSIHostPtr scsihostsrc = &scsisrc->u.host;
3686 3687
    char *sg = NULL;

3688
    sg = (callbacks->qemuGetSCSIDeviceSgName)(NULL,
3689 3690 3691 3692
                                              scsihostsrc->adapter,
                                              scsihostsrc->bus,
                                              scsihostsrc->target,
                                              scsihostsrc->unit);
3693 3694 3695 3696 3697 3698 3699 3700 3701 3702
    return sg;
}

static char *
qemuBuildSCSIiSCSIHostdevDrvStr(virConnectPtr conn,
                                virDomainHostdevDefPtr dev)
{
    char *source = NULL;
    char *secret = NULL;
    char *username = NULL;
3703 3704 3705 3706
    virStorageSource src;

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

3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721
    virDomainHostdevSubsysSCSIPtr scsisrc = &dev->source.subsys.u.scsi;
    virDomainHostdevSubsysSCSIiSCSIPtr iscsisrc = &scsisrc->u.iscsi;

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

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

3722 3723 3724 3725 3726
    src.protocol = VIR_STORAGE_NET_PROTOCOL_ISCSI;
    src.path = iscsisrc->path;
    src.hosts = iscsisrc->hosts;
    src.nhosts = iscsisrc->nhosts;

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

3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754
 cleanup:
    VIR_FREE(secret);
    return source;
}

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

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

O
Osier Yang 已提交
3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769
    if (dev->readonly) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_READONLY)) {
            virBufferAddLit(&buf, ",readonly=on");
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("this qemu doesn't support 'readonly' "
                             "for -drive"));
            goto error;
        }
    }

3770
    if (virBufferCheckError(&buf) < 0)
3771 3772
        goto error;

3773
    VIR_FREE(source);
3774
    return virBufferContentAndReset(&buf);
3775
 error:
3776
    VIR_FREE(source);
3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787
    virBufferFreeAndReset(&buf);
    return NULL;
}

char *
qemuBuildSCSIHostdevDevStr(virDomainDefPtr def,
                           virDomainHostdevDefPtr dev,
                           virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int model = -1;
3788
    const char *contAlias;
3789 3790 3791 3792

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

3793
    if (qemuDomainSetSCSIControllerModel(def, qemuCaps, &model) < 0)
3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813
        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");

3814 3815 3816 3817
    if (!(contAlias = virDomainControllerAliasFind(def, VIR_DOMAIN_CONTROLLER_TYPE_SCSI,
                                                   dev->info->addr.drive.controller)))
        goto error;

3818
    if (model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC) {
3819 3820
        virBufferAsprintf(&buf, ",bus=%s.%d,scsi-id=%d",
                          contAlias,
3821 3822 3823
                          dev->info->addr.drive.bus,
                          dev->info->addr.drive.unit);
    } else {
3824 3825
        virBufferAsprintf(&buf, ",bus=%s.0,channel=%d,scsi-id=%d,lun=%d",
                          contAlias,
3826 3827 3828 3829
                          dev->info->addr.drive.bus,
                          dev->info->addr.drive.target,
                          dev->info->addr.drive.unit);
    }
3830

3831 3832 3833 3834
    virBufferAsprintf(&buf, ",drive=%s-%s,id=%s",
                      virDomainDeviceAddressTypeToString(dev->info->type),
                      dev->info->alias, dev->info->alias);

3835 3836 3837
    if (dev->info->bootIndex)
        virBufferAsprintf(&buf, ",bootindex=%d", dev->info->bootIndex);

3838
    if (virBufferCheckError(&buf) < 0)
3839 3840 3841
        goto error;

    return virBufferContentAndReset(&buf);
3842
 error:
3843 3844 3845
    virBufferFreeAndReset(&buf);
    return NULL;
}
3846 3847 3848

/* This function outputs a -chardev command line option which describes only the
 * host side of the character device */
3849
static char *
3850
qemuBuildChrChardevStr(virDomainChrSourceDefPtr dev, const char *alias,
3851
                       virQEMUCapsPtr qemuCaps)
3852 3853 3854 3855
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    bool telnet;

3856
    switch (dev->type) {
3857
    case VIR_DOMAIN_CHR_TYPE_NULL:
3858
        virBufferAsprintf(&buf, "null,id=char%s", alias);
3859 3860 3861
        break;

    case VIR_DOMAIN_CHR_TYPE_VC:
3862
        virBufferAsprintf(&buf, "vc,id=char%s", alias);
3863 3864 3865
        break;

    case VIR_DOMAIN_CHR_TYPE_PTY:
3866
        virBufferAsprintf(&buf, "pty,id=char%s", alias);
3867 3868 3869
        break;

    case VIR_DOMAIN_CHR_TYPE_DEV:
3870 3871 3872
        virBufferAsprintf(&buf, "%s,id=char%s,path=%s",
                          STRPREFIX(alias, "parallel") ? "parport" : "tty",
                          alias, dev->data.file.path);
3873 3874 3875
        break;

    case VIR_DOMAIN_CHR_TYPE_FILE:
3876
        virBufferAsprintf(&buf, "file,id=char%s,path=%s", alias,
3877
                          dev->data.file.path);
3878
        if (dev->data.file.append != VIR_TRISTATE_SWITCH_ABSENT) {
3879 3880 3881 3882 3883 3884 3885 3886 3887
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_FILE_APPEND)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("append not supported in this QEMU binary"));
                goto error;
            }

            virBufferAsprintf(&buf, ",append=%s",
                              virTristateSwitchTypeToString(dev->data.file.append));
        }
3888 3889 3890
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
3891
        virBufferAsprintf(&buf, "pipe,id=char%s,path=%s", alias,
3892
                          dev->data.file.path);
3893 3894 3895
        break;

    case VIR_DOMAIN_CHR_TYPE_STDIO:
3896
        virBufferAsprintf(&buf, "stdio,id=char%s", alias);
3897 3898
        break;

3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910
    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";

3911
        virBufferAsprintf(&buf,
3912 3913
                          "udp,id=char%s,host=%s,port=%s,localaddr=%s,"
                          "localport=%s",
3914
                          alias,
3915
                          connectHost,
3916
                          dev->data.udp.connectService,
3917
                          bindHost, bindService);
3918
        break;
3919
    }
3920 3921
    case VIR_DOMAIN_CHR_TYPE_TCP:
        telnet = dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
3922
        virBufferAsprintf(&buf,
3923
                          "socket,id=char%s,host=%s,port=%s%s%s",
3924
                          alias,
3925 3926 3927 3928 3929 3930 3931
                          dev->data.tcp.host,
                          dev->data.tcp.service,
                          telnet ? ",telnet" : "",
                          dev->data.tcp.listen ? ",server,nowait" : "");
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
3932
        virBufferAsprintf(&buf,
3933
                          "socket,id=char%s,path=%s%s",
3934
                          alias,
3935 3936 3937
                          dev->data.nix.path,
                          dev->data.nix.listen ? ",server,nowait" : "");
        break;
3938 3939

    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
3940
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_SPICEVMC)) {
3941
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
3942
                           _("spicevmc not supported in this QEMU binary"));
3943 3944
            goto error;
        }
3945
        virBufferAsprintf(&buf, "spicevmc,id=char%s,name=%s", alias,
E
Eric Blake 已提交
3946
                          virDomainChrSpicevmcTypeToString(dev->data.spicevmc));
3947 3948
        break;

3949 3950 3951 3952 3953 3954 3955 3956 3957 3958
    case VIR_DOMAIN_CHR_TYPE_SPICEPORT:
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV_SPICEPORT)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("spiceport not supported in this QEMU binary"));
            goto error;
        }
        virBufferAsprintf(&buf, "spiceport,id=char%s,name=%s", alias,
                          dev->data.spiceport.channel);
        break;

3959
    default:
3960 3961 3962
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported chardev '%s'"),
                       virDomainChrTypeToString(dev->type));
3963
        goto error;
3964 3965
    }

3966
    if (virBufferCheckError(&buf) < 0)
3967 3968 3969 3970
        goto error;

    return virBufferContentAndReset(&buf);

3971
 error:
3972 3973 3974 3975 3976
    virBufferFreeAndReset(&buf);
    return NULL;
}


3977 3978
static char *
qemuBuildChrArgStr(virDomainChrSourceDefPtr dev, const char *prefix)
3979 3980 3981 3982 3983 3984
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

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

3985
    switch ((virDomainChrType)dev->type) {
3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002
    case VIR_DOMAIN_CHR_TYPE_NULL:
        virBufferAddLit(&buf, "null");
        break;

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

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

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

    case VIR_DOMAIN_CHR_TYPE_FILE:
4003
        virBufferAsprintf(&buf, "file:%s", dev->data.file.path);
4004 4005 4006
        break;

    case VIR_DOMAIN_CHR_TYPE_PIPE:
4007
        virBufferAsprintf(&buf, "pipe:%s", dev->data.file.path);
4008 4009 4010 4011 4012 4013
        break;

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

4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025
    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";

4026
        virBufferAsprintf(&buf, "udp:%s:%s@%s:%s",
4027
                          connectHost,
4028
                          dev->data.udp.connectService,
4029 4030
                          bindHost,
                          bindService);
4031
        break;
4032
    }
4033 4034
    case VIR_DOMAIN_CHR_TYPE_TCP:
        if (dev->data.tcp.protocol == VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET) {
4035
            virBufferAsprintf(&buf, "telnet:%s:%s%s",
4036 4037 4038 4039
                              dev->data.tcp.host,
                              dev->data.tcp.service,
                              dev->data.tcp.listen ? ",server,nowait" : "");
        } else {
4040
            virBufferAsprintf(&buf, "tcp:%s:%s%s",
4041 4042 4043 4044 4045 4046 4047
                              dev->data.tcp.host,
                              dev->data.tcp.service,
                              dev->data.tcp.listen ? ",server,nowait" : "");
        }
        break;

    case VIR_DOMAIN_CHR_TYPE_UNIX:
4048
        virBufferAsprintf(&buf, "unix:%s%s",
4049 4050 4051
                          dev->data.nix.path,
                          dev->data.nix.listen ? ",server,nowait" : "");
        break;
4052

4053
    case VIR_DOMAIN_CHR_TYPE_SPICEVMC:
4054
    case VIR_DOMAIN_CHR_TYPE_SPICEPORT:
4055
    case VIR_DOMAIN_CHR_TYPE_NMDM:
4056
    case VIR_DOMAIN_CHR_TYPE_LAST:
4057
        break;
4058 4059
    }

4060
    if (virBufferCheckError(&buf) < 0)
4061 4062 4063 4064
        goto error;

    return virBufferContentAndReset(&buf);

4065
 error:
4066 4067 4068 4069 4070
    virBufferFreeAndReset(&buf);
    return NULL;
}


4071
static char *
4072 4073
qemuBuildVirtioSerialPortDevStr(virDomainDefPtr def,
                                virDomainChrDefPtr dev,
4074
                                virQEMUCapsPtr qemuCaps)
4075 4076
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4077 4078
    const char *contAlias;

4079 4080
    switch (dev->deviceType) {
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
4081
        virBufferAddLit(&buf, "virtconsole");
4082 4083 4084 4085
        break;
    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
        /* Legacy syntax  '-device spicevmc' */
        if (dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
4086
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC)) {
4087 4088 4089 4090 4091 4092
            virBufferAddLit(&buf, "spicevmc");
        } else {
            virBufferAddLit(&buf, "virtserialport");
        }
        break;
    default:
4093 4094
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Cannot use virtio serial for parallel/serial devices"));
4095 4096
        return NULL;
    }
4097

4098
    if (dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
4099
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW &&
4100
        dev->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
4101 4102 4103 4104
        /* Check it's a virtio-serial address */
        if (dev->info.type !=
            VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_SERIAL)
        {
4105 4106
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("virtio serial device has invalid address type"));
4107 4108 4109
            goto error;
        }

4110 4111 4112 4113 4114 4115 4116
        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,
4117 4118 4119
                          dev->info.addr.vioserial.port);
    }

4120 4121
    if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
        dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
4122 4123
        dev->target.name &&
        STRNEQ(dev->target.name, "com.redhat.spice.0")) {
4124 4125 4126
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported spicevmc target name '%s'"),
                       dev->target.name);
4127 4128
        goto error;
    }
4129 4130 4131

    if (!(dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
          dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC &&
4132
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC))) {
4133
        virBufferAsprintf(&buf, ",chardev=char%s,id=%s",
4134
                          dev->info.alias, dev->info.alias);
4135 4136 4137
        if (dev->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
            (dev->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC ||
             dev->target.name)) {
4138 4139
            virBufferAsprintf(&buf, ",name=%s", dev->target.name
                              ? dev->target.name : "com.redhat.spice.0");
4140
        }
4141 4142
    } else {
        virBufferAsprintf(&buf, ",id=%s", dev->info.alias);
4143
    }
4144
    if (virBufferCheckError(&buf) < 0)
4145 4146 4147 4148
        goto error;

    return virBufferContentAndReset(&buf);

4149
 error:
4150 4151 4152 4153
    virBufferFreeAndReset(&buf);
    return NULL;
}

4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173
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);
4174
    if (virBufferCheckError(&buf) < 0)
4175 4176 4177 4178
        goto error;

    return virBufferContentAndReset(&buf);

4179
 error:
4180 4181 4182 4183
    virBufferFreeAndReset(&buf);
    return NULL;
}

4184 4185

static int
4186 4187 4188
qemuBuildRNGBackendChrdevStr(virDomainRNGDefPtr rng,
                             virQEMUCapsPtr qemuCaps,
                             char **chr)
4189
{
4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207
    *chr = NULL;

    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:
        if (!(*chr = qemuBuildChrChardevStr(rng->source.chardev,
                                            rng->info.alias, qemuCaps)))
            return -1;
    }

    return 0;
}


4208
int
4209 4210 4211 4212 4213 4214
qemuBuildRNGBackendProps(virDomainRNGDefPtr rng,
                         virQEMUCapsPtr qemuCaps,
                         const char **type,
                         virJSONValuePtr *props)
{
    char *charBackendAlias = NULL;
4215 4216
    int ret = -1;

4217
    switch ((virDomainRNGBackend) rng->backend) {
4218 4219 4220 4221
    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 "
4222
                             "backend"));
4223 4224 4225
            goto cleanup;
        }

4226
        *type = "rng-random";
4227

4228 4229 4230
        if (virJSONValueObjectCreate(props, "s:filename", rng->source.file,
                                     NULL) < 0)
            goto cleanup;
4231 4232 4233
        break;

    case VIR_DOMAIN_RNG_BACKEND_EGD:
4234 4235 4236 4237 4238 4239 4240
        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;
        }

4241 4242 4243
        *type = "rng-egd";

        if (virAsprintf(&charBackendAlias, "char%s", rng->info.alias) < 0)
4244 4245
            goto cleanup;

4246 4247 4248
        if (virJSONValueObjectCreate(props, "s:chardev", charBackendAlias,
                                     NULL) < 0)
            goto cleanup;
4249

4250 4251 4252
        break;

    case VIR_DOMAIN_RNG_BACKEND_LAST:
4253 4254 4255
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("unknown rng-random backend"));
        goto cleanup;
4256 4257 4258 4259
    }

    ret = 0;

4260
 cleanup:
4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285
    VIR_FREE(charBackendAlias);
    return ret;
}


static char *
qemuBuildRNGBackendStr(virDomainRNGDefPtr rng,
                       virQEMUCapsPtr qemuCaps)
{
    const char *type = NULL;
    char *alias = NULL;
    virJSONValuePtr props = NULL;
    char *ret = NULL;

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

    if (qemuBuildRNGBackendProps(rng, qemuCaps, &type, &props) < 0)
        goto cleanup;

    ret = qemuBuildObjectCommandlineFromJSON(type, alias, props);

 cleanup:
    VIR_FREE(alias);
    virJSONValueFree(props);
4286 4287 4288 4289
    return ret;
}


4290 4291 4292 4293
char *
qemuBuildRNGDevStr(virDomainDefPtr def,
                   virDomainRNGDefPtr dev,
                   virQEMUCapsPtr qemuCaps)
4294 4295 4296 4297 4298 4299 4300 4301
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

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

4305 4306 4307 4308
    if (!qemuCheckCCWS390AddressSupport(def, dev->info, qemuCaps,
                                        dev->source.file))
        goto error;

4309
    if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW)
4310 4311
        virBufferAsprintf(&buf, "virtio-rng-ccw,rng=obj%s,id=%s",
                          dev->info.alias, dev->info.alias);
4312
    else if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390)
4313 4314
        virBufferAsprintf(&buf, "virtio-rng-s390,rng=obj%s,id=%s",
                          dev->info.alias, dev->info.alias);
4315
    else if (dev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_MMIO)
4316 4317
        virBufferAsprintf(&buf, "virtio-rng-device,rng=obj%s,id=%s",
                          dev->info.alias, dev->info.alias);
4318
    else
4319 4320
        virBufferAsprintf(&buf, "virtio-rng-pci,rng=obj%s,id=%s",
                          dev->info.alias, dev->info.alias);
4321

4322 4323 4324 4325 4326 4327 4328 4329
    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");
    }

4330
    if (qemuBuildDeviceAddressStr(&buf, def, &dev->info, qemuCaps) < 0)
4331 4332 4333
        goto error;
    if (virBufferCheckError(&buf) < 0)
        goto error;
4334

4335
    return virBufferContentAndReset(&buf);
4336

4337
 error:
4338
    virBufferFreeAndReset(&buf);
4339
    return NULL;
4340 4341 4342
}


4343
static char *qemuBuildSmbiosBiosStr(virSysinfoBIOSDefPtr def)
4344 4345 4346
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4347
    if (!def)
4348
        return NULL;
4349 4350 4351 4352

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

    /* 0:Vendor */
4353 4354
    if (def->vendor)
        virBufferAsprintf(&buf, ",vendor=%s", def->vendor);
4355
    /* 0:BIOS Version */
4356 4357
    if (def->version)
        virBufferAsprintf(&buf, ",version=%s", def->version);
4358
    /* 0:BIOS Release Date */
4359 4360
    if (def->date)
        virBufferAsprintf(&buf, ",date=%s", def->date);
4361
    /* 0:System BIOS Major Release and 0:System BIOS Minor Release */
4362 4363
    if (def->release)
        virBufferAsprintf(&buf, ",release=%s", def->release);
4364

4365
    if (virBufferCheckError(&buf) < 0)
4366 4367 4368 4369
        goto error;

    return virBufferContentAndReset(&buf);

4370
 error:
4371
    virBufferFreeAndReset(&buf);
4372
    return NULL;
4373 4374
}

4375 4376
static char *qemuBuildSmbiosSystemStr(virSysinfoSystemDefPtr def,
                                      bool skip_uuid)
4377 4378 4379
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

4380 4381 4382 4383
    if (!def ||
        (!def->manufacturer && !def->product && !def->version &&
         !def->serial && (!def->uuid || skip_uuid) &&
         def->sku && !def->family))
4384 4385 4386 4387 4388
        return NULL;

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

    /* 1:Manufacturer */
4389
    if (def->manufacturer)
4390
        virBufferAsprintf(&buf, ",manufacturer=%s",
4391
                          def->manufacturer);
4392
     /* 1:Product Name */
4393 4394
    if (def->product)
        virBufferAsprintf(&buf, ",product=%s", def->product);
4395
    /* 1:Version */
4396 4397
    if (def->version)
        virBufferAsprintf(&buf, ",version=%s", def->version);
4398
    /* 1:Serial Number */
4399 4400
    if (def->serial)
        virBufferAsprintf(&buf, ",serial=%s", def->serial);
4401
    /* 1:UUID */
4402 4403
    if (def->uuid && !skip_uuid)
        virBufferAsprintf(&buf, ",uuid=%s", def->uuid);
4404
    /* 1:SKU Number */
4405 4406
    if (def->sku)
        virBufferAsprintf(&buf, ",sku=%s", def->sku);
4407
    /* 1:Family */
4408 4409
    if (def->family)
        virBufferAsprintf(&buf, ",family=%s", def->family);
4410

4411
    if (virBufferCheckError(&buf) < 0)
4412 4413 4414 4415
        goto error;

    return virBufferContentAndReset(&buf);

4416
 error:
4417
    virBufferFreeAndReset(&buf);
4418
    return NULL;
4419 4420
}

4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459
static char *qemuBuildSmbiosBaseBoardStr(virSysinfoBaseBoardDefPtr def)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

    if (!def)
        return NULL;

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

    /* 2:Manufacturer */
    if (def->manufacturer)
        virBufferAsprintf(&buf, ",manufacturer=%s",
                          def->manufacturer);
    /* 2:Product Name */
    if (def->product)
        virBufferAsprintf(&buf, ",product=%s", def->product);
    /* 2:Version */
    if (def->version)
        virBufferAsprintf(&buf, ",version=%s", def->version);
    /* 2:Serial Number */
    if (def->serial)
        virBufferAsprintf(&buf, ",serial=%s", def->serial);
    /* 2:Asset Tag */
    if (def->asset)
        virBufferAsprintf(&buf, ",asset=%s", def->asset);
    /* 2:Location */
    if (def->location)
        virBufferAsprintf(&buf, ",location=%s", def->location);

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

    return virBufferContentAndReset(&buf);

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

4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478
static char *
qemuBuildClockArgStr(virDomainClockDefPtr def)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

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

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

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

4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497
        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;
4498
        }
4499

4500 4501 4502
        now += def->data.variable.adjustment;
        gmtime_r(&now, &nowbits);

4503 4504 4505 4506 4507 4508 4509 4510
        /* 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;

4511
        virBufferAsprintf(&buf, "base=%d-%02d-%02dT%02d:%02d:%02d",
4512 4513 4514 4515 4516 4517 4518 4519 4520
                          nowbits.tm_year + 1900,
                          nowbits.tm_mon + 1,
                          nowbits.tm_mday,
                          nowbits.tm_hour,
                          nowbits.tm_min,
                          nowbits.tm_sec);
    }   break;

    default:
4521 4522 4523
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported clock offset '%s'"),
                       virDomainClockOffsetTypeToString(def->offset));
4524 4525 4526 4527
        goto error;
    }

    /* Look for an 'rtc' timer element, and add in appropriate clock= and driftfix= */
4528
    size_t i;
4529 4530 4531 4532 4533 4534
    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:
4535 4536 4537
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer track '%s'"),
                               virDomainTimerTrackTypeToString(def->timers[i]->track));
4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558
                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:
4559 4560 4561
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc timer tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->timers[i]->tickpolicy));
4562 4563 4564 4565 4566 4567
                goto error;
            }
            break; /* no need to check other timers - there is only one rtc */
        }
    }

4568
    if (virBufferCheckError(&buf) < 0)
4569 4570 4571 4572
        goto error;

    return virBufferContentAndReset(&buf);

4573
 error:
4574 4575 4576 4577 4578
    virBufferFreeAndReset(&buf);
    return NULL;
}

static int
4579 4580 4581 4582 4583 4584
qemuBuildCpuModelArgStr(virQEMUDriverPtr driver,
                        const virDomainDef *def,
                        virBufferPtr buf,
                        virQEMUCapsPtr qemuCaps,
                        bool *hasHwVirt,
                        bool migrating)
4585
{
4586 4587
    int ret = -1;
    size_t i;
4588
    virCPUDefPtr host = NULL;
4589
    virCPUDefPtr guest = NULL;
4590
    virCPUDefPtr cpu = NULL;
4591
    virCPUDefPtr featCpu = NULL;
4592
    size_t ncpus = 0;
4593
    char **cpus = NULL;
4594
    virCPUDataPtr data = NULL;
4595
    virCPUDataPtr hostData = NULL;
4596
    char *compare_msg = NULL;
4597 4598
    virCPUCompareResult cmp;
    const char *preferred;
4599
    virCapsPtr caps = NULL;
4600 4601 4602
    bool compareAgainstHost = ((def->virtType == VIR_DOMAIN_VIRT_KVM ||
                                def->cpu->mode != VIR_CPU_MODE_CUSTOM) &&
                               def->cpu->mode != VIR_CPU_MODE_HOST_PASSTHROUGH);
4603

4604 4605 4606 4607 4608
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

    host = caps->host.cpu;

4609 4610 4611 4612 4613 4614 4615
    if (!host ||
        !host->model ||
        (ncpus = virQEMUCapsGetCPUDefinitions(qemuCaps, &cpus)) == 0) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("CPU specification not supported by hypervisor"));
        goto cleanup;
    }
4616

4617 4618 4619
    if (!(cpu = virCPUDefCopy(def->cpu)))
        goto cleanup;

4620
    if (cpu->mode == VIR_CPU_MODE_HOST_MODEL &&
4621 4622 4623
        !migrating &&
        cpuUpdate(cpu, host) < 0)
        goto cleanup;
4624

4625 4626
    /* For non-KVM, CPU features are emulated, so host compat doesn't matter */
    if (compareAgainstHost) {
4627 4628
        bool noTSX = false;

4629 4630 4631
        cmp = cpuGuestData(host, cpu, &data, &compare_msg);
        switch (cmp) {
        case VIR_CPU_COMPARE_INCOMPATIBLE:
4632 4633 4634 4635 4636 4637 4638 4639
            if (cpuEncode(host->arch, host, NULL, &hostData,
                          NULL, NULL, NULL, NULL) == 0 &&
                (!cpuHasFeature(hostData, "hle") ||
                 !cpuHasFeature(hostData, "rtm")) &&
                (STREQ_NULLABLE(cpu->model, "Haswell") ||
                 STREQ_NULLABLE(cpu->model, "Broadwell")))
                noTSX = true;

4640
            if (compare_msg) {
4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651
                if (noTSX) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("guest and host CPU are not compatible: "
                                     "%s; try using '%s-noTSX' CPU model"),
                                   compare_msg, cpu->model);
                } else {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("guest and host CPU are not compatible: "
                                     "%s"),
                                   compare_msg);
                }
4652
            } else {
4653 4654 4655 4656 4657 4658 4659 4660 4661 4662
                if (noTSX) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("guest CPU is not compatible with host "
                                     "CPU; try using '%s-noTSX' CPU model"),
                                   cpu->model);
                } else {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("guest CPU is not compatible with host "
                                     "CPU"));
                }
4663 4664 4665 4666
            }
            /* fall through */
        case VIR_CPU_COMPARE_ERROR:
            goto cleanup;
4667

4668 4669 4670
        default:
            break;
        }
4671 4672 4673 4674 4675
    }

    /* Only 'svm' requires --enable-nesting. The nested
     * 'vmx' patches now simply hook off the CPU features
     */
4676 4677
    if ((def->os.arch == VIR_ARCH_X86_64 || def->os.arch == VIR_ARCH_I686) &&
         compareAgainstHost) {
4678 4679
        int hasSVM = cpuHasFeature(data, "svm");
        if (hasSVM < 0)
4680
            goto cleanup;
4681 4682
        *hasHwVirt = hasSVM > 0 ? true : false;
    }
4683

4684 4685 4686
    if ((cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH) ||
        ((cpu->mode == VIR_CPU_MODE_HOST_MODEL) &&
          ARCH_IS_PPC64(def->os.arch))) {
4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700
        const char *mode = virCPUModeTypeToString(cpu->mode);
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CPU_HOST)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("CPU mode '%s' is not supported by QEMU"
                             " binary"), mode);
            goto cleanup;
        }
        if (def->virtType != VIR_DOMAIN_VIRT_KVM) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("CPU mode '%s' is only supported with kvm"),
                           mode);
            goto cleanup;
        }
        virBufferAddLit(buf, "host");
4701

4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714
        if (def->os.arch == VIR_ARCH_ARMV7L &&
            host->arch == VIR_ARCH_AARCH64) {
            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");
        }

4715
        if (ARCH_IS_PPC64(def->os.arch) &&
4716 4717
            cpu->mode == VIR_CPU_MODE_HOST_MODEL &&
            def->cpu->model != NULL) {
4718
            virBufferAsprintf(buf, ",compat=%s", def->cpu->model);
4719 4720
        } else {
            featCpu = cpu;
4721 4722
        }

4723 4724 4725 4726
    } else {
        if (VIR_ALLOC(guest) < 0)
            goto cleanup;
        if (VIR_STRDUP(guest->vendor_id, cpu->vendor_id) < 0)
4727 4728
            goto cleanup;

4729 4730 4731 4732 4733 4734
        if (compareAgainstHost) {
            guest->arch = host->arch;
            if (cpu->match == VIR_CPU_MATCH_MINIMUM)
                preferred = host->model;
            else
                preferred = cpu->model;
4735

4736 4737 4738 4739 4740 4741 4742 4743 4744 4745
            guest->type = VIR_CPU_TYPE_GUEST;
            guest->fallback = cpu->fallback;
            if (cpuDecode(guest, data,
                          (const char **)cpus, ncpus, preferred) < 0)
                goto cleanup;
        } else {
            guest->arch = def->os.arch;
            if (VIR_STRDUP(guest->model, cpu->model) < 0)
                goto cleanup;
        }
4746 4747 4748
        virBufferAdd(buf, guest->model, -1);
        if (guest->vendor_id)
            virBufferAsprintf(buf, ",vendor=%s", guest->vendor_id);
4749 4750 4751 4752 4753
        featCpu = guest;
    }

    if (featCpu) {
        for (i = 0; i < featCpu->nfeatures; i++) {
4754
            char sign;
4755
            if (featCpu->features[i].policy == VIR_CPU_FEATURE_DISABLE)
4756 4757 4758
                sign = '-';
            else
                sign = '+';
4759

4760
            virBufferAsprintf(buf, ",%c%s", sign, featCpu->features[i].name);
4761
        }
4762
    }
4763

4764
    ret = 0;
4765
 cleanup:
4766 4767 4768
    virObjectUnref(caps);
    VIR_FREE(compare_msg);
    cpuDataFree(data);
4769
    cpuDataFree(hostData);
4770 4771 4772 4773
    virCPUDefFree(guest);
    virCPUDefFree(cpu);
    return ret;
}
4774

4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789
static int
qemuBuildCpuArgStr(virQEMUDriverPtr driver,
                   const virDomainDef *def,
                   const char *emulator,
                   virQEMUCapsPtr qemuCaps,
                   virArch hostarch,
                   char **opt,
                   bool *hasHwVirt,
                   bool migrating)
{
    const char *default_model;
    bool have_cpu = false;
    int ret = -1;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    size_t i;
4790

4791
    *hasHwVirt = false;
4792

4793 4794 4795 4796 4797 4798 4799 4800 4801 4802
    if (def->os.arch == VIR_ARCH_I686)
        default_model = "qemu32";
    else
        default_model = "qemu64";

    if (def->cpu &&
        (def->cpu->mode != VIR_CPU_MODE_CUSTOM || def->cpu->model)) {
        if (qemuBuildCpuModelArgStr(driver, def, &buf, qemuCaps,
                                    hasHwVirt, migrating) < 0)
            goto cleanup;
4803
        have_cpu = true;
4804
    } else {
4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816
        /*
         * 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
         */
4817
        if (def->os.arch == VIR_ARCH_I686 &&
4818
            ((hostarch == VIR_ARCH_X86_64 &&
4819
              strstr(emulator, "kvm")) ||
4820 4821 4822 4823 4824 4825
             strstr(emulator, "x86_64"))) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }
    }

4826
    /* Handle paravirtual timers  */
4827
    for (i = 0; i < def->clock.ntimers; i++) {
4828 4829 4830 4831 4832 4833
        virDomainTimerDefPtr timer = def->clock.timers[i];

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

        if (timer->name == VIR_DOMAIN_TIMER_NAME_KVMCLOCK) {
4834 4835
            virBufferAsprintf(&buf, "%s,%ckvmclock",
                              have_cpu ? "" : default_model,
4836 4837 4838 4839 4840 4841
                              timer->present ? '+' : '-');
            have_cpu = true;
        } else if (timer->name == VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK &&
                   timer->present) {
            virBufferAsprintf(&buf, "%s,hv_time",
                              have_cpu ? "" : default_model);
M
Martin Kletzander 已提交
4842
            have_cpu = true;
4843
        }
4844 4845
    }

4846 4847
    if (def->apic_eoi) {
        char sign;
J
Ján Tomko 已提交
4848
        if (def->apic_eoi == VIR_TRISTATE_SWITCH_ON)
4849 4850 4851 4852 4853 4854 4855
            sign = '+';
        else
            sign = '-';

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

4859 4860
    if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK]) {
        char sign;
J
Ján Tomko 已提交
4861
        if (def->features[VIR_DOMAIN_FEATURE_PVSPINLOCK] == VIR_TRISTATE_SWITCH_ON)
4862 4863 4864 4865 4866 4867 4868 4869 4870 4871
            sign = '+';
        else
            sign = '-';

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

J
Ján Tomko 已提交
4872
    if (def->features[VIR_DOMAIN_FEATURE_HYPERV] == VIR_TRISTATE_SWITCH_ON) {
4873 4874 4875 4876 4877 4878
        if (!have_cpu) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }

        for (i = 0; i < VIR_DOMAIN_HYPERV_LAST; i++) {
4879
            switch ((virDomainHyperv) i) {
4880
            case VIR_DOMAIN_HYPERV_RELAXED:
4881
            case VIR_DOMAIN_HYPERV_VAPIC:
J
Ján Tomko 已提交
4882
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
4883 4884 4885 4886
                    virBufferAsprintf(&buf, ",hv_%s",
                                      virDomainHypervTypeToString(i));
                break;

4887
            case VIR_DOMAIN_HYPERV_SPINLOCKS:
J
Ján Tomko 已提交
4888
                if (def->hyperv_features[i] == VIR_TRISTATE_SWITCH_ON)
4889 4890
                    virBufferAsprintf(&buf, ",hv_spinlocks=0x%x",
                                      def->hyperv_spinlocks);
4891 4892
                break;

4893
            /* coverity[dead_error_begin] */
4894 4895 4896 4897 4898 4899
            case VIR_DOMAIN_HYPERV_LAST:
                break;
            }
        }
    }

D
Dmitry Andreev 已提交
4900 4901 4902 4903 4904 4905
    for (i = 0; i < def->npanics; i++) {
        if (def->panics[i]->model == VIR_DOMAIN_PANIC_MODEL_HYPERV) {
            if (!have_cpu) {
                virBufferAdd(&buf, default_model, -1);
                have_cpu = true;
            }
4906

D
Dmitry Andreev 已提交
4907 4908 4909
            virBufferAddLit(&buf, ",hv_crash");
            break;
        }
4910 4911
    }

4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924
    if (def->features[VIR_DOMAIN_FEATURE_KVM] == VIR_TRISTATE_SWITCH_ON) {
        if (!have_cpu) {
            virBufferAdd(&buf, default_model, -1);
            have_cpu = true;
        }

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

J
John Ferlan 已提交
4925
            /* coverity[dead_error_begin] */
4926 4927 4928 4929 4930 4931
            case VIR_DOMAIN_KVM_LAST:
                break;
            }
        }
    }

4932 4933 4934 4935 4936 4937 4938 4939 4940 4941
    if (def->features[VIR_DOMAIN_FEATURE_PMU]) {
        virTristateSwitch pmu = def->features[VIR_DOMAIN_FEATURE_PMU];
        if (!have_cpu)
            virBufferAdd(&buf, default_model, -1);

        virBufferAsprintf(&buf, ",pmu=%s",
                          virTristateSwitchTypeToString(pmu));
        have_cpu = true;
    }

4942
    if (virBufferCheckError(&buf) < 0)
4943
        goto cleanup;
4944 4945 4946 4947 4948

    *opt = virBufferContentAndReset(&buf);

    ret = 0;

4949
 cleanup:
4950 4951 4952
    return ret;
}

4953 4954
static int
qemuBuildObsoleteAccelArg(virCommandPtr cmd,
E
Eric Blake 已提交
4955
                          const virDomainDef *def,
4956 4957
                          virQEMUCapsPtr qemuCaps)
{
4958 4959
    bool disableKVM = false;
    bool enableKVM = false;
4960 4961 4962 4963

    switch (def->virtType) {
    case VIR_DOMAIN_VIRT_QEMU:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM))
4964
            disableKVM = true;
4965 4966 4967
        break;

    case VIR_DOMAIN_VIRT_KQEMU:
4968 4969
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("the QEMU binary does not support kqemu"));
4970 4971 4972 4973
        break;

    case VIR_DOMAIN_VIRT_KVM:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ENABLE_KVM)) {
4974
            enableKVM = true;
4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000
        } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("the QEMU binary does not support kvm"));
            return -1;
        }
        break;

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

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

    if (disableKVM)
        virCommandAddArg(cmd, "-no-kvm");
    if (enableKVM)
        virCommandAddArg(cmd, "-enable-kvm");

    return 0;
}

5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033
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;
}

5034 5035
static int
qemuBuildMachineArgStr(virCommandPtr cmd,
E
Eric Blake 已提交
5036
                       const virDomainDef *def,
5037
                       virQEMUCapsPtr qemuCaps)
5038
{
5039 5040
    bool obsoleteAccel = false;

5041 5042 5043 5044 5045 5046 5047
    /* 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;

5048
    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_OPT)) {
5049 5050 5051 5052
        /* if no parameter to the machine type is needed, we still use
         * '-M' to keep the most of the compatibility with older versions.
         */
        virCommandAddArgList(cmd, "-M", def->os.machine, NULL);
5053 5054 5055 5056
        if (def->mem.dump_core) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("dump-guest-core is not available "
                             "with this QEMU binary"));
5057 5058
            return -1;
        }
5059 5060 5061 5062 5063 5064 5065 5066

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

5067
        obsoleteAccel = true;
5068 5069 5070 5071 5072 5073 5074

        if (def->keywrap) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("key wrap support is not available "
                             "with this QEMU binary"));
            return -1;
        }
5075 5076
    } else {
        virBuffer buf = VIR_BUFFER_INITIALIZER;
5077
        virTristateSwitch vmport = def->features[VIR_DOMAIN_FEATURE_VMPORT];
5078 5079

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

5082 5083 5084 5085 5086 5087 5088
        if (def->virtType == VIR_DOMAIN_VIRT_QEMU)
            virBufferAddLit(&buf, ",accel=tcg");
        else if (def->virtType == VIR_DOMAIN_VIRT_KVM)
            virBufferAddLit(&buf, ",accel=kvm");
        else
            obsoleteAccel = true;

L
Li Zhang 已提交
5089 5090 5091 5092
        /* To avoid the collision of creating USB controllers when calling
         * machine->init in QEMU, it needs to set usb=off
         */
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MACHINE_USB_OPT))
5093
            virBufferAddLit(&buf, ",usb=off");
L
Li Zhang 已提交
5094

5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107
        if (vmport) {
            if (!virQEMUCapsSupportsVmport(qemuCaps, def)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("vmport is not available "
                                 "with this QEMU binary"));
                virBufferFreeAndReset(&buf);
                return -1;
            }

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

5108 5109 5110 5111 5112
        if (def->mem.dump_core) {
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DUMP_GUEST_CORE)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("dump-guest-core is not available "
                                 "with this QEMU binary"));
5113
                virBufferFreeAndReset(&buf);
5114 5115 5116 5117
                return -1;
            }

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

5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132
        if (def->mem.nosharepages) {
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MEM_MERGE)) {
                virBufferAddLit(&buf, ",mem-merge=off");
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("disable shared memory is not available "
                                 "with this QEMU binary"));
                virBufferFreeAndReset(&buf);
                return -1;
            }
        }

5133 5134 5135 5136 5137
        if (def->keywrap &&
            !qemuAppendKeyWrapMachineParms(&buf, qemuCaps, def->keywrap)) {
            virBufferFreeAndReset(&buf);
            return -1;
        }
5138 5139

        if (def->features[VIR_DOMAIN_FEATURE_GIC] == VIR_TRISTATE_SWITCH_ON) {
5140
            if (def->gic_version != VIR_GIC_VERSION_NONE) {
5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154
                if ((def->os.arch != VIR_ARCH_ARMV7L &&
                     def->os.arch != VIR_ARCH_AARCH64) ||
                    (STRNEQ(def->os.machine, "virt") &&
                     !STRPREFIX(def->os.machine, "virt-"))) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("gic-version option is available "
                                     "only for ARM virt machine"));
                    virBufferFreeAndReset(&buf);
                    return -1;
                }

                /* 2 is the default, so we don't put it as option for
                 * backwards compatibility
                 */
5155
                if (def->gic_version != VIR_GIC_VERSION_2) {
5156 5157 5158 5159 5160 5161 5162 5163 5164
                    if (!virQEMUCapsGet(qemuCaps,
                                        QEMU_CAPS_MACH_VIRT_GIC_VERSION)) {
                        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                       _("gic-version option is not available "
                                         "with this QEMU binary"));
                        virBufferFreeAndReset(&buf);
                        return -1;
                    }

5165 5166
                    virBufferAsprintf(&buf, ",gic-version=%s",
                                      virGICVersionTypeToString(def->gic_version));
5167 5168 5169
                }
            }
        }
5170

5171
        virCommandAddArgBuffer(cmd, &buf);
5172 5173
    }

5174 5175 5176 5177
    if (obsoleteAccel &&
        qemuBuildObsoleteAccelArg(cmd, def, qemuCaps) < 0)
        return -1;

5178 5179 5180
    return 0;
}

5181
static char *
E
Eric Blake 已提交
5182
qemuBuildSmpArgStr(const virDomainDef *def,
5183
                   virQEMUCapsPtr qemuCaps)
5184 5185 5186
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

5187
    virBufferAsprintf(&buf, "%u", virDomainDefGetVcpus(def));
5188

5189
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SMP_TOPOLOGY)) {
5190
        if (virDomainDefHasVcpusOffline(def))
5191
            virBufferAsprintf(&buf, ",maxcpus=%u", virDomainDefGetVcpusMax(def));
5192 5193 5194
        /* 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) {
5195 5196 5197
            virBufferAsprintf(&buf, ",sockets=%u", def->cpu->sockets);
            virBufferAsprintf(&buf, ",cores=%u", def->cpu->cores);
            virBufferAsprintf(&buf, ",threads=%u", def->cpu->threads);
5198
        } else {
5199
            virBufferAsprintf(&buf, ",sockets=%u", virDomainDefGetVcpusMax(def));
5200 5201
            virBufferAsprintf(&buf, ",cores=%u", 1);
            virBufferAsprintf(&buf, ",threads=%u", 1);
5202
        }
5203
    } else if (virDomainDefHasVcpusOffline(def)) {
5204 5205
        virBufferFreeAndReset(&buf);
        /* FIXME - consider hot-unplugging cpus after boot for older qemu */
5206 5207 5208
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("setting current vcpu count less than maximum is "
                         "not supported with this QEMU binary"));
5209 5210 5211
        return NULL;
    }

5212
    if (virBufferCheckError(&buf) < 0)
5213 5214 5215 5216 5217
        return NULL;

    return virBufferContentAndReset(&buf);
}

5218 5219 5220 5221 5222 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 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282
static int
qemuBuildMemPathStr(virQEMUDriverConfigPtr cfg,
                    virDomainDefPtr def,
                    virQEMUCapsPtr qemuCaps,
                    virCommandPtr cmd)
{
    const long system_page_size = virGetSystemPageSizeKB();
    char *mem_path = NULL;
    size_t i = 0;

    /*
     *  No-op if hugepages were not requested.
     */
    if (!def->mem.nhugepages)
        return 0;

    /* There is one special case: if user specified "huge"
     * pages of regular system pages size.
     * And there is nothing to do in this case.
     */
    if (def->mem.hugepages[0].size == system_page_size)
        return 0;

    if (!cfg->nhugetlbfs) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("hugetlbfs filesystem is not mounted "
                               "or disabled by administrator config"));
        return -1;
    }

    if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MEM_PATH)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("hugepage backing not supported by '%s'"),
                       def->emulator);
        return -1;
    }

    if (!def->mem.hugepages[0].size) {
        if (!(mem_path = qemuGetDefaultHugepath(cfg->hugetlbfs,
                                                cfg->nhugetlbfs)))
            return -1;
    } else {
        for (i = 0; i < cfg->nhugetlbfs; i++) {
            if (cfg->hugetlbfs[i].size == def->mem.hugepages[0].size)
                break;
        }

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

        if (!(mem_path = qemuGetHugepagePath(&cfg->hugetlbfs[i])))
            return -1;
    }

    virCommandAddArgList(cmd, "-mem-prealloc", "-mem-path", mem_path, NULL);
    VIR_FREE(mem_path);

    return 0;
}

B
Bharata B Rao 已提交
5283
static int
5284
qemuBuildNumaArgStr(virQEMUDriverConfigPtr cfg,
5285
                    virDomainDefPtr def,
5286
                    virCommandPtr cmd,
5287
                    virQEMUCapsPtr qemuCaps,
5288
                    virBitmapPtr auto_nodeset)
B
Bharata B Rao 已提交
5289
{
5290
    size_t i;
B
Bharata B Rao 已提交
5291
    virBuffer buf = VIR_BUFFER_INITIALIZER;
5292
    char *cpumask = NULL, *tmpmask = NULL, *next = NULL;
5293 5294 5295
    char **nodeBackends = NULL;
    bool needBackend = false;
    int rc;
5296
    int ret = -1;
5297
    size_t ncells = virDomainNumaGetNodeCount(def->numa);
5298
    const long system_page_size = virGetSystemPageSizeKB();
B
Bharata B Rao 已提交
5299

5300
    if (virDomainNumatuneHasPerNodeBinding(def->numa) &&
5301 5302
        !(virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
          virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE))) {
5303 5304 5305 5306 5307 5308
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Per-node memory binding is not supported "
                         "with this QEMU"));
        goto cleanup;
    }

5309 5310
    if (def->mem.nhugepages &&
        def->mem.hugepages[0].size != system_page_size &&
5311 5312 5313 5314 5315 5316 5317
        !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;
    }

5318
    if (!virDomainNumatuneNodesetIsAvailable(def->numa, auto_nodeset))
5319 5320
        goto cleanup;

5321 5322 5323 5324 5325 5326 5327 5328 5329
    for (i = 0; i < def->mem.nhugepages; i++) {
        ssize_t next_bit, pos = 0;

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

5330
        if (ncells) {
5331 5332
            /* Fortunately, we allow only guest NUMA nodes to be continuous
             * starting from zero. */
5333
            pos = ncells - 1;
5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344
        }

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

5345
    if (VIR_ALLOC_N(nodeBackends, ncells) < 0)
5346 5347 5348 5349
        goto cleanup;

    /* using of -numa memdev= cannot be combined with -numa mem=, thus we
     * need to check which approach to use */
5350
    for (i = 0; i < ncells; i++) {
5351 5352
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_RAM) ||
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_MEMORY_FILE)) {
5353 5354 5355
            if ((rc = qemuBuildMemoryCellBackendStr(def, qemuCaps, cfg, i,
                                                    auto_nodeset,
                                                    &nodeBackends[i])) < 0)
5356 5357
                goto cleanup;

5358 5359
            if (rc == 0)
                needBackend = true;
5360
        } else {
5361
            if (virDomainNumaGetNodeMemoryAccessMode(def->numa, i)) {
5362 5363 5364 5365 5366
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("Shared memory mapping is not supported "
                                 "with this QEMU"));
                goto cleanup;
            }
5367
        }
5368 5369
    }

5370 5371 5372 5373
    if (!needBackend &&
        qemuBuildMemPathStr(cfg, def, qemuCaps, cmd) < 0)
        goto cleanup;

5374
    for (i = 0; i < ncells; i++) {
5375
        VIR_FREE(cpumask);
5376
        if (!(cpumask = virBitmapFormat(virDomainNumaGetNodeCpumask(def->numa, i))))
5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388
            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;
        }

        if (needBackend)
            virCommandAddArgList(cmd, "-object", nodeBackends[i], NULL);
5389

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

5393 5394 5395 5396 5397 5398 5399
        for (tmpmask = cpumask; tmpmask; tmpmask = next) {
            if ((next = strchr(tmpmask, ',')))
                *(next++) = '\0';
            virBufferAddLit(&buf, ",cpus=");
            virBufferAdd(&buf, tmpmask, -1);
        }

5400
        if (needBackend)
5401
            virBufferAsprintf(&buf, ",memdev=ram-node%zu", i);
5402
        else
5403
            virBufferAsprintf(&buf, ",mem=%llu",
5404
                              virDomainNumaGetNodeMemorySize(def->numa, i) / 1024);
B
Bharata B Rao 已提交
5405 5406 5407

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

5410
 cleanup:
5411
    VIR_FREE(cpumask);
5412 5413

    if (nodeBackends) {
5414
        for (i = 0; i < ncells; i++)
5415 5416 5417 5418 5419
            VIR_FREE(nodeBackends[i]);

        VIR_FREE(nodeBackends);
    }

B
Bharata B Rao 已提交
5420
    virBufferFreeAndReset(&buf);
5421
    return ret;
B
Bharata B Rao 已提交
5422
}
5423

5424

5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447
static int
qemuBuildGraphicsVNCCommandLine(virQEMUDriverConfigPtr cfg,
                                virCommandPtr cmd,
                                virDomainDefPtr def,
                                virQEMUCapsPtr qemuCaps,
                                virDomainGraphicsDefPtr graphics)
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *listenNetwork;
    const char *listenAddr = NULL;
    char *netAddr = NULL;
    bool escapeAddr;
    int ret;

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

    if (graphics->data.vnc.socket || cfg->vncAutoUnixSocket) {
        if (!graphics->data.vnc.socket &&
            virAsprintf(&graphics->data.vnc.socket,
5448
                        "%s/domain-%s/vnc.sock", cfg->libDir, def->name) == -1)
5449
            goto error;
5450 5451 5452

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

5453 5454 5455 5456 5457 5458 5459 5460
    } else {
        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;
        }
5461

5462 5463 5464 5465
        switch (virDomainGraphicsListenGetType(graphics, 0)) {
        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS:
            listenAddr = virDomainGraphicsListenGetAddress(graphics, 0);
            break;
5466

5467 5468 5469
        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NETWORK:
            listenNetwork = virDomainGraphicsListenGetNetwork(graphics, 0);
            if (!listenNetwork)
5470
                break;
5471 5472 5473 5474 5475 5476
            ret = networkGetNetworkAddress(listenNetwork, &netAddr);
            if (ret <= -2) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("network-based listen not possible, "
                                       "network driver not present"));
                goto error;
5477
            }
5478 5479
            if (ret < 0)
                goto error;
5480

5481 5482 5483 5484 5485 5486 5487 5488
            listenAddr = netAddr;
            /* store the address we found in the <graphics> element so it
             * will show up in status. */
            if (virDomainGraphicsListenSetAddress(graphics, 0,
                                                  listenAddr, -1, false) < 0)
                goto error;
            break;
        }
5489

5490 5491
        if (!listenAddr)
            listenAddr = cfg->vncListen;
5492

5493 5494 5495 5496 5497 5498 5499 5500 5501
        escapeAddr = strchr(listenAddr, ':') != NULL;
        if (escapeAddr)
            virBufferAsprintf(&opt, "[%s]", listenAddr);
        else
            virBufferAdd(&opt, listenAddr, -1);
        virBufferAsprintf(&opt, ":%d",
                          graphics->data.vnc.port - 5900);

        VIR_FREE(netAddr);
5502 5503
    }

5504 5505 5506 5507 5508 5509 5510 5511 5512 5513
    if (!graphics->data.vnc.socket &&
        graphics->data.vnc.websocket) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNC_WEBSOCKET)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("VNC WebSockets are not supported "
                             "with this QEMU binary"));
            goto error;
        }
        virBufferAsprintf(&opt, ",websocket=%d", graphics->data.vnc.websocket);
    }
5514

5515 5516 5517 5518 5519 5520 5521
    if (graphics->data.vnc.sharePolicy) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VNC_SHARE_POLICY)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("vnc display sharing policy is not "
                             "supported with this QEMU"));
            goto error;
        }
5522

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

5528 5529
    if (graphics->data.vnc.auth.passwd || cfg->vncPassword)
        virBufferAddLit(&opt, ",password");
5530

5531 5532 5533 5534 5535 5536 5537
    if (cfg->vncTLS) {
        virBufferAddLit(&opt, ",tls");
        if (cfg->vncTLSx509verify)
            virBufferAsprintf(&opt, ",x509verify=%s", cfg->vncTLSx509certdir);
        else
            virBufferAsprintf(&opt, ",x509=%s", cfg->vncTLSx509certdir);
    }
5538

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

5542 5543
        if (cfg->vncSASLdir)
            virCommandAddEnvPair(cmd, "SASL_CONF_PATH", cfg->vncSASLdir);
5544

5545
        /* TODO: Support ACLs later */
5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557
    }

    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)
5558
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
5559 5560 5561 5562 5563
    else
        virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");

    return 0;

5564
 error:
5565 5566 5567 5568 5569 5570
    VIR_FREE(netAddr);
    virBufferFreeAndReset(&opt);
    return -1;
}


5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584
static int
qemuBuildGraphicsSPICECommandLine(virQEMUDriverConfigPtr cfg,
                                  virCommandPtr cmd,
                                  virQEMUCapsPtr qemuCaps,
                                  virDomainGraphicsDefPtr graphics)
{
    virBuffer opt = VIR_BUFFER_INITIALIZER;
    const char *listenNetwork;
    const char *listenAddr = NULL;
    char *netAddr = NULL;
    int ret;
    int defaultMode = graphics->data.spice.defaultMode;
    int port = graphics->data.spice.port;
    int tlsPort = graphics->data.spice.tlsPort;
5585
    size_t i;
5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607

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

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

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

5608 5609 5610 5611 5612 5613 5614 5615 5616 5617
    if (cfg->spiceSASL) {
        virBufferAddLit(&opt, ",sasl");

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

        /* TODO: Support ACLs later */
    }

5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633
    switch (virDomainGraphicsListenGetType(graphics, 0)) {
    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS:
        listenAddr = virDomainGraphicsListenGetAddress(graphics, 0);
        break;

    case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NETWORK:
        listenNetwork = virDomainGraphicsListenGetNetwork(graphics, 0);
        if (!listenNetwork)
            break;
        ret = networkGetNetworkAddress(listenNetwork, &netAddr);
        if (ret <= -2) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("network-based listen not possible, "
                                   "network driver not present"));
            goto error;
        }
5634
        if (ret < 0)
5635
            goto error;
5636

5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655
        listenAddr = netAddr;
        /* store the address we found in the <graphics> element so it will
         * show up in status. */
        if (virDomainGraphicsListenSetAddress(graphics, 0,
                                              listenAddr, -1, false) < 0)
           goto error;
        break;
    }

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

    VIR_FREE(netAddr);

    if (graphics->data.spice.mousemode) {
        switch (graphics->data.spice.mousemode) {
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_SERVER:
5656
            virBufferAddLit(&opt, ",agent-mouse=off");
5657 5658
            break;
        case VIR_DOMAIN_GRAPHICS_SPICE_MOUSE_MODE_CLIENT:
5659
            virBufferAddLit(&opt, ",agent-mouse=on");
5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672
            break;
        default:
            break;
        }
    }

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

5673 5674
    if (tlsPort > 0)
        virBufferAsprintf(&opt, ",x509-dir=%s", cfg->spiceTLSx509certdir);
5675 5676 5677

    switch (defaultMode) {
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
5678
        virBufferAddLit(&opt, ",tls-channel=default");
5679 5680
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
5681
        virBufferAddLit(&opt, ",plaintext-channel=default");
5682 5683 5684 5685 5686 5687
        break;
    case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
        /* nothing */
        break;
    }

5688
    for (i = 0; i < VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_LAST; i++) {
5689
        switch (graphics->data.spice.channels[i]) {
5690
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE:
5691
            if (tlsPort <= 0) {
5692 5693
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice secure channels set in XML configuration, "
5694
                                 "but TLS port is not provided"));
5695 5696 5697 5698 5699
                goto error;
            }
            virBufferAsprintf(&opt, ",tls-channel=%s",
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
5700

5701
        case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE:
5702 5703 5704 5705 5706 5707
            if (port <= 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("spice insecure channels set in XML "
                                 "configuration, but plain port is not provided"));
                goto error;
            }
5708 5709 5710
            virBufferAsprintf(&opt, ",plaintext-channel=%s",
                              virDomainGraphicsSpiceChannelNameTypeToString(i));
            break;
5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735

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

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

            case VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY:
                /* don't care */
            break;
            }
5736 5737
        }
    }
5738

5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749
    if (graphics->data.spice.image)
        virBufferAsprintf(&opt, ",image-compression=%s",
                          virDomainGraphicsSpiceImageCompressionTypeToString(graphics->data.spice.image));
    if (graphics->data.spice.jpeg)
        virBufferAsprintf(&opt, ",jpeg-wan-compression=%s",
                          virDomainGraphicsSpiceJpegCompressionTypeToString(graphics->data.spice.jpeg));
    if (graphics->data.spice.zlib)
        virBufferAsprintf(&opt, ",zlib-glz-wan-compression=%s",
                          virDomainGraphicsSpiceZlibCompressionTypeToString(graphics->data.spice.zlib));
    if (graphics->data.spice.playback)
        virBufferAsprintf(&opt, ",playback-compression=%s",
J
Ján Tomko 已提交
5750
                          virTristateSwitchTypeToString(graphics->data.spice.playback));
5751 5752 5753
    if (graphics->data.spice.streaming)
        virBufferAsprintf(&opt, ",streaming-video=%s",
                          virDomainGraphicsSpiceStreamingModeTypeToString(graphics->data.spice.streaming));
J
Ján Tomko 已提交
5754
    if (graphics->data.spice.copypaste == VIR_TRISTATE_BOOL_NO)
5755
        virBufferAddLit(&opt, ",disable-copy-paste");
J
Ján Tomko 已提交
5756
    if (graphics->data.spice.filetransfer == VIR_TRISTATE_BOOL_NO) {
5757 5758 5759 5760 5761 5762 5763 5764
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SPICE_FILE_XFER_DISABLE)) {
           virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                          _("This QEMU can't disable file transfers through spice"));
            goto error;
        } else {
            virBufferAddLit(&opt, ",disable-agent-file-xfer");
        }
    }
5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785

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

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

    return 0;

5786
 error:
5787 5788 5789 5790 5791
    VIR_FREE(netAddr);
    virBufferFreeAndReset(&opt);
    return -1;
}

5792
static int
5793
qemuBuildGraphicsCommandLine(virQEMUDriverConfigPtr cfg,
5794 5795
                             virCommandPtr cmd,
                             virDomainDefPtr def,
5796
                             virQEMUCapsPtr qemuCaps,
5797
                             virDomainGraphicsDefPtr graphics)
5798
{
5799
    switch ((virDomainGraphicsType) graphics->type) {
5800
    case VIR_DOMAIN_GRAPHICS_TYPE_SDL:
5801
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SDL)) {
5802
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
5803 5804
                           _("sdl not supported by '%s'"), def->emulator);
            return -1;
5805 5806
        }

5807
        if (graphics->data.sdl.xauth)
5808
            virCommandAddEnvPair(cmd, "XAUTHORITY", graphics->data.sdl.xauth);
5809
        if (graphics->data.sdl.display)
5810
            virCommandAddEnvPair(cmd, "DISPLAY", graphics->data.sdl.display);
5811 5812
        if (graphics->data.sdl.fullscreen)
            virCommandAddArg(cmd, "-full-screen");
5813

5814 5815 5816 5817
        /* 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
         */
5818 5819
        virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
        virCommandAddEnvPassBlockSUID(cmd, "SDL_AUDIODRIVER", NULL);
B
Bharata B Rao 已提交
5820

5821 5822 5823
        /* New QEMU has this flag to let us explicitly ask for
         * SDL graphics. This is better than relying on the
         * default, since the default changes :-( */
5824
        virCommandAddArg(cmd, "-sdl");
5825

5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836
        break;

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

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

    case VIR_DOMAIN_GRAPHICS_TYPE_RDP:
    case VIR_DOMAIN_GRAPHICS_TYPE_DESKTOP:
    case VIR_DOMAIN_GRAPHICS_TYPE_LAST:
5837 5838 5839
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported graphics type '%s'"),
                       virDomainGraphicsTypeToString(graphics->type));
5840
        return -1;
5841
    }
5842

5843 5844
    return 0;
}
5845

M
Michele Paolino 已提交
5846 5847 5848 5849
static int
qemuBuildVhostuserCommandLine(virCommandPtr cmd,
                              virDomainDefPtr def,
                              virDomainNetDefPtr net,
5850 5851
                              virQEMUCapsPtr qemuCaps,
                              int bootindex)
M
Michele Paolino 已提交
5852 5853 5854
{
    virBuffer chardev_buf = VIR_BUFFER_INITIALIZER;
    virBuffer netdev_buf = VIR_BUFFER_INITIALIZER;
5855
    unsigned int queues = net->driver.virtio.queues;
M
Michele Paolino 已提交
5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892
    char *nic = NULL;

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

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

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

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

5893
    if (queues > 1) {
J
Ján Tomko 已提交
5894
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VHOSTUSER_MULTIQUEUE)) {
5895 5896 5897 5898 5899 5900 5901 5902
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("multi-queue is not supported for vhost-user "
                             "with this QEMU binary"));
            goto error;
        }
        virBufferAsprintf(&netdev_buf, ",queues=%u", queues);
    }

M
Michele Paolino 已提交
5903 5904 5905 5906 5907 5908
    virCommandAddArg(cmd, "-chardev");
    virCommandAddArgBuffer(cmd, &chardev_buf);

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

5909 5910
    if (!(nic = qemuBuildNicDevStr(def, net, -1, bootindex,
                                   queues, qemuCaps))) {
M
Michele Paolino 已提交
5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Error generating NIC -device string"));
        goto error;
    }

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

    return 0;

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

    return -1;
}

5929 5930 5931 5932 5933 5934 5935 5936
static int
qemuBuildInterfaceCommandLine(virCommandPtr cmd,
                              virQEMUDriverPtr driver,
                              virDomainDefPtr def,
                              virDomainNetDefPtr net,
                              virQEMUCapsPtr qemuCaps,
                              int vlan,
                              int bootindex,
5937
                              virNetDevVPortProfileOp vmop,
5938
                              bool standalone,
5939 5940
                              size_t *nnicindexes,
                              int **nicindexes)
5941 5942 5943
{
    int ret = -1;
    char *nic = NULL, *host = NULL;
5944
    int *tapfd = NULL;
5945
    size_t tapfdSize = 0;
5946
    int *vhostfd = NULL;
5947
    size_t vhostfdSize = 0;
5948 5949
    char **tapfdName = NULL;
    char **vhostfdName = NULL;
5950
    int actualType = virDomainNetGetActualType(net);
5951
    virQEMUDriverConfigPtr cfg = NULL;
5952
    virNetDevBandwidthPtr actualBandwidth;
5953
    size_t i;
5954

5955 5956 5957 5958

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

M
Michele Paolino 已提交
5959
    if (actualType == VIR_DOMAIN_NET_TYPE_VHOSTUSER)
5960
        return qemuBuildVhostuserCommandLine(cmd, def, net, qemuCaps, bootindex);
M
Michele Paolino 已提交
5961

5962 5963 5964 5965 5966 5967 5968
    if (actualType == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
        /* NET_TYPE_HOSTDEV devices are really hostdev devices, so
         * their commandlines are constructed with other hostdevs.
         */
        return 0;
    }

5969 5970 5971
    /* Currently nothing besides TAP devices supports multiqueue. */
    if (net->driver.virtio.queues > 0 &&
        !(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
5972 5973
          actualType == VIR_DOMAIN_NET_TYPE_BRIDGE ||
          actualType == VIR_DOMAIN_NET_TYPE_DIRECT)) {
5974 5975 5976 5977 5978 5979
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Multiqueue network is not supported for: %s"),
                       virDomainNetTypeToString(actualType));
        return -1;
    }

5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990
    /* and only TAP devices support nwfilter rules */
    if (net->filter &&
        !(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
          actualType == VIR_DOMAIN_NET_TYPE_BRIDGE)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("filterref is not supported for "
                         "network interfaces of type %s"),
                       virDomainNetTypeToString(actualType));
        return -1;
    }

5991 5992 5993 5994 5995 5996 5997 5998 5999
    if (net->backend.tap &&
        !(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
          actualType == VIR_DOMAIN_NET_TYPE_BRIDGE)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Custom tap device path is not supported for: %s"),
                       virDomainNetTypeToString(actualType));
        return -1;
    }

6000 6001
    cfg = virQEMUDriverGetConfig(driver);

6002 6003
    if (actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
        actualType == VIR_DOMAIN_NET_TYPE_BRIDGE) {
6004 6005 6006 6007 6008
        tapfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = 1;

        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0 ||
6009
            VIR_ALLOC_N(tapfdName, tapfdSize) < 0)
6010 6011
            goto cleanup;

6012 6013
        memset(tapfd, -1, tapfdSize * sizeof(tapfd[0]));

6014 6015
        if (qemuInterfaceBridgeConnect(def, driver, net,
                                       tapfd, &tapfdSize) < 0)
6016 6017
            goto cleanup;
    } else if (actualType == VIR_DOMAIN_NET_TYPE_DIRECT) {
6018 6019 6020 6021 6022 6023
        tapfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = 1;

        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0 ||
            VIR_ALLOC_N(tapfdName, tapfdSize) < 0)
6024
            goto cleanup;
6025 6026 6027

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

6028 6029
        if (qemuInterfaceDirectConnect(def, driver, net,
                                       tapfd, tapfdSize, vmop) < 0)
6030 6031 6032
            goto cleanup;
    }

6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046
    /* 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
         */
6047 6048
        if (virQEMUDriverIsPrivileged(driver) && nicindexes && nnicindexes &&
            net->ifname) {
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060
            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:
6061
    case VIR_DOMAIN_NET_TYPE_UDP:
6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077
    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;
    }

6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089
    /* Set bandwidth or warn if requested and not supported. */
    actualBandwidth = virDomainNetGetActualBandwidth(net);
    if (actualBandwidth) {
        if (virNetDevSupportBandwidth(actualType)) {
            if (virNetDevBandwidthSet(net->ifname, actualBandwidth, false) < 0)
                goto cleanup;
        } else {
            VIR_WARN("setting bandwidth on interfaces of "
                     "type '%s' is not implemented yet",
                     virDomainNetTypeToString(actualType));
        }
    }
6090

6091 6092 6093 6094 6095
    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) {
6096 6097
        /* Attempt to use vhost-net mode for these types of
           network device */
6098 6099 6100 6101 6102
        vhostfdSize = net->driver.virtio.queues;
        if (!vhostfdSize)
            vhostfdSize = 1;

        if (VIR_ALLOC_N(vhostfd, vhostfdSize) < 0 ||
6103
            VIR_ALLOC_N(vhostfdName, vhostfdSize))
6104 6105
            goto cleanup;

6106 6107
        memset(vhostfd, -1, vhostfdSize * sizeof(vhostfd[0]));

6108 6109
        if (qemuInterfaceOpenVhostNet(def, net, qemuCaps,
                                      vhostfd, &vhostfdSize) < 0)
6110 6111 6112
            goto cleanup;
    }

6113
    for (i = 0; i < tapfdSize; i++) {
M
Michal Privoznik 已提交
6114 6115 6116
        if (virSecurityManagerSetTapFDLabel(driver->securityManager,
                                            def, tapfd[i]) < 0)
            goto cleanup;
6117 6118
        virCommandPassFD(cmd, tapfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
6119
        if (virAsprintf(&tapfdName[i], "%d", tapfd[i]) < 0)
6120 6121 6122
            goto cleanup;
    }

6123
    for (i = 0; i < vhostfdSize; i++) {
6124 6125
        virCommandPassFD(cmd, vhostfd[i],
                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
6126
        if (virAsprintf(&vhostfdName[i], "%d", vhostfd[i]) < 0)
6127
            goto cleanup;
6128 6129 6130 6131 6132 6133 6134 6135 6136 6137
    }

    /* Possible combinations:
     *
     *  1. Old way:   -net nic,model=e1000,vlan=1 -net tap,vlan=1
     *  2. Semi-new:  -device e1000,vlan=1        -net tap,vlan=1
     *  3. Best way:  -netdev type=tap,id=netdev1 -device e1000,id=netdev1
     *
     * NB, no support for -netdev without use of -device
     */
6138
    if (qemuDomainSupportsNetdev(def, qemuCaps, net)) {
6139
        if (!(host = qemuBuildHostNetStr(net, driver,
6140 6141 6142
                                         ',', vlan,
                                         tapfdName, tapfdSize,
                                         vhostfdName, vhostfdSize)))
6143 6144 6145
            goto cleanup;
        virCommandAddArgList(cmd, "-netdev", host, NULL);
    }
6146
    if (qemuDomainSupportsNicdev(def, qemuCaps, net)) {
6147
        if (!(nic = qemuBuildNicDevStr(def, net, vlan, bootindex,
6148
                                       vhostfdSize, qemuCaps)))
6149 6150 6151 6152 6153 6154 6155
            goto cleanup;
        virCommandAddArgList(cmd, "-device", nic, NULL);
    } else {
        if (!(nic = qemuBuildNicStr(net, "nic,", vlan)))
            goto cleanup;
        virCommandAddArgList(cmd, "-net", nic, NULL);
    }
6156
    if (!qemuDomainSupportsNetdev(def, qemuCaps, net)) {
6157
        if (!(host = qemuBuildHostNetStr(net, driver,
6158 6159 6160
                                         ',', vlan,
                                         tapfdName, tapfdSize,
                                         vhostfdName, vhostfdSize)))
6161 6162 6163 6164 6165
            goto cleanup;
        virCommandAddArgList(cmd, "-net", host, NULL);
    }

    ret = 0;
6166
 cleanup:
6167 6168
    if (ret < 0) {
        virErrorPtr saved_err = virSaveLastError();
6169
        virDomainConfNWFilterTeardown(net);
6170 6171 6172
        virSetError(saved_err);
        virFreeError(saved_err);
    }
6173
    for (i = 0; tapfd && i < tapfdSize && tapfd[i] >= 0; i++) {
6174 6175
        if (ret < 0)
            VIR_FORCE_CLOSE(tapfd[i]);
6176 6177
        if (tapfdName)
            VIR_FREE(tapfdName[i]);
6178
    }
6179
    for (i = 0; vhostfd && i < vhostfdSize && vhostfd[i] >= 0; i++) {
6180 6181
        if (ret < 0)
            VIR_FORCE_CLOSE(vhostfd[i]);
6182 6183
        if (vhostfdName)
            VIR_FREE(vhostfdName[i]);
6184 6185 6186
    }
    VIR_FREE(tapfd);
    VIR_FREE(vhostfd);
6187 6188 6189 6190
    VIR_FREE(nic);
    VIR_FREE(host);
    VIR_FREE(tapfdName);
    VIR_FREE(vhostfdName);
6191
    virObjectUnref(cfg);
6192 6193 6194
    return ret;
}

6195 6196
char *
qemuBuildShmemDevStr(virDomainDefPtr def,
6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213
                     virDomainShmemDefPtr shmem,
                     virQEMUCapsPtr qemuCaps)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

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

    virBufferAddLit(&buf, "ivshmem");
    if (shmem->size) {
        /*
         * Thanks to our parsing code, we have a guarantee that the
         * size is power of two and is at least a mebibyte in size.
M
Martin Kletzander 已提交
6214
         * But because it may change in the future, the checks are
6215 6216 6217 6218 6219 6220 6221 6222 6223
         * doubled in here.
         */
        if (shmem->size & (shmem->size - 1)) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("shmem size must be a power of two"));
            goto error;
        }
        if (shmem->size < 1024 * 1024) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
6224
                           _("shmem size must be at least 1 MiB (1024 KiB)"));
6225 6226
            goto error;
        }
M
Martin Kletzander 已提交
6227
        virBufferAsprintf(&buf, ",size=%llum", shmem->size >> 20);
6228 6229 6230
    }

    if (!shmem->server.enabled) {
6231
        virBufferAsprintf(&buf, ",shm=%s,id=%s", shmem->name, shmem->info.alias);
6232
    } else {
6233
        virBufferAsprintf(&buf, ",chardev=char%s,id=%s", shmem->info.alias, shmem->info.alias);
6234 6235 6236 6237 6238 6239 6240 6241 6242 6243
        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));
        }
    }

6244 6245 6246 6247 6248 6249 6250
    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"));
        goto error;
    }

6251 6252 6253 6254 6255 6256
    if (qemuBuildDeviceAddressStr(&buf, def, &shmem->info, qemuCaps) < 0)
        goto error;

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

6257
    return virBufferContentAndReset(&buf);
6258 6259 6260

 error:
    virBufferFreeAndReset(&buf);
6261 6262 6263 6264 6265 6266 6267 6268 6269
    return NULL;
}

char *
qemuBuildShmemBackendStr(virDomainShmemDefPtr shmem,
                         virQEMUCapsPtr qemuCaps)
{
    char *devstr = NULL;

6270 6271
    if (!shmem->server.chr.data.nix.path &&
        virAsprintf(&shmem->server.chr.data.nix.path,
6272 6273 6274 6275
                    "/var/lib/libvirt/shmem-%s-sock",
                    shmem->name) < 0)
        return NULL;

6276
    devstr = qemuBuildChrChardevStr(&shmem->server.chr, shmem->info.alias, qemuCaps);
6277 6278

    return devstr;
6279 6280 6281 6282 6283 6284 6285 6286
}

static int
qemuBuildShmemCommandLine(virCommandPtr cmd,
                          virDomainDefPtr def,
                          virDomainShmemDefPtr shmem,
                          virQEMUCapsPtr qemuCaps)
{
6287 6288 6289
    char *devstr = NULL;

    if (!(devstr = qemuBuildShmemDevStr(def, shmem, qemuCaps)))
6290
        return -1;
6291 6292
    virCommandAddArgList(cmd, "-device", devstr, NULL);
    VIR_FREE(devstr);
6293 6294

    if (shmem->server.enabled) {
6295
        if (!(devstr = qemuBuildShmemBackendStr(shmem, qemuCaps)))
6296 6297
            return -1;

6298
        virCommandAddArgList(cmd, "-chardev", devstr, NULL);
6299 6300 6301 6302 6303 6304
        VIR_FREE(devstr);
    }

    return 0;
}

6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316
static int
qemuBuildChrDeviceCommandLine(virCommandPtr cmd,
                              virDomainDefPtr def,
                              virDomainChrDefPtr chr,
                              virQEMUCapsPtr qemuCaps)
{
    char *devstr = NULL;

    if (qemuBuildChrDeviceStr(&devstr, def, chr, qemuCaps) < 0)
        return -1;

    virCommandAddArgList(cmd, "-device", devstr, NULL);
6317
    VIR_FREE(devstr);
6318 6319 6320
    return 0;
}

6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 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 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389
static int
qemuBuildDomainLoaderCommandLine(virCommandPtr cmd,
                                 virDomainDefPtr def,
                                 virQEMUCapsPtr qemuCaps)
{
    int ret = -1;
    virDomainLoaderDefPtr loader = def->os.loader;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    int unit = 0;

    if (!loader)
        return 0;

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

    case VIR_DOMAIN_LOADER_TYPE_PFLASH:
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_ACPI) &&
            def->features[VIR_DOMAIN_FEATURE_ACPI] != VIR_TRISTATE_SWITCH_ON) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("ACPI must be enabled in order to use UEFI"));
            goto cleanup;
        }

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

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

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

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

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

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

    case VIR_DOMAIN_LOADER_TYPE_LAST:
        /* nada */
        break;
    }

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

J
John Ferlan 已提交
6390

J
John Ferlan 已提交
6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421
static char *
qemuBuildTPMDevStr(const virDomainDef *def,
                   virQEMUCapsPtr qemuCaps,
                   const char *emulator)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const virDomainTPMDef *tpm = def->tpm;
    const char *model = virDomainTPMModelTypeToString(tpm->model);

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

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

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

    return virBufferContentAndReset(&buf);

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


J
John Ferlan 已提交
6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448
/**
 * 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;
}


J
John Ferlan 已提交
6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474
/**
 * 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;
}


J
John Ferlan 已提交
6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565
static char *
qemuBuildTPMBackendStr(const virDomainDef *def,
                       virCommandPtr cmd,
                       virQEMUCapsPtr qemuCaps,
                       const char *emulator,
                       int *tpmfd,
                       int *cancelfd)
{
    const virDomainTPMDef *tpm = def->tpm;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const char *type = virDomainTPMBackendTypeToString(tpm->type);
    char *cancel_path = NULL, *devset = NULL;
    const char *tpmdev;

    *tpmfd = -1;
    *cancelfd = -1;

    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;

        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_ADD_FD)) {
            *tpmfd = open(tpmdev, O_RDWR);
            if (*tpmfd < 0) {
                virReportSystemError(errno, _("Could not open TPM device %s"),
                                     tpmdev);
                goto error;
            }

            virCommandPassFD(cmd, *tpmfd,
                             VIR_COMMAND_PASS_FD_CLOSE_PARENT);
            devset = qemuVirCommandGetDevSet(cmd, *tpmfd);
            if (devset == NULL)
                goto error;

            *cancelfd = open(cancel_path, O_WRONLY);
            if (*cancelfd < 0) {
                virReportSystemError(errno,
                                     _("Could not open TPM device's cancel "
                                       "path %s"), cancel_path);
                goto error;
            }
            VIR_FREE(cancel_path);

            virCommandPassFD(cmd, *cancelfd,
                             VIR_COMMAND_PASS_FD_CLOSE_PARENT);
            cancel_path = qemuVirCommandGetDevSet(cmd, *cancelfd);
            if (cancel_path == NULL)
                goto error;
        }
        virBufferAddLit(&buf, ",path=");
        virBufferEscape(&buf, ',', ",", "%s", devset ? devset : tpmdev);

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

        VIR_FREE(devset);
        VIR_FREE(cancel_path);

        break;
    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"),
                   emulator, type);

 error:
    VIR_FREE(devset);
    VIR_FREE(cancel_path);

    virBufferFreeAndReset(&buf);
    return NULL;
}


6566 6567 6568 6569 6570 6571 6572
static int
qemuBuildTPMCommandLine(virDomainDefPtr def,
                        virCommandPtr cmd,
                        virQEMUCapsPtr qemuCaps,
                        const char *emulator)
{
    char *optstr;
6573 6574 6575
    int tpmfd = -1;
    int cancelfd = -1;
    char *fdset;
6576

6577 6578
    if (!(optstr = qemuBuildTPMBackendStr(def, cmd, qemuCaps, emulator,
                                          &tpmfd, &cancelfd)))
6579 6580 6581 6582 6583
        return -1;

    virCommandAddArgList(cmd, "-tpmdev", optstr, NULL);
    VIR_FREE(optstr);

6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601
    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);
    }

6602 6603 6604 6605 6606 6607 6608 6609 6610 6611
    if (!(optstr = qemuBuildTPMDevStr(def, qemuCaps, emulator)))
        return -1;

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

    return 0;
}


6612 6613 6614 6615
qemuBuildCommandLineCallbacks buildCommandLineCallbacks = {
    .qemuGetSCSIDeviceSgName = virSCSIDeviceGetSgName,
};

6616 6617 6618 6619 6620 6621 6622 6623 6624
/*
 * Constructs a argv suitable for launching qemu with config defined
 * for a given virtual machine.
 *
 * XXX 'conn' is only required to resolve network -> bridge name
 * figure out how to remove this requirement some day
 */
virCommandPtr
qemuBuildCommandLine(virConnectPtr conn,
6625
                     virQEMUDriverPtr driver,
6626 6627 6628
                     virDomainDefPtr def,
                     virDomainChrSourceDefPtr monitor_chr,
                     bool monitor_json,
6629
                     virQEMUCapsPtr qemuCaps,
6630
                     const char *migrateURI,
6631
                     virDomainSnapshotObjPtr snapshot,
6632
                     virNetDevVPortProfileOp vmop,
C
Cole Robinson 已提交
6633
                     qemuBuildCommandLineCallbacksPtr callbacks,
6634
                     bool standalone,
6635
                     bool enableFips,
6636 6637 6638
                     virBitmapPtr nodeset,
                     size_t *nnicindexes,
                     int **nicindexes)
6639
{
6640
    virErrorPtr originalError = NULL;
6641
    size_t i, j;
6642 6643 6644 6645 6646 6647 6648
    const char *emulator;
    char uuid[VIR_UUID_STRING_BUFLEN];
    char *cpu;
    char *smp;
    int last_good_net = -1;
    bool hasHwVirt = false;
    virCommandPtr cmd = NULL;
6649
    bool allowReboot = true;
6650
    bool emitBootindex = false;
6651 6652 6653
    int sdl = 0;
    int vnc = 0;
    int spice = 0;
6654
    int usbcontroller = 0;
M
Martin Kletzander 已提交
6655
    int actualSerials = 0;
6656 6657
    bool usblegacy = false;
    int contOrder[] = {
6658 6659 6660 6661
        /*
         * List of controller types that we add commandline args for,
         * *in the order we want to add them*.
         *
6662 6663 6664
         * 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.
6665
         *
6666 6667 6668
         * 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
6669 6670 6671
         * 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.
6672
         */
6673
        VIR_DOMAIN_CONTROLLER_TYPE_PCI,
6674 6675
        VIR_DOMAIN_CONTROLLER_TYPE_USB,
        VIR_DOMAIN_CONTROLLER_TYPE_SCSI,
6676
        VIR_DOMAIN_CONTROLLER_TYPE_IDE,
6677 6678 6679 6680
        VIR_DOMAIN_CONTROLLER_TYPE_SATA,
        VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL,
        VIR_DOMAIN_CONTROLLER_TYPE_CCID,
    };
6681
    virArch hostarch = virArchFromHost();
6682
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
J
Ján Tomko 已提交
6683
    virBuffer boot_buf = VIR_BUFFER_INITIALIZER;
6684
    char *boot_order_str = NULL, *boot_opts_str = NULL;
6685 6686
    virBuffer fdc_opts = VIR_BUFFER_INITIALIZER;
    char *fdc_opts_str = NULL;
6687 6688
    int bootCD = 0, bootFloppy = 0, bootDisk = 0, bootHostdevNet = 0;

6689

6690
    VIR_DEBUG("conn=%p driver=%p def=%p mon=%p json=%d "
6691
              "qemuCaps=%p migrateURI=%s snapshot=%p vmop=%d",
6692
              conn, driver, def, monitor_chr, monitor_json,
6693
              qemuCaps, migrateURI, snapshot, vmop);
6694

6695 6696 6697 6698
    virUUIDFormat(def->uuid, uuid);

    emulator = def->emulator;

6699
    if (!virQEMUDriverIsPrivileged(driver)) {
6700
        /* If we have no cgroups then we can have no tunings that
6701 6702
         * require them */

6703 6704 6705 6706
        if (virMemoryLimitIsSet(def->mem.hard_limit) ||
            virMemoryLimitIsSet(def->mem.soft_limit) ||
            def->mem.min_guarantee ||
            virMemoryLimitIsSet(def->mem.swap_hard_limit)) {
6707 6708 6709 6710 6711
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Memory tuning is not available in session mode"));
            goto error;
        }

6712
        if (def->blkio.weight) {
6713 6714 6715 6716 6717
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("Block I/O tuning is not available in session mode"));
            goto error;
        }

6718
        if (def->cputune.sharesSpecified || def->cputune.period ||
6719 6720 6721 6722 6723 6724 6725 6726
            def->cputune.quota || def->cputune.emulator_period ||
            def->cputune.emulator_quota) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("CPU tuning is not available in session mode"));
            goto error;
        }
    }

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

6741 6742 6743 6744
    /*
     * do not use boot=on for drives when not using KVM since this
     * is not supported at all in upstream QEmu.
     */
6745
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM) &&
6746
        (def->virtType == VIR_DOMAIN_VIRT_QEMU))
6747
        virQEMUCapsClear(qemuCaps, QEMU_CAPS_DRIVE_BOOT);
6748 6749

    cmd = virCommandNew(emulator);
6750

6751
    virCommandAddEnvPassCommon(cmd);
6752

6753 6754 6755 6756 6757 6758 6759
    virCommandAddArg(cmd, "-name");
    if (cfg->setProcessName &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_NAME_PROCESS)) {
        virCommandAddArgFormat(cmd, "%s,process=qemu:%s",
                               def->name, def->name);
    } else {
        virCommandAddArg(cmd, def->name);
6760
    }
C
Cole Robinson 已提交
6761 6762 6763 6764

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

6765
    if (enableFips)
6766
        virCommandAddArg(cmd, "-enable-fips");
6767

6768
    if (qemuBuildMachineArgStr(cmd, def, qemuCaps) < 0)
6769
        goto error;
6770

6771
    if (qemuBuildCpuArgStr(driver, def, emulator, qemuCaps,
6772
                           hostarch, &cpu, &hasHwVirt, !!migrateURI) < 0)
6773
        goto error;
6774

6775 6776 6777 6778
    if (cpu) {
        virCommandAddArgList(cmd, "-cpu", cpu, NULL);
        VIR_FREE(cpu);

6779
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NESTING) &&
6780 6781
            hasHwVirt)
            virCommandAddArg(cmd, "-enable-nesting");
6782
    }
6783

6784 6785
    if (qemuBuildDomainLoaderCommandLine(cmd, def, qemuCaps) < 0)
        goto error;
6786

6787
    if (!migrateURI && !snapshot &&
6788
        qemuDomainAlignMemorySizes(def) < 0)
6789 6790
        goto error;

6791 6792 6793
    if (qemuDomainDefValidateMemoryHotplug(def, qemuCaps, NULL) < 0)
        goto error;

6794
    virCommandAddArg(cmd, "-m");
6795

6796
    if (virDomainDefHasMemoryHotplug(def)) {
6797 6798 6799 6800 6801 6802 6803 6804 6805
        /* 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);
    }
6806

6807 6808 6809 6810 6811 6812 6813
    /*
     * Add '-mem-path' (and '-mem-prealloc') parameter here only if
     * there is no numa node specified.
     */
    if (!virDomainNumaGetNodeCount(def->numa) &&
        qemuBuildMemPathStr(cfg, def, qemuCaps, cmd) < 0)
        goto error;
6814

6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825
    if (def->mem.locked && !virQEMUCapsGet(qemuCaps, QEMU_CAPS_MLOCK)) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("memory locking not supported by QEMU binary"));
        goto error;
    }
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MLOCK)) {
        virCommandAddArg(cmd, "-realtime");
        virCommandAddArgFormat(cmd, "mlock=%s",
                               def->mem.locked ? "on" : "off");
    }

6826
    virCommandAddArg(cmd, "-smp");
6827
    if (!(smp = qemuBuildSmpArgStr(def, qemuCaps)))
6828 6829 6830 6831
        goto error;
    virCommandAddArg(cmd, smp);
    VIR_FREE(smp);

6832 6833 6834 6835 6836 6837 6838
    if (def->niothreadids) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_OBJECT_IOTHREAD)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("IOThreads not supported for this QEMU"));
            goto error;
        }

6839 6840
        /* Create iothread objects using the defined iothreadids list
         * and the defined id and name from the list. These may be used
J
John Ferlan 已提交
6841
         * by a disk definition which will associate to an iothread by
6842
         * supplying a value of an id from the list
J
John Ferlan 已提交
6843
         */
6844
        for (i = 0; i < def->niothreadids; i++) {
J
John Ferlan 已提交
6845
            virCommandAddArg(cmd, "-object");
6846 6847
            virCommandAddArgFormat(cmd, "iothread,id=iothread%u",
                                   def->iothreadids[i]->iothread_id);
J
John Ferlan 已提交
6848 6849 6850
        }
    }

6851 6852
    if (virDomainNumaGetNodeCount(def->numa) &&
        qemuBuildNumaArgStr(cfg, def, cmd, qemuCaps, nodeset) < 0)
6853 6854
            goto error;

6855 6856
    /* memory hotplug requires NUMA to be enabled - we already checked
     * that memory devices are present only when NUMA is */
6857

6858

6859 6860 6861
    for (i = 0; i < def->nmems; i++) {
        char *backStr;
        char *dimmStr;
6862

6863 6864 6865
        if (!(backStr = qemuBuildMemoryDimmBackendStr(def->mems[i], def,
                                                      qemuCaps, cfg)))
            goto error;
6866

6867
        if (!(dimmStr = qemuBuildMemoryDeviceStr(def->mems[i]))) {
6868
            VIR_FREE(backStr);
6869
            goto error;
6870
        }
6871 6872 6873 6874 6875

        virCommandAddArgList(cmd, "-object", backStr, "-device", dimmStr, NULL);

        VIR_FREE(backStr);
        VIR_FREE(dimmStr);
6876 6877
    }

6878
    virCommandAddArgList(cmd, "-uuid", uuid, NULL);
6879
    if (def->virtType == VIR_DOMAIN_VIRT_XEN ||
6880 6881
        def->os.type == VIR_DOMAIN_OSTYPE_XEN ||
        def->os.type == VIR_DOMAIN_OSTYPE_LINUX) {
6882 6883 6884 6885
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("qemu emulator '%s' does not support xen"),
                       def->emulator);
        goto error;
6886 6887
    }

6888 6889 6890 6891 6892
    if ((def->os.smbios_mode != VIR_DOMAIN_SMBIOS_NONE) &&
        (def->os.smbios_mode != VIR_DOMAIN_SMBIOS_EMULATE)) {
        virSysinfoDefPtr source = NULL;
        bool skip_uuid = false;

6893
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SMBIOS_TYPE)) {
6894 6895 6896
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("the QEMU binary %s does not support smbios settings"),
                           emulator);
6897 6898 6899
            goto error;
        }

6900 6901 6902
        /* should we really error out or just warn in those cases ? */
        if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_HOST) {
            if (driver->hostsysinfo == NULL) {
6903
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
6904
                               _("Host SMBIOS information is not available"));
6905
                goto error;
6906
            }
6907 6908 6909 6910 6911 6912 6913 6914 6915
            source = driver->hostsysinfo;
            /* Host and guest uuid must differ, by definition of UUID. */
            skip_uuid = true;
        } else if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_SYSINFO) {
            if (def->sysinfo == NULL) {
                virReportError(VIR_ERR_XML_ERROR,
                               _("Domain '%s' sysinfo are not available"),
                               def->name);
                goto error;
6916
            }
6917 6918
            source = def->sysinfo;
            /* domain_conf guaranteed that system_uuid matches guest uuid. */
6919
        }
6920 6921
        if (source != NULL) {
            char *smbioscmd;
6922

6923
            smbioscmd = qemuBuildSmbiosBiosStr(source->bios);
6924 6925 6926
            if (smbioscmd != NULL) {
                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
6927
            }
6928
            smbioscmd = qemuBuildSmbiosSystemStr(source->system, skip_uuid);
6929 6930 6931
            if (smbioscmd != NULL) {
                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
6932
            }
6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947

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

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

                virCommandAddArgList(cmd, "-smbios", smbioscmd, NULL);
                VIR_FREE(smbioscmd);
            }
6948
        }
6949
    }
6950

6951 6952 6953 6954 6955 6956 6957
    /*
     * 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...
     */
6958
    if (!def->graphics) {
6959
        virCommandAddArg(cmd, "-nographic");
6960

6961
        if (cfg->nogfxAllowHostAudio)
6962
            virCommandAddEnvPassBlockSUID(cmd, "QEMU_AUDIO_DRV", NULL);
6963 6964 6965 6966
        else
            virCommandAddEnvString(cmd, "QEMU_AUDIO_DRV=none");
    }

6967
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
6968
        /* Disable global config files and default devices */
6969
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_USER_CONFIG))
6970
            virCommandAddArg(cmd, "-no-user-config");
6971
        else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NODEFCONFIG))
6972 6973
            virCommandAddArg(cmd, "-nodefconfig");
        virCommandAddArg(cmd, "-nodefaults");
6974 6975
    }

6976
    /* Serial graphics adapter */
J
Ján Tomko 已提交
6977
    if (def->os.bios.useserial == VIR_TRISTATE_BOOL_YES) {
6978
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
6979 6980 6981 6982
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("qemu does not support -device"));
            goto error;
        }
6983
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SGA)) {
6984 6985 6986 6987 6988 6989 6990
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("qemu does not support SGA"));
            goto error;
        }
        if (!def->nserials) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("need at least one serial port to use SGA"));
6991 6992
            goto error;
        }
6993
        virCommandAddArgList(cmd, "-device", "sga", NULL);
6994 6995
    }

6996 6997 6998
    if (monitor_chr) {
        char *chrdev;
        /* Use -chardev if it's available */
6999
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV)) {
J
Jim Fehlig 已提交
7000

7001 7002
            virCommandAddArg(cmd, "-chardev");
            if (!(chrdev = qemuBuildChrChardevStr(monitor_chr, "monitor",
7003
                                                  qemuCaps)))
7004 7005 7006
                goto error;
            virCommandAddArg(cmd, chrdev);
            VIR_FREE(chrdev);
7007

7008 7009 7010 7011 7012 7013 7014 7015
            virCommandAddArg(cmd, "-mon");
            virCommandAddArgFormat(cmd,
                                   "chardev=charmonitor,id=monitor,mode=%s",
                                   monitor_json ? "control" : "readline");
        } else {
            const char *prefix = NULL;
            if (monitor_json)
                prefix = "control,";
7016

7017 7018 7019 7020 7021
            virCommandAddArg(cmd, "-monitor");
            if (!(chrdev = qemuBuildChrArgStr(monitor_chr, prefix)))
                goto error;
            virCommandAddArg(cmd, chrdev);
            VIR_FREE(chrdev);
7022 7023 7024
        }
    }

7025
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC)) {
7026
        char *rtcopt;
7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037
        virCommandAddArg(cmd, "-rtc");
        if (!(rtcopt = qemuBuildClockArgStr(&def->clock)))
            goto error;
        virCommandAddArg(cmd, rtcopt);
        VIR_FREE(rtcopt);
    } else {
        switch (def->clock.offset) {
        case VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME:
        case VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE:
            virCommandAddArg(cmd, "-localtime");
            break;
7038

7039 7040 7041
        case VIR_DOMAIN_CLOCK_OFFSET_UTC:
            /* Nothing, its the default */
            break;
7042

7043 7044 7045 7046
        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported clock offset '%s'"),
                           virDomainClockOffsetTypeToString(def->clock.offset));
7047
            goto error;
7048 7049 7050 7051 7052
        }
    }
    if (def->clock.offset == VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE &&
        def->clock.data.timezone) {
        virCommandAddEnvPair(cmd, "TZ", def->clock.data.timezone);
7053 7054
    }

7055
    for (i = 0; i < def->clock.ntimers; i++) {
7056
        switch ((virDomainTimerNameType) def->clock.timers[i]->name) {
7057 7058 7059 7060 7061 7062
        case VIR_DOMAIN_TIMER_NAME_PLATFORM:
        case VIR_DOMAIN_TIMER_NAME_TSC:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported timer type (name) '%s'"),
                           virDomainTimerNameTypeToString(def->clock.timers[i]->name));
            goto error;
7063

7064
        case VIR_DOMAIN_TIMER_NAME_KVMCLOCK:
7065 7066 7067
        case VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK:
            /* Timers above are handled when building -cpu.  */
        case VIR_DOMAIN_TIMER_NAME_LAST:
7068 7069 7070 7071 7072 7073
            break;

        case VIR_DOMAIN_TIMER_NAME_RTC:
            /* This has already been taken care of (in qemuBuildClockArgStr)
               if QEMU_CAPS_RTC is set (mutually exclusive with
               QEMUD_FLAG_RTC_TD_HACK) */
7074
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC_TD_HACK)) {
7075 7076 7077 7078
                switch (def->clock.timers[i]->tickpolicy) {
                case -1:
                case VIR_DOMAIN_TIMER_TICKPOLICY_DELAY:
                    /* the default - do nothing */
7079
                    break;
7080 7081
                case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
                    virCommandAddArg(cmd, "-rtc-td-hack");
7082
                    break;
7083 7084 7085 7086 7087
                case VIR_DOMAIN_TIMER_TICKPOLICY_MERGE:
                case VIR_DOMAIN_TIMER_TICKPOLICY_DISCARD:
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("unsupported rtc tickpolicy '%s'"),
                                   virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
J
Ján Tomko 已提交
7088
                    goto error;
7089
                }
7090 7091 7092 7093
            } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_RTC) &&
                       (def->clock.timers[i]->tickpolicy
                        != VIR_DOMAIN_TIMER_TICKPOLICY_DELAY) &&
                       (def->clock.timers[i]->tickpolicy != -1)) {
7094 7095 7096 7097 7098 7099
                /* a non-default rtc policy was given, but there is no
                   way to implement it in this version of qemu */
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported rtc tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
                goto error;
7100
            }
7101
            break;
7102

7103 7104 7105 7106 7107 7108
        case VIR_DOMAIN_TIMER_NAME_PIT:
            switch (def->clock.timers[i]->tickpolicy) {
            case -1:
            case VIR_DOMAIN_TIMER_TICKPOLICY_DELAY:
                /* delay is the default if we don't have kernel
                   (-no-kvm-pit), otherwise, the default is catchup. */
7109 7110 7111 7112
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY))
                    virCommandAddArgList(cmd, "-global",
                                         "kvm-pit.lost_tick_policy=discard", NULL);
                else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_KVM_PIT))
7113 7114 7115
                    virCommandAddArg(cmd, "-no-kvm-pit-reinjection");
                break;
            case VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP:
7116 7117
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_KVM_PIT) ||
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_KVM_PIT_TICK_POLICY)) {
7118
                    /* do nothing - this is default for kvm-pit */
7119
                } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_TDF)) {
7120 7121
                    /* -tdf switches to 'catchup' with userspace pit. */
                    virCommandAddArg(cmd, "-tdf");
7122
                } else {
7123 7124 7125 7126
                    /* can't catchup if we have neither pit mode */
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("unsupported pit tickpolicy '%s'"),
                                   virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
7127 7128 7129
                    goto error;
                }
                break;
7130 7131 7132 7133 7134 7135 7136
            case VIR_DOMAIN_TIMER_TICKPOLICY_MERGE:
            case VIR_DOMAIN_TIMER_TICKPOLICY_DISCARD:
                /* no way to support these modes for pit in qemu */
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unsupported pit tickpolicy '%s'"),
                               virDomainTimerTickpolicyTypeToString(def->clock.timers[i]->tickpolicy));
                goto error;
7137
            }
7138
            break;
7139

7140 7141 7142 7143 7144 7145 7146
        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"! */
7147

7148
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_HPET)) {
7149 7150 7151 7152 7153 7154 7155
                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,
7156 7157
                                   "%s", _("hpet timer is not supported"));
                    goto error;
7158 7159
                }
            }
7160 7161 7162
            break;
        }
    }
7163

7164 7165 7166 7167 7168 7169 7170
    /* Only add -no-reboot option if each event destroys domain */
    if (def->onReboot == VIR_DOMAIN_LIFECYCLE_DESTROY &&
        def->onPoweroff == VIR_DOMAIN_LIFECYCLE_DESTROY &&
        (def->onCrash == VIR_DOMAIN_LIFECYCLE_CRASH_DESTROY ||
         def->onCrash == VIR_DOMAIN_LIFECYCLE_CRASH_COREDUMP_DESTROY)) {
        allowReboot = false;
        virCommandAddArg(cmd, "-no-reboot");
7171
    }
7172

7173 7174 7175 7176
    /* If JSON monitor is enabled, we can receive an event
     * when QEMU stops. If we use no-shutdown, then we can
     * watch for this event and do a soft/warm reboot.
     */
7177 7178
    if (monitor_json && allowReboot &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_SHUTDOWN)) {
7179
        virCommandAddArg(cmd, "-no-shutdown");
7180
    }
7181

7182
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_NO_ACPI)) {
J
Ján Tomko 已提交
7183
        if (def->features[VIR_DOMAIN_FEATURE_ACPI] != VIR_TRISTATE_SWITCH_ON)
7184 7185
            virCommandAddArg(cmd, "-no-acpi");
    }
7186

7187 7188 7189 7190
    /* 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.*/
7191
    if (def->pm.s3) {
7192 7193 7194 7195 7196 7197
        const char *pm_object = "PIIX4_PM";

        if (qemuDomainMachineIsQ35(def) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_ICH9_DISABLE_S3)) {
            pm_object = "ICH9-LPC";
        } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PIIX_DISABLE_S3)) {
7198 7199 7200
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           "%s", _("setting ACPI S3 not supported"));
            goto error;
7201
        }
7202

7203
        virCommandAddArg(cmd, "-global");
7204 7205
        virCommandAddArgFormat(cmd, "%s.disable_s3=%d",
                               pm_object, def->pm.s3 == VIR_TRISTATE_BOOL_NO);
7206 7207 7208
    }

    if (def->pm.s4) {
7209 7210 7211 7212 7213 7214
        const char *pm_object = "PIIX4_PM";

        if (qemuDomainMachineIsQ35(def) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_ICH9_DISABLE_S4)) {
            pm_object = "ICH9-LPC";
        } else if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PIIX_DISABLE_S4)) {
7215
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
7216 7217 7218
                           "%s", _("setting ACPI S4 not supported"));
            goto error;
        }
7219

7220
        virCommandAddArg(cmd, "-global");
7221 7222
        virCommandAddArgFormat(cmd, "%s.disable_s4=%d",
                               pm_object, def->pm.s4 == VIR_TRISTATE_BOOL_NO);
7223
    }
7224

J
Ján Tomko 已提交
7225 7226 7227 7228 7229 7230 7231 7232
    /*
     * We prefer using explicit bootindex=N parameters for predictable
     * results even though domain XML doesn't use per device boot elements.
     * However, we can't use bootindex if boot menu was requested.
     */
    if (!def->os.nBootDevs) {
        /* def->os.nBootDevs is guaranteed to be > 0 unless per-device boot
         * configuration is used
7233
         */
J
Ján Tomko 已提交
7234 7235 7236 7237
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("hypervisor lacks deviceboot feature"));
            goto error;
7238
        }
J
Ján Tomko 已提交
7239 7240 7241 7242 7243 7244
        emitBootindex = true;
    } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX) &&
               (def->os.bootmenu != VIR_TRISTATE_BOOL_YES ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_MENU))) {
        emitBootindex = true;
    }
7245

J
Ján Tomko 已提交
7246 7247
    if (!emitBootindex) {
        char boot[VIR_DOMAIN_BOOT_LAST+1];
7248

J
Ján Tomko 已提交
7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265
        for (i = 0; i < def->os.nBootDevs; i++) {
            switch (def->os.bootDevs[i]) {
            case VIR_DOMAIN_BOOT_CDROM:
                boot[i] = 'd';
                break;
            case VIR_DOMAIN_BOOT_FLOPPY:
                boot[i] = 'a';
                break;
            case VIR_DOMAIN_BOOT_DISK:
                boot[i] = 'c';
                break;
            case VIR_DOMAIN_BOOT_NET:
                boot[i] = 'n';
                break;
            default:
                boot[i] = 'c';
                break;
7266 7267
            }
        }
J
Ján Tomko 已提交
7268
        boot[def->os.nBootDevs] = '\0';
7269

J
Ján Tomko 已提交
7270
        virBufferAsprintf(&boot_buf, "%s", boot);
7271 7272 7273
        if (virBufferCheckError(&boot_buf) < 0)
            goto error;
        boot_order_str = virBufferContentAndReset(&boot_buf);
J
Ján Tomko 已提交
7274
    }
7275

J
Ján Tomko 已提交
7276 7277 7278
    if (def->os.bootmenu) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_MENU)) {
            if (def->os.bootmenu == VIR_TRISTATE_BOOL_YES)
7279
                virBufferAddLit(&boot_buf, "menu=on,");
J
Ján Tomko 已提交
7280
            else
7281
                virBufferAddLit(&boot_buf, "menu=off,");
J
Ján Tomko 已提交
7282 7283 7284 7285 7286
        } else {
            /* We cannot emit an error when bootmenu is enabled but
             * unsupported because of backward compatibility */
            VIR_WARN("bootmenu is enabled but not "
                     "supported by this QEMU binary");
7287
        }
J
Ján Tomko 已提交
7288
    }
7289

J
Ján Tomko 已提交
7290 7291 7292 7293 7294 7295 7296
    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;
        }
7297

J
Ján Tomko 已提交
7298
        virBufferAsprintf(&boot_buf,
7299
                          "reboot-timeout=%d,",
J
Ján Tomko 已提交
7300 7301
                          def->os.bios.rt_delay);
    }
7302

J
Ján Tomko 已提交
7303 7304 7305 7306 7307 7308
    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;
7309 7310
        }

7311
        virBufferAsprintf(&boot_buf, "splash-time=%u,", def->os.bm_timeout);
J
Ján Tomko 已提交
7312
    }
7313

7314 7315 7316 7317
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_STRICT))
        virBufferAddLit(&boot_buf, "strict=on,");

    virBufferTrim(&boot_buf, ",", -1);
J
Ján Tomko 已提交
7318

7319 7320
    if (virBufferCheckError(&boot_buf) < 0)
        goto error;
J
Ján Tomko 已提交
7321

7322 7323 7324
    boot_opts_str = virBufferContentAndReset(&boot_buf);
    if (boot_order_str || boot_opts_str) {
        virCommandAddArg(cmd, "-boot");
J
Ján Tomko 已提交
7325

7326 7327 7328 7329 7330 7331 7332
        if (boot_order_str && boot_opts_str) {
            virCommandAddArgFormat(cmd, "order=%s,%s",
                                   boot_order_str, boot_opts_str);
        } else if (boot_order_str) {
            virCommandAddArg(cmd, boot_order_str);
        } else if (boot_opts_str) {
            virCommandAddArg(cmd, boot_opts_str);
7333
        }
J
Ján Tomko 已提交
7334
    }
7335
    VIR_FREE(boot_opts_str);
7336
    VIR_FREE(boot_order_str);
7337

J
Ján Tomko 已提交
7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350
    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);
    if (def->os.dtb) {
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DTB)) {
            virCommandAddArgList(cmd, "-dtb", def->os.dtb, NULL);
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("dtb is not supported with this QEMU binary"));
            goto error;
O
Olivia Yin 已提交
7351
        }
7352
    }
7353

7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400
    for (i = 0; i < def->ncontrollers; i++) {
        virDomainControllerDefPtr cont = def->controllers[i];
        if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
            cont->opts.pciopts.pcihole64) {
            const char *hoststr = NULL;
            bool cap = false;
            bool machine = false;

            switch (cont->model) {
            case VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT:
                hoststr = "i440FX-pcihost";
                cap = virQEMUCapsGet(qemuCaps, QEMU_CAPS_I440FX_PCI_HOLE64_SIZE);
                machine = qemuDomainMachineIsI440FX(def);
                break;

            case VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT:
                hoststr = "q35-pcihost";
                cap = virQEMUCapsGet(qemuCaps, QEMU_CAPS_Q35_PCI_HOLE64_SIZE);
                machine = qemuDomainMachineIsQ35(def);
                break;

            default:
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("64-bit PCI hole setting is only for root"
                                 " PCI controllers"));
                goto error;
            }

            if (!machine) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                             _("Setting the 64-bit PCI hole size is not "
                             "supported for machine '%s'"), def->os.machine);
                goto error;
            }
            if (!cap) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("64-bit PCI hole size setting is not supported "
                                 "with this QEMU binary"));
                goto error;
            }

            virCommandAddArg(cmd, "-global");
            virCommandAddArgFormat(cmd, "%s.pci-hole64-size=%luK", hoststr,
                                   cont->opts.pciopts.pcihole64size);
        }
    }

7401
    for (i = 0; i < def->ndisks; i++) {
7402
        virDomainDiskDefPtr disk = def->disks[i];
7403

7404
        if (disk->src->driverName != NULL &&
7405
            STRNEQ(disk->src->driverName, "qemu")) {
7406 7407
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported driver name '%s' for disk '%s'"),
7408
                           disk->src->driverName, disk->src->path);
7409 7410 7411 7412
            goto error;
        }
    }

7413
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7414 7415 7416
        for (j = 0; j < ARRAY_CARDINALITY(contOrder); j++) {
            for (i = 0; i < def->ncontrollers; i++) {
                virDomainControllerDefPtr cont = def->controllers[i];
7417
                char *devstr;
7418

7419 7420
                if (cont->type != contOrder[j])
                    continue;
7421

7422
                /* skip USB controllers with type none.*/
7423 7424 7425 7426 7427 7428
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
                    cont->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_NONE) {
                    usbcontroller = -1; /* mark we don't want a controller */
                    continue;
                }

7429
                /* skip pci-root/pcie-root */
7430
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
L
Laine Stump 已提交
7431
                    (cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT ||
7432
                     cont->model == VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT))
7433 7434
                    continue;

7435 7436 7437
                /* first SATA controller on Q35 machines is implicit */
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_SATA &&
                    cont->idx == 0 && qemuDomainMachineIsQ35(def))
7438
                        continue;
7439

7440
                /* first IDE controller is implicit on various machines */
7441
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_IDE &&
7442
                    cont->idx == 0 && qemuDomainMachineHasBuiltinIDE(def))
7443 7444
                        continue;

7445 7446
                if (cont->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
                    cont->model == -1 &&
7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469
                    !qemuDomainMachineIsQ35(def)) {
                    bool need_legacy = false;

                    /* We're not using legacy usb controller for q35 */
                    if (ARCH_IS_PPC64(def->os.arch)) {
                        /* For ppc64 the legacy was OHCI */
                        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_OHCI))
                            need_legacy = true;
                    } else {
                        /* For anything else, we used PIIX3_USB_UHCI */
                        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PIIX3_USB_UHCI))
                            need_legacy = true;
                    }

                    if (need_legacy) {
                        if (usblegacy) {
                            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                           _("Multiple legacy USB controllers are "
                                             "not supported"));
                            goto error;
                        }
                        usblegacy = true;
                        continue;
7470 7471
                    }
                }
7472 7473 7474 7475 7476 7477 7478

                virCommandAddArg(cmd, "-device");
                if (!(devstr = qemuBuildControllerDevStr(def, cont, qemuCaps,
                                                         &usbcontroller)))
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
7479
            }
7480 7481
        }
    }
7482

7483 7484 7485
    if (usbcontroller == 0 &&
        !qemuDomainMachineIsQ35(def) &&
        !ARCH_IS_S390(def->os.arch))
7486
        virCommandAddArg(cmd, "-usb");
7487

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

7492
        virCommandAddArg(cmd, "-device");
7493
        if (!(optstr = qemuBuildHubDevStr(def, hub, qemuCaps)))
7494 7495 7496 7497
            goto error;
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);
    }
7498

7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512
    if ((virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) || emitBootindex)) {
        /* bootDevs will get translated into either bootindex=N or boot=on
         * depending on what qemu supports */
        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;
7513
            }
7514
        }
7515
    }
7516

7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534
    for (i = 0; i < def->ndisks; i++) {
        char *optstr;
        int bootindex = 0;
        virDomainDiskDefPtr disk = def->disks[i];
        bool withDeviceArg = false;
        bool deviceFlagMasked = false;

        /* Unless we have -device, then USB disks need special
           handling */
        if ((disk->bus == VIR_DOMAIN_DISK_BUS_USB) &&
            !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
            if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                virCommandAddArg(cmd, "-usbdevice");
                virCommandAddArgFormat(cmd, "disk:%s", disk->src->path);
            } else {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unsupported usb disk type for '%s'"),
                               disk->src->path);
7535 7536
                goto error;
            }
7537 7538
            continue;
        }
7539

7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577
        /* PowerPC pseries based VMs do not support floppy device */
        if ((disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY) &&
            ARCH_IS_PPC64(def->os.arch) && STRPREFIX(def->os.machine, "pseries")) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("PowerPC pseries machines do not support floppy device"));
            goto error;
        }

        switch (disk->device) {
        case VIR_DOMAIN_DISK_DEVICE_CDROM:
            bootindex = bootCD;
            bootCD = 0;
            break;
        case VIR_DOMAIN_DISK_DEVICE_FLOPPY:
            bootindex = bootFloppy;
            bootFloppy = 0;
            break;
        case VIR_DOMAIN_DISK_DEVICE_DISK:
        case VIR_DOMAIN_DISK_DEVICE_LUN:
            bootindex = bootDisk;
            bootDisk = 0;
            break;
        }

        virCommandAddArg(cmd, "-drive");

        /* Unfortunately it is not possible to use
           -device for floppies, xen PV, or SD
           devices. Fortunately, those don't need
           static PCI addresses, so we don't really
           care that we can't use -device */
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
            if (disk->bus != VIR_DOMAIN_DISK_BUS_XEN &&
                disk->bus != VIR_DOMAIN_DISK_BUS_SD) {
                withDeviceArg = true;
            } else {
                virQEMUCapsClear(qemuCaps, QEMU_CAPS_DEVICE);
                deviceFlagMasked = true;
7578
            }
7579 7580 7581 7582 7583 7584 7585 7586 7587 7588
        }
        optstr = qemuBuildDriveStr(conn, disk,
                                   emitBootindex ? false : !!bootindex,
                                   qemuCaps);
        if (deviceFlagMasked)
            virQEMUCapsSet(qemuCaps, QEMU_CAPS_DEVICE);
        if (!optstr)
            goto error;
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);
7589

7590 7591 7592 7593
        if (!emitBootindex)
            bootindex = 0;
        else if (disk->info.bootIndex)
            bootindex = disk->info.bootIndex;
7594

7595 7596 7597 7598 7599 7600 7601 7602 7603 7604
        if (withDeviceArg) {
            if (disk->bus == VIR_DOMAIN_DISK_BUS_FDC) {
                if (virAsprintf(&optstr, "drive%c=drive-%s",
                                disk->info.addr.drive.unit ? 'B' : 'A',
                                disk->info.alias) < 0)
                    goto error;

                if (!qemuDomainMachineNeedsFDC(def)) {
                    virCommandAddArg(cmd, "-global");
                    virCommandAddArgFormat(cmd, "isa-fdc.%s", optstr);
7605
                } else {
7606
                    virBufferAsprintf(&fdc_opts, "%s,", optstr);
7607
                }
7608
                VIR_FREE(optstr);
7609

7610 7611 7612 7613 7614
                if (bootindex) {
                    if (virAsprintf(&optstr, "bootindex%c=%d",
                                    disk->info.addr.drive.unit
                                    ? 'B' : 'A',
                                    bootindex) < 0)
J
Ján Tomko 已提交
7615 7616
                        goto error;

7617 7618 7619 7620 7621 7622
                    if (!qemuDomainMachineNeedsFDC(def)) {
                        virCommandAddArg(cmd, "-global");
                        virCommandAddArgFormat(cmd, "isa-fdc.%s", optstr);
                    } else {
                        virBufferAsprintf(&fdc_opts, "%s,", optstr);
                    }
J
Ján Tomko 已提交
7623
                    VIR_FREE(optstr);
E
Eric Blake 已提交
7624 7625
                }
            } else {
7626
                virCommandAddArg(cmd, "-device");
E
Eric Blake 已提交
7627

7628 7629
                if (!(optstr = qemuBuildDriveDevStr(def, disk, bootindex,
                                                    qemuCaps)))
7630
                    goto error;
7631 7632
                virCommandAddArg(cmd, optstr);
                VIR_FREE(optstr);
E
Eric Blake 已提交
7633 7634 7635
            }
        }
    }
7636 7637 7638 7639 7640 7641 7642
    /* Newer Q35 machine types require an explicit FDC controller */
    virBufferTrim(&fdc_opts, ",", -1);
    if ((fdc_opts_str = virBufferContentAndReset(&fdc_opts))) {
        virCommandAddArg(cmd, "-device");
        virCommandAddArgFormat(cmd, "isa-fdc,%s", fdc_opts_str);
        VIR_FREE(fdc_opts_str);
    }
E
Eric Blake 已提交
7643

7644
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_FSDEV)) {
7645
        for (i = 0; i < def->nfss; i++) {
7646 7647
            char *optstr;
            virDomainFSDefPtr fs = def->fss[i];
7648

7649
            virCommandAddArg(cmd, "-fsdev");
7650
            if (!(optstr = qemuBuildFSStr(fs, qemuCaps)))
7651 7652 7653
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
7654

7655
            virCommandAddArg(cmd, "-device");
7656
            if (!(optstr = qemuBuildFSDevStr(def, fs, qemuCaps)))
7657 7658 7659 7660 7661 7662 7663 7664 7665
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
        }
    } else {
        if (def->nfss) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("filesystem passthrough not supported by this QEMU"));
            goto error;
7666 7667 7668
        }
    }

7669
    if (!def->nnets) {
7670
        /* If we have -device, then we set -nodefault already */
7671
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
7672
            virCommandAddArgList(cmd, "-net", "none", NULL);
7673
    } else {
7674
        int bootNet = 0;
7675

7676 7677 7678 7679
        if (emitBootindex) {
            /* convert <boot dev='network'/> to bootindex since we didn't emit
             * -boot n
             */
7680
            for (i = 0; i < def->os.nBootDevs; i++) {
7681 7682 7683 7684
                if (def->os.bootDevs[i] == VIR_DOMAIN_BOOT_NET) {
                    bootNet = i + 1;
                    break;
                }
7685 7686 7687
            }
        }

7688
        for (i = 0; i < def->nnets; i++) {
7689
            virDomainNetDefPtr net = def->nets[i];
7690
            int vlan;
7691

7692
            /* VLANs are not used with -netdev, so don't record them */
7693
            if (qemuDomainSupportsNetdev(def, qemuCaps, net))
7694
                vlan = -1;
7695 7696
            else
                vlan = i;
7697

7698
            if (qemuBuildInterfaceCommandLine(cmd, driver, def, net,
7699
                                              qemuCaps, vlan, bootNet, vmop,
7700
                                              standalone, nnicindexes, nicindexes) < 0)
7701
                goto error;
7702

7703
            last_good_net = i;
7704 7705 7706 7707 7708 7709 7710 7711 7712 7713
            /* 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;
            }
7714
            bootNet = 0;
7715 7716 7717
        }
    }

7718 7719 7720 7721 7722
    if (def->nsmartcards) {
        /* -device usb-ccid was already emitted along with other
         * controllers.  For now, qemu handles only one smartcard.  */
        virDomainSmartcardDefPtr smartcard = def->smartcards[0];
        char *devstr;
7723
        virBuffer opt = VIR_BUFFER_INITIALIZER;
7724
        const char *database;
7725

7726 7727 7728 7729
        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) {
7730
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
7731 7732 7733
                           _("this QEMU binary lacks multiple smartcard "
                             "support"));
            virBufferFreeAndReset(&opt);
7734 7735 7736
            goto error;
        }

7737 7738
        switch (smartcard->type) {
        case VIR_DOMAIN_SMARTCARD_TYPE_HOST:
7739 7740
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
7741 7742 7743 7744
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard host "
                                 "mode support"));
                goto error;
7745 7746
            }

7747 7748
            virBufferAddLit(&opt, "ccid-card-emulated,backend=nss-emulated");
            break;
7749

7750
        case VIR_DOMAIN_SMARTCARD_TYPE_HOST_CERTIFICATES:
7751 7752
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_EMULATED)) {
7753 7754 7755 7756 7757
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard host "
                                 "mode support"));
                goto error;
            }
7758

7759 7760 7761 7762
            virBufferAddLit(&opt, "ccid-card-emulated,backend=certificates");
            for (j = 0; j < VIR_DOMAIN_SMARTCARD_NUM_CERTIFICATES; j++) {
                if (strchr(smartcard->data.cert.file[j], ',')) {
                    virBufferFreeAndReset(&opt);
7763
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
7764 7765
                                   _("invalid certificate name: %s"),
                                   smartcard->data.cert.file[j]);
7766 7767
                    goto error;
                }
7768
                virBufferAsprintf(&opt, ",cert%zu=%s", j + 1,
7769 7770 7771 7772 7773 7774 7775 7776
                                  smartcard->data.cert.file[j]);
            }
            if (smartcard->data.cert.database) {
                if (strchr(smartcard->data.cert.database, ',')) {
                    virBufferFreeAndReset(&opt);
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("invalid database name: %s"),
                                   smartcard->data.cert.database);
7777 7778
                    goto error;
                }
7779 7780 7781
                database = smartcard->data.cert.database;
            } else {
                database = VIR_DOMAIN_SMARTCARD_DEFAULT_DATABASE;
7782
            }
7783
            virBufferAsprintf(&opt, ",db=%s", database);
7784
            break;
7785

7786
        case VIR_DOMAIN_SMARTCARD_TYPE_PASSTHROUGH:
7787 7788
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_CCID_PASSTHRU)) {
7789 7790 7791 7792
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("this QEMU binary lacks smartcard "
                                 "passthrough mode support"));
                goto error;
7793 7794
            }

7795 7796 7797
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&smartcard->data.passthru,
                                                  smartcard->info.alias,
7798
                                                  qemuCaps))) {
7799 7800
                virBufferFreeAndReset(&opt);
                goto error;
7801
            }
7802 7803
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
7804

7805 7806 7807
            virBufferAsprintf(&opt, "ccid-card-passthru,chardev=char%s",
                              smartcard->info.alias);
            break;
7808

7809 7810 7811 7812 7813
        default:
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unexpected smartcard type %d"),
                           smartcard->type);
            virBufferFreeAndReset(&opt);
7814 7815
            goto error;
        }
7816 7817 7818 7819
        virCommandAddArg(cmd, "-device");
        virBufferAsprintf(&opt, ",id=%s,bus=ccid0.0", smartcard->info.alias);
        virCommandAddArgBuffer(cmd, &opt);
    }
7820

7821 7822 7823
    for (i = 0; i < def->nserials; i++) {
        virDomainChrDefPtr serial = def->serials[i];
        char *devstr;
7824

7825 7826 7827
        if (serial->source.type == VIR_DOMAIN_CHR_TYPE_SPICEPORT && !spice)
            continue;

7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845
        /* Use -chardev with -device if they are available */
        if (virQEMUCapsSupportsChardev(def, qemuCaps, serial)) {
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&serial->source,
                                                  serial->info.alias,
                                                  qemuCaps)))
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

            if (qemuBuildChrDeviceCommandLine(cmd, def, serial, qemuCaps) < 0)
                goto error;
        } else {
            virCommandAddArg(cmd, "-serial");
            if (!(devstr = qemuBuildChrArgStr(&serial->source, NULL)))
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
7846
        }
7847
        actualSerials++;
7848
    }
7849

M
Martin Kletzander 已提交
7850 7851 7852 7853
    /* If we have -device, then we set -nodefault already */
    if (!actualSerials && !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
            virCommandAddArgList(cmd, "-serial", "none", NULL);

7854 7855
    if (!def->nparallels) {
        /* If we have -device, then we set -nodefault already */
7856
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE))
7857 7858
            virCommandAddArgList(cmd, "-parallel", "none", NULL);
    } else {
7859
        for (i = 0; i < def->nparallels; i++) {
7860 7861
            virDomainChrDefPtr parallel = def->parallels[i];
            char *devstr;
7862

7863
            /* Use -chardev with -device if they are available */
7864 7865
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) &&
                virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7866 7867 7868
                virCommandAddArg(cmd, "-chardev");
                if (!(devstr = qemuBuildChrChardevStr(&parallel->source,
                                                      parallel->info.alias,
7869
                                                      qemuCaps)))
7870 7871 7872
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
7873

7874 7875
                if (qemuBuildChrDeviceCommandLine(cmd, def, parallel, qemuCaps) < 0)
                    goto error;
7876 7877 7878
            } else {
                virCommandAddArg(cmd, "-parallel");
                if (!(devstr = qemuBuildChrArgStr(&parallel->source, NULL)))
7879
                    goto error;
7880 7881 7882
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            }
7883
        }
7884
    }
7885

7886
    for (i = 0; i < def->nchannels; i++) {
7887 7888
        virDomainChrDefPtr channel = def->channels[i];
        char *devstr;
7889

7890 7891
        switch (channel->targetType) {
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_GUESTFWD:
7892 7893
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_CHARDEV) ||
                !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7894 7895
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               "%s", _("guestfwd requires QEMU to support -chardev & -device"));
7896 7897
                goto error;
            }
7898

7899 7900 7901
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&channel->source,
                                                  channel->info.alias,
7902
                                                  qemuCaps)))
7903 7904 7905 7906
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

7907
            if (qemuBuildChrDeviceStr(&devstr, def, channel, qemuCaps) < 0)
7908
                goto error;
7909 7910
            virCommandAddArgList(cmd, "-netdev", devstr, NULL);
            VIR_FREE(devstr);
7911 7912
            break;

7913
        case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO:
7914
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7915 7916
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("virtio channel requires QEMU to support -device"));
7917 7918
                goto error;
            }
7919

7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936
            /*
             * TODO: Refactor so that we generate this (and onther
             * things) somewhere else then where we are building the
             * command line.
             */
            if (channel->source.type == VIR_DOMAIN_CHR_TYPE_UNIX &&
                !channel->source.data.nix.path) {
                if (virAsprintf(&channel->source.data.nix.path,
                                "%s/domain-%s/%s",
                                cfg->channelTargetDir, def->name,
                                channel->target.name ? channel->target.name
                                : "unknown.sock") < 0)
                    goto error;

                channel->source.data.nix.listen = true;
            }

7937
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SPICEVMC) &&
7938 7939 7940 7941 7942 7943 7944 7945 7946
                channel->source.type == VIR_DOMAIN_CHR_TYPE_SPICEVMC) {
                /* spicevmc was originally introduced via a -device
                 * with a backend internal to qemu; although we prefer
                 * the newer -chardev interface.  */
                ;
            } else {
                virCommandAddArg(cmd, "-chardev");
                if (!(devstr = qemuBuildChrChardevStr(&channel->source,
                                                      channel->info.alias,
7947
                                                      qemuCaps)))
7948 7949 7950
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
7951
            }
7952

7953
            if (qemuBuildChrDeviceCommandLine(cmd, def, channel, qemuCaps) < 0)
7954
                goto error;
7955 7956
            break;
        }
7957
    }
7958

7959
    /* Explicit console devices */
7960
    for (i = 0; i < def->nconsoles; i++) {
7961 7962
        virDomainChrDefPtr console = def->consoles[i];
        char *devstr;
7963

7964
        switch (console->targetType) {
7965 7966
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLP:
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SCLPLM:
7967
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7968 7969 7970 7971
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("sclp console requires QEMU to support -device"));
                goto error;
            }
7972
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_SCLP_S390)) {
7973 7974 7975 7976 7977 7978 7979 7980
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("sclp console requires QEMU to support s390-sclp"));
                goto error;
            }

            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&console->source,
                                                  console->info.alias,
7981
                                                  qemuCaps)))
7982 7983 7984 7985
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);

7986
            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
7987 7988 7989
                goto error;
            break;

7990
        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO:
7991
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
7992 7993 7994
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("virtio channel requires QEMU to support -device"));
                goto error;
P
Peng Zhou 已提交
7995 7996
            }

7997 7998 7999
            virCommandAddArg(cmd, "-chardev");
            if (!(devstr = qemuBuildChrChardevStr(&console->source,
                                                  console->info.alias,
8000
                                                  qemuCaps)))
8001 8002 8003
                goto error;
            virCommandAddArg(cmd, devstr);
            VIR_FREE(devstr);
8004

8005
            if (qemuBuildChrDeviceCommandLine(cmd, def, console, qemuCaps) < 0)
8006
                goto error;
8007
            break;
8008 8009

        case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL:
8010
            break;
8011 8012 8013 8014 8015 8016

        default:
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unsupported console target type %s"),
                           NULLSTR(virDomainChrConsoleTargetTypeToString(console->targetType)));
            goto error;
8017
        }
8018
    }
8019

8020
    if (def->tpm) {
8021
        if (qemuBuildTPMCommandLine(def, cmd, qemuCaps, emulator) < 0)
8022 8023 8024
            goto error;
    }

8025
    for (i = 0; i < def->ninputs; i++) {
8026 8027 8028
        virDomainInputDefPtr input = def->inputs[i];

        if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
8029
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8030 8031
                char *optstr;
                virCommandAddArg(cmd, "-device");
8032
                if (!(optstr = qemuBuildUSBInputDevStr(def, input, qemuCaps)))
8033
                    goto error;
8034 8035 8036
                virCommandAddArg(cmd, optstr);
                VIR_FREE(optstr);
            } else {
8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047
                switch (input->type) {
                    case VIR_DOMAIN_INPUT_TYPE_MOUSE:
                        virCommandAddArgList(cmd, "-usbdevice", "mouse", NULL);
                        break;
                    case VIR_DOMAIN_INPUT_TYPE_TABLET:
                        virCommandAddArgList(cmd, "-usbdevice", "tablet", NULL);
                        break;
                    case VIR_DOMAIN_INPUT_TYPE_KBD:
                        virCommandAddArgList(cmd, "-usbdevice", "keyboard", NULL);
                        break;
                }
8048
            }
8049 8050 8051 8052 8053 8054 8055
        } else if (input->bus == VIR_DOMAIN_INPUT_BUS_VIRTIO) {
            char *optstr;
            virCommandAddArg(cmd, "-device");
            if (!(optstr = qemuBuildVirtioInputDevStr(def, input, qemuCaps)))
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
8056
        }
8057
    }
8058

8059 8060 8061 8062
    if (sdl > 1 || vnc > 1 || spice > 1) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("only 1 graphics device of each type "
                         "(sdl, vnc, spice) is supported"));
8063 8064 8065
        goto error;
    }

8066
    for (i = 0; i < def->ngraphics; ++i) {
8067
        if (qemuBuildGraphicsCommandLine(cfg, cmd, def, qemuCaps,
8068 8069 8070
                                         def->graphics[i]) < 0)
            goto error;
    }
8071

8072
    if (def->nvideos > 0) {
8073
        int primaryVideoType = def->videos[0]->type;
8074
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIDEO_PRIMARY) &&
8075
             ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VGA &&
8076
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VGA)) ||
8077
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_CIRRUS &&
8078
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_CIRRUS_VGA)) ||
8079
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
8080
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VMWARE_SVGA)) ||
8081
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_QXL &&
M
Marc-André Lureau 已提交
8082 8083 8084 8085
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_QXL_VGA)) ||
             (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VIRTIO &&
                 virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIRTIO_GPU)))
            ) {
8086
            for (i = 0; i < def->nvideos; i++) {
8087 8088
                char *str;
                virCommandAddArg(cmd, "-device");
8089
                if (!(str = qemuBuildDeviceVideoStr(def, def->videos[i], qemuCaps, !i)))
8090 8091 8092 8093 8094
                    goto error;

                virCommandAddArg(cmd, str);
                VIR_FREE(str);
            }
8095
        } else {
8096
            if (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_XEN) {
8097 8098
                /* nothing - vga has no effect on Xen pvfb */
            } else {
8099
                if ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_QXL) &&
8100
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_QXL)) {
8101 8102
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("This QEMU does not support QXL graphics adapters"));
8103 8104 8105
                    goto error;
                }

8106
                const char *vgastr = qemuVideoTypeToString(primaryVideoType);
8107
                if (!vgastr || STREQ(vgastr, "")) {
8108 8109
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("video type %s is not supported with QEMU"),
8110
                                   virDomainVideoTypeToString(primaryVideoType));
8111 8112 8113 8114
                    goto error;
                }

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

8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128
                /* If we cannot use --device option to specify the video device
                 * in QEMU we will fallback to the old --vga option. To get the
                 * correct device name for the --vga option the 'qemuVideo' is
                 * used, but to set some device attributes we need to use the
                 * --global option and for that we need to specify the device
                 * name the same as for --device option and for that we need to
                 * use 'qemuDeviceVideo'.
                 *
                 * See 'Graphics Devices' section in docs/qdev-device-use.txt in
                 * QEMU repository.
                 */
                const char *dev = qemuDeviceVideoTypeToString(primaryVideoType);

8129 8130
                if (def->videos[0]->type == VIR_DOMAIN_VIDEO_TYPE_QXL &&
                    (def->videos[0]->vram || def->videos[0]->ram) &&
8131
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8132 8133
                    unsigned int ram = def->videos[0]->ram;
                    unsigned int vram = def->videos[0]->vram;
8134
                    unsigned int vgamem = def->videos[0]->vgamem;
8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147

                    if (vram > (UINT_MAX / 1024)) {
                        virReportError(VIR_ERR_OVERFLOW,
                               _("value for 'vram' must be less than '%u'"),
                                       UINT_MAX / 1024);
                        goto error;
                    }
                    if (ram > (UINT_MAX / 1024)) {
                        virReportError(VIR_ERR_OVERFLOW,
                           _("value for 'ram' must be less than '%u'"),
                                       UINT_MAX / 1024);
                        goto error;
                    }
8148

8149
                    if (ram) {
E
Eric Blake 已提交
8150
                        virCommandAddArg(cmd, "-global");
8151 8152 8153 8154 8155 8156 8157
                        virCommandAddArgFormat(cmd, "%s.ram_size=%u",
                                               dev, ram * 1024);
                    }
                    if (vram) {
                        virCommandAddArg(cmd, "-global");
                        virCommandAddArgFormat(cmd, "%s.vram_size=%u",
                                               dev, vram * 1024);
8158
                    }
8159 8160 8161 8162 8163 8164
                    if (vgamem &&
                        virQEMUCapsGet(qemuCaps, QEMU_CAPS_QXL_VGA_VGAMEM)) {
                        virCommandAddArg(cmd, "-global");
                        virCommandAddArgFormat(cmd, "%s.vgamem_mb=%u",
                                               dev, vgamem / 1024);
                    }
8165
                }
8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185

                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE) &&
                    def->videos[0]->vram &&
                    ((primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VGA &&
                      virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_VGAMEM)) ||
                     (primaryVideoType == VIR_DOMAIN_VIDEO_TYPE_VMVGA &&
                      virQEMUCapsGet(qemuCaps, QEMU_CAPS_VMWARE_SVGA_VGAMEM)))) {
                    unsigned int vram = def->videos[0]->vram;

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

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

            if (def->nvideos > 1) {
8189
                if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8190
                    for (i = 1; i < def->nvideos; i++) {
8191 8192 8193 8194 8195 8196 8197 8198 8199 8200
                        char *str;
                        if (def->videos[i]->type != VIR_DOMAIN_VIDEO_TYPE_QXL) {
                            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                           _("video type %s is only valid as primary video card"),
                                           virDomainVideoTypeToString(def->videos[0]->type));
                            goto error;
                        }

                        virCommandAddArg(cmd, "-device");

8201
                        if (!(str = qemuBuildDeviceVideoStr(def, def->videos[i], qemuCaps, false)))
8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212
                            goto error;

                        virCommandAddArg(cmd, str);
                        VIR_FREE(str);
                    }
                } else {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   "%s", _("only one video card is currently supported"));
                    goto error;
                }
            }
8213 8214 8215 8216
        }

    } else {
        /* If we have -device, then we set -nodefault already */
8217 8218
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE) &&
            virQEMUCapsGet(qemuCaps, QEMU_CAPS_VGA_NONE))
8219 8220 8221 8222 8223
            virCommandAddArgList(cmd, "-vga", "none", NULL);
    }

    /* Add sound hardware */
    if (def->nsounds) {
8224
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8225
            for (i = 0; i < def->nsounds; i++) {
8226 8227 8228 8229 8230 8231 8232 8233 8234 8235
                virDomainSoundDefPtr sound = def->sounds[i];
                char *str = NULL;

                /* Sadly pcspk device doesn't use -device syntax. Fortunately
                 * we don't need to set any PCI address on it, so we don't
                 * mind too much */
                if (sound->model == VIR_DOMAIN_SOUND_MODEL_PCSPK) {
                    virCommandAddArgList(cmd, "-soundhw", "pcspk", NULL);
                } else {
                    virCommandAddArg(cmd, "-device");
8236
                    if (!(str = qemuBuildSoundDevStr(def, sound, qemuCaps)))
8237 8238 8239
                        goto error;

                    virCommandAddArg(cmd, str);
8240
                    VIR_FREE(str);
8241 8242
                    if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                        sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
8243 8244
                        char *codecstr = NULL;

8245
                        for (j = 0; j < sound->ncodecs; j++) {
8246
                            virCommandAddArg(cmd, "-device");
8247
                            if (!(codecstr = qemuBuildSoundCodecStr(sound, sound->codecs[j], qemuCaps))) {
8248
                                goto error;
8249

8250 8251 8252 8253
                            }
                            virCommandAddArg(cmd, codecstr);
                            VIR_FREE(codecstr);
                        }
8254
                        if (j == 0) {
8255 8256 8257 8258 8259
                            virDomainSoundCodecDef codec = {
                                VIR_DOMAIN_SOUND_CODEC_TYPE_DUPLEX,
                                0
                            };
                            virCommandAddArg(cmd, "-device");
8260
                            if (!(codecstr = qemuBuildSoundCodecStr(sound, &codec, qemuCaps))) {
8261 8262 8263 8264 8265 8266
                                goto error;

                            }
                            virCommandAddArg(cmd, codecstr);
                            VIR_FREE(codecstr);
                        }
8267
                    }
8268 8269 8270 8271 8272
                }
            }
        } else {
            int size = 100;
            char *modstr;
8273
            if (VIR_ALLOC_N(modstr, size+1) < 0)
8274
                goto error;
8275

8276
            for (i = 0; i < def->nsounds && size > 0; i++) {
8277 8278 8279 8280
                virDomainSoundDefPtr sound = def->sounds[i];
                const char *model = virDomainSoundModelTypeToString(sound->model);
                if (!model) {
                    VIR_FREE(modstr);
8281 8282
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   "%s", _("invalid sound model"));
8283 8284
                    goto error;
                }
8285

8286 8287
                if (sound->model == VIR_DOMAIN_SOUND_MODEL_ICH6 ||
                    sound->model == VIR_DOMAIN_SOUND_MODEL_ICH9) {
A
Alex Jia 已提交
8288
                    VIR_FREE(modstr);
8289 8290
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("this QEMU binary lacks hda support"));
8291 8292 8293
                    goto error;
                }

8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308
                strncat(modstr, model, size);
                size -= strlen(model);
                if (i < (def->nsounds - 1))
                    strncat(modstr, ",", size--);
            }
            virCommandAddArgList(cmd, "-soundhw", modstr, NULL);
            VIR_FREE(modstr);
        }
    }

    /* Add watchdog hardware */
    if (def->watchdog) {
        virDomainWatchdogDefPtr watchdog = def->watchdog;
        char *optstr;

8309
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8310 8311
            virCommandAddArg(cmd, "-device");

8312
            optstr = qemuBuildWatchdogDevStr(def, watchdog, qemuCaps);
8313 8314 8315 8316 8317 8318 8319
            if (!optstr)
                goto error;
        } else {
            virCommandAddArg(cmd, "-watchdog");

            const char *model = virDomainWatchdogModelTypeToString(watchdog->model);
            if (!model) {
8320 8321
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("missing watchdog model"));
8322 8323 8324
                goto error;
            }

8325 8326
            if (VIR_STRDUP(optstr, model) < 0)
                goto error;
8327 8328 8329 8330 8331 8332 8333 8334 8335
        }
        virCommandAddArg(cmd, optstr);
        VIR_FREE(optstr);

        int act = watchdog->action;
        if (act == VIR_DOMAIN_WATCHDOG_ACTION_DUMP)
            act = VIR_DOMAIN_WATCHDOG_ACTION_PAUSE;
        const char *action = virDomainWatchdogActionTypeToString(act);
        if (!action) {
8336 8337
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("invalid watchdog action"));
8338 8339 8340 8341 8342
            goto error;
        }
        virCommandAddArgList(cmd, "-watchdog-action", action, NULL);
    }

8343
    /* Add redirected devices */
8344
    for (i = 0; i < def->nredirdevs; i++) {
8345 8346 8347 8348 8349 8350
        virDomainRedirdevDefPtr redirdev = def->redirdevs[i];
        char *devstr;

        virCommandAddArg(cmd, "-chardev");
        if (!(devstr = qemuBuildChrChardevStr(&redirdev->source.chr,
                                              redirdev->info.alias,
8351
                                              qemuCaps))) {
8352 8353 8354 8355 8356 8357
            goto error;
        }

        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);

8358 8359 8360
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("redirected devices are not supported by this QEMU"));
8361
            goto error;
8362 8363
        }

8364 8365

        virCommandAddArg(cmd, "-device");
8366
        if (!(devstr = qemuBuildRedirdevDevStr(def, redirdev, qemuCaps)))
8367 8368 8369 8370 8371
            goto error;
        virCommandAddArg(cmd, devstr);
        VIR_FREE(devstr);
    }

8372
    /* Add host passthrough hardware */
8373
    for (i = 0; i < def->nhostdevs; i++) {
8374 8375 8376
        virDomainHostdevDefPtr hostdev = def->hostdevs[i];
        char *devstr;

8377
        if (hostdev->info->bootIndex) {
8378
            if (hostdev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS ||
8379
                (hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI &&
8380 8381
                 hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
                 hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI)) {
8382
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8383
                               _("booting from assigned devices is only "
8384
                                 "supported for PCI, USB and SCSI devices"));
8385
                goto error;
8386
            } else {
8387 8388
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
                    if (hostdev->source.subsys.u.pci.backend
8389
                        == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403
                        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_VFIO_PCI_BOOTINDEX)) {
                            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                           _("booting from PCI devices assigned with VFIO "
                                             "is not supported with this version of qemu"));
                            goto error;
                        }
                    } else {
                        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_BOOTINDEX)) {
                            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                           _("booting from assigned PCI devices is not "
                                             "supported with this version of qemu"));
                            goto error;
                        }
                    }
8404 8405
                }
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB &&
8406
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_USB_HOST_BOOTINDEX)) {
8407
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8408 8409
                                   _("booting from assigned USB devices is not "
                                     "supported with this version of qemu"));
8410 8411
                    goto error;
                }
8412 8413 8414 8415 8416 8417 8418
                if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI &&
                    !virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SCSI_GENERIC_BOOTINDEX)) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("booting from assigned SCSI devices is not"
                                     " supported with this version of qemu"));
                    goto error;
                }
8419 8420 8421
            }
        }

8422 8423 8424 8425
        /* USB */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {

8426
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8427
                virCommandAddArg(cmd, "-device");
8428
                if (!(devstr = qemuBuildUSBHostdevDevStr(def, hostdev, qemuCaps)))
8429 8430 8431 8432 8433
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
                virCommandAddArg(cmd, "-usbdevice");
8434
                if (!(devstr = qemuBuildUSBHostdevUSBDevStr(hostdev)))
8435 8436 8437 8438 8439 8440 8441 8442 8443
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            }
        }

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

8446
            if (backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
8447 8448 8449 8450 8451 8452
                if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VFIO_PCI)) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                                   _("VFIO PCI device assignment is not "
                                     "supported by this version of qemu"));
                    goto error;
                }
8453 8454
            }

8455
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8456
                char *configfd_name = NULL;
8457 8458 8459 8460 8461 8462 8463 8464 8465 8466
                int bootIndex = hostdev->info->bootIndex;

                /* 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;
                }
8467
                if ((backend != VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) &&
8468
                    virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCI_CONFIGFD)) {
8469 8470 8471 8472 8473
                    int configfd = qemuOpenPCIConfig(hostdev);

                    if (configfd >= 0) {
                        if (virAsprintf(&configfd_name, "%d", configfd) < 0) {
                            VIR_FORCE_CLOSE(configfd);
8474
                            goto error;
8475 8476
                        }

8477 8478
                        virCommandPassFD(cmd, configfd,
                                         VIR_COMMAND_PASS_FD_CLOSE_PARENT);
8479 8480 8481
                    }
                }
                virCommandAddArg(cmd, "-device");
8482 8483
                devstr = qemuBuildPCIHostdevDevStr(def, hostdev, bootIndex,
                                                   configfd_name, qemuCaps);
8484 8485 8486 8487 8488
                VIR_FREE(configfd_name);
                if (!devstr)
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
8489
            } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_PCIDEVICE)) {
8490
                virCommandAddArg(cmd, "-pcidevice");
8491
                if (!(devstr = qemuBuildPCIHostdevPCIDevStr(hostdev, qemuCaps)))
8492 8493 8494 8495
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
8496 8497
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("PCI device assignment is not supported by this version of qemu"));
8498 8499 8500
                goto error;
            }
        }
8501 8502 8503 8504

        /* SCSI */
        if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
            hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI) {
8505
            if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE) &&
8506 8507 8508 8509
                virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_SCSI_GENERIC)) {
                char *drvstr;

                virCommandAddArg(cmd, "-drive");
8510
                if (!(drvstr = qemuBuildSCSIHostdevDrvStr(conn, hostdev, qemuCaps, callbacks)))
8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525
                    goto error;
                virCommandAddArg(cmd, drvstr);
                VIR_FREE(drvstr);

                virCommandAddArg(cmd, "-device");
                if (!(devstr = qemuBuildSCSIHostdevDevStr(def, hostdev, qemuCaps)))
                    goto error;
                virCommandAddArg(cmd, devstr);
                VIR_FREE(devstr);
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("SCSI passthrough is not supported by this version of qemu"));
                goto error;
            }
        }
8526 8527
    }

8528
    if (migrateURI)
8529
        virCommandAddArgList(cmd, "-incoming", migrateURI, NULL);
8530 8531 8532 8533 8534 8535 8536

    /* QEMU changed its default behavior to not include the virtio balloon
     * device.  Explicitly request it to ensure it will be present.
     *
     * NB: Earlier we declared that VirtIO balloon will always be in
     * slot 0x3 on bus 0x0
     */
8537 8538
    if (STREQLEN(def->os.machine, "s390-virtio", 10) &&
        virQEMUCapsGet(qemuCaps, QEMU_CAPS_VIRTIO_S390) && def->memballoon)
8539 8540 8541 8542
        def->memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_NONE;

    if (def->memballoon &&
        def->memballoon->model != VIR_DOMAIN_MEMBALLOON_MODEL_NONE) {
8543
        if (def->memballoon->model != VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO) {
8544 8545 8546
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Memory balloon device type '%s' is not supported by this version of qemu"),
                           virDomainMemballoonModelTypeToString(def->memballoon->model));
8547 8548
            goto error;
        }
8549
        if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE)) {
8550 8551 8552
            char *optstr;
            virCommandAddArg(cmd, "-device");

8553
            optstr = qemuBuildMemballoonDevStr(def, def->memballoon, qemuCaps);
8554 8555 8556 8557
            if (!optstr)
                goto error;
            virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
8558
        } else if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BALLOON)) {
8559 8560 8561 8562
            virCommandAddArgList(cmd, "-balloon", "virtio", NULL);
        }
    }

8563
    for (i = 0; i < def->nrngs; i++) {
8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581
        virDomainRNGDefPtr rng = def->rngs[i];
        char *tmp;

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

        /* possibly add character device for backend */
        if (qemuBuildRNGBackendChrdevStr(rng, qemuCaps, &tmp) < 0)
            goto error;

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

8582
        /* add the RNG source backend */
8583
        if (!(tmp = qemuBuildRNGBackendStr(rng, qemuCaps)))
8584 8585
            goto error;

8586 8587 8588
        virCommandAddArgList(cmd, "-object", tmp, NULL);
        VIR_FREE(tmp);

8589
        /* add the device */
8590
        if (!(tmp = qemuBuildRNGDevStr(def, rng, qemuCaps)))
8591
            goto error;
8592 8593
        virCommandAddArgList(cmd, "-device", tmp, NULL);
        VIR_FREE(tmp);
8594 8595
    }

8596
    if (def->nvram) {
8597
        if (ARCH_IS_PPC64(def->os.arch) &&
8598
            STRPREFIX(def->os.machine, "pseries")) {
8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_NVRAM)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("nvram device is not supported by "
                                 "this QEMU binary"));
                goto error;
            }

            char *optstr;
            virCommandAddArg(cmd, "-global");
            optstr = qemuBuildNVRAMDevStr(def->nvram);
            if (!optstr)
                goto error;
            if (optstr)
                virCommandAddArg(cmd, optstr);
            VIR_FREE(optstr);
        } else {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                          _("nvram device is only supported for PPC64"));
            goto error;
        }
    }
8620 8621
    if (snapshot)
        virCommandAddArgList(cmd, "-loadvm", snapshot->def->name, NULL);
8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634

    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] : "");
    }

8635
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_SECCOMP_SANDBOX)) {
8636
        if (cfg->seccompSandbox == 0)
8637
            virCommandAddArgList(cmd, "-sandbox", "off", NULL);
8638
        else if (cfg->seccompSandbox > 0)
8639
            virCommandAddArgList(cmd, "-sandbox", "on", NULL);
8640
    } else if (cfg->seccompSandbox > 0) {
8641 8642 8643 8644 8645
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("QEMU does not support seccomp sandboxes"));
        goto error;
    }

D
Dmitry Andreev 已提交
8646 8647
    for (i = 0; i < def->npanics; i++) {
        switch ((virDomainPanicModel) def->panics[i]->model) {
8648 8649 8650 8651 8652 8653 8654 8655 8656 8657
        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'"));
                goto error;
            }
D
Dmitry Andreev 已提交
8658
            if (def->panics[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
8659 8660 8661 8662 8663 8664 8665 8666
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("setting the panic device address is not "
                                 "supported for model 'hyperv'"));
                goto error;
            }
            break;

        case VIR_DOMAIN_PANIC_MODEL_PSERIES:
8667 8668 8669
            /* For pSeries guests, the firmware provides the same
             * functionality as the pvpanic device. The address
             * cannot be configured by the user */
8670 8671 8672 8673 8674 8675 8676
            if (!ARCH_IS_PPC64(def->os.arch) ||
                !STRPREFIX(def->os.machine, "pseries")) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("only pSeries guests support panic device "
                                 "of model 'pseries'"));
                goto error;
            }
D
Dmitry Andreev 已提交
8677
            if (def->panics[i]->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
8678 8679
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("setting the panic device address is not "
8680
                                 "supported for model 'pseries'"));
8681 8682
                goto error;
            }
8683 8684 8685
            break;

        case VIR_DOMAIN_PANIC_MODEL_ISA:
8686 8687 8688 8689 8690 8691 8692
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PANIC)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("the QEMU binary does not support the "
                                 "panic device"));
                goto error;
            }

D
Dmitry Andreev 已提交
8693
            switch (def->panics[i]->info.type) {
8694
            case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_ISA:
H
Hu Tao 已提交
8695 8696
                virCommandAddArg(cmd, "-device");
                virCommandAddArgFormat(cmd, "pvpanic,ioport=%d",
D
Dmitry Andreev 已提交
8697
                                       def->panics[i]->info.addr.isa.iobase);
8698 8699 8700
                break;

            case VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE:
H
Hu Tao 已提交
8701
                virCommandAddArgList(cmd, "-device", "pvpanic", NULL);
8702 8703 8704
                break;

            default:
8705 8706 8707 8708
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("panic is supported only "
                                 "with ISA address type"));
                goto error;
H
Hu Tao 已提交
8709
            }
8710 8711 8712 8713 8714

        /* default model value was changed before in post parse */
        case VIR_DOMAIN_PANIC_MODEL_DEFAULT:
        case VIR_DOMAIN_PANIC_MODEL_LAST:
            break;
H
Hu Tao 已提交
8715 8716 8717
        }
    }

8718 8719 8720 8721 8722
    for (i = 0; i < def->nshmems; i++) {
        if (qemuBuildShmemCommandLine(cmd, def, def->shmems[i], qemuCaps))
            goto error;
    }

8723 8724
    /* In some situations, eg. VFIO passthrough, QEMU might need to lock a
     * significant amount of memory, so we need to set the limit accordingly */
8725 8726
    if (qemuDomainRequiresMemLock(def))
        virCommandSetMaxMemLock(cmd, qemuDomainGetMemLockLimitBytes(def));
8727

8728 8729 8730 8731
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_MSG_TIMESTAMP) &&
        cfg->logTimestamp)
        virCommandAddArgList(cmd, "-msg", "timestamp=on", NULL);

8732
    virObjectUnref(cfg);
8733 8734
    return cmd;

8735
 error:
8736
    VIR_FREE(boot_order_str);
8737
    VIR_FREE(boot_opts_str);
J
Ján Tomko 已提交
8738
    virBufferFreeAndReset(&boot_buf);
8739
    virObjectUnref(cfg);
8740 8741 8742
    /* free up any resources in the network driver
     * but don't overwrite the original error */
    originalError = virSaveLastError();
8743
    for (i = 0; last_good_net != -1 && i <= last_good_net; i++)
8744
        virDomainConfNWFilterTeardown(def->nets[i]);
8745
    virSetError(originalError);
J
John Ferlan 已提交
8746
    virFreeError(originalError);
8747 8748 8749 8750
    virCommandFree(cmd);
    return NULL;
}

8751 8752 8753
/* This function generates the correct '-device' string for character
 * devices of each architecture.
 */
8754 8755
static int
qemuBuildSerialChrDeviceStr(char **deviceStr,
8756
                            virDomainDefPtr def,
8757 8758 8759 8760
                            virDomainChrDefPtr serial,
                            virQEMUCapsPtr qemuCaps,
                            virArch arch,
                            char *machine)
8761 8762 8763
{
    virBuffer cmd = VIR_BUFFER_INITIALIZER;

8764
    if (ARCH_IS_PPC64(arch) && STRPREFIX(machine, "pseries")) {
8765 8766 8767 8768
        if (serial->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
            serial->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_SPAPRVIO) {
            virBufferAsprintf(&cmd, "spapr-vty,chardev=char%s",
                              serial->info.alias);
8769
            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
8770 8771
                goto error;
        }
G
Guannan Ren 已提交
8772 8773 8774
    } else {
        virBufferAsprintf(&cmd, "%s,chardev=char%s,id=%s",
                          virDomainChrSerialTargetTypeToString(serial->targetType),
8775 8776
                          serial->info.alias, serial->info.alias);

8777 8778
        switch (serial->targetType) {
        case VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_USB:
8779
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_SERIAL)) {
G
Guannan Ren 已提交
8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("usb-serial is not supported in this QEMU binary"));
                goto error;
            }

            if (serial->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
                serial->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("usb-serial requires address of usb type"));
                goto error;
            }

8792
            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
8793
                goto error;
8794 8795 8796
            break;

        case VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_ISA:
8797 8798
            if (serial->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
                serial->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_ISA) {
8799
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
8800
                               _("isa-serial requires address of isa type"));
8801 8802
                goto error;
            }
8803 8804 8805

            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
                goto error;
8806
            break;
M
Michal Privoznik 已提交
8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824

        case VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_PCI:
            if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_PCI_SERIAL)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("pci-serial is not supported with this QEMU binary"));
                goto error;
            }

            if (serial->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
                serial->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("pci-serial requires address of pci type"));
                goto error;
            }

            if (qemuBuildDeviceAddressStr(&cmd, def, &serial->info, qemuCaps) < 0)
                goto error;
            break;
G
Guannan Ren 已提交
8825 8826 8827
        }
    }

8828
    if (virBufferCheckError(&cmd) < 0)
8829 8830
        goto error;

8831 8832
    *deviceStr = virBufferContentAndReset(&cmd);
    return 0;
8833

8834
 error:
8835
    virBufferFreeAndReset(&cmd);
8836 8837 8838 8839 8840 8841 8842 8843
    return -1;
}

static int
qemuBuildParallelChrDeviceStr(char **deviceStr,
                              virDomainChrDefPtr chr)
{
    if (virAsprintf(deviceStr, "isa-parallel,chardev=char%s,id=%s",
J
Ján Tomko 已提交
8844
                    chr->info.alias, chr->info.alias) < 0)
8845 8846
        return -1;
    return 0;
8847
}
8848

8849 8850
static int
qemuBuildChannelChrDeviceStr(char **deviceStr,
8851
                             virDomainDefPtr def,
8852 8853 8854 8855 8856 8857 8858
                             virDomainChrDefPtr chr,
                             virQEMUCapsPtr qemuCaps)
{
    int ret = -1;
    char *addr = NULL;
    int port;

8859
    switch ((virDomainChrChannelTargetType) chr->targetType) {
8860 8861 8862 8863 8864 8865 8866 8867
    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,
8868
                        "user,guestfwd=tcp:%s:%i-chardev:char%s,id=user-%s",
J
Ján Tomko 已提交
8869
                        addr, port, chr->info.alias, chr->info.alias) < 0)
8870 8871 8872 8873
            goto cleanup;
        break;

    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO:
8874
        if (!(*deviceStr = qemuBuildVirtioSerialPortDevStr(def, chr, qemuCaps)))
8875
            goto cleanup;
8876 8877 8878 8879 8880 8881 8882 8883
        break;

    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_NONE:
    case VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_LAST:
        return ret;
    }

    ret = 0;
8884
 cleanup:
8885 8886 8887 8888 8889 8890
    VIR_FREE(addr);
    return ret;
}

static int
qemuBuildConsoleChrDeviceStr(char **deviceStr,
8891
                             virDomainDefPtr def,
8892 8893 8894 8895 8896
                             virDomainChrDefPtr chr,
                             virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

8897
    switch ((virDomainChrConsoleTargetType) chr->targetType) {
8898 8899 8900 8901 8902 8903 8904
    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:
8905
        if (!(*deviceStr = qemuBuildVirtioSerialPortDevStr(def, chr, qemuCaps)))
8906 8907 8908 8909
            goto cleanup;
        break;

    case VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL:
8910 8911
        break;

8912 8913 8914 8915 8916 8917
    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:
8918 8919 8920 8921
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unsupported console target type %s"),
                       NULLSTR(virDomainChrConsoleTargetTypeToString(chr->targetType)));
        goto cleanup;
8922 8923 8924
    }

    ret = 0;
8925
 cleanup:
8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936
    return ret;
}

int
qemuBuildChrDeviceStr(char **deviceStr,
                      virDomainDefPtr vmdef,
                      virDomainChrDefPtr chr,
                      virQEMUCapsPtr qemuCaps)
{
    int ret = -1;

8937
    switch ((virDomainChrDeviceType) chr->deviceType) {
8938
    case VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL:
8939
        ret = qemuBuildSerialChrDeviceStr(deviceStr, vmdef, chr, qemuCaps,
8940 8941 8942 8943 8944 8945 8946 8947 8948
                                          vmdef->os.arch,
                                          vmdef->os.machine);
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL:
        ret = qemuBuildParallelChrDeviceStr(deviceStr, chr);
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL:
8949
        ret = qemuBuildChannelChrDeviceStr(deviceStr, vmdef, chr, qemuCaps);
8950 8951 8952
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
8953
        ret = qemuBuildConsoleChrDeviceStr(deviceStr, vmdef, chr, qemuCaps);
8954 8955 8956 8957 8958 8959 8960 8961
        break;

    case VIR_DOMAIN_CHR_DEVICE_TYPE_LAST:
        return ret;
    }

    return ret;
}