]>
Commit | Line | Data |
---|---|---|
5bb7910a AL |
1 | /* |
2 | * QEMU live migration | |
3 | * | |
4 | * Copyright IBM, Corp. 2008 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
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 | * | |
6b620ca3 PB |
12 | * Contributions after 2012-01-13 are licensed under the terms of the |
13 | * GNU GPL, version 2 or (at your option) any later version. | |
5bb7910a AL |
14 | */ |
15 | ||
1393a485 | 16 | #include "qemu/osdep.h" |
f348b6d1 | 17 | #include "qemu/cutils.h" |
d49b6836 | 18 | #include "qemu/error-report.h" |
db725815 | 19 | #include "qemu/main-loop.h" |
795c40b8 | 20 | #include "migration/blocker.h" |
f4dbe1bf | 21 | #include "exec.h" |
7fcac4a2 | 22 | #include "fd.h" |
61e8b148 | 23 | #include "socket.h" |
54d31236 | 24 | #include "sysemu/runstate.h" |
46517dd4 | 25 | #include "sysemu/sysemu.h" |
b0c3cf94 | 26 | #include "sysemu/cpu-throttle.h" |
e1a3ecee | 27 | #include "rdma.h" |
7b1e1a22 | 28 | #include "ram.h" |
84a899de | 29 | #include "migration/global_state.h" |
c4b63b7c | 30 | #include "migration/misc.h" |
6666c96a | 31 | #include "migration.h" |
20a519a0 | 32 | #include "savevm.h" |
40014d81 | 33 | #include "qemu-file-channel.h" |
08a0aee1 | 34 | #include "qemu-file.h" |
987772d9 | 35 | #include "migration/vmstate.h" |
737e150e | 36 | #include "block/block.h" |
e688df6b | 37 | #include "qapi/error.h" |
9aca82ba | 38 | #include "qapi/clone-visitor.h" |
31e4c354 | 39 | #include "qapi/qapi-visit-migration.h" |
9aca82ba | 40 | #include "qapi/qapi-visit-sockets.h" |
9af23989 MA |
41 | #include "qapi/qapi-commands-migration.h" |
42 | #include "qapi/qapi-events-migration.h" | |
cc7a8ea7 | 43 | #include "qapi/qmp/qerror.h" |
15280c36 | 44 | #include "qapi/qmp/qnull.h" |
ab28bd23 | 45 | #include "qemu/rcu.h" |
2c9e6fec | 46 | #include "block.h" |
be07b0ac | 47 | #include "postcopy-ram.h" |
766bd176 | 48 | #include "qemu/thread.h" |
c09e5bb1 | 49 | #include "trace.h" |
51180423 | 50 | #include "exec/target_page.h" |
61b67d47 | 51 | #include "io/channel-buffer.h" |
35a6ed4f | 52 | #include "migration/colo.h" |
4ffdb337 | 53 | #include "hw/boards.h" |
a27bd6c7 | 54 | #include "hw/qdev-properties.h" |
ce35e229 | 55 | #include "hw/qdev-properties-system.h" |
9d18af93 | 56 | #include "monitor/monitor.h" |
50510ea2 | 57 | #include "net/announce.h" |
c7e0acd5 | 58 | #include "qemu/queue.h" |
d32ca5ad | 59 | #include "multifd.h" |
b5eea99e | 60 | #include "qemu/yank.h" |
6e8c25b4 | 61 | #include "sysemu/cpus.h" |
065e2813 | 62 | |
3710586c KW |
63 | #ifdef CONFIG_VFIO |
64 | #include "hw/vfio/vfio-common.h" | |
65 | #endif | |
66 | ||
7590a2ae | 67 | #define MAX_THROTTLE (128 << 20) /* Migration transfer speed throttling */ |
5bb7910a | 68 | |
5b4e1eb7 JQ |
69 | /* Amount of time to allocate to each "chunk" of bandwidth-throttled |
70 | * data. */ | |
71 | #define BUFFER_DELAY 100 | |
72 | #define XFER_LIMIT_RATIO (1000 / BUFFER_DELAY) | |
73 | ||
2ff30257 AA |
74 | /* Time in milliseconds we are allowed to stop the source, |
75 | * for sending the last part */ | |
76 | #define DEFAULT_MIGRATE_SET_DOWNTIME 300 | |
77 | ||
87c9cc1c DHB |
78 | /* Maximum migrate downtime set to 2000 seconds */ |
79 | #define MAX_MIGRATE_DOWNTIME_SECONDS 2000 | |
80 | #define MAX_MIGRATE_DOWNTIME (MAX_MIGRATE_DOWNTIME_SECONDS * 1000) | |
81 | ||
8706d2d5 LL |
82 | /* Default compression thread count */ |
83 | #define DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT 8 | |
3fcb38c2 LL |
84 | /* Default decompression thread count, usually decompression is at |
85 | * least 4 times as fast as compression.*/ | |
86 | #define DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT 2 | |
8706d2d5 LL |
87 | /*0: means nocompress, 1: best speed, ... 9: best compress ratio */ |
88 | #define DEFAULT_MIGRATE_COMPRESS_LEVEL 1 | |
1626fee3 | 89 | /* Define default autoconverge cpu throttle migration parameters */ |
dc14a470 | 90 | #define DEFAULT_MIGRATE_THROTTLE_TRIGGER_THRESHOLD 50 |
d85a31d1 JH |
91 | #define DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL 20 |
92 | #define DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT 10 | |
4cbc9c7f | 93 | #define DEFAULT_MIGRATE_MAX_CPU_THROTTLE 99 |
8706d2d5 | 94 | |
17ad9b35 | 95 | /* Migration XBZRLE default cache size */ |
73af8dd8 | 96 | #define DEFAULT_MIGRATE_XBZRLE_CACHE_SIZE (64 * 1024 * 1024) |
17ad9b35 | 97 | |
131b2153 ZC |
98 | /* The delay time (in ms) between two COLO checkpoints */ |
99 | #define DEFAULT_MIGRATE_X_CHECKPOINT_DELAY (200 * 100) | |
4075fb1c | 100 | #define DEFAULT_MIGRATE_MULTIFD_CHANNELS 2 |
96eef042 | 101 | #define DEFAULT_MIGRATE_MULTIFD_COMPRESSION MULTIFD_COMPRESSION_NONE |
9004db48 JQ |
102 | /* 0: means nocompress, 1: best speed, ... 9: best compress ratio */ |
103 | #define DEFAULT_MIGRATE_MULTIFD_ZLIB_LEVEL 1 | |
6a9ad154 JQ |
104 | /* 0: means nocompress, 1: best speed, ... 20: best compress ratio */ |
105 | #define DEFAULT_MIGRATE_MULTIFD_ZSTD_LEVEL 1 | |
68b53591 | 106 | |
7e555c6c DDAG |
107 | /* Background transfer rate for postcopy, 0 means unlimited, note |
108 | * that page requests can still exceed this limit. | |
109 | */ | |
110 | #define DEFAULT_MIGRATE_MAX_POSTCOPY_BANDWIDTH 0 | |
111 | ||
ee3d96ba DDAG |
112 | /* |
113 | * Parameters for self_announce_delay giving a stream of RARP/ARP | |
114 | * packets after migration. | |
115 | */ | |
116 | #define DEFAULT_MIGRATE_ANNOUNCE_INITIAL 50 | |
117 | #define DEFAULT_MIGRATE_ANNOUNCE_MAX 550 | |
118 | #define DEFAULT_MIGRATE_ANNOUNCE_ROUNDS 5 | |
119 | #define DEFAULT_MIGRATE_ANNOUNCE_STEP 100 | |
120 | ||
99a0db9b GH |
121 | static NotifierList migration_state_notifiers = |
122 | NOTIFIER_LIST_INITIALIZER(migration_state_notifiers); | |
123 | ||
da6f1790 JQ |
124 | /* Messages sent on the return path from destination to source */ |
125 | enum mig_rp_message_type { | |
126 | MIG_RP_MSG_INVALID = 0, /* Must be 0 */ | |
127 | MIG_RP_MSG_SHUT, /* sibling will not send any more RP messages */ | |
128 | MIG_RP_MSG_PONG, /* Response to a PING; data (seq: be32 ) */ | |
129 | ||
130 | MIG_RP_MSG_REQ_PAGES_ID, /* data (start: be64, len: be32, id: string) */ | |
131 | MIG_RP_MSG_REQ_PAGES, /* data (start: be64, len: be32) */ | |
a335debb | 132 | MIG_RP_MSG_RECV_BITMAP, /* send recved_bitmap back to source */ |
13955b89 | 133 | MIG_RP_MSG_RESUME_ACK, /* tell source that we are ready to resume */ |
da6f1790 JQ |
134 | |
135 | MIG_RP_MSG_MAX | |
136 | }; | |
137 | ||
6e8c25b4 AG |
138 | /* Migration capabilities set */ |
139 | struct MigrateCapsSet { | |
140 | int size; /* Capability set size */ | |
141 | MigrationCapability caps[]; /* Variadic array of capabilities */ | |
142 | }; | |
143 | typedef struct MigrateCapsSet MigrateCapsSet; | |
144 | ||
145 | /* Define and initialize MigrateCapsSet */ | |
146 | #define INITIALIZE_MIGRATE_CAPS_SET(_name, ...) \ | |
147 | MigrateCapsSet _name = { \ | |
148 | .size = sizeof((int []) { __VA_ARGS__ }) / sizeof(int), \ | |
149 | .caps = { __VA_ARGS__ } \ | |
150 | } | |
151 | ||
152 | /* Background-snapshot compatibility check list */ | |
153 | static const | |
154 | INITIALIZE_MIGRATE_CAPS_SET(check_caps_background_snapshot, | |
155 | MIGRATION_CAPABILITY_POSTCOPY_RAM, | |
156 | MIGRATION_CAPABILITY_DIRTY_BITMAPS, | |
157 | MIGRATION_CAPABILITY_POSTCOPY_BLOCKTIME, | |
158 | MIGRATION_CAPABILITY_LATE_BLOCK_ACTIVATE, | |
159 | MIGRATION_CAPABILITY_RETURN_PATH, | |
160 | MIGRATION_CAPABILITY_MULTIFD, | |
161 | MIGRATION_CAPABILITY_PAUSE_BEFORE_SWITCHOVER, | |
162 | MIGRATION_CAPABILITY_AUTO_CONVERGE, | |
163 | MIGRATION_CAPABILITY_RELEASE_RAM, | |
164 | MIGRATION_CAPABILITY_RDMA_PIN_ALL, | |
165 | MIGRATION_CAPABILITY_COMPRESS, | |
166 | MIGRATION_CAPABILITY_XBZRLE, | |
167 | MIGRATION_CAPABILITY_X_COLO, | |
168 | MIGRATION_CAPABILITY_VALIDATE_UUID); | |
169 | ||
17549e84 JQ |
170 | /* When we add fault tolerance, we could have several |
171 | migrations at once. For now we don't need to add | |
172 | dynamic creation of migration */ | |
173 | ||
e5cb7e76 | 174 | static MigrationState *current_migration; |
e1b1b1bc | 175 | static MigrationIncomingState *current_incoming; |
e5cb7e76 | 176 | |
3af8554b DDAG |
177 | static GSList *migration_blockers; |
178 | ||
8b0b29dc | 179 | static bool migration_object_check(MigrationState *ms, Error **errp); |
0331c8ca DDAG |
180 | static int migration_maybe_pause(MigrationState *s, |
181 | int *current_active_state, | |
182 | int new_state); | |
892ae715 | 183 | static void migrate_fd_cancel(MigrationState *s); |
8b0b29dc | 184 | |
8f8bfffc PX |
185 | static gint page_request_addr_cmp(gconstpointer ap, gconstpointer bp) |
186 | { | |
187 | uintptr_t a = (uintptr_t) ap, b = (uintptr_t) bp; | |
188 | ||
189 | return (a > b) - (a < b); | |
190 | } | |
191 | ||
e5cb7e76 PX |
192 | void migration_object_init(void) |
193 | { | |
8b0b29dc | 194 | Error *err = NULL; |
4ffdb337 | 195 | |
e5cb7e76 PX |
196 | /* This can only be called once. */ |
197 | assert(!current_migration); | |
198 | current_migration = MIGRATION_OBJ(object_new(TYPE_MIGRATION)); | |
4ffdb337 | 199 | |
e1b1b1bc PX |
200 | /* |
201 | * Init the migrate incoming object as well no matter whether | |
202 | * we'll use it or not. | |
203 | */ | |
204 | assert(!current_incoming); | |
205 | current_incoming = g_new0(MigrationIncomingState, 1); | |
206 | current_incoming->state = MIGRATION_STATUS_NONE; | |
207 | current_incoming->postcopy_remote_fds = | |
208 | g_array_new(FALSE, TRUE, sizeof(struct PostCopyFD)); | |
209 | qemu_mutex_init(¤t_incoming->rp_mutex); | |
210 | qemu_event_init(¤t_incoming->main_thread_load_event, false); | |
211 | qemu_sem_init(¤t_incoming->postcopy_pause_sem_dst, 0); | |
212 | qemu_sem_init(¤t_incoming->postcopy_pause_sem_fault, 0); | |
8f8bfffc PX |
213 | qemu_mutex_init(¤t_incoming->page_request_mutex); |
214 | current_incoming->page_requested = g_tree_new(page_request_addr_cmp); | |
e1b1b1bc | 215 | |
8b0b29dc PX |
216 | if (!migration_object_check(current_migration, &err)) { |
217 | error_report_err(err); | |
218 | exit(1); | |
219 | } | |
e0d17dfd PB |
220 | |
221 | blk_mig_init(); | |
222 | ram_mig_init(); | |
223 | dirty_bitmap_mig_init(); | |
e5cb7e76 PX |
224 | } |
225 | ||
892ae715 | 226 | void migration_shutdown(void) |
1f895604 | 227 | { |
892ae715 DDAG |
228 | /* |
229 | * Cancel the current migration - that will (eventually) | |
230 | * stop the migration using this structure | |
231 | */ | |
232 | migrate_fd_cancel(current_migration); | |
1f895604 | 233 | object_unref(OBJECT(current_migration)); |
1499ab09 VSO |
234 | |
235 | /* | |
236 | * Cancel outgoing migration of dirty bitmaps. It should | |
237 | * at least unref used block nodes. | |
238 | */ | |
239 | dirty_bitmap_mig_cancel_outgoing(); | |
240 | ||
241 | /* | |
242 | * Cancel incoming migration of dirty bitmaps. Dirty bitmaps | |
243 | * are non-critical data, and their loss never considered as | |
244 | * something serious. | |
245 | */ | |
246 | dirty_bitmap_mig_cancel_incoming(); | |
1f895604 VSO |
247 | } |
248 | ||
bca7856a | 249 | /* For outgoing */ |
859bc756 | 250 | MigrationState *migrate_get_current(void) |
17549e84 | 251 | { |
e5cb7e76 PX |
252 | /* This can only be called after the object created. */ |
253 | assert(current_migration); | |
254 | return current_migration; | |
17549e84 JQ |
255 | } |
256 | ||
bca7856a DDAG |
257 | MigrationIncomingState *migration_incoming_get_current(void) |
258 | { | |
e1b1b1bc PX |
259 | assert(current_incoming); |
260 | return current_incoming; | |
bca7856a DDAG |
261 | } |
262 | ||
263 | void migration_incoming_state_destroy(void) | |
264 | { | |
b4b076da JQ |
265 | struct MigrationIncomingState *mis = migration_incoming_get_current(); |
266 | ||
3482655b | 267 | if (mis->to_src_file) { |
660819b1 PX |
268 | /* Tell source that we are done */ |
269 | migrate_send_rp_shut(mis, qemu_file_get_error(mis->from_src_file) != 0); | |
3482655b PX |
270 | qemu_fclose(mis->to_src_file); |
271 | mis->to_src_file = NULL; | |
272 | } | |
273 | ||
660819b1 PX |
274 | if (mis->from_src_file) { |
275 | qemu_fclose(mis->from_src_file); | |
276 | mis->from_src_file = NULL; | |
277 | } | |
00fa4fc8 DDAG |
278 | if (mis->postcopy_remote_fds) { |
279 | g_array_free(mis->postcopy_remote_fds, TRUE); | |
280 | mis->postcopy_remote_fds = NULL; | |
281 | } | |
660819b1 | 282 | |
1783c00f DDAG |
283 | qemu_event_reset(&mis->main_thread_load_event); |
284 | ||
8f8bfffc PX |
285 | if (mis->page_requested) { |
286 | g_tree_destroy(mis->page_requested); | |
287 | mis->page_requested = NULL; | |
288 | } | |
289 | ||
9aca82ba JQ |
290 | if (mis->socket_address_list) { |
291 | qapi_free_SocketAddressList(mis->socket_address_list); | |
292 | mis->socket_address_list = NULL; | |
293 | } | |
b5eea99e LS |
294 | |
295 | yank_unregister_instance(MIGRATION_YANK_INSTANCE); | |
bca7856a DDAG |
296 | } |
297 | ||
b05dc723 JQ |
298 | static void migrate_generate_event(int new_state) |
299 | { | |
300 | if (migrate_use_events()) { | |
3ab72385 | 301 | qapi_event_send_migration(new_state); |
b05dc723 JQ |
302 | } |
303 | } | |
304 | ||
0f073f44 DDAG |
305 | static bool migrate_late_block_activate(void) |
306 | { | |
307 | MigrationState *s; | |
308 | ||
309 | s = migrate_get_current(); | |
310 | ||
311 | return s->enabled_capabilities[ | |
312 | MIGRATION_CAPABILITY_LATE_BLOCK_ACTIVATE]; | |
313 | } | |
314 | ||
da6f1790 JQ |
315 | /* |
316 | * Send a message on the return channel back to the source | |
317 | * of the migration. | |
318 | */ | |
d6208e35 PX |
319 | static int migrate_send_rp_message(MigrationIncomingState *mis, |
320 | enum mig_rp_message_type message_type, | |
321 | uint16_t len, void *data) | |
da6f1790 | 322 | { |
d6208e35 PX |
323 | int ret = 0; |
324 | ||
da6f1790 | 325 | trace_migrate_send_rp_message((int)message_type, len); |
37396950 | 326 | QEMU_LOCK_GUARD(&mis->rp_mutex); |
d6208e35 PX |
327 | |
328 | /* | |
329 | * It's possible that the file handle got lost due to network | |
330 | * failures. | |
331 | */ | |
332 | if (!mis->to_src_file) { | |
333 | ret = -EIO; | |
37396950 | 334 | return ret; |
d6208e35 PX |
335 | } |
336 | ||
da6f1790 JQ |
337 | qemu_put_be16(mis->to_src_file, (unsigned int)message_type); |
338 | qemu_put_be16(mis->to_src_file, len); | |
339 | qemu_put_buffer(mis->to_src_file, data, len); | |
340 | qemu_fflush(mis->to_src_file); | |
d6208e35 PX |
341 | |
342 | /* It's possible that qemu file got error during sending */ | |
343 | ret = qemu_file_get_error(mis->to_src_file); | |
344 | ||
d6208e35 | 345 | return ret; |
da6f1790 JQ |
346 | } |
347 | ||
2e2bce16 PX |
348 | /* Request one page from the source VM at the given start address. |
349 | * rb: the RAMBlock to request the page in | |
1e2d90eb DDAG |
350 | * Start: Address offset within the RB |
351 | * Len: Length in bytes required - must be a multiple of pagesize | |
352 | */ | |
7a267fc4 PX |
353 | int migrate_send_rp_message_req_pages(MigrationIncomingState *mis, |
354 | RAMBlock *rb, ram_addr_t start) | |
1e2d90eb | 355 | { |
cb8d4c8f | 356 | uint8_t bufc[12 + 1 + 255]; /* start (8), len (4), rbname up to 256 */ |
1e2d90eb | 357 | size_t msglen = 12; /* start + len */ |
2e2bce16 | 358 | size_t len = qemu_ram_pagesize(rb); |
d6208e35 | 359 | enum mig_rp_message_type msg_type; |
2e2bce16 PX |
360 | const char *rbname; |
361 | int rbname_len; | |
1e2d90eb DDAG |
362 | |
363 | *(uint64_t *)bufc = cpu_to_be64((uint64_t)start); | |
364 | *(uint32_t *)(bufc + 8) = cpu_to_be32((uint32_t)len); | |
365 | ||
2e2bce16 PX |
366 | /* |
367 | * We maintain the last ramblock that we requested for page. Note that we | |
368 | * don't need locking because this function will only be called within the | |
369 | * postcopy ram fault thread. | |
370 | */ | |
371 | if (rb != mis->last_rb) { | |
372 | mis->last_rb = rb; | |
373 | ||
374 | rbname = qemu_ram_get_idstr(rb); | |
375 | rbname_len = strlen(rbname); | |
376 | ||
1e2d90eb DDAG |
377 | assert(rbname_len < 256); |
378 | ||
379 | bufc[msglen++] = rbname_len; | |
380 | memcpy(bufc + msglen, rbname, rbname_len); | |
381 | msglen += rbname_len; | |
d6208e35 | 382 | msg_type = MIG_RP_MSG_REQ_PAGES_ID; |
1e2d90eb | 383 | } else { |
d6208e35 | 384 | msg_type = MIG_RP_MSG_REQ_PAGES; |
1e2d90eb | 385 | } |
d6208e35 PX |
386 | |
387 | return migrate_send_rp_message(mis, msg_type, msglen, bufc); | |
1e2d90eb DDAG |
388 | } |
389 | ||
7a267fc4 | 390 | int migrate_send_rp_req_pages(MigrationIncomingState *mis, |
8f8bfffc | 391 | RAMBlock *rb, ram_addr_t start, uint64_t haddr) |
7a267fc4 | 392 | { |
8f8bfffc | 393 | void *aligned = (void *)(uintptr_t)(haddr & (-qemu_ram_pagesize(rb))); |
a2429283 | 394 | bool received = false; |
8f8bfffc PX |
395 | |
396 | WITH_QEMU_LOCK_GUARD(&mis->page_request_mutex) { | |
397 | received = ramblock_recv_bitmap_test_byte_offset(rb, start); | |
398 | if (!received && !g_tree_lookup(mis->page_requested, aligned)) { | |
399 | /* | |
400 | * The page has not been received, and it's not yet in the page | |
401 | * request list. Queue it. Set the value of element to 1, so that | |
402 | * things like g_tree_lookup() will return TRUE (1) when found. | |
403 | */ | |
404 | g_tree_insert(mis->page_requested, aligned, (gpointer)1); | |
405 | mis->page_requested_count++; | |
406 | trace_postcopy_page_req_add(aligned, mis->page_requested_count); | |
407 | } | |
408 | } | |
409 | ||
410 | /* | |
411 | * If the page is there, skip sending the message. We don't even need the | |
412 | * lock because as long as the page arrived, it'll be there forever. | |
413 | */ | |
414 | if (received) { | |
415 | return 0; | |
416 | } | |
417 | ||
7a267fc4 PX |
418 | return migrate_send_rp_message_req_pages(mis, rb, start); |
419 | } | |
420 | ||
aad555c2 ZC |
421 | static bool migration_colo_enabled; |
422 | bool migration_incoming_colo_enabled(void) | |
423 | { | |
424 | return migration_colo_enabled; | |
425 | } | |
426 | ||
427 | void migration_incoming_disable_colo(void) | |
428 | { | |
18b1d3c9 | 429 | ram_block_discard_disable(false); |
aad555c2 ZC |
430 | migration_colo_enabled = false; |
431 | } | |
432 | ||
18b1d3c9 | 433 | int migration_incoming_enable_colo(void) |
aad555c2 | 434 | { |
18b1d3c9 DH |
435 | if (ram_block_discard_disable(true)) { |
436 | error_report("COLO: cannot disable RAM discard"); | |
437 | return -EBUSY; | |
438 | } | |
aad555c2 | 439 | migration_colo_enabled = true; |
18b1d3c9 | 440 | return 0; |
aad555c2 ZC |
441 | } |
442 | ||
9aca82ba JQ |
443 | void migrate_add_address(SocketAddress *address) |
444 | { | |
445 | MigrationIncomingState *mis = migration_incoming_get_current(); | |
9aca82ba | 446 | |
54aa3de7 EB |
447 | QAPI_LIST_PREPEND(mis->socket_address_list, |
448 | QAPI_CLONE(SocketAddress, address)); | |
9aca82ba JQ |
449 | } |
450 | ||
e69d50d6 | 451 | static void qemu_start_incoming_migration(const char *uri, Error **errp) |
5bb7910a | 452 | { |
d658f65c | 453 | const char *p = NULL; |
34c9dd8e | 454 | |
b5eea99e LS |
455 | if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) { |
456 | return; | |
457 | } | |
458 | ||
3ab72385 | 459 | qapi_event_send_migration(MIGRATION_STATUS_SETUP); |
e69d50d6 PB |
460 | if (strstart(uri, "tcp:", &p) || |
461 | strstart(uri, "unix:", NULL) || | |
462 | strstart(uri, "vsock:", NULL)) { | |
d658f65c | 463 | socket_start_incoming_migration(p ? p : uri, errp); |
2da776db | 464 | #ifdef CONFIG_RDMA |
adde220a | 465 | } else if (strstart(uri, "rdma:", &p)) { |
2da776db MH |
466 | rdma_start_incoming_migration(p, errp); |
467 | #endif | |
adde220a | 468 | } else if (strstart(uri, "exec:", &p)) { |
43eaae28 | 469 | exec_start_incoming_migration(p, errp); |
adde220a | 470 | } else if (strstart(uri, "fd:", &p)) { |
43eaae28 | 471 | fd_start_incoming_migration(p, errp); |
adde220a | 472 | } else { |
b5eea99e | 473 | yank_unregister_instance(MIGRATION_YANK_INSTANCE); |
312fd5f2 | 474 | error_setg(errp, "unknown migration protocol: %s", uri); |
8ca5e801 | 475 | } |
5bb7910a AL |
476 | } |
477 | ||
0aa6aefc DL |
478 | static void process_incoming_migration_bh(void *opaque) |
479 | { | |
480 | Error *local_err = NULL; | |
481 | MigrationIncomingState *mis = opaque; | |
482 | ||
0f073f44 DDAG |
483 | /* If capability late_block_activate is set: |
484 | * Only fire up the block code now if we're going to restart the | |
485 | * VM, else 'cont' will do it. | |
486 | * This causes file locking to happen; so we don't want it to happen | |
487 | * unless we really are starting the VM. | |
488 | */ | |
489 | if (!migrate_late_block_activate() || | |
490 | (autostart && (!global_state_received() || | |
491 | global_state_get_runstate() == RUN_STATE_RUNNING))) { | |
492 | /* Make sure all file formats flush their mutable metadata. | |
493 | * If we get an error here, just don't restart the VM yet. */ | |
494 | bdrv_invalidate_cache_all(&local_err); | |
495 | if (local_err) { | |
496 | error_report_err(local_err); | |
497 | local_err = NULL; | |
498 | autostart = false; | |
499 | } | |
d35ff5e6 KW |
500 | } |
501 | ||
0aa6aefc DL |
502 | /* |
503 | * This must happen after all error conditions are dealt with and | |
504 | * we're sure the VM is going to be running on this host. | |
505 | */ | |
7659505c | 506 | qemu_announce_self(&mis->announce_timer, migrate_announce_params()); |
0aa6aefc | 507 | |
f986c3d2 JQ |
508 | if (multifd_load_cleanup(&local_err) != 0) { |
509 | error_report_err(local_err); | |
510 | autostart = false; | |
511 | } | |
0aa6aefc DL |
512 | /* If global state section was not received or we are in running |
513 | state, we need to obey autostart. Any other state is set with | |
514 | runstate_set. */ | |
515 | ||
b35ebdf0 VSO |
516 | dirty_bitmap_mig_before_vm_start(); |
517 | ||
0aa6aefc DL |
518 | if (!global_state_received() || |
519 | global_state_get_runstate() == RUN_STATE_RUNNING) { | |
520 | if (autostart) { | |
521 | vm_start(); | |
522 | } else { | |
523 | runstate_set(RUN_STATE_PAUSED); | |
524 | } | |
db009729 ZC |
525 | } else if (migration_incoming_colo_enabled()) { |
526 | migration_incoming_disable_colo(); | |
527 | vm_start(); | |
0aa6aefc DL |
528 | } else { |
529 | runstate_set(global_state_get_runstate()); | |
530 | } | |
0aa6aefc DL |
531 | /* |
532 | * This must happen after any state changes since as soon as an external | |
533 | * observer sees this event they might start to prod at the VM assuming | |
534 | * it's ready to use. | |
535 | */ | |
536 | migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE, | |
537 | MIGRATION_STATUS_COMPLETED); | |
538 | qemu_bh_delete(mis->bh); | |
539 | migration_incoming_state_destroy(); | |
540 | } | |
541 | ||
82a4da79 | 542 | static void process_incoming_migration_co(void *opaque) |
511c0231 | 543 | { |
b4b076da | 544 | MigrationIncomingState *mis = migration_incoming_get_current(); |
e9bef235 | 545 | PostcopyState ps; |
1c12e1f5 | 546 | int ret; |
8e48ac95 | 547 | Error *local_err = NULL; |
1c12e1f5 | 548 | |
4f0fae7f | 549 | assert(mis->from_src_file); |
92370989 | 550 | mis->migration_incoming_co = qemu_coroutine_self(); |
67f11b5c | 551 | mis->largest_page_size = qemu_ram_pagesize_largest(); |
093e3c42 | 552 | postcopy_state_set(POSTCOPY_INCOMING_NONE); |
93d7af6f HZ |
553 | migrate_set_state(&mis->state, MIGRATION_STATUS_NONE, |
554 | MIGRATION_STATUS_ACTIVE); | |
4f0fae7f | 555 | ret = qemu_loadvm_state(mis->from_src_file); |
bca7856a | 556 | |
e9bef235 DDAG |
557 | ps = postcopy_state_get(); |
558 | trace_process_incoming_migration_co_end(ret, ps); | |
559 | if (ps != POSTCOPY_INCOMING_NONE) { | |
560 | if (ps == POSTCOPY_INCOMING_ADVISE) { | |
561 | /* | |
562 | * Where a migration had postcopy enabled (and thus went to advise) | |
563 | * but managed to complete within the precopy period, we can use | |
564 | * the normal exit. | |
565 | */ | |
566 | postcopy_ram_incoming_cleanup(mis); | |
567 | } else if (ret >= 0) { | |
568 | /* | |
569 | * Postcopy was started, cleanup should happen at the end of the | |
570 | * postcopy thread. | |
571 | */ | |
572 | trace_process_incoming_migration_co_postcopy_end_main(); | |
573 | return; | |
574 | } | |
575 | /* Else if something went wrong then just fall out of the normal exit */ | |
576 | } | |
577 | ||
25d0c16f | 578 | /* we get COLO info, and know if we are in COLO mode */ |
aad555c2 | 579 | if (!ret && migration_incoming_colo_enabled()) { |
8e48ac95 ZC |
580 | /* Make sure all file formats flush their mutable metadata */ |
581 | bdrv_invalidate_cache_all(&local_err); | |
582 | if (local_err) { | |
8e48ac95 | 583 | error_report_err(local_err); |
6d99c2d4 | 584 | goto fail; |
8e48ac95 ZC |
585 | } |
586 | ||
25d0c16f HZ |
587 | qemu_thread_create(&mis->colo_incoming_thread, "COLO incoming", |
588 | colo_process_incoming_thread, mis, QEMU_THREAD_JOINABLE); | |
589 | mis->have_colo_incoming_thread = true; | |
590 | qemu_coroutine_yield(); | |
591 | ||
592 | /* Wait checkpoint incoming thread exit before free resource */ | |
593 | qemu_thread_join(&mis->colo_incoming_thread); | |
13af18f2 ZC |
594 | /* We hold the global iothread lock, so it is safe here */ |
595 | colo_release_ram_cache(); | |
25d0c16f HZ |
596 | } |
597 | ||
1c12e1f5 | 598 | if (ret < 0) { |
db80face | 599 | error_report("load of migration failed: %s", strerror(-ret)); |
6d99c2d4 | 600 | goto fail; |
511c0231 | 601 | } |
0aa6aefc DL |
602 | mis->bh = qemu_bh_new(process_incoming_migration_bh, mis); |
603 | qemu_bh_schedule(mis->bh); | |
92370989 | 604 | mis->migration_incoming_co = NULL; |
6d99c2d4 FL |
605 | return; |
606 | fail: | |
607 | local_err = NULL; | |
608 | migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE, | |
609 | MIGRATION_STATUS_FAILED); | |
610 | qemu_fclose(mis->from_src_file); | |
611 | if (multifd_load_cleanup(&local_err) != 0) { | |
612 | error_report_err(local_err); | |
613 | } | |
614 | exit(EXIT_FAILURE); | |
511c0231 JQ |
615 | } |
616 | ||
b673eab4 JQ |
617 | /** |
618 | * @migration_incoming_setup: Setup incoming migration | |
619 | * | |
620 | * Returns 0 for no error or 1 for error | |
621 | * | |
622 | * @f: file for main migration channel | |
623 | * @errp: where to put errors | |
624 | */ | |
625 | static int migration_incoming_setup(QEMUFile *f, Error **errp) | |
82a4da79 | 626 | { |
4f0fae7f | 627 | MigrationIncomingState *mis = migration_incoming_get_current(); |
b673eab4 | 628 | Error *local_err = NULL; |
82a4da79 | 629 | |
b673eab4 | 630 | if (multifd_load_setup(&local_err) != 0) { |
f986c3d2 JQ |
631 | /* We haven't been able to create multifd threads |
632 | nothing better to do */ | |
b673eab4 | 633 | error_report_err(local_err); |
f986c3d2 JQ |
634 | exit(EXIT_FAILURE); |
635 | } | |
636 | ||
4f0fae7f JQ |
637 | if (!mis->from_src_file) { |
638 | mis->from_src_file = f; | |
639 | } | |
06ad5135 | 640 | qemu_file_set_blocking(f, false); |
b673eab4 | 641 | return 0; |
e595a01a JQ |
642 | } |
643 | ||
36c2f8be | 644 | void migration_incoming_process(void) |
e595a01a JQ |
645 | { |
646 | Coroutine *co = qemu_coroutine_create(process_incoming_migration_co, NULL); | |
0b8b8753 | 647 | qemu_coroutine_enter(co); |
82a4da79 PB |
648 | } |
649 | ||
884835fa PX |
650 | /* Returns true if recovered from a paused migration, otherwise false */ |
651 | static bool postcopy_try_recover(QEMUFile *f) | |
e595a01a | 652 | { |
d96c9e8d PX |
653 | MigrationIncomingState *mis = migration_incoming_get_current(); |
654 | ||
655 | if (mis->state == MIGRATION_STATUS_POSTCOPY_PAUSED) { | |
656 | /* Resumed from a paused postcopy migration */ | |
657 | ||
658 | mis->from_src_file = f; | |
659 | /* Postcopy has standalone thread to do vm load */ | |
660 | qemu_file_set_blocking(f, true); | |
661 | ||
662 | /* Re-configure the return path */ | |
663 | mis->to_src_file = qemu_file_get_return_path(f); | |
664 | ||
665 | migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_PAUSED, | |
666 | MIGRATION_STATUS_POSTCOPY_RECOVER); | |
667 | ||
668 | /* | |
669 | * Here, we only wake up the main loading thread (while the | |
670 | * fault thread will still be waiting), so that we can receive | |
671 | * commands from source now, and answer it if needed. The | |
672 | * fault thread will be woken up afterwards until we are sure | |
673 | * that source is ready to reply to page requests. | |
674 | */ | |
675 | qemu_sem_post(&mis->postcopy_pause_sem_dst); | |
884835fa PX |
676 | return true; |
677 | } | |
678 | ||
679 | return false; | |
680 | } | |
681 | ||
b673eab4 | 682 | void migration_fd_process_incoming(QEMUFile *f, Error **errp) |
884835fa | 683 | { |
b673eab4 JQ |
684 | Error *local_err = NULL; |
685 | ||
884835fa PX |
686 | if (postcopy_try_recover(f)) { |
687 | return; | |
d96c9e8d | 688 | } |
884835fa | 689 | |
b673eab4 | 690 | if (migration_incoming_setup(f, &local_err)) { |
2155ceaf | 691 | error_propagate(errp, local_err); |
b673eab4 JQ |
692 | return; |
693 | } | |
884835fa | 694 | migration_incoming_process(); |
e595a01a JQ |
695 | } |
696 | ||
49ed0d24 | 697 | void migration_ioc_process_incoming(QIOChannel *ioc, Error **errp) |
4f0fae7f JQ |
698 | { |
699 | MigrationIncomingState *mis = migration_incoming_get_current(); | |
b673eab4 | 700 | Error *local_err = NULL; |
a429e7f4 | 701 | bool start_migration; |
4f0fae7f JQ |
702 | |
703 | if (!mis->from_src_file) { | |
a429e7f4 | 704 | /* The first connection (multifd may have multiple) */ |
4f0fae7f | 705 | QEMUFile *f = qemu_fopen_channel_input(ioc); |
a429e7f4 PX |
706 | |
707 | /* If it's a recovery, we're done */ | |
884835fa PX |
708 | if (postcopy_try_recover(f)) { |
709 | return; | |
710 | } | |
a429e7f4 | 711 | |
b673eab4 | 712 | if (migration_incoming_setup(f, &local_err)) { |
2155ceaf | 713 | error_propagate(errp, local_err); |
b673eab4 JQ |
714 | return; |
715 | } | |
a429e7f4 PX |
716 | |
717 | /* | |
718 | * Common migration only needs one channel, so we can start | |
719 | * right now. Multifd needs more than one channel, we wait. | |
720 | */ | |
721 | start_migration = !migrate_use_multifd(); | |
722 | } else { | |
723 | /* Multiple connections */ | |
724 | assert(migrate_use_multifd()); | |
49ed0d24 FL |
725 | start_migration = multifd_recv_new_channel(ioc, &local_err); |
726 | if (local_err) { | |
727 | error_propagate(errp, local_err); | |
728 | return; | |
729 | } | |
4f0fae7f | 730 | } |
81e62053 | 731 | |
a429e7f4 | 732 | if (start_migration) { |
81e62053 PX |
733 | migration_incoming_process(); |
734 | } | |
4f0fae7f JQ |
735 | } |
736 | ||
428d8908 JQ |
737 | /** |
738 | * @migration_has_all_channels: We have received all channels that we need | |
739 | * | |
740 | * Returns true when we have got connections to all the channels that | |
741 | * we need for migration. | |
742 | */ | |
743 | bool migration_has_all_channels(void) | |
744 | { | |
ca273df3 | 745 | MigrationIncomingState *mis = migration_incoming_get_current(); |
62c1e0ca JQ |
746 | bool all_channels; |
747 | ||
748 | all_channels = multifd_recv_all_channels_created(); | |
749 | ||
ca273df3 | 750 | return all_channels && mis->from_src_file != NULL; |
428d8908 JQ |
751 | } |
752 | ||
6decec93 DDAG |
753 | /* |
754 | * Send a 'SHUT' message on the return channel with the given value | |
755 | * to indicate that we've finished with the RP. Non-0 value indicates | |
756 | * error. | |
757 | */ | |
758 | void migrate_send_rp_shut(MigrationIncomingState *mis, | |
759 | uint32_t value) | |
760 | { | |
761 | uint32_t buf; | |
762 | ||
763 | buf = cpu_to_be32(value); | |
764 | migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf); | |
765 | } | |
766 | ||
767 | /* | |
768 | * Send a 'PONG' message on the return channel with the given value | |
769 | * (normally in response to a 'PING') | |
770 | */ | |
771 | void migrate_send_rp_pong(MigrationIncomingState *mis, | |
772 | uint32_t value) | |
773 | { | |
774 | uint32_t buf; | |
775 | ||
776 | buf = cpu_to_be32(value); | |
777 | migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf); | |
778 | } | |
779 | ||
a335debb PX |
780 | void migrate_send_rp_recv_bitmap(MigrationIncomingState *mis, |
781 | char *block_name) | |
782 | { | |
783 | char buf[512]; | |
784 | int len; | |
785 | int64_t res; | |
786 | ||
787 | /* | |
788 | * First, we send the header part. It contains only the len of | |
789 | * idstr, and the idstr itself. | |
790 | */ | |
791 | len = strlen(block_name); | |
792 | buf[0] = len; | |
793 | memcpy(buf + 1, block_name, len); | |
794 | ||
795 | if (mis->state != MIGRATION_STATUS_POSTCOPY_RECOVER) { | |
796 | error_report("%s: MSG_RP_RECV_BITMAP only used for recovery", | |
797 | __func__); | |
798 | return; | |
799 | } | |
800 | ||
801 | migrate_send_rp_message(mis, MIG_RP_MSG_RECV_BITMAP, len + 1, buf); | |
802 | ||
803 | /* | |
804 | * Next, we dump the received bitmap to the stream. | |
805 | * | |
806 | * TODO: currently we are safe since we are the only one that is | |
807 | * using the to_src_file handle (fault thread is still paused), | |
808 | * and it's ok even not taking the mutex. However the best way is | |
809 | * to take the lock before sending the message header, and release | |
810 | * the lock after sending the bitmap. | |
811 | */ | |
812 | qemu_mutex_lock(&mis->rp_mutex); | |
813 | res = ramblock_recv_bitmap_send(mis->to_src_file, block_name); | |
814 | qemu_mutex_unlock(&mis->rp_mutex); | |
815 | ||
816 | trace_migrate_send_rp_recv_bitmap(block_name, res); | |
817 | } | |
818 | ||
13955b89 PX |
819 | void migrate_send_rp_resume_ack(MigrationIncomingState *mis, uint32_t value) |
820 | { | |
821 | uint32_t buf; | |
822 | ||
823 | buf = cpu_to_be32(value); | |
824 | migrate_send_rp_message(mis, MIG_RP_MSG_RESUME_ACK, sizeof(buf), &buf); | |
825 | } | |
826 | ||
bbf6da32 OW |
827 | MigrationCapabilityStatusList *qmp_query_migrate_capabilities(Error **errp) |
828 | { | |
95b3a8c8 EB |
829 | MigrationCapabilityStatusList *head = NULL, **tail = &head; |
830 | MigrationCapabilityStatus *caps; | |
bbf6da32 OW |
831 | MigrationState *s = migrate_get_current(); |
832 | int i; | |
833 | ||
7fb1cf16 | 834 | for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) { |
ed1701c6 DDAG |
835 | #ifndef CONFIG_LIVE_BLOCK_MIGRATION |
836 | if (i == MIGRATION_CAPABILITY_BLOCK) { | |
837 | continue; | |
838 | } | |
839 | #endif | |
95b3a8c8 EB |
840 | caps = g_malloc0(sizeof(*caps)); |
841 | caps->capability = i; | |
842 | caps->state = s->enabled_capabilities[i]; | |
843 | QAPI_LIST_APPEND(tail, caps); | |
bbf6da32 OW |
844 | } |
845 | ||
846 | return head; | |
847 | } | |
848 | ||
85de8323 LL |
849 | MigrationParameters *qmp_query_migrate_parameters(Error **errp) |
850 | { | |
851 | MigrationParameters *params; | |
852 | MigrationState *s = migrate_get_current(); | |
853 | ||
e87fae4c | 854 | /* TODO use QAPI_CLONE() instead of duplicating it inline */ |
85de8323 | 855 | params = g_malloc0(sizeof(*params)); |
de63ab61 | 856 | params->has_compress_level = true; |
2594f56d | 857 | params->compress_level = s->parameters.compress_level; |
de63ab61 | 858 | params->has_compress_threads = true; |
2594f56d | 859 | params->compress_threads = s->parameters.compress_threads; |
1d58872a XG |
860 | params->has_compress_wait_thread = true; |
861 | params->compress_wait_thread = s->parameters.compress_wait_thread; | |
de63ab61 | 862 | params->has_decompress_threads = true; |
2594f56d | 863 | params->decompress_threads = s->parameters.decompress_threads; |
dc14a470 KZ |
864 | params->has_throttle_trigger_threshold = true; |
865 | params->throttle_trigger_threshold = s->parameters.throttle_trigger_threshold; | |
de63ab61 | 866 | params->has_cpu_throttle_initial = true; |
2594f56d | 867 | params->cpu_throttle_initial = s->parameters.cpu_throttle_initial; |
de63ab61 | 868 | params->has_cpu_throttle_increment = true; |
2594f56d | 869 | params->cpu_throttle_increment = s->parameters.cpu_throttle_increment; |
cbbf8182 KZ |
870 | params->has_cpu_throttle_tailslow = true; |
871 | params->cpu_throttle_tailslow = s->parameters.cpu_throttle_tailslow; | |
8cc99dcd | 872 | params->has_tls_creds = true; |
69ef1f36 | 873 | params->tls_creds = g_strdup(s->parameters.tls_creds); |
8cc99dcd | 874 | params->has_tls_hostname = true; |
69ef1f36 | 875 | params->tls_hostname = g_strdup(s->parameters.tls_hostname); |
d2f1d29b | 876 | params->has_tls_authz = true; |
7cd75cbd MZ |
877 | params->tls_authz = g_strdup(s->parameters.tls_authz ? |
878 | s->parameters.tls_authz : ""); | |
2ff30257 AA |
879 | params->has_max_bandwidth = true; |
880 | params->max_bandwidth = s->parameters.max_bandwidth; | |
881 | params->has_downtime_limit = true; | |
882 | params->downtime_limit = s->parameters.downtime_limit; | |
fe39a4d4 | 883 | params->has_x_checkpoint_delay = true; |
68b53591 | 884 | params->x_checkpoint_delay = s->parameters.x_checkpoint_delay; |
2833c59b JQ |
885 | params->has_block_incremental = true; |
886 | params->block_incremental = s->parameters.block_incremental; | |
cbfd6c95 JQ |
887 | params->has_multifd_channels = true; |
888 | params->multifd_channels = s->parameters.multifd_channels; | |
96eef042 JQ |
889 | params->has_multifd_compression = true; |
890 | params->multifd_compression = s->parameters.multifd_compression; | |
9004db48 JQ |
891 | params->has_multifd_zlib_level = true; |
892 | params->multifd_zlib_level = s->parameters.multifd_zlib_level; | |
6a9ad154 JQ |
893 | params->has_multifd_zstd_level = true; |
894 | params->multifd_zstd_level = s->parameters.multifd_zstd_level; | |
73af8dd8 JQ |
895 | params->has_xbzrle_cache_size = true; |
896 | params->xbzrle_cache_size = s->parameters.xbzrle_cache_size; | |
7e555c6c DDAG |
897 | params->has_max_postcopy_bandwidth = true; |
898 | params->max_postcopy_bandwidth = s->parameters.max_postcopy_bandwidth; | |
4cbc9c7f LQ |
899 | params->has_max_cpu_throttle = true; |
900 | params->max_cpu_throttle = s->parameters.max_cpu_throttle; | |
ee3d96ba DDAG |
901 | params->has_announce_initial = true; |
902 | params->announce_initial = s->parameters.announce_initial; | |
903 | params->has_announce_max = true; | |
904 | params->announce_max = s->parameters.announce_max; | |
905 | params->has_announce_rounds = true; | |
906 | params->announce_rounds = s->parameters.announce_rounds; | |
907 | params->has_announce_step = true; | |
908 | params->announce_step = s->parameters.announce_step; | |
85de8323 | 909 | |
31e4c354 HR |
910 | if (s->parameters.has_block_bitmap_mapping) { |
911 | params->has_block_bitmap_mapping = true; | |
912 | params->block_bitmap_mapping = | |
913 | QAPI_CLONE(BitmapMigrationNodeAliasList, | |
914 | s->parameters.block_bitmap_mapping); | |
915 | } | |
916 | ||
85de8323 LL |
917 | return params; |
918 | } | |
919 | ||
ee3d96ba DDAG |
920 | AnnounceParameters *migrate_announce_params(void) |
921 | { | |
922 | static AnnounceParameters ap; | |
923 | ||
924 | MigrationState *s = migrate_get_current(); | |
925 | ||
926 | ap.initial = s->parameters.announce_initial; | |
927 | ap.max = s->parameters.announce_max; | |
928 | ap.rounds = s->parameters.announce_rounds; | |
929 | ap.step = s->parameters.announce_step; | |
930 | ||
931 | return ≈ | |
932 | } | |
933 | ||
f6844b99 DDAG |
934 | /* |
935 | * Return true if we're already in the middle of a migration | |
936 | * (i.e. any of the active or setup states) | |
937 | */ | |
3d63da16 | 938 | bool migration_is_setup_or_active(int state) |
f6844b99 DDAG |
939 | { |
940 | switch (state) { | |
941 | case MIGRATION_STATUS_ACTIVE: | |
9ec055ae | 942 | case MIGRATION_STATUS_POSTCOPY_ACTIVE: |
a688d2c1 | 943 | case MIGRATION_STATUS_POSTCOPY_PAUSED: |
135b87b4 | 944 | case MIGRATION_STATUS_POSTCOPY_RECOVER: |
f6844b99 | 945 | case MIGRATION_STATUS_SETUP: |
31e06077 DDAG |
946 | case MIGRATION_STATUS_PRE_SWITCHOVER: |
947 | case MIGRATION_STATUS_DEVICE: | |
c7e0acd5 | 948 | case MIGRATION_STATUS_WAIT_UNPLUG: |
19dd408a | 949 | case MIGRATION_STATUS_COLO: |
f6844b99 DDAG |
950 | return true; |
951 | ||
952 | default: | |
953 | return false; | |
954 | ||
955 | } | |
956 | } | |
957 | ||
392d87e2 JQ |
958 | bool migration_is_running(int state) |
959 | { | |
960 | switch (state) { | |
961 | case MIGRATION_STATUS_ACTIVE: | |
962 | case MIGRATION_STATUS_POSTCOPY_ACTIVE: | |
963 | case MIGRATION_STATUS_POSTCOPY_PAUSED: | |
964 | case MIGRATION_STATUS_POSTCOPY_RECOVER: | |
965 | case MIGRATION_STATUS_SETUP: | |
966 | case MIGRATION_STATUS_PRE_SWITCHOVER: | |
967 | case MIGRATION_STATUS_DEVICE: | |
968 | case MIGRATION_STATUS_WAIT_UNPLUG: | |
969 | case MIGRATION_STATUS_CANCELLING: | |
392d87e2 JQ |
970 | return true; |
971 | ||
972 | default: | |
973 | return false; | |
974 | ||
975 | } | |
976 | } | |
977 | ||
640dfb14 WY |
978 | static void populate_time_info(MigrationInfo *info, MigrationState *s) |
979 | { | |
980 | info->has_status = true; | |
981 | info->has_setup_time = true; | |
982 | info->setup_time = s->setup_time; | |
983 | if (s->state == MIGRATION_STATUS_COMPLETED) { | |
984 | info->has_total_time = true; | |
985 | info->total_time = s->total_time; | |
986 | info->has_downtime = true; | |
987 | info->downtime = s->downtime; | |
988 | } else { | |
989 | info->has_total_time = true; | |
990 | info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - | |
991 | s->start_time; | |
992 | info->has_expected_downtime = true; | |
993 | info->expected_downtime = s->expected_downtime; | |
994 | } | |
995 | } | |
996 | ||
a22463a5 DDAG |
997 | static void populate_ram_info(MigrationInfo *info, MigrationState *s) |
998 | { | |
999 | info->has_ram = true; | |
1000 | info->ram = g_malloc0(sizeof(*info->ram)); | |
9360447d | 1001 | info->ram->transferred = ram_counters.transferred; |
a22463a5 | 1002 | info->ram->total = ram_bytes_total(); |
9360447d | 1003 | info->ram->duplicate = ram_counters.duplicate; |
bedf53c1 JQ |
1004 | /* legacy value. It is not used anymore */ |
1005 | info->ram->skipped = 0; | |
9360447d JQ |
1006 | info->ram->normal = ram_counters.normal; |
1007 | info->ram->normal_bytes = ram_counters.normal * | |
20afaed9 | 1008 | qemu_target_page_size(); |
a22463a5 | 1009 | info->ram->mbps = s->mbps; |
9360447d JQ |
1010 | info->ram->dirty_sync_count = ram_counters.dirty_sync_count; |
1011 | info->ram->postcopy_requests = ram_counters.postcopy_requests; | |
030ce1f8 | 1012 | info->ram->page_size = qemu_target_page_size(); |
a61c45bd | 1013 | info->ram->multifd_bytes = ram_counters.multifd_bytes; |
aecbfe9c | 1014 | info->ram->pages_per_second = s->pages_per_second; |
a22463a5 | 1015 | |
114f5aee JQ |
1016 | if (migrate_use_xbzrle()) { |
1017 | info->has_xbzrle_cache = true; | |
1018 | info->xbzrle_cache = g_malloc0(sizeof(*info->xbzrle_cache)); | |
1019 | info->xbzrle_cache->cache_size = migrate_xbzrle_cache_size(); | |
9360447d JQ |
1020 | info->xbzrle_cache->bytes = xbzrle_counters.bytes; |
1021 | info->xbzrle_cache->pages = xbzrle_counters.pages; | |
1022 | info->xbzrle_cache->cache_miss = xbzrle_counters.cache_miss; | |
1023 | info->xbzrle_cache->cache_miss_rate = xbzrle_counters.cache_miss_rate; | |
e460a4b1 | 1024 | info->xbzrle_cache->encoding_rate = xbzrle_counters.encoding_rate; |
9360447d | 1025 | info->xbzrle_cache->overflow = xbzrle_counters.overflow; |
114f5aee JQ |
1026 | } |
1027 | ||
76e03000 XG |
1028 | if (migrate_use_compression()) { |
1029 | info->has_compression = true; | |
1030 | info->compression = g_malloc0(sizeof(*info->compression)); | |
1031 | info->compression->pages = compression_counters.pages; | |
1032 | info->compression->busy = compression_counters.busy; | |
1033 | info->compression->busy_rate = compression_counters.busy_rate; | |
1034 | info->compression->compressed_size = | |
1035 | compression_counters.compressed_size; | |
1036 | info->compression->compression_rate = | |
1037 | compression_counters.compression_rate; | |
1038 | } | |
1039 | ||
338182c8 JQ |
1040 | if (cpu_throttle_active()) { |
1041 | info->has_cpu_throttle_percentage = true; | |
1042 | info->cpu_throttle_percentage = cpu_throttle_get_percentage(); | |
1043 | } | |
1044 | ||
a22463a5 DDAG |
1045 | if (s->state != MIGRATION_STATUS_COMPLETED) { |
1046 | info->ram->remaining = ram_bytes_remaining(); | |
9360447d | 1047 | info->ram->dirty_pages_rate = ram_counters.dirty_pages_rate; |
a22463a5 DDAG |
1048 | } |
1049 | } | |
1050 | ||
930ac04c JQ |
1051 | static void populate_disk_info(MigrationInfo *info) |
1052 | { | |
1053 | if (blk_mig_active()) { | |
1054 | info->has_disk = true; | |
1055 | info->disk = g_malloc0(sizeof(*info->disk)); | |
1056 | info->disk->transferred = blk_mig_bytes_transferred(); | |
1057 | info->disk->remaining = blk_mig_bytes_remaining(); | |
1058 | info->disk->total = blk_mig_bytes_total(); | |
1059 | } | |
1060 | } | |
1061 | ||
3710586c KW |
1062 | static void populate_vfio_info(MigrationInfo *info) |
1063 | { | |
1064 | #ifdef CONFIG_VFIO | |
1065 | if (vfio_mig_active()) { | |
1066 | info->has_vfio = true; | |
1067 | info->vfio = g_malloc0(sizeof(*info->vfio)); | |
1068 | info->vfio->transferred = vfio_mig_bytes_transferred(); | |
1069 | } | |
1070 | #endif | |
1071 | } | |
1072 | ||
65ace060 | 1073 | static void fill_source_migration_info(MigrationInfo *info) |
5bb7910a | 1074 | { |
17549e84 | 1075 | MigrationState *s = migrate_get_current(); |
372043f3 | 1076 | GSList *cur_blocker = migration_blockers; |
17549e84 | 1077 | |
3af8554b | 1078 | info->blocked_reasons = NULL; |
3af8554b | 1079 | |
372043f3 MA |
1080 | /* |
1081 | * There are two types of reasons a migration might be blocked; | |
1082 | * a) devices marked in VMState as non-migratable, and | |
1083 | * b) Explicit migration blockers | |
1084 | * We need to add both of them here. | |
1085 | */ | |
1086 | qemu_savevm_non_migratable_list(&info->blocked_reasons); | |
3af8554b | 1087 | |
372043f3 MA |
1088 | while (cur_blocker) { |
1089 | QAPI_LIST_PREPEND(info->blocked_reasons, | |
1090 | g_strdup(error_get_pretty(cur_blocker->data))); | |
1091 | cur_blocker = g_slist_next(cur_blocker); | |
3af8554b | 1092 | } |
372043f3 | 1093 | info->has_blocked_reasons = info->blocked_reasons != NULL; |
3af8554b | 1094 | |
17549e84 | 1095 | switch (s->state) { |
31194731 | 1096 | case MIGRATION_STATUS_NONE: |
17549e84 | 1097 | /* no migration has happened ever */ |
65ace060 AP |
1098 | /* do not overwrite destination migration status */ |
1099 | return; | |
31194731 | 1100 | case MIGRATION_STATUS_SETUP: |
29ae8a41 | 1101 | info->has_status = true; |
ed4fbd10 | 1102 | info->has_total_time = false; |
29ae8a41 | 1103 | break; |
31194731 HZ |
1104 | case MIGRATION_STATUS_ACTIVE: |
1105 | case MIGRATION_STATUS_CANCELLING: | |
9ec055ae | 1106 | case MIGRATION_STATUS_POSTCOPY_ACTIVE: |
31e06077 DDAG |
1107 | case MIGRATION_STATUS_PRE_SWITCHOVER: |
1108 | case MIGRATION_STATUS_DEVICE: | |
a688d2c1 | 1109 | case MIGRATION_STATUS_POSTCOPY_PAUSED: |
135b87b4 | 1110 | case MIGRATION_STATUS_POSTCOPY_RECOVER: |
640dfb14 WY |
1111 | /* TODO add some postcopy stats */ |
1112 | populate_time_info(info, s); | |
a22463a5 | 1113 | populate_ram_info(info, s); |
930ac04c | 1114 | populate_disk_info(info); |
3710586c | 1115 | populate_vfio_info(info); |
17549e84 | 1116 | break; |
0b827d5e HZ |
1117 | case MIGRATION_STATUS_COLO: |
1118 | info->has_status = true; | |
1119 | /* TODO: display COLO specific information (checkpoint info etc.) */ | |
1120 | break; | |
31194731 | 1121 | case MIGRATION_STATUS_COMPLETED: |
640dfb14 | 1122 | populate_time_info(info, s); |
a22463a5 | 1123 | populate_ram_info(info, s); |
3710586c | 1124 | populate_vfio_info(info); |
17549e84 | 1125 | break; |
31194731 | 1126 | case MIGRATION_STATUS_FAILED: |
791e7c82 | 1127 | info->has_status = true; |
d59ce6f3 DB |
1128 | if (s->error) { |
1129 | info->has_error_desc = true; | |
1130 | info->error_desc = g_strdup(error_get_pretty(s->error)); | |
1131 | } | |
17549e84 | 1132 | break; |
31194731 | 1133 | case MIGRATION_STATUS_CANCELLED: |
791e7c82 | 1134 | info->has_status = true; |
17549e84 | 1135 | break; |
c7e0acd5 JF |
1136 | case MIGRATION_STATUS_WAIT_UNPLUG: |
1137 | info->has_status = true; | |
1138 | break; | |
5bb7910a | 1139 | } |
cde63fbe | 1140 | info->status = s->state; |
5bb7910a AL |
1141 | } |
1142 | ||
6e8c25b4 AG |
1143 | typedef enum WriteTrackingSupport { |
1144 | WT_SUPPORT_UNKNOWN = 0, | |
1145 | WT_SUPPORT_ABSENT, | |
1146 | WT_SUPPORT_AVAILABLE, | |
1147 | WT_SUPPORT_COMPATIBLE | |
1148 | } WriteTrackingSupport; | |
1149 | ||
1150 | static | |
1151 | WriteTrackingSupport migrate_query_write_tracking(void) | |
1152 | { | |
1153 | /* Check if kernel supports required UFFD features */ | |
1154 | if (!ram_write_tracking_available()) { | |
1155 | return WT_SUPPORT_ABSENT; | |
1156 | } | |
1157 | /* | |
1158 | * Check if current memory configuration is | |
1159 | * compatible with required UFFD features. | |
1160 | */ | |
1161 | if (!ram_write_tracking_compatible()) { | |
1162 | return WT_SUPPORT_AVAILABLE; | |
1163 | } | |
1164 | ||
1165 | return WT_SUPPORT_COMPATIBLE; | |
1166 | } | |
1167 | ||
4a84214e PX |
1168 | /** |
1169 | * @migration_caps_check - check capability validity | |
1170 | * | |
1171 | * @cap_list: old capability list, array of bool | |
1172 | * @params: new capabilities to be applied soon | |
1173 | * @errp: set *errp if the check failed, with reason | |
1174 | * | |
1175 | * Returns true if check passed, otherwise false. | |
1176 | */ | |
1177 | static bool migrate_caps_check(bool *cap_list, | |
1178 | MigrationCapabilityStatusList *params, | |
1179 | Error **errp) | |
00458433 | 1180 | { |
00458433 | 1181 | MigrationCapabilityStatusList *cap; |
4a84214e | 1182 | bool old_postcopy_cap; |
d7651f15 | 1183 | MigrationIncomingState *mis = migration_incoming_get_current(); |
00458433 | 1184 | |
4a84214e | 1185 | old_postcopy_cap = cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM]; |
00458433 OW |
1186 | |
1187 | for (cap = params; cap; cap = cap->next) { | |
4a84214e PX |
1188 | cap_list[cap->value->capability] = cap->value->state; |
1189 | } | |
1190 | ||
ed1701c6 | 1191 | #ifndef CONFIG_LIVE_BLOCK_MIGRATION |
4a84214e PX |
1192 | if (cap_list[MIGRATION_CAPABILITY_BLOCK]) { |
1193 | error_setg(errp, "QEMU compiled without old-style (blk/-b, inc/-i) " | |
1194 | "block migration"); | |
1195 | error_append_hint(errp, "Use drive_mirror+NBD instead.\n"); | |
1196 | return false; | |
00458433 | 1197 | } |
4a84214e | 1198 | #endif |
53dd370c | 1199 | |
7e934f5b ZC |
1200 | #ifndef CONFIG_REPLICATION |
1201 | if (cap_list[MIGRATION_CAPABILITY_X_COLO]) { | |
1202 | error_setg(errp, "QEMU compiled without replication module" | |
1203 | " can't enable COLO"); | |
1204 | error_append_hint(errp, "Please enable replication before COLO.\n"); | |
1205 | return false; | |
1206 | } | |
1207 | #endif | |
1208 | ||
4a84214e | 1209 | if (cap_list[MIGRATION_CAPABILITY_POSTCOPY_RAM]) { |
096631bd DDAG |
1210 | /* This check is reasonably expensive, so only when it's being |
1211 | * set the first time, also it's only the destination that needs | |
1212 | * special support. | |
1213 | */ | |
1214 | if (!old_postcopy_cap && runstate_check(RUN_STATE_INMIGRATE) && | |
d7651f15 | 1215 | !postcopy_ram_supported_by_host(mis)) { |
096631bd DDAG |
1216 | /* postcopy_ram_supported_by_host will have emitted a more |
1217 | * detailed message | |
1218 | */ | |
4a84214e PX |
1219 | error_setg(errp, "Postcopy is not supported"); |
1220 | return false; | |
096631bd | 1221 | } |
18269069 YK |
1222 | |
1223 | if (cap_list[MIGRATION_CAPABILITY_X_IGNORE_SHARED]) { | |
1224 | error_setg(errp, "Postcopy is not compatible with ignore-shared"); | |
1225 | return false; | |
1226 | } | |
53dd370c | 1227 | } |
4a84214e | 1228 | |
6e8c25b4 AG |
1229 | if (cap_list[MIGRATION_CAPABILITY_BACKGROUND_SNAPSHOT]) { |
1230 | WriteTrackingSupport wt_support; | |
1231 | int idx; | |
1232 | /* | |
1233 | * Check if 'background-snapshot' capability is supported by | |
1234 | * host kernel and compatible with guest memory configuration. | |
1235 | */ | |
1236 | wt_support = migrate_query_write_tracking(); | |
1237 | if (wt_support < WT_SUPPORT_AVAILABLE) { | |
1238 | error_setg(errp, "Background-snapshot is not supported by host kernel"); | |
1239 | return false; | |
1240 | } | |
1241 | if (wt_support < WT_SUPPORT_COMPATIBLE) { | |
1242 | error_setg(errp, "Background-snapshot is not compatible " | |
1243 | "with guest memory configuration"); | |
1244 | return false; | |
1245 | } | |
1246 | ||
1247 | /* | |
1248 | * Check if there are any migration capabilities | |
1249 | * incompatible with 'background-snapshot'. | |
1250 | */ | |
1251 | for (idx = 0; idx < check_caps_background_snapshot.size; idx++) { | |
1252 | int incomp_cap = check_caps_background_snapshot.caps[idx]; | |
1253 | if (cap_list[incomp_cap]) { | |
1254 | error_setg(errp, | |
1255 | "Background-snapshot is not compatible with %s", | |
1256 | MigrationCapability_str(incomp_cap)); | |
1257 | return false; | |
1258 | } | |
1259 | } | |
1260 | } | |
1261 | ||
4a84214e PX |
1262 | return true; |
1263 | } | |
1264 | ||
65ace060 AP |
1265 | static void fill_destination_migration_info(MigrationInfo *info) |
1266 | { | |
1267 | MigrationIncomingState *mis = migration_incoming_get_current(); | |
1268 | ||
9aca82ba JQ |
1269 | if (mis->socket_address_list) { |
1270 | info->has_socket_address = true; | |
1271 | info->socket_address = | |
1272 | QAPI_CLONE(SocketAddressList, mis->socket_address_list); | |
1273 | } | |
1274 | ||
65ace060 AP |
1275 | switch (mis->state) { |
1276 | case MIGRATION_STATUS_NONE: | |
1277 | return; | |
65ace060 AP |
1278 | case MIGRATION_STATUS_SETUP: |
1279 | case MIGRATION_STATUS_CANCELLING: | |
1280 | case MIGRATION_STATUS_CANCELLED: | |
1281 | case MIGRATION_STATUS_ACTIVE: | |
1282 | case MIGRATION_STATUS_POSTCOPY_ACTIVE: | |
3c9928d9 PX |
1283 | case MIGRATION_STATUS_POSTCOPY_PAUSED: |
1284 | case MIGRATION_STATUS_POSTCOPY_RECOVER: | |
65ace060 AP |
1285 | case MIGRATION_STATUS_FAILED: |
1286 | case MIGRATION_STATUS_COLO: | |
1287 | info->has_status = true; | |
1288 | break; | |
1289 | case MIGRATION_STATUS_COMPLETED: | |
1290 | info->has_status = true; | |
1291 | fill_destination_postcopy_migration_info(info); | |
1292 | break; | |
1293 | } | |
1294 | info->status = mis->state; | |
1295 | } | |
1296 | ||
1297 | MigrationInfo *qmp_query_migrate(Error **errp) | |
1298 | { | |
1299 | MigrationInfo *info = g_malloc0(sizeof(*info)); | |
1300 | ||
1301 | fill_destination_migration_info(info); | |
1302 | fill_source_migration_info(info); | |
1303 | ||
1304 | return info; | |
1305 | } | |
1306 | ||
4a84214e PX |
1307 | void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params, |
1308 | Error **errp) | |
1309 | { | |
1310 | MigrationState *s = migrate_get_current(); | |
1311 | MigrationCapabilityStatusList *cap; | |
dd0ee30c | 1312 | bool cap_list[MIGRATION_CAPABILITY__MAX]; |
4a84214e | 1313 | |
392d87e2 | 1314 | if (migration_is_running(s->state)) { |
4a84214e PX |
1315 | error_setg(errp, QERR_MIGRATION_ACTIVE); |
1316 | return; | |
1317 | } | |
1318 | ||
dd0ee30c PX |
1319 | memcpy(cap_list, s->enabled_capabilities, sizeof(cap_list)); |
1320 | if (!migrate_caps_check(cap_list, params, errp)) { | |
4a84214e PX |
1321 | return; |
1322 | } | |
1323 | ||
1324 | for (cap = params; cap; cap = cap->next) { | |
1325 | s->enabled_capabilities[cap->value->capability] = cap->value->state; | |
1326 | } | |
00458433 OW |
1327 | } |
1328 | ||
16d063bc PX |
1329 | /* |
1330 | * Check whether the parameters are valid. Error will be put into errp | |
1331 | * (if provided). Return true if valid, otherwise false. | |
1332 | */ | |
1333 | static bool migrate_params_check(MigrationParameters *params, Error **errp) | |
85de8323 | 1334 | { |
7f375e04 | 1335 | if (params->has_compress_level && |
741d4086 | 1336 | (params->compress_level > 9)) { |
c6bd8c70 | 1337 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "compress_level", |
54270c45 | 1338 | "a value between 0 and 9"); |
16d063bc | 1339 | return false; |
85de8323 | 1340 | } |
16d063bc | 1341 | |
741d4086 | 1342 | if (params->has_compress_threads && (params->compress_threads < 1)) { |
c6bd8c70 MA |
1343 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, |
1344 | "compress_threads", | |
54270c45 | 1345 | "a value between 1 and 255"); |
16d063bc | 1346 | return false; |
85de8323 | 1347 | } |
16d063bc | 1348 | |
741d4086 | 1349 | if (params->has_decompress_threads && (params->decompress_threads < 1)) { |
c6bd8c70 MA |
1350 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, |
1351 | "decompress_threads", | |
54270c45 | 1352 | "a value between 1 and 255"); |
16d063bc | 1353 | return false; |
85de8323 | 1354 | } |
16d063bc | 1355 | |
dc14a470 KZ |
1356 | if (params->has_throttle_trigger_threshold && |
1357 | (params->throttle_trigger_threshold < 1 || | |
1358 | params->throttle_trigger_threshold > 100)) { | |
1359 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, | |
1360 | "throttle_trigger_threshold", | |
1361 | "an integer in the range of 1 to 100"); | |
1362 | return false; | |
1363 | } | |
1364 | ||
7f375e04 EB |
1365 | if (params->has_cpu_throttle_initial && |
1366 | (params->cpu_throttle_initial < 1 || | |
1367 | params->cpu_throttle_initial > 99)) { | |
1626fee3 | 1368 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, |
d85a31d1 | 1369 | "cpu_throttle_initial", |
1626fee3 | 1370 | "an integer in the range of 1 to 99"); |
16d063bc | 1371 | return false; |
1626fee3 | 1372 | } |
16d063bc | 1373 | |
7f375e04 EB |
1374 | if (params->has_cpu_throttle_increment && |
1375 | (params->cpu_throttle_increment < 1 || | |
1376 | params->cpu_throttle_increment > 99)) { | |
1626fee3 | 1377 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, |
d85a31d1 | 1378 | "cpu_throttle_increment", |
1626fee3 | 1379 | "an integer in the range of 1 to 99"); |
16d063bc | 1380 | return false; |
1626fee3 | 1381 | } |
16d063bc | 1382 | |
741d4086 | 1383 | if (params->has_max_bandwidth && (params->max_bandwidth > SIZE_MAX)) { |
2ee30cf0 MZ |
1384 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, |
1385 | "max_bandwidth", | |
1386 | "an integer in the range of 0 to "stringify(SIZE_MAX) | |
1387 | " bytes/second"); | |
16d063bc | 1388 | return false; |
2ff30257 | 1389 | } |
16d063bc | 1390 | |
2ff30257 | 1391 | if (params->has_downtime_limit && |
741d4086 | 1392 | (params->downtime_limit > MAX_MIGRATE_DOWNTIME)) { |
2ee30cf0 MZ |
1393 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, |
1394 | "downtime_limit", | |
1395 | "an integer in the range of 0 to " | |
7ac5529a | 1396 | stringify(MAX_MIGRATE_DOWNTIME)" ms"); |
16d063bc | 1397 | return false; |
2ff30257 | 1398 | } |
16d063bc | 1399 | |
741d4086 JQ |
1400 | /* x_checkpoint_delay is now always positive */ |
1401 | ||
cbfd6c95 | 1402 | if (params->has_multifd_channels && (params->multifd_channels < 1)) { |
4075fb1c JQ |
1403 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, |
1404 | "multifd_channels", | |
54270c45 | 1405 | "a value between 1 and 255"); |
4075fb1c JQ |
1406 | return false; |
1407 | } | |
16d063bc | 1408 | |
9004db48 JQ |
1409 | if (params->has_multifd_zlib_level && |
1410 | (params->multifd_zlib_level > 9)) { | |
1411 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "multifd_zlib_level", | |
54270c45 | 1412 | "a value between 0 and 9"); |
9004db48 JQ |
1413 | return false; |
1414 | } | |
1415 | ||
6a9ad154 JQ |
1416 | if (params->has_multifd_zstd_level && |
1417 | (params->multifd_zstd_level > 20)) { | |
1418 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "multifd_zstd_level", | |
54270c45 | 1419 | "a value between 0 and 20"); |
6a9ad154 JQ |
1420 | return false; |
1421 | } | |
1422 | ||
73af8dd8 JQ |
1423 | if (params->has_xbzrle_cache_size && |
1424 | (params->xbzrle_cache_size < qemu_target_page_size() || | |
1425 | !is_power_of_2(params->xbzrle_cache_size))) { | |
1426 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, | |
1427 | "xbzrle_cache_size", | |
54270c45 | 1428 | "a power of two no less than the target page size"); |
73af8dd8 JQ |
1429 | return false; |
1430 | } | |
1431 | ||
4cbc9c7f LQ |
1432 | if (params->has_max_cpu_throttle && |
1433 | (params->max_cpu_throttle < params->cpu_throttle_initial || | |
1434 | params->max_cpu_throttle > 99)) { | |
1435 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, | |
1436 | "max_cpu_throttle", | |
1437 | "an integer in the range of cpu_throttle_initial to 99"); | |
1438 | return false; | |
1439 | } | |
1440 | ||
ee3d96ba DDAG |
1441 | if (params->has_announce_initial && |
1442 | params->announce_initial > 100000) { | |
1443 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, | |
1444 | "announce_initial", | |
54270c45 | 1445 | "a value between 0 and 100000"); |
ee3d96ba DDAG |
1446 | return false; |
1447 | } | |
1448 | if (params->has_announce_max && | |
1449 | params->announce_max > 100000) { | |
1450 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, | |
1451 | "announce_max", | |
54270c45 | 1452 | "a value between 0 and 100000"); |
ee3d96ba DDAG |
1453 | return false; |
1454 | } | |
1455 | if (params->has_announce_rounds && | |
1456 | params->announce_rounds > 1000) { | |
1457 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, | |
1458 | "announce_rounds", | |
54270c45 | 1459 | "a value between 0 and 1000"); |
ee3d96ba DDAG |
1460 | return false; |
1461 | } | |
1462 | if (params->has_announce_step && | |
1463 | (params->announce_step < 1 || | |
1464 | params->announce_step > 10000)) { | |
1465 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, | |
1466 | "announce_step", | |
54270c45 | 1467 | "a value between 0 and 10000"); |
ee3d96ba DDAG |
1468 | return false; |
1469 | } | |
31e4c354 HR |
1470 | |
1471 | if (params->has_block_bitmap_mapping && | |
1472 | !check_dirty_bitmap_mig_alias_map(params->block_bitmap_mapping, errp)) { | |
1473 | error_prepend(errp, "Invalid mapping given for block-bitmap-mapping: "); | |
1474 | return false; | |
1475 | } | |
1476 | ||
16d063bc PX |
1477 | return true; |
1478 | } | |
1479 | ||
1bda8b3c MA |
1480 | static void migrate_params_test_apply(MigrateSetParameters *params, |
1481 | MigrationParameters *dest) | |
1482 | { | |
1483 | *dest = migrate_get_current()->parameters; | |
1484 | ||
1485 | /* TODO use QAPI_CLONE() instead of duplicating it inline */ | |
1486 | ||
1487 | if (params->has_compress_level) { | |
1488 | dest->compress_level = params->compress_level; | |
1489 | } | |
1490 | ||
1491 | if (params->has_compress_threads) { | |
1492 | dest->compress_threads = params->compress_threads; | |
1493 | } | |
1494 | ||
1d58872a XG |
1495 | if (params->has_compress_wait_thread) { |
1496 | dest->compress_wait_thread = params->compress_wait_thread; | |
1497 | } | |
1498 | ||
1bda8b3c MA |
1499 | if (params->has_decompress_threads) { |
1500 | dest->decompress_threads = params->decompress_threads; | |
1501 | } | |
1502 | ||
dc14a470 KZ |
1503 | if (params->has_throttle_trigger_threshold) { |
1504 | dest->throttle_trigger_threshold = params->throttle_trigger_threshold; | |
1505 | } | |
1506 | ||
1bda8b3c MA |
1507 | if (params->has_cpu_throttle_initial) { |
1508 | dest->cpu_throttle_initial = params->cpu_throttle_initial; | |
1509 | } | |
1510 | ||
1511 | if (params->has_cpu_throttle_increment) { | |
1512 | dest->cpu_throttle_increment = params->cpu_throttle_increment; | |
1513 | } | |
1514 | ||
cbbf8182 KZ |
1515 | if (params->has_cpu_throttle_tailslow) { |
1516 | dest->cpu_throttle_tailslow = params->cpu_throttle_tailslow; | |
1517 | } | |
1518 | ||
1bda8b3c | 1519 | if (params->has_tls_creds) { |
01fa5598 | 1520 | assert(params->tls_creds->type == QTYPE_QSTRING); |
9728ebfb | 1521 | dest->tls_creds = params->tls_creds->u.s; |
1bda8b3c MA |
1522 | } |
1523 | ||
1524 | if (params->has_tls_hostname) { | |
01fa5598 | 1525 | assert(params->tls_hostname->type == QTYPE_QSTRING); |
9728ebfb | 1526 | dest->tls_hostname = params->tls_hostname->u.s; |
1bda8b3c MA |
1527 | } |
1528 | ||
1529 | if (params->has_max_bandwidth) { | |
1530 | dest->max_bandwidth = params->max_bandwidth; | |
1531 | } | |
1532 | ||
1533 | if (params->has_downtime_limit) { | |
1534 | dest->downtime_limit = params->downtime_limit; | |
1535 | } | |
1536 | ||
1537 | if (params->has_x_checkpoint_delay) { | |
1538 | dest->x_checkpoint_delay = params->x_checkpoint_delay; | |
1539 | } | |
1540 | ||
1541 | if (params->has_block_incremental) { | |
1542 | dest->block_incremental = params->block_incremental; | |
1543 | } | |
cbfd6c95 JQ |
1544 | if (params->has_multifd_channels) { |
1545 | dest->multifd_channels = params->multifd_channels; | |
5e7577a1 | 1546 | } |
96eef042 JQ |
1547 | if (params->has_multifd_compression) { |
1548 | dest->multifd_compression = params->multifd_compression; | |
1549 | } | |
73af8dd8 JQ |
1550 | if (params->has_xbzrle_cache_size) { |
1551 | dest->xbzrle_cache_size = params->xbzrle_cache_size; | |
1552 | } | |
7e555c6c DDAG |
1553 | if (params->has_max_postcopy_bandwidth) { |
1554 | dest->max_postcopy_bandwidth = params->max_postcopy_bandwidth; | |
1555 | } | |
4cbc9c7f LQ |
1556 | if (params->has_max_cpu_throttle) { |
1557 | dest->max_cpu_throttle = params->max_cpu_throttle; | |
1558 | } | |
ee3d96ba DDAG |
1559 | if (params->has_announce_initial) { |
1560 | dest->announce_initial = params->announce_initial; | |
1561 | } | |
1562 | if (params->has_announce_max) { | |
1563 | dest->announce_max = params->announce_max; | |
1564 | } | |
1565 | if (params->has_announce_rounds) { | |
1566 | dest->announce_rounds = params->announce_rounds; | |
1567 | } | |
1568 | if (params->has_announce_step) { | |
1569 | dest->announce_step = params->announce_step; | |
1570 | } | |
31e4c354 HR |
1571 | |
1572 | if (params->has_block_bitmap_mapping) { | |
1573 | dest->has_block_bitmap_mapping = true; | |
1574 | dest->block_bitmap_mapping = params->block_bitmap_mapping; | |
1575 | } | |
1bda8b3c MA |
1576 | } |
1577 | ||
73af8dd8 | 1578 | static void migrate_params_apply(MigrateSetParameters *params, Error **errp) |
16d063bc PX |
1579 | { |
1580 | MigrationState *s = migrate_get_current(); | |
1581 | ||
e87fae4c MA |
1582 | /* TODO use QAPI_CLONE() instead of duplicating it inline */ |
1583 | ||
7f375e04 EB |
1584 | if (params->has_compress_level) { |
1585 | s->parameters.compress_level = params->compress_level; | |
85de8323 | 1586 | } |
476c72aa | 1587 | |
7f375e04 EB |
1588 | if (params->has_compress_threads) { |
1589 | s->parameters.compress_threads = params->compress_threads; | |
85de8323 | 1590 | } |
476c72aa | 1591 | |
1d58872a XG |
1592 | if (params->has_compress_wait_thread) { |
1593 | s->parameters.compress_wait_thread = params->compress_wait_thread; | |
1594 | } | |
1595 | ||
7f375e04 EB |
1596 | if (params->has_decompress_threads) { |
1597 | s->parameters.decompress_threads = params->decompress_threads; | |
85de8323 | 1598 | } |
476c72aa | 1599 | |
dc14a470 KZ |
1600 | if (params->has_throttle_trigger_threshold) { |
1601 | s->parameters.throttle_trigger_threshold = params->throttle_trigger_threshold; | |
1602 | } | |
1603 | ||
7f375e04 EB |
1604 | if (params->has_cpu_throttle_initial) { |
1605 | s->parameters.cpu_throttle_initial = params->cpu_throttle_initial; | |
1626fee3 | 1606 | } |
476c72aa | 1607 | |
7f375e04 EB |
1608 | if (params->has_cpu_throttle_increment) { |
1609 | s->parameters.cpu_throttle_increment = params->cpu_throttle_increment; | |
1626fee3 | 1610 | } |
476c72aa | 1611 | |
cbbf8182 KZ |
1612 | if (params->has_cpu_throttle_tailslow) { |
1613 | s->parameters.cpu_throttle_tailslow = params->cpu_throttle_tailslow; | |
1614 | } | |
1615 | ||
7f375e04 | 1616 | if (params->has_tls_creds) { |
69ef1f36 | 1617 | g_free(s->parameters.tls_creds); |
01fa5598 MA |
1618 | assert(params->tls_creds->type == QTYPE_QSTRING); |
1619 | s->parameters.tls_creds = g_strdup(params->tls_creds->u.s); | |
69ef1f36 | 1620 | } |
476c72aa | 1621 | |
7f375e04 | 1622 | if (params->has_tls_hostname) { |
69ef1f36 | 1623 | g_free(s->parameters.tls_hostname); |
01fa5598 MA |
1624 | assert(params->tls_hostname->type == QTYPE_QSTRING); |
1625 | s->parameters.tls_hostname = g_strdup(params->tls_hostname->u.s); | |
69ef1f36 | 1626 | } |
476c72aa | 1627 | |
d2f1d29b DB |
1628 | if (params->has_tls_authz) { |
1629 | g_free(s->parameters.tls_authz); | |
1630 | assert(params->tls_authz->type == QTYPE_QSTRING); | |
1631 | s->parameters.tls_authz = g_strdup(params->tls_authz->u.s); | |
1632 | } | |
1633 | ||
2ff30257 AA |
1634 | if (params->has_max_bandwidth) { |
1635 | s->parameters.max_bandwidth = params->max_bandwidth; | |
c38c1c14 | 1636 | if (s->to_dst_file && !migration_in_postcopy()) { |
2ff30257 AA |
1637 | qemu_file_set_rate_limit(s->to_dst_file, |
1638 | s->parameters.max_bandwidth / XFER_LIMIT_RATIO); | |
1639 | } | |
1640 | } | |
476c72aa | 1641 | |
2ff30257 AA |
1642 | if (params->has_downtime_limit) { |
1643 | s->parameters.downtime_limit = params->downtime_limit; | |
1644 | } | |
68b53591 HZ |
1645 | |
1646 | if (params->has_x_checkpoint_delay) { | |
1647 | s->parameters.x_checkpoint_delay = params->x_checkpoint_delay; | |
479125d5 HZ |
1648 | if (migration_in_colo_state()) { |
1649 | colo_checkpoint_notify(s); | |
1650 | } | |
68b53591 | 1651 | } |
476c72aa | 1652 | |
2833c59b JQ |
1653 | if (params->has_block_incremental) { |
1654 | s->parameters.block_incremental = params->block_incremental; | |
1655 | } | |
cbfd6c95 JQ |
1656 | if (params->has_multifd_channels) { |
1657 | s->parameters.multifd_channels = params->multifd_channels; | |
4075fb1c | 1658 | } |
96eef042 JQ |
1659 | if (params->has_multifd_compression) { |
1660 | s->parameters.multifd_compression = params->multifd_compression; | |
1661 | } | |
73af8dd8 JQ |
1662 | if (params->has_xbzrle_cache_size) { |
1663 | s->parameters.xbzrle_cache_size = params->xbzrle_cache_size; | |
1664 | xbzrle_cache_resize(params->xbzrle_cache_size, errp); | |
1665 | } | |
7e555c6c DDAG |
1666 | if (params->has_max_postcopy_bandwidth) { |
1667 | s->parameters.max_postcopy_bandwidth = params->max_postcopy_bandwidth; | |
c38c1c14 DDAG |
1668 | if (s->to_dst_file && migration_in_postcopy()) { |
1669 | qemu_file_set_rate_limit(s->to_dst_file, | |
1670 | s->parameters.max_postcopy_bandwidth / XFER_LIMIT_RATIO); | |
1671 | } | |
7e555c6c | 1672 | } |
4cbc9c7f LQ |
1673 | if (params->has_max_cpu_throttle) { |
1674 | s->parameters.max_cpu_throttle = params->max_cpu_throttle; | |
1675 | } | |
ee3d96ba DDAG |
1676 | if (params->has_announce_initial) { |
1677 | s->parameters.announce_initial = params->announce_initial; | |
1678 | } | |
1679 | if (params->has_announce_max) { | |
1680 | s->parameters.announce_max = params->announce_max; | |
1681 | } | |
1682 | if (params->has_announce_rounds) { | |
1683 | s->parameters.announce_rounds = params->announce_rounds; | |
1684 | } | |
1685 | if (params->has_announce_step) { | |
1686 | s->parameters.announce_step = params->announce_step; | |
1687 | } | |
31e4c354 HR |
1688 | |
1689 | if (params->has_block_bitmap_mapping) { | |
1690 | qapi_free_BitmapMigrationNodeAliasList( | |
1691 | s->parameters.block_bitmap_mapping); | |
1692 | ||
1693 | s->parameters.has_block_bitmap_mapping = true; | |
1694 | s->parameters.block_bitmap_mapping = | |
1695 | QAPI_CLONE(BitmapMigrationNodeAliasList, | |
1696 | params->block_bitmap_mapping); | |
1697 | } | |
85de8323 LL |
1698 | } |
1699 | ||
1bda8b3c | 1700 | void qmp_migrate_set_parameters(MigrateSetParameters *params, Error **errp) |
476c72aa | 1701 | { |
1bda8b3c MA |
1702 | MigrationParameters tmp; |
1703 | ||
01fa5598 MA |
1704 | /* TODO Rewrite "" to null instead */ |
1705 | if (params->has_tls_creds | |
1706 | && params->tls_creds->type == QTYPE_QNULL) { | |
cb3e7f08 | 1707 | qobject_unref(params->tls_creds->u.n); |
01fa5598 MA |
1708 | params->tls_creds->type = QTYPE_QSTRING; |
1709 | params->tls_creds->u.s = strdup(""); | |
1710 | } | |
1711 | /* TODO Rewrite "" to null instead */ | |
1712 | if (params->has_tls_hostname | |
1713 | && params->tls_hostname->type == QTYPE_QNULL) { | |
cb3e7f08 | 1714 | qobject_unref(params->tls_hostname->u.n); |
01fa5598 MA |
1715 | params->tls_hostname->type = QTYPE_QSTRING; |
1716 | params->tls_hostname->u.s = strdup(""); | |
1717 | } | |
1718 | ||
1bda8b3c MA |
1719 | migrate_params_test_apply(params, &tmp); |
1720 | ||
1721 | if (!migrate_params_check(&tmp, errp)) { | |
476c72aa PX |
1722 | /* Invalid parameter */ |
1723 | return; | |
1724 | } | |
1725 | ||
73af8dd8 | 1726 | migrate_params_apply(params, errp); |
476c72aa PX |
1727 | } |
1728 | ||
2594f56d | 1729 | |
4886a1bc DDAG |
1730 | void qmp_migrate_start_postcopy(Error **errp) |
1731 | { | |
1732 | MigrationState *s = migrate_get_current(); | |
1733 | ||
16b0fd32 | 1734 | if (!migrate_postcopy()) { |
a54d340b | 1735 | error_setg(errp, "Enable postcopy with migrate_set_capability before" |
4886a1bc DDAG |
1736 | " the start of migration"); |
1737 | return; | |
1738 | } | |
1739 | ||
1740 | if (s->state == MIGRATION_STATUS_NONE) { | |
1741 | error_setg(errp, "Postcopy must be started after migration has been" | |
1742 | " started"); | |
1743 | return; | |
1744 | } | |
1745 | /* | |
1746 | * we don't error if migration has finished since that would be racy | |
1747 | * with issuing this command. | |
1748 | */ | |
d73415a3 | 1749 | qatomic_set(&s->start_postcopy, true); |
4886a1bc DDAG |
1750 | } |
1751 | ||
065e2813 AL |
1752 | /* shared migration helpers */ |
1753 | ||
48781e5b | 1754 | void migrate_set_state(int *state, int old_state, int new_state) |
51cf4c1a | 1755 | { |
a31fedee | 1756 | assert(new_state < MIGRATION_STATUS__MAX); |
d73415a3 | 1757 | if (qatomic_cmpxchg(state, old_state, new_state) == old_state) { |
a31fedee | 1758 | trace_migrate_set_state(MigrationStatus_str(new_state)); |
b05dc723 | 1759 | migrate_generate_event(new_state); |
51cf4c1a Z |
1760 | } |
1761 | } | |
1762 | ||
eaedde52 EB |
1763 | static MigrationCapabilityStatus *migrate_cap_add(MigrationCapability index, |
1764 | bool state) | |
2833c59b | 1765 | { |
eaedde52 | 1766 | MigrationCapabilityStatus *cap; |
2833c59b | 1767 | |
eaedde52 EB |
1768 | cap = g_new0(MigrationCapabilityStatus, 1); |
1769 | cap->capability = index; | |
1770 | cap->state = state; | |
4e4a3d3a PX |
1771 | |
1772 | return cap; | |
1773 | } | |
1774 | ||
1775 | void migrate_set_block_enabled(bool value, Error **errp) | |
1776 | { | |
eaedde52 | 1777 | MigrationCapabilityStatusList *cap = NULL; |
4e4a3d3a | 1778 | |
eaedde52 | 1779 | QAPI_LIST_PREPEND(cap, migrate_cap_add(MIGRATION_CAPABILITY_BLOCK, value)); |
2833c59b JQ |
1780 | qmp_migrate_set_capabilities(cap, errp); |
1781 | qapi_free_MigrationCapabilityStatusList(cap); | |
1782 | } | |
1783 | ||
1784 | static void migrate_set_block_incremental(MigrationState *s, bool value) | |
1785 | { | |
1786 | s->parameters.block_incremental = value; | |
1787 | } | |
1788 | ||
1789 | static void block_cleanup_parameters(MigrationState *s) | |
1790 | { | |
1791 | if (s->must_remove_block_options) { | |
1792 | /* setting to false can never fail */ | |
1793 | migrate_set_block_enabled(false, &error_abort); | |
1794 | migrate_set_block_incremental(s, false); | |
1795 | s->must_remove_block_options = false; | |
1796 | } | |
1797 | } | |
1798 | ||
fd392cfa | 1799 | static void migrate_fd_cleanup(MigrationState *s) |
065e2813 | 1800 | { |
bb1fadc4 PB |
1801 | qemu_bh_delete(s->cleanup_bh); |
1802 | s->cleanup_bh = NULL; | |
1803 | ||
0ceccd85 PX |
1804 | qemu_savevm_state_cleanup(); |
1805 | ||
89a02a9f | 1806 | if (s->to_dst_file) { |
62df066f | 1807 | QEMUFile *tmp; |
f986c3d2 | 1808 | |
9013dca5 | 1809 | trace_migrate_fd_cleanup(); |
404a7c05 | 1810 | qemu_mutex_unlock_iothread(); |
1d34e4bf DDAG |
1811 | if (s->migration_thread_running) { |
1812 | qemu_thread_join(&s->thread); | |
1813 | s->migration_thread_running = false; | |
1814 | } | |
404a7c05 PB |
1815 | qemu_mutex_lock_iothread(); |
1816 | ||
1398b2e3 | 1817 | multifd_save_cleanup(); |
62df066f PX |
1818 | qemu_mutex_lock(&s->qemu_file_lock); |
1819 | tmp = s->to_dst_file; | |
89a02a9f | 1820 | s->to_dst_file = NULL; |
62df066f PX |
1821 | qemu_mutex_unlock(&s->qemu_file_lock); |
1822 | /* | |
1823 | * Close the file handle without the lock to make sure the | |
1824 | * critical section won't block for long. | |
1825 | */ | |
1826 | qemu_fclose(tmp); | |
065e2813 AL |
1827 | } |
1828 | ||
8f8d528e | 1829 | assert(!migration_is_active(s)); |
7a2c1721 | 1830 | |
94f5a437 | 1831 | if (s->state == MIGRATION_STATUS_CANCELLING) { |
48781e5b | 1832 | migrate_set_state(&s->state, MIGRATION_STATUS_CANCELLING, |
94f5a437 | 1833 | MIGRATION_STATUS_CANCELLED); |
7a2c1721 | 1834 | } |
a3fa1d78 | 1835 | |
87db1a7d JQ |
1836 | if (s->error) { |
1837 | /* It is used on info migrate. We can't free it */ | |
1838 | error_report_err(error_copy(s->error)); | |
1839 | } | |
a3fa1d78 | 1840 | notifier_list_notify(&migration_state_notifiers, s); |
2833c59b | 1841 | block_cleanup_parameters(s); |
b5eea99e | 1842 | yank_unregister_instance(MIGRATION_YANK_INSTANCE); |
065e2813 AL |
1843 | } |
1844 | ||
fd392cfa YK |
1845 | static void migrate_fd_cleanup_schedule(MigrationState *s) |
1846 | { | |
1847 | /* | |
1848 | * Ref the state for bh, because it may be called when | |
1849 | * there're already no other refs | |
1850 | */ | |
1851 | object_ref(OBJECT(s)); | |
1852 | qemu_bh_schedule(s->cleanup_bh); | |
1853 | } | |
1854 | ||
1855 | static void migrate_fd_cleanup_bh(void *opaque) | |
1856 | { | |
1857 | MigrationState *s = opaque; | |
1858 | migrate_fd_cleanup(s); | |
1859 | object_unref(OBJECT(s)); | |
1860 | } | |
1861 | ||
87db1a7d JQ |
1862 | void migrate_set_error(MigrationState *s, const Error *error) |
1863 | { | |
6e8a355d | 1864 | QEMU_LOCK_GUARD(&s->error_mutex); |
87db1a7d JQ |
1865 | if (!s->error) { |
1866 | s->error = error_copy(error); | |
1867 | } | |
87db1a7d JQ |
1868 | } |
1869 | ||
d59ce6f3 | 1870 | void migrate_fd_error(MigrationState *s, const Error *error) |
065e2813 | 1871 | { |
25174055 | 1872 | trace_migrate_fd_error(error_get_pretty(error)); |
89a02a9f | 1873 | assert(s->to_dst_file == NULL); |
48781e5b HZ |
1874 | migrate_set_state(&s->state, MIGRATION_STATUS_SETUP, |
1875 | MIGRATION_STATUS_FAILED); | |
87db1a7d | 1876 | migrate_set_error(s, error); |
458cf28e JQ |
1877 | } |
1878 | ||
0edda1c4 | 1879 | static void migrate_fd_cancel(MigrationState *s) |
065e2813 | 1880 | { |
6f2b811a | 1881 | int old_state ; |
89a02a9f | 1882 | QEMUFile *f = migrate_get_current()->to_dst_file; |
9013dca5 | 1883 | trace_migrate_fd_cancel(); |
065e2813 | 1884 | |
70b20477 DDAG |
1885 | if (s->rp_state.from_dst_file) { |
1886 | /* shutdown the rp socket, so causing the rp thread to shutdown */ | |
1887 | qemu_file_shutdown(s->rp_state.from_dst_file); | |
1888 | } | |
1889 | ||
6f2b811a Z |
1890 | do { |
1891 | old_state = s->state; | |
392d87e2 | 1892 | if (!migration_is_running(old_state)) { |
6f2b811a Z |
1893 | break; |
1894 | } | |
a7b36b48 DDAG |
1895 | /* If the migration is paused, kick it out of the pause */ |
1896 | if (old_state == MIGRATION_STATUS_PRE_SWITCHOVER) { | |
1897 | qemu_sem_post(&s->pause_sem); | |
1898 | } | |
48781e5b | 1899 | migrate_set_state(&s->state, old_state, MIGRATION_STATUS_CANCELLING); |
31194731 | 1900 | } while (s->state != MIGRATION_STATUS_CANCELLING); |
a26ba26e DDAG |
1901 | |
1902 | /* | |
1903 | * If we're unlucky the migration code might be stuck somewhere in a | |
1904 | * send/write while the network has failed and is waiting to timeout; | |
1905 | * if we've got shutdown(2) available then we can force it to quit. | |
1906 | * The outgoing qemu file gets closed in migrate_fd_cleanup that is | |
1907 | * called in a bh, so there is no race against this cancel. | |
1908 | */ | |
31194731 | 1909 | if (s->state == MIGRATION_STATUS_CANCELLING && f) { |
a26ba26e DDAG |
1910 | qemu_file_shutdown(f); |
1911 | } | |
1d2acc31 HZ |
1912 | if (s->state == MIGRATION_STATUS_CANCELLING && s->block_inactive) { |
1913 | Error *local_err = NULL; | |
1914 | ||
1915 | bdrv_invalidate_cache_all(&local_err); | |
1916 | if (local_err) { | |
1917 | error_report_err(local_err); | |
1918 | } else { | |
1919 | s->block_inactive = false; | |
1920 | } | |
1921 | } | |
065e2813 AL |
1922 | } |
1923 | ||
99a0db9b GH |
1924 | void add_migration_state_change_notifier(Notifier *notify) |
1925 | { | |
1926 | notifier_list_add(&migration_state_notifiers, notify); | |
1927 | } | |
1928 | ||
1929 | void remove_migration_state_change_notifier(Notifier *notify) | |
1930 | { | |
31552529 | 1931 | notifier_remove(notify); |
99a0db9b GH |
1932 | } |
1933 | ||
02edd2e7 | 1934 | bool migration_in_setup(MigrationState *s) |
afe2df69 | 1935 | { |
31194731 | 1936 | return s->state == MIGRATION_STATUS_SETUP; |
afe2df69 GH |
1937 | } |
1938 | ||
7073693b | 1939 | bool migration_has_finished(MigrationState *s) |
99a0db9b | 1940 | { |
31194731 | 1941 | return s->state == MIGRATION_STATUS_COMPLETED; |
99a0db9b | 1942 | } |
0edda1c4 | 1943 | |
afe2df69 GH |
1944 | bool migration_has_failed(MigrationState *s) |
1945 | { | |
31194731 HZ |
1946 | return (s->state == MIGRATION_STATUS_CANCELLED || |
1947 | s->state == MIGRATION_STATUS_FAILED); | |
afe2df69 GH |
1948 | } |
1949 | ||
5727309d | 1950 | bool migration_in_postcopy(void) |
9ec055ae | 1951 | { |
5727309d JQ |
1952 | MigrationState *s = migrate_get_current(); |
1953 | ||
3748fef9 DDAG |
1954 | switch (s->state) { |
1955 | case MIGRATION_STATUS_POSTCOPY_ACTIVE: | |
1956 | case MIGRATION_STATUS_POSTCOPY_PAUSED: | |
1957 | case MIGRATION_STATUS_POSTCOPY_RECOVER: | |
1958 | return true; | |
1959 | default: | |
1960 | return false; | |
1961 | } | |
9ec055ae DDAG |
1962 | } |
1963 | ||
b82fc321 DDAG |
1964 | bool migration_in_postcopy_after_devices(MigrationState *s) |
1965 | { | |
5727309d | 1966 | return migration_in_postcopy() && s->postcopy_after_devices; |
b82fc321 DDAG |
1967 | } |
1968 | ||
06df2e69 DH |
1969 | bool migration_in_incoming_postcopy(void) |
1970 | { | |
1971 | PostcopyState ps = postcopy_state_get(); | |
1972 | ||
1973 | return ps >= POSTCOPY_INCOMING_DISCARD && ps < POSTCOPY_INCOMING_END; | |
1974 | } | |
1975 | ||
1a8e44a8 AG |
1976 | bool migration_in_bg_snapshot(void) |
1977 | { | |
1978 | MigrationState *s = migrate_get_current(); | |
1979 | ||
1980 | return migrate_background_snapshot() && | |
1981 | migration_is_setup_or_active(s->state); | |
1982 | } | |
1983 | ||
fab35005 | 1984 | bool migration_is_idle(void) |
fe44dc91 | 1985 | { |
daff7f0b MA |
1986 | MigrationState *s = current_migration; |
1987 | ||
1988 | if (!s) { | |
1989 | return true; | |
1990 | } | |
fe44dc91 AA |
1991 | |
1992 | switch (s->state) { | |
1993 | case MIGRATION_STATUS_NONE: | |
1994 | case MIGRATION_STATUS_CANCELLED: | |
1995 | case MIGRATION_STATUS_COMPLETED: | |
1996 | case MIGRATION_STATUS_FAILED: | |
1997 | return true; | |
1998 | case MIGRATION_STATUS_SETUP: | |
1999 | case MIGRATION_STATUS_CANCELLING: | |
2000 | case MIGRATION_STATUS_ACTIVE: | |
2001 | case MIGRATION_STATUS_POSTCOPY_ACTIVE: | |
2002 | case MIGRATION_STATUS_COLO: | |
31e06077 DDAG |
2003 | case MIGRATION_STATUS_PRE_SWITCHOVER: |
2004 | case MIGRATION_STATUS_DEVICE: | |
c7e0acd5 | 2005 | case MIGRATION_STATUS_WAIT_UNPLUG: |
fe44dc91 AA |
2006 | return false; |
2007 | case MIGRATION_STATUS__MAX: | |
2008 | g_assert_not_reached(); | |
2009 | } | |
2010 | ||
2011 | return false; | |
2012 | } | |
2013 | ||
8f8d528e WY |
2014 | bool migration_is_active(MigrationState *s) |
2015 | { | |
2016 | return (s->state == MIGRATION_STATUS_ACTIVE || | |
2017 | s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE); | |
2018 | } | |
2019 | ||
3e0c8050 | 2020 | void migrate_init(MigrationState *s) |
0edda1c4 | 2021 | { |
389775d1 DDAG |
2022 | /* |
2023 | * Reinitialise all migration state, except | |
2024 | * parameters/capabilities that the user set, and | |
2025 | * locks. | |
2026 | */ | |
389775d1 | 2027 | s->cleanup_bh = 0; |
8518278a | 2028 | s->vm_start_bh = 0; |
89a02a9f | 2029 | s->to_dst_file = NULL; |
389775d1 | 2030 | s->state = MIGRATION_STATUS_NONE; |
389775d1 DDAG |
2031 | s->rp_state.from_dst_file = NULL; |
2032 | s->rp_state.error = false; | |
2033 | s->mbps = 0.0; | |
aecbfe9c | 2034 | s->pages_per_second = 0.0; |
389775d1 DDAG |
2035 | s->downtime = 0; |
2036 | s->expected_downtime = 0; | |
389775d1 | 2037 | s->setup_time = 0; |
389775d1 | 2038 | s->start_postcopy = false; |
b82fc321 | 2039 | s->postcopy_after_devices = false; |
389775d1 | 2040 | s->migration_thread_running = false; |
d59ce6f3 DB |
2041 | error_free(s->error); |
2042 | s->error = NULL; | |
d8053e73 | 2043 | s->hostname = NULL; |
389775d1 | 2044 | |
48781e5b | 2045 | migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP); |
0edda1c4 | 2046 | |
4af246a3 PX |
2047 | s->start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
2048 | s->total_time = 0; | |
7287cbd4 | 2049 | s->vm_was_running = false; |
b15df1ae PX |
2050 | s->iteration_initial_bytes = 0; |
2051 | s->threshold_size = 0; | |
0edda1c4 | 2052 | } |
cab30143 | 2053 | |
fe44dc91 | 2054 | int migrate_add_blocker(Error *reason, Error **errp) |
fa2756b7 | 2055 | { |
811f8652 | 2056 | if (only_migratable) { |
4b576648 MA |
2057 | error_propagate_prepend(errp, error_copy(reason), |
2058 | "disallowing migration blocker " | |
b6eca81e | 2059 | "(--only-migratable) for: "); |
b67b8c3a AA |
2060 | return -EACCES; |
2061 | } | |
2062 | ||
fab35005 | 2063 | if (migration_is_idle()) { |
fe44dc91 AA |
2064 | migration_blockers = g_slist_prepend(migration_blockers, reason); |
2065 | return 0; | |
2066 | } | |
2067 | ||
4b576648 MA |
2068 | error_propagate_prepend(errp, error_copy(reason), |
2069 | "disallowing migration blocker " | |
2070 | "(migration in progress) for: "); | |
fe44dc91 | 2071 | return -EBUSY; |
fa2756b7 AL |
2072 | } |
2073 | ||
2074 | void migrate_del_blocker(Error *reason) | |
2075 | { | |
2076 | migration_blockers = g_slist_remove(migration_blockers, reason); | |
2077 | } | |
2078 | ||
bf1ae1f4 DDAG |
2079 | void qmp_migrate_incoming(const char *uri, Error **errp) |
2080 | { | |
2081 | Error *local_err = NULL; | |
4debb5f5 | 2082 | static bool once = true; |
bf1ae1f4 | 2083 | |
4debb5f5 DDAG |
2084 | if (!once) { |
2085 | error_setg(errp, "The incoming migration has already been started"); | |
603d5a42 | 2086 | return; |
4debb5f5 | 2087 | } |
e69d50d6 PB |
2088 | if (!runstate_check(RUN_STATE_INMIGRATE)) { |
2089 | error_setg(errp, "'-incoming' was not specified on the command line"); | |
2090 | return; | |
2091 | } | |
bf1ae1f4 DDAG |
2092 | |
2093 | qemu_start_incoming_migration(uri, &local_err); | |
2094 | ||
2095 | if (local_err) { | |
2096 | error_propagate(errp, local_err); | |
2097 | return; | |
2098 | } | |
2099 | ||
4debb5f5 | 2100 | once = false; |
bf1ae1f4 DDAG |
2101 | } |
2102 | ||
02affd41 PX |
2103 | void qmp_migrate_recover(const char *uri, Error **errp) |
2104 | { | |
2105 | MigrationIncomingState *mis = migration_incoming_get_current(); | |
2106 | ||
2107 | if (mis->state != MIGRATION_STATUS_POSTCOPY_PAUSED) { | |
2108 | error_setg(errp, "Migrate recover can only be run " | |
2109 | "when postcopy is paused."); | |
2110 | return; | |
2111 | } | |
2112 | ||
d73415a3 | 2113 | if (qatomic_cmpxchg(&mis->postcopy_recover_triggered, |
02affd41 PX |
2114 | false, true) == true) { |
2115 | error_setg(errp, "Migrate recovery is triggered already"); | |
2116 | return; | |
2117 | } | |
2118 | ||
2119 | /* | |
2120 | * Note that this call will never start a real migration; it will | |
2121 | * only re-setup the migration stream and poke existing migration | |
2122 | * to continue using that newly established channel. | |
2123 | */ | |
b5eea99e | 2124 | yank_unregister_instance(MIGRATION_YANK_INSTANCE); |
02affd41 PX |
2125 | qemu_start_incoming_migration(uri, errp); |
2126 | } | |
2127 | ||
bfbf89c2 PX |
2128 | void qmp_migrate_pause(Error **errp) |
2129 | { | |
2130 | MigrationState *ms = migrate_get_current(); | |
2131 | MigrationIncomingState *mis = migration_incoming_get_current(); | |
2132 | int ret; | |
2133 | ||
2134 | if (ms->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) { | |
2135 | /* Source side, during postcopy */ | |
2136 | qemu_mutex_lock(&ms->qemu_file_lock); | |
2137 | ret = qemu_file_shutdown(ms->to_dst_file); | |
2138 | qemu_mutex_unlock(&ms->qemu_file_lock); | |
2139 | if (ret) { | |
2140 | error_setg(errp, "Failed to pause source migration"); | |
2141 | } | |
2142 | return; | |
2143 | } | |
2144 | ||
2145 | if (mis->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) { | |
2146 | ret = qemu_file_shutdown(mis->from_src_file); | |
2147 | if (ret) { | |
2148 | error_setg(errp, "Failed to pause destination migration"); | |
2149 | } | |
2150 | return; | |
2151 | } | |
2152 | ||
2153 | error_setg(errp, "migrate-pause is currently only supported " | |
2154 | "during postcopy-active state"); | |
2155 | } | |
2156 | ||
24f3902b GK |
2157 | bool migration_is_blocked(Error **errp) |
2158 | { | |
2159 | if (qemu_savevm_state_blocked(errp)) { | |
2160 | return true; | |
2161 | } | |
2162 | ||
2163 | if (migration_blockers) { | |
250561e1 | 2164 | error_propagate(errp, error_copy(migration_blockers->data)); |
24f3902b GK |
2165 | return true; |
2166 | } | |
2167 | ||
2168 | return false; | |
2169 | } | |
2170 | ||
d3e35b8f PX |
2171 | /* Returns true if continue to migrate, or false if error detected */ |
2172 | static bool migrate_prepare(MigrationState *s, bool blk, bool blk_inc, | |
2173 | bool resume, Error **errp) | |
cab30143 | 2174 | { |
be7059cd | 2175 | Error *local_err = NULL; |
d3e35b8f PX |
2176 | |
2177 | if (resume) { | |
2178 | if (s->state != MIGRATION_STATUS_POSTCOPY_PAUSED) { | |
2179 | error_setg(errp, "Cannot resume if there is no " | |
2180 | "paused migration"); | |
2181 | return false; | |
2182 | } | |
97ca211c PX |
2183 | |
2184 | /* | |
2185 | * Postcopy recovery won't work well with release-ram | |
2186 | * capability since release-ram will drop the page buffer as | |
2187 | * long as the page is put into the send buffer. So if there | |
2188 | * is a network failure happened, any page buffers that have | |
2189 | * not yet reached the destination VM but have already been | |
2190 | * sent from the source VM will be lost forever. Let's refuse | |
2191 | * the client from resuming such a postcopy migration. | |
2192 | * Luckily release-ram was designed to only be used when src | |
2193 | * and destination VMs are on the same host, so it should be | |
2194 | * fine. | |
2195 | */ | |
2196 | if (migrate_release_ram()) { | |
2197 | error_setg(errp, "Postcopy recovery cannot work " | |
2198 | "when release-ram capability is set"); | |
2199 | return false; | |
2200 | } | |
2201 | ||
d3e35b8f PX |
2202 | /* This is a resume, skip init status */ |
2203 | return true; | |
2204 | } | |
cab30143 | 2205 | |
392d87e2 | 2206 | if (migration_is_running(s->state)) { |
c6bd8c70 | 2207 | error_setg(errp, QERR_MIGRATION_ACTIVE); |
d3e35b8f | 2208 | return false; |
cab30143 | 2209 | } |
d3e35b8f | 2210 | |
ca99993a DDAG |
2211 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
2212 | error_setg(errp, "Guest is waiting for an incoming migration"); | |
d3e35b8f | 2213 | return false; |
ca99993a DDAG |
2214 | } |
2215 | ||
36d0fe65 T |
2216 | if (runstate_check(RUN_STATE_POSTMIGRATE)) { |
2217 | error_setg(errp, "Can't migrate the vm that was paused due to " | |
2218 | "previous migration"); | |
2219 | return false; | |
2220 | } | |
2221 | ||
24f3902b | 2222 | if (migration_is_blocked(errp)) { |
d3e35b8f | 2223 | return false; |
fa2756b7 AL |
2224 | } |
2225 | ||
d3e35b8f | 2226 | if (blk || blk_inc) { |
2833c59b JQ |
2227 | if (migrate_use_block() || migrate_use_block_incremental()) { |
2228 | error_setg(errp, "Command options are incompatible with " | |
2229 | "current migration capabilities"); | |
d3e35b8f | 2230 | return false; |
2833c59b JQ |
2231 | } |
2232 | migrate_set_block_enabled(true, &local_err); | |
2233 | if (local_err) { | |
2234 | error_propagate(errp, local_err); | |
d3e35b8f | 2235 | return false; |
2833c59b JQ |
2236 | } |
2237 | s->must_remove_block_options = true; | |
2238 | } | |
2239 | ||
d3e35b8f | 2240 | if (blk_inc) { |
2833c59b JQ |
2241 | migrate_set_block_incremental(s, true); |
2242 | } | |
2243 | ||
3e0c8050 | 2244 | migrate_init(s); |
87f3bd87 IR |
2245 | /* |
2246 | * set ram_counters memory to zero for a | |
2247 | * new migration | |
2248 | */ | |
2249 | memset(&ram_counters, 0, sizeof(ram_counters)); | |
cab30143 | 2250 | |
d3e35b8f PX |
2251 | return true; |
2252 | } | |
2253 | ||
2254 | void qmp_migrate(const char *uri, bool has_blk, bool blk, | |
2255 | bool has_inc, bool inc, bool has_detach, bool detach, | |
2256 | bool has_resume, bool resume, Error **errp) | |
2257 | { | |
2258 | Error *local_err = NULL; | |
2259 | MigrationState *s = migrate_get_current(); | |
d658f65c | 2260 | const char *p = NULL; |
d3e35b8f PX |
2261 | |
2262 | if (!migrate_prepare(s, has_blk && blk, has_inc && inc, | |
2263 | has_resume && resume, errp)) { | |
2264 | /* Error detected, put into errp */ | |
2265 | return; | |
2266 | } | |
2267 | ||
b5eea99e LS |
2268 | if (!(has_resume && resume)) { |
2269 | if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) { | |
2270 | return; | |
2271 | } | |
2272 | } | |
2273 | ||
d658f65c | 2274 | if (strstart(uri, "tcp:", &p) || |
9ba3b2ba LM |
2275 | strstart(uri, "unix:", NULL) || |
2276 | strstart(uri, "vsock:", NULL)) { | |
d658f65c | 2277 | socket_start_outgoing_migration(s, p ? p : uri, &local_err); |
2da776db | 2278 | #ifdef CONFIG_RDMA |
41310c68 | 2279 | } else if (strstart(uri, "rdma:", &p)) { |
2da776db MH |
2280 | rdma_start_outgoing_migration(s, p, &local_err); |
2281 | #endif | |
cab30143 | 2282 | } else if (strstart(uri, "exec:", &p)) { |
f37afb5a | 2283 | exec_start_outgoing_migration(s, p, &local_err); |
cab30143 | 2284 | } else if (strstart(uri, "fd:", &p)) { |
f37afb5a | 2285 | fd_start_outgoing_migration(s, p, &local_err); |
99a0db9b | 2286 | } else { |
b5eea99e LS |
2287 | if (!(has_resume && resume)) { |
2288 | yank_unregister_instance(MIGRATION_YANK_INSTANCE); | |
2289 | } | |
c6bd8c70 MA |
2290 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "uri", |
2291 | "a valid migration protocol"); | |
48781e5b HZ |
2292 | migrate_set_state(&s->state, MIGRATION_STATUS_SETUP, |
2293 | MIGRATION_STATUS_FAILED); | |
09576e74 | 2294 | block_cleanup_parameters(s); |
e1c37d0e | 2295 | return; |
cab30143 JQ |
2296 | } |
2297 | ||
f37afb5a | 2298 | if (local_err) { |
b5eea99e LS |
2299 | if (!(has_resume && resume)) { |
2300 | yank_unregister_instance(MIGRATION_YANK_INSTANCE); | |
2301 | } | |
d59ce6f3 | 2302 | migrate_fd_error(s, local_err); |
f37afb5a | 2303 | error_propagate(errp, local_err); |
e1c37d0e | 2304 | return; |
1299c631 | 2305 | } |
cab30143 JQ |
2306 | } |
2307 | ||
6cdedb07 | 2308 | void qmp_migrate_cancel(Error **errp) |
cab30143 | 2309 | { |
17549e84 | 2310 | migrate_fd_cancel(migrate_get_current()); |
cab30143 JQ |
2311 | } |
2312 | ||
89cfc02c DDAG |
2313 | void qmp_migrate_continue(MigrationStatus state, Error **errp) |
2314 | { | |
2315 | MigrationState *s = migrate_get_current(); | |
2316 | if (s->state != state) { | |
2317 | error_setg(errp, "Migration not in expected state: %s", | |
2318 | MigrationStatus_str(s->state)); | |
2319 | return; | |
2320 | } | |
2321 | qemu_sem_post(&s->pause_sem); | |
2322 | } | |
2323 | ||
53f09a10 PB |
2324 | bool migrate_release_ram(void) |
2325 | { | |
2326 | MigrationState *s; | |
2327 | ||
2328 | s = migrate_get_current(); | |
2329 | ||
2330 | return s->enabled_capabilities[MIGRATION_CAPABILITY_RELEASE_RAM]; | |
2331 | } | |
2332 | ||
53dd370c DDAG |
2333 | bool migrate_postcopy_ram(void) |
2334 | { | |
2335 | MigrationState *s; | |
2336 | ||
2337 | s = migrate_get_current(); | |
2338 | ||
32c3db5b | 2339 | return s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_RAM]; |
53dd370c DDAG |
2340 | } |
2341 | ||
58110f0a VSO |
2342 | bool migrate_postcopy(void) |
2343 | { | |
dd6bb914 | 2344 | return migrate_postcopy_ram() || migrate_dirty_bitmaps(); |
58110f0a VSO |
2345 | } |
2346 | ||
bde1e2ec CV |
2347 | bool migrate_auto_converge(void) |
2348 | { | |
2349 | MigrationState *s; | |
2350 | ||
2351 | s = migrate_get_current(); | |
2352 | ||
2353 | return s->enabled_capabilities[MIGRATION_CAPABILITY_AUTO_CONVERGE]; | |
2354 | } | |
2355 | ||
323004a3 PL |
2356 | bool migrate_zero_blocks(void) |
2357 | { | |
2358 | MigrationState *s; | |
2359 | ||
2360 | s = migrate_get_current(); | |
2361 | ||
2362 | return s->enabled_capabilities[MIGRATION_CAPABILITY_ZERO_BLOCKS]; | |
2363 | } | |
2364 | ||
f22f928e AP |
2365 | bool migrate_postcopy_blocktime(void) |
2366 | { | |
2367 | MigrationState *s; | |
2368 | ||
2369 | s = migrate_get_current(); | |
2370 | ||
2371 | return s->enabled_capabilities[MIGRATION_CAPABILITY_POSTCOPY_BLOCKTIME]; | |
2372 | } | |
2373 | ||
8706d2d5 LL |
2374 | bool migrate_use_compression(void) |
2375 | { | |
dde4e694 LL |
2376 | MigrationState *s; |
2377 | ||
2378 | s = migrate_get_current(); | |
2379 | ||
2380 | return s->enabled_capabilities[MIGRATION_CAPABILITY_COMPRESS]; | |
8706d2d5 LL |
2381 | } |
2382 | ||
2383 | int migrate_compress_level(void) | |
2384 | { | |
2385 | MigrationState *s; | |
2386 | ||
2387 | s = migrate_get_current(); | |
2388 | ||
2594f56d | 2389 | return s->parameters.compress_level; |
8706d2d5 LL |
2390 | } |
2391 | ||
2392 | int migrate_compress_threads(void) | |
2393 | { | |
2394 | MigrationState *s; | |
2395 | ||
2396 | s = migrate_get_current(); | |
2397 | ||
2594f56d | 2398 | return s->parameters.compress_threads; |
8706d2d5 LL |
2399 | } |
2400 | ||
1d58872a XG |
2401 | int migrate_compress_wait_thread(void) |
2402 | { | |
2403 | MigrationState *s; | |
2404 | ||
2405 | s = migrate_get_current(); | |
2406 | ||
2407 | return s->parameters.compress_wait_thread; | |
2408 | } | |
2409 | ||
3fcb38c2 LL |
2410 | int migrate_decompress_threads(void) |
2411 | { | |
2412 | MigrationState *s; | |
2413 | ||
2414 | s = migrate_get_current(); | |
2415 | ||
2594f56d | 2416 | return s->parameters.decompress_threads; |
3fcb38c2 LL |
2417 | } |
2418 | ||
55efc8c2 VSO |
2419 | bool migrate_dirty_bitmaps(void) |
2420 | { | |
2421 | MigrationState *s; | |
2422 | ||
2423 | s = migrate_get_current(); | |
2424 | ||
2425 | return s->enabled_capabilities[MIGRATION_CAPABILITY_DIRTY_BITMAPS]; | |
2426 | } | |
2427 | ||
18269069 YK |
2428 | bool migrate_ignore_shared(void) |
2429 | { | |
2430 | MigrationState *s; | |
2431 | ||
2432 | s = migrate_get_current(); | |
2433 | ||
2434 | return s->enabled_capabilities[MIGRATION_CAPABILITY_X_IGNORE_SHARED]; | |
2435 | } | |
2436 | ||
b9d68df6 YK |
2437 | bool migrate_validate_uuid(void) |
2438 | { | |
2439 | MigrationState *s; | |
2440 | ||
2441 | s = migrate_get_current(); | |
2442 | ||
2443 | return s->enabled_capabilities[MIGRATION_CAPABILITY_VALIDATE_UUID]; | |
2444 | } | |
2445 | ||
b05dc723 JQ |
2446 | bool migrate_use_events(void) |
2447 | { | |
2448 | MigrationState *s; | |
2449 | ||
2450 | s = migrate_get_current(); | |
2451 | ||
2452 | return s->enabled_capabilities[MIGRATION_CAPABILITY_EVENTS]; | |
2453 | } | |
2454 | ||
30126bbf JQ |
2455 | bool migrate_use_multifd(void) |
2456 | { | |
2457 | MigrationState *s; | |
2458 | ||
2459 | s = migrate_get_current(); | |
2460 | ||
cbfd6c95 | 2461 | return s->enabled_capabilities[MIGRATION_CAPABILITY_MULTIFD]; |
30126bbf JQ |
2462 | } |
2463 | ||
93fbd031 DDAG |
2464 | bool migrate_pause_before_switchover(void) |
2465 | { | |
2466 | MigrationState *s; | |
2467 | ||
2468 | s = migrate_get_current(); | |
2469 | ||
2470 | return s->enabled_capabilities[ | |
2471 | MIGRATION_CAPABILITY_PAUSE_BEFORE_SWITCHOVER]; | |
2472 | } | |
2473 | ||
4075fb1c JQ |
2474 | int migrate_multifd_channels(void) |
2475 | { | |
2476 | MigrationState *s; | |
2477 | ||
2478 | s = migrate_get_current(); | |
2479 | ||
cbfd6c95 | 2480 | return s->parameters.multifd_channels; |
4075fb1c JQ |
2481 | } |
2482 | ||
ab7cbb0b JQ |
2483 | MultiFDCompression migrate_multifd_compression(void) |
2484 | { | |
2485 | MigrationState *s; | |
2486 | ||
2487 | s = migrate_get_current(); | |
2488 | ||
2489 | return s->parameters.multifd_compression; | |
2490 | } | |
2491 | ||
9004db48 JQ |
2492 | int migrate_multifd_zlib_level(void) |
2493 | { | |
2494 | MigrationState *s; | |
2495 | ||
2496 | s = migrate_get_current(); | |
2497 | ||
2498 | return s->parameters.multifd_zlib_level; | |
2499 | } | |
2500 | ||
6a9ad154 JQ |
2501 | int migrate_multifd_zstd_level(void) |
2502 | { | |
2503 | MigrationState *s; | |
2504 | ||
2505 | s = migrate_get_current(); | |
2506 | ||
2507 | return s->parameters.multifd_zstd_level; | |
2508 | } | |
2509 | ||
17ad9b35 OW |
2510 | int migrate_use_xbzrle(void) |
2511 | { | |
2512 | MigrationState *s; | |
2513 | ||
2514 | s = migrate_get_current(); | |
2515 | ||
2516 | return s->enabled_capabilities[MIGRATION_CAPABILITY_XBZRLE]; | |
2517 | } | |
2518 | ||
8b9407a0 | 2519 | uint64_t migrate_xbzrle_cache_size(void) |
17ad9b35 OW |
2520 | { |
2521 | MigrationState *s; | |
2522 | ||
2523 | s = migrate_get_current(); | |
2524 | ||
73af8dd8 | 2525 | return s->parameters.xbzrle_cache_size; |
17ad9b35 | 2526 | } |
0d82d0e8 | 2527 | |
7e555c6c DDAG |
2528 | static int64_t migrate_max_postcopy_bandwidth(void) |
2529 | { | |
2530 | MigrationState *s; | |
2531 | ||
2532 | s = migrate_get_current(); | |
2533 | ||
2534 | return s->parameters.max_postcopy_bandwidth; | |
2535 | } | |
2536 | ||
2833c59b JQ |
2537 | bool migrate_use_block(void) |
2538 | { | |
2539 | MigrationState *s; | |
2540 | ||
2541 | s = migrate_get_current(); | |
2542 | ||
2543 | return s->enabled_capabilities[MIGRATION_CAPABILITY_BLOCK]; | |
2544 | } | |
2545 | ||
c788ada8 PX |
2546 | bool migrate_use_return_path(void) |
2547 | { | |
2548 | MigrationState *s; | |
2549 | ||
2550 | s = migrate_get_current(); | |
2551 | ||
2552 | return s->enabled_capabilities[MIGRATION_CAPABILITY_RETURN_PATH]; | |
2553 | } | |
2554 | ||
2833c59b JQ |
2555 | bool migrate_use_block_incremental(void) |
2556 | { | |
2557 | MigrationState *s; | |
2558 | ||
2559 | s = migrate_get_current(); | |
2560 | ||
2561 | return s->parameters.block_incremental; | |
2562 | } | |
2563 | ||
6e8c25b4 AG |
2564 | bool migrate_background_snapshot(void) |
2565 | { | |
2566 | MigrationState *s; | |
2567 | ||
2568 | s = migrate_get_current(); | |
2569 | ||
2570 | return s->enabled_capabilities[MIGRATION_CAPABILITY_BACKGROUND_SNAPSHOT]; | |
2571 | } | |
2572 | ||
70b20477 DDAG |
2573 | /* migration thread support */ |
2574 | /* | |
2575 | * Something bad happened to the RP stream, mark an error | |
2576 | * The caller shall print or trace something to indicate why | |
2577 | */ | |
2578 | static void mark_source_rp_bad(MigrationState *s) | |
2579 | { | |
2580 | s->rp_state.error = true; | |
2581 | } | |
2582 | ||
2583 | static struct rp_cmd_args { | |
2584 | ssize_t len; /* -1 = variable */ | |
2585 | const char *name; | |
2586 | } rp_cmd_args[] = { | |
2587 | [MIG_RP_MSG_INVALID] = { .len = -1, .name = "INVALID" }, | |
2588 | [MIG_RP_MSG_SHUT] = { .len = 4, .name = "SHUT" }, | |
2589 | [MIG_RP_MSG_PONG] = { .len = 4, .name = "PONG" }, | |
1e2d90eb DDAG |
2590 | [MIG_RP_MSG_REQ_PAGES] = { .len = 12, .name = "REQ_PAGES" }, |
2591 | [MIG_RP_MSG_REQ_PAGES_ID] = { .len = -1, .name = "REQ_PAGES_ID" }, | |
a335debb | 2592 | [MIG_RP_MSG_RECV_BITMAP] = { .len = -1, .name = "RECV_BITMAP" }, |
13955b89 | 2593 | [MIG_RP_MSG_RESUME_ACK] = { .len = 4, .name = "RESUME_ACK" }, |
70b20477 DDAG |
2594 | [MIG_RP_MSG_MAX] = { .len = -1, .name = "MAX" }, |
2595 | }; | |
2596 | ||
1e2d90eb DDAG |
2597 | /* |
2598 | * Process a request for pages received on the return path, | |
2599 | * We're allowed to send more than requested (e.g. to round to our page size) | |
2600 | * and we don't need to send pages that have already been sent. | |
2601 | */ | |
2602 | static void migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname, | |
2603 | ram_addr_t start, size_t len) | |
2604 | { | |
038adc2f | 2605 | long our_host_ps = qemu_real_host_page_size; |
6c595cde | 2606 | |
1e2d90eb | 2607 | trace_migrate_handle_rp_req_pages(rbname, start, len); |
6c595cde DDAG |
2608 | |
2609 | /* | |
2610 | * Since we currently insist on matching page sizes, just sanity check | |
2611 | * we're being asked for whole host pages. | |
2612 | */ | |
395cb450 BY |
2613 | if (start & (our_host_ps - 1) || |
2614 | (len & (our_host_ps - 1))) { | |
6c595cde DDAG |
2615 | error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT |
2616 | " len: %zd", __func__, start, len); | |
2617 | mark_source_rp_bad(ms); | |
2618 | return; | |
2619 | } | |
2620 | ||
96506894 | 2621 | if (ram_save_queue_pages(rbname, start, len)) { |
6c595cde DDAG |
2622 | mark_source_rp_bad(ms); |
2623 | } | |
1e2d90eb DDAG |
2624 | } |
2625 | ||
14b1742e PX |
2626 | /* Return true to retry, false to quit */ |
2627 | static bool postcopy_pause_return_path_thread(MigrationState *s) | |
2628 | { | |
2629 | trace_postcopy_pause_return_path(); | |
2630 | ||
2631 | qemu_sem_wait(&s->postcopy_pause_rp_sem); | |
2632 | ||
2633 | trace_postcopy_pause_return_path_continued(); | |
2634 | ||
2635 | return true; | |
2636 | } | |
2637 | ||
a335debb PX |
2638 | static int migrate_handle_rp_recv_bitmap(MigrationState *s, char *block_name) |
2639 | { | |
2640 | RAMBlock *block = qemu_ram_block_by_name(block_name); | |
2641 | ||
2642 | if (!block) { | |
2643 | error_report("%s: invalid block name '%s'", __func__, block_name); | |
2644 | return -EINVAL; | |
2645 | } | |
2646 | ||
2647 | /* Fetch the received bitmap and refresh the dirty bitmap */ | |
2648 | return ram_dirty_bitmap_reload(s, block); | |
2649 | } | |
2650 | ||
13955b89 PX |
2651 | static int migrate_handle_rp_resume_ack(MigrationState *s, uint32_t value) |
2652 | { | |
2653 | trace_source_return_path_thread_resume_ack(value); | |
2654 | ||
2655 | if (value != MIGRATION_RESUME_ACK_VALUE) { | |
2656 | error_report("%s: illegal resume_ack value %"PRIu32, | |
2657 | __func__, value); | |
2658 | return -1; | |
2659 | } | |
2660 | ||
2661 | /* Now both sides are active. */ | |
2662 | migrate_set_state(&s->state, MIGRATION_STATUS_POSTCOPY_RECOVER, | |
2663 | MIGRATION_STATUS_POSTCOPY_ACTIVE); | |
2664 | ||
94190696 PX |
2665 | /* Notify send thread that time to continue send pages */ |
2666 | qemu_sem_post(&s->rp_state.rp_sem); | |
13955b89 PX |
2667 | |
2668 | return 0; | |
2669 | } | |
2670 | ||
70b20477 DDAG |
2671 | /* |
2672 | * Handles messages sent on the return path towards the source VM | |
2673 | * | |
2674 | */ | |
2675 | static void *source_return_path_thread(void *opaque) | |
2676 | { | |
2677 | MigrationState *ms = opaque; | |
2678 | QEMUFile *rp = ms->rp_state.from_dst_file; | |
2679 | uint16_t header_len, header_type; | |
568b01ca | 2680 | uint8_t buf[512]; |
70b20477 | 2681 | uint32_t tmp32, sibling_error; |
1e2d90eb DDAG |
2682 | ram_addr_t start = 0; /* =0 to silence warning */ |
2683 | size_t len = 0, expected_len; | |
70b20477 DDAG |
2684 | int res; |
2685 | ||
2686 | trace_source_return_path_thread_entry(); | |
74637e6f | 2687 | rcu_register_thread(); |
14b1742e PX |
2688 | |
2689 | retry: | |
70b20477 DDAG |
2690 | while (!ms->rp_state.error && !qemu_file_get_error(rp) && |
2691 | migration_is_setup_or_active(ms->state)) { | |
2692 | trace_source_return_path_thread_loop_top(); | |
2693 | header_type = qemu_get_be16(rp); | |
2694 | header_len = qemu_get_be16(rp); | |
2695 | ||
7a9ddfbf PX |
2696 | if (qemu_file_get_error(rp)) { |
2697 | mark_source_rp_bad(ms); | |
2698 | goto out; | |
2699 | } | |
2700 | ||
70b20477 DDAG |
2701 | if (header_type >= MIG_RP_MSG_MAX || |
2702 | header_type == MIG_RP_MSG_INVALID) { | |
2703 | error_report("RP: Received invalid message 0x%04x length 0x%04x", | |
ed8b2828 | 2704 | header_type, header_len); |
70b20477 DDAG |
2705 | mark_source_rp_bad(ms); |
2706 | goto out; | |
2707 | } | |
2708 | ||
2709 | if ((rp_cmd_args[header_type].len != -1 && | |
2710 | header_len != rp_cmd_args[header_type].len) || | |
568b01ca | 2711 | header_len > sizeof(buf)) { |
70b20477 | 2712 | error_report("RP: Received '%s' message (0x%04x) with" |
ed8b2828 MZ |
2713 | "incorrect length %d expecting %zu", |
2714 | rp_cmd_args[header_type].name, header_type, header_len, | |
2715 | (size_t)rp_cmd_args[header_type].len); | |
70b20477 DDAG |
2716 | mark_source_rp_bad(ms); |
2717 | goto out; | |
2718 | } | |
2719 | ||
2720 | /* We know we've got a valid header by this point */ | |
2721 | res = qemu_get_buffer(rp, buf, header_len); | |
2722 | if (res != header_len) { | |
2723 | error_report("RP: Failed reading data for message 0x%04x" | |
2724 | " read %d expected %d", | |
2725 | header_type, res, header_len); | |
2726 | mark_source_rp_bad(ms); | |
2727 | goto out; | |
2728 | } | |
2729 | ||
2730 | /* OK, we have the message and the data */ | |
2731 | switch (header_type) { | |
2732 | case MIG_RP_MSG_SHUT: | |
4d885131 | 2733 | sibling_error = ldl_be_p(buf); |
70b20477 DDAG |
2734 | trace_source_return_path_thread_shut(sibling_error); |
2735 | if (sibling_error) { | |
2736 | error_report("RP: Sibling indicated error %d", sibling_error); | |
2737 | mark_source_rp_bad(ms); | |
2738 | } | |
2739 | /* | |
2740 | * We'll let the main thread deal with closing the RP | |
2741 | * we could do a shutdown(2) on it, but we're the only user | |
2742 | * anyway, so there's nothing gained. | |
2743 | */ | |
2744 | goto out; | |
2745 | ||
2746 | case MIG_RP_MSG_PONG: | |
4d885131 | 2747 | tmp32 = ldl_be_p(buf); |
70b20477 DDAG |
2748 | trace_source_return_path_thread_pong(tmp32); |
2749 | break; | |
2750 | ||
1e2d90eb | 2751 | case MIG_RP_MSG_REQ_PAGES: |
4d885131 PM |
2752 | start = ldq_be_p(buf); |
2753 | len = ldl_be_p(buf + 8); | |
1e2d90eb DDAG |
2754 | migrate_handle_rp_req_pages(ms, NULL, start, len); |
2755 | break; | |
2756 | ||
2757 | case MIG_RP_MSG_REQ_PAGES_ID: | |
2758 | expected_len = 12 + 1; /* header + termination */ | |
2759 | ||
2760 | if (header_len >= expected_len) { | |
4d885131 PM |
2761 | start = ldq_be_p(buf); |
2762 | len = ldl_be_p(buf + 8); | |
1e2d90eb DDAG |
2763 | /* Now we expect an idstr */ |
2764 | tmp32 = buf[12]; /* Length of the following idstr */ | |
2765 | buf[13 + tmp32] = '\0'; | |
2766 | expected_len += tmp32; | |
2767 | } | |
2768 | if (header_len != expected_len) { | |
2769 | error_report("RP: Req_Page_id with length %d expecting %zd", | |
ed8b2828 | 2770 | header_len, expected_len); |
1e2d90eb DDAG |
2771 | mark_source_rp_bad(ms); |
2772 | goto out; | |
2773 | } | |
2774 | migrate_handle_rp_req_pages(ms, (char *)&buf[13], start, len); | |
2775 | break; | |
2776 | ||
a335debb PX |
2777 | case MIG_RP_MSG_RECV_BITMAP: |
2778 | if (header_len < 1) { | |
2779 | error_report("%s: missing block name", __func__); | |
2780 | mark_source_rp_bad(ms); | |
2781 | goto out; | |
2782 | } | |
2783 | /* Format: len (1B) + idstr (<255B). This ends the idstr. */ | |
2784 | buf[buf[0] + 1] = '\0'; | |
2785 | if (migrate_handle_rp_recv_bitmap(ms, (char *)(buf + 1))) { | |
2786 | mark_source_rp_bad(ms); | |
2787 | goto out; | |
2788 | } | |
2789 | break; | |
2790 | ||
13955b89 PX |
2791 | case MIG_RP_MSG_RESUME_ACK: |
2792 | tmp32 = ldl_be_p(buf); | |
2793 | if (migrate_handle_rp_resume_ack(ms, tmp32)) { | |
2794 | mark_source_rp_bad(ms); | |
2795 | goto out; | |
2796 | } | |
2797 | break; | |
2798 | ||
70b20477 DDAG |
2799 | default: |
2800 | break; | |
2801 | } | |
2802 | } | |
14b1742e PX |
2803 | |
2804 | out: | |
2805 | res = qemu_file_get_error(rp); | |
2806 | if (res) { | |
fb14a42a | 2807 | if (res == -EIO && migration_in_postcopy()) { |
14b1742e PX |
2808 | /* |
2809 | * Maybe there is something we can do: it looks like a | |
2810 | * network down issue, and we pause for a recovery. | |
2811 | */ | |
2812 | if (postcopy_pause_return_path_thread(ms)) { | |
2813 | /* Reload rp, reset the rest */ | |
0284a2a8 MAL |
2814 | if (rp != ms->rp_state.from_dst_file) { |
2815 | qemu_fclose(rp); | |
2816 | rp = ms->rp_state.from_dst_file; | |
2817 | } | |
14b1742e PX |
2818 | ms->rp_state.error = false; |
2819 | goto retry; | |
2820 | } | |
2821 | } | |
2822 | ||
70b20477 DDAG |
2823 | trace_source_return_path_thread_bad_end(); |
2824 | mark_source_rp_bad(ms); | |
2825 | } | |
2826 | ||
2827 | trace_source_return_path_thread_end(); | |
70b20477 DDAG |
2828 | ms->rp_state.from_dst_file = NULL; |
2829 | qemu_fclose(rp); | |
74637e6f | 2830 | rcu_unregister_thread(); |
70b20477 DDAG |
2831 | return NULL; |
2832 | } | |
2833 | ||
d3e35b8f PX |
2834 | static int open_return_path_on_source(MigrationState *ms, |
2835 | bool create_thread) | |
70b20477 DDAG |
2836 | { |
2837 | ||
89a02a9f | 2838 | ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->to_dst_file); |
70b20477 DDAG |
2839 | if (!ms->rp_state.from_dst_file) { |
2840 | return -1; | |
2841 | } | |
2842 | ||
2843 | trace_open_return_path_on_source(); | |
d3e35b8f PX |
2844 | |
2845 | if (!create_thread) { | |
2846 | /* We're done */ | |
2847 | return 0; | |
2848 | } | |
2849 | ||
70b20477 DDAG |
2850 | qemu_thread_create(&ms->rp_state.rp_thread, "return path", |
2851 | source_return_path_thread, ms, QEMU_THREAD_JOINABLE); | |
2852 | ||
2853 | trace_open_return_path_on_source_continue(); | |
2854 | ||
2855 | return 0; | |
2856 | } | |
2857 | ||
70b20477 DDAG |
2858 | /* Returns 0 if the RP was ok, otherwise there was an error on the RP */ |
2859 | static int await_return_path_close_on_source(MigrationState *ms) | |
2860 | { | |
2861 | /* | |
2862 | * If this is a normal exit then the destination will send a SHUT and the | |
2863 | * rp_thread will exit, however if there's an error we need to cause | |
2864 | * it to exit. | |
2865 | */ | |
89a02a9f | 2866 | if (qemu_file_get_error(ms->to_dst_file) && ms->rp_state.from_dst_file) { |
70b20477 DDAG |
2867 | /* |
2868 | * shutdown(2), if we have it, will cause it to unblock if it's stuck | |
2869 | * waiting for the destination. | |
2870 | */ | |
2871 | qemu_file_shutdown(ms->rp_state.from_dst_file); | |
2872 | mark_source_rp_bad(ms); | |
2873 | } | |
2874 | trace_await_return_path_close_on_source_joining(); | |
2875 | qemu_thread_join(&ms->rp_state.rp_thread); | |
2876 | trace_await_return_path_close_on_source_close(); | |
2877 | return ms->rp_state.error; | |
2878 | } | |
2879 | ||
1d34e4bf DDAG |
2880 | /* |
2881 | * Switch from normal iteration to postcopy | |
2882 | * Returns non-0 on error | |
2883 | */ | |
7287cbd4 | 2884 | static int postcopy_start(MigrationState *ms) |
1d34e4bf DDAG |
2885 | { |
2886 | int ret; | |
61b67d47 DB |
2887 | QIOChannelBuffer *bioc; |
2888 | QEMUFile *fb; | |
1d34e4bf | 2889 | int64_t time_at_stop = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
7e555c6c | 2890 | int64_t bandwidth = migrate_max_postcopy_bandwidth(); |
ef8d6488 | 2891 | bool restart_block = false; |
0331c8ca DDAG |
2892 | int cur_state = MIGRATION_STATUS_ACTIVE; |
2893 | if (!migrate_pause_before_switchover()) { | |
2894 | migrate_set_state(&ms->state, MIGRATION_STATUS_ACTIVE, | |
2895 | MIGRATION_STATUS_POSTCOPY_ACTIVE); | |
2896 | } | |
1d34e4bf DDAG |
2897 | |
2898 | trace_postcopy_start(); | |
2899 | qemu_mutex_lock_iothread(); | |
2900 | trace_postcopy_start_set_run(); | |
2901 | ||
fb064112 | 2902 | qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, NULL); |
1d34e4bf DDAG |
2903 | global_state_store(); |
2904 | ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE); | |
76b1c7fe KW |
2905 | if (ret < 0) { |
2906 | goto fail; | |
2907 | } | |
1d34e4bf | 2908 | |
0331c8ca DDAG |
2909 | ret = migration_maybe_pause(ms, &cur_state, |
2910 | MIGRATION_STATUS_POSTCOPY_ACTIVE); | |
2911 | if (ret < 0) { | |
2912 | goto fail; | |
2913 | } | |
2914 | ||
76b1c7fe | 2915 | ret = bdrv_inactivate_all(); |
1d34e4bf DDAG |
2916 | if (ret < 0) { |
2917 | goto fail; | |
2918 | } | |
ef8d6488 | 2919 | restart_block = true; |
1d34e4bf | 2920 | |
1c0d249d DDAG |
2921 | /* |
2922 | * Cause any non-postcopiable, but iterative devices to | |
2923 | * send out their final data. | |
2924 | */ | |
a1fbe750 | 2925 | qemu_savevm_state_complete_precopy(ms->to_dst_file, true, false); |
1c0d249d | 2926 | |
1d34e4bf DDAG |
2927 | /* |
2928 | * in Finish migrate and with the io-lock held everything should | |
2929 | * be quiet, but we've potentially still got dirty pages and we | |
2930 | * need to tell the destination to throw any pages it's already received | |
2931 | * that are dirty | |
2932 | */ | |
58110f0a VSO |
2933 | if (migrate_postcopy_ram()) { |
2934 | if (ram_postcopy_send_discard_bitmap(ms)) { | |
2935 | error_report("postcopy send discard bitmap failed"); | |
2936 | goto fail; | |
2937 | } | |
1d34e4bf DDAG |
2938 | } |
2939 | ||
2940 | /* | |
2941 | * send rest of state - note things that are doing postcopy | |
2942 | * will notice we're in POSTCOPY_ACTIVE and not actually | |
2943 | * wrap their state up here | |
2944 | */ | |
7e555c6c DDAG |
2945 | /* 0 max-postcopy-bandwidth means unlimited */ |
2946 | if (!bandwidth) { | |
2947 | qemu_file_set_rate_limit(ms->to_dst_file, INT64_MAX); | |
2948 | } else { | |
2949 | qemu_file_set_rate_limit(ms->to_dst_file, bandwidth / XFER_LIMIT_RATIO); | |
2950 | } | |
58110f0a VSO |
2951 | if (migrate_postcopy_ram()) { |
2952 | /* Ping just for debugging, helps line traces up */ | |
2953 | qemu_savevm_send_ping(ms->to_dst_file, 2); | |
2954 | } | |
1d34e4bf DDAG |
2955 | |
2956 | /* | |
2957 | * While loading the device state we may trigger page transfer | |
2958 | * requests and the fd must be free to process those, and thus | |
2959 | * the destination must read the whole device state off the fd before | |
2960 | * it starts processing it. Unfortunately the ad-hoc migration format | |
2961 | * doesn't allow the destination to know the size to read without fully | |
2962 | * parsing it through each devices load-state code (especially the open | |
2963 | * coded devices that use get/put). | |
2964 | * So we wrap the device state up in a package with a length at the start; | |
2965 | * to do this we use a qemu_buf to hold the whole of the device state. | |
2966 | */ | |
61b67d47 | 2967 | bioc = qio_channel_buffer_new(4096); |
6f01f136 | 2968 | qio_channel_set_name(QIO_CHANNEL(bioc), "migration-postcopy-buffer"); |
61b67d47 DB |
2969 | fb = qemu_fopen_channel_output(QIO_CHANNEL(bioc)); |
2970 | object_unref(OBJECT(bioc)); | |
1d34e4bf | 2971 | |
c76201ab DDAG |
2972 | /* |
2973 | * Make sure the receiver can get incoming pages before we send the rest | |
2974 | * of the state | |
2975 | */ | |
2976 | qemu_savevm_send_postcopy_listen(fb); | |
2977 | ||
a1fbe750 | 2978 | qemu_savevm_state_complete_precopy(fb, false, false); |
58110f0a VSO |
2979 | if (migrate_postcopy_ram()) { |
2980 | qemu_savevm_send_ping(fb, 3); | |
2981 | } | |
1d34e4bf DDAG |
2982 | |
2983 | qemu_savevm_send_postcopy_run(fb); | |
2984 | ||
2985 | /* <><> end of stuff going into the package */ | |
1d34e4bf | 2986 | |
ef8d6488 DDAG |
2987 | /* Last point of recovery; as soon as we send the package the destination |
2988 | * can open devices and potentially start running. | |
2989 | * Lets just check again we've not got any errors. | |
2990 | */ | |
2991 | ret = qemu_file_get_error(ms->to_dst_file); | |
2992 | if (ret) { | |
2993 | error_report("postcopy_start: Migration stream errored (pre package)"); | |
2994 | goto fail_closefb; | |
2995 | } | |
2996 | ||
2997 | restart_block = false; | |
2998 | ||
1d34e4bf | 2999 | /* Now send that blob */ |
61b67d47 | 3000 | if (qemu_savevm_send_packaged(ms->to_dst_file, bioc->data, bioc->usage)) { |
1d34e4bf DDAG |
3001 | goto fail_closefb; |
3002 | } | |
3003 | qemu_fclose(fb); | |
b82fc321 DDAG |
3004 | |
3005 | /* Send a notify to give a chance for anything that needs to happen | |
3006 | * at the transition to postcopy and after the device state; in particular | |
3007 | * spice needs to trigger a transition now | |
3008 | */ | |
3009 | ms->postcopy_after_devices = true; | |
3010 | notifier_list_notify(&migration_state_notifiers, ms); | |
3011 | ||
1d34e4bf DDAG |
3012 | ms->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - time_at_stop; |
3013 | ||
3014 | qemu_mutex_unlock_iothread(); | |
3015 | ||
58110f0a VSO |
3016 | if (migrate_postcopy_ram()) { |
3017 | /* | |
3018 | * Although this ping is just for debug, it could potentially be | |
3019 | * used for getting a better measurement of downtime at the source. | |
3020 | */ | |
3021 | qemu_savevm_send_ping(ms->to_dst_file, 4); | |
3022 | } | |
1d34e4bf | 3023 | |
ced1c616 PB |
3024 | if (migrate_release_ram()) { |
3025 | ram_postcopy_migrated_memory_release(ms); | |
3026 | } | |
3027 | ||
89a02a9f | 3028 | ret = qemu_file_get_error(ms->to_dst_file); |
1d34e4bf DDAG |
3029 | if (ret) { |
3030 | error_report("postcopy_start: Migration stream errored"); | |
48781e5b | 3031 | migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE, |
1d34e4bf DDAG |
3032 | MIGRATION_STATUS_FAILED); |
3033 | } | |
3034 | ||
3035 | return ret; | |
3036 | ||
3037 | fail_closefb: | |
3038 | qemu_fclose(fb); | |
3039 | fail: | |
48781e5b | 3040 | migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE, |
1d34e4bf | 3041 | MIGRATION_STATUS_FAILED); |
ef8d6488 DDAG |
3042 | if (restart_block) { |
3043 | /* A failure happened early enough that we know the destination hasn't | |
3044 | * accessed block devices, so we're safe to recover. | |
3045 | */ | |
3046 | Error *local_err = NULL; | |
3047 | ||
3048 | bdrv_invalidate_cache_all(&local_err); | |
3049 | if (local_err) { | |
3050 | error_report_err(local_err); | |
3051 | } | |
3052 | } | |
1d34e4bf DDAG |
3053 | qemu_mutex_unlock_iothread(); |
3054 | return -1; | |
3055 | } | |
3056 | ||
e91d8951 DDAG |
3057 | /** |
3058 | * migration_maybe_pause: Pause if required to by | |
3059 | * migrate_pause_before_switchover called with the iothread locked | |
3060 | * Returns: 0 on success | |
3061 | */ | |
0331c8ca DDAG |
3062 | static int migration_maybe_pause(MigrationState *s, |
3063 | int *current_active_state, | |
3064 | int new_state) | |
e91d8951 DDAG |
3065 | { |
3066 | if (!migrate_pause_before_switchover()) { | |
3067 | return 0; | |
3068 | } | |
3069 | ||
3070 | /* Since leaving this state is not atomic with posting the semaphore | |
3071 | * it's possible that someone could have issued multiple migrate_continue | |
3072 | * and the semaphore is incorrectly positive at this point; | |
3073 | * the docs say it's undefined to reinit a semaphore that's already | |
3074 | * init'd, so use timedwait to eat up any existing posts. | |
3075 | */ | |
3076 | while (qemu_sem_timedwait(&s->pause_sem, 1) == 0) { | |
3077 | /* This block intentionally left blank */ | |
3078 | } | |
3079 | ||
8958338b ZF |
3080 | /* |
3081 | * If the migration is cancelled when it is in the completion phase, | |
3082 | * the migration state is set to MIGRATION_STATUS_CANCELLING. | |
3083 | * So we don't need to wait a semaphore, otherwise we would always | |
3084 | * wait for the 'pause_sem' semaphore. | |
3085 | */ | |
3086 | if (s->state != MIGRATION_STATUS_CANCELLING) { | |
3087 | qemu_mutex_unlock_iothread(); | |
3088 | migrate_set_state(&s->state, *current_active_state, | |
3089 | MIGRATION_STATUS_PRE_SWITCHOVER); | |
3090 | qemu_sem_wait(&s->pause_sem); | |
3091 | migrate_set_state(&s->state, MIGRATION_STATUS_PRE_SWITCHOVER, | |
3092 | new_state); | |
3093 | *current_active_state = new_state; | |
3094 | qemu_mutex_lock_iothread(); | |
3095 | } | |
e91d8951 | 3096 | |
0331c8ca | 3097 | return s->state == new_state ? 0 : -EINVAL; |
e91d8951 DDAG |
3098 | } |
3099 | ||
09f6c85e DDAG |
3100 | /** |
3101 | * migration_completion: Used by migration_thread when there's not much left. | |
3102 | * The caller 'breaks' the loop when this returns. | |
3103 | * | |
3104 | * @s: Current migration state | |
09f6c85e | 3105 | */ |
2ad87305 | 3106 | static void migration_completion(MigrationState *s) |
09f6c85e DDAG |
3107 | { |
3108 | int ret; | |
2ad87305 | 3109 | int current_active_state = s->state; |
09f6c85e | 3110 | |
b10ac0c4 DDAG |
3111 | if (s->state == MIGRATION_STATUS_ACTIVE) { |
3112 | qemu_mutex_lock_iothread(); | |
64909f97 | 3113 | s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
fb064112 | 3114 | qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, NULL); |
7287cbd4 | 3115 | s->vm_was_running = runstate_is_running(); |
b10ac0c4 DDAG |
3116 | ret = global_state_store(); |
3117 | ||
3118 | if (!ret) { | |
a1fbe750 | 3119 | bool inactivate = !migrate_colo_enabled(); |
b10ac0c4 | 3120 | ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE); |
e91d8951 | 3121 | if (ret >= 0) { |
0331c8ca DDAG |
3122 | ret = migration_maybe_pause(s, ¤t_active_state, |
3123 | MIGRATION_STATUS_DEVICE); | |
e91d8951 | 3124 | } |
f07fa4cb KW |
3125 | if (ret >= 0) { |
3126 | qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX); | |
a1fbe750 FZ |
3127 | ret = qemu_savevm_state_complete_precopy(s->to_dst_file, false, |
3128 | inactivate); | |
f07fa4cb | 3129 | } |
a1fbe750 FZ |
3130 | if (inactivate && ret >= 0) { |
3131 | s->block_inactive = true; | |
b10ac0c4 DDAG |
3132 | } |
3133 | } | |
3134 | qemu_mutex_unlock_iothread(); | |
09f6c85e | 3135 | |
b10ac0c4 DDAG |
3136 | if (ret < 0) { |
3137 | goto fail; | |
09f6c85e | 3138 | } |
b10ac0c4 DDAG |
3139 | } else if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) { |
3140 | trace_migration_completion_postcopy_end(); | |
3141 | ||
89a02a9f | 3142 | qemu_savevm_state_complete_postcopy(s->to_dst_file); |
b10ac0c4 | 3143 | trace_migration_completion_postcopy_end_after_complete(); |
6ba11211 LM |
3144 | } else if (s->state == MIGRATION_STATUS_CANCELLING) { |
3145 | goto fail; | |
09f6c85e | 3146 | } |
09f6c85e | 3147 | |
b10ac0c4 DDAG |
3148 | /* |
3149 | * If rp was opened we must clean up the thread before | |
3150 | * cleaning everything else up (since if there are no failures | |
3151 | * it will wait for the destination to send it's status in | |
3152 | * a SHUT command). | |
b10ac0c4 | 3153 | */ |
0425dc97 | 3154 | if (s->rp_state.from_dst_file) { |
b10ac0c4 | 3155 | int rp_error; |
0425dc97 | 3156 | trace_migration_return_path_end_before(); |
b10ac0c4 | 3157 | rp_error = await_return_path_close_on_source(s); |
0425dc97 | 3158 | trace_migration_return_path_end_after(rp_error); |
b10ac0c4 | 3159 | if (rp_error) { |
fe904ea8 | 3160 | goto fail_invalidate; |
b10ac0c4 | 3161 | } |
09f6c85e DDAG |
3162 | } |
3163 | ||
89a02a9f | 3164 | if (qemu_file_get_error(s->to_dst_file)) { |
09f6c85e | 3165 | trace_migration_completion_file_err(); |
fe904ea8 | 3166 | goto fail_invalidate; |
09f6c85e DDAG |
3167 | } |
3168 | ||
0b827d5e HZ |
3169 | if (!migrate_colo_enabled()) { |
3170 | migrate_set_state(&s->state, current_active_state, | |
3171 | MIGRATION_STATUS_COMPLETED); | |
3172 | } | |
3173 | ||
09f6c85e DDAG |
3174 | return; |
3175 | ||
fe904ea8 GK |
3176 | fail_invalidate: |
3177 | /* If not doing postcopy, vm_start() will be called: let's regain | |
3178 | * control on images. | |
3179 | */ | |
6039dd5b DDAG |
3180 | if (s->state == MIGRATION_STATUS_ACTIVE || |
3181 | s->state == MIGRATION_STATUS_DEVICE) { | |
fe904ea8 GK |
3182 | Error *local_err = NULL; |
3183 | ||
1d2acc31 | 3184 | qemu_mutex_lock_iothread(); |
fe904ea8 GK |
3185 | bdrv_invalidate_cache_all(&local_err); |
3186 | if (local_err) { | |
3187 | error_report_err(local_err); | |
1d2acc31 HZ |
3188 | } else { |
3189 | s->block_inactive = false; | |
fe904ea8 | 3190 | } |
1d2acc31 | 3191 | qemu_mutex_unlock_iothread(); |
fe904ea8 GK |
3192 | } |
3193 | ||
09f6c85e | 3194 | fail: |
48781e5b HZ |
3195 | migrate_set_state(&s->state, current_active_state, |
3196 | MIGRATION_STATUS_FAILED); | |
09f6c85e DDAG |
3197 | } |
3198 | ||
8518278a AG |
3199 | /** |
3200 | * bg_migration_completion: Used by bg_migration_thread when after all the | |
3201 | * RAM has been saved. The caller 'breaks' the loop when this returns. | |
3202 | * | |
3203 | * @s: Current migration state | |
3204 | */ | |
3205 | static void bg_migration_completion(MigrationState *s) | |
3206 | { | |
3207 | int current_active_state = s->state; | |
3208 | ||
3209 | /* | |
3210 | * Stop tracking RAM writes - un-protect memory, un-register UFFD | |
3211 | * memory ranges, flush kernel wait queues and wake up threads | |
3212 | * waiting for write fault to be resolved. | |
3213 | */ | |
3214 | ram_write_tracking_stop(); | |
3215 | ||
3216 | if (s->state == MIGRATION_STATUS_ACTIVE) { | |
3217 | /* | |
3218 | * By this moment we have RAM content saved into the migration stream. | |
3219 | * The next step is to flush the non-RAM content (device state) | |
3220 | * right after the ram content. The device state has been stored into | |
3221 | * the temporary buffer before RAM saving started. | |
3222 | */ | |
3223 | qemu_put_buffer(s->to_dst_file, s->bioc->data, s->bioc->usage); | |
3224 | qemu_fflush(s->to_dst_file); | |
3225 | } else if (s->state == MIGRATION_STATUS_CANCELLING) { | |
3226 | goto fail; | |
3227 | } | |
3228 | ||
3229 | if (qemu_file_get_error(s->to_dst_file)) { | |
3230 | trace_migration_completion_file_err(); | |
3231 | goto fail; | |
3232 | } | |
3233 | ||
3234 | migrate_set_state(&s->state, current_active_state, | |
3235 | MIGRATION_STATUS_COMPLETED); | |
3236 | return; | |
3237 | ||
3238 | fail: | |
3239 | migrate_set_state(&s->state, current_active_state, | |
3240 | MIGRATION_STATUS_FAILED); | |
3241 | } | |
3242 | ||
35a6ed4f HZ |
3243 | bool migrate_colo_enabled(void) |
3244 | { | |
3245 | MigrationState *s = migrate_get_current(); | |
3246 | return s->enabled_capabilities[MIGRATION_CAPABILITY_X_COLO]; | |
3247 | } | |
3248 | ||
b23c2ade PX |
3249 | typedef enum MigThrError { |
3250 | /* No error detected */ | |
3251 | MIG_THR_ERR_NONE = 0, | |
3252 | /* Detected error, but resumed successfully */ | |
3253 | MIG_THR_ERR_RECOVERED = 1, | |
3254 | /* Detected fatal error, need to exit */ | |
3255 | MIG_THR_ERR_FATAL = 2, | |
3256 | } MigThrError; | |
3257 | ||
94190696 PX |
3258 | static int postcopy_resume_handshake(MigrationState *s) |
3259 | { | |
3260 | qemu_savevm_send_postcopy_resume(s->to_dst_file); | |
3261 | ||
3262 | while (s->state == MIGRATION_STATUS_POSTCOPY_RECOVER) { | |
3263 | qemu_sem_wait(&s->rp_state.rp_sem); | |
3264 | } | |
3265 | ||
3266 | if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) { | |
3267 | return 0; | |
3268 | } | |
3269 | ||
3270 | return -1; | |
3271 | } | |
3272 | ||
135b87b4 PX |
3273 | /* Return zero if success, or <0 for error */ |
3274 | static int postcopy_do_resume(MigrationState *s) | |
3275 | { | |
d1b8eadb PX |
3276 | int ret; |
3277 | ||
3278 | /* | |
3279 | * Call all the resume_prepare() hooks, so that modules can be | |
3280 | * ready for the migration resume. | |
3281 | */ | |
3282 | ret = qemu_savevm_state_resume_prepare(s); | |
3283 | if (ret) { | |
3284 | error_report("%s: resume_prepare() failure detected: %d", | |
3285 | __func__, ret); | |
3286 | return ret; | |
3287 | } | |
3288 | ||
3289 | /* | |
94190696 PX |
3290 | * Last handshake with destination on the resume (destination will |
3291 | * switch to postcopy-active afterwards) | |
d1b8eadb | 3292 | */ |
94190696 PX |
3293 | ret = postcopy_resume_handshake(s); |
3294 | if (ret) { | |
3295 | error_report("%s: handshake failed: %d", __func__, ret); | |
3296 | return ret; | |
3297 | } | |
d1b8eadb | 3298 | |
135b87b4 PX |
3299 | return 0; |
3300 | } | |
3301 | ||
b23c2ade PX |
3302 | /* |
3303 | * We don't return until we are in a safe state to continue current | |
3304 | * postcopy migration. Returns MIG_THR_ERR_RECOVERED if recovered, or | |
3305 | * MIG_THR_ERR_FATAL if unrecovery failure happened. | |
3306 | */ | |
3307 | static MigThrError postcopy_pause(MigrationState *s) | |
3308 | { | |
3309 | assert(s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE); | |
b23c2ade | 3310 | |
135b87b4 | 3311 | while (true) { |
62df066f PX |
3312 | QEMUFile *file; |
3313 | ||
135b87b4 PX |
3314 | /* Current channel is possibly broken. Release it. */ |
3315 | assert(s->to_dst_file); | |
62df066f PX |
3316 | qemu_mutex_lock(&s->qemu_file_lock); |
3317 | file = s->to_dst_file; | |
135b87b4 | 3318 | s->to_dst_file = NULL; |
62df066f PX |
3319 | qemu_mutex_unlock(&s->qemu_file_lock); |
3320 | ||
3321 | qemu_file_shutdown(file); | |
3322 | qemu_fclose(file); | |
b23c2ade | 3323 | |
d246ea50 PX |
3324 | migrate_set_state(&s->state, s->state, |
3325 | MIGRATION_STATUS_POSTCOPY_PAUSED); | |
3326 | ||
135b87b4 PX |
3327 | error_report("Detected IO failure for postcopy. " |
3328 | "Migration paused."); | |
b23c2ade | 3329 | |
135b87b4 PX |
3330 | /* |
3331 | * We wait until things fixed up. Then someone will setup the | |
3332 | * status back for us. | |
3333 | */ | |
3334 | while (s->state == MIGRATION_STATUS_POSTCOPY_PAUSED) { | |
3335 | qemu_sem_wait(&s->postcopy_pause_sem); | |
3336 | } | |
3337 | ||
3338 | if (s->state == MIGRATION_STATUS_POSTCOPY_RECOVER) { | |
3339 | /* Woken up by a recover procedure. Give it a shot */ | |
b23c2ade | 3340 | |
135b87b4 PX |
3341 | /* |
3342 | * Firstly, let's wake up the return path now, with a new | |
3343 | * return path channel. | |
3344 | */ | |
3345 | qemu_sem_post(&s->postcopy_pause_rp_sem); | |
3346 | ||
3347 | /* Do the resume logic */ | |
3348 | if (postcopy_do_resume(s) == 0) { | |
3349 | /* Let's continue! */ | |
3350 | trace_postcopy_pause_continued(); | |
3351 | return MIG_THR_ERR_RECOVERED; | |
3352 | } else { | |
3353 | /* | |
3354 | * Something wrong happened during the recovery, let's | |
3355 | * pause again. Pause is always better than throwing | |
3356 | * data away. | |
3357 | */ | |
3358 | continue; | |
3359 | } | |
3360 | } else { | |
3361 | /* This is not right... Time to quit. */ | |
3362 | return MIG_THR_ERR_FATAL; | |
3363 | } | |
3364 | } | |
b23c2ade PX |
3365 | } |
3366 | ||
3367 | static MigThrError migration_detect_error(MigrationState *s) | |
3368 | { | |
3369 | int ret; | |
c3c5eae6 | 3370 | int state = s->state; |
3d661c8a | 3371 | Error *local_error = NULL; |
c3c5eae6 DDAG |
3372 | |
3373 | if (state == MIGRATION_STATUS_CANCELLING || | |
3374 | state == MIGRATION_STATUS_CANCELLED) { | |
3375 | /* End the migration, but don't set the state to failed */ | |
3376 | return MIG_THR_ERR_FATAL; | |
3377 | } | |
b23c2ade PX |
3378 | |
3379 | /* Try to detect any file errors */ | |
3d661c8a | 3380 | ret = qemu_file_get_error_obj(s->to_dst_file, &local_error); |
b23c2ade PX |
3381 | if (!ret) { |
3382 | /* Everything is fine */ | |
3d661c8a | 3383 | assert(!local_error); |
b23c2ade PX |
3384 | return MIG_THR_ERR_NONE; |
3385 | } | |
3386 | ||
3d661c8a YK |
3387 | if (local_error) { |
3388 | migrate_set_error(s, local_error); | |
3389 | error_free(local_error); | |
3390 | } | |
3391 | ||
c3c5eae6 | 3392 | if (state == MIGRATION_STATUS_POSTCOPY_ACTIVE && ret == -EIO) { |
b23c2ade PX |
3393 | /* |
3394 | * For postcopy, we allow the network to be down for a | |
3395 | * while. After that, it can be continued by a | |
3396 | * recovery phase. | |
3397 | */ | |
3398 | return postcopy_pause(s); | |
3399 | } else { | |
3400 | /* | |
3401 | * For precopy (or postcopy with error outside IO), we fail | |
3402 | * with no time. | |
3403 | */ | |
c3c5eae6 | 3404 | migrate_set_state(&s->state, state, MIGRATION_STATUS_FAILED); |
b23c2ade PX |
3405 | trace_migration_thread_file_err(); |
3406 | ||
3407 | /* Time to stop the migration, now. */ | |
3408 | return MIG_THR_ERR_FATAL; | |
3409 | } | |
3410 | } | |
3411 | ||
268dcd46 | 3412 | /* How many bytes have we transferred since the beginning of the migration */ |
0c8f0efd JQ |
3413 | static uint64_t migration_total_bytes(MigrationState *s) |
3414 | { | |
b9ee2f7d | 3415 | return qemu_ftell(s->to_dst_file) + ram_counters.multifd_bytes; |
0c8f0efd JQ |
3416 | } |
3417 | ||
cf011f08 PX |
3418 | static void migration_calculate_complete(MigrationState *s) |
3419 | { | |
0c8f0efd | 3420 | uint64_t bytes = migration_total_bytes(s); |
cf011f08 | 3421 | int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); |
6cde6fbe | 3422 | int64_t transfer_time; |
cf011f08 PX |
3423 | |
3424 | s->total_time = end_time - s->start_time; | |
3425 | if (!s->downtime) { | |
3426 | /* | |
3427 | * It's still not set, so we are precopy migration. For | |
3428 | * postcopy, downtime is calculated during postcopy_start(). | |
3429 | */ | |
3430 | s->downtime = end_time - s->downtime_start; | |
3431 | } | |
3432 | ||
6cde6fbe JQ |
3433 | transfer_time = s->total_time - s->setup_time; |
3434 | if (transfer_time) { | |
3435 | s->mbps = ((double) bytes * 8.0) / transfer_time / 1000; | |
cf011f08 PX |
3436 | } |
3437 | } | |
3438 | ||
87f3bd87 IR |
3439 | static void update_iteration_initial_status(MigrationState *s) |
3440 | { | |
3441 | /* | |
3442 | * Update these three fields at the same time to avoid mismatch info lead | |
3443 | * wrong speed calculation. | |
3444 | */ | |
3445 | s->iteration_start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); | |
3446 | s->iteration_initial_bytes = migration_total_bytes(s); | |
3447 | s->iteration_initial_pages = ram_get_total_transferred_pages(); | |
3448 | } | |
3449 | ||
b15df1ae PX |
3450 | static void migration_update_counters(MigrationState *s, |
3451 | int64_t current_time) | |
3452 | { | |
aecbfe9c | 3453 | uint64_t transferred, transferred_pages, time_spent; |
0c8f0efd | 3454 | uint64_t current_bytes; /* bytes transferred since the beginning */ |
b15df1ae PX |
3455 | double bandwidth; |
3456 | ||
3457 | if (current_time < s->iteration_start_time + BUFFER_DELAY) { | |
3458 | return; | |
3459 | } | |
3460 | ||
0c8f0efd JQ |
3461 | current_bytes = migration_total_bytes(s); |
3462 | transferred = current_bytes - s->iteration_initial_bytes; | |
b15df1ae PX |
3463 | time_spent = current_time - s->iteration_start_time; |
3464 | bandwidth = (double)transferred / time_spent; | |
0781c1ed | 3465 | s->threshold_size = bandwidth * s->parameters.downtime_limit; |
b15df1ae PX |
3466 | |
3467 | s->mbps = (((double) transferred * 8.0) / | |
3468 | ((double) time_spent / 1000.0)) / 1000.0 / 1000.0; | |
3469 | ||
aecbfe9c XG |
3470 | transferred_pages = ram_get_total_transferred_pages() - |
3471 | s->iteration_initial_pages; | |
3472 | s->pages_per_second = (double) transferred_pages / | |
3473 | (((double) time_spent / 1000.0)); | |
3474 | ||
b15df1ae PX |
3475 | /* |
3476 | * if we haven't sent anything, we don't want to | |
3477 | * recalculate. 10000 is a small enough number for our purposes | |
3478 | */ | |
3479 | if (ram_counters.dirty_pages_rate && transferred > 10000) { | |
650af890 | 3480 | s->expected_downtime = ram_counters.remaining / bandwidth; |
b15df1ae PX |
3481 | } |
3482 | ||
3483 | qemu_file_reset_rate_limit(s->to_dst_file); | |
3484 | ||
87f3bd87 | 3485 | update_iteration_initial_status(s); |
b15df1ae PX |
3486 | |
3487 | trace_migrate_transferred(transferred, time_spent, | |
0781c1ed | 3488 | bandwidth, s->threshold_size); |
b15df1ae PX |
3489 | } |
3490 | ||
2ad87305 PX |
3491 | /* Migration thread iteration status */ |
3492 | typedef enum { | |
3493 | MIG_ITERATE_RESUME, /* Resume current iteration */ | |
3494 | MIG_ITERATE_SKIP, /* Skip current iteration */ | |
3495 | MIG_ITERATE_BREAK, /* Break the loop */ | |
3496 | } MigIterateState; | |
3497 | ||
3498 | /* | |
3499 | * Return true if continue to the next iteration directly, false | |
3500 | * otherwise. | |
3501 | */ | |
3502 | static MigIterateState migration_iteration_run(MigrationState *s) | |
3503 | { | |
47995026 | 3504 | uint64_t pending_size, pend_pre, pend_compat, pend_post; |
2ad87305 PX |
3505 | bool in_postcopy = s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE; |
3506 | ||
47995026 VSO |
3507 | qemu_savevm_state_pending(s->to_dst_file, s->threshold_size, &pend_pre, |
3508 | &pend_compat, &pend_post); | |
3509 | pending_size = pend_pre + pend_compat + pend_post; | |
2ad87305 PX |
3510 | |
3511 | trace_migrate_pending(pending_size, s->threshold_size, | |
47995026 | 3512 | pend_pre, pend_compat, pend_post); |
2ad87305 PX |
3513 | |
3514 | if (pending_size && pending_size >= s->threshold_size) { | |
3515 | /* Still a significant amount to transfer */ | |
52aec709 | 3516 | if (!in_postcopy && pend_pre <= s->threshold_size && |
d73415a3 | 3517 | qatomic_read(&s->start_postcopy)) { |
2ad87305 PX |
3518 | if (postcopy_start(s)) { |
3519 | error_report("%s: postcopy failed to start", __func__); | |
3520 | } | |
3521 | return MIG_ITERATE_SKIP; | |
3522 | } | |
3523 | /* Just another iteration step */ | |
17d9351b | 3524 | qemu_savevm_state_iterate(s->to_dst_file, in_postcopy); |
2ad87305 PX |
3525 | } else { |
3526 | trace_migration_thread_low_pending(pending_size); | |
3527 | migration_completion(s); | |
3528 | return MIG_ITERATE_BREAK; | |
3529 | } | |
3530 | ||
3531 | return MIG_ITERATE_RESUME; | |
3532 | } | |
3533 | ||
199aa6d4 PX |
3534 | static void migration_iteration_finish(MigrationState *s) |
3535 | { | |
3536 | /* If we enabled cpu throttling for auto-converge, turn it off. */ | |
3537 | cpu_throttle_stop(); | |
3538 | ||
3539 | qemu_mutex_lock_iothread(); | |
3540 | switch (s->state) { | |
3541 | case MIGRATION_STATUS_COMPLETED: | |
3542 | migration_calculate_complete(s); | |
3543 | runstate_set(RUN_STATE_POSTMIGRATE); | |
3544 | break; | |
3545 | ||
3546 | case MIGRATION_STATUS_ACTIVE: | |
3547 | /* | |
3548 | * We should really assert here, but since it's during | |
3549 | * migration, let's try to reduce the usage of assertions. | |
3550 | */ | |
3551 | if (!migrate_colo_enabled()) { | |
3552 | error_report("%s: critical error: calling COLO code without " | |
3553 | "COLO enabled", __func__); | |
3554 | } | |
3555 | migrate_start_colo_process(s); | |
3556 | /* | |
3557 | * Fixme: we will run VM in COLO no matter its old running state. | |
3558 | * After exited COLO, we will keep running. | |
3559 | */ | |
3560 | s->vm_was_running = true; | |
3561 | /* Fallthrough */ | |
3562 | case MIGRATION_STATUS_FAILED: | |
3563 | case MIGRATION_STATUS_CANCELLED: | |
57225e5f | 3564 | case MIGRATION_STATUS_CANCELLING: |
199aa6d4 PX |
3565 | if (s->vm_was_running) { |
3566 | vm_start(); | |
3567 | } else { | |
3568 | if (runstate_check(RUN_STATE_FINISH_MIGRATE)) { | |
3569 | runstate_set(RUN_STATE_POSTMIGRATE); | |
3570 | } | |
3571 | } | |
3572 | break; | |
3573 | ||
3574 | default: | |
3575 | /* Should not reach here, but if so, forgive the VM. */ | |
3576 | error_report("%s: Unknown ending state %d", __func__, s->state); | |
3577 | break; | |
3578 | } | |
fd392cfa | 3579 | migrate_fd_cleanup_schedule(s); |
199aa6d4 PX |
3580 | qemu_mutex_unlock_iothread(); |
3581 | } | |
3582 | ||
8518278a AG |
3583 | static void bg_migration_iteration_finish(MigrationState *s) |
3584 | { | |
3585 | qemu_mutex_lock_iothread(); | |
3586 | switch (s->state) { | |
3587 | case MIGRATION_STATUS_COMPLETED: | |
3588 | migration_calculate_complete(s); | |
3589 | break; | |
3590 | ||
3591 | case MIGRATION_STATUS_ACTIVE: | |
3592 | case MIGRATION_STATUS_FAILED: | |
3593 | case MIGRATION_STATUS_CANCELLED: | |
3594 | case MIGRATION_STATUS_CANCELLING: | |
3595 | break; | |
3596 | ||
3597 | default: | |
3598 | /* Should not reach here, but if so, forgive the VM. */ | |
3599 | error_report("%s: Unknown ending state %d", __func__, s->state); | |
3600 | break; | |
3601 | } | |
3602 | ||
3603 | migrate_fd_cleanup_schedule(s); | |
3604 | qemu_mutex_unlock_iothread(); | |
3605 | } | |
3606 | ||
3607 | /* | |
3608 | * Return true if continue to the next iteration directly, false | |
3609 | * otherwise. | |
3610 | */ | |
3611 | static MigIterateState bg_migration_iteration_run(MigrationState *s) | |
3612 | { | |
3613 | int res; | |
3614 | ||
3615 | res = qemu_savevm_state_iterate(s->to_dst_file, false); | |
3616 | if (res > 0) { | |
3617 | bg_migration_completion(s); | |
3618 | return MIG_ITERATE_BREAK; | |
3619 | } | |
3620 | ||
3621 | return MIG_ITERATE_RESUME; | |
3622 | } | |
3623 | ||
ad767bed DDAG |
3624 | void migration_make_urgent_request(void) |
3625 | { | |
3626 | qemu_sem_post(&migrate_get_current()->rate_limit_sem); | |
3627 | } | |
3628 | ||
3629 | void migration_consume_urgent_request(void) | |
3630 | { | |
3631 | qemu_sem_wait(&migrate_get_current()->rate_limit_sem); | |
3632 | } | |
3633 | ||
97e1e067 DDAG |
3634 | /* Returns true if the rate limiting was broken by an urgent request */ |
3635 | bool migration_rate_limit(void) | |
3636 | { | |
3637 | int64_t now = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); | |
3638 | MigrationState *s = migrate_get_current(); | |
3639 | ||
3640 | bool urgent = false; | |
3641 | migration_update_counters(s, now); | |
3642 | if (qemu_file_rate_limit(s->to_dst_file)) { | |
77386127 LS |
3643 | |
3644 | if (qemu_file_get_error(s->to_dst_file)) { | |
3645 | return false; | |
3646 | } | |
97e1e067 DDAG |
3647 | /* |
3648 | * Wait for a delay to do rate limiting OR | |
3649 | * something urgent to post the semaphore. | |
3650 | */ | |
3651 | int ms = s->iteration_start_time + BUFFER_DELAY - now; | |
3652 | trace_migration_rate_limit_pre(ms); | |
3653 | if (qemu_sem_timedwait(&s->rate_limit_sem, ms) == 0) { | |
3654 | /* | |
3655 | * We were woken by one or more urgent things but | |
3656 | * the timedwait will have consumed one of them. | |
3657 | * The service routine for the urgent wake will dec | |
3658 | * the semaphore itself for each item it consumes, | |
3659 | * so add this one we just eat back. | |
3660 | */ | |
3661 | qemu_sem_post(&s->rate_limit_sem); | |
3662 | urgent = true; | |
3663 | } | |
3664 | trace_migration_rate_limit_post(urgent); | |
3665 | } | |
3666 | return urgent; | |
3667 | } | |
3668 | ||
70b20477 DDAG |
3669 | /* |
3670 | * Master migration thread on the source VM. | |
3671 | * It drives the migration and pumps the data down the outgoing channel. | |
3672 | */ | |
5f496a1b | 3673 | static void *migration_thread(void *opaque) |
0d82d0e8 | 3674 | { |
9848a404 | 3675 | MigrationState *s = opaque; |
bc72ad67 | 3676 | int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST); |
b23c2ade | 3677 | MigThrError thr_error; |
ad767bed | 3678 | bool urgent = false; |
76f5933a | 3679 | |
ab28bd23 PB |
3680 | rcu_register_thread(); |
3681 | ||
892ae715 | 3682 | object_ref(OBJECT(s)); |
87f3bd87 | 3683 | update_iteration_initial_status(s); |
b15df1ae | 3684 | |
89a02a9f | 3685 | qemu_savevm_state_header(s->to_dst_file); |
1d34e4bf | 3686 | |
62a02658 PX |
3687 | /* |
3688 | * If we opened the return path, we need to make sure dst has it | |
3689 | * opened as well. | |
3690 | */ | |
3691 | if (s->rp_state.from_dst_file) { | |
1d34e4bf | 3692 | /* Now tell the dest that it should open its end so it can reply */ |
89a02a9f | 3693 | qemu_savevm_send_open_return_path(s->to_dst_file); |
1d34e4bf DDAG |
3694 | |
3695 | /* And do a ping that will make stuff easier to debug */ | |
89a02a9f | 3696 | qemu_savevm_send_ping(s->to_dst_file, 1); |
0425dc97 | 3697 | } |
1d34e4bf | 3698 | |
58110f0a | 3699 | if (migrate_postcopy()) { |
1d34e4bf DDAG |
3700 | /* |
3701 | * Tell the destination that we *might* want to do postcopy later; | |
3702 | * if the other end can't do postcopy it should fail now, nice and | |
3703 | * early. | |
3704 | */ | |
89a02a9f | 3705 | qemu_savevm_send_postcopy_advise(s->to_dst_file); |
1d34e4bf DDAG |
3706 | } |
3707 | ||
aad555c2 ZC |
3708 | if (migrate_colo_enabled()) { |
3709 | /* Notify migration destination that we enable COLO */ | |
3710 | qemu_savevm_send_colo_enable(s->to_dst_file); | |
3711 | } | |
3712 | ||
9907e842 | 3713 | qemu_savevm_state_setup(s->to_dst_file); |
0d82d0e8 | 3714 | |
d05de9e3 | 3715 | if (qemu_savevm_state_guest_unplug_pending()) { |
c7e0acd5 JF |
3716 | migrate_set_state(&s->state, MIGRATION_STATUS_SETUP, |
3717 | MIGRATION_STATUS_WAIT_UNPLUG); | |
3718 | ||
3719 | while (s->state == MIGRATION_STATUS_WAIT_UNPLUG && | |
3720 | qemu_savevm_state_guest_unplug_pending()) { | |
3721 | qemu_sem_timedwait(&s->wait_unplug_sem, 250); | |
3722 | } | |
3723 | ||
3724 | migrate_set_state(&s->state, MIGRATION_STATUS_WAIT_UNPLUG, | |
3725 | MIGRATION_STATUS_ACTIVE); | |
3726 | } | |
3727 | ||
bc72ad67 | 3728 | s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start; |
48781e5b HZ |
3729 | migrate_set_state(&s->state, MIGRATION_STATUS_SETUP, |
3730 | MIGRATION_STATUS_ACTIVE); | |
29ae8a41 | 3731 | |
9ec055ae DDAG |
3732 | trace_migration_thread_setup_complete(); |
3733 | ||
8f8d528e | 3734 | while (migration_is_active(s)) { |
ad767bed | 3735 | if (urgent || !qemu_file_rate_limit(s->to_dst_file)) { |
2ad87305 PX |
3736 | MigIterateState iter_state = migration_iteration_run(s); |
3737 | if (iter_state == MIG_ITERATE_SKIP) { | |
3738 | continue; | |
3739 | } else if (iter_state == MIG_ITERATE_BREAK) { | |
09f6c85e | 3740 | break; |
c369f40d JQ |
3741 | } |
3742 | } | |
f4410a5d | 3743 | |
b23c2ade PX |
3744 | /* |
3745 | * Try to detect any kind of failures, and see whether we | |
3746 | * should stop the migration now. | |
3747 | */ | |
3748 | thr_error = migration_detect_error(s); | |
3749 | if (thr_error == MIG_THR_ERR_FATAL) { | |
3750 | /* Stop migration */ | |
fd45ee2c | 3751 | break; |
b23c2ade PX |
3752 | } else if (thr_error == MIG_THR_ERR_RECOVERED) { |
3753 | /* | |
3754 | * Just recovered from a e.g. network failure, reset all | |
3755 | * the local variables. This is important to avoid | |
3756 | * breaking transferred_bytes and bandwidth calculation | |
3757 | */ | |
87f3bd87 | 3758 | update_iteration_initial_status(s); |
fd45ee2c | 3759 | } |
b15df1ae | 3760 | |
97e1e067 | 3761 | urgent = migration_rate_limit(); |
a3fa1d78 PB |
3762 | } |
3763 | ||
1d34e4bf | 3764 | trace_migration_thread_after_loop(); |
199aa6d4 | 3765 | migration_iteration_finish(s); |
892ae715 | 3766 | object_unref(OBJECT(s)); |
ab28bd23 | 3767 | rcu_unregister_thread(); |
0d82d0e8 JQ |
3768 | return NULL; |
3769 | } | |
3770 | ||
8518278a AG |
3771 | static void bg_migration_vm_start_bh(void *opaque) |
3772 | { | |
3773 | MigrationState *s = opaque; | |
3774 | ||
3775 | qemu_bh_delete(s->vm_start_bh); | |
3776 | s->vm_start_bh = NULL; | |
3777 | ||
3778 | vm_start(); | |
3779 | s->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - s->downtime_start; | |
3780 | } | |
3781 | ||
3782 | /** | |
3783 | * Background snapshot thread, based on live migration code. | |
3784 | * This is an alternative implementation of live migration mechanism | |
3785 | * introduced specifically to support background snapshots. | |
3786 | * | |
3787 | * It takes advantage of userfault_fd write protection mechanism introduced | |
3788 | * in v5.7 kernel. Compared to existing dirty page logging migration much | |
3789 | * lesser stream traffic is produced resulting in smaller snapshot images, | |
3790 | * simply cause of no page duplicates can get into the stream. | |
3791 | * | |
3792 | * Another key point is that generated vmstate stream reflects machine state | |
3793 | * 'frozen' at the beginning of snapshot creation compared to dirty page logging | |
3794 | * mechanism, which effectively results in that saved snapshot is the state of VM | |
3795 | * at the end of the process. | |
3796 | */ | |
3797 | static void *bg_migration_thread(void *opaque) | |
3798 | { | |
3799 | MigrationState *s = opaque; | |
3800 | int64_t setup_start; | |
3801 | MigThrError thr_error; | |
3802 | QEMUFile *fb; | |
3803 | bool early_fail = true; | |
3804 | ||
3805 | rcu_register_thread(); | |
3806 | object_ref(OBJECT(s)); | |
3807 | ||
3808 | qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX); | |
3809 | ||
3810 | setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST); | |
3811 | /* | |
3812 | * We want to save vmstate for the moment when migration has been | |
3813 | * initiated but also we want to save RAM content while VM is running. | |
3814 | * The RAM content should appear first in the vmstate. So, we first | |
3815 | * stash the non-RAM part of the vmstate to the temporary buffer, | |
3816 | * then write RAM part of the vmstate to the migration stream | |
3817 | * with vCPUs running and, finally, write stashed non-RAM part of | |
3818 | * the vmstate from the buffer to the migration stream. | |
3819 | */ | |
ecb23efe | 3820 | s->bioc = qio_channel_buffer_new(512 * 1024); |
8518278a AG |
3821 | qio_channel_set_name(QIO_CHANNEL(s->bioc), "vmstate-buffer"); |
3822 | fb = qemu_fopen_channel_output(QIO_CHANNEL(s->bioc)); | |
3823 | object_unref(OBJECT(s->bioc)); | |
3824 | ||
3825 | update_iteration_initial_status(s); | |
3826 | ||
eeccb99c AG |
3827 | /* |
3828 | * Prepare for tracking memory writes with UFFD-WP - populate | |
3829 | * RAM pages before protecting. | |
3830 | */ | |
3831 | #ifdef __linux__ | |
3832 | ram_write_tracking_prepare(); | |
3833 | #endif | |
3834 | ||
8518278a AG |
3835 | qemu_savevm_state_header(s->to_dst_file); |
3836 | qemu_savevm_state_setup(s->to_dst_file); | |
3837 | ||
3838 | if (qemu_savevm_state_guest_unplug_pending()) { | |
3839 | migrate_set_state(&s->state, MIGRATION_STATUS_SETUP, | |
3840 | MIGRATION_STATUS_WAIT_UNPLUG); | |
3841 | ||
3842 | while (s->state == MIGRATION_STATUS_WAIT_UNPLUG && | |
3843 | qemu_savevm_state_guest_unplug_pending()) { | |
3844 | qemu_sem_timedwait(&s->wait_unplug_sem, 250); | |
3845 | } | |
3846 | ||
3847 | migrate_set_state(&s->state, MIGRATION_STATUS_WAIT_UNPLUG, | |
3848 | MIGRATION_STATUS_ACTIVE); | |
3849 | } else { | |
3850 | migrate_set_state(&s->state, MIGRATION_STATUS_SETUP, | |
3851 | MIGRATION_STATUS_ACTIVE); | |
3852 | } | |
3853 | s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start; | |
3854 | ||
3855 | trace_migration_thread_setup_complete(); | |
3856 | s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); | |
3857 | ||
3858 | qemu_mutex_lock_iothread(); | |
3859 | ||
3860 | /* | |
3861 | * If VM is currently in suspended state, then, to make a valid runstate | |
3862 | * transition in vm_stop_force_state() we need to wakeup it up. | |
3863 | */ | |
3864 | qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, NULL); | |
3865 | s->vm_was_running = runstate_is_running(); | |
3866 | ||
3867 | if (global_state_store()) { | |
3868 | goto fail; | |
3869 | } | |
3870 | /* Forcibly stop VM before saving state of vCPUs and devices */ | |
3871 | if (vm_stop_force_state(RUN_STATE_PAUSED)) { | |
3872 | goto fail; | |
3873 | } | |
3874 | /* | |
3875 | * Put vCPUs in sync with shadow context structures, then | |
3876 | * save their state to channel-buffer along with devices. | |
3877 | */ | |
3878 | cpu_synchronize_all_states(); | |
3879 | if (qemu_savevm_state_complete_precopy_non_iterable(fb, false, false)) { | |
3880 | goto fail; | |
3881 | } | |
ecb23efe AG |
3882 | /* |
3883 | * Since we are going to get non-iterable state data directly | |
3884 | * from s->bioc->data, explicit flush is needed here. | |
3885 | */ | |
3886 | qemu_fflush(fb); | |
3887 | ||
8518278a AG |
3888 | /* Now initialize UFFD context and start tracking RAM writes */ |
3889 | if (ram_write_tracking_start()) { | |
3890 | goto fail; | |
3891 | } | |
3892 | early_fail = false; | |
3893 | ||
3894 | /* | |
3895 | * Start VM from BH handler to avoid write-fault lock here. | |
3896 | * UFFD-WP protection for the whole RAM is already enabled so | |
3897 | * calling VM state change notifiers from vm_start() would initiate | |
3898 | * writes to virtio VQs memory which is in write-protected region. | |
3899 | */ | |
3900 | s->vm_start_bh = qemu_bh_new(bg_migration_vm_start_bh, s); | |
3901 | qemu_bh_schedule(s->vm_start_bh); | |
3902 | ||
3903 | qemu_mutex_unlock_iothread(); | |
3904 | ||
3905 | while (migration_is_active(s)) { | |
3906 | MigIterateState iter_state = bg_migration_iteration_run(s); | |
3907 | if (iter_state == MIG_ITERATE_SKIP) { | |
3908 | continue; | |
3909 | } else if (iter_state == MIG_ITERATE_BREAK) { | |
3910 | break; | |
3911 | } | |
3912 | ||
3913 | /* | |
3914 | * Try to detect any kind of failures, and see whether we | |
3915 | * should stop the migration now. | |
3916 | */ | |
3917 | thr_error = migration_detect_error(s); | |
3918 | if (thr_error == MIG_THR_ERR_FATAL) { | |
3919 | /* Stop migration */ | |
3920 | break; | |
3921 | } | |
3922 | ||
3923 | migration_update_counters(s, qemu_clock_get_ms(QEMU_CLOCK_REALTIME)); | |
3924 | } | |
3925 | ||
3926 | trace_migration_thread_after_loop(); | |
3927 | ||
3928 | fail: | |
3929 | if (early_fail) { | |
3930 | migrate_set_state(&s->state, MIGRATION_STATUS_ACTIVE, | |
3931 | MIGRATION_STATUS_FAILED); | |
3932 | qemu_mutex_unlock_iothread(); | |
3933 | } | |
3934 | ||
3935 | bg_migration_iteration_finish(s); | |
3936 | ||
3937 | qemu_fclose(fb); | |
3938 | object_unref(OBJECT(s)); | |
3939 | rcu_unregister_thread(); | |
3940 | ||
3941 | return NULL; | |
3942 | } | |
3943 | ||
cce8040b | 3944 | void migrate_fd_connect(MigrationState *s, Error *error_in) |
0d82d0e8 | 3945 | { |
00f4b572 | 3946 | Error *local_err = NULL; |
d3e35b8f PX |
3947 | int64_t rate_limit; |
3948 | bool resume = s->state == MIGRATION_STATUS_POSTCOPY_PAUSED; | |
3949 | ||
2ff30257 | 3950 | s->expected_downtime = s->parameters.downtime_limit; |
9cbc3649 MAL |
3951 | if (resume) { |
3952 | assert(s->cleanup_bh); | |
3953 | } else { | |
3954 | assert(!s->cleanup_bh); | |
3955 | s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup_bh, s); | |
3956 | } | |
cce8040b DDAG |
3957 | if (error_in) { |
3958 | migrate_fd_error(s, error_in); | |
3959 | migrate_fd_cleanup(s); | |
3960 | return; | |
3961 | } | |
0d82d0e8 | 3962 | |
d3e35b8f PX |
3963 | if (resume) { |
3964 | /* This is a resumed migration */ | |
8504ddec PX |
3965 | rate_limit = s->parameters.max_postcopy_bandwidth / |
3966 | XFER_LIMIT_RATIO; | |
d3e35b8f PX |
3967 | } else { |
3968 | /* This is a fresh new migration */ | |
3969 | rate_limit = s->parameters.max_bandwidth / XFER_LIMIT_RATIO; | |
442773ce | 3970 | |
d3e35b8f PX |
3971 | /* Notify before starting migration thread */ |
3972 | notifier_list_notify(&migration_state_notifiers, s); | |
3973 | } | |
3974 | ||
3975 | qemu_file_set_rate_limit(s->to_dst_file, rate_limit); | |
3976 | qemu_file_set_blocking(s->to_dst_file, true); | |
9287ac27 | 3977 | |
1d34e4bf | 3978 | /* |
c788ada8 PX |
3979 | * Open the return path. For postcopy, it is used exclusively. For |
3980 | * precopy, only if user specified "return-path" capability would | |
3981 | * QEMU uses the return path. | |
1d34e4bf | 3982 | */ |
c788ada8 | 3983 | if (migrate_postcopy_ram() || migrate_use_return_path()) { |
d3e35b8f | 3984 | if (open_return_path_on_source(s, !resume)) { |
1d34e4bf | 3985 | error_report("Unable to open return-path for postcopy"); |
d3e35b8f | 3986 | migrate_set_state(&s->state, s->state, MIGRATION_STATUS_FAILED); |
1d34e4bf DDAG |
3987 | migrate_fd_cleanup(s); |
3988 | return; | |
3989 | } | |
3990 | } | |
3991 | ||
d3e35b8f | 3992 | if (resume) { |
135b87b4 PX |
3993 | /* Wakeup the main migration thread to do the recovery */ |
3994 | migrate_set_state(&s->state, MIGRATION_STATUS_POSTCOPY_PAUSED, | |
3995 | MIGRATION_STATUS_POSTCOPY_RECOVER); | |
3996 | qemu_sem_post(&s->postcopy_pause_sem); | |
d3e35b8f PX |
3997 | return; |
3998 | } | |
3999 | ||
00f4b572 JQ |
4000 | if (multifd_save_setup(&local_err) != 0) { |
4001 | error_report_err(local_err); | |
f986c3d2 JQ |
4002 | migrate_set_state(&s->state, MIGRATION_STATUS_SETUP, |
4003 | MIGRATION_STATUS_FAILED); | |
4004 | migrate_fd_cleanup(s); | |
4005 | return; | |
4006 | } | |
8518278a AG |
4007 | |
4008 | if (migrate_background_snapshot()) { | |
4009 | qemu_thread_create(&s->thread, "bg_snapshot", | |
4010 | bg_migration_thread, s, QEMU_THREAD_JOINABLE); | |
4011 | } else { | |
4012 | qemu_thread_create(&s->thread, "live_migration", | |
4013 | migration_thread, s, QEMU_THREAD_JOINABLE); | |
4014 | } | |
1d34e4bf | 4015 | s->migration_thread_running = true; |
0d82d0e8 | 4016 | } |
093e3c42 | 4017 | |
9d18af93 PX |
4018 | void migration_global_dump(Monitor *mon) |
4019 | { | |
4020 | MigrationState *ms = migrate_get_current(); | |
4021 | ||
6f0f6428 JQ |
4022 | monitor_printf(mon, "globals:\n"); |
4023 | monitor_printf(mon, "store-global-state: %s\n", | |
4024 | ms->store_global_state ? "on" : "off"); | |
4025 | monitor_printf(mon, "only-migratable: %s\n", | |
811f8652 | 4026 | only_migratable ? "on" : "off"); |
6f0f6428 JQ |
4027 | monitor_printf(mon, "send-configuration: %s\n", |
4028 | ms->send_configuration ? "on" : "off"); | |
4029 | monitor_printf(mon, "send-section-footer: %s\n", | |
4030 | ms->send_section_footer ? "on" : "off"); | |
f548222c XG |
4031 | monitor_printf(mon, "decompress-error-check: %s\n", |
4032 | ms->decompress_error_check ? "on" : "off"); | |
002cad6b PX |
4033 | monitor_printf(mon, "clear-bitmap-shift: %u\n", |
4034 | ms->clear_bitmap_shift); | |
9d18af93 PX |
4035 | } |
4036 | ||
20814758 PX |
4037 | #define DEFINE_PROP_MIG_CAP(name, x) \ |
4038 | DEFINE_PROP_BOOL(name, MigrationState, enabled_capabilities[x], false) | |
4039 | ||
5272298c PX |
4040 | static Property migration_properties[] = { |
4041 | DEFINE_PROP_BOOL("store-global-state", MigrationState, | |
4042 | store_global_state, true), | |
71dd4c1a PX |
4043 | DEFINE_PROP_BOOL("send-configuration", MigrationState, |
4044 | send_configuration, true), | |
15c38503 PX |
4045 | DEFINE_PROP_BOOL("send-section-footer", MigrationState, |
4046 | send_section_footer, true), | |
f548222c XG |
4047 | DEFINE_PROP_BOOL("decompress-error-check", MigrationState, |
4048 | decompress_error_check, true), | |
002cad6b PX |
4049 | DEFINE_PROP_UINT8("x-clear-bitmap-shift", MigrationState, |
4050 | clear_bitmap_shift, CLEAR_BITMAP_SHIFT_DEFAULT), | |
89632faf PX |
4051 | |
4052 | /* Migration parameters */ | |
741d4086 | 4053 | DEFINE_PROP_UINT8("x-compress-level", MigrationState, |
89632faf PX |
4054 | parameters.compress_level, |
4055 | DEFAULT_MIGRATE_COMPRESS_LEVEL), | |
741d4086 | 4056 | DEFINE_PROP_UINT8("x-compress-threads", MigrationState, |
89632faf PX |
4057 | parameters.compress_threads, |
4058 | DEFAULT_MIGRATE_COMPRESS_THREAD_COUNT), | |
1d58872a XG |
4059 | DEFINE_PROP_BOOL("x-compress-wait-thread", MigrationState, |
4060 | parameters.compress_wait_thread, true), | |
741d4086 | 4061 | DEFINE_PROP_UINT8("x-decompress-threads", MigrationState, |
89632faf PX |
4062 | parameters.decompress_threads, |
4063 | DEFAULT_MIGRATE_DECOMPRESS_THREAD_COUNT), | |
dc14a470 KZ |
4064 | DEFINE_PROP_UINT8("x-throttle-trigger-threshold", MigrationState, |
4065 | parameters.throttle_trigger_threshold, | |
4066 | DEFAULT_MIGRATE_THROTTLE_TRIGGER_THRESHOLD), | |
741d4086 | 4067 | DEFINE_PROP_UINT8("x-cpu-throttle-initial", MigrationState, |
89632faf PX |
4068 | parameters.cpu_throttle_initial, |
4069 | DEFAULT_MIGRATE_CPU_THROTTLE_INITIAL), | |
741d4086 | 4070 | DEFINE_PROP_UINT8("x-cpu-throttle-increment", MigrationState, |
89632faf PX |
4071 | parameters.cpu_throttle_increment, |
4072 | DEFAULT_MIGRATE_CPU_THROTTLE_INCREMENT), | |
cbbf8182 KZ |
4073 | DEFINE_PROP_BOOL("x-cpu-throttle-tailslow", MigrationState, |
4074 | parameters.cpu_throttle_tailslow, false), | |
741d4086 | 4075 | DEFINE_PROP_SIZE("x-max-bandwidth", MigrationState, |
89632faf | 4076 | parameters.max_bandwidth, MAX_THROTTLE), |
741d4086 | 4077 | DEFINE_PROP_UINT64("x-downtime-limit", MigrationState, |
89632faf PX |
4078 | parameters.downtime_limit, |
4079 | DEFAULT_MIGRATE_SET_DOWNTIME), | |
741d4086 | 4080 | DEFINE_PROP_UINT32("x-checkpoint-delay", MigrationState, |
89632faf PX |
4081 | parameters.x_checkpoint_delay, |
4082 | DEFAULT_MIGRATE_X_CHECKPOINT_DELAY), | |
cbfd6c95 JQ |
4083 | DEFINE_PROP_UINT8("multifd-channels", MigrationState, |
4084 | parameters.multifd_channels, | |
4075fb1c | 4085 | DEFAULT_MIGRATE_MULTIFD_CHANNELS), |
96eef042 JQ |
4086 | DEFINE_PROP_MULTIFD_COMPRESSION("multifd-compression", MigrationState, |
4087 | parameters.multifd_compression, | |
4088 | DEFAULT_MIGRATE_MULTIFD_COMPRESSION), | |
9004db48 JQ |
4089 | DEFINE_PROP_UINT8("multifd-zlib-level", MigrationState, |
4090 | parameters.multifd_zlib_level, | |
4091 | DEFAULT_MIGRATE_MULTIFD_ZLIB_LEVEL), | |
6a9ad154 JQ |
4092 | DEFINE_PROP_UINT8("multifd-zstd-level", MigrationState, |
4093 | parameters.multifd_zstd_level, | |
4094 | DEFAULT_MIGRATE_MULTIFD_ZSTD_LEVEL), | |
73af8dd8 JQ |
4095 | DEFINE_PROP_SIZE("xbzrle-cache-size", MigrationState, |
4096 | parameters.xbzrle_cache_size, | |
4097 | DEFAULT_MIGRATE_XBZRLE_CACHE_SIZE), | |
7e555c6c DDAG |
4098 | DEFINE_PROP_SIZE("max-postcopy-bandwidth", MigrationState, |
4099 | parameters.max_postcopy_bandwidth, | |
4100 | DEFAULT_MIGRATE_MAX_POSTCOPY_BANDWIDTH), | |
4cbc9c7f LQ |
4101 | DEFINE_PROP_UINT8("max-cpu-throttle", MigrationState, |
4102 | parameters.max_cpu_throttle, | |
4103 | DEFAULT_MIGRATE_MAX_CPU_THROTTLE), | |
ee3d96ba DDAG |
4104 | DEFINE_PROP_SIZE("announce-initial", MigrationState, |
4105 | parameters.announce_initial, | |
4106 | DEFAULT_MIGRATE_ANNOUNCE_INITIAL), | |
4107 | DEFINE_PROP_SIZE("announce-max", MigrationState, | |
4108 | parameters.announce_max, | |
4109 | DEFAULT_MIGRATE_ANNOUNCE_MAX), | |
4110 | DEFINE_PROP_SIZE("announce-rounds", MigrationState, | |
4111 | parameters.announce_rounds, | |
4112 | DEFAULT_MIGRATE_ANNOUNCE_ROUNDS), | |
4113 | DEFINE_PROP_SIZE("announce-step", MigrationState, | |
4114 | parameters.announce_step, | |
4115 | DEFAULT_MIGRATE_ANNOUNCE_STEP), | |
20814758 PX |
4116 | |
4117 | /* Migration capabilities */ | |
4118 | DEFINE_PROP_MIG_CAP("x-xbzrle", MIGRATION_CAPABILITY_XBZRLE), | |
4119 | DEFINE_PROP_MIG_CAP("x-rdma-pin-all", MIGRATION_CAPABILITY_RDMA_PIN_ALL), | |
4120 | DEFINE_PROP_MIG_CAP("x-auto-converge", MIGRATION_CAPABILITY_AUTO_CONVERGE), | |
4121 | DEFINE_PROP_MIG_CAP("x-zero-blocks", MIGRATION_CAPABILITY_ZERO_BLOCKS), | |
4122 | DEFINE_PROP_MIG_CAP("x-compress", MIGRATION_CAPABILITY_COMPRESS), | |
4123 | DEFINE_PROP_MIG_CAP("x-events", MIGRATION_CAPABILITY_EVENTS), | |
4124 | DEFINE_PROP_MIG_CAP("x-postcopy-ram", MIGRATION_CAPABILITY_POSTCOPY_RAM), | |
4125 | DEFINE_PROP_MIG_CAP("x-colo", MIGRATION_CAPABILITY_X_COLO), | |
4126 | DEFINE_PROP_MIG_CAP("x-release-ram", MIGRATION_CAPABILITY_RELEASE_RAM), | |
4127 | DEFINE_PROP_MIG_CAP("x-block", MIGRATION_CAPABILITY_BLOCK), | |
4128 | DEFINE_PROP_MIG_CAP("x-return-path", MIGRATION_CAPABILITY_RETURN_PATH), | |
cbfd6c95 | 4129 | DEFINE_PROP_MIG_CAP("x-multifd", MIGRATION_CAPABILITY_MULTIFD), |
6e8c25b4 AG |
4130 | DEFINE_PROP_MIG_CAP("x-background-snapshot", |
4131 | MIGRATION_CAPABILITY_BACKGROUND_SNAPSHOT), | |
20814758 | 4132 | |
5272298c PX |
4133 | DEFINE_PROP_END_OF_LIST(), |
4134 | }; | |
4135 | ||
e5cb7e76 PX |
4136 | static void migration_class_init(ObjectClass *klass, void *data) |
4137 | { | |
4138 | DeviceClass *dc = DEVICE_CLASS(klass); | |
4139 | ||
4140 | dc->user_creatable = false; | |
4f67d30b | 4141 | device_class_set_props(dc, migration_properties); |
e5cb7e76 PX |
4142 | } |
4143 | ||
b91bf5e4 MAL |
4144 | static void migration_instance_finalize(Object *obj) |
4145 | { | |
4146 | MigrationState *ms = MIGRATION_OBJ(obj); | |
4147 | MigrationParameters *params = &ms->parameters; | |
4148 | ||
87db1a7d | 4149 | qemu_mutex_destroy(&ms->error_mutex); |
62df066f | 4150 | qemu_mutex_destroy(&ms->qemu_file_lock); |
b91bf5e4 MAL |
4151 | g_free(params->tls_hostname); |
4152 | g_free(params->tls_creds); | |
c7e0acd5 | 4153 | qemu_sem_destroy(&ms->wait_unplug_sem); |
ad767bed | 4154 | qemu_sem_destroy(&ms->rate_limit_sem); |
e91d8951 | 4155 | qemu_sem_destroy(&ms->pause_sem); |
b23c2ade | 4156 | qemu_sem_destroy(&ms->postcopy_pause_sem); |
14b1742e | 4157 | qemu_sem_destroy(&ms->postcopy_pause_rp_sem); |
edd090c7 | 4158 | qemu_sem_destroy(&ms->rp_state.rp_sem); |
ab105cc1 | 4159 | error_free(ms->error); |
b91bf5e4 MAL |
4160 | } |
4161 | ||
e5cb7e76 PX |
4162 | static void migration_instance_init(Object *obj) |
4163 | { | |
4164 | MigrationState *ms = MIGRATION_OBJ(obj); | |
8b0b29dc | 4165 | MigrationParameters *params = &ms->parameters; |
e5cb7e76 PX |
4166 | |
4167 | ms->state = MIGRATION_STATUS_NONE; | |
e5cb7e76 | 4168 | ms->mbps = -1; |
aecbfe9c | 4169 | ms->pages_per_second = -1; |
e91d8951 | 4170 | qemu_sem_init(&ms->pause_sem, 0); |
87db1a7d | 4171 | qemu_mutex_init(&ms->error_mutex); |
8b0b29dc PX |
4172 | |
4173 | params->tls_hostname = g_strdup(""); | |
4174 | params->tls_creds = g_strdup(""); | |
4175 | ||
4176 | /* Set has_* up only for parameter checks */ | |
4177 | params->has_compress_level = true; | |
4178 | params->has_compress_threads = true; | |
4179 | params->has_decompress_threads = true; | |
dc14a470 | 4180 | params->has_throttle_trigger_threshold = true; |
8b0b29dc PX |
4181 | params->has_cpu_throttle_initial = true; |
4182 | params->has_cpu_throttle_increment = true; | |
cbbf8182 | 4183 | params->has_cpu_throttle_tailslow = true; |
8b0b29dc PX |
4184 | params->has_max_bandwidth = true; |
4185 | params->has_downtime_limit = true; | |
4186 | params->has_x_checkpoint_delay = true; | |
4187 | params->has_block_incremental = true; | |
cbfd6c95 | 4188 | params->has_multifd_channels = true; |
96eef042 | 4189 | params->has_multifd_compression = true; |
9004db48 | 4190 | params->has_multifd_zlib_level = true; |
6a9ad154 | 4191 | params->has_multifd_zstd_level = true; |
73af8dd8 | 4192 | params->has_xbzrle_cache_size = true; |
7e555c6c | 4193 | params->has_max_postcopy_bandwidth = true; |
4cbc9c7f | 4194 | params->has_max_cpu_throttle = true; |
ee3d96ba DDAG |
4195 | params->has_announce_initial = true; |
4196 | params->has_announce_max = true; | |
4197 | params->has_announce_rounds = true; | |
4198 | params->has_announce_step = true; | |
b23c2ade PX |
4199 | |
4200 | qemu_sem_init(&ms->postcopy_pause_sem, 0); | |
14b1742e | 4201 | qemu_sem_init(&ms->postcopy_pause_rp_sem, 0); |
edd090c7 | 4202 | qemu_sem_init(&ms->rp_state.rp_sem, 0); |
ad767bed | 4203 | qemu_sem_init(&ms->rate_limit_sem, 0); |
c7e0acd5 | 4204 | qemu_sem_init(&ms->wait_unplug_sem, 0); |
62df066f | 4205 | qemu_mutex_init(&ms->qemu_file_lock); |
8b0b29dc PX |
4206 | } |
4207 | ||
4208 | /* | |
4209 | * Return true if check pass, false otherwise. Error will be put | |
4210 | * inside errp if provided. | |
4211 | */ | |
4212 | static bool migration_object_check(MigrationState *ms, Error **errp) | |
4213 | { | |
6b19a7d9 PX |
4214 | MigrationCapabilityStatusList *head = NULL; |
4215 | /* Assuming all off */ | |
4216 | bool cap_list[MIGRATION_CAPABILITY__MAX] = { 0 }, ret; | |
4217 | int i; | |
4218 | ||
8b0b29dc PX |
4219 | if (!migrate_params_check(&ms->parameters, errp)) { |
4220 | return false; | |
4221 | } | |
4222 | ||
6b19a7d9 PX |
4223 | for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) { |
4224 | if (ms->enabled_capabilities[i]) { | |
eaedde52 | 4225 | QAPI_LIST_PREPEND(head, migrate_cap_add(i, true)); |
6b19a7d9 PX |
4226 | } |
4227 | } | |
4228 | ||
4229 | ret = migrate_caps_check(cap_list, head, errp); | |
4230 | ||
4231 | /* It works with head == NULL */ | |
4232 | qapi_free_MigrationCapabilityStatusList(head); | |
4233 | ||
4234 | return ret; | |
e5cb7e76 PX |
4235 | } |
4236 | ||
4237 | static const TypeInfo migration_type = { | |
4238 | .name = TYPE_MIGRATION, | |
01f6e14c | 4239 | /* |
c8d3ff38 | 4240 | * NOTE: TYPE_MIGRATION is not really a device, as the object is |
2194abd6 | 4241 | * not created using qdev_new(), it is not attached to the qdev |
c8d3ff38 PX |
4242 | * device tree, and it is never realized. |
4243 | * | |
4244 | * TODO: Make this TYPE_OBJECT once QOM provides something like | |
4245 | * TYPE_DEVICE's "-global" properties. | |
01f6e14c | 4246 | */ |
e5cb7e76 PX |
4247 | .parent = TYPE_DEVICE, |
4248 | .class_init = migration_class_init, | |
4249 | .class_size = sizeof(MigrationClass), | |
4250 | .instance_size = sizeof(MigrationState), | |
4251 | .instance_init = migration_instance_init, | |
b91bf5e4 | 4252 | .instance_finalize = migration_instance_finalize, |
e5cb7e76 PX |
4253 | }; |
4254 | ||
4255 | static void register_migration_types(void) | |
4256 | { | |
4257 | type_register_static(&migration_type); | |
4258 | } | |
4259 | ||
4260 | type_init(register_migration_types); |