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