migration.c 15.2 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 17
 */

#include "qemu-common.h"
#include "migration.h"
A
aliguori 已提交
18
#include "monitor.h"
19 20 21 22
#include "buffered_file.h"
#include "sysemu.h"
#include "block.h"
#include "qemu_socket.h"
23
#include "block-migration.h"
L
Luiz Capitulino 已提交
24
#include "qmp-commands.h"
25 26 27 28

//#define DEBUG_MIGRATION

#ifdef DEBUG_MIGRATION
M
malc 已提交
29
#define DPRINTF(fmt, ...) \
30 31
    do { printf("migration: " fmt, ## __VA_ARGS__); } while (0)
#else
M
malc 已提交
32
#define DPRINTF(fmt, ...) \
33 34
    do { } while (0)
#endif
A
aliguori 已提交
35

36 37 38 39 40 41 42
enum {
    MIG_STATE_ERROR,
    MIG_STATE_SETUP,
    MIG_STATE_CANCELLED,
    MIG_STATE_ACTIVE,
    MIG_STATE_COMPLETED,
};
A
aliguori 已提交
43

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

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

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

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

static MigrationState *migrate_get_current(void)
{
    static MigrationState current_migration = {
        .state = MIG_STATE_SETUP,
60
        .bandwidth_limit = MAX_THROTTLE,
61
        .xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE,
62 63 64 65 66
    };

    return &current_migration;
}

67
int qemu_start_incoming_migration(const char *uri, Error **errp)
A
aliguori 已提交
68
{
A
aliguori 已提交
69
    const char *p;
J
Juan Quintela 已提交
70
    int ret;
A
aliguori 已提交
71 72

    if (strstart(uri, "tcp:", &p))
73
        ret = tcp_start_incoming_migration(p, errp);
74 75
#if !defined(WIN32)
    else if (strstart(uri, "exec:", &p))
J
Juan Quintela 已提交
76
        ret =  exec_start_incoming_migration(p);
C
Chris Lalancette 已提交
77
    else if (strstart(uri, "unix:", &p))
J
Juan Quintela 已提交
78
        ret = unix_start_incoming_migration(p);
P
Paolo Bonzini 已提交
79
    else if (strstart(uri, "fd:", &p))
J
Juan Quintela 已提交
80
        ret = fd_start_incoming_migration(p);
81
#endif
J
Juan Quintela 已提交
82
    else {
A
aliguori 已提交
83
        fprintf(stderr, "unknown migration protocol: %s\n", uri);
J
Juan Quintela 已提交
84 85 86
        ret = -EPROTONOSUPPORT;
    }
    return ret;
A
aliguori 已提交
87 88
}

89 90 91 92 93 94 95 96 97
void process_incoming_migration(QEMUFile *f)
{
    if (qemu_loadvm_state(f) < 0) {
        fprintf(stderr, "load of migration failed\n");
        exit(0);
    }
    qemu_announce_self();
    DPRINTF("successfully loaded vm state\n");

98
    bdrv_clear_incoming_migration_all();
99 100 101
    /* Make sure all file formats flush their mutable metadata */
    bdrv_invalidate_cache_all();

102
    if (autostart) {
103
        vm_start();
104
    } else {
105
        runstate_set(RUN_STATE_PRELAUNCH);
106
    }
107 108
}

109 110 111 112 113 114 115 116 117 118 119
/* 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 */
static uint64_t max_downtime = 30000000;

uint64_t migrate_max_downtime(void)
{
    return max_downtime;
}

O
Orit Wasserman 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp)
{
    MigrationCapabilityStatusList *head = NULL;
    MigrationCapabilityStatusList *caps;
    MigrationState *s = migrate_get_current();
    int i;

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

O
Orit Wasserman 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156
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();
        info->xbzrle_cache->overflow = xbzrle_mig_pages_overflow();
    }
}

