qemu_hotplug.c 221.1 KB
Newer Older
1
/*
2
 * qemu_hotplug.c: QEMU device hotplug management
3
 *
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 27
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */


#include <config.h>

#include "qemu_hotplug.h"
28
#include "qemu_hotplugpriv.h"
29
#include "qemu_alias.h"
30 31
#include "qemu_capabilities.h"
#include "qemu_domain.h"
32
#include "qemu_domain_address.h"
33 34
#include "qemu_command.h"
#include "qemu_hostdev.h"
35
#include "qemu_interface.h"
36
#include "qemu_process.h"
37
#include "qemu_security.h"
38
#include "qemu_block.h"
39
#include "domain_audit.h"
40
#include "netdev_bandwidth_conf.h"
41
#include "domain_nwfilter.h"
42
#include "virlog.h"
43
#include "datatypes.h"
44
#include "virerror.h"
45
#include "viralloc.h"
46
#include "virpci.h"
E
Eric Blake 已提交
47
#include "virfile.h"
48
#include "virprocess.h"
49
#include "qemu_cgroup.h"
50
#include "locking/domain_lock.h"
51 52
#include "virnetdev.h"
#include "virnetdevbridge.h"
A
Ansis Atteka 已提交
53
#include "virnetdevtap.h"
54
#include "virnetdevopenvswitch.h"
55
#include "virnetdevmidonet.h"
56
#include "device_conf.h"
57
#include "virstoragefile.h"
58
#include "virstring.h"
59
#include "virtime.h"
60 61

#define VIR_FROM_THIS VIR_FROM_QEMU
62 63 64

VIR_LOG_INIT("qemu.qemu_hotplug");

65
#define CHANGE_MEDIA_TIMEOUT 5000
66

67 68 69 70
/* Wait up to 5 seconds for device removal to finish. */
unsigned long long qemuDomainRemoveDeviceWaitTime = 1000ull * 5;


71
/**
72
 * qemuHotplugPrepareDiskAccess:
73 74 75 76 77 78 79 80 81 82 83 84 85 86
 * @driver: qemu driver struct
 * @vm: domain object
 * @disk: disk to prepare
 * @overridesrc: Source different than @disk->src when necessary
 * @teardown: Teardown the disk instead of adding it to a vm
 *
 * Setup the locks, cgroups and security permissions on a disk of a VM.
 * If @overridesrc is specified the source struct is used instead of the
 * one present in @disk. If @teardown is true, then the labels and cgroups
 * are removed instead.
 *
 * Returns 0 on success and -1 on error. Reports libvirt error.
 */
static int
87 88 89 90 91
qemuHotplugPrepareDiskAccess(virQEMUDriverPtr driver,
                             virDomainObjPtr vm,
                             virDomainDiskDefPtr disk,
                             virStorageSourcePtr overridesrc,
                             bool teardown)
92 93 94 95
{
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    int ret = -1;
    virStorageSourcePtr origsrc = NULL;
96
    virErrorPtr orig_err = NULL;
97 98 99 100 101 102 103 104

    if (overridesrc) {
        origsrc = disk->src;
        disk->src = overridesrc;
    }

    /* just tear down the disk access */
    if (teardown) {
105
        virErrorPreserveLast(&orig_err);
106 107 108 109 110 111 112 113
        ret = 0;
        goto rollback_cgroup;
    }

    if (virDomainLockDiskAttach(driver->lockManager, cfg->uri,
                                vm, disk) < 0)
        goto cleanup;

114
    if (qemuDomainNamespaceSetupDisk(vm, disk->src) < 0)
115 116
        goto rollback_lock;

117 118
    if (qemuSecuritySetDiskLabel(driver, vm, disk) < 0)
        goto rollback_namespace;
119

120
    if (qemuSetupDiskCgroup(vm, disk) < 0)
121
        goto rollback_label;
122

123 124 125 126 127 128
    ret = 0;
    goto cleanup;

 rollback_cgroup:
    if (qemuTeardownDiskCgroup(vm, disk) < 0)
        VIR_WARN("Unable to tear down cgroup access on %s",
129
                 NULLSTR(virDomainDiskGetSource(disk)));
130
 rollback_label:
131
    if (qemuSecurityRestoreDiskLabel(driver, vm, disk) < 0)
132
        VIR_WARN("Unable to restore security label on %s",
133
                 NULLSTR(virDomainDiskGetSource(disk)));
134

135
 rollback_namespace:
136
    if (qemuDomainNamespaceTeardownDisk(vm, disk->src) < 0)
137
        VIR_WARN("Unable to remove /dev entry for %s",
138
                 NULLSTR(virDomainDiskGetSource(disk)));
139

140 141 142
 rollback_lock:
    if (virDomainLockDiskDetach(driver->lockManager, vm, disk) < 0)
        VIR_WARN("Unable to release lock on %s",
143
                 NULLSTR(virDomainDiskGetSource(disk)));
144 145 146 147 148

 cleanup:
    if (origsrc)
        disk->src = origsrc;

149 150
    virErrorRestore(&orig_err);

151 152 153 154 155 156
    virObjectUnref(cfg);

    return ret;
}


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
static int
qemuDomainAttachZPCIDevice(qemuMonitorPtr mon,
                           virDomainDeviceInfoPtr info)
{
    char *devstr_zpci = NULL;
    int ret = -1;

    if (!(devstr_zpci = qemuBuildZPCIDevStr(info)))
        goto cleanup;

    if (qemuMonitorAddDevice(mon, devstr_zpci) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    VIR_FREE(devstr_zpci);
    return ret;
}


static int
qemuDomainDetachZPCIDevice(qemuMonitorPtr mon,
                           virDomainDeviceInfoPtr info)
{
    char *zpciAlias = NULL;
    int ret = -1;

    if (virAsprintf(&zpciAlias, "zpci%d", info->addr.pci.zpci.uid) < 0)
        goto cleanup;

    if (qemuMonitorDelDevice(mon, zpciAlias) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    VIR_FREE(zpciAlias);
    return ret;
}


static int
qemuDomainAttachExtensionDevice(qemuMonitorPtr mon,
                                virDomainDeviceInfoPtr info)
{
    if (info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI ||
        info->addr.pci.extFlags == VIR_PCI_ADDRESS_EXTENSION_NONE) {
        return 0;
    }

    if (info->addr.pci.extFlags & VIR_PCI_ADDRESS_EXTENSION_ZPCI)
        return qemuDomainAttachZPCIDevice(mon, info);

    return 0;
}


static int
qemuDomainDetachExtensionDevice(qemuMonitorPtr mon,
                                virDomainDeviceInfoPtr info)
{
    if (info->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI ||
        info->addr.pci.extFlags == VIR_PCI_ADDRESS_EXTENSION_NONE) {
        return 0;
    }

    if (info->addr.pci.extFlags & VIR_PCI_ADDRESS_EXTENSION_ZPCI)
        return qemuDomainDetachZPCIDevice(mon, info);

    return 0;
}


231
static int
232 233
qemuHotplugWaitForTrayEject(virDomainObjPtr vm,
                            virDomainDiskDefPtr disk)
234 235 236 237 238 239 240 241 242 243 244 245
{
    unsigned long long now;
    int rc;

    if (virTimeMillisNow(&now) < 0)
        return -1;

    while (disk->tray_status != VIR_DOMAIN_DISK_TRAY_OPEN) {
        if ((rc = virDomainObjWaitUntil(vm, now + CHANGE_MEDIA_TIMEOUT)) < 0)
            return -1;

        if (rc > 0) {
246 247
            /* the caller called qemuMonitorEjectMedia which usually reports an
             * error. Report the failure in an off-chance that it didn't. */
248
            if (virGetLastErrorCode() == VIR_ERR_OK) {
249 250 251
                virReportError(VIR_ERR_OPERATION_FAILED,
                               _("timed out waiting to open tray of '%s'"),
                               disk->dst);
252
            }
253 254 255 256 257 258 259 260
            return -1;
        }
    }

    return 0;
}


261
/**
262
 * qemuDomainChangeMediaLegacy:
263 264 265 266 267 268 269 270 271 272 273 274 275
 * @driver: qemu driver structure
 * @vm: domain definition
 * @disk: disk definition to change the source of
 * @newsrc: new disk source to change to
 * @force: force the change of media
 *
 * Change the media in an ejectable device to the one described by
 * @newsrc. This function also removes the old source from the
 * shared device table if appropriate. Note that newsrc is consumed
 * on success and the old source is freed on success.
 *
 * Returns 0 on success, -1 on error and reports libvirt error
 */
276 277 278 279 280 281
static int
qemuDomainChangeMediaLegacy(virQEMUDriverPtr driver,
                            virDomainObjPtr vm,
                            virDomainDiskDefPtr disk,
                            virStorageSourcePtr newsrc,
                            bool force)
282
{
283
    int ret = -1, rc;
284
    char *driveAlias = NULL;
285
    qemuDomainObjPrivatePtr priv = vm->privateData;
286
    qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
287
    const char *format = NULL;
288
    char *sourcestr = NULL;
289

290
    if (!disk->info.alias) {
291
        virReportError(VIR_ERR_INTERNAL_ERROR,
292
                       _("missing disk device alias name for %s"), disk->dst);
293
        goto cleanup;
294 295
    }

296
    if (!(driveAlias = qemuAliasDiskDriveFromDisk(disk)))
297
        goto cleanup;
298

299 300 301 302
    qemuDomainObjEnterMonitor(driver, vm);
    rc = qemuMonitorEjectMedia(priv->mon, driveAlias, force);
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
303

304
    /* If the tray is present and tray change event is supported wait for it to open. */
305
    if (!force && diskPriv->tray &&
306
        virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE_TRAY_MOVED)) {
307
        rc = qemuHotplugWaitForTrayEject(vm, disk);
308
        if (rc < 0)
309
            goto cleanup;
310 311 312 313 314 315 316

        /* re-issue ejection command to pop out the media */
        qemuDomainObjEnterMonitor(driver, vm);
        rc = qemuMonitorEjectMedia(priv->mon, driveAlias, false);
        if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
            goto cleanup;

317 318 319
    } else  {
        /* otherwise report possible errors from the attempt to eject the media*/
        if (rc < 0)
320
            goto cleanup;
321
    }
322

323
    if (!virStorageSourceIsEmpty(newsrc)) {
324
        if (qemuGetDriveSourceString(newsrc, NULL, &sourcestr) < 0)
325
            goto cleanup;
326

327 328 329
        if (virStorageSourceGetActualType(newsrc) != VIR_STORAGE_TYPE_DIR)
            format = virStorageFileFormatTypeToString(newsrc->format);

330
        qemuDomainObjEnterMonitor(driver, vm);
331 332 333 334 335
        rc = qemuMonitorChangeMedia(priv->mon,
                                    driveAlias,
                                    sourcestr,
                                    format);
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
336
            goto cleanup;
337
    }
338

339
    if (rc < 0)
340
        goto cleanup;
341

342
    ret = 0;
343

344
 cleanup:
345
    VIR_FREE(driveAlias);
346
    VIR_FREE(sourcestr);
347 348 349
    return ret;
}

350

351
/**
352 353
 * qemuHotplugAttachManagedPR:
 * @driver: QEMU driver object
354
 * @vm: domain object
355 356
 * @src: new disk source to be attached to @vm
 * @asyncJob: asynchronous job identifier
357
 *
358 359
 * Checks if it's needed to start qemu-pr-helper and add the corresponding
 * pr-manager-helper object.
360
 *
361
 * Returns: 0 on success, -1 on error.
362 363
 */
static int
364 365 366 367
qemuHotplugAttachManagedPR(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           virStorageSourcePtr src,
                           qemuDomainAsyncJob asyncJob)
368 369
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
370
    virJSONValuePtr props = NULL;
371
    bool daemonStarted = false;
372
    int ret = -1;
373
    int rc;
374

375
    if (priv->prDaemonRunning ||
376
        !virStorageSourceChainHasManagedPR(src))
377 378
        return 0;

379
    if (!(props = qemuBuildPRManagedManagerInfoProps(priv)))
380 381
        return -1;

382 383
    if (qemuProcessStartManagedPRDaemon(vm) < 0)
        goto cleanup;
384

385 386 387 388 389 390 391 392 393 394
    daemonStarted = true;

    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
        goto cleanup;

    rc = qemuMonitorAddObject(priv->mon, &props, NULL);

    if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
        goto cleanup;

395
    ret = 0;
396

397
 cleanup:
398 399
    if (ret < 0 && daemonStarted)
        qemuProcessKillManagedPRDaemon(vm);
400 401
    virJSONValueFree(props);
    return ret;
402 403 404
}


405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
/**
 * qemuHotplugRemoveManagedPR:
 * @driver: QEMU driver object
 * @vm: domain object
 * @asyncJob: asynchronous job identifier
 *
 * Removes the managed PR object from @vm if the configuration does not require
 * it any more.
 */
static int
qemuHotplugRemoveManagedPR(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           qemuDomainAsyncJob asyncJob)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virErrorPtr orig_err;
421
    int ret = -1;
422 423 424 425 426

    if (!priv->prDaemonRunning ||
        virDomainDefHasManagedPR(vm->def))
        return 0;

427 428
    virErrorPreserveLast(&orig_err);

429
    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
430
        goto cleanup;
431 432
    ignore_value(qemuMonitorDelObject(priv->mon, qemuDomainGetManagedPRAlias()));
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
433
        goto cleanup;
434 435 436

    qemuProcessKillManagedPRDaemon(vm);

437 438 439 440
    ret = 0;
 cleanup:
    virErrorRestore(&orig_err);
    return ret;
441 442 443
}


444 445 446
struct _qemuHotplugDiskSourceData {
    qemuBlockStorageSourceAttachDataPtr *backends;
    size_t nbackends;
447 448 449 450

    /* disk copy-on-read object */
    virJSONValuePtr corProps;
    char *corAlias;
451 452 453 454 455 456 457 458 459 460 461 462 463
};
typedef struct _qemuHotplugDiskSourceData qemuHotplugDiskSourceData;
typedef qemuHotplugDiskSourceData *qemuHotplugDiskSourceDataPtr;


static void
qemuHotplugDiskSourceDataFree(qemuHotplugDiskSourceDataPtr data)
{
    size_t i;

    if (!data)
        return;

464 465 466
    virJSONValueFree(data->corProps);
    VIR_FREE(data->corAlias);

467 468 469 470 471 472 473
    for (i = 0; i < data->nbackends; i++)
        qemuBlockStorageSourceAttachDataFree(data->backends[i]);

    VIR_FREE(data);
}


474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
/**
 * qemuDomainRemoveDiskStorageSourcePrepareData:
 * @src: disk source structure
 * @driveAlias: Alias of the -drive backend, the pointer is always consumed
 *
 * Prepare qemuBlockStorageSourceAttachDataPtr for detaching a single source
 * from a VM. If @driveAlias is NULL -blockdev is assumed.
 */
static qemuBlockStorageSourceAttachDataPtr
qemuHotplugRemoveStorageSourcePrepareData(virStorageSourcePtr src,
                                          char *driveAlias)

{
    qemuDomainStorageSourcePrivatePtr srcpriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);
    qemuBlockStorageSourceAttachDataPtr data;
    qemuBlockStorageSourceAttachDataPtr ret = NULL;

    if (VIR_ALLOC(data) < 0)
        goto cleanup;

    if (driveAlias) {
        VIR_STEAL_PTR(data->driveAlias, driveAlias);
        data->driveAdded = true;
    } else {
        data->formatNodeName = src->nodeformat;
        data->formatAttached = true;
        data->storageNodeName = src->nodestorage;
        data->storageAttached = true;
    }

    if (src->pr &&
        !virStoragePRDefIsManaged(src->pr) &&
        VIR_STRDUP(data->prmgrAlias, src->pr->mgralias) < 0)
        goto cleanup;

    if (VIR_STRDUP(data->tlsAlias, src->tlsAlias) < 0)
        goto cleanup;

    if (srcpriv) {
        if (srcpriv->secinfo &&
            srcpriv->secinfo->type == VIR_DOMAIN_SECRET_INFO_TYPE_AES &&
            VIR_STRDUP(data->authsecretAlias, srcpriv->secinfo->s.aes.alias) < 0)
            goto cleanup;

        if (srcpriv->encinfo &&
            srcpriv->encinfo->type == VIR_DOMAIN_SECRET_INFO_TYPE_AES &&
            VIR_STRDUP(data->encryptsecretAlias, srcpriv->encinfo->s.aes.alias) < 0)
            goto cleanup;
    }

    VIR_STEAL_PTR(ret, data);

 cleanup:
    VIR_FREE(driveAlias);
    qemuBlockStorageSourceAttachDataFree(data);
    return ret;
}


static qemuHotplugDiskSourceDataPtr
qemuHotplugDiskSourceRemovePrepare(virDomainDiskDefPtr disk,
535
                                   virStorageSourcePtr src,
536
                                   virQEMUCapsPtr qemuCaps)
537
{
538
    qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
539 540 541 542
    qemuBlockStorageSourceAttachDataPtr backend = NULL;
    qemuHotplugDiskSourceDataPtr data = NULL;
    qemuHotplugDiskSourceDataPtr ret = NULL;
    char *drivealias = NULL;
543
    virStorageSourcePtr n;
544 545 546 547

    if (VIR_ALLOC(data) < 0)
        return NULL;

548 549 550
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKDEV)) {
        if (VIR_STRDUP(data->corAlias, diskPriv->nodeCopyOnRead) < 0)
            goto cleanup;
551

552
        for (n = src; virStorageSourceIsBacking(n); n = n->backingStore) {
553 554
            if (!(backend = qemuHotplugRemoveStorageSourcePrepareData(n, NULL)))
                goto cleanup;
555

556 557 558 559 560 561 562
            if (VIR_APPEND_ELEMENT(data->backends, data->nbackends, backend) < 0)
                goto cleanup;
        }
    } else {
        if (!(drivealias = qemuAliasDiskDriveFromDisk(disk)))
            goto cleanup;

563
        if (!(backend = qemuHotplugRemoveStorageSourcePrepareData(src,
564 565 566 567 568 569
                                                                  drivealias)))
            goto cleanup;

        if (VIR_APPEND_ELEMENT(data->backends, data->nbackends, backend) < 0)
            goto cleanup;
    }
570 571 572 573 574 575 576 577 578 579

    VIR_STEAL_PTR(ret, data);

 cleanup:
    qemuBlockStorageSourceAttachDataFree(backend);
    qemuHotplugDiskSourceDataFree(data);
    return ret;
}


580 581 582
/**
 * qemuHotplugDiskSourceAttachPrepare:
 * @disk: disk to generate attachment data for
583
 * @src: disk source to prepare attachment
584 585 586 587 588 589 590
 * @qemuCaps: capabilities of the qemu process
 *
 * Prepares and returns qemuHotplugDiskSourceData structure filled with all data
 * which will fully attach the source backend of the disk to a given VM.
 */
static qemuHotplugDiskSourceDataPtr
qemuHotplugDiskSourceAttachPrepare(virDomainDiskDefPtr disk,
591
                                   virStorageSourcePtr src,
592 593
                                   virQEMUCapsPtr qemuCaps)
{
594
    qemuBlockStorageSourceAttachDataPtr backend = NULL;
595 596
    qemuHotplugDiskSourceDataPtr data;
    qemuHotplugDiskSourceDataPtr ret = NULL;
597
    virStorageSourcePtr savesrc = NULL;
598
    virStorageSourcePtr n;
599 600 601 602

    if (VIR_ALLOC(data) < 0)
        return NULL;

603 604 605 606
    if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKDEV)) {
        if (disk->copy_on_read == VIR_TRISTATE_SWITCH_ON &&
            !(data->corProps = qemuBlockStorageGetCopyOnReadProps(disk)))
            goto cleanup;
607

608
        for (n = src; virStorageSourceIsBacking(n); n = n->backingStore) {
609 610
            if (!(backend = qemuBlockStorageSourceAttachPrepareBlockdev(n)))
                goto cleanup;
611

612 613 614 615 616 617 618
            if (qemuBuildStorageSourceAttachPrepareCommon(n, backend, qemuCaps) < 0)
                goto cleanup;

            if (VIR_APPEND_ELEMENT(data->backends, data->nbackends, backend) < 0)
                goto cleanup;
        }
    } else {
619 620 621
        VIR_STEAL_PTR(savesrc, disk->src);
        disk->src = src;

622 623 624
        if (!(backend = qemuBuildStorageSourceAttachPrepareDrive(disk, qemuCaps)))
            goto cleanup;

625 626 627
        VIR_STEAL_PTR(disk->src, savesrc);

        if (qemuBuildStorageSourceAttachPrepareCommon(src, backend, qemuCaps) < 0)
628 629 630 631 632
            goto cleanup;

        if (VIR_APPEND_ELEMENT(data->backends, data->nbackends, backend) < 0)
            goto cleanup;
    }
633 634 635 636

    VIR_STEAL_PTR(ret, data);

 cleanup:
637 638 639
    if (savesrc)
        VIR_STEAL_PTR(disk->src, savesrc);

640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
    qemuBlockStorageSourceAttachDataFree(backend);
    qemuHotplugDiskSourceDataFree(data);
    return ret;
}


/**
 * qemuHotplugDiskSourceAttach:
 * @mon: monitor object
 * @data: disk backend data object describing what to remove
 *
 * Attach a disk source backend with all relevant pieces. Caller must enter the
 * monitor context for @mon.
 */
static int
qemuHotplugDiskSourceAttach(qemuMonitorPtr mon,
                            qemuHotplugDiskSourceDataPtr data)
{
    size_t i;

    for (i = data->nbackends; i > 0; i--) {
        if (qemuBlockStorageSourceAttachApply(mon, data->backends[i - 1]) < 0)
            return -1;
    }

665 666 667 668
    if (data->corProps &&
        qemuMonitorAddObject(mon, &data->corProps, &data->corAlias) < 0)
        return -1;

669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
    return 0;
}


/**
 * qemuHotplugDiskSourceRemove:
 * @mon: monitor object
 * @data: disk backend data object describing what to remove
 *
 * Remove a disk source backend with all relevant pieces. This function
 * preserves the error which was set prior to calling it. Caller must enter the
 * monitor context for @mon.
 */
static void
qemuHotplugDiskSourceRemove(qemuMonitorPtr mon,
                            qemuHotplugDiskSourceDataPtr data)

{
    size_t i;

689 690 691
    if (data->corAlias)
        ignore_value(qemuMonitorDelObject(mon, data->corAlias));

692 693 694 695 696
    for (i = 0; i < data->nbackends; i++)
        qemuBlockStorageSourceAttachRollback(mon, data->backends[i]);
}


697 698 699 700 701
/**
 * qemuDomainChangeMediaBlockdev:
 * @driver: qemu driver structure
 * @vm: domain definition
 * @disk: disk definition to change the source of
702
 * @oldsrc: old source definition
703 704 705 706 707 708 709 710 711 712 713 714 715 716
 * @newsrc: new disk source to change to
 * @force: force the change of media
 *
 * Change the media in an ejectable device to the one described by
 * @newsrc. This function also removes the old source from the
 * shared device table if appropriate. Note that newsrc is consumed
 * on success and the old source is freed on success.
 *
 * Returns 0 on success, -1 on error and reports libvirt error
 */
static int
qemuDomainChangeMediaBlockdev(virQEMUDriverPtr driver,
                              virDomainObjPtr vm,
                              virDomainDiskDefPtr disk,
717
                              virStorageSourcePtr oldsrc,
718 719 720 721 722 723 724 725 726 727 728
                              virStorageSourcePtr newsrc,
                              bool force)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
    qemuHotplugDiskSourceDataPtr newbackend = NULL;
    qemuHotplugDiskSourceDataPtr oldbackend = NULL;
    char *nodename = NULL;
    int rc;
    int ret = -1;

729 730
    if (!virStorageSourceIsEmpty(oldsrc) &&
        !(oldbackend = qemuHotplugDiskSourceRemovePrepare(disk, oldsrc,
731
                                                          priv->qemuCaps)))
732 733
        goto cleanup;

734 735
    if (!virStorageSourceIsEmpty(newsrc)) {
        if (!(newbackend = qemuHotplugDiskSourceAttachPrepare(disk, newsrc,
736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
                                                              priv->qemuCaps)))
            goto cleanup;

        if (qemuDomainDiskGetBackendAlias(disk, priv->qemuCaps, &nodename) < 0)
            goto cleanup;
    }

    if (diskPriv->tray && disk->tray_status != VIR_DOMAIN_DISK_TRAY_OPEN) {
        qemuDomainObjEnterMonitor(driver, vm);
        rc = qemuMonitorBlockdevTrayOpen(priv->mon, diskPriv->qomName, force);
        if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
            goto cleanup;

        if (!force && qemuHotplugWaitForTrayEject(vm, disk) < 0)
            goto cleanup;
    }

    qemuDomainObjEnterMonitor(driver, vm);

    rc = qemuMonitorBlockdevMediumRemove(priv->mon, diskPriv->qomName);

    if (rc == 0 && oldbackend)
        qemuHotplugDiskSourceRemove(priv->mon, oldbackend);

    if (newbackend && nodename) {
        if (rc == 0)
            rc = qemuHotplugDiskSourceAttach(priv->mon, newbackend);

        if (rc == 0)
            rc = qemuMonitorBlockdevMediumInsert(priv->mon, diskPriv->qomName,
                                                 nodename);
    }

    if (rc == 0)
        rc = qemuMonitorBlockdevTrayClose(priv->mon, diskPriv->qomName);

    if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    qemuHotplugDiskSourceDataFree(newbackend);
    qemuHotplugDiskSourceDataFree(oldbackend);
780
    VIR_FREE(nodename);
781 782 783 784
    return ret;
}


785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
/**
 * qemuDomainChangeEjectableMedia:
 * @driver: qemu driver structure
 * @vm: domain definition
 * @disk: disk definition to change the source of
 * @newsrc: new disk source to change to
 * @force: force the change of media
 *
 * Change the media in an ejectable device to the one described by
 * @newsrc. This function also removes the old source from the
 * shared device table if appropriate. Note that newsrc is consumed
 * on success and the old source is freed on success.
 *
 * Returns 0 on success, -1 on error and reports libvirt error
 */
800
int
801 802 803 804 805 806
qemuDomainChangeEjectableMedia(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
                               virDomainDiskDefPtr disk,
                               virStorageSourcePtr newsrc,
                               bool force)
{
807
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
808
    qemuDomainObjPrivatePtr priv = vm->privateData;
809
    virStorageSourcePtr oldsrc = disk->src;
810
    bool sharedAdded = false;
811 812 813
    int ret = -1;
    int rc;

814 815
    disk->src = newsrc;

816 817 818 819 820 821 822 823 824 825 826
    if (virDomainDiskTranslateSourcePool(disk) < 0)
        goto cleanup;

    if (qemuAddSharedDisk(driver, disk, vm->def->name) < 0)
        goto cleanup;

    sharedAdded = true;

    if (qemuDomainDetermineDiskChain(driver, vm, disk, true) < 0)
        goto cleanup;

827 828 829
    if (qemuDomainPrepareDiskSource(disk, priv, cfg) < 0)
        goto cleanup;

830 831 832
    if (qemuHotplugPrepareDiskAccess(driver, vm, disk, newsrc, false) < 0)
        goto cleanup;

833 834 835
    if (qemuHotplugAttachManagedPR(driver, vm, newsrc, QEMU_ASYNC_JOB_NONE) < 0)
        goto cleanup;

836
    if (virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_BLOCKDEV))
837
        rc = qemuDomainChangeMediaBlockdev(driver, vm, disk, oldsrc, newsrc, force);
838 839
    else
        rc = qemuDomainChangeMediaLegacy(driver, vm, disk, newsrc, force);
840

841
    virDomainAuditDisk(vm, oldsrc, newsrc, "update", rc >= 0);
842

843
    if (rc < 0)
844 845 846
        goto cleanup;

    /* remove the old source from shared device list */
847
    disk->src = oldsrc;
848
    ignore_value(qemuRemoveSharedDisk(driver, disk, vm->def->name));
849
    ignore_value(qemuHotplugPrepareDiskAccess(driver, vm, disk, oldsrc, true));
850

851 852 853 854
    /* media was changed, so we can remove the old media definition now */
    virStorageSourceFree(oldsrc);
    oldsrc = NULL;
    disk->src = newsrc;
855

856 857 858
    ret = 0;

 cleanup:
859 860 861 862 863 864 865 866 867 868 869 870
    /* undo changes to the new disk */
    if (ret < 0) {
        if (sharedAdded)
            ignore_value(qemuRemoveSharedDisk(driver, disk, vm->def->name));

        ignore_value(qemuHotplugPrepareDiskAccess(driver, vm, disk, newsrc, true));
    }

    /* remove PR manager object if unneeded */
    ignore_value(qemuHotplugRemoveManagedPR(driver, vm, QEMU_ASYNC_JOB_NONE));

    /* revert old image do the disk definition */
871 872 873 874
    if (oldsrc)
        disk->src = oldsrc;

    virObjectUnref(cfg);
875 876 877 878
    return ret;
}


879 880 881 882 883
/**
 * qemuDomainAttachDiskGeneric:
 *
 * Attaches disk to a VM. This function aggregates common code for all bus types.
 * In cases when the VM crashed while adding the disk, -2 is returned. */
884
static int
885
qemuDomainAttachDiskGeneric(virQEMUDriverPtr driver,
886 887
                            virDomainObjPtr vm,
                            virDomainDiskDefPtr disk)
888
{
889
    int ret = -1;
890
    qemuDomainObjPrivatePtr priv = vm->privateData;
891
    qemuHotplugDiskSourceDataPtr diskdata = NULL;
892
    char *devstr = NULL;
893
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
894

895
    if (qemuHotplugPrepareDiskAccess(driver, vm, disk, NULL, false) < 0)
896
        goto cleanup;
897

898
    if (qemuAssignDeviceDiskAlias(vm->def, disk, priv->qemuCaps) < 0)
899
        goto error;
900

901 902 903
    if (qemuDomainPrepareDiskSource(disk, priv, cfg) < 0)
        goto error;

904 905
    if (!(diskdata = qemuHotplugDiskSourceAttachPrepare(disk, disk->src,
                                                        priv->qemuCaps)))
906 907
        goto error;

908
    if (!(devstr = qemuBuildDiskDeviceStr(vm->def, disk, 0, priv->qemuCaps)))
909
        goto error;
910

911
    if (VIR_REALLOC_N(vm->def->disks, vm->def->ndisks + 1) < 0)
912 913
        goto error;

914 915
    if (qemuHotplugAttachManagedPR(driver, vm, disk->src, QEMU_ASYNC_JOB_NONE) < 0)
        goto error;
916

917
    qemuDomainObjEnterMonitor(driver, vm);
918

919
    if (qemuHotplugDiskSourceAttach(priv->mon, diskdata) < 0)
920
        goto exit_monitor;
921

922 923 924 925 926
    if (qemuDomainAttachExtensionDevice(priv->mon, &disk->info) < 0)
        goto exit_monitor;

    if (qemuMonitorAddDevice(priv->mon, devstr) < 0) {
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, &disk->info));
927
        goto exit_monitor;
928
    }
929

930
    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
931
        ret = -2;
932
        goto error;
933
    }
934

935
    virDomainAuditDisk(vm, NULL, disk->src, "attach", true);
936 937

    virDomainDiskInsertPreAlloced(vm->def, disk);
938
    ret = 0;
939

940
 cleanup:
941
    qemuHotplugDiskSourceDataFree(diskdata);
942
    qemuDomainSecretDiskDestroy(disk);
943
    VIR_FREE(devstr);
944
    virObjectUnref(cfg);
945
    return ret;
946

947
 exit_monitor:
948
    qemuHotplugDiskSourceRemove(priv->mon, diskdata);
949

950
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
951
        ret = -2;
952 953
    if (qemuHotplugRemoveManagedPR(driver, vm, QEMU_ASYNC_JOB_NONE) < 0)
        ret = -2;
