migration.c 11.3 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;
}

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

    if (strstart(uri, "tcp:", &p))
69
        ret = tcp_start_incoming_migration(p, errp);
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
    bdrv_clear_incoming_migration_all();
95 96 97
    /* Make sure all file formats flush their mutable metadata */
    bdrv_invalidate_cache_all();

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

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

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

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

    return info;
A
aliguori 已提交
158 159
}

160 161
/* shared migration helpers */

162
static int migrate_fd_cleanup(MigrationState *s)
163
{
164 165
    int ret = 0;

166 167 168
    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);

    if (s->file) {
M
malc 已提交
169
        DPRINTF("closing file\n");
170
        ret = qemu_fclose(s->file);
171
        s->file = NULL;
172 173
    }

174
    if (s->fd != -1) {
175
        close(s->fd);
176
        s->fd = -1;
177
    }
178

179
    return ret;
180 181
}

182
void migrate_fd_error(MigrationState *s)
183
{
184 185
    DPRINTF("setting error state\n");
    s->state = MIG_STATE_ERROR;
186
    notifier_list_notify(&migration_state_notifiers, s);
187 188 189
    migrate_fd_cleanup(s);
}

190 191 192 193 194 195 196 197 198
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);
    }
199
    notifier_list_notify(&migration_state_notifiers, s);
200 201
}

202
static void migrate_fd_put_notify(void *opaque)
203
{
204
    MigrationState *s = opaque;
205 206 207

    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
    qemu_file_put_notify(s->file);
208
    if (s->file && qemu_file_get_error(s->file)) {
209 210
        migrate_fd_error(s);
    }
211 212
}

213 214
static ssize_t migrate_fd_put_buffer(void *opaque, const void *data,
                                     size_t size)
215
{
216
    MigrationState *s = opaque;
217 218
    ssize_t ret;

219 220 221 222
    if (s->state != MIG_STATE_ACTIVE) {
        return -EIO;
    }

223 224
    do {
        ret = s->write(s, data, size);
225
    } while (ret == -1 && ((s->get_error(s)) == EINTR));
226 227 228 229

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

230
    if (ret == -EAGAIN) {
231
        qemu_set_fd_handler2(s->fd, NULL, NULL, migrate_fd_put_notify, s);
232
    }
233 234 235 236

    return ret;
}

237
static void migrate_fd_put_ready(void *opaque)
238
{
239
    MigrationState *s = opaque;
240 241 242
    int ret;

    if (s->state != MIG_STATE_ACTIVE) {
M
malc 已提交
243
        DPRINTF("put_ready returning because of non-active state\n");
244 245 246
        return;
    }

M
malc 已提交
247
    DPRINTF("iterate\n");
248
    ret = qemu_savevm_state_iterate(s->file);
J
Juan Quintela 已提交
249 250 251
    if (ret < 0) {
        migrate_fd_error(s);
    } else if (ret == 1) {
252
        int old_vm_running = runstate_is_running();
253

M
malc 已提交
254
        DPRINTF("done iterating\n");
G
Gerd Hoffmann 已提交
255
        qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
256
        vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
257

258
        if (qemu_savevm_state_complete(s->file) < 0) {
259
            migrate_fd_error(s);
260
        } else {
261
            migrate_fd_completed(s);
262
        }
263
        if (s->state != MIG_STATE_COMPLETED) {
264 265 266
            if (old_vm_running) {
                vm_start();
            }
267
        }
268 269 270
    }
}

271
static void migrate_fd_cancel(MigrationState *s)
272 273 274 275
{
    if (s->state != MIG_STATE_ACTIVE)
        return;

M
malc 已提交
276
    DPRINTF("cancelling migration\n");
277 278

    s->state = MIG_STATE_CANCELLED;
279
    notifier_list_notify(&migration_state_notifiers, s);
280
    qemu_savevm_state_cancel(s->file);
281 282 283 284

    migrate_fd_cleanup(s);
}

285
static void migrate_fd_wait_for_unfreeze(void *opaque)
286
{
287
    MigrationState *s = opaque;
288 289
    int ret;

M
malc 已提交
290
    DPRINTF("wait for unfreeze\n");
291 292 293 294 295 296 297 298 299 300 301
    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);
302 303

    if (ret == -1) {
304
        qemu_file_set_error(s->file, -s->get_error(s));
305
    }
306 307
}