L
Luiz Capitulino 已提交
157
MigrationInfo *qmp_query_migrate(Error **errp)
A
aliguori 已提交
158
{
L
Luiz Capitulino 已提交
159
    MigrationInfo *info = g_malloc0(sizeof(*info));
160 161 162 163 164 165 166
    MigrationState *s = migrate_get_current();

    switch (s->state) {
    case MIG_STATE_SETUP:
        /* no migration has happened ever */
        break;
    case MIG_STATE_ACTIVE:
L
Luiz Capitulino 已提交
167 168
        info->has_status = true;
        info->status = g_strdup("active");
169 170 171
        info->has_total_time = true;
        info->total_time = qemu_get_clock_ms(rt_clock)
            - s->total_time;
172

L
Luiz Capitulino 已提交
173 174 175 176 177
        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();
178 179 180
        info->ram->duplicate = dup_mig_pages_transferred();
        info->ram->normal = norm_mig_pages_transferred();
        info->ram->normal_bytes = norm_mig_bytes_transferred();
181 182

        if (blk_mig_active()) {
L
Luiz Capitulino 已提交
183 184 185 186 187
            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 已提交
188
        }
O
Orit Wasserman 已提交
189 190

        get_xbzrle_cache_stats(info);
191 192
        break;
    case MIG_STATE_COMPLETED:
O
Orit Wasserman 已提交
193 194
        get_xbzrle_cache_stats(info);

L
Luiz Capitulino 已提交
195 196
        info->has_status = true;
        info->status = g_strdup("completed");
197
        info->total_time = s->total_time;
J
Juan Quintela 已提交
198 199 200 201 202 203

        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();
204 205 206
        info->ram->duplicate = dup_mig_pages_transferred();
        info->ram->normal = norm_mig_pages_transferred();
        info->ram->normal_bytes = norm_mig_bytes_transferred();
207 208
        break;
    case MIG_STATE_ERROR:
L
Luiz Capitulino 已提交
209 210
        info->has_status = true;
        info->status = g_strdup("failed");
211 212
        break;
    case MIG_STATE_CANCELLED:
L
Luiz Capitulino 已提交
213 214
        info->has_status = true;
        info->status = g_strdup("cancelled");
215
        break;
A
aliguori 已提交
216
    }
L
Luiz Capitulino 已提交
217 218

    return info;
A
aliguori 已提交
219 220
}

O
Orit Wasserman 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
                                  Error **errp)
{
    MigrationState *s = migrate_get_current();
    MigrationCapabilityStatusList *cap;

    if (s->state == MIG_STATE_ACTIVE) {
        error_set(errp, QERR_MIGRATION_ACTIVE);
        return;
    }

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

237 238
/* shared migration helpers */

239
static int migrate_fd_cleanup(MigrationState *s)
240
{
241 242
    int ret = 0;

O
Orit Wasserman 已提交
243 244 245
    if (s->fd != -1) {
        qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
    }
246 247

    if (s->file) {
M
malc 已提交
248
        DPRINTF("closing file\n");
249
        ret = qemu_fclose(s->file);
250
        s->file = NULL;
251 252
    }

253
    if (s->fd != -1) {
254
        close(s->fd);
255
        s->fd = -1;
256
    }
257

258
    return ret;
259 260
}

261
void migrate_fd_error(MigrationState *s)
262
{
263 264
    DPRINTF("setting error state\n");
    s->state = MIG_STATE_ERROR;
265
    notifier_list_notify(&migration_state_notifiers, s);
266 267 268
    migrate_fd_cleanup(s);
}

269 270 271 272 273 274 275 276 277
static void migrate_fd_completed(MigrationState *s)
{
    DPRINTF("setting completed state\n");
    if (migrate_fd_cleanup(s) < 0) {
        s->state = MIG_STATE_ERROR;
    } else {
        s->state = MIG_STATE_COMPLETED;
        runstate_set(RUN_STATE_POSTMIGRATE);
    }
278
    notifier_list_notify(&migration_state_notifiers, s);
279 280
}

281
static void migrate_fd_put_notify(void *opaque)
282
{
283
    MigrationState *s = opaque;
284 285 286

    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
    qemu_file_put_notify(s->file);
287
    if (s->file && qemu_file_get_error(s->file)) {
288 289
        migrate_fd_error(s);
    }
290 291
}

292 293
static ssize_t migrate_fd_put_buffer(void *opaque, const void *data,
                                     size_t size)
294
{
295
    MigrationState *s = opaque;
296 297
    ssize_t ret;

298 299 300 301
    if (s->state != MIG_STATE_ACTIVE) {
        return -EIO;
    }

302 303
    do {
        ret = s->write(s, data, size);
304
    } while (ret == -1 && ((s->get_error(s)) == EINTR));
305 306 307 308

    if (ret == -1)
        ret = -(s->get_error(s));

309
    if (ret == -EAGAIN) {
310
        qemu_set_fd_handler2(s->fd, NULL, NULL, migrate_fd_put_notify, s);
311
    }
312 313 314 315

    return ret;
}

316
static void migrate_fd_put_ready(void *opaque)
317
{
318
    MigrationState *s = opaque;
319 320 321
    int ret;

    if (s->state != MIG_STATE_ACTIVE) {
M
malc 已提交
322
        DPRINTF("put_ready returning because of non-active state\n");
323 324 325
        return;
    }

M
malc 已提交
326
    DPRINTF("iterate\n");
327
    ret = qemu_savevm_state_iterate(s->file);
J
Juan Quintela 已提交
328 329 330
    if (ret < 0) {
        migrate_fd_error(s);
    } else if (ret == 1) {
331
        int old_vm_running = runstate_is_running();
332

M
malc 已提交
333
        DPRINTF("done iterating\n");
G
Gerd Hoffmann 已提交
334
        qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
335
        vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
336

337
        if (qemu_savevm_state_complete(s->file) < 0) {
338
            migrate_fd_error(s);
339
        } else {
340
            migrate_fd_completed(s);
341
        }
J
Juan Quintela 已提交
342
        s->total_time = qemu_get_clock_ms(rt_clock) - s->total_time;
343
        if (s->state != MIG_STATE_COMPLETED) {
344 345 346
            if (old_vm_running) {
                vm_start();
            }
347
        }
348 349 350
    }
}

351
static void migrate_fd_cancel(MigrationState *s)
352 353 354 355
{
    if (s->state != MIG_STATE_ACTIVE)
        return;

M
malc 已提交
356
    DPRINTF("cancelling migration\n");
357 358

    s->state = MIG_STATE_CANCELLED;
359
    notifier_list_notify(&migration_state_notifiers, s);
360
    qemu_savevm_state_cancel(s->file);
361 362 363 364

    migrate_fd_cleanup(s);
}

365
static void migrate_fd_wait_for_unfreeze(void *opaque)
366
{
367
    MigrationState *s = opaque;
368 369
    int ret;

M
malc 已提交
370
    DPRINTF("wait for unfreeze\n");
371 372 373 374 375 376 377 378 379 380 381
    if (s->state != MIG_STATE_ACTIVE)
        return;

    do {
        fd_set wfds;

        FD_ZERO(&wfds);
        FD_SET(s->fd, &wfds);

        ret = select(s->fd + 1, NULL, &wfds, NULL, NULL);
    } while (ret == -1 && (s->get_error(s)) == EINTR);
382 383

    if (ret == -1) {
384
        qemu_file_set_error(s->file, -s->get_error(s));
385
    }
386 387
}

388
static int migrate_fd_close(void *opaque)
389
{
390
    MigrationState *s = opaque;
391 392

    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
393 394
    return s->close(s);
}
395 396 397 398 399 400 401 402

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 已提交
403
    notifier_remove(notify);
404 405
}

