]> git.proxmox.com Git - qemu.git/blob - migration.h
Merge commit 'quintela/migration-next-v5' into staging
[qemu.git] / migration.h
1 /*
2 * QEMU live migration
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14 #ifndef QEMU_MIGRATION_H
15 #define QEMU_MIGRATION_H
16
17 #include "qdict.h"
18 #include "qemu-common.h"
19 #include "notify.h"
20 #include "error.h"
21 #include "vmstate.h"
22
23 struct MigrationParams {
24 bool blk;
25 bool shared;
26 };
27
28 typedef struct MigrationState MigrationState;
29
30 struct MigrationState
31 {
32 int64_t bandwidth_limit;
33 QEMUFile *file;
34 int fd;
35 int state;
36 int (*get_error)(MigrationState *s);
37 int (*close)(MigrationState *s);
38 int (*write)(MigrationState *s, const void *buff, size_t size);
39 void *opaque;
40 MigrationParams params;
41 int64_t total_time;
42 };
43
44 void process_incoming_migration(QEMUFile *f);
45
46 int qemu_start_incoming_migration(const char *uri, Error **errp);
47
48 uint64_t migrate_max_downtime(void);
49
50 void do_info_migrate_print(Monitor *mon, const QObject *data);
51
52 void do_info_migrate(Monitor *mon, QObject **ret_data);
53
54 int exec_start_incoming_migration(const char *host_port);
55
56 int exec_start_outgoing_migration(MigrationState *s, const char *host_port);
57
58 int tcp_start_incoming_migration(const char *host_port, Error **errp);
59
60 int tcp_start_outgoing_migration(MigrationState *s, const char *host_port,
61 Error **errp);
62
63 int unix_start_incoming_migration(const char *path);
64
65 int unix_start_outgoing_migration(MigrationState *s, const char *path);
66
67 int fd_start_incoming_migration(const char *path);
68
69 int fd_start_outgoing_migration(MigrationState *s, const char *fdname);
70
71 void migrate_fd_error(MigrationState *s);
72
73 void migrate_fd_connect(MigrationState *s);
74
75 void add_migration_state_change_notifier(Notifier *notify);
76 void remove_migration_state_change_notifier(Notifier *notify);
77 bool migration_is_active(MigrationState *);
78 bool migration_has_finished(MigrationState *);
79 bool migration_has_failed(MigrationState *);
80
81 uint64_t ram_bytes_remaining(void);
82 uint64_t ram_bytes_transferred(void);
83 uint64_t ram_bytes_total(void);
84
85 extern SaveVMHandlers savevm_ram_handlers;
86
87 /**
88 * @migrate_add_blocker - prevent migration from proceeding
89 *
90 * @reason - an error to be returned whenever migration is attempted
91 */
92 void migrate_add_blocker(Error *reason);
93
94 /**
95 * @migrate_del_blocker - remove a blocking error from migration
96 *
97 * @reason - the error blocking migration
98 */
99 void migrate_del_blocker(Error *reason);
100
101 #endif