954 955 956

    virDomainAuditDisk(vm, NULL, disk->src, "attach", false);

957
 error:
958
    ignore_value(qemuHotplugPrepareDiskAccess(driver, vm, disk, NULL, true));
959
    goto cleanup;
960 961 962
}


963
static int
964
qemuDomainAttachVirtioDiskDevice(virQEMUDriverPtr driver,
965 966 967 968 969 970 971 972 973 974
                                 virDomainObjPtr vm,
                                 virDomainDiskDefPtr disk)
{
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_DISK, { .disk = disk } };
    bool releaseaddr = false;
    int rv;

    if (qemuDomainEnsureVirtioAddress(&releaseaddr, vm, &dev, disk->dst) < 0)
        return -1;

975
    if ((rv = qemuDomainAttachDiskGeneric(driver, vm, disk)) < 0) {
976 977 978 979 980 981 982 983 984 985
        if (rv == -1 && releaseaddr)
            qemuDomainReleaseDeviceAddress(vm, &disk->info, disk->dst);

        return -1;
    }

    return 0;
}


986 987 988
int qemuDomainAttachControllerDevice(virQEMUDriverPtr driver,
                                     virDomainObjPtr vm,
                                     virDomainControllerDefPtr controller)
989 990 991 992 993
{
    int ret = -1;
    const char* type = virDomainControllerTypeToString(controller->type);
    char *devstr = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;
994 995
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_CONTROLLER,
                               { .controller = controller } };
996
    bool releaseaddr = false;
997

998 999 1000 1001 1002 1003 1004
    if (controller->type != VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("'%s' controller cannot be hot plugged."),
                       virDomainControllerTypeToString(controller->type));
        return -1;
    }

1005 1006 1007 1008 1009 1010 1011 1012
    /* default idx would normally be set by virDomainDefPostParse(),
     * which isn't called in the case of live attach of a single
     * device.
     */
    if (controller->idx == -1)
       controller->idx = virDomainControllerFindUnusedIndex(vm->def,
                                                            controller->type);

1013
    if (virDomainControllerFind(vm->def, controller->type, controller->idx) >= 0) {
1014 1015 1016 1017
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("target %s:%d already exists"),
                       type, controller->idx);
        return -1;
1018 1019
    }

1020 1021
    if (qemuDomainEnsureVirtioAddress(&releaseaddr, vm, &dev, "controller") < 0)
        return -1;
1022

1023 1024 1025
    if (qemuAssignDeviceControllerAlias(vm->def, priv->qemuCaps, controller) < 0)
        goto cleanup;

1026 1027 1028 1029
    if (qemuBuildControllerDevStr(vm->def, controller, priv->qemuCaps, &devstr, NULL) < 0)
        goto cleanup;

    if (!devstr)
1030
        goto cleanup;
1031

1032
    if (VIR_REALLOC_N(vm->def->controllers, vm->def->ncontrollers+1) < 0)
1033 1034
        goto cleanup;

1035
    qemuDomainObjEnterMonitor(driver, vm);
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045

    if ((ret = qemuDomainAttachExtensionDevice(priv->mon,
                                               &controller->info)) < 0) {
        goto exit_monitor;
    }

    if ((ret = qemuMonitorAddDevice(priv->mon, devstr)) < 0)
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, &controller->info));

 exit_monitor:
1046 1047 1048 1049 1050
    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        releaseaddr = false;
        ret = -1;
        goto cleanup;
    }
1051

1052
    if (ret == 0)
1053 1054
        virDomainControllerInsertPreAlloced(vm->def, controller);

1055
 cleanup:
1056 1057
    if (ret != 0 && releaseaddr)
        qemuDomainReleaseDeviceAddress(vm, &controller->info, NULL);
1058 1059 1060 1061 1062 1063

    VIR_FREE(devstr);
    return ret;
}

static virDomainControllerDefPtr
1064
qemuDomainFindOrCreateSCSIDiskController(virQEMUDriverPtr driver,
1065
                                         virDomainObjPtr vm,
1066
                                         int controller)
1067
{
1068
    size_t i;
1069
    virDomainControllerDefPtr cont;
1070
    qemuDomainObjPrivatePtr priv = vm->privateData;
1071
    int model = -1;
1072

1073
    for (i = 0; i < vm->def->ncontrollers; i++) {
1074 1075 1076 1077 1078 1079 1080
        cont = vm->def->controllers[i];

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

        if (cont->idx == controller)
            return cont;
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090

        /* Because virDomainHostdevAssignAddress called during
         * virDomainHostdevDefPostParse cannot add a new controller
         * it will assign a controller index to a controller that doesn't
         * exist leaving this code to perform the magic of adding the
         * controller. Because that code would be attempting to add a
         * SCSI disk to an existing controller, let's save the model
         * of the "last" SCSI controller we find so that if we end up
         * creating a controller below it uses the same controller model. */
        model = cont->model;
1091 1092 1093 1094
    }

    /* No SCSI controller present, for backward compatibility we
     * now hotplug a controller */
1095
    if (VIR_ALLOC(cont) < 0)
1096 1097
        return NULL;
    cont->type = VIR_DOMAIN_CONTROLLER_TYPE_SCSI;
1098
    cont->idx = controller;
1099
    if (model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_DEFAULT)
1100 1101 1102
        cont->model = qemuDomainGetSCSIControllerModel(vm->def, cont, priv->qemuCaps);
    else
        cont->model = model;
1103

1104
    VIR_INFO("No SCSI controller present, hotplugging one model=%s",
1105
             virDomainControllerModelSCSITypeToString(cont->model));
1106
    if (qemuDomainAttachControllerDevice(driver, vm, cont) < 0) {
1107 1108 1109 1110 1111
        VIR_FREE(cont);
        return NULL;
    }

    if (!virDomainObjIsActive(vm)) {
1112 1113
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("guest unexpectedly quit"));
1114 1115 1116 1117 1118 1119 1120 1121 1122
        /* cont doesn't need freeing here, since the reference
         * now held in def->controllers */
        return NULL;
    }

    return cont;
}


1123
static int
1124
qemuDomainAttachSCSIDisk(virQEMUDriverPtr driver,
1125 1126
                         virDomainObjPtr vm,
                         virDomainDiskDefPtr disk)
1127
{
1128
    size_t i;
1129 1130 1131

    /* We should have an address already, so make sure */
    if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
1132 1133 1134
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unexpected disk address type %s"),
                       virDomainDeviceAddressTypeToString(disk->info.type));
1135
        return -1;
1136 1137
    }

1138 1139 1140 1141 1142 1143 1144 1145 1146
    /* Let's make sure the disk has a controller defined and loaded before
     * trying to add it. The controller used by the disk must exist before a
     * qemu command line string is generated.
     *
     * Ensure that the given controller and all controllers with a smaller index
     * exist; there must not be any missing index in between.
     */
    for (i = 0; i <= disk->info.addr.drive.controller; i++) {
        if (!qemuDomainFindOrCreateSCSIDiskController(driver, vm, i))
1147
            return -1;
1148
    }
1149

1150
    if (qemuDomainAttachDiskGeneric(driver, vm, disk) < 0)
1151
        return -1;
1152

1153
    return 0;
1154 1155 1156
}


1157
static int
1158
qemuDomainAttachUSBMassStorageDevice(virQEMUDriverPtr driver,
1159 1160
                                     virDomainObjPtr vm,
                                     virDomainDiskDefPtr disk)
1161 1162
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
1163

1164 1165
    if (virDomainUSBAddressEnsure(priv->usbaddrs, &disk->info) < 0)
        return -1;
1166

1167
    if (qemuDomainAttachDiskGeneric(driver, vm, disk) < 0) {
1168
        virDomainUSBAddressRelease(priv->usbaddrs, &disk->info);
1169
        return -1;
1170
    }
1171

1172
    return 0;
1173 1174 1175
}


1176 1177 1178 1179
static int
qemuDomainAttachDeviceDiskLiveInternal(virQEMUDriverPtr driver,
                                       virDomainObjPtr vm,
                                       virDomainDeviceDefPtr dev)
1180
{
1181
    size_t i;
1182 1183 1184
    virDomainDiskDefPtr disk = dev->data.disk;
    int ret = -1;

1185 1186 1187 1188 1189 1190 1191
    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM ||
        disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("cdrom/floppy device hotplug isn't supported"));
        return -1;
    }

1192
    if (virDomainDiskTranslateSourcePool(disk) < 0)
1193
        goto cleanup;
1194 1195

    if (qemuAddSharedDevice(driver, dev, vm->def->name) < 0)
1196
        goto cleanup;
1197 1198

    if (qemuSetUnprivSGIO(dev) < 0)
1199
        goto cleanup;
1200

1201
    if (qemuDomainDetermineDiskChain(driver, vm, disk, true) < 0)
1202
        goto cleanup;
1203

1204 1205 1206 1207
    for (i = 0; i < vm->def->ndisks; i++) {
        if (virDomainDiskDefCheckDuplicateInfo(vm->def->disks[i], disk) < 0)
            goto cleanup;
    }
1208

1209 1210 1211 1212 1213
    switch ((virDomainDiskBus) disk->bus) {
    case VIR_DOMAIN_DISK_BUS_USB:
        if (disk->device == VIR_DOMAIN_DISK_DEVICE_LUN) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("disk device='lun' is not supported for usb bus"));
1214
            break;
1215
        }
1216
        ret = qemuDomainAttachUSBMassStorageDevice(driver, vm, disk);
1217
        break;
1218

1219 1220
    case VIR_DOMAIN_DISK_BUS_VIRTIO:
        ret = qemuDomainAttachVirtioDiskDevice(driver, vm, disk);
1221
        break;
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239

    case VIR_DOMAIN_DISK_BUS_SCSI:
        ret = qemuDomainAttachSCSIDisk(driver, vm, disk);
        break;

    case VIR_DOMAIN_DISK_BUS_IDE:
    case VIR_DOMAIN_DISK_BUS_FDC:
    case VIR_DOMAIN_DISK_BUS_XEN:
    case VIR_DOMAIN_DISK_BUS_UML:
    case VIR_DOMAIN_DISK_BUS_SATA:
    case VIR_DOMAIN_DISK_BUS_SD:
        /* Note that SD card hotplug support should be added only once
         * they support '-device' (don't require -drive only).
         * See also: qemuDiskBusNeedsDriveArg */
    case VIR_DOMAIN_DISK_BUS_LAST:
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("disk bus '%s' cannot be hotplugged."),
                       virDomainDiskBusTypeToString(disk->bus));
1240 1241
    }

1242
 cleanup:
1243 1244 1245 1246 1247 1248
    if (ret != 0)
        ignore_value(qemuRemoveSharedDevice(driver, dev, vm->def->name));
    return ret;
}


1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
/**
 * qemuDomainAttachDeviceDiskLive:
 * @driver: qemu driver struct
 * @vm: domain object
 * @dev: device to attach (expected type is DISK)
 *
 * Attach a new disk or in case of cdroms/floppies change the media in the drive.
 * This function handles all the necessary steps to attach a new storage source
 * to the VM.
 */
int
qemuDomainAttachDeviceDiskLive(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
                               virDomainDeviceDefPtr dev)
{
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
    virDomainDiskDefPtr disk = dev->data.disk;
    virDomainDiskDefPtr orig_disk = NULL;

    /* this API overloads media change semantics on disk hotplug
     * for devices supporting media changes */
    if ((disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM ||
         disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY) &&
        (orig_disk = virDomainDiskFindByBusAndDst(vm->def, disk->bus, disk->dst))) {
        if (qemuDomainChangeEjectableMedia(driver, vm, orig_disk,
                                           disk->src, false) < 0)
            return -1;

        disk->src = NULL;
        return 0;
    }

1280 1281 1282 1283
    return qemuDomainAttachDeviceDiskLiveInternal(driver, vm, dev);
}


1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
static void
qemuDomainNetDeviceVportRemove(virDomainNetDefPtr net)
{
    virNetDevVPortProfilePtr vport = virDomainNetGetActualVirtPortProfile(net);
    const char *brname;

    if (!vport)
        return;

    if (vport->virtPortType == VIR_NETDEV_VPORT_PROFILE_MIDONET) {
        ignore_value(virNetDevMidonetUnbindPort(vport));
    } else if (vport->virtPortType == VIR_NETDEV_VPORT_PROFILE_OPENVSWITCH) {
        brname = virDomainNetGetActualBridgeName(net);
        ignore_value(virNetDevOpenvswitchRemovePort(brname, net->ifname));
    }
}


1302 1303 1304 1305
int
qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
                          virDomainObjPtr vm,
                          virDomainNetDefPtr net)
1306 1307
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
1308
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_NET, { .net = net } };
1309
    virErrorPtr originalError = NULL;
1310 1311
    char **tapfdName = NULL;
    int *tapfd = NULL;
1312
    size_t tapfdSize = 0;
1313 1314
    char **vhostfdName = NULL;
    int *vhostfd = NULL;
1315
    size_t vhostfdSize = 0;
1316
    size_t queueSize = 0;
1317 1318 1319
    char *nicstr = NULL;
    char *netstr = NULL;
    int ret = -1;
1320
    bool releaseaddr = false;
1321
    bool iface_connected = false;
1322
    virDomainNetType actualType;
1323
    virNetDevBandwidthPtr actualBandwidth;
1324
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1325
    virDomainCCWAddressSetPtr ccwaddrs = NULL;
1326
    size_t i;
1327 1328 1329
    char *charDevAlias = NULL;
    bool charDevPlugged = false;
    bool netdevPlugged = false;
1330
    char *netdev_name;
1331

1332
    /* preallocate new slot for device */
1333
    if (VIR_REALLOC_N(vm->def->nets, vm->def->nnets + 1) < 0)
1334
        goto cleanup;
1335

1336 1337 1338 1339
    /* If appropriate, grab a physical device from the configured
     * network's pool of devices, or resolve bridge device name
     * to the one defined in the network definition.
     */
1340
    if (virDomainNetAllocateActualDevice(vm->def, net) < 0)
1341
        goto cleanup;
1342 1343

    actualType = virDomainNetGetActualType(net);
1344

1345
    /* Currently only TAP/macvtap devices supports multiqueue. */
1346 1347
    if (net->driver.virtio.queues > 0 &&
        !(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
1348
          actualType == VIR_DOMAIN_NET_TYPE_BRIDGE ||
1349
          actualType == VIR_DOMAIN_NET_TYPE_DIRECT ||
1350 1351
          actualType == VIR_DOMAIN_NET_TYPE_ETHERNET ||
          actualType == VIR_DOMAIN_NET_TYPE_VHOSTUSER)) {
1352 1353 1354 1355 1356 1357
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Multiqueue network is not supported for: %s"),
                       virDomainNetTypeToString(actualType));
        return -1;
    }

1358 1359 1360
    /* and only TAP devices support nwfilter rules */
    if (net->filter &&
        !(actualType == VIR_DOMAIN_NET_TYPE_NETWORK ||
1361 1362
          actualType == VIR_DOMAIN_NET_TYPE_BRIDGE ||
          actualType == VIR_DOMAIN_NET_TYPE_ETHERNET)) {
1363 1364 1365 1366 1367 1368 1369
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("filterref is not supported for "
                         "network interfaces of type %s"),
                       virDomainNetTypeToString(actualType));
        return -1;
    }

1370 1371 1372
    if (qemuAssignDeviceNetAlias(vm->def, net, -1) < 0)
        goto cleanup;

1373 1374 1375
    switch (actualType) {
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
    case VIR_DOMAIN_NET_TYPE_NETWORK:
1376 1377 1378
        tapfdSize = vhostfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = vhostfdSize = 1;
1379
        queueSize = tapfdSize;
1380
        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0)
1381
            goto cleanup;
1382 1383 1384 1385
        memset(tapfd, -1, sizeof(*tapfd) * tapfdSize);
        if (VIR_ALLOC_N(vhostfd, vhostfdSize) < 0)
            goto cleanup;
        memset(vhostfd, -1, sizeof(*vhostfd) * vhostfdSize);
1386
        if (qemuInterfaceBridgeConnect(vm->def, driver, net,
1387
                                       tapfd, &tapfdSize) < 0)
1388 1389
            goto cleanup;
        iface_connected = true;
J
Ján Tomko 已提交
1390
        if (qemuInterfaceOpenVhostNet(vm->def, net, vhostfd, &vhostfdSize) < 0)
1391
            goto cleanup;
1392 1393 1394
        break;

    case VIR_DOMAIN_NET_TYPE_DIRECT:
1395 1396 1397
        tapfdSize = vhostfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = vhostfdSize = 1;
1398
        queueSize = tapfdSize;
1399
        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0)
1400
            goto cleanup;
1401 1402
        memset(tapfd, -1, sizeof(*tapfd) * tapfdSize);
        if (VIR_ALLOC_N(vhostfd, vhostfdSize) < 0)
1403
            goto cleanup;
1404
        memset(vhostfd, -1, sizeof(*vhostfd) * vhostfdSize);
1405 1406 1407
        if (qemuInterfaceDirectConnect(vm->def, driver, net,
                                       tapfd, tapfdSize,
                                       VIR_NETDEV_VPORT_PROFILE_OP_CREATE) < 0)
1408 1409
            goto cleanup;
        iface_connected = true;
J
Ján Tomko 已提交
1410
        if (qemuInterfaceOpenVhostNet(vm->def, net, vhostfd, &vhostfdSize) < 0)
1411
            goto cleanup;
1412 1413 1414
        break;

    case VIR_DOMAIN_NET_TYPE_ETHERNET:
1415 1416 1417
        tapfdSize = vhostfdSize = net->driver.virtio.queues;
        if (!tapfdSize)
            tapfdSize = vhostfdSize = 1;
1418
        queueSize = tapfdSize;
1419
        if (VIR_ALLOC_N(tapfd, tapfdSize) < 0)
1420
            goto cleanup;
1421 1422 1423 1424 1425
        memset(tapfd, -1, sizeof(*tapfd) * tapfdSize);
        if (VIR_ALLOC_N(vhostfd, vhostfdSize) < 0)
            goto cleanup;
        memset(vhostfd, -1, sizeof(*vhostfd) * vhostfdSize);
        if (qemuInterfaceEthernetConnect(vm->def, driver, net,
1426
                                         tapfd, tapfdSize) < 0)
1427 1428
            goto cleanup;
        iface_connected = true;
J
Ján Tomko 已提交
1429
        if (qemuInterfaceOpenVhostNet(vm->def, net, vhostfd, &vhostfdSize) < 0)
1430
            goto cleanup;
1431 1432 1433
        break;

    case VIR_DOMAIN_NET_TYPE_HOSTDEV:
1434 1435 1436 1437 1438
        /* This is really a "smart hostdev", so it should be attached
         * as a hostdev (the hostdev code will reach over into the
         * netdev-specific code as appropriate), then also added to
         * the nets list (see cleanup:) if successful.
         */
1439
        ret = qemuDomainAttachHostDevice(driver, vm,
1440 1441
                                         virDomainNetGetActualHostdev(net));
        goto cleanup;
1442 1443 1444
        break;

    case VIR_DOMAIN_NET_TYPE_VHOSTUSER:
1445 1446 1447
        queueSize = net->driver.virtio.queues;
        if (!queueSize)
            queueSize = 1;
1448
        if (!qemuDomainSupportsNicdev(vm->def, net)) {
1449
            virReportError(VIR_ERR_INTERNAL_ERROR,
1450
                           "%s", _("Nicdev support unavailable"));
1451 1452 1453
            goto cleanup;
        }

1454
        if (!(charDevAlias = qemuAliasChardevFromDevAlias(net->info.alias)))
1455
            goto cleanup;
1456 1457 1458 1459 1460

        if (virNetDevOpenvswitchGetVhostuserIfname(net->data.vhostuser->data.nix.path,
                                                   &net->ifname) < 0)
            goto cleanup;

1461 1462 1463
        break;

    case VIR_DOMAIN_NET_TYPE_USER:
1464 1465 1466
        /* No preparation needed. */
        break;

1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
    case VIR_DOMAIN_NET_TYPE_SERVER:
    case VIR_DOMAIN_NET_TYPE_CLIENT:
    case VIR_DOMAIN_NET_TYPE_MCAST:
    case VIR_DOMAIN_NET_TYPE_INTERNAL:
    case VIR_DOMAIN_NET_TYPE_UDP:
    case VIR_DOMAIN_NET_TYPE_LAST:
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("hotplug of interface type of %s is not implemented yet"),
                       virDomainNetTypeToString(actualType));
        goto cleanup;
1477 1478
    }

1479 1480
    /* Set device online immediately */
    if (qemuInterfaceStartDevice(net) < 0)
1481
        goto cleanup;
1482

1483 1484 1485 1486
    /* Set bandwidth or warn if requested and not supported. */
    actualBandwidth = virDomainNetGetActualBandwidth(net);
    if (actualBandwidth) {
        if (virNetDevSupportBandwidth(actualType)) {
1487 1488
            if (virNetDevBandwidthSet(net->ifname, actualBandwidth, false,
                                      !virDomainNetTypeSharesHostView(net)) < 0)
1489 1490 1491 1492 1493 1494 1495
                goto cleanup;
        } else {
            VIR_WARN("setting bandwidth on interfaces of "
                     "type '%s' is not implemented yet",
                     virDomainNetTypeToString(actualType));
        }
    }
1496

1497 1498 1499 1500
    if (net->mtu &&
        virNetDevSetMTU(net->ifname, net->mtu) < 0)
        goto cleanup;

M
Michal Privoznik 已提交
1501
    for (i = 0; i < tapfdSize; i++) {
1502 1503
        if (qemuSecuritySetTapFDLabel(driver->securityManager,
                                      vm->def, tapfd[i]) < 0)
M
Michal Privoznik 已提交
1504 1505 1506
            goto cleanup;
    }

1507
    if (qemuDomainIsS390CCW(vm->def) &&
1508
        net->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI &&
1509
        virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_CCW)) {
1510
        net->info.type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW;
1511
        if (!(ccwaddrs = virDomainCCWAddressSetCreateFromDomain(vm->def)))
1512 1513
            goto cleanup;
        if (virDomainCCWAddressAssign(&net->info, ccwaddrs,
J
Ján Tomko 已提交
1514
                                      !net->info.addr.ccw.assigned) < 0)
1515
            goto cleanup;
1516
    } else if (virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_VIRTIO_S390)) {
1517
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
1518 1519
                       _("virtio-s390 net device cannot be hotplugged."));
        goto cleanup;
1520
    } else if (qemuDomainEnsurePCIAddress(vm, &dev, driver) < 0) {
1521 1522
        goto cleanup;
    }
1523

1524 1525
    releaseaddr = true;

1526
    if (VIR_ALLOC_N(tapfdName, tapfdSize) < 0 ||
1527
        VIR_ALLOC_N(vhostfdName, vhostfdSize) < 0)
1528 1529 1530
        goto cleanup;

    for (i = 0; i < tapfdSize; i++) {
1531
        if (virAsprintf(&tapfdName[i], "fd-%s%zu", net->info.alias, i) < 0)
1532
            goto cleanup;
1533 1534
    }

1535
    for (i = 0; i < vhostfdSize; i++) {
1536
        if (virAsprintf(&vhostfdName[i], "vhostfd-%s%zu", net->info.alias, i) < 0)
1537
            goto cleanup;
1538 1539
    }

J
Ján Tomko 已提交
1540 1541 1542 1543
    if (!(netstr = qemuBuildHostNetStr(net, driver,
                                       tapfdName, tapfdSize,
                                       vhostfdName, vhostfdSize)))
        goto cleanup;
1544

1545
    qemuDomainObjEnterMonitor(driver, vm);
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555

    if (actualType == VIR_DOMAIN_NET_TYPE_VHOSTUSER) {
        if (qemuMonitorAttachCharDev(priv->mon, charDevAlias, net->data.vhostuser) < 0) {
            ignore_value(qemuDomainObjExitMonitor(driver, vm));
            virDomainAuditNet(vm, NULL, net, "attach", false);
            goto cleanup;
        }
        charDevPlugged = true;
    }

J
Ján Tomko 已提交
1556 1557 1558 1559 1560 1561
    if (qemuMonitorAddNetdev(priv->mon, netstr,
                             tapfd, tapfdName, tapfdSize,
                             vhostfd, vhostfdName, vhostfdSize) < 0) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        virDomainAuditNet(vm, NULL, net, "attach", false);
        goto try_remove;
1562
    }
J
Ján Tomko 已提交
1563
    netdevPlugged = true;
1564

1565 1566
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
1567

1568 1569 1570 1571
    for (i = 0; i < tapfdSize; i++)
        VIR_FORCE_CLOSE(tapfd[i]);
    for (i = 0; i < vhostfdSize; i++)
        VIR_FORCE_CLOSE(vhostfd[i]);
1572

1573
    if (!(nicstr = qemuBuildNicDevStr(vm->def, net, 0,
1574
                                      queueSize, priv->qemuCaps)))
1575
        goto try_remove;
1576

1577
    qemuDomainObjEnterMonitor(driver, vm);
1578 1579 1580 1581 1582 1583 1584

    if (qemuDomainAttachExtensionDevice(priv->mon, &net->info) < 0) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        virDomainAuditNet(vm, NULL, net, "attach", false);
        goto try_remove;
    }

1585
    if (qemuMonitorAddDevice(priv->mon, nicstr) < 0) {
1586
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, &net->info));
1587 1588 1589
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        virDomainAuditNet(vm, NULL, net, "attach", false);
        goto try_remove;
1590
    }
1591 1592
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
1593

1594 1595 1596
    /* set link state */
    if (net->linkstate == VIR_DOMAIN_NET_INTERFACE_LINK_STATE_DOWN) {
        if (!net->info.alias) {
1597 1598
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("device alias not found: cannot set link state to down"));
1599
        } else {
1600
            qemuDomainObjEnterMonitor(driver, vm);
1601

J
Ján Tomko 已提交
1602 1603 1604 1605
            if (qemuMonitorSetLink(priv->mon, net->info.alias, VIR_DOMAIN_NET_INTERFACE_LINK_STATE_DOWN) < 0) {
                ignore_value(qemuDomainObjExitMonitor(driver, vm));
                virDomainAuditNet(vm, NULL, net, "attach", false);
                goto try_remove;
1606 1607
            }

1608 1609
            if (qemuDomainObjExitMonitor(driver, vm) < 0)
                goto cleanup;
1610 1611 1612 1613
        }
        /* link set to down */
    }

1614
    virDomainAuditNet(vm, NULL, net, "attach", true);
1615 1616 1617

    ret = 0;

1618
 cleanup:
1619 1620 1621
    if (!ret) {
        vm->def->nets[vm->def->nnets++] = net;
    } else {
1622 1623
        if (releaseaddr)
            qemuDomainReleaseDeviceAddress(vm, &net->info, NULL);
1624

1625
        if (iface_connected) {
1626
            virErrorPreserveLast(&originalError);
1627
            virDomainConfNWFilterTeardown(net);
1628
            virErrorRestore(&originalError);
1629

1630 1631 1632 1633 1634 1635 1636 1637 1638
            if (virDomainNetGetActualType(net) == VIR_DOMAIN_NET_TYPE_DIRECT) {
                ignore_value(virNetDevMacVLanDeleteWithVPortProfile(
                                 net->ifname, &net->mac,
                                 virDomainNetGetActualDirectDev(net),
                                 virDomainNetGetActualDirectMode(net),
                                 virDomainNetGetActualVirtPortProfile(net),
                                 cfg->stateDir));
            }

1639
            qemuDomainNetDeviceVportRemove(net);
1640
        }
A
Ansis Atteka 已提交
1641

1642 1643
        virDomainNetRemoveHostdev(vm->def, net);

1644
        virDomainNetReleaseActualDevice(vm->def, net);
1645
    }
1646 1647 1648

    VIR_FREE(nicstr);
    VIR_FREE(netstr);
1649
    for (i = 0; tapfd && i < tapfdSize; i++) {
1650
        VIR_FORCE_CLOSE(tapfd[i]);
1651 1652
        if (tapfdName)
            VIR_FREE(tapfdName[i]);
1653 1654 1655
    }
    VIR_FREE(tapfd);
    VIR_FREE(tapfdName);
1656
    for (i = 0; vhostfd && i < vhostfdSize; i++) {
1657
        VIR_FORCE_CLOSE(vhostfd[i]);
1658 1659
        if (vhostfdName)
            VIR_FREE(vhostfdName[i]);
1660 1661 1662
    }
    VIR_FREE(vhostfd);
    VIR_FREE(vhostfdName);
1663
    VIR_FREE(charDevAlias);
1664
    virObjectUnref(cfg);
1665
    virDomainCCWAddressSetFree(ccwaddrs);
1666 1667 1668

    return ret;

1669
 try_remove:
1670 1671 1672
    if (!virDomainObjIsActive(vm))
        goto cleanup;

1673
    virErrorPreserveLast(&originalError);
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
    if (virAsprintf(&netdev_name, "host%s", net->info.alias) >= 0) {
        qemuDomainObjEnterMonitor(driver, vm);
        if (charDevPlugged &&
            qemuMonitorDetachCharDev(priv->mon, charDevAlias) < 0)
            VIR_WARN("Failed to remove associated chardev %s", charDevAlias);
        if (netdevPlugged &&
            qemuMonitorRemoveNetdev(priv->mon, netdev_name) < 0)
            VIR_WARN("Failed to remove network backend for netdev %s",
                     netdev_name);
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        VIR_FREE(netdev_name);
1685
    }
1686
    virErrorRestore(&originalError);
1687 1688 1689 1690
    goto cleanup;
}


1691
static int
1692
qemuDomainAttachHostPCIDevice(virQEMUDriverPtr driver,
1693 1694
                              virDomainObjPtr vm,
                              virDomainHostdevDefPtr hostdev)
1695 1696
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
1697 1698
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_HOSTDEV,
                               { .hostdev = hostdev } };
1699
    virDomainDeviceInfoPtr info = hostdev->info;
1700 1701 1702 1703
    int ret;
    char *devstr = NULL;
    int configfd = -1;
    char *configfd_name = NULL;
1704
    bool releaseaddr = false;
1705
    bool teardowncgroup = false;
1706
    bool teardownlabel = false;
1707
    bool teardowndevice = false;
1708
    int backend;
1709 1710
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    unsigned int flags = 0;
1711

1712
    if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
1713
        goto cleanup;
1714

1715 1716
    if (!cfg->relaxedACS)
        flags |= VIR_HOSTDEV_STRICT_ACS_CHECK;
1717
    if (qemuHostdevPreparePCIDevices(driver, vm->def->name, vm->def->uuid,
1718 1719
                                     &hostdev, 1, priv->qemuCaps, flags) < 0)
        goto cleanup;
1720

1721
    /* this could have been changed by qemuHostdevPreparePCIDevices */
1722 1723
    backend = hostdev->source.subsys.u.pci.backend;

1724
    switch ((virDomainHostdevSubsysPCIBackendType)backend) {
1725
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO:
1726 1727 1728 1729 1730 1731
        if (!virQEMUCapsGet(priv->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;
        }
1732 1733
        break;

1734 1735 1736 1737 1738 1739 1740 1741 1742 1743
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_DEFAULT:
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM:
        break;

    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_XEN:
    case VIR_DOMAIN_HOSTDEV_PCI_BACKEND_TYPE_LAST:
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("QEMU does not support device assignment mode '%s'"),
                       virDomainHostdevSubsysPCIBackendTypeToString(backend));
        goto error;
1744
        break;
1745 1746
    }

1747
    /* Temporarily add the hostdev to the domain definition. This is needed
1748 1749 1750 1751
     * because qemuDomainAdjustMaxMemLock() requires the hostdev to be already
     * part of the domain definition, but other functions like
     * qemuAssignDeviceHostdevAlias() used below expect it *not* to be there.
     * A better way to handle this would be nice */
1752
    vm->def->hostdevs[vm->def->nhostdevs++] = hostdev;
