2008-10-13 05:12:02 +02:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
2012-01-13 17:44:23 +01:00
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2008-10-13 05:12:02 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:19:50 +01:00
|
|
|
#include "migration/migration.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "monitor/monitor.h"
|
2012-10-03 14:18:33 +02:00
|
|
|
#include "migration/qemu-file.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2012-12-17 18:19:44 +01:00
|
|
|
#include "block/block.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/sockets.h"
|
2012-12-17 18:19:50 +01:00
|
|
|
#include "migration/block.h"
|
2012-07-23 05:45:29 +02:00
|
|
|
#include "qemu/thread.h"
|
2011-09-13 22:37:16 +02:00
|
|
|
#include "qmp-commands.h"
|
2008-11-11 17:46:33 +01:00
|
|
|
|
|
|
|
//#define DEBUG_MIGRATION
|
|
|
|
|
|
|
|
#ifdef DEBUG_MIGRATION
|
2010-02-07 00:03:50 +01:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2008-11-11 17:46:33 +01:00
|
|
|
do { printf("migration: " fmt, ## __VA_ARGS__); } while (0)
|
|
|
|
#else
|
2010-02-07 00:03:50 +01:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2008-11-11 17:46:33 +01:00
|
|
|
do { } while (0)
|
|
|
|
#endif
|
2008-10-13 05:12:02 +02:00
|
|
|
|
2011-02-23 00:48:46 +01:00
|
|
|
enum {
|
|
|
|
MIG_STATE_ERROR,
|
|
|
|
MIG_STATE_SETUP,
|
|
|
|
MIG_STATE_CANCELLED,
|
|
|
|
MIG_STATE_ACTIVE,
|
|
|
|
MIG_STATE_COMPLETED,
|
|
|
|
};
|
2008-10-13 05:12:02 +02:00
|
|
|
|
2011-02-23 00:33:19 +01:00
|
|
|
#define MAX_THROTTLE (32 << 20) /* Migration speed throttling */
|
2008-10-13 05:12:02 +02:00
|
|
|
|
2012-12-19 10:40:48 +01:00
|
|
|
/* Amount of time to allocate to each "chunk" of bandwidth-throttled
|
|
|
|
* data. */
|
|
|
|
#define BUFFER_DELAY 100
|
|
|
|
#define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY)
|
|
|
|
|
2012-08-06 20:42:53 +02:00
|
|
|
/* Migration XBZRLE default cache size */
|
|
|
|
#define DEFAULT_MIGRATE_CACHE_SIZE (64 * 1024 * 1024)
|
|
|
|
|
2010-12-13 17:30:12 +01:00
|
|
|
static NotifierList migration_state_notifiers =
|
|
|
|
NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
|
|
|
|
|
2011-10-05 13:50:43 +02:00
|
|
|
/* When we add fault tolerance, we could have several
|
|
|
|
migrations at once. For now we don't need to add
|
|
|
|
dynamic creation of migration */
|
|
|
|
|
2012-08-13 09:42:49 +02:00
|
|
|
MigrationState *migrate_get_current(void)
|
2011-10-05 13:50:43 +02:00
|
|
|
{
|
|
|
|
static MigrationState current_migration = {
|
|
|
|
.state = MIG_STATE_SETUP,
|
2011-02-23 00:33:19 +01:00
|
|
|
.bandwidth_limit = MAX_THROTTLE,
|
2012-08-06 20:42:53 +02:00
|
|
|
.xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE,
|
2011-10-05 13:50:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return ¤t_migration;
|
|
|
|
}
|
|
|
|
|
2012-10-02 18:21:18 +02:00
|
|
|
void qemu_start_incoming_migration(const char *uri, Error **errp)
|
2008-10-13 05:12:02 +02:00
|
|
|
{
|
2008-10-13 05:14:31 +02:00
|
|
|
const char *p;
|
|
|
|
|
|
|
|
if (strstart(uri, "tcp:", &p))
|
2012-10-02 18:21:18 +02:00
|
|
|
tcp_start_incoming_migration(p, errp);
|
2008-11-11 17:46:33 +01:00
|
|
|
#if !defined(WIN32)
|
|
|
|
else if (strstart(uri, "exec:", &p))
|
2012-10-02 18:21:18 +02:00
|
|
|
exec_start_incoming_migration(p, errp);
|
2009-08-05 17:24:29 +02:00
|
|
|
else if (strstart(uri, "unix:", &p))
|
2012-10-02 18:21:18 +02:00
|
|
|
unix_start_incoming_migration(p, errp);
|
2009-08-18 15:56:25 +02:00
|
|
|
else if (strstart(uri, "fd:", &p))
|
2012-10-02 18:21:18 +02:00
|
|
|
fd_start_incoming_migration(p, errp);
|
2008-11-11 17:46:33 +01:00
|
|
|
#endif
|
2010-06-09 14:10:54 +02:00
|
|
|
else {
|
error: Strip trailing '\n' from error string arguments (again)
Commit 6daf194d and be62a2eb got rid of a bunch, but they keep coming
back. Tracked down with this Coccinelle semantic patch:
@r@
expression err, eno, cls, fmt;
position p;
@@
(
error_report(fmt, ...)@p
|
error_set(err, cls, fmt, ...)@p
|
error_set_errno(err, eno, cls, fmt, ...)@p
|
error_setg(err, fmt, ...)@p
|
error_setg_errno(err, eno, fmt, ...)@p
)
@script:python@
fmt << r.fmt;
p << r.p;
@@
if "\\n" in str(fmt):
print "%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1360354939-10994-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2013-02-08 21:22:16 +01:00
|
|
|
error_setg(errp, "unknown migration protocol: %s", uri);
|
2010-06-09 14:10:54 +02:00
|
|
|
}
|
2008-10-13 05:12:02 +02:00
|
|
|
}
|
|
|
|
|
2012-08-07 10:57:43 +02:00
|
|
|
static void process_incoming_migration_co(void *opaque)
|
2010-06-09 14:10:55 +02:00
|
|
|
{
|
2012-08-07 10:57:43 +02:00
|
|
|
QEMUFile *f = opaque;
|
2012-08-07 10:51:51 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = qemu_loadvm_state(f);
|
|
|
|
qemu_fclose(f);
|
|
|
|
if (ret < 0) {
|
2010-06-09 14:10:55 +02:00
|
|
|
fprintf(stderr, "load of migration failed\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
qemu_announce_self();
|
|
|
|
DPRINTF("successfully loaded vm state\n");
|
|
|
|
|
2012-03-23 08:36:52 +01:00
|
|
|
bdrv_clear_incoming_migration_all();
|
2011-11-14 22:09:45 +01:00
|
|
|
/* Make sure all file formats flush their mutable metadata */
|
|
|
|
bdrv_invalidate_cache_all();
|
|
|
|
|
2011-07-29 20:04:45 +02:00
|
|
|
if (autostart) {
|
2010-06-09 14:10:55 +02:00
|
|
|
vm_start();
|
2011-07-29 20:04:45 +02:00
|
|
|
} else {
|
2012-10-19 16:45:24 +02:00
|
|
|
runstate_set(RUN_STATE_PAUSED);
|
2011-07-29 20:04:45 +02:00
|
|
|
}
|
2010-06-09 14:10:55 +02:00
|
|
|
}
|
|
|
|
|
2012-08-07 10:57:43 +02:00
|
|
|
void process_incoming_migration(QEMUFile *f)
|
|
|
|
{
|
|
|
|
Coroutine *co = qemu_coroutine_create(process_incoming_migration_co);
|
|
|
|
int fd = qemu_get_fd(f);
|
|
|
|
|
|
|
|
assert(fd != -1);
|
|
|
|
socket_set_nonblock(fd);
|
|
|
|
qemu_coroutine_enter(co, f);
|
|
|
|
}
|
|
|
|
|
2009-05-28 21:22:57 +02:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2012-08-06 20:42:47 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-08-06 20:42:57 +02:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-13 22:37:16 +02:00
|
|
|
MigrationInfo *qmp_query_migrate(Error **errp)
|
2008-10-13 05:12:02 +02:00
|
|
|
{
|
2011-09-13 22:37:16 +02:00
|
|
|
MigrationInfo *info = g_malloc0(sizeof(*info));
|
2011-10-05 13:50:43 +02:00
|
|
|
MigrationState *s = migrate_get_current();
|
|
|
|
|
|
|
|
switch (s->state) {
|
|
|
|
case MIG_STATE_SETUP:
|
|
|
|
/* no migration has happened ever */
|
|
|
|
break;
|
|
|
|
case MIG_STATE_ACTIVE:
|
2011-09-13 22:37:16 +02:00
|
|
|
info->has_status = true;
|
|
|
|
info->status = g_strdup("active");
|
2012-08-18 13:17:10 +02:00
|
|
|
info->has_total_time = true;
|
|
|
|
info->total_time = qemu_get_clock_ms(rt_clock)
|
|
|
|
- s->total_time;
|
2012-08-13 09:53:12 +02:00
|
|
|
info->has_expected_downtime = true;
|
|
|
|
info->expected_downtime = s->expected_downtime;
|
2011-10-05 13:50:43 +02:00
|
|
|
|
2011-09-13 22:37:16 +02:00
|
|
|
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();
|
2012-08-06 20:42:56 +02:00
|
|
|
info->ram->duplicate = dup_mig_pages_transferred();
|
|
|
|
info->ram->normal = norm_mig_pages_transferred();
|
|
|
|
info->ram->normal_bytes = norm_mig_bytes_transferred();
|
2012-08-13 12:31:25 +02:00
|
|
|
info->ram->dirty_pages_rate = s->dirty_pages_rate;
|
|
|
|
|
2011-10-05 13:50:43 +02:00
|
|
|
|
|
|
|
if (blk_mig_active()) {
|
2011-09-13 22:37:16 +02:00
|
|
|
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();
|
2008-10-25 00:10:31 +02:00
|
|
|
}
|
2012-08-06 20:42:57 +02:00
|
|
|
|
|
|
|
get_xbzrle_cache_stats(info);
|
2011-10-05 13:50:43 +02:00
|
|
|
break;
|
|
|
|
case MIG_STATE_COMPLETED:
|
2012-08-06 20:42:57 +02:00
|
|
|
get_xbzrle_cache_stats(info);
|
|
|
|
|
2011-09-13 22:37:16 +02:00
|
|
|
info->has_status = true;
|
|
|
|
info->status = g_strdup("completed");
|
2012-08-18 13:17:10 +02:00
|
|
|
info->total_time = s->total_time;
|
2012-08-13 09:35:16 +02:00
|
|
|
info->has_downtime = true;
|
|
|
|
info->downtime = s->downtime;
|
2012-05-21 22:01:07 +02:00
|
|
|
|
|
|
|
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();
|
2012-08-06 20:42:56 +02:00
|
|
|
info->ram->duplicate = dup_mig_pages_transferred();
|
|
|
|
info->ram->normal = norm_mig_pages_transferred();
|
|
|
|
info->ram->normal_bytes = norm_mig_bytes_transferred();
|
2011-10-05 13:50:43 +02:00
|
|
|
break;
|
|
|
|
case MIG_STATE_ERROR:
|
2011-09-13 22:37:16 +02:00
|
|
|
info->has_status = true;
|
|
|
|
info->status = g_strdup("failed");
|
2011-10-05 13:50:43 +02:00
|
|
|
break;
|
|
|
|
case MIG_STATE_CANCELLED:
|
2011-09-13 22:37:16 +02:00
|
|
|
info->has_status = true;
|
|
|
|
info->status = g_strdup("cancelled");
|
2011-10-05 13:50:43 +02:00
|
|
|
break;
|
2008-10-13 05:12:02 +02:00
|
|
|
}
|
2011-09-13 22:37:16 +02:00
|
|
|
|
|
|
|
return info;
|
2008-10-13 05:12:02 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 20:42:48 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-11 17:46:33 +01:00
|
|
|
/* shared migration helpers */
|
|
|
|
|
2011-09-11 20:28:22 +02:00
|
|
|
static int migrate_fd_cleanup(MigrationState *s)
|
2008-11-11 17:46:33 +01:00
|
|
|
{
|
2010-06-02 21:55:25 +02:00
|
|
|
int ret = 0;
|
|
|
|
|
2008-11-11 17:46:33 +01:00
|
|
|
if (s->file) {
|
2010-02-07 00:03:50 +01:00
|
|
|
DPRINTF("closing file\n");
|
2011-11-10 13:41:42 +01:00
|
|
|
ret = qemu_fclose(s->file);
|
2009-11-30 18:21:19 +01:00
|
|
|
s->file = NULL;
|
2008-11-11 17:46:33 +01:00
|
|
|
}
|
|
|
|
|
2012-11-10 18:58:40 +01:00
|
|
|
assert(s->fd == -1);
|
2010-06-02 21:55:25 +02:00
|
|
|
return ret;
|
2008-11-11 17:46:33 +01:00
|
|
|
}
|
|
|
|
|
2011-09-11 20:28:22 +02:00
|
|
|
void migrate_fd_error(MigrationState *s)
|
2008-11-11 17:46:33 +01:00
|
|
|
{
|
2011-09-11 20:28:22 +02:00
|
|
|
DPRINTF("setting error state\n");
|
|
|
|
s->state = MIG_STATE_ERROR;
|
2011-10-05 14:27:52 +02:00
|
|
|
notifier_list_notify(&migration_state_notifiers, s);
|
2011-09-11 20:28:22 +02:00
|
|
|
migrate_fd_cleanup(s);
|
|
|
|
}
|
|
|
|
|
2011-02-22 23:32:54 +01:00
|
|
|
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);
|
|
|
|
}
|
2011-10-05 14:27:52 +02:00
|
|
|
notifier_list_notify(&migration_state_notifiers, s);
|
2011-02-22 23:32:54 +01:00
|
|
|
}
|
|
|
|
|
2012-12-20 11:29:03 +01:00
|
|
|
static ssize_t migrate_fd_put_buffer(MigrationState *s, const void *data,
|
|
|
|
size_t size)
|
2008-11-11 17:46:33 +01:00
|
|
|
{
|
|
|
|
ssize_t ret;
|
|
|
|
|
2011-09-21 22:37:29 +02:00
|
|
|
if (s->state != MIG_STATE_ACTIVE) {
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
2008-11-11 17:46:33 +01:00
|
|
|
do {
|
|
|
|
ret = s->write(s, data, size);
|
2009-05-19 13:08:53 +02:00
|
|
|
} while (ret == -1 && ((s->get_error(s)) == EINTR));
|
2008-11-11 17:46:33 +01:00
|
|
|
|
|
|
|
if (ret == -1)
|
|
|
|
ret = -(s->get_error(s));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-05-11 16:28:39 +02:00
|
|
|
static void migrate_fd_cancel(MigrationState *s)
|
2008-11-11 17:46:33 +01:00
|
|
|
{
|
|
|
|
if (s->state != MIG_STATE_ACTIVE)
|
|
|
|
return;
|
|
|
|
|
2010-02-07 00:03:50 +01:00
|
|
|
DPRINTF("cancelling migration\n");
|
2008-11-11 17:46:33 +01:00
|
|
|
|
|
|
|
s->state = MIG_STATE_CANCELLED;
|
2011-10-05 14:27:52 +02:00
|
|
|
notifier_list_notify(&migration_state_notifiers, s);
|
2013-01-14 14:14:42 +01:00
|
|
|
qemu_savevm_state_cancel();
|
2008-11-11 17:46:33 +01:00
|
|
|
|
|
|
|
migrate_fd_cleanup(s);
|
|
|
|
}
|
|
|
|
|
2012-07-20 13:19:36 +02:00
|
|
|
int migrate_fd_close(MigrationState *s)
|
2008-11-11 17:46:33 +01:00
|
|
|
{
|
2012-09-27 13:25:45 +02:00
|
|
|
int rc = 0;
|
|
|
|
if (s->fd != -1) {
|
|
|
|
rc = s->close(s);
|
|
|
|
s->fd = -1;
|
|
|
|
}
|
|
|
|
return rc;
|
2008-11-11 17:46:33 +01:00
|
|
|
}
|
2010-12-13 17:30:12 +01:00
|
|
|
|
|
|
|
void add_migration_state_change_notifier(Notifier *notify)
|
|
|
|
{
|
|
|
|
notifier_list_add(&migration_state_notifiers, notify);
|
|
|
|
}
|
|
|
|
|
|
|
|
void remove_migration_state_change_notifier(Notifier *notify)
|
|
|
|
{
|
2012-01-13 17:34:01 +01:00
|
|
|
notifier_remove(notify);
|
2010-12-13 17:30:12 +01:00
|
|
|
}
|
|
|
|
|
2011-10-25 13:50:11 +02:00
|
|
|
bool migration_is_active(MigrationState *s)
|
|
|
|
{
|
|
|
|
return s->state == MIG_STATE_ACTIVE;
|
|
|
|
}
|
|
|
|
|
2011-02-23 00:43:59 +01:00
|
|
|
bool migration_has_finished(MigrationState *s)
|
2010-12-13 17:30:12 +01:00
|
|
|
{
|
2011-02-23 00:43:59 +01:00
|
|
|
return s->state == MIG_STATE_COMPLETED;
|
2010-12-13 17:30:12 +01:00
|
|
|
}
|
2010-05-11 16:28:39 +02:00
|
|
|
|
2011-10-25 13:50:11 +02:00
|
|
|
bool migration_has_failed(MigrationState *s)
|
|
|
|
{
|
|
|
|
return (s->state == MIG_STATE_CANCELLED ||
|
|
|
|
s->state == MIG_STATE_ERROR);
|
|
|
|
}
|
|
|
|
|
2012-06-19 17:43:09 +02:00
|
|
|
static MigrationState *migrate_init(const MigrationParams *params)
|
2010-05-11 16:28:39 +02:00
|
|
|
{
|
2011-10-05 13:50:43 +02:00
|
|
|
MigrationState *s = migrate_get_current();
|
2011-02-23 00:33:19 +01:00
|
|
|
int64_t bandwidth_limit = s->bandwidth_limit;
|
2012-08-06 20:42:47 +02:00
|
|
|
bool enabled_capabilities[MIGRATION_CAPABILITY_MAX];
|
2012-08-06 20:42:53 +02:00
|
|
|
int64_t xbzrle_cache_size = s->xbzrle_cache_size;
|
2012-08-06 20:42:47 +02:00
|
|
|
|
|
|
|
memcpy(enabled_capabilities, s->enabled_capabilities,
|
|
|
|
sizeof(enabled_capabilities));
|
2010-05-11 16:28:39 +02:00
|
|
|
|
2011-10-05 13:50:43 +02:00
|
|
|
memset(s, 0, sizeof(*s));
|
2011-02-23 00:33:19 +01:00
|
|
|
s->bandwidth_limit = bandwidth_limit;
|
2012-06-19 17:43:09 +02:00
|
|
|
s->params = *params;
|
2012-08-06 20:42:47 +02:00
|
|
|
memcpy(s->enabled_capabilities, enabled_capabilities,
|
|
|
|
sizeof(enabled_capabilities));
|
2012-08-06 20:42:53 +02:00
|
|
|
s->xbzrle_cache_size = xbzrle_cache_size;
|
2011-11-09 21:29:01 +01:00
|
|
|
|
2010-05-11 16:28:39 +02:00
|
|
|
s->bandwidth_limit = bandwidth_limit;
|
2010-05-11 23:01:53 +02:00
|
|
|
s->state = MIG_STATE_SETUP;
|
2012-05-21 22:01:07 +02:00
|
|
|
s->total_time = qemu_get_clock_ms(rt_clock);
|
2010-05-11 16:28:39 +02:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
2011-02-22 23:54:21 +01:00
|
|
|
|
2011-11-14 22:09:43 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2011-12-05 17:48:01 +01:00
|
|
|
void qmp_migrate(const char *uri, bool has_blk, bool blk,
|
|
|
|
bool has_inc, bool inc, bool has_detach, bool detach,
|
|
|
|
Error **errp)
|
2011-02-22 23:54:21 +01:00
|
|
|
{
|
2012-10-03 14:34:33 +02:00
|
|
|
Error *local_err = NULL;
|
2011-10-05 13:50:43 +02:00
|
|
|
MigrationState *s = migrate_get_current();
|
2012-06-19 17:43:09 +02:00
|
|
|
MigrationParams params;
|
2011-02-22 23:54:21 +01:00
|
|
|
const char *p;
|
|
|
|
|
2012-06-19 17:43:09 +02:00
|
|
|
params.blk = blk;
|
|
|
|
params.shared = inc;
|
|
|
|
|
2011-10-05 13:50:43 +02:00
|
|
|
if (s->state == MIG_STATE_ACTIVE) {
|
2011-12-05 17:48:01 +01:00
|
|
|
error_set(errp, QERR_MIGRATION_ACTIVE);
|
|
|
|
return;
|
2011-02-22 23:54:21 +01:00
|
|
|
}
|
|
|
|
|
2011-12-05 17:48:01 +01:00
|
|
|
if (qemu_savevm_state_blocked(errp)) {
|
|
|
|
return;
|
2011-02-22 23:54:21 +01:00
|
|
|
}
|
|
|
|
|
2011-11-14 22:09:43 +01:00
|
|
|
if (migration_blockers) {
|
2011-12-05 17:48:01 +01:00
|
|
|
*errp = error_copy(migration_blockers->data);
|
|
|
|
return;
|
2011-11-14 22:09:43 +01:00
|
|
|
}
|
|
|
|
|
2012-06-19 17:43:09 +02:00
|
|
|
s = migrate_init(¶ms);
|
2011-02-22 23:54:21 +01:00
|
|
|
|
|
|
|
if (strstart(uri, "tcp:", &p)) {
|
2012-10-02 10:02:46 +02:00
|
|
|
tcp_start_outgoing_migration(s, p, &local_err);
|
2011-02-22 23:54:21 +01:00
|
|
|
#if !defined(WIN32)
|
|
|
|
} else if (strstart(uri, "exec:", &p)) {
|
2012-10-02 10:02:46 +02:00
|
|
|
exec_start_outgoing_migration(s, p, &local_err);
|
2011-02-22 23:54:21 +01:00
|
|
|
} else if (strstart(uri, "unix:", &p)) {
|
2012-10-02 10:02:46 +02:00
|
|
|
unix_start_outgoing_migration(s, p, &local_err);
|
2011-02-22 23:54:21 +01:00
|
|
|
} else if (strstart(uri, "fd:", &p)) {
|
2012-10-02 10:02:46 +02:00
|
|
|
fd_start_outgoing_migration(s, p, &local_err);
|
2011-02-22 23:54:21 +01:00
|
|
|
#endif
|
2010-12-13 17:30:12 +01:00
|
|
|
} else {
|
2011-12-05 17:48:01 +01:00
|
|
|
error_set(errp, QERR_INVALID_PARAMETER_VALUE, "uri", "a valid migration protocol");
|
|
|
|
return;
|
2011-02-22 23:54:21 +01:00
|
|
|
}
|
|
|
|
|
2012-10-02 10:02:46 +02:00
|
|
|
if (local_err) {
|
2012-10-02 09:59:38 +02:00
|
|
|
migrate_fd_error(s);
|
2012-10-02 10:02:46 +02:00
|
|
|
error_propagate(errp, local_err);
|
2011-12-05 17:48:01 +01:00
|
|
|
return;
|
2011-11-09 21:29:01 +01:00
|
|
|
}
|
2011-02-22 23:54:21 +01:00
|
|
|
}
|
|
|
|
|
2011-11-28 01:54:09 +01:00
|
|
|
void qmp_migrate_cancel(Error **errp)
|
2011-02-22 23:54:21 +01:00
|
|
|
{
|
2011-10-05 13:50:43 +02:00
|
|
|
migrate_fd_cancel(migrate_get_current());
|
2011-02-22 23:54:21 +01:00
|
|
|
}
|
|
|
|
|
2012-08-06 20:42:54 +02:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2011-11-28 14:59:37 +01:00
|
|
|
void qmp_migrate_set_speed(int64_t value, Error **errp)
|
2011-02-22 23:54:21 +01:00
|
|
|
{
|
|
|
|
MigrationState *s;
|
|
|
|
|
2011-11-28 14:59:37 +01:00
|
|
|
if (value < 0) {
|
|
|
|
value = 0;
|
2010-12-13 17:30:12 +01:00
|
|
|
}
|
2011-02-22 23:54:21 +01:00
|
|
|
|
2011-10-05 13:50:43 +02:00
|
|
|
s = migrate_get_current();
|
2011-11-28 14:59:37 +01:00
|
|
|
s->bandwidth_limit = value;
|
2011-02-23 00:33:19 +01:00
|
|
|
qemu_file_set_rate_limit(s->file, s->bandwidth_limit);
|
2011-02-22 23:54:21 +01:00
|
|
|
}
|
|
|
|
|
2011-11-28 02:18:01 +01:00
|
|
|
void qmp_migrate_set_downtime(double value, Error **errp)
|
2011-02-22 23:54:21 +01:00
|
|
|
{
|
2011-11-28 02:18:01 +01:00
|
|
|
value *= 1e9;
|
|
|
|
value = MAX(0, MIN(UINT64_MAX, value));
|
|
|
|
max_downtime = (uint64_t)value;
|
2010-12-13 17:30:12 +01:00
|
|
|
}
|
2012-08-06 20:42:53 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2012-10-03 14:18:33 +02:00
|
|
|
|
|
|
|
/* migration thread support */
|
|
|
|
|
2012-12-19 09:55:50 +01:00
|
|
|
|
|
|
|
static ssize_t buffered_flush(MigrationState *s)
|
2012-10-03 14:18:33 +02:00
|
|
|
{
|
|
|
|
size_t offset = 0;
|
|
|
|
ssize_t ret = 0;
|
|
|
|
|
|
|
|
DPRINTF("flushing %zu byte(s) of data\n", s->buffer_size);
|
|
|
|
|
|
|
|
while (s->bytes_xfer < s->xfer_limit && offset < s->buffer_size) {
|
|
|
|
size_t to_send = MIN(s->buffer_size - offset, s->xfer_limit - s->bytes_xfer);
|
2012-12-19 09:55:50 +01:00
|
|
|
ret = migrate_fd_put_buffer(s, s->buffer + offset, to_send);
|
2012-10-03 14:18:33 +02:00
|
|
|
if (ret <= 0) {
|
|
|
|
DPRINTF("error flushing data, %zd\n", ret);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
DPRINTF("flushed %zd byte(s)\n", ret);
|
|
|
|
offset += ret;
|
|
|
|
s->bytes_xfer += ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF("flushed %zu of %zu byte(s)\n", offset, s->buffer_size);
|
|
|
|
memmove(s->buffer, s->buffer + offset, s->buffer_size - offset);
|
|
|
|
s->buffer_size -= offset;
|
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int buffered_put_buffer(void *opaque, const uint8_t *buf,
|
|
|
|
int64_t pos, int size)
|
|
|
|
{
|
2012-12-19 09:55:50 +01:00
|
|
|
MigrationState *s = opaque;
|
2012-10-03 14:18:33 +02:00
|
|
|
ssize_t error;
|
|
|
|
|
|
|
|
DPRINTF("putting %d bytes at %" PRId64 "\n", size, pos);
|
|
|
|
|
|
|
|
error = qemu_file_get_error(s->file);
|
|
|
|
if (error) {
|
|
|
|
DPRINTF("flush when error, bailing: %s\n", strerror(-error));
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size <= 0) {
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size > (s->buffer_capacity - s->buffer_size)) {
|
|
|
|
DPRINTF("increasing buffer capacity from %zu by %zu\n",
|
|
|
|
s->buffer_capacity, size + 1024);
|
|
|
|
|
|
|
|
s->buffer_capacity += size + 1024;
|
|
|
|
|
|
|
|
s->buffer = g_realloc(s->buffer, s->buffer_capacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(s->buffer + s->buffer_size, buf, size);
|
|
|
|
s->buffer_size += size;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int buffered_close(void *opaque)
|
|
|
|
{
|
2012-12-19 09:55:50 +01:00
|
|
|
MigrationState *s = opaque;
|
2012-10-03 14:18:33 +02:00
|
|
|
ssize_t ret = 0;
|
|
|
|
int ret2;
|
|
|
|
|
|
|
|
DPRINTF("closing\n");
|
|
|
|
|
|
|
|
s->xfer_limit = INT_MAX;
|
|
|
|
while (!qemu_file_get_error(s->file) && s->buffer_size) {
|
|
|
|
ret = buffered_flush(s);
|
|
|
|
if (ret < 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-19 09:55:50 +01:00
|
|
|
ret2 = migrate_fd_close(s);
|
2012-10-03 14:18:33 +02:00
|
|
|
if (ret >= 0) {
|
|
|
|
ret = ret2;
|
|
|
|
}
|
2012-12-19 09:55:50 +01:00
|
|
|
s->complete = true;
|
2012-10-03 14:18:33 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int buffered_get_fd(void *opaque)
|
|
|
|
{
|
2012-12-19 09:55:50 +01:00
|
|
|
MigrationState *s = opaque;
|
2012-10-03 14:18:33 +02:00
|
|
|
|
2012-12-19 09:55:50 +01:00
|
|
|
return s->fd;
|
2012-10-03 14:18:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The meaning of the return values is:
|
|
|
|
* 0: We can continue sending
|
|
|
|
* 1: Time to stop
|
|
|
|
* negative: There has been an error
|
|
|
|
*/
|
|
|
|
static int buffered_rate_limit(void *opaque)
|
|
|
|
{
|
2012-12-19 09:55:50 +01:00
|
|
|
MigrationState *s = opaque;
|
2012-10-03 14:18:33 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = qemu_file_get_error(s->file);
|
|
|
|
if (ret) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-12-20 11:30:39 +01:00
|
|
|
if (s->bytes_xfer >= s->xfer_limit) {
|
2012-10-03 14:18:33 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int64_t buffered_set_rate_limit(void *opaque, int64_t new_rate)
|
|
|
|
{
|
2012-12-19 09:55:50 +01:00
|
|
|
MigrationState *s = opaque;
|
2012-10-03 14:18:33 +02:00
|
|
|
if (qemu_file_get_error(s->file)) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (new_rate > SIZE_MAX) {
|
|
|
|
new_rate = SIZE_MAX;
|
|
|
|
}
|
|
|
|
|
2012-12-20 11:31:03 +01:00
|
|
|
s->xfer_limit = new_rate / XFER_LIMIT_RATIO;
|
2012-10-03 14:18:33 +02:00
|
|
|
|
|
|
|
out:
|
|
|
|
return s->xfer_limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int64_t buffered_get_rate_limit(void *opaque)
|
|
|
|
{
|
2012-12-19 09:55:50 +01:00
|
|
|
MigrationState *s = opaque;
|
2012-10-03 14:18:33 +02:00
|
|
|
|
|
|
|
return s->xfer_limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *buffered_file_thread(void *opaque)
|
|
|
|
{
|
2012-12-19 09:55:50 +01:00
|
|
|
MigrationState *s = opaque;
|
2012-10-03 14:18:33 +02:00
|
|
|
int64_t initial_time = qemu_get_clock_ms(rt_clock);
|
|
|
|
int64_t max_size = 0;
|
|
|
|
bool last_round = false;
|
2012-10-03 20:16:24 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
qemu_mutex_lock_iothread();
|
|
|
|
DPRINTF("beginning savevm\n");
|
|
|
|
ret = qemu_savevm_state_begin(s->file, &s->params);
|
|
|
|
if (ret < 0) {
|
|
|
|
DPRINTF("failed, %d\n", ret);
|
|
|
|
qemu_mutex_unlock_iothread();
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
qemu_mutex_unlock_iothread();
|
2012-10-03 14:18:33 +02:00
|
|
|
|
|
|
|
while (true) {
|
|
|
|
int64_t current_time = qemu_get_clock_ms(rt_clock);
|
2012-10-03 20:33:34 +02:00
|
|
|
uint64_t pending_size;
|
2012-10-03 14:18:33 +02:00
|
|
|
|
2012-10-03 20:23:43 +02:00
|
|
|
qemu_mutex_lock_iothread();
|
|
|
|
if (s->state != MIG_STATE_ACTIVE) {
|
|
|
|
DPRINTF("put_ready returning because of non-active state\n");
|
|
|
|
qemu_mutex_unlock_iothread();
|
|
|
|
break;
|
|
|
|
}
|
2012-12-19 09:55:50 +01:00
|
|
|
if (s->complete) {
|
2012-10-03 20:23:43 +02:00
|
|
|
qemu_mutex_unlock_iothread();
|
2012-10-03 14:18:33 +02:00
|
|
|
break;
|
|
|
|
}
|
2012-10-03 20:33:34 +02:00
|
|
|
if (s->bytes_xfer < s->xfer_limit) {
|
|
|
|
DPRINTF("iterate\n");
|
|
|
|
pending_size = qemu_savevm_state_pending(s->file, max_size);
|
|
|
|
DPRINTF("pending size %lu max %lu\n", pending_size, max_size);
|
2012-10-17 21:06:31 +02:00
|
|
|
if (pending_size && pending_size >= max_size) {
|
2012-10-03 20:33:34 +02:00
|
|
|
ret = qemu_savevm_state_iterate(s->file);
|
|
|
|
if (ret < 0) {
|
|
|
|
qemu_mutex_unlock_iothread();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int old_vm_running = runstate_is_running();
|
|
|
|
int64_t start_time, end_time;
|
|
|
|
|
|
|
|
DPRINTF("done iterating\n");
|
|
|
|
start_time = qemu_get_clock_ms(rt_clock);
|
|
|
|
qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
|
|
|
|
if (old_vm_running) {
|
|
|
|
vm_stop(RUN_STATE_FINISH_MIGRATE);
|
|
|
|
} else {
|
|
|
|
vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
|
|
|
|
}
|
|
|
|
ret = qemu_savevm_state_complete(s->file);
|
|
|
|
if (ret < 0) {
|
|
|
|
qemu_mutex_unlock_iothread();
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
migrate_fd_completed(s);
|
|
|
|
}
|
|
|
|
end_time = qemu_get_clock_ms(rt_clock);
|
|
|
|
s->total_time = end_time - s->total_time;
|
|
|
|
s->downtime = end_time - start_time;
|
|
|
|
if (s->state != MIG_STATE_COMPLETED) {
|
|
|
|
if (old_vm_running) {
|
|
|
|
vm_start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
last_round = true;
|
|
|
|
}
|
|
|
|
}
|
2012-10-03 20:23:43 +02:00
|
|
|
qemu_mutex_unlock_iothread();
|
2012-10-03 14:18:33 +02:00
|
|
|
if (current_time >= initial_time + BUFFER_DELAY) {
|
|
|
|
uint64_t transferred_bytes = s->bytes_xfer;
|
|
|
|
uint64_t time_spent = current_time - initial_time;
|
|
|
|
double bandwidth = transferred_bytes / time_spent;
|
|
|
|
max_size = bandwidth * migrate_max_downtime() / 1000000;
|
|
|
|
|
|
|
|
DPRINTF("transferred %" PRIu64 " time_spent %" PRIu64
|
|
|
|
" bandwidth %g max_size %" PRId64 "\n",
|
|
|
|
transferred_bytes, time_spent, bandwidth, max_size);
|
|
|
|
|
|
|
|
s->bytes_xfer = 0;
|
|
|
|
initial_time = current_time;
|
|
|
|
}
|
|
|
|
if (!last_round && (s->bytes_xfer >= s->xfer_limit)) {
|
|
|
|
/* usleep expects microseconds */
|
|
|
|
g_usleep((initial_time + BUFFER_DELAY - current_time)*1000);
|
|
|
|
}
|
2012-12-10 22:29:14 +01:00
|
|
|
ret = buffered_flush(s);
|
|
|
|
if (ret < 0) {
|
2012-10-03 14:18:33 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-03 20:16:24 +02:00
|
|
|
out:
|
|
|
|
if (ret < 0) {
|
|
|
|
migrate_fd_error(s);
|
|
|
|
}
|
2012-10-03 14:18:33 +02:00
|
|
|
g_free(s->buffer);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const QEMUFileOps buffered_file_ops = {
|
|
|
|
.get_fd = buffered_get_fd,
|
|
|
|
.put_buffer = buffered_put_buffer,
|
|
|
|
.close = buffered_close,
|
|
|
|
.rate_limit = buffered_rate_limit,
|
|
|
|
.get_rate_limit = buffered_get_rate_limit,
|
|
|
|
.set_rate_limit = buffered_set_rate_limit,
|
|
|
|
};
|
|
|
|
|
2012-12-19 09:55:50 +01:00
|
|
|
void migrate_fd_connect(MigrationState *s)
|
2012-10-03 14:18:33 +02:00
|
|
|
{
|
2012-12-19 09:55:50 +01:00
|
|
|
s->state = MIG_STATE_ACTIVE;
|
|
|
|
s->bytes_xfer = 0;
|
|
|
|
s->buffer = NULL;
|
|
|
|
s->buffer_size = 0;
|
|
|
|
s->buffer_capacity = 0;
|
2012-10-03 14:18:33 +02:00
|
|
|
|
2012-12-19 09:55:50 +01:00
|
|
|
s->xfer_limit = s->bandwidth_limit / XFER_LIMIT_RATIO;
|
|
|
|
s->complete = false;
|
2012-10-03 14:18:33 +02:00
|
|
|
|
|
|
|
s->file = qemu_fopen_ops(s, &buffered_file_ops);
|
|
|
|
|
|
|
|
qemu_thread_create(&s->thread, buffered_file_thread, s,
|
|
|
|
QEMU_THREAD_DETACHED);
|
2012-10-03 20:04:41 +02:00
|
|
|
notifier_list_notify(&migration_state_notifiers, s);
|
2012-10-03 14:18:33 +02:00
|
|
|
}
|