migration.c 26.0 KB
Newer Older
A
aliguori 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * QEMU live migration
 *
 * Copyright IBM, Corp. 2008
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
12 13
 * Contributions after 2012-01-13 are licensed under the terms of the
 * GNU GPL, version 2 or (at your option) any later version.
A
aliguori 已提交
14 15 16
 */

#include "qemu-common.h"
17
#include "qemu/error-report.h"
18
#include "qemu/main-loop.h"
19
#include "migration/migration.h"
20
#include "monitor/monitor.h"
21
#include "migration/qemu-file.h"
22
#include "sysemu/sysemu.h"
23
#include "block/block.h"
24
#include "qemu/sockets.h"
25
#include "migration/block.h"
26
#include "qemu/thread.h"
L
Luiz Capitulino 已提交
27
#include "qmp-commands.h"
28
#include "trace.h"
29

30
#define MAX_THROTTLE  (32 << 20)      /* Migration speed throttling */
A
aliguori 已提交
31

J
Juan Quintela 已提交
32 33 34 35 36
/* Amount of time to allocate to each "chunk" of bandwidth-throttled
 * data. */
#define BUFFER_DELAY     100
#define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY)

37 38
/* Default compression thread count */
#define DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT 8
39 40 41
/* Default decompression thread count, usually decompression is at
 * least 4 times as fast as compression.*/
#define DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT 2
42 43 44
/*0: means nocompress, 1: best speed, ... 9: best compress ratio */
#define DEFAULT_MIGRATE_COMPRESS_LEVEL 1

45 46 47
/* Migration XBZRLE default cache size */
#define DEFAULT_MIGRATE_CACHE_SIZE (64 * 1024 * 1024)

48 49 50
static NotifierList migration_state_notifiers =
    NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);

D
Dr. David Alan Gilbert 已提交
51 52
static bool deferred_incoming;

53 54 55 56
/* When we add fault tolerance, we could have several
   migrations at once.  For now we don't need to add
   dynamic creation of migration */

57
/* For outgoing */
58
MigrationState *migrate_get_current(void)
59 60
{
    static MigrationState current_migration = {
61
        .state = MIGRATION_STATUS_NONE,
62
        .bandwidth_limit = MAX_THROTTLE,
63
        .xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE,
64
        .mbps = -1,
65 66 67 68 69 70
        .parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL] =
                DEFAULT_MIGRATE_COMPRESS_LEVEL,
        .parameters[MIGRATION_PARAMETER_COMPRESS_THREADS] =
                DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT,
        .parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS] =
                DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT,
71 72 73 74 75
    };

    return &current_migration;
}

76 77 78 79 80 81 82 83 84 85 86 87
/* For incoming */
static MigrationIncomingState *mis_current;

MigrationIncomingState *migration_incoming_get_current(void)
{
    return mis_current;
}

MigrationIncomingState *migration_incoming_state_new(QEMUFile* f)
{
    mis_current = g_malloc0(sizeof(MigrationIncomingState));
    mis_current->file = f;
88
    QLIST_INIT(&mis_current->loadvm_handlers);
89 90 91 92 93 94

    return mis_current;
}

void migration_incoming_state_destroy(void)
{
95
    loadvm_free_handlers(mis_current);
96 97 98 99
    g_free(mis_current);
    mis_current = NULL;
}

D
Dr. David Alan Gilbert 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112
/*
 * Called on -incoming with a defer: uri.
 * The migration can be started later after any parameters have been
 * changed.
 */
static void deferred_incoming_migration(Error **errp)
{
    if (deferred_incoming) {
        error_setg(errp, "Incoming migration already deferred");
    }
    deferred_incoming = true;
}