1753 1754 1755
    if (qemuDomainAdjustMaxMemLock(vm) < 0) {
        vm->def->hostdevs[--(vm->def->nhostdevs)] = NULL;
        goto error;
1756 1757 1758
    }
    vm->def->hostdevs[--(vm->def->nhostdevs)] = NULL;

1759
    if (qemuDomainNamespaceSetupHostdev(vm, hostdev) < 0)
1760 1761 1762
        goto error;
    teardowndevice = true;

1763
    if (qemuSetupHostdevCgroup(vm, hostdev) < 0)
1764 1765 1766
        goto error;
    teardowncgroup = true;

1767
    if (qemuSecuritySetHostdevLabel(driver, vm, hostdev) < 0)
1768
        goto error;
1769 1770
    if (backend != VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO)
        teardownlabel = true;
1771

1772
    if (qemuAssignDeviceHostdevAlias(vm->def, &info->alias, -1) < 0)
1773
        goto error;
1774 1775 1776 1777 1778 1779 1780

    if (qemuDomainIsPSeries(vm->def)) {
        /* Isolation groups are only relevant for pSeries guests */
        if (qemuDomainFillDeviceIsolationGroup(vm->def, &dev) < 0)
            goto error;
    }

1781
    if (qemuDomainEnsurePCIAddress(vm, &dev, driver) < 0)
1782 1783
        goto error;
    releaseaddr = true;
1784
    if (backend != VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
1785 1786
        configfd = qemuOpenPCIConfig(hostdev);
        if (configfd >= 0) {
1787
            if (virAsprintf(&configfd_name, "fd-%s", info->alias) < 0)
1788
                goto error;
1789
        }
1790
    }
1791

1792 1793 1794 1795 1796
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("guest unexpectedly quit during hotplug"));
        goto error;
    }
1797

1798 1799 1800
    if (!(devstr = qemuBuildPCIHostdevDevStr(vm->def, hostdev, 0,
                                             configfd_name, priv->qemuCaps)))
        goto error;
1801

1802
    qemuDomainObjEnterMonitor(driver, vm);
1803 1804 1805 1806 1807 1808 1809 1810 1811 1812

    if ((ret = qemuDomainAttachExtensionDevice(priv->mon, hostdev->info)) < 0)
        goto exit_monitor;

    if ((ret = qemuMonitorAddDeviceWithFd(priv->mon, devstr,
                                          configfd, configfd_name)) < 0) {
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, hostdev->info));
    }

 exit_monitor:
1813 1814
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto error;
1815

1816
    virDomainAuditHostdev(vm, hostdev, "attach", ret == 0);
1817 1818 1819 1820 1821 1822 1823 1824
    if (ret < 0)
        goto error;

    vm->def->hostdevs[vm->def->nhostdevs++] = hostdev;

    VIR_FREE(devstr);
    VIR_FREE(configfd_name);
    VIR_FORCE_CLOSE(configfd);
1825
    virObjectUnref(cfg);
1826 1827 1828

    return 0;

1829
 error:
1830 1831
    if (teardowncgroup && qemuTeardownHostdevCgroup(vm, hostdev) < 0)
        VIR_WARN("Unable to remove host device cgroup ACL on hotplug fail");
1832
    if (teardownlabel &&
1833
        qemuSecurityRestoreHostdevLabel(driver, vm, hostdev) < 0)
1834
        VIR_WARN("Unable to restore host device labelling on hotplug fail");
1835
    if (teardowndevice &&
1836
        qemuDomainNamespaceTeardownHostdev(vm, hostdev) < 0)
1837
        VIR_WARN("Unable to remove host device from /dev");
1838

1839
    if (releaseaddr)
1840
        qemuDomainReleaseDeviceAddress(vm, info, NULL);
1841

1842
    qemuHostdevReAttachPCIDevices(driver, vm->def->name, &hostdev, 1);
1843 1844 1845 1846 1847

    VIR_FREE(devstr);
    VIR_FREE(configfd_name);
    VIR_FORCE_CLOSE(configfd);

1848
 cleanup:
1849
    virObjectUnref(cfg);
1850 1851 1852 1853
    return -1;
}


1854 1855 1856
void
qemuDomainDelTLSObjects(virQEMUDriverPtr driver,
                        virDomainObjPtr vm,
1857
                        qemuDomainAsyncJob asyncJob,
1858 1859 1860 1861 1862 1863 1864 1865 1866
                        const char *secAlias,
                        const char *tlsAlias)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virErrorPtr orig_err;

    if (!tlsAlias && !secAlias)
        return;

1867
    virErrorPreserveLast(&orig_err);
1868

1869 1870
    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
        goto cleanup;
1871 1872 1873 1874 1875 1876 1877 1878 1879

    if (tlsAlias)
        ignore_value(qemuMonitorDelObject(priv->mon, tlsAlias));

    if (secAlias)
        ignore_value(qemuMonitorDelObject(priv->mon, secAlias));

    ignore_value(qemuDomainObjExitMonitor(driver, vm));

1880
 cleanup:
1881
    virErrorRestore(&orig_err);
1882 1883 1884 1885 1886 1887
}


int
qemuDomainAddTLSObjects(virQEMUDriverPtr driver,
                        virDomainObjPtr vm,
1888
                        qemuDomainAsyncJob asyncJob,
1889 1890 1891 1892 1893
                        virJSONValuePtr *secProps,
                        virJSONValuePtr *tlsProps)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virErrorPtr orig_err;
1894
    char *secAlias = NULL;
1895

1896
    if (!tlsProps && !secProps)
1897 1898
        return 0;

1899 1900
    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
        return -1;
1901

1902
    if (secProps && *secProps &&
1903 1904
        qemuMonitorAddObject(priv->mon, secProps, &secAlias) < 0)
        goto error;
1905

1906 1907 1908
    if (tlsProps &&
        qemuMonitorAddObject(priv->mon, tlsProps, NULL) < 0)
        goto error;
1909

1910 1911
    VIR_FREE(secAlias);

1912 1913 1914
    return qemuDomainObjExitMonitor(driver, vm);

 error:
1915
    virErrorPreserveLast(&orig_err);
1916
    ignore_value(qemuDomainObjExitMonitor(driver, vm));
1917
    virErrorRestore(&orig_err);
1918
    qemuDomainDelTLSObjects(driver, vm, asyncJob, secAlias, NULL);
1919
    VIR_FREE(secAlias);
1920 1921 1922 1923 1924

    return -1;
}


1925 1926 1927 1928 1929 1930
int
qemuDomainGetTLSObjects(virQEMUCapsPtr qemuCaps,
                        qemuDomainSecretInfoPtr secinfo,
                        const char *tlsCertdir,
                        bool tlsListen,
                        bool tlsVerify,
1931
                        const char *alias,
1932
                        virJSONValuePtr *tlsProps,
1933
                        virJSONValuePtr *secProps)
1934
{
1935 1936
    const char *secAlias = NULL;

1937 1938
    if (secinfo) {
        if (qemuBuildSecretInfoProps(secinfo, secProps) < 0)
1939 1940
            return -1;

1941
        secAlias = secinfo->s.aes.alias;
1942 1943
    }

1944
    if (qemuBuildTLSx509BackendProps(tlsCertdir, tlsListen, tlsVerify,
1945
                                     alias, secAlias, qemuCaps, tlsProps) < 0)
1946 1947 1948 1949 1950 1951
        return -1;

    return 0;
}


1952
static int
1953
qemuDomainAddChardevTLSObjects(virQEMUDriverPtr driver,
1954 1955
                               virDomainObjPtr vm,
                               virDomainChrSourceDefPtr dev,
1956
                               char *devAlias,
1957 1958
                               char *charAlias,
                               char **tlsAlias,
1959
                               const char **secAlias)
1960 1961
{
    int ret = -1;
1962
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1963
    qemuDomainObjPrivatePtr priv = vm->privateData;
1964 1965
    qemuDomainChrSourcePrivatePtr chrSourcePriv;
    qemuDomainSecretInfoPtr secinfo = NULL;
1966 1967 1968
    virJSONValuePtr tlsProps = NULL;
    virJSONValuePtr secProps = NULL;

1969 1970 1971
    /* NB: This may alter haveTLS based on cfg */
    qemuDomainPrepareChardevSourceTLS(dev, cfg);

1972
    if (dev->type != VIR_DOMAIN_CHR_TYPE_TCP ||
1973 1974 1975 1976
        dev->data.tcp.haveTLS != VIR_TRISTATE_BOOL_YES) {
        ret = 0;
        goto cleanup;
    }
1977

1978
    if (qemuDomainSecretChardevPrepare(cfg, priv, devAlias, dev) < 0)
1979 1980
        goto cleanup;

1981 1982 1983
    if ((chrSourcePriv = QEMU_DOMAIN_CHR_SOURCE_PRIVATE(dev)))
        secinfo = chrSourcePriv->secinfo;

1984 1985 1986
    if (secinfo)
        *secAlias = secinfo->s.aes.alias;

1987 1988 1989
    if (!(*tlsAlias = qemuAliasTLSObjFromSrcAlias(charAlias)))
        goto cleanup;

1990 1991 1992 1993
    if (qemuDomainGetTLSObjects(priv->qemuCaps, secinfo,
                                cfg->chardevTLSx509certdir,
                                dev->data.tcp.listen,
                                cfg->chardevTLSx509verify,
1994
                                *tlsAlias, &tlsProps, &secProps) < 0)
1995
        goto cleanup;
1996
    dev->data.tcp.tlscreds = true;
1997

1998
    if (qemuDomainAddTLSObjects(driver, vm, QEMU_ASYNC_JOB_NONE,
1999
                                &secProps, &tlsProps) < 0)
2000 2001 2002 2003 2004 2005 2006
        goto cleanup;

    ret = 0;

 cleanup:
    virJSONValueFree(tlsProps);
    virJSONValueFree(secProps);
2007
    virObjectUnref(cfg);
2008 2009 2010 2011 2012

    return ret;
}


2013 2014 2015
static int
qemuDomainDelChardevTLSObjects(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
2016
                               virDomainChrSourceDefPtr dev,
2017 2018 2019 2020 2021 2022 2023 2024
                               const char *inAlias)
{
    int ret = -1;
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    qemuDomainObjPrivatePtr priv = vm->privateData;
    char *tlsAlias = NULL;
    char *secAlias = NULL;

2025 2026 2027 2028 2029 2030
    if (dev->type != VIR_DOMAIN_CHR_TYPE_TCP ||
        dev->data.tcp.haveTLS != VIR_TRISTATE_BOOL_YES) {
        ret = 0;
        goto cleanup;
    }

2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060
    if (!(tlsAlias = qemuAliasTLSObjFromSrcAlias(inAlias)))
        goto cleanup;

    /* Best shot at this as the secinfo is destroyed after process launch
     * and this path does not recreate it. Thus, if the config has the
     * secret UUID and we have a serial TCP chardev, then formulate a
     * secAlias which we'll attempt to destroy. */
    if (cfg->chardevTLSx509secretUUID &&
        !(secAlias = qemuDomainGetSecretAESAlias(inAlias, false)))
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);

    ignore_value(qemuMonitorDelObject(priv->mon, tlsAlias));
    if (secAlias)
        ignore_value(qemuMonitorDelObject(priv->mon, secAlias));

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    VIR_FREE(tlsAlias);
    VIR_FREE(secAlias);
    virObjectUnref(cfg);
    return ret;
}


2061
int qemuDomainAttachRedirdevDevice(virQEMUDriverPtr driver,
2062 2063 2064
                                   virDomainObjPtr vm,
                                   virDomainRedirdevDefPtr redirdev)
{
2065
    int ret = -1;
2066
    qemuDomainObjPrivatePtr priv = vm->privateData;
2067
    virDomainDefPtr def = vm->def;
2068
    char *charAlias = NULL;
2069
    char *devstr = NULL;
2070
    bool chardevAdded = false;
2071
    char *tlsAlias = NULL;
2072
    const char *secAlias = NULL;
2073
    bool need_release = false;
2074
    virErrorPtr orig_err;
2075

2076
    if (qemuAssignDeviceRedirdevAlias(def, redirdev, -1) < 0)
2077 2078
        goto cleanup;

2079
    if (!(charAlias = qemuAliasChardevFromDevAlias(redirdev->info.alias)))
2080 2081
        goto cleanup;

2082
    if ((virDomainUSBAddressEnsure(priv->usbaddrs, &redirdev->info)) < 0)
2083
        goto cleanup;
2084
    need_release = true;
2085

2086
    if (!(devstr = qemuBuildRedirdevDevStr(def, redirdev, priv->qemuCaps)))
2087
        goto cleanup;
2088

2089
    if (VIR_REALLOC_N(def->redirdevs, def->nredirdevs+1) < 0)
2090
        goto cleanup;
2091

2092
    if (qemuDomainAddChardevTLSObjects(driver, vm, redirdev->source,
2093 2094
                                       redirdev->info.alias, charAlias,
                                       &tlsAlias, &secAlias) < 0)
2095
        goto audit;
2096

2097
    qemuDomainObjEnterMonitor(driver, vm);
2098

2099 2100
    if (qemuMonitorAttachCharDev(priv->mon,
                                 charAlias,
2101
                                 redirdev->source) < 0)
2102 2103
        goto exit_monitor;
    chardevAdded = true;
2104

2105 2106
    if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
        goto exit_monitor;
2107

2108 2109
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto audit;
2110

2111
    def->redirdevs[def->nredirdevs++] = redirdev;
2112 2113 2114 2115
    ret = 0;
 audit:
    virDomainAuditRedirdev(vm, redirdev, "attach", ret == 0);
 cleanup:
2116 2117
    if (ret < 0 && need_release)
        qemuDomainReleaseDeviceAddress(vm, &redirdev->info, NULL);
2118
    VIR_FREE(tlsAlias);
2119
    VIR_FREE(charAlias);
2120
    VIR_FREE(devstr);
2121
    return ret;
2122 2123

 exit_monitor:
2124
    virErrorPreserveLast(&orig_err);
2125 2126 2127
    /* detach associated chardev on error */
    if (chardevAdded)
        ignore_value(qemuMonitorDetachCharDev(priv->mon, charAlias));
2128
    ignore_value(qemuDomainObjExitMonitor(driver, vm));
2129
    virErrorRestore(&orig_err);
2130 2131
    qemuDomainDelTLSObjects(driver, vm, QEMU_ASYNC_JOB_NONE,
                            secAlias, tlsAlias);
2132
    goto audit;
2133 2134
}

2135 2136 2137
static int
qemuDomainChrPreInsert(virDomainDefPtr vmdef,
                       virDomainChrDefPtr chr)
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151
{
    if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE &&
        chr->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("attaching serial console is not supported"));
        return -1;
    }

    if (virDomainChrFind(vmdef, chr)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("chardev already exists"));
        return -1;
    }

2152
    if (virDomainChrPreAlloc(vmdef, chr) < 0)
2153 2154
        return -1;

2155 2156 2157 2158
    /* Due to historical reasons, the first console is an alias to the
     * first serial device (if such exists). If this is the case, we need to
     * create an object for the first console as well.
     */
2159 2160 2161 2162 2163
    if (vmdef->nserials == 0 && vmdef->nconsoles == 0 &&
        chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL) {
        if (!vmdef->consoles && VIR_ALLOC(vmdef->consoles) < 0)
            return -1;

2164 2165
        /* We'll be dealing with serials[0] directly, so NULL is fine here. */
        if (!(vmdef->consoles[0] = virDomainChrDefNew(NULL))) {
2166
            VIR_FREE(vmdef->consoles);
2167 2168
            return -1;
        }
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180
        vmdef->nconsoles++;
    }
    return 0;
}

static void
qemuDomainChrInsertPreAlloced(virDomainDefPtr vmdef,
                              virDomainChrDefPtr chr)
{
    virDomainChrInsertPreAlloced(vmdef, chr);
    if (vmdef->nserials == 1 && vmdef->nconsoles == 0 &&
        chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL) {
2181 2182 2183 2184 2185 2186
        vmdef->nconsoles = 1;

        /* Create an console alias for the serial port */
        vmdef->consoles[0]->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE;
        vmdef->consoles[0]->targetType = VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL;
    }
2187 2188 2189 2190 2191 2192 2193 2194 2195
}

static void
qemuDomainChrInsertPreAllocCleanup(virDomainDefPtr vmdef,
                                   virDomainChrDefPtr chr)
{
    /* Remove the stub console added by qemuDomainChrPreInsert */
    if (vmdef->nserials == 0 && vmdef->nconsoles == 1 &&
        chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL) {
2196
        virDomainChrDefFree(vmdef->consoles[0]);
2197 2198 2199 2200
        VIR_FREE(vmdef->consoles);
        vmdef->nconsoles = 0;
    }
}
2201

2202 2203 2204 2205 2206 2207 2208 2209 2210
int
qemuDomainChrInsert(virDomainDefPtr vmdef,
                    virDomainChrDefPtr chr)
{
    if (qemuDomainChrPreInsert(vmdef, chr) < 0) {
        qemuDomainChrInsertPreAllocCleanup(vmdef, chr);
        return -1;
    }
    qemuDomainChrInsertPreAlloced(vmdef, chr);
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
    return 0;
}

virDomainChrDefPtr
qemuDomainChrRemove(virDomainDefPtr vmdef,
                    virDomainChrDefPtr chr)
{
    virDomainChrDefPtr ret;
    bool removeCompat;

    if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE &&
        chr->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("detaching serial console is not supported"));
        return NULL;
    }

    /* Due to some crazy backcompat stuff, the first serial device is an alias
     * to the first console too. If this is the case, the definition must be
     * duplicated as first console device. */
    removeCompat = vmdef->nserials && vmdef->nconsoles &&
        vmdef->consoles[0]->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE &&
        vmdef->consoles[0]->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL &&
        virDomainChrEquals(vmdef->serials[0], chr);

    if (!(ret = virDomainChrRemove(vmdef, chr))) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("device not present in domain configuration"));
            return NULL;
    }

    if (removeCompat)
        VIR_DELETE_ELEMENT(vmdef->consoles, 0, vmdef->nconsoles);

    return ret;
}
2247

2248 2249 2250 2251
/* Returns  1 if the address will need to be released later,
 *         -1 on error
 *          0 otherwise
 */
2252
static int
2253
qemuDomainAttachChrDeviceAssignAddr(virDomainObjPtr vm,
2254 2255
                                    virDomainChrDefPtr chr,
                                    virQEMUDriverPtr driver)
2256
{
2257 2258
    virDomainDefPtr def = vm->def;
    qemuDomainObjPrivatePtr priv = vm->privateData;
2259
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_CHR, { .chr = chr } };
2260

2261 2262
    if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE &&
        chr->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO) {
2263
        if (virDomainVirtioSerialAddrAutoAssign(def, &chr->info, true) < 0)
2264
            return -1;
2265
        return 0;
2266 2267 2268

    } else if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
               chr->targetType == VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_PCI) {
2269
        if (qemuDomainEnsurePCIAddress(vm, &dev, driver) < 0)
2270 2271
            return -1;
        return 1;
2272

2273
    } else if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL &&
2274 2275
               chr->targetType == VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_USB) {
        if (virDomainUSBAddressEnsure(priv->usbaddrs, &chr->info) < 0)
2276 2277
            return -1;
        return 1;
2278

2279 2280
    } else if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
               chr->targetType == VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO) {
2281
        if (virDomainVirtioSerialAddrAutoAssign(def, &chr->info, false) < 0)
2282
            return -1;
2283
        return 0;
2284 2285 2286 2287 2288 2289
    }

    if (chr->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_SERIAL ||
        chr->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Unsupported address type for character device"));
2290
        return -1;
2291 2292
    }

2293
    return 0;
2294 2295
}

2296
int qemuDomainAttachChrDevice(virQEMUDriverPtr driver,
2297 2298 2299
                              virDomainObjPtr vm,
                              virDomainChrDefPtr chr)
{
2300
    int ret = -1, rc;
2301
    qemuDomainObjPrivatePtr priv = vm->privateData;
2302
    virErrorPtr orig_err;
2303 2304
    virDomainDefPtr vmdef = vm->def;
    char *devstr = NULL;
2305
    virDomainChrSourceDefPtr dev = chr->source;
2306
    char *charAlias = NULL;
2307
    bool chardevAttached = false;
2308
    bool teardowncgroup = false;
2309
    bool teardowndevice = false;
2310
    bool teardownlabel = false;
2311
    char *tlsAlias = NULL;
2312
    const char *secAlias = NULL;
2313
    bool need_release = false;
2314

2315 2316 2317 2318
    if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
        qemuDomainPrepareChannel(chr, priv->channelTargetDir) < 0)
        goto cleanup;

2319
    if (qemuAssignDeviceChrAlias(vmdef, chr, -1) < 0)
2320
        goto cleanup;
2321

2322
    if ((rc = qemuDomainAttachChrDeviceAssignAddr(vm, chr, driver)) < 0)
2323 2324 2325
        goto cleanup;
    if (rc == 1)
        need_release = true;
2326

2327
    if (qemuDomainNamespaceSetupChardev(vm, chr) < 0)
2328 2329 2330
        goto cleanup;
    teardowndevice = true;

2331 2332 2333 2334
    if (qemuSecuritySetChardevLabel(driver, vm, chr) < 0)
        goto cleanup;
    teardownlabel = true;

2335 2336 2337 2338
    if (qemuSetupChardevCgroup(vm, chr) < 0)
        goto cleanup;
    teardowncgroup = true;

2339
    if (qemuBuildChrDeviceStr(&devstr, vmdef, chr, priv->qemuCaps) < 0)
2340
        goto cleanup;
2341

2342
    if (!(charAlias = qemuAliasChardevFromDevAlias(chr->info.alias)))
2343 2344
        goto cleanup;

2345
    if (qemuDomainChrPreInsert(vmdef, chr) < 0)
2346 2347
        goto cleanup;

2348
    if (qemuDomainAddChardevTLSObjects(driver, vm, dev,
2349
                                       chr->info.alias, charAlias,
2350
                                       &tlsAlias, &secAlias) < 0)
2351
        goto audit;
2352

2353
    qemuDomainObjEnterMonitor(driver, vm);
2354

2355
    if (qemuMonitorAttachCharDev(priv->mon, charAlias, chr->source) < 0)
2356 2357
        goto exit_monitor;
    chardevAttached = true;
2358 2359

    if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
2360
        goto exit_monitor;
2361

2362 2363
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto audit;
2364

2365
    qemuDomainChrInsertPreAlloced(vmdef, chr);
2366
    ret = 0;
2367 2368
 audit:
    virDomainAuditChardev(vm, NULL, chr, "attach", ret == 0);
2369
 cleanup:
2370 2371 2372 2373 2374 2375 2376
    if (ret < 0) {
        if (virDomainObjIsActive(vm))
            qemuDomainChrInsertPreAllocCleanup(vmdef, chr);
        if (need_release)
            qemuDomainReleaseDeviceAddress(vm, &chr->info, NULL);
        if (teardowncgroup && qemuTeardownChardevCgroup(vm, chr) < 0)
            VIR_WARN("Unable to remove chr device cgroup ACL on hotplug fail");
2377 2378
        if (teardownlabel && qemuSecurityRestoreChardevLabel(driver, vm, chr) < 0)
            VIR_WARN("Unable to restore security label on char device");
2379
        if (teardowndevice && qemuDomainNamespaceTeardownChardev(vm, chr) < 0)
2380
            VIR_WARN("Unable to remove chr device from /dev");
2381
    }
2382
    VIR_FREE(tlsAlias);
2383 2384 2385
    VIR_FREE(charAlias);
    VIR_FREE(devstr);
    return ret;
2386

2387
 exit_monitor:
2388
    virErrorPreserveLast(&orig_err);
2389
    /* detach associated chardev on error */
2390 2391
    if (chardevAttached)
        qemuMonitorDetachCharDev(priv->mon, charAlias);
2392
    ignore_value(qemuDomainObjExitMonitor(driver, vm));
2393
    virErrorRestore(&orig_err);
2394

2395 2396
    qemuDomainDelTLSObjects(driver, vm, QEMU_ASYNC_JOB_NONE,
                            secAlias, tlsAlias);
2397
    goto audit;
2398 2399
}

2400 2401

int
2402
qemuDomainAttachRNGDevice(virQEMUDriverPtr driver,
2403 2404 2405 2406
                          virDomainObjPtr vm,
                          virDomainRNGDefPtr rng)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2407
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_RNG, { .rng = rng } };
2408
    virErrorPtr orig_err;
2409 2410 2411
    char *devstr = NULL;
    char *charAlias = NULL;
    char *objAlias = NULL;
2412
    char *tlsAlias = NULL;
2413
    const char *secAlias = NULL;
2414
    bool releaseaddr = false;
2415
    bool teardowncgroup = false;
2416
    bool teardowndevice = false;
2417
    bool chardevAdded = false;
2418 2419 2420
    virJSONValuePtr props = NULL;
    int ret = -1;

2421
    if (qemuAssignDeviceRNGAlias(vm->def, rng) < 0)
2422
        goto cleanup;
2423 2424 2425

    /* preallocate space for the device definition */
    if (VIR_REALLOC_N(vm->def->rngs, vm->def->nrngs + 1) < 0)
2426
        goto cleanup;
2427

2428 2429
    if (qemuDomainEnsureVirtioAddress(&releaseaddr, vm, &dev, "rng") < 0)
        return -1;
2430

2431
    if (qemuDomainNamespaceSetupRNG(vm, rng) < 0)
2432 2433 2434
        goto cleanup;
    teardowndevice = true;

2435 2436 2437 2438
    if (qemuSetupRNGCgroup(vm, rng) < 0)
        goto cleanup;
    teardowncgroup = true;

2439 2440 2441 2442
    /* build required metadata */
    if (!(devstr = qemuBuildRNGDevStr(vm->def, rng, priv->qemuCaps)))
        goto cleanup;

2443
    if (qemuBuildRNGBackendProps(rng, priv->qemuCaps, &props) < 0)
2444 2445
        goto cleanup;

2446
    if (!(charAlias = qemuAliasChardevFromDevAlias(rng->info.alias)))
2447 2448
        goto cleanup;

2449
    if (rng->backend == VIR_DOMAIN_RNG_BACKEND_EGD) {
2450
        if (qemuDomainAddChardevTLSObjects(driver, vm,
2451 2452 2453
                                           rng->source.chardev,
                                           rng->info.alias, charAlias,
                                           &tlsAlias, &secAlias) < 0)
2454
            goto audit;
2455 2456
    }

2457
    qemuDomainObjEnterMonitor(driver, vm);
2458

2459 2460 2461
    if (rng->backend == VIR_DOMAIN_RNG_BACKEND_EGD &&
        qemuMonitorAttachCharDev(priv->mon, charAlias,
                                 rng->source.chardev) < 0)
2462 2463
        goto exit_monitor;
    chardevAdded = true;
2464

2465
    if (qemuMonitorAddObject(priv->mon, &props, &objAlias) < 0)
2466
        goto exit_monitor;
2467

2468
    if (qemuDomainAttachExtensionDevice(priv->mon, &rng->info) < 0)
2469
        goto exit_monitor;
2470

2471 2472 2473 2474 2475
    if (qemuMonitorAddDevice(priv->mon, devstr) < 0) {
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, &rng->info));
        goto exit_monitor;
    }

2476
    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
2477
        releaseaddr = false;
2478 2479 2480
        goto cleanup;
    }

2481
    VIR_APPEND_ELEMENT_INPLACE(vm->def->rngs, vm->def->nrngs, rng);
2482 2483 2484 2485 2486 2487

    ret = 0;

 audit:
    virDomainAuditRNG(vm, NULL, rng, "attach", ret == 0);
 cleanup:
2488
    virJSONValueFree(props);
2489 2490 2491 2492 2493
    if (ret < 0) {
        if (releaseaddr)
            qemuDomainReleaseDeviceAddress(vm, &rng->info, NULL);
        if (teardowncgroup && qemuTeardownRNGCgroup(vm, rng) < 0)
            VIR_WARN("Unable to remove RNG device cgroup ACL on hotplug fail");
2494
        if (teardowndevice && qemuDomainNamespaceTeardownRNG(vm, rng) < 0)
2495
            VIR_WARN("Unable to remove chr device from /dev");
2496 2497
    }

2498
    VIR_FREE(tlsAlias);
2499 2500 2501 2502 2503
    VIR_FREE(charAlias);
    VIR_FREE(objAlias);
    VIR_FREE(devstr);
    return ret;

2504
 exit_monitor:
2505
    virErrorPreserveLast(&orig_err);
2506
    if (objAlias)
2507 2508
        ignore_value(qemuMonitorDelObject(priv->mon, objAlias));
    if (rng->backend == VIR_DOMAIN_RNG_BACKEND_EGD && chardevAdded)
2509
        ignore_value(qemuMonitorDetachCharDev(priv->mon, charAlias));
2510 2511
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        releaseaddr = false;
2512
    virErrorRestore(&orig_err);
2513

2514 2515
    qemuDomainDelTLSObjects(driver, vm, QEMU_ASYNC_JOB_NONE,
                            secAlias, tlsAlias);
2516 2517 2518 2519
    goto audit;
}


2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535
/**
 * qemuDomainAttachMemory:
 * @driver: qemu driver data
 * @vm: VM object
 * @mem: Definition of the memory device to be attached. @mem is always consumed
 *
 * Attaches memory device described by @mem to domain @vm.
 *
 * Returns 0 on success -1 on error.
 */
int
qemuDomainAttachMemory(virQEMUDriverPtr driver,
                       virDomainObjPtr vm,
                       virDomainMemoryDefPtr mem)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2536
    virErrorPtr orig_err;
2537
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
2538
    unsigned long long oldmem = virDomainDefGetMemoryTotal(vm->def);
2539
    unsigned long long newmem = oldmem + mem->size;
2540 2541
    char *devstr = NULL;
    char *objalias = NULL;
2542
    bool objAdded = false;
M
Michal Privoznik 已提交
2543
    bool teardownlabel = false;
2544
    bool teardowncgroup = false;
M
Michal Privoznik 已提交
2545
    bool teardowndevice = false;
2546
    virJSONValuePtr props = NULL;
2547
    virObjectEventPtr event;
2548 2549 2550
    int id;
    int ret = -1;

2551 2552 2553
    qemuDomainMemoryDeviceAlignSize(vm->def, mem);

    if (qemuDomainDefValidateMemoryHotplug(vm->def, priv->qemuCaps, mem) < 0)
2554 2555
        goto cleanup;

2556 2557 2558
    if (qemuDomainAssignMemoryDeviceSlot(vm->def, mem) < 0)
        goto cleanup;

2559 2560 2561
    /* in cases where we are using a VM with aliases generated according to the
     * index of the memory device we need to keep continue using that scheme */
    if (qemuAssignDeviceMemoryAlias(vm->def, mem, priv->memAliasOrderMismatch) < 0)
2562 2563 2564 2565 2566
        goto cleanup;

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

2567
    if (!(devstr = qemuBuildMemoryDeviceStr(mem)))
2568 2569
        goto cleanup;

2570
    if (qemuBuildMemoryBackendProps(&props, objalias, cfg,
2571
                                    priv->qemuCaps, vm->def, mem, NULL, true) < 0)
2572 2573
        goto cleanup;

2574
    if (qemuProcessBuildDestroyMemoryPaths(driver, vm, mem, true) < 0)
2575 2576
        goto cleanup;

2577
    if (qemuDomainNamespaceSetupMemory(vm, mem) < 0)
M
Michal Privoznik 已提交
2578 2579 2580
        goto cleanup;
    teardowndevice = true;

2581 2582 2583 2584
    if (qemuSetupMemoryDevicesCgroup(vm, mem) < 0)
        goto cleanup;
    teardowncgroup = true;

M
Michal Privoznik 已提交
2585
    if (qemuSecuritySetMemoryLabel(driver, vm, mem) < 0)
2586
        goto cleanup;
