2008-10-13 07:12:02 +04: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_MIGRATION_H
|
|
|
|
#define QEMU_MIGRATION_H
|
|
|
|
|
2009-08-28 22:27:12 +04:00
|
|
|
#include "qdict.h"
|
2009-03-06 02:01:23 +03:00
|
|
|
#include "qemu-common.h"
|
2010-12-13 19:30:12 +03:00
|
|
|
#include "notify.h"
|
2009-03-06 02:01:23 +03:00
|
|
|
|
2010-05-11 17:56:35 +04:00
|
|
|
typedef struct MigrationState MigrationState;
|
2010-05-11 17:46:39 +04:00
|
|
|
|
2010-05-11 17:56:35 +04:00
|
|
|
struct MigrationState
|
2008-11-11 19:46:33 +03:00
|
|
|
{
|
|
|
|
int64_t bandwidth_limit;
|
|
|
|
QEMUFile *file;
|
|
|
|
int fd;
|
2009-11-30 20:21:21 +03:00
|
|
|
Monitor *mon;
|
2008-11-11 19:46:33 +03:00
|
|
|
int state;
|
2010-05-11 17:56:35 +04:00
|
|
|
int (*get_error)(MigrationState *s);
|
|
|
|
int (*close)(MigrationState *s);
|
|
|
|
int (*write)(MigrationState *s, const void *buff, size_t size);
|
2008-11-11 19:46:33 +03:00
|
|
|
void *opaque;
|
2010-05-11 17:51:36 +04:00
|
|
|
int blk;
|
|
|
|
int shared;
|
2008-11-11 19:46:33 +03:00
|
|
|
};
|
|
|
|
|
2010-06-09 16:10:55 +04:00
|
|
|
void process_incoming_migration(QEMUFile *f);
|
|
|
|
|
2010-06-09 16:10:54 +04:00
|
|
|
int qemu_start_incoming_migration(const char *uri);
|
2008-10-13 07:12:02 +04:00
|
|
|
|
2010-02-11 04:49:57 +03:00
|
|
|
int do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
2008-10-13 07:12:02 +04:00
|
|
|
|
2010-02-11 04:49:48 +03:00
|
|
|
int do_migrate_cancel(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
2008-10-13 07:12:02 +04:00
|
|
|
|
2010-02-11 04:49:48 +03:00
|
|
|
int do_migrate_set_speed(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
2008-10-13 07:12:02 +04:00
|
|
|
|
2009-05-28 23:22:57 +04:00
|
|
|
uint64_t migrate_max_downtime(void);
|
|
|
|
|
2010-02-11 04:49:48 +03:00
|
|
|
int do_migrate_set_downtime(Monitor *mon, const QDict *qdict,
|
|
|
|
QObject **ret_data);
|
2009-05-28 23:22:58 +04:00
|
|
|
|
2009-12-10 22:16:05 +03:00
|
|
|
void do_info_migrate_print(Monitor *mon, const QObject *data);
|
|
|
|
|
|
|
|
void do_info_migrate(Monitor *mon, QObject **ret_data);
|
2008-10-13 07:12:02 +04:00
|
|
|
|
2008-11-11 19:46:33 +03:00
|
|
|
int exec_start_incoming_migration(const char *host_port);
|
|
|
|
|
2010-05-12 00:27:45 +04:00
|
|
|
int exec_start_outgoing_migration(MigrationState *s, const char *host_port);
|
2008-11-11 19:46:33 +03:00
|
|
|
|
2008-10-13 07:14:31 +04:00
|
|
|
int tcp_start_incoming_migration(const char *host_port);
|
|
|
|
|
2010-05-12 00:27:45 +04:00
|
|
|
int tcp_start_outgoing_migration(MigrationState *s, const char *host_port);
|
2008-10-13 07:14:31 +04:00
|
|
|
|
2009-08-05 19:24:29 +04:00
|
|
|
int unix_start_incoming_migration(const char *path);
|
|
|
|
|
2010-05-12 00:27:45 +04:00
|
|
|
int unix_start_outgoing_migration(MigrationState *s, const char *path);
|
2009-08-05 19:24:29 +04:00
|
|
|
|
2009-08-18 17:56:25 +04:00
|
|
|
int fd_start_incoming_migration(const char *path);
|
|
|
|
|
2010-05-12 00:27:45 +04:00
|
|
|
int fd_start_outgoing_migration(MigrationState *s, const char *fdname);
|
2009-08-18 17:56:25 +04:00
|
|
|
|
2010-05-11 17:56:35 +04:00
|
|
|
void migrate_fd_error(MigrationState *s);
|
2008-11-11 19:46:33 +03:00
|
|
|
|
2010-05-11 17:56:35 +04:00
|
|
|
void migrate_fd_connect(MigrationState *s);
|
2008-11-11 19:46:33 +03:00
|
|
|
|
2010-12-13 19:30:12 +03:00
|
|
|
void add_migration_state_change_notifier(Notifier *notify);
|
|
|
|
void remove_migration_state_change_notifier(Notifier *notify);
|
2011-10-25 15:50:11 +04:00
|
|
|
bool migration_is_active(MigrationState *);
|
2011-02-23 02:43:59 +03:00
|
|
|
bool migration_has_finished(MigrationState *);
|
2011-10-25 15:50:11 +04:00
|
|
|
bool migration_has_failed(MigrationState *);
|
2010-12-13 19:30:12 +03:00
|
|
|
|
2011-04-03 12:23:19 +04:00
|
|
|
uint64_t ram_bytes_remaining(void);
|
|
|
|
uint64_t ram_bytes_transferred(void);
|
|
|
|
uint64_t ram_bytes_total(void);
|
|
|
|
|
|
|
|
int ram_save_live(Monitor *mon, QEMUFile *f, int stage, void *opaque);
|
|
|
|
int ram_load(QEMUFile *f, void *opaque, int version_id);
|
|
|
|
|
|
|
|
extern int incoming_expected;
|
|
|
|
|
2008-10-13 07:12:02 +04:00
|
|
|
#endif
|