qemu_migration.c 204.6 KB
Newer Older
1 2 3
/*
 * qemu_migration.c: QEMU migration handling
 *
4
 * Copyright (C) 2006-2015 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * 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
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
19 20 21 22 23
 *
 */

#include <config.h>

J
Ján Tomko 已提交
24 25
#include <netdb.h>
#include <sys/socket.h>
26
#include <sys/time.h>
27
#include <fcntl.h>
28
#include <poll.h>
29 30

#include "qemu_migration.h"
31
#include "qemu_migration_cookie.h"
32 33 34 35
#include "qemu_monitor.h"
#include "qemu_domain.h"
#include "qemu_process.h"
#include "qemu_capabilities.h"
36
#include "qemu_alias.h"
37
#include "qemu_cgroup.h"
38
#include "qemu_hotplug.h"
39
#include "qemu_blockjob.h"
40
#include "qemu_security.h"
41

42
#include "domain_audit.h"
43
#include "virlog.h"
44
#include "virerror.h"
45
#include "viralloc.h"
E
Eric Blake 已提交
46
#include "virfile.h"
47
#include "virnetdevopenvswitch.h"
48
#include "datatypes.h"
49
#include "virfdstream.h"
50
#include "viruuid.h"
51
#include "virtime.h"
52
#include "locking/domain_lock.h"
53
#include "rpc/virnetsocket.h"
54
#include "virstoragefile.h"
M
Martin Kletzander 已提交
55
#include "viruri.h"
56
#include "virhook.h"
57
#include "virstring.h"
58
#include "virtypedparam.h"
M
Michael R. Hines 已提交
59
#include "virprocess.h"
60
#include "nwfilter_conf.h"
61 62 63

#define VIR_FROM_THIS VIR_FROM_QEMU

64 65
VIR_LOG_INIT("qemu.qemu_migration");

66 67 68 69 70 71 72 73 74 75 76 77 78
VIR_ENUM_IMPL(qemuMigrationJobPhase, QEMU_MIGRATION_PHASE_LAST,
              "none",
              "perform2",
              "begin3",
              "perform3",
              "perform3_done",
              "confirm3_cancelled",
              "confirm3",
              "prepare",
              "finish2",
              "finish3",
);

79 80 81 82 83
VIR_ENUM_IMPL(qemuMigrationCompressMethod, QEMU_MIGRATION_COMPRESS_LAST,
              "xbzrle",
              "mt",
);

84 85
#define QEMU_MIGRATION_TLS_ALIAS_BASE "libvirt_migrate"

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
static int
qemuMigrationJobStart(virQEMUDriverPtr driver,
                      virDomainObjPtr vm,
                      qemuDomainAsyncJob job)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK;

static void
qemuMigrationJobSetPhase(virQEMUDriverPtr driver,
                         virDomainObjPtr vm,
                         qemuMigrationJobPhase phase)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);

static void
qemuMigrationJobStartPhase(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           qemuMigrationJobPhase phase)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);

static void
qemuMigrationJobContinue(virDomainObjPtr obj)
    ATTRIBUTE_NONNULL(1);

static bool
qemuMigrationJobIsActive(virDomainObjPtr vm,
                         qemuDomainAsyncJob job)
    ATTRIBUTE_NONNULL(1);

static void
qemuMigrationJobFinish(virQEMUDriverPtr driver,
                       virDomainObjPtr obj)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
117

118
/* qemuMigrationParamsCheckTLSCreds
119 120 121 122 123 124 125 126 127 128 129 130 131
 * @driver: pointer to qemu driver
 * @vm: domain object
 * @asyncJob: migration job to join
 *
 * Query the migration parameters looking for the 'tls-creds' parameter.
 * If found, then we can support setting or clearing the parameters and thus
 * can support TLS for migration.
 *
 * Returns 0 if we were able to successfully fetch the params and
 * additionally if the tls-creds parameter exists, saves it in the
 * private domain structure. Returns -1 on failure.
 */
static int
132 133 134
qemuMigrationParamsCheckTLSCreds(virQEMUDriverPtr driver,
                                 virDomainObjPtr vm,
                                 qemuDomainAsyncJob asyncJob)
135 136 137 138 139 140
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    qemuMonitorMigrationParams migParams = { 0 };

    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
141
        return -1;
142 143 144 145 146

    if (qemuMonitorGetMigrationParams(priv->mon, &migParams) < 0)
        goto cleanup;

    /* NB: Could steal NULL pointer too! Let caller decide what to do. */
147
    VIR_STEAL_PTR(priv->migTLSAlias, migParams.tlsCreds);
148 149 150 151 152 153 154 155 156 157 158 159 160

    ret = 0;

 cleanup:
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;

    qemuMigrationParamsClear(&migParams);

    return ret;
}


161
/* qemuMigrationParamsCheckSetupTLS
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
 * @driver: pointer to qemu driver
 * @vm: domain object
 * @cfg: configuration pointer
 * @asyncJob: migration job to join
 *
 * Check if TLS is possible and set up the environment. Assumes the caller
 * desires to use TLS (e.g. caller found VIR_MIGRATE_TLS flag).
 *
 * Ensure the qemu.conf has been properly configured to add an entry for
 * "migrate_tls_x509_cert_dir". Also check if the "tls-creds" parameter
 * was present from a query of migration parameters
 *
 * Returns 0 on success, -1 on error/failure
 */
static int
177 178 179 180
qemuMigrationParamsCheckSetupTLS(virQEMUDriverPtr driver,
                                 virQEMUDriverConfigPtr cfg,
                                 virDomainObjPtr vm,
                                 qemuDomainAsyncJob asyncJob)
181 182 183 184 185 186 187 188 189
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!cfg->migrateTLSx509certdir) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("host migration TLS directory not configured"));
        return -1;
    }

190
    if (qemuMigrationParamsCheckTLSCreds(driver, vm, asyncJob) < 0)
191 192 193 194 195 196 197 198 199 200 201 202
        return -1;

    if (!priv->migTLSAlias) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("TLS migration is not supported with this "
                         "QEMU binary"));
        return -1;
    }

    /* If there's a secret, then grab/store it now using the connection */
    if (cfg->migrateTLSx509secretUUID &&
        !(priv->migSecinfo =
203
          qemuDomainSecretInfoTLSNew(priv, QEMU_MIGRATION_TLS_ALIAS_BASE,
204 205 206 207 208 209 210
                                     cfg->migrateTLSx509secretUUID)))
        return -1;

    return 0;
}


211
/* qemuMigrationParamsAddTLSObjects
212 213 214 215 216 217 218 219 220 221 222 223 224 225
 * @driver: pointer to qemu driver
 * @vm: domain object
 * @cfg: configuration pointer
 * @tlsListen: server or client
 * @asyncJob: Migration job to join
 * @tlsAlias: alias to be generated for TLS object
 * @secAlias: alias to be generated for a secinfo object
 * @migParams: migration parameters to set
 *
 * Create the TLS objects for the migration and set the migParams value
 *
 * Returns 0 on success, -1 on failure
 */
static int
226 227 228 229 230 231 232 233
qemuMigrationParamsAddTLSObjects(virQEMUDriverPtr driver,
                                 virDomainObjPtr vm,
                                 virQEMUDriverConfigPtr cfg,
                                 bool tlsListen,
                                 qemuDomainAsyncJob asyncJob,
                                 char **tlsAlias,
                                 char **secAlias,
                                 qemuMonitorMigrationParamsPtr migParams)
234 235 236 237 238 239 240 241 242 243
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virJSONValuePtr tlsProps = NULL;
    virJSONValuePtr secProps = NULL;

    if (qemuDomainGetTLSObjects(priv->qemuCaps, priv->migSecinfo,
                                cfg->migrateTLSx509certdir, tlsListen,
                                cfg->migrateTLSx509verify,
                                QEMU_MIGRATION_TLS_ALIAS_BASE,
                                &tlsProps, tlsAlias, &secProps, secAlias) < 0)
244
        goto error;
245 246 247 248 249 250 251 252 253

    /* Ensure the domain doesn't already have the TLS objects defined...
     * This should prevent any issues just in case some cleanup wasn't
     * properly completed (both src and dst use the same alias) or
     * some other error path between now and perform . */
    qemuDomainDelTLSObjects(driver, vm, asyncJob, *secAlias, *tlsAlias);

    if (qemuDomainAddTLSObjects(driver, vm, asyncJob, *secAlias, &secProps,
                                *tlsAlias, &tlsProps) < 0)
254
        goto error;
255

256
    if (VIR_STRDUP(migParams->tlsCreds, *tlsAlias) < 0)
257
        goto error;
258 259

    return 0;
260 261 262 263 264

 error:
    virJSONValueFree(tlsProps);
    virJSONValueFree(secProps);
    return -1;
265 266 267
}


268
static void
269
qemuMigrationSrcStoreDomainState(virDomainObjPtr vm)
270 271 272 273 274 275 276 277 278 279
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    priv->preMigrationState = virDomainObjGetState(vm, NULL);

    VIR_DEBUG("Storing pre-migration state=%d domain=%p",
              priv->preMigrationState, vm);
}

/* Returns true if the domain was resumed, false otherwise */
static bool
280
qemuMigrationSrcRestoreDomainState(virQEMUDriverPtr driver, virDomainObjPtr vm)
281 282
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
283 284
    int reason;
    virDomainState state = virDomainObjGetState(vm, &reason);
285 286
    bool ret = false;

287 288 289 290 291
    VIR_DEBUG("driver=%p, vm=%p, pre-mig-state=%s, state=%s, reason=%s",
              driver, vm,
              virDomainStateTypeToString(priv->preMigrationState),
              virDomainStateTypeToString(state),
              virDomainStateReasonToString(state, reason));
292

293 294 295 296 297
    if (state != VIR_DOMAIN_PAUSED ||
        reason == VIR_DOMAIN_PAUSED_POSTCOPY_FAILED)
        goto cleanup;

    if (priv->preMigrationState == VIR_DOMAIN_RUNNING) {
298 299 300 301 302 303
        /* This is basically the only restore possibility that's safe
         * and we should attempt to do */

        VIR_DEBUG("Restoring pre-migration state due to migration error");

        /* we got here through some sort of failure; start the domain again */
304
        if (qemuProcessStartCPUs(driver, vm,
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
                                 VIR_DOMAIN_RUNNING_MIGRATION_CANCELED,
                                 QEMU_ASYNC_JOB_MIGRATION_OUT) < 0) {
            /* Hm, we already know we are in error here.  We don't want to
             * overwrite the previous error, though, so we just throw something
             * to the logs and hope for the best */
            VIR_ERROR(_("Failed to resume guest %s after failure"), vm->def->name);
            goto cleanup;
        }
        ret = true;
    }

 cleanup:
    priv->preMigrationState = VIR_DOMAIN_NOSTATE;
    return ret;
}

321 322

static int
323 324 325
qemuMigrationDstPrecreateDisk(virConnectPtr conn,
                              virDomainDiskDefPtr disk,
                              unsigned long long capacity)
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
{
    int ret = -1;
    virStoragePoolPtr pool = NULL;
    virStorageVolPtr vol = NULL;
    char *volName = NULL, *basePath = NULL;
    char *volStr = NULL;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    const char *format = NULL;
    unsigned int flags = 0;

    VIR_DEBUG("Precreate disk type=%s", virStorageTypeToString(disk->src->type));

    switch ((virStorageType) disk->src->type) {
    case VIR_STORAGE_TYPE_FILE:
        if (!virDomainDiskGetSource(disk)) {
            VIR_DEBUG("Dropping sourceless disk '%s'",
                      disk->dst);
            return 0;
        }

        if (VIR_STRDUP(basePath, disk->src->path) < 0)
            goto cleanup;

        if (!(volName = strrchr(basePath, '/'))) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("malformed disk path: %s"),
                           disk->src->path);
            goto cleanup;
        }

        *volName = '\0';
        volName++;

359
        if (!(pool = virStoragePoolLookupByTargetPath(conn, basePath)))
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
            goto cleanup;
        format = virStorageFileFormatTypeToString(disk->src->format);
        if (disk->src->format == VIR_STORAGE_FILE_QCOW2)
            flags |= VIR_STORAGE_VOL_CREATE_PREALLOC_METADATA;
        break;

    case VIR_STORAGE_TYPE_VOLUME:
        if (!(pool = virStoragePoolLookupByName(conn, disk->src->srcpool->pool)))
            goto cleanup;
        format = virStorageFileFormatTypeToString(disk->src->format);
        volName = disk->src->srcpool->volume;
        if (disk->src->format == VIR_STORAGE_FILE_QCOW2)
            flags |= VIR_STORAGE_VOL_CREATE_PREALLOC_METADATA;
        break;

375 376 377 378 379
    case VIR_STORAGE_TYPE_NETWORK:
        VIR_DEBUG("Skipping creation of network disk '%s'",
                  disk->dst);
        return 0;

380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
    case VIR_STORAGE_TYPE_BLOCK:
    case VIR_STORAGE_TYPE_DIR:
    case VIR_STORAGE_TYPE_NONE:
    case VIR_STORAGE_TYPE_LAST:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot precreate storage for disk type '%s'"),
                       virStorageTypeToString(disk->src->type));
        goto cleanup;
    }

    if ((vol = virStorageVolLookupByName(pool, volName))) {
        VIR_DEBUG("Skipping creation of already existing volume of name '%s'",
                  volName);
        ret = 0;
        goto cleanup;
    }

    virBufferAddLit(&buf, "<volume>\n");
    virBufferAdjustIndent(&buf, 2);
    virBufferEscapeString(&buf, "<name>%s</name>\n", volName);
    virBufferAsprintf(&buf, "<capacity>%llu</capacity>\n", capacity);
    virBufferAddLit(&buf, "<target>\n");
    virBufferAdjustIndent(&buf, 2);
    virBufferAsprintf(&buf, "<format type='%s'/>\n", format);
    virBufferAdjustIndent(&buf, -2);
    virBufferAddLit(&buf, "</target>\n");
    virBufferAdjustIndent(&buf, -2);
    virBufferAddLit(&buf, "</volume>\n");

    if (!(volStr = virBufferContentAndReset(&buf))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("unable to create volume XML"));
        goto cleanup;
    }

    if (!(vol = virStorageVolCreateXML(pool, volStr, flags)))
        goto cleanup;

    ret = 0;
 cleanup:
    VIR_FREE(basePath);
    VIR_FREE(volStr);
    virObjectUnref(vol);
    virObjectUnref(pool);
    return ret;
}

427
static bool
428 429
qemuMigrationAnyCopyDisk(virDomainDiskDef const *disk,
                         size_t nmigrate_disks, const char **migrate_disks)
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
{
    size_t i;

    /* Check if the disk alias is in the list */
    if (nmigrate_disks) {
        for (i = 0; i < nmigrate_disks; i++) {
            if (STREQ(disk->dst, migrate_disks[i]))
                return true;
        }
        return false;
    }

    /* Default is to migrate only non-shared non-readonly disks
     * with source */
    return !disk->src->shared && !disk->src->readonly &&
445
           !virStorageSourceIsEmpty(disk->src);
446 447
}

448 449

static int
450 451 452 453 454
qemuMigrationDstPrecreateStorage(virDomainObjPtr vm,
                                 qemuMigrationCookieNBDPtr nbd,
                                 size_t nmigrate_disks,
                                 const char **migrate_disks,
                                 bool incremental)
455 456 457
{
    int ret = -1;
    size_t i = 0;
458
    virConnectPtr conn;
459 460 461 462

    if (!nbd || !nbd->ndisks)
        return 0;

463 464 465
    if (!(conn = virGetConnectStorage()))
        return -1;

466 467 468 469
    for (i = 0; i < nbd->ndisks; i++) {
        virDomainDiskDefPtr disk;
        const char *diskSrcPath;

470
        VIR_DEBUG("Looking up disk target '%s' (capacity=%llu)",
471 472
                  nbd->disks[i].target, nbd->disks[i].capacity);

473 474
        if (!(disk = virDomainDiskByName(vm->def, nbd->disks[i].target,
                                         false))) {
475 476 477 478 479 480 481 482
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unable to find disk by target: %s"),
                           nbd->disks[i].target);
            goto cleanup;
        }

        diskSrcPath = virDomainDiskGetSource(disk);

483
        /* Skip disks we don't want to migrate and already existing disks. */
484
        if (!qemuMigrationAnyCopyDisk(disk, nmigrate_disks, migrate_disks) ||
485 486 487 488
            (diskSrcPath && virFileExists(diskSrcPath))) {
            continue;
        }

489 490 491 492 493 494 495
        if (incremental) {
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                           _("pre-creation of storage targets for incremental "
                             "storage migration is not supported"));
            goto cleanup;
        }

496 497
        VIR_DEBUG("Proceeding with disk source %s", NULLSTR(diskSrcPath));

498
        if (qemuMigrationDstPrecreateDisk(conn, disk, nbd->disks[i].capacity) < 0)
499 500 501 502 503
            goto cleanup;
    }

    ret = 0;
 cleanup:
504
    virObjectUnref(conn);
505 506 507 508
    return ret;
}


509
/**
510
 * qemuMigrationDstStartNBDServer:
511 512 513 514 515 516 517 518 519 520 521
 * @driver: qemu driver
 * @vm: domain
 *
 * Starts NBD server. This is a newer method to copy
 * storage during migration than using 'blk' and 'inc'
 * arguments in 'migrate' monitor command.
 * Error is reported here.
 *
 * Returns 0 on success, -1 otherwise.
 */
static int
522 523 524 525 526 527
qemuMigrationDstStartNBDServer(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
                               const char *listenAddr,
                               size_t nmigrate_disks,
                               const char **migrate_disks,
                               int nbdPort)
528 529 530 531 532 533 534
{
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    unsigned short port = 0;
    char *diskAlias = NULL;
    size_t i;

535 536 537 538 539 540
    if (nbdPort < 0 || nbdPort > USHRT_MAX) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("nbd port must be in range 0-65535"));
        return -1;
    }

541 542 543
    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];

544
        /* check whether disk should be migrated */
545
        if (!qemuMigrationAnyCopyDisk(disk, nmigrate_disks, migrate_disks))
546 547
            continue;

548
        if (disk->src->readonly || virStorageSourceIsEmpty(disk->src)) {
549
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
550 551
                           _("Cannot migrate empty or read-only disk %s"),
                           disk->dst);
552 553 554
            goto cleanup;
        }

555
        VIR_FREE(diskAlias);
556
        if (!(diskAlias = qemuAliasFromDisk(disk)))
557 558 559 560 561 562
            goto cleanup;

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

563 564 565 566 567 568 569 570
        if (port == 0) {
            if (nbdPort)
                port = nbdPort;
            else if (virPortAllocatorAcquire(driver->migrationPorts, &port) < 0)
                goto exit_monitor;

            if (qemuMonitorNBDServerStart(priv->mon, listenAddr, port) < 0)
                goto exit_monitor;
571 572
        }

573 574 575
        if (qemuMonitorNBDServerAdd(priv->mon, diskAlias, true) < 0)
            goto exit_monitor;
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
576 577 578 579 580 581
            goto cleanup;
    }

    priv->nbdPort = port;
    ret = 0;

582
 cleanup:
583
    VIR_FREE(diskAlias);
584
    if (ret < 0 && nbdPort == 0)
585
        virPortAllocatorRelease(port);
586
    return ret;
587 588 589 590

 exit_monitor:
    ignore_value(qemuDomainObjExitMonitor(driver, vm));
    goto cleanup;
591 592
}

593 594

static int
595 596 597
qemuMigrationDstStopNBDServer(virQEMUDriverPtr driver,
                              virDomainObjPtr vm,
                              qemuMigrationCookiePtr mig)
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (!mig->nbd)
        return 0;

    if (qemuDomainObjEnterMonitorAsync(driver, vm,
                                       QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
        return -1;

    if (qemuMonitorNBDServerStop(priv->mon) < 0)
        VIR_WARN("Unable to stop NBD server");
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        return -1;

613
    virPortAllocatorRelease(priv->nbdPort);
614 615 616 617 618 619
    priv->nbdPort = 0;
    return 0;
}


/**
620
 * qemuMigrationSrcDriveMirrorReady:
621 622 623 624
 * @driver: qemu driver
 * @vm: domain
 *
 * Check the status of all drive-mirrors started by
625
 * qemuMigrationSrcDriveMirror. Any pending block job events
626 627 628 629 630 631 632
 * for the mirrored disks will be processed.
 *
 * Returns 1 if all mirrors are "ready",
 *         0 if some mirrors are still performing initial sync,
 *        -1 on error.
 */
static int
633 634 635
qemuMigrationSrcDriveMirrorReady(virQEMUDriverPtr driver,
                                 virDomainObjPtr vm,
                                 qemuDomainAsyncJob asyncJob)
636 637
{
    size_t i;
638 639
    size_t notReady = 0;
    int status;
640 641 642

    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];
643
        qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
644
        char *error = NULL;
645

646
        if (!diskPriv->migrating)
647 648
            continue;

649
        status = qemuBlockJobUpdate(driver, vm, asyncJob, disk, &error);
650
        if (status == VIR_DOMAIN_BLOCK_JOB_FAILED) {
651 652 653 654 655 656 657 658 659
            if (error) {
                virReportError(VIR_ERR_OPERATION_FAILED,
                               _("migration of disk %s failed: %s"),
                               disk->dst, error);
                VIR_FREE(error);
            } else {
                virReportError(VIR_ERR_OPERATION_FAILED,
                               _("migration of disk %s failed"), disk->dst);
            }
660 661
            return -1;
        }
662
        VIR_FREE(error);
663 664 665

        if (disk->mirrorState != VIR_DOMAIN_DISK_MIRROR_STATE_READY)
            notReady++;
666 667
    }

668 669 670 671 672 673 674
    if (notReady) {
        VIR_DEBUG("Waiting for %zu disk mirrors to get ready", notReady);
        return 0;
    } else {
        VIR_DEBUG("All disk mirrors are ready");
        return 1;
    }
675 676 677
}


678 679 680 681
/*
 * If @check is true, the function will report an error and return a different
 * code in case a block job fails. This way we can properly abort migration in
 * case some block jobs failed once all memory has already been transferred.
682
 *
683 684 685 686
 * Returns 1 if all mirrors are gone,
 *         0 if some mirrors are still active,
 *         -1 some mirrors failed but some are still active,
 *         -2 all mirrors are gone but some of them failed.
687 688
 */
static int
689
qemuMigrationDriveMirrorCancelled(virQEMUDriverPtr driver,
690
                                  virDomainObjPtr vm,
691
                                  qemuDomainAsyncJob asyncJob,
692
                                  bool check)
693
{
694 695
    size_t i;
    size_t active = 0;
696
    size_t completed = 0;
697 698
    int status;
    bool failed = false;
699

700
 retry:
701 702 703
    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];
        qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
704
        char *error = NULL;
705

706 707
        if (!diskPriv->migrating)
            continue;
708

709
        status = qemuBlockJobUpdate(driver, vm, asyncJob, disk, &error);
710 711 712
        switch (status) {
        case VIR_DOMAIN_BLOCK_JOB_FAILED:
            if (check) {
713 714 715 716 717 718 719 720
                if (error) {
                    virReportError(VIR_ERR_OPERATION_FAILED,
                                   _("migration of disk %s failed: %s"),
                                   disk->dst, error);
                } else {
                    virReportError(VIR_ERR_OPERATION_FAILED,
                                   _("migration of disk %s failed"), disk->dst);
                }
721
                failed = true;
722
            }
M
Marc Hartmayer 已提交
723
            ATTRIBUTE_FALLTHROUGH;
724 725
        case VIR_DOMAIN_BLOCK_JOB_CANCELED:
        case VIR_DOMAIN_BLOCK_JOB_COMPLETED:
726
            qemuBlockJobSyncEnd(driver, vm, asyncJob, disk);
727 728
            diskPriv->migrating = false;
            break;
729

730 731
        default:
            active++;
732
        }
733 734 735

        if (status == VIR_DOMAIN_BLOCK_JOB_COMPLETED)
            completed++;
736 737

        VIR_FREE(error);
738 739 740 741 742 743 744 745 746 747
    }

    /* Updating completed block job drops the lock thus we have to recheck
     * block jobs for disks that reside before the disk(s) with completed
     * block job.
     */
    if (completed > 0) {
        completed = 0;
        active = 0;
        goto retry;
748
    }
749

750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
    if (failed) {
        if (active) {
            VIR_DEBUG("Some disk mirrors failed; still waiting for %zu "
                      "disk mirrors to finish", active);
            return -1;
        } else {
            VIR_DEBUG("All disk mirrors are gone; some of them failed");
            return -2;
        }
    } else {
        if (active) {
            VIR_DEBUG("Waiting for %zu disk mirrors to finish", active);
            return 0;
        } else {
            VIR_DEBUG("All disk mirrors are gone");
            return 1;
766
        }
767
    }
768
}
769 770


771 772 773 774 775 776
/*
 * Returns 0 on success,
 *         1 when job is already completed or it failed and failNoJob is false,
 *         -1 on error or when job failed and failNoJob is true.
 */
static int
777 778 779 780 781
qemuMigrationSrcCancelOneDriveMirror(virQEMUDriverPtr driver,
                                     virDomainObjPtr vm,
                                     virDomainDiskDefPtr disk,
                                     bool failNoJob,
                                     qemuDomainAsyncJob asyncJob)
782 783 784
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    char *diskAlias = NULL;
785
    char *error = NULL;
786 787 788 789
    int ret = -1;
    int status;
    int rv;

790
    status = qemuBlockJobUpdate(driver, vm, asyncJob, disk, &error);
791 792 793 794
    switch (status) {
    case VIR_DOMAIN_BLOCK_JOB_FAILED:
    case VIR_DOMAIN_BLOCK_JOB_CANCELED:
        if (failNoJob) {
795 796 797 798 799 800 801 802 803
            if (error) {
                virReportError(VIR_ERR_OPERATION_FAILED,
                               _("migration of disk %s failed: %s"),
                               disk->dst, error);
            } else {
                virReportError(VIR_ERR_OPERATION_FAILED,
                               _("migration of disk %s failed"), disk->dst);
            }
            goto cleanup;
804
        }
805
        ATTRIBUTE_FALLTHROUGH;
806
    case VIR_DOMAIN_BLOCK_JOB_COMPLETED:
807 808
        ret = 1;
        goto cleanup;
809 810
    }

811
    if (!(diskAlias = qemuAliasFromDisk(disk)))
812 813
        return -1;

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

817
    rv = qemuMonitorBlockJobCancel(priv->mon, diskAlias);
818 819 820 821 822

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

    ret = 0;
823 824 825

 cleanup:
    VIR_FREE(diskAlias);
826
    VIR_FREE(error);
827 828 829 830 831
    return ret;
}


/**
832
 * qemuMigrationSrcCancelDriveMirror:
833 834
 * @driver: qemu driver
 * @vm: domain
835
 * @check: if true report an error when some of the mirrors fails
836 837 838 839 840 841 842 843
 *
 * Cancel all drive-mirrors started by qemuMigrationDriveMirror.
 * Any pending block job events for the affected disks will be
 * processed.
 *
 * Returns 0 on success, -1 otherwise.
 */
static int
844 845 846 847 848
qemuMigrationSrcCancelDriveMirror(virQEMUDriverPtr driver,
                                  virDomainObjPtr vm,
                                  bool check,
                                  qemuDomainAsyncJob asyncJob,
                                  virConnectPtr dconn)
849
{
850
    virErrorPtr err = NULL;
851
    int ret = -1;
852
    size_t i;
853 854 855 856
    int rv;
    bool failed = false;

    VIR_DEBUG("Cancelling drive mirrors for domain %s", vm->def->name);
857 858 859

    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];
860
        qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
861

862
        if (!diskPriv->migrating)
863 864
            continue;

865 866
        rv = qemuMigrationSrcCancelOneDriveMirror(driver, vm, disk,
                                                  check, asyncJob);
867 868 869 870 871 872
        if (rv != 0) {
            if (rv < 0) {
                if (!err)
                    err = virSaveLastError();
                failed = true;
            }
873
            qemuBlockJobSyncEnd(driver, vm, asyncJob, disk);
874 875 876 877
            diskPriv->migrating = false;
        }
    }

878 879
    while ((rv = qemuMigrationDriveMirrorCancelled(driver, vm, asyncJob,
                                                   check)) != 1) {
880 881 882 883 884 885 886
        if (check && !failed &&
            dconn && virConnectIsAlive(dconn) <= 0) {
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("Lost connection to destination host"));
            failed = true;
        }

887 888 889 890
        if (rv < 0) {
            failed = true;
            if (rv == -2)
                break;
891
        }
892

893 894 895 896 897
        if (failed && !err)
            err = virSaveLastError();

        if (virDomainObjWait(vm) < 0)
            goto cleanup;
898 899
    }

900 901 902
    ret = failed ? -1 : 0;

 cleanup:
903 904 905 906 907
    if (err) {
        virSetError(err);
        virFreeError(err);
    }
    return ret;
908 909 910
}


911 912 913 914 915 916
/**
 * qemuMigrationDriveMirror:
 * @driver: qemu driver
 * @vm: domain
 * @mig: migration cookie
 * @host: where are we migrating to
917
 * @speed: bandwidth limit in MiB/s
918 919 920 921
 * @migrate_flags: migrate monitor command flags
 *
 * Run drive-mirror to feed NBD server running on dst and wait
 * till the process switches into another phase where writes go
922 923 924
 * simultaneously to both source and destination. On success,
 * update @migrate_flags so we don't tell 'migrate' command
 * to do the very same operation. On failure, the caller is
925
 * expected to call qemuMigrationSrcCancelDriveMirror to stop all
926
 * running mirrors.
927 928 929 930 931
 *
 * Returns 0 on success (@migrate_flags updated),
 *        -1 otherwise.
 */