M
Michal Privoznik 已提交
2587
    teardownlabel = true;
2588

M
Michal Privoznik 已提交
2589 2590 2591 2592
    if (virDomainMemoryInsert(vm->def, mem) < 0)
        goto cleanup;

    if (qemuDomainAdjustMaxMemLock(vm) < 0)
2593 2594
        goto removedef;

2595
    qemuDomainObjEnterMonitor(driver, vm);
2596
    if (qemuMonitorAddObject(priv->mon, &props, NULL) < 0)
2597
        goto exit_monitor;
2598
    objAdded = true;
2599

2600
    if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
2601
        goto exit_monitor;
2602 2603 2604 2605

    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        /* we shouldn't touch mem now, as the def might be freed */
        mem = NULL;
2606
        goto audit;
2607 2608
    }

2609
    event = virDomainEventDeviceAddedNewFromObj(vm, objalias);
2610
    virObjectEventStateQueue(driver->domainEventState, event);
2611

2612 2613
    /* fix the balloon size */
    ignore_value(qemuProcessRefreshBalloonState(driver, vm, QEMU_ASYNC_JOB_NONE));
2614

2615 2616 2617 2618 2619 2620 2621 2622 2623
    /* mem is consumed by vm->def */
    mem = NULL;

    /* this step is best effort, removing the device would be so much trouble */
    ignore_value(qemuDomainUpdateMemoryDeviceInfo(driver, vm,
                                                  QEMU_ASYNC_JOB_NONE));

    ret = 0;

2624 2625
 audit:
    virDomainAuditMemory(vm, oldmem, newmem, "update", ret == 0);
2626
 cleanup:
M
Michal Privoznik 已提交
2627
    if (mem && ret < 0) {
2628 2629
        if (teardowncgroup && qemuTeardownMemoryDevicesCgroup(vm, mem) < 0)
            VIR_WARN("Unable to remove memory device cgroup ACL on hotplug fail");
M
Michal Privoznik 已提交
2630 2631
        if (teardownlabel && qemuSecurityRestoreMemoryLabel(driver, vm, mem) < 0)
            VIR_WARN("Unable to restore security label on memdev");
M
Michal Privoznik 已提交
2632
        if (teardowndevice &&
2633
            qemuDomainNamespaceTeardownMemory(vm, mem) <  0)
M
Michal Privoznik 已提交
2634
            VIR_WARN("Unable to remove memory device from /dev");
M
Michal Privoznik 已提交
2635 2636 2637
    }

    virJSONValueFree(props);
2638 2639 2640 2641 2642 2643
    virObjectUnref(cfg);
    VIR_FREE(devstr);
    VIR_FREE(objalias);
    virDomainMemoryDefFree(mem);
    return ret;

2644
 exit_monitor:
2645
    virErrorPreserveLast(&orig_err);
2646 2647
    if (objAdded)
        ignore_value(qemuMonitorDelObject(priv->mon, objalias));
2648 2649
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        mem = NULL;
2650 2651 2652 2653

    if (objAdded && mem)
        ignore_value(qemuProcessDestroyMemoryBackingPath(driver, vm, mem));

2654
    virErrorRestore(&orig_err);
2655
    if (!mem)
2656
        goto audit;
2657

2658
 removedef:
2659 2660 2661 2662 2663
    if ((id = virDomainMemoryFindByDef(vm->def, mem)) >= 0)
        mem = virDomainMemoryRemove(vm->def, id);
    else
        mem = NULL;

2664
    /* reset the mlock limit */
2665
    virErrorPreserveLast(&orig_err);
2666
    ignore_value(qemuDomainAdjustMaxMemLock(vm));
2667
    virErrorRestore(&orig_err);
2668

2669
    goto audit;
2670 2671 2672
}


2673
static int
2674
qemuDomainAttachHostUSBDevice(virQEMUDriverPtr driver,
2675 2676
                              virDomainObjPtr vm,
                              virDomainHostdevDefPtr hostdev)
2677 2678 2679
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    char *devstr = NULL;
2680
    bool added = false;
2681
    bool teardowncgroup = false;
2682
    bool teardownlabel = false;
2683
    bool teardowndevice = false;
2684 2685
    int ret = -1;

2686 2687
    if (virDomainUSBAddressEnsure(priv->usbaddrs, hostdev->info) < 0)
        return -1;
2688

2689
    if (qemuHostdevPrepareUSBDevices(driver, vm->def->name, &hostdev, 1, 0) < 0)
2690 2691 2692
        goto cleanup;

    added = true;
2693

2694
    if (qemuDomainNamespaceSetupHostdev(vm, hostdev) < 0)
2695 2696 2697
        goto cleanup;
    teardowndevice = true;

2698
    if (qemuSetupHostdevCgroup(vm, hostdev) < 0)
2699 2700 2701
        goto cleanup;
    teardowncgroup = true;

2702
    if (qemuSecuritySetHostdevLabel(driver, vm, hostdev) < 0)
2703 2704 2705
        goto cleanup;
    teardownlabel = true;

2706 2707 2708 2709
    if (qemuAssignDeviceHostdevAlias(vm->def, &hostdev->info->alias, -1) < 0)
        goto cleanup;
    if (!(devstr = qemuBuildUSBHostdevDevStr(vm->def, hostdev, priv->qemuCaps)))
        goto cleanup;
2710

2711
    if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs+1) < 0)
2712
        goto cleanup;
2713

2714
    qemuDomainObjEnterMonitor(driver, vm);
2715
    ret = qemuMonitorAddDevice(priv->mon, devstr);
2716 2717 2718 2719
    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        ret = -1;
        goto cleanup;
    }
2720
    virDomainAuditHostdev(vm, hostdev, "attach", ret == 0);
2721
    if (ret < 0)
2722
        goto cleanup;
2723 2724 2725

    vm->def->hostdevs[vm->def->nhostdevs++] = hostdev;

2726
    ret = 0;
2727
 cleanup:
2728 2729 2730 2731
    if (ret < 0) {
        if (teardowncgroup && qemuTeardownHostdevCgroup(vm, hostdev) < 0)
            VIR_WARN("Unable to remove host device cgroup ACL on hotplug fail");
        if (teardownlabel &&
2732
            qemuSecurityRestoreHostdevLabel(driver, vm, hostdev) < 0)
2733
            VIR_WARN("Unable to restore host device labelling on hotplug fail");
2734
        if (teardowndevice &&
2735
            qemuDomainNamespaceTeardownHostdev(vm, hostdev) < 0)
2736
            VIR_WARN("Unable to remove host device from /dev");
2737
        if (added)
2738
            qemuHostdevReAttachUSBDevices(driver, vm->def->name, &hostdev, 1);
2739
        virDomainUSBAddressRelease(priv->usbaddrs, hostdev->info);
2740
    }
2741
    VIR_FREE(devstr);
2742
    return ret;
2743 2744
}

2745

2746
static int
2747
qemuDomainAttachHostSCSIDevice(virQEMUDriverPtr driver,
2748 2749 2750
                               virDomainObjPtr vm,
                               virDomainHostdevDefPtr hostdev)
{
2751
    size_t i;
2752 2753
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
2754
    virErrorPtr orig_err;
2755 2756
    char *devstr = NULL;
    char *drvstr = NULL;
2757
    char *drivealias = NULL;
2758
    char *secobjAlias = NULL;
2759
    bool teardowncgroup = false;
2760
    bool teardownlabel = false;
2761
    bool teardowndevice = false;
2762
    bool driveAdded = false;
2763 2764
    virJSONValuePtr secobjProps = NULL;
    virDomainHostdevSubsysSCSIPtr scsisrc = &hostdev->source.subsys.u.scsi;
2765
    qemuDomainSecretInfoPtr secinfo = NULL;
2766

2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777
    /* Let's make sure the disk has a controller defined and loaded before
     * trying to add it. The controller used by the disk must exist before a
     * qemu command line string is generated.
     *
     * Ensure that the given controller and all controllers with a smaller index
     * exist; there must not be any missing index in between.
     */
    for (i = 0; i <= hostdev->info->addr.drive.controller; i++) {
        if (!qemuDomainFindOrCreateSCSIDiskController(driver, vm, i))
            return -1;
    }
2778

2779
    if (qemuHostdevPrepareSCSIDevices(driver, vm->def->name, &hostdev, 1) < 0)
2780 2781
        return -1;

2782
    if (qemuDomainNamespaceSetupHostdev(vm, hostdev) < 0)
2783 2784 2785
        goto cleanup;
    teardowndevice = true;

2786
    if (qemuSetupHostdevCgroup(vm, hostdev) < 0)
2787 2788 2789
        goto cleanup;
    teardowncgroup = true;

2790
    if (qemuSecuritySetHostdevLabel(driver, vm, hostdev) < 0)
2791 2792 2793
        goto cleanup;
    teardownlabel = true;

2794
    if (qemuAssignDeviceHostdevAlias(vm->def, &hostdev->info->alias, -1) < 0)
2795 2796
        goto cleanup;

2797
    if (qemuDomainSecretHostdevPrepare(priv, hostdev) < 0)
2798 2799
        goto cleanup;

2800 2801 2802
    if (scsisrc->protocol == VIR_DOMAIN_HOSTDEV_SCSI_PROTOCOL_TYPE_ISCSI) {
        qemuDomainStorageSourcePrivatePtr srcPriv =
            QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(scsisrc->u.iscsi.src);
2803 2804
        if (srcPriv)
            secinfo = srcPriv->secinfo;
2805 2806
    }

2807 2808 2809 2810 2811 2812
    if (secinfo && secinfo->type == VIR_DOMAIN_SECRET_INFO_TYPE_AES) {
        if (qemuBuildSecretInfoProps(secinfo, &secobjProps) < 0)
            goto cleanup;
    }

    if (!(drvstr = qemuBuildSCSIHostdevDrvStr(hostdev, priv->qemuCaps)))
2813 2814
        goto cleanup;

2815 2816 2817
    if (!(drivealias = qemuAliasFromHostdev(hostdev)))
        goto cleanup;

2818
    if (!(devstr = qemuBuildSCSIHostdevDevStr(vm->def, hostdev)))
2819 2820
        goto cleanup;

2821
    if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
2822 2823 2824 2825
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);

2826 2827 2828
    if (secobjProps &&
        qemuMonitorAddObject(priv->mon, &secobjProps, &secobjAlias) < 0)
        goto exit_monitor;
2829

2830
    if (qemuMonitorAddDrive(priv->mon, drvstr) < 0)
2831 2832
        goto exit_monitor;
    driveAdded = true;
2833 2834

    if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
2835
        goto exit_monitor;
2836 2837

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
2838
        goto cleanup;
2839 2840

    virDomainAuditHostdev(vm, hostdev, "attach", true);
2841 2842 2843 2844

    vm->def->hostdevs[vm->def->nhostdevs++] = hostdev;

    ret = 0;
2845

2846
 cleanup:
2847
    if (ret < 0) {
2848
        qemuHostdevReAttachSCSIDevices(driver, vm->def->name, &hostdev, 1);
2849 2850
        if (teardowncgroup && qemuTeardownHostdevCgroup(vm, hostdev) < 0)
            VIR_WARN("Unable to remove host device cgroup ACL on hotplug fail");
2851
        if (teardownlabel &&
2852
            qemuSecurityRestoreHostdevLabel(driver, vm, hostdev) < 0)
2853
            VIR_WARN("Unable to restore host device labelling on hotplug fail");
2854
        if (teardowndevice &&
2855
            qemuDomainNamespaceTeardownHostdev(vm, hostdev) < 0)
2856
            VIR_WARN("Unable to remove host device from /dev");
2857
    }
2858 2859
    qemuDomainSecretHostdevDestroy(hostdev);
    virJSONValueFree(secobjProps);
2860
    VIR_FREE(secobjAlias);
2861
    VIR_FREE(drivealias);
2862 2863 2864
    VIR_FREE(drvstr);
    VIR_FREE(devstr);
    return ret;
2865

2866
 exit_monitor:
2867
    virErrorPreserveLast(&orig_err);
2868
    if (driveAdded && qemuMonitorDriveDel(priv->mon, drivealias) < 0) {
2869 2870 2871
        VIR_WARN("Unable to remove drive %s (%s) after failed "
                 "qemuMonitorAddDevice",
                 drvstr, devstr);
2872
    }
2873 2874
    if (secobjAlias)
        ignore_value(qemuMonitorDelObject(priv->mon, secobjAlias));
2875
    ignore_value(qemuDomainObjExitMonitor(driver, vm));
2876
    virErrorRestore(&orig_err);
2877 2878 2879 2880

    virDomainAuditHostdev(vm, hostdev, "attach", false);

    goto cleanup;
2881 2882
}

2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897
static int
qemuDomainAttachSCSIVHostDevice(virQEMUDriverPtr driver,
                                virDomainObjPtr vm,
                                virDomainHostdevDefPtr hostdev)
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_HOSTDEV,
                               { .hostdev = hostdev } };
    virDomainCCWAddressSetPtr ccwaddrs = NULL;
    char *vhostfdName = NULL;
    int vhostfd = -1;
    char *devstr = NULL;
    bool teardowncgroup = false;
    bool teardownlabel = false;
2898
    bool teardowndevice = false;
2899 2900
    bool releaseaddr = false;

2901
    if (qemuHostdevPrepareSCSIVHostDevices(driver, vm->def->name, &hostdev, 1) < 0)
2902 2903
        return -1;

2904
    if (qemuDomainNamespaceSetupHostdev(vm, hostdev) < 0)
2905 2906 2907
        goto cleanup;
    teardowndevice = true;

2908 2909 2910 2911
    if (qemuSetupHostdevCgroup(vm, hostdev) < 0)
        goto cleanup;
    teardowncgroup = true;

2912
    if (qemuSecuritySetHostdevLabel(driver, vm, hostdev) < 0)
2913 2914 2915 2916 2917 2918 2919 2920 2921 2922
        goto cleanup;
    teardownlabel = true;

    if (virSCSIVHostOpenVhostSCSI(&vhostfd) < 0)
        goto cleanup;

    if (virAsprintf(&vhostfdName, "vhostfd-%d", vhostfd) < 0)
        goto cleanup;

    if (hostdev->info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) {
2923
        if (qemuDomainIsS390CCW(vm->def) &&
2924
            virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_CCW))
2925 2926 2927 2928 2929
            hostdev->info->type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW;
    }

    if (hostdev->info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE ||
        hostdev->info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) {
2930
        if (qemuDomainEnsurePCIAddress(vm, &dev, driver) < 0)
2931 2932
            goto cleanup;
    } else if (hostdev->info->type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW) {
2933
        if (!(ccwaddrs = virDomainCCWAddressSetCreateFromDomain(vm->def)))
2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954
            goto cleanup;
        if (virDomainCCWAddressAssign(hostdev->info, ccwaddrs,
                                      !hostdev->info->addr.ccw.assigned) < 0)
            goto cleanup;
    }
    releaseaddr = true;

    if (qemuAssignDeviceHostdevAlias(vm->def, &hostdev->info->alias, -1) < 0)
        goto cleanup;

    if (!(devstr = qemuBuildSCSIVHostHostdevDevStr(vm->def,
                                                   hostdev,
                                                   priv->qemuCaps,
                                                   vhostfdName)))
        goto cleanup;

    if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);

2955 2956 2957 2958 2959 2960 2961 2962
    if ((ret = qemuDomainAttachExtensionDevice(priv->mon, hostdev->info)) < 0)
        goto exit_monitor;

    if ((ret = qemuMonitorAddDeviceWithFd(priv->mon, devstr, vhostfd,
                                          vhostfdName)) < 0) {
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, hostdev->info));
        goto exit_monitor;
    }
2963

2964
 exit_monitor:
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978
    if (qemuDomainObjExitMonitor(driver, vm) < 0 || ret < 0)
        goto audit;

    vm->def->hostdevs[vm->def->nhostdevs++] = hostdev;
    ret = 0;

 audit:
    virDomainAuditHostdev(vm, hostdev, "attach", (ret == 0));

 cleanup:
    if (ret < 0) {
        if (teardowncgroup && qemuTeardownHostdevCgroup(vm, hostdev) < 0)
            VIR_WARN("Unable to remove host device cgroup ACL on hotplug fail");
        if (teardownlabel &&
2979
            qemuSecurityRestoreHostdevLabel(driver, vm, hostdev) < 0)
2980
            VIR_WARN("Unable to restore host device labelling on hotplug fail");
2981
        if (teardowndevice &&
2982
            qemuDomainNamespaceTeardownHostdev(vm, hostdev) < 0)
2983
            VIR_WARN("Unable to remove host device from /dev");
2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995
        if (releaseaddr)
            qemuDomainReleaseDeviceAddress(vm, hostdev->info, NULL);
    }

    virDomainCCWAddressSetFree(ccwaddrs);

    VIR_FORCE_CLOSE(vhostfd);
    VIR_FREE(vhostfdName);
    VIR_FREE(devstr);
    return ret;
}

2996

2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011
static int
qemuDomainAttachMediatedDevice(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
                               virDomainHostdevDefPtr hostdev)
{
    int ret = -1;
    char *devstr = NULL;
    bool added = false;
    bool teardowncgroup = false;
    bool teardownlabel = false;
    bool teardowndevice = false;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_HOSTDEV,
                                { .hostdev = hostdev } };

3012 3013 3014 3015 3016 3017 3018 3019 3020
    switch (hostdev->source.subsys.u.mdev.model) {
    case VIR_MDEV_MODEL_TYPE_VFIO_PCI:
        if (qemuDomainEnsurePCIAddress(vm, &dev, driver) < 0)
            return -1;
        break;
    case VIR_MDEV_MODEL_TYPE_VFIO_CCW:
    case VIR_MDEV_MODEL_TYPE_LAST:
        break;
    }
3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085

    if (qemuHostdevPrepareMediatedDevices(driver,
                                          vm->def->name,
                                          &hostdev,
                                          1) < 0)
        goto cleanup;
    added = true;

    if (qemuDomainNamespaceSetupHostdev(vm, hostdev) < 0)
        goto cleanup;
    teardowndevice = true;

    if (qemuSetupHostdevCgroup(vm, hostdev) < 0)
        goto cleanup;
    teardowncgroup = true;

    if (qemuSecuritySetHostdevLabel(driver, vm, hostdev) < 0)
        goto cleanup;
    teardownlabel = true;

    if (qemuAssignDeviceHostdevAlias(vm->def, &hostdev->info->alias, -1) < 0)
        goto cleanup;

    if (!(devstr = qemuBuildHostdevMediatedDevStr(vm->def, hostdev,
                                                  priv->qemuCaps)))
        goto cleanup;

    if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);
    ret = qemuMonitorAddDevice(priv->mon, devstr);
    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        ret = -1;
        goto cleanup;
    }

    virDomainAuditHostdev(vm, hostdev, "attach", ret == 0);
    if (ret < 0)
        goto cleanup;

    VIR_APPEND_ELEMENT_INPLACE(vm->def->hostdevs, vm->def->nhostdevs, hostdev);
    ret = 0;
 cleanup:
    if (ret < 0) {
        if (teardowncgroup && qemuTeardownHostdevCgroup(vm, hostdev) < 0)
            VIR_WARN("Unable to remove host device cgroup ACL on hotplug fail");
        if (teardownlabel &&
            qemuSecurityRestoreHostdevLabel(driver, vm, hostdev) < 0)
            VIR_WARN("Unable to restore host device labelling on hotplug fail");
        if (teardowndevice &&
            qemuDomainNamespaceTeardownHostdev(vm, hostdev) < 0)
            VIR_WARN("Unable to remove host device from /dev");
        if (added)
            qemuHostdevReAttachMediatedDevices(driver,
                                               vm->def->name,
                                               &hostdev,
                                               1);
        qemuDomainReleaseDeviceAddress(vm, hostdev->info, NULL);
    }
    VIR_FREE(devstr);
    return ret;
}


3086
int
3087
qemuDomainAttachHostDevice(virQEMUDriverPtr driver,
3088 3089
                           virDomainObjPtr vm,
                           virDomainHostdevDefPtr hostdev)
3090 3091
{
    if (hostdev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS) {
3092
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
3093
                       _("hotplug is not supported for hostdev mode '%s'"),
3094
                       virDomainHostdevModeTypeToString(hostdev->mode));
3095 3096 3097 3098 3099
        return -1;
    }

    switch (hostdev->source.subsys.type) {
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI:
3100
        if (qemuDomainAttachHostPCIDevice(driver, vm,
3101
                                          hostdev) < 0)
3102 3103 3104 3105
            goto error;
        break;

    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB:
3106
        if (qemuDomainAttachHostUSBDevice(driver, vm,
3107
                                          hostdev) < 0)
3108 3109 3110
            goto error;
        break;

3111
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI:
3112
        if (qemuDomainAttachHostSCSIDevice(driver, vm,
3113 3114 3115 3116
                                           hostdev) < 0)
            goto error;
        break;

3117 3118 3119 3120
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI_HOST:
        if (qemuDomainAttachSCSIVHostDevice(driver, vm, hostdev) < 0)
            goto error;
        break;
3121 3122 3123 3124
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_MDEV:
        if (qemuDomainAttachMediatedDevice(driver, vm, hostdev) < 0)
            goto error;
        break;
3125

3126
    default:
3127
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
3128
                       _("hotplug is not supported for hostdev subsys type '%s'"),
3129
                       virDomainHostdevSubsysTypeToString(hostdev->source.subsys.type));
3130 3131 3132 3133 3134
        goto error;
    }

    return 0;

3135
 error:
3136 3137 3138
    return -1;
}

3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153

int
qemuDomainAttachShmemDevice(virQEMUDriverPtr driver,
                            virDomainObjPtr vm,
                            virDomainShmemDefPtr shmem)
{
    int ret = -1;
    char *shmstr = NULL;
    char *charAlias = NULL;
    char *memAlias = NULL;
    bool release_backing = false;
    bool release_address = true;
    virErrorPtr orig_err = NULL;
    virJSONValuePtr props = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;
3154
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_SHMEM, { .shmem = shmem } };
3155 3156 3157 3158 3159 3160 3161 3162 3163 3164

    switch ((virDomainShmemModel)shmem->model) {
    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_PLAIN:
    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_DOORBELL:
        break;

    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM:
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("live attach of shmem model '%s' is not supported"),
                       virDomainShmemModelTypeToString(shmem->model));
M
Marc Hartmayer 已提交
3165
        ATTRIBUTE_FALLTHROUGH;
3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180
    case VIR_DOMAIN_SHMEM_MODEL_LAST:
        return -1;
    }

    if (qemuAssignDeviceShmemAlias(vm->def, shmem, -1) < 0)
        return -1;

    if (qemuDomainPrepareShmemChardev(shmem) < 0)
        return -1;

    if (VIR_REALLOC_N(vm->def->shmems, vm->def->nshmems + 1) < 0)
        return -1;

    if ((shmem->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE ||
         shmem->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI) &&
3181
        (qemuDomainEnsurePCIAddress(vm, &dev, driver) < 0))
3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202
        return -1;

    if (!(shmstr = qemuBuildShmemDevStr(vm->def, shmem, priv->qemuCaps)))
        goto cleanup;

    if (shmem->server.enabled) {
        if (virAsprintf(&charAlias, "char%s", shmem->info.alias) < 0)
            goto cleanup;
    } else {
        if (!(props = qemuBuildShmemBackendMemProps(shmem)))
            goto cleanup;

    }

    qemuDomainObjEnterMonitor(driver, vm);

    if (shmem->server.enabled) {
        if (qemuMonitorAttachCharDev(priv->mon, charAlias,
                                     &shmem->server.chr) < 0)
            goto exit_monitor;
    } else {
3203
        if (qemuMonitorAddObject(priv->mon, &props, &memAlias) < 0)
3204 3205 3206 3207 3208
            goto exit_monitor;
    }

    release_backing = true;

3209 3210 3211 3212 3213
    if (qemuDomainAttachExtensionDevice(priv->mon, &shmem->info) < 0)
        goto exit_monitor;

    if (qemuMonitorAddDevice(priv->mon, shmstr) < 0) {
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, &shmem->info));
3214
        goto exit_monitor;
3215
    }
3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243

    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        release_address = false;
        goto cleanup;
    }

    /* Doing a copy here just so the pointer doesn't get nullified
     * because we need it in the audit function */
    VIR_APPEND_ELEMENT_COPY_INPLACE(vm->def->shmems, vm->def->nshmems, shmem);

    ret = 0;
    release_address = false;

 audit:
    virDomainAuditShmem(vm, shmem, "attach", ret == 0);

 cleanup:
    if (release_address)
        qemuDomainReleaseDeviceAddress(vm, &shmem->info, NULL);

    virJSONValueFree(props);
    VIR_FREE(memAlias);
    VIR_FREE(charAlias);
    VIR_FREE(shmstr);

    return ret;

 exit_monitor:
3244
    virErrorPreserveLast(&orig_err);
3245 3246 3247 3248 3249 3250 3251
    if (release_backing) {
        if (shmem->server.enabled)
            ignore_value(qemuMonitorDetachCharDev(priv->mon, charAlias));
        else
            ignore_value(qemuMonitorDelObject(priv->mon, memAlias));
    }

3252 3253 3254
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        release_address = false;

3255
    virErrorRestore(&orig_err);
3256 3257 3258 3259 3260

    goto audit;
}


M
Michal Privoznik 已提交
3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332
int
qemuDomainAttachWatchdog(virQEMUDriverPtr driver,
                         virDomainObjPtr vm,
                         virDomainWatchdogDefPtr watchdog)
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_WATCHDOG, { .watchdog = watchdog } };
    virDomainWatchdogAction actualAction = watchdog->action;
    const char *actionStr = NULL;
    char *watchdogstr = NULL;
    bool releaseAddress = false;
    int rv;

    if (vm->def->watchdog) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("domain already has a watchdog"));
        return -1;
    }

    if (qemuAssignDeviceWatchdogAlias(watchdog) < 0)
        return -1;

    if (!(watchdogstr = qemuBuildWatchdogDevStr(vm->def, watchdog, priv->qemuCaps)))
        return -1;

    if (watchdog->model == VIR_DOMAIN_WATCHDOG_MODEL_I6300ESB) {
        if (qemuDomainEnsurePCIAddress(vm, &dev, driver) < 0)
            goto cleanup;
        releaseAddress = true;
    } else {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("hotplug of watchdog of model %s is not supported"),
                       virDomainWatchdogModelTypeToString(watchdog->model));
        goto cleanup;
    }

    /* QEMU doesn't have a 'dump' action; we tell qemu to 'pause', then
       libvirt listens for the watchdog event, and we perform the dump
       ourselves. so convert 'dump' to 'pause' for the qemu cli */
    if (actualAction == VIR_DOMAIN_WATCHDOG_ACTION_DUMP)
        actualAction = VIR_DOMAIN_WATCHDOG_ACTION_PAUSE;

    actionStr = virDomainWatchdogActionTypeToString(actualAction);

    qemuDomainObjEnterMonitor(driver, vm);

    rv = qemuMonitorSetWatchdogAction(priv->mon, actionStr);

    if (rv >= 0)
        rv = qemuMonitorAddDevice(priv->mon, watchdogstr);

    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        releaseAddress = false;
        goto cleanup;
    }

    if (rv < 0)
        goto cleanup;

    releaseAddress = false;
    vm->def->watchdog = watchdog;
    ret = 0;

 cleanup:
    if (releaseAddress)
        qemuDomainReleaseDeviceAddress(vm, &watchdog->info, NULL);
    VIR_FREE(watchdogstr);
    return ret;
}


J
Ján Tomko 已提交
3333 3334 3335 3336 3337 3338 3339 3340 3341 3342
int
qemuDomainAttachInputDevice(virQEMUDriverPtr driver,
                            virDomainObjPtr vm,
                            virDomainInputDefPtr input)
{
    int ret = -1;
    char *devstr = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_INPUT,
                               { .input = input } };
3343
    virErrorPtr originalError = NULL;
J
Ján Tomko 已提交
3344
    bool releaseaddr = false;
3345 3346 3347
    bool teardowndevice = false;
    bool teardownlabel = false;
    bool teardowncgroup = false;
J
Ján Tomko 已提交
3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360

    if (input->bus != VIR_DOMAIN_INPUT_BUS_USB &&
        input->bus != VIR_DOMAIN_INPUT_BUS_VIRTIO) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("input device on bus '%s' cannot be hot plugged."),
                       virDomainInputBusTypeToString(input->bus));
        return -1;
    }

    if (input->bus == VIR_DOMAIN_INPUT_BUS_VIRTIO) {
        if (qemuDomainEnsureVirtioAddress(&releaseaddr, vm, &dev, "input") < 0)
            return -1;
    } else if (input->bus == VIR_DOMAIN_INPUT_BUS_USB) {
3361 3362 3363
        if (virDomainUSBAddressEnsure(priv->usbaddrs, &input->info) < 0)
            goto cleanup;
        releaseaddr = true;
J
Ján Tomko 已提交
3364 3365 3366 3367 3368 3369 3370 3371
    }

    if (qemuAssignDeviceInputAlias(vm->def, input, -1) < 0)
        goto cleanup;

    if (qemuBuildInputDevStr(&devstr, vm->def, input, priv->qemuCaps) < 0)
        goto cleanup;

3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383
    if (qemuDomainNamespaceSetupInput(vm, input) < 0)
        goto cleanup;
    teardowndevice = true;

    if (qemuSetupInputCgroup(vm, input) < 0)
        goto cleanup;
    teardowncgroup = true;

    if (qemuSecuritySetInputLabel(vm, input) < 0)
        goto cleanup;
    teardownlabel = true;

J
Ján Tomko 已提交
3384 3385 3386 3387
    if (VIR_REALLOC_N(vm->def->inputs, vm->def->ninputs + 1) < 0)
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);
3388 3389

    if (qemuDomainAttachExtensionDevice(priv->mon, &input->info) < 0)
J
Ján Tomko 已提交
3390 3391
        goto exit_monitor;

3392 3393 3394 3395 3396
    if (qemuMonitorAddDevice(priv->mon, devstr) < 0) {
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, &input->info));
        goto exit_monitor;
    }

J
Ján Tomko 已提交
3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409
    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        releaseaddr = false;
        goto cleanup;
    }

    VIR_APPEND_ELEMENT_COPY_INPLACE(vm->def->inputs, vm->def->ninputs, input);

    ret = 0;

 audit:
    virDomainAuditInput(vm, input, "attach", ret == 0);

 cleanup:
3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421
    if (ret < 0) {
        virErrorPreserveLast(&originalError);
        if (teardownlabel)
            qemuSecurityRestoreInputLabel(vm, input);
        if (teardowncgroup)
            qemuTeardownInputCgroup(vm, input);
        if (teardowndevice)
            qemuDomainNamespaceTeardownInput(vm, input);
        if (releaseaddr)
            qemuDomainReleaseDeviceAddress(vm, &input->info, NULL);
        virErrorRestore(&originalError);
    }
J
Ján Tomko 已提交
3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434

    VIR_FREE(devstr);
    return ret;

 exit_monitor:
    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        releaseaddr = false;
        goto cleanup;
    }
    goto audit;
}