406 407 408 409 410
bool migration_is_active(MigrationState *s)
{
    return s->state == MIG_STATE_ACTIVE;
}

411
bool migration_has_finished(MigrationState *s)
412
{
413
    return s->state == MIG_STATE_COMPLETED;
414
}
415

416 417 418 419 420 421
bool migration_has_failed(MigrationState *s)
{
    return (s->state == MIG_STATE_CANCELLED ||
            s->state == MIG_STATE_ERROR);
}

422
void migrate_fd_connect(MigrationState *s)
423
{
424 425
    int ret;

426
    s->state = MIG_STATE_ACTIVE;
427 428 429 430 431 432 433 434
    s->file = qemu_fopen_ops_buffered(s,
                                      s->bandwidth_limit,
                                      migrate_fd_put_buffer,
                                      migrate_fd_put_ready,
                                      migrate_fd_wait_for_unfreeze,
                                      migrate_fd_close);

    DPRINTF("beginning savevm\n");
I
Isaku Yamahata 已提交
435
    ret = qemu_savevm_state_begin(s->file, &s->params);
436 437 438 439 440 441 442 443
    if (ret < 0) {
        DPRINTF("failed, %d\n", ret);
        migrate_fd_error(s);
        return;
    }
    migrate_fd_put_ready(s);
}