113
void qemu_start_incoming_migration(const char *uri, Error **errp)
A
aliguori 已提交
114
{
A
aliguori 已提交
115 116
    const char *p;

D
Dr. David Alan Gilbert 已提交
117 118 119
    if (!strcmp(uri, "defer")) {
        deferred_incoming_migration(errp);
    } else if (strstart(uri, "tcp:", &p)) {
120
        tcp_start_incoming_migration(p, errp);
M
Michael R. Hines 已提交
121
#ifdef CONFIG_RDMA
D
Dr. David Alan Gilbert 已提交
122
    } else if (strstart(uri, "rdma:", &p)) {
M
Michael R. Hines 已提交
123 124
        rdma_start_incoming_migration(p, errp);
#endif
125
#if !defined(WIN32)
D
Dr. David Alan Gilbert 已提交
126
    } else if (strstart(uri, "exec:", &p)) {
127
        exec_start_incoming_migration(p, errp);
D
Dr. David Alan Gilbert 已提交
128
    } else if (strstart(uri, "unix:", &p)) {
129
        unix_start_incoming_migration(p, errp);
D
Dr. David Alan Gilbert 已提交
130
    } else if (strstart(uri, "fd:", &p)) {
131
        fd_start_incoming_migration(p, errp);
132
#endif
D
Dr. David Alan Gilbert 已提交
133
    } else {
134
        error_setg(errp, "unknown migration protocol: %s", uri);
J
Juan Quintela 已提交
135
    }
A
aliguori 已提交
136 137
}

138
static void process_incoming_migration_co(void *opaque)
139
{
140
    QEMUFile *f = opaque;
141
    Error *local_err = NULL;
142 143
    int ret;

144 145
    migration_incoming_state_new(f);

146
    ret = qemu_loadvm_state(f);
147

148
    qemu_fclose(f);
149
    free_xbzrle_decoded_buf();
150 151
    migration_incoming_state_destroy();

152
    if (ret < 0) {
153
        error_report("load of migration failed: %s", strerror(-ret));
154
        migrate_decompress_threads_join();
155
        exit(EXIT_FAILURE);
156 157 158
    }
    qemu_announce_self();

159
    /* Make sure all file formats flush their mutable metadata */
160 161
    bdrv_invalidate_cache_all(&local_err);
    if (local_err) {
162
        error_report_err(local_err);
163
        migrate_decompress_threads_join();
164 165
        exit(EXIT_FAILURE);
    }
166

167
    if (autostart) {
168
        vm_start();
169
    } else {
170
        runstate_set(RUN_STATE_PAUSED);
171
    }
172
    migrate_decompress_threads_join();
173 174
}

175 176 177 178 179 180
void process_incoming_migration(QEMUFile *f)
{
    Coroutine *co = qemu_coroutine_create(process_incoming_migration_co);
    int fd = qemu_get_fd(f);

    assert(fd != -1);
181
    migrate_decompress_threads_create();
182
    qemu_set_nonblock(fd);
183 184 185
    qemu_coroutine_enter(co, f);
}

186 187 188 189
/* amount of nanoseconds we are willing to wait for migration to be down.
 * the choice of nanoseconds is because it is the maximum resolution that
 * get_clock() can achieve. It is an internal measure. All user-visible
 * units must be in seconds */
190
static uint64_t max_downtime = 300000000;
191 192 193 194 195 196

uint64_t migrate_max_downtime(void)
{
    return max_downtime;
}

O
Orit Wasserman 已提交
197 198 199 200 201 202 203
MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
{
    MigrationCapabilityStatusList *head = NULL;
    MigrationCapabilityStatusList *caps;
    MigrationState *s = migrate_get_current();
    int i;

204
    caps = NULL; /* silence compiler warning */
O
Orit Wasserman 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
    for (i = 0; i < MIGRATION_CAPABILITY_MAX; i++) {
        if (head == NULL) {
            head = g_malloc0(sizeof(*caps));
            caps = head;
        } else {
            caps->next = g_malloc0(sizeof(*caps));
            caps = caps->next;
        }
        caps->value =
            g_malloc(sizeof(*caps->value));
        caps->value->capability = i;
        caps->value->state = s->enabled_capabilities[i];
    }

    return head;
}

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
MigrationParameters *qmp_query_migrate_parameters(Error **errp)
{
    MigrationParameters *params;
    MigrationState *s = migrate_get_current();

    params = g_malloc0(sizeof(*params));
    params->compress_level = s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL];
    params->compress_threads =
            s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS];
    params->decompress_threads =
            s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS];

    return params;
}