J
Ján Tomko 已提交
3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472
int
qemuDomainAttachVsockDevice(virQEMUDriverPtr driver,
                            virDomainObjPtr vm,
                            virDomainVsockDefPtr vsock)
{
    qemuDomainVsockPrivatePtr vsockPriv = (qemuDomainVsockPrivatePtr)vsock->privateData;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_VSOCK,
                               { .vsock = vsock } };
    virErrorPtr originalError = NULL;
    const char *fdprefix = "vsockfd";
    bool releaseaddr = false;
    char *fdname = NULL;
    char *devstr = NULL;
    int ret = -1;

    if (vm->def->vsock) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("the domain already has a vsock device"));
        return -1;
    }

    if (qemuDomainEnsureVirtioAddress(&releaseaddr, vm, &dev, "vsock") < 0)
        return -1;

    if (qemuAssignDeviceVsockAlias(vsock) < 0)
        goto cleanup;

    if (qemuProcessOpenVhostVsock(vsock) < 0)
        goto cleanup;

    if (virAsprintf(&fdname, "%s%u", fdprefix, vsockPriv->vhostfd) < 0)
        goto cleanup;

    if (!(devstr = qemuBuildVsockDevStr(vm->def, vsock, priv->qemuCaps, fdprefix)))
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);
3473 3474 3475 3476 3477 3478

    if (qemuDomainAttachExtensionDevice(priv->mon, &vsock->info) < 0)
        goto exit_monitor;

    if (qemuMonitorAddDeviceWithFd(priv->mon, devstr, vsockPriv->vhostfd, fdname) < 0) {
        ignore_value(qemuDomainDetachExtensionDevice(priv->mon, &vsock->info));
J
Ján Tomko 已提交
3479
        goto exit_monitor;
3480
    }
J
Ján Tomko 已提交
3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509

    if (qemuDomainObjExitMonitor(driver, vm) < 0) {
        releaseaddr = false;
        goto cleanup;
    }

    VIR_STEAL_PTR(vm->def->vsock, vsock);

    ret = 0;

 cleanup:
    if (ret < 0) {
        virErrorPreserveLast(&originalError);
        if (releaseaddr)
            qemuDomainReleaseDeviceAddress(vm, &vsock->info, NULL);
        virErrorRestore(&originalError);
    }

    VIR_FREE(devstr);
    VIR_FREE(fdname);
    return ret;

 exit_monitor:
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        releaseaddr = false;
    goto cleanup;
}


3510
static int
3511
qemuDomainChangeNetBridge(virDomainObjPtr vm,
3512 3513
                          virDomainNetDefPtr olddev,
                          virDomainNetDefPtr newdev)
3514 3515
{
    int ret = -1;
3516 3517
    const char *oldbridge = virDomainNetGetActualBridgeName(olddev);
    const char *newbridge = virDomainNetGetActualBridgeName(newdev);
3518

3519 3520
    if (!oldbridge || !newbridge) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Missing bridge name"));
3521
        goto cleanup;
3522
    }
3523 3524 3525 3526 3527

    VIR_DEBUG("Change bridge for interface %s: %s -> %s",
              olddev->ifname, oldbridge, newbridge);

    if (virNetDevExists(newbridge) != 1) {
3528 3529
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("bridge %s doesn't exist"), newbridge);
3530
        goto cleanup;
3531 3532 3533 3534 3535
    }

    if (oldbridge) {
        ret = virNetDevBridgeRemovePort(oldbridge, olddev->ifname);
        virDomainAuditNet(vm, olddev, NULL, "detach", ret == 0);
3536 3537 3538 3539 3540 3541 3542 3543
        if (ret < 0) {
            /* warn but continue - possibly the old network
             * had been destroyed and reconstructed, leaving the
             * tap device orphaned.
             */
            VIR_WARN("Unable to detach device %s from bridge %s",
                     olddev->ifname, oldbridge);
        }
3544 3545 3546
    }

    ret = virNetDevBridgeAddPort(newbridge, olddev->ifname);
3547
    virDomainAuditNet(vm, NULL, newdev, "attach", ret == 0);
3548 3549 3550 3551
    if (ret < 0) {
        ret = virNetDevBridgeAddPort(oldbridge, olddev->ifname);
        virDomainAuditNet(vm, NULL, olddev, "attach", ret == 0);
        if (ret < 0) {
3552
            virReportError(VIR_ERR_OPERATION_FAILED,
3553
                           _("unable to recover former state by adding port "
3554
                             "to bridge %s"), oldbridge);
3555
        }
3556
        goto cleanup;
3557
    }
3558 3559
    /* caller will replace entire olddev with newdev in domain nets list */
    ret = 0;
3560
 cleanup:
3561
    return ret;
3562 3563
}

3564
static int
3565
qemuDomainChangeNetFilter(virDomainObjPtr vm,
3566 3567 3568 3569 3570 3571 3572 3573 3574
                          virDomainNetDefPtr olddev,
                          virDomainNetDefPtr newdev)
{
    /* make sure this type of device supports filters. */
    switch (virDomainNetGetActualType(newdev)) {
    case VIR_DOMAIN_NET_TYPE_ETHERNET:
    case VIR_DOMAIN_NET_TYPE_BRIDGE:
    case VIR_DOMAIN_NET_TYPE_NETWORK:
        break;
3575 3576 3577 3578 3579 3580 3581 3582 3583
    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:
    case VIR_DOMAIN_NET_TYPE_INTERNAL:
    case VIR_DOMAIN_NET_TYPE_DIRECT:
    case VIR_DOMAIN_NET_TYPE_HOSTDEV:
    case VIR_DOMAIN_NET_TYPE_UDP:
3584 3585 3586 3587
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("filters not supported on interfaces of type %s"),
                       virDomainNetTypeToString(virDomainNetGetActualType(newdev)));
        return -1;
3588 3589 3590 3591 3592
    case VIR_DOMAIN_NET_TYPE_LAST:
    default:
        virReportEnumRangeError(virDomainNetType,
                                virDomainNetGetActualType(newdev));
        return -1;
3593 3594 3595 3596
    }

    virDomainConfNWFilterTeardown(olddev);

3597
    if (newdev->filter &&
3598
        virDomainConfNWFilterInstantiate(vm->def->name,
3599
                                         vm->def->uuid, newdev, false) < 0) {
3600 3601 3602 3603 3604 3605
        virErrorPtr errobj;

        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("failed to add new filter rules to '%s' "
                         "- attempting to restore old rules"),
                       olddev->ifname);
3606
        virErrorPreserveLast(&errobj);
3607
        ignore_value(virDomainConfNWFilterInstantiate(vm->def->name,
3608
                                                      vm->def->uuid, olddev, false));
3609
        virErrorRestore(&errobj);
3610 3611 3612 3613 3614
        return -1;
    }
    return 0;
}

3615
int qemuDomainChangeNetLinkState(virQEMUDriverPtr driver,
3616 3617 3618 3619 3620 3621 3622 3623
                                 virDomainObjPtr vm,
                                 virDomainNetDefPtr dev,
                                 int linkstate)
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!dev->info.alias) {
3624 3625
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("can't change link state: device alias not found"));
3626 3627 3628
        return -1;
    }

3629 3630
    VIR_DEBUG("dev: %s, state: %d", dev->info.alias, linkstate);

3631
    qemuDomainObjEnterMonitor(driver, vm);
3632 3633 3634 3635 3636 3637 3638 3639

    ret = qemuMonitorSetLink(priv->mon, dev->info.alias, linkstate);
    if (ret < 0)
        goto cleanup;

    /* modify the device configuration */
    dev->linkstate = linkstate;

3640
 cleanup:
3641 3642
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        return -1;
3643 3644 3645 3646

    return ret;
}

3647
int
3648
qemuDomainChangeNet(virQEMUDriverPtr driver,
3649 3650
                    virDomainObjPtr vm,
                    virDomainDeviceDefPtr dev)
3651
{
3652
    virDomainNetDefPtr newdev = dev->data.net;
3653
    virDomainNetDefPtr *devslot = NULL;
3654
    virDomainNetDefPtr olddev;
3655
    virDomainNetType oldType, newType;
3656 3657
    bool needReconnect = false;
    bool needBridgeChange = false;
3658
    bool needFilterChange = false;
3659 3660
    bool needLinkStateChange = false;
    bool needReplaceDevDef = false;
3661
    bool needBandwidthSet = false;
3662
    bool needCoalesceChange = false;
3663
    bool needVlanUpdate = false;
3664
    int ret = -1;
3665 3666 3667 3668 3669
    int changeidx = -1;

    if ((changeidx = virDomainNetFindIdx(vm->def, newdev)) < 0)
        goto cleanup;
    devslot = &vm->def->nets[changeidx];
3670
    olddev = *devslot;
3671 3672 3673 3674

    oldType = virDomainNetGetActualType(olddev);
    if (oldType == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
        /* no changes are possible to a type='hostdev' interface */
3675
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697
                       _("cannot change config of '%s' network type"),
                       virDomainNetTypeToString(oldType));
        goto cleanup;
    }

    /* Check individual attributes for changes that can't be done to a
     * live netdev. These checks *mostly* go in order of the
     * declarations in virDomainNetDef in order to assure nothing is
     * omitted. (exceptiong where noted in comments - in particular,
     * some things require that a new "actual device" be allocated
     * from the network driver first, but we delay doing that until
     * after we've made as many other checks as possible)
     */

    /* type: this can change (with some restrictions), but the actual
     * type of the new device connection isn't known until after we
     * allocate the "actual" device.
     */

    if (virMacAddrCmp(&olddev->mac, &newdev->mac)) {
        char oldmac[VIR_MAC_STRING_BUFLEN], newmac[VIR_MAC_STRING_BUFLEN];

3698
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
3699 3700 3701 3702 3703 3704 3705 3706
                       _("cannot change network interface mac address "
                         "from %s to %s"),
                       virMacAddrFormat(&olddev->mac, oldmac),
                       virMacAddrFormat(&newdev->mac, newmac));
        goto cleanup;
    }

    if (STRNEQ_NULLABLE(olddev->model, newdev->model)) {
3707
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
3708 3709 3710 3711
                       _("cannot modify network device model from %s to %s"),
                       olddev->model ? olddev->model : "(default)",
                       newdev->model ? newdev->model : "(default)");
        goto cleanup;
3712 3713
    }

3714 3715 3716 3717
    if (olddev->model && STREQ(olddev->model, "virtio") &&
        (olddev->driver.virtio.name != newdev->driver.virtio.name ||
         olddev->driver.virtio.txmode != newdev->driver.virtio.txmode ||
         olddev->driver.virtio.ioeventfd != newdev->driver.virtio.ioeventfd ||
3718
         olddev->driver.virtio.event_idx != newdev->driver.virtio.event_idx ||
3719
         olddev->driver.virtio.queues != newdev->driver.virtio.queues ||
3720 3721
         olddev->driver.virtio.rx_queue_size != newdev->driver.virtio.rx_queue_size ||
         olddev->driver.virtio.tx_queue_size != newdev->driver.virtio.tx_queue_size ||
3722 3723 3724 3725 3726 3727
         olddev->driver.virtio.host.csum != newdev->driver.virtio.host.csum ||
         olddev->driver.virtio.host.gso != newdev->driver.virtio.host.gso ||
         olddev->driver.virtio.host.tso4 != newdev->driver.virtio.host.tso4 ||
         olddev->driver.virtio.host.tso6 != newdev->driver.virtio.host.tso6 ||
         olddev->driver.virtio.host.ecn != newdev->driver.virtio.host.ecn ||
         olddev->driver.virtio.host.ufo != newdev->driver.virtio.host.ufo ||
J
Ján Tomko 已提交
3728
         olddev->driver.virtio.host.mrg_rxbuf != newdev->driver.virtio.host.mrg_rxbuf ||
3729 3730 3731 3732 3733
         olddev->driver.virtio.guest.csum != newdev->driver.virtio.guest.csum ||
         olddev->driver.virtio.guest.tso4 != newdev->driver.virtio.guest.tso4 ||
         olddev->driver.virtio.guest.tso6 != newdev->driver.virtio.guest.tso6 ||
         olddev->driver.virtio.guest.ecn != newdev->driver.virtio.guest.ecn ||
         olddev->driver.virtio.guest.ufo != newdev->driver.virtio.guest.ufo)) {
3734
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3735 3736 3737 3738 3739 3740 3741 3742 3743 3744
                       _("cannot modify virtio network device driver attributes"));
        goto cleanup;
    }

    /* data: this union will be examined later, after allocating new actualdev */
    /* virtPortProfile: will be examined later, after allocating new actualdev */

    if (olddev->tune.sndbuf_specified != newdev->tune.sndbuf_specified ||
        olddev->tune.sndbuf != newdev->tune.sndbuf) {
        needReconnect = true;
3745 3746
    }

3747
    if (STRNEQ_NULLABLE(olddev->script, newdev->script)) {
3748
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3749 3750
                       _("cannot modify network device script attribute"));
        goto cleanup;
3751 3752
    }

3753
    /* ifname: check if it's set in newdev. If not, retain the autogenerated one */
3754
    if (!newdev->ifname && VIR_STRDUP(newdev->ifname, olddev->ifname) < 0)
3755 3756
        goto cleanup;
    if (STRNEQ_NULLABLE(olddev->ifname, newdev->ifname)) {
3757
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3758 3759 3760
                       _("cannot modify network device tap name"));
        goto cleanup;
    }
3761

3762 3763
    /* info: Nothing is allowed to change. First fill the missing newdev->info
     * from olddev and then check for changes.
3764
     */
3765 3766 3767 3768 3769 3770 3771 3772 3773 3774
    /* if pci addr is missing or is invalid we overwrite it from olddev */
    if (newdev->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE ||
        !virDomainDeviceAddressIsValid(&newdev->info,
                                       newdev->info.type)) {
        newdev->info.type = olddev->info.type;
        newdev->info.addr = olddev->info.addr;
    }
    if (olddev->info.type != newdev->info.type) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("cannot modify network device address type"));
3775
    }
3776
    if (!virPCIDeviceAddressEqual(&olddev->info.addr.pci,
3777
                                  &newdev->info.addr.pci)) {
3778
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3779 3780 3781 3782
                       _("cannot modify network device guest PCI address"));
        goto cleanup;
    }
    /* grab alias from olddev if not set in newdev */
3783 3784
    if (!newdev->info.alias &&
        VIR_STRDUP(newdev->info.alias, olddev->info.alias) < 0)
3785
        goto cleanup;
3786 3787 3788

    /* device alias is checked already in virDomainDefCompatibleDevice */

3789 3790
    if (newdev->info.rombar == VIR_TRISTATE_BOOL_ABSENT)
        newdev->info.rombar = olddev->info.rombar;
3791
    if (olddev->info.rombar != newdev->info.rombar) {
3792
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3793 3794 3795
                       _("cannot modify network device rom bar setting"));
        goto cleanup;
    }
3796 3797 3798 3799

    if (!newdev->info.romfile &&
        VIR_STRDUP(newdev->info.romfile, olddev->info.romfile) < 0)
        goto cleanup;
3800
    if (STRNEQ_NULLABLE(olddev->info.romfile, newdev->info.romfile)) {
3801
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3802 3803 3804
                       _("cannot modify network rom file"));
        goto cleanup;
    }
3805 3806 3807

    if (newdev->info.bootIndex == 0)
        newdev->info.bootIndex = olddev->info.bootIndex;
3808
    if (olddev->info.bootIndex != newdev->info.bootIndex) {
3809
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
3810 3811 3812
                       _("cannot modify network device boot index setting"));
        goto cleanup;
    }
3813 3814 3815

    if (newdev->info.romenabled == VIR_TRISTATE_BOOL_ABSENT)
        newdev->info.romenabled = olddev->info.romenabled;
3816 3817 3818 3819 3820
    if (olddev->info.romenabled != newdev->info.romenabled) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("cannot modify network device rom enabled setting"));
        goto cleanup;
    }
3821
    /* (end of device info checks) */
3822

3823 3824 3825 3826
    if (STRNEQ_NULLABLE(olddev->filter, newdev->filter) ||
        !virNWFilterHashTableEqual(olddev->filterparams, newdev->filterparams)) {
        needFilterChange = true;
    }
3827

3828 3829 3830 3831
    /* bandwidth can be modified, and will be checked later */
    /* vlan can be modified, and will be checked later */
    /* linkstate can be modified */

3832 3833 3834 3835 3836 3837
    if (olddev->mtu != newdev->mtu) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("cannot modify MTU"));
        goto cleanup;
    }

3838 3839 3840 3841
    /* allocate new actual device to compare to old - we will need to
     * free it if we fail for any reason
     */
    if (newdev->type == VIR_DOMAIN_NET_TYPE_NETWORK &&
3842
        virDomainNetAllocateActualDevice(vm->def, newdev) < 0) {
3843 3844 3845 3846 3847 3848 3849
        goto cleanup;
    }

    newType = virDomainNetGetActualType(newdev);

    if (newType == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
        /* can't turn it into a type='hostdev' interface */
3850
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
3851 3852 3853 3854 3855 3856
                       _("cannot change network interface type to '%s'"),
                       virDomainNetTypeToString(newType));
        goto cleanup;
    }

    if (olddev->type == newdev->type && oldType == newType) {
3857

3858 3859 3860 3861 3862 3863
        /* if type hasn't changed, check the relevant fields for the type */
        switch (newdev->type) {
        case VIR_DOMAIN_NET_TYPE_USER:
            break;

        case VIR_DOMAIN_NET_TYPE_ETHERNET:
3864
            break;
3865

3866 3867 3868
        case VIR_DOMAIN_NET_TYPE_SERVER:
        case VIR_DOMAIN_NET_TYPE_CLIENT:
        case VIR_DOMAIN_NET_TYPE_MCAST:
3869
        case VIR_DOMAIN_NET_TYPE_UDP:
3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901
            if (STRNEQ_NULLABLE(olddev->data.socket.address,
                                newdev->data.socket.address) ||
                olddev->data.socket.port != newdev->data.socket.port) {
                needReconnect = true;
            }
            break;

        case VIR_DOMAIN_NET_TYPE_NETWORK:
            if (STRNEQ(olddev->data.network.name, newdev->data.network.name)) {
                if (virDomainNetGetActualVirtPortProfile(newdev))
                    needReconnect = true;
                else
                    needBridgeChange = true;
            }
            /* other things handled in common code directly below this switch */
            break;

        case VIR_DOMAIN_NET_TYPE_BRIDGE:
            /* all handled in bridge name checked in common code below */
            break;

        case VIR_DOMAIN_NET_TYPE_INTERNAL:
            if (STRNEQ_NULLABLE(olddev->data.internal.name,
                                newdev->data.internal.name)) {
                needReconnect = true;
            }
            break;

        case VIR_DOMAIN_NET_TYPE_DIRECT:
            /* all handled in common code directly below this switch */
            break;

3902 3903
        case VIR_DOMAIN_NET_TYPE_VHOSTUSER:
        case VIR_DOMAIN_NET_TYPE_HOSTDEV:
3904
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
3905 3906
                           _("unable to change config on '%s' network type"),
                           virDomainNetTypeToString(newdev->type));
3907 3908 3909 3910 3911
            goto cleanup;
        case VIR_DOMAIN_NET_TYPE_LAST:
        default:
            virReportEnumRangeError(virDomainNetType, newdev->type);
            goto cleanup;
3912
        }
3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943
    } else {
        /* interface type has changed. There are a few special cases
         * where this can only require a minor (or even no) change,
         * but in most cases we need to do a full reconnection.
         *
         * If we switch (in either direction) between type='bridge'
         * and type='network' (for a traditional managed virtual
         * network that uses a host bridge, i.e. forward
         * mode='route|nat'), we just need to change the bridge.
         */
        if ((oldType == VIR_DOMAIN_NET_TYPE_NETWORK &&
             newType == VIR_DOMAIN_NET_TYPE_BRIDGE) ||
            (oldType == VIR_DOMAIN_NET_TYPE_BRIDGE &&
             newType == VIR_DOMAIN_NET_TYPE_NETWORK)) {

            needBridgeChange = true;

        } else if (oldType == VIR_DOMAIN_NET_TYPE_DIRECT &&
                   newType == VIR_DOMAIN_NET_TYPE_DIRECT) {

            /* this is the case of switching from type='direct' to
             * type='network' for a network that itself uses direct
             * (macvtap) devices. If the physical device and mode are
             * the same, this doesn't require any actual setup
             * change. If the physical device or mode *does* change,
             * that will be caught in the common section below */

        } else {

            /* for all other combinations, we'll need a full reconnect */
            needReconnect = true;
3944 3945

        }
3946
    }
3947

3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958
    /* now several things that are in multiple (but not all)
     * different types, and can be safely compared even for those
     * cases where they don't apply to a particular type.
     */
    if (STRNEQ_NULLABLE(virDomainNetGetActualBridgeName(olddev),
                        virDomainNetGetActualBridgeName(newdev))) {
        if (virDomainNetGetActualVirtPortProfile(newdev))
            needReconnect = true;
        else
            needBridgeChange = true;
    }
3959

3960 3961
    if (STRNEQ_NULLABLE(virDomainNetGetActualDirectDev(olddev),
                        virDomainNetGetActualDirectDev(newdev)) ||
3962
        virDomainNetGetActualDirectMode(olddev) != virDomainNetGetActualDirectMode(newdev) ||
3963
        !virNetDevVPortProfileEqual(virDomainNetGetActualVirtPortProfile(olddev),
3964
                                    virDomainNetGetActualVirtPortProfile(newdev))) {
3965
        needReconnect = true;
3966 3967
    }

3968 3969 3970 3971 3972
    if (!virNetDevVlanEqual(virDomainNetGetActualVlan(olddev),
                             virDomainNetGetActualVlan(newdev))) {
        needVlanUpdate = true;
    }

3973 3974 3975
    if (olddev->linkstate != newdev->linkstate)
        needLinkStateChange = true;

3976 3977 3978 3979
    if (!virNetDevBandwidthEqual(virDomainNetGetActualBandwidth(olddev),
                                 virDomainNetGetActualBandwidth(newdev)))
        needBandwidthSet = true;

3980 3981
    if (!!olddev->coalesce != !!newdev->coalesce ||
        (olddev->coalesce && newdev->coalesce &&
3982 3983
         memcmp(olddev->coalesce, newdev->coalesce,
                sizeof(*olddev->coalesce))))
3984 3985
        needCoalesceChange = true;

3986 3987 3988
    /* FINALLY - actually perform the required actions */

    if (needReconnect) {
3989
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
3990 3991 3992
                       _("unable to change config on '%s' network type"),
                       virDomainNetTypeToString(newdev->type));
        goto cleanup;
3993 3994
    }

3995
    if (needBandwidthSet) {
3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008
        virNetDevBandwidthPtr newb = virDomainNetGetActualBandwidth(newdev);

        if (newb) {
            if (virNetDevBandwidthSet(newdev->ifname, newb, false,
                                      !virDomainNetTypeSharesHostView(newdev)) < 0)
                goto cleanup;
        } else {
            /*
             * virNetDevBandwidthSet() doesn't clear any existing
             * setting unless something new is being set.
             */
            virNetDevBandwidthClear(newdev->ifname);
        }
4009 4010 4011
        needReplaceDevDef = true;
    }

4012
    if (needBridgeChange) {
4013
        if (qemuDomainChangeNetBridge(vm, olddev, newdev) < 0)
4014 4015 4016
            goto cleanup;
        /* we successfully switched to the new bridge, and we've
         * determined that the rest of newdev is equivalent to olddev,
4017 4018 4019 4020 4021
         * so move newdev into place */
        needReplaceDevDef = true;
    }

    if (needFilterChange) {
4022
        if (qemuDomainChangeNetFilter(vm, olddev, newdev) < 0)
4023 4024 4025 4026
            goto cleanup;
        /* we successfully switched to the new filter, and we've
         * determined that the rest of newdev is equivalent to olddev,
         * so move newdev into place */
4027
        needReplaceDevDef = true;
4028 4029
    }

4030 4031 4032 4033 4034 4035
    if (needCoalesceChange) {
        if (virNetDevSetCoalesce(newdev->ifname, newdev->coalesce, true) < 0)
            goto cleanup;
        needReplaceDevDef = true;
    }

4036 4037 4038
    if (needLinkStateChange &&
        qemuDomainChangeNetLinkState(driver, vm, olddev, newdev->linkstate) < 0) {
        goto cleanup;
4039 4040
    }

4041 4042 4043 4044 4045 4046
    if (needVlanUpdate) {
        if (virNetDevOpenvswitchUpdateVlan(newdev->ifname, &newdev->vlan) < 0)
            goto cleanup;
        needReplaceDevDef = true;
    }

4047 4048 4049 4050
    if (needReplaceDevDef) {
        /* the changes above warrant replacing olddev with newdev in
         * the domain's nets list.
         */
4051 4052 4053

        /* this function doesn't work with HOSTDEV networks yet, thus
         * no need to change the pointer in the hostdev structure */
4054
        virDomainNetReleaseActualDevice(vm->def, olddev);
4055 4056 4057 4058 4059 4060 4061 4062
        virDomainNetDefFree(olddev);
        /* move newdev into the nets list, and NULL it out from the
         * virDomainDeviceDef that we were given so that the caller
         * won't delete it on return.
         */
        *devslot = newdev;
        newdev = dev->data.net = NULL;
        dev->type = VIR_DOMAIN_DEVICE_NONE;
4063 4064
    }

4065
    ret = 0;
4066
 cleanup:
4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085
    /* When we get here, we will be in one of these two states:
     *
     * 1) newdev has been moved into the domain's list of nets and
     *    newdev set to NULL, and dev->data.net will be NULL (and
     *    dev->type is NONE). olddev will have been completely
     *    released and freed. (aka success) In this case no extra
     *    cleanup is needed.
     *
     * 2) newdev has *not* been moved into the domain's list of nets,
     *    and dev->data.net == newdev (and dev->type == NET). In this *
     *    case, we need to at least release the "actual device" from *
     *    newdev (the caller will free dev->data.net a.k.a. newdev, and
     *    the original olddev is still in used)
     *
     * Note that case (2) isn't necessarily a failure. It may just be
     * that the changes were minor enough that we didn't need to
     * replace the entire device object.
     */
    if (newdev)
4086
        virDomainNetReleaseActualDevice(vm->def, newdev);
4087

4088 4089 4090
    return ret;
}

4091 4092 4093
static virDomainGraphicsDefPtr
qemuDomainFindGraphics(virDomainObjPtr vm,
                       virDomainGraphicsDefPtr dev)
4094
{
4095
    size_t i;
4096

4097
    for (i = 0; i < vm->def->ngraphics; i++) {
4098 4099 4100 4101 4102 4103 4104
        if (vm->def->graphics[i]->type == dev->type)
            return vm->def->graphics[i];
    }

    return NULL;
}

4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118
int
qemuDomainFindGraphicsIndex(virDomainDefPtr def,
                            virDomainGraphicsDefPtr dev)
{
    size_t i;

    for (i = 0; i < def->ngraphics; i++) {
        if (def->graphics[i]->type == dev->type)
            return i;
    }

    return -1;
}

4119
int
4120
qemuDomainChangeGraphics(virQEMUDriverPtr driver,
4121 4122 4123 4124
                         virDomainObjPtr vm,
                         virDomainGraphicsDefPtr dev)
{
    virDomainGraphicsDefPtr olddev = qemuDomainFindGraphics(vm, dev);
4125
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4126
    const char *type = virDomainGraphicsTypeToString(dev->type);
4127
    size_t i;
4128
    int ret = -1;
4129 4130

    if (!olddev) {
4131
        virReportError(VIR_ERR_DEVICE_MISSING,
4132 4133
                       _("cannot find existing graphics device to modify of "
                         "type '%s'"), type);
4134
        goto cleanup;
4135 4136
    }

4137
    if (dev->nListens != olddev->nListens) {
4138 4139 4140
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("cannot change the number of listen addresses "
                         "on '%s' graphics"), type);
4141 4142 4143 4144
        goto cleanup;
    }

    for (i = 0; i < dev->nListens; i++) {
J
Jim Fehlig 已提交
4145
        virDomainGraphicsListenDefPtr newlisten = &dev->listens[i];
4146 4147
        virDomainGraphicsListenDefPtr oldlisten = &olddev->listens[i];

J
Jim Fehlig 已提交
4148
        if (newlisten->type != oldlisten->type) {
4149 4150 4151
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                           _("cannot change the type of listen address "
                             "on '%s' graphics"), type);
4152 4153 4154
            goto cleanup;
        }

4155
        switch (newlisten->type) {
4156
        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS:
J
Jim Fehlig 已提交
4157
            if (STRNEQ_NULLABLE(newlisten->address, oldlisten->address)) {
4158 4159 4160
                virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                               _("cannot change listen address setting "
                                 "on '%s' graphics"), type);
4161 4162
                goto cleanup;
            }
4163

4164 4165 4166
            break;

        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NETWORK:
J
Jim Fehlig 已提交
4167
            if (STRNEQ_NULLABLE(newlisten->network, oldlisten->network)) {
4168 4169 4170
                virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                               _("cannot change listen address setting "
                                 "on '%s' graphics"), type);
4171 4172
                goto cleanup;
            }
4173

4174 4175
            break;

4176 4177 4178 4179 4180 4181 4182 4183 4184
        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_SOCKET:
            if (STRNEQ_NULLABLE(newlisten->socket, oldlisten->socket)) {
                virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                               _("cannot change listen socket setting "
                                 "on '%s' graphics"), type);
                goto cleanup;
            }
            break;

4185 4186 4187 4188 4189 4190
        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NONE:
        case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_LAST:
            /* nada */
            break;
        }
    }
4191

4192 4193
    switch (dev->type) {
    case VIR_DOMAIN_GRAPHICS_TYPE_VNC:
4194 4195 4196
        if ((olddev->data.vnc.autoport != dev->data.vnc.autoport) ||
            (!dev->data.vnc.autoport &&
             (olddev->data.vnc.port != dev->data.vnc.port))) {
4197
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
4198
                           _("cannot change port settings on vnc graphics"));
4199
            goto cleanup;
4200 4201
        }
        if (STRNEQ_NULLABLE(olddev->data.vnc.keymap, dev->data.vnc.keymap)) {
4202
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
4203
                           _("cannot change keymap setting on vnc graphics"));
4204
            goto cleanup;
4205 4206
        }

4207 4208 4209
        /* If a password lifetime was, or is set, or action if connected has
         * changed, then we must always run, even if new password matches
         * old password */
4210 4211
        if (olddev->data.vnc.auth.expires ||
            dev->data.vnc.auth.expires ||
4212
            olddev->data.vnc.auth.connected != dev->data.vnc.auth.connected ||
E
Eric Blake 已提交
4213 4214 4215
            STRNEQ_NULLABLE(olddev->data.vnc.auth.passwd,
                            dev->data.vnc.auth.passwd)) {
            VIR_DEBUG("Updating password on VNC server %p %p",
4216
                      dev->data.vnc.auth.passwd, cfg->vncPassword);
E
Eric Blake 已提交
4217 4218 4219
            ret = qemuDomainChangeGraphicsPasswords(driver, vm,
                                                    VIR_DOMAIN_GRAPHICS_TYPE_VNC,
                                                    &dev->data.vnc.auth,
4220 4221
                                                    cfg->vncPassword,
                                                    QEMU_ASYNC_JOB_NONE);
4222
            if (ret < 0)
4223
                goto cleanup;
4224 4225 4226 4227 4228

            /* Steal the new dev's  char * reference */
            VIR_FREE(olddev->data.vnc.auth.passwd);
            olddev->data.vnc.auth.passwd = dev->data.vnc.auth.passwd;
            dev->data.vnc.auth.passwd = NULL;
4229 4230
            olddev->data.vnc.auth.validTo = dev->data.vnc.auth.validTo;
            olddev->data.vnc.auth.expires = dev->data.vnc.auth.expires;
4231
            olddev->data.vnc.auth.connected = dev->data.vnc.auth.connected;
4232 4233 4234 4235 4236
        } else {
            ret = 0;
        }
        break;

4237
    case VIR_DOMAIN_GRAPHICS_TYPE_SPICE:
4238 4239 4240 4241 4242
        if ((olddev->data.spice.autoport != dev->data.spice.autoport) ||
            (!dev->data.spice.autoport &&
             (olddev->data.spice.port != dev->data.spice.port)) ||
            (!dev->data.spice.autoport &&
             (olddev->data.spice.tlsPort != dev->data.spice.tlsPort))) {
4243
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
4244
                           _("cannot change port settings on spice graphics"));
4245
            goto cleanup;
4246
        }
E
Eric Blake 已提交
4247 4248
        if (STRNEQ_NULLABLE(olddev->data.spice.keymap,
                            dev->data.spice.keymap)) {
4249
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
4250
                            _("cannot change keymap setting on spice graphics"));