static int
932 933 934 935 936 937 938 939 940
qemuMigrationSrcDriveMirror(virQEMUDriverPtr driver,
                            virDomainObjPtr vm,
                            qemuMigrationCookiePtr mig,
                            const char *host,
                            unsigned long speed,
                            unsigned int *migrate_flags,
                            size_t nmigrate_disks,
                            const char **migrate_disks,
                            virConnectPtr dconn)
941 942 943 944
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;
    int port;
945
    size_t i;
946 947
    char *diskAlias = NULL;
    char *nbd_dest = NULL;
948
    char *hoststr = NULL;
949
    unsigned long long mirror_speed = speed;
950
    unsigned int mirror_flags = VIR_DOMAIN_BLOCK_REBASE_REUSE_EXT;
951
    int rv;
952
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
953 954

    VIR_DEBUG("Starting drive mirrors for domain %s", vm->def->name);
955

956 957 958 959 960 961 962 963
    if (mirror_speed > LLONG_MAX >> 20) {
        virReportError(VIR_ERR_OVERFLOW,
                       _("bandwidth must be less than %llu"),
                       LLONG_MAX >> 20);
        goto cleanup;
    }
    mirror_speed <<= 20;

964 965 966 967
    /* steal NBD port and thus prevent its propagation back to destination */
    port = mig->nbd->port;
    mig->nbd->port = 0;

968 969
    /* escape literal IPv6 address */
    if (strchr(host, ':')) {
970
        if (virAsprintf(&hoststr, "[%s]", host) < 0)
971
            goto cleanup;
972
    } else if (VIR_STRDUP(hoststr, host) < 0) {
973
        goto cleanup;
974 975
    }

976 977 978 979 980
    if (*migrate_flags & QEMU_MONITOR_MIGRATE_NON_SHARED_INC)
        mirror_flags |= VIR_DOMAIN_BLOCK_REBASE_SHALLOW;

    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];
981
        qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
982
        int mon_ret;
983

984
        /* check whether disk should be migrated */
985
        if (!qemuMigrationAnyCopyDisk(disk, nmigrate_disks, migrate_disks))
986 987
            continue;

988
        if (!(diskAlias = qemuAliasFromDisk(disk)) ||
989
            (virAsprintf(&nbd_dest, "nbd:%s:%d:exportname=%s",
990
                         hoststr, port, diskAlias) < 0))
991 992
            goto cleanup;

993
        if (qemuDomainObjEnterMonitorAsync(driver, vm,
994
                                           QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
995 996
            goto cleanup;

997
        qemuBlockJobSyncBegin(disk);
998
        /* Force "raw" format for NBD export */
999
        mon_ret = qemuMonitorDriveMirror(priv->mon, diskAlias, nbd_dest,
1000
                                         "raw", mirror_speed, 0, 0, mirror_flags);
1001 1002
        VIR_FREE(diskAlias);
        VIR_FREE(nbd_dest);
1003

1004
        if (qemuDomainObjExitMonitor(driver, vm) < 0 || mon_ret < 0) {
1005
            qemuBlockJobSyncEnd(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT, disk);
1006 1007
            goto cleanup;
        }
1008
        diskPriv->migrating = true;
1009

1010
        if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0) {
1011 1012 1013
            VIR_WARN("Failed to save status on vm %s", vm->def->name);
            goto cleanup;
        }
1014
    }
1015

1016 1017
    while ((rv = qemuMigrationSrcDriveMirrorReady(driver, vm,
                                                  QEMU_ASYNC_JOB_MIGRATION_OUT)) != 1) {
1018 1019
        if (rv < 0)
            goto cleanup;
1020

1021
        if (priv->job.abortJob) {
1022
            priv->job.current->status = QEMU_DOMAIN_JOB_STATUS_CANCELED;
1023 1024 1025 1026
            virReportError(VIR_ERR_OPERATION_ABORTED, _("%s: %s"),
                           qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                           _("canceled by client"));
            goto cleanup;
1027
        }
1028

1029 1030 1031 1032 1033 1034
        if (dconn && virConnectIsAlive(dconn) <= 0) {
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("Lost connection to destination host"));
            goto cleanup;
        }

1035
        if (virDomainObjWait(vm) < 0)
1036
            goto cleanup;
1037 1038
    }

1039 1040
    qemuMigrationSrcFetchMirrorStats(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT,
                                     priv->job.current);
1041

1042
    /* Okay, all disks are ready. Modify migrate_flags */
1043 1044 1045 1046
    *migrate_flags &= ~(QEMU_MONITOR_MIGRATE_NON_SHARED_DISK |
                        QEMU_MONITOR_MIGRATE_NON_SHARED_INC);
    ret = 0;

1047
 cleanup:
1048
    virObjectUnref(cfg);
1049 1050
    VIR_FREE(diskAlias);
    VIR_FREE(nbd_dest);
1051
    VIR_FREE(hoststr);
1052 1053
    return ret;
}
1054

1055

1056
/**
1057
 * qemuMigrationSrcIsAllowedHostdev:
1058 1059 1060 1061 1062 1063
 * @def: domain definition
 *
 * Checks that @def does not contain any host devices unsupported accross
 * migrations. Returns true if the vm is allowed to migrate.
 */
static bool
1064
qemuMigrationSrcIsAllowedHostdev(const virDomainDef *def)
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
{
    size_t i;

    /* Migration with USB host devices is allowed, all other devices are
     * forbidden. */
    for (i = 0; i < def->nhostdevs; i++) {
        virDomainHostdevDefPtr hostdev = def->hostdevs[i];
        if (hostdev->mode != VIR_DOMAIN_HOSTDEV_MODE_SUBSYS ||
            hostdev->source.subsys.type != VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("domain has assigned non-USB host devices"));
            return false;
        }
    }

    return true;
}


1084
/**
1085
 * qemuMigrationSrcIsAllowed:
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
 * @driver: qemu driver struct
 * @vm: domain object
 * @remote: migration is remote
 * @flags: migration flags (see struct virDomainMigrateFlags)
 *
 * Validates that the configuration of @vm can be migrated in various
 * situations. If @remote is true, the migration happens to remote host. @flags
 * is used to check various special migration types according to the request.
 *
 * Returns true if migration is supported. Reports libvirt error and returns
 * false otherwise.
 */
1098
bool
1099 1100 1101 1102
qemuMigrationSrcIsAllowed(virQEMUDriverPtr driver,
                          virDomainObjPtr vm,
                          bool remote,
                          unsigned int flags)
1103
{
1104
    int nsnapshots;
1105
    int pauseReason;
1106
    size_t i;
1107

1108 1109 1110 1111 1112
    /* perform these checks only when migrating to remote hosts */
    if (remote) {
        nsnapshots = virDomainSnapshotObjListNum(vm->snapshots, NULL, 0);
        if (nsnapshots < 0)
            return false;
1113

1114 1115 1116 1117 1118
        if (nsnapshots > 0) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("cannot migrate domain with %d snapshots"),
                           nsnapshots);
            return false;
1119
        }
1120

1121
        /* cancel migration if disk I/O error is emitted while migrating */
1122
        if (flags & VIR_MIGRATE_ABORT_ON_ERROR &&
1123
            !(flags & VIR_MIGRATE_OFFLINE) &&
1124 1125
            virDomainObjGetState(vm, &pauseReason) == VIR_DOMAIN_PAUSED &&
            pauseReason == VIR_DOMAIN_PAUSED_IOERROR) {
E
Eric Blake 已提交
1126
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
1127
                           _("cannot migrate domain with I/O error"));
E
Eric Blake 已提交
1128 1129
            return false;
        }
1130 1131

    }
1132

1133 1134 1135 1136 1137 1138 1139
    /* following checks don't make sense for offline migration */
    if (!(flags & VIR_MIGRATE_OFFLINE)) {
        if (qemuProcessAutoDestroyActive(driver, vm)) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           "%s", _("domain is marked for auto destroy"));
            return false;
        }
1140

1141

1142 1143
        if (qemuDomainHasBlockjob(vm, false)) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
1144
                           _("domain has active block job"));
1145 1146 1147
            return false;
        }

1148
        if (!qemuMigrationSrcIsAllowedHostdev(vm->def))
1149 1150
            return false;

1151
        if (vm->def->cpu) {
1152 1153 1154
            /* QEMU blocks migration and save with invariant TSC enabled
             * unless TSC frequency is explicitly set.
             */
1155 1156
            if (virCPUCheckFeature(vm->def->os.arch, vm->def->cpu,
                                   "invtsc") == 1) {
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
                bool block = true;

                for (i = 0; i < vm->def->clock.ntimers; i++) {
                    virDomainTimerDefPtr timer = vm->def->clock.timers[i];

                    if (timer->name == VIR_DOMAIN_TIMER_NAME_TSC &&
                        timer->frequency > 0) {
                        block = false;
                        break;
                    }
                }

                if (block) {
                    virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                                   _("domain has 'invtsc' CPU feature but "
                                     "TSC frequency is not specified"));
                    return false;
                }
1175
            }
J
Ján Tomko 已提交
1176 1177
        }

1178 1179 1180
        /* Verify that memory device config can be transferred reliably */
        for (i = 0; i < vm->def->nmems; i++) {
            virDomainMemoryDefPtr mem = vm->def->mems[i];
1181

1182 1183 1184 1185 1186
            if (mem->model == VIR_DOMAIN_MEMORY_MODEL_DIMM &&
                mem->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DIMM) {
                virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                               _("domain's dimm info lacks slot ID "
                                 "or base address"));
1187

1188 1189
                return false;
            }
1190
        }
1191 1192 1193 1194 1195 1196

        if (vm->def->nshmems) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("migration with shmem device is not supported"));
            return false;
        }
1197 1198
    }

1199 1200 1201
    return true;
}

1202
static bool
1203 1204 1205 1206
qemuMigrationSrcIsSafe(virDomainDefPtr def,
                       size_t nmigrate_disks,
                       const char **migrate_disks,
                       unsigned int flags)
1207

1208
{
1209 1210
    bool storagemigration = flags & (VIR_MIGRATE_NON_SHARED_DISK |
                                     VIR_MIGRATE_NON_SHARED_INC);
1211
    size_t i;
1212
    int rc;
1213

1214
    for (i = 0; i < def->ndisks; i++) {
1215
        virDomainDiskDefPtr disk = def->disks[i];
1216
        const char *src = virDomainDiskGetSource(disk);
1217

1218 1219
        /* Disks without any source (i.e. floppies and CD-ROMs)
         * OR readonly are safe. */
1220
        if (virStorageSourceIsEmpty(disk->src) ||
1221
            disk->src->readonly)
1222
            continue;
1223

1224
        /* Disks which are migrated by qemu are safe too. */
1225
        if (storagemigration &&
1226
            qemuMigrationAnyCopyDisk(disk, nmigrate_disks, migrate_disks))
1227
            continue;
1228

1229
        /* However, disks on local FS (e.g. ext4) are not safe. */
1230
        if (virDomainDiskGetType(disk) == VIR_STORAGE_TYPE_FILE) {
1231
            if ((rc = virFileIsSharedFS(src)) < 0) {
1232
                return false;
1233 1234 1235 1236 1237
            } else if (rc == 0) {
                virReportError(VIR_ERR_MIGRATE_UNSAFE, "%s",
                               _("Migration without shared storage is unsafe"));
                return false;
            }
1238 1239 1240 1241 1242 1243 1244
            if ((rc = virStorageFileIsClusterFS(src)) < 0)
                return false;
            else if (rc == 1)
                continue;
        } else if (disk->src->type == VIR_STORAGE_TYPE_NETWORK &&
                   disk->src->protocol == VIR_STORAGE_NET_PROTOCOL_RBD) {
            continue;
1245
        }
1246

1247 1248 1249 1250 1251 1252 1253
        /* Our code elsewhere guarantees shared disks are either readonly (in
         * which case cache mode doesn't matter) or used with cache=none or used with cache=directsync */
        if (disk->src->shared ||
            disk->cachemode == VIR_DOMAIN_DISK_CACHE_DISABLE ||
            disk->cachemode == VIR_DOMAIN_DISK_CACHE_DIRECTSYNC)
            continue;

1254 1255
        virReportError(VIR_ERR_MIGRATE_UNSAFE, "%s",
                       _("Migration may lead to data corruption if disks"
1256
                         " use cache != none or cache != directsync"));
1257
        return false;
1258 1259 1260 1261 1262
    }

    return true;
}

1263
/** qemuMigrationSrcSetOffline
1264 1265 1266
 * Pause domain for non-live migration.
 */
int
1267 1268
qemuMigrationSrcSetOffline(virQEMUDriverPtr driver,
                           virDomainObjPtr vm)
1269 1270
{
    int ret;
1271
    VIR_DEBUG("driver=%p vm=%p", driver, vm);
1272 1273
    ret = qemuProcessStopCPUs(driver, vm, VIR_DOMAIN_PAUSED_MIGRATION,
                              QEMU_ASYNC_JOB_MIGRATION_OUT);
1274
    if (ret == 0) {
1275
        virObjectEventPtr event;
1276

1277
        event = virDomainEventLifecycleNewFromObj(vm,
1278 1279
                                         VIR_DOMAIN_EVENT_SUSPENDED,
                                         VIR_DOMAIN_EVENT_SUSPENDED_MIGRATED);
1280
        qemuDomainEventQueue(driver, event);
1281 1282 1283 1284 1285
    }

    return ret;
}

1286 1287

void
1288 1289
qemuMigrationAnyPostcopyFailed(virQEMUDriverPtr driver,
                               virDomainObjPtr vm)
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
{
    virDomainState state;
    int reason;

    state = virDomainObjGetState(vm, &reason);

    if (state != VIR_DOMAIN_PAUSED &&
        state != VIR_DOMAIN_RUNNING)
        return;

    if (state == VIR_DOMAIN_PAUSED &&
        reason == VIR_DOMAIN_PAUSED_POSTCOPY_FAILED)
        return;

    VIR_WARN("Migration of domain %s failed during post-copy; "
             "leaving the domain paused", vm->def->name);

    if (state == VIR_DOMAIN_RUNNING) {
        virObjectEventPtr event;

        if (qemuProcessStopCPUs(driver, vm,
                                VIR_DOMAIN_PAUSED_POSTCOPY_FAILED,
                                QEMU_ASYNC_JOB_MIGRATION_IN) < 0) {
            VIR_WARN("Unable to pause guest CPUs for %s", vm->def->name);
            return;
        }

        event = virDomainEventLifecycleNewFromObj(vm,
                                VIR_DOMAIN_EVENT_SUSPENDED,
                                VIR_DOMAIN_EVENT_SUSPENDED_POSTCOPY_FAILED);
        qemuDomainEventQueue(driver, event);
    } else {
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED,
                             VIR_DOMAIN_PAUSED_POSTCOPY_FAILED);
    }
}


1328
static int
1329
qemuMigrationOptionSet(virQEMUDriverPtr driver,
1330
                       virDomainObjPtr vm,
1331
                       qemuMonitorMigrationCaps capability,
1332
                       bool state,
1333 1334 1335 1336 1337
                       qemuDomainAsyncJob job)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret;

1338
    if (!qemuMigrationAnyCapsGet(vm, capability)) {
1339 1340 1341 1342
        if (!state) {
            /* Unsupported but we want it off anyway */
            return 0;
        }
1343 1344

        if (job == QEMU_ASYNC_JOB_MIGRATION_IN) {
1345 1346 1347 1348
            virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED,
                           _("Migration option '%s' is not supported by "
                             "target QEMU binary"),
                           qemuMonitorMigrationCapsTypeToString(capability));
1349
        } else {
1350 1351 1352 1353
            virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED,
                           _("Migration option '%s' is not supported by "
                             "source QEMU binary"),
                           qemuMonitorMigrationCapsTypeToString(capability));
1354
        }
1355
        return -1;
1356 1357
    }

1358 1359 1360
    if (qemuDomainObjEnterMonitorAsync(driver, vm, job) < 0)
        return -1;

1361
    ret = qemuMonitorSetMigrationCapability(priv->mon, capability, state);
1362

1363 1364
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;
1365

1366 1367 1368
    return ret;
}

1369 1370

static int
1371 1372 1373 1374
qemuMigrationOptionSetPostCopy(virQEMUDriverPtr driver,
                               virDomainObjPtr vm,
                               bool state,
                               qemuDomainAsyncJob job)
1375
{
1376 1377
    qemuDomainObjPrivatePtr priv = vm->privateData;

1378
    if (qemuMigrationOptionSet(driver, vm,
1379 1380 1381 1382
                               QEMU_MONITOR_MIGRATION_CAPS_POSTCOPY,
                               state, job) < 0)
        return -1;

1383
    priv->job.postcopyEnabled = state;
1384 1385 1386 1387
    return 0;
}


1388
static int
1389
qemuMigrationSrcWaitForSpice(virDomainObjPtr vm)
1390 1391 1392
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

1393 1394
    if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_SEAMLESS_MIGRATION) ||
        !priv->job.spiceMigration)
1395 1396
        return 0;

1397
    VIR_DEBUG("Waiting for SPICE to finish migration");
1398 1399
    while (!priv->job.spiceMigrated && !priv->job.abortJob) {
        if (virDomainObjWait(vm) < 0)
1400 1401 1402 1403
            return -1;
    }
    return 0;
}
1404

1405 1406 1407 1408

static void
qemuMigrationUpdateJobType(qemuDomainJobInfoPtr jobInfo)
{
1409
    switch ((qemuMonitorMigrationStatus) jobInfo->stats.mig.status) {
1410 1411 1412 1413
    case QEMU_MONITOR_MIGRATION_STATUS_POSTCOPY:
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_POSTCOPY;
        break;

1414
    case QEMU_MONITOR_MIGRATION_STATUS_COMPLETED:
1415
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_QEMU_COMPLETED;
1416 1417 1418
        break;

    case QEMU_MONITOR_MIGRATION_STATUS_INACTIVE:
1419
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_NONE;
1420 1421 1422
        break;

    case QEMU_MONITOR_MIGRATION_STATUS_ERROR:
1423
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_FAILED;
1424 1425 1426
        break;

    case QEMU_MONITOR_MIGRATION_STATUS_CANCELLED:
1427
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_CANCELED;
1428 1429
        break;

1430 1431 1432 1433 1434 1435 1436 1437
    case QEMU_MONITOR_MIGRATION_STATUS_PRE_SWITCHOVER:
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_PAUSED;
        break;

    case QEMU_MONITOR_MIGRATION_STATUS_DEVICE:
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_MIGRATING;
        break;

1438 1439 1440
    case QEMU_MONITOR_MIGRATION_STATUS_SETUP:
    case QEMU_MONITOR_MIGRATION_STATUS_ACTIVE:
    case QEMU_MONITOR_MIGRATION_STATUS_CANCELLING:
1441
    case QEMU_MONITOR_MIGRATION_STATUS_LAST:
1442 1443 1444 1445 1446 1447
        break;
    }
}


int
1448 1449 1450 1451 1452
qemuMigrationAnyFetchStats(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           qemuDomainAsyncJob asyncJob,
                           qemuDomainJobInfoPtr jobInfo,
                           char **error)
1453 1454
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
1455
    qemuMonitorMigrationStats stats;
1456 1457 1458 1459 1460
    int rv;

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

1461
    rv = qemuMonitorGetMigrationStats(priv->mon, &stats, error);
1462 1463 1464 1465

    if (qemuDomainObjExitMonitor(driver, vm) < 0 || rv < 0)
        return -1;

1466
    jobInfo->stats.mig = stats;
1467 1468

    return 0;
1469 1470 1471
}


1472 1473 1474 1475 1476 1477 1478
static const char *
qemuMigrationJobName(virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    switch (priv->job.asyncJob) {
    case QEMU_ASYNC_JOB_MIGRATION_OUT:
1479
        return _("migration out job");
1480 1481 1482 1483
    case QEMU_ASYNC_JOB_SAVE:
        return _("domain save job");
    case QEMU_ASYNC_JOB_DUMP:
        return _("domain core dump job");
1484 1485 1486 1487 1488 1489 1490 1491 1492
    case QEMU_ASYNC_JOB_NONE:
        return _("undefined");
    case QEMU_ASYNC_JOB_MIGRATION_IN:
        return _("migration in job");
    case QEMU_ASYNC_JOB_SNAPSHOT:
        return _("snapshot job");
    case QEMU_ASYNC_JOB_START:
        return _("start job");
    case QEMU_ASYNC_JOB_LAST:
1493 1494 1495 1496 1497 1498
    default:
        return _("job");
    }
}


1499
static int
1500
qemuMigrationJobCheckStatus(virQEMUDriverPtr driver,
1501
                            virDomainObjPtr vm,
1502
                            qemuDomainAsyncJob asyncJob)
1503 1504 1505
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    qemuDomainJobInfoPtr jobInfo = priv->job.current;
1506
    char *error = NULL;
1507
    bool events = virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_MIGRATION_EVENT);
1508
    int ret = -1;
1509

1510
    if (!events ||
1511
        jobInfo->stats.mig.status == QEMU_MONITOR_MIGRATION_STATUS_ERROR) {
1512
        if (qemuMigrationAnyFetchStats(driver, vm, asyncJob, jobInfo, &error) < 0)
1513 1514
            return -1;
    }
1515

1516 1517
    qemuMigrationUpdateJobType(jobInfo);

1518 1519
    switch (jobInfo->status) {
    case QEMU_DOMAIN_JOB_STATUS_NONE:
1520 1521
        virReportError(VIR_ERR_OPERATION_FAILED, _("%s: %s"),
                       qemuMigrationJobName(vm), _("is not active"));
1522
        goto cleanup;
1523

1524
    case QEMU_DOMAIN_JOB_STATUS_FAILED:
1525
        virReportError(VIR_ERR_OPERATION_FAILED, _("%s: %s"),
1526 1527 1528
                       qemuMigrationJobName(vm),
                       error ? error : _("unexpectedly failed"));
        goto cleanup;
1529

1530
    case QEMU_DOMAIN_JOB_STATUS_CANCELED:
1531 1532
        virReportError(VIR_ERR_OPERATION_ABORTED, _("%s: %s"),
                       qemuMigrationJobName(vm), _("canceled by client"));
1533
        goto cleanup;
1534

1535 1536
    case QEMU_DOMAIN_JOB_STATUS_COMPLETED:
    case QEMU_DOMAIN_JOB_STATUS_ACTIVE:
1537
    case QEMU_DOMAIN_JOB_STATUS_MIGRATING:
1538
    case QEMU_DOMAIN_JOB_STATUS_QEMU_COMPLETED:
1539
    case QEMU_DOMAIN_JOB_STATUS_POSTCOPY:
1540
    case QEMU_DOMAIN_JOB_STATUS_PAUSED:
1541 1542
        break;
    }
1543 1544 1545 1546 1547 1548

    ret = 0;

 cleanup:
    VIR_FREE(error);
    return ret;
1549 1550 1551
}


1552 1553
enum qemuMigrationCompletedFlags {
    QEMU_MIGRATION_COMPLETED_ABORT_ON_ERROR = (1 << 0),
1554
    /* This flag should only be set when run on src host */
1555
    QEMU_MIGRATION_COMPLETED_CHECK_STORAGE  = (1 << 1),
1556
    QEMU_MIGRATION_COMPLETED_POSTCOPY       = (1 << 2),
1557
    QEMU_MIGRATION_COMPLETED_PRE_SWITCHOVER = (1 << 3),
1558 1559
};

1560

1561 1562 1563 1564 1565 1566 1567
/**
 * Returns 1 if migration completed successfully,
 *         0 if the domain is still being migrated,
 *         -1 migration failed,
 *         -2 something else failed, we need to cancel migration.
 */
static int
1568 1569 1570 1571 1572
qemuMigrationAnyCompleted(virQEMUDriverPtr driver,
                          virDomainObjPtr vm,
                          qemuDomainAsyncJob asyncJob,
                          virConnectPtr dconn,
                          unsigned int flags)
1573 1574 1575 1576 1577
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    qemuDomainJobInfoPtr jobInfo = priv->job.current;
    int pauseReason;

1578
    if (qemuMigrationJobCheckStatus(driver, vm, asyncJob) < 0)
1579 1580
        goto error;

1581
    /* This flag should only be set when run on src host */
1582
    if (flags & QEMU_MIGRATION_COMPLETED_CHECK_STORAGE &&
1583
        qemuMigrationSrcDriveMirrorReady(driver, vm, asyncJob) < 0)
1584 1585
        goto error;

1586
    if (flags & QEMU_MIGRATION_COMPLETED_ABORT_ON_ERROR &&
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
        virDomainObjGetState(vm, &pauseReason) == VIR_DOMAIN_PAUSED &&
        pauseReason == VIR_DOMAIN_PAUSED_IOERROR) {
        virReportError(VIR_ERR_OPERATION_FAILED, _("%s: %s"),
                       qemuMigrationJobName(vm), _("failed due to I/O error"));
        goto error;
    }

    if (dconn && virConnectIsAlive(dconn) <= 0) {
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("Lost connection to destination host"));
        goto error;
    }

1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
    /* Migration was paused before serializing device state, let's return to
     * the caller so that it can finish all block jobs, resume migration, and
     * wait again for the real end of the migration.
     */
    if (flags & QEMU_MIGRATION_COMPLETED_PRE_SWITCHOVER &&
        jobInfo->status == QEMU_DOMAIN_JOB_STATUS_PAUSED) {
        VIR_DEBUG("Migration paused before switchover");
        return 1;
    }

1610 1611 1612 1613 1614
    /* In case of postcopy the source considers migration completed at the
     * moment it switched from active to postcopy-active state. The destination
     * will continue waiting until the migrate state changes to completed.
     */
    if (flags & QEMU_MIGRATION_COMPLETED_POSTCOPY &&
1615
        jobInfo->status == QEMU_DOMAIN_JOB_STATUS_POSTCOPY) {
1616 1617 1618 1619
        VIR_DEBUG("Migration switched to post-copy");
        return 1;
    }

1620
    if (jobInfo->status == QEMU_DOMAIN_JOB_STATUS_QEMU_COMPLETED)
1621 1622 1623 1624 1625
        return 1;
    else
        return 0;

 error:
1626 1627 1628
    switch (jobInfo->status) {
    case QEMU_DOMAIN_JOB_STATUS_MIGRATING:
    case QEMU_DOMAIN_JOB_STATUS_POSTCOPY:
1629
    case QEMU_DOMAIN_JOB_STATUS_PAUSED:
1630
        /* The migration was aborted by us rather than QEMU itself. */
1631
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_FAILED;
1632
        return -2;
1633 1634 1635

    case QEMU_DOMAIN_JOB_STATUS_QEMU_COMPLETED:
        /* Something failed after QEMU already finished the migration. */
1636
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_FAILED;
1637
        return -1;
1638 1639 1640 1641

    case QEMU_DOMAIN_JOB_STATUS_FAILED:
    case QEMU_DOMAIN_JOB_STATUS_CANCELED:
        /* QEMU aborted the migration. */
1642
        return -1;
1643 1644 1645 1646 1647 1648

    case QEMU_DOMAIN_JOB_STATUS_ACTIVE:
    case QEMU_DOMAIN_JOB_STATUS_COMPLETED:
    case QEMU_DOMAIN_JOB_STATUS_NONE:
        /* Impossible. */
        break;
1649
    }
1650 1651

    return -1;
1652 1653 1654
}


1655 1656 1657
/* Returns 0 on success, -2 when migration needs to be cancelled, or -1 when
 * QEMU reports failed migration.
 */
1658
static int
1659 1660 1661 1662 1663
qemuMigrationSrcWaitForCompletion(virQEMUDriverPtr driver,
                                  virDomainObjPtr vm,
                                  qemuDomainAsyncJob asyncJob,
                                  virConnectPtr dconn,
                                  unsigned int flags)
1664
{
1665
    qemuDomainObjPrivatePtr priv = vm->privateData;
J
Jiri Denemark 已提交
1666
    qemuDomainJobInfoPtr jobInfo = priv->job.current;
1667
    bool events = virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_MIGRATION_EVENT);
1668
    int rv;
1669

1670 1671
    jobInfo->status = QEMU_DOMAIN_JOB_STATUS_MIGRATING;

1672 1673
    while ((rv = qemuMigrationAnyCompleted(driver, vm, asyncJob,
                                           dconn, flags)) != 1) {
1674 1675
        if (rv < 0)
            return rv;
1676

1677 1678
        if (events) {
            if (virDomainObjWait(vm) < 0) {
1679
                jobInfo->status = QEMU_DOMAIN_JOB_STATUS_FAILED;
1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
                return -2;
            }
        } else {
            /* Poll every 50ms for progress & to allow cancellation */
            struct timespec ts = { .tv_sec = 0, .tv_nsec = 50 * 1000 * 1000ull };

            virObjectUnlock(vm);
            nanosleep(&ts, NULL);
            virObjectLock(vm);
        }
1690 1691
    }

1692
    if (events)
1693
        ignore_value(qemuMigrationAnyFetchStats(driver, vm, asyncJob, jobInfo, NULL));
1694

1695
    qemuDomainJobInfoUpdateTime(jobInfo);
1696 1697
    qemuDomainJobInfoUpdateDowntime(jobInfo);
    VIR_FREE(priv->job.completed);
1698
    if (VIR_ALLOC(priv->job.completed) == 0) {
1699
        *priv->job.completed = *jobInfo;
1700 1701
        priv->job.completed->status = QEMU_DOMAIN_JOB_STATUS_COMPLETED;
    }