O
Orit Wasserman 已提交
237 238 239 240 241 242 243 244 245
static void get_xbzrle_cache_stats(MigrationInfo *info)
{
    if (migrate_use_xbzrle()) {
        info->has_xbzrle_cache = true;
        info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache));
        info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size();
        info->xbzrle_cache->bytes = xbzrle_mig_bytes_transferred();
        info->xbzrle_cache->pages = xbzrle_mig_pages_transferred();
        info->xbzrle_cache->cache_miss = xbzrle_mig_pages_cache_miss();
246
        info->xbzrle_cache->cache_miss_rate = xbzrle_mig_cache_miss_rate();
O
Orit Wasserman 已提交
247 248 249 250
        info->xbzrle_cache->overflow = xbzrle_mig_pages_overflow();
    }
}

L
Luiz Capitulino 已提交
251
MigrationInfo *qmp_query_migrate(Error **errp)
A
aliguori 已提交
252
{
L
Luiz Capitulino 已提交
253
    MigrationInfo *info = g_malloc0(sizeof(*info));
254 255 256
    MigrationState *s = migrate_get_current();

    switch (s->state) {
257
    case MIGRATION_STATUS_NONE:
258 259
        /* no migration has happened ever */
        break;
260
    case MIGRATION_STATUS_SETUP:
261
        info->has_status = true;
262
        info->has_total_time = false;
263
        break;
264 265
    case MIGRATION_STATUS_ACTIVE:
    case MIGRATION_STATUS_CANCELLING:
L
Luiz Capitulino 已提交
266
        info->has_status = true;
267
        info->has_total_time = true;
268
        info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
269
            - s->total_time;
270 271
        info->has_expected_downtime = true;
        info->expected_downtime = s->expected_downtime;
272 273
        info->has_setup_time = true;
        info->setup_time = s->setup_time;
274

L
Luiz Capitulino 已提交
275 276 277 278 279
        info->has_ram = true;
        info->ram = g_malloc0(sizeof(*info->ram));
        info->ram->transferred = ram_bytes_transferred();
        info->ram->remaining = ram_bytes_remaining();
        info->ram->total = ram_bytes_total();
280
        info->ram->duplicate = dup_mig_pages_transferred();
281
        info->ram->skipped = skipped_mig_pages_transferred();
282 283
        info->ram->normal = norm_mig_pages_transferred();
        info->ram->normal_bytes = norm_mig_bytes_transferred();
284
        info->ram->dirty_pages_rate = s->dirty_pages_rate;
285
        info->ram->mbps = s->mbps;
286
        info->ram->dirty_sync_count = s->dirty_sync_count;
287

288
        if (blk_mig_active()) {
L
Luiz Capitulino 已提交
289 290 291 292 293
            info->has_disk = true;
            info->disk = g_malloc0(sizeof(*info->disk));
            info->disk->transferred = blk_mig_bytes_transferred();
            info->disk->remaining = blk_mig_bytes_remaining();
            info->disk->total = blk_mig_bytes_total();
A
aliguori 已提交
294
        }
O
Orit Wasserman 已提交
295 296

        get_xbzrle_cache_stats(info);
297
        break;
298
    case MIGRATION_STATUS_COMPLETED:
O
Orit Wasserman 已提交
299 300
        get_xbzrle_cache_stats(info);

L
Luiz Capitulino 已提交
301
        info->has_status = true;
302
        info->has_total_time = true;
303
        info->total_time = s->total_time;
304 305
        info->has_downtime = true;
        info->downtime = s->downtime;
306 307
        info->has_setup_time = true;
        info->setup_time = s->setup_time;
J
Juan Quintela 已提交
308 309 310 311 312 313

        info->has_ram = true;
        info->ram = g_malloc0(sizeof(*info->ram));
        info->ram->transferred = ram_bytes_transferred();
        info->ram->remaining = 0;
        info->ram->total = ram_bytes_total();
314
        info->ram->duplicate = dup_mig_pages_transferred();
315
        info->ram->skipped = skipped_mig_pages_transferred();
316 317
        info->ram->normal = norm_mig_pages_transferred();
        info->ram->normal_bytes = norm_mig_bytes_transferred();
318
        info->ram->mbps = s->mbps;
319
        info->ram->dirty_sync_count = s->dirty_sync_count;
320
        break;
321
    case MIGRATION_STATUS_FAILED:
L
Luiz Capitulino 已提交
322
        info->has_status = true;
323
        break;
324
    case MIGRATION_STATUS_CANCELLED:
L
Luiz Capitulino 已提交
325
        info->has_status = true;
326
        break;
A
aliguori 已提交
327
    }
328
    info->status = s->state;
L
Luiz Capitulino 已提交
329 330

    return info;
A
aliguori 已提交
331 332
}