4251
            goto cleanup;
4252 4253
        }

4254 4255 4256 4257 4258
        /* We must reset the password if it has changed but also if:
         * - password lifetime is or was set
         * - the requested action has changed
         * - the action is "disconnect"
         */
4259 4260
        if (olddev->data.spice.auth.expires ||
            dev->data.spice.auth.expires ||
4261
            olddev->data.spice.auth.connected != dev->data.spice.auth.connected ||
4262 4263
            dev->data.spice.auth.connected ==
            VIR_DOMAIN_GRAPHICS_AUTH_CONNECTED_DISCONNECT ||
E
Eric Blake 已提交
4264 4265 4266
            STRNEQ_NULLABLE(olddev->data.spice.auth.passwd,
                            dev->data.spice.auth.passwd)) {
            VIR_DEBUG("Updating password on SPICE server %p %p",
4267
                      dev->data.spice.auth.passwd, cfg->spicePassword);
E
Eric Blake 已提交
4268 4269 4270
            ret = qemuDomainChangeGraphicsPasswords(driver, vm,
                                                    VIR_DOMAIN_GRAPHICS_TYPE_SPICE,
                                                    &dev->data.spice.auth,
4271 4272
                                                    cfg->spicePassword,
                                                    QEMU_ASYNC_JOB_NONE);
E
Eric Blake 已提交
4273

4274
            if (ret < 0)
4275
                goto cleanup;
4276

E
Eric Blake 已提交
4277
            /* Steal the new dev's char * reference */
4278 4279 4280 4281 4282
            VIR_FREE(olddev->data.spice.auth.passwd);
            olddev->data.spice.auth.passwd = dev->data.spice.auth.passwd;
            dev->data.spice.auth.passwd = NULL;
            olddev->data.spice.auth.validTo = dev->data.spice.auth.validTo;
            olddev->data.spice.auth.expires = dev->data.spice.auth.expires;
4283
            olddev->data.spice.auth.connected = dev->data.spice.auth.connected;
4284
        } else {
4285
            VIR_DEBUG("Not updating since password didn't change");
4286 4287
            ret = 0;
        }
E
Eric Blake 已提交
4288
        break;
4289

4290 4291 4292
    case VIR_DOMAIN_GRAPHICS_TYPE_SDL:
    case VIR_DOMAIN_GRAPHICS_TYPE_RDP:
    case VIR_DOMAIN_GRAPHICS_TYPE_DESKTOP:
4293
    case VIR_DOMAIN_GRAPHICS_TYPE_EGL_HEADLESS:
4294
        virReportError(VIR_ERR_INTERNAL_ERROR,
4295
                       _("unable to change config on '%s' graphics type"), type);
4296
        break;
4297 4298 4299 4300
    case VIR_DOMAIN_GRAPHICS_TYPE_LAST:
    default:
        virReportEnumRangeError(virDomainGraphicsType, dev->type);
        break;
4301 4302
    }

4303
 cleanup:
4304
    virObjectUnref(cfg);
4305 4306 4307 4308
    return ret;
}


4309
static int qemuComparePCIDevice(virDomainDefPtr def ATTRIBUTE_UNUSED,
4310
                                virDomainDeviceDefPtr device ATTRIBUTE_UNUSED,
4311
                                virDomainDeviceInfoPtr info1,
4312 4313
                                void *opaque)
{
4314
    virDomainDeviceInfoPtr info2 = opaque;
4315

4316 4317
    if (info1->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI ||
        info2->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI)
4318 4319
        return 0;

4320 4321 4322
    if (info1->addr.pci.domain == info2->addr.pci.domain &&
        info1->addr.pci.bus == info2->addr.pci.bus &&
        info1->addr.pci.slot == info2->addr.pci.slot &&
4323
        info1->addr.pci.function != info2->addr.pci.function)
4324 4325 4326 4327 4328 4329 4330
        return -1;
    return 0;
}

static bool qemuIsMultiFunctionDevice(virDomainDefPtr def,
                                      virDomainDeviceInfoPtr dev)
{
4331 4332 4333
    if (dev->type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI)
        return false;

4334 4335 4336 4337 4338
    if (virDomainDeviceInfoIterate(def, qemuComparePCIDevice, dev) < 0)
        return true;
    return false;
}

4339

4340
static int
4341 4342 4343 4344
qemuDomainRemoveDiskDevice(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           virDomainDiskDefPtr disk)
{
4345
    qemuHotplugDiskSourceDataPtr diskbackend = NULL;
4346
    virDomainDeviceDef dev;
4347
    virObjectEventPtr event;
4348
    size_t i;
4349
    qemuDomainObjPrivatePtr priv = vm->privateData;
4350
    int ret = -1;
4351 4352 4353 4354

    VIR_DEBUG("Removing disk %s from domain %p %s",
              disk->info.alias, vm, vm->def->name);

4355 4356
    if (!(diskbackend = qemuHotplugDiskSourceRemovePrepare(disk, disk->src,
                                                           priv->qemuCaps)))
4357 4358
        return -1;

4359 4360 4361 4362 4363 4364 4365
    for (i = 0; i < vm->def->ndisks; i++) {
        if (vm->def->disks[i] == disk) {
            virDomainDiskRemove(vm->def, i);
            break;
        }
    }

4366
    qemuDomainObjEnterMonitor(driver, vm);
4367

4368
    qemuHotplugDiskSourceRemove(priv->mon, diskbackend);
4369

4370
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
4371
        goto cleanup;
4372

4373
    virDomainAuditDisk(vm, disk->src, NULL, "detach", true);
4374

4375
    event = virDomainEventDeviceRemovedNewFromObj(vm, disk->info.alias);
4376
    virObjectEventStateQueue(driver->domainEventState, event);
4377

4378
    qemuDomainReleaseDeviceAddress(vm, &disk->info, virDomainDiskGetSource(disk));
4379

4380 4381
    /* tear down disk security access */
    qemuHotplugPrepareDiskAccess(driver, vm, disk, NULL, true);
4382

4383 4384 4385
    dev.type = VIR_DOMAIN_DEVICE_DISK;
    dev.data.disk = disk;
    ignore_value(qemuRemoveSharedDevice(driver, &dev, vm->def->name));
4386
    virDomainUSBAddressRelease(priv->usbaddrs, &disk->info);
4387

4388 4389 4390
    if (qemuHotplugRemoveManagedPR(driver, vm, QEMU_ASYNC_JOB_NONE) < 0)
        goto cleanup;

4391 4392 4393
    ret = 0;

 cleanup:
4394
    qemuHotplugDiskSourceDataFree(diskbackend);
4395
    virDomainDiskDefFree(disk);
4396
    return ret;
4397 4398 4399
}


4400
static int
4401
qemuDomainRemoveControllerDevice(virQEMUDriverPtr driver,
4402 4403 4404
                                 virDomainObjPtr vm,
                                 virDomainControllerDefPtr controller)
{
4405
    virObjectEventPtr event;
4406 4407 4408 4409 4410
    size_t i;

    VIR_DEBUG("Removing controller %s from domain %p %s",
              controller->info.alias, vm, vm->def->name);

4411
    event = virDomainEventDeviceRemovedNewFromObj(vm, controller->info.alias);
4412
    virObjectEventStateQueue(driver->domainEventState, event);
4413

4414 4415 4416 4417 4418 4419 4420 4421 4422
    for (i = 0; i < vm->def->ncontrollers; i++) {
        if (vm->def->controllers[i] == controller) {
            virDomainControllerRemove(vm->def, i);
            break;
        }
    }

    qemuDomainReleaseDeviceAddress(vm, &controller->info, NULL);
    virDomainControllerDefFree(controller);
4423
    return 0;
4424 4425 4426
}


4427 4428 4429 4430 4431 4432
static int
qemuDomainRemoveMemoryDevice(virQEMUDriverPtr driver,
                             virDomainObjPtr vm,
                             virDomainMemoryDefPtr mem)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
4433
    unsigned long long oldmem = virDomainDefGetMemoryTotal(vm->def);
4434
    unsigned long long newmem = oldmem - mem->size;
4435 4436 4437 4438 4439 4440 4441 4442 4443
    virObjectEventPtr event;
    char *backendAlias = NULL;
    int rc;
    int idx;

    VIR_DEBUG("Removing memory device %s from domain %p %s",
              mem->info.alias, vm, vm->def->name);

    if (virAsprintf(&backendAlias, "mem%s", mem->info.alias) < 0)
4444
        return -1;
4445 4446 4447

    qemuDomainObjEnterMonitor(driver, vm);
    rc = qemuMonitorDelObject(priv->mon, backendAlias);
4448 4449 4450 4451 4452 4453 4454 4455
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        rc = -1;

    VIR_FREE(backendAlias);

    virDomainAuditMemory(vm, oldmem, newmem, "update", rc == 0);
    if (rc < 0)
        return -1;
4456

4457
    event = virDomainEventDeviceRemovedNewFromObj(vm, mem->info.alias);
4458
    virObjectEventStateQueue(driver->domainEventState, event);
4459

4460 4461 4462
    if ((idx = virDomainMemoryFindByDef(vm->def, mem)) >= 0)
        virDomainMemoryRemove(vm->def, idx);

M
Michal Privoznik 已提交
4463 4464 4465
    if (qemuSecurityRestoreMemoryLabel(driver, vm, mem) < 0)
        VIR_WARN("Unable to restore security label on memdev");

4466 4467 4468
    if (qemuTeardownMemoryDevicesCgroup(vm, mem) < 0)
        VIR_WARN("Unable to remove memory device cgroup ACL");

4469
    if (qemuDomainNamespaceTeardownMemory(vm, mem) <  0)
M
Michal Privoznik 已提交
4470 4471
        VIR_WARN("Unable to remove memory device from /dev");

4472 4473 4474
    if (qemuProcessDestroyMemoryBackingPath(driver, vm, mem) < 0)
        VIR_WARN("Unable to destroy memory backing path");

4475
    virDomainMemoryDefFree(mem);
4476

4477 4478 4479
    /* fix the balloon size */
    ignore_value(qemuProcessRefreshBalloonState(driver, vm, QEMU_ASYNC_JOB_NONE));

4480
    /* decrease the mlock limit after memory unplug if necessary */
4481
    ignore_value(qemuDomainAdjustMaxMemLock(vm));
4482

4483
    return 0;
4484 4485 4486
}


4487 4488 4489 4490 4491
static void
qemuDomainRemovePCIHostDevice(virQEMUDriverPtr driver,
                              virDomainObjPtr vm,
                              virDomainHostdevDefPtr hostdev)
{
4492
    qemuHostdevReAttachPCIDevices(driver, vm->def->name, &hostdev, 1);
4493 4494 4495 4496 4497
    qemuDomainReleaseDeviceAddress(vm, hostdev->info, NULL);
}

static void
qemuDomainRemoveUSBHostDevice(virQEMUDriverPtr driver,
4498
                              virDomainObjPtr vm,
4499 4500
                              virDomainHostdevDefPtr hostdev)
{
4501
    qemuHostdevReAttachUSBDevices(driver, vm->def->name, &hostdev, 1);
4502
    qemuDomainReleaseDeviceAddress(vm, hostdev->info, NULL);
4503 4504 4505 4506 4507 4508 4509
}

static void
qemuDomainRemoveSCSIHostDevice(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
                               virDomainHostdevDefPtr hostdev)
{
4510
    qemuHostdevReAttachSCSIDevices(driver, vm->def->name, &hostdev, 1);
4511 4512
}

4513 4514 4515 4516 4517 4518 4519 4520
static void
qemuDomainRemoveSCSIVHostDevice(virQEMUDriverPtr driver,
                                virDomainObjPtr vm,
                                virDomainHostdevDefPtr hostdev)
{
    qemuHostdevReAttachSCSIVHostDevices(driver, vm->def->name, &hostdev, 1);
}

4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531

static void
qemuDomainRemoveMediatedDevice(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
                               virDomainHostdevDefPtr hostdev)
{
    qemuHostdevReAttachMediatedDevices(driver, vm->def->name, &hostdev, 1);
    qemuDomainReleaseDeviceAddress(vm, hostdev->info, NULL);
}


4532
static int
4533 4534 4535 4536
qemuDomainRemoveHostDevice(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           virDomainHostdevDefPtr hostdev)
{
4537
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4538
    virDomainNetDefPtr net = NULL;
4539
    virObjectEventPtr event;
4540
    size_t i;
4541 4542
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
J
John Ferlan 已提交
4543
    char *drivealias = NULL;
4544
    char *objAlias = NULL;
4545
    bool is_vfio = false;
4546 4547 4548 4549

    VIR_DEBUG("Removing host device %s from domain %p %s",
              hostdev->info->alias, vm, vm->def->name);

4550 4551 4552 4553 4554
    if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI) {
        int backend = hostdev->source.subsys.u.pci.backend;
        is_vfio = backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO;
    }

4555
    if (hostdev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI) {
4556 4557 4558
        virDomainHostdevSubsysSCSIPtr scsisrc = &hostdev->source.subsys.u.scsi;
        virDomainHostdevSubsysSCSIiSCSIPtr iscsisrc = &scsisrc->u.iscsi;

J
John Ferlan 已提交
4559
        if (!(drivealias = qemuAliasFromHostdev(hostdev)))
4560 4561
            goto cleanup;

4562 4563 4564 4565 4566
        /* Look for the markers that the iSCSI hostdev was added with a
         * secret object to manage the username/password. If present, let's
         * attempt to remove the object as well. */
        if (scsisrc->protocol == VIR_DOMAIN_HOSTDEV_SCSI_PROTOCOL_TYPE_ISCSI &&
            virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_ISCSI_PASSWORD_SECRET) &&
4567
            qemuDomainStorageSourceHasAuth(iscsisrc->src)) {
4568 4569 4570 4571
            if (!(objAlias = qemuDomainGetSecretAESAlias(hostdev->info->alias, false)))
                goto cleanup;
        }

4572
        qemuDomainObjEnterMonitor(driver, vm);
J
John Ferlan 已提交
4573
        qemuMonitorDriveDel(priv->mon, drivealias);
4574 4575 4576 4577 4578

        /* If it fails, then so be it - it was a best shot */
        if (objAlias)
            ignore_value(qemuMonitorDelObject(priv->mon, objAlias));

4579 4580
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
            goto cleanup;
4581 4582
    }

4583
    event = virDomainEventDeviceRemovedNewFromObj(vm, hostdev->info->alias);
4584
    virObjectEventStateQueue(driver->domainEventState, event);
4585

4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605
    if (hostdev->parent.type == VIR_DOMAIN_DEVICE_NET) {
        net = hostdev->parent.data.net;

        for (i = 0; i < vm->def->nnets; i++) {
            if (vm->def->nets[i] == net) {
                virDomainNetRemove(vm->def, i);
                break;
            }
        }
    }

    for (i = 0; i < vm->def->nhostdevs; i++) {
        if (vm->def->hostdevs[i] == hostdev) {
            virDomainHostdevRemove(vm->def, i);
            break;
        }
    }

    virDomainAuditHostdev(vm, hostdev, "detach", true);

4606
    if (!is_vfio &&
4607
        qemuSecurityRestoreHostdevLabel(driver, vm, hostdev) < 0)
4608
        VIR_WARN("Failed to restore host device labelling");
4609

4610 4611 4612
    if (qemuTeardownHostdevCgroup(vm, hostdev) < 0)
        VIR_WARN("Failed to remove host device cgroup ACL");

4613
    if (qemuDomainNamespaceTeardownHostdev(vm, hostdev) < 0)
4614 4615
        VIR_WARN("Unable to remove host device from /dev");

4616
    switch ((virDomainHostdevSubsysType)hostdev->source.subsys.type) {
4617 4618
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI:
        qemuDomainRemovePCIHostDevice(driver, vm, hostdev);
4619 4620 4621 4622
        /* QEMU might no longer need to lock as much memory, eg. we just
         * detached the last VFIO device, so adjust the limit here */
        if (qemuDomainAdjustMaxMemLock(vm) < 0)
            VIR_WARN("Failed to adjust locked memory limit");
4623 4624 4625 4626 4627 4628 4629
        break;
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB:
        qemuDomainRemoveUSBHostDevice(driver, vm, hostdev);
        break;
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI:
        qemuDomainRemoveSCSIHostDevice(driver, vm, hostdev);
        break;
4630
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI_HOST:
4631
        qemuDomainRemoveSCSIVHostDevice(driver, vm, hostdev);
4632
        break;
4633
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_MDEV:
4634
        qemuDomainRemoveMediatedDevice(driver, vm, hostdev);
4635
        break;
4636 4637 4638 4639 4640 4641 4642
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_LAST:
        break;
    }

    virDomainHostdevDefFree(hostdev);

    if (net) {
4643
        virDomainNetReleaseActualDevice(vm->def, net);
4644 4645
        virDomainNetDefFree(net);
    }
4646

4647 4648 4649
    ret = 0;

 cleanup:
J
John Ferlan 已提交
4650
    VIR_FREE(drivealias);
4651
    VIR_FREE(objAlias);
4652
    virObjectUnref(cfg);
4653
    return ret;
4654 4655 4656
}


4657
static int
4658 4659 4660 4661 4662
qemuDomainRemoveNetDevice(virQEMUDriverPtr driver,
                          virDomainObjPtr vm,
                          virDomainNetDefPtr net)
{
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4663
    qemuDomainObjPrivatePtr priv = vm->privateData;
4664
    virObjectEventPtr event;
4665
    char *hostnet_name = NULL;
4666
    char *charDevAlias = NULL;
4667
    size_t i;
4668
    int ret = -1;
4669
    int actualType = virDomainNetGetActualType(net);
4670

4671
    if (actualType == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
4672
        /* this function handles all hostdev and netdev cleanup */
4673 4674
        ret = qemuDomainRemoveHostDevice(driver, vm,
                                         virDomainNetGetActualHostdev(net));
4675
        goto cleanup;
4676 4677
    }

4678 4679 4680
    VIR_DEBUG("Removing network interface %s from domain %p %s",
              net->info.alias, vm, vm->def->name);

4681
    if (virAsprintf(&hostnet_name, "host%s", net->info.alias) < 0 ||
4682
        !(charDevAlias = qemuAliasChardevFromDevAlias(net->info.alias)))
4683 4684
        goto cleanup;

4685

4686
    qemuDomainObjEnterMonitor(driver, vm);
J
Ján Tomko 已提交
4687 4688
    if (qemuMonitorRemoveNetdev(priv->mon, hostnet_name) < 0) {
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
4689
            goto cleanup;
J
Ján Tomko 已提交
4690 4691
        virDomainAuditNet(vm, net, NULL, "detach", false);
        goto cleanup;
4692
    }
4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703

    if (actualType == VIR_DOMAIN_NET_TYPE_VHOSTUSER) {
        /* vhostuser has a chardev too */
        if (qemuMonitorDetachCharDev(priv->mon, charDevAlias) < 0) {
            /* well, this is a messy situation. Guest visible PCI device has
             * been removed, netdev too but chardev not. The best seems to be
             * to just ignore the error and carry on.
             */
        }
    }

4704 4705
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
4706

4707 4708 4709
    virDomainAuditNet(vm, net, NULL, "detach", true);

    event = virDomainEventDeviceRemovedNewFromObj(vm, net->info.alias);
4710
    virObjectEventStateQueue(driver->domainEventState, event);
4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721

    for (i = 0; i < vm->def->nnets; i++) {
        if (vm->def->nets[i] == net) {
            virDomainNetRemove(vm->def, i);
            break;
        }
    }

    qemuDomainReleaseDeviceAddress(vm, &net->info, NULL);
    virDomainConfNWFilterTeardown(net);

4722 4723 4724 4725 4726 4727
    if (cfg->macFilter && (net->ifname != NULL)) {
        ignore_value(ebtablesRemoveForwardAllowIn(driver->ebtables,
                                                  net->ifname,
                                                  &net->mac));
    }

4728
    if (actualType == VIR_DOMAIN_NET_TYPE_DIRECT) {
4729 4730 4731 4732 4733 4734 4735 4736
        ignore_value(virNetDevMacVLanDeleteWithVPortProfile(
                         net->ifname, &net->mac,
                         virDomainNetGetActualDirectDev(net),
                         virDomainNetGetActualDirectMode(net),
                         virDomainNetGetActualVirtPortProfile(net),
                         cfg->stateDir));
    }

4737
    qemuDomainNetDeviceVportRemove(net);
4738

4739
    virDomainNetReleaseActualDevice(vm->def, net);
4740
    virDomainNetDefFree(net);
4741
    ret = 0;
4742 4743

 cleanup:
4744
    virObjectUnref(cfg);
4745
    VIR_FREE(charDevAlias);
4746 4747
    VIR_FREE(hostnet_name);
    return ret;
4748 4749 4750
}


4751
static int
4752
qemuDomainRemoveChrDevice(virQEMUDriverPtr driver,
4753 4754 4755
                          virDomainObjPtr vm,
                          virDomainChrDefPtr chr)
{
4756
    virObjectEventPtr event;
4757 4758 4759
    char *charAlias = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;
4760
    int rc;
4761

4762 4763 4764
    VIR_DEBUG("Removing character device %s from domain %p %s",
              chr->info.alias, vm, vm->def->name);

4765
    if (!(charAlias = qemuAliasChardevFromDevAlias(chr->info.alias)))
4766 4767 4768
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);
4769
    rc = qemuMonitorDetachCharDev(priv->mon, charAlias);
4770

4771 4772
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
4773

4774 4775
    if (rc == 0 &&
        qemuDomainDelChardevTLSObjects(driver, vm, chr->source, charAlias) < 0)
4776 4777
        goto cleanup;

4778 4779 4780 4781 4782
    virDomainAuditChardev(vm, chr, NULL, "detach", rc == 0);

    if (rc < 0)
        goto cleanup;

4783 4784 4785
    if (qemuTeardownChardevCgroup(vm, chr) < 0)
        VIR_WARN("Failed to remove chr device cgroup ACL");

4786 4787 4788
    if (qemuSecurityRestoreChardevLabel(driver, vm, chr) < 0)
        VIR_WARN("Unable to restore security label on char device");

4789
    if (qemuDomainNamespaceTeardownChardev(vm, chr) < 0)
4790 4791
        VIR_WARN("Unable to remove chr device from /dev");

4792
    event = virDomainEventDeviceRemovedNewFromObj(vm, chr->info.alias);
4793
    virObjectEventStateQueue(driver->domainEventState, event);
4794

4795
    qemuDomainReleaseDeviceAddress(vm, &chr->info, NULL);
4796 4797
    qemuDomainChrRemove(vm->def, chr);
    virDomainChrDefFree(chr);
4798 4799 4800 4801 4802
    ret = 0;

 cleanup:
    VIR_FREE(charAlias);
    return ret;
4803 4804 4805
}


4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816
static int
qemuDomainRemoveRNGDevice(virQEMUDriverPtr driver,
                          virDomainObjPtr vm,
                          virDomainRNGDefPtr rng)
{
    virObjectEventPtr event;
    char *charAlias = NULL;
    char *objAlias = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    ssize_t idx;
    int ret = -1;
4817
    int rc = 0;
4818 4819 4820 4821

    VIR_DEBUG("Removing RNG device %s from domain %p %s",
              rng->info.alias, vm, vm->def->name);

4822

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

4826
    if (!(charAlias = qemuAliasChardevFromDevAlias(rng->info.alias)))
4827 4828 4829
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);
4830

4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841
    if (qemuDomainDetachExtensionDevice(priv->mon, &rng->info) < 0)
        rc = -1;

    if (rc == 0 &&
        qemuMonitorDelObject(priv->mon, objAlias) < 0)
        rc = -1;

    if (rng->backend == VIR_DOMAIN_RNG_BACKEND_EGD &&
        rc == 0 &&
        qemuMonitorDetachCharDev(priv->mon, charAlias) < 0)
        rc = -1;
4842 4843 4844 4845

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;

4846 4847
    if (rng->backend == VIR_DOMAIN_RNG_BACKEND_EGD &&
        rc == 0 &&
4848 4849
        qemuDomainDelChardevTLSObjects(driver, vm, rng->source.chardev,
                                       charAlias) < 0)
4850
        rc = -1;
4851

4852 4853 4854 4855 4856
    virDomainAuditRNG(vm, rng, NULL, "detach", rc == 0);

    if (rc < 0)
        goto cleanup;

4857 4858 4859
    if (qemuTeardownRNGCgroup(vm, rng) < 0)
        VIR_WARN("Failed to remove RNG device cgroup ACL");

4860
    if (qemuDomainNamespaceTeardownRNG(vm, rng) < 0)
4861 4862
        VIR_WARN("Unable to remove RNG device from /dev");

4863
    event = virDomainEventDeviceRemovedNewFromObj(vm, rng->info.alias);
4864
    virObjectEventStateQueue(driver->domainEventState, event);
4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878

    if ((idx = virDomainRNGFind(vm->def, rng)) >= 0)
        virDomainRNGRemove(vm->def, idx);
    qemuDomainReleaseDeviceAddress(vm, &rng->info, NULL);
    virDomainRNGDefFree(rng);
    ret = 0;

 cleanup:
    VIR_FREE(charAlias);
    VIR_FREE(objAlias);
    return ret;
}


4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918
static int
qemuDomainRemoveShmemDevice(virQEMUDriverPtr driver,
                            virDomainObjPtr vm,
                            virDomainShmemDefPtr shmem)
{
    int rc;
    int ret = -1;
    ssize_t idx = -1;
    char *charAlias = NULL;
    char *memAlias = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virObjectEventPtr event = NULL;

    VIR_DEBUG("Removing shmem device %s from domain %p %s",
              shmem->info.alias, vm, vm->def->name);

    if (shmem->server.enabled) {
        if (virAsprintf(&charAlias, "char%s", shmem->info.alias) < 0)
            return -1;
    } else {
        if (virAsprintf(&memAlias, "shmmem-%s", shmem->info.alias) < 0)
            return -1;
    }

    qemuDomainObjEnterMonitor(driver, vm);

    if (shmem->server.enabled)
        rc = qemuMonitorDetachCharDev(priv->mon, charAlias);
    else
        rc = qemuMonitorDelObject(priv->mon, memAlias);

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;

    virDomainAuditShmem(vm, shmem, "detach", rc == 0);

    if (rc < 0)
        goto cleanup;

    event = virDomainEventDeviceRemovedNewFromObj(vm, shmem->info.alias);
4919
    virObjectEventStateQueue(driver->domainEventState, event);
4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934

    if ((idx = virDomainShmemDefFind(vm->def, shmem)) >= 0)
        virDomainShmemDefRemove(vm->def, idx);
    qemuDomainReleaseDeviceAddress(vm, &shmem->info, NULL);
    virDomainShmemDefFree(shmem);

    ret = 0;
 cleanup:
    VIR_FREE(charAlias);
    VIR_FREE(memAlias);

    return ret;
}


M
Michal Privoznik 已提交
4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945
static int
qemuDomainRemoveWatchdog(virQEMUDriverPtr driver,
                         virDomainObjPtr vm,
                         virDomainWatchdogDefPtr watchdog)
{
    virObjectEventPtr event = NULL;

    VIR_DEBUG("Removing watchdog %s from domain %p %s",
              watchdog->info.alias, vm, vm->def->name);

    event = virDomainEventDeviceRemovedNewFromObj(vm, watchdog->info.alias);
4946
    virObjectEventStateQueue(driver->domainEventState, event);
M
Michal Privoznik 已提交
4947 4948 4949 4950 4951 4952 4953
    qemuDomainReleaseDeviceAddress(vm, &watchdog->info, NULL);
    virDomainWatchdogDefFree(vm->def->watchdog);
    vm->def->watchdog = NULL;
    return 0;
}


4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966
static int
qemuDomainRemoveInputDevice(virDomainObjPtr vm,
                            virDomainInputDefPtr dev)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virQEMUDriverPtr driver = priv->driver;
    virObjectEventPtr event = NULL;
    size_t i;

    VIR_DEBUG("Removing input device %s from domain %p %s",
              dev->info.alias, vm, vm->def->name);

    event = virDomainEventDeviceRemovedNewFromObj(vm, dev->info.alias);
4967
    virObjectEventStateQueue(driver->domainEventState, event);
4968 4969 4970 4971 4972
    for (i = 0; i < vm->def->ninputs; i++) {
        if (vm->def->inputs[i] == dev)
            break;
    }
    qemuDomainReleaseDeviceAddress(vm, &dev->info, NULL);
4973 4974 4975 4976 4977 4978 4979 4980 4981
    if (qemuSecurityRestoreInputLabel(vm, dev) < 0)
        VIR_WARN("Unable to restore security label on input device");

    if (qemuTeardownInputCgroup(vm, dev) < 0)
        VIR_WARN("Unable to remove input device cgroup ACL");

    if (qemuDomainNamespaceTeardownInput(vm, dev) < 0)
        VIR_WARN("Unable to remove input device from /dev");

4982 4983 4984 4985 4986 4987
    virDomainInputDefFree(vm->def->inputs[i]);
    VIR_DELETE_ELEMENT(vm->def->inputs, i, vm->def->ninputs);
    return 0;
}


J
Ján Tomko 已提交
4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999
static int
qemuDomainRemoveVsockDevice(virDomainObjPtr vm,
                            virDomainVsockDefPtr dev)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virQEMUDriverPtr driver = priv->driver;
    virObjectEventPtr event = NULL;

    VIR_DEBUG("Removing vsock device %s from domain %p %s",
              dev->info.alias, vm, vm->def->name);

    event = virDomainEventDeviceRemovedNewFromObj(vm, dev->info.alias);
5000
    virObjectEventStateQueue(driver->domainEventState, event);
J
Ján Tomko 已提交
5001 5002 5003 5004 5005 5006 5007
    qemuDomainReleaseDeviceAddress(vm, &dev->info, NULL);
    virDomainVsockDefFree(vm->def->vsock);
    vm->def->vsock = NULL;
    return 0;
}


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 5034 5035 5036 5037 5038 5039
static int
qemuDomainRemoveRedirdevDevice(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
                               virDomainRedirdevDefPtr dev)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virObjectEventPtr event;
    char *charAlias = NULL;
    ssize_t idx;
    int ret = -1;

    VIR_DEBUG("Removing redirdev device %s from domain %p %s",
              dev->info.alias, vm, vm->def->name);

    if (!(charAlias = qemuAliasChardevFromDevAlias(dev->info.alias)))
        goto cleanup;

    qemuDomainObjEnterMonitor(driver, vm);
    /* DeviceDel from Detach may remove chardev,
     * so we cannot rely on return status to delete TLS chardevs.
     */
    ignore_value(qemuMonitorDetachCharDev(priv->mon, charAlias));

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;

    if (qemuDomainDelChardevTLSObjects(driver, vm, dev->source, charAlias) < 0)
        goto cleanup;

    virDomainAuditRedirdev(vm, dev, "detach", true);

    event = virDomainEventDeviceRemovedNewFromObj(vm, dev->info.alias);
5040
    virObjectEventStateQueue(driver->domainEventState, event);
5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054

    if ((idx = virDomainRedirdevDefFind(vm->def, dev)) >= 0)
        virDomainRedirdevDefRemove(vm->def, idx);
    qemuDomainReleaseDeviceAddress(vm, &dev->info, NULL);
    virDomainRedirdevDefFree(dev);

    ret = 0;

 cleanup:
    VIR_FREE(charAlias);
    return ret;
}


