migration.c 11.9 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
static NotifierList migration_state_notifiers =
    NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);

49 50 51 52 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 */

static MigrationState *migrate_get_current(void)
{
    static MigrationState current_migration = {
        .state = MIG_STATE_SETUP,
57
        .bandwidth_limit = MAX_THROTTLE,
58 59 60 61 62
    };

    return &current_migration;
}

J
Juan Quintela 已提交
63
int qemu_start_incoming_migration(const char *uri)
A
aliguori 已提交
64
{
A
aliguori 已提交
65
    const char *p;
J
Juan Quintela 已提交
66
    int ret;
A
aliguori 已提交
67 68

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

85 86 87 88 89 90 91 92 93
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");

94 95 96
    /* Make sure all file formats flush their mutable metadata */
    bdrv_invalidate_cache_all();

97
    if (autostart) {
98
        vm_start();
99
    } else {
100
        runstate_set(RUN_STATE_PRELAUNCH);
101
    }
102 103
}

104 105 106 107 108 109 110 111 112 113 114
/* 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;
}

L
Luiz Capitulino 已提交
115
MigrationInfo *qmp_query_migrate(Error **errp)
A
aliguori 已提交
116
{
L
Luiz Capitulino 已提交
117
    MigrationInfo *info = g_malloc0(sizeof(*info));
118 119 120 121 122 123 124
    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 已提交
125 126
        info->has_status = true;
        info->status = g_strdup("active");
127

L
Luiz Capitulino 已提交
128 129 130 131 132
        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();
133 134

        if (blk_mig_active()) {
L
Luiz Capitulino 已提交
135 136 137 138 139
            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 已提交
140
        }
141 142
        break;
    case MIG_STATE_COMPLETED:
L
Luiz Capitulino 已提交
143 144
        info->has_status = true;
        info->status = g_strdup("completed");
145 146
        break;
    case MIG_STATE_ERROR:
L
Luiz Capitulino 已提交
147 148
        info->has_status = true;
        info->status = g_strdup("failed");
149 150
        break;
    case MIG_STATE_CANCELLED:
L
Luiz Capitulino 已提交
151 152
        info->has_status = true;
        info->status = g_strdup("cancelled");
153
        break;
A
aliguori 已提交
154
    }
L
Luiz Capitulino 已提交
155 156

    return info;
A
aliguori 已提交
157 158
}

159 160
/* shared migration helpers */

161
static void migrate_fd_monitor_suspend(MigrationState *s, Monitor *mon)
162
{
163
    if (monitor_suspend(mon) == 0) {
M
malc 已提交
164
        DPRINTF("suspending monitor\n");
165 166
    } else {
        monitor_printf(mon, "terminal does not allow synchronous "
167
                       "migration, continuing detached\n");
168
    }
169 170
}

171
static int migrate_fd_cleanup(MigrationState *s)
172
{
173 174
    int ret = 0;

175 176 177
    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);

    if (s->file) {
M
malc 已提交
178
        DPRINTF("closing file\n");
179
        ret = qemu_fclose(s->file);
180
        s->file = NULL;
181 182 183 184
    } else {
        if (s->mon) {
            monitor_resume(s->mon);
        }
185 186
    }

187
    if (s->fd != -1) {
188
        close(s->fd);
189
        s->fd = -1;
190
    }
191

192
    return ret;
193 194
}

195
void migrate_fd_error(MigrationState *s)
196
{
197 198
    DPRINTF("setting error state\n");
    s->state = MIG_STATE_ERROR;
199
    notifier_list_notify(&migration_state_notifiers, s);
200 201 202
    migrate_fd_cleanup(s);
}

203 204 205 206 207 208 209 210 211
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);
    }
212
    notifier_list_notify(&migration_state_notifiers, s);
213 214
}

215
static void migrate_fd_put_notify(void *opaque)
216
{
217
    MigrationState *s = opaque;
218 219 220

    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
    qemu_file_put_notify(s->file);
221
    if (s->file && qemu_file_get_error(s->file)) {
222 223
        migrate_fd_error(s);
    }
224 225
}

226 227
static ssize_t migrate_fd_put_buffer(void *opaque, const void *data,
                                     size_t size)
228
{
229
    MigrationState *s = opaque;
230 231
    ssize_t ret;

232 233 234 235
    if (s->state != MIG_STATE_ACTIVE) {
        return -EIO;
    }

236 237
    do {
        ret = s->write(s, data, size);
238
    } while (ret == -1 && ((s->get_error(s)) == EINTR));
239 240 241 242

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

243
    if (ret == -EAGAIN) {
244
        qemu_set_fd_handler2(s->fd, NULL, NULL, migrate_fd_put_notify, s);
245
    }
246 247 248 249

    return ret;
}

250
static void migrate_fd_put_ready(void *opaque)
251
{
252
    MigrationState *s = opaque;
253 254 255
    int ret;

    if (s->state != MIG_STATE_ACTIVE) {
M
malc 已提交
256
        DPRINTF("put_ready returning because of non-active state\n");
257 258 259
        return;
    }

M
malc 已提交
260
    DPRINTF("iterate\n");
261
    ret = qemu_savevm_state_iterate(s->file);
J
Juan Quintela 已提交
262 263 264
    if (ret < 0) {
        migrate_fd_error(s);
    } else if (ret == 1) {
265
        int old_vm_running = runstate_is_running();
266

M
malc 已提交
267
        DPRINTF("done iterating\n");
268
        vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
269

270
        if (qemu_savevm_state_complete(s->file) < 0) {
271
            migrate_fd_error(s);
272
        } else {
273
            migrate_fd_completed(s);
274
        }
275
        if (s->state != MIG_STATE_COMPLETED) {
276 277 278
            if (old_vm_running) {
                vm_start();
            }
279
        }
280 281 282
    }
}