1702

1703 1704 1705 1706
    if (asyncJob != QEMU_ASYNC_JOB_MIGRATION_OUT &&
        jobInfo->status == QEMU_DOMAIN_JOB_STATUS_QEMU_COMPLETED)
        jobInfo->status = QEMU_DOMAIN_JOB_STATUS_COMPLETED;

1707
    return 0;
1708 1709 1710
}


1711
static int
1712 1713 1714 1715
qemuMigrationDstWaitForCompletion(virQEMUDriverPtr driver,
                                  virDomainObjPtr vm,
                                  qemuDomainAsyncJob asyncJob,
                                  bool postcopy)
1716 1717
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
1718
    unsigned int flags = 0;
1719 1720 1721 1722 1723 1724 1725
    int rv;

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

    VIR_DEBUG("Waiting for incoming migration to complete");

1726 1727 1728
    if (postcopy)
        flags = QEMU_MIGRATION_COMPLETED_POSTCOPY;

1729 1730
    while ((rv = qemuMigrationAnyCompleted(driver, vm, asyncJob,
                                           NULL, flags)) != 1) {
1731 1732 1733 1734 1735 1736 1737 1738
        if (rv < 0 || virDomainObjWait(vm) < 0)
            return -1;
    }

    return 0;
}


1739
static int
1740 1741 1742 1743
qemuMigrationSrcGraphicsRelocate(virQEMUDriverPtr driver,
                                 virDomainObjPtr vm,
                                 qemuMigrationCookiePtr cookie,
                                 const char *graphicsuri)
1744 1745
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
1746 1747
    int ret = -1;
    const char *listenAddress = NULL;
1748
    virSocketAddr addr;
1749 1750 1751 1752 1753
    virURIPtr uri = NULL;
    int type = -1;
    int port = -1;
    int tlsPort = -1;
    const char *tlsSubject = NULL;
1754

1755
    if (!cookie || (!cookie->graphics && !graphicsuri))
1756 1757
        return 0;

1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776
    if (graphicsuri && !(uri = virURIParse(graphicsuri)))
        goto cleanup;

    if (cookie->graphics) {
        type = cookie->graphics->type;

        listenAddress = cookie->graphics->listen;

        if (!listenAddress ||
            (virSocketAddrParse(&addr, listenAddress, AF_UNSPEC) > 0 &&
             virSocketAddrIsWildcard(&addr)))
            listenAddress = cookie->remoteHostname;

        port = cookie->graphics->port;
        tlsPort = cookie->graphics->tlsPort;
        tlsSubject = cookie->graphics->tlsSubject;
    }

    if (uri) {
1777
        size_t i;
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804

        if ((type = virDomainGraphicsTypeFromString(uri->scheme)) < 0) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("unknown graphics type %s"), uri->scheme);
            goto cleanup;
        }

        if (uri->server)
            listenAddress = uri->server;
        if (uri->port > 0)
            port = uri->port;

        for (i = 0; i < uri->paramsCount; i++) {
            virURIParamPtr param = uri->params + i;

            if (STRCASEEQ(param->name, "tlsPort")) {
                if (virStrToLong_i(param->value, NULL, 10, &tlsPort) < 0) {
                    virReportError(VIR_ERR_INVALID_ARG,
                                   _("invalid tlsPort number: %s"),
                                   param->value);
                    goto cleanup;
                }
            } else if (STRCASEEQ(param->name, "tlsSubject")) {
                tlsSubject = param->value;
            }
        }
    }
1805 1806 1807 1808

    /* QEMU doesn't support VNC relocation yet, so
     * skip it to avoid generating an error
     */
1809 1810 1811 1812
    if (type != VIR_DOMAIN_GRAPHICS_TYPE_SPICE) {
        ret = 0;
        goto cleanup;
    }
1813

1814 1815 1816 1817 1818 1819 1820 1821 1822
    /* Older libvirt sends port == 0 for listen type='none' graphics. It's
     * safe to ignore such requests since relocation to unknown port does
     * not make sense in general.
     */
    if (port <= 0 && tlsPort <= 0) {
        ret = 0;
        goto cleanup;
    }

1823 1824 1825 1826
    if (qemuDomainObjEnterMonitorAsync(driver, vm,
                                       QEMU_ASYNC_JOB_MIGRATION_OUT) == 0) {
        ret = qemuMonitorGraphicsRelocate(priv->mon, type, listenAddress,
                                          port, tlsPort, tlsSubject);
1827
        priv->job.spiceMigration = !ret;
1828 1829
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
            ret = -1;
1830
    }
1831

1832
 cleanup:
1833
    virURIFree(uri);
1834 1835 1836 1837
    return ret;
}


1838
static int
1839 1840 1841
qemuMigrationDstOPDRelocate(virQEMUDriverPtr driver ATTRIBUTE_UNUSED,
                            virDomainObjPtr vm,
                            qemuMigrationCookiePtr cookie)
1842
{
1843 1844
    virDomainNetDefPtr netptr;
    int ret = -1;
1845
    size_t i;
1846 1847 1848 1849 1850 1851 1852 1853

    for (i = 0; i < cookie->network->nnets; i++) {
        netptr = vm->def->nets[i];

        switch (cookie->network->net[i].vporttype) {
        case VIR_NETDEV_VPORT_PROFILE_NONE:
        case VIR_NETDEV_VPORT_PROFILE_8021QBG:
        case VIR_NETDEV_VPORT_PROFILE_8021QBH:
1854
           break;
1855
        case VIR_NETDEV_VPORT_PROFILE_OPENVSWITCH:
1856 1857
            if (virNetDevOpenvswitchSetMigrateData(cookie->network->net[i].portdata,
                                                   netptr->ifname) != 0) {
J
Jiri Denemark 已提交
1858 1859 1860
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Unable to run command to set OVS port data for "
                                 "interface %s"), netptr->ifname);
1861 1862 1863
                goto cleanup;
            }
            break;
1864 1865 1866 1867 1868
        default:
            break;
        }
    }

1869
    ret = 0;
1870
 cleanup:
1871 1872 1873 1874
    return ret;
}


1875
int
1876 1877
qemuMigrationDstCheckProtocol(virQEMUCapsPtr qemuCaps,
                              const char *migrateFrom)
1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
{
    if (STRPREFIX(migrateFrom, "rdma")) {
        if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_MIGRATE_RDMA)) {
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                           _("incoming RDMA migration is not supported "
                             "with this QEMU binary"));
            return -1;
        }
    } else if (!STRPREFIX(migrateFrom, "tcp") &&
               !STRPREFIX(migrateFrom, "exec") &&
               !STRPREFIX(migrateFrom, "fd") &&
               !STRPREFIX(migrateFrom, "unix") &&
               STRNEQ(migrateFrom, "stdio")) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("unknown migration protocol"));
        return -1;
    }

    return 0;
}


char *
1901 1902
qemuMigrationDstGetURI(const char *migrateFrom,
                       int migrateFd)
1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
{
    char *uri = NULL;

    if (STREQ(migrateFrom, "stdio"))
        ignore_value(virAsprintf(&uri, "fd:%d", migrateFd));
    else
        ignore_value(VIR_STRDUP(uri, migrateFrom));

    return uri;
}


1915
int
1916 1917 1918 1919
qemuMigrationDstRun(virQEMUDriverPtr driver,
                    virDomainObjPtr vm,
                    const char *uri,
                    qemuDomainAsyncJob asyncJob)
1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;
    int rv;

    VIR_DEBUG("Setting up incoming migration with URI %s", uri);

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

    rv = qemuMonitorMigrateIncoming(priv->mon, uri);

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

    if (asyncJob == QEMU_ASYNC_JOB_MIGRATION_IN) {
1936
        /* qemuMigrationDstWaitForCompletion is called from the Finish phase */
1937 1938 1939 1940
        ret = 0;
        goto cleanup;
    }

1941
    if (qemuMigrationDstWaitForCompletion(driver, vm, asyncJob, false) < 0)
1942 1943 1944 1945 1946 1947 1948 1949 1950
        goto cleanup;

    ret = 0;

 cleanup:
    return ret;
}


1951 1952 1953 1954 1955 1956
/* This is called for outgoing non-p2p migrations when a connection to the
 * client which initiated the migration was closed but we were waiting for it
 * to follow up with the next phase, that is, in between
 * qemuDomainMigrateBegin3 and qemuDomainMigratePerform3 or
 * qemuDomainMigratePerform3 and qemuDomainMigrateConfirm3.
 */
1957
static void
1958 1959 1960
qemuMigrationSrcCleanup(virDomainObjPtr vm,
                        virConnectPtr conn,
                        void *opaque)
1961
{
1962
    virQEMUDriverPtr driver = opaque;
1963 1964 1965 1966 1967 1968 1969 1970 1971
    qemuDomainObjPrivatePtr priv = vm->privateData;

    VIR_DEBUG("vm=%s, conn=%p, asyncJob=%s, phase=%s",
              vm->def->name, conn,
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              qemuDomainAsyncJobPhaseToString(priv->job.asyncJob,
                                              priv->job.phase));

    if (!qemuMigrationJobIsActive(vm, QEMU_ASYNC_JOB_MIGRATION_OUT))
1972
        return;
1973 1974 1975 1976 1977

    VIR_DEBUG("The connection which started outgoing migration of domain %s"
              " was closed; canceling the migration",
              vm->def->name);

1978
    switch ((qemuMigrationJobPhase) priv->job.phase) {
1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009
    case QEMU_MIGRATION_PHASE_BEGIN3:
        /* just forget we were about to migrate */
        qemuDomainObjDiscardAsyncJob(driver, vm);
        break;

    case QEMU_MIGRATION_PHASE_PERFORM3_DONE:
        VIR_WARN("Migration of domain %s finished but we don't know if the"
                 " domain was successfully started on destination or not",
                 vm->def->name);
        /* clear the job and let higher levels decide what to do */
        qemuDomainObjDiscardAsyncJob(driver, vm);
        break;

    case QEMU_MIGRATION_PHASE_PERFORM3:
        /* cannot be seen without an active migration API; unreachable */
    case QEMU_MIGRATION_PHASE_CONFIRM3:
    case QEMU_MIGRATION_PHASE_CONFIRM3_CANCELLED:
        /* all done; unreachable */
    case QEMU_MIGRATION_PHASE_PREPARE:
    case QEMU_MIGRATION_PHASE_FINISH2:
    case QEMU_MIGRATION_PHASE_FINISH3:
        /* incoming migration; unreachable */
    case QEMU_MIGRATION_PHASE_PERFORM2:
        /* single phase outgoing migration; unreachable */
    case QEMU_MIGRATION_PHASE_NONE:
    case QEMU_MIGRATION_PHASE_LAST:
        /* unreachable */
        ;
    }
}

2010

2011
/* The caller is supposed to lock the vm and start a migration job. */
2012
static char *
2013 2014 2015 2016 2017 2018 2019 2020 2021
qemuMigrationSrcBeginPhase(virQEMUDriverPtr driver,
                           virDomainObjPtr vm,
                           const char *xmlin,
                           const char *dname,
                           char **cookieout,
                           int *cookieoutlen,
                           size_t nmigrate_disks,
                           const char **migrate_disks,
                           unsigned long flags)
2022 2023 2024
{
    char *rv = NULL;
    qemuMigrationCookiePtr mig = NULL;
2025
    virDomainDefPtr def = NULL;
2026
    qemuDomainObjPrivatePtr priv = vm->privateData;
2027
    virCapsPtr caps = NULL;
2028
    unsigned int cookieFlags = QEMU_MIGRATION_COOKIE_LOCKSTATE;
2029

2030
    VIR_DEBUG("driver=%p, vm=%p, xmlin=%s, dname=%s,"
2031
              " cookieout=%p, cookieoutlen=%p,"
2032
              " nmigrate_disks=%zu, migrate_disks=%p, flags=0x%lx",
2033
              driver, vm, NULLSTR(xmlin), NULLSTR(dname),
2034 2035
              cookieout, cookieoutlen, nmigrate_disks,
              migrate_disks, flags);
2036

2037 2038 2039
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

2040 2041 2042 2043 2044 2045
    /* Only set the phase if we are inside QEMU_ASYNC_JOB_MIGRATION_OUT.
     * Otherwise we will start the async job later in the perform phase losing
     * change protection.
     */
    if (priv->job.asyncJob == QEMU_ASYNC_JOB_MIGRATION_OUT)
        qemuMigrationJobSetPhase(driver, vm, QEMU_MIGRATION_PHASE_BEGIN3);
2046

2047
    if (!qemuMigrationSrcIsAllowed(driver, vm, true, flags))
2048 2049
        goto cleanup;

2050
    if (!(flags & (VIR_MIGRATE_UNSAFE | VIR_MIGRATE_OFFLINE)) &&
2051
        !qemuMigrationSrcIsSafe(vm->def, nmigrate_disks, migrate_disks, flags))
2052 2053
        goto cleanup;

2054 2055 2056 2057 2058 2059 2060 2061 2062
    if (flags & VIR_MIGRATE_POSTCOPY &&
        (!(flags & VIR_MIGRATE_LIVE) ||
         flags & VIR_MIGRATE_PAUSED)) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("post-copy migration is not supported with non-live "
                         "or paused migration"));
        goto cleanup;
    }

2063 2064 2065 2066 2067 2068
    if (flags & VIR_MIGRATE_POSTCOPY && flags & VIR_MIGRATE_TUNNELLED) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("post-copy is not supported with tunnelled migration"));
        goto cleanup;
    }

2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
    if (flags & (VIR_MIGRATE_NON_SHARED_DISK | VIR_MIGRATE_NON_SHARED_INC)) {
        bool has_drive_mirror =  virQEMUCapsGet(priv->qemuCaps,
                                                QEMU_CAPS_DRIVE_MIRROR);

        if (nmigrate_disks) {
            if (has_drive_mirror) {
                size_t i, j;
                /* Check user requested only known disk targets. */
                for (i = 0; i < nmigrate_disks; i++) {
                    for (j = 0; j < vm->def->ndisks; j++) {
                        if (STREQ(vm->def->disks[j]->dst, migrate_disks[i]))
                            break;
                    }

                    if (j == vm->def->ndisks) {
                        virReportError(VIR_ERR_INVALID_ARG,
                                       _("disk target %s not found"),
                                       migrate_disks[i]);
                        goto cleanup;
                    }
                }

                if (flags & VIR_MIGRATE_TUNNELLED) {
                    virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                                   _("Selecting disks to migrate is not "
                                     "implemented for tunnelled migration"));
                    goto cleanup;
                }
            } else {
                virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                               _("qemu does not support drive-mirror command"));
                goto cleanup;
            }
        }

        if (has_drive_mirror) {
            /* TODO support NBD for TUNNELLED migration */
            if (flags & VIR_MIGRATE_TUNNELLED) {
                VIR_WARN("NBD in tunnelled migration is currently not supported");
            } else {
                cookieFlags |= QEMU_MIGRATION_COOKIE_NBD;
                priv->nbdPort = 0;
            }
2112 2113 2114
        }
    }

2115
    if (virDomainDefHasMemoryHotplug(vm->def) ||
2116
        ((flags & VIR_MIGRATE_PERSIST_DEST) &&
2117
         vm->newDef && virDomainDefHasMemoryHotplug(vm->newDef)))
2118 2119
        cookieFlags |= QEMU_MIGRATION_COOKIE_MEMORY_HOTPLUG;

2120 2121 2122 2123 2124
    if (!qemuDomainVcpuHotplugIsInOrder(vm->def) ||
        ((flags & VIR_MIGRATE_PERSIST_DEST) &&
         vm->newDef && !qemuDomainVcpuHotplugIsInOrder(vm->newDef)))
        cookieFlags |= QEMU_MIGRATION_COOKIE_CPU_HOTPLUG;

2125 2126 2127
    if (priv->origCPU)
        cookieFlags |= QEMU_MIGRATION_COOKIE_CPU;

2128 2129
    cookieFlags |= QEMU_MIGRATION_COOKIE_ALLOW_REBOOT;

2130
    if (!(mig = qemuMigrationEatCookie(driver, vm, NULL, 0, 0)))
2131 2132 2133 2134
        goto cleanup;

    if (qemuMigrationBakeCookie(mig, driver, vm,
                                cookieout, cookieoutlen,
2135
                                cookieFlags) < 0)
2136 2137
        goto cleanup;

L
liguang 已提交
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159
    if (flags & VIR_MIGRATE_OFFLINE) {
        if (flags & (VIR_MIGRATE_NON_SHARED_DISK |
                     VIR_MIGRATE_NON_SHARED_INC)) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("offline migration cannot handle "
                             "non-shared storage"));
            goto cleanup;
        }
        if (!(flags & VIR_MIGRATE_PERSIST_DEST)) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("offline migration must be specified with "
                             "the persistent flag set"));
            goto cleanup;
        }
        if (flags & VIR_MIGRATE_TUNNELLED) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("tunnelled offline migration does not "
                             "make sense"));
            goto cleanup;
        }
    }

2160
    if (xmlin) {
2161
        if (!(def = virDomainDefParseString(xmlin, caps, driver->xmlopt, priv->qemuCaps,
2162 2163
                                            VIR_DOMAIN_DEF_PARSE_INACTIVE |
                                            VIR_DOMAIN_DEF_PARSE_SKIP_VALIDATE)))
2164 2165
            goto cleanup;

2166
        if (!qemuDomainCheckABIStability(driver, vm, def))
2167 2168
            goto cleanup;

2169
        rv = qemuDomainDefFormatLive(driver, def, NULL, false, true);
2170
    } else {
2171 2172
        rv = qemuDomainDefFormatLive(driver, vm->def, priv->origCPU,
                                     false, true);
2173
    }
2174

2175
 cleanup:
2176
    qemuMigrationCookieFree(mig);
2177
    virObjectUnref(caps);
2178
    virDomainDefFree(def);
2179 2180 2181
    return rv;
}

2182
char *
2183 2184 2185 2186 2187 2188 2189 2190 2191
qemuMigrationSrcBegin(virConnectPtr conn,
                      virDomainObjPtr vm,
                      const char *xmlin,
                      const char *dname,
                      char **cookieout,
                      int *cookieoutlen,
                      size_t nmigrate_disks,
                      const char **migrate_disks,
                      unsigned long flags)
2192 2193
{
    virQEMUDriverPtr driver = conn->privateData;
2194
    virQEMUDriverConfigPtr cfg = NULL;
2195
    char *xml = NULL;
2196
    qemuDomainAsyncJob asyncJob;
2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207

    if ((flags & VIR_MIGRATE_CHANGE_PROTECTION)) {
        if (qemuMigrationJobStart(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
            goto cleanup;
        asyncJob = QEMU_ASYNC_JOB_MIGRATION_OUT;
    } else {
        if (qemuDomainObjBeginJob(driver, vm, QEMU_JOB_MODIFY) < 0)
            goto cleanup;
        asyncJob = QEMU_ASYNC_JOB_NONE;
    }

2208
    qemuMigrationSrcStoreDomainState(vm);
2209

2210 2211 2212 2213 2214 2215 2216 2217 2218 2219
    if (!virDomainObjIsActive(vm) && !(flags & VIR_MIGRATE_OFFLINE)) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domain is not running"));
        goto endjob;
    }

    /* Check if there is any ejected media.
     * We don't want to require them on the destination.
     */
    if (!(flags & VIR_MIGRATE_OFFLINE) &&
2220
        qemuProcessRefreshDisks(driver, vm, asyncJob) < 0)
2221 2222
        goto endjob;

2223 2224 2225
    if (!(xml = qemuMigrationSrcBeginPhase(driver, vm, xmlin, dname,
                                           cookieout, cookieoutlen,
                                           nmigrate_disks, migrate_disks, flags)))
2226 2227
        goto endjob;

2228 2229
    if (flags & VIR_MIGRATE_TLS) {
        cfg = virQEMUDriverGetConfig(driver);
2230
        if (qemuMigrationParamsCheckSetupTLS(driver, cfg, vm, asyncJob) < 0)
2231 2232 2233
            goto endjob;
    }

2234 2235 2236 2237 2238
    if ((flags & VIR_MIGRATE_CHANGE_PROTECTION)) {
        /* We keep the job active across API calls until the confirm() call.
         * This prevents any other APIs being invoked while migration is taking
         * place.
         */
2239
        if (virCloseCallbacksSet(driver->closeCallbacks, vm, conn,
2240
                                 qemuMigrationSrcCleanup) < 0) {
2241
            VIR_FREE(xml);
2242
            goto endjob;
2243
        }
2244
        qemuMigrationJobContinue(vm);
2245 2246 2247 2248
    } else {
        goto endjob;
    }

2249
 cleanup:
2250
    virObjectUnref(cfg);
M
Michal Privoznik 已提交
2251
    virDomainObjEndAPI(&vm);
2252 2253
    return xml;

2254
 endjob:
2255 2256 2257 2258
    if (flags & VIR_MIGRATE_CHANGE_PROTECTION)
        qemuMigrationJobFinish(driver, vm);
    else
        qemuDomainObjEndJob(driver, vm);
2259 2260 2261
    goto cleanup;
}

2262

2263 2264
/* Prepare is the first step, and it runs on the destination host.
 */
2265

2266
static void
2267 2268
qemuMigrationDstPrepareCleanup(virQEMUDriverPtr driver,
                               virDomainObjPtr vm)
2269 2270 2271 2272 2273 2274 2275 2276 2277
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    VIR_DEBUG("driver=%p, vm=%s, job=%s, asyncJob=%s",
              driver,
              vm->def->name,
              qemuDomainJobTypeToString(priv->job.active),
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

2278
    virPortAllocatorRelease(priv->migrationPort);
2279 2280
    priv->migrationPort = 0;

2281 2282 2283 2284 2285
    if (!qemuMigrationJobIsActive(vm, QEMU_ASYNC_JOB_MIGRATION_IN))
        return;
    qemuDomainObjDiscardAsyncJob(driver, vm);
}

2286
static qemuProcessIncomingDefPtr
2287 2288 2289 2290 2291 2292
qemuMigrationDstPrepare(virDomainObjPtr vm,
                        bool tunnel,
                        const char *protocol,
                        const char *listenAddress,
                        unsigned short port,
                        int fd)
2293 2294
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2295
    qemuProcessIncomingDefPtr inc = NULL;
2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357
    char *migrateFrom = NULL;

    if (tunnel) {
        if (VIR_STRDUP(migrateFrom, "stdio") < 0)
            goto cleanup;
    } else {
        bool encloseAddress = false;
        bool hostIPv6Capable = false;
        bool qemuIPv6Capable = false;
        struct addrinfo *info = NULL;
        struct addrinfo hints = { .ai_flags = AI_ADDRCONFIG,
                                  .ai_socktype = SOCK_STREAM };
        const char *incFormat;

        if (getaddrinfo("::", NULL, &hints, &info) == 0) {
            freeaddrinfo(info);
            hostIPv6Capable = true;
        }
        qemuIPv6Capable = virQEMUCapsGet(priv->qemuCaps,
                                         QEMU_CAPS_IPV6_MIGRATION);

        if (listenAddress) {
            if (virSocketAddrNumericFamily(listenAddress) == AF_INET6) {
                if (!qemuIPv6Capable) {
                    virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                                   _("qemu isn't capable of IPv6"));
                    goto cleanup;
                }
                if (!hostIPv6Capable) {
                    virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                                   _("host isn't capable of IPv6"));
                    goto cleanup;
                }
                /* IPv6 address must be escaped in brackets on the cmd line */
                encloseAddress = true;
            } else {
                /* listenAddress is a hostname or IPv4 */
            }
        } else if (qemuIPv6Capable && hostIPv6Capable) {
            /* Listen on :: instead of 0.0.0.0 if QEMU understands it
             * and there is at least one IPv6 address configured
             */
            listenAddress = "::";
            encloseAddress = true;
        } else {
            listenAddress = "0.0.0.0";
        }

        /* QEMU will be started with
         *   -incoming protocol:[<IPv6 addr>]:port,
         *   -incoming protocol:<IPv4 addr>:port, or
         *   -incoming protocol:<hostname>:port
         */
        if (encloseAddress)
            incFormat = "%s:[%s]:%d";
        else
            incFormat = "%s:%s:%d";
        if (virAsprintf(&migrateFrom, incFormat,
                        protocol, listenAddress, port) < 0)
            goto cleanup;
    }

2358 2359
    inc = qemuProcessIncomingDefNew(priv->qemuCaps, listenAddress,
                                    migrateFrom, fd, NULL);
2360

2361
 cleanup:
2362 2363
    VIR_FREE(migrateFrom);
    return inc;
2364 2365
}

2366
static int
2367 2368 2369 2370 2371
qemuMigrationParamsSetCompression(virQEMUDriverPtr driver,
                                  virDomainObjPtr vm,
                                  qemuDomainAsyncJob job,
                                  qemuMigrationCompressionPtr compression,
                                  qemuMonitorMigrationParamsPtr migParams)
2372
{
2373 2374 2375
    int ret = -1;
    qemuDomainObjPrivatePtr priv = vm->privateData;

2376
    if (qemuMigrationOptionSet(driver, vm,
2377 2378
                               QEMU_MONITOR_MIGRATION_CAPS_XBZRLE,
                               compression->methods &
2379
                               (1ULL << QEMU_MIGRATION_COMPRESS_XBZRLE),
2380 2381 2382
                               job) < 0)
        return -1;

2383
    if (qemuMigrationOptionSet(driver, vm,
2384 2385
                               QEMU_MONITOR_MIGRATION_CAPS_COMPRESS,
                               compression->methods &
2386
                               (1ULL << QEMU_MIGRATION_COMPRESS_MT),
2387 2388 2389
                               job) < 0)
        return -1;

2390 2391 2392
    if (qemuDomainObjEnterMonitorAsync(driver, vm, job) < 0)
        return -1;

2393 2394
    migParams->compressLevel_set = compression->level_set;
    migParams->compressLevel = compression->level;
2395

2396 2397
    migParams->compressThreads_set = compression->threads_set;
    migParams->compressThreads = compression->threads;
2398

2399 2400
    migParams->decompressThreads_set = compression->dthreads_set;
    migParams->decompressThreads = compression->dthreads;
2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413

    if (compression->xbzrle_cache_set &&
        qemuMonitorSetMigrationCacheSize(priv->mon,
                                         compression->xbzrle_cache) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;

    return ret;
2414 2415
}

2416

2417 2418 2419 2420 2421 2422
void
qemuMigrationParamsClear(qemuMonitorMigrationParamsPtr migParams)
{
    if (!migParams)
        return;

2423 2424
    VIR_FREE(migParams->tlsCreds);
    VIR_FREE(migParams->tlsHostname);
2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438
}


void
qemuMigrationParamsFree(qemuMonitorMigrationParamsPtr *migParams)
{
    if (!*migParams)
        return;

    qemuMigrationParamsClear(*migParams);
    VIR_FREE(*migParams);
}


2439
/* qemuMigrationParamsSetEmptyTLS
2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451
 * @driver: pointer to qemu driver
 * @vm: domain object
 * @asyncJob: migration job to join
 * @migParams: Pointer to a migration parameters block
 *
 * If we support setting the tls-creds, then set both tls-creds and
 * tls-hostname to the empty string ("") which indicates to not use
 * TLS on this migration.
 *
 * Returns 0 on success, -1 on failure
 */
static int
2452
qemuMigrationParamsSetEmptyTLS(virQEMUDriverPtr driver,
2453 2454 2455 2456 2457 2458
                               virDomainObjPtr vm,
                               qemuDomainAsyncJob asyncJob,
                               qemuMonitorMigrationParamsPtr migParams)
{
   qemuDomainObjPrivatePtr priv = vm->privateData;

2459
   if (qemuMigrationParamsCheckTLSCreds(driver, vm, asyncJob) < 0)
2460 2461 2462 2463 2464
       return -1;

   if (!priv->migTLSAlias)
       return 0;

2465 2466
   if (VIR_STRDUP(migParams->tlsCreds, "") < 0 ||
       VIR_STRDUP(migParams->tlsHostname, "") < 0)
2467 2468 2469 2470 2471 2472
       return -1;

    return 0;
}


2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485
qemuMonitorMigrationParamsPtr
qemuMigrationParams(virTypedParameterPtr params,
                    int nparams,
                    unsigned long flags)
{
    qemuMonitorMigrationParamsPtr migParams;

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

    if (!params)
        return migParams;

2486 2487 2488 2489 2490 2491 2492 2493 2494 2495
#define GET(PARAM, VAR) \
    do { \
        int rc; \
        if ((rc = virTypedParamsGetInt(params, nparams, \
                                       VIR_MIGRATE_PARAM_ ## PARAM, \
                                       &migParams->VAR)) < 0) \
            goto error; \
 \
        if (rc == 1) \
            migParams->VAR ## _set = true; \
2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513
    } while (0)

    GET(AUTO_CONVERGE_INITIAL, cpuThrottleInitial);
    GET(AUTO_CONVERGE_INCREMENT, cpuThrottleIncrement);

#undef GET

    if ((migParams->cpuThrottleInitial_set ||
         migParams->cpuThrottleIncrement_set) &&
        !(flags & VIR_MIGRATE_AUTO_CONVERGE)) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Turn auto convergence on to tune it"));
        goto error;
    }

    return migParams;

 error:
2514
    qemuMigrationParamsFree(&migParams);
2515 2516 2517 2518
    return NULL;
}