5055
int
5056 5057 5058 5059
qemuDomainRemoveDevice(virQEMUDriverPtr driver,
                       virDomainObjPtr vm,
                       virDomainDeviceDefPtr dev)
{
5060
    int ret = -1;
5061
    switch ((virDomainDeviceType)dev->type) {
5062
    case VIR_DOMAIN_DEVICE_DISK:
5063
        ret = qemuDomainRemoveDiskDevice(driver, vm, dev->data.disk);
5064 5065
        break;
    case VIR_DOMAIN_DEVICE_CONTROLLER:
5066
        ret = qemuDomainRemoveControllerDevice(driver, vm, dev->data.controller);
5067 5068
        break;
    case VIR_DOMAIN_DEVICE_NET:
5069
        ret = qemuDomainRemoveNetDevice(driver, vm, dev->data.net);
5070 5071
        break;
    case VIR_DOMAIN_DEVICE_HOSTDEV:
5072
        ret = qemuDomainRemoveHostDevice(driver, vm, dev->data.hostdev);
5073 5074 5075
        break;

    case VIR_DOMAIN_DEVICE_CHR:
5076
        ret = qemuDomainRemoveChrDevice(driver, vm, dev->data.chr);
5077
        break;
5078
    case VIR_DOMAIN_DEVICE_RNG:
5079
        ret = qemuDomainRemoveRNGDevice(driver, vm, dev->data.rng);
5080
        break;
5081

5082
    case VIR_DOMAIN_DEVICE_MEMORY:
5083 5084
        ret = qemuDomainRemoveMemoryDevice(driver, vm, dev->data.memory);
        break;
5085

5086 5087 5088 5089
    case VIR_DOMAIN_DEVICE_SHMEM:
        ret = qemuDomainRemoveShmemDevice(driver, vm, dev->data.shmem);
        break;

5090 5091 5092 5093
    case VIR_DOMAIN_DEVICE_INPUT:
        ret = qemuDomainRemoveInputDevice(vm, dev->data.input);
        break;

5094 5095 5096 5097
    case VIR_DOMAIN_DEVICE_REDIRDEV:
        ret = qemuDomainRemoveRedirdevDevice(driver, vm, dev->data.redirdev);
        break;

5098 5099 5100 5101
    case VIR_DOMAIN_DEVICE_WATCHDOG:
        ret = qemuDomainRemoveWatchdog(driver, vm, dev->data.watchdog);
        break;

J
Ján Tomko 已提交
5102 5103 5104 5105
    case VIR_DOMAIN_DEVICE_VSOCK:
        ret = qemuDomainRemoveVsockDevice(vm, dev->data.vsock);
        break;

5106 5107 5108 5109 5110 5111 5112 5113 5114 5115
    case VIR_DOMAIN_DEVICE_NONE:
    case VIR_DOMAIN_DEVICE_LEASE:
    case VIR_DOMAIN_DEVICE_FS:
    case VIR_DOMAIN_DEVICE_SOUND:
    case VIR_DOMAIN_DEVICE_VIDEO:
    case VIR_DOMAIN_DEVICE_GRAPHICS:
    case VIR_DOMAIN_DEVICE_HUB:
    case VIR_DOMAIN_DEVICE_SMARTCARD:
    case VIR_DOMAIN_DEVICE_MEMBALLOON:
    case VIR_DOMAIN_DEVICE_NVRAM:
5116
    case VIR_DOMAIN_DEVICE_TPM:
5117
    case VIR_DOMAIN_DEVICE_PANIC:
J
Ján Tomko 已提交
5118
    case VIR_DOMAIN_DEVICE_IOMMU:
5119 5120 5121 5122 5123 5124
    case VIR_DOMAIN_DEVICE_LAST:
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("don't know how to remove a %s device"),
                       virDomainDeviceTypeToString(dev->type));
        break;
    }
5125
    return ret;
5126 5127 5128 5129
}


static void
5130 5131
qemuDomainMarkDeviceAliasForRemoval(virDomainObjPtr vm,
                                    const char *alias)
5132 5133 5134
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

5135 5136 5137 5138 5139
    memset(&priv->unplug, 0, sizeof(priv->unplug));

    if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE_DEL_EVENT))
        return;

5140
    priv->unplug.alias = alias;
5141 5142
}

5143 5144 5145 5146 5147 5148 5149 5150 5151 5152

static void
qemuDomainMarkDeviceForRemoval(virDomainObjPtr vm,
                               virDomainDeviceInfoPtr info)

{
    qemuDomainMarkDeviceAliasForRemoval(vm, info->alias);
}


5153 5154 5155 5156
static void
qemuDomainResetDeviceRemoval(virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
5157
    priv->unplug.alias = NULL;
5158 5159 5160
}

/* Returns:
5161 5162
 *  -1 Unplug of the device failed
 *
5163 5164 5165 5166 5167 5168 5169
 *   0 DEVICE_DELETED event is supported and removal of the device did not
 *     finish in qemuDomainRemoveDeviceWaitTime
 *
 *   1 when the caller is responsible for finishing the device removal:
 *      - DEVICE_DELETED event is unsupported
 *      - DEVICE_DELETED event arrived before the timeout time
 *      - we failed to reliably wait for the event and thus use fallback behavior
5170 5171 5172 5173 5174 5175
 */
static int
qemuDomainWaitForDeviceRemoval(virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    unsigned long long until;
5176
    int rc;
5177 5178

    if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE_DEL_EVENT))
5179
        return 1;
5180 5181

    if (virTimeMillisNow(&until) < 0)
5182
        return 1;
5183
    until += qemuDomainRemoveDeviceWaitTime;
5184

5185
    while (priv->unplug.alias) {
5186 5187 5188 5189 5190
        if ((rc = virDomainObjWaitUntil(vm, until)) == 1)
            return 0;

        if (rc < 0) {
            VIR_WARN("Failed to wait on unplug condition for domain '%s' "
5191
                     "device '%s'", vm->def->name, priv->unplug.alias);
5192
            return 1;
5193 5194 5195
        }
    }

5196 5197 5198 5199 5200 5201
    if (priv->unplug.status == QEMU_DOMAIN_UNPLUGGING_DEVICE_STATUS_GUEST_REJECTED) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("unplug of device was rejected by the guest"));
        return -1;
    }

5202 5203 5204
    return 1;
}

5205 5206 5207 5208 5209 5210 5211
/* Returns:
 *  true    there was a thread waiting for devAlias to be removed and this
 *          thread will take care of finishing the removal
 *  false   the thread that started the removal is already gone and delegate
 *          finishing the removal to a new thread
 */
bool
5212
qemuDomainSignalDeviceRemoval(virDomainObjPtr vm,
5213 5214
                              const char *devAlias,
                              qemuDomainUnpluggingDeviceStatus status)
5215 5216 5217
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

5218
    if (STREQ_NULLABLE(priv->unplug.alias, devAlias)) {
5219
        VIR_DEBUG("Removal of device '%s' continues in waiting thread", devAlias);
5220
        qemuDomainResetDeviceRemoval(vm);
5221
        priv->unplug.status = status;
5222
        virDomainObjBroadcast(vm);
5223
        return true;
5224
    }
5225
    return false;
5226 5227 5228
}


5229 5230 5231
static int
qemuDomainDetachVirtioDiskDevice(virQEMUDriverPtr driver,
                                 virDomainObjPtr vm,
5232 5233
                                 virDomainDiskDefPtr detach,
                                 bool async)
5234
{
5235
    int ret = -1;
5236 5237
    qemuDomainObjPrivatePtr priv = vm->privateData;

5238
    if (qemuIsMultiFunctionDevice(vm->def, &detach->info)) {
5239 5240
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("cannot hot unplug multifunction PCI device: %s"),
5241
                       detach->dst);
5242 5243 5244
        goto cleanup;
    }

5245 5246
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &detach->info);
5247

5248
    qemuDomainObjEnterMonitor(driver, vm);
5249 5250
    if (qemuMonitorDelDevice(priv->mon, detach->info.alias) < 0) {
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
5251
            goto cleanup;
5252 5253
        virDomainAuditDisk(vm, detach->src, NULL, "detach", false);
        goto cleanup;
5254
    }
5255 5256
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
5257

5258 5259 5260 5261 5262 5263
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveDiskDevice(driver, vm, detach);
    }
5264

5265
 cleanup:
5266 5267
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
5268 5269 5270
    return ret;
}

5271 5272 5273
static int
qemuDomainDetachDiskDevice(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
5274 5275
                           virDomainDiskDefPtr detach,
                           bool async)
5276
{
5277
    int ret = -1;
5278 5279
    qemuDomainObjPrivatePtr priv = vm->privateData;

5280
    if (qemuDomainDiskBlockJobIsActive(detach))
E
Eric Blake 已提交
5281 5282
        goto cleanup;

5283 5284
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &detach->info);
5285

5286
    qemuDomainObjEnterMonitor(driver, vm);
5287
    if (qemuMonitorDelDevice(priv->mon, detach->info.alias) < 0) {
5288 5289
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
            goto cleanup;
5290
        virDomainAuditDisk(vm, detach->src, NULL, "detach", false);
5291 5292
        goto cleanup;
    }
5293 5294
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
5295

5296 5297 5298 5299 5300 5301
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveDiskDevice(driver, vm, detach);
    }
5302

5303
 cleanup:
5304 5305
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
5306 5307 5308
    return ret;
}

5309 5310 5311 5312 5313 5314
static int
qemuFindDisk(virDomainDefPtr def, const char *dst)
{
    size_t i;

    for (i = 0; i < def->ndisks; i++) {
5315
        if (STREQ(def->disks[i]->dst, dst))
5316 5317 5318 5319 5320 5321 5322 5323 5324
            return i;
    }

    return -1;
}

int
qemuDomainDetachDeviceDiskLive(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
5325 5326
                               virDomainDeviceDefPtr dev,
                               bool async)
5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342
{
    virDomainDiskDefPtr disk;
    int ret = -1;
    int idx;

    if ((idx = qemuFindDisk(vm->def, dev->data.disk->dst)) < 0) {
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("disk %s not found"), dev->data.disk->dst);
        return -1;
    }
    disk = vm->def->disks[idx];

    switch (disk->device) {
    case VIR_DOMAIN_DISK_DEVICE_DISK:
    case VIR_DOMAIN_DISK_DEVICE_LUN:
        if (disk->bus == VIR_DOMAIN_DISK_BUS_VIRTIO)
5343
            ret = qemuDomainDetachVirtioDiskDevice(driver, vm, disk, async);
5344 5345
        else if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI ||
                 disk->bus == VIR_DOMAIN_DISK_BUS_USB)
5346
            ret = qemuDomainDetachDiskDevice(driver, vm, disk, async);
5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361
        else
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                           _("This type of disk cannot be hot unplugged"));
        break;
    default:
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("disk device type '%s' cannot be detached"),
                       virDomainDiskDeviceTypeToString(disk->device));
        break;
    }

    return ret;
}


5362 5363 5364
static bool qemuDomainDiskControllerIsBusy(virDomainObjPtr vm,
                                           virDomainControllerDefPtr detach)
{
5365
    size_t i;
5366
    virDomainDiskDefPtr disk;
5367
    virDomainHostdevDefPtr hostdev;
5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389

    for (i = 0; i < vm->def->ndisks; i++) {
        disk = vm->def->disks[i];
        if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE)
            /* the disk does not use disk controller */
            continue;

        /* check whether the disk uses this type controller */
        if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE &&
            detach->type != VIR_DOMAIN_CONTROLLER_TYPE_IDE)
            continue;
        if (disk->bus == VIR_DOMAIN_DISK_BUS_FDC &&
            detach->type != VIR_DOMAIN_CONTROLLER_TYPE_FDC)
            continue;
        if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI &&
            detach->type != VIR_DOMAIN_CONTROLLER_TYPE_SCSI)
            continue;

        if (disk->info.addr.drive.controller == detach->idx)
            return true;
    }

5390 5391 5392 5393 5394 5395 5396 5397 5398
    for (i = 0; i < vm->def->nhostdevs; i++) {
        hostdev = vm->def->hostdevs[i];
        if (!virHostdevIsSCSIDevice(hostdev) ||
            detach->type != VIR_DOMAIN_CONTROLLER_TYPE_SCSI)
            continue;
        if (hostdev->info->addr.drive.controller == detach->idx)
            return true;
    }

5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421
    return false;
}

static bool qemuDomainControllerIsBusy(virDomainObjPtr vm,
                                       virDomainControllerDefPtr detach)
{
    switch (detach->type) {
    case VIR_DOMAIN_CONTROLLER_TYPE_IDE:
    case VIR_DOMAIN_CONTROLLER_TYPE_FDC:
    case VIR_DOMAIN_CONTROLLER_TYPE_SCSI:
        return qemuDomainDiskControllerIsBusy(vm, detach);

    case VIR_DOMAIN_CONTROLLER_TYPE_SATA:
    case VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL:
    case VIR_DOMAIN_CONTROLLER_TYPE_CCID:
    default:
        /* libvirt does not support sata controller, and does not support to
         * detach virtio and smart card controller.
         */
        return true;
    }
}

5422 5423
int qemuDomainDetachControllerDevice(virQEMUDriverPtr driver,
                                     virDomainObjPtr vm,
5424 5425
                                     virDomainDeviceDefPtr dev,
                                     bool async)
5426
{
5427
    int idx, ret = -1;
5428 5429 5430
    virDomainControllerDefPtr detach = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;

5431 5432 5433
    if ((idx = virDomainControllerFind(vm->def,
                                       dev->data.controller->type,
                                       dev->data.controller->idx)) < 0) {
5434
        virReportError(VIR_ERR_DEVICE_MISSING,
5435
                       _("controller %s:%d not found"),
5436 5437
                       virDomainControllerTypeToString(dev->data.controller->type),
                       dev->data.controller->idx);
5438 5439 5440
        goto cleanup;
    }

5441 5442
    detach = vm->def->controllers[idx];

5443 5444 5445 5446 5447 5448
    if (detach->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI &&
        detach->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCW &&
        detach->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_S390) {
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("device with '%s' address cannot be detached"),
                       virDomainDeviceAddressTypeToString(detach->info.type));
5449 5450 5451
        goto cleanup;
    }

5452 5453 5454 5455 5456 5457 5458
    if (!virDomainDeviceAddressIsValid(&detach->info, detach->info.type)) {
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("device with invalid '%s' address cannot be detached"),
                       virDomainDeviceAddressTypeToString(detach->info.type));
        goto cleanup;
    }

5459
    if (qemuIsMultiFunctionDevice(vm->def, &detach->info)) {
5460 5461 5462
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("cannot hot unplug multifunction PCI device: %s"),
                       dev->data.disk->dst);
5463 5464 5465
        goto cleanup;
    }

5466
    if (qemuDomainControllerIsBusy(vm, detach)) {
5467 5468
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("device cannot be detached: device is busy"));
5469 5470 5471
        goto cleanup;
    }

5472 5473
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &detach->info);
5474

5475
    qemuDomainObjEnterMonitor(driver, vm);
5476 5477 5478 5479 5480
    if (detach->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI &&
        qemuDomainDetachExtensionDevice(priv->mon, &detach->info)) {
        goto exit_monitor;
    }

5481 5482 5483
    if (qemuMonitorDelDevice(priv->mon, detach->info.alias)) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        goto cleanup;
5484
    }
5485 5486

 exit_monitor:
5487 5488
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
5489

5490 5491 5492 5493 5494 5495
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveControllerDevice(driver, vm, detach);
    }
5496

5497
 cleanup:
5498 5499
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
5500 5501 5502
    return ret;
}

5503
static int
5504
qemuDomainDetachHostPCIDevice(virQEMUDriverPtr driver,
5505
                              virDomainObjPtr vm,
5506 5507
                              virDomainHostdevDefPtr detach,
                              bool async)
5508 5509
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
5510
    virDomainHostdevSubsysPCIPtr pcisrc = &detach->source.subsys.u.pci;
5511
    int ret;
5512

5513
    if (qemuIsMultiFunctionDevice(vm->def, detach->info)) {
5514 5515
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("cannot hot unplug multifunction PCI device: %.4x:%.2x:%.2x.%.1x"),
5516 5517
                       pcisrc->addr.domain, pcisrc->addr.bus,
                       pcisrc->addr.slot, pcisrc->addr.function);
5518
        return -1;
5519 5520
    }

5521 5522
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, detach->info);
5523

5524
    qemuDomainObjEnterMonitor(driver, vm);
5525
    ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);
5526 5527
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;
5528 5529 5530 5531

    return ret;
}

5532
static int
5533
qemuDomainDetachHostUSBDevice(virQEMUDriverPtr driver,
5534
                              virDomainObjPtr vm,
5535 5536
                              virDomainHostdevDefPtr detach,
                              bool async)
5537 5538
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
5539
    int ret;
5540

5541
    if (!detach->info->alias) {
5542 5543
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("device cannot be detached without a device alias"));
5544 5545 5546
        return -1;
    }

5547 5548
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, detach->info);
5549

5550
    qemuDomainObjEnterMonitor(driver, vm);
5551
    ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);
5552 5553
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;
5554 5555 5556 5557

    return ret;
}

5558
static int
5559
qemuDomainDetachHostSCSIDevice(virQEMUDriverPtr driver,
5560
                               virDomainObjPtr vm,
5561 5562
                               virDomainHostdevDefPtr detach,
                               bool async)
5563 5564 5565 5566 5567 5568 5569 5570 5571 5572
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;

    if (!detach->info->alias) {
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("device cannot be detached without a device alias"));
        return -1;
    }

5573 5574
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, detach->info);
5575

5576
    qemuDomainObjEnterMonitor(driver, vm);
5577 5578 5579 5580
    ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        return -1;
5581 5582 5583 5584

    return ret;
}

5585 5586 5587
static int
qemuDomainDetachSCSIVHostDevice(virQEMUDriverPtr driver,
                                virDomainObjPtr vm,
5588 5589
                                virDomainHostdevDefPtr detach,
                                bool async)
5590 5591 5592 5593 5594 5595 5596 5597 5598 5599
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;

    if (!detach->info->alias) {
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("device cannot be detached without a device alias"));
        return -1;
    }

5600 5601
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, detach->info);
5602 5603 5604 5605 5606 5607 5608 5609 5610 5611

    qemuDomainObjEnterMonitor(driver, vm);
    ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        return -1;

    return ret;
}

5612 5613 5614 5615

static int
qemuDomainDetachMediatedDevice(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
5616 5617
                               virDomainHostdevDefPtr detach,
                               bool async)
5618 5619 5620 5621 5622 5623 5624 5625 5626 5627
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!detach->info->alias) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("device cannot be detached without a device alias"));
        return -1;
    }

5628 5629
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, detach->info);
5630 5631 5632 5633 5634 5635 5636 5637 5638 5639

    qemuDomainObjEnterMonitor(driver, vm);
    ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;

    return ret;
}


5640
static int
5641
qemuDomainDetachThisHostDevice(virQEMUDriverPtr driver,
5642
                               virDomainObjPtr vm,
5643 5644
                               virDomainHostdevDefPtr detach,
                               bool async)
5645
{
5646
    int ret = -1;
5647

5648 5649
    if (qemuAssignDeviceHostdevAlias(vm->def, &detach->info->alias, -1) < 0)
        return -1;
5650

5651
    switch (detach->source.subsys.type) {
5652
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI:
5653
        ret = qemuDomainDetachHostPCIDevice(driver, vm, detach, async);
5654
        break;
5655
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB:
5656
        ret = qemuDomainDetachHostUSBDevice(driver, vm, detach, async);
5657
        break;
5658
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI:
5659
        ret = qemuDomainDetachHostSCSIDevice(driver, vm, detach, async);
5660
        break;
5661
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI_HOST:
5662
        ret = qemuDomainDetachSCSIVHostDevice(driver, vm, detach, async);
5663
        break;
5664
    case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_MDEV:
5665
        ret = qemuDomainDetachMediatedDevice(driver, vm, detach, async);
5666
        break;
5667
    default:
5668
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
5669
                       _("hot unplug is not supported for hostdev subsys type '%s'"),
5670
                       virDomainHostdevSubsysTypeToString(detach->source.subsys.type));
5671 5672 5673
        return -1;
    }

5674
    if (ret < 0) {
5675 5676
        if (virDomainObjIsActive(vm))
            virDomainAuditHostdev(vm, detach, "detach", false);
5677 5678
    } else if (!async &&
               (ret = qemuDomainWaitForDeviceRemoval(vm)) == 1) {
5679
        ret = qemuDomainRemoveHostDevice(driver, vm, detach);
5680
    }
5681

5682 5683
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
5684

5685 5686
    return ret;
}
5687

5688
/* search for a hostdev matching dev and detach it */
5689
int qemuDomainDetachHostDevice(virQEMUDriverPtr driver,
5690
                               virDomainObjPtr vm,
5691 5692
                               virDomainDeviceDefPtr dev,
                               bool async)
5693 5694 5695
{
    virDomainHostdevDefPtr hostdev = dev->data.hostdev;
    virDomainHostdevSubsysPtr subsys = &hostdev->source.subsys;
5696
    virDomainHostdevSubsysUSBPtr usbsrc = &subsys->u.usb;
5697
    virDomainHostdevSubsysPCIPtr pcisrc = &subsys->u.pci;
5698
    virDomainHostdevSubsysSCSIPtr scsisrc = &subsys->u.scsi;
5699
    virDomainHostdevSubsysMediatedDevPtr mdevsrc = &subsys->u.mdev;
5700 5701 5702 5703
    virDomainHostdevDefPtr detach = NULL;
    int idx;

    if (hostdev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS) {
5704
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
5705
                       _("hot unplug is not supported for hostdev mode '%s'"),
5706
                       virDomainHostdevModeTypeToString(hostdev->mode));
5707 5708 5709 5710 5711 5712
        return -1;
    }

    idx = virDomainHostdevFind(vm->def, hostdev, &detach);

    if (idx < 0) {
5713
        switch (subsys->type) {
5714
        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI:
5715
            virReportError(VIR_ERR_DEVICE_MISSING,
5716
                           _("host pci device %.4x:%.2x:%.2x.%.1x not found"),
5717 5718
                           pcisrc->addr.domain, pcisrc->addr.bus,
                           pcisrc->addr.slot, pcisrc->addr.function);
5719 5720
            break;
        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB:
5721
            if (usbsrc->bus && usbsrc->device) {
5722
                virReportError(VIR_ERR_DEVICE_MISSING,
5723
                               _("host usb device %03d.%03d not found"),
5724
                               usbsrc->bus, usbsrc->device);
5725
            } else {
5726
                virReportError(VIR_ERR_DEVICE_MISSING,
5727
                               _("host usb device vendor=0x%.4x product=0x%.4x not found"),
5728
                               usbsrc->vendor, usbsrc->product);
5729 5730
            }
            break;
5731
        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI: {
5732 5733 5734
            if (scsisrc->protocol ==
                VIR_DOMAIN_HOSTDEV_SCSI_PROTOCOL_TYPE_ISCSI) {
                virDomainHostdevSubsysSCSIiSCSIPtr iscsisrc = &scsisrc->u.iscsi;
5735
                virReportError(VIR_ERR_DEVICE_MISSING,
5736
                               _("host scsi iSCSI path %s not found"),
5737
                               iscsisrc->src->path);
5738 5739 5740
            } else {
                 virDomainHostdevSubsysSCSIHostPtr scsihostsrc =
                     &scsisrc->u.host;
5741
                 virReportError(VIR_ERR_DEVICE_MISSING,
5742
                                _("host scsi device %s:%u:%u.%llu not found"),
5743 5744 5745
                                scsihostsrc->adapter, scsihostsrc->bus,
                                scsihostsrc->target, scsihostsrc->unit);
            }
5746
            break;
5747
        }
5748 5749 5750 5751 5752
        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_MDEV:
            virReportError(VIR_ERR_DEVICE_MISSING,
                           _("mediated device '%s' not found"),
                           mdevsrc->uuidstr);
            break;
5753 5754
        case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_SCSI_HOST:
            break;
5755
        default:
5756 5757
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unexpected hostdev type %d"), subsys->type);
5758 5759 5760 5761 5762
            break;
        }
        return -1;
    }

5763 5764 5765 5766
    /* If this is a network hostdev, we need to use the higher-level detach
     * function so that mac address / virtualport are reset
     */
    if (detach->parent.type == VIR_DOMAIN_DEVICE_NET)
5767
        return qemuDomainDetachNetDevice(driver, vm, &detach->parent, async);
5768
    else
5769
        return qemuDomainDetachThisHostDevice(driver, vm, detach, async);
5770 5771
}

5772 5773 5774 5775

int
qemuDomainDetachShmemDevice(virQEMUDriverPtr driver,
                            virDomainObjPtr vm,
5776 5777
                            virDomainShmemDefPtr dev,
                            bool async)
5778 5779 5780 5781 5782 5783 5784
{
    int ret = -1;
    ssize_t idx = -1;
    virDomainShmemDefPtr shmem = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if ((idx = virDomainShmemDefFind(vm->def, dev)) < 0) {
5785
        virReportError(VIR_ERR_DEVICE_MISSING,
5786 5787 5788
                       _("model '%s' shmem device not present "
                         "in domain configuration"),
                       virDomainShmemModelTypeToString(dev->model));
5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802
        return -1;
    }

    shmem = vm->def->shmems[idx];

    switch ((virDomainShmemModel)shmem->model) {
    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_PLAIN:
    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_DOORBELL:
        break;

    case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM:
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("live detach of shmem model '%s' is not supported"),
                       virDomainShmemModelTypeToString(shmem->model));
M
Marc Hartmayer 已提交
5803
        ATTRIBUTE_FALLTHROUGH;
5804 5805 5806 5807
    case VIR_DOMAIN_SHMEM_MODEL_LAST:
        return -1;
    }

5808 5809
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &shmem->info);
5810

5811 5812 5813 5814 5815
    qemuDomainObjEnterMonitor(driver, vm);
    if (qemuMonitorDelDevice(priv->mon, shmem->info.alias) < 0) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        goto cleanup;
    }
5816
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
5817
        goto cleanup;
5818

5819 5820 5821 5822 5823 5824
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveShmemDevice(driver, vm, shmem);
    }
5825

5826
 cleanup:
5827 5828
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
5829 5830 5831 5832
    return ret;
}


M
Michal Privoznik 已提交
5833 5834 5835
int
qemuDomainDetachWatchdog(virQEMUDriverPtr driver,
                         virDomainObjPtr vm,
5836 5837
                         virDomainWatchdogDefPtr dev,
                         bool async)
M
Michal Privoznik 已提交
5838 5839 5840 5841 5842
{
    int ret = -1;
    virDomainWatchdogDefPtr watchdog = vm->def->watchdog;
    qemuDomainObjPrivatePtr priv = vm->privateData;

5843 5844 5845 5846 5847 5848
    if (!watchdog) {
        virReportError(VIR_ERR_DEVICE_MISSING, "%s",
                       _("watchdog device not present in domain configuration"));
        return -1;
    }

M
Michal Privoznik 已提交
5849 5850 5851
    /* While domains can have up to one watchdog, the one supplied by the user
     * doesn't necessarily match the one domain has. Refuse to detach in such
     * case. */
5852
    if (!(watchdog->model == dev->model &&
M
Michal Privoznik 已提交
5853 5854
          watchdog->action == dev->action &&
          virDomainDeviceInfoAddressIsEqual(&dev->info, &watchdog->info))) {
5855
        virReportError(VIR_ERR_DEVICE_MISSING,
5856 5857 5858
                       _("model '%s' watchdog device not present "
                         "in domain configuration"),
                       virDomainWatchdogModelTypeToString(watchdog->model));
M
Michal Privoznik 已提交
5859 5860 5861 5862 5863 5864 5865 5866 5867 5868
        return -1;
    }

    if (watchdog->model != VIR_DOMAIN_WATCHDOG_MODEL_I6300ESB) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("hot unplug of watchdog of model %s is not supported"),
                       virDomainWatchdogModelTypeToString(watchdog->model));
        return -1;
    }

5869 5870
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &watchdog->info);
M
Michal Privoznik 已提交
5871

5872 5873 5874 5875 5876
    qemuDomainObjEnterMonitor(driver, vm);
    if (qemuMonitorDelDevice(priv->mon, watchdog->info.alias) < 0) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        goto cleanup;
    }
M
Michal Privoznik 已提交
5877
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
5878
        goto cleanup;
M
Michal Privoznik 已提交
5879

5880 5881 5882 5883 5884 5885
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveWatchdog(driver, vm, watchdog);
    }
M
Michal Privoznik 已提交
5886

5887
 cleanup:
5888 5889
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
M
Michal Privoznik 已提交
5890 5891 5892 5893
    return ret;
}


5894 5895 5896
int
qemuDomainDetachRedirdevDevice(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
5897 5898
                               virDomainRedirdevDefPtr dev,
                               bool async)
5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainRedirdevDefPtr tmpRedirdevDef;
    ssize_t idx;

    if ((idx = virDomainRedirdevDefFind(vm->def, dev)) < 0) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("no matching redirdev was not found"));
        return -1;
    }

    tmpRedirdevDef = vm->def->redirdevs[idx];

    if (!tmpRedirdevDef->info.alias) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("alias not set for redirdev device"));
        return -1;
    }

5919 5920
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &tmpRedirdevDef->info);
5921 5922 5923 5924 5925 5926 5927 5928 5929

    qemuDomainObjEnterMonitor(driver, vm);
    if (qemuMonitorDelDevice(priv->mon, tmpRedirdevDef->info.alias) < 0) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        goto cleanup;
    }
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;

5930 5931 5932 5933 5934 5935
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveRedirdevDevice(driver, vm, tmpRedirdevDef);
    }
5936 5937

 cleanup:
5938 5939
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
5940 5941 5942 5943
    return ret;
}


5944
int
5945
qemuDomainDetachNetDevice(virQEMUDriverPtr driver,
5946
                          virDomainObjPtr vm,
5947 5948
                          virDomainDeviceDefPtr dev,
                          bool async)
5949
{
5950
    int detachidx, ret = -1;
5951 5952 5953
    virDomainNetDefPtr detach = NULL;
    qemuDomainObjPrivatePtr priv = vm->privateData;

5954
    if ((detachidx = virDomainNetFindIdx(vm->def, dev->data.net)) < 0)
5955
        goto cleanup;
5956

5957
    detach = vm->def->nets[detachidx];
5958

5959
    if (virDomainNetGetActualType(detach) == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
5960
        ret = qemuDomainDetachThisHostDevice(driver, vm,
5961 5962
                                             virDomainNetGetActualHostdev(detach),
                                             async);
5963 5964 5965
        goto cleanup;
    }

5966 5967
    if (qemuIsMultiFunctionDevice(vm->def, &detach->info)) {
        virReportError(VIR_ERR_OPERATION_FAILED,
5968
                       _("cannot hot unplug multifunction PCI device: %s"),
5969 5970
                       dev->data.disk->dst);
        goto cleanup;
5971 5972
    }

5973
    if (!detach->info.alias) {
5974 5975 5976 5977
        if (qemuAssignDeviceNetAlias(vm->def, detach, -1) < 0)
            goto cleanup;
    }

5978 5979
    if (virDomainNetGetActualBandwidth(detach) &&
        virNetDevSupportBandwidth(virDomainNetGetActualType(detach)) &&
5980 5981 5982 5983
        virNetDevBandwidthClear(detach->ifname) < 0)
        VIR_WARN("cannot clear bandwidth setting for device : %s",
                 detach->ifname);

5984 5985 5986
    /* deactivate the tap/macvtap device on the host, which could also
     * affect the parent device (e.g. macvtap passthrough mode sets
     * the parent device offline)
5987 5988 5989
     */
    ignore_value(qemuInterfaceStopDevice(detach));

5990 5991
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &detach->info);
5992

5993
    qemuDomainObjEnterMonitor(driver, vm);
5994 5995
    if (qemuMonitorDelDevice(priv->mon, detach->info.alias) < 0) {
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
5996
            goto cleanup;
5997 5998
        virDomainAuditNet(vm, detach, NULL, "detach", false);
        goto cleanup;
5999
    }
6000 6001
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
6002

6003 6004 6005 6006 6007 6008
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveNetDevice(driver, vm, detach);
    }
6009

6010
 cleanup:
6011 6012
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
6013 6014 6015
    return ret;
}

