]> git.proxmox.com Git - mirror_qemu.git/blame - include/migration/migration.h
migration: create Migration Incoming State at init time
[mirror_qemu.git] / include / migration / migration.h
CommitLineData
5bb7910a
AL
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
7b1b5d19 17#include "qapi/qmp/qdict.h"
376253ec 18#include "qemu-common.h"
9848a404 19#include "qemu/thread.h"
1de7afc9 20#include "qemu/notify.h"
caf71f86 21#include "migration/vmstate.h"
bbf6da32 22#include "qapi-types.h"
43487c67 23#include "exec/cpu-common.h"
25d0c16f 24#include "qemu/coroutine_int.h"
376253ec 25
b5503338
EH
26#define QEMU_VM_FILE_MAGIC 0x5145564d
27#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
28#define QEMU_VM_FILE_VERSION 0x00000003
29
30#define QEMU_VM_EOF 0x00
31#define QEMU_VM_SECTION_START 0x01
32#define QEMU_VM_SECTION_PART 0x02
33#define QEMU_VM_SECTION_END 0x03
34#define QEMU_VM_SECTION_FULL 0x04
35#define QEMU_VM_SUBSECTION 0x05
8118f095 36#define QEMU_VM_VMDESCRIPTION 0x06
61964c23 37#define QEMU_VM_CONFIGURATION 0x07
c76ca188 38#define QEMU_VM_COMMAND 0x08
f68945d4 39#define QEMU_VM_SECTION_FOOTER 0x7e
b5503338 40
d15c05fc
AA
41/* for vl.c */
42extern int only_migratable;
43
6607ae23
IY
44struct MigrationParams {
45 bool blk;
46 bool shared;
47};
48
6decec93
DDAG
49/* Messages sent on the return path from destination to source */
50enum mig_rp_message_type {
51 MIG_RP_MSG_INVALID = 0, /* Must be 0 */
52 MIG_RP_MSG_SHUT, /* sibling will not send any more RP messages */
53 MIG_RP_MSG_PONG, /* Response to a PING; data (seq: be32 ) */
54
1e2d90eb
DDAG
55 MIG_RP_MSG_REQ_PAGES_ID, /* data (start: be64, len: be32, id: string) */
56 MIG_RP_MSG_REQ_PAGES, /* data (start: be64, len: be32) */
57
6decec93
DDAG
58 MIG_RP_MSG_MAX
59};
60
1a8f46f8 61typedef QLIST_HEAD(, LoadStateEntry) LoadStateEntry_Head;
093e3c42
DDAG
62
63/* The current postcopy state is read/set by postcopy_state_get/set
64 * which update it atomically.
65 * The state is updated as postcopy messages are received, and
66 * in general only one thread should be writing to the state at any one
67 * time, initially the main thread and then the listen thread;
68 * Corner cases are where either thread finishes early and/or errors.
69 * The state is checked as messages are received to ensure that
70 * the source is sending us messages in the correct order.
71 * The state is also used by the RAM reception code to know if it
72 * has to place pages atomically, and the cleanup code at the end of
73 * the main thread to know if it has to delay cleanup until the end
74 * of postcopy.
75 */
76typedef enum {
77 POSTCOPY_INCOMING_NONE = 0, /* Initial state - no postcopy */
78 POSTCOPY_INCOMING_ADVISE,
79 POSTCOPY_INCOMING_DISCARD,
80 POSTCOPY_INCOMING_LISTENING,
81 POSTCOPY_INCOMING_RUNNING,
82 POSTCOPY_INCOMING_END
83} PostcopyState;
84
bca7856a
DDAG
85/* State for the incoming migration */
86struct MigrationIncomingState {
42e2aa56 87 QEMUFile *from_src_file;
1a8f46f8 88
7b89bf27
DDAG
89 /*
90 * Free at the start of the main state load, set as the main thread finishes
91 * loading state.
92 */
93 QemuEvent main_thread_load_event;
94
c4faeed2 95 bool have_fault_thread;
f0a227ad
DDAG
96 QemuThread fault_thread;
97 QemuSemaphore fault_thread_sem;
98
c76201ab
DDAG
99 bool have_listen_thread;
100 QemuThread listen_thread;
101 QemuSemaphore listen_thread_sem;
102
1caddf8a
DDAG
103 /* For the kernel to send us notifications */
104 int userfault_fd;
c4faeed2
DDAG
105 /* To tell the fault_thread to quit */
106 int userfault_quit_fd;
2e37701e 107 QEMUFile *to_src_file;
6decec93 108 QemuMutex rp_mutex; /* We send replies from multiple threads */
696ed9a9 109 void *postcopy_tmp_page;
2e37701e 110
0aa6aefc
DL
111 QEMUBH *bh;
112
93d7af6f 113 int state;
25d0c16f
HZ
114
115 bool have_colo_incoming_thread;
116 QemuThread colo_incoming_thread;
117 /* The coroutine we should enter (back) after failover */
118 Coroutine *migration_incoming_co;
119
1a8f46f8
DDAG
120 /* See savevm.c */
121 LoadStateEntry_Head loadvm_handlers;
bca7856a
DDAG
122};
123
124MigrationIncomingState *migration_incoming_get_current(void);
bca7856a
DDAG
125void migration_incoming_state_destroy(void);
126
6c595cde
DDAG
127/*
128 * An outstanding page request, on the source, having been received
129 * and queued
130 */
131struct MigrationSrcPageRequest {
132 RAMBlock *rb;
133 hwaddr offset;
134 hwaddr len;
135
136 QSIMPLEQ_ENTRY(MigrationSrcPageRequest) next_req;
137};
138
22f00a44 139struct MigrationState
065e2813 140{
9848a404
JQ
141 size_t bytes_xfer;
142 size_t xfer_limit;
9848a404 143 QemuThread thread;
bb1fadc4 144 QEMUBH *cleanup_bh;
89a02a9f 145 QEMUFile *to_dst_file;
2594f56d
DB
146
147 /* New style params from 'migrate-set-parameters' */
148 MigrationParameters parameters;
f8bbc128 149
f8bbc128 150 int state;
2594f56d 151 /* Old style params from 'migrate' command */
6607ae23 152 MigrationParams params;
70b20477
DDAG
153
154 /* State related to return path */
155 struct {
156 QEMUFile *from_dst_file;
157 QemuThread rp_thread;
158 bool error;
159 } rp_state;
160
7e114f8c 161 double mbps;
d5f8a570 162 int64_t total_time;
9c5a9fcf 163 int64_t downtime;
2c52ddf1 164 int64_t expected_downtime;
8d017193 165 int64_t dirty_pages_rate;
90f8ae72 166 int64_t dirty_bytes_rate;
7fb1cf16 167 bool enabled_capabilities[MIGRATION_CAPABILITY__MAX];
17ad9b35 168 int64_t xbzrle_cache_size;
ed4fbd10 169 int64_t setup_time;
58570ed8 170 int64_t dirty_sync_count;
d3bf5418
DDAG
171 /* Count of requests incoming from destination */
172 int64_t postcopy_requests;
4886a1bc
DDAG
173
174 /* Flag set once the migration has been asked to enter postcopy */
175 bool start_postcopy;
b82fc321
DDAG
176 /* Flag set after postcopy has sent the device state */
177 bool postcopy_after_devices;
1d34e4bf
DDAG
178
179 /* Flag set once the migration thread is running (and needs joining) */
180 bool migration_thread_running;
6c595cde 181
1d2acc31
HZ
182 /* Flag set once the migration thread called bdrv_inactivate_all */
183 bool block_inactive;
184
6c595cde
DDAG
185 /* Queue of outstanding page requests from the destination */
186 QemuMutex src_page_req_mutex;
187 QSIMPLEQ_HEAD(src_page_requests, MigrationSrcPageRequest) src_page_requests;
188 /* The RAMBlock used in the last src_page_request */
189 RAMBlock *last_req_rb;
d59ce6f3
DB
190
191 /* The last error that occurred */
192 Error *error;
065e2813
AL
193};
194
48781e5b
HZ
195void migrate_set_state(int *state, int old_state, int new_state);
196
22724f49 197void migration_fd_process_incoming(QEMUFile *f);
511c0231 198
43eaae28 199void qemu_start_incoming_migration(const char *uri, Error **errp);
5bb7910a 200
22724f49
DB
201void migration_channel_process_incoming(MigrationState *s,
202 QIOChannel *ioc);
48f07489 203
22724f49
DB
204void migration_tls_channel_process_incoming(MigrationState *s,
205 QIOChannel *ioc,
206 Error **errp);
e1226365 207
22724f49
DB
208void migration_channel_connect(MigrationState *s,
209 QIOChannel *ioc,
210 const char *hostname);
e1226365 211
22724f49
DB
212void migration_tls_channel_connect(MigrationState *s,
213 QIOChannel *ioc,
214 const char *hostname,
215 Error **errp);
48f07489 216
a0a3fd60
GC
217uint64_t migrate_max_downtime(void);
218
43eaae28 219void exec_start_incoming_migration(const char *host_port, Error **errp);
065e2813 220
f37afb5a 221void exec_start_outgoing_migration(MigrationState *s, const char *host_port, Error **errp);
065e2813 222
43eaae28 223void tcp_start_incoming_migration(const char *host_port, Error **errp);
34c9dd8e 224
f37afb5a 225void tcp_start_outgoing_migration(MigrationState *s, const char *host_port, Error **errp);
34c9dd8e 226
43eaae28 227void unix_start_incoming_migration(const char *path, Error **errp);
4951f65b 228
f37afb5a 229void unix_start_outgoing_migration(MigrationState *s, const char *path, Error **errp);
4951f65b 230
43eaae28 231void fd_start_incoming_migration(const char *path, Error **errp);
5ac1fad3 232
f37afb5a 233void fd_start_outgoing_migration(MigrationState *s, const char *fdname, Error **errp);
5ac1fad3 234
2da776db
MH
235void rdma_start_outgoing_migration(void *opaque, const char *host_port, Error **errp);
236
237void rdma_start_incoming_migration(const char *host_port, Error **errp);
238
d59ce6f3 239void migrate_fd_error(MigrationState *s, const Error *error);
065e2813 240
22f00a44 241void migrate_fd_connect(MigrationState *s);
065e2813 242
99a0db9b
GH
243void add_migration_state_change_notifier(Notifier *notify);
244void remove_migration_state_change_notifier(Notifier *notify);
aefeb18b 245MigrationState *migrate_init(const MigrationParams *params);
24f3902b 246bool migration_is_blocked(Error **errp);
02edd2e7 247bool migration_in_setup(MigrationState *);
fe44dc91 248bool migration_is_idle(MigrationState *s);
7073693b 249bool migration_has_finished(MigrationState *);
afe2df69 250bool migration_has_failed(MigrationState *);
9ec055ae
DDAG
251/* True if outgoing migration has entered postcopy phase */
252bool migration_in_postcopy(MigrationState *);
b82fc321
DDAG
253/* ...and after the device transmission */
254bool migration_in_postcopy_after_devices(MigrationState *);
859bc756 255MigrationState *migrate_get_current(void);
99a0db9b 256
8706d2d5
LL
257void migrate_compress_threads_create(void);
258void migrate_compress_threads_join(void);
3fcb38c2
LL
259void migrate_decompress_threads_create(void);
260void migrate_decompress_threads_join(void);
adc56dda
BS
261uint64_t ram_bytes_remaining(void);
262uint64_t ram_bytes_transferred(void);
263uint64_t ram_bytes_total(void);
905f26f2 264void free_xbzrle_decoded_buf(void);
adc56dda 265
2b0ce079
MH
266void acct_update_position(QEMUFile *f, size_t size, bool zero);
267
004d4c10
OW
268uint64_t dup_mig_bytes_transferred(void);
269uint64_t dup_mig_pages_transferred(void);
f1c72795
PL
270uint64_t skipped_mig_bytes_transferred(void);
271uint64_t skipped_mig_pages_transferred(void);
004d4c10
OW
272uint64_t norm_mig_bytes_transferred(void);
273uint64_t norm_mig_pages_transferred(void);
f36d55af
OW
274uint64_t xbzrle_mig_bytes_transferred(void);
275uint64_t xbzrle_mig_pages_transferred(void);
276uint64_t xbzrle_mig_pages_overflow(void);
277uint64_t xbzrle_mig_pages_cache_miss(void);
8bc39233 278double xbzrle_mig_cache_miss_rate(void);
004d4c10 279
44c3b58c 280void ram_handle_compressed(void *host, uint8_t ch, uint64_t size);
4f2e4252 281void ram_debug_dump_bitmap(unsigned long *todump, bool expected);
e0b266f0
DDAG
282/* For outgoing discard bitmap */
283int ram_postcopy_send_discard_bitmap(MigrationState *ms);
284/* For incoming postcopy discard */
285int ram_discard_range(MigrationIncomingState *mis, const char *block_name,
286 uint64_t start, size_t length);
1caddf8a 287int ram_postcopy_incoming_init(MigrationIncomingState *mis);
44c3b58c 288
fa2756b7
AL
289/**
290 * @migrate_add_blocker - prevent migration from proceeding
291 *
292 * @reason - an error to be returned whenever migration is attempted
fe44dc91
AA
293 *
294 * @errp - [out] The reason (if any) we cannot block migration right now.
295 *
b67b8c3a 296 * @returns - 0 on success, -EBUSY/-EACCES on failure, with errp set.
fa2756b7 297 */
fe44dc91 298int migrate_add_blocker(Error *reason, Error **errp);
fa2756b7
AL
299
300/**
301 * @migrate_del_blocker - remove a blocking error from migration
302 *
303 * @reason - the error blocking migration
304 */
305void migrate_del_blocker(Error *reason);
306
53dd370c 307bool migrate_postcopy_ram(void);
323004a3 308bool migrate_zero_blocks(void);
60d9222c 309
bde1e2ec
CV
310bool migrate_auto_converge(void);
311
302dfbeb
OW
312int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
313 uint8_t *dst, int dlen);
314int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen);
315
17ad9b35
OW
316int migrate_use_xbzrle(void);
317int64_t migrate_xbzrle_cache_size(void);
35a6ed4f 318bool migrate_colo_enabled(void);
17ad9b35 319
9e1ba4cc 320int64_t xbzrle_cache_resize(int64_t new_size);
43487c67 321
8706d2d5
LL
322bool migrate_use_compression(void);
323int migrate_compress_level(void);
324int migrate_compress_threads(void);
3fcb38c2 325int migrate_decompress_threads(void);
b05dc723 326bool migrate_use_events(void);
8706d2d5 327
6decec93
DDAG
328/* Sending on the return path - generic and then for each message type */
329void migrate_send_rp_message(MigrationIncomingState *mis,
330 enum mig_rp_message_type message_type,
331 uint16_t len, void *data);
332void migrate_send_rp_shut(MigrationIncomingState *mis,
333 uint32_t value);
334void migrate_send_rp_pong(MigrationIncomingState *mis,
335 uint32_t value);
1e2d90eb
DDAG
336void migrate_send_rp_req_pages(MigrationIncomingState *mis, const char* rbname,
337 ram_addr_t start, size_t len);
6decec93 338
43487c67
MH
339void ram_control_before_iterate(QEMUFile *f, uint64_t flags);
340void ram_control_after_iterate(QEMUFile *f, uint64_t flags);
632e3a5c 341void ram_control_load_hook(QEMUFile *f, uint64_t flags, void *data);
43487c67
MH
342
343/* Whenever this is found in the data stream, the flags
344 * will be passed to ram_control_load_hook in the incoming-migration
345 * side. This lets before_ram_iterate/after_ram_iterate add
346 * transport-specific sections to the RAM migration data.
347 */
348#define RAM_SAVE_FLAG_HOOK 0x80
349
350#define RAM_SAVE_CONTROL_NOT_SUPP -1000
351#define RAM_SAVE_CONTROL_DELAYED -2000
352
353size_t ram_control_save_page(QEMUFile *f, ram_addr_t block_offset,
354 ram_addr_t offset, size_t size,
6e1dea46 355 uint64_t *bytes_sent);
43487c67 356
56e93d26 357void ram_mig_init(void);
37fb569c 358void savevm_skip_section_footers(void);
df4b1024 359void register_global_state(void);
13d16814 360void global_state_set_optional(void);
61964c23 361void savevm_skip_configuration(void);
560d027b 362int global_state_store(void);
c69adea4 363void global_state_store_running(void);
093e3c42 364
6c595cde
DDAG
365void flush_page_queue(MigrationState *ms);
366int ram_save_queue_pages(MigrationState *ms, const char *rbname,
367 ram_addr_t start, ram_addr_t len);
368
093e3c42
DDAG
369PostcopyState postcopy_state_get(void);
370/* Set the state and return the old state */
371PostcopyState postcopy_state_set(PostcopyState new_state);
5bb7910a 372#endif