308
static int migrate_fd_close(void *opaque)
309
{
310
    MigrationState *s = opaque;
311 312

    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
313 314
    return s->close(s);
}
315 316 317 318 319 320 321 322

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 已提交
323
    notifier_remove(notify);
324 325
}

326 327 328 329 330
bool migration_is_active(MigrationState *s)
{
    return s->state == MIG_STATE_ACTIVE;
}

331
bool migration_has_finished(MigrationState *s)
332
{
333
    return s->state == MIG_STATE_COMPLETED;
334
}
335

336 337 338 339 340 341
bool migration_has_failed(MigrationState *s)
{
    return (s->state == MIG_STATE_CANCELLED ||
            s->state == MIG_STATE_ERROR);
}

342
void migrate_fd_connect(MigrationState *s)
343
{
344 345
    int ret;

346
    s->state = MIG_STATE_ACTIVE;
347 348 349 350 351 352 353 354
    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 已提交
355
    ret = qemu_savevm_state_begin(s->file, &s->params);
356 357 358 359 360 361 362 363
    if (ret < 0) {
        DPRINTF("failed, %d\n", ret);
        migrate_fd_error(s);
        return;
    }
    migrate_fd_put_ready(s);
}

I
Isaku Yamahata 已提交
364
static MigrationState *migrate_init(const MigrationParams *params)
365
{
366
    MigrationState *s = migrate_get_current();
367
    int64_t bandwidth_limit = s->bandwidth_limit;
368

369
    memset(s, 0, sizeof(*s));
370
    s->bandwidth_limit = bandwidth_limit;
I
Isaku Yamahata 已提交
371
    s->params = *params;
372

373
    s->bandwidth_limit = bandwidth_limit;
374
    s->state = MIG_STATE_SETUP;
375 376 377

    return s;
}
378

A
Anthony Liguori 已提交
379 380 381 382 383 384 385 386 387 388 389 390
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 已提交
391 392 393
void qmp_migrate(const char *uri, bool has_blk, bool blk,
                 bool has_inc, bool inc, bool has_detach, bool detach,
                 Error **errp)
394
{
395
    MigrationState *s = migrate_get_current();
I
Isaku Yamahata 已提交
396
    MigrationParams params;
397 398 399
    const char *p;
    int ret;

I
Isaku Yamahata 已提交
400 401 402
    params.blk = blk;
    params.shared = inc;

403
    if (s->state == MIG_STATE_ACTIVE) {
L
Luiz Capitulino 已提交
404 405
        error_set(errp, QERR_MIGRATION_ACTIVE);
        return;
406 407
    }

L
Luiz Capitulino 已提交
408 409
    if (qemu_savevm_state_blocked(errp)) {
        return;
410 411
    }

A
Anthony Liguori 已提交
412
    if (migration_blockers) {
L
Luiz Capitulino 已提交
413 414
        *errp = error_copy(migration_blockers->data);
        return;
A
Anthony Liguori 已提交
415 416
    }

I
Isaku Yamahata 已提交
417
    s = migrate_init(&params);
418 419

    if (strstart(uri, "tcp:", &p)) {
420
        ret = tcp_start_outgoing_migration(s, p, errp);
421 422 423 424 425 426 427 428
#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
429
    } else {
L
Luiz Capitulino 已提交
430 431
        error_set(errp, QERR_INVALID_PARAMETER_VALUE, "uri", "a valid migration protocol");
        return;
432 433 434
    }

    if (ret < 0) {
435 436 437 438 439
        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 已提交
440
        return;
441 442
    }

443
    notifier_list_notify(&migration_state_notifiers, s);
444 445
}

L
Luiz Capitulino 已提交
446
void qmp_migrate_cancel(Error **errp)
447
{
448
    migrate_fd_cancel(migrate_get_current());
449 450
}

L
Luiz Capitulino 已提交
451
void qmp_migrate_set_speed(int64_t value, Error **errp)
452 453 454
{
    MigrationState *s;

L
Luiz Capitulino 已提交
455 456
    if (value < 0) {
        value = 0;
457
    }
458

459
    s = migrate_get_current();
L
Luiz Capitulino 已提交
460
    s->bandwidth_limit = value;
461
    qemu_file_set_rate_limit(s->file, s->bandwidth_limit);
462 463
}

464
void qmp_migrate_set_downtime(double value, Error **errp)
465
{
466 467 468
    value *= 1e9;
    value = MAX(0, MIN(UINT64_MAX, value));
    max_downtime = (uint64_t)value;
469
}