I
Isaku Yamahata 已提交
444
static MigrationState *migrate_init(const MigrationParams *params)
445
{
446
    MigrationState *s = migrate_get_current();
447
    int64_t bandwidth_limit = s->bandwidth_limit;
O
Orit Wasserman 已提交
448
    bool enabled_capabilities[MIGRATION_CAPABILITY_MAX];
449
    int64_t xbzrle_cache_size = s->xbzrle_cache_size;
O
Orit Wasserman 已提交
450 451 452

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

454
    memset(s, 0, sizeof(*s));
455
    s->bandwidth_limit = bandwidth_limit;
I
Isaku Yamahata 已提交
456
    s->params = *params;
O
Orit Wasserman 已提交
457 458
    memcpy(s->enabled_capabilities, enabled_capabilities,
           sizeof(enabled_capabilities));
459
    s->xbzrle_cache_size = xbzrle_cache_size;
460

461
    s->bandwidth_limit = bandwidth_limit;
462
    s->state = MIG_STATE_SETUP;
J
Juan Quintela 已提交
463
    s->total_time = qemu_get_clock_ms(rt_clock);
464 465 466

    return s;
}
467

A
Anthony Liguori 已提交
468 469 470 471 472 473 474 475 476 477 478 479
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);
}

L
Luiz Capitulino 已提交
480 481 482
void qmp_migrate(const char *uri, bool has_blk, bool blk,
                 bool has_inc, bool inc, bool has_detach, bool detach,
                 Error **errp)
483
{
484
    MigrationState *s = migrate_get_current();
I
Isaku Yamahata 已提交
485
    MigrationParams params;
486 487 488
    const char *p;
    int ret;

I
Isaku Yamahata 已提交
489 490 491
    params.blk = blk;
    params.shared = inc;

492
    if (s->state == MIG_STATE_ACTIVE) {
L
Luiz Capitulino 已提交
493 494
        error_set(errp, QERR_MIGRATION_ACTIVE);
        return;
495 496
    }

L
Luiz Capitulino 已提交
497 498
    if (qemu_savevm_state_blocked(errp)) {
        return;
499 500
    }

A
Anthony Liguori 已提交
501
    if (migration_blockers) {
L
Luiz Capitulino 已提交
502 503
        *errp = error_copy(migration_blockers->data);
        return;
A
Anthony Liguori 已提交
504 505
    }

I
Isaku Yamahata 已提交
506
    s = migrate_init(&params);
507 508

    if (strstart(uri, "tcp:", &p)) {
509
        ret = tcp_start_outgoing_migration(s, p, errp);
510 511 512 513 514 515 516 517
#if !defined(WIN32)
    } else if (strstart(uri, "exec:", &p)) {
        ret = exec_start_outgoing_migration(s, p);
    } else if (strstart(uri, "unix:", &p)) {
        ret = unix_start_outgoing_migration(s, p);
    } else if (strstart(uri, "fd:", &p)) {
        ret = fd_start_outgoing_migration(s, p);
#endif
518
    } else {
L
Luiz Capitulino 已提交
519 520
        error_set(errp, QERR_INVALID_PARAMETER_VALUE, "uri", "a valid migration protocol");
        return;
521 522 523
    }

    if (ret < 0) {
524 525 526 527 528
        if (!error_is_set(errp)) {
            DPRINTF("migration failed: %s\n", strerror(-ret));
            /* FIXME: we should return meaningful errors */
            error_set(errp, QERR_UNDEFINED_ERROR);
        }
L
Luiz Capitulino 已提交
529
        return;
530 531
    }

532
    notifier_list_notify(&migration_state_notifiers, s);
533 534
}

L
Luiz Capitulino 已提交
535
void qmp_migrate_cancel(Error **errp)
536
{
537
    migrate_fd_cancel(migrate_get_current());
538 539
}

540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
void qmp_migrate_set_cache_size(int64_t value, Error **errp)
{
    MigrationState *s = migrate_get_current();

    /* Check for truncation */
    if (value != (size_t)value) {
        error_set(errp, QERR_INVALID_PARAMETER_VALUE, "cache size",
                  "exceeding address space");
        return;
    }

    s->xbzrle_cache_size = xbzrle_cache_resize(value);
}

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

L
Luiz Capitulino 已提交
559
void qmp_migrate_set_speed(int64_t value, Error **errp)
560 561 562
{
    MigrationState *s;

L
Luiz Capitulino 已提交
563 564
    if (value < 0) {
        value = 0;
565
    }
566

567
    s = migrate_get_current();
L
Luiz Capitulino 已提交
568
    s->bandwidth_limit = value;
569
    qemu_file_set_rate_limit(s->file, s->bandwidth_limit);
570 571
}

572
void qmp_migrate_set_downtime(double value, Error **errp)
573
{
574 575 576
    value *= 1e9;
    value = MAX(0, MIN(UINT64_MAX, value));
    max_downtime = (uint64_t)value;
577
}
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595

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