6016
int
6017
qemuDomainChangeGraphicsPasswords(virQEMUDriverPtr driver,
6018 6019 6020
                                  virDomainObjPtr vm,
                                  int type,
                                  virDomainGraphicsAuthDefPtr auth,
6021 6022
                                  const char *defaultPasswd,
                                  int asyncJob)
6023 6024 6025
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    time_t now = time(NULL);
6026 6027
    const char *expire;
    char *validTo = NULL;
6028
    const char *connected = NULL;
6029
    const char *password;
6030 6031
    int ret = -1;
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
6032

6033
    if (!auth->passwd && !defaultPasswd) {
6034 6035 6036
        ret = 0;
        goto cleanup;
    }
6037
    password = auth->passwd ? auth->passwd : defaultPasswd;
6038

6039 6040 6041
    if (auth->connected)
        connected = virDomainGraphicsAuthConnectedTypeToString(auth->connected);

6042 6043
    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
        goto cleanup;
6044
    ret = qemuMonitorSetPassword(priv->mon, type, password, connected);
6045 6046 6047

    if (ret == -2) {
        if (type != VIR_DOMAIN_GRAPHICS_TYPE_VNC) {
6048 6049
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Graphics password only supported for VNC"));
6050 6051
            ret = -1;
        } else {
6052
            ret = qemuMonitorSetVNCPassword(priv->mon, password);
6053 6054
        }
    }
6055
    if (ret != 0)
6056
        goto end_job;
6057

6058 6059 6060
    if (password[0] == '\0' ||
        (auth->expires && auth->validTo <= now)) {
        expire = "now";
6061
    } else if (auth->expires) {
6062
        if (virAsprintf(&validTo, "%lu", (unsigned long)auth->validTo) < 0)
6063 6064
            goto end_job;
        expire = validTo;
6065
    } else {
6066
        expire = "never";
6067 6068
    }

6069
    ret = qemuMonitorExpirePassword(priv->mon, type, expire);
6070 6071 6072 6073

    if (ret == -2) {
        /* XXX we could fake this with a timer */
        if (auth->expires) {
6074 6075
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("Expiry of passwords is not supported"));
6076
            ret = -1;
6077 6078
        } else {
            ret = 0;
6079 6080 6081
        }
    }

6082
 end_job:
6083 6084
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;
6085
 cleanup:
6086
    VIR_FREE(validTo);
6087
    virObjectUnref(cfg);
6088 6089
    return ret;
}
6090

6091
int qemuDomainAttachLease(virQEMUDriverPtr driver,
6092 6093 6094
                          virDomainObjPtr vm,
                          virDomainLeaseDefPtr lease)
{
6095 6096 6097
    int ret = -1;
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);

6098
    if (virDomainLeaseInsertPreAlloc(vm->def) < 0)
6099
        goto cleanup;
6100

6101
    if (virDomainLockLeaseAttach(driver->lockManager, cfg->uri,
6102
                                 vm, lease) < 0) {
6103
        virDomainLeaseInsertPreAlloced(vm->def, NULL);
6104
        goto cleanup;
6105 6106 6107
    }

    virDomainLeaseInsertPreAlloced(vm->def, lease);
6108 6109
    ret = 0;

6110
 cleanup:
6111 6112
    virObjectUnref(cfg);
    return ret;
6113 6114
}

6115
int qemuDomainDetachLease(virQEMUDriverPtr driver,
6116 6117 6118
                          virDomainObjPtr vm,
                          virDomainLeaseDefPtr lease)
{
6119
    virDomainLeaseDefPtr det_lease;
6120
    int idx;
6121

6122
    if ((idx = virDomainLeaseIndex(vm->def, lease)) < 0) {
6123 6124 6125
        virReportError(VIR_ERR_INVALID_ARG,
                       _("Lease %s in lockspace %s does not exist"),
                       lease->key, NULLSTR(lease->lockspace));
6126 6127 6128 6129 6130 6131
        return -1;
    }

    if (virDomainLockLeaseDetach(driver->lockManager, vm, lease) < 0)
        return -1;

6132
    det_lease = virDomainLeaseRemoveAt(vm->def, idx);
6133
    virDomainLeaseDefFree(det_lease);
6134 6135
    return 0;
}
6136 6137 6138

int qemuDomainDetachChrDevice(virQEMUDriverPtr driver,
                              virDomainObjPtr vm,
6139 6140
                              virDomainChrDefPtr chr,
                              bool async)
6141 6142 6143 6144 6145 6146 6147 6148
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainDefPtr vmdef = vm->def;
    virDomainChrDefPtr tmpChr;
    char *devstr = NULL;

    if (!(tmpChr = virDomainChrFind(vmdef, chr))) {
6149
        virReportError(VIR_ERR_DEVICE_MISSING,
6150 6151 6152
                       _("chr type '%s' device not present "
                         "in domain configuration"),
                       virDomainChrDeviceTypeToString(chr->deviceType));
6153
        goto cleanup;
6154 6155
    }

P
Pavel Hrdina 已提交
6156
    if (!tmpChr->info.alias && qemuAssignDeviceChrAlias(vmdef, tmpChr, -1) < 0)
6157
        goto cleanup;
P
Pavel Hrdina 已提交
6158 6159 6160

    sa_assert(tmpChr->info.alias);

6161
    if (qemuBuildChrDeviceStr(&devstr, vmdef, chr, priv->qemuCaps) < 0)
6162
        goto cleanup;
6163

6164 6165
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &tmpChr->info);
6166

6167
    qemuDomainObjEnterMonitor(driver, vm);
6168 6169 6170 6171
    if (devstr && qemuMonitorDelDevice(priv->mon, tmpChr->info.alias) < 0) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        goto cleanup;
    }
6172 6173
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;
6174

6175 6176 6177 6178 6179 6180
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveChrDevice(driver, vm, tmpChr);
    }
6181

6182
 cleanup:
6183 6184
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
6185 6186 6187
    VIR_FREE(devstr);
    return ret;
}
6188 6189 6190 6191 6192


int
qemuDomainDetachRNGDevice(virQEMUDriverPtr driver,
                          virDomainObjPtr vm,
6193 6194
                          virDomainRNGDefPtr rng,
                          bool async)
6195 6196 6197 6198 6199 6200 6201
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    ssize_t idx;
    virDomainRNGDefPtr tmpRNG;
    int rc;
    int ret = -1;

6202
    if ((idx = virDomainRNGFind(vm->def, rng)) < 0) {
6203
        virReportError(VIR_ERR_DEVICE_MISSING,
6204 6205 6206
                       _("model '%s' RNG device not present "
                         "in domain configuration"),
                       virDomainRNGBackendTypeToString(rng->model));
6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217
        return -1;
    }

    tmpRNG = vm->def->rngs[idx];

    if (!tmpRNG->info.alias) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("alias not set for RNG device"));
        return -1;
    }

6218 6219
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &tmpRNG->info);
6220 6221 6222 6223 6224 6225

    qemuDomainObjEnterMonitor(driver, vm);
    rc = qemuMonitorDelDevice(priv->mon, tmpRNG->info.alias);
    if (qemuDomainObjExitMonitor(driver, vm) || rc < 0)
        goto cleanup;

6226 6227 6228 6229 6230 6231
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveRNGDevice(driver, vm, tmpRNG);
    }
6232 6233

 cleanup:
6234 6235
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
6236 6237
    return ret;
}
6238 6239 6240 6241 6242


int
qemuDomainDetachMemoryDevice(virQEMUDriverPtr driver,
                             virDomainObjPtr vm,
6243 6244
                             virDomainMemoryDefPtr memdef,
                             bool async)
6245 6246 6247 6248 6249 6250 6251
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainMemoryDefPtr mem;
    int idx;
    int rc;
    int ret = -1;

6252
    qemuDomainMemoryDeviceAlignSize(vm->def, memdef);
6253 6254

    if ((idx = virDomainMemoryFindByDef(vm->def, memdef)) < 0) {
6255
        virReportError(VIR_ERR_DEVICE_MISSING,
6256 6257 6258
                       _("model '%s' memory device not present "
                         "in the domain configuration"),
                       virDomainMemoryModelTypeToString(memdef->model));
6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269
        return -1;
    }

    mem = vm->def->mems[idx];

    if (!mem->info.alias) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("alias for the memory device was not found"));
        return -1;
    }

6270 6271
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &mem->info);
6272 6273 6274 6275 6276 6277

    qemuDomainObjEnterMonitor(driver, vm);
    rc = qemuMonitorDelDevice(priv->mon, mem->info.alias);
    if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
        goto cleanup;

6278 6279 6280 6281 6282 6283
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveMemoryDevice(driver, vm, mem);
    }
6284 6285

 cleanup:
6286 6287
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
6288 6289
    return ret;
}
6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301


static int
qemuDomainRemoveVcpu(virQEMUDriverPtr driver,
                     virDomainObjPtr vm,
                     unsigned int vcpu)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virDomainVcpuDefPtr vcpuinfo = virDomainDefGetVcpu(vm->def, vcpu);
    qemuDomainVcpuPrivatePtr vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpuinfo);
    int oldvcpus = virDomainDefGetVcpus(vm->def);
    unsigned int nvcpus = vcpupriv->vcpus;
6302
    virErrorPtr save_error = NULL;
6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326
    size_t i;

    if (qemuDomainRefreshVcpuInfo(driver, vm, QEMU_ASYNC_JOB_NONE, false) < 0)
        return -1;

    /* validation requires us to set the expected state prior to calling it */
    for (i = vcpu; i < vcpu + nvcpus; i++) {
        vcpuinfo = virDomainDefGetVcpu(vm->def, i);
        vcpuinfo->online = false;
    }

    if (qemuDomainValidateVcpuInfo(vm) < 0) {
        /* rollback vcpu count if the setting has failed */
        virDomainAuditVcpu(vm, oldvcpus, oldvcpus - nvcpus, "update", false);

        for (i = vcpu; i < vcpu + nvcpus; i++) {
            vcpuinfo = virDomainDefGetVcpu(vm->def, i);
            vcpuinfo->online = true;
        }
        return -1;
    }

    virDomainAuditVcpu(vm, oldvcpus, oldvcpus - nvcpus, "update", true);

6327 6328 6329 6330 6331 6332
    virErrorPreserveLast(&save_error);

    for (i = vcpu; i < vcpu + nvcpus; i++)
        ignore_value(virCgroupDelThread(priv->cgroup, VIR_CGROUP_THREAD_VCPU, i));

    virErrorRestore(&save_error);
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

    return 0;
}


void
qemuDomainRemoveVcpuAlias(virQEMUDriverPtr driver,
                          virDomainObjPtr vm,
                          const char *alias)
{
    virDomainVcpuDefPtr vcpu;
    qemuDomainVcpuPrivatePtr vcpupriv;
    size_t i;

    for (i = 0; i < virDomainDefGetVcpusMax(vm->def); i++) {
        vcpu = virDomainDefGetVcpu(vm->def, i);
        vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpu);

        if (STREQ_NULLABLE(alias, vcpupriv->alias)) {
            qemuDomainRemoveVcpu(driver, vm, i);
            return;
        }
    }
}


6359
static int
6360
qemuDomainHotplugDelVcpu(virQEMUDriverPtr driver,
6361
                         virQEMUDriverConfigPtr cfg,
6362 6363 6364 6365 6366 6367 6368 6369
                         virDomainObjPtr vm,
                         unsigned int vcpu)
{
    virDomainVcpuDefPtr vcpuinfo = virDomainDefGetVcpu(vm->def, vcpu);
    qemuDomainVcpuPrivatePtr vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpuinfo);
    int oldvcpus = virDomainDefGetVcpus(vm->def);
    unsigned int nvcpus = vcpupriv->vcpus;
    int rc;
6370
    int ret = -1;
6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384

    if (!vcpupriv->alias) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("vcpu '%u' can't be unplugged"), vcpu);
        return -1;
    }

    qemuDomainMarkDeviceAliasForRemoval(vm, vcpupriv->alias);

    qemuDomainObjEnterMonitor(driver, vm);

    rc = qemuMonitorDelDevice(qemuDomainGetMonitor(vm), vcpupriv->alias);

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
6385
        goto cleanup;
6386 6387 6388

    if (rc < 0) {
        virDomainAuditVcpu(vm, oldvcpus, oldvcpus - nvcpus, "update", false);
6389
        goto cleanup;
6390 6391 6392 6393 6394 6395 6396
    }

    if ((rc = qemuDomainWaitForDeviceRemoval(vm)) <= 0) {
        if (rc == 0)
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("vcpu unplug request timed out"));

6397
        goto cleanup;
6398 6399
    }

6400 6401 6402
    if (qemuDomainRemoveVcpu(driver, vm, vcpu) < 0)
        goto cleanup;

6403 6404 6405 6406 6407
    qemuDomainVcpuPersistOrder(vm->def);

    if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
        goto cleanup;

6408 6409 6410 6411 6412
    ret = 0;

 cleanup:
    qemuDomainResetDeviceRemoval(vm);
    return ret;
6413
}
6414 6415 6416 6417


static int
qemuDomainHotplugAddVcpu(virQEMUDriverPtr driver,
6418
                         virQEMUDriverConfigPtr cfg,
6419 6420 6421 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 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 6475 6476 6477 6478
                         virDomainObjPtr vm,
                         unsigned int vcpu)
{
    virJSONValuePtr vcpuprops = NULL;
    virDomainVcpuDefPtr vcpuinfo = virDomainDefGetVcpu(vm->def, vcpu);
    qemuDomainVcpuPrivatePtr vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpuinfo);
    unsigned int nvcpus = vcpupriv->vcpus;
    bool newhotplug = qemuDomainSupportsNewVcpuHotplug(vm);
    int ret = -1;
    int rc;
    int oldvcpus = virDomainDefGetVcpus(vm->def);
    size_t i;

    if (newhotplug) {
        if (virAsprintf(&vcpupriv->alias, "vcpu%u", vcpu) < 0)
            goto cleanup;

        if (!(vcpuprops = qemuBuildHotpluggableCPUProps(vcpuinfo)))
            goto cleanup;
    }

    qemuDomainObjEnterMonitor(driver, vm);

    if (newhotplug) {
        rc = qemuMonitorAddDeviceArgs(qemuDomainGetMonitor(vm), vcpuprops);
        vcpuprops = NULL;
    } else {
        rc = qemuMonitorSetCPU(qemuDomainGetMonitor(vm), vcpu, true);
    }

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;

    virDomainAuditVcpu(vm, oldvcpus, oldvcpus + nvcpus, "update", rc == 0);

    if (rc < 0)
        goto cleanup;

    /* start outputting of the new XML element to allow keeping unpluggability */
    if (newhotplug)
        vm->def->individualvcpus = true;

    if (qemuDomainRefreshVcpuInfo(driver, vm, QEMU_ASYNC_JOB_NONE, false) < 0)
        goto cleanup;

    /* validation requires us to set the expected state prior to calling it */
    for (i = vcpu; i < vcpu + nvcpus; i++) {
        vcpuinfo = virDomainDefGetVcpu(vm->def, i);
        vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpuinfo);

        vcpuinfo->online = true;

        if (vcpupriv->tid > 0 &&
            qemuProcessSetupVcpu(vm, i) < 0)
            goto cleanup;
    }

    if (qemuDomainValidateVcpuInfo(vm) < 0)
        goto cleanup;

6479 6480 6481 6482 6483
    qemuDomainVcpuPersistOrder(vm->def);

    if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
        goto cleanup;

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 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604
    ret = 0;

 cleanup:
    virJSONValueFree(vcpuprops);
    return ret;
}


/**
 * qemuDomainSelectHotplugVcpuEntities:
 *
 * @def: domain definition
 * @nvcpus: target vcpu count
 * @enable: set to true if vcpus should be enabled
 *
 * Tries to find which vcpu entities need to be enabled or disabled to reach
 * @nvcpus. This function works in order of the legacy hotplug but is able to
 * skip over entries that are added out of order.
 *
 * Returns the bitmap of vcpus to modify on success, NULL on error.
 */
static virBitmapPtr
qemuDomainSelectHotplugVcpuEntities(virDomainDefPtr def,
                                    unsigned int nvcpus,
                                    bool *enable)
{
    virBitmapPtr ret = NULL;
    virDomainVcpuDefPtr vcpu;
    qemuDomainVcpuPrivatePtr vcpupriv;
    unsigned int maxvcpus = virDomainDefGetVcpusMax(def);
    unsigned int curvcpus = virDomainDefGetVcpus(def);
    ssize_t i;

    if (!(ret = virBitmapNew(maxvcpus)))
        return NULL;

    if (nvcpus > curvcpus) {
        *enable = true;

        for (i = 0; i < maxvcpus && curvcpus < nvcpus; i++) {
            vcpu = virDomainDefGetVcpu(def, i);
            vcpupriv =  QEMU_DOMAIN_VCPU_PRIVATE(vcpu);

            if (vcpu->online)
                continue;

            if (vcpupriv->vcpus == 0)
                continue;

            curvcpus += vcpupriv->vcpus;

            if (curvcpus > nvcpus) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("target vm vcpu granularity does not allow the "
                                 "desired vcpu count"));
                goto error;
            }

            ignore_value(virBitmapSetBit(ret, i));
        }
    } else {
        *enable = false;

        for (i = maxvcpus - 1; i >= 0 && curvcpus > nvcpus; i--) {
            vcpu = virDomainDefGetVcpu(def, i);
            vcpupriv =  QEMU_DOMAIN_VCPU_PRIVATE(vcpu);

            if (!vcpu->online)
                continue;

            if (vcpupriv->vcpus == 0)
                continue;

            if (!vcpupriv->alias)
                continue;

            curvcpus -= vcpupriv->vcpus;

            if (curvcpus < nvcpus) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("target vm vcpu granularity does not allow the "
                                 "desired vcpu count"));
                goto error;
            }

            ignore_value(virBitmapSetBit(ret, i));
        }
    }

    if (curvcpus != nvcpus) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("failed to find appropriate hotpluggable vcpus to "
                         "reach the desired target vcpu count"));
        goto error;
    }

    return ret;

 error:
    virBitmapFree(ret);
    return NULL;
}


static int
qemuDomainSetVcpusLive(virQEMUDriverPtr driver,
                       virQEMUDriverConfigPtr cfg,
                       virDomainObjPtr vm,
                       virBitmapPtr vcpumap,
                       bool enable)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    qemuCgroupEmulatorAllNodesDataPtr emulatorCgroup = NULL;
    ssize_t nextvcpu = -1;
    int ret = -1;

    if (qemuCgroupEmulatorAllNodesAllow(priv->cgroup, &emulatorCgroup) < 0)
        goto cleanup;

    if (enable) {
        while ((nextvcpu = virBitmapNextSetBit(vcpumap, nextvcpu)) != -1) {
6605 6606
            if (qemuDomainHotplugAddVcpu(driver, cfg, vm, nextvcpu) < 0)
                goto cleanup;
6607 6608 6609 6610 6611 6612
        }
    } else {
        for (nextvcpu = virDomainDefGetVcpusMax(vm->def) - 1; nextvcpu >= 0; nextvcpu--) {
            if (!virBitmapIsBitSet(vcpumap, nextvcpu))
                continue;

6613 6614
            if (qemuDomainHotplugDelVcpu(driver, cfg, vm, nextvcpu) < 0)
                goto cleanup;
6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659
        }
    }

    ret = 0;

 cleanup:
    qemuCgroupEmulatorAllNodesRestore(emulatorCgroup);

    return ret;
}


/**
 * qemuDomainSetVcpusConfig:
 * @def: config/offline definition of a domain
 * @nvcpus: target vcpu count
 *
 * Properly handle cold(un)plug of vcpus:
 * - plug in inactive vcpus/uplug active rather than rewriting state
 * - fix hotpluggable state
 */
static void
qemuDomainSetVcpusConfig(virDomainDefPtr def,
                         unsigned int nvcpus,
                         bool hotpluggable)
{
    virDomainVcpuDefPtr vcpu;
    size_t curvcpus = virDomainDefGetVcpus(def);
    size_t maxvcpus = virDomainDefGetVcpusMax(def);
    size_t i;

    /* ordering information may become invalid, thus clear it */
    virDomainDefVcpuOrderClear(def);

    if (curvcpus == nvcpus)
        return;

    if (curvcpus < nvcpus) {
        for (i = 0; i < maxvcpus; i++) {
            vcpu = virDomainDefGetVcpu(def, i);

            if (!vcpu)
                continue;

            if (vcpu->online) {
6660
                /* non-hotpluggable vcpus need to be clustered at the beginning,
6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749
                 * thus we need to force vcpus to be hotpluggable when we find
                 * vcpus that are hotpluggable and online prior to the ones
                 * we are going to add */
                if (vcpu->hotpluggable == VIR_TRISTATE_BOOL_YES)
                    hotpluggable = true;

                continue;
            }

            vcpu->online = true;
            if (hotpluggable) {
                vcpu->hotpluggable = VIR_TRISTATE_BOOL_YES;
                def->individualvcpus = true;
            } else {
                vcpu->hotpluggable = VIR_TRISTATE_BOOL_NO;
            }

            if (++curvcpus == nvcpus)
                break;
        }
    } else {
        for (i = maxvcpus; i != 0; i--) {
            vcpu = virDomainDefGetVcpu(def, i - 1);

            if (!vcpu || !vcpu->online)
                continue;

            vcpu->online = false;
            vcpu->hotpluggable = VIR_TRISTATE_BOOL_YES;

            if (--curvcpus == nvcpus)
                break;
        }
    }
}


int
qemuDomainSetVcpusInternal(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           virDomainDefPtr def,
                           virDomainDefPtr persistentDef,
                           unsigned int nvcpus,
                           bool hotpluggable)
{
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    virBitmapPtr vcpumap = NULL;
    bool enable;
    int ret = -1;

    if (def && nvcpus > virDomainDefGetVcpusMax(def)) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("requested vcpus is greater than max allowable"
                         " vcpus for the live domain: %u > %u"),
                       nvcpus, virDomainDefGetVcpusMax(def));
        goto cleanup;
    }

    if (persistentDef && nvcpus > virDomainDefGetVcpusMax(persistentDef)) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("requested vcpus is greater than max allowable"
                         " vcpus for the persistent domain: %u > %u"),
                       nvcpus, virDomainDefGetVcpusMax(persistentDef));
        goto cleanup;
    }

    if (def) {
        if (!(vcpumap = qemuDomainSelectHotplugVcpuEntities(vm->def, nvcpus,
                                                            &enable)))
            goto cleanup;

        if (qemuDomainSetVcpusLive(driver, cfg, vm, vcpumap, enable) < 0)
            goto cleanup;
    }

    if (persistentDef) {
        qemuDomainSetVcpusConfig(persistentDef, nvcpus, hotpluggable);

        if (virDomainSaveConfig(cfg->configDir, driver->caps, persistentDef) < 0)
            goto cleanup;
    }

    ret = 0;

 cleanup:
    virBitmapFree(vcpumap);
    virObjectUnref(cfg);
    return ret;
}
6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761


static void
qemuDomainSetVcpuConfig(virDomainDefPtr def,
                        virBitmapPtr map,
                        bool state)
{
    virDomainVcpuDefPtr vcpu;
    ssize_t next = -1;

    def->individualvcpus = true;

6762 6763 6764
    /* ordering information may become invalid, thus clear it */
    virDomainDefVcpuOrderClear(def);

6765
    while ((next = virBitmapNextSetBit(map, next)) >= 0) {
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796
        if (!(vcpu = virDomainDefGetVcpu(def, next)))
            continue;

        vcpu->online = state;
        vcpu->hotpluggable = VIR_TRISTATE_BOOL_YES;
    }
}


/**
 * qemuDomainFilterHotplugVcpuEntities:
 *
 * Returns a bitmap of hotpluggable vcpu entities that correspond to the logical
 * vcpus requested in @vcpus.
 */
static virBitmapPtr
qemuDomainFilterHotplugVcpuEntities(virDomainDefPtr def,
                                    virBitmapPtr vcpus,
                                    bool state)
{
    qemuDomainVcpuPrivatePtr vcpupriv;
    virDomainVcpuDefPtr vcpu;
    virBitmapPtr map = NULL;
    virBitmapPtr ret = NULL;
    ssize_t next = -1;
    size_t i;

    if (!(map = virBitmapNewCopy(vcpus)))
        return NULL;

    /* make sure that all selected vcpus are in the correct state */
6797
    while ((next = virBitmapNextSetBit(map, next)) >= 0) {
6798 6799 6800 6801 6802
        if (!(vcpu = virDomainDefGetVcpu(def, next)))
            continue;

        if (vcpu->online == state) {
            virReportError(VIR_ERR_INVALID_ARG,
6803
                           _("vcpu '%zd' is already in requested state"), next);
6804 6805 6806 6807 6808
            goto cleanup;
        }

        if (vcpu->online && !vcpu->hotpluggable) {
            virReportError(VIR_ERR_INVALID_ARG,
6809
                           _("vcpu '%zd' can't be hotunplugged"), next);
6810 6811 6812 6813 6814 6815 6816
            goto cleanup;
        }
    }

    /* Make sure that all vCPUs belonging to a single hotpluggable entity were
     * selected and then de-select any sub-threads of it. */
    next = -1;
6817
    while ((next = virBitmapNextSetBit(map, next)) >= 0) {
6818 6819 6820 6821 6822 6823 6824
        if (!(vcpu = virDomainDefGetVcpu(def, next)))
            continue;

        vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpu);

        if (vcpupriv->vcpus == 0) {
            virReportError(VIR_ERR_INVALID_ARG,
6825
                           _("vcpu '%zd' belongs to a larger hotpluggable entity, "
6826 6827 6828 6829 6830 6831 6832 6833
                             "but siblings were not selected"), next);
            goto cleanup;
        }

        for (i = next + 1; i < next + vcpupriv->vcpus; i++) {
            if (!virBitmapIsBitSet(map, i)) {
                virReportError(VIR_ERR_INVALID_ARG,
                               _("vcpu '%zu' was not selected but it belongs to "
6834
                                 "hotpluggable entity '%zd-%zd' which was "
6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852
                                 "partially selected"),
                               i, next, next + vcpupriv->vcpus - 1);
                goto cleanup;
            }

            /* clear the subthreads */
            ignore_value(virBitmapClearBit(map, i));
        }
    }

    VIR_STEAL_PTR(ret, map);

 cleanup:
    virBitmapFree(map);
    return ret;
}


6853
static int
6854
qemuDomainVcpuValidateConfig(virDomainDefPtr def,
6855
                             virBitmapPtr map)
6856
{
6857 6858 6859
    virDomainVcpuDefPtr vcpu;
    size_t maxvcpus = virDomainDefGetVcpusMax(def);
    ssize_t next;
6860
    ssize_t firstvcpu = -1;
6861

6862 6863
    /* vcpu 0 can't be modified */
    if (virBitmapIsBitSet(map, 0)) {
6864
        virReportError(VIR_ERR_INVALID_ARG, "%s",
6865
                       _("vCPU '0' can't be modified"));
6866 6867 6868
        return -1;
    }

6869 6870 6871 6872 6873 6874
    /* non-hotpluggable vcpus need to stay clustered starting from vcpu 0 */
    for (next = virBitmapNextSetBit(map, -1) + 1; next < maxvcpus; next++) {
        if (!(vcpu = virDomainDefGetVcpu(def, next)))
            continue;

        /* skip vcpus being modified */
6875 6876 6877 6878
        if (virBitmapIsBitSet(map, next)) {
            if (firstvcpu < 0)
                firstvcpu = next;

6879
            continue;
6880
        }
6881 6882 6883 6884

        if (vcpu->online && vcpu->hotpluggable == VIR_TRISTATE_BOOL_NO) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("vcpu '%zd' can't be modified as it is followed "
6885
                             "by non-hotpluggable online vcpus"), firstvcpu);
6886 6887 6888 6889
            return -1;
        }
    }

6890 6891 6892 6893
    return 0;
}


6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927
int
qemuDomainSetVcpuInternal(virQEMUDriverPtr driver,
                          virDomainObjPtr vm,
                          virDomainDefPtr def,
                          virDomainDefPtr persistentDef,
                          virBitmapPtr map,
                          bool state)
{
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    virBitmapPtr livevcpus = NULL;
    int ret = -1;

    if (def) {
        if (!qemuDomainSupportsNewVcpuHotplug(vm)) {
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                           _("this qemu version does not support specific "
                             "vCPU hotplug"));
            goto cleanup;
        }

        if (!(livevcpus = qemuDomainFilterHotplugVcpuEntities(def, map, state)))
            goto cleanup;

        /* Make sure that only one hotpluggable entity is selected.
         * qemuDomainSetVcpusLive allows setting more at once but error
         * resolution in case of a partial failure is hard, so don't let users
         * do so */
        if (virBitmapCountBits(livevcpus) != 1) {
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                           _("only one hotpluggable entity can be selected"));
            goto cleanup;
        }
    }

6928
    if (persistentDef) {
6929
        if (qemuDomainVcpuValidateConfig(persistentDef, map) < 0)
6930 6931 6932
            goto cleanup;
    }

6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950
    if (livevcpus &&
        qemuDomainSetVcpusLive(driver, cfg, vm, livevcpus, state) < 0)
        goto cleanup;

    if (persistentDef) {
        qemuDomainSetVcpuConfig(persistentDef, map, state);

        if (virDomainSaveConfig(cfg->configDir, driver->caps, persistentDef) < 0)
            goto cleanup;
    }

    ret = 0;

 cleanup:
    virBitmapFree(livevcpus);
    virObjectUnref(cfg);
    return ret;
}
6951 6952 6953 6954


int
qemuDomainDetachInputDevice(virDomainObjPtr vm,
6955 6956
                            virDomainInputDefPtr def,
                            bool async)
6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virQEMUDriverPtr driver = priv->driver;
    virDomainInputDefPtr input;
    int ret = -1;
    int idx;

    if ((idx = virDomainInputDefFind(vm->def, def)) < 0) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("matching input device not found"));
        return -1;
    }
    input = vm->def->inputs[idx];

    switch ((virDomainInputBus) input->bus) {
    case VIR_DOMAIN_INPUT_BUS_PS2:
    case VIR_DOMAIN_INPUT_BUS_XEN:
    case VIR_DOMAIN_INPUT_BUS_PARALLELS:
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("input device on bus '%s' cannot be detached"),
                       virDomainInputBusTypeToString(input->bus));
        return -1;

    case VIR_DOMAIN_INPUT_BUS_LAST:
    case VIR_DOMAIN_INPUT_BUS_USB:
    case VIR_DOMAIN_INPUT_BUS_VIRTIO:
        break;
    }

6986 6987
    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &input->info);
6988 6989 6990 6991 6992 6993 6994 6995 6996

    qemuDomainObjEnterMonitor(driver, vm);
    if (qemuMonitorDelDevice(priv->mon, input->info.alias)) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        goto cleanup;
    }
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;

6997 6998 6999 7000 7001 7002
    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveInputDevice(vm, input);
    }
7003 7004

 cleanup:
7005 7006
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
7007 7008
    return ret;
}
J
Ján Tomko 已提交
7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051


int
qemuDomainDetachVsockDevice(virDomainObjPtr vm,
                            virDomainVsockDefPtr dev,
                            bool async)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virQEMUDriverPtr driver = priv->driver;
    virDomainVsockDefPtr vsock = vm->def->vsock;
    int ret = -1;


    if (!vsock ||
        !virDomainVsockDefEquals(dev, vsock)) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("matching vsock device not found"));
        return -1;
    }

    if (!async)
        qemuDomainMarkDeviceForRemoval(vm, &vsock->info);

    qemuDomainObjEnterMonitor(driver, vm);
    if (qemuMonitorDelDevice(priv->mon, vsock->info.alias)) {
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
        goto cleanup;
    }
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        goto cleanup;

    if (async) {
        ret = 0;
    } else {
        if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
            ret = qemuDomainRemoveVsockDevice(vm, vsock);
    }

 cleanup:
    if (!async)
        qemuDomainResetDeviceRemoval(vm);
    return ret;
}