Page request: Process incoming page request
[qemu/ar7.git] / include / migration / migration.h
blob1491bf32edf4e793a74674433dbb7968c18dcc73
1 /*
2 * QEMU live migration
4 * Copyright IBM, Corp. 2008
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #ifndef QEMU_MIGRATION_H
15 #define QEMU_MIGRATION_H
17 #include "qapi/qmp/qdict.h"
18 #include "qemu-common.h"
19 #include "qemu/thread.h"
20 #include "qemu/notify.h"
21 #include "qapi/error.h"
22 #include "migration/vmstate.h"
23 #include "qapi-types.h"
24 #include "exec/cpu-common.h"
26 #define QEMU_VM_FILE_MAGIC 0x5145564d
27 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
28 #define QEMU_VM_FILE_VERSION 0x00000003
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
36 #define QEMU_VM_VMDESCRIPTION 0x06
37 #define QEMU_VM_CONFIGURATION 0x07
38 #define QEMU_VM_COMMAND 0x08
39 #define QEMU_VM_SECTION_FOOTER 0x7e
41 struct MigrationParams {
42 bool blk;
43 bool shared;
46 /* Messages sent on the return path from destination to source */
47 enum mig_rp_message_type {
48 MIG_RP_MSG_INVALID = 0, /* Must be 0 */
49 MIG_RP_MSG_SHUT, /* sibling will not send any more RP messages */
50 MIG_RP_MSG_PONG, /* Response to a PING; data (seq: be32 ) */
52 MIG_RP_MSG_REQ_PAGES_ID, /* data (start: be64, len: be32, id: string) */
53 MIG_RP_MSG_REQ_PAGES, /* data (start: be64, len: be32) */
55 MIG_RP_MSG_MAX
58 typedef QLIST_HEAD(, LoadStateEntry) LoadStateEntry_Head;
60 /* The current postcopy state is read/set by postcopy_state_get/set
61 * which update it atomically.
62 * The state is updated as postcopy messages are received, and
63 * in general only one thread should be writing to the state at any one
64 * time, initially the main thread and then the listen thread;
65 * Corner cases are where either thread finishes early and/or errors.
66 * The state is checked as messages are received to ensure that
67 * the source is sending us messages in the correct order.
68 * The state is also used by the RAM reception code to know if it
69 * has to place pages atomically, and the cleanup code at the end of
70 * the main thread to know if it has to delay cleanup until the end
71 * of postcopy.
73 typedef enum {
74 POSTCOPY_INCOMING_NONE = 0, /* Initial state - no postcopy */
75 POSTCOPY_INCOMING_ADVISE,
76 POSTCOPY_INCOMING_DISCARD,
77 POSTCOPY_INCOMING_LISTENING,
78 POSTCOPY_INCOMING_RUNNING,
79 POSTCOPY_INCOMING_END
80 } PostcopyState;
82 /* State for the incoming migration */
83 struct MigrationIncomingState {
84 QEMUFile *from_src_file;
87 * Free at the start of the main state load, set as the main thread finishes
88 * loading state.
90 QemuEvent main_thread_load_event;
92 QemuThread fault_thread;
93 QemuSemaphore fault_thread_sem;
95 /* For the kernel to send us notifications */
96 int userfault_fd;
97 QEMUFile *to_src_file;
98 QemuMutex rp_mutex; /* We send replies from multiple threads */
100 /* See savevm.c */
101 LoadStateEntry_Head loadvm_handlers;
104 MigrationIncomingState *migration_incoming_get_current(void);
105 MigrationIncomingState *migration_incoming_state_new(QEMUFile *f);
106 void migration_incoming_state_destroy(void);
109 * An outstanding page request, on the source, having been received
110 * and queued
112 struct MigrationSrcPageRequest {
113 RAMBlock *rb;
114 hwaddr offset;
115 hwaddr len;
117 QSIMPLEQ_ENTRY(MigrationSrcPageRequest) next_req;
120 struct MigrationState
122 int64_t bandwidth_limit;
123 size_t bytes_xfer;
124 size_t xfer_limit;
125 QemuThread thread;
126 QEMUBH *cleanup_bh;
127 QEMUFile *file;
128 int parameters[MIGRATION_PARAMETER_MAX];
130 int state;
131 MigrationParams params;
133 /* State related to return path */
134 struct {
135 QEMUFile *from_dst_file;
136 QemuThread rp_thread;
137 bool error;
138 } rp_state;
140 double mbps;
141 int64_t total_time;
142 int64_t downtime;
143 int64_t expected_downtime;
144 int64_t dirty_pages_rate;
145 int64_t dirty_bytes_rate;
146 bool enabled_capabilities[MIGRATION_CAPABILITY_MAX];
147 int64_t xbzrle_cache_size;
148 int64_t setup_time;
149 int64_t dirty_sync_count;
151 /* Flag set once the migration has been asked to enter postcopy */
152 bool start_postcopy;
154 /* Flag set once the migration thread is running (and needs joining) */
155 bool migration_thread_running;
157 /* Queue of outstanding page requests from the destination */
158 QemuMutex src_page_req_mutex;
159 QSIMPLEQ_HEAD(src_page_requests, MigrationSrcPageRequest) src_page_requests;
160 /* The RAMBlock used in the last src_page_request */
161 RAMBlock *last_req_rb;
164 void process_incoming_migration(QEMUFile *f);
166 void qemu_start_incoming_migration(const char *uri, Error **errp);
168 uint64_t migrate_max_downtime(void);
170 void exec_start_incoming_migration(const char *host_port, Error **errp);
172 void exec_start_outgoing_migration(MigrationState *s, const char *host_port, Error **errp);
174 void tcp_start_incoming_migration(const char *host_port, Error **errp);
176 void tcp_start_outgoing_migration(MigrationState *s, const char *host_port, Error **errp);
178 void unix_start_incoming_migration(const char *path, Error **errp);
180 void unix_start_outgoing_migration(MigrationState *s, const char *path, Error **errp);
182 void fd_start_incoming_migration(const char *path, Error **errp);
184 void fd_start_outgoing_migration(MigrationState *s, const char *fdname, Error **errp);
186 void rdma_start_outgoing_migration(void *opaque, const char *host_port, Error **errp);
188 void rdma_start_incoming_migration(const char *host_port, Error **errp);
190 void migrate_fd_error(MigrationState *s);
192 void migrate_fd_connect(MigrationState *s);
194 int migrate_fd_close(MigrationState *s);
196 void add_migration_state_change_notifier(Notifier *notify);
197 void remove_migration_state_change_notifier(Notifier *notify);
198 MigrationState *migrate_init(const MigrationParams *params);
199 bool migration_in_setup(MigrationState *);
200 bool migration_has_finished(MigrationState *);
201 bool migration_has_failed(MigrationState *);
202 /* True if outgoing migration has entered postcopy phase */
203 bool migration_in_postcopy(MigrationState *);
204 MigrationState *migrate_get_current(void);
206 void migrate_compress_threads_create(void);
207 void migrate_compress_threads_join(void);
208 void migrate_decompress_threads_create(void);
209 void migrate_decompress_threads_join(void);
210 uint64_t ram_bytes_remaining(void);
211 uint64_t ram_bytes_transferred(void);
212 uint64_t ram_bytes_total(void);
213 void free_xbzrle_decoded_buf(void);
215 void acct_update_position(QEMUFile *f, size_t size, bool zero);
217 uint64_t dup_mig_bytes_transferred(void);
218 uint64_t dup_mig_pages_transferred(void);
219 uint64_t skipped_mig_bytes_transferred(void);
220 uint64_t skipped_mig_pages_transferred(void);
221 uint64_t norm_mig_bytes_transferred(void);
222 uint64_t norm_mig_pages_transferred(void);
223 uint64_t xbzrle_mig_bytes_transferred(void);
224 uint64_t xbzrle_mig_pages_transferred(void);
225 uint64_t xbzrle_mig_pages_overflow(void);
226 uint64_t xbzrle_mig_pages_cache_miss(void);
227 double xbzrle_mig_cache_miss_rate(void);
229 void ram_handle_compressed(void *host, uint8_t ch, uint64_t size);
230 void ram_debug_dump_bitmap(unsigned long *todump, bool expected);
231 /* For outgoing discard bitmap */
232 int ram_postcopy_send_discard_bitmap(MigrationState *ms);
233 /* For incoming postcopy discard */
234 int ram_discard_range(MigrationIncomingState *mis, const char *block_name,
235 uint64_t start, size_t length);
236 int ram_postcopy_incoming_init(MigrationIncomingState *mis);
239 * @migrate_add_blocker - prevent migration from proceeding
241 * @reason - an error to be returned whenever migration is attempted
243 void migrate_add_blocker(Error *reason);
246 * @migrate_del_blocker - remove a blocking error from migration
248 * @reason - the error blocking migration
250 void migrate_del_blocker(Error *reason);
252 bool migrate_postcopy_ram(void);
253 bool migrate_zero_blocks(void);
255 bool migrate_auto_converge(void);
257 int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
258 uint8_t *dst, int dlen);
259 int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen);
261 int migrate_use_xbzrle(void);
262 int64_t migrate_xbzrle_cache_size(void);
264 int64_t xbzrle_cache_resize(int64_t new_size);
266 bool migrate_use_compression(void);
267 int migrate_compress_level(void);
268 int migrate_compress_threads(void);
269 int migrate_decompress_threads(void);
270 bool migrate_use_events(void);
272 /* Sending on the return path - generic and then for each message type */
273 void migrate_send_rp_message(MigrationIncomingState *mis,
274 enum mig_rp_message_type message_type,
275 uint16_t len, void *data);
276 void migrate_send_rp_shut(MigrationIncomingState *mis,
277 uint32_t value);
278 void migrate_send_rp_pong(MigrationIncomingState *mis,
279 uint32_t value);
280 void migrate_send_rp_req_pages(MigrationIncomingState *mis, const char* rbname,
281 ram_addr_t start, size_t len);
283 void ram_control_before_iterate(QEMUFile *f, uint64_t flags);
284 void ram_control_after_iterate(QEMUFile *f, uint64_t flags);
285 void ram_control_load_hook(QEMUFile *f, uint64_t flags, void *data);
287 /* Whenever this is found in the data stream, the flags
288 * will be passed to ram_control_load_hook in the incoming-migration
289 * side. This lets before_ram_iterate/after_ram_iterate add
290 * transport-specific sections to the RAM migration data.
292 #define RAM_SAVE_FLAG_HOOK 0x80
294 #define RAM_SAVE_CONTROL_NOT_SUPP -1000
295 #define RAM_SAVE_CONTROL_DELAYED -2000
297 size_t ram_control_save_page(QEMUFile *f, ram_addr_t block_offset,
298 ram_addr_t offset, size_t size,
299 uint64_t *bytes_sent);
301 void ram_mig_init(void);
302 void savevm_skip_section_footers(void);
303 void register_global_state(void);
304 void global_state_set_optional(void);
305 void savevm_skip_configuration(void);
306 int global_state_store(void);
307 void global_state_store_running(void);
309 void flush_page_queue(MigrationState *ms);
310 int ram_save_queue_pages(MigrationState *ms, const char *rbname,
311 ram_addr_t start, ram_addr_t len);
313 PostcopyState postcopy_state_get(void);
314 /* Set the state and return the old state */
315 PostcopyState postcopy_state_set(PostcopyState new_state);
316 #endif