2519
static int
2520
qemuMigrationParamsSet(virQEMUDriverPtr driver,
2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543
                       virDomainObjPtr vm,
                       qemuDomainAsyncJob job,
                       qemuMonitorMigrationParamsPtr migParams)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;

    if (qemuDomainObjEnterMonitorAsync(driver, vm, job) < 0)
        return -1;

    if (qemuMonitorSetMigrationParams(priv->mon, migParams) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;

    return ret;
}


2544
/* qemuMigrationParamsResetTLS
2545 2546 2547 2548 2549
 * @driver: pointer to qemu driver
 * @vm: domain object
 * @asyncJob: migration job to join
 *
 * Deconstruct all the setup possibly done for TLS - delete the TLS and
2550
 * security objects, free the secinfo, and reset the migration params to "".
2551 2552 2553
 *
 * Returns 0 on success, -1 on failure
 */
2554
static int
2555 2556 2557
qemuMigrationParamsResetTLS(virQEMUDriverPtr driver,
                            virDomainObjPtr vm,
                            qemuDomainAsyncJob asyncJob)
2558 2559
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2560 2561
    char *tlsAlias = NULL;
    char *secAlias = NULL;
2562
    qemuMonitorMigrationParams migParams = { 0 };
R
Roman Bogorodskiy 已提交
2563
    int ret = -1;
2564

2565
    if (qemuMigrationParamsCheckTLSCreds(driver, vm, asyncJob) < 0)
2566 2567
        return -1;

2568 2569
    /* If the tls-creds doesn't exist or if they're set to "" then there's
     * nothing to do since we never set anything up */
2570 2571 2572 2573 2574 2575
    if (!priv->migTLSAlias || !*priv->migTLSAlias)
        return 0;

    /* NB: If either or both fail to allocate memory we can still proceed
     *     since the next time we migrate another deletion attempt will be
     *     made after successfully generating the aliases. */
2576 2577
    tlsAlias = qemuAliasTLSObjFromSrcAlias(QEMU_MIGRATION_TLS_ALIAS_BASE);
    secAlias = qemuDomainGetSecretAESAlias(QEMU_MIGRATION_TLS_ALIAS_BASE, false);
2578 2579 2580 2581

    qemuDomainDelTLSObjects(driver, vm, asyncJob, secAlias, tlsAlias);
    qemuDomainSecretInfoFree(&priv->migSecinfo);

2582 2583
    if (VIR_STRDUP(migParams.tlsCreds, "") < 0 ||
        VIR_STRDUP(migParams.tlsHostname, "") < 0 ||
2584
        qemuMigrationParamsSet(driver, vm, asyncJob, &migParams) < 0)
2585 2586 2587 2588 2589
        goto cleanup;

    ret = 0;

 cleanup:
2590 2591
    VIR_FREE(tlsAlias);
    VIR_FREE(secAlias);
2592 2593 2594 2595 2596 2597
    qemuMigrationParamsClear(&migParams);

    return ret;
}


2598
static int
2599
qemuMigrationDstPrepareAny(virQEMUDriverPtr driver,
2600
                           virConnectPtr dconn,
2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616
                           const char *cookiein,
                           int cookieinlen,
                           char **cookieout,
                           int *cookieoutlen,
                           virDomainDefPtr *def,
                           const char *origname,
                           virStreamPtr st,
                           const char *protocol,
                           unsigned short port,
                           bool autoPort,
                           const char *listenAddress,
                           size_t nmigrate_disks,
                           const char **migrate_disks,
                           int nbdPort,
                           qemuMigrationCompressionPtr compression,
                           unsigned long flags)
2617 2618
{
    virDomainObjPtr vm = NULL;
2619
    virObjectEventPtr event = NULL;
2620
    virQEMUDriverConfigPtr cfg = NULL;
2621
    int ret = -1;
2622
    int dataFD[2] = { -1, -1 };
2623
    qemuDomainObjPrivatePtr priv = NULL;
2624
    qemuMigrationCookiePtr mig = NULL;
2625
    bool tunnel = !!st;
J
Jiri Denemark 已提交
2626
    char *xmlout = NULL;
L
liguang 已提交
2627
    unsigned int cookieFlags;
2628
    unsigned int startFlags;
2629
    virCapsPtr caps = NULL;
2630
    qemuProcessIncomingDefPtr incoming = NULL;
2631
    bool taint_hook = false;
2632 2633 2634
    bool stopProcess = false;
    bool relabel = false;
    int rv;
2635 2636
    char *tlsAlias = NULL;
    char *secAlias = NULL;
2637
    qemuMonitorMigrationParams migParams = { 0 };
2638

2639 2640
    virNWFilterReadLockFilterUpdates();

L
liguang 已提交
2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660
    if (flags & VIR_MIGRATE_OFFLINE) {
        if (flags & (VIR_MIGRATE_NON_SHARED_DISK |
                     VIR_MIGRATE_NON_SHARED_INC)) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("offline migration cannot handle "
                             "non-shared storage"));
            goto cleanup;
        }
        if (!(flags & VIR_MIGRATE_PERSIST_DEST)) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("offline migration must be specified with "
                             "the persistent flag set"));
            goto cleanup;
        }
        if (tunnel) {
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("tunnelled offline migration does not "
                             "make sense"));
            goto cleanup;
        }
2661 2662 2663
        cookieFlags = 0;
    } else {
        cookieFlags = QEMU_MIGRATION_COOKIE_GRAPHICS;
L
liguang 已提交
2664 2665
    }

2666 2667 2668 2669 2670 2671 2672 2673 2674
    if (flags & VIR_MIGRATE_POSTCOPY &&
        (!(flags & VIR_MIGRATE_LIVE) ||
         flags & VIR_MIGRATE_PAUSED)) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("post-copy migration is not supported with non-live "
                         "or paused migration"));
        goto cleanup;
    }

2675 2676 2677 2678 2679 2680
    if (flags & VIR_MIGRATE_POSTCOPY && flags & VIR_MIGRATE_TUNNELLED) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("post-copy is not supported with tunnelled migration"));
        goto cleanup;
    }

2681 2682 2683
    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

2684
    if (!qemuMigrationSrcIsAllowedHostdev(*def))
2685 2686
        goto cleanup;

J
Jiri Denemark 已提交
2687 2688 2689 2690 2691
    /* Let migration hook filter domain XML */
    if (virHookPresent(VIR_HOOK_DRIVER_QEMU)) {
        char *xml;
        int hookret;

2692
        if (!(xml = qemuDomainDefFormatXML(driver, *def,
2693 2694
                                           VIR_DOMAIN_XML_SECURE |
                                           VIR_DOMAIN_XML_MIGRATABLE)))
J
Jiri Denemark 已提交
2695 2696
            goto cleanup;

2697
        hookret = virHookCall(VIR_HOOK_DRIVER_QEMU, (*def)->name,
J
Jiri Denemark 已提交
2698 2699 2700 2701 2702 2703 2704
                              VIR_HOOK_QEMU_OP_MIGRATE, VIR_HOOK_SUBOP_BEGIN,
                              NULL, xml, &xmlout);
        VIR_FREE(xml);

        if (hookret < 0) {
            goto cleanup;
        } else if (hookret == 0) {
2705
            if (virStringIsEmpty(xmlout)) {
J
Jiri Denemark 已提交
2706 2707 2708 2709 2710 2711
                VIR_DEBUG("Migrate hook filter returned nothing; using the"
                          " original XML");
            } else {
                virDomainDefPtr newdef;

                VIR_DEBUG("Using hook-filtered domain XML: %s", xmlout);
2712
                newdef = virDomainDefParseString(xmlout, caps, driver->xmlopt, NULL,
2713 2714
                                                 VIR_DOMAIN_DEF_PARSE_INACTIVE |
                                                 VIR_DOMAIN_DEF_PARSE_SKIP_VALIDATE);
J
Jiri Denemark 已提交
2715 2716 2717
                if (!newdef)
                    goto cleanup;

2718
                if (!qemuDomainDefCheckABIStability(driver, *def, newdef)) {
J
Jiri Denemark 已提交
2719 2720 2721 2722
                    virDomainDefFree(newdef);
                    goto cleanup;
                }

2723 2724
                virDomainDefFree(*def);
                *def = newdef;
2725 2726 2727 2728
                /* We should taint the domain here. However, @vm and therefore
                 * privateData too are still NULL, so just notice the fact and
                 * taint it later. */
                taint_hook = true;
J
Jiri Denemark 已提交
2729 2730 2731 2732
            }
        }
    }

2733
    if (!(vm = virDomainObjListAdd(driver->domains, *def,
2734
                                   driver->xmlopt,
2735 2736 2737
                                   VIR_DOMAIN_OBJ_LIST_ADD_LIVE |
                                   VIR_DOMAIN_OBJ_LIST_ADD_CHECK_LIVE,
                                   NULL)))
2738
        goto cleanup;
2739

2740
    virObjectRef(vm);
2741
    *def = NULL;
2742
    priv = vm->privateData;
2743 2744
    if (VIR_STRDUP(priv->origname, origname) < 0)
        goto cleanup;
2745

2746 2747 2748 2749 2750
    if (taint_hook) {
        /* Domain XML has been altered by a hook script. */
        priv->hookRun = true;
    }

2751
    if (!(mig = qemuMigrationEatCookie(driver, vm, cookiein, cookieinlen,
2752
                                       QEMU_MIGRATION_COOKIE_LOCKSTATE |
2753
                                       QEMU_MIGRATION_COOKIE_NBD |
2754
                                       QEMU_MIGRATION_COOKIE_MEMORY_HOTPLUG |
2755
                                       QEMU_MIGRATION_COOKIE_CPU_HOTPLUG |
2756 2757
                                       QEMU_MIGRATION_COOKIE_CPU |
                                       QEMU_MIGRATION_COOKIE_ALLOW_REBOOT)))
2758 2759
        goto cleanup;

2760 2761
    if (STREQ_NULLABLE(protocol, "rdma") &&
        !virMemoryLimitIsSet(vm->def->mem.hard_limit)) {
M
Michael R. Hines 已提交
2762 2763 2764 2765 2766 2767
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("cannot start RDMA migration with no memory hard "
                         "limit set"));
        goto cleanup;
    }

2768 2769 2770
    if (qemuMigrationDstPrecreateStorage(vm, mig->nbd,
                                         nmigrate_disks, migrate_disks,
                                         !!(flags & VIR_MIGRATE_NON_SHARED_INC)) < 0)
2771 2772
        goto cleanup;

2773
    if (qemuMigrationJobStart(driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
2774
        goto cleanup;
2775
    qemuMigrationJobSetPhase(driver, vm, QEMU_MIGRATION_PHASE_PREPARE);
2776 2777 2778 2779

    /* Domain starts inactive, even if the domain XML had an id field. */
    vm->def->id = -1;

L
liguang 已提交
2780 2781 2782
    if (flags & VIR_MIGRATE_OFFLINE)
        goto done;

2783 2784
    if (tunnel &&
        (pipe(dataFD) < 0 || virSetCloseExec(dataFD[1]) < 0)) {
2785 2786
        virReportSystemError(errno, "%s",
                             _("cannot create pipe for tunnelled migration"));
2787
        goto stopjob;
2788 2789
    }

2790 2791
    startFlags = VIR_QEMU_PROCESS_START_AUTODESTROY;

2792
    if (qemuProcessInit(driver, vm, mig->cpu, QEMU_ASYNC_JOB_MIGRATION_IN,
2793
                        true, startFlags) < 0)
2794
        goto stopjob;
2795
    stopProcess = true;
2796

2797 2798
    priv->allowReboot = mig->allowReboot;

2799 2800 2801
    if (!(incoming = qemuMigrationDstPrepare(vm, tunnel, protocol,
                                             listenAddress, port,
                                             dataFD[0])))
2802
        goto stopjob;
2803

2804
    if (qemuProcessPrepareDomain(driver, vm, startFlags) < 0)
2805 2806
        goto stopjob;

2807
    if (qemuProcessPrepareHost(driver, vm, startFlags) < 0)
2808 2809
        goto stopjob;

2810
    rv = qemuProcessLaunch(dconn, driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN,
2811 2812
                           incoming, NULL,
                           VIR_NETDEV_VPORT_PROFILE_OP_MIGRATE_IN_START,
2813
                           startFlags);
2814 2815 2816
    if (rv < 0) {
        if (rv == -2)
            relabel = true;
2817
        goto stopjob;
2818
    }
2819
    relabel = true;
2820

2821 2822 2823 2824
    if (tunnel) {
        if (virFDStreamOpen(st, dataFD[1]) < 0) {
            virReportSystemError(errno, "%s",
                                 _("cannot pass pipe for tunnelled migration"));
2825
            goto stopjob;
2826
        }
2827
        dataFD[1] = -1; /* 'st' owns the FD now & will close it */
2828 2829
    }

2830 2831
    if (qemuMigrationParamsSetCompression(driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN,
                                          compression, &migParams) < 0)
2832
        goto stopjob;
2833

2834 2835 2836 2837
    /* Migrations using TLS need to add the "tls-creds-x509" object and
     * set the migration TLS parameters */
    if (flags & VIR_MIGRATE_TLS) {
        cfg = virQEMUDriverGetConfig(driver);
2838 2839
        if (qemuMigrationParamsCheckSetupTLS(driver, cfg, vm,
                                             QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
2840 2841
            goto stopjob;

2842 2843 2844
        if (qemuMigrationParamsAddTLSObjects(driver, vm, cfg, true,
                                             QEMU_ASYNC_JOB_MIGRATION_IN,
                                             &tlsAlias, &secAlias, &migParams) < 0)
2845 2846 2847
            goto stopjob;

        /* Force reset of 'tls-hostname', it's a source only parameter */
2848
        if (VIR_STRDUP(migParams.tlsHostname, "") < 0)
2849 2850 2851
            goto stopjob;

    } else {
2852
        if (qemuMigrationParamsSetEmptyTLS(driver, vm,
2853 2854 2855 2856 2857
                                           QEMU_ASYNC_JOB_MIGRATION_IN,
                                           &migParams) < 0)
            goto stopjob;
    }

2858
    if (STREQ_NULLABLE(protocol, "rdma") &&
M
Michael R. Hines 已提交
2859
        virProcessSetMaxMemLock(vm->pid, vm->def->mem.hard_limit << 10) < 0) {
2860
        goto stopjob;
M
Michael R. Hines 已提交
2861 2862
    }

2863
    if (qemuMigrationOptionSet(driver, vm,
2864
                               QEMU_MONITOR_MIGRATION_CAPS_RDMA_PIN_ALL,
2865 2866
                               flags & VIR_MIGRATE_RDMA_PIN_ALL,
                               QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
2867
        goto stopjob;
2868

2869 2870 2871
    if (qemuMigrationOptionSetPostCopy(driver, vm,
                                       flags & VIR_MIGRATE_POSTCOPY,
                                       QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
2872 2873
        goto stopjob;

2874
    if (qemuMigrationParamsSet(driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN,
2875 2876 2877
                               &migParams) < 0)
        goto stopjob;

2878 2879 2880
    if (mig->nbd &&
        flags & (VIR_MIGRATE_NON_SHARED_DISK | VIR_MIGRATE_NON_SHARED_INC) &&
        virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_NBD_SERVER)) {
2881 2882 2883
        if (qemuMigrationDstStartNBDServer(driver, vm, incoming->address,
                                           nmigrate_disks, migrate_disks,
                                           nbdPort) < 0) {
2884
            goto stopjob;
2885
        }
2886
        cookieFlags |= QEMU_MIGRATION_COOKIE_NBD;
2887 2888
    }

2889 2890 2891 2892 2893 2894 2895 2896 2897
    if (mig->lockState) {
        VIR_DEBUG("Received lockstate %s", mig->lockState);
        VIR_FREE(priv->lockState);
        priv->lockState = mig->lockState;
        mig->lockState = NULL;
    } else {
        VIR_DEBUG("Received no lockstate");
    }

2898
    if (incoming->deferredURI &&
2899 2900
        qemuMigrationDstRun(driver, vm, incoming->deferredURI,
                            QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
2901 2902
        goto stopjob;

2903
    if (qemuProcessFinishStartup(driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN,
2904 2905 2906
                                 false, VIR_DOMAIN_PAUSED_MIGRATION) < 0)
        goto stopjob;

2907
 done:
2908 2909
    if (qemuMigrationBakeCookie(mig, driver, vm, cookieout,
                                cookieoutlen, cookieFlags) < 0) {
2910 2911 2912 2913 2914 2915 2916
        /* We could tear down the whole guest here, but
         * cookie data is (so far) non-critical, so that
         * seems a little harsh. We'll just warn for now.
         */
        VIR_WARN("Unable to encode migration cookie");
    }

2917
    if (qemuDomainCleanupAdd(vm, qemuMigrationDstPrepareCleanup) < 0)
2918
        goto stopjob;
2919

L
liguang 已提交
2920 2921
    if (!(flags & VIR_MIGRATE_OFFLINE)) {
        virDomainAuditStart(vm, "migrated", true);
2922
        event = virDomainEventLifecycleNewFromObj(vm,
L
liguang 已提交
2923 2924 2925
                                         VIR_DOMAIN_EVENT_STARTED,
                                         VIR_DOMAIN_EVENT_STARTED_MIGRATED);
    }
2926

2927 2928 2929 2930
    /* We keep the job active across API calls until the finish() call.
     * This prevents any other APIs being invoked while incoming
     * migration is taking place.
     */
2931
    qemuMigrationJobContinue(vm);
2932

2933 2934
    if (autoPort)
        priv->migrationPort = port;
2935 2936 2937 2938 2939
    /* in this case port is not auto selected and we don't need to manage it
     * anymore after cookie is baked
     */
    if (nbdPort != 0)
        priv->nbdPort = 0;
2940
    ret = 0;
2941

2942
 cleanup:
2943 2944 2945
    VIR_FREE(tlsAlias);
    VIR_FREE(secAlias);
    virObjectUnref(cfg);
2946
    qemuProcessIncomingDefFree(incoming);
J
Jiri Denemark 已提交
2947
    VIR_FREE(xmlout);
2948 2949
    VIR_FORCE_CLOSE(dataFD[0]);
    VIR_FORCE_CLOSE(dataFD[1]);
2950 2951 2952
    if (ret < 0 && priv) {
        /* priv is set right after vm is added to the list of domains
         * and there is no 'goto cleanup;' in the middle of those */
2953
        VIR_FREE(priv->origname);
2954 2955 2956 2957
        /* release if port is auto selected which is not the case if
         * it is given in parameters
         */
        if (nbdPort == 0)
2958
            virPortAllocatorRelease(priv->nbdPort);
2959
        priv->nbdPort = 0;
2960
        virDomainObjRemoveTransientDef(vm);
2961
        qemuDomainRemoveInactiveJob(driver, vm);
2962
    }
2963
    qemuMigrationParamsClear(&migParams);
M
Michal Privoznik 已提交
2964
    virDomainObjEndAPI(&vm);
2965
    qemuDomainEventQueue(driver, event);
2966
    qemuMigrationCookieFree(mig);
2967
    virObjectUnref(caps);
2968
    virNWFilterUnlockFilterUpdates();
2969
    return ret;
2970

2971
 stopjob:
2972
    qemuMigrationParamsReset(driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN);
2973

2974 2975 2976 2977
    if (stopProcess) {
        unsigned int stopFlags = VIR_QEMU_PROCESS_STOP_MIGRATED;
        if (!relabel)
            stopFlags |= VIR_QEMU_PROCESS_STOP_NO_RELABEL;
2978
        virDomainAuditStart(vm, "migrated", false);
2979 2980
        qemuProcessStop(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED,
                        QEMU_ASYNC_JOB_MIGRATION_IN, stopFlags);
2981
    }
2982

2983
    qemuMigrationJobFinish(driver, vm);
2984
    goto cleanup;
2985 2986 2987
}


2988 2989 2990 2991 2992
/*
 * This version starts an empty VM listening on a localhost TCP port, and
 * sets up the corresponding virStream to handle the incoming data.
 */
int
2993
qemuMigrationDstPrepareTunnel(virQEMUDriverPtr driver,
2994
                              virConnectPtr dconn,
2995 2996 2997 2998 2999 3000 3001 3002
                              const char *cookiein,
                              int cookieinlen,
                              char **cookieout,
                              int *cookieoutlen,
                              virStreamPtr st,
                              virDomainDefPtr *def,
                              const char *origname,
                              unsigned long flags)
3003
{
3004
    qemuMigrationCompressionPtr compression = NULL;
3005 3006
    int ret;

3007
    VIR_DEBUG("driver=%p, dconn=%p, cookiein=%s, cookieinlen=%d, "
3008
              "cookieout=%p, cookieoutlen=%p, st=%p, def=%p, "
3009
              "origname=%s, flags=0x%lx",
3010
              driver, dconn, NULLSTR(cookiein), cookieinlen,
3011
              cookieout, cookieoutlen, st, *def, origname, flags);
3012

3013 3014 3015 3016 3017 3018
    if (st == NULL) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("tunnelled migration requested but NULL stream passed"));
        return -1;
    }

3019
    if (!(compression = qemuMigrationAnyCompressionParse(NULL, 0, flags)))
3020 3021
        return -1;

3022
    ret = qemuMigrationDstPrepareAny(driver, dconn, cookiein, cookieinlen,
3023 3024 3025
                                     cookieout, cookieoutlen, def, origname,
                                     st, NULL, 0, false, NULL, 0, NULL, 0,
                                     compression, flags);
3026
    VIR_FREE(compression);
3027 3028 3029 3030
    return ret;
}


3031
static virURIPtr
3032
qemuMigrationAnyParseURI(const char *uri, bool *wellFormed)
3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053
{
    char *tmp = NULL;
    virURIPtr parsed;

    /* For compatibility reasons tcp://... URIs are sent as tcp:...
     * We need to transform them to a well-formed URI before parsing. */
    if (STRPREFIX(uri, "tcp:") && !STRPREFIX(uri + 4, "//")) {
        if (virAsprintf(&tmp, "tcp://%s", uri + 4) < 0)
            return NULL;
        uri = tmp;
    }

    parsed = virURIParse(uri);
    if (parsed && wellFormed)
        *wellFormed = !tmp;
    VIR_FREE(tmp);

    return parsed;
}


3054
int
3055
qemuMigrationDstPrepareDirect(virQEMUDriverPtr driver,
3056
                              virConnectPtr dconn,
3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070
                              const char *cookiein,
                              int cookieinlen,
                              char **cookieout,
                              int *cookieoutlen,
                              const char *uri_in,
                              char **uri_out,
                              virDomainDefPtr *def,
                              const char *origname,
                              const char *listenAddress,
                              size_t nmigrate_disks,
                              const char **migrate_disks,
                              int nbdPort,
                              qemuMigrationCompressionPtr compression,
                              unsigned long flags)
3071
{
3072 3073
    unsigned short port = 0;
    bool autoPort = true;
3074 3075
    char *hostname = NULL;
    int ret = -1;
3076
    virURIPtr uri = NULL;
3077 3078
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    const char *migrateHost = cfg->migrateHost;
J
Jiri Denemark 已提交
3079

3080
    VIR_DEBUG("driver=%p, dconn=%p, cookiein=%s, cookieinlen=%d, "
3081
              "cookieout=%p, cookieoutlen=%p, uri_in=%s, uri_out=%p, "
3082
              "def=%p, origname=%s, listenAddress=%s, "
3083
              "nmigrate_disks=%zu, migrate_disks=%p, nbdPort=%d, flags=0x%lx",
3084
              driver, dconn, NULLSTR(cookiein), cookieinlen,
3085
              cookieout, cookieoutlen, NULLSTR(uri_in), uri_out,
3086
              *def, origname, NULLSTR(listenAddress),
3087
              nmigrate_disks, migrate_disks, nbdPort, flags);
3088

3089 3090
    *uri_out = NULL;

3091 3092 3093
    /* The URI passed in may be NULL or a string "tcp://somehostname:port".
     *
     * If the URI passed in is NULL then we allocate a port number
3094 3095 3096
     * from our pool of port numbers, and if the migrateHost is configured,
     * we return a URI of "tcp://migrateHost:port", otherwise return a URI
     * of "tcp://ourhostname:port".
3097 3098 3099 3100 3101 3102
     *
     * If the URI passed in is not NULL then we try to parse out the
     * port number and use that (note that the hostname is assumed
     * to be a correct hostname which refers to the target machine).
     */
    if (uri_in == NULL) {
3103 3104 3105
        bool encloseAddress = false;
        const char *incFormat;

3106
        if (virPortAllocatorAcquire(driver->migrationPorts, &port) < 0)
3107
            goto cleanup;
3108

3109
        if (migrateHost != NULL) {
3110 3111
            if (virSocketAddrNumericFamily(migrateHost) == AF_INET6)
                encloseAddress = true;
3112

3113
            if (VIR_STRDUP(hostname, migrateHost) < 0)
3114 3115 3116 3117 3118
                goto cleanup;
        } else {
            if ((hostname = virGetHostname()) == NULL)
                goto cleanup;
        }
3119 3120

        if (STRPREFIX(hostname, "localhost")) {
3121 3122 3123
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("hostname on destination resolved to localhost,"
                             " but migration requires an FQDN"));
3124 3125 3126 3127 3128
            goto cleanup;
        }

        /* XXX this really should have been a properly well-formed
         * URI, but we can't add in tcp:// now without breaking
3129
         * compatibility with old targets. We at least make the
3130 3131
         * new targets accept both syntaxes though.
         */
3132 3133 3134 3135 3136 3137
        if (encloseAddress)
            incFormat = "%s:[%s]:%d";
        else
            incFormat = "%s:%s:%d";

        if (virAsprintf(uri_out, incFormat, "tcp", hostname, port) < 0)
3138 3139
            goto cleanup;
    } else {
3140
        bool well_formed_uri;
J
Ján Tomko 已提交
3141

3142
        if (!(uri = qemuMigrationAnyParseURI(uri_in, &well_formed_uri)))
3143
            goto cleanup;
J
Ján Tomko 已提交
3144

3145 3146 3147 3148 3149 3150 3151
        if (uri->scheme == NULL) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("missing scheme in migration URI: %s"),
                           uri_in);
            goto cleanup;
        }

M
Michael R. Hines 已提交
3152 3153
        if (STRNEQ(uri->scheme, "tcp") &&
            STRNEQ(uri->scheme, "rdma")) {
3154 3155 3156
            virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED,
                           _("unsupported scheme %s in migration URI %s"),
                           uri->scheme, uri_in);
J
Ján Tomko 已提交
3157 3158 3159 3160 3161 3162 3163 3164 3165 3166
            goto cleanup;
        }

        if (uri->server == NULL) {
            virReportError(VIR_ERR_INVALID_ARG, _("missing host in migration"
                                                  " URI: %s"), uri_in);
            goto cleanup;
        }

        if (uri->port == 0) {
3167
            if (virPortAllocatorAcquire(driver->migrationPorts, &port) < 0)
3168
                goto cleanup;
3169

3170
            /* Send well-formed URI only if uri_in was well-formed */
3171 3172 3173 3174 3175 3176 3177 3178
            if (well_formed_uri) {
                uri->port = port;
                if (!(*uri_out = virURIFormat(uri)))
                    goto cleanup;
            } else {
                if (virAsprintf(uri_out, "%s:%d", uri_in, port) < 0)
                    goto cleanup;
            }
3179
        } else {
3180 3181
            port = uri->port;
            autoPort = false;
3182 3183 3184 3185 3186 3187
        }
    }

    if (*uri_out)
        VIR_DEBUG("Generated uri_out=%s", *uri_out);

3188
    ret = qemuMigrationDstPrepareAny(driver, dconn, cookiein, cookieinlen,
3189 3190 3191 3192 3193
                                     cookieout, cookieoutlen, def, origname,
                                     NULL, uri ? uri->scheme : "tcp",
                                     port, autoPort, listenAddress,
                                     nmigrate_disks, migrate_disks, nbdPort,
                                     compression, flags);
3194
 cleanup:
3195
    virURIFree(uri);
3196
    VIR_FREE(hostname);
3197
    virObjectUnref(cfg);
3198
    if (ret != 0) {
3199
        VIR_FREE(*uri_out);
3200
        if (autoPort)
3201
            virPortAllocatorRelease(port);
3202
    }
3203 3204 3205 3206
    return ret;
}


3207
virDomainDefPtr
3208 3209 3210 3211
qemuMigrationAnyPrepareDef(virQEMUDriverPtr driver,
                           const char *dom_xml,
                           const char *dname,
                           char **origname)
3212 3213 3214
{
    virCapsPtr caps = NULL;
    virDomainDefPtr def;
3215
    char *name = NULL;
3216 3217 3218 3219 3220 3221 3222 3223 3224 3225

    if (!dom_xml) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("no domain XML passed"));
        return NULL;
    }

    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        return NULL;

3226
    if (!(def = virDomainDefParseString(dom_xml, caps, driver->xmlopt, NULL,
3227 3228
                                        VIR_DOMAIN_DEF_PARSE_INACTIVE |
                                        VIR_DOMAIN_DEF_PARSE_SKIP_VALIDATE)))
3229 3230 3231
        goto cleanup;

    if (dname) {
3232
        name = def->name;
3233 3234 3235 3236 3237 3238
        if (VIR_STRDUP(def->name, dname) < 0) {
            virDomainDefFree(def);
            def = NULL;
        }
    }

3239
 cleanup:
3240
    virObjectUnref(caps);
3241 3242 3243 3244
    if (def && origname)
        *origname = name;
    else
        VIR_FREE(name);
3245 3246 3247 3248
    return def;
}