283
static void migrate_fd_cancel(MigrationState *s)
284 285 286 287
{
    if (s->state != MIG_STATE_ACTIVE)
        return;

M
malc 已提交
288
    DPRINTF("cancelling migration\n");
289 290

    s->state = MIG_STATE_CANCELLED;
291
    notifier_list_notify(&migration_state_notifiers, s);
292
    qemu_savevm_state_cancel(s->file);
293 294 295 296

    migrate_fd_cleanup(s);
}

297
static void migrate_fd_wait_for_unfreeze(void *opaque)
298
{
299
    MigrationState *s = opaque;
300 301
    int ret;

M
malc 已提交
302
    DPRINTF("wait for unfreeze\n");
303 304 305 306 307 308 309 310 311 312 313
    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);
314 315

    if (ret == -1) {
316
        qemu_file_set_error(s->file, -s->get_error(s));
317
    }
318 319
}

320
static int migrate_fd_close(void *opaque)
321
{
322
    MigrationState *s = opaque;
323

324 325 326
    if (s->mon) {
        monitor_resume(s->mon);
    }
327
    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
328 329
    return s->close(s);
}
330 331 332 333 334 335 336 337

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 已提交
338
    notifier_remove(notify);
339 340
}

341 342 343 344 345
bool migration_is_active(MigrationState *s)
{
    return s->state == MIG_STATE_ACTIVE;
}

346
bool migration_has_finished(MigrationState *s)
347
{
348
    return s->state == MIG_STATE_COMPLETED;
349
}
350

351 352 353 354 355 356
bool migration_has_failed(MigrationState *s)
{
    return (s->state == MIG_STATE_CANCELLED ||
            s->state == MIG_STATE_ERROR);
}

357
void migrate_fd_connect(MigrationState *s)
358
{
359 360
    int ret;

361
    s->state = MIG_STATE_ACTIVE;
362 363 364 365 366 367 368 369
    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");
370
    ret = qemu_savevm_state_begin(s->file, s->blk, s->shared);
371 372 373 374 375 376 377 378
    if (ret < 0) {
        DPRINTF("failed, %d\n", ret);
        migrate_fd_error(s);
        return;
    }
    migrate_fd_put_ready(s);
}

379
static MigrationState *migrate_init(Monitor *mon, int detach, int blk, int inc)
380
{
381
    MigrationState *s = migrate_get_current();
382
    int64_t bandwidth_limit = s->bandwidth_limit;
383

384
    memset(s, 0, sizeof(*s));
385
    s->bandwidth_limit = bandwidth_limit;
386 387
    s->blk = blk;
    s->shared = inc;
388 389 390 391 392 393

    /* s->mon is used for two things:
       - pass fd in fd migration
       - suspend/resume monitor for not detached migration
    */
    s->mon = mon;
394
    s->bandwidth_limit = bandwidth_limit;
395
    s->state = MIG_STATE_SETUP;
396 397 398 399 400 401 402

    if (!detach) {
        migrate_fd_monitor_suspend(s, mon);
    }

    return s;
}
403

A
Anthony Liguori 已提交
404 405 406 407 408 409 410 411 412 413 414 415
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);
}

416 417
int do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data)
{
418
    MigrationState *s = migrate_get_current();
419 420 421 422 423 424 425
    const char *p;
    int detach = qdict_get_try_bool(qdict, "detach", 0);
    int blk = qdict_get_try_bool(qdict, "blk", 0);
    int inc = qdict_get_try_bool(qdict, "inc", 0);
    const char *uri = qdict_get_str(qdict, "uri");
    int ret;

426
    if (s->state == MIG_STATE_ACTIVE) {
427 428 429 430 431 432 433 434
        monitor_printf(mon, "migration already in progress\n");
        return -1;
    }

    if (qemu_savevm_state_blocked(mon)) {
        return -1;
    }

A
Anthony Liguori 已提交
435 436 437 438 439 440
    if (migration_blockers) {
        Error *err = migration_blockers->data;
        qerror_report_err(err);
        return -1;
    }

441
    s = migrate_init(mon, detach, blk, inc);
442 443 444 445 446 447 448 449 450 451 452

    if (strstart(uri, "tcp:", &p)) {
        ret = tcp_start_outgoing_migration(s, p);
#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
453
    } else {
454 455 456 457 458
        monitor_printf(mon, "unknown migration protocol: %s\n", uri);
        ret  = -EINVAL;
    }

    if (ret < 0) {
459 460
        monitor_printf(mon, "migration failed: %s\n", strerror(-ret));
        return ret;
461 462
    }

463 464 465 466
    if (detach) {
        s->mon = NULL;
    }

467
    notifier_list_notify(&migration_state_notifiers, s);
468 469 470
    return 0;
}

L
Luiz Capitulino 已提交
471
void qmp_migrate_cancel(Error **errp)
472
{
473
    migrate_fd_cancel(migrate_get_current());
474 475
}

L
Luiz Capitulino 已提交
476
void qmp_migrate_set_speed(int64_t value, Error **errp)
477 478 479
{
    MigrationState *s;

L
Luiz Capitulino 已提交
480 481
    if (value < 0) {
        value = 0;
482
    }
483

484
    s = migrate_get_current();
L
Luiz Capitulino 已提交
485
    s->bandwidth_limit = value;
486
    qemu_file_set_rate_limit(s->file, s->bandwidth_limit);
487 488
}

489
void qmp_migrate_set_downtime(double value, Error **errp)
490
{
491 492 493
    value *= 1e9;
    value = MAX(0, MIN(UINT64_MAX, value));
    max_downtime = (uint64_t)value;
494
}