O
Orit Wasserman 已提交
333 334 335 336 337 338
void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
                                  Error **errp)
{
    MigrationState *s = migrate_get_current();
    MigrationCapabilityStatusList *cap;

339 340
    if (s->state == MIGRATION_STATUS_ACTIVE ||
        s->state == MIGRATION_STATUS_SETUP) {
341
        error_setg(errp, QERR_MIGRATION_ACTIVE);
O
Orit Wasserman 已提交
342 343 344 345 346 347 348 349
        return;
    }

    for (cap = params; cap; cap = cap->next) {
        s->enabled_capabilities[cap->value->capability] = cap->value->state;
    }
}

350 351 352 353 354 355 356 357 358 359
void qmp_migrate_set_parameters(bool has_compress_level,
                                int64_t compress_level,
                                bool has_compress_threads,
                                int64_t compress_threads,
                                bool has_decompress_threads,
                                int64_t decompress_threads, Error **errp)
{
    MigrationState *s = migrate_get_current();

    if (has_compress_level && (compress_level < 0 || compress_level > 9)) {
360 361
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "compress_level",
                   "is invalid, it should be in the range of 0 to 9");
362 363 364 365
        return;
    }
    if (has_compress_threads &&
            (compress_threads < 1 || compress_threads > 255)) {
366 367 368
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
                   "compress_threads",
                   "is invalid, it should be in the range of 1 to 255");
369 370 371 372
        return;
    }
    if (has_decompress_threads &&
            (decompress_threads < 1 || decompress_threads > 255)) {
373 374 375
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
                   "decompress_threads",
                   "is invalid, it should be in the range of 1 to 255");
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
        return;
    }

    if (has_compress_level) {
        s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL] = compress_level;
    }
    if (has_compress_threads) {
        s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS] = compress_threads;
    }
    if (has_decompress_threads) {
        s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS] =
                                                    decompress_threads;
    }
}

391 392
/* shared migration helpers */

393 394 395 396 397 398 399
static void migrate_set_state(MigrationState *s, int old_state, int new_state)
{
    if (atomic_cmpxchg(&s->state, old_state, new_state) == new_state) {
        trace_migrate_set_state(new_state);
    }
}

400
static void migrate_fd_cleanup(void *opaque)
401
{
402 403 404 405 406
    MigrationState *s = opaque;

    qemu_bh_delete(s->cleanup_bh);
    s->cleanup_bh = NULL;

407
    if (s->file) {
408
        trace_migrate_fd_cleanup();
409 410 411 412
        qemu_mutex_unlock_iothread();
        qemu_thread_join(&s->thread);
        qemu_mutex_lock_iothread();

413
        migrate_compress_threads_join();
414 415
        qemu_fclose(s->file);
        s->file = NULL;
416 417
    }

418
    assert(s->state != MIGRATION_STATUS_ACTIVE);
419

420
    if (s->state != MIGRATION_STATUS_COMPLETED) {
421
        qemu_savevm_state_cancel();
422 423 424
        if (s->state == MIGRATION_STATUS_CANCELLING) {
            migrate_set_state(s, MIGRATION_STATUS_CANCELLING,
                              MIGRATION_STATUS_CANCELLED);
425
        }
426
    }
427 428

    notifier_list_notify(&migration_state_notifiers, s);
429 430
}