3249
static int
3250 3251 3252 3253 3254 3255
qemuMigrationSrcConfirmPhase(virQEMUDriverPtr driver,
                             virDomainObjPtr vm,
                             const char *cookiein,
                             int cookieinlen,
                             unsigned int flags,
                             int retcode)
3256 3257
{
    qemuMigrationCookiePtr mig;
3258
    virObjectEventPtr event;
3259 3260
    int rv = -1;
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
3261 3262
    qemuDomainObjPrivatePtr priv = vm->privateData;
    qemuDomainJobInfoPtr jobInfo = NULL;
3263

3264
    VIR_DEBUG("driver=%p, vm=%p, cookiein=%s, cookieinlen=%d, "
3265
              "flags=0x%x, retcode=%d",
3266
              driver, vm, NULLSTR(cookiein), cookieinlen,
3267 3268 3269 3270 3271 3272 3273 3274 3275
              flags, retcode);

    virCheckFlags(QEMU_MIGRATION_FLAGS, -1);

    qemuMigrationJobSetPhase(driver, vm,
                             retcode == 0
                             ? QEMU_MIGRATION_PHASE_CONFIRM3
                             : QEMU_MIGRATION_PHASE_CONFIRM3_CANCELLED);

3276 3277
    if (!(mig = qemuMigrationEatCookie(driver, vm, cookiein, cookieinlen,
                                       QEMU_MIGRATION_COOKIE_STATS)))
3278 3279
        goto cleanup;

3280 3281 3282
    if (retcode == 0)
        jobInfo = priv->job.completed;
    else
3283
        VIR_FREE(priv->job.completed);
3284 3285 3286

    /* Update times with the values sent by the destination daemon */
    if (mig->jobInfo && jobInfo) {
3287 3288 3289 3290 3291 3292 3293 3294
        int reason;

        /* We need to refresh migration statistics after a completed post-copy
         * migration since priv->job.completed contains obsolete data from the
         * time we switched to post-copy mode.
         */
        if (virDomainObjGetState(vm, &reason) == VIR_DOMAIN_PAUSED &&
            reason == VIR_DOMAIN_PAUSED_POSTCOPY &&
3295 3296
            qemuMigrationAnyFetchStats(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT,
                                       jobInfo, NULL) < 0)
3297 3298
            VIR_WARN("Could not refresh migration statistics");

3299 3300 3301
        qemuDomainJobInfoUpdateTime(jobInfo);
        jobInfo->timeDeltaSet = mig->jobInfo->timeDeltaSet;
        jobInfo->timeDelta = mig->jobInfo->timeDelta;
3302 3303
        jobInfo->stats.mig.downtime_set = mig->jobInfo->stats.mig.downtime_set;
        jobInfo->stats.mig.downtime = mig->jobInfo->stats.mig.downtime;
3304 3305
    }

3306 3307 3308
    if (flags & VIR_MIGRATE_OFFLINE)
        goto done;

3309 3310
    /* Did the migration go as planned?  If yes, kill off the domain object.
     * If something failed, resume CPUs, but only if we didn't use post-copy.
3311 3312 3313 3314
     */
    if (retcode == 0) {
        /* If guest uses SPICE and supports seamless migration we have to hold
         * up domain shutdown until SPICE server transfers its data */
3315
        qemuMigrationSrcWaitForSpice(vm);
3316 3317

        qemuProcessStop(driver, vm, VIR_DOMAIN_SHUTOFF_MIGRATED,
3318
                        QEMU_ASYNC_JOB_MIGRATION_OUT,
3319 3320 3321
                        VIR_QEMU_PROCESS_STOP_MIGRATED);
        virDomainAuditStop(vm, "migrated");

3322
        event = virDomainEventLifecycleNewFromObj(vm,
3323 3324
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_MIGRATED);
3325 3326
        qemuDomainEventQueue(driver, event);
        qemuDomainEventEmitJobCompleted(driver, vm);
3327
    } else {
3328
        virErrorPtr orig_err = virSaveLastError();
3329
        int reason;
3330 3331

        /* cancel any outstanding NBD jobs */
3332 3333
        qemuMigrationSrcCancelDriveMirror(driver, vm, false,
                                          QEMU_ASYNC_JOB_MIGRATION_OUT, NULL);
3334 3335 3336

        virSetError(orig_err);
        virFreeError(orig_err);
3337

3338 3339
        if (virDomainObjGetState(vm, &reason) == VIR_DOMAIN_PAUSED &&
            reason == VIR_DOMAIN_PAUSED_POSTCOPY) {
3340 3341
            qemuMigrationAnyPostcopyFailed(driver, vm);
        } else if (qemuMigrationSrcRestoreDomainState(driver, vm)) {
3342 3343 3344
            event = virDomainEventLifecycleNewFromObj(vm,
                                                      VIR_DOMAIN_EVENT_RESUMED,
                                                      VIR_DOMAIN_EVENT_RESUMED_MIGRATED);
3345
            qemuDomainEventQueue(driver, event);
3346 3347
        }

3348
        qemuMigrationParamsReset(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT);
3349

3350
        if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
3351 3352 3353
            VIR_WARN("Failed to save status on vm %s", vm->def->name);
    }

3354
 done:
3355 3356 3357
    qemuMigrationCookieFree(mig);
    rv = 0;

3358
 cleanup:
3359 3360 3361 3362 3363
    virObjectUnref(cfg);
    return rv;
}

int
3364 3365 3366 3367 3368 3369
qemuMigrationSrcConfirm(virQEMUDriverPtr driver,
                        virDomainObjPtr vm,
                        const char *cookiein,
                        int cookieinlen,
                        unsigned int flags,
                        int cancelled)
3370
{
3371
    qemuMigrationJobPhase phase;
3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385
    virQEMUDriverConfigPtr cfg = NULL;
    int ret = -1;

    cfg = virQEMUDriverGetConfig(driver);

    if (!qemuMigrationJobIsActive(vm, QEMU_ASYNC_JOB_MIGRATION_OUT))
        goto cleanup;

    if (cancelled)
        phase = QEMU_MIGRATION_PHASE_CONFIRM3_CANCELLED;
    else
        phase = QEMU_MIGRATION_PHASE_CONFIRM3;

    qemuMigrationJobStartPhase(driver, vm, phase);
3386
    virCloseCallbacksUnset(driver->closeCallbacks, vm,
3387
                           qemuMigrationSrcCleanup);
3388

3389 3390 3391
    ret = qemuMigrationSrcConfirmPhase(driver, vm,
                                       cookiein, cookieinlen,
                                       flags, cancelled);
3392

3393
    qemuMigrationJobFinish(driver, vm);
3394
    if (!virDomainObjIsActive(vm)) {
3395
        if (flags & VIR_MIGRATE_UNDEFINE_SOURCE) {
3396
            virDomainDeleteConfig(cfg->configDir, cfg->autostartDir, vm);
3397 3398
            vm->persistent = 0;
        }
3399
        qemuDomainRemoveInactiveJob(driver, vm);
3400 3401
    }

3402
 cleanup:
M
Michal Privoznik 已提交
3403
    virDomainObjEndAPI(&vm);
3404 3405 3406 3407 3408
    virObjectUnref(cfg);
    return ret;
}


3409 3410
enum qemuMigrationDestinationType {
    MIGRATION_DEST_HOST,
3411
    MIGRATION_DEST_CONNECT_HOST,
3412
    MIGRATION_DEST_FD,
3413
};
3414

3415 3416 3417 3418
enum qemuMigrationForwardType {
    MIGRATION_FWD_DIRECT,
    MIGRATION_FWD_STREAM,
};
3419

3420 3421 3422 3423 3424 3425
typedef struct _qemuMigrationSpec qemuMigrationSpec;
typedef qemuMigrationSpec *qemuMigrationSpecPtr;
struct _qemuMigrationSpec {
    enum qemuMigrationDestinationType destType;
    union {
        struct {
3426
            const char *protocol;
3427 3428 3429 3430
            const char *name;
            int port;
        } host;

3431 3432 3433 3434
        struct {
            int qemu;
            int local;
        } fd;
3435 3436 3437 3438 3439 3440 3441
    } dest;

    enum qemuMigrationForwardType fwdType;
    union {
        virStreamPtr stream;
    } fwd;
};
3442 3443 3444

#define TUNNEL_SEND_BUF_SIZE 65536

3445 3446 3447 3448 3449 3450 3451
typedef struct _qemuMigrationIOThread qemuMigrationIOThread;
typedef qemuMigrationIOThread *qemuMigrationIOThreadPtr;
struct _qemuMigrationIOThread {
    virThread thread;
    virStreamPtr st;
    int sock;
    virError err;
3452 3453
    int wakeupRecvFD;
    int wakeupSendFD;
3454 3455
};

3456
static void qemuMigrationSrcIOFunc(void *arg)
3457
{
3458
    qemuMigrationIOThreadPtr data = arg;
3459 3460 3461 3462 3463 3464 3465
    char *buffer = NULL;
    struct pollfd fds[2];
    int timeout = -1;
    virErrorPtr err = NULL;

    VIR_DEBUG("Running migration tunnel; stream=%p, sock=%d",
              data->st, data->sock);
3466

3467
    if (VIR_ALLOC_N(buffer, TUNNEL_SEND_BUF_SIZE) < 0)
3468
        goto abrt;
3469

3470 3471 3472
    fds[0].fd = data->sock;
    fds[1].fd = data->wakeupRecvFD;

3473
    for (;;) {
3474 3475 3476 3477 3478 3479 3480 3481 3482 3483
        int ret;

        fds[0].events = fds[1].events = POLLIN;
        fds[0].revents = fds[1].revents = 0;

        ret = poll(fds, ARRAY_CARDINALITY(fds), timeout);

        if (ret < 0) {
            if (errno == EAGAIN || errno == EINTR)
                continue;
3484
            virReportSystemError(errno, "%s",
3485 3486
                                 _("poll failed in migration tunnel"));
            goto abrt;
3487
        }
3488 3489 3490 3491 3492 3493 3494

        if (ret == 0) {
            /* We were asked to gracefully stop but reading would block. This
             * can only happen if qemu told us migration finished but didn't
             * close the migration fd. We handle this in the same way as EOF.
             */
            VIR_DEBUG("QEMU forgot to close migration fd");
3495
            break;
3496
        }
3497

3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513
        if (fds[1].revents & (POLLIN | POLLERR | POLLHUP)) {
            char stop = 0;

            if (saferead(data->wakeupRecvFD, &stop, 1) != 1) {
                virReportSystemError(errno, "%s",
                                     _("failed to read from wakeup fd"));
                goto abrt;
            }

            VIR_DEBUG("Migration tunnel was asked to %s",
                      stop ? "abort" : "finish");
            if (stop) {
                goto abrt;
            } else {
                timeout = 0;
            }
3514 3515
        }

3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532
        if (fds[0].revents & (POLLIN | POLLERR | POLLHUP)) {
            int nbytes;

            nbytes = saferead(data->sock, buffer, TUNNEL_SEND_BUF_SIZE);
            if (nbytes > 0) {
                if (virStreamSend(data->st, buffer, nbytes) < 0)
                    goto error;
            } else if (nbytes < 0) {
                virReportSystemError(errno, "%s",
                        _("tunnelled migration failed to read from qemu"));
                goto abrt;
            } else {
                /* EOF; get out of here */
                break;
            }
        }
    }
3533

3534 3535
    if (virStreamFinish(data->st) < 0)
        goto error;
3536

3537
    VIR_FORCE_CLOSE(data->sock);
3538 3539
    VIR_FREE(buffer);

3540 3541
    return;

3542
 abrt:
3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553
    err = virSaveLastError();
    if (err && err->code == VIR_ERR_OK) {
        virFreeError(err);
        err = NULL;
    }
    virStreamAbort(data->st);
    if (err) {
        virSetError(err);
        virFreeError(err);
    }

3554
 error:
3555 3556 3557 3558 3559
    /* Let the source qemu know that the transfer cant continue anymore.
     * Don't copy the error for EPIPE as destination has the actual error. */
    VIR_FORCE_CLOSE(data->sock);
    if (!virLastErrorIsSystemErrno(EPIPE))
        virCopyLastError(&data->err);
3560
    virResetLastError();
3561
    VIR_FREE(buffer);
3562 3563 3564 3565
}


static qemuMigrationIOThreadPtr
3566 3567
qemuMigrationSrcStartTunnel(virStreamPtr st,
                            int sock)
3568
{
3569 3570
    qemuMigrationIOThreadPtr io = NULL;
    int wakeupFD[2] = { -1, -1 };
3571

3572 3573 3574 3575
    if (pipe2(wakeupFD, O_CLOEXEC) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to make pipe"));
        goto error;
3576 3577
    }

3578
    if (VIR_ALLOC(io) < 0)
3579
        goto error;
3580

3581 3582
    io->st = st;
    io->sock = sock;
3583 3584
    io->wakeupRecvFD = wakeupFD[0];
    io->wakeupSendFD = wakeupFD[1];
3585 3586

    if (virThreadCreate(&io->thread, true,
3587
                        qemuMigrationSrcIOFunc,
3588 3589 3590
                        io) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to create migration thread"));
3591
        goto error;
3592 3593 3594
    }

    return io;
3595

3596
 error:
3597 3598 3599 3600
    VIR_FORCE_CLOSE(wakeupFD[0]);
    VIR_FORCE_CLOSE(wakeupFD[1]);
    VIR_FREE(io);
    return NULL;
3601 3602 3603
}

static int
3604
qemuMigrationSrcStopTunnel(qemuMigrationIOThreadPtr io, bool error)
3605 3606
{
    int rv = -1;
3607 3608 3609 3610 3611 3612 3613 3614 3615
    char stop = error ? 1 : 0;

    /* make sure the thread finishes its job and is joinable */
    if (safewrite(io->wakeupSendFD, &stop, 1) != 1) {
        virReportSystemError(errno, "%s",
                             _("failed to wakeup migration tunnel"));
        goto cleanup;
    }

3616 3617 3618 3619
    virThreadJoin(&io->thread);

    /* Forward error from the IO thread, to this thread */
    if (io->err.code != VIR_ERR_OK) {
3620 3621 3622 3623
        if (error)
            rv = 0;
        else
            virSetError(&io->err);
3624 3625 3626 3627 3628 3629
        virResetError(&io->err);
        goto cleanup;
    }

    rv = 0;

3630
 cleanup:
3631 3632
    VIR_FORCE_CLOSE(io->wakeupSendFD);
    VIR_FORCE_CLOSE(io->wakeupRecvFD);
3633 3634
    VIR_FREE(io);
    return rv;
3635 3636
}

3637
static int
3638 3639 3640
qemuMigrationSrcConnect(virQEMUDriverPtr driver,
                        virDomainObjPtr vm,
                        qemuMigrationSpecPtr spec)
3641 3642 3643 3644 3645 3646 3647
{
    virNetSocketPtr sock;
    const char *host;
    char *port = NULL;
    int ret = -1;

    host = spec->dest.host.name;
3648
    if (virAsprintf(&port, "%d", spec->dest.host.port) < 0)
3649 3650 3651 3652 3653
        return -1;

    spec->destType = MIGRATION_DEST_FD;
    spec->dest.fd.qemu = -1;

3654
    if (qemuSecuritySetSocketLabel(driver->securityManager, vm->def) < 0)
3655
        goto cleanup;
3656 3657 3658
    if (virNetSocketNewConnectTCP(host, port,
                                  AF_UNSPEC,
                                  &sock) == 0) {
3659
        spec->dest.fd.qemu = virNetSocketDupFD(sock, true);
3660
        virObjectUnref(sock);
3661
    }
3662
    if (qemuSecurityClearSocketLabel(driver->securityManager, vm->def) < 0 ||
3663 3664 3665
        spec->dest.fd.qemu == -1)
        goto cleanup;

3666 3667 3668 3669 3670 3671 3672
    /* Migration expects a blocking FD */
    if (virSetBlocking(spec->dest.fd.qemu, true) < 0) {
        virReportSystemError(errno, _("Unable to set FD %d blocking"),
                             spec->dest.fd.qemu);
        goto cleanup;
    }

3673 3674
    ret = 0;

3675
 cleanup:
3676 3677 3678 3679 3680 3681
    VIR_FREE(port);
    if (ret < 0)
        VIR_FORCE_CLOSE(spec->dest.fd.qemu);
    return ret;
}

3682 3683

static int
3684 3685 3686 3687
qemuMigrationSrcContinue(virQEMUDriverPtr driver,
                         virDomainObjPtr vm,
                         qemuMonitorMigrationStatus status,
                         qemuDomainAsyncJob asyncJob)
3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret;

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

    ret = qemuMonitorMigrateContinue(priv->mon, status);

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        ret = -1;

    return ret;
}


3704
static int
3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720
qemuMigrationSrcRun(virQEMUDriverPtr driver,
                    virDomainObjPtr vm,
                    const char *persist_xml,
                    const char *cookiein,
                    int cookieinlen,
                    char **cookieout,
                    int *cookieoutlen,
                    unsigned long flags,
                    unsigned long resource,
                    qemuMigrationSpecPtr spec,
                    virConnectPtr dconn,
                    const char *graphicsuri,
                    size_t nmigrate_disks,
                    const char **migrate_disks,
                    qemuMigrationCompressionPtr compression,
                    qemuMonitorMigrationParamsPtr migParams)
3721
{
3722
    int ret = -1;
3723
    unsigned int migrate_flags = QEMU_MONITOR_MIGRATE_BACKGROUND;
3724
    virQEMUDriverConfigPtr cfg = NULL;
3725
    qemuDomainObjPrivatePtr priv = vm->privateData;
3726
    qemuMigrationCookiePtr mig = NULL;
3727 3728
    char *tlsAlias = NULL;
    char *secAlias = NULL;
3729
    qemuMigrationIOThreadPtr iothread = NULL;
3730
    int fd = -1;
3731
    unsigned long migrate_speed = resource ? resource : priv->migMaxBandwidth;
3732
    virErrorPtr orig_err = NULL;
3733
    unsigned int cookieFlags = 0;
3734
    bool abort_on_error = !!(flags & VIR_MIGRATE_ABORT_ON_ERROR);
3735
    bool events = virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_MIGRATION_EVENT);
3736
    bool cancel = false;
3737
    unsigned int waitFlags;
3738
    virDomainDefPtr persistDef = NULL;
3739
    char *timestamp;
3740
    int rc;
3741 3742

    VIR_DEBUG("driver=%p, vm=%p, cookiein=%s, cookieinlen=%d, "
3743
              "cookieout=%p, cookieoutlen=%p, flags=0x%lx, resource=%lu, "
3744 3745
              "spec=%p (dest=%d, fwd=%d), dconn=%p, graphicsuri=%s, "
              "nmigrate_disks=%zu, migrate_disks=%p",
3746 3747
              driver, vm, NULLSTR(cookiein), cookieinlen,
              cookieout, cookieoutlen, flags, resource,
3748
              spec, spec->destType, spec->fwdType, dconn,
3749
              NULLSTR(graphicsuri), nmigrate_disks, migrate_disks);
3750

3751 3752 3753 3754 3755 3756 3757 3758 3759 3760
    if (flags & VIR_MIGRATE_NON_SHARED_DISK) {
        migrate_flags |= QEMU_MONITOR_MIGRATE_NON_SHARED_DISK;
        cookieFlags |= QEMU_MIGRATION_COOKIE_NBD;
    }

    if (flags & VIR_MIGRATE_NON_SHARED_INC) {
        migrate_flags |= QEMU_MONITOR_MIGRATE_NON_SHARED_INC;
        cookieFlags |= QEMU_MIGRATION_COOKIE_NBD;
    }

3761 3762
    if (virLockManagerPluginUsesState(driver->lockManager) &&
        !cookieout) {
3763 3764 3765 3766
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Migration with lock driver %s requires"
                         " cookie support"),
                       virLockManagerPluginGetName(driver->lockManager));
3767 3768 3769
        return -1;
    }

3770 3771 3772
    if (events)
        priv->signalIOError = abort_on_error;

3773 3774
    if (flags & VIR_MIGRATE_PERSIST_DEST) {
        if (persist_xml) {
3775 3776
            if (!(persistDef = qemuMigrationAnyPrepareDef(driver, persist_xml,
                                                          NULL, NULL)))
3777
                goto error;
3778 3779 3780
        } else {
            virDomainDefPtr def = vm->newDef ? vm->newDef : vm->def;
            if (!(persistDef = qemuDomainDefCopy(driver, def,
3781 3782
                                                 VIR_DOMAIN_XML_SECURE |
                                                 VIR_DOMAIN_XML_MIGRATABLE)))
3783
                goto error;
3784 3785 3786
        }
    }

3787 3788 3789
    mig = qemuMigrationEatCookie(driver, vm, cookiein, cookieinlen,
                                 cookieFlags | QEMU_MIGRATION_COOKIE_GRAPHICS);
    if (!mig)
3790
        goto error;
3791

3792
    if (qemuMigrationSrcGraphicsRelocate(driver, vm, mig, graphicsuri) < 0)
3793 3794
        VIR_WARN("unable to provide data for graphics client relocation");

3795 3796 3797 3798 3799
    if (flags & VIR_MIGRATE_TLS) {
        cfg = virQEMUDriverGetConfig(driver);

        /* Begin/CheckSetupTLS already set up migTLSAlias, the following
         * assumes that and adds the TLS objects to the domain. */
3800 3801 3802
        if (qemuMigrationParamsAddTLSObjects(driver, vm, cfg, false,
                                             QEMU_ASYNC_JOB_MIGRATION_OUT,
                                             &tlsAlias, &secAlias, migParams) < 0)
3803
            goto error;
3804 3805 3806 3807 3808

        /* We need to add tls-hostname whenever QEMU itself does not
         * connect directly to the destination. */
        if (spec->destType == MIGRATION_DEST_CONNECT_HOST ||
            spec->destType == MIGRATION_DEST_FD) {
3809
            if (VIR_STRDUP(migParams->tlsHostname, spec->dest.host.name) < 0)
3810
                goto error;
3811 3812
        } else {
            /* Be sure there's nothing from a previous migration */
3813
            if (VIR_STRDUP(migParams->tlsHostname, "") < 0)
3814
                goto error;
3815 3816
        }
    } else {
3817
        if (qemuMigrationParamsSetEmptyTLS(driver, vm,
3818 3819
                                           QEMU_ASYNC_JOB_MIGRATION_OUT,
                                           migParams) < 0)
3820
            goto error;
3821 3822
    }

3823 3824 3825 3826
    if (migrate_flags & (QEMU_MONITOR_MIGRATE_NON_SHARED_DISK |
                         QEMU_MONITOR_MIGRATE_NON_SHARED_INC)) {
        if (mig->nbd) {
            /* This will update migrate_flags on success */
3827 3828 3829 3830 3831 3832 3833
            if (qemuMigrationSrcDriveMirror(driver, vm, mig,
                                            spec->dest.host.name,
                                            migrate_speed,
                                            &migrate_flags,
                                            nmigrate_disks,
                                            migrate_disks,
                                            dconn) < 0) {
3834
                goto error;
3835 3836 3837 3838 3839 3840 3841
            }
        } else {
            /* Destination doesn't support NBD server.
             * Fall back to previous implementation. */
            VIR_DEBUG("Destination doesn't support NBD server "
                      "Falling back to previous implementation.");
        }
3842 3843
    }

3844
    /* Before EnterMonitor, since qemuMigrationSetOffline already does that */
3845 3846
    if (!(flags & VIR_MIGRATE_LIVE) &&
        virDomainObjGetState(vm, NULL) == VIR_DOMAIN_RUNNING) {
3847
        if (qemuMigrationSrcSetOffline(driver, vm) < 0)
3848
            goto error;
3849 3850
    }

3851 3852
    if (qemuMigrationParamsSetCompression(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT,
                                          compression, migParams) < 0)
3853
        goto error;
3854

