4 * Copyright IBM, Corp. 2008
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
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.
16 #include "qemu/osdep.h"
17 #include "qemu/cutils.h"
18 #include "qemu/error-report.h"
19 #include "qemu/main-loop.h"
20 #include "migration/blocker.h"
25 #include "sysemu/runstate.h"
26 #include "sysemu/sysemu.h"
27 #include "sysemu/cpu-throttle.h"
30 #include "ram-compress.h"
31 #include "migration/global_state.h"
32 #include "migration/misc.h"
33 #include "migration.h"
34 #include "migration-stats.h"
36 #include "qemu-file.h"
38 #include "migration/vmstate.h"
39 #include "block/block.h"
40 #include "qapi/error.h"
41 #include "qapi/clone-visitor.h"
42 #include "qapi/qapi-visit-migration.h"
43 #include "qapi/qapi-visit-sockets.h"
44 #include "qapi/qapi-commands-migration.h"
45 #include "qapi/qapi-events-migration.h"
46 #include "qapi/qmp/qerror.h"
47 #include "qapi/qmp/qnull.h"
50 #include "postcopy-ram.h"
51 #include "qemu/thread.h"
53 #include "exec/target_page.h"
54 #include "io/channel-buffer.h"
55 #include "io/channel-tls.h"
56 #include "migration/colo.h"
57 #include "hw/boards.h"
58 #include "monitor/monitor.h"
59 #include "net/announce.h"
60 #include "qemu/queue.h"
62 #include "threadinfo.h"
63 #include "qemu/yank.h"
64 #include "sysemu/cpus.h"
65 #include "yank_functions.h"
66 #include "sysemu/qtest.h"
68 #include "sysemu/dirtylimit.h"
70 static NotifierList migration_state_notifiers
=
71 NOTIFIER_LIST_INITIALIZER(migration_state_notifiers
);
73 /* Messages sent on the return path from destination to source */
74 enum mig_rp_message_type
{
75 MIG_RP_MSG_INVALID
= 0, /* Must be 0 */
76 MIG_RP_MSG_SHUT
, /* sibling will not send any more RP messages */
77 MIG_RP_MSG_PONG
, /* Response to a PING; data (seq: be32 ) */
79 MIG_RP_MSG_REQ_PAGES_ID
, /* data (start: be64, len: be32, id: string) */
80 MIG_RP_MSG_REQ_PAGES
, /* data (start: be64, len: be32) */
81 MIG_RP_MSG_RECV_BITMAP
, /* send recved_bitmap back to source */
82 MIG_RP_MSG_RESUME_ACK
, /* tell source that we are ready to resume */
83 MIG_RP_MSG_SWITCHOVER_ACK
, /* Tell source it's OK to do switchover */
88 /* When we add fault tolerance, we could have several
89 migrations at once. For now we don't need to add
90 dynamic creation of migration */
92 static MigrationState
*current_migration
;
93 static MigrationIncomingState
*current_incoming
;
95 static GSList
*migration_blockers
;
97 static bool migration_object_check(MigrationState
*ms
, Error
**errp
);
98 static int migration_maybe_pause(MigrationState
*s
,
99 int *current_active_state
,
101 static void migrate_fd_cancel(MigrationState
*s
);
102 static int await_return_path_close_on_source(MigrationState
*s
);
104 static bool migration_needs_multiple_sockets(void)
106 return migrate_multifd() || migrate_postcopy_preempt();
109 static bool uri_supports_multi_channels(const char *uri
)
111 return strstart(uri
, "tcp:", NULL
) || strstart(uri
, "unix:", NULL
) ||
112 strstart(uri
, "vsock:", NULL
);
116 migration_channels_and_uri_compatible(const char *uri
, Error
**errp
)
118 if (migration_needs_multiple_sockets() &&
119 !uri_supports_multi_channels(uri
)) {
120 error_setg(errp
, "Migration requires multi-channel URIs (e.g. tcp)");
127 static gint
page_request_addr_cmp(gconstpointer ap
, gconstpointer bp
)
129 uintptr_t a
= (uintptr_t) ap
, b
= (uintptr_t) bp
;
131 return (a
> b
) - (a
< b
);
134 void migration_object_init(void)
136 /* This can only be called once. */
137 assert(!current_migration
);
138 current_migration
= MIGRATION_OBJ(object_new(TYPE_MIGRATION
));
141 * Init the migrate incoming object as well no matter whether
142 * we'll use it or not.
144 assert(!current_incoming
);
145 current_incoming
= g_new0(MigrationIncomingState
, 1);
146 current_incoming
->state
= MIGRATION_STATUS_NONE
;
147 current_incoming
->postcopy_remote_fds
=
148 g_array_new(FALSE
, TRUE
, sizeof(struct PostCopyFD
));
149 qemu_mutex_init(¤t_incoming
->rp_mutex
);
150 qemu_mutex_init(¤t_incoming
->postcopy_prio_thread_mutex
);
151 qemu_event_init(¤t_incoming
->main_thread_load_event
, false);
152 qemu_sem_init(¤t_incoming
->postcopy_pause_sem_dst
, 0);
153 qemu_sem_init(¤t_incoming
->postcopy_pause_sem_fault
, 0);
154 qemu_sem_init(¤t_incoming
->postcopy_pause_sem_fast_load
, 0);
155 qemu_sem_init(¤t_incoming
->postcopy_qemufile_dst_done
, 0);
157 qemu_mutex_init(¤t_incoming
->page_request_mutex
);
158 qemu_cond_init(¤t_incoming
->page_request_cond
);
159 current_incoming
->page_requested
= g_tree_new(page_request_addr_cmp
);
161 migration_object_check(current_migration
, &error_fatal
);
165 dirty_bitmap_mig_init();
168 void migration_cancel(const Error
*error
)
171 migrate_set_error(current_migration
, error
);
173 if (migrate_dirty_limit()) {
174 qmp_cancel_vcpu_dirty_limit(false, -1, NULL
);
176 migrate_fd_cancel(current_migration
);
179 void migration_shutdown(void)
182 * When the QEMU main thread exit, the COLO thread
183 * may wait a semaphore. So, we should wakeup the
184 * COLO thread before migration shutdown.
188 * Cancel the current migration - that will (eventually)
189 * stop the migration using this structure
191 migration_cancel(NULL
);
192 object_unref(OBJECT(current_migration
));
195 * Cancel outgoing migration of dirty bitmaps. It should
196 * at least unref used block nodes.
198 dirty_bitmap_mig_cancel_outgoing();
201 * Cancel incoming migration of dirty bitmaps. Dirty bitmaps
202 * are non-critical data, and their loss never considered as
205 dirty_bitmap_mig_cancel_incoming();
209 MigrationState
*migrate_get_current(void)
211 /* This can only be called after the object created. */
212 assert(current_migration
);
213 return current_migration
;
216 MigrationIncomingState
*migration_incoming_get_current(void)
218 assert(current_incoming
);
219 return current_incoming
;
222 void migration_incoming_transport_cleanup(MigrationIncomingState
*mis
)
224 if (mis
->socket_address_list
) {
225 qapi_free_SocketAddressList(mis
->socket_address_list
);
226 mis
->socket_address_list
= NULL
;
229 if (mis
->transport_cleanup
) {
230 mis
->transport_cleanup(mis
->transport_data
);
231 mis
->transport_data
= mis
->transport_cleanup
= NULL
;
235 void migration_incoming_state_destroy(void)
237 struct MigrationIncomingState
*mis
= migration_incoming_get_current();
239 multifd_load_cleanup();
240 compress_threads_load_cleanup();
242 if (mis
->to_src_file
) {
243 /* Tell source that we are done */
244 migrate_send_rp_shut(mis
, qemu_file_get_error(mis
->from_src_file
) != 0);
245 qemu_fclose(mis
->to_src_file
);
246 mis
->to_src_file
= NULL
;
249 if (mis
->from_src_file
) {
250 migration_ioc_unregister_yank_from_file(mis
->from_src_file
);
251 qemu_fclose(mis
->from_src_file
);
252 mis
->from_src_file
= NULL
;
254 if (mis
->postcopy_remote_fds
) {
255 g_array_free(mis
->postcopy_remote_fds
, TRUE
);
256 mis
->postcopy_remote_fds
= NULL
;
259 migration_incoming_transport_cleanup(mis
);
260 qemu_event_reset(&mis
->main_thread_load_event
);
262 if (mis
->page_requested
) {
263 g_tree_destroy(mis
->page_requested
);
264 mis
->page_requested
= NULL
;
267 if (mis
->postcopy_qemufile_dst
) {
268 migration_ioc_unregister_yank_from_file(mis
->postcopy_qemufile_dst
);
269 qemu_fclose(mis
->postcopy_qemufile_dst
);
270 mis
->postcopy_qemufile_dst
= NULL
;
273 yank_unregister_instance(MIGRATION_YANK_INSTANCE
);
276 static void migrate_generate_event(int new_state
)
278 if (migrate_events()) {
279 qapi_event_send_migration(new_state
);
284 * Send a message on the return channel back to the source
287 static int migrate_send_rp_message(MigrationIncomingState
*mis
,
288 enum mig_rp_message_type message_type
,
289 uint16_t len
, void *data
)
293 trace_migrate_send_rp_message((int)message_type
, len
);
294 QEMU_LOCK_GUARD(&mis
->rp_mutex
);
297 * It's possible that the file handle got lost due to network
300 if (!mis
->to_src_file
) {
305 qemu_put_be16(mis
->to_src_file
, (unsigned int)message_type
);
306 qemu_put_be16(mis
->to_src_file
, len
);
307 qemu_put_buffer(mis
->to_src_file
, data
, len
);
308 qemu_fflush(mis
->to_src_file
);
310 /* It's possible that qemu file got error during sending */
311 ret
= qemu_file_get_error(mis
->to_src_file
);
316 /* Request one page from the source VM at the given start address.
317 * rb: the RAMBlock to request the page in
318 * Start: Address offset within the RB
319 * Len: Length in bytes required - must be a multiple of pagesize
321 int migrate_send_rp_message_req_pages(MigrationIncomingState
*mis
,
322 RAMBlock
*rb
, ram_addr_t start
)
324 uint8_t bufc
[12 + 1 + 255]; /* start (8), len (4), rbname up to 256 */
325 size_t msglen
= 12; /* start + len */
326 size_t len
= qemu_ram_pagesize(rb
);
327 enum mig_rp_message_type msg_type
;
331 *(uint64_t *)bufc
= cpu_to_be64((uint64_t)start
);
332 *(uint32_t *)(bufc
+ 8) = cpu_to_be32((uint32_t)len
);
335 * We maintain the last ramblock that we requested for page. Note that we
336 * don't need locking because this function will only be called within the
337 * postcopy ram fault thread.
339 if (rb
!= mis
->last_rb
) {
342 rbname
= qemu_ram_get_idstr(rb
);
343 rbname_len
= strlen(rbname
);
345 assert(rbname_len
< 256);
347 bufc
[msglen
++] = rbname_len
;
348 memcpy(bufc
+ msglen
, rbname
, rbname_len
);
349 msglen
+= rbname_len
;
350 msg_type
= MIG_RP_MSG_REQ_PAGES_ID
;
352 msg_type
= MIG_RP_MSG_REQ_PAGES
;
355 return migrate_send_rp_message(mis
, msg_type
, msglen
, bufc
);
358 int migrate_send_rp_req_pages(MigrationIncomingState
*mis
,
359 RAMBlock
*rb
, ram_addr_t start
, uint64_t haddr
)
361 void *aligned
= (void *)(uintptr_t)ROUND_DOWN(haddr
, qemu_ram_pagesize(rb
));
362 bool received
= false;
364 WITH_QEMU_LOCK_GUARD(&mis
->page_request_mutex
) {
365 received
= ramblock_recv_bitmap_test_byte_offset(rb
, start
);
366 if (!received
&& !g_tree_lookup(mis
->page_requested
, aligned
)) {
368 * The page has not been received, and it's not yet in the page
369 * request list. Queue it. Set the value of element to 1, so that
370 * things like g_tree_lookup() will return TRUE (1) when found.
372 g_tree_insert(mis
->page_requested
, aligned
, (gpointer
)1);
373 qatomic_inc(&mis
->page_requested_count
);
374 trace_postcopy_page_req_add(aligned
, mis
->page_requested_count
);
379 * If the page is there, skip sending the message. We don't even need the
380 * lock because as long as the page arrived, it'll be there forever.
386 return migrate_send_rp_message_req_pages(mis
, rb
, start
);
389 static bool migration_colo_enabled
;
390 bool migration_incoming_colo_enabled(void)
392 return migration_colo_enabled
;
395 void migration_incoming_disable_colo(void)
397 ram_block_discard_disable(false);
398 migration_colo_enabled
= false;
401 int migration_incoming_enable_colo(void)
403 #ifndef CONFIG_REPLICATION
404 error_report("ENABLE_COLO command come in migration stream, but COLO "
405 "module is not built in");
409 if (!migrate_colo()) {
410 error_report("ENABLE_COLO command come in migration stream, but c-colo "
411 "capability is not set");
415 if (ram_block_discard_disable(true)) {
416 error_report("COLO: cannot disable RAM discard");
419 migration_colo_enabled
= true;
423 void migrate_add_address(SocketAddress
*address
)
425 MigrationIncomingState
*mis
= migration_incoming_get_current();
427 QAPI_LIST_PREPEND(mis
->socket_address_list
,
428 QAPI_CLONE(SocketAddress
, address
));
431 static void qemu_start_incoming_migration(const char *uri
, Error
**errp
)
433 const char *p
= NULL
;
434 MigrationIncomingState
*mis
= migration_incoming_get_current();
436 /* URI is not suitable for migration? */
437 if (!migration_channels_and_uri_compatible(uri
, errp
)) {
441 migrate_set_state(&mis
->state
, MIGRATION_STATUS_NONE
,
442 MIGRATION_STATUS_SETUP
);
444 if (strstart(uri
, "tcp:", &p
) ||
445 strstart(uri
, "unix:", NULL
) ||
446 strstart(uri
, "vsock:", NULL
)) {
447 socket_start_incoming_migration(p
? p
: uri
, errp
);
449 } else if (strstart(uri
, "rdma:", &p
)) {
450 rdma_start_incoming_migration(p
, errp
);
452 } else if (strstart(uri
, "exec:", &p
)) {
453 exec_start_incoming_migration(p
, errp
);
454 } else if (strstart(uri
, "fd:", &p
)) {
455 fd_start_incoming_migration(p
, errp
);
456 } else if (strstart(uri
, "file:", &p
)) {
457 file_start_incoming_migration(p
, errp
);
459 error_setg(errp
, "unknown migration protocol: %s", uri
);
463 static void process_incoming_migration_bh(void *opaque
)
465 Error
*local_err
= NULL
;
466 MigrationIncomingState
*mis
= opaque
;
468 /* If capability late_block_activate is set:
469 * Only fire up the block code now if we're going to restart the
470 * VM, else 'cont' will do it.
471 * This causes file locking to happen; so we don't want it to happen
472 * unless we really are starting the VM.
474 if (!migrate_late_block_activate() ||
475 (autostart
&& (!global_state_received() ||
476 global_state_get_runstate() == RUN_STATE_RUNNING
))) {
477 /* Make sure all file formats throw away their mutable metadata.
478 * If we get an error here, just don't restart the VM yet. */
479 bdrv_activate_all(&local_err
);
481 error_report_err(local_err
);
488 * This must happen after all error conditions are dealt with and
489 * we're sure the VM is going to be running on this host.
491 qemu_announce_self(&mis
->announce_timer
, migrate_announce_params());
493 multifd_load_shutdown();
495 dirty_bitmap_mig_before_vm_start();
497 if (!global_state_received() ||
498 global_state_get_runstate() == RUN_STATE_RUNNING
) {
502 runstate_set(RUN_STATE_PAUSED
);
504 } else if (migration_incoming_colo_enabled()) {
505 migration_incoming_disable_colo();
508 runstate_set(global_state_get_runstate());
511 * This must happen after any state changes since as soon as an external
512 * observer sees this event they might start to prod at the VM assuming
515 migrate_set_state(&mis
->state
, MIGRATION_STATUS_ACTIVE
,
516 MIGRATION_STATUS_COMPLETED
);
517 qemu_bh_delete(mis
->bh
);
518 migration_incoming_state_destroy();
521 static void coroutine_fn
522 process_incoming_migration_co(void *opaque
)
524 MigrationIncomingState
*mis
= migration_incoming_get_current();
528 assert(mis
->from_src_file
);
530 if (compress_threads_load_setup(mis
->from_src_file
)) {
531 error_report("Failed to setup decompress threads");
535 mis
->largest_page_size
= qemu_ram_pagesize_largest();
536 postcopy_state_set(POSTCOPY_INCOMING_NONE
);
537 migrate_set_state(&mis
->state
, MIGRATION_STATUS_SETUP
,
538 MIGRATION_STATUS_ACTIVE
);
540 mis
->loadvm_co
= qemu_coroutine_self();
541 ret
= qemu_loadvm_state(mis
->from_src_file
);
542 mis
->loadvm_co
= NULL
;
544 ps
= postcopy_state_get();
545 trace_process_incoming_migration_co_end(ret
, ps
);
546 if (ps
!= POSTCOPY_INCOMING_NONE
) {
547 if (ps
== POSTCOPY_INCOMING_ADVISE
) {
549 * Where a migration had postcopy enabled (and thus went to advise)
550 * but managed to complete within the precopy period, we can use
553 postcopy_ram_incoming_cleanup(mis
);
554 } else if (ret
>= 0) {
556 * Postcopy was started, cleanup should happen at the end of the
559 trace_process_incoming_migration_co_postcopy_end_main();
562 /* Else if something went wrong then just fall out of the normal exit */
566 error_report("load of migration failed: %s", strerror(-ret
));
570 if (colo_incoming_co() < 0) {
574 mis
->bh
= qemu_bh_new(process_incoming_migration_bh
, mis
);
575 qemu_bh_schedule(mis
->bh
);
578 migrate_set_state(&mis
->state
, MIGRATION_STATUS_ACTIVE
,
579 MIGRATION_STATUS_FAILED
);
580 qemu_fclose(mis
->from_src_file
);
582 multifd_load_cleanup();
583 compress_threads_load_cleanup();
589 * migration_incoming_setup: Setup incoming migration
590 * @f: file for main migration channel
591 * @errp: where to put errors
593 * Returns: %true on success, %false on error.
595 static bool migration_incoming_setup(QEMUFile
*f
, Error
**errp
)
597 MigrationIncomingState
*mis
= migration_incoming_get_current();
599 if (!mis
->from_src_file
) {
600 mis
->from_src_file
= f
;
602 qemu_file_set_blocking(f
, false);
606 void migration_incoming_process(void)
608 Coroutine
*co
= qemu_coroutine_create(process_incoming_migration_co
, NULL
);
609 qemu_coroutine_enter(co
);
612 /* Returns true if recovered from a paused migration, otherwise false */
613 static bool postcopy_try_recover(void)
615 MigrationIncomingState
*mis
= migration_incoming_get_current();
617 if (mis
->state
== MIGRATION_STATUS_POSTCOPY_PAUSED
) {
618 /* Resumed from a paused postcopy migration */
620 /* This should be set already in migration_incoming_setup() */
621 assert(mis
->from_src_file
);
622 /* Postcopy has standalone thread to do vm load */
623 qemu_file_set_blocking(mis
->from_src_file
, true);
625 /* Re-configure the return path */
626 mis
->to_src_file
= qemu_file_get_return_path(mis
->from_src_file
);
628 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_PAUSED
,
629 MIGRATION_STATUS_POSTCOPY_RECOVER
);
632 * Here, we only wake up the main loading thread (while the
633 * rest threads will still be waiting), so that we can receive
634 * commands from source now, and answer it if needed. The
635 * rest threads will be woken up afterwards until we are sure
636 * that source is ready to reply to page requests.
638 qemu_sem_post(&mis
->postcopy_pause_sem_dst
);
645 void migration_fd_process_incoming(QEMUFile
*f
, Error
**errp
)
647 if (!migration_incoming_setup(f
, errp
)) {
650 if (postcopy_try_recover()) {
653 migration_incoming_process();
657 * Returns true when we want to start a new incoming migration process,
660 static bool migration_should_start_incoming(bool main_channel
)
662 /* Multifd doesn't start unless all channels are established */
663 if (migrate_multifd()) {
664 return migration_has_all_channels();
667 /* Preempt channel only starts when the main channel is created */
668 if (migrate_postcopy_preempt()) {
673 * For all the rest types of migration, we should only reach here when
674 * it's the main channel that's being created, and we should always
675 * proceed with this channel.
677 assert(main_channel
);
681 void migration_ioc_process_incoming(QIOChannel
*ioc
, Error
**errp
)
683 MigrationIncomingState
*mis
= migration_incoming_get_current();
684 Error
*local_err
= NULL
;
686 bool default_channel
= true;
687 uint32_t channel_magic
= 0;
690 if (migrate_multifd() && !migrate_postcopy_ram() &&
691 qio_channel_has_feature(ioc
, QIO_CHANNEL_FEATURE_READ_MSG_PEEK
)) {
693 * With multiple channels, it is possible that we receive channels
694 * out of order on destination side, causing incorrect mapping of
695 * source channels on destination side. Check channel MAGIC to
696 * decide type of channel. Please note this is best effort, postcopy
697 * preempt channel does not send any magic number so avoid it for
698 * postcopy live migration. Also tls live migration already does
699 * tls handshake while initializing main channel so with tls this
700 * issue is not possible.
702 ret
= migration_channel_read_peek(ioc
, (void *)&channel_magic
,
703 sizeof(channel_magic
), &local_err
);
706 error_propagate(errp
, local_err
);
710 default_channel
= (channel_magic
== cpu_to_be32(QEMU_VM_FILE_MAGIC
));
712 default_channel
= !mis
->from_src_file
;
715 if (multifd_load_setup(errp
) != 0) {
716 error_setg(errp
, "Failed to setup multifd channels");
720 if (default_channel
) {
721 f
= qemu_file_new_input(ioc
);
723 if (!migration_incoming_setup(f
, errp
)) {
727 /* Multiple connections */
728 assert(migration_needs_multiple_sockets());
729 if (migrate_multifd()) {
730 multifd_recv_new_channel(ioc
, &local_err
);
732 assert(migrate_postcopy_preempt());
733 f
= qemu_file_new_input(ioc
);
734 postcopy_preempt_new_channel(mis
, f
);
737 error_propagate(errp
, local_err
);
742 if (migration_should_start_incoming(default_channel
)) {
743 /* If it's a recovery, we're done */
744 if (postcopy_try_recover()) {
747 migration_incoming_process();
752 * @migration_has_all_channels: We have received all channels that we need
754 * Returns true when we have got connections to all the channels that
755 * we need for migration.
757 bool migration_has_all_channels(void)
759 MigrationIncomingState
*mis
= migration_incoming_get_current();
761 if (!mis
->from_src_file
) {
765 if (migrate_multifd()) {
766 return multifd_recv_all_channels_created();
769 if (migrate_postcopy_preempt()) {
770 return mis
->postcopy_qemufile_dst
!= NULL
;
776 int migrate_send_rp_switchover_ack(MigrationIncomingState
*mis
)
778 return migrate_send_rp_message(mis
, MIG_RP_MSG_SWITCHOVER_ACK
, 0, NULL
);
782 * Send a 'SHUT' message on the return channel with the given value
783 * to indicate that we've finished with the RP. Non-0 value indicates
786 void migrate_send_rp_shut(MigrationIncomingState
*mis
,
791 buf
= cpu_to_be32(value
);
792 migrate_send_rp_message(mis
, MIG_RP_MSG_SHUT
, sizeof(buf
), &buf
);
796 * Send a 'PONG' message on the return channel with the given value
797 * (normally in response to a 'PING')
799 void migrate_send_rp_pong(MigrationIncomingState
*mis
,
804 buf
= cpu_to_be32(value
);
805 migrate_send_rp_message(mis
, MIG_RP_MSG_PONG
, sizeof(buf
), &buf
);
808 void migrate_send_rp_recv_bitmap(MigrationIncomingState
*mis
,
816 * First, we send the header part. It contains only the len of
817 * idstr, and the idstr itself.
819 len
= strlen(block_name
);
821 memcpy(buf
+ 1, block_name
, len
);
823 if (mis
->state
!= MIGRATION_STATUS_POSTCOPY_RECOVER
) {
824 error_report("%s: MSG_RP_RECV_BITMAP only used for recovery",
829 migrate_send_rp_message(mis
, MIG_RP_MSG_RECV_BITMAP
, len
+ 1, buf
);
832 * Next, we dump the received bitmap to the stream.
834 * TODO: currently we are safe since we are the only one that is
835 * using the to_src_file handle (fault thread is still paused),
836 * and it's ok even not taking the mutex. However the best way is
837 * to take the lock before sending the message header, and release
838 * the lock after sending the bitmap.
840 qemu_mutex_lock(&mis
->rp_mutex
);
841 res
= ramblock_recv_bitmap_send(mis
->to_src_file
, block_name
);
842 qemu_mutex_unlock(&mis
->rp_mutex
);
844 trace_migrate_send_rp_recv_bitmap(block_name
, res
);
847 void migrate_send_rp_resume_ack(MigrationIncomingState
*mis
, uint32_t value
)
851 buf
= cpu_to_be32(value
);
852 migrate_send_rp_message(mis
, MIG_RP_MSG_RESUME_ACK
, sizeof(buf
), &buf
);
856 * Return true if we're already in the middle of a migration
857 * (i.e. any of the active or setup states)
859 bool migration_is_setup_or_active(int state
)
862 case MIGRATION_STATUS_ACTIVE
:
863 case MIGRATION_STATUS_POSTCOPY_ACTIVE
:
864 case MIGRATION_STATUS_POSTCOPY_PAUSED
:
865 case MIGRATION_STATUS_POSTCOPY_RECOVER
:
866 case MIGRATION_STATUS_SETUP
:
867 case MIGRATION_STATUS_PRE_SWITCHOVER
:
868 case MIGRATION_STATUS_DEVICE
:
869 case MIGRATION_STATUS_WAIT_UNPLUG
:
870 case MIGRATION_STATUS_COLO
:
879 bool migration_is_running(int state
)
882 case MIGRATION_STATUS_ACTIVE
:
883 case MIGRATION_STATUS_POSTCOPY_ACTIVE
:
884 case MIGRATION_STATUS_POSTCOPY_PAUSED
:
885 case MIGRATION_STATUS_POSTCOPY_RECOVER
:
886 case MIGRATION_STATUS_SETUP
:
887 case MIGRATION_STATUS_PRE_SWITCHOVER
:
888 case MIGRATION_STATUS_DEVICE
:
889 case MIGRATION_STATUS_WAIT_UNPLUG
:
890 case MIGRATION_STATUS_CANCELLING
:
899 static bool migrate_show_downtime(MigrationState
*s
)
901 return (s
->state
== MIGRATION_STATUS_COMPLETED
) || migration_in_postcopy();
904 static void populate_time_info(MigrationInfo
*info
, MigrationState
*s
)
906 info
->has_status
= true;
907 info
->has_setup_time
= true;
908 info
->setup_time
= s
->setup_time
;
910 if (s
->state
== MIGRATION_STATUS_COMPLETED
) {
911 info
->has_total_time
= true;
912 info
->total_time
= s
->total_time
;
914 info
->has_total_time
= true;
915 info
->total_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) -
919 if (migrate_show_downtime(s
)) {
920 info
->has_downtime
= true;
921 info
->downtime
= s
->downtime
;
923 info
->has_expected_downtime
= true;
924 info
->expected_downtime
= s
->expected_downtime
;
928 static void populate_ram_info(MigrationInfo
*info
, MigrationState
*s
)
930 size_t page_size
= qemu_target_page_size();
932 info
->ram
= g_malloc0(sizeof(*info
->ram
));
933 info
->ram
->transferred
= stat64_get(&mig_stats
.transferred
);
934 info
->ram
->total
= ram_bytes_total();
935 info
->ram
->duplicate
= stat64_get(&mig_stats
.zero_pages
);
936 /* legacy value. It is not used anymore */
937 info
->ram
->skipped
= 0;
938 info
->ram
->normal
= stat64_get(&mig_stats
.normal_pages
);
939 info
->ram
->normal_bytes
= info
->ram
->normal
* page_size
;
940 info
->ram
->mbps
= s
->mbps
;
941 info
->ram
->dirty_sync_count
=
942 stat64_get(&mig_stats
.dirty_sync_count
);
943 info
->ram
->dirty_sync_missed_zero_copy
=
944 stat64_get(&mig_stats
.dirty_sync_missed_zero_copy
);
945 info
->ram
->postcopy_requests
=
946 stat64_get(&mig_stats
.postcopy_requests
);
947 info
->ram
->page_size
= page_size
;
948 info
->ram
->multifd_bytes
= stat64_get(&mig_stats
.multifd_bytes
);
949 info
->ram
->pages_per_second
= s
->pages_per_second
;
950 info
->ram
->precopy_bytes
= stat64_get(&mig_stats
.precopy_bytes
);
951 info
->ram
->downtime_bytes
= stat64_get(&mig_stats
.downtime_bytes
);
952 info
->ram
->postcopy_bytes
= stat64_get(&mig_stats
.postcopy_bytes
);
954 if (migrate_xbzrle()) {
955 info
->xbzrle_cache
= g_malloc0(sizeof(*info
->xbzrle_cache
));
956 info
->xbzrle_cache
->cache_size
= migrate_xbzrle_cache_size();
957 info
->xbzrle_cache
->bytes
= xbzrle_counters
.bytes
;
958 info
->xbzrle_cache
->pages
= xbzrle_counters
.pages
;
959 info
->xbzrle_cache
->cache_miss
= xbzrle_counters
.cache_miss
;
960 info
->xbzrle_cache
->cache_miss_rate
= xbzrle_counters
.cache_miss_rate
;
961 info
->xbzrle_cache
->encoding_rate
= xbzrle_counters
.encoding_rate
;
962 info
->xbzrle_cache
->overflow
= xbzrle_counters
.overflow
;
965 if (migrate_compress()) {
966 info
->compression
= g_malloc0(sizeof(*info
->compression
));
967 info
->compression
->pages
= compression_counters
.pages
;
968 info
->compression
->busy
= compression_counters
.busy
;
969 info
->compression
->busy_rate
= compression_counters
.busy_rate
;
970 info
->compression
->compressed_size
=
971 compression_counters
.compressed_size
;
972 info
->compression
->compression_rate
=
973 compression_counters
.compression_rate
;
976 if (cpu_throttle_active()) {
977 info
->has_cpu_throttle_percentage
= true;
978 info
->cpu_throttle_percentage
= cpu_throttle_get_percentage();
981 if (s
->state
!= MIGRATION_STATUS_COMPLETED
) {
982 info
->ram
->remaining
= ram_bytes_remaining();
983 info
->ram
->dirty_pages_rate
=
984 stat64_get(&mig_stats
.dirty_pages_rate
);
987 if (migrate_dirty_limit() && dirtylimit_in_service()) {
988 info
->has_dirty_limit_throttle_time_per_round
= true;
989 info
->dirty_limit_throttle_time_per_round
=
990 dirtylimit_throttle_time_per_round();
992 info
->has_dirty_limit_ring_full_time
= true;
993 info
->dirty_limit_ring_full_time
= dirtylimit_ring_full_time();
997 static void populate_disk_info(MigrationInfo
*info
)
999 if (blk_mig_active()) {
1000 info
->disk
= g_malloc0(sizeof(*info
->disk
));
1001 info
->disk
->transferred
= blk_mig_bytes_transferred();
1002 info
->disk
->remaining
= blk_mig_bytes_remaining();
1003 info
->disk
->total
= blk_mig_bytes_total();
1007 static void fill_source_migration_info(MigrationInfo
*info
)
1009 MigrationState
*s
= migrate_get_current();
1010 int state
= qatomic_read(&s
->state
);
1011 GSList
*cur_blocker
= migration_blockers
;
1013 info
->blocked_reasons
= NULL
;
1016 * There are two types of reasons a migration might be blocked;
1017 * a) devices marked in VMState as non-migratable, and
1018 * b) Explicit migration blockers
1019 * We need to add both of them here.
1021 qemu_savevm_non_migratable_list(&info
->blocked_reasons
);
1023 while (cur_blocker
) {
1024 QAPI_LIST_PREPEND(info
->blocked_reasons
,
1025 g_strdup(error_get_pretty(cur_blocker
->data
)));
1026 cur_blocker
= g_slist_next(cur_blocker
);
1028 info
->has_blocked_reasons
= info
->blocked_reasons
!= NULL
;
1031 case MIGRATION_STATUS_NONE
:
1032 /* no migration has happened ever */
1033 /* do not overwrite destination migration status */
1035 case MIGRATION_STATUS_SETUP
:
1036 info
->has_status
= true;
1037 info
->has_total_time
= false;
1039 case MIGRATION_STATUS_ACTIVE
:
1040 case MIGRATION_STATUS_CANCELLING
:
1041 case MIGRATION_STATUS_POSTCOPY_ACTIVE
:
1042 case MIGRATION_STATUS_PRE_SWITCHOVER
:
1043 case MIGRATION_STATUS_DEVICE
:
1044 case MIGRATION_STATUS_POSTCOPY_PAUSED
:
1045 case MIGRATION_STATUS_POSTCOPY_RECOVER
:
1046 /* TODO add some postcopy stats */
1047 populate_time_info(info
, s
);
1048 populate_ram_info(info
, s
);
1049 populate_disk_info(info
);
1050 migration_populate_vfio_info(info
);
1052 case MIGRATION_STATUS_COLO
:
1053 info
->has_status
= true;
1054 /* TODO: display COLO specific information (checkpoint info etc.) */
1056 case MIGRATION_STATUS_COMPLETED
:
1057 populate_time_info(info
, s
);
1058 populate_ram_info(info
, s
);
1059 migration_populate_vfio_info(info
);
1061 case MIGRATION_STATUS_FAILED
:
1062 info
->has_status
= true;
1064 info
->error_desc
= g_strdup(error_get_pretty(s
->error
));
1067 case MIGRATION_STATUS_CANCELLED
:
1068 info
->has_status
= true;
1070 case MIGRATION_STATUS_WAIT_UNPLUG
:
1071 info
->has_status
= true;
1074 info
->status
= state
;
1077 static void fill_destination_migration_info(MigrationInfo
*info
)
1079 MigrationIncomingState
*mis
= migration_incoming_get_current();
1081 if (mis
->socket_address_list
) {
1082 info
->has_socket_address
= true;
1083 info
->socket_address
=
1084 QAPI_CLONE(SocketAddressList
, mis
->socket_address_list
);
1087 switch (mis
->state
) {
1088 case MIGRATION_STATUS_NONE
:
1090 case MIGRATION_STATUS_SETUP
:
1091 case MIGRATION_STATUS_CANCELLING
:
1092 case MIGRATION_STATUS_CANCELLED
:
1093 case MIGRATION_STATUS_ACTIVE
:
1094 case MIGRATION_STATUS_POSTCOPY_ACTIVE
:
1095 case MIGRATION_STATUS_POSTCOPY_PAUSED
:
1096 case MIGRATION_STATUS_POSTCOPY_RECOVER
:
1097 case MIGRATION_STATUS_FAILED
:
1098 case MIGRATION_STATUS_COLO
:
1099 info
->has_status
= true;
1101 case MIGRATION_STATUS_COMPLETED
:
1102 info
->has_status
= true;
1103 fill_destination_postcopy_migration_info(info
);
1106 info
->status
= mis
->state
;
1109 MigrationInfo
*qmp_query_migrate(Error
**errp
)
1111 MigrationInfo
*info
= g_malloc0(sizeof(*info
));
1113 fill_destination_migration_info(info
);
1114 fill_source_migration_info(info
);
1119 void qmp_migrate_start_postcopy(Error
**errp
)
1121 MigrationState
*s
= migrate_get_current();
1123 if (!migrate_postcopy()) {
1124 error_setg(errp
, "Enable postcopy with migrate_set_capability before"
1125 " the start of migration");
1129 if (s
->state
== MIGRATION_STATUS_NONE
) {
1130 error_setg(errp
, "Postcopy must be started after migration has been"
1135 * we don't error if migration has finished since that would be racy
1136 * with issuing this command.
1138 qatomic_set(&s
->start_postcopy
, true);
1141 /* shared migration helpers */
1143 void migrate_set_state(int *state
, int old_state
, int new_state
)
1145 assert(new_state
< MIGRATION_STATUS__MAX
);
1146 if (qatomic_cmpxchg(state
, old_state
, new_state
) == old_state
) {
1147 trace_migrate_set_state(MigrationStatus_str(new_state
));
1148 migrate_generate_event(new_state
);
1152 static void migrate_fd_cleanup(MigrationState
*s
)
1154 qemu_bh_delete(s
->cleanup_bh
);
1155 s
->cleanup_bh
= NULL
;
1157 g_free(s
->hostname
);
1159 json_writer_free(s
->vmdesc
);
1162 qemu_savevm_state_cleanup();
1164 if (s
->to_dst_file
) {
1167 trace_migrate_fd_cleanup();
1168 qemu_mutex_unlock_iothread();
1169 if (s
->migration_thread_running
) {
1170 qemu_thread_join(&s
->thread
);
1171 s
->migration_thread_running
= false;
1173 qemu_mutex_lock_iothread();
1175 multifd_save_cleanup();
1176 qemu_mutex_lock(&s
->qemu_file_lock
);
1177 tmp
= s
->to_dst_file
;
1178 s
->to_dst_file
= NULL
;
1179 qemu_mutex_unlock(&s
->qemu_file_lock
);
1181 * Close the file handle without the lock to make sure the
1182 * critical section won't block for long.
1184 migration_ioc_unregister_yank_from_file(tmp
);
1189 * We already cleaned up to_dst_file, so errors from the return
1190 * path might be due to that, ignore them.
1192 await_return_path_close_on_source(s
);
1194 assert(!migration_is_active(s
));
1196 if (s
->state
== MIGRATION_STATUS_CANCELLING
) {
1197 migrate_set_state(&s
->state
, MIGRATION_STATUS_CANCELLING
,
1198 MIGRATION_STATUS_CANCELLED
);
1202 /* It is used on info migrate. We can't free it */
1203 error_report_err(error_copy(s
->error
));
1205 notifier_list_notify(&migration_state_notifiers
, s
);
1206 block_cleanup_parameters();
1207 yank_unregister_instance(MIGRATION_YANK_INSTANCE
);
1210 static void migrate_fd_cleanup_schedule(MigrationState
*s
)
1213 * Ref the state for bh, because it may be called when
1214 * there're already no other refs
1216 object_ref(OBJECT(s
));
1217 qemu_bh_schedule(s
->cleanup_bh
);
1220 static void migrate_fd_cleanup_bh(void *opaque
)
1222 MigrationState
*s
= opaque
;
1223 migrate_fd_cleanup(s
);
1224 object_unref(OBJECT(s
));
1227 void migrate_set_error(MigrationState
*s
, const Error
*error
)
1229 QEMU_LOCK_GUARD(&s
->error_mutex
);
1231 s
->error
= error_copy(error
);
1235 static void migrate_error_free(MigrationState
*s
)
1237 QEMU_LOCK_GUARD(&s
->error_mutex
);
1239 error_free(s
->error
);
1244 static void migrate_fd_error(MigrationState
*s
, const Error
*error
)
1246 trace_migrate_fd_error(error_get_pretty(error
));
1247 assert(s
->to_dst_file
== NULL
);
1248 migrate_set_state(&s
->state
, MIGRATION_STATUS_SETUP
,
1249 MIGRATION_STATUS_FAILED
);
1250 migrate_set_error(s
, error
);
1253 static void migrate_fd_cancel(MigrationState
*s
)
1257 trace_migrate_fd_cancel();
1259 WITH_QEMU_LOCK_GUARD(&s
->qemu_file_lock
) {
1260 if (s
->rp_state
.from_dst_file
) {
1261 /* shutdown the rp socket, so causing the rp thread to shutdown */
1262 qemu_file_shutdown(s
->rp_state
.from_dst_file
);
1267 old_state
= s
->state
;
1268 if (!migration_is_running(old_state
)) {
1271 /* If the migration is paused, kick it out of the pause */
1272 if (old_state
== MIGRATION_STATUS_PRE_SWITCHOVER
) {
1273 qemu_sem_post(&s
->pause_sem
);
1275 migrate_set_state(&s
->state
, old_state
, MIGRATION_STATUS_CANCELLING
);
1276 } while (s
->state
!= MIGRATION_STATUS_CANCELLING
);
1279 * If we're unlucky the migration code might be stuck somewhere in a
1280 * send/write while the network has failed and is waiting to timeout;
1281 * if we've got shutdown(2) available then we can force it to quit.
1283 if (s
->state
== MIGRATION_STATUS_CANCELLING
) {
1284 WITH_QEMU_LOCK_GUARD(&s
->qemu_file_lock
) {
1285 if (s
->to_dst_file
) {
1286 qemu_file_shutdown(s
->to_dst_file
);
1290 if (s
->state
== MIGRATION_STATUS_CANCELLING
&& s
->block_inactive
) {
1291 Error
*local_err
= NULL
;
1293 bdrv_activate_all(&local_err
);
1295 error_report_err(local_err
);
1297 s
->block_inactive
= false;
1302 void add_migration_state_change_notifier(Notifier
*notify
)
1304 notifier_list_add(&migration_state_notifiers
, notify
);
1307 void remove_migration_state_change_notifier(Notifier
*notify
)
1309 notifier_remove(notify
);
1312 bool migration_in_setup(MigrationState
*s
)
1314 return s
->state
== MIGRATION_STATUS_SETUP
;
1317 bool migration_has_finished(MigrationState
*s
)
1319 return s
->state
== MIGRATION_STATUS_COMPLETED
;
1322 bool migration_has_failed(MigrationState
*s
)
1324 return (s
->state
== MIGRATION_STATUS_CANCELLED
||
1325 s
->state
== MIGRATION_STATUS_FAILED
);
1328 bool migration_in_postcopy(void)
1330 MigrationState
*s
= migrate_get_current();
1333 case MIGRATION_STATUS_POSTCOPY_ACTIVE
:
1334 case MIGRATION_STATUS_POSTCOPY_PAUSED
:
1335 case MIGRATION_STATUS_POSTCOPY_RECOVER
:
1342 bool migration_in_postcopy_after_devices(MigrationState
*s
)
1344 return migration_in_postcopy() && s
->postcopy_after_devices
;
1347 bool migration_in_incoming_postcopy(void)
1349 PostcopyState ps
= postcopy_state_get();
1351 return ps
>= POSTCOPY_INCOMING_DISCARD
&& ps
< POSTCOPY_INCOMING_END
;
1354 bool migration_incoming_postcopy_advised(void)
1356 PostcopyState ps
= postcopy_state_get();
1358 return ps
>= POSTCOPY_INCOMING_ADVISE
&& ps
< POSTCOPY_INCOMING_END
;
1361 bool migration_in_bg_snapshot(void)
1363 MigrationState
*s
= migrate_get_current();
1365 return migrate_background_snapshot() &&
1366 migration_is_setup_or_active(s
->state
);
1369 bool migration_is_idle(void)
1371 MigrationState
*s
= current_migration
;
1378 case MIGRATION_STATUS_NONE
:
1379 case MIGRATION_STATUS_CANCELLED
:
1380 case MIGRATION_STATUS_COMPLETED
:
1381 case MIGRATION_STATUS_FAILED
:
1383 case MIGRATION_STATUS_SETUP
:
1384 case MIGRATION_STATUS_CANCELLING
:
1385 case MIGRATION_STATUS_ACTIVE
:
1386 case MIGRATION_STATUS_POSTCOPY_ACTIVE
:
1387 case MIGRATION_STATUS_COLO
:
1388 case MIGRATION_STATUS_PRE_SWITCHOVER
:
1389 case MIGRATION_STATUS_DEVICE
:
1390 case MIGRATION_STATUS_WAIT_UNPLUG
:
1392 case MIGRATION_STATUS__MAX
:
1393 g_assert_not_reached();
1399 bool migration_is_active(MigrationState
*s
)
1401 return (s
->state
== MIGRATION_STATUS_ACTIVE
||
1402 s
->state
== MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1405 int migrate_init(MigrationState
*s
, Error
**errp
)
1409 ret
= qemu_savevm_state_prepare(errp
);
1415 * Reinitialise all migration state, except
1416 * parameters/capabilities that the user set, and
1421 s
->to_dst_file
= NULL
;
1422 s
->state
= MIGRATION_STATUS_NONE
;
1423 s
->rp_state
.from_dst_file
= NULL
;
1424 s
->rp_state
.error
= false;
1426 s
->pages_per_second
= 0.0;
1428 s
->expected_downtime
= 0;
1430 s
->start_postcopy
= false;
1431 s
->postcopy_after_devices
= false;
1432 s
->migration_thread_running
= false;
1433 error_free(s
->error
);
1437 migrate_set_state(&s
->state
, MIGRATION_STATUS_NONE
, MIGRATION_STATUS_SETUP
);
1439 s
->start_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
1441 s
->vm_old_state
= -1;
1442 s
->iteration_initial_bytes
= 0;
1443 s
->threshold_size
= 0;
1444 s
->switchover_acked
= false;
1446 * set mig_stats compression_counters memory to zero for a
1449 memset(&mig_stats
, 0, sizeof(mig_stats
));
1450 memset(&compression_counters
, 0, sizeof(compression_counters
));
1451 migration_reset_vfio_bytes_transferred();
1456 int migrate_add_blocker_internal(Error
*reason
, Error
**errp
)
1458 /* Snapshots are similar to migrations, so check RUN_STATE_SAVE_VM too. */
1459 if (runstate_check(RUN_STATE_SAVE_VM
) || !migration_is_idle()) {
1460 error_propagate_prepend(errp
, error_copy(reason
),
1461 "disallowing migration blocker "
1462 "(migration/snapshot in progress) for: ");
1466 migration_blockers
= g_slist_prepend(migration_blockers
, reason
);
1470 int migrate_add_blocker(Error
*reason
, Error
**errp
)
1472 if (only_migratable
) {
1473 error_propagate_prepend(errp
, error_copy(reason
),
1474 "disallowing migration blocker "
1475 "(--only-migratable) for: ");
1479 return migrate_add_blocker_internal(reason
, errp
);
1482 void migrate_del_blocker(Error
*reason
)
1484 migration_blockers
= g_slist_remove(migration_blockers
, reason
);
1487 void qmp_migrate_incoming(const char *uri
, Error
**errp
)
1489 Error
*local_err
= NULL
;
1490 static bool once
= true;
1493 error_setg(errp
, "The incoming migration has already been started");
1496 if (!runstate_check(RUN_STATE_INMIGRATE
)) {
1497 error_setg(errp
, "'-incoming' was not specified on the command line");
1501 if (!yank_register_instance(MIGRATION_YANK_INSTANCE
, errp
)) {
1505 qemu_start_incoming_migration(uri
, &local_err
);
1508 yank_unregister_instance(MIGRATION_YANK_INSTANCE
);
1509 error_propagate(errp
, local_err
);
1516 void qmp_migrate_recover(const char *uri
, Error
**errp
)
1518 MigrationIncomingState
*mis
= migration_incoming_get_current();
1521 * Don't even bother to use ERRP_GUARD() as it _must_ always be set by
1522 * callers (no one should ignore a recover failure); if there is, it's a
1523 * programming error.
1527 if (mis
->state
!= MIGRATION_STATUS_POSTCOPY_PAUSED
) {
1528 error_setg(errp
, "Migrate recover can only be run "
1529 "when postcopy is paused.");
1533 /* If there's an existing transport, release it */
1534 migration_incoming_transport_cleanup(mis
);
1537 * Note that this call will never start a real migration; it will
1538 * only re-setup the migration stream and poke existing migration
1539 * to continue using that newly established channel.
1541 qemu_start_incoming_migration(uri
, errp
);
1544 void qmp_migrate_pause(Error
**errp
)
1546 MigrationState
*ms
= migrate_get_current();
1547 MigrationIncomingState
*mis
= migration_incoming_get_current();
1550 if (ms
->state
== MIGRATION_STATUS_POSTCOPY_ACTIVE
) {
1551 /* Source side, during postcopy */
1552 qemu_mutex_lock(&ms
->qemu_file_lock
);
1553 if (ms
->to_dst_file
) {
1554 ret
= qemu_file_shutdown(ms
->to_dst_file
);
1556 qemu_mutex_unlock(&ms
->qemu_file_lock
);
1558 error_setg(errp
, "Failed to pause source migration");
1563 if (mis
->state
== MIGRATION_STATUS_POSTCOPY_ACTIVE
) {
1564 ret
= qemu_file_shutdown(mis
->from_src_file
);
1566 error_setg(errp
, "Failed to pause destination migration");
1571 error_setg(errp
, "migrate-pause is currently only supported "
1572 "during postcopy-active state");
1575 bool migration_is_blocked(Error
**errp
)
1577 if (qemu_savevm_state_blocked(errp
)) {
1581 if (migration_blockers
) {
1582 error_propagate(errp
, error_copy(migration_blockers
->data
));
1589 /* Returns true if continue to migrate, or false if error detected */
1590 static bool migrate_prepare(MigrationState
*s
, bool blk
, bool blk_inc
,
1591 bool resume
, Error
**errp
)
1593 Error
*local_err
= NULL
;
1596 if (s
->state
!= MIGRATION_STATUS_POSTCOPY_PAUSED
) {
1597 error_setg(errp
, "Cannot resume if there is no "
1598 "paused migration");
1603 * Postcopy recovery won't work well with release-ram
1604 * capability since release-ram will drop the page buffer as
1605 * long as the page is put into the send buffer. So if there
1606 * is a network failure happened, any page buffers that have
1607 * not yet reached the destination VM but have already been
1608 * sent from the source VM will be lost forever. Let's refuse
1609 * the client from resuming such a postcopy migration.
1610 * Luckily release-ram was designed to only be used when src
1611 * and destination VMs are on the same host, so it should be
1614 if (migrate_release_ram()) {
1615 error_setg(errp
, "Postcopy recovery cannot work "
1616 "when release-ram capability is set");
1620 /* This is a resume, skip init status */
1624 if (migration_is_running(s
->state
)) {
1625 error_setg(errp
, QERR_MIGRATION_ACTIVE
);
1629 if (runstate_check(RUN_STATE_INMIGRATE
)) {
1630 error_setg(errp
, "Guest is waiting for an incoming migration");
1634 if (runstate_check(RUN_STATE_POSTMIGRATE
)) {
1635 error_setg(errp
, "Can't migrate the vm that was paused due to "
1636 "previous migration");
1640 if (migration_is_blocked(errp
)) {
1644 if (blk
|| blk_inc
) {
1645 if (migrate_colo()) {
1646 error_setg(errp
, "No disk migration is required in COLO mode");
1649 if (migrate_block() || migrate_block_incremental()) {
1650 error_setg(errp
, "Command options are incompatible with "
1651 "current migration capabilities");
1654 if (!migrate_cap_set(MIGRATION_CAPABILITY_BLOCK
, true, &local_err
)) {
1655 error_propagate(errp
, local_err
);
1658 s
->must_remove_block_options
= true;
1662 migrate_set_block_incremental(true);
1665 if (migrate_init(s
, errp
)) {
1672 void qmp_migrate(const char *uri
, bool has_blk
, bool blk
,
1673 bool has_inc
, bool inc
, bool has_detach
, bool detach
,
1674 bool has_resume
, bool resume
, Error
**errp
)
1676 bool resume_requested
;
1677 Error
*local_err
= NULL
;
1678 MigrationState
*s
= migrate_get_current();
1679 const char *p
= NULL
;
1681 /* URI is not suitable for migration? */
1682 if (!migration_channels_and_uri_compatible(uri
, errp
)) {
1686 resume_requested
= has_resume
&& resume
;
1687 if (!migrate_prepare(s
, has_blk
&& blk
, has_inc
&& inc
,
1688 resume_requested
, errp
)) {
1689 /* Error detected, put into errp */
1693 if (!resume_requested
) {
1694 if (!yank_register_instance(MIGRATION_YANK_INSTANCE
, errp
)) {
1699 if (strstart(uri
, "tcp:", &p
) ||
1700 strstart(uri
, "unix:", NULL
) ||
1701 strstart(uri
, "vsock:", NULL
)) {
1702 socket_start_outgoing_migration(s
, p
? p
: uri
, &local_err
);
1704 } else if (strstart(uri
, "rdma:", &p
)) {
1705 rdma_start_outgoing_migration(s
, p
, &local_err
);
1707 } else if (strstart(uri
, "exec:", &p
)) {
1708 exec_start_outgoing_migration(s
, p
, &local_err
);
1709 } else if (strstart(uri
, "fd:", &p
)) {
1710 fd_start_outgoing_migration(s
, p
, &local_err
);
1711 } else if (strstart(uri
, "file:", &p
)) {
1712 file_start_outgoing_migration(s
, p
, &local_err
);
1714 error_setg(&local_err
, QERR_INVALID_PARAMETER_VALUE
, "uri",
1715 "a valid migration protocol");
1716 migrate_set_state(&s
->state
, MIGRATION_STATUS_SETUP
,
1717 MIGRATION_STATUS_FAILED
);
1718 block_cleanup_parameters();
1722 if (!resume_requested
) {
1723 yank_unregister_instance(MIGRATION_YANK_INSTANCE
);
1725 migrate_fd_error(s
, local_err
);
1726 error_propagate(errp
, local_err
);
1731 void qmp_migrate_cancel(Error
**errp
)
1733 migration_cancel(NULL
);
1736 void qmp_migrate_continue(MigrationStatus state
, Error
**errp
)
1738 MigrationState
*s
= migrate_get_current();
1739 if (s
->state
!= state
) {
1740 error_setg(errp
, "Migration not in expected state: %s",
1741 MigrationStatus_str(s
->state
));
1744 qemu_sem_post(&s
->pause_sem
);
1747 /* migration thread support */
1749 * Something bad happened to the RP stream, mark an error
1750 * The caller shall print or trace something to indicate why
1752 static void mark_source_rp_bad(MigrationState
*s
)
1754 s
->rp_state
.error
= true;
1757 static struct rp_cmd_args
{
1758 ssize_t len
; /* -1 = variable */
1761 [MIG_RP_MSG_INVALID
] = { .len
= -1, .name
= "INVALID" },
1762 [MIG_RP_MSG_SHUT
] = { .len
= 4, .name
= "SHUT" },
1763 [MIG_RP_MSG_PONG
] = { .len
= 4, .name
= "PONG" },
1764 [MIG_RP_MSG_REQ_PAGES
] = { .len
= 12, .name
= "REQ_PAGES" },
1765 [MIG_RP_MSG_REQ_PAGES_ID
] = { .len
= -1, .name
= "REQ_PAGES_ID" },
1766 [MIG_RP_MSG_RECV_BITMAP
] = { .len
= -1, .name
= "RECV_BITMAP" },
1767 [MIG_RP_MSG_RESUME_ACK
] = { .len
= 4, .name
= "RESUME_ACK" },
1768 [MIG_RP_MSG_SWITCHOVER_ACK
] = { .len
= 0, .name
= "SWITCHOVER_ACK" },
1769 [MIG_RP_MSG_MAX
] = { .len
= -1, .name
= "MAX" },
1773 * Process a request for pages received on the return path,
1774 * We're allowed to send more than requested (e.g. to round to our page size)
1775 * and we don't need to send pages that have already been sent.
1777 static void migrate_handle_rp_req_pages(MigrationState
*ms
, const char* rbname
,
1778 ram_addr_t start
, size_t len
)
1780 long our_host_ps
= qemu_real_host_page_size();
1782 trace_migrate_handle_rp_req_pages(rbname
, start
, len
);
1785 * Since we currently insist on matching page sizes, just sanity check
1786 * we're being asked for whole host pages.
1788 if (!QEMU_IS_ALIGNED(start
, our_host_ps
) ||
1789 !QEMU_IS_ALIGNED(len
, our_host_ps
)) {
1790 error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT
1791 " len: %zd", __func__
, start
, len
);
1792 mark_source_rp_bad(ms
);
1796 if (ram_save_queue_pages(rbname
, start
, len
)) {
1797 mark_source_rp_bad(ms
);
1801 static int migrate_handle_rp_recv_bitmap(MigrationState
*s
, char *block_name
)
1803 RAMBlock
*block
= qemu_ram_block_by_name(block_name
);
1806 error_report("%s: invalid block name '%s'", __func__
, block_name
);
1810 /* Fetch the received bitmap and refresh the dirty bitmap */
1811 return ram_dirty_bitmap_reload(s
, block
);
1814 static int migrate_handle_rp_resume_ack(MigrationState
*s
, uint32_t value
)
1816 trace_source_return_path_thread_resume_ack(value
);
1818 if (value
!= MIGRATION_RESUME_ACK_VALUE
) {
1819 error_report("%s: illegal resume_ack value %"PRIu32
,
1824 /* Now both sides are active. */
1825 migrate_set_state(&s
->state
, MIGRATION_STATUS_POSTCOPY_RECOVER
,
1826 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1828 /* Notify send thread that time to continue send pages */
1829 qemu_sem_post(&s
->rp_state
.rp_sem
);
1835 * Release ms->rp_state.from_dst_file (and postcopy_qemufile_src if
1836 * existed) in a safe way.
1838 static void migration_release_dst_files(MigrationState
*ms
)
1842 WITH_QEMU_LOCK_GUARD(&ms
->qemu_file_lock
) {
1844 * Reset the from_dst_file pointer first before releasing it, as we
1845 * can't block within lock section
1847 file
= ms
->rp_state
.from_dst_file
;
1848 ms
->rp_state
.from_dst_file
= NULL
;
1852 * Do the same to postcopy fast path socket too if there is. No
1853 * locking needed because this qemufile should only be managed by
1854 * return path thread.
1856 if (ms
->postcopy_qemufile_src
) {
1857 migration_ioc_unregister_yank_from_file(ms
->postcopy_qemufile_src
);
1858 qemu_file_shutdown(ms
->postcopy_qemufile_src
);
1859 qemu_fclose(ms
->postcopy_qemufile_src
);
1860 ms
->postcopy_qemufile_src
= NULL
;
1867 * Handles messages sent on the return path towards the source VM
1870 static void *source_return_path_thread(void *opaque
)
1872 MigrationState
*ms
= opaque
;
1873 QEMUFile
*rp
= ms
->rp_state
.from_dst_file
;
1874 uint16_t header_len
, header_type
;
1876 uint32_t tmp32
, sibling_error
;
1877 ram_addr_t start
= 0; /* =0 to silence warning */
1878 size_t len
= 0, expected_len
;
1881 trace_source_return_path_thread_entry();
1882 rcu_register_thread();
1884 while (!ms
->rp_state
.error
&& !qemu_file_get_error(rp
) &&
1885 migration_is_setup_or_active(ms
->state
)) {
1886 trace_source_return_path_thread_loop_top();
1887 header_type
= qemu_get_be16(rp
);
1888 header_len
= qemu_get_be16(rp
);
1890 if (qemu_file_get_error(rp
)) {
1891 mark_source_rp_bad(ms
);
1895 if (header_type
>= MIG_RP_MSG_MAX
||
1896 header_type
== MIG_RP_MSG_INVALID
) {
1897 error_report("RP: Received invalid message 0x%04x length 0x%04x",
1898 header_type
, header_len
);
1899 mark_source_rp_bad(ms
);
1903 if ((rp_cmd_args
[header_type
].len
!= -1 &&
1904 header_len
!= rp_cmd_args
[header_type
].len
) ||
1905 header_len
> sizeof(buf
)) {
1906 error_report("RP: Received '%s' message (0x%04x) with"
1907 "incorrect length %d expecting %zu",
1908 rp_cmd_args
[header_type
].name
, header_type
, header_len
,
1909 (size_t)rp_cmd_args
[header_type
].len
);
1910 mark_source_rp_bad(ms
);
1914 /* We know we've got a valid header by this point */
1915 res
= qemu_get_buffer(rp
, buf
, header_len
);
1916 if (res
!= header_len
) {
1917 error_report("RP: Failed reading data for message 0x%04x"
1918 " read %d expected %d",
1919 header_type
, res
, header_len
);
1920 mark_source_rp_bad(ms
);
1924 /* OK, we have the message and the data */
1925 switch (header_type
) {
1926 case MIG_RP_MSG_SHUT
:
1927 sibling_error
= ldl_be_p(buf
);
1928 trace_source_return_path_thread_shut(sibling_error
);
1929 if (sibling_error
) {
1930 error_report("RP: Sibling indicated error %d", sibling_error
);
1931 mark_source_rp_bad(ms
);
1934 * We'll let the main thread deal with closing the RP
1935 * we could do a shutdown(2) on it, but we're the only user
1936 * anyway, so there's nothing gained.
1940 case MIG_RP_MSG_PONG
:
1941 tmp32
= ldl_be_p(buf
);
1942 trace_source_return_path_thread_pong(tmp32
);
1943 qemu_sem_post(&ms
->rp_state
.rp_pong_acks
);
1946 case MIG_RP_MSG_REQ_PAGES
:
1947 start
= ldq_be_p(buf
);
1948 len
= ldl_be_p(buf
+ 8);
1949 migrate_handle_rp_req_pages(ms
, NULL
, start
, len
);
1952 case MIG_RP_MSG_REQ_PAGES_ID
:
1953 expected_len
= 12 + 1; /* header + termination */
1955 if (header_len
>= expected_len
) {
1956 start
= ldq_be_p(buf
);
1957 len
= ldl_be_p(buf
+ 8);
1958 /* Now we expect an idstr */
1959 tmp32
= buf
[12]; /* Length of the following idstr */
1960 buf
[13 + tmp32
] = '\0';
1961 expected_len
+= tmp32
;
1963 if (header_len
!= expected_len
) {
1964 error_report("RP: Req_Page_id with length %d expecting %zd",
1965 header_len
, expected_len
);
1966 mark_source_rp_bad(ms
);
1969 migrate_handle_rp_req_pages(ms
, (char *)&buf
[13], start
, len
);
1972 case MIG_RP_MSG_RECV_BITMAP
:
1973 if (header_len
< 1) {
1974 error_report("%s: missing block name", __func__
);
1975 mark_source_rp_bad(ms
);
1978 /* Format: len (1B) + idstr (<255B). This ends the idstr. */
1979 buf
[buf
[0] + 1] = '\0';
1980 if (migrate_handle_rp_recv_bitmap(ms
, (char *)(buf
+ 1))) {
1981 mark_source_rp_bad(ms
);
1986 case MIG_RP_MSG_RESUME_ACK
:
1987 tmp32
= ldl_be_p(buf
);
1988 if (migrate_handle_rp_resume_ack(ms
, tmp32
)) {
1989 mark_source_rp_bad(ms
);
1994 case MIG_RP_MSG_SWITCHOVER_ACK
:
1995 ms
->switchover_acked
= true;
1996 trace_source_return_path_thread_switchover_acked();
2005 if (qemu_file_get_error(rp
)) {
2006 trace_source_return_path_thread_bad_end();
2007 mark_source_rp_bad(ms
);
2010 trace_source_return_path_thread_end();
2011 rcu_unregister_thread();
2015 static int open_return_path_on_source(MigrationState
*ms
)
2017 ms
->rp_state
.from_dst_file
= qemu_file_get_return_path(ms
->to_dst_file
);
2018 if (!ms
->rp_state
.from_dst_file
) {
2022 trace_open_return_path_on_source();
2024 qemu_thread_create(&ms
->rp_state
.rp_thread
, "return path",
2025 source_return_path_thread
, ms
, QEMU_THREAD_JOINABLE
);
2026 ms
->rp_state
.rp_thread_created
= true;
2028 trace_open_return_path_on_source_continue();
2033 /* Returns 0 if the RP was ok, otherwise there was an error on the RP */
2034 static int await_return_path_close_on_source(MigrationState
*ms
)
2038 if (!ms
->rp_state
.rp_thread_created
) {
2042 trace_migration_return_path_end_before();
2045 * If this is a normal exit then the destination will send a SHUT
2046 * and the rp_thread will exit, however if there's an error we
2047 * need to cause it to exit. shutdown(2), if we have it, will
2048 * cause it to unblock if it's stuck waiting for the destination.
2050 WITH_QEMU_LOCK_GUARD(&ms
->qemu_file_lock
) {
2051 if (ms
->to_dst_file
&& ms
->rp_state
.from_dst_file
&&
2052 qemu_file_get_error(ms
->to_dst_file
)) {
2053 qemu_file_shutdown(ms
->rp_state
.from_dst_file
);
2057 trace_await_return_path_close_on_source_joining();
2058 qemu_thread_join(&ms
->rp_state
.rp_thread
);
2059 ms
->rp_state
.rp_thread_created
= false;
2060 trace_await_return_path_close_on_source_close();
2062 ret
= ms
->rp_state
.error
;
2063 ms
->rp_state
.error
= false;
2065 migration_release_dst_files(ms
);
2067 trace_migration_return_path_end_after(ret
);
2072 migration_wait_main_channel(MigrationState
*ms
)
2074 /* Wait until one PONG message received */
2075 qemu_sem_wait(&ms
->rp_state
.rp_pong_acks
);
2079 * Switch from normal iteration to postcopy
2080 * Returns non-0 on error
2082 static int postcopy_start(MigrationState
*ms
, Error
**errp
)
2085 QIOChannelBuffer
*bioc
;
2087 int64_t time_at_stop
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
2088 uint64_t bandwidth
= migrate_max_postcopy_bandwidth();
2089 bool restart_block
= false;
2090 int cur_state
= MIGRATION_STATUS_ACTIVE
;
2092 if (migrate_postcopy_preempt()) {
2093 migration_wait_main_channel(ms
);
2094 if (postcopy_preempt_establish_channel(ms
)) {
2095 migrate_set_state(&ms
->state
, ms
->state
, MIGRATION_STATUS_FAILED
);
2100 if (!migrate_pause_before_switchover()) {
2101 migrate_set_state(&ms
->state
, MIGRATION_STATUS_ACTIVE
,
2102 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
2105 trace_postcopy_start();
2106 qemu_mutex_lock_iothread();
2107 trace_postcopy_start_set_run();
2109 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER
, NULL
);
2110 global_state_store();
2111 ret
= vm_stop_force_state(RUN_STATE_FINISH_MIGRATE
);
2116 ret
= migration_maybe_pause(ms
, &cur_state
,
2117 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
2122 ret
= bdrv_inactivate_all();
2126 restart_block
= true;
2129 * Cause any non-postcopiable, but iterative devices to
2130 * send out their final data.
2132 qemu_savevm_state_complete_precopy(ms
->to_dst_file
, true, false);
2135 * in Finish migrate and with the io-lock held everything should
2136 * be quiet, but we've potentially still got dirty pages and we
2137 * need to tell the destination to throw any pages it's already received
2140 if (migrate_postcopy_ram()) {
2141 ram_postcopy_send_discard_bitmap(ms
);
2145 * send rest of state - note things that are doing postcopy
2146 * will notice we're in POSTCOPY_ACTIVE and not actually
2147 * wrap their state up here
2149 migration_rate_set(bandwidth
);
2150 if (migrate_postcopy_ram()) {
2151 /* Ping just for debugging, helps line traces up */
2152 qemu_savevm_send_ping(ms
->to_dst_file
, 2);
2156 * While loading the device state we may trigger page transfer
2157 * requests and the fd must be free to process those, and thus
2158 * the destination must read the whole device state off the fd before
2159 * it starts processing it. Unfortunately the ad-hoc migration format
2160 * doesn't allow the destination to know the size to read without fully
2161 * parsing it through each devices load-state code (especially the open
2162 * coded devices that use get/put).
2163 * So we wrap the device state up in a package with a length at the start;
2164 * to do this we use a qemu_buf to hold the whole of the device state.
2166 bioc
= qio_channel_buffer_new(4096);
2167 qio_channel_set_name(QIO_CHANNEL(bioc
), "migration-postcopy-buffer");
2168 fb
= qemu_file_new_output(QIO_CHANNEL(bioc
));
2169 object_unref(OBJECT(bioc
));
2172 * Make sure the receiver can get incoming pages before we send the rest
2175 qemu_savevm_send_postcopy_listen(fb
);
2177 qemu_savevm_state_complete_precopy(fb
, false, false);
2178 if (migrate_postcopy_ram()) {
2179 qemu_savevm_send_ping(fb
, 3);
2182 qemu_savevm_send_postcopy_run(fb
);
2184 /* <><> end of stuff going into the package */
2186 /* Last point of recovery; as soon as we send the package the destination
2187 * can open devices and potentially start running.
2188 * Lets just check again we've not got any errors.
2190 ret
= qemu_file_get_error(ms
->to_dst_file
);
2192 error_setg(errp
, "postcopy_start: Migration stream errored (pre package)");
2196 restart_block
= false;
2198 /* Now send that blob */
2199 if (qemu_savevm_send_packaged(ms
->to_dst_file
, bioc
->data
, bioc
->usage
)) {
2204 /* Send a notify to give a chance for anything that needs to happen
2205 * at the transition to postcopy and after the device state; in particular
2206 * spice needs to trigger a transition now
2208 ms
->postcopy_after_devices
= true;
2209 notifier_list_notify(&migration_state_notifiers
, ms
);
2211 ms
->downtime
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) - time_at_stop
;
2213 qemu_mutex_unlock_iothread();
2215 if (migrate_postcopy_ram()) {
2217 * Although this ping is just for debug, it could potentially be
2218 * used for getting a better measurement of downtime at the source.
2220 qemu_savevm_send_ping(ms
->to_dst_file
, 4);
2223 if (migrate_release_ram()) {
2224 ram_postcopy_migrated_memory_release(ms
);
2227 ret
= qemu_file_get_error(ms
->to_dst_file
);
2229 error_setg(errp
, "postcopy_start: Migration stream errored");
2230 migrate_set_state(&ms
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
2231 MIGRATION_STATUS_FAILED
);
2234 trace_postcopy_preempt_enabled(migrate_postcopy_preempt());
2241 migrate_set_state(&ms
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
2242 MIGRATION_STATUS_FAILED
);
2243 if (restart_block
) {
2244 /* A failure happened early enough that we know the destination hasn't
2245 * accessed block devices, so we're safe to recover.
2247 Error
*local_err
= NULL
;
2249 bdrv_activate_all(&local_err
);
2251 error_report_err(local_err
);
2254 qemu_mutex_unlock_iothread();
2259 * migration_maybe_pause: Pause if required to by
2260 * migrate_pause_before_switchover called with the iothread locked
2261 * Returns: 0 on success
2263 static int migration_maybe_pause(MigrationState
*s
,
2264 int *current_active_state
,
2267 if (!migrate_pause_before_switchover()) {
2271 /* Since leaving this state is not atomic with posting the semaphore
2272 * it's possible that someone could have issued multiple migrate_continue
2273 * and the semaphore is incorrectly positive at this point;
2274 * the docs say it's undefined to reinit a semaphore that's already
2275 * init'd, so use timedwait to eat up any existing posts.
2277 while (qemu_sem_timedwait(&s
->pause_sem
, 1) == 0) {
2278 /* This block intentionally left blank */
2282 * If the migration is cancelled when it is in the completion phase,
2283 * the migration state is set to MIGRATION_STATUS_CANCELLING.
2284 * So we don't need to wait a semaphore, otherwise we would always
2285 * wait for the 'pause_sem' semaphore.
2287 if (s
->state
!= MIGRATION_STATUS_CANCELLING
) {
2288 qemu_mutex_unlock_iothread();
2289 migrate_set_state(&s
->state
, *current_active_state
,
2290 MIGRATION_STATUS_PRE_SWITCHOVER
);
2291 qemu_sem_wait(&s
->pause_sem
);
2292 migrate_set_state(&s
->state
, MIGRATION_STATUS_PRE_SWITCHOVER
,
2294 *current_active_state
= new_state
;
2295 qemu_mutex_lock_iothread();
2298 return s
->state
== new_state
? 0 : -EINVAL
;
2302 * migration_completion: Used by migration_thread when there's not much left.
2303 * The caller 'breaks' the loop when this returns.
2305 * @s: Current migration state
2307 static void migration_completion(MigrationState
*s
)
2310 int current_active_state
= s
->state
;
2312 if (s
->state
== MIGRATION_STATUS_ACTIVE
) {
2313 qemu_mutex_lock_iothread();
2314 s
->downtime_start
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
2315 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER
, NULL
);
2317 s
->vm_old_state
= runstate_get();
2318 global_state_store();
2320 ret
= vm_stop_force_state(RUN_STATE_FINISH_MIGRATE
);
2321 trace_migration_completion_vm_stop(ret
);
2323 ret
= migration_maybe_pause(s
, ¤t_active_state
,
2324 MIGRATION_STATUS_DEVICE
);
2328 * Inactivate disks except in COLO, and track that we
2329 * have done so in order to remember to reactivate
2330 * them if migration fails or is cancelled.
2332 s
->block_inactive
= !migrate_colo();
2333 migration_rate_set(RATE_LIMIT_DISABLED
);
2334 ret
= qemu_savevm_state_complete_precopy(s
->to_dst_file
, false,
2338 qemu_mutex_unlock_iothread();
2343 } else if (s
->state
== MIGRATION_STATUS_POSTCOPY_ACTIVE
) {
2344 trace_migration_completion_postcopy_end();
2346 qemu_mutex_lock_iothread();
2347 qemu_savevm_state_complete_postcopy(s
->to_dst_file
);
2348 qemu_mutex_unlock_iothread();
2351 * Shutdown the postcopy fast path thread. This is only needed
2352 * when dest QEMU binary is old (7.1/7.2). QEMU 8.0+ doesn't need
2355 if (migrate_postcopy_preempt() && s
->preempt_pre_7_2
) {
2356 postcopy_preempt_shutdown_file(s
);
2359 trace_migration_completion_postcopy_end_after_complete();
2364 if (await_return_path_close_on_source(s
)) {
2368 if (qemu_file_get_error(s
->to_dst_file
)) {
2369 trace_migration_completion_file_err();
2373 if (migrate_colo() && s
->state
== MIGRATION_STATUS_ACTIVE
) {
2374 /* COLO does not support postcopy */
2375 migrate_set_state(&s
->state
, MIGRATION_STATUS_ACTIVE
,
2376 MIGRATION_STATUS_COLO
);
2378 migrate_set_state(&s
->state
, current_active_state
,
2379 MIGRATION_STATUS_COMPLETED
);
2385 if (s
->block_inactive
&& (s
->state
== MIGRATION_STATUS_ACTIVE
||
2386 s
->state
== MIGRATION_STATUS_DEVICE
)) {
2388 * If not doing postcopy, vm_start() will be called: let's
2389 * regain control on images.
2391 Error
*local_err
= NULL
;
2393 qemu_mutex_lock_iothread();
2394 bdrv_activate_all(&local_err
);
2396 error_report_err(local_err
);
2398 s
->block_inactive
= false;
2400 qemu_mutex_unlock_iothread();
2403 migrate_set_state(&s
->state
, current_active_state
,
2404 MIGRATION_STATUS_FAILED
);
2408 * bg_migration_completion: Used by bg_migration_thread when after all the
2409 * RAM has been saved. The caller 'breaks' the loop when this returns.
2411 * @s: Current migration state
2413 static void bg_migration_completion(MigrationState
*s
)
2415 int current_active_state
= s
->state
;
2417 if (s
->state
== MIGRATION_STATUS_ACTIVE
) {
2419 * By this moment we have RAM content saved into the migration stream.
2420 * The next step is to flush the non-RAM content (device state)
2421 * right after the ram content. The device state has been stored into
2422 * the temporary buffer before RAM saving started.
2424 qemu_put_buffer(s
->to_dst_file
, s
->bioc
->data
, s
->bioc
->usage
);
2425 qemu_fflush(s
->to_dst_file
);
2426 } else if (s
->state
== MIGRATION_STATUS_CANCELLING
) {
2430 if (qemu_file_get_error(s
->to_dst_file
)) {
2431 trace_migration_completion_file_err();
2435 migrate_set_state(&s
->state
, current_active_state
,
2436 MIGRATION_STATUS_COMPLETED
);
2440 migrate_set_state(&s
->state
, current_active_state
,
2441 MIGRATION_STATUS_FAILED
);
2444 typedef enum MigThrError
{
2445 /* No error detected */
2446 MIG_THR_ERR_NONE
= 0,
2447 /* Detected error, but resumed successfully */
2448 MIG_THR_ERR_RECOVERED
= 1,
2449 /* Detected fatal error, need to exit */
2450 MIG_THR_ERR_FATAL
= 2,
2453 static int postcopy_resume_handshake(MigrationState
*s
)
2455 qemu_savevm_send_postcopy_resume(s
->to_dst_file
);
2457 while (s
->state
== MIGRATION_STATUS_POSTCOPY_RECOVER
) {
2458 qemu_sem_wait(&s
->rp_state
.rp_sem
);
2461 if (s
->state
== MIGRATION_STATUS_POSTCOPY_ACTIVE
) {
2468 /* Return zero if success, or <0 for error */
2469 static int postcopy_do_resume(MigrationState
*s
)
2474 * Call all the resume_prepare() hooks, so that modules can be
2475 * ready for the migration resume.
2477 ret
= qemu_savevm_state_resume_prepare(s
);
2479 error_report("%s: resume_prepare() failure detected: %d",
2485 * If preempt is enabled, re-establish the preempt channel. Note that
2486 * we do it after resume prepare to make sure the main channel will be
2487 * created before the preempt channel. E.g. with weak network, the
2488 * dest QEMU may get messed up with the preempt and main channels on
2489 * the order of connection setup. This guarantees the correct order.
2491 ret
= postcopy_preempt_establish_channel(s
);
2493 error_report("%s: postcopy_preempt_establish_channel(): %d",
2499 * Last handshake with destination on the resume (destination will
2500 * switch to postcopy-active afterwards)
2502 ret
= postcopy_resume_handshake(s
);
2504 error_report("%s: handshake failed: %d", __func__
, ret
);
2512 * We don't return until we are in a safe state to continue current
2513 * postcopy migration. Returns MIG_THR_ERR_RECOVERED if recovered, or
2514 * MIG_THR_ERR_FATAL if unrecovery failure happened.
2516 static MigThrError
postcopy_pause(MigrationState
*s
)
2518 assert(s
->state
== MIGRATION_STATUS_POSTCOPY_ACTIVE
);
2524 * Current channel is possibly broken. Release it. Note that this is
2525 * guaranteed even without lock because to_dst_file should only be
2526 * modified by the migration thread. That also guarantees that the
2527 * unregister of yank is safe too without the lock. It should be safe
2528 * even to be within the qemu_file_lock, but we didn't do that to avoid
2529 * taking more mutex (yank_lock) within qemu_file_lock. TL;DR: we make
2530 * the qemu_file_lock critical section as small as possible.
2532 assert(s
->to_dst_file
);
2533 migration_ioc_unregister_yank_from_file(s
->to_dst_file
);
2534 qemu_mutex_lock(&s
->qemu_file_lock
);
2535 file
= s
->to_dst_file
;
2536 s
->to_dst_file
= NULL
;
2537 qemu_mutex_unlock(&s
->qemu_file_lock
);
2539 qemu_file_shutdown(file
);
2543 * We're already pausing, so ignore any errors on the return
2544 * path and just wait for the thread to finish. It will be
2545 * re-created when we resume.
2547 await_return_path_close_on_source(s
);
2549 migrate_set_state(&s
->state
, s
->state
,
2550 MIGRATION_STATUS_POSTCOPY_PAUSED
);
2552 error_report("Detected IO failure for postcopy. "
2553 "Migration paused.");
2556 * We wait until things fixed up. Then someone will setup the
2557 * status back for us.
2559 while (s
->state
== MIGRATION_STATUS_POSTCOPY_PAUSED
) {
2560 qemu_sem_wait(&s
->postcopy_pause_sem
);
2563 if (s
->state
== MIGRATION_STATUS_POSTCOPY_RECOVER
) {
2564 /* Woken up by a recover procedure. Give it a shot */
2566 /* Do the resume logic */
2567 if (postcopy_do_resume(s
) == 0) {
2568 /* Let's continue! */
2569 trace_postcopy_pause_continued();
2570 return MIG_THR_ERR_RECOVERED
;
2573 * Something wrong happened during the recovery, let's
2574 * pause again. Pause is always better than throwing
2580 /* This is not right... Time to quit. */
2581 return MIG_THR_ERR_FATAL
;
2586 static MigThrError
migration_detect_error(MigrationState
*s
)
2589 int state
= s
->state
;
2590 Error
*local_error
= NULL
;
2592 if (state
== MIGRATION_STATUS_CANCELLING
||
2593 state
== MIGRATION_STATUS_CANCELLED
) {
2594 /* End the migration, but don't set the state to failed */
2595 return MIG_THR_ERR_FATAL
;
2599 * Try to detect any file errors. Note that postcopy_qemufile_src will
2600 * be NULL when postcopy preempt is not enabled.
2602 ret
= qemu_file_get_error_obj_any(s
->to_dst_file
,
2603 s
->postcopy_qemufile_src
,
2606 /* Everything is fine */
2607 assert(!local_error
);
2608 return MIG_THR_ERR_NONE
;
2612 migrate_set_error(s
, local_error
);
2613 error_free(local_error
);
2616 if (state
== MIGRATION_STATUS_POSTCOPY_ACTIVE
&& ret
) {
2618 * For postcopy, we allow the network to be down for a
2619 * while. After that, it can be continued by a
2622 return postcopy_pause(s
);
2625 * For precopy (or postcopy with error outside IO), we fail
2628 migrate_set_state(&s
->state
, state
, MIGRATION_STATUS_FAILED
);
2629 trace_migration_thread_file_err();
2631 /* Time to stop the migration, now. */
2632 return MIG_THR_ERR_FATAL
;
2636 static void migration_calculate_complete(MigrationState
*s
)
2638 uint64_t bytes
= migration_transferred_bytes(s
->to_dst_file
);
2639 int64_t end_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
2640 int64_t transfer_time
;
2642 s
->total_time
= end_time
- s
->start_time
;
2645 * It's still not set, so we are precopy migration. For
2646 * postcopy, downtime is calculated during postcopy_start().
2648 s
->downtime
= end_time
- s
->downtime_start
;
2651 transfer_time
= s
->total_time
- s
->setup_time
;
2652 if (transfer_time
) {
2653 s
->mbps
= ((double) bytes
* 8.0) / transfer_time
/ 1000;
2657 static void update_iteration_initial_status(MigrationState
*s
)
2660 * Update these three fields at the same time to avoid mismatch info lead
2661 * wrong speed calculation.
2663 s
->iteration_start_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
2664 s
->iteration_initial_bytes
= migration_transferred_bytes(s
->to_dst_file
);
2665 s
->iteration_initial_pages
= ram_get_total_transferred_pages();
2668 static void migration_update_counters(MigrationState
*s
,
2669 int64_t current_time
)
2671 uint64_t transferred
, transferred_pages
, time_spent
;
2672 uint64_t current_bytes
; /* bytes transferred since the beginning */
2675 if (current_time
< s
->iteration_start_time
+ BUFFER_DELAY
) {
2679 current_bytes
= migration_transferred_bytes(s
->to_dst_file
);
2680 transferred
= current_bytes
- s
->iteration_initial_bytes
;
2681 time_spent
= current_time
- s
->iteration_start_time
;
2682 bandwidth
= (double)transferred
/ time_spent
;
2683 s
->threshold_size
= bandwidth
* migrate_downtime_limit();
2685 s
->mbps
= (((double) transferred
* 8.0) /
2686 ((double) time_spent
/ 1000.0)) / 1000.0 / 1000.0;
2688 transferred_pages
= ram_get_total_transferred_pages() -
2689 s
->iteration_initial_pages
;
2690 s
->pages_per_second
= (double) transferred_pages
/
2691 (((double) time_spent
/ 1000.0));
2694 * if we haven't sent anything, we don't want to
2695 * recalculate. 10000 is a small enough number for our purposes
2697 if (stat64_get(&mig_stats
.dirty_pages_rate
) &&
2698 transferred
> 10000) {
2699 s
->expected_downtime
=
2700 stat64_get(&mig_stats
.dirty_bytes_last_sync
) / bandwidth
;
2703 migration_rate_reset(s
->to_dst_file
);
2705 update_iteration_initial_status(s
);
2707 trace_migrate_transferred(transferred
, time_spent
,
2708 bandwidth
, s
->threshold_size
);
2711 static bool migration_can_switchover(MigrationState
*s
)
2713 if (!migrate_switchover_ack()) {
2717 /* No reason to wait for switchover ACK if VM is stopped */
2718 if (!runstate_is_running()) {
2722 return s
->switchover_acked
;
2725 /* Migration thread iteration status */
2727 MIG_ITERATE_RESUME
, /* Resume current iteration */
2728 MIG_ITERATE_SKIP
, /* Skip current iteration */
2729 MIG_ITERATE_BREAK
, /* Break the loop */
2733 * Return true if continue to the next iteration directly, false
2736 static MigIterateState
migration_iteration_run(MigrationState
*s
)
2738 uint64_t must_precopy
, can_postcopy
;
2739 Error
*local_err
= NULL
;
2740 bool in_postcopy
= s
->state
== MIGRATION_STATUS_POSTCOPY_ACTIVE
;
2741 bool can_switchover
= migration_can_switchover(s
);
2743 qemu_savevm_state_pending_estimate(&must_precopy
, &can_postcopy
);
2744 uint64_t pending_size
= must_precopy
+ can_postcopy
;
2746 trace_migrate_pending_estimate(pending_size
, must_precopy
, can_postcopy
);
2748 if (must_precopy
<= s
->threshold_size
) {
2749 qemu_savevm_state_pending_exact(&must_precopy
, &can_postcopy
);
2750 pending_size
= must_precopy
+ can_postcopy
;
2751 trace_migrate_pending_exact(pending_size
, must_precopy
, can_postcopy
);
2754 if ((!pending_size
|| pending_size
< s
->threshold_size
) && can_switchover
) {
2755 trace_migration_thread_low_pending(pending_size
);
2756 migration_completion(s
);
2757 return MIG_ITERATE_BREAK
;
2760 /* Still a significant amount to transfer */
2761 if (!in_postcopy
&& must_precopy
<= s
->threshold_size
&& can_switchover
&&
2762 qatomic_read(&s
->start_postcopy
)) {
2763 if (postcopy_start(s
, &local_err
)) {
2764 migrate_set_error(s
, local_err
);
2765 error_report_err(local_err
);
2767 return MIG_ITERATE_SKIP
;
2770 /* Just another iteration step */
2771 qemu_savevm_state_iterate(s
->to_dst_file
, in_postcopy
);
2772 return MIG_ITERATE_RESUME
;
2775 static void migration_iteration_finish(MigrationState
*s
)
2777 /* If we enabled cpu throttling for auto-converge, turn it off. */
2778 cpu_throttle_stop();
2780 qemu_mutex_lock_iothread();
2782 case MIGRATION_STATUS_COMPLETED
:
2783 migration_calculate_complete(s
);
2784 runstate_set(RUN_STATE_POSTMIGRATE
);
2786 case MIGRATION_STATUS_COLO
:
2787 assert(migrate_colo());
2788 migrate_start_colo_process(s
);
2789 s
->vm_old_state
= RUN_STATE_RUNNING
;
2791 case MIGRATION_STATUS_FAILED
:
2792 case MIGRATION_STATUS_CANCELLED
:
2793 case MIGRATION_STATUS_CANCELLING
:
2794 if (s
->vm_old_state
== RUN_STATE_RUNNING
) {
2795 if (!runstate_check(RUN_STATE_SHUTDOWN
)) {
2799 if (runstate_check(RUN_STATE_FINISH_MIGRATE
)) {
2800 runstate_set(s
->vm_old_state
);
2806 /* Should not reach here, but if so, forgive the VM. */
2807 error_report("%s: Unknown ending state %d", __func__
, s
->state
);
2810 migrate_fd_cleanup_schedule(s
);
2811 qemu_mutex_unlock_iothread();
2814 static void bg_migration_iteration_finish(MigrationState
*s
)
2817 * Stop tracking RAM writes - un-protect memory, un-register UFFD
2818 * memory ranges, flush kernel wait queues and wake up threads
2819 * waiting for write fault to be resolved.
2821 ram_write_tracking_stop();
2823 qemu_mutex_lock_iothread();
2825 case MIGRATION_STATUS_COMPLETED
:
2826 migration_calculate_complete(s
);
2829 case MIGRATION_STATUS_ACTIVE
:
2830 case MIGRATION_STATUS_FAILED
:
2831 case MIGRATION_STATUS_CANCELLED
:
2832 case MIGRATION_STATUS_CANCELLING
:
2836 /* Should not reach here, but if so, forgive the VM. */
2837 error_report("%s: Unknown ending state %d", __func__
, s
->state
);
2841 migrate_fd_cleanup_schedule(s
);
2842 qemu_mutex_unlock_iothread();
2846 * Return true if continue to the next iteration directly, false
2849 static MigIterateState
bg_migration_iteration_run(MigrationState
*s
)
2853 res
= qemu_savevm_state_iterate(s
->to_dst_file
, false);
2855 bg_migration_completion(s
);
2856 return MIG_ITERATE_BREAK
;
2859 return MIG_ITERATE_RESUME
;
2862 void migration_make_urgent_request(void)
2864 qemu_sem_post(&migrate_get_current()->rate_limit_sem
);
2867 void migration_consume_urgent_request(void)
2869 qemu_sem_wait(&migrate_get_current()->rate_limit_sem
);
2872 /* Returns true if the rate limiting was broken by an urgent request */
2873 bool migration_rate_limit(void)
2875 int64_t now
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
2876 MigrationState
*s
= migrate_get_current();
2878 bool urgent
= false;
2879 migration_update_counters(s
, now
);
2880 if (migration_rate_exceeded(s
->to_dst_file
)) {
2882 if (qemu_file_get_error(s
->to_dst_file
)) {
2886 * Wait for a delay to do rate limiting OR
2887 * something urgent to post the semaphore.
2889 int ms
= s
->iteration_start_time
+ BUFFER_DELAY
- now
;
2890 trace_migration_rate_limit_pre(ms
);
2891 if (qemu_sem_timedwait(&s
->rate_limit_sem
, ms
) == 0) {
2893 * We were woken by one or more urgent things but
2894 * the timedwait will have consumed one of them.
2895 * The service routine for the urgent wake will dec
2896 * the semaphore itself for each item it consumes,
2897 * so add this one we just eat back.
2899 qemu_sem_post(&s
->rate_limit_sem
);
2902 trace_migration_rate_limit_post(urgent
);
2908 * if failover devices are present, wait they are completely
2912 static void qemu_savevm_wait_unplug(MigrationState
*s
, int old_state
,
2915 if (qemu_savevm_state_guest_unplug_pending()) {
2916 migrate_set_state(&s
->state
, old_state
, MIGRATION_STATUS_WAIT_UNPLUG
);
2918 while (s
->state
== MIGRATION_STATUS_WAIT_UNPLUG
&&
2919 qemu_savevm_state_guest_unplug_pending()) {
2920 qemu_sem_timedwait(&s
->wait_unplug_sem
, 250);
2922 if (s
->state
!= MIGRATION_STATUS_WAIT_UNPLUG
) {
2923 int timeout
= 120; /* 30 seconds */
2925 * migration has been canceled
2926 * but as we have started an unplug we must wait the end
2927 * to be able to plug back the card
2929 while (timeout
-- && qemu_savevm_state_guest_unplug_pending()) {
2930 qemu_sem_timedwait(&s
->wait_unplug_sem
, 250);
2932 if (qemu_savevm_state_guest_unplug_pending() &&
2934 warn_report("migration: partially unplugged device on "
2939 migrate_set_state(&s
->state
, MIGRATION_STATUS_WAIT_UNPLUG
, new_state
);
2941 migrate_set_state(&s
->state
, old_state
, new_state
);
2946 * Master migration thread on the source VM.
2947 * It drives the migration and pumps the data down the outgoing channel.
2949 static void *migration_thread(void *opaque
)
2951 MigrationState
*s
= opaque
;
2952 MigrationThread
*thread
= NULL
;
2953 int64_t setup_start
= qemu_clock_get_ms(QEMU_CLOCK_HOST
);
2954 MigThrError thr_error
;
2955 bool urgent
= false;
2957 thread
= migration_threads_add("live_migration", qemu_get_thread_id());
2959 rcu_register_thread();
2961 object_ref(OBJECT(s
));
2962 update_iteration_initial_status(s
);
2964 qemu_savevm_state_header(s
->to_dst_file
);
2967 * If we opened the return path, we need to make sure dst has it
2970 if (s
->rp_state
.rp_thread_created
) {
2971 /* Now tell the dest that it should open its end so it can reply */
2972 qemu_savevm_send_open_return_path(s
->to_dst_file
);
2974 /* And do a ping that will make stuff easier to debug */
2975 qemu_savevm_send_ping(s
->to_dst_file
, 1);
2978 if (migrate_postcopy()) {
2980 * Tell the destination that we *might* want to do postcopy later;
2981 * if the other end can't do postcopy it should fail now, nice and
2984 qemu_savevm_send_postcopy_advise(s
->to_dst_file
);
2987 if (migrate_colo()) {
2988 /* Notify migration destination that we enable COLO */
2989 qemu_savevm_send_colo_enable(s
->to_dst_file
);
2992 qemu_savevm_state_setup(s
->to_dst_file
);
2994 qemu_savevm_wait_unplug(s
, MIGRATION_STATUS_SETUP
,
2995 MIGRATION_STATUS_ACTIVE
);
2997 s
->setup_time
= qemu_clock_get_ms(QEMU_CLOCK_HOST
) - setup_start
;
2999 trace_migration_thread_setup_complete();
3001 while (migration_is_active(s
)) {
3002 if (urgent
|| !migration_rate_exceeded(s
->to_dst_file
)) {
3003 MigIterateState iter_state
= migration_iteration_run(s
);
3004 if (iter_state
== MIG_ITERATE_SKIP
) {
3006 } else if (iter_state
== MIG_ITERATE_BREAK
) {
3012 * Try to detect any kind of failures, and see whether we
3013 * should stop the migration now.
3015 thr_error
= migration_detect_error(s
);
3016 if (thr_error
== MIG_THR_ERR_FATAL
) {
3017 /* Stop migration */
3019 } else if (thr_error
== MIG_THR_ERR_RECOVERED
) {
3021 * Just recovered from a e.g. network failure, reset all
3022 * the local variables. This is important to avoid
3023 * breaking transferred_bytes and bandwidth calculation
3025 update_iteration_initial_status(s
);
3028 urgent
= migration_rate_limit();
3031 trace_migration_thread_after_loop();
3032 migration_iteration_finish(s
);
3033 object_unref(OBJECT(s
));
3034 rcu_unregister_thread();
3035 migration_threads_remove(thread
);
3039 static void bg_migration_vm_start_bh(void *opaque
)
3041 MigrationState
*s
= opaque
;
3043 qemu_bh_delete(s
->vm_start_bh
);
3044 s
->vm_start_bh
= NULL
;
3047 s
->downtime
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) - s
->downtime_start
;
3051 * Background snapshot thread, based on live migration code.
3052 * This is an alternative implementation of live migration mechanism
3053 * introduced specifically to support background snapshots.
3055 * It takes advantage of userfault_fd write protection mechanism introduced
3056 * in v5.7 kernel. Compared to existing dirty page logging migration much
3057 * lesser stream traffic is produced resulting in smaller snapshot images,
3058 * simply cause of no page duplicates can get into the stream.
3060 * Another key point is that generated vmstate stream reflects machine state
3061 * 'frozen' at the beginning of snapshot creation compared to dirty page logging
3062 * mechanism, which effectively results in that saved snapshot is the state of VM
3063 * at the end of the process.
3065 static void *bg_migration_thread(void *opaque
)
3067 MigrationState
*s
= opaque
;
3068 int64_t setup_start
;
3069 MigThrError thr_error
;
3071 bool early_fail
= true;
3073 rcu_register_thread();
3074 object_ref(OBJECT(s
));
3076 migration_rate_set(RATE_LIMIT_DISABLED
);
3078 setup_start
= qemu_clock_get_ms(QEMU_CLOCK_HOST
);
3080 * We want to save vmstate for the moment when migration has been
3081 * initiated but also we want to save RAM content while VM is running.
3082 * The RAM content should appear first in the vmstate. So, we first
3083 * stash the non-RAM part of the vmstate to the temporary buffer,
3084 * then write RAM part of the vmstate to the migration stream
3085 * with vCPUs running and, finally, write stashed non-RAM part of
3086 * the vmstate from the buffer to the migration stream.
3088 s
->bioc
= qio_channel_buffer_new(512 * 1024);
3089 qio_channel_set_name(QIO_CHANNEL(s
->bioc
), "vmstate-buffer");
3090 fb
= qemu_file_new_output(QIO_CHANNEL(s
->bioc
));
3091 object_unref(OBJECT(s
->bioc
));
3093 update_iteration_initial_status(s
);
3096 * Prepare for tracking memory writes with UFFD-WP - populate
3097 * RAM pages before protecting.
3100 ram_write_tracking_prepare();
3103 qemu_savevm_state_header(s
->to_dst_file
);
3104 qemu_savevm_state_setup(s
->to_dst_file
);
3106 qemu_savevm_wait_unplug(s
, MIGRATION_STATUS_SETUP
,
3107 MIGRATION_STATUS_ACTIVE
);
3109 s
->setup_time
= qemu_clock_get_ms(QEMU_CLOCK_HOST
) - setup_start
;
3111 trace_migration_thread_setup_complete();
3112 s
->downtime_start
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
3114 qemu_mutex_lock_iothread();
3117 * If VM is currently in suspended state, then, to make a valid runstate
3118 * transition in vm_stop_force_state() we need to wakeup it up.
3120 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER
, NULL
);
3121 s
->vm_old_state
= runstate_get();
3123 global_state_store();
3124 /* Forcibly stop VM before saving state of vCPUs and devices */
3125 if (vm_stop_force_state(RUN_STATE_PAUSED
)) {
3129 * Put vCPUs in sync with shadow context structures, then
3130 * save their state to channel-buffer along with devices.
3132 cpu_synchronize_all_states();
3133 if (qemu_savevm_state_complete_precopy_non_iterable(fb
, false, false)) {
3137 * Since we are going to get non-iterable state data directly
3138 * from s->bioc->data, explicit flush is needed here.
3142 /* Now initialize UFFD context and start tracking RAM writes */
3143 if (ram_write_tracking_start()) {
3149 * Start VM from BH handler to avoid write-fault lock here.
3150 * UFFD-WP protection for the whole RAM is already enabled so
3151 * calling VM state change notifiers from vm_start() would initiate
3152 * writes to virtio VQs memory which is in write-protected region.
3154 s
->vm_start_bh
= qemu_bh_new(bg_migration_vm_start_bh
, s
);
3155 qemu_bh_schedule(s
->vm_start_bh
);
3157 qemu_mutex_unlock_iothread();
3159 while (migration_is_active(s
)) {
3160 MigIterateState iter_state
= bg_migration_iteration_run(s
);
3161 if (iter_state
== MIG_ITERATE_SKIP
) {
3163 } else if (iter_state
== MIG_ITERATE_BREAK
) {
3168 * Try to detect any kind of failures, and see whether we
3169 * should stop the migration now.
3171 thr_error
= migration_detect_error(s
);
3172 if (thr_error
== MIG_THR_ERR_FATAL
) {
3173 /* Stop migration */
3177 migration_update_counters(s
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
3180 trace_migration_thread_after_loop();
3184 migrate_set_state(&s
->state
, MIGRATION_STATUS_ACTIVE
,
3185 MIGRATION_STATUS_FAILED
);
3186 qemu_mutex_unlock_iothread();
3189 bg_migration_iteration_finish(s
);
3192 object_unref(OBJECT(s
));
3193 rcu_unregister_thread();
3198 void migrate_fd_connect(MigrationState
*s
, Error
*error_in
)
3200 Error
*local_err
= NULL
;
3201 uint64_t rate_limit
;
3202 bool resume
= s
->state
== MIGRATION_STATUS_POSTCOPY_PAUSED
;
3205 * If there's a previous error, free it and prepare for another one.
3206 * Meanwhile if migration completes successfully, there won't have an error
3207 * dumped when calling migrate_fd_cleanup().
3209 migrate_error_free(s
);
3211 s
->expected_downtime
= migrate_downtime_limit();
3213 assert(s
->cleanup_bh
);
3215 assert(!s
->cleanup_bh
);
3216 s
->cleanup_bh
= qemu_bh_new(migrate_fd_cleanup_bh
, s
);
3219 migrate_fd_error(s
, error_in
);
3222 * Don't do cleanup for resume if channel is invalid, but only dump
3223 * the error. We wait for another channel connect from the user.
3224 * The error_report still gives HMP user a hint on what failed.
3225 * It's normally done in migrate_fd_cleanup(), but call it here
3228 error_report_err(error_copy(s
->error
));
3230 migrate_fd_cleanup(s
);
3236 /* This is a resumed migration */
3237 rate_limit
= migrate_max_postcopy_bandwidth();
3239 /* This is a fresh new migration */
3240 rate_limit
= migrate_max_bandwidth();
3242 /* Notify before starting migration thread */
3243 notifier_list_notify(&migration_state_notifiers
, s
);
3246 migration_rate_set(rate_limit
);
3247 qemu_file_set_blocking(s
->to_dst_file
, true);
3250 * Open the return path. For postcopy, it is used exclusively. For
3251 * precopy, only if user specified "return-path" capability would
3252 * QEMU uses the return path.
3254 if (migrate_postcopy_ram() || migrate_return_path()) {
3255 if (open_return_path_on_source(s
)) {
3256 error_setg(&local_err
, "Unable to open return-path for postcopy");
3257 migrate_set_state(&s
->state
, s
->state
, MIGRATION_STATUS_FAILED
);
3258 migrate_set_error(s
, local_err
);
3259 error_report_err(local_err
);
3260 migrate_fd_cleanup(s
);
3266 * This needs to be done before resuming a postcopy. Note: for newer
3267 * QEMUs we will delay the channel creation until postcopy_start(), to
3268 * avoid disorder of channel creations.
3270 if (migrate_postcopy_preempt() && s
->preempt_pre_7_2
) {
3271 postcopy_preempt_setup(s
);
3275 /* Wakeup the main migration thread to do the recovery */
3276 migrate_set_state(&s
->state
, MIGRATION_STATUS_POSTCOPY_PAUSED
,
3277 MIGRATION_STATUS_POSTCOPY_RECOVER
);
3278 qemu_sem_post(&s
->postcopy_pause_sem
);
3282 if (multifd_save_setup(&local_err
) != 0) {
3283 migrate_set_error(s
, local_err
);
3284 error_report_err(local_err
);
3285 migrate_set_state(&s
->state
, MIGRATION_STATUS_SETUP
,
3286 MIGRATION_STATUS_FAILED
);
3287 migrate_fd_cleanup(s
);
3291 if (migrate_background_snapshot()) {
3292 qemu_thread_create(&s
->thread
, "bg_snapshot",
3293 bg_migration_thread
, s
, QEMU_THREAD_JOINABLE
);
3295 qemu_thread_create(&s
->thread
, "live_migration",
3296 migration_thread
, s
, QEMU_THREAD_JOINABLE
);
3298 s
->migration_thread_running
= true;
3301 static void migration_class_init(ObjectClass
*klass
, void *data
)
3303 DeviceClass
*dc
= DEVICE_CLASS(klass
);
3305 dc
->user_creatable
= false;
3306 device_class_set_props(dc
, migration_properties
);
3309 static void migration_instance_finalize(Object
*obj
)
3311 MigrationState
*ms
= MIGRATION_OBJ(obj
);
3313 qemu_mutex_destroy(&ms
->error_mutex
);
3314 qemu_mutex_destroy(&ms
->qemu_file_lock
);
3315 qemu_sem_destroy(&ms
->wait_unplug_sem
);
3316 qemu_sem_destroy(&ms
->rate_limit_sem
);
3317 qemu_sem_destroy(&ms
->pause_sem
);
3318 qemu_sem_destroy(&ms
->postcopy_pause_sem
);
3319 qemu_sem_destroy(&ms
->rp_state
.rp_sem
);
3320 qemu_sem_destroy(&ms
->rp_state
.rp_pong_acks
);
3321 qemu_sem_destroy(&ms
->postcopy_qemufile_src_sem
);
3322 error_free(ms
->error
);
3325 static void migration_instance_init(Object
*obj
)
3327 MigrationState
*ms
= MIGRATION_OBJ(obj
);
3329 ms
->state
= MIGRATION_STATUS_NONE
;
3331 ms
->pages_per_second
= -1;
3332 qemu_sem_init(&ms
->pause_sem
, 0);
3333 qemu_mutex_init(&ms
->error_mutex
);
3335 migrate_params_init(&ms
->parameters
);
3337 qemu_sem_init(&ms
->postcopy_pause_sem
, 0);
3338 qemu_sem_init(&ms
->rp_state
.rp_sem
, 0);
3339 qemu_sem_init(&ms
->rp_state
.rp_pong_acks
, 0);
3340 qemu_sem_init(&ms
->rate_limit_sem
, 0);
3341 qemu_sem_init(&ms
->wait_unplug_sem
, 0);
3342 qemu_sem_init(&ms
->postcopy_qemufile_src_sem
, 0);
3343 qemu_mutex_init(&ms
->qemu_file_lock
);
3347 * Return true if check pass, false otherwise. Error will be put
3348 * inside errp if provided.
3350 static bool migration_object_check(MigrationState
*ms
, Error
**errp
)
3352 /* Assuming all off */
3353 bool old_caps
[MIGRATION_CAPABILITY__MAX
] = { 0 };
3355 if (!migrate_params_check(&ms
->parameters
, errp
)) {
3359 return migrate_caps_check(old_caps
, ms
->capabilities
, errp
);
3362 static const TypeInfo migration_type
= {
3363 .name
= TYPE_MIGRATION
,
3365 * NOTE: TYPE_MIGRATION is not really a device, as the object is
3366 * not created using qdev_new(), it is not attached to the qdev
3367 * device tree, and it is never realized.
3369 * TODO: Make this TYPE_OBJECT once QOM provides something like
3370 * TYPE_DEVICE's "-global" properties.
3372 .parent
= TYPE_DEVICE
,
3373 .class_init
= migration_class_init
,
3374 .class_size
= sizeof(MigrationClass
),
3375 .instance_size
= sizeof(MigrationState
),
3376 .instance_init
= migration_instance_init
,
3377 .instance_finalize
= migration_instance_finalize
,
3380 static void register_migration_types(void)
3382 type_register_static(&migration_type
);
3385 type_init(register_migration_types
);