431
void migrate_fd_error(MigrationState *s)
432
{
433
    trace_migrate_fd_error();
434
    assert(s->file == NULL);
435 436
    s->state = MIGRATION_STATUS_FAILED;
    trace_migrate_set_state(MIGRATION_STATUS_FAILED);
437
    notifier_list_notify(&migration_state_notifiers, s);
438 439
}

440
static void migrate_fd_cancel(MigrationState *s)
441
{
442
    int old_state ;
443
    QEMUFile *f = migrate_get_current()->file;
444
    trace_migrate_fd_cancel();
445

446 447
    do {
        old_state = s->state;
448 449
        if (old_state != MIGRATION_STATUS_SETUP &&
            old_state != MIGRATION_STATUS_ACTIVE) {
450 451
            break;
        }
452 453
        migrate_set_state(s, old_state, MIGRATION_STATUS_CANCELLING);
    } while (s->state != MIGRATION_STATUS_CANCELLING);
454 455 456 457 458 459 460 461

    /*
     * If we're unlucky the migration code might be stuck somewhere in a
     * send/write while the network has failed and is waiting to timeout;
     * if we've got shutdown(2) available then we can force it to quit.
     * The outgoing qemu file gets closed in migrate_fd_cleanup that is
     * called in a bh, so there is no race against this cancel.
     */
462
    if (s->state == MIGRATION_STATUS_CANCELLING && f) {
463 464
        qemu_file_shutdown(f);
    }
465 466
}

467 468 469 470 471 472 473
void add_migration_state_change_notifier(Notifier *notify)
{
    notifier_list_add(&migration_state_notifiers, notify);
}

void remove_migration_state_change_notifier(Notifier *notify)
{
P
Paolo Bonzini 已提交
474
    notifier_remove(notify);
475 476
}

S
Stefan Hajnoczi 已提交
477
bool migration_in_setup(MigrationState *s)
478
{
479
    return s->state == MIGRATION_STATUS_SETUP;
480 481
}

482
bool migration_has_finished(MigrationState *s)
483
{
484
    return s->state == MIGRATION_STATUS_COMPLETED;
485
}
486

487 488
bool migration_has_failed(MigrationState *s)
{
489 490
    return (s->state == MIGRATION_STATUS_CANCELLED ||
            s->state == MIGRATION_STATUS_FAILED);
491 492
}

I
Isaku Yamahata 已提交
493
static MigrationState *migrate_init(const MigrationParams *params)
494
{
495
    MigrationState *s = migrate_get_current();
496
    int64_t bandwidth_limit = s->bandwidth_limit;
O
Orit Wasserman 已提交
497
    bool enabled_capabilities[MIGRATION_CAPABILITY_MAX];
498
    int64_t xbzrle_cache_size = s->xbzrle_cache_size;
499 500 501 502 503
    int compress_level = s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL];
    int compress_thread_count =
            s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS];
    int decompress_thread_count =
            s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS];
O
Orit Wasserman 已提交
504 505 506

    memcpy(enabled_capabilities, s->enabled_capabilities,
           sizeof(enabled_capabilities));
507

508
    memset(s, 0, sizeof(*s));
I
Isaku Yamahata 已提交
509
    s->params = *params;
O
Orit Wasserman 已提交
510 511
    memcpy(s->enabled_capabilities, enabled_capabilities,
           sizeof(enabled_capabilities));
512
    s->xbzrle_cache_size = xbzrle_cache_size;
513

514 515 516 517 518
    s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL] = compress_level;
    s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS] =
               compress_thread_count;
    s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS] =
               decompress_thread_count;
519
    s->bandwidth_limit = bandwidth_limit;
520 521
    s->state = MIGRATION_STATUS_SETUP;
    trace_migrate_set_state(MIGRATION_STATUS_SETUP);
522

523
    s->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
524 525
    return s;
}
526

A
Anthony Liguori 已提交
527 528 529 530 531 532 533 534 535 536 537 538
static GSList *migration_blockers;

void migrate_add_blocker(Error *reason)
{
    migration_blockers = g_slist_prepend(migration_blockers, reason);
}

void migrate_del_blocker(Error *reason)
{
    migration_blockers = g_slist_remove(migration_blockers, reason);
}