3855
    if (qemuMigrationOptionSet(driver, vm,
3856 3857 3858
                               QEMU_MONITOR_MIGRATION_CAPS_AUTO_CONVERGE,
                               flags & VIR_MIGRATE_AUTO_CONVERGE,
                               QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
3859
        goto error;
3860

3861
    if (qemuMigrationOptionSet(driver, vm,
3862
                               QEMU_MONITOR_MIGRATION_CAPS_RDMA_PIN_ALL,
3863
                               flags & VIR_MIGRATE_RDMA_PIN_ALL,
3864
                               QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
3865
        goto error;
3866

3867 3868 3869
    if (qemuMigrationOptionSetPostCopy(driver, vm,
                                       flags & VIR_MIGRATE_POSTCOPY,
                                       QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
3870
        goto error;
3871

3872 3873
    if (qemuMigrationAnyCapsGet(vm, QEMU_MONITOR_MIGRATION_CAPS_PAUSE_BEFORE_SWITCHOVER) &&
        qemuMigrationOptionSet(driver, vm,
3874 3875 3876 3877
                               QEMU_MONITOR_MIGRATION_CAPS_PAUSE_BEFORE_SWITCHOVER,
                               true, QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
        goto error;

3878
    if (qemuMigrationParamsSet(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT,
3879
                               migParams) < 0)
3880
        goto error;
3881

3882 3883
    if (qemuDomainObjEnterMonitorAsync(driver, vm,
                                       QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
3884
        goto error;
3885

3886
    if (priv->job.abortJob) {
3887 3888
        /* explicitly do this *after* we entered the monitor,
         * as this is a critical section so we are guaranteed
3889
         * priv->job.abortJob will not change */
3890
        priv->job.current->status = QEMU_DOMAIN_JOB_STATUS_CANCELED;
3891 3892 3893
        virReportError(VIR_ERR_OPERATION_ABORTED, _("%s: %s"),
                       qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                       _("canceled by client"));
3894
        goto exit_monitor;
3895 3896
    }

3897 3898
    if (qemuMonitorSetMigrationSpeed(priv->mon, migrate_speed) < 0)
        goto exit_monitor;
3899

3900 3901
    /* connect to the destination qemu if needed */
    if (spec->destType == MIGRATION_DEST_CONNECT_HOST &&
3902
        qemuMigrationSrcConnect(driver, vm, spec) < 0) {
3903
        goto exit_monitor;
3904
    }
3905

3906 3907 3908 3909 3910 3911
    /* log start of migration */
    if ((timestamp = virTimeStringNow()) != NULL) {
        qemuDomainLogAppendMessage(driver, vm, "%s: initiating migration\n", timestamp);
        VIR_FREE(timestamp);
    }

3912
    rc = -1;
3913 3914
    switch (spec->destType) {
    case MIGRATION_DEST_HOST:
M
Michael R. Hines 已提交
3915 3916
        if (STREQ(spec->dest.host.protocol, "rdma") &&
            virProcessSetMaxMemLock(vm->pid, vm->def->mem.hard_limit << 10) < 0) {
3917
            goto exit_monitor;
M
Michael R. Hines 已提交
3918
        }
3919 3920 3921 3922
        rc = qemuMonitorMigrateToHost(priv->mon, migrate_flags,
                                      spec->dest.host.protocol,
                                      spec->dest.host.name,
                                      spec->dest.host.port);
3923 3924
        break;

3925 3926 3927 3928
    case MIGRATION_DEST_CONNECT_HOST:
        /* handled above and transformed into MIGRATION_DEST_FD */
        break;

3929
    case MIGRATION_DEST_FD:
3930
        if (spec->fwdType != MIGRATION_FWD_DIRECT) {
3931
            fd = spec->dest.fd.local;
3932 3933
            spec->dest.fd.local = -1;
        }
3934 3935
        rc = qemuMonitorMigrateToFd(priv->mon, migrate_flags,
                                    spec->dest.fd.qemu);
3936 3937
        VIR_FORCE_CLOSE(spec->dest.fd.qemu);
        break;
3938
    }
3939 3940

    if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
3941
        goto error;
3942 3943 3944

    /* From this point onwards we *must* call cancel to abort the
     * migration on source if anything goes wrong */
3945
    cancel = true;
3946

3947
    if (spec->fwdType != MIGRATION_FWD_DIRECT) {
3948
        if (!(iothread = qemuMigrationSrcStartTunnel(spec->fwd.stream, fd)))
3949
            goto error;
3950 3951 3952 3953 3954
        /* If we've created a tunnel, then the 'fd' will be closed in the
         * qemuMigrationIOFunc as data->sock.
         */
        fd = -1;
    }
3955

3956
    waitFlags = QEMU_MIGRATION_COMPLETED_PRE_SWITCHOVER;
3957 3958 3959 3960 3961 3962 3963
    if (abort_on_error)
        waitFlags |= QEMU_MIGRATION_COMPLETED_ABORT_ON_ERROR;
    if (mig->nbd)
        waitFlags |= QEMU_MIGRATION_COMPLETED_CHECK_STORAGE;
    if (flags & VIR_MIGRATE_POSTCOPY)
        waitFlags |= QEMU_MIGRATION_COMPLETED_POSTCOPY;

3964 3965 3966
    rc = qemuMigrationSrcWaitForCompletion(driver, vm,
                                           QEMU_ASYNC_JOB_MIGRATION_OUT,
                                           dconn, waitFlags);
3967
    if (rc == -2) {
3968
        goto error;
3969 3970 3971 3972 3973
    } else if (rc == -1) {
        /* QEMU reported failed migration, nothing to cancel anymore */
        cancel = false;
        goto error;
    }
3974

3975 3976 3977
    /* When migration completed, QEMU will have paused the CPUs for us.
     * Wait for the STOP event to be processed or explicitly stop CPUs
     * (for old QEMU which does not send events) to release the lock state.
3978
     */
3979 3980 3981 3982 3983
    if (priv->monJSON) {
        while (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_RUNNING) {
            priv->signalStop = true;
            rc = virDomainObjWait(vm);
            priv->signalStop = false;
3984
            if (rc < 0)
3985
                goto error;
3986
        }
3987
    } else if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_RUNNING &&
3988
               qemuMigrationSrcSetOffline(driver, vm) < 0) {
3989
        goto error;
3990
    }
3991

J
Ján Tomko 已提交
3992
    if (mig->nbd &&
3993 3994 3995
        qemuMigrationSrcCancelDriveMirror(driver, vm, true,
                                          QEMU_ASYNC_JOB_MIGRATION_OUT,
                                          dconn) < 0)
3996
        goto error;
3997

3998 3999 4000 4001 4002
    /* When migration was paused before serializing device state we need to
     * resume it now once we finished all block jobs and wait for the real
     * end of the migration.
     */
    if (priv->job.current->status == QEMU_DOMAIN_JOB_STATUS_PAUSED) {
4003 4004 4005
        if (qemuMigrationSrcContinue(driver, vm,
                                     QEMU_MONITOR_MIGRATION_STATUS_PRE_SWITCHOVER,
                                     QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
4006 4007 4008 4009
            goto error;

        waitFlags ^= QEMU_MIGRATION_COMPLETED_PRE_SWITCHOVER;

4010 4011 4012
        rc = qemuMigrationSrcWaitForCompletion(driver, vm,
                                               QEMU_ASYNC_JOB_MIGRATION_OUT,
                                               dconn, waitFlags);
4013 4014 4015 4016 4017 4018 4019 4020 4021
        if (rc == -2) {
            goto error;
        } else if (rc == -1) {
            /* QEMU reported failed migration, nothing to cancel anymore */
            cancel = false;
            goto error;
        }
    }

4022 4023 4024 4025
    if (iothread) {
        qemuMigrationIOThreadPtr io;

        VIR_STEAL_PTR(io, iothread);
4026
        if (qemuMigrationSrcStopTunnel(io, false) < 0)
4027
            goto error;
4028 4029 4030
    }

    if (priv->job.completed) {
4031
        priv->job.completed->stopped = priv->job.current->stopped;
4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044
        qemuDomainJobInfoUpdateTime(priv->job.completed);
        qemuDomainJobInfoUpdateDowntime(priv->job.completed);
        ignore_value(virTimeMillisNow(&priv->job.completed->sent));
    }

    cookieFlags |= QEMU_MIGRATION_COOKIE_NETWORK |
                   QEMU_MIGRATION_COOKIE_STATS;

    if (qemuMigrationCookieAddPersistent(mig, &persistDef) < 0 ||
        qemuMigrationBakeCookie(mig, driver, vm, cookieout,
                                cookieoutlen, cookieFlags) < 0) {
        VIR_WARN("Unable to encode migration cookie");
    }
4045

4046
    ret = 0;
4047

4048
 cleanup:
4049 4050 4051
    VIR_FREE(tlsAlias);
    VIR_FREE(secAlias);
    virObjectUnref(cfg);
4052
    VIR_FORCE_CLOSE(fd);
4053
    virDomainDefFree(persistDef);
4054 4055
    qemuMigrationCookieFree(mig);

4056 4057 4058
    if (events)
        priv->signalIOError = false;

4059 4060 4061 4062 4063
    if (orig_err) {
        virSetError(orig_err);
        virFreeError(orig_err);
    }

4064 4065
    return ret;

4066
 error:
4067 4068 4069 4070 4071 4072 4073 4074 4075 4076
    orig_err = virSaveLastError();

    if (cancel &&
        priv->job.current->status != QEMU_DOMAIN_JOB_STATUS_QEMU_COMPLETED &&
        virDomainObjIsActive(vm) &&
        qemuDomainObjEnterMonitorAsync(driver, vm,
                                       QEMU_ASYNC_JOB_MIGRATION_OUT) == 0) {
        qemuMonitorMigrateCancel(priv->mon);
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
    }
4077 4078 4079

    /* cancel any outstanding NBD jobs */
    if (mig && mig->nbd)
4080 4081 4082
        qemuMigrationSrcCancelDriveMirror(driver, vm, false,
                                          QEMU_ASYNC_JOB_MIGRATION_OUT,
                                          dconn);
4083 4084

    if (iothread)
4085
        qemuMigrationSrcStopTunnel(iothread, true);
4086

4087
    if (priv->job.current->status != QEMU_DOMAIN_JOB_STATUS_CANCELED)
4088 4089 4090 4091
        priv->job.current->status = QEMU_DOMAIN_JOB_STATUS_FAILED;

    goto cleanup;

4092 4093
 exit_monitor:
    ignore_value(qemuDomainObjExitMonitor(driver, vm));
4094
    goto error;
4095 4096
}

4097
/* Perform migration using QEMU's native migrate support,
4098 4099
 * not encrypted obviously
 */
4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116
static int
qemuMigrationSrcPerformNative(virQEMUDriverPtr driver,
                              virDomainObjPtr vm,
                              const char *persist_xml,
                              const char *uri,
                              const char *cookiein,
                              int cookieinlen,
                              char **cookieout,
                              int *cookieoutlen,
                              unsigned long flags,
                              unsigned long resource,
                              virConnectPtr dconn,
                              const char *graphicsuri,
                              size_t nmigrate_disks,
                              const char **migrate_disks,
                              qemuMigrationCompressionPtr compression,
                              qemuMonitorMigrationParamsPtr migParams)
4117
{
4118
    qemuDomainObjPrivatePtr priv = vm->privateData;
M
Martin Kletzander 已提交
4119
    virURIPtr uribits = NULL;
4120
    int ret = -1;
4121 4122 4123
    qemuMigrationSpec spec;

    VIR_DEBUG("driver=%p, vm=%p, uri=%s, cookiein=%s, cookieinlen=%d, "
4124
              "cookieout=%p, cookieoutlen=%p, flags=0x%lx, resource=%lu, "
4125
              "graphicsuri=%s, nmigrate_disks=%zu migrate_disks=%p",
4126
              driver, vm, uri, NULLSTR(cookiein), cookieinlen,
4127
              cookieout, cookieoutlen, flags, resource,
4128
              NULLSTR(graphicsuri), nmigrate_disks, migrate_disks);
4129

4130
    if (!(uribits = qemuMigrationAnyParseURI(uri, NULL)))
4131 4132
        return -1;

4133 4134 4135 4136 4137 4138 4139
    if (uribits->scheme == NULL) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("missing scheme in migration URI: %s"),
                       uri);
        goto cleanup;
    }

M
Michael R. Hines 已提交
4140 4141 4142 4143 4144
    if (STREQ(uribits->scheme, "rdma")) {
        if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_MIGRATE_RDMA)) {
            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                           _("outgoing RDMA migration is not supported "
                             "with this QEMU binary"));
4145
            goto cleanup;
M
Michael R. Hines 已提交
4146
        }
4147
        if (!virMemoryLimitIsSet(vm->def->mem.hard_limit)) {
M
Michael R. Hines 已提交
4148 4149 4150
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("cannot start RDMA migration with no memory hard "
                             "limit set"));
4151
            goto cleanup;
M
Michael R. Hines 已提交
4152 4153 4154
        }
    }

4155
    if (STRNEQ(uribits->scheme, "rdma"))
4156 4157
        spec.destType = MIGRATION_DEST_CONNECT_HOST;
    else
4158
        spec.destType = MIGRATION_DEST_HOST;
4159
    spec.dest.host.protocol = uribits->scheme;
4160 4161 4162
    spec.dest.host.name = uribits->server;
    spec.dest.host.port = uribits->port;
    spec.fwdType = MIGRATION_FWD_DIRECT;
4163

4164 4165 4166 4167
    ret = qemuMigrationSrcRun(driver, vm, persist_xml, cookiein, cookieinlen, cookieout,
                              cookieoutlen, flags, resource, &spec, dconn,
                              graphicsuri, nmigrate_disks, migrate_disks,
                              compression, migParams);
4168 4169 4170 4171

    if (spec.destType == MIGRATION_DEST_FD)
        VIR_FORCE_CLOSE(spec.dest.fd.qemu);

4172
 cleanup:
4173
    virURIFree(uribits);
4174 4175 4176 4177 4178

    return ret;
}


4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195
static int
qemuMigrationSrcPerformTunnel(virQEMUDriverPtr driver,
                              virDomainObjPtr vm,
                              virStreamPtr st,
                              const char *persist_xml,
                              const char *cookiein,
                              int cookieinlen,
                              char **cookieout,
                              int *cookieoutlen,
                              unsigned long flags,
                              unsigned long resource,
                              virConnectPtr dconn,
                              const char *graphicsuri,
                              size_t nmigrate_disks,
                              const char **migrate_disks,
                              qemuMigrationCompressionPtr compression,
                              qemuMonitorMigrationParamsPtr migParams)
4196 4197 4198
{
    int ret = -1;
    qemuMigrationSpec spec;
4199
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4200
    int fds[2] = { -1, -1 };
4201 4202

    VIR_DEBUG("driver=%p, vm=%p, st=%p, cookiein=%s, cookieinlen=%d, "
4203
              "cookieout=%p, cookieoutlen=%p, flags=0x%lx, resource=%lu, "
4204
              "graphicsuri=%s, nmigrate_disks=%zu, migrate_disks=%p",
4205
              driver, vm, st, NULLSTR(cookiein), cookieinlen,
4206
              cookieout, cookieoutlen, flags, resource,
4207
              NULLSTR(graphicsuri), nmigrate_disks, migrate_disks);
4208 4209 4210 4211

    spec.fwdType = MIGRATION_FWD_STREAM;
    spec.fwd.stream = st;

4212

4213 4214 4215
    spec.destType = MIGRATION_DEST_FD;
    spec.dest.fd.qemu = -1;
    spec.dest.fd.local = -1;
4216

4217 4218 4219 4220 4221
    if (pipe2(fds, O_CLOEXEC) == 0) {
        spec.dest.fd.qemu = fds[1];
        spec.dest.fd.local = fds[0];
    }
    if (spec.dest.fd.qemu == -1 ||
4222 4223
        qemuSecuritySetImageFDLabel(driver->securityManager, vm->def,
                                    spec.dest.fd.qemu) < 0) {
4224 4225 4226
        virReportSystemError(errno, "%s",
                             _("cannot create pipe for tunnelled migration"));
        goto cleanup;
4227 4228
    }

4229 4230 4231 4232
    ret = qemuMigrationSrcRun(driver, vm, persist_xml, cookiein, cookieinlen,
                              cookieout, cookieoutlen, flags, resource, &spec,
                              dconn, graphicsuri, nmigrate_disks, migrate_disks,
                              compression, migParams);
4233

4234
 cleanup:
4235 4236
    VIR_FORCE_CLOSE(spec.dest.fd.qemu);
    VIR_FORCE_CLOSE(spec.dest.fd.local);
4237

4238
    virObjectUnref(cfg);
4239 4240 4241 4242
    return ret;
}


4243 4244 4245 4246
/* This is essentially a re-impl of virDomainMigrateVersion2
 * from libvirt.c, but running in source libvirtd context,
 * instead of client app context & also adding in tunnel
 * handling */
4247 4248 4249 4250 4251 4252 4253 4254 4255
static int
qemuMigrationSrcPerformPeer2Peer2(virQEMUDriverPtr driver,
                                  virConnectPtr sconn,
                                  virConnectPtr dconn,
                                  virDomainObjPtr vm,
                                  const char *dconnuri,
                                  unsigned long flags,
                                  const char *dname,
                                  unsigned long resource)
4256 4257 4258
{
    virDomainPtr ddomain = NULL;
    char *uri_out = NULL;
4259
    char *cookie = NULL;
4260 4261 4262
    char *dom_xml = NULL;
    int cookielen = 0, ret;
    virErrorPtr orig_err = NULL;
4263
    bool cancelled;
4264
    virStreamPtr st = NULL;
4265
    unsigned long destflags;
4266
    qemuMigrationCompressionPtr compression = NULL;
4267
    qemuMonitorMigrationParams migParams = { 0 };
4268

4269
    VIR_DEBUG("driver=%p, sconn=%p, dconn=%p, vm=%p, dconnuri=%s, "
4270
              "flags=0x%lx, dname=%s, resource=%lu",
4271 4272
              driver, sconn, dconn, vm, NULLSTR(dconnuri),
              flags, NULLSTR(dname), resource);
4273

4274 4275 4276 4277 4278
    /* In version 2 of the protocol, the prepare step is slightly
     * different.  We fetch the domain XML of the source domain
     * and pass it to Prepare2.
     */
    if (!(dom_xml = qemuDomainFormatXML(driver, vm,
4279 4280
                                        QEMU_DOMAIN_FORMAT_LIVE_FLAGS |
                                        VIR_DOMAIN_XML_MIGRATABLE)))
4281 4282 4283 4284 4285
        return -1;

    if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED)
        flags |= VIR_MIGRATE_PAUSED;

4286 4287
    destflags = flags & ~(VIR_MIGRATE_ABORT_ON_ERROR |
                          VIR_MIGRATE_AUTO_CONVERGE);
4288

4289
    if (!(compression = qemuMigrationAnyCompressionParse(NULL, 0, flags)))
4290 4291
        goto cleanup;

4292 4293 4294 4295 4296 4297 4298 4299 4300 4301
    VIR_DEBUG("Prepare2 %p", dconn);
    if (flags & VIR_MIGRATE_TUNNELLED) {
        /*
         * Tunnelled Migrate Version 2 does not support cookies
         * due to missing parameters in the prepareTunnel() API.
         */

        if (!(st = virStreamNew(dconn, 0)))
            goto cleanup;

4302
        qemuDomainObjEnterRemote(vm);
4303
        ret = dconn->driver->domainMigratePrepareTunnel
4304
            (dconn, st, destflags, dname, resource, dom_xml);
4305
        qemuDomainObjExitRemote(vm);
4306
    } else {
4307
        qemuDomainObjEnterRemote(vm);
4308 4309
        ret = dconn->driver->domainMigratePrepare2
            (dconn, &cookie, &cookielen, NULL, &uri_out,
4310
             destflags, dname, resource, dom_xml);
4311
        qemuDomainObjExitRemote(vm);
4312 4313 4314
    }
    VIR_FREE(dom_xml);
    if (ret == -1)
4315 4316 4317
        goto cleanup;

    /* the domain may have shutdown or crashed while we had the locks dropped
4318
     * in qemuDomainObjEnterRemote, so check again
4319 4320
     */
    if (!virDomainObjIsActive(vm)) {
4321 4322
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("guest unexpectedly quit"));
4323 4324 4325
        goto cleanup;
    }

4326 4327
    if (!(flags & VIR_MIGRATE_TUNNELLED) &&
        (uri_out == NULL)) {
4328 4329
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("domainMigratePrepare2 did not set uri"));
4330
        cancelled = true;
4331
        orig_err = virSaveLastError();
4332
        goto finish;
4333 4334
    }

4335 4336 4337 4338
    /* Perform the migration.  The driver isn't supposed to return
     * until the migration is complete.
     */
    VIR_DEBUG("Perform %p", sconn);
4339
    qemuMigrationJobSetPhase(driver, vm, QEMU_MIGRATION_PHASE_PERFORM2);
4340
    if (flags & VIR_MIGRATE_TUNNELLED)
4341 4342 4343 4344
        ret = qemuMigrationSrcPerformTunnel(driver, vm, st, NULL,
                                            NULL, 0, NULL, NULL,
                                            flags, resource, dconn,
                                            NULL, 0, NULL, compression, &migParams);
4345
    else
4346 4347 4348 4349 4350
        ret = qemuMigrationSrcPerformNative(driver, vm, NULL, uri_out,
                                            cookie, cookielen,
                                            NULL, NULL, /* No out cookie with v2 migration */
                                            flags, resource, dconn, NULL, 0, NULL,
                                            compression, &migParams);
4351 4352 4353 4354

    /* Perform failed. Make sure Finish doesn't overwrite the error */
    if (ret < 0)
        orig_err = virSaveLastError();
4355

4356 4357 4358
    /* If Perform returns < 0, then we need to cancel the VM
     * startup on the destination
     */
4359
    cancelled = ret < 0;
4360

4361
 finish:
4362 4363 4364 4365
    /* In version 2 of the migration protocol, we pass the
     * status code from the sender to the destination host,
     * so it can do any cleanup if the migration failed.
     */
4366
    dname = dname ? dname : vm->def->name;
4367
    VIR_DEBUG("Finish2 %p ret=%d", dconn, ret);
4368
    qemuDomainObjEnterRemote(vm);
4369
    ddomain = dconn->driver->domainMigrateFinish2
4370
        (dconn, dname, cookie, cookielen,
4371
         uri_out ? uri_out : dconnuri, destflags, cancelled);
4372
    qemuDomainObjExitRemote(vm);
4373 4374
    if (cancelled && ddomain)
        VIR_ERROR(_("finish step ignored that migration was cancelled"));
4375

4376
 cleanup:
4377
    if (ddomain) {
4378
        virObjectUnref(ddomain);
4379 4380 4381 4382
        ret = 0;
    } else {
        ret = -1;
    }
4383

4384
    virObjectUnref(st);
4385 4386 4387 4388 4389

    if (orig_err) {
        virSetError(orig_err);
        virFreeError(orig_err);
    }
4390
    qemuMigrationParamsClear(&migParams);
4391
    VIR_FREE(uri_out);
4392
    VIR_FREE(cookie);
4393
    VIR_FREE(compression);
4394 4395

    return ret;
4396 4397 4398
}


4399 4400 4401 4402
/* This is essentially a re-impl of virDomainMigrateVersion3
 * from libvirt.c, but running in source libvirtd context,
 * instead of client app context & also adding in tunnel
 * handling */
4403
static int
4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422
qemuMigrationSrcPerformPeer2Peer3(virQEMUDriverPtr driver,
                                  virConnectPtr sconn,
                                  virConnectPtr dconn,
                                  const char *dconnuri,
                                  virDomainObjPtr vm,
                                  const char *xmlin,
                                  const char *persist_xml,
                                  const char *dname,
                                  const char *uri,
                                  const char *graphicsuri,
                                  const char *listenAddress,
                                  size_t nmigrate_disks,
                                  const char **migrate_disks,
                                  int nbdPort,
                                  qemuMigrationCompressionPtr compression,
                                  qemuMonitorMigrationParamsPtr migParams,
                                  unsigned long long bandwidth,
                                  bool useParams,
                                  unsigned long flags)
4423 4424 4425 4426 4427 4428 4429 4430 4431 4432
{
    virDomainPtr ddomain = NULL;
    char *uri_out = NULL;
    char *cookiein = NULL;
    char *cookieout = NULL;
    char *dom_xml = NULL;
    int cookieinlen = 0;
    int cookieoutlen = 0;
    int ret = -1;
    virErrorPtr orig_err = NULL;
4433
    bool cancelled = true;
4434
    virStreamPtr st = NULL;
4435
    unsigned long destflags;
4436 4437 4438
    virTypedParameterPtr params = NULL;
    int nparams = 0;
    int maxparams = 0;
4439
    size_t i;
4440 4441

    VIR_DEBUG("driver=%p, sconn=%p, dconn=%p, dconnuri=%s, vm=%p, xmlin=%s, "
4442
              "dname=%s, uri=%s, graphicsuri=%s, listenAddress=%s, "
4443
              "nmigrate_disks=%zu, migrate_disks=%p, nbdPort=%d, "
4444
              "bandwidth=%llu, useParams=%d, flags=0x%lx",
4445
              driver, sconn, dconn, NULLSTR(dconnuri), vm, NULLSTR(xmlin),
4446
              NULLSTR(dname), NULLSTR(uri), NULLSTR(graphicsuri),
4447
              NULLSTR(listenAddress), nmigrate_disks, migrate_disks, nbdPort,
4448
              bandwidth, useParams, flags);
4449

4450 4451 4452 4453 4454
    /* Unlike the virDomainMigrateVersion3 counterpart, we don't need
     * to worry about auto-setting the VIR_MIGRATE_CHANGE_PROTECTION
     * bit here, because we are already running inside the context of
     * a single job.  */

4455 4456 4457
    dom_xml = qemuMigrationSrcBeginPhase(driver, vm, xmlin, dname,
                                         &cookieout, &cookieoutlen,
                                         nmigrate_disks, migrate_disks, flags);
4458 4459 4460
    if (!dom_xml)
        goto cleanup;

4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480
    if (useParams) {
        if (virTypedParamsAddString(&params, &nparams, &maxparams,
                                    VIR_MIGRATE_PARAM_DEST_XML, dom_xml) < 0)
            goto cleanup;

        if (dname &&
            virTypedParamsAddString(&params, &nparams, &maxparams,
                                    VIR_MIGRATE_PARAM_DEST_NAME, dname) < 0)
            goto cleanup;

        if (uri &&
            virTypedParamsAddString(&params, &nparams, &maxparams,
                                    VIR_MIGRATE_PARAM_URI, uri) < 0)
            goto cleanup;

        if (bandwidth &&
            virTypedParamsAddULLong(&params, &nparams, &maxparams,
                                    VIR_MIGRATE_PARAM_BANDWIDTH,
                                    bandwidth) < 0)
            goto cleanup;
4481 4482 4483 4484 4485 4486

        if (graphicsuri &&
            virTypedParamsAddString(&params, &nparams, &maxparams,
                                    VIR_MIGRATE_PARAM_GRAPHICS_URI,
                                    graphicsuri) < 0)
            goto cleanup;
4487 4488 4489 4490 4491
        if (listenAddress &&
            virTypedParamsAddString(&params, &nparams, &maxparams,
                                    VIR_MIGRATE_PARAM_LISTEN_ADDRESS,
                                    listenAddress) < 0)
            goto cleanup;
4492 4493 4494 4495 4496
        for (i = 0; i < nmigrate_disks; i++)
            if (virTypedParamsAddString(&params, &nparams, &maxparams,
                                        VIR_MIGRATE_PARAM_MIGRATE_DISKS,
                                        migrate_disks[i]) < 0)
                goto cleanup;
4497 4498 4499 4500 4501
        if (nbdPort &&
            virTypedParamsAddInt(&params, &nparams, &maxparams,
                                 VIR_MIGRATE_PARAM_DISKS_PORT,
                                 nbdPort) < 0)
            goto cleanup;
4502

4503 4504
        if (qemuMigrationAnyCompressionDump(compression, &params, &nparams,
                                            &maxparams, &flags) < 0)
4505
            goto cleanup;
4506 4507
    }

4508 4509 4510
    if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED)
        flags |= VIR_MIGRATE_PAUSED;

4511 4512
    destflags = flags & ~(VIR_MIGRATE_ABORT_ON_ERROR |
                          VIR_MIGRATE_AUTO_CONVERGE);
4513

4514 4515 4516 4517 4518 4519 4520 4521 4522
    VIR_DEBUG("Prepare3 %p", dconn);
    cookiein = cookieout;
    cookieinlen = cookieoutlen;
    cookieout = NULL;
    cookieoutlen = 0;
    if (flags & VIR_MIGRATE_TUNNELLED) {
        if (!(st = virStreamNew(dconn, 0)))
            goto cleanup;

4523
        qemuDomainObjEnterRemote(vm);
4524 4525 4526 4527 4528 4529 4530 4531 4532
        if (useParams) {
            ret = dconn->driver->domainMigratePrepareTunnel3Params
                (dconn, st, params, nparams, cookiein, cookieinlen,
                 &cookieout, &cookieoutlen, destflags);
        } else {
            ret = dconn->driver->domainMigratePrepareTunnel3
                (dconn, st, cookiein, cookieinlen, &cookieout, &cookieoutlen,
                 destflags, dname, bandwidth, dom_xml);
        }
4533
        qemuDomainObjExitRemote(vm);
4534
    } else {
4535
        qemuDomainObjEnterRemote(vm);
4536 4537 4538 4539 4540 4541 4542 4543 4544
        if (useParams) {
            ret = dconn->driver->domainMigratePrepare3Params
                (dconn, params, nparams, cookiein, cookieinlen,
                 &cookieout, &cookieoutlen, &uri_out, destflags);
        } else {
            ret = dconn->driver->domainMigratePrepare3
                (dconn, cookiein, cookieinlen, &cookieout, &cookieoutlen,
                 uri, &uri_out, destflags, dname, bandwidth, dom_xml);
        }
4545
        qemuDomainObjExitRemote(vm);
4546 4547 4548 4549 4550
    }
    VIR_FREE(dom_xml);
    if (ret == -1)
        goto cleanup;

L
liguang 已提交
4551 4552 4553 4554
    if (flags & VIR_MIGRATE_OFFLINE) {
        VIR_DEBUG("Offline migration, skipping Perform phase");
        VIR_FREE(cookieout);
        cookieoutlen = 0;
4555
        cancelled = false;
L
liguang 已提交
4556 4557 4558
        goto finish;
    }

4559 4560 4561 4562
    if (uri_out) {
        uri = uri_out;
        if (useParams &&
            virTypedParamsReplaceString(&params, &nparams,
4563 4564
                                        VIR_MIGRATE_PARAM_URI, uri_out) < 0) {
            orig_err = virSaveLastError();
4565
            goto finish;
4566
        }
4567
    } else if (!uri && !(flags & VIR_MIGRATE_TUNNELLED)) {
4568 4569
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("domainMigratePrepare3 did not set uri"));
4570
        orig_err = virSaveLastError();
4571 4572 4573 4574 4575 4576 4577 4578
        goto finish;
    }

    /* Perform the migration.  The driver isn't supposed to return
     * until the migration is complete. The src VM should remain
     * running, but in paused state until the destination can
     * confirm migration completion.
     */
4579
    VIR_DEBUG("Perform3 %p uri=%s", sconn, NULLSTR(uri));
4580
    qemuMigrationJobSetPhase(driver, vm, QEMU_MIGRATION_PHASE_PERFORM3);
4581 4582 4583 4584 4585
    VIR_FREE(cookiein);
    cookiein = cookieout;
    cookieinlen = cookieoutlen;
    cookieout = NULL;
    cookieoutlen = 0;
4586
    if (flags & VIR_MIGRATE_TUNNELLED) {
4587 4588 4589 4590 4591 4592
        ret = qemuMigrationSrcPerformTunnel(driver, vm, st, persist_xml,
                                            cookiein, cookieinlen,
                                            &cookieout, &cookieoutlen,
                                            flags, bandwidth, dconn, graphicsuri,
                                            nmigrate_disks, migrate_disks, compression,
                                            migParams);
4593
    } else {
4594 4595 4596 4597 4598 4599
        ret = qemuMigrationSrcPerformNative(driver, vm, persist_xml, uri,
                                            cookiein, cookieinlen,
                                            &cookieout, &cookieoutlen,
                                            flags, bandwidth, dconn, graphicsuri,
                                            nmigrate_disks, migrate_disks, compression,
                                            migParams);
4600
    }
4601 4602

    /* Perform failed. Make sure Finish doesn't overwrite the error */
4603
    if (ret < 0) {
4604
        orig_err = virSaveLastError();
4605 4606 4607 4608
    } else {
        qemuMigrationJobSetPhase(driver, vm,
                                 QEMU_MIGRATION_PHASE_PERFORM3_DONE);
    }
4609 4610 4611 4612

    /* If Perform returns < 0, then we need to cancel the VM
     * startup on the destination
     */
4613
    cancelled = ret < 0;
4614

4615
 finish:
4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627
    /*
     * The status code from the source is passed to the destination.
     * The dest can cleanup in the source indicated it failed to
     * send all migration data. Returns NULL for ddomain if
     * the dest was unable to complete migration.
     */
    VIR_DEBUG("Finish3 %p ret=%d", dconn, ret);
    VIR_FREE(cookiein);
    cookiein = cookieout;
    cookieinlen = cookieoutlen;
    cookieout = NULL;
    cookieoutlen = 0;
4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650

    if (useParams) {
        if (virTypedParamsGetString(params, nparams,
                                    VIR_MIGRATE_PARAM_DEST_NAME, NULL) <= 0 &&
            virTypedParamsReplaceString(&params, &nparams,
                                        VIR_MIGRATE_PARAM_DEST_NAME,
                                        vm->def->name) < 0) {
            ddomain = NULL;
        } else {
            qemuDomainObjEnterRemote(vm);
            ddomain = dconn->driver->domainMigrateFinish3Params
                (dconn, params, nparams, cookiein, cookieinlen,
                 &cookieout, &cookieoutlen, destflags, cancelled);
            qemuDomainObjExitRemote(vm);
        }
    } else {
        dname = dname ? dname : vm->def->name;
        qemuDomainObjEnterRemote(vm);
        ddomain = dconn->driver->domainMigrateFinish3
            (dconn, dname, cookiein, cookieinlen, &cookieout, &cookieoutlen,
             dconnuri, uri, destflags, cancelled);
        qemuDomainObjExitRemote(vm);
    }
4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670

    if (cancelled) {
        if (ddomain) {
            VIR_ERROR(_("finish step ignored that migration was cancelled"));
        } else {
            /* If Finish reported a useful error, use it instead of the
             * original "migration unexpectedly failed" error.
             *
             * This is ugly but we can't do better with the APIs we have. We
             * only replace the error if Finish was called with cancelled == 1
             * and reported a real error (old libvirt would report an error
             * from RPC instead of MIGRATE_FINISH_OK), which only happens when
             * the domain died on destination. To further reduce a possibility
             * of false positives we also check that Perform returned
             * VIR_ERR_OPERATION_FAILED.
             */
            if (orig_err &&
                orig_err->domain == VIR_FROM_QEMU &&
                orig_err->code == VIR_ERR_OPERATION_FAILED) {
                virErrorPtr err = virGetLastError();
4671 4672
                if (err &&
                    err->domain == VIR_FROM_QEMU &&
4673 4674 4675 4676 4677 4678 4679
                    err->code != VIR_ERR_MIGRATE_FINISH_OK) {
                    virFreeError(orig_err);
                    orig_err = NULL;
                }
            }
        }
    }
