xref: /qemu/migration/migration.c (revision 87417811)
1 /*
2  * QEMU live migration
3  *
4  * Copyright IBM, Corp. 2008
5  *
6  * Authors:
7  *  Anthony Liguori   <aliguori@us.ibm.com>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2.  See
10  * the COPYING file in the top-level directory.
11  *
12  * Contributions after 2012-01-13 are licensed under the terms of the
13  * GNU GPL, version 2 or (at your option) any later version.
14  */
15 
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"
21 #include "exec.h"
22 #include "fd.h"
23 #include "file.h"
24 #include "socket.h"
25 #include "sysemu/runstate.h"
26 #include "sysemu/sysemu.h"
27 #include "sysemu/cpu-throttle.h"
28 #include "rdma.h"
29 #include "ram.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"
35 #include "savevm.h"
36 #include "qemu-file.h"
37 #include "channel.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"
48 #include "qemu/rcu.h"
49 #include "block.h"
50 #include "postcopy-ram.h"
51 #include "qemu/thread.h"
52 #include "trace.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"
61 #include "multifd.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"
67 #include "options.h"
68 #include "sysemu/dirtylimit.h"
69 
70 static NotifierList migration_state_notifiers =
71     NOTIFIER_LIST_INITIALIZER(migration_state_notifiers);
72 
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 ) */
78 
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 */
84 
85     MIG_RP_MSG_MAX
86 };
87 
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 */
91 
92 static MigrationState *current_migration;
93 static MigrationIncomingState *current_incoming;
94 
95 static GSList *migration_blockers;
96 
97 static bool migration_object_check(MigrationState *ms, Error **errp);
98 static int migration_maybe_pause(MigrationState *s,
99                                  int *current_active_state,
100                                  int new_state);
101 static void migrate_fd_cancel(MigrationState *s);
102 static int close_return_path_on_source(MigrationState *s);
103 
104 static bool migration_needs_multiple_sockets(void)
105 {
106     return migrate_multifd() || migrate_postcopy_preempt();
107 }
108 
109 static bool uri_supports_multi_channels(const char *uri)
110 {
111     return strstart(uri, "tcp:", NULL) || strstart(uri, "unix:", NULL) ||
112            strstart(uri, "vsock:", NULL);
113 }
114 
115 static bool
116 migration_channels_and_uri_compatible(const char *uri, Error **errp)
117 {
118     if (migration_needs_multiple_sockets() &&
119         !uri_supports_multi_channels(uri)) {
120         error_setg(errp, "Migration requires multi-channel URIs (e.g. tcp)");
121         return false;
122     }
123 
124     return true;
125 }
126 
127 static gint page_request_addr_cmp(gconstpointer ap, gconstpointer bp)
128 {
129     uintptr_t a = (uintptr_t) ap, b = (uintptr_t) bp;
130 
131     return (a > b) - (a < b);
132 }
133 
134 void migration_object_init(void)
135 {
136     /* This can only be called once. */
137     assert(!current_migration);
138     current_migration = MIGRATION_OBJ(object_new(TYPE_MIGRATION));
139 
140     /*
141      * Init the migrate incoming object as well no matter whether
142      * we'll use it or not.
143      */
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(&current_incoming->rp_mutex);
150     qemu_mutex_init(&current_incoming->postcopy_prio_thread_mutex);
151     qemu_event_init(&current_incoming->main_thread_load_event, false);
152     qemu_sem_init(&current_incoming->postcopy_pause_sem_dst, 0);
153     qemu_sem_init(&current_incoming->postcopy_pause_sem_fault, 0);
154     qemu_sem_init(&current_incoming->postcopy_pause_sem_fast_load, 0);
155     qemu_sem_init(&current_incoming->postcopy_qemufile_dst_done, 0);
156 
157     qemu_mutex_init(&current_incoming->page_request_mutex);
158     qemu_cond_init(&current_incoming->page_request_cond);
159     current_incoming->page_requested = g_tree_new(page_request_addr_cmp);
160 
161     migration_object_check(current_migration, &error_fatal);
162 
163     blk_mig_init();
164     ram_mig_init();
165     dirty_bitmap_mig_init();
166 }
167 
168 void migration_cancel(const Error *error)
169 {
170     if (error) {
171         migrate_set_error(current_migration, error);
172     }
173     if (migrate_dirty_limit()) {
174         qmp_cancel_vcpu_dirty_limit(false, -1, NULL);
175     }
176     migrate_fd_cancel(current_migration);
177 }
178 
179 void migration_shutdown(void)
180 {
181     /*
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.
185      */
186     colo_shutdown();
187     /*
188      * Cancel the current migration - that will (eventually)
189      * stop the migration using this structure
190      */
191     migration_cancel(NULL);
192     object_unref(OBJECT(current_migration));
193 
194     /*
195      * Cancel outgoing migration of dirty bitmaps. It should
196      * at least unref used block nodes.
197      */
198     dirty_bitmap_mig_cancel_outgoing();
199 
200     /*
201      * Cancel incoming migration of dirty bitmaps. Dirty bitmaps
202      * are non-critical data, and their loss never considered as
203      * something serious.
204      */
205     dirty_bitmap_mig_cancel_incoming();
206 }
207 
208 /* For outgoing */
209 MigrationState *migrate_get_current(void)
210 {
211     /* This can only be called after the object created. */
212     assert(current_migration);
213     return current_migration;
214 }
215 
216 MigrationIncomingState *migration_incoming_get_current(void)
217 {
218     assert(current_incoming);
219     return current_incoming;
220 }
221 
222 void migration_incoming_transport_cleanup(MigrationIncomingState *mis)
223 {
224     if (mis->socket_address_list) {
225         qapi_free_SocketAddressList(mis->socket_address_list);
226         mis->socket_address_list = NULL;
227     }
228 
229     if (mis->transport_cleanup) {
230         mis->transport_cleanup(mis->transport_data);
231         mis->transport_data = mis->transport_cleanup = NULL;
232     }
233 }
234 
235 void migration_incoming_state_destroy(void)
236 {
237     struct MigrationIncomingState *mis = migration_incoming_get_current();
238 
239     multifd_load_cleanup();
240     compress_threads_load_cleanup();
241 
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;
247     }
248 
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;
253     }
254     if (mis->postcopy_remote_fds) {
255         g_array_free(mis->postcopy_remote_fds, TRUE);
256         mis->postcopy_remote_fds = NULL;
257     }
258 
259     migration_incoming_transport_cleanup(mis);
260     qemu_event_reset(&mis->main_thread_load_event);
261 
262     if (mis->page_requested) {
263         g_tree_destroy(mis->page_requested);
264         mis->page_requested = NULL;
265     }
266 
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;
271     }
272 
273     yank_unregister_instance(MIGRATION_YANK_INSTANCE);
274 }
275 
276 static void migrate_generate_event(int new_state)
277 {
278     if (migrate_events()) {
279         qapi_event_send_migration(new_state);
280     }
281 }
282 
283 /*
284  * Send a message on the return channel back to the source
285  * of the migration.
286  */
287 static int migrate_send_rp_message(MigrationIncomingState *mis,
288                                    enum mig_rp_message_type message_type,
289                                    uint16_t len, void *data)
290 {
291     int ret = 0;
292 
293     trace_migrate_send_rp_message((int)message_type, len);
294     QEMU_LOCK_GUARD(&mis->rp_mutex);
295 
296     /*
297      * It's possible that the file handle got lost due to network
298      * failures.
299      */
300     if (!mis->to_src_file) {
301         ret = -EIO;
302         return ret;
303     }
304 
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);
309 
310     /* It's possible that qemu file got error during sending */
311     ret = qemu_file_get_error(mis->to_src_file);
312 
313     return ret;
314 }
315 
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
320  */
321 int migrate_send_rp_message_req_pages(MigrationIncomingState *mis,
322                                       RAMBlock *rb, ram_addr_t start)
323 {
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;
328     const char *rbname;
329     int rbname_len;
330 
331     *(uint64_t *)bufc = cpu_to_be64((uint64_t)start);
332     *(uint32_t *)(bufc + 8) = cpu_to_be32((uint32_t)len);
333 
334     /*
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.
338      */
339     if (rb != mis->last_rb) {
340         mis->last_rb = rb;
341 
342         rbname = qemu_ram_get_idstr(rb);
343         rbname_len = strlen(rbname);
344 
345         assert(rbname_len < 256);
346 
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;
351     } else {
352         msg_type = MIG_RP_MSG_REQ_PAGES;
353     }
354 
355     return migrate_send_rp_message(mis, msg_type, msglen, bufc);
356 }
357 
358 int migrate_send_rp_req_pages(MigrationIncomingState *mis,
359                               RAMBlock *rb, ram_addr_t start, uint64_t haddr)
360 {
361     void *aligned = (void *)(uintptr_t)ROUND_DOWN(haddr, qemu_ram_pagesize(rb));
362     bool received = false;
363 
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)) {
367             /*
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.
371              */
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);
375         }
376     }
377 
378     /*
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.
381      */
382     if (received) {
383         return 0;
384     }
385 
386     return migrate_send_rp_message_req_pages(mis, rb, start);
387 }
388 
389 static bool migration_colo_enabled;
390 bool migration_incoming_colo_enabled(void)
391 {
392     return migration_colo_enabled;
393 }
394 
395 void migration_incoming_disable_colo(void)
396 {
397     ram_block_discard_disable(false);
398     migration_colo_enabled = false;
399 }
400 
401 int migration_incoming_enable_colo(void)
402 {
403 #ifndef CONFIG_REPLICATION
404     error_report("ENABLE_COLO command come in migration stream, but COLO "
405                  "module is not built in");
406     return -ENOTSUP;
407 #endif
408 
409     if (!migrate_colo()) {
410         error_report("ENABLE_COLO command come in migration stream, but c-colo "
411                      "capability is not set");
412         return -EINVAL;
413     }
414 
415     if (ram_block_discard_disable(true)) {
416         error_report("COLO: cannot disable RAM discard");
417         return -EBUSY;
418     }
419     migration_colo_enabled = true;
420     return 0;
421 }
422 
423 void migrate_add_address(SocketAddress *address)
424 {
425     MigrationIncomingState *mis = migration_incoming_get_current();
426 
427     QAPI_LIST_PREPEND(mis->socket_address_list,
428                       QAPI_CLONE(SocketAddress, address));
429 }
430 
431 static void qemu_start_incoming_migration(const char *uri, Error **errp)
432 {
433     const char *p = NULL;
434     MigrationIncomingState *mis = migration_incoming_get_current();
435 
436     /* URI is not suitable for migration? */
437     if (!migration_channels_and_uri_compatible(uri, errp)) {
438         return;
439     }
440 
441     migrate_set_state(&mis->state, MIGRATION_STATUS_NONE,
442                       MIGRATION_STATUS_SETUP);
443 
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);
448 #ifdef CONFIG_RDMA
449     } else if (strstart(uri, "rdma:", &p)) {
450         rdma_start_incoming_migration(p, errp);
451 #endif
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);
458     } else {
459         error_setg(errp, "unknown migration protocol: %s", uri);
460     }
461 }
462 
463 static void process_incoming_migration_bh(void *opaque)
464 {
465     Error *local_err = NULL;
466     MigrationIncomingState *mis = opaque;
467 
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.
473      */
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);
480         if (local_err) {
481             error_report_err(local_err);
482             local_err = NULL;
483             autostart = false;
484         }
485     }
486 
487     /*
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.
490      */
491     qemu_announce_self(&mis->announce_timer, migrate_announce_params());
492 
493     multifd_load_shutdown();
494 
495     dirty_bitmap_mig_before_vm_start();
496 
497     if (!global_state_received() ||
498         global_state_get_runstate() == RUN_STATE_RUNNING) {
499         if (autostart) {
500             vm_start();
501         } else {
502             runstate_set(RUN_STATE_PAUSED);
503         }
504     } else if (migration_incoming_colo_enabled()) {
505         migration_incoming_disable_colo();
506         vm_start();
507     } else {
508         runstate_set(global_state_get_runstate());
509     }
510     /*
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
513      * it's ready to use.
514      */
515     migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
516                       MIGRATION_STATUS_COMPLETED);
517     qemu_bh_delete(mis->bh);
518     migration_incoming_state_destroy();
519 }
520 
521 static void coroutine_fn
522 process_incoming_migration_co(void *opaque)
523 {
524     MigrationIncomingState *mis = migration_incoming_get_current();
525     PostcopyState ps;
526     int ret;
527 
528     assert(mis->from_src_file);
529 
530     if (compress_threads_load_setup(mis->from_src_file)) {
531         error_report("Failed to setup decompress threads");
532         goto fail;
533     }
534 
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);
539 
540     mis->loadvm_co = qemu_coroutine_self();
541     ret = qemu_loadvm_state(mis->from_src_file);
542     mis->loadvm_co = NULL;
543 
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) {
548             /*
549              * Where a migration had postcopy enabled (and thus went to advise)
550              * but managed to complete within the precopy period, we can use
551              * the normal exit.
552              */
553             postcopy_ram_incoming_cleanup(mis);
554         } else if (ret >= 0) {
555             /*
556              * Postcopy was started, cleanup should happen at the end of the
557              * postcopy thread.
558              */
559             trace_process_incoming_migration_co_postcopy_end_main();
560             return;
561         }
562         /* Else if something went wrong then just fall out of the normal exit */
563     }
564 
565     if (ret < 0) {
566         error_report("load of migration failed: %s", strerror(-ret));
567         goto fail;
568     }
569 
570     if (colo_incoming_co() < 0) {
571         goto fail;
572     }
573 
574     mis->bh = qemu_bh_new(process_incoming_migration_bh, mis);
575     qemu_bh_schedule(mis->bh);
576     return;
577 fail:
578     migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
579                       MIGRATION_STATUS_FAILED);
580     qemu_fclose(mis->from_src_file);
581 
582     multifd_load_cleanup();
583     compress_threads_load_cleanup();
584 
585     exit(EXIT_FAILURE);
586 }
587 
588 /**
589  * migration_incoming_setup: Setup incoming migration
590  * @f: file for main migration channel
591  * @errp: where to put errors
592  *
593  * Returns: %true on success, %false on error.
594  */
595 static bool migration_incoming_setup(QEMUFile *f, Error **errp)
596 {
597     MigrationIncomingState *mis = migration_incoming_get_current();
598 
599     if (!mis->from_src_file) {
600         mis->from_src_file = f;
601     }
602     qemu_file_set_blocking(f, false);
603     return true;
604 }
605 
606 void migration_incoming_process(void)
607 {
608     Coroutine *co = qemu_coroutine_create(process_incoming_migration_co, NULL);
609     qemu_coroutine_enter(co);
610 }
611 
612 /* Returns true if recovered from a paused migration, otherwise false */
613 static bool postcopy_try_recover(void)
614 {
615     MigrationIncomingState *mis = migration_incoming_get_current();
616 
617     if (mis->state == MIGRATION_STATUS_POSTCOPY_PAUSED) {
618         /* Resumed from a paused postcopy migration */
619 
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);
624 
625         /* Re-configure the return path */
626         mis->to_src_file = qemu_file_get_return_path(mis->from_src_file);
627 
628         migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_PAUSED,
629                           MIGRATION_STATUS_POSTCOPY_RECOVER);
630 
631         /*
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.
637          */
638         qemu_sem_post(&mis->postcopy_pause_sem_dst);
639         return true;
640     }
641 
642     return false;
643 }
644 
645 void migration_fd_process_incoming(QEMUFile *f, Error **errp)
646 {
647     if (!migration_incoming_setup(f, errp)) {
648         return;
649     }
650     if (postcopy_try_recover()) {
651         return;
652     }
653     migration_incoming_process();
654 }
655 
656 /*
657  * Returns true when we want to start a new incoming migration process,
658  * false otherwise.
659  */
660 static bool migration_should_start_incoming(bool main_channel)
661 {
662     /* Multifd doesn't start unless all channels are established */
663     if (migrate_multifd()) {
664         return migration_has_all_channels();
665     }
666 
667     /* Preempt channel only starts when the main channel is created */
668     if (migrate_postcopy_preempt()) {
669         return main_channel;
670     }
671 
672     /*
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.
676      */
677     assert(main_channel);
678     return true;
679 }
680 
681 void migration_ioc_process_incoming(QIOChannel *ioc, Error **errp)
682 {
683     MigrationIncomingState *mis = migration_incoming_get_current();
684     Error *local_err = NULL;
685     QEMUFile *f;
686     bool default_channel = true;
687     uint32_t channel_magic = 0;
688     int ret = 0;
689 
690     if (migrate_multifd() && !migrate_postcopy_ram() &&
691         qio_channel_has_feature(ioc, QIO_CHANNEL_FEATURE_READ_MSG_PEEK)) {
692         /*
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.
701          */
702         ret = migration_channel_read_peek(ioc, (void *)&channel_magic,
703                                           sizeof(channel_magic), &local_err);
704 
705         if (ret != 0) {
706             error_propagate(errp, local_err);
707             return;
708         }
709 
710         default_channel = (channel_magic == cpu_to_be32(QEMU_VM_FILE_MAGIC));
711     } else {
712         default_channel = !mis->from_src_file;
713     }
714 
715     if (multifd_load_setup(errp) != 0) {
716         error_setg(errp, "Failed to setup multifd channels");
717         return;
718     }
719 
720     if (default_channel) {
721         f = qemu_file_new_input(ioc);
722 
723         if (!migration_incoming_setup(f, errp)) {
724             return;
725         }
726     } else {
727         /* Multiple connections */
728         assert(migration_needs_multiple_sockets());
729         if (migrate_multifd()) {
730             multifd_recv_new_channel(ioc, &local_err);
731         } else {
732             assert(migrate_postcopy_preempt());
733             f = qemu_file_new_input(ioc);
734             postcopy_preempt_new_channel(mis, f);
735         }
736         if (local_err) {
737             error_propagate(errp, local_err);
738             return;
739         }
740     }
741 
742     if (migration_should_start_incoming(default_channel)) {
743         /* If it's a recovery, we're done */
744         if (postcopy_try_recover()) {
745             return;
746         }
747         migration_incoming_process();
748     }
749 }
750 
751 /**
752  * @migration_has_all_channels: We have received all channels that we need
753  *
754  * Returns true when we have got connections to all the channels that
755  * we need for migration.
756  */
757 bool migration_has_all_channels(void)
758 {
759     MigrationIncomingState *mis = migration_incoming_get_current();
760 
761     if (!mis->from_src_file) {
762         return false;
763     }
764 
765     if (migrate_multifd()) {
766         return multifd_recv_all_channels_created();
767     }
768 
769     if (migrate_postcopy_preempt()) {
770         return mis->postcopy_qemufile_dst != NULL;
771     }
772 
773     return true;
774 }
775 
776 int migrate_send_rp_switchover_ack(MigrationIncomingState *mis)
777 {
778     return migrate_send_rp_message(mis, MIG_RP_MSG_SWITCHOVER_ACK, 0, NULL);
779 }
780 
781 /*
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
784  * error.
785  */
786 void migrate_send_rp_shut(MigrationIncomingState *mis,
787                           uint32_t value)
788 {
789     uint32_t buf;
790 
791     buf = cpu_to_be32(value);
792     migrate_send_rp_message(mis, MIG_RP_MSG_SHUT, sizeof(buf), &buf);
793 }
794 
795 /*
796  * Send a 'PONG' message on the return channel with the given value
797  * (normally in response to a 'PING')
798  */
799 void migrate_send_rp_pong(MigrationIncomingState *mis,
800                           uint32_t value)
801 {
802     uint32_t buf;
803 
804     buf = cpu_to_be32(value);
805     migrate_send_rp_message(mis, MIG_RP_MSG_PONG, sizeof(buf), &buf);
806 }
807 
808 void migrate_send_rp_recv_bitmap(MigrationIncomingState *mis,
809                                  char *block_name)
810 {
811     char buf[512];
812     int len;
813     int64_t res;
814 
815     /*
816      * First, we send the header part. It contains only the len of
817      * idstr, and the idstr itself.
818      */
819     len = strlen(block_name);
820     buf[0] = len;
821     memcpy(buf + 1, block_name, len);
822 
823     if (mis->state != MIGRATION_STATUS_POSTCOPY_RECOVER) {
824         error_report("%s: MSG_RP_RECV_BITMAP only used for recovery",
825                      __func__);
826         return;
827     }
828 
829     migrate_send_rp_message(mis, MIG_RP_MSG_RECV_BITMAP, len + 1, buf);
830 
831     /*
832      * Next, we dump the received bitmap to the stream.
833      *
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.
839      */
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);
843 
844     trace_migrate_send_rp_recv_bitmap(block_name, res);
845 }
846 
847 void migrate_send_rp_resume_ack(MigrationIncomingState *mis, uint32_t value)
848 {
849     uint32_t buf;
850 
851     buf = cpu_to_be32(value);
852     migrate_send_rp_message(mis, MIG_RP_MSG_RESUME_ACK, sizeof(buf), &buf);
853 }
854 
855 /*
856  * Return true if we're already in the middle of a migration
857  * (i.e. any of the active or setup states)
858  */
859 bool migration_is_setup_or_active(int state)
860 {
861     switch (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:
871         return true;
872 
873     default:
874         return false;
875 
876     }
877 }
878 
879 bool migration_is_running(int state)
880 {
881     switch (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:
891         return true;
892 
893     default:
894         return false;
895 
896     }
897 }
898 
899 static bool migrate_show_downtime(MigrationState *s)
900 {
901     return (s->state == MIGRATION_STATUS_COMPLETED) || migration_in_postcopy();
902 }
903 
904 static void populate_time_info(MigrationInfo *info, MigrationState *s)
905 {
906     info->has_status = true;
907     info->has_setup_time = true;
908     info->setup_time = s->setup_time;
909 
910     if (s->state == MIGRATION_STATUS_COMPLETED) {
911         info->has_total_time = true;
912         info->total_time = s->total_time;
913     } else {
914         info->has_total_time = true;
915         info->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) -
916                            s->start_time;
917     }
918 
919     if (migrate_show_downtime(s)) {
920         info->has_downtime = true;
921         info->downtime = s->downtime;
922     } else {
923         info->has_expected_downtime = true;
924         info->expected_downtime = s->expected_downtime;
925     }
926 }
927 
928 static void populate_ram_info(MigrationInfo *info, MigrationState *s)
929 {
930     size_t page_size = qemu_target_page_size();
931 
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);
953 
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;
963     }
964 
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;
974     }
975 
976     if (cpu_throttle_active()) {
977         info->has_cpu_throttle_percentage = true;
978         info->cpu_throttle_percentage = cpu_throttle_get_percentage();
979     }
980 
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);
985     }
986 
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();
991 
992         info->has_dirty_limit_ring_full_time = true;
993         info->dirty_limit_ring_full_time = dirtylimit_ring_full_time();
994     }
995 }
996 
997 static void populate_disk_info(MigrationInfo *info)
998 {
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();
1004     }
1005 }
1006 
1007 static void fill_source_migration_info(MigrationInfo *info)
1008 {
1009     MigrationState *s = migrate_get_current();
1010     int state = qatomic_read(&s->state);
1011     GSList *cur_blocker = migration_blockers;
1012 
1013     info->blocked_reasons = NULL;
1014 
1015     /*
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.
1020      */
1021     qemu_savevm_non_migratable_list(&info->blocked_reasons);
1022 
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);
1027     }
1028     info->has_blocked_reasons = info->blocked_reasons != NULL;
1029 
1030     switch (state) {
1031     case MIGRATION_STATUS_NONE:
1032         /* no migration has happened ever */
1033         /* do not overwrite destination migration status */
1034         return;
1035     case MIGRATION_STATUS_SETUP:
1036         info->has_status = true;
1037         info->has_total_time = false;
1038         break;
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);
1051         break;
1052     case MIGRATION_STATUS_COLO:
1053         info->has_status = true;
1054         /* TODO: display COLO specific information (checkpoint info etc.) */
1055         break;
1056     case MIGRATION_STATUS_COMPLETED:
1057         populate_time_info(info, s);
1058         populate_ram_info(info, s);
1059         migration_populate_vfio_info(info);
1060         break;
1061     case MIGRATION_STATUS_FAILED:
1062         info->has_status = true;
1063         break;
1064     case MIGRATION_STATUS_CANCELLED:
1065         info->has_status = true;
1066         break;
1067     case MIGRATION_STATUS_WAIT_UNPLUG:
1068         info->has_status = true;
1069         break;
1070     }
1071     info->status = state;
1072 
1073     QEMU_LOCK_GUARD(&s->error_mutex);
1074     if (s->error) {
1075         info->error_desc = g_strdup(error_get_pretty(s->error));
1076     }
1077 }
1078 
1079 static void fill_destination_migration_info(MigrationInfo *info)
1080 {
1081     MigrationIncomingState *mis = migration_incoming_get_current();
1082 
1083     if (mis->socket_address_list) {
1084         info->has_socket_address = true;
1085         info->socket_address =
1086             QAPI_CLONE(SocketAddressList, mis->socket_address_list);
1087     }
1088 
1089     switch (mis->state) {
1090     case MIGRATION_STATUS_NONE:
1091         return;
1092     case MIGRATION_STATUS_SETUP:
1093     case MIGRATION_STATUS_CANCELLING:
1094     case MIGRATION_STATUS_CANCELLED:
1095     case MIGRATION_STATUS_ACTIVE:
1096     case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1097     case MIGRATION_STATUS_POSTCOPY_PAUSED:
1098     case MIGRATION_STATUS_POSTCOPY_RECOVER:
1099     case MIGRATION_STATUS_FAILED:
1100     case MIGRATION_STATUS_COLO:
1101         info->has_status = true;
1102         break;
1103     case MIGRATION_STATUS_COMPLETED:
1104         info->has_status = true;
1105         fill_destination_postcopy_migration_info(info);
1106         break;
1107     }
1108     info->status = mis->state;
1109 }
1110 
1111 MigrationInfo *qmp_query_migrate(Error **errp)
1112 {
1113     MigrationInfo *info = g_malloc0(sizeof(*info));
1114 
1115     fill_destination_migration_info(info);
1116     fill_source_migration_info(info);
1117 
1118     return info;
1119 }
1120 
1121 void qmp_migrate_start_postcopy(Error **errp)
1122 {
1123     MigrationState *s = migrate_get_current();
1124 
1125     if (!migrate_postcopy()) {
1126         error_setg(errp, "Enable postcopy with migrate_set_capability before"
1127                          " the start of migration");
1128         return;
1129     }
1130 
1131     if (s->state == MIGRATION_STATUS_NONE) {
1132         error_setg(errp, "Postcopy must be started after migration has been"
1133                          " started");
1134         return;
1135     }
1136     /*
1137      * we don't error if migration has finished since that would be racy
1138      * with issuing this command.
1139      */
1140     qatomic_set(&s->start_postcopy, true);
1141 }
1142 
1143 /* shared migration helpers */
1144 
1145 void migrate_set_state(int *state, int old_state, int new_state)
1146 {
1147     assert(new_state < MIGRATION_STATUS__MAX);
1148     if (qatomic_cmpxchg(state, old_state, new_state) == old_state) {
1149         trace_migrate_set_state(MigrationStatus_str(new_state));
1150         migrate_generate_event(new_state);
1151     }
1152 }
1153 
1154 static void migrate_fd_cleanup(MigrationState *s)
1155 {
1156     qemu_bh_delete(s->cleanup_bh);
1157     s->cleanup_bh = NULL;
1158 
1159     g_free(s->hostname);
1160     s->hostname = NULL;
1161     json_writer_free(s->vmdesc);
1162     s->vmdesc = NULL;
1163 
1164     qemu_savevm_state_cleanup();
1165 
1166     if (s->to_dst_file) {
1167         QEMUFile *tmp;
1168 
1169         trace_migrate_fd_cleanup();
1170         qemu_mutex_unlock_iothread();
1171         if (s->migration_thread_running) {
1172             qemu_thread_join(&s->thread);
1173             s->migration_thread_running = false;
1174         }
1175         qemu_mutex_lock_iothread();
1176 
1177         multifd_save_cleanup();
1178         qemu_mutex_lock(&s->qemu_file_lock);
1179         tmp = s->to_dst_file;
1180         s->to_dst_file = NULL;
1181         qemu_mutex_unlock(&s->qemu_file_lock);
1182         /*
1183          * Close the file handle without the lock to make sure the
1184          * critical section won't block for long.
1185          */
1186         migration_ioc_unregister_yank_from_file(tmp);
1187         qemu_fclose(tmp);
1188     }
1189 
1190     /*
1191      * We already cleaned up to_dst_file, so errors from the return
1192      * path might be due to that, ignore them.
1193      */
1194     close_return_path_on_source(s);
1195 
1196     assert(!migration_is_active(s));
1197 
1198     if (s->state == MIGRATION_STATUS_CANCELLING) {
1199         migrate_set_state(&s->state, MIGRATION_STATUS_CANCELLING,
1200                           MIGRATION_STATUS_CANCELLED);
1201     }
1202 
1203     if (s->error) {
1204         /* It is used on info migrate.  We can't free it */
1205         error_report_err(error_copy(s->error));
1206     }
1207     notifier_list_notify(&migration_state_notifiers, s);
1208     block_cleanup_parameters();
1209     yank_unregister_instance(MIGRATION_YANK_INSTANCE);
1210 }
1211 
1212 static void migrate_fd_cleanup_schedule(MigrationState *s)
1213 {
1214     /*
1215      * Ref the state for bh, because it may be called when
1216      * there're already no other refs
1217      */
1218     object_ref(OBJECT(s));
1219     qemu_bh_schedule(s->cleanup_bh);
1220 }
1221 
1222 static void migrate_fd_cleanup_bh(void *opaque)
1223 {
1224     MigrationState *s = opaque;
1225     migrate_fd_cleanup(s);
1226     object_unref(OBJECT(s));
1227 }
1228 
1229 void migrate_set_error(MigrationState *s, const Error *error)
1230 {
1231     QEMU_LOCK_GUARD(&s->error_mutex);
1232     if (!s->error) {
1233         s->error = error_copy(error);
1234     }
1235 }
1236 
1237 bool migrate_has_error(MigrationState *s)
1238 {
1239     /* The lock is not helpful here, but still follow the rule */
1240     QEMU_LOCK_GUARD(&s->error_mutex);
1241     return qatomic_read(&s->error);
1242 }
1243 
1244 static void migrate_error_free(MigrationState *s)
1245 {
1246     QEMU_LOCK_GUARD(&s->error_mutex);
1247     if (s->error) {
1248         error_free(s->error);
1249         s->error = NULL;
1250     }
1251 }
1252 
1253 static void migrate_fd_error(MigrationState *s, const Error *error)
1254 {
1255     trace_migrate_fd_error(error_get_pretty(error));
1256     assert(s->to_dst_file == NULL);
1257     migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1258                       MIGRATION_STATUS_FAILED);
1259     migrate_set_error(s, error);
1260 }
1261 
1262 static void migrate_fd_cancel(MigrationState *s)
1263 {
1264     int old_state ;
1265 
1266     trace_migrate_fd_cancel();
1267 
1268     WITH_QEMU_LOCK_GUARD(&s->qemu_file_lock) {
1269         if (s->rp_state.from_dst_file) {
1270             /* shutdown the rp socket, so causing the rp thread to shutdown */
1271             qemu_file_shutdown(s->rp_state.from_dst_file);
1272         }
1273     }
1274 
1275     do {
1276         old_state = s->state;
1277         if (!migration_is_running(old_state)) {
1278             break;
1279         }
1280         /* If the migration is paused, kick it out of the pause */
1281         if (old_state == MIGRATION_STATUS_PRE_SWITCHOVER) {
1282             qemu_sem_post(&s->pause_sem);
1283         }
1284         migrate_set_state(&s->state, old_state, MIGRATION_STATUS_CANCELLING);
1285     } while (s->state != MIGRATION_STATUS_CANCELLING);
1286 
1287     /*
1288      * If we're unlucky the migration code might be stuck somewhere in a
1289      * send/write while the network has failed and is waiting to timeout;
1290      * if we've got shutdown(2) available then we can force it to quit.
1291      */
1292     if (s->state == MIGRATION_STATUS_CANCELLING) {
1293         WITH_QEMU_LOCK_GUARD(&s->qemu_file_lock) {
1294             if (s->to_dst_file) {
1295                 qemu_file_shutdown(s->to_dst_file);
1296             }
1297         }
1298     }
1299     if (s->state == MIGRATION_STATUS_CANCELLING && s->block_inactive) {
1300         Error *local_err = NULL;
1301 
1302         bdrv_activate_all(&local_err);
1303         if (local_err) {
1304             error_report_err(local_err);
1305         } else {
1306             s->block_inactive = false;
1307         }
1308     }
1309 }
1310 
1311 void add_migration_state_change_notifier(Notifier *notify)
1312 {
1313     notifier_list_add(&migration_state_notifiers, notify);
1314 }
1315 
1316 void remove_migration_state_change_notifier(Notifier *notify)
1317 {
1318     notifier_remove(notify);
1319 }
1320 
1321 bool migration_in_setup(MigrationState *s)
1322 {
1323     return s->state == MIGRATION_STATUS_SETUP;
1324 }
1325 
1326 bool migration_has_finished(MigrationState *s)
1327 {
1328     return s->state == MIGRATION_STATUS_COMPLETED;
1329 }
1330 
1331 bool migration_has_failed(MigrationState *s)
1332 {
1333     return (s->state == MIGRATION_STATUS_CANCELLED ||
1334             s->state == MIGRATION_STATUS_FAILED);
1335 }
1336 
1337 bool migration_in_postcopy(void)
1338 {
1339     MigrationState *s = migrate_get_current();
1340 
1341     switch (s->state) {
1342     case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1343     case MIGRATION_STATUS_POSTCOPY_PAUSED:
1344     case MIGRATION_STATUS_POSTCOPY_RECOVER:
1345         return true;
1346     default:
1347         return false;
1348     }
1349 }
1350 
1351 bool migration_in_postcopy_after_devices(MigrationState *s)
1352 {
1353     return migration_in_postcopy() && s->postcopy_after_devices;
1354 }
1355 
1356 bool migration_in_incoming_postcopy(void)
1357 {
1358     PostcopyState ps = postcopy_state_get();
1359 
1360     return ps >= POSTCOPY_INCOMING_DISCARD && ps < POSTCOPY_INCOMING_END;
1361 }
1362 
1363 bool migration_incoming_postcopy_advised(void)
1364 {
1365     PostcopyState ps = postcopy_state_get();
1366 
1367     return ps >= POSTCOPY_INCOMING_ADVISE && ps < POSTCOPY_INCOMING_END;
1368 }
1369 
1370 bool migration_in_bg_snapshot(void)
1371 {
1372     MigrationState *s = migrate_get_current();
1373 
1374     return migrate_background_snapshot() &&
1375             migration_is_setup_or_active(s->state);
1376 }
1377 
1378 bool migration_is_idle(void)
1379 {
1380     MigrationState *s = current_migration;
1381 
1382     if (!s) {
1383         return true;
1384     }
1385 
1386     switch (s->state) {
1387     case MIGRATION_STATUS_NONE:
1388     case MIGRATION_STATUS_CANCELLED:
1389     case MIGRATION_STATUS_COMPLETED:
1390     case MIGRATION_STATUS_FAILED:
1391         return true;
1392     case MIGRATION_STATUS_SETUP:
1393     case MIGRATION_STATUS_CANCELLING:
1394     case MIGRATION_STATUS_ACTIVE:
1395     case MIGRATION_STATUS_POSTCOPY_ACTIVE:
1396     case MIGRATION_STATUS_COLO:
1397     case MIGRATION_STATUS_PRE_SWITCHOVER:
1398     case MIGRATION_STATUS_DEVICE:
1399     case MIGRATION_STATUS_WAIT_UNPLUG:
1400         return false;
1401     case MIGRATION_STATUS__MAX:
1402         g_assert_not_reached();
1403     }
1404 
1405     return false;
1406 }
1407 
1408 bool migration_is_active(MigrationState *s)
1409 {
1410     return (s->state == MIGRATION_STATUS_ACTIVE ||
1411             s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
1412 }
1413 
1414 int migrate_init(MigrationState *s, Error **errp)
1415 {
1416     int ret;
1417 
1418     ret = qemu_savevm_state_prepare(errp);
1419     if (ret) {
1420         return ret;
1421     }
1422 
1423     /*
1424      * Reinitialise all migration state, except
1425      * parameters/capabilities that the user set, and
1426      * locks.
1427      */
1428     s->cleanup_bh = 0;
1429     s->vm_start_bh = 0;
1430     s->to_dst_file = NULL;
1431     s->state = MIGRATION_STATUS_NONE;
1432     s->rp_state.from_dst_file = NULL;
1433     s->rp_state.error = false;
1434     s->mbps = 0.0;
1435     s->pages_per_second = 0.0;
1436     s->downtime = 0;
1437     s->expected_downtime = 0;
1438     s->setup_time = 0;
1439     s->start_postcopy = false;
1440     s->postcopy_after_devices = false;
1441     s->migration_thread_running = false;
1442     error_free(s->error);
1443     s->error = NULL;
1444     s->hostname = NULL;
1445     s->vmdesc = NULL;
1446 
1447     migrate_set_state(&s->state, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
1448 
1449     s->start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
1450     s->total_time = 0;
1451     s->vm_old_state = -1;
1452     s->iteration_initial_bytes = 0;
1453     s->threshold_size = 0;
1454     s->switchover_acked = false;
1455     s->rdma_migration = false;
1456     /*
1457      * set mig_stats compression_counters memory to zero for a
1458      * new migration
1459      */
1460     memset(&mig_stats, 0, sizeof(mig_stats));
1461     memset(&compression_counters, 0, sizeof(compression_counters));
1462     migration_reset_vfio_bytes_transferred();
1463 
1464     return 0;
1465 }
1466 
1467 int migrate_add_blocker_internal(Error *reason, Error **errp)
1468 {
1469     /* Snapshots are similar to migrations, so check RUN_STATE_SAVE_VM too. */
1470     if (runstate_check(RUN_STATE_SAVE_VM) || !migration_is_idle()) {
1471         error_propagate_prepend(errp, error_copy(reason),
1472                                 "disallowing migration blocker "
1473                                 "(migration/snapshot in progress) for: ");
1474         return -EBUSY;
1475     }
1476 
1477     migration_blockers = g_slist_prepend(migration_blockers, reason);
1478     return 0;
1479 }
1480 
1481 int migrate_add_blocker(Error *reason, Error **errp)
1482 {
1483     if (only_migratable) {
1484         error_propagate_prepend(errp, error_copy(reason),
1485                                 "disallowing migration blocker "
1486                                 "(--only-migratable) for: ");
1487         return -EACCES;
1488     }
1489 
1490     return migrate_add_blocker_internal(reason, errp);
1491 }
1492 
1493 void migrate_del_blocker(Error *reason)
1494 {
1495     migration_blockers = g_slist_remove(migration_blockers, reason);
1496 }
1497 
1498 void qmp_migrate_incoming(const char *uri, Error **errp)
1499 {
1500     Error *local_err = NULL;
1501     static bool once = true;
1502 
1503     if (!once) {
1504         error_setg(errp, "The incoming migration has already been started");
1505         return;
1506     }
1507     if (!runstate_check(RUN_STATE_INMIGRATE)) {
1508         error_setg(errp, "'-incoming' was not specified on the command line");
1509         return;
1510     }
1511 
1512     if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) {
1513         return;
1514     }
1515 
1516     qemu_start_incoming_migration(uri, &local_err);
1517 
1518     if (local_err) {
1519         yank_unregister_instance(MIGRATION_YANK_INSTANCE);
1520         error_propagate(errp, local_err);
1521         return;
1522     }
1523 
1524     once = false;
1525 }
1526 
1527 void qmp_migrate_recover(const char *uri, Error **errp)
1528 {
1529     MigrationIncomingState *mis = migration_incoming_get_current();
1530 
1531     /*
1532      * Don't even bother to use ERRP_GUARD() as it _must_ always be set by
1533      * callers (no one should ignore a recover failure); if there is, it's a
1534      * programming error.
1535      */
1536     assert(errp);
1537 
1538     if (mis->state != MIGRATION_STATUS_POSTCOPY_PAUSED) {
1539         error_setg(errp, "Migrate recover can only be run "
1540                    "when postcopy is paused.");
1541         return;
1542     }
1543 
1544     /* If there's an existing transport, release it */
1545     migration_incoming_transport_cleanup(mis);
1546 
1547     /*
1548      * Note that this call will never start a real migration; it will
1549      * only re-setup the migration stream and poke existing migration
1550      * to continue using that newly established channel.
1551      */
1552     qemu_start_incoming_migration(uri, errp);
1553 }
1554 
1555 void qmp_migrate_pause(Error **errp)
1556 {
1557     MigrationState *ms = migrate_get_current();
1558     MigrationIncomingState *mis = migration_incoming_get_current();
1559     int ret = 0;
1560 
1561     if (ms->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
1562         /* Source side, during postcopy */
1563         qemu_mutex_lock(&ms->qemu_file_lock);
1564         if (ms->to_dst_file) {
1565             ret = qemu_file_shutdown(ms->to_dst_file);
1566         }
1567         qemu_mutex_unlock(&ms->qemu_file_lock);
1568         if (ret) {
1569             error_setg(errp, "Failed to pause source migration");
1570         }
1571         return;
1572     }
1573 
1574     if (mis->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
1575         ret = qemu_file_shutdown(mis->from_src_file);
1576         if (ret) {
1577             error_setg(errp, "Failed to pause destination migration");
1578         }
1579         return;
1580     }
1581 
1582     error_setg(errp, "migrate-pause is currently only supported "
1583                "during postcopy-active state");
1584 }
1585 
1586 bool migration_is_blocked(Error **errp)
1587 {
1588     if (qemu_savevm_state_blocked(errp)) {
1589         return true;
1590     }
1591 
1592     if (migration_blockers) {
1593         error_propagate(errp, error_copy(migration_blockers->data));
1594         return true;
1595     }
1596 
1597     return false;
1598 }
1599 
1600 /* Returns true if continue to migrate, or false if error detected */
1601 static bool migrate_prepare(MigrationState *s, bool blk, bool blk_inc,
1602                             bool resume, Error **errp)
1603 {
1604     Error *local_err = NULL;
1605 
1606     if (resume) {
1607         if (s->state != MIGRATION_STATUS_POSTCOPY_PAUSED) {
1608             error_setg(errp, "Cannot resume if there is no "
1609                        "paused migration");
1610             return false;
1611         }
1612 
1613         /*
1614          * Postcopy recovery won't work well with release-ram
1615          * capability since release-ram will drop the page buffer as
1616          * long as the page is put into the send buffer.  So if there
1617          * is a network failure happened, any page buffers that have
1618          * not yet reached the destination VM but have already been
1619          * sent from the source VM will be lost forever.  Let's refuse
1620          * the client from resuming such a postcopy migration.
1621          * Luckily release-ram was designed to only be used when src
1622          * and destination VMs are on the same host, so it should be
1623          * fine.
1624          */
1625         if (migrate_release_ram()) {
1626             error_setg(errp, "Postcopy recovery cannot work "
1627                        "when release-ram capability is set");
1628             return false;
1629         }
1630 
1631         /* This is a resume, skip init status */
1632         return true;
1633     }
1634 
1635     if (migration_is_running(s->state)) {
1636         error_setg(errp, QERR_MIGRATION_ACTIVE);
1637         return false;
1638     }
1639 
1640     if (runstate_check(RUN_STATE_INMIGRATE)) {
1641         error_setg(errp, "Guest is waiting for an incoming migration");
1642         return false;
1643     }
1644 
1645     if (runstate_check(RUN_STATE_POSTMIGRATE)) {
1646         error_setg(errp, "Can't migrate the vm that was paused due to "
1647                    "previous migration");
1648         return false;
1649     }
1650 
1651     if (migration_is_blocked(errp)) {
1652         return false;
1653     }
1654 
1655     if (blk || blk_inc) {
1656         if (migrate_colo()) {
1657             error_setg(errp, "No disk migration is required in COLO mode");
1658             return false;
1659         }
1660         if (migrate_block() || migrate_block_incremental()) {
1661             error_setg(errp, "Command options are incompatible with "
1662                        "current migration capabilities");
1663             return false;
1664         }
1665         if (!migrate_cap_set(MIGRATION_CAPABILITY_BLOCK, true, &local_err)) {
1666             error_propagate(errp, local_err);
1667             return false;
1668         }
1669         s->must_remove_block_options = true;
1670     }
1671 
1672     if (blk_inc) {
1673         migrate_set_block_incremental(true);
1674     }
1675 
1676     if (migrate_init(s, errp)) {
1677         return false;
1678     }
1679 
1680     return true;
1681 }
1682 
1683 void qmp_migrate(const char *uri, bool has_blk, bool blk,
1684                  bool has_inc, bool inc, bool has_detach, bool detach,
1685                  bool has_resume, bool resume, Error **errp)
1686 {
1687     bool resume_requested;
1688     Error *local_err = NULL;
1689     MigrationState *s = migrate_get_current();
1690     const char *p = NULL;
1691 
1692     /* URI is not suitable for migration? */
1693     if (!migration_channels_and_uri_compatible(uri, errp)) {
1694         return;
1695     }
1696 
1697     resume_requested = has_resume && resume;
1698     if (!migrate_prepare(s, has_blk && blk, has_inc && inc,
1699                          resume_requested, errp)) {
1700         /* Error detected, put into errp */
1701         return;
1702     }
1703 
1704     if (!resume_requested) {
1705         if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) {
1706             return;
1707         }
1708     }
1709 
1710     if (strstart(uri, "tcp:", &p) ||
1711         strstart(uri, "unix:", NULL) ||
1712         strstart(uri, "vsock:", NULL)) {
1713         socket_start_outgoing_migration(s, p ? p : uri, &local_err);
1714 #ifdef CONFIG_RDMA
1715     } else if (strstart(uri, "rdma:", &p)) {
1716         rdma_start_outgoing_migration(s, p, &local_err);
1717 #endif
1718     } else if (strstart(uri, "exec:", &p)) {
1719         exec_start_outgoing_migration(s, p, &local_err);
1720     } else if (strstart(uri, "fd:", &p)) {
1721         fd_start_outgoing_migration(s, p, &local_err);
1722     } else if (strstart(uri, "file:", &p)) {
1723         file_start_outgoing_migration(s, p, &local_err);
1724     } else {
1725         error_setg(&local_err, QERR_INVALID_PARAMETER_VALUE, "uri",
1726                    "a valid migration protocol");
1727         migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
1728                           MIGRATION_STATUS_FAILED);
1729         block_cleanup_parameters();
1730     }
1731 
1732     if (local_err) {
1733         if (!resume_requested) {
1734             yank_unregister_instance(MIGRATION_YANK_INSTANCE);
1735         }
1736         migrate_fd_error(s, local_err);
1737         error_propagate(errp, local_err);
1738         return;
1739     }
1740 }
1741 
1742 void qmp_migrate_cancel(Error **errp)
1743 {
1744     migration_cancel(NULL);
1745 }
1746 
1747 void qmp_migrate_continue(MigrationStatus state, Error **errp)
1748 {
1749     MigrationState *s = migrate_get_current();
1750     if (s->state != state) {
1751         error_setg(errp,  "Migration not in expected state: %s",
1752                    MigrationStatus_str(s->state));
1753         return;
1754     }
1755     qemu_sem_post(&s->pause_sem);
1756 }
1757 
1758 /* migration thread support */
1759 /*
1760  * Something bad happened to the RP stream, mark an error
1761  * The caller shall print or trace something to indicate why
1762  */
1763 static void mark_source_rp_bad(MigrationState *s)
1764 {
1765     s->rp_state.error = true;
1766 }
1767 
1768 void migration_rp_wait(MigrationState *s)
1769 {
1770     qemu_sem_wait(&s->rp_state.rp_sem);
1771 }
1772 
1773 void migration_rp_kick(MigrationState *s)
1774 {
1775     qemu_sem_post(&s->rp_state.rp_sem);
1776 }
1777 
1778 static struct rp_cmd_args {
1779     ssize_t     len; /* -1 = variable */
1780     const char *name;
1781 } rp_cmd_args[] = {
1782     [MIG_RP_MSG_INVALID]        = { .len = -1, .name = "INVALID" },
1783     [MIG_RP_MSG_SHUT]           = { .len =  4, .name = "SHUT" },
1784     [MIG_RP_MSG_PONG]           = { .len =  4, .name = "PONG" },
1785     [MIG_RP_MSG_REQ_PAGES]      = { .len = 12, .name = "REQ_PAGES" },
1786     [MIG_RP_MSG_REQ_PAGES_ID]   = { .len = -1, .name = "REQ_PAGES_ID" },
1787     [MIG_RP_MSG_RECV_BITMAP]    = { .len = -1, .name = "RECV_BITMAP" },
1788     [MIG_RP_MSG_RESUME_ACK]     = { .len =  4, .name = "RESUME_ACK" },
1789     [MIG_RP_MSG_SWITCHOVER_ACK] = { .len =  0, .name = "SWITCHOVER_ACK" },
1790     [MIG_RP_MSG_MAX]            = { .len = -1, .name = "MAX" },
1791 };
1792 
1793 /*
1794  * Process a request for pages received on the return path,
1795  * We're allowed to send more than requested (e.g. to round to our page size)
1796  * and we don't need to send pages that have already been sent.
1797  */
1798 static void migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname,
1799                                        ram_addr_t start, size_t len)
1800 {
1801     long our_host_ps = qemu_real_host_page_size();
1802 
1803     trace_migrate_handle_rp_req_pages(rbname, start, len);
1804 
1805     /*
1806      * Since we currently insist on matching page sizes, just sanity check
1807      * we're being asked for whole host pages.
1808      */
1809     if (!QEMU_IS_ALIGNED(start, our_host_ps) ||
1810         !QEMU_IS_ALIGNED(len, our_host_ps)) {
1811         error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT
1812                      " len: %zd", __func__, start, len);
1813         mark_source_rp_bad(ms);
1814         return;
1815     }
1816 
1817     if (ram_save_queue_pages(rbname, start, len)) {
1818         mark_source_rp_bad(ms);
1819     }
1820 }
1821 
1822 static int migrate_handle_rp_recv_bitmap(MigrationState *s, char *block_name)
1823 {
1824     RAMBlock *block = qemu_ram_block_by_name(block_name);
1825 
1826     if (!block) {
1827         error_report("%s: invalid block name '%s'", __func__, block_name);
1828         return -EINVAL;
1829     }
1830 
1831     /* Fetch the received bitmap and refresh the dirty bitmap */
1832     return ram_dirty_bitmap_reload(s, block);
1833 }
1834 
1835 static int migrate_handle_rp_resume_ack(MigrationState *s, uint32_t value)
1836 {
1837     trace_source_return_path_thread_resume_ack(value);
1838 
1839     if (value != MIGRATION_RESUME_ACK_VALUE) {
1840         error_report("%s: illegal resume_ack value %"PRIu32,
1841                      __func__, value);
1842         return -1;
1843     }
1844 
1845     /* Now both sides are active. */
1846     migrate_set_state(&s->state, MIGRATION_STATUS_POSTCOPY_RECOVER,
1847                       MIGRATION_STATUS_POSTCOPY_ACTIVE);
1848 
1849     /* Notify send thread that time to continue send pages */
1850     migration_rp_kick(s);
1851 
1852     return 0;
1853 }
1854 
1855 /*
1856  * Release ms->rp_state.from_dst_file (and postcopy_qemufile_src if
1857  * existed) in a safe way.
1858  */
1859 static void migration_release_dst_files(MigrationState *ms)
1860 {
1861     QEMUFile *file;
1862 
1863     WITH_QEMU_LOCK_GUARD(&ms->qemu_file_lock) {
1864         /*
1865          * Reset the from_dst_file pointer first before releasing it, as we
1866          * can't block within lock section
1867          */
1868         file = ms->rp_state.from_dst_file;
1869         ms->rp_state.from_dst_file = NULL;
1870     }
1871 
1872     /*
1873      * Do the same to postcopy fast path socket too if there is.  No
1874      * locking needed because this qemufile should only be managed by
1875      * return path thread.
1876      */
1877     if (ms->postcopy_qemufile_src) {
1878         migration_ioc_unregister_yank_from_file(ms->postcopy_qemufile_src);
1879         qemu_file_shutdown(ms->postcopy_qemufile_src);
1880         qemu_fclose(ms->postcopy_qemufile_src);
1881         ms->postcopy_qemufile_src = NULL;
1882     }
1883 
1884     qemu_fclose(file);
1885 }
1886 
1887 /*
1888  * Handles messages sent on the return path towards the source VM
1889  *
1890  */
1891 static void *source_return_path_thread(void *opaque)
1892 {
1893     MigrationState *ms = opaque;
1894     QEMUFile *rp = ms->rp_state.from_dst_file;
1895     uint16_t header_len, header_type;
1896     uint8_t buf[512];
1897     uint32_t tmp32, sibling_error;
1898     ram_addr_t start = 0; /* =0 to silence warning */
1899     size_t  len = 0, expected_len;
1900     int res;
1901 
1902     trace_source_return_path_thread_entry();
1903     rcu_register_thread();
1904 
1905     while (!ms->rp_state.error && !qemu_file_get_error(rp) &&
1906            migration_is_setup_or_active(ms->state)) {
1907         trace_source_return_path_thread_loop_top();
1908         header_type = qemu_get_be16(rp);
1909         header_len = qemu_get_be16(rp);
1910 
1911         if (qemu_file_get_error(rp)) {
1912             mark_source_rp_bad(ms);
1913             goto out;
1914         }
1915 
1916         if (header_type >= MIG_RP_MSG_MAX ||
1917             header_type == MIG_RP_MSG_INVALID) {
1918             error_report("RP: Received invalid message 0x%04x length 0x%04x",
1919                          header_type, header_len);
1920             mark_source_rp_bad(ms);
1921             goto out;
1922         }
1923 
1924         if ((rp_cmd_args[header_type].len != -1 &&
1925             header_len != rp_cmd_args[header_type].len) ||
1926             header_len > sizeof(buf)) {
1927             error_report("RP: Received '%s' message (0x%04x) with"
1928                          "incorrect length %d expecting %zu",
1929                          rp_cmd_args[header_type].name, header_type, header_len,
1930                          (size_t)rp_cmd_args[header_type].len);
1931             mark_source_rp_bad(ms);
1932             goto out;
1933         }
1934 
1935         /* We know we've got a valid header by this point */
1936         res = qemu_get_buffer(rp, buf, header_len);
1937         if (res != header_len) {
1938             error_report("RP: Failed reading data for message 0x%04x"
1939                          " read %d expected %d",
1940                          header_type, res, header_len);
1941             mark_source_rp_bad(ms);
1942             goto out;
1943         }
1944 
1945         /* OK, we have the message and the data */
1946         switch (header_type) {
1947         case MIG_RP_MSG_SHUT:
1948             sibling_error = ldl_be_p(buf);
1949             trace_source_return_path_thread_shut(sibling_error);
1950             if (sibling_error) {
1951                 error_report("RP: Sibling indicated error %d", sibling_error);
1952                 mark_source_rp_bad(ms);
1953             }
1954             /*
1955              * We'll let the main thread deal with closing the RP
1956              * we could do a shutdown(2) on it, but we're the only user
1957              * anyway, so there's nothing gained.
1958              */
1959             goto out;
1960 
1961         case MIG_RP_MSG_PONG:
1962             tmp32 = ldl_be_p(buf);
1963             trace_source_return_path_thread_pong(tmp32);
1964             qemu_sem_post(&ms->rp_state.rp_pong_acks);
1965             break;
1966 
1967         case MIG_RP_MSG_REQ_PAGES:
1968             start = ldq_be_p(buf);
1969             len = ldl_be_p(buf + 8);
1970             migrate_handle_rp_req_pages(ms, NULL, start, len);
1971             break;
1972 
1973         case MIG_RP_MSG_REQ_PAGES_ID:
1974             expected_len = 12 + 1; /* header + termination */
1975 
1976             if (header_len >= expected_len) {
1977                 start = ldq_be_p(buf);
1978                 len = ldl_be_p(buf + 8);
1979                 /* Now we expect an idstr */
1980                 tmp32 = buf[12]; /* Length of the following idstr */
1981                 buf[13 + tmp32] = '\0';
1982                 expected_len += tmp32;
1983             }
1984             if (header_len != expected_len) {
1985                 error_report("RP: Req_Page_id with length %d expecting %zd",
1986                              header_len, expected_len);
1987                 mark_source_rp_bad(ms);
1988                 goto out;
1989             }
1990             migrate_handle_rp_req_pages(ms, (char *)&buf[13], start, len);
1991             break;
1992 
1993         case MIG_RP_MSG_RECV_BITMAP:
1994             if (header_len < 1) {
1995                 error_report("%s: missing block name", __func__);
1996                 mark_source_rp_bad(ms);
1997                 goto out;
1998             }
1999             /* Format: len (1B) + idstr (<255B). This ends the idstr. */
2000             buf[buf[0] + 1] = '\0';
2001             if (migrate_handle_rp_recv_bitmap(ms, (char *)(buf + 1))) {
2002                 mark_source_rp_bad(ms);
2003                 goto out;
2004             }
2005             break;
2006 
2007         case MIG_RP_MSG_RESUME_ACK:
2008             tmp32 = ldl_be_p(buf);
2009             if (migrate_handle_rp_resume_ack(ms, tmp32)) {
2010                 mark_source_rp_bad(ms);
2011                 goto out;
2012             }
2013             break;
2014 
2015         case MIG_RP_MSG_SWITCHOVER_ACK:
2016             ms->switchover_acked = true;
2017             trace_source_return_path_thread_switchover_acked();
2018             break;
2019 
2020         default:
2021             break;
2022         }
2023     }
2024 
2025 out:
2026     if (qemu_file_get_error(rp)) {
2027         trace_source_return_path_thread_bad_end();
2028         mark_source_rp_bad(ms);
2029     }
2030 
2031     trace_source_return_path_thread_end();
2032     rcu_unregister_thread();
2033     return NULL;
2034 }
2035 
2036 static int open_return_path_on_source(MigrationState *ms)
2037 {
2038     ms->rp_state.from_dst_file = qemu_file_get_return_path(ms->to_dst_file);
2039     if (!ms->rp_state.from_dst_file) {
2040         return -1;
2041     }
2042 
2043     trace_open_return_path_on_source();
2044 
2045     qemu_thread_create(&ms->rp_state.rp_thread, "return path",
2046                        source_return_path_thread, ms, QEMU_THREAD_JOINABLE);
2047     ms->rp_state.rp_thread_created = true;
2048 
2049     trace_open_return_path_on_source_continue();
2050 
2051     return 0;
2052 }
2053 
2054 static int close_return_path_on_source(MigrationState *ms)
2055 {
2056     int ret;
2057 
2058     if (!ms->rp_state.rp_thread_created) {
2059         return 0;
2060     }
2061 
2062     trace_migration_return_path_end_before();
2063 
2064     /*
2065      * If this is a normal exit then the destination will send a SHUT
2066      * and the rp_thread will exit, however if there's an error we
2067      * need to cause it to exit. shutdown(2), if we have it, will
2068      * cause it to unblock if it's stuck waiting for the destination.
2069      */
2070     WITH_QEMU_LOCK_GUARD(&ms->qemu_file_lock) {
2071         if (ms->to_dst_file && ms->rp_state.from_dst_file &&
2072             qemu_file_get_error(ms->to_dst_file)) {
2073             qemu_file_shutdown(ms->rp_state.from_dst_file);
2074         }
2075     }
2076 
2077     trace_await_return_path_close_on_source_joining();
2078     qemu_thread_join(&ms->rp_state.rp_thread);
2079     ms->rp_state.rp_thread_created = false;
2080     trace_await_return_path_close_on_source_close();
2081 
2082     ret = ms->rp_state.error;
2083     ms->rp_state.error = false;
2084 
2085     migration_release_dst_files(ms);
2086 
2087     trace_migration_return_path_end_after(ret);
2088     return ret;
2089 }
2090 
2091 static inline void
2092 migration_wait_main_channel(MigrationState *ms)
2093 {
2094     /* Wait until one PONG message received */
2095     qemu_sem_wait(&ms->rp_state.rp_pong_acks);
2096 }
2097 
2098 /*
2099  * Switch from normal iteration to postcopy
2100  * Returns non-0 on error
2101  */
2102 static int postcopy_start(MigrationState *ms, Error **errp)
2103 {
2104     int ret;
2105     QIOChannelBuffer *bioc;
2106     QEMUFile *fb;
2107     int64_t time_at_stop = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2108     uint64_t bandwidth = migrate_max_postcopy_bandwidth();
2109     bool restart_block = false;
2110     int cur_state = MIGRATION_STATUS_ACTIVE;
2111 
2112     if (migrate_postcopy_preempt()) {
2113         migration_wait_main_channel(ms);
2114         if (postcopy_preempt_establish_channel(ms)) {
2115             migrate_set_state(&ms->state, ms->state, MIGRATION_STATUS_FAILED);
2116             return -1;
2117         }
2118     }
2119 
2120     if (!migrate_pause_before_switchover()) {
2121         migrate_set_state(&ms->state, MIGRATION_STATUS_ACTIVE,
2122                           MIGRATION_STATUS_POSTCOPY_ACTIVE);
2123     }
2124 
2125     trace_postcopy_start();
2126     qemu_mutex_lock_iothread();
2127     trace_postcopy_start_set_run();
2128 
2129     qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, NULL);
2130     global_state_store();
2131     ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
2132     if (ret < 0) {
2133         goto fail;
2134     }
2135 
2136     ret = migration_maybe_pause(ms, &cur_state,
2137                                 MIGRATION_STATUS_POSTCOPY_ACTIVE);
2138     if (ret < 0) {
2139         goto fail;
2140     }
2141 
2142     ret = bdrv_inactivate_all();
2143     if (ret < 0) {
2144         goto fail;
2145     }
2146     restart_block = true;
2147 
2148     /*
2149      * Cause any non-postcopiable, but iterative devices to
2150      * send out their final data.
2151      */
2152     qemu_savevm_state_complete_precopy(ms->to_dst_file, true, false);
2153 
2154     /*
2155      * in Finish migrate and with the io-lock held everything should
2156      * be quiet, but we've potentially still got dirty pages and we
2157      * need to tell the destination to throw any pages it's already received
2158      * that are dirty
2159      */
2160     if (migrate_postcopy_ram()) {
2161         ram_postcopy_send_discard_bitmap(ms);
2162     }
2163 
2164     /*
2165      * send rest of state - note things that are doing postcopy
2166      * will notice we're in POSTCOPY_ACTIVE and not actually
2167      * wrap their state up here
2168      */
2169     migration_rate_set(bandwidth);
2170     if (migrate_postcopy_ram()) {
2171         /* Ping just for debugging, helps line traces up */
2172         qemu_savevm_send_ping(ms->to_dst_file, 2);
2173     }
2174 
2175     /*
2176      * While loading the device state we may trigger page transfer
2177      * requests and the fd must be free to process those, and thus
2178      * the destination must read the whole device state off the fd before
2179      * it starts processing it.  Unfortunately the ad-hoc migration format
2180      * doesn't allow the destination to know the size to read without fully
2181      * parsing it through each devices load-state code (especially the open
2182      * coded devices that use get/put).
2183      * So we wrap the device state up in a package with a length at the start;
2184      * to do this we use a qemu_buf to hold the whole of the device state.
2185      */
2186     bioc = qio_channel_buffer_new(4096);
2187     qio_channel_set_name(QIO_CHANNEL(bioc), "migration-postcopy-buffer");
2188     fb = qemu_file_new_output(QIO_CHANNEL(bioc));
2189     object_unref(OBJECT(bioc));
2190 
2191     /*
2192      * Make sure the receiver can get incoming pages before we send the rest
2193      * of the state
2194      */
2195     qemu_savevm_send_postcopy_listen(fb);
2196 
2197     qemu_savevm_state_complete_precopy(fb, false, false);
2198     if (migrate_postcopy_ram()) {
2199         qemu_savevm_send_ping(fb, 3);
2200     }
2201 
2202     qemu_savevm_send_postcopy_run(fb);
2203 
2204     /* <><> end of stuff going into the package */
2205 
2206     /* Last point of recovery; as soon as we send the package the destination
2207      * can open devices and potentially start running.
2208      * Lets just check again we've not got any errors.
2209      */
2210     ret = qemu_file_get_error(ms->to_dst_file);
2211     if (ret) {
2212         error_setg(errp, "postcopy_start: Migration stream errored (pre package)");
2213         goto fail_closefb;
2214     }
2215 
2216     restart_block = false;
2217 
2218     /* Now send that blob */
2219     if (qemu_savevm_send_packaged(ms->to_dst_file, bioc->data, bioc->usage)) {
2220         goto fail_closefb;
2221     }
2222     qemu_fclose(fb);
2223 
2224     /* Send a notify to give a chance for anything that needs to happen
2225      * at the transition to postcopy and after the device state; in particular
2226      * spice needs to trigger a transition now
2227      */
2228     ms->postcopy_after_devices = true;
2229     notifier_list_notify(&migration_state_notifiers, ms);
2230 
2231     ms->downtime =  qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - time_at_stop;
2232 
2233     qemu_mutex_unlock_iothread();
2234 
2235     if (migrate_postcopy_ram()) {
2236         /*
2237          * Although this ping is just for debug, it could potentially be
2238          * used for getting a better measurement of downtime at the source.
2239          */
2240         qemu_savevm_send_ping(ms->to_dst_file, 4);
2241     }
2242 
2243     if (migrate_release_ram()) {
2244         ram_postcopy_migrated_memory_release(ms);
2245     }
2246 
2247     ret = qemu_file_get_error(ms->to_dst_file);
2248     if (ret) {
2249         error_setg(errp, "postcopy_start: Migration stream errored");
2250         migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2251                               MIGRATION_STATUS_FAILED);
2252     }
2253 
2254     trace_postcopy_preempt_enabled(migrate_postcopy_preempt());
2255 
2256     return ret;
2257 
2258 fail_closefb:
2259     qemu_fclose(fb);
2260 fail:
2261     migrate_set_state(&ms->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2262                           MIGRATION_STATUS_FAILED);
2263     if (restart_block) {
2264         /* A failure happened early enough that we know the destination hasn't
2265          * accessed block devices, so we're safe to recover.
2266          */
2267         Error *local_err = NULL;
2268 
2269         bdrv_activate_all(&local_err);
2270         if (local_err) {
2271             error_report_err(local_err);
2272         }
2273     }
2274     qemu_mutex_unlock_iothread();
2275     return -1;
2276 }
2277 
2278 /**
2279  * migration_maybe_pause: Pause if required to by
2280  * migrate_pause_before_switchover called with the iothread locked
2281  * Returns: 0 on success
2282  */
2283 static int migration_maybe_pause(MigrationState *s,
2284                                  int *current_active_state,
2285                                  int new_state)
2286 {
2287     if (!migrate_pause_before_switchover()) {
2288         return 0;
2289     }
2290 
2291     /* Since leaving this state is not atomic with posting the semaphore
2292      * it's possible that someone could have issued multiple migrate_continue
2293      * and the semaphore is incorrectly positive at this point;
2294      * the docs say it's undefined to reinit a semaphore that's already
2295      * init'd, so use timedwait to eat up any existing posts.
2296      */
2297     while (qemu_sem_timedwait(&s->pause_sem, 1) == 0) {
2298         /* This block intentionally left blank */
2299     }
2300 
2301     /*
2302      * If the migration is cancelled when it is in the completion phase,
2303      * the migration state is set to MIGRATION_STATUS_CANCELLING.
2304      * So we don't need to wait a semaphore, otherwise we would always
2305      * wait for the 'pause_sem' semaphore.
2306      */
2307     if (s->state != MIGRATION_STATUS_CANCELLING) {
2308         qemu_mutex_unlock_iothread();
2309         migrate_set_state(&s->state, *current_active_state,
2310                           MIGRATION_STATUS_PRE_SWITCHOVER);
2311         qemu_sem_wait(&s->pause_sem);
2312         migrate_set_state(&s->state, MIGRATION_STATUS_PRE_SWITCHOVER,
2313                           new_state);
2314         *current_active_state = new_state;
2315         qemu_mutex_lock_iothread();
2316     }
2317 
2318     return s->state == new_state ? 0 : -EINVAL;
2319 }
2320 
2321 static int migration_completion_precopy(MigrationState *s,
2322                                         int *current_active_state)
2323 {
2324     int ret;
2325 
2326     qemu_mutex_lock_iothread();
2327     s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2328     qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, NULL);
2329 
2330     s->vm_old_state = runstate_get();
2331     global_state_store();
2332 
2333     ret = vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
2334     trace_migration_completion_vm_stop(ret);
2335     if (ret < 0) {
2336         goto out_unlock;
2337     }
2338 
2339     ret = migration_maybe_pause(s, current_active_state,
2340                                 MIGRATION_STATUS_DEVICE);
2341     if (ret < 0) {
2342         goto out_unlock;
2343     }
2344 
2345     /*
2346      * Inactivate disks except in COLO, and track that we have done so in order
2347      * to remember to reactivate them if migration fails or is cancelled.
2348      */
2349     s->block_inactive = !migrate_colo();
2350     migration_rate_set(RATE_LIMIT_DISABLED);
2351     ret = qemu_savevm_state_complete_precopy(s->to_dst_file, false,
2352                                              s->block_inactive);
2353 out_unlock:
2354     qemu_mutex_unlock_iothread();
2355     return ret;
2356 }
2357 
2358 static void migration_completion_postcopy(MigrationState *s)
2359 {
2360     trace_migration_completion_postcopy_end();
2361 
2362     qemu_mutex_lock_iothread();
2363     qemu_savevm_state_complete_postcopy(s->to_dst_file);
2364     qemu_mutex_unlock_iothread();
2365 
2366     /*
2367      * Shutdown the postcopy fast path thread.  This is only needed when dest
2368      * QEMU binary is old (7.1/7.2).  QEMU 8.0+ doesn't need this.
2369      */
2370     if (migrate_postcopy_preempt() && s->preempt_pre_7_2) {
2371         postcopy_preempt_shutdown_file(s);
2372     }
2373 
2374     trace_migration_completion_postcopy_end_after_complete();
2375 }
2376 
2377 static void migration_completion_failed(MigrationState *s,
2378                                         int current_active_state)
2379 {
2380     if (s->block_inactive && (s->state == MIGRATION_STATUS_ACTIVE ||
2381                               s->state == MIGRATION_STATUS_DEVICE)) {
2382         /*
2383          * If not doing postcopy, vm_start() will be called: let's
2384          * regain control on images.
2385          */
2386         Error *local_err = NULL;
2387 
2388         qemu_mutex_lock_iothread();
2389         bdrv_activate_all(&local_err);
2390         if (local_err) {
2391             error_report_err(local_err);
2392         } else {
2393             s->block_inactive = false;
2394         }
2395         qemu_mutex_unlock_iothread();
2396     }
2397 
2398     migrate_set_state(&s->state, current_active_state,
2399                       MIGRATION_STATUS_FAILED);
2400 }
2401 
2402 /**
2403  * migration_completion: Used by migration_thread when there's not much left.
2404  *   The caller 'breaks' the loop when this returns.
2405  *
2406  * @s: Current migration state
2407  */
2408 static void migration_completion(MigrationState *s)
2409 {
2410     int ret = 0;
2411     int current_active_state = s->state;
2412 
2413     if (s->state == MIGRATION_STATUS_ACTIVE) {
2414         ret = migration_completion_precopy(s, &current_active_state);
2415     } else if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2416         migration_completion_postcopy(s);
2417     } else {
2418         ret = -1;
2419     }
2420 
2421     if (ret < 0) {
2422         goto fail;
2423     }
2424 
2425     if (close_return_path_on_source(s)) {
2426         goto fail;
2427     }
2428 
2429     if (qemu_file_get_error(s->to_dst_file)) {
2430         trace_migration_completion_file_err();
2431         goto fail;
2432     }
2433 
2434     if (migrate_colo() && s->state == MIGRATION_STATUS_ACTIVE) {
2435         /* COLO does not support postcopy */
2436         migrate_set_state(&s->state, MIGRATION_STATUS_ACTIVE,
2437                           MIGRATION_STATUS_COLO);
2438     } else {
2439         migrate_set_state(&s->state, current_active_state,
2440                           MIGRATION_STATUS_COMPLETED);
2441     }
2442 
2443     return;
2444 
2445 fail:
2446     migration_completion_failed(s, current_active_state);
2447 }
2448 
2449 /**
2450  * bg_migration_completion: Used by bg_migration_thread when after all the
2451  *   RAM has been saved. The caller 'breaks' the loop when this returns.
2452  *
2453  * @s: Current migration state
2454  */
2455 static void bg_migration_completion(MigrationState *s)
2456 {
2457     int current_active_state = s->state;
2458 
2459     if (s->state == MIGRATION_STATUS_ACTIVE) {
2460         /*
2461          * By this moment we have RAM content saved into the migration stream.
2462          * The next step is to flush the non-RAM content (device state)
2463          * right after the ram content. The device state has been stored into
2464          * the temporary buffer before RAM saving started.
2465          */
2466         qemu_put_buffer(s->to_dst_file, s->bioc->data, s->bioc->usage);
2467         qemu_fflush(s->to_dst_file);
2468     } else if (s->state == MIGRATION_STATUS_CANCELLING) {
2469         goto fail;
2470     }
2471 
2472     if (qemu_file_get_error(s->to_dst_file)) {
2473         trace_migration_completion_file_err();
2474         goto fail;
2475     }
2476 
2477     migrate_set_state(&s->state, current_active_state,
2478                       MIGRATION_STATUS_COMPLETED);
2479     return;
2480 
2481 fail:
2482     migrate_set_state(&s->state, current_active_state,
2483                       MIGRATION_STATUS_FAILED);
2484 }
2485 
2486 typedef enum MigThrError {
2487     /* No error detected */
2488     MIG_THR_ERR_NONE = 0,
2489     /* Detected error, but resumed successfully */
2490     MIG_THR_ERR_RECOVERED = 1,
2491     /* Detected fatal error, need to exit */
2492     MIG_THR_ERR_FATAL = 2,
2493 } MigThrError;
2494 
2495 static int postcopy_resume_handshake(MigrationState *s)
2496 {
2497     qemu_savevm_send_postcopy_resume(s->to_dst_file);
2498 
2499     while (s->state == MIGRATION_STATUS_POSTCOPY_RECOVER) {
2500         migration_rp_wait(s);
2501     }
2502 
2503     if (s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE) {
2504         return 0;
2505     }
2506 
2507     return -1;
2508 }
2509 
2510 /* Return zero if success, or <0 for error */
2511 static int postcopy_do_resume(MigrationState *s)
2512 {
2513     int ret;
2514 
2515     /*
2516      * Call all the resume_prepare() hooks, so that modules can be
2517      * ready for the migration resume.
2518      */
2519     ret = qemu_savevm_state_resume_prepare(s);
2520     if (ret) {
2521         error_report("%s: resume_prepare() failure detected: %d",
2522                      __func__, ret);
2523         return ret;
2524     }
2525 
2526     /*
2527      * If preempt is enabled, re-establish the preempt channel.  Note that
2528      * we do it after resume prepare to make sure the main channel will be
2529      * created before the preempt channel.  E.g. with weak network, the
2530      * dest QEMU may get messed up with the preempt and main channels on
2531      * the order of connection setup.  This guarantees the correct order.
2532      */
2533     ret = postcopy_preempt_establish_channel(s);
2534     if (ret) {
2535         error_report("%s: postcopy_preempt_establish_channel(): %d",
2536                      __func__, ret);
2537         return ret;
2538     }
2539 
2540     /*
2541      * Last handshake with destination on the resume (destination will
2542      * switch to postcopy-active afterwards)
2543      */
2544     ret = postcopy_resume_handshake(s);
2545     if (ret) {
2546         error_report("%s: handshake failed: %d", __func__, ret);
2547         return ret;
2548     }
2549 
2550     return 0;
2551 }
2552 
2553 /*
2554  * We don't return until we are in a safe state to continue current
2555  * postcopy migration.  Returns MIG_THR_ERR_RECOVERED if recovered, or
2556  * MIG_THR_ERR_FATAL if unrecovery failure happened.
2557  */
2558 static MigThrError postcopy_pause(MigrationState *s)
2559 {
2560     assert(s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE);
2561 
2562     while (true) {
2563         QEMUFile *file;
2564 
2565         /*
2566          * Current channel is possibly broken. Release it.  Note that this is
2567          * guaranteed even without lock because to_dst_file should only be
2568          * modified by the migration thread.  That also guarantees that the
2569          * unregister of yank is safe too without the lock.  It should be safe
2570          * even to be within the qemu_file_lock, but we didn't do that to avoid
2571          * taking more mutex (yank_lock) within qemu_file_lock.  TL;DR: we make
2572          * the qemu_file_lock critical section as small as possible.
2573          */
2574         assert(s->to_dst_file);
2575         migration_ioc_unregister_yank_from_file(s->to_dst_file);
2576         qemu_mutex_lock(&s->qemu_file_lock);
2577         file = s->to_dst_file;
2578         s->to_dst_file = NULL;
2579         qemu_mutex_unlock(&s->qemu_file_lock);
2580 
2581         qemu_file_shutdown(file);
2582         qemu_fclose(file);
2583 
2584         /*
2585          * We're already pausing, so ignore any errors on the return
2586          * path and just wait for the thread to finish. It will be
2587          * re-created when we resume.
2588          */
2589         close_return_path_on_source(s);
2590 
2591         migrate_set_state(&s->state, s->state,
2592                           MIGRATION_STATUS_POSTCOPY_PAUSED);
2593 
2594         error_report("Detected IO failure for postcopy. "
2595                      "Migration paused.");
2596 
2597         /*
2598          * We wait until things fixed up. Then someone will setup the
2599          * status back for us.
2600          */
2601         while (s->state == MIGRATION_STATUS_POSTCOPY_PAUSED) {
2602             qemu_sem_wait(&s->postcopy_pause_sem);
2603         }
2604 
2605         if (s->state == MIGRATION_STATUS_POSTCOPY_RECOVER) {
2606             /* Woken up by a recover procedure. Give it a shot */
2607 
2608             /* Do the resume logic */
2609             if (postcopy_do_resume(s) == 0) {
2610                 /* Let's continue! */
2611                 trace_postcopy_pause_continued();
2612                 return MIG_THR_ERR_RECOVERED;
2613             } else {
2614                 /*
2615                  * Something wrong happened during the recovery, let's
2616                  * pause again. Pause is always better than throwing
2617                  * data away.
2618                  */
2619                 continue;
2620             }
2621         } else {
2622             /* This is not right... Time to quit. */
2623             return MIG_THR_ERR_FATAL;
2624         }
2625     }
2626 }
2627 
2628 static MigThrError migration_detect_error(MigrationState *s)
2629 {
2630     int ret;
2631     int state = s->state;
2632     Error *local_error = NULL;
2633 
2634     if (state == MIGRATION_STATUS_CANCELLING ||
2635         state == MIGRATION_STATUS_CANCELLED) {
2636         /* End the migration, but don't set the state to failed */
2637         return MIG_THR_ERR_FATAL;
2638     }
2639 
2640     /*
2641      * Try to detect any file errors.  Note that postcopy_qemufile_src will
2642      * be NULL when postcopy preempt is not enabled.
2643      */
2644     ret = qemu_file_get_error_obj_any(s->to_dst_file,
2645                                       s->postcopy_qemufile_src,
2646                                       &local_error);
2647     if (!ret) {
2648         /* Everything is fine */
2649         assert(!local_error);
2650         return MIG_THR_ERR_NONE;
2651     }
2652 
2653     if (local_error) {
2654         migrate_set_error(s, local_error);
2655         error_free(local_error);
2656     }
2657 
2658     if (state == MIGRATION_STATUS_POSTCOPY_ACTIVE && ret) {
2659         /*
2660          * For postcopy, we allow the network to be down for a
2661          * while. After that, it can be continued by a
2662          * recovery phase.
2663          */
2664         return postcopy_pause(s);
2665     } else {
2666         /*
2667          * For precopy (or postcopy with error outside IO), we fail
2668          * with no time.
2669          */
2670         migrate_set_state(&s->state, state, MIGRATION_STATUS_FAILED);
2671         trace_migration_thread_file_err();
2672 
2673         /* Time to stop the migration, now. */
2674         return MIG_THR_ERR_FATAL;
2675     }
2676 }
2677 
2678 static void migration_calculate_complete(MigrationState *s)
2679 {
2680     uint64_t bytes = migration_transferred_bytes(s->to_dst_file);
2681     int64_t end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2682     int64_t transfer_time;
2683 
2684     s->total_time = end_time - s->start_time;
2685     if (!s->downtime) {
2686         /*
2687          * It's still not set, so we are precopy migration.  For
2688          * postcopy, downtime is calculated during postcopy_start().
2689          */
2690         s->downtime = end_time - s->downtime_start;
2691     }
2692 
2693     transfer_time = s->total_time - s->setup_time;
2694     if (transfer_time) {
2695         s->mbps = ((double) bytes * 8.0) / transfer_time / 1000;
2696     }
2697 }
2698 
2699 static void update_iteration_initial_status(MigrationState *s)
2700 {
2701     /*
2702      * Update these three fields at the same time to avoid mismatch info lead
2703      * wrong speed calculation.
2704      */
2705     s->iteration_start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2706     s->iteration_initial_bytes = migration_transferred_bytes(s->to_dst_file);
2707     s->iteration_initial_pages = ram_get_total_transferred_pages();
2708 }
2709 
2710 static void migration_update_counters(MigrationState *s,
2711                                       int64_t current_time)
2712 {
2713     uint64_t transferred, transferred_pages, time_spent;
2714     uint64_t current_bytes; /* bytes transferred since the beginning */
2715     uint64_t switchover_bw;
2716     /* Expected bandwidth when switching over to destination QEMU */
2717     double expected_bw_per_ms;
2718     double bandwidth;
2719 
2720     if (current_time < s->iteration_start_time + BUFFER_DELAY) {
2721         return;
2722     }
2723 
2724     switchover_bw = migrate_avail_switchover_bandwidth();
2725     current_bytes = migration_transferred_bytes(s->to_dst_file);
2726     transferred = current_bytes - s->iteration_initial_bytes;
2727     time_spent = current_time - s->iteration_start_time;
2728     bandwidth = (double)transferred / time_spent;
2729 
2730     if (switchover_bw) {
2731         /*
2732          * If the user specified a switchover bandwidth, let's trust the
2733          * user so that can be more accurate than what we estimated.
2734          */
2735         expected_bw_per_ms = switchover_bw / 1000;
2736     } else {
2737         /* If the user doesn't specify bandwidth, we use the estimated */
2738         expected_bw_per_ms = bandwidth;
2739     }
2740 
2741     s->threshold_size = expected_bw_per_ms * migrate_downtime_limit();
2742 
2743     s->mbps = (((double) transferred * 8.0) /
2744                ((double) time_spent / 1000.0)) / 1000.0 / 1000.0;
2745 
2746     transferred_pages = ram_get_total_transferred_pages() -
2747                             s->iteration_initial_pages;
2748     s->pages_per_second = (double) transferred_pages /
2749                              (((double) time_spent / 1000.0));
2750 
2751     /*
2752      * if we haven't sent anything, we don't want to
2753      * recalculate. 10000 is a small enough number for our purposes
2754      */
2755     if (stat64_get(&mig_stats.dirty_pages_rate) &&
2756         transferred > 10000) {
2757         s->expected_downtime =
2758             stat64_get(&mig_stats.dirty_bytes_last_sync) / expected_bw_per_ms;
2759     }
2760 
2761     migration_rate_reset(s->to_dst_file);
2762 
2763     update_iteration_initial_status(s);
2764 
2765     trace_migrate_transferred(transferred, time_spent,
2766                               /* Both in unit bytes/ms */
2767                               bandwidth, switchover_bw / 1000,
2768                               s->threshold_size);
2769 }
2770 
2771 static bool migration_can_switchover(MigrationState *s)
2772 {
2773     if (!migrate_switchover_ack()) {
2774         return true;
2775     }
2776 
2777     /* No reason to wait for switchover ACK if VM is stopped */
2778     if (!runstate_is_running()) {
2779         return true;
2780     }
2781 
2782     return s->switchover_acked;
2783 }
2784 
2785 /* Migration thread iteration status */
2786 typedef enum {
2787     MIG_ITERATE_RESUME,         /* Resume current iteration */
2788     MIG_ITERATE_SKIP,           /* Skip current iteration */
2789     MIG_ITERATE_BREAK,          /* Break the loop */
2790 } MigIterateState;
2791 
2792 /*
2793  * Return true if continue to the next iteration directly, false
2794  * otherwise.
2795  */
2796 static MigIterateState migration_iteration_run(MigrationState *s)
2797 {
2798     uint64_t must_precopy, can_postcopy;
2799     Error *local_err = NULL;
2800     bool in_postcopy = s->state == MIGRATION_STATUS_POSTCOPY_ACTIVE;
2801     bool can_switchover = migration_can_switchover(s);
2802 
2803     qemu_savevm_state_pending_estimate(&must_precopy, &can_postcopy);
2804     uint64_t pending_size = must_precopy + can_postcopy;
2805 
2806     trace_migrate_pending_estimate(pending_size, must_precopy, can_postcopy);
2807 
2808     if (must_precopy <= s->threshold_size) {
2809         qemu_savevm_state_pending_exact(&must_precopy, &can_postcopy);
2810         pending_size = must_precopy + can_postcopy;
2811         trace_migrate_pending_exact(pending_size, must_precopy, can_postcopy);
2812     }
2813 
2814     if ((!pending_size || pending_size < s->threshold_size) && can_switchover) {
2815         trace_migration_thread_low_pending(pending_size);
2816         migration_completion(s);
2817         return MIG_ITERATE_BREAK;
2818     }
2819 
2820     /* Still a significant amount to transfer */
2821     if (!in_postcopy && must_precopy <= s->threshold_size && can_switchover &&
2822         qatomic_read(&s->start_postcopy)) {
2823         if (postcopy_start(s, &local_err)) {
2824             migrate_set_error(s, local_err);
2825             error_report_err(local_err);
2826         }
2827         return MIG_ITERATE_SKIP;
2828     }
2829 
2830     /* Just another iteration step */
2831     qemu_savevm_state_iterate(s->to_dst_file, in_postcopy);
2832     return MIG_ITERATE_RESUME;
2833 }
2834 
2835 static void migration_iteration_finish(MigrationState *s)
2836 {
2837     /* If we enabled cpu throttling for auto-converge, turn it off. */
2838     cpu_throttle_stop();
2839 
2840     qemu_mutex_lock_iothread();
2841     switch (s->state) {
2842     case MIGRATION_STATUS_COMPLETED:
2843         migration_calculate_complete(s);
2844         runstate_set(RUN_STATE_POSTMIGRATE);
2845         break;
2846     case MIGRATION_STATUS_COLO:
2847         assert(migrate_colo());
2848         migrate_start_colo_process(s);
2849         s->vm_old_state = RUN_STATE_RUNNING;
2850         /* Fallthrough */
2851     case MIGRATION_STATUS_FAILED:
2852     case MIGRATION_STATUS_CANCELLED:
2853     case MIGRATION_STATUS_CANCELLING:
2854         if (s->vm_old_state == RUN_STATE_RUNNING) {
2855             if (!runstate_check(RUN_STATE_SHUTDOWN)) {
2856                 vm_start();
2857             }
2858         } else {
2859             if (runstate_check(RUN_STATE_FINISH_MIGRATE)) {
2860                 runstate_set(s->vm_old_state);
2861             }
2862         }
2863         break;
2864 
2865     default:
2866         /* Should not reach here, but if so, forgive the VM. */
2867         error_report("%s: Unknown ending state %d", __func__, s->state);
2868         break;
2869     }
2870     migrate_fd_cleanup_schedule(s);
2871     qemu_mutex_unlock_iothread();
2872 }
2873 
2874 static void bg_migration_iteration_finish(MigrationState *s)
2875 {
2876     /*
2877      * Stop tracking RAM writes - un-protect memory, un-register UFFD
2878      * memory ranges, flush kernel wait queues and wake up threads
2879      * waiting for write fault to be resolved.
2880      */
2881     ram_write_tracking_stop();
2882 
2883     qemu_mutex_lock_iothread();
2884     switch (s->state) {
2885     case MIGRATION_STATUS_COMPLETED:
2886         migration_calculate_complete(s);
2887         break;
2888 
2889     case MIGRATION_STATUS_ACTIVE:
2890     case MIGRATION_STATUS_FAILED:
2891     case MIGRATION_STATUS_CANCELLED:
2892     case MIGRATION_STATUS_CANCELLING:
2893         break;
2894 
2895     default:
2896         /* Should not reach here, but if so, forgive the VM. */
2897         error_report("%s: Unknown ending state %d", __func__, s->state);
2898         break;
2899     }
2900 
2901     migrate_fd_cleanup_schedule(s);
2902     qemu_mutex_unlock_iothread();
2903 }
2904 
2905 /*
2906  * Return true if continue to the next iteration directly, false
2907  * otherwise.
2908  */
2909 static MigIterateState bg_migration_iteration_run(MigrationState *s)
2910 {
2911     int res;
2912 
2913     res = qemu_savevm_state_iterate(s->to_dst_file, false);
2914     if (res > 0) {
2915         bg_migration_completion(s);
2916         return MIG_ITERATE_BREAK;
2917     }
2918 
2919     return MIG_ITERATE_RESUME;
2920 }
2921 
2922 void migration_make_urgent_request(void)
2923 {
2924     qemu_sem_post(&migrate_get_current()->rate_limit_sem);
2925 }
2926 
2927 void migration_consume_urgent_request(void)
2928 {
2929     qemu_sem_wait(&migrate_get_current()->rate_limit_sem);
2930 }
2931 
2932 /* Returns true if the rate limiting was broken by an urgent request */
2933 bool migration_rate_limit(void)
2934 {
2935     int64_t now = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
2936     MigrationState *s = migrate_get_current();
2937 
2938     bool urgent = false;
2939     migration_update_counters(s, now);
2940     if (migration_rate_exceeded(s->to_dst_file)) {
2941 
2942         if (qemu_file_get_error(s->to_dst_file)) {
2943             return false;
2944         }
2945         /*
2946          * Wait for a delay to do rate limiting OR
2947          * something urgent to post the semaphore.
2948          */
2949         int ms = s->iteration_start_time + BUFFER_DELAY - now;
2950         trace_migration_rate_limit_pre(ms);
2951         if (qemu_sem_timedwait(&s->rate_limit_sem, ms) == 0) {
2952             /*
2953              * We were woken by one or more urgent things but
2954              * the timedwait will have consumed one of them.
2955              * The service routine for the urgent wake will dec
2956              * the semaphore itself for each item it consumes,
2957              * so add this one we just eat back.
2958              */
2959             qemu_sem_post(&s->rate_limit_sem);
2960             urgent = true;
2961         }
2962         trace_migration_rate_limit_post(urgent);
2963     }
2964     return urgent;
2965 }
2966 
2967 /*
2968  * if failover devices are present, wait they are completely
2969  * unplugged
2970  */
2971 
2972 static void qemu_savevm_wait_unplug(MigrationState *s, int old_state,
2973                                     int new_state)
2974 {
2975     if (qemu_savevm_state_guest_unplug_pending()) {
2976         migrate_set_state(&s->state, old_state, MIGRATION_STATUS_WAIT_UNPLUG);
2977 
2978         while (s->state == MIGRATION_STATUS_WAIT_UNPLUG &&
2979                qemu_savevm_state_guest_unplug_pending()) {
2980             qemu_sem_timedwait(&s->wait_unplug_sem, 250);
2981         }
2982         if (s->state != MIGRATION_STATUS_WAIT_UNPLUG) {
2983             int timeout = 120; /* 30 seconds */
2984             /*
2985              * migration has been canceled
2986              * but as we have started an unplug we must wait the end
2987              * to be able to plug back the card
2988              */
2989             while (timeout-- && qemu_savevm_state_guest_unplug_pending()) {
2990                 qemu_sem_timedwait(&s->wait_unplug_sem, 250);
2991             }
2992             if (qemu_savevm_state_guest_unplug_pending() &&
2993                 !qtest_enabled()) {
2994                 warn_report("migration: partially unplugged device on "
2995                             "failure");
2996             }
2997         }
2998 
2999         migrate_set_state(&s->state, MIGRATION_STATUS_WAIT_UNPLUG, new_state);
3000     } else {
3001         migrate_set_state(&s->state, old_state, new_state);
3002     }
3003 }
3004 
3005 /*
3006  * Master migration thread on the source VM.
3007  * It drives the migration and pumps the data down the outgoing channel.
3008  */
3009 static void *migration_thread(void *opaque)
3010 {
3011     MigrationState *s = opaque;
3012     MigrationThread *thread = NULL;
3013     int64_t setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
3014     MigThrError thr_error;
3015     bool urgent = false;
3016 
3017     thread = migration_threads_add("live_migration", qemu_get_thread_id());
3018 
3019     rcu_register_thread();
3020 
3021     object_ref(OBJECT(s));
3022     update_iteration_initial_status(s);
3023 
3024     qemu_mutex_lock_iothread();
3025     qemu_savevm_state_header(s->to_dst_file);
3026     qemu_mutex_unlock_iothread();
3027 
3028     /*
3029      * If we opened the return path, we need to make sure dst has it
3030      * opened as well.
3031      */
3032     if (s->rp_state.rp_thread_created) {
3033         /* Now tell the dest that it should open its end so it can reply */
3034         qemu_savevm_send_open_return_path(s->to_dst_file);
3035 
3036         /* And do a ping that will make stuff easier to debug */
3037         qemu_savevm_send_ping(s->to_dst_file, 1);
3038     }
3039 
3040     if (migrate_postcopy()) {
3041         /*
3042          * Tell the destination that we *might* want to do postcopy later;
3043          * if the other end can't do postcopy it should fail now, nice and
3044          * early.
3045          */
3046         qemu_savevm_send_postcopy_advise(s->to_dst_file);
3047     }
3048 
3049     if (migrate_colo()) {
3050         /* Notify migration destination that we enable COLO */
3051         qemu_savevm_send_colo_enable(s->to_dst_file);
3052     }
3053 
3054     qemu_mutex_lock_iothread();
3055     qemu_savevm_state_setup(s->to_dst_file);
3056     qemu_mutex_unlock_iothread();
3057 
3058     qemu_savevm_wait_unplug(s, MIGRATION_STATUS_SETUP,
3059                                MIGRATION_STATUS_ACTIVE);
3060 
3061     s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
3062 
3063     trace_migration_thread_setup_complete();
3064 
3065     while (migration_is_active(s)) {
3066         if (urgent || !migration_rate_exceeded(s->to_dst_file)) {
3067             MigIterateState iter_state = migration_iteration_run(s);
3068             if (iter_state == MIG_ITERATE_SKIP) {
3069                 continue;
3070             } else if (iter_state == MIG_ITERATE_BREAK) {
3071                 break;
3072             }
3073         }
3074 
3075         /*
3076          * Try to detect any kind of failures, and see whether we
3077          * should stop the migration now.
3078          */
3079         thr_error = migration_detect_error(s);
3080         if (thr_error == MIG_THR_ERR_FATAL) {
3081             /* Stop migration */
3082             break;
3083         } else if (thr_error == MIG_THR_ERR_RECOVERED) {
3084             /*
3085              * Just recovered from a e.g. network failure, reset all
3086              * the local variables. This is important to avoid
3087              * breaking transferred_bytes and bandwidth calculation
3088              */
3089             update_iteration_initial_status(s);
3090         }
3091 
3092         urgent = migration_rate_limit();
3093     }
3094 
3095     trace_migration_thread_after_loop();
3096     migration_iteration_finish(s);
3097     object_unref(OBJECT(s));
3098     rcu_unregister_thread();
3099     migration_threads_remove(thread);
3100     return NULL;
3101 }
3102 
3103 static void bg_migration_vm_start_bh(void *opaque)
3104 {
3105     MigrationState *s = opaque;
3106 
3107     qemu_bh_delete(s->vm_start_bh);
3108     s->vm_start_bh = NULL;
3109 
3110     vm_start();
3111     s->downtime = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) - s->downtime_start;
3112 }
3113 
3114 /**
3115  * Background snapshot thread, based on live migration code.
3116  * This is an alternative implementation of live migration mechanism
3117  * introduced specifically to support background snapshots.
3118  *
3119  * It takes advantage of userfault_fd write protection mechanism introduced
3120  * in v5.7 kernel. Compared to existing dirty page logging migration much
3121  * lesser stream traffic is produced resulting in smaller snapshot images,
3122  * simply cause of no page duplicates can get into the stream.
3123  *
3124  * Another key point is that generated vmstate stream reflects machine state
3125  * 'frozen' at the beginning of snapshot creation compared to dirty page logging
3126  * mechanism, which effectively results in that saved snapshot is the state of VM
3127  * at the end of the process.
3128  */
3129 static void *bg_migration_thread(void *opaque)
3130 {
3131     MigrationState *s = opaque;
3132     int64_t setup_start;
3133     MigThrError thr_error;
3134     QEMUFile *fb;
3135     bool early_fail = true;
3136 
3137     rcu_register_thread();
3138     object_ref(OBJECT(s));
3139 
3140     migration_rate_set(RATE_LIMIT_DISABLED);
3141 
3142     setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
3143     /*
3144      * We want to save vmstate for the moment when migration has been
3145      * initiated but also we want to save RAM content while VM is running.
3146      * The RAM content should appear first in the vmstate. So, we first
3147      * stash the non-RAM part of the vmstate to the temporary buffer,
3148      * then write RAM part of the vmstate to the migration stream
3149      * with vCPUs running and, finally, write stashed non-RAM part of
3150      * the vmstate from the buffer to the migration stream.
3151      */
3152     s->bioc = qio_channel_buffer_new(512 * 1024);
3153     qio_channel_set_name(QIO_CHANNEL(s->bioc), "vmstate-buffer");
3154     fb = qemu_file_new_output(QIO_CHANNEL(s->bioc));
3155     object_unref(OBJECT(s->bioc));
3156 
3157     update_iteration_initial_status(s);
3158 
3159     /*
3160      * Prepare for tracking memory writes with UFFD-WP - populate
3161      * RAM pages before protecting.
3162      */
3163 #ifdef __linux__
3164     ram_write_tracking_prepare();
3165 #endif
3166 
3167     qemu_mutex_lock_iothread();
3168     qemu_savevm_state_header(s->to_dst_file);
3169     qemu_savevm_state_setup(s->to_dst_file);
3170     qemu_mutex_unlock_iothread();
3171 
3172     qemu_savevm_wait_unplug(s, MIGRATION_STATUS_SETUP,
3173                                MIGRATION_STATUS_ACTIVE);
3174 
3175     s->setup_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) - setup_start;
3176 
3177     trace_migration_thread_setup_complete();
3178     s->downtime_start = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
3179 
3180     qemu_mutex_lock_iothread();
3181 
3182     /*
3183      * If VM is currently in suspended state, then, to make a valid runstate
3184      * transition in vm_stop_force_state() we need to wakeup it up.
3185      */
3186     qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, NULL);
3187     s->vm_old_state = runstate_get();
3188 
3189     global_state_store();
3190     /* Forcibly stop VM before saving state of vCPUs and devices */
3191     if (vm_stop_force_state(RUN_STATE_PAUSED)) {
3192         goto fail;
3193     }
3194     /*
3195      * Put vCPUs in sync with shadow context structures, then
3196      * save their state to channel-buffer along with devices.
3197      */
3198     cpu_synchronize_all_states();
3199     if (qemu_savevm_state_complete_precopy_non_iterable(fb, false, false)) {
3200         goto fail;
3201     }
3202     /*
3203      * Since we are going to get non-iterable state data directly
3204      * from s->bioc->data, explicit flush is needed here.
3205      */
3206     qemu_fflush(fb);
3207 
3208     /* Now initialize UFFD context and start tracking RAM writes */
3209     if (ram_write_tracking_start()) {
3210         goto fail;
3211     }
3212     early_fail = false;
3213 
3214     /*
3215      * Start VM from BH handler to avoid write-fault lock here.
3216      * UFFD-WP protection for the whole RAM is already enabled so
3217      * calling VM state change notifiers from vm_start() would initiate
3218      * writes to virtio VQs memory which is in write-protected region.
3219      */
3220     s->vm_start_bh = qemu_bh_new(bg_migration_vm_start_bh, s);
3221     qemu_bh_schedule(s->vm_start_bh);
3222 
3223     qemu_mutex_unlock_iothread();
3224 
3225     while (migration_is_active(s)) {
3226         MigIterateState iter_state = bg_migration_iteration_run(s);
3227         if (iter_state == MIG_ITERATE_SKIP) {
3228             continue;
3229         } else if (iter_state == MIG_ITERATE_BREAK) {
3230             break;
3231         }
3232 
3233         /*
3234          * Try to detect any kind of failures, and see whether we
3235          * should stop the migration now.
3236          */
3237         thr_error = migration_detect_error(s);
3238         if (thr_error == MIG_THR_ERR_FATAL) {
3239             /* Stop migration */
3240             break;
3241         }
3242 
3243         migration_update_counters(s, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
3244     }
3245 
3246     trace_migration_thread_after_loop();
3247 
3248 fail:
3249     if (early_fail) {
3250         migrate_set_state(&s->state, MIGRATION_STATUS_ACTIVE,
3251                 MIGRATION_STATUS_FAILED);
3252         qemu_mutex_unlock_iothread();
3253     }
3254 
3255     bg_migration_iteration_finish(s);
3256 
3257     qemu_fclose(fb);
3258     object_unref(OBJECT(s));
3259     rcu_unregister_thread();
3260 
3261     return NULL;
3262 }
3263 
3264 void migrate_fd_connect(MigrationState *s, Error *error_in)
3265 {
3266     Error *local_err = NULL;
3267     uint64_t rate_limit;
3268     bool resume = s->state == MIGRATION_STATUS_POSTCOPY_PAUSED;
3269 
3270     /*
3271      * If there's a previous error, free it and prepare for another one.
3272      * Meanwhile if migration completes successfully, there won't have an error
3273      * dumped when calling migrate_fd_cleanup().
3274      */
3275     migrate_error_free(s);
3276 
3277     s->expected_downtime = migrate_downtime_limit();
3278     if (resume) {
3279         assert(s->cleanup_bh);
3280     } else {
3281         assert(!s->cleanup_bh);
3282         s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup_bh, s);
3283     }
3284     if (error_in) {
3285         migrate_fd_error(s, error_in);
3286         if (resume) {
3287             /*
3288              * Don't do cleanup for resume if channel is invalid, but only dump
3289              * the error.  We wait for another channel connect from the user.
3290              * The error_report still gives HMP user a hint on what failed.
3291              * It's normally done in migrate_fd_cleanup(), but call it here
3292              * explicitly.
3293              */
3294             error_report_err(error_copy(s->error));
3295         } else {
3296             migrate_fd_cleanup(s);
3297         }
3298         return;
3299     }
3300 
3301     if (resume) {
3302         /* This is a resumed migration */
3303         rate_limit = migrate_max_postcopy_bandwidth();
3304     } else {
3305         /* This is a fresh new migration */
3306         rate_limit = migrate_max_bandwidth();
3307 
3308         /* Notify before starting migration thread */
3309         notifier_list_notify(&migration_state_notifiers, s);
3310     }
3311 
3312     migration_rate_set(rate_limit);
3313     qemu_file_set_blocking(s->to_dst_file, true);
3314 
3315     /*
3316      * Open the return path. For postcopy, it is used exclusively. For
3317      * precopy, only if user specified "return-path" capability would
3318      * QEMU uses the return path.
3319      */
3320     if (migrate_postcopy_ram() || migrate_return_path()) {
3321         if (open_return_path_on_source(s)) {
3322             error_setg(&local_err, "Unable to open return-path for postcopy");
3323             migrate_set_state(&s->state, s->state, MIGRATION_STATUS_FAILED);
3324             migrate_set_error(s, local_err);
3325             error_report_err(local_err);
3326             migrate_fd_cleanup(s);
3327             return;
3328         }
3329     }
3330 
3331     /*
3332      * This needs to be done before resuming a postcopy.  Note: for newer
3333      * QEMUs we will delay the channel creation until postcopy_start(), to
3334      * avoid disorder of channel creations.
3335      */
3336     if (migrate_postcopy_preempt() && s->preempt_pre_7_2) {
3337         postcopy_preempt_setup(s);
3338     }
3339 
3340     if (resume) {
3341         /* Wakeup the main migration thread to do the recovery */
3342         migrate_set_state(&s->state, MIGRATION_STATUS_POSTCOPY_PAUSED,
3343                           MIGRATION_STATUS_POSTCOPY_RECOVER);
3344         qemu_sem_post(&s->postcopy_pause_sem);
3345         return;
3346     }
3347 
3348     if (multifd_save_setup(&local_err) != 0) {
3349         migrate_set_error(s, local_err);
3350         error_report_err(local_err);
3351         migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
3352                           MIGRATION_STATUS_FAILED);
3353         migrate_fd_cleanup(s);
3354         return;
3355     }
3356 
3357     if (migrate_background_snapshot()) {
3358         qemu_thread_create(&s->thread, "bg_snapshot",
3359                 bg_migration_thread, s, QEMU_THREAD_JOINABLE);
3360     } else {
3361         qemu_thread_create(&s->thread, "live_migration",
3362                 migration_thread, s, QEMU_THREAD_JOINABLE);
3363     }
3364     s->migration_thread_running = true;
3365 }
3366 
3367 static void migration_class_init(ObjectClass *klass, void *data)
3368 {
3369     DeviceClass *dc = DEVICE_CLASS(klass);
3370 
3371     dc->user_creatable = false;
3372     device_class_set_props(dc, migration_properties);
3373 }
3374 
3375 static void migration_instance_finalize(Object *obj)
3376 {
3377     MigrationState *ms = MIGRATION_OBJ(obj);
3378 
3379     qemu_mutex_destroy(&ms->error_mutex);
3380     qemu_mutex_destroy(&ms->qemu_file_lock);
3381     qemu_sem_destroy(&ms->wait_unplug_sem);
3382     qemu_sem_destroy(&ms->rate_limit_sem);
3383     qemu_sem_destroy(&ms->pause_sem);
3384     qemu_sem_destroy(&ms->postcopy_pause_sem);
3385     qemu_sem_destroy(&ms->rp_state.rp_sem);
3386     qemu_sem_destroy(&ms->rp_state.rp_pong_acks);
3387     qemu_sem_destroy(&ms->postcopy_qemufile_src_sem);
3388     error_free(ms->error);
3389 }
3390 
3391 static void migration_instance_init(Object *obj)
3392 {
3393     MigrationState *ms = MIGRATION_OBJ(obj);
3394 
3395     ms->state = MIGRATION_STATUS_NONE;
3396     ms->mbps = -1;
3397     ms->pages_per_second = -1;
3398     qemu_sem_init(&ms->pause_sem, 0);
3399     qemu_mutex_init(&ms->error_mutex);
3400 
3401     migrate_params_init(&ms->parameters);
3402 
3403     qemu_sem_init(&ms->postcopy_pause_sem, 0);
3404     qemu_sem_init(&ms->rp_state.rp_sem, 0);
3405     qemu_sem_init(&ms->rp_state.rp_pong_acks, 0);
3406     qemu_sem_init(&ms->rate_limit_sem, 0);
3407     qemu_sem_init(&ms->wait_unplug_sem, 0);
3408     qemu_sem_init(&ms->postcopy_qemufile_src_sem, 0);
3409     qemu_mutex_init(&ms->qemu_file_lock);
3410 }
3411 
3412 /*
3413  * Return true if check pass, false otherwise. Error will be put
3414  * inside errp if provided.
3415  */
3416 static bool migration_object_check(MigrationState *ms, Error **errp)
3417 {
3418     /* Assuming all off */
3419     bool old_caps[MIGRATION_CAPABILITY__MAX] = { 0 };
3420 
3421     if (!migrate_params_check(&ms->parameters, errp)) {
3422         return false;
3423     }
3424 
3425     return migrate_caps_check(old_caps, ms->capabilities, errp);
3426 }
3427 
3428 static const TypeInfo migration_type = {
3429     .name = TYPE_MIGRATION,
3430     /*
3431      * NOTE: TYPE_MIGRATION is not really a device, as the object is
3432      * not created using qdev_new(), it is not attached to the qdev
3433      * device tree, and it is never realized.
3434      *
3435      * TODO: Make this TYPE_OBJECT once QOM provides something like
3436      * TYPE_DEVICE's "-global" properties.
3437      */
3438     .parent = TYPE_DEVICE,
3439     .class_init = migration_class_init,
3440     .class_size = sizeof(MigrationClass),
3441     .instance_size = sizeof(MigrationState),
3442     .instance_init = migration_instance_init,
3443     .instance_finalize = migration_instance_finalize,
3444 };
3445 
3446 static void register_migration_types(void)
3447 {
3448     type_register_static(&migration_type);
3449 }
3450 
3451 type_init(register_migration_types);
3452