D
Dr. David Alan Gilbert 已提交
539 540 541
void qmp_migrate_incoming(const char *uri, Error **errp)
{
    Error *local_err = NULL;
542
    static bool once = true;
D
Dr. David Alan Gilbert 已提交
543 544

    if (!deferred_incoming) {
545
        error_setg(errp, "For use with '-incoming defer'");
D
Dr. David Alan Gilbert 已提交
546 547
        return;
    }
548 549 550
    if (!once) {
        error_setg(errp, "The incoming migration has already been started");
    }
D
Dr. David Alan Gilbert 已提交
551 552 553 554 555 556 557 558

    qemu_start_incoming_migration(uri, &local_err);

    if (local_err) {
        error_propagate(errp, local_err);
        return;
    }

559
    once = false;
D
Dr. David Alan Gilbert 已提交
560 561
}

L
Luiz Capitulino 已提交
562 563 564
void qmp_migrate(const char *uri, bool has_blk, bool blk,
                 bool has_inc, bool inc, bool has_detach, bool detach,
                 Error **errp)
565
{
566
    Error *local_err = NULL;
567
    MigrationState *s = migrate_get_current();
I
Isaku Yamahata 已提交
568
    MigrationParams params;
569 570
    const char *p;

571 572
    params.blk = has_blk && blk;
    params.shared = has_inc && inc;
I
Isaku Yamahata 已提交
573

574 575 576
    if (s->state == MIGRATION_STATUS_ACTIVE ||
        s->state == MIGRATION_STATUS_SETUP ||
        s->state == MIGRATION_STATUS_CANCELLING) {
577
        error_setg(errp, QERR_MIGRATION_ACTIVE);
L
Luiz Capitulino 已提交
578
        return;
579 580
    }

581 582 583 584 585
    if (runstate_check(RUN_STATE_INMIGRATE)) {
        error_setg(errp, "Guest is waiting for an incoming migration");
        return;
    }

L
Luiz Capitulino 已提交
586 587
    if (qemu_savevm_state_blocked(errp)) {
        return;
588 589
    }

A
Anthony Liguori 已提交
590
    if (migration_blockers) {
L
Luiz Capitulino 已提交
591 592
        *errp = error_copy(migration_blockers->data);
        return;
A
Anthony Liguori 已提交
593 594
    }

I
Isaku Yamahata 已提交
595
    s = migrate_init(&params);
596 597

    if (strstart(uri, "tcp:", &p)) {
598
        tcp_start_outgoing_migration(s, p, &local_err);
M
Michael R. Hines 已提交
599
#ifdef CONFIG_RDMA
600
    } else if (strstart(uri, "rdma:", &p)) {
M
Michael R. Hines 已提交
601 602
        rdma_start_outgoing_migration(s, p, &local_err);
#endif
603 604
#if !defined(WIN32)
    } else if (strstart(uri, "exec:", &p)) {
605
        exec_start_outgoing_migration(s, p, &local_err);
606
    } else if (strstart(uri, "unix:", &p)) {
607
        unix_start_outgoing_migration(s, p, &local_err);
608
    } else if (strstart(uri, "fd:", &p)) {
609
        fd_start_outgoing_migration(s, p, &local_err);
610
#endif
611
    } else {
612 613
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "uri",
                   "a valid migration protocol");
614
        s->state = MIGRATION_STATUS_FAILED;
L
Luiz Capitulino 已提交
615
        return;
616 617
    }

618
    if (local_err) {
619
        migrate_fd_error(s);
620
        error_propagate(errp, local_err);
L
Luiz Capitulino 已提交
621
        return;
622
    }
623 624
}

L
Luiz Capitulino 已提交
625
void qmp_migrate_cancel(Error **errp)
626
{
627
    migrate_fd_cancel(migrate_get_current());
628 629
}

630 631 632
void qmp_migrate_set_cache_size(int64_t value, Error **errp)
{
    MigrationState *s = migrate_get_current();
633
    int64_t new_size;
634 635 636

    /* Check for truncation */
    if (value != (size_t)value) {
637 638
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
                   "exceeding address space");
639 640 641
        return;
    }