4680

4681 4682 4683 4684 4685 4686 4687
    /* If ddomain is NULL, then we were unable to start
     * the guest on the target, and must restart on the
     * source. There is a small chance that the ddomain
     * is NULL due to an RPC failure, in which case
     * ddomain could in fact be running on the dest.
     * The lock manager plugins should take care of
     * safety in this scenario.
4688
     */
4689
    cancelled = ddomain == NULL;
4690

4691 4692 4693 4694 4695 4696
    /* If finish3 set an error, and we don't have an earlier
     * one we need to preserve it in case confirm3 overwrites
     */
    if (!orig_err)
        orig_err = virSaveLastError();

4697 4698 4699 4700
    /*
     * If cancelled, then src VM will be restarted, else
     * it will be killed
     */
4701
    VIR_DEBUG("Confirm3 %p cancelled=%d vm=%p", sconn, cancelled, vm);
4702 4703 4704 4705 4706
    VIR_FREE(cookiein);
    cookiein = cookieout;
    cookieinlen = cookieoutlen;
    cookieout = NULL;
    cookieoutlen = 0;
4707 4708 4709
    ret = qemuMigrationSrcConfirmPhase(driver, vm,
                                       cookiein, cookieinlen,
                                       flags, cancelled);
4710 4711 4712 4713
    /* If Confirm3 returns -1, there's nothing more we can
     * do, but fortunately worst case is that there is a
     * domain left in 'paused' state on source.
     */
4714 4715 4716
    if (ret < 0)
        VIR_WARN("Guest %s probably left in 'paused' state on source",
                 vm->def->name);
4717 4718 4719

 cleanup:
    if (ddomain) {
4720
        virObjectUnref(ddomain);
4721 4722 4723 4724 4725
        ret = 0;
    } else {
        ret = -1;
    }

4726
    virObjectUnref(st);
4727 4728 4729 4730 4731 4732 4733 4734

    if (orig_err) {
        virSetError(orig_err);
        virFreeError(orig_err);
    }
    VIR_FREE(uri_out);
    VIR_FREE(cookiein);
    VIR_FREE(cookieout);
4735
    virTypedParamsFree(params, nparams);
4736 4737 4738 4739
    return ret;
}


4740
static void
4741 4742 4743
qemuMigrationSrcConnectionClosed(virConnectPtr conn,
                                 int reason,
                                 void *opaque)
4744 4745 4746 4747 4748 4749 4750 4751
{
    virDomainObjPtr vm = opaque;

    VIR_DEBUG("conn=%p, reason=%d, vm=%s", conn, reason, vm->def->name);
    virDomainObjBroadcast(vm);
}


4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763
static int virConnectCredType[] = {
    VIR_CRED_AUTHNAME,
    VIR_CRED_PASSPHRASE,
};


static virConnectAuth virConnectAuthConfig = {
    .credtype = virConnectCredType,
    .ncredtype = ARRAY_CARDINALITY(virConnectCredType),
};


4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782
static int
qemuMigrationSrcPerformPeer2Peer(virQEMUDriverPtr driver,
                                 virConnectPtr sconn,
                                 virDomainObjPtr vm,
                                 const char *xmlin,
                                 const char *persist_xml,
                                 const char *dconnuri,
                                 const char *uri,
                                 const char *graphicsuri,
                                 const char *listenAddress,
                                 size_t nmigrate_disks,
                                 const char **migrate_disks,
                                 int nbdPort,
                                 qemuMigrationCompressionPtr compression,
                                 qemuMonitorMigrationParamsPtr migParams,
                                 unsigned long flags,
                                 const char *dname,
                                 unsigned long resource,
                                 bool *v3proto)
4783 4784 4785 4786
{
    int ret = -1;
    virConnectPtr dconn = NULL;
    bool p2p;
4787
    virErrorPtr orig_err = NULL;
4788
    bool offline = false;
4789
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4790
    bool useParams;
4791

4792 4793
    VIR_DEBUG("driver=%p, sconn=%p, vm=%p, xmlin=%s, dconnuri=%s, uri=%s, "
              "graphicsuri=%s, listenAddress=%s, nmigrate_disks=%zu, "
4794
              "migrate_disks=%p, nbdPort=%d, flags=0x%lx, dname=%s, "
4795
              "resource=%lu",
4796
              driver, sconn, vm, NULLSTR(xmlin), NULLSTR(dconnuri),
4797
              NULLSTR(uri), NULLSTR(graphicsuri), NULLSTR(listenAddress),
4798 4799
              nmigrate_disks, migrate_disks, nbdPort, flags, NULLSTR(dname),
              resource);
4800

4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814
    if (flags & VIR_MIGRATE_TUNNELLED && uri) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("migration URI is not supported by tunnelled "
                         "migration"));
        goto cleanup;
    }

    if (flags & VIR_MIGRATE_TUNNELLED && listenAddress) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("listen address is not supported by tunnelled "
                         "migration"));
        goto cleanup;
    }

4815 4816 4817 4818 4819 4820 4821
    if (flags & VIR_MIGRATE_TUNNELLED && nbdPort) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("disk port address is not supported by tunnelled "
                         "migration"));
        goto cleanup;
    }

4822 4823 4824 4825
    /* the order of operations is important here; we make sure the
     * destination side is completely setup before we touch the source
     */

4826
    qemuDomainObjEnterRemote(vm);
4827
    dconn = virConnectOpenAuth(dconnuri, &virConnectAuthConfig, 0);
4828
    qemuDomainObjExitRemote(vm);
4829
    if (dconn == NULL) {
4830
        virReportError(VIR_ERR_OPERATION_FAILED,
4831 4832
                       _("Failed to connect to remote libvirt URI %s: %s"),
                       dconnuri, virGetLastErrorMessage());
4833
        virObjectUnref(cfg);
4834 4835 4836
        return -1;
    }

4837 4838
    if (virConnectSetKeepAlive(dconn, cfg->keepAliveInterval,
                               cfg->keepAliveCount) < 0)
4839 4840
        goto cleanup;

4841
    if (virConnectRegisterCloseCallback(dconn, qemuMigrationSrcConnectionClosed,
4842 4843 4844 4845
                                        vm, NULL) < 0) {
        goto cleanup;
    }

4846
    qemuDomainObjEnterRemote(vm);
4847 4848
    p2p = VIR_DRV_SUPPORTS_FEATURE(dconn->driver, dconn,
                                   VIR_DRV_FEATURE_MIGRATION_P2P);
4849
        /* v3proto reflects whether the caller used Perform3, but with
4850
         * p2p migrate, regardless of whether Perform2 or Perform3
4851 4852 4853 4854
         * were used, we decide protocol based on what target supports
         */
    *v3proto = VIR_DRV_SUPPORTS_FEATURE(dconn->driver, dconn,
                                        VIR_DRV_FEATURE_MIGRATION_V3);
4855 4856
    useParams = VIR_DRV_SUPPORTS_FEATURE(dconn->driver, dconn,
                                         VIR_DRV_FEATURE_MIGRATION_PARAMS);
L
liguang 已提交
4857 4858 4859
    if (flags & VIR_MIGRATE_OFFLINE)
        offline = VIR_DRV_SUPPORTS_FEATURE(dconn->driver, dconn,
                                           VIR_DRV_FEATURE_MIGRATION_OFFLINE);
4860
    qemuDomainObjExitRemote(vm);
4861

4862
    if (!p2p) {
4863 4864
        virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                       _("Destination libvirt does not support peer-to-peer migration protocol"));
4865 4866 4867
        goto cleanup;
    }

4868 4869
    /* Only xmlin, dname, uri, and bandwidth parameters can be used with
     * old-style APIs. */
4870
    if (!useParams && (graphicsuri || listenAddress || nmigrate_disks)) {
4871 4872 4873 4874 4875 4876
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("Migration APIs with extensible parameters are not "
                         "supported but extended parameters were passed"));
        goto cleanup;
    }

L
liguang 已提交
4877 4878 4879 4880 4881 4882 4883
    if (flags & VIR_MIGRATE_OFFLINE && !offline) {
        virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                       _("offline migration is not supported by "
                         "the destination host"));
        goto cleanup;
    }

4884
    /* domain may have been stopped while we were talking to remote daemon */
L
liguang 已提交
4885
    if (!virDomainObjIsActive(vm) && !(flags & VIR_MIGRATE_OFFLINE)) {
4886 4887
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("guest unexpectedly quit"));
4888 4889 4890
        goto cleanup;
    }

4891 4892 4893 4894 4895 4896 4897
    /* Change protection is only required on the source side (us), and
     * only for v3 migration when begin and perform are separate jobs.
     * But peer-2-peer is already a single job, and we still want to
     * talk to older destinations that would reject the flag.
     * Therefore it is safe to clear the bit here.  */
    flags &= ~VIR_MIGRATE_CHANGE_PROTECTION;

4898
    if (*v3proto) {
4899 4900 4901 4902 4903
        ret = qemuMigrationSrcPerformPeer2Peer3(driver, sconn, dconn, dconnuri, vm, xmlin,
                                                persist_xml, dname, uri, graphicsuri,
                                                listenAddress, nmigrate_disks, migrate_disks,
                                                nbdPort, compression, migParams, resource,
                                                useParams, flags);
4904
    } else {
4905 4906
        ret = qemuMigrationSrcPerformPeer2Peer2(driver, sconn, dconn, vm,
                                                dconnuri, flags, dname, resource);
4907
    }
4908

4909
 cleanup:
4910
    orig_err = virSaveLastError();
4911
    qemuDomainObjEnterRemote(vm);
4912
    virConnectUnregisterCloseCallback(dconn, qemuMigrationSrcConnectionClosed);
4913
    virObjectUnref(dconn);
4914
    qemuDomainObjExitRemote(vm);
4915 4916 4917 4918
    if (orig_err) {
        virSetError(orig_err);
        virFreeError(orig_err);
    }
4919
    virObjectUnref(cfg);
4920 4921 4922 4923
    return ret;
}


4924 4925 4926 4927 4928 4929
/*
 * This implements perform part of the migration protocol when migration job
 * does not need to be active across several APIs, i.e., peer2peer migration or
 * perform phase of v2 non-peer2peer migration.
 */
static int
4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951
qemuMigrationSrcPerformJob(virQEMUDriverPtr driver,
                           virConnectPtr conn,
                           virDomainObjPtr vm,
                           const char *xmlin,
                           const char *persist_xml,
                           const char *dconnuri,
                           const char *uri,
                           const char *graphicsuri,
                           const char *listenAddress,
                           size_t nmigrate_disks,
                           const char **migrate_disks,
                           int nbdPort,
                           qemuMigrationCompressionPtr compression,
                           qemuMonitorMigrationParamsPtr migParams,
                           const char *cookiein,
                           int cookieinlen,
                           char **cookieout,
                           int *cookieoutlen,
                           unsigned long flags,
                           const char *dname,
                           unsigned long resource,
                           bool v3proto)
4952
{
4953
    virObjectEventPtr event = NULL;
4954
    int ret = -1;
4955
    virErrorPtr orig_err = NULL;
4956
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
4957

4958
    if (qemuMigrationJobStart(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
4959 4960
        goto cleanup;

L
liguang 已提交
4961
    if (!virDomainObjIsActive(vm) && !(flags & VIR_MIGRATE_OFFLINE)) {
4962 4963
        virReportError(VIR_ERR_OPERATION_INVALID,
                       "%s", _("domain is not running"));
4964 4965 4966
        goto endjob;
    }

4967
    if (!qemuMigrationSrcIsAllowed(driver, vm, true, flags))
4968
        goto endjob;
4969

4970
    if (!(flags & (VIR_MIGRATE_UNSAFE | VIR_MIGRATE_OFFLINE)) &&
4971
        !qemuMigrationSrcIsSafe(vm->def, nmigrate_disks, migrate_disks, flags))
4972
        goto endjob;
4973

4974
    qemuMigrationSrcStoreDomainState(vm);
4975 4976

    if ((flags & (VIR_MIGRATE_TUNNELLED | VIR_MIGRATE_PEER2PEER))) {
4977 4978 4979 4980 4981
        ret = qemuMigrationSrcPerformPeer2Peer(driver, conn, vm, xmlin, persist_xml,
                                               dconnuri, uri, graphicsuri, listenAddress,
                                               nmigrate_disks, migrate_disks, nbdPort,
                                               compression, migParams, flags, dname, resource,
                                               &v3proto);
4982
    } else {
4983
        qemuMigrationJobSetPhase(driver, vm, QEMU_MIGRATION_PHASE_PERFORM2);
4984 4985 4986 4987
        ret = qemuMigrationSrcPerformNative(driver, vm, persist_xml, uri, cookiein, cookieinlen,
                                            cookieout, cookieoutlen,
                                            flags, resource, NULL, NULL, 0, NULL,
                                            compression, migParams);
4988
    }
4989 4990
    if (ret < 0)
        goto endjob;
4991

4992 4993 4994 4995
    /*
     * In v3 protocol, the source VM is not killed off until the
     * confirm step.
     */
4996
    if (!v3proto) {
4997
        qemuProcessStop(driver, vm, VIR_DOMAIN_SHUTOFF_MIGRATED,
4998
                        QEMU_ASYNC_JOB_MIGRATION_OUT,
4999
                        VIR_QEMU_PROCESS_STOP_MIGRATED);
5000
        virDomainAuditStop(vm, "migrated");
5001
        event = virDomainEventLifecycleNewFromObj(vm,
5002 5003
                                         VIR_DOMAIN_EVENT_STOPPED,
                                         VIR_DOMAIN_EVENT_STOPPED_MIGRATED);
5004 5005
    }

5006
 endjob:
5007 5008 5009
    if (ret < 0)
        orig_err = virSaveLastError();

5010 5011 5012 5013
    /* v2 proto has no confirm phase so we need to reset migration parameters
     * here
     */
    if (!v3proto && ret < 0)
5014
        qemuMigrationParamsReset(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT);
5015

5016
    if (qemuMigrationSrcRestoreDomainState(driver, vm)) {
5017
        event = virDomainEventLifecycleNewFromObj(vm,
5018 5019 5020
                                         VIR_DOMAIN_EVENT_RESUMED,
                                         VIR_DOMAIN_EVENT_RESUMED_MIGRATED);
    }
5021

5022
    qemuMigrationJobFinish(driver, vm);
5023
    if (!virDomainObjIsActive(vm) && ret == 0) {
5024
        if (flags & VIR_MIGRATE_UNDEFINE_SOURCE) {
5025
            virDomainDeleteConfig(cfg->configDir, cfg->autostartDir, vm);
5026 5027
            vm->persistent = 0;
        }
5028
        qemuDomainRemoveInactiveJob(driver, vm);
5029 5030
    }

5031 5032 5033 5034 5035
    if (orig_err) {
        virSetError(orig_err);
        virFreeError(orig_err);
    }

5036
 cleanup:
M
Michal Privoznik 已提交
5037
    virDomainObjEndAPI(&vm);
5038
    qemuDomainEventQueue(driver, event);
5039
    virObjectUnref(cfg);
5040 5041 5042 5043 5044 5045 5046
    return ret;
}

/*
 * This implements perform phase of v3 migration protocol.
 */
static int
5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062
qemuMigrationSrcPerformPhase(virQEMUDriverPtr driver,
                             virConnectPtr conn,
                             virDomainObjPtr vm,
                             const char *persist_xml,
                             const char *uri,
                             const char *graphicsuri,
                             size_t nmigrate_disks,
                             const char **migrate_disks,
                             qemuMigrationCompressionPtr compression,
                             qemuMonitorMigrationParamsPtr migParams,
                             const char *cookiein,
                             int cookieinlen,
                             char **cookieout,
                             int *cookieoutlen,
                             unsigned long flags,
                             unsigned long resource)
5063
{
5064
    virObjectEventPtr event = NULL;
5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075
    int ret = -1;

    /* If we didn't start the job in the begin phase, start it now. */
    if (!(flags & VIR_MIGRATE_CHANGE_PROTECTION)) {
        if (qemuMigrationJobStart(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
            goto cleanup;
    } else if (!qemuMigrationJobIsActive(vm, QEMU_ASYNC_JOB_MIGRATION_OUT)) {
        goto cleanup;
    }

    qemuMigrationJobStartPhase(driver, vm, QEMU_MIGRATION_PHASE_PERFORM3);
5076
    virCloseCallbacksUnset(driver->closeCallbacks, vm,
5077
                           qemuMigrationSrcCleanup);
5078

5079 5080 5081 5082
    ret = qemuMigrationSrcPerformNative(driver, vm, persist_xml, uri, cookiein, cookieinlen,
                                        cookieout, cookieoutlen,
                                        flags, resource, NULL, graphicsuri,
                                        nmigrate_disks, migrate_disks, compression, migParams);
5083

5084
    if (ret < 0) {
5085
        if (qemuMigrationSrcRestoreDomainState(driver, vm)) {
5086 5087 5088
            event = virDomainEventLifecycleNewFromObj(vm,
                                                      VIR_DOMAIN_EVENT_RESUMED,
                                                      VIR_DOMAIN_EVENT_RESUMED_MIGRATED);
5089
        }
5090
        goto endjob;
5091
    }
5092 5093 5094

    qemuMigrationJobSetPhase(driver, vm, QEMU_MIGRATION_PHASE_PERFORM3_DONE);

5095
    if (virCloseCallbacksSet(driver->closeCallbacks, vm, conn,
5096
                             qemuMigrationSrcCleanup) < 0)
5097 5098
        goto endjob;

5099
 endjob:
5100
    if (ret < 0) {
5101
        qemuMigrationParamsReset(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT);
5102
        qemuMigrationJobFinish(driver, vm);
5103
    } else {
5104
        qemuMigrationJobContinue(vm);
5105 5106
    }

5107
    if (!virDomainObjIsActive(vm))
5108
        qemuDomainRemoveInactiveJob(driver, vm);
5109

5110
 cleanup:
M
Michal Privoznik 已提交
5111
    virDomainObjEndAPI(&vm);
5112
    qemuDomainEventQueue(driver, event);
5113 5114 5115
    return ret;
}

5116
int
5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138
qemuMigrationSrcPerform(virQEMUDriverPtr driver,
                        virConnectPtr conn,
                        virDomainObjPtr vm,
                        const char *xmlin,
                        const char *persist_xml,
                        const char *dconnuri,
                        const char *uri,
                        const char *graphicsuri,
                        const char *listenAddress,
                        size_t nmigrate_disks,
                        const char **migrate_disks,
                        int nbdPort,
                        qemuMigrationCompressionPtr compression,
                        qemuMonitorMigrationParamsPtr migParams,
                        const char *cookiein,
                        int cookieinlen,
                        char **cookieout,
                        int *cookieoutlen,
                        unsigned long flags,
                        const char *dname,
                        unsigned long resource,
                        bool v3proto)
5139 5140
{
    VIR_DEBUG("driver=%p, conn=%p, vm=%p, xmlin=%s, dconnuri=%s, "
5141
              "uri=%s, graphicsuri=%s, listenAddress=%s, "
5142
              "nmigrate_disks=%zu, migrate_disks=%p, nbdPort=%d, "
5143
              "cookiein=%s, cookieinlen=%d, cookieout=%p, cookieoutlen=%p, "
5144
              "flags=0x%lx, dname=%s, resource=%lu, v3proto=%d",
5145
              driver, conn, vm, NULLSTR(xmlin), NULLSTR(dconnuri),
5146
              NULLSTR(uri), NULLSTR(graphicsuri), NULLSTR(listenAddress),
5147 5148 5149
              nmigrate_disks, migrate_disks, nbdPort,
              NULLSTR(cookiein), cookieinlen, cookieout, cookieoutlen,
              flags, NULLSTR(dname), resource, v3proto);
5150 5151 5152

    if ((flags & (VIR_MIGRATE_TUNNELLED | VIR_MIGRATE_PEER2PEER))) {
        if (cookieinlen) {
5153 5154
            virReportError(VIR_ERR_OPERATION_INVALID,
                           "%s", _("received unexpected cookie with P2P migration"));
5155 5156 5157
            return -1;
        }

5158 5159 5160 5161 5162 5163 5164
        return qemuMigrationSrcPerformJob(driver, conn, vm, xmlin, persist_xml, dconnuri, uri,
                                          graphicsuri, listenAddress,
                                          nmigrate_disks, migrate_disks, nbdPort,
                                          compression, migParams,
                                          cookiein, cookieinlen,
                                          cookieout, cookieoutlen,
                                          flags, dname, resource, v3proto);
5165 5166
    } else {
        if (dconnuri) {
5167 5168
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Unexpected dconnuri parameter with non-peer2peer migration"));
5169 5170 5171 5172
            return -1;
        }

        if (v3proto) {
5173 5174 5175 5176 5177 5178 5179
            return qemuMigrationSrcPerformPhase(driver, conn, vm, persist_xml, uri,
                                                graphicsuri,
                                                nmigrate_disks, migrate_disks,
                                                compression, migParams,
                                                cookiein, cookieinlen,
                                                cookieout, cookieoutlen,
                                                flags, resource);
5180
        } else {
5181 5182 5183 5184 5185 5186 5187
            return qemuMigrationSrcPerformJob(driver, conn, vm, xmlin, persist_xml, NULL,
                                              uri, graphicsuri, listenAddress,
                                              nmigrate_disks, migrate_disks, nbdPort,
                                              compression, migParams,
                                              cookiein, cookieinlen,
                                              cookieout, cookieoutlen, flags,
                                              dname, resource, v3proto);
5188 5189 5190
        }
    }
}
5191

5192
static int
5193
qemuMigrationDstVPAssociatePortProfiles(virDomainDefPtr def)
5194
{
5195
    size_t i;
5196 5197 5198 5199 5200
    int last_good_net = -1;
    virDomainNetDefPtr net;

    for (i = 0; i < def->nnets; i++) {
        net = def->nets[i];
5201
        if (virDomainNetGetActualType(net) == VIR_DOMAIN_NET_TYPE_DIRECT) {
5202
            if (virNetDevVPortProfileAssociate(net->ifname,
5203
                                               virDomainNetGetActualVirtPortProfile(net),
5204
                                               &net->mac,
5205
                                               virDomainNetGetActualDirectDev(net),
5206
                                               -1,
5207
                                               def->uuid,
5208 5209
                                               VIR_NETDEV_VPORT_PROFILE_OP_MIGRATE_IN_FINISH,
                                               false) < 0) {
5210 5211 5212
                virReportError(VIR_ERR_OPERATION_FAILED,
                               _("Port profile Associate failed for %s"),
                               net->ifname);
5213
                goto err_exit;
5214
            }
5215
            last_good_net = i;
5216
            VIR_DEBUG("Port profile Associate succeeded for %s", net->ifname);
5217

5218
            if (virNetDevMacVLanVPortProfileRegisterCallback(net->ifname, &net->mac,
5219 5220 5221 5222
                                                             virDomainNetGetActualDirectDev(net), def->uuid,
                                                             virDomainNetGetActualVirtPortProfile(net),
                                                             VIR_NETDEV_VPORT_PROFILE_OP_CREATE))
                goto err_exit;
5223 5224 5225
        }
    }

5226
    return 0;
5227

5228
 err_exit:
5229
    for (i = 0; last_good_net != -1 && i <= last_good_net; i++) {
5230
        net = def->nets[i];
5231
        if (virDomainNetGetActualType(net) == VIR_DOMAIN_NET_TYPE_DIRECT) {
5232
            ignore_value(virNetDevVPortProfileDisassociate(net->ifname,
5233
                                                           virDomainNetGetActualVirtPortProfile(net),
5234
                                                           &net->mac,
5235
                                                           virDomainNetGetActualDirectDev(net),
5236
                                                           -1,
5237
                                                           VIR_NETDEV_VPORT_PROFILE_OP_MIGRATE_IN_FINISH));
5238 5239
        }
    }
5240
    return -1;
5241 5242 5243
}


J
Jiri Denemark 已提交
5244
static int
5245 5246 5247 5248
qemuMigrationDstPersist(virQEMUDriverPtr driver,
                        virDomainObjPtr vm,
                        qemuMigrationCookiePtr mig,
                        bool ignoreSaveError)
J
Jiri Denemark 已提交
5249 5250 5251 5252
{
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    virCapsPtr caps = NULL;
    virDomainDefPtr vmdef;
5253 5254
    virDomainDefPtr oldDef = NULL;
    unsigned int oldPersist = vm->persistent;
J
Jiri Denemark 已提交
5255 5256 5257 5258 5259 5260 5261
    virObjectEventPtr event;
    int ret = -1;

    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

    vm->persistent = 1;
5262 5263
    oldDef = vm->newDef;
    vm->newDef = qemuMigrationCookieGetPersistent(mig);
J
Jiri Denemark 已提交
5264

5265 5266
    if (!(vmdef = virDomainObjGetPersistentDef(caps, driver->xmlopt, vm)))
        goto error;
J
Jiri Denemark 已提交
5267

5268 5269
    if (virDomainSaveConfig(cfg->configDir, driver->caps, vmdef) < 0 &&
        !ignoreSaveError)
5270
        goto error;
J
Jiri Denemark 已提交
5271 5272 5273

    event = virDomainEventLifecycleNewFromObj(vm,
                                              VIR_DOMAIN_EVENT_DEFINED,
5274 5275 5276
                                              oldPersist ?
                                              VIR_DOMAIN_EVENT_DEFINED_UPDATED :
                                              VIR_DOMAIN_EVENT_DEFINED_ADDED);
5277
    qemuDomainEventQueue(driver, event);
J
Jiri Denemark 已提交
5278 5279 5280 5281

    ret = 0;

 cleanup:
5282
    virDomainDefFree(oldDef);
J
Jiri Denemark 已提交
5283 5284 5285
    virObjectUnref(caps);
    virObjectUnref(cfg);
    return ret;
5286 5287 5288 5289 5290 5291 5292

 error:
    virDomainDefFree(vm->newDef);
    vm->persistent = oldPersist;
    vm->newDef = oldDef;
    oldDef = NULL;
    goto cleanup;
J
Jiri Denemark 已提交
5293 5294 5295
}


5296
virDomainPtr
5297 5298 5299 5300 5301 5302 5303 5304 5305 5306
qemuMigrationDstFinish(virQEMUDriverPtr driver,
                       virConnectPtr dconn,
                       virDomainObjPtr vm,
                       const char *cookiein,
                       int cookieinlen,
                       char **cookieout,
                       int *cookieoutlen,
                       unsigned long flags,
                       int retcode,
                       bool v3proto)
5307 5308
{
    virDomainPtr dom = NULL;
5309
    qemuMigrationCookiePtr mig = NULL;
5310
    virErrorPtr orig_err = NULL;
5311
    int cookie_flags = 0;
J
Jiri Denemark 已提交
5312
    qemuDomainObjPrivatePtr priv = vm->privateData;
5313
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
5314
    unsigned short port;
5315 5316
    unsigned long long timeReceived = 0;
    virObjectEventPtr event;
5317
    qemuDomainJobInfoPtr jobInfo = NULL;
5318
    bool inPostCopy = false;
5319
    bool doKill = true;
5320

5321
    VIR_DEBUG("driver=%p, dconn=%p, vm=%p, cookiein=%s, cookieinlen=%d, "
5322
              "cookieout=%p, cookieoutlen=%p, flags=0x%lx, retcode=%d",
5323 5324
              driver, dconn, vm, NULLSTR(cookiein), cookieinlen,
              cookieout, cookieoutlen, flags, retcode);
5325

5326 5327 5328
    port = priv->migrationPort;
    priv->migrationPort = 0;

5329
    if (!qemuMigrationJobIsActive(vm, QEMU_ASYNC_JOB_MIGRATION_IN)) {
5330
        qemuMigrationDstErrorReport(driver, vm->def->name);
5331
        goto cleanup;
5332
    }
5333

5334 5335
    ignore_value(virTimeMillisNow(&timeReceived));

5336 5337 5338
    qemuMigrationJobStartPhase(driver, vm,
                               v3proto ? QEMU_MIGRATION_PHASE_FINISH3
                                       : QEMU_MIGRATION_PHASE_FINISH2);
5339

5340
    qemuDomainCleanupRemove(vm, qemuMigrationDstPrepareCleanup);
5341
    VIR_FREE(priv->job.completed);
5342

5343
    cookie_flags = QEMU_MIGRATION_COOKIE_NETWORK |
5344 5345
                   QEMU_MIGRATION_COOKIE_STATS |
                   QEMU_MIGRATION_COOKIE_NBD;
5346 5347 5348
    /* Some older versions of libvirt always send persistent XML in the cookie
     * even though VIR_MIGRATE_PERSIST_DEST was not used. */
    cookie_flags |= QEMU_MIGRATION_COOKIE_PERSISTENT;
5349 5350 5351

    if (!(mig = qemuMigrationEatCookie(driver, vm, cookiein,
                                       cookieinlen, cookie_flags)))
5352
        goto endjob;
5353

5354
    if (flags & VIR_MIGRATE_OFFLINE) {
5355
        if (retcode == 0 &&
5356
            qemuMigrationDstPersist(driver, vm, mig, false) == 0)
5357
            dom = virGetDomain(dconn, vm->def->name, vm->def->uuid, -1);
5358 5359
        goto endjob;
    }
5360

5361 5362 5363 5364
    if (retcode != 0) {
        /* Check for a possible error on the monitor in case Finish was called
         * earlier than monitor EOF handler got a chance to process the error
         */
5365
        qemuDomainCheckMonitor(driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN);
5366 5367
        goto endjob;
    }
5368

5369 5370 5371
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("guest unexpectedly quit"));
5372
        qemuMigrationDstErrorReport(driver, vm->def->name);
5373 5374
        goto endjob;
    }
5375

5376
    if (qemuMigrationDstVPAssociatePortProfiles(vm->def) < 0)
5377
        goto endjob;
5378

5379
    if (mig->network && qemuMigrationDstOPDRelocate(driver, vm, mig) < 0)
5380
        VIR_WARN("unable to provide network data for relocation");
5381

5382
    if (qemuMigrationDstStopNBDServer(driver, vm, mig) < 0)
5383
        goto endjob;
5384

5385 5386
    if (qemuRefreshVirtioChannelState(driver, vm,
                                      QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
5387 5388
        goto endjob;

5389 5390
    if (qemuConnectAgent(driver, vm) < 0)
        goto endjob;
5391

5392
    if (flags & VIR_MIGRATE_PERSIST_DEST) {
5393
        if (qemuMigrationDstPersist(driver, vm, mig, !v3proto) < 0) {
5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404
            /* Hmpf.  Migration was successful, but making it persistent
             * was not.  If we report successful, then when this domain
             * shuts down, management tools are in for a surprise.  On the
             * other hand, if we report failure, then the management tools
             * might try to restart the domain on the source side, even
             * though the domain is actually running on the destination.
             * Pretend success and hope that this is a rare situation and
             * management tools are smart.
             *
             * However, in v3 protocol, the source VM is still available
             * to restart during confirm() step, so we kill it off now.
5405 5406 5407
             */
            if (v3proto)
                goto endjob;
5408
        }
5409
    }
5410

5411 5412 5413
    /* We need to wait for QEMU to process all data sent by the source
     * before starting guest CPUs.
     */
5414 5415 5416
    if (qemuMigrationDstWaitForCompletion(driver, vm,
                                          QEMU_ASYNC_JOB_MIGRATION_IN,
                                          !!(flags & VIR_MIGRATE_POSTCOPY)) < 0) {
5417 5418 5419 5420 5421 5422
        /* There's not much we can do for v2 protocol since the
         * original domain on the source host is already gone.
         */
        if (v3proto)
            goto endjob;
    }
5423

5424 5425 5426 5427 5428 5429 5430 5431 5432
    /* Now that the state data was transferred we can refresh the actual state
     * of the devices */
    if (qemuProcessRefreshState(driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN) < 0) {
        /* Similarly to the case above v2 protocol will not be able to recover
         * from this. Let's ignore this and perhaps stuff will not break. */
        if (v3proto)
            goto endjob;
    }

5433
    if (priv->job.current->status == QEMU_DOMAIN_JOB_STATUS_POSTCOPY)
5434 5435
        inPostCopy = true;

5436 5437 5438 5439 5440
    if (!(flags & VIR_MIGRATE_PAUSED)) {
        /* run 'cont' on the destination, which allows migration on qemu
         * >= 0.10.6 to work properly.  This isn't strictly necessary on
         * older qemu's, but it also doesn't hurt anything there
         */
5441
        if (qemuProcessStartCPUs(driver, vm,
5442 5443
                                 inPostCopy ? VIR_DOMAIN_RUNNING_POSTCOPY
                                            : VIR_DOMAIN_RUNNING_MIGRATED,
5444 5445 5446 5447 5448 5449 5450 5451
                                 QEMU_ASYNC_JOB_MIGRATION_IN) < 0) {
            if (virGetLastError() == NULL)
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               "%s", _("resume operation failed"));
            /* Need to save the current error, in case shutting
             * down the process overwrites it
             */
            orig_err = virSaveLastError();
5452

5453 5454 5455 5456 5457 5458 5459 5460 5461 5462
            /*
             * In v3 protocol, the source VM is still available to
             * restart during confirm() step, so we kill it off
             * now.
             * In v2 protocol, the source is dead, so we leave
             * target in paused state, in case admin can fix
             * things up.
             */
            if (v3proto)
                goto endjob;
5463
        }
5464 5465

        if (inPostCopy) {
5466
            doKill = false;
5467 5468 5469 5470 5471
            event = virDomainEventLifecycleNewFromObj(vm,
                                        VIR_DOMAIN_EVENT_RESUMED,
                                        VIR_DOMAIN_EVENT_RESUMED_POSTCOPY);
            qemuDomainEventQueue(driver, event);
        }
5472
    }
5473

5474
    if (mig->jobInfo) {
5475
        jobInfo = mig->jobInfo;
5476 5477 5478 5479 5480 5481
        mig->jobInfo = NULL;

        if (jobInfo->sent && timeReceived) {
            jobInfo->timeDelta = timeReceived - jobInfo->sent;
            jobInfo->received = timeReceived;
            jobInfo->timeDeltaSet = true;
5482
        }
5483 5484
        qemuDomainJobInfoUpdateTime(jobInfo);
        qemuDomainJobInfoUpdateDowntime(jobInfo);
5485
    }
L
liguang 已提交
5486

5487
    if (inPostCopy) {
5488 5489 5490
        if (qemuMigrationDstWaitForCompletion(driver, vm,
                                              QEMU_ASYNC_JOB_MIGRATION_IN,
                                              false) < 0) {
5491 5492 5493 5494 5495 5496 5497 5498 5499
            goto endjob;
        }
        if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_RUNNING) {
            virDomainObjSetState(vm,
                                 VIR_DOMAIN_RUNNING,
                                 VIR_DOMAIN_RUNNING_MIGRATED);
        }
    }

5500
    dom = virGetDomain(dconn, vm->def->name, vm->def->uuid, vm->def->id);
5501

5502 5503 5504 5505
    event = virDomainEventLifecycleNewFromObj(vm,
                                              VIR_DOMAIN_EVENT_RESUMED,
                                              VIR_DOMAIN_EVENT_RESUMED_MIGRATED);
    qemuDomainEventQueue(driver, event);
5506

5507 5508 5509 5510 5511 5512
    if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED) {
        virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
        event = virDomainEventLifecycleNewFromObj(vm,
                                                  VIR_DOMAIN_EVENT_SUSPENDED,
                                                  VIR_DOMAIN_EVENT_SUSPENDED_PAUSED);
        qemuDomainEventQueue(driver, event);
5513
    }
5514

5515
    if (virDomainObjIsActive(vm) &&
5516
        virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm, driver->caps) < 0)
5517 5518 5519 5520 5521
        VIR_WARN("Failed to save status on vm %s", vm->def->name);

    /* Guest is successfully running, so cancel previous auto destroy */
    qemuProcessAutoDestroyRemove(driver, vm);

5522
 endjob:
5523
    if (!dom &&
5524 5525
        !(flags & VIR_MIGRATE_OFFLINE) &&
        virDomainObjIsActive(vm)) {
5526
        if (doKill) {
5527 5528 5529 5530 5531 5532 5533 5534 5535
            qemuProcessStop(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED,
                            QEMU_ASYNC_JOB_MIGRATION_IN,
                            VIR_QEMU_PROCESS_STOP_MIGRATED);
            virDomainAuditStop(vm, "failed");
            event = virDomainEventLifecycleNewFromObj(vm,
                                VIR_DOMAIN_EVENT_STOPPED,
                                VIR_DOMAIN_EVENT_STOPPED_FAILED);
            qemuDomainEventQueue(driver, event);
        } else {
5536
            qemuMigrationAnyPostcopyFailed(driver, vm);
5537
        }
5538 5539
    }

5540
    if (dom) {
5541 5542 5543 5544
        if (jobInfo) {
            VIR_STEAL_PTR(priv->job.completed, jobInfo);
            priv->job.completed->status = QEMU_DOMAIN_JOB_STATUS_COMPLETED;
        }
5545

5546 5547 5548
        if (qemuMigrationBakeCookie(mig, driver, vm, cookieout, cookieoutlen,
                                    QEMU_MIGRATION_COOKIE_STATS) < 0)
            VIR_WARN("Unable to encode migration cookie");
5549 5550 5551 5552 5553 5554

        /* Remove completed stats for post-copy, everything but timing fields
         * is obsolete anyway.
         */
        if (inPostCopy)
            VIR_FREE(priv->job.completed);
5555
    }
5556

5557
    qemuMigrationParamsReset(driver, vm, QEMU_ASYNC_JOB_MIGRATION_IN);
5558

5559
    qemuMigrationJobFinish(driver, vm);
5560
    if (!virDomainObjIsActive(vm))
5561
        qemuDomainRemoveInactiveJob(driver, vm);
5562

5563
 cleanup:
5564
    VIR_FREE(jobInfo);
5565
    virPortAllocatorRelease(port);
5566
    if (priv->mon)
5567
        qemuMonitorSetDomainLog(priv->mon, NULL, NULL, NULL);
5568
    VIR_FREE(priv->origname);
M
Michal Privoznik 已提交
5569
    virDomainObjEndAPI(&vm);
5570
    qemuMigrationCookieFree(mig);
5571 5572 5573 5574
    if (orig_err) {
        virSetError(orig_err);
        virFreeError(orig_err);
    }
5575
    virObjectUnref(cfg);
5576 5577 5578 5579 5580 5581

    /* Set a special error if Finish is expected to return NULL as a result of
     * successful call with retcode != 0
     */
    if (retcode != 0 && !dom && !virGetLastError())
        virReportError(VIR_ERR_MIGRATE_FINISH_OK, NULL);
5582 5583
    return dom;
}
5584

