migration.c 12.0 KB
Newer Older
A
aliguori 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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.
 *
 */

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

//#define DEBUG_MIGRATION

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

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

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

44 45 46
static NotifierList migration_state_notifiers =
    NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);

47 48 49 50 51 52 53 54
/* 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,
55
        .bandwidth_limit = MAX_THROTTLE,
56 57 58 59 60
    };

    return &current_migration;
}

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

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

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

92
    if (autostart) {
93
        vm_start();
94
    } else {
95
        runstate_set(RUN_STATE_PRELAUNCH);
96
    }
97 98
}

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

L
Luiz Capitulino 已提交
123 124 125 126 127
        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();
128 129

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

    return info;
A
aliguori 已提交
152 153
}

154 155
/* shared migration helpers */

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

166
static int migrate_fd_cleanup(MigrationState *s)
167
{
168 169
    int ret = 0;

170 171 172
    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);

    if (s->file) {
M
malc 已提交
173
        DPRINTF("closing file\n");
174 175 176
        if (qemu_fclose(s->file) != 0) {
            ret = -1;
        }
177
        s->file = NULL;
178 179 180 181
    } else {
        if (s->mon) {
            monitor_resume(s->mon);
        }
182 183
    }

184
    if (s->fd != -1) {
185
        close(s->fd);
186
        s->fd = -1;
187
    }
188

189
    return ret;
190 191
}

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

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

212
static void migrate_fd_put_notify(void *opaque)
213
{
214
    MigrationState *s = opaque;
215 216 217

    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
    qemu_file_put_notify(s->file);
218
    if (s->file && qemu_file_get_error(s->file)) {
219 220
        migrate_fd_error(s);
    }
221 222
}

223 224
static ssize_t migrate_fd_put_buffer(void *opaque, const void *data,
                                     size_t size)
225
{
226
    MigrationState *s = opaque;
227 228
    ssize_t ret;

229 230 231 232
    if (s->state != MIG_STATE_ACTIVE) {
        return -EIO;
    }

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

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

240
    if (ret == -EAGAIN) {
241
        qemu_set_fd_handler2(s->fd, NULL, NULL, migrate_fd_put_notify, s);
242
    }
243 244 245 246

    return ret;
}

247
static void migrate_fd_put_ready(void *opaque)
248
{
249
    MigrationState *s = opaque;
250 251 252
    int ret;

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

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

M
malc 已提交
264
        DPRINTF("done iterating\n");
265
        vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
266

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

280
static void migrate_fd_cancel(MigrationState *s)
281 282 283 284
{
    if (s->state != MIG_STATE_ACTIVE)
        return;

M
malc 已提交
285
    DPRINTF("cancelling migration\n");
286 287

    s->state = MIG_STATE_CANCELLED;
288
    notifier_list_notify(&migration_state_notifiers, s);
289
    qemu_savevm_state_cancel(s->mon, s->file);
290 291 292 293

    migrate_fd_cleanup(s);
}

294
static void migrate_fd_wait_for_unfreeze(void *opaque)
295
{
296
    MigrationState *s = opaque;
297 298
    int ret;

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

    if (ret == -1) {
313
        qemu_file_set_error(s->file, -s->get_error(s));
314
    }
315 316
}

317
static int migrate_fd_close(void *opaque)
318
{
319
    MigrationState *s = opaque;
320

321 322 323
    if (s->mon) {
        monitor_resume(s->mon);
    }
324
    qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
325 326
    return s->close(s);
}
327 328 329 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)
{
    notifier_list_remove(&migration_state_notifiers, notify);
}

338 339 340 341 342
bool migration_is_active(MigrationState *s)
{
    return s->state == MIG_STATE_ACTIVE;
}

343
bool migration_has_finished(MigrationState *s)
344
{
345
    return s->state == MIG_STATE_COMPLETED;
346
}
347

348 349 350 351 352 353
bool migration_has_failed(MigrationState *s)
{
    return (s->state == MIG_STATE_CANCELLED ||
            s->state == MIG_STATE_ERROR);
}

354
void migrate_fd_connect(MigrationState *s)
355
{
356 357
    int ret;

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

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

381
    memset(s, 0, sizeof(*s));
382
    s->bandwidth_limit = bandwidth_limit;
383 384
    s->blk = blk;
    s->shared = inc;
385 386 387 388 389 390

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

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

    return s;
}
400

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

413 414
int do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data)
{
415
    MigrationState *s = migrate_get_current();
416 417 418 419 420 421 422
    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;

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

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

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

438
    s = migrate_init(mon, detach, blk, inc);
439 440 441 442 443 444 445 446 447 448 449

    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
450
    } else {
451 452 453 454 455
        monitor_printf(mon, "unknown migration protocol: %s\n", uri);
        ret  = -EINVAL;
    }

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

460 461 462 463
    if (detach) {
        s->mon = NULL;
    }

464
    notifier_list_notify(&migration_state_notifiers, s);
465 466 467 468 469
    return 0;
}

int do_migrate_cancel(Monitor *mon, const QDict *qdict, QObject **ret_data)
{
470
    migrate_fd_cancel(migrate_get_current());
471 472 473 474 475 476 477 478 479 480 481
    return 0;
}

int do_migrate_set_speed(Monitor *mon, const QDict *qdict, QObject **ret_data)
{
    int64_t d;
    MigrationState *s;

    d = qdict_get_int(qdict, "value");
    if (d < 0) {
        d = 0;
482
    }
483

484
    s = migrate_get_current();
485 486
    s->bandwidth_limit = d;
    qemu_file_set_rate_limit(s->file, s->bandwidth_limit);
487 488 489 490 491 492 493 494 495 496 497 498 499 500

    return 0;
}

int do_migrate_set_downtime(Monitor *mon, const QDict *qdict,
                            QObject **ret_data)
{
    double d;

    d = qdict_get_double(qdict, "value") * 1e9;
    d = MAX(0, MIN(UINT64_MAX, d));
    max_downtime = (uint64_t)d;

    return 0;
501
}