642 643
    /* Cache should not be larger than guest ram size */
    if (value > ram_bytes_total()) {
644 645
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
                   "exceeds guest ram size ");
646 647 648
        return;
    }

649 650
    new_size = xbzrle_cache_resize(value);
    if (new_size < 0) {
651 652
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
                   "is smaller than page size");
653 654 655 656
        return;
    }

    s->xbzrle_cache_size = new_size;
657 658 659 660 661 662 663
}

int64_t qmp_query_migrate_cache_size(Error **errp)
{
    return migrate_xbzrle_cache_size();
}

L
Luiz Capitulino 已提交
664
void qmp_migrate_set_speed(int64_t value, Error **errp)
665 666 667
{
    MigrationState *s;

L
Luiz Capitulino 已提交
668 669
    if (value < 0) {
        value = 0;
670
    }
671 672 673
    if (value > SIZE_MAX) {
        value = SIZE_MAX;
    }
674

675
    s = migrate_get_current();
L
Luiz Capitulino 已提交
676
    s->bandwidth_limit = value;
677 678 679
    if (s->file) {
        qemu_file_set_rate_limit(s->file, s->bandwidth_limit / XFER_LIMIT_RATIO);
    }
680 681
}

682
void qmp_migrate_set_downtime(double value, Error **errp)
683
{
684 685 686
    value *= 1e9;
    value = MAX(0, MIN(UINT64_MAX, value));
    max_downtime = (uint64_t)value;
687
}
688

689 690 691 692 693 694 695 696 697
bool migrate_auto_converge(void)
{
    MigrationState *s;

    s = migrate_get_current();

    return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE];
}

698 699 700 701 702 703 704 705 706
bool migrate_zero_blocks(void)
{
    MigrationState *s;

    s = migrate_get_current();

    return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS];
}

707 708
bool migrate_use_compression(void)
{
709 710 711 712 713
    MigrationState *s;

    s = migrate_get_current();

    return s->enabled_capabilities[MIGRATION_CAPABILITY_COMPRESS];
714 715 716 717 718 719 720 721
}

int migrate_compress_level(void)
{
    MigrationState *s;

    s = migrate_get_current();

722
    return s->parameters[MIGRATION_PARAMETER_COMPRESS_LEVEL];
723 724 725 726 727 728 729 730
}

int migrate_compress_threads(void)
{
    MigrationState *s;

    s = migrate_get_current();

731
    return s->parameters[MIGRATION_PARAMETER_COMPRESS_THREADS];
732 733
}

734 735 736 737 738 739
int migrate_decompress_threads(void)
{
    MigrationState *s;

    s = migrate_get_current();

740
    return s->parameters[MIGRATION_PARAMETER_DECOMPRESS_THREADS];
741 742
}

743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
int migrate_use_xbzrle(void)
{
    MigrationState *s;

    s = migrate_get_current();

    return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE];
}

int64_t migrate_xbzrle_cache_size(void)
{
    MigrationState *s;

    s = migrate_get_current();

    return s->xbzrle_cache_size;
}
760 761 762

/* migration thread support */