5585

5586
/* Helper function called while vm is active.  */
5587
int
5588 5589 5590 5591
qemuMigrationSrcToFile(virQEMUDriverPtr driver, virDomainObjPtr vm,
                       int fd,
                       const char *compressor,
                       qemuDomainAsyncJob asyncJob)
5592 5593 5594
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int rc;
5595
    int ret = -1;
5596 5597
    virCommandPtr cmd = NULL;
    int pipeFD[2] = { -1, -1 };
5598
    unsigned long saveMigBandwidth = priv->migMaxBandwidth;
5599
    char *errbuf = NULL;
5600
    virErrorPtr orig_err = NULL;
5601 5602 5603 5604 5605

    /* Increase migration bandwidth to unlimited since target is a file.
     * Failure to change migration speed is not fatal. */
    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) == 0) {
        qemuMonitorSetMigrationSpeed(priv->mon,
5606 5607
                                     QEMU_DOMAIN_MIG_BANDWIDTH_MAX);
        priv->migMaxBandwidth = QEMU_DOMAIN_MIG_BANDWIDTH_MAX;
5608 5609
        if (qemuDomainObjExitMonitor(driver, vm) < 0)
            return -1;
5610
    }
5611

5612 5613 5614 5615 5616 5617 5618
    if (!virDomainObjIsActive(vm)) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("guest unexpectedly quit"));
        /* nothing to tear down */
        return -1;
    }

5619 5620 5621 5622
    if (compressor && pipe(pipeFD) < 0) {
        virReportSystemError(errno, "%s",
                             _("Failed to create pipe for migration"));
        return -1;
5623 5624
    }

5625 5626 5627 5628
    /* All right! We can use fd migration, which means that qemu
     * doesn't have to open() the file, so while we still have to
     * grant SELinux access, we can do it on fd and avoid cleanup
     * later, as well as skip futzing with cgroup.  */
5629 5630
    if (qemuSecuritySetImageFDLabel(driver->securityManager, vm->def,
                                    compressor ? pipeFD[1] : fd) < 0)
5631 5632
        goto cleanup;

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

5636
    if (!compressor) {
5637 5638 5639
        rc = qemuMonitorMigrateToFd(priv->mon,
                                    QEMU_MONITOR_MIGRATE_BACKGROUND,
                                    fd);
5640 5641 5642 5643 5644 5645 5646
    } else {
        const char *prog = compressor;
        const char *args[] = {
            prog,
            "-c",
            NULL
        };
5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657

        cmd = virCommandNewArgs(args);
        virCommandSetInputFD(cmd, pipeFD[0]);
        virCommandSetOutputFD(cmd, &fd);
        virCommandSetErrorBuffer(cmd, &errbuf);
        virCommandDoAsyncIO(cmd);
        if (virSetCloseExec(pipeFD[1]) < 0) {
            virReportSystemError(errno, "%s",
                                 _("Unable to set cloexec flag"));
            ignore_value(qemuDomainObjExitMonitor(driver, vm));
            goto cleanup;
5658
        }
5659 5660 5661 5662 5663 5664 5665 5666 5667 5668
        if (virCommandRunAsync(cmd, NULL) < 0) {
            ignore_value(qemuDomainObjExitMonitor(driver, vm));
            goto cleanup;
        }
        rc = qemuMonitorMigrateToFd(priv->mon,
                                    QEMU_MONITOR_MIGRATE_BACKGROUND,
                                    pipeFD[1]);
        if (VIR_CLOSE(pipeFD[0]) < 0 ||
            VIR_CLOSE(pipeFD[1]) < 0)
            VIR_WARN("failed to close intermediate pipe");
5669
    }
5670
    if (qemuDomainObjExitMonitor(driver, vm) < 0)
5671
        goto cleanup;
5672 5673 5674
    if (rc < 0)
        goto cleanup;

5675
    rc = qemuMigrationSrcWaitForCompletion(driver, vm, asyncJob, NULL, 0);
5676

5677 5678 5679 5680
    if (rc < 0) {
        if (rc == -2) {
            orig_err = virSaveLastError();
            virCommandAbort(cmd);
5681 5682
            if (virDomainObjIsActive(vm) &&
                qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) == 0) {
5683
                qemuMonitorMigrateCancel(priv->mon);
5684
                ignore_value(qemuDomainObjExitMonitor(driver, vm));
5685 5686
            }
        }
5687
        goto cleanup;
5688
    }
5689

5690 5691 5692
    if (cmd && virCommandWait(cmd, NULL) < 0)
        goto cleanup;

5693
    qemuDomainEventEmitJobCompleted(driver, vm);
5694 5695
    ret = 0;

5696
 cleanup:
5697 5698 5699
    if (ret < 0 && !orig_err)
        orig_err = virSaveLastError();

5700
    /* Restore max migration bandwidth */
5701 5702
    if (virDomainObjIsActive(vm) &&
        qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) == 0) {
5703 5704
        qemuMonitorSetMigrationSpeed(priv->mon, saveMigBandwidth);
        priv->migMaxBandwidth = saveMigBandwidth;
5705
        ignore_value(qemuDomainObjExitMonitor(driver, vm));
5706 5707
    }

5708 5709
    VIR_FORCE_CLOSE(pipeFD[0]);
    VIR_FORCE_CLOSE(pipeFD[1]);
5710 5711 5712 5713 5714
    if (cmd) {
        VIR_DEBUG("Compression binary stderr: %s", NULLSTR(errbuf));
        VIR_FREE(errbuf);
        virCommandFree(cmd);
    }
5715 5716 5717 5718 5719 5720

    if (orig_err) {
        virSetError(orig_err);
        virFreeError(orig_err);
    }

5721 5722
    return ret;
}
5723

5724 5725

int
5726 5727
qemuMigrationSrcCancel(virQEMUDriverPtr driver,
                       virDomainObjPtr vm)
5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virHashTablePtr blockJobs = NULL;
    bool storage = false;
    size_t i;
    int ret = -1;

    VIR_DEBUG("Canceling unfinished outgoing migration of domain %s",
              vm->def->name);

    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];
        if (QEMU_DOMAIN_DISK_PRIVATE(disk)->migrating) {
            qemuBlockJobSyncBegin(disk);
            storage = true;
        }
    }

    qemuDomainObjEnterMonitor(driver, vm);

    ignore_value(qemuMonitorMigrateCancel(priv->mon));
    if (storage)
        blockJobs = qemuMonitorGetAllBlockJobInfo(priv->mon);

    if (qemuDomainObjExitMonitor(driver, vm) < 0 || (storage && !blockJobs))
        goto endsyncjob;

    if (!storage) {
        ret = 0;
        goto cleanup;
    }

    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];
        qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);

        if (!diskPriv->migrating)
            continue;

        if (virHashLookup(blockJobs, disk->info.alias)) {
            VIR_DEBUG("Drive mirror on disk %s is still running", disk->dst);
        } else {
            VIR_DEBUG("Drive mirror on disk %s is gone", disk->dst);
5771
            qemuBlockJobSyncEnd(driver, vm, QEMU_ASYNC_JOB_NONE, disk);
5772 5773 5774 5775
            diskPriv->migrating = false;
        }
    }

5776 5777
    if (qemuMigrationSrcCancelDriveMirror(driver, vm, false,
                                          QEMU_ASYNC_JOB_NONE, NULL) < 0)
5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792
        goto endsyncjob;

    ret = 0;

 cleanup:
    virHashFree(blockJobs);
    return ret;

 endsyncjob:
    if (storage) {
        for (i = 0; i < vm->def->ndisks; i++) {
            virDomainDiskDefPtr disk = vm->def->disks[i];
            qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);

            if (diskPriv->migrating) {
5793
                qemuBlockJobSyncEnd(driver, vm, QEMU_ASYNC_JOB_NONE, disk);
5794 5795 5796 5797 5798 5799 5800 5801
                diskPriv->migrating = false;
            }
        }
    }
    goto cleanup;
}


5802
static int
5803
qemuMigrationJobStart(virQEMUDriverPtr driver,
5804
                      virDomainObjPtr vm,
5805
                      qemuDomainAsyncJob job)
5806
{
5807
    qemuDomainObjPrivatePtr priv = vm->privateData;
5808 5809
    virDomainJobOperation op;
    unsigned long long mask;
5810

5811
    if (job == QEMU_ASYNC_JOB_MIGRATION_IN) {
5812 5813
        op = VIR_DOMAIN_JOB_OPERATION_MIGRATION_IN;
        mask = QEMU_JOB_NONE;
5814
    } else {
5815 5816 5817 5818
        op = VIR_DOMAIN_JOB_OPERATION_MIGRATION_OUT;
        mask = QEMU_JOB_DEFAULT_MASK |
               JOB_MASK(QEMU_JOB_SUSPEND) |
               JOB_MASK(QEMU_JOB_MIGRATION_OP);
5819
    }
5820

5821 5822 5823
    if (qemuDomainObjBeginAsyncJob(driver, vm, job, op) < 0)
        return -1;

5824 5825
    priv->job.current->statsType = QEMU_DOMAIN_JOB_STATS_TYPE_MIGRATION;

5826
    qemuDomainObjSetAsyncJobMask(vm, mask);
5827 5828 5829
    return 0;
}

5830
static void
5831
qemuMigrationJobSetPhase(virQEMUDriverPtr driver,
5832
                         virDomainObjPtr vm,
5833
                         qemuMigrationJobPhase phase)
5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (phase < priv->job.phase) {
        VIR_ERROR(_("migration protocol going backwards %s => %s"),
                  qemuMigrationJobPhaseTypeToString(priv->job.phase),
                  qemuMigrationJobPhaseTypeToString(phase));
        return;
    }

    qemuDomainObjSetJobPhase(driver, vm, phase);
}

5847
static void
5848
qemuMigrationJobStartPhase(virQEMUDriverPtr driver,
5849
                           virDomainObjPtr vm,
5850
                           qemuMigrationJobPhase phase)
5851 5852 5853 5854
{
    qemuMigrationJobSetPhase(driver, vm, phase);
}

5855
static void
5856 5857
qemuMigrationJobContinue(virDomainObjPtr vm)
{
5858
    qemuDomainObjReleaseAsyncJob(vm);
5859 5860
}

5861
static bool
5862
qemuMigrationJobIsActive(virDomainObjPtr vm,
5863
                         qemuDomainAsyncJob job)
5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (priv->job.asyncJob != job) {
        const char *msg;

        if (job == QEMU_ASYNC_JOB_MIGRATION_IN)
            msg = _("domain '%s' is not processing incoming migration");
        else
            msg = _("domain '%s' is not being migrated");

5875
        virReportError(VIR_ERR_OPERATION_INVALID, msg, vm->def->name);
5876 5877 5878 5879 5880
        return false;
    }
    return true;
}

5881
static void
5882
qemuMigrationJobFinish(virQEMUDriverPtr driver, virDomainObjPtr vm)
5883
{
5884
    qemuDomainObjEndAsyncJob(driver, vm);
5885
}
5886 5887 5888


static void
5889
qemuMigrationDstErrorFree(void *data,
5890 5891 5892 5893 5894 5895 5896
                       const void *name ATTRIBUTE_UNUSED)
{
    virErrorPtr err = data;
    virFreeError(err);
}

int
5897
qemuMigrationDstErrorInit(virQEMUDriverPtr driver)
5898
{
5899
    driver->migrationErrors = virHashAtomicNew(64, qemuMigrationDstErrorFree);
5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910
    if (driver->migrationErrors)
        return 0;
    else
        return -1;
}

/**
 * This function consumes @err; the caller should consider the @err pointer
 * invalid after calling this function.
 */
void
5911 5912 5913
qemuMigrationDstErrorSave(virQEMUDriverPtr driver,
                          const char *name,
                          virErrorPtr err)
5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926
{
    if (!err)
        return;

    VIR_DEBUG("Saving incoming migration error for domain %s: %s",
              name, err->message);
    if (virHashAtomicUpdate(driver->migrationErrors, name, err) < 0) {
        VIR_WARN("Failed to save migration error for domain '%s'", name);
        virFreeError(err);
    }
}

void
5927 5928
qemuMigrationDstErrorReport(virQEMUDriverPtr driver,
                            const char *name)
5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939
{
    virErrorPtr err;

    if (!(err = virHashAtomicSteal(driver->migrationErrors, name)))
        return;

    VIR_DEBUG("Restoring saved incoming migration error for domain %s: %s",
              name, err->message);
    virSetError(err);
    virFreeError(err);
}
5940 5941 5942 5943


/* don't ever pass NULL params with non zero nparams */
qemuMigrationCompressionPtr
5944 5945 5946
qemuMigrationAnyCompressionParse(virTypedParameterPtr params,
                                 int nparams,
                                 unsigned long flags)
5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977
{
    size_t i;
    qemuMigrationCompressionPtr compression = NULL;

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

    for (i = 0; i < nparams; i++) {
        int method;

        if (STRNEQ(params[i].field, VIR_MIGRATE_PARAM_COMPRESSION))
            continue;

        method = qemuMigrationCompressMethodTypeFromString(params[i].value.s);
        if (method < 0) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("Unsupported compression method '%s'"),
                           params[i].value.s);
            goto error;
        }

        if (compression->methods & (1ULL << method)) {
            virReportError(VIR_ERR_INVALID_ARG,
                           _("Compression method '%s' is specified twice"),
                           params[i].value.s);
            goto error;
        }

        compression->methods |= 1ULL << method;
    }

5978 5979 5980 5981 5982 5983
#define GET_PARAM(PARAM, TYPE, VALUE) \
    do { \
        int rc; \
        const char *par = VIR_MIGRATE_PARAM_COMPRESSION_ ## PARAM; \
 \
        if ((rc = virTypedParamsGet ## TYPE(params, nparams, \
5984
                                            par, &compression->VALUE)) < 0) \
5985 5986 5987 5988
            goto error; \
 \
        if (rc == 1) \
            compression->VALUE ## _set = true; \
5989 5990 5991
    } while (0)

    if (params) {
5992 5993 5994 5995
        GET_PARAM(MT_LEVEL, Int, level);
        GET_PARAM(MT_THREADS, Int, threads);
        GET_PARAM(MT_DTHREADS, Int, dthreads);
        GET_PARAM(XBZRLE_CACHE, ULLong, xbzrle_cache);
5996 5997 5998 5999
    }

#undef GET_PARAM

6000 6001 6002
    if ((compression->level_set ||
         compression->threads_set ||
         compression->dthreads_set) &&
6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015
        !(compression->methods & (1ULL << QEMU_MIGRATION_COMPRESS_MT))) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Turn multithread compression on to tune it"));
        goto error;
    }

    if (compression->xbzrle_cache_set &&
        !(compression->methods & (1ULL << QEMU_MIGRATION_COMPRESS_XBZRLE))) {
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("Turn xbzrle compression on to tune it"));
        goto error;
    }

6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026
    if (!compression->methods && (flags & VIR_MIGRATE_COMPRESSED))
        compression->methods = 1ULL << QEMU_MIGRATION_COMPRESS_XBZRLE;

    return compression;

 error:
    VIR_FREE(compression);
    return NULL;
}

int
6027 6028 6029 6030 6031
qemuMigrationAnyCompressionDump(qemuMigrationCompressionPtr compression,
                                virTypedParameterPtr *params,
                                int *nparams,
                                int *maxparams,
                                unsigned long *flags)
6032 6033 6034
{
    size_t i;

6035 6036
    if (compression->methods == 1ULL << QEMU_MIGRATION_COMPRESS_XBZRLE &&
        !compression->xbzrle_cache_set) {
6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048
        *flags |= VIR_MIGRATE_COMPRESSED;
        return 0;
    }

    for (i = 0; i < QEMU_MIGRATION_COMPRESS_LAST; ++i) {
        if ((compression->methods & (1ULL << i)) &&
            virTypedParamsAddString(params, nparams, maxparams,
                                    VIR_MIGRATE_PARAM_COMPRESSION,
                                    qemuMigrationCompressMethodTypeToString(i)) < 0)
            return -1;
    }

6049
    if (compression->level_set &&
6050 6051
        virTypedParamsAddInt(params, nparams, maxparams,
                             VIR_MIGRATE_PARAM_COMPRESSION_MT_LEVEL,
6052
                             compression->level) < 0)
6053 6054
        return -1;

6055
    if (compression->threads_set &&
6056 6057
        virTypedParamsAddInt(params, nparams, maxparams,
                             VIR_MIGRATE_PARAM_COMPRESSION_MT_THREADS,
6058
                             compression->threads) < 0)
6059 6060
        return -1;

6061
    if (compression->dthreads_set &&
6062 6063
        virTypedParamsAddInt(params, nparams, maxparams,
                             VIR_MIGRATE_PARAM_COMPRESSION_MT_DTHREADS,
6064
                             compression->dthreads) < 0)
6065 6066 6067 6068 6069 6070 6071 6072
        return -1;

    if (compression->xbzrle_cache_set &&
        virTypedParamsAddULLong(params, nparams, maxparams,
                                VIR_MIGRATE_PARAM_COMPRESSION_XBZRLE_CACHE,
                                compression->xbzrle_cache) < 0)
        return -1;

6073 6074
    return 0;
}
6075 6076 6077


/*
6078
 * qemuMigrationParamsReset:
6079 6080 6081 6082 6083
 *
 * Reset all migration parameters so that the next job which internally uses
 * migration (save, managedsave, snapshots, dump) will not try to use them.
 */
void
6084 6085 6086
qemuMigrationParamsReset(virQEMUDriverPtr driver,
                         virDomainObjPtr vm,
                         qemuDomainAsyncJob job)
6087
{
6088
    qemuMonitorMigrationCaps cap;
6089
    virErrorPtr err = virSaveLastError();
6090

6091
    if (!virDomainObjIsActive(vm))
6092
        goto cleanup;
6093

6094
    if (qemuMigrationParamsResetTLS(driver, vm, job) < 0)
6095
        goto cleanup;
6096 6097

    for (cap = 0; cap < QEMU_MONITOR_MIGRATION_CAPS_LAST; cap++) {
6098 6099
        if (qemuMigrationAnyCapsGet(vm, cap) &&
            qemuMigrationOptionSet(driver, vm, cap, false, job) < 0)
6100 6101 6102 6103 6104 6105 6106
            goto cleanup;
    }

 cleanup:
    if (err) {
        virSetError(err);
        virFreeError(err);
6107
    }
6108
}
6109 6110 6111


int
6112 6113 6114 6115
qemuMigrationSrcFetchMirrorStats(virQEMUDriverPtr driver,
                                 virDomainObjPtr vm,
                                 qemuDomainAsyncJob asyncJob,
                                 qemuDomainJobInfoPtr jobInfo)
6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159
{
    size_t i;
    qemuDomainObjPrivatePtr priv = vm->privateData;
    bool nbd = false;
    virHashTablePtr blockinfo = NULL;
    qemuDomainMirrorStatsPtr stats = &jobInfo->mirrorStats;

    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];
        if (QEMU_DOMAIN_DISK_PRIVATE(disk)->migrating) {
            nbd = true;
            break;
        }
    }

    if (!nbd)
        return 0;

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

    blockinfo = qemuMonitorGetAllBlockJobInfo(priv->mon);

    if (qemuDomainObjExitMonitor(driver, vm) < 0 || !blockinfo)
        return -1;

    memset(stats, 0, sizeof(*stats));

    for (i = 0; i < vm->def->ndisks; i++) {
        virDomainDiskDefPtr disk = vm->def->disks[i];
        qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
        qemuMonitorBlockJobInfoPtr data;

        if (!diskPriv->migrating ||
            !(data = virHashLookup(blockinfo, disk->info.alias)))
            continue;

        stats->transferred += data->cur;
        stats->total += data->end;
    }

    virHashFree(blockinfo);
    return 0;
}
6160 6161 6162


bool
6163 6164
qemuMigrationAnyCapsGet(virDomainObjPtr vm,
                        qemuMonitorMigrationCaps cap)
6165 6166 6167 6168 6169 6170 6171 6172 6173
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    bool enabled = false;

    if (priv->migrationCaps)
        ignore_value(virBitmapGetBit(priv->migrationCaps, cap, &enabled));

    return enabled;
}