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