]> git.proxmox.com Git - mirror_qemu.git/blob - include/migration/migration.h
85b6026d10b144b36c0908a3a6b713964135c2e8
[mirror_qemu.git] / include / migration / 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 "qapi/qmp/qdict.h"
18 #include "qemu-common.h"
19 #include "qemu/thread.h"
20 #include "qemu/notify.h"
21 #include "migration/vmstate.h"
22 #include "qapi-types.h"
23 #include "exec/cpu-common.h"
24
25 #define QEMU_VM_FILE_MAGIC 0x5145564d
26 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
27 #define QEMU_VM_FILE_VERSION 0x00000003
28
29 #define QEMU_VM_EOF 0x00
30 #define QEMU_VM_SECTION_START 0x01
31 #define QEMU_VM_SECTION_PART 0x02
32 #define QEMU_VM_SECTION_END 0x03
33 #define QEMU_VM_SECTION_FULL 0x04
34 #define QEMU_VM_SUBSECTION 0x05
35 #define QEMU_VM_VMDESCRIPTION 0x06
36 #define QEMU_VM_CONFIGURATION 0x07
37 #define QEMU_VM_COMMAND 0x08
38 #define QEMU_VM_SECTION_FOOTER 0x7e
39
40 struct MigrationParams {
41 bool blk;
42 bool shared;
43 };
44
45 /* Messages sent on the return path from destination to source */
46 enum mig_rp_message_type {
47 MIG_RP_MSG_INVALID = 0, /* Must be 0 */
48 MIG_RP_MSG_SHUT, /* sibling will not send any more RP messages */
49 MIG_RP_MSG_PONG, /* Response to a PING; data (seq: be32 ) */
50
51 MIG_RP_MSG_REQ_PAGES_ID, /* data (start: be64, len: be32, id: string) */
52 MIG_RP_MSG_REQ_PAGES, /* data (start: be64, len: be32) */
53
54 MIG_RP_MSG_MAX
55 };
56
57 typedef QLIST_HEAD(, LoadStateEntry) LoadStateEntry_Head;
58
59 /* The current postcopy state is read/set by postcopy_state_get/set
60 * which update it atomically.
61 * The state is updated as postcopy messages are received, and
62 * in general only one thread should be writing to the state at any one
63 * time, initially the main thread and then the listen thread;
64 * Corner cases are where either thread finishes early and/or errors.
65 * The state is checked as messages are received to ensure that
66 * the source is sending us messages in the correct order.
67 * The state is also used by the RAM reception code to know if it
68 * has to place pages atomically, and the cleanup code at the end of
69 * the main thread to know if it has to delay cleanup until the end
70 * of postcopy.
71 */
72 typedef enum {
73 POSTCOPY_INCOMING_NONE = 0, /* Initial state - no postcopy */
74 POSTCOPY_INCOMING_ADVISE,
75 POSTCOPY_INCOMING_DISCARD,
76 POSTCOPY_INCOMING_LISTENING,
77 POSTCOPY_INCOMING_RUNNING,
78 POSTCOPY_INCOMING_END
79 } PostcopyState;
80
81 /* State for the incoming migration */
82 struct MigrationIncomingState {
83 QEMUFile *from_src_file;
84
85 /*
86 * Free at the start of the main state load, set as the main thread finishes
87 * loading state.
88 */
89 QemuEvent main_thread_load_event;
90
91 bool have_fault_thread;
92 QemuThread fault_thread;
93 QemuSemaphore fault_thread_sem;
94
95 bool have_listen_thread;
96 QemuThread listen_thread;
97 QemuSemaphore listen_thread_sem;
98
99 /* For the kernel to send us notifications */
100 int userfault_fd;
101 /* To tell the fault_thread to quit */
102 int userfault_quit_fd;
103 QEMUFile *to_src_file;
104 QemuMutex rp_mutex; /* We send replies from multiple threads */
105 void *postcopy_tmp_page;
106
107 int state;
108 /* See savevm.c */
109 LoadStateEntry_Head loadvm_handlers;
110 };
111
112 MigrationIncomingState *migration_incoming_get_current(void);
113 MigrationIncomingState *migration_incoming_state_new(QEMUFile *f);
114 void migration_incoming_state_destroy(void);
115
116 /*
117 * An outstanding page request, on the source, having been received
118 * and queued
119 */
120 struct MigrationSrcPageRequest {
121 RAMBlock *rb;
122 hwaddr offset;
123 hwaddr len;
124
125 QSIMPLEQ_ENTRY(MigrationSrcPageRequest) next_req;
126 };
127
128 struct MigrationState
129 {
130 int64_t bandwidth_limit;
131 size_t bytes_xfer;
132 size_t xfer_limit;
133 QemuThread thread;
134 QEMUBH *cleanup_bh;
135 QEMUFile *to_dst_file;
136 int parameters[MIGRATION_PARAMETER__MAX];
137
138 int state;
139 MigrationParams params;
140
141 /* State related to return path */
142 struct {
143 QEMUFile *from_dst_file;
144 QemuThread rp_thread;
145 bool error;
146 } rp_state;
147
148 double mbps;
149 int64_t total_time;
150 int64_t downtime;
151 int64_t expected_downtime;
152 int64_t dirty_pages_rate;
153 int64_t dirty_bytes_rate;
154 bool enabled_capabilities[MIGRATION_CAPABILITY__MAX];
155 int64_t xbzrle_cache_size;
156 int64_t setup_time;
157 int64_t dirty_sync_count;
158
159 /* Flag set once the migration has been asked to enter postcopy */
160 bool start_postcopy;
161 /* Flag set after postcopy has sent the device state */
162 bool postcopy_after_devices;
163
164 /* Flag set once the migration thread is running (and needs joining) */
165 bool migration_thread_running;
166
167 /* Queue of outstanding page requests from the destination */
168 QemuMutex src_page_req_mutex;
169 QSIMPLEQ_HEAD(src_page_requests, MigrationSrcPageRequest) src_page_requests;
170 /* The RAMBlock used in the last src_page_request */
171 RAMBlock *last_req_rb;
172 };
173
174 void migrate_set_state(int *state, int old_state, int new_state);
175
176 void process_incoming_migration(QEMUFile *f);
177
178 void qemu_start_incoming_migration(const char *uri, Error **errp);
179
180 uint64_t migrate_max_downtime(void);
181
182 void exec_start_incoming_migration(const char *host_port, Error **errp);
183
184 void exec_start_outgoing_migration(MigrationState *s, const char *host_port, Error **errp);
185
186 void tcp_start_incoming_migration(const char *host_port, Error **errp);
187
188 void tcp_start_outgoing_migration(MigrationState *s, const char *host_port, Error **errp);
189
190 void unix_start_incoming_migration(const char *path, Error **errp);
191
192 void unix_start_outgoing_migration(MigrationState *s, const char *path, Error **errp);
193
194 void fd_start_incoming_migration(const char *path, Error **errp);
195
196 void fd_start_outgoing_migration(MigrationState *s, const char *fdname, Error **errp);
197
198 void rdma_start_outgoing_migration(void *opaque, const char *host_port, Error **errp);
199
200 void rdma_start_incoming_migration(const char *host_port, Error **errp);
201
202 void migrate_fd_error(MigrationState *s);
203
204 void migrate_fd_connect(MigrationState *s);
205
206 int migrate_fd_close(MigrationState *s);
207
208 void add_migration_state_change_notifier(Notifier *notify);
209 void remove_migration_state_change_notifier(Notifier *notify);
210 MigrationState *migrate_init(const MigrationParams *params);
211 bool migration_in_setup(MigrationState *);
212 bool migration_has_finished(MigrationState *);
213 bool migration_has_failed(MigrationState *);
214 /* True if outgoing migration has entered postcopy phase */
215 bool migration_in_postcopy(MigrationState *);
216 /* ...and after the device transmission */
217 bool migration_in_postcopy_after_devices(MigrationState *);
218 MigrationState *migrate_get_current(void);
219
220 void migrate_compress_threads_create(void);
221 void migrate_compress_threads_join(void);
222 void migrate_decompress_threads_create(void);
223 void migrate_decompress_threads_join(void);
224 uint64_t ram_bytes_remaining(void);
225 uint64_t ram_bytes_transferred(void);
226 uint64_t ram_bytes_total(void);
227 void free_xbzrle_decoded_buf(void);
228
229 void acct_update_position(QEMUFile *f, size_t size, bool zero);
230
231 uint64_t dup_mig_bytes_transferred(void);
232 uint64_t dup_mig_pages_transferred(void);
233 uint64_t skipped_mig_bytes_transferred(void);
234 uint64_t skipped_mig_pages_transferred(void);
235 uint64_t norm_mig_bytes_transferred(void);
236 uint64_t norm_mig_pages_transferred(void);
237 uint64_t xbzrle_mig_bytes_transferred(void);
238 uint64_t xbzrle_mig_pages_transferred(void);
239 uint64_t xbzrle_mig_pages_overflow(void);
240 uint64_t xbzrle_mig_pages_cache_miss(void);
241 double xbzrle_mig_cache_miss_rate(void);
242
243 void ram_handle_compressed(void *host, uint8_t ch, uint64_t size);
244 void ram_debug_dump_bitmap(unsigned long *todump, bool expected);
245 /* For outgoing discard bitmap */
246 int ram_postcopy_send_discard_bitmap(MigrationState *ms);
247 /* For incoming postcopy discard */
248 int ram_discard_range(MigrationIncomingState *mis, const char *block_name,
249 uint64_t start, size_t length);
250 int ram_postcopy_incoming_init(MigrationIncomingState *mis);
251
252 /**
253 * @migrate_add_blocker - prevent migration from proceeding
254 *
255 * @reason - an error to be returned whenever migration is attempted
256 */
257 void migrate_add_blocker(Error *reason);
258
259 /**
260 * @migrate_del_blocker - remove a blocking error from migration
261 *
262 * @reason - the error blocking migration
263 */
264 void migrate_del_blocker(Error *reason);
265
266 bool migrate_postcopy_ram(void);
267 bool migrate_zero_blocks(void);
268
269 bool migrate_auto_converge(void);
270
271 int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
272 uint8_t *dst, int dlen);
273 int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen);
274
275 int migrate_use_xbzrle(void);
276 int64_t migrate_xbzrle_cache_size(void);
277
278 int64_t xbzrle_cache_resize(int64_t new_size);
279
280 bool migrate_use_compression(void);
281 int migrate_compress_level(void);
282 int migrate_compress_threads(void);
283 int migrate_decompress_threads(void);
284 bool migrate_use_events(void);
285
286 /* Sending on the return path - generic and then for each message type */
287 void migrate_send_rp_message(MigrationIncomingState *mis,
288 enum mig_rp_message_type message_type,
289 uint16_t len, void *data);
290 void migrate_send_rp_shut(MigrationIncomingState *mis,
291 uint32_t value);
292 void migrate_send_rp_pong(MigrationIncomingState *mis,
293 uint32_t value);
294 void migrate_send_rp_req_pages(MigrationIncomingState *mis, const char* rbname,
295 ram_addr_t start, size_t len);
296
297 void ram_control_before_iterate(QEMUFile *f, uint64_t flags);
298 void ram_control_after_iterate(QEMUFile *f, uint64_t flags);
299 void ram_control_load_hook(QEMUFile *f, uint64_t flags, void *data);
300
301 /* Whenever this is found in the data stream, the flags
302 * will be passed to ram_control_load_hook in the incoming-migration
303 * side. This lets before_ram_iterate/after_ram_iterate add
304 * transport-specific sections to the RAM migration data.
305 */
306 #define RAM_SAVE_FLAG_HOOK 0x80
307
308 #define RAM_SAVE_CONTROL_NOT_SUPP -1000
309 #define RAM_SAVE_CONTROL_DELAYED -2000
310
311 size_t ram_control_save_page(QEMUFile *f, ram_addr_t block_offset,
312 ram_addr_t offset, size_t size,
313 uint64_t *bytes_sent);
314
315 void ram_mig_init(void);
316 void savevm_skip_section_footers(void);
317 void register_global_state(void);
318 void global_state_set_optional(void);
319 void savevm_skip_configuration(void);
320 int global_state_store(void);
321 void global_state_store_running(void);
322
323 void flush_page_queue(MigrationState *ms);
324 int ram_save_queue_pages(MigrationState *ms, const char *rbname,
325 ram_addr_t start, ram_addr_t len);
326
327 PostcopyState postcopy_state_get(void);
328 /* Set the state and return the old state */
329 PostcopyState postcopy_state_set(PostcopyState new_state);
330 #endif