J
Juan Quintela 已提交
763
static void *migration_thread(void *opaque)
764
{
765
    MigrationState *s = opaque;
766 767
    int64_t initial_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
    int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
768
    int64_t initial_bytes = 0;
769
    int64_t max_size = 0;
770 771
    int64_t start_time = initial_time;
    bool old_vm_running = false;
772

773
    qemu_savevm_state_header(s->file);
774
    qemu_savevm_state_begin(s->file, &s->params);
775

776
    s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
777
    migrate_set_state(s, MIGRATION_STATUS_SETUP, MIGRATION_STATUS_ACTIVE);
778

779
    while (s->state == MIGRATION_STATUS_ACTIVE) {
780
        int64_t current_time;
781
        uint64_t pending_size;
782

783
        if (!qemu_file_rate_limit(s->file)) {
784
            pending_size = qemu_savevm_state_pending(s->file, max_size);
785
            trace_migrate_pending(pending_size, max_size);
786
            if (pending_size && pending_size >= max_size) {
787
                qemu_savevm_state_iterate(s->file);
788
            } else {
789 790
                int ret;

791
                qemu_mutex_lock_iothread();
792
                start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
793
                qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
794
                old_vm_running = runstate_is_running();
795 796 797

                ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
                if (ret >= 0) {
M
Matthew Garrett 已提交
798
                    qemu_file_set_rate_limit(s->file, INT64_MAX);
799 800
                    qemu_savevm_state_complete(s->file);
                }
801
                qemu_mutex_unlock_iothread();
802 803

                if (ret < 0) {
804 805
                    migrate_set_state(s, MIGRATION_STATUS_ACTIVE,
                                      MIGRATION_STATUS_FAILED);
806 807 808
                    break;
                }

P
Paolo Bonzini 已提交
809
                if (!qemu_file_get_error(s->file)) {
810 811
                    migrate_set_state(s, MIGRATION_STATUS_ACTIVE,
                                      MIGRATION_STATUS_COMPLETED);
P
Paolo Bonzini 已提交
812 813
                    break;
                }
814 815
            }
        }
816

817
        if (qemu_file_get_error(s->file)) {
818 819
            migrate_set_state(s, MIGRATION_STATUS_ACTIVE,
                              MIGRATION_STATUS_FAILED);
820 821
            break;
        }
822
        current_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
823
        if (current_time >= initial_time + BUFFER_DELAY) {
824
            uint64_t transferred_bytes = qemu_ftell(s->file) - initial_bytes;
825
            uint64_t time_spent = current_time - initial_time;
826 827 828
            double bandwidth = transferred_bytes / time_spent;
            max_size = bandwidth * migrate_max_downtime() / 1000000;

829 830 831
            s->mbps = time_spent ? (((double) transferred_bytes * 8.0) /
                    ((double) time_spent / 1000.0)) / 1000.0 / 1000.0 : -1;

832 833
            trace_migrate_transferred(transferred_bytes, time_spent,
                                      bandwidth, max_size);
834 835 836 837 838
            /* if we haven't sent anything, we don't want to recalculate
               10000 is a small enough number for our purposes */
            if (s->dirty_bytes_rate && transferred_bytes > 10000) {
                s->expected_downtime = s->dirty_bytes_rate / bandwidth;
            }
839

840
            qemu_file_reset_rate_limit(s->file);
841
            initial_time = current_time;
842
            initial_bytes = qemu_ftell(s->file);
843
        }
844
        if (qemu_file_rate_limit(s->file)) {
845 846 847
            /* usleep expects microseconds */
            g_usleep((initial_time + BUFFER_DELAY - current_time)*1000);
        }
848 849
    }

850
    qemu_mutex_lock_iothread();
851
    if (s->state == MIGRATION_STATUS_COMPLETED) {
852
        int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
853
        uint64_t transferred_bytes = qemu_ftell(s->file);
854 855
        s->total_time = end_time - s->total_time;
        s->downtime = end_time - start_time;
856 857 858 859
        if (s->total_time) {
            s->mbps = (((double) transferred_bytes * 8.0) /
                       ((double) s->total_time)) / 1000;
        }
860 861 862 863
        runstate_set(RUN_STATE_POSTMIGRATE);
    } else {
        if (old_vm_running) {
            vm_start();
864
        }
865
    }
866
    qemu_bh_schedule(s->cleanup_bh);
867
    qemu_mutex_unlock_iothread();
868

869 870 871
    return NULL;
}

872
void migrate_fd_connect(MigrationState *s)
873
{
874 875
    /* This is a best 1st approximation. ns to ms */
    s->expected_downtime = max_downtime/1000000;
876
    s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
877

878 879 880
    qemu_file_set_rate_limit(s->file,
                             s->bandwidth_limit / XFER_LIMIT_RATIO);

881 882 883
    /* Notify before starting migration thread */
    notifier_list_notify(&migration_state_notifiers, s);

884
    migrate_compress_threads_create();
885
    qemu_thread_create(&s->thread, "migration", migration_thread, s,
886
                       QEMU_THREAD_JOINABLE);
887
}