xref: /qemu/migration/colo.c (revision a976ed3f)
1 /*
2  * COarse-grain LOck-stepping Virtual Machines for Non-stop Service (COLO)
3  * (a.k.a. Fault Tolerance or Continuous Replication)
4  *
5  * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
6  * Copyright (c) 2016 FUJITSU LIMITED
7  * Copyright (c) 2016 Intel Corporation
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2 or
10  * later.  See the COPYING file in the top-level directory.
11  */
12 
13 #include "qemu/osdep.h"
14 #include "sysemu/sysemu.h"
15 #include "qapi/error.h"
16 #include "qapi/qapi-commands-migration.h"
17 #include "qemu-file-channel.h"
18 #include "migration.h"
19 #include "qemu-file.h"
20 #include "savevm.h"
21 #include "migration/colo.h"
22 #include "block.h"
23 #include "io/channel-buffer.h"
24 #include "trace.h"
25 #include "qemu/error-report.h"
26 #include "qemu/main-loop.h"
27 #include "qemu/rcu.h"
28 #include "migration/failover.h"
29 #include "migration/ram.h"
30 #ifdef CONFIG_REPLICATION
31 #include "replication.h"
32 #endif
33 #include "net/colo-compare.h"
34 #include "net/colo.h"
35 #include "block/block.h"
36 #include "qapi/qapi-events-migration.h"
37 #include "qapi/qmp/qerror.h"
38 #include "sysemu/cpus.h"
39 #include "sysemu/runstate.h"
40 #include "net/filter.h"
41 
42 static bool vmstate_loading;
43 static Notifier packets_compare_notifier;
44 
45 /* User need to know colo mode after COLO failover */
46 static COLOMode last_colo_mode;
47 
48 #define COLO_BUFFER_BASE_SIZE (4 * 1024 * 1024)
49 
50 bool migration_in_colo_state(void)
51 {
52     MigrationState *s = migrate_get_current();
53 
54     return (s->state == MIGRATION_STATUS_COLO);
55 }
56 
57 bool migration_incoming_in_colo_state(void)
58 {
59     MigrationIncomingState *mis = migration_incoming_get_current();
60 
61     return mis && (mis->state == MIGRATION_STATUS_COLO);
62 }
63 
64 static bool colo_runstate_is_stopped(void)
65 {
66     return runstate_check(RUN_STATE_COLO) || !runstate_is_running();
67 }
68 
69 static void secondary_vm_do_failover(void)
70 {
71 /* COLO needs enable block-replication */
72 #ifdef CONFIG_REPLICATION
73     int old_state;
74     MigrationIncomingState *mis = migration_incoming_get_current();
75     Error *local_err = NULL;
76 
77     /* Can not do failover during the process of VM's loading VMstate, Or
78      * it will break the secondary VM.
79      */
80     if (vmstate_loading) {
81         old_state = failover_set_state(FAILOVER_STATUS_ACTIVE,
82                         FAILOVER_STATUS_RELAUNCH);
83         if (old_state != FAILOVER_STATUS_ACTIVE) {
84             error_report("Unknown error while do failover for secondary VM,"
85                          "old_state: %s", FailoverStatus_str(old_state));
86         }
87         return;
88     }
89 
90     migrate_set_state(&mis->state, MIGRATION_STATUS_COLO,
91                       MIGRATION_STATUS_COMPLETED);
92 
93     replication_stop_all(true, &local_err);
94     if (local_err) {
95         error_report_err(local_err);
96         local_err = NULL;
97     }
98 
99     /* Notify all filters of all NIC to do checkpoint */
100     colo_notify_filters_event(COLO_EVENT_FAILOVER, &local_err);
101     if (local_err) {
102         error_report_err(local_err);
103     }
104 
105     if (!autostart) {
106         error_report("\"-S\" qemu option will be ignored in secondary side");
107         /* recover runstate to normal migration finish state */
108         autostart = true;
109     }
110     /*
111      * Make sure COLO incoming thread not block in recv or send,
112      * If mis->from_src_file and mis->to_src_file use the same fd,
113      * The second shutdown() will return -1, we ignore this value,
114      * It is harmless.
115      */
116     if (mis->from_src_file) {
117         qemu_file_shutdown(mis->from_src_file);
118     }
119     if (mis->to_src_file) {
120         qemu_file_shutdown(mis->to_src_file);
121     }
122 
123     old_state = failover_set_state(FAILOVER_STATUS_ACTIVE,
124                                    FAILOVER_STATUS_COMPLETED);
125     if (old_state != FAILOVER_STATUS_ACTIVE) {
126         error_report("Incorrect state (%s) while doing failover for "
127                      "secondary VM", FailoverStatus_str(old_state));
128         return;
129     }
130     /* Notify COLO incoming thread that failover work is finished */
131     qemu_sem_post(&mis->colo_incoming_sem);
132 
133     /* For Secondary VM, jump to incoming co */
134     if (mis->migration_incoming_co) {
135         qemu_coroutine_enter(mis->migration_incoming_co);
136     }
137 #else
138     abort();
139 #endif
140 }
141 
142 static void primary_vm_do_failover(void)
143 {
144 #ifdef CONFIG_REPLICATION
145     MigrationState *s = migrate_get_current();
146     int old_state;
147     Error *local_err = NULL;
148 
149     migrate_set_state(&s->state, MIGRATION_STATUS_COLO,
150                       MIGRATION_STATUS_COMPLETED);
151     /*
152      * kick COLO thread which might wait at
153      * qemu_sem_wait(&s->colo_checkpoint_sem).
154      */
155     colo_checkpoint_notify(migrate_get_current());
156 
157     /*
158      * Wake up COLO thread which may blocked in recv() or send(),
159      * The s->rp_state.from_dst_file and s->to_dst_file may use the
160      * same fd, but we still shutdown the fd for twice, it is harmless.
161      */
162     if (s->to_dst_file) {
163         qemu_file_shutdown(s->to_dst_file);
164     }
165     if (s->rp_state.from_dst_file) {
166         qemu_file_shutdown(s->rp_state.from_dst_file);
167     }
168 
169     old_state = failover_set_state(FAILOVER_STATUS_ACTIVE,
170                                    FAILOVER_STATUS_COMPLETED);
171     if (old_state != FAILOVER_STATUS_ACTIVE) {
172         error_report("Incorrect state (%s) while doing failover for Primary VM",
173                      FailoverStatus_str(old_state));
174         return;
175     }
176 
177     replication_stop_all(true, &local_err);
178     if (local_err) {
179         error_report_err(local_err);
180         local_err = NULL;
181     }
182 
183     /* Notify COLO thread that failover work is finished */
184     qemu_sem_post(&s->colo_exit_sem);
185 #else
186     abort();
187 #endif
188 }
189 
190 COLOMode get_colo_mode(void)
191 {
192     if (migration_in_colo_state()) {
193         return COLO_MODE_PRIMARY;
194     } else if (migration_incoming_in_colo_state()) {
195         return COLO_MODE_SECONDARY;
196     } else {
197         return COLO_MODE_NONE;
198     }
199 }
200 
201 void colo_do_failover(void)
202 {
203     /* Make sure VM stopped while failover happened. */
204     if (!colo_runstate_is_stopped()) {
205         vm_stop_force_state(RUN_STATE_COLO);
206     }
207 
208     switch (get_colo_mode()) {
209     case COLO_MODE_PRIMARY:
210         primary_vm_do_failover();
211         break;
212     case COLO_MODE_SECONDARY:
213         secondary_vm_do_failover();
214         break;
215     default:
216         error_report("colo_do_failover failed because the colo mode"
217                      " could not be obtained");
218     }
219 }
220 
221 #ifdef CONFIG_REPLICATION
222 void qmp_xen_set_replication(bool enable, bool primary,
223                              bool has_failover, bool failover,
224                              Error **errp)
225 {
226     ReplicationMode mode = primary ?
227                            REPLICATION_MODE_PRIMARY :
228                            REPLICATION_MODE_SECONDARY;
229 
230     if (has_failover && enable) {
231         error_setg(errp, "Parameter 'failover' is only for"
232                    " stopping replication");
233         return;
234     }
235 
236     if (enable) {
237         replication_start_all(mode, errp);
238     } else {
239         if (!has_failover) {
240             failover = NULL;
241         }
242         replication_stop_all(failover, failover ? NULL : errp);
243     }
244 }
245 
246 ReplicationStatus *qmp_query_xen_replication_status(Error **errp)
247 {
248     Error *err = NULL;
249     ReplicationStatus *s = g_new0(ReplicationStatus, 1);
250 
251     replication_get_error_all(&err);
252     if (err) {
253         s->error = true;
254         s->has_desc = true;
255         s->desc = g_strdup(error_get_pretty(err));
256     } else {
257         s->error = false;
258     }
259 
260     error_free(err);
261     return s;
262 }
263 
264 void qmp_xen_colo_do_checkpoint(Error **errp)
265 {
266     Error *err = NULL;
267 
268     replication_do_checkpoint_all(&err);
269     if (err) {
270         error_propagate(errp, err);
271         return;
272     }
273     /* Notify all filters of all NIC to do checkpoint */
274     colo_notify_filters_event(COLO_EVENT_CHECKPOINT, errp);
275 }
276 #endif
277 
278 COLOStatus *qmp_query_colo_status(Error **errp)
279 {
280     COLOStatus *s = g_new0(COLOStatus, 1);
281 
282     s->mode = get_colo_mode();
283     s->last_mode = last_colo_mode;
284 
285     switch (failover_get_state()) {
286     case FAILOVER_STATUS_NONE:
287         s->reason = COLO_EXIT_REASON_NONE;
288         break;
289     case FAILOVER_STATUS_COMPLETED:
290         s->reason = COLO_EXIT_REASON_REQUEST;
291         break;
292     default:
293         if (migration_in_colo_state()) {
294             s->reason = COLO_EXIT_REASON_PROCESSING;
295         } else {
296             s->reason = COLO_EXIT_REASON_ERROR;
297         }
298     }
299 
300     return s;
301 }
302 
303 static void colo_send_message(QEMUFile *f, COLOMessage msg,
304                               Error **errp)
305 {
306     int ret;
307 
308     if (msg >= COLO_MESSAGE__MAX) {
309         error_setg(errp, "%s: Invalid message", __func__);
310         return;
311     }
312     qemu_put_be32(f, msg);
313     qemu_fflush(f);
314 
315     ret = qemu_file_get_error(f);
316     if (ret < 0) {
317         error_setg_errno(errp, -ret, "Can't send COLO message");
318     }
319     trace_colo_send_message(COLOMessage_str(msg));
320 }
321 
322 static void colo_send_message_value(QEMUFile *f, COLOMessage msg,
323                                     uint64_t value, Error **errp)
324 {
325     Error *local_err = NULL;
326     int ret;
327 
328     colo_send_message(f, msg, &local_err);
329     if (local_err) {
330         error_propagate(errp, local_err);
331         return;
332     }
333     qemu_put_be64(f, value);
334     qemu_fflush(f);
335 
336     ret = qemu_file_get_error(f);
337     if (ret < 0) {
338         error_setg_errno(errp, -ret, "Failed to send value for message:%s",
339                          COLOMessage_str(msg));
340     }
341 }
342 
343 static COLOMessage colo_receive_message(QEMUFile *f, Error **errp)
344 {
345     COLOMessage msg;
346     int ret;
347 
348     msg = qemu_get_be32(f);
349     ret = qemu_file_get_error(f);
350     if (ret < 0) {
351         error_setg_errno(errp, -ret, "Can't receive COLO message");
352         return msg;
353     }
354     if (msg >= COLO_MESSAGE__MAX) {
355         error_setg(errp, "%s: Invalid message", __func__);
356         return msg;
357     }
358     trace_colo_receive_message(COLOMessage_str(msg));
359     return msg;
360 }
361 
362 static void colo_receive_check_message(QEMUFile *f, COLOMessage expect_msg,
363                                        Error **errp)
364 {
365     COLOMessage msg;
366     Error *local_err = NULL;
367 
368     msg = colo_receive_message(f, &local_err);
369     if (local_err) {
370         error_propagate(errp, local_err);
371         return;
372     }
373     if (msg != expect_msg) {
374         error_setg(errp, "Unexpected COLO message %d, expected %d",
375                           msg, expect_msg);
376     }
377 }
378 
379 static uint64_t colo_receive_message_value(QEMUFile *f, uint32_t expect_msg,
380                                            Error **errp)
381 {
382     Error *local_err = NULL;
383     uint64_t value;
384     int ret;
385 
386     colo_receive_check_message(f, expect_msg, &local_err);
387     if (local_err) {
388         error_propagate(errp, local_err);
389         return 0;
390     }
391 
392     value = qemu_get_be64(f);
393     ret = qemu_file_get_error(f);
394     if (ret < 0) {
395         error_setg_errno(errp, -ret, "Failed to get value for COLO message: %s",
396                          COLOMessage_str(expect_msg));
397     }
398     return value;
399 }
400 
401 static int colo_do_checkpoint_transaction(MigrationState *s,
402                                           QIOChannelBuffer *bioc,
403                                           QEMUFile *fb)
404 {
405     Error *local_err = NULL;
406     int ret = -1;
407 
408     colo_send_message(s->to_dst_file, COLO_MESSAGE_CHECKPOINT_REQUEST,
409                       &local_err);
410     if (local_err) {
411         goto out;
412     }
413 
414     colo_receive_check_message(s->rp_state.from_dst_file,
415                     COLO_MESSAGE_CHECKPOINT_REPLY, &local_err);
416     if (local_err) {
417         goto out;
418     }
419     /* Reset channel-buffer directly */
420     qio_channel_io_seek(QIO_CHANNEL(bioc), 0, 0, NULL);
421     bioc->usage = 0;
422 
423     qemu_mutex_lock_iothread();
424     if (failover_get_state() != FAILOVER_STATUS_NONE) {
425         qemu_mutex_unlock_iothread();
426         goto out;
427     }
428     vm_stop_force_state(RUN_STATE_COLO);
429     qemu_mutex_unlock_iothread();
430     trace_colo_vm_state_change("run", "stop");
431     /*
432      * Failover request bh could be called after vm_stop_force_state(),
433      * So we need check failover_request_is_active() again.
434      */
435     if (failover_get_state() != FAILOVER_STATUS_NONE) {
436         goto out;
437     }
438 
439     colo_notify_compares_event(NULL, COLO_EVENT_CHECKPOINT, &local_err);
440     if (local_err) {
441         goto out;
442     }
443 
444     /* Disable block migration */
445     migrate_set_block_enabled(false, &local_err);
446     qemu_mutex_lock_iothread();
447 
448 #ifdef CONFIG_REPLICATION
449     replication_do_checkpoint_all(&local_err);
450     if (local_err) {
451         qemu_mutex_unlock_iothread();
452         goto out;
453     }
454 #else
455         abort();
456 #endif
457 
458     colo_send_message(s->to_dst_file, COLO_MESSAGE_VMSTATE_SEND, &local_err);
459     if (local_err) {
460         qemu_mutex_unlock_iothread();
461         goto out;
462     }
463     /* Note: device state is saved into buffer */
464     ret = qemu_save_device_state(fb);
465 
466     qemu_mutex_unlock_iothread();
467     if (ret < 0) {
468         goto out;
469     }
470     /*
471      * Only save VM's live state, which not including device state.
472      * TODO: We may need a timeout mechanism to prevent COLO process
473      * to be blocked here.
474      */
475     qemu_savevm_live_state(s->to_dst_file);
476 
477     qemu_fflush(fb);
478 
479     /*
480      * We need the size of the VMstate data in Secondary side,
481      * With which we can decide how much data should be read.
482      */
483     colo_send_message_value(s->to_dst_file, COLO_MESSAGE_VMSTATE_SIZE,
484                             bioc->usage, &local_err);
485     if (local_err) {
486         goto out;
487     }
488 
489     qemu_put_buffer(s->to_dst_file, bioc->data, bioc->usage);
490     qemu_fflush(s->to_dst_file);
491     ret = qemu_file_get_error(s->to_dst_file);
492     if (ret < 0) {
493         goto out;
494     }
495 
496     colo_receive_check_message(s->rp_state.from_dst_file,
497                        COLO_MESSAGE_VMSTATE_RECEIVED, &local_err);
498     if (local_err) {
499         goto out;
500     }
501 
502     colo_receive_check_message(s->rp_state.from_dst_file,
503                        COLO_MESSAGE_VMSTATE_LOADED, &local_err);
504     if (local_err) {
505         goto out;
506     }
507 
508     ret = 0;
509 
510     qemu_mutex_lock_iothread();
511     vm_start();
512     qemu_mutex_unlock_iothread();
513     trace_colo_vm_state_change("stop", "run");
514 
515 out:
516     if (local_err) {
517         error_report_err(local_err);
518     }
519     return ret;
520 }
521 
522 static void colo_compare_notify_checkpoint(Notifier *notifier, void *data)
523 {
524     colo_checkpoint_notify(data);
525 }
526 
527 static void colo_process_checkpoint(MigrationState *s)
528 {
529     QIOChannelBuffer *bioc;
530     QEMUFile *fb = NULL;
531     int64_t current_time = qemu_clock_get_ms(QEMU_CLOCK_HOST);
532     Error *local_err = NULL;
533     int ret;
534 
535     last_colo_mode = get_colo_mode();
536     if (last_colo_mode != COLO_MODE_PRIMARY) {
537         error_report("COLO mode must be COLO_MODE_PRIMARY");
538         return;
539     }
540 
541     failover_init_state();
542 
543     s->rp_state.from_dst_file = qemu_file_get_return_path(s->to_dst_file);
544     if (!s->rp_state.from_dst_file) {
545         error_report("Open QEMUFile from_dst_file failed");
546         goto out;
547     }
548 
549     packets_compare_notifier.notify = colo_compare_notify_checkpoint;
550     colo_compare_register_notifier(&packets_compare_notifier);
551 
552     /*
553      * Wait for Secondary finish loading VM states and enter COLO
554      * restore.
555      */
556     colo_receive_check_message(s->rp_state.from_dst_file,
557                        COLO_MESSAGE_CHECKPOINT_READY, &local_err);
558     if (local_err) {
559         goto out;
560     }
561     bioc = qio_channel_buffer_new(COLO_BUFFER_BASE_SIZE);
562     fb = qemu_fopen_channel_output(QIO_CHANNEL(bioc));
563     object_unref(OBJECT(bioc));
564 
565     qemu_mutex_lock_iothread();
566 #ifdef CONFIG_REPLICATION
567     replication_start_all(REPLICATION_MODE_PRIMARY, &local_err);
568     if (local_err) {
569         qemu_mutex_unlock_iothread();
570         goto out;
571     }
572 #else
573         abort();
574 #endif
575 
576     vm_start();
577     qemu_mutex_unlock_iothread();
578     trace_colo_vm_state_change("stop", "run");
579 
580     timer_mod(s->colo_delay_timer,
581             current_time + s->parameters.x_checkpoint_delay);
582 
583     while (s->state == MIGRATION_STATUS_COLO) {
584         if (failover_get_state() != FAILOVER_STATUS_NONE) {
585             error_report("failover request");
586             goto out;
587         }
588 
589         qemu_sem_wait(&s->colo_checkpoint_sem);
590 
591         if (s->state != MIGRATION_STATUS_COLO) {
592             goto out;
593         }
594         ret = colo_do_checkpoint_transaction(s, bioc, fb);
595         if (ret < 0) {
596             goto out;
597         }
598     }
599 
600 out:
601     /* Throw the unreported error message after exited from loop */
602     if (local_err) {
603         error_report_err(local_err);
604     }
605 
606     if (fb) {
607         qemu_fclose(fb);
608     }
609 
610     /*
611      * There are only two reasons we can get here, some error happened
612      * or the user triggered failover.
613      */
614     switch (failover_get_state()) {
615     case FAILOVER_STATUS_COMPLETED:
616         qapi_event_send_colo_exit(COLO_MODE_PRIMARY,
617                                   COLO_EXIT_REASON_REQUEST);
618         break;
619     default:
620         qapi_event_send_colo_exit(COLO_MODE_PRIMARY,
621                                   COLO_EXIT_REASON_ERROR);
622     }
623 
624     /* Hope this not to be too long to wait here */
625     qemu_sem_wait(&s->colo_exit_sem);
626     qemu_sem_destroy(&s->colo_exit_sem);
627 
628     /*
629      * It is safe to unregister notifier after failover finished.
630      * Besides, colo_delay_timer and colo_checkpoint_sem can't be
631      * released befor unregister notifier, or there will be use-after-free
632      * error.
633      */
634     colo_compare_unregister_notifier(&packets_compare_notifier);
635     timer_del(s->colo_delay_timer);
636     timer_free(s->colo_delay_timer);
637     qemu_sem_destroy(&s->colo_checkpoint_sem);
638 
639     /*
640      * Must be called after failover BH is completed,
641      * Or the failover BH may shutdown the wrong fd that
642      * re-used by other threads after we release here.
643      */
644     if (s->rp_state.from_dst_file) {
645         qemu_fclose(s->rp_state.from_dst_file);
646     }
647 }
648 
649 void colo_checkpoint_notify(void *opaque)
650 {
651     MigrationState *s = opaque;
652     int64_t next_notify_time;
653 
654     qemu_sem_post(&s->colo_checkpoint_sem);
655     s->colo_checkpoint_time = qemu_clock_get_ms(QEMU_CLOCK_HOST);
656     next_notify_time = s->colo_checkpoint_time +
657                     s->parameters.x_checkpoint_delay;
658     timer_mod(s->colo_delay_timer, next_notify_time);
659 }
660 
661 void migrate_start_colo_process(MigrationState *s)
662 {
663     qemu_mutex_unlock_iothread();
664     qemu_sem_init(&s->colo_checkpoint_sem, 0);
665     s->colo_delay_timer =  timer_new_ms(QEMU_CLOCK_HOST,
666                                 colo_checkpoint_notify, s);
667 
668     qemu_sem_init(&s->colo_exit_sem, 0);
669     migrate_set_state(&s->state, MIGRATION_STATUS_ACTIVE,
670                       MIGRATION_STATUS_COLO);
671     colo_process_checkpoint(s);
672     qemu_mutex_lock_iothread();
673 }
674 
675 static void colo_incoming_process_checkpoint(MigrationIncomingState *mis,
676                       QEMUFile *fb, QIOChannelBuffer *bioc, Error **errp)
677 {
678     uint64_t total_size;
679     uint64_t value;
680     Error *local_err = NULL;
681     int ret;
682 
683     qemu_mutex_lock_iothread();
684     vm_stop_force_state(RUN_STATE_COLO);
685     trace_colo_vm_state_change("run", "stop");
686     qemu_mutex_unlock_iothread();
687 
688     /* FIXME: This is unnecessary for periodic checkpoint mode */
689     colo_send_message(mis->to_src_file, COLO_MESSAGE_CHECKPOINT_REPLY,
690                  &local_err);
691     if (local_err) {
692         error_propagate(errp, local_err);
693         return;
694     }
695 
696     colo_receive_check_message(mis->from_src_file,
697                        COLO_MESSAGE_VMSTATE_SEND, &local_err);
698     if (local_err) {
699         error_propagate(errp, local_err);
700         return;
701     }
702 
703     qemu_mutex_lock_iothread();
704     cpu_synchronize_all_pre_loadvm();
705     ret = qemu_loadvm_state_main(mis->from_src_file, mis);
706     qemu_mutex_unlock_iothread();
707 
708     if (ret < 0) {
709         error_setg(errp, "Load VM's live state (ram) error");
710         return;
711     }
712 
713     value = colo_receive_message_value(mis->from_src_file,
714                              COLO_MESSAGE_VMSTATE_SIZE, &local_err);
715     if (local_err) {
716         error_propagate(errp, local_err);
717         return;
718     }
719 
720     /*
721      * Read VM device state data into channel buffer,
722      * It's better to re-use the memory allocated.
723      * Here we need to handle the channel buffer directly.
724      */
725     if (value > bioc->capacity) {
726         bioc->capacity = value;
727         bioc->data = g_realloc(bioc->data, bioc->capacity);
728     }
729     total_size = qemu_get_buffer(mis->from_src_file, bioc->data, value);
730     if (total_size != value) {
731         error_setg(errp, "Got %" PRIu64 " VMState data, less than expected"
732                     " %" PRIu64, total_size, value);
733         return;
734     }
735     bioc->usage = total_size;
736     qio_channel_io_seek(QIO_CHANNEL(bioc), 0, 0, NULL);
737 
738     colo_send_message(mis->to_src_file, COLO_MESSAGE_VMSTATE_RECEIVED,
739                  &local_err);
740     if (local_err) {
741         error_propagate(errp, local_err);
742         return;
743     }
744 
745     qemu_mutex_lock_iothread();
746     vmstate_loading = true;
747     ret = qemu_load_device_state(fb);
748     if (ret < 0) {
749         error_setg(errp, "COLO: load device state failed");
750         qemu_mutex_unlock_iothread();
751         return;
752     }
753 
754 #ifdef CONFIG_REPLICATION
755     replication_get_error_all(&local_err);
756     if (local_err) {
757         error_propagate(errp, local_err);
758         qemu_mutex_unlock_iothread();
759         return;
760     }
761 
762     /* discard colo disk buffer */
763     replication_do_checkpoint_all(&local_err);
764     if (local_err) {
765         error_propagate(errp, local_err);
766         qemu_mutex_unlock_iothread();
767         return;
768     }
769 #else
770     abort();
771 #endif
772     /* Notify all filters of all NIC to do checkpoint */
773     colo_notify_filters_event(COLO_EVENT_CHECKPOINT, &local_err);
774 
775     if (local_err) {
776         error_propagate(errp, local_err);
777         qemu_mutex_unlock_iothread();
778         return;
779     }
780 
781     vmstate_loading = false;
782     vm_start();
783     trace_colo_vm_state_change("stop", "run");
784     qemu_mutex_unlock_iothread();
785 
786     if (failover_get_state() == FAILOVER_STATUS_RELAUNCH) {
787         failover_set_state(FAILOVER_STATUS_RELAUNCH,
788                         FAILOVER_STATUS_NONE);
789         failover_request_active(NULL);
790         return;
791     }
792 
793     colo_send_message(mis->to_src_file, COLO_MESSAGE_VMSTATE_LOADED,
794                  &local_err);
795     if (local_err) {
796         error_propagate(errp, local_err);
797     }
798 }
799 
800 static void colo_wait_handle_message(MigrationIncomingState *mis,
801                 QEMUFile *fb, QIOChannelBuffer *bioc, Error **errp)
802 {
803     COLOMessage msg;
804     Error *local_err = NULL;
805 
806     msg = colo_receive_message(mis->from_src_file, &local_err);
807     if (local_err) {
808         error_propagate(errp, local_err);
809         return;
810     }
811 
812     switch (msg) {
813     case COLO_MESSAGE_CHECKPOINT_REQUEST:
814         colo_incoming_process_checkpoint(mis, fb, bioc, errp);
815         break;
816     default:
817         error_setg(errp, "Got unknown COLO message: %d", msg);
818         break;
819     }
820 }
821 
822 void *colo_process_incoming_thread(void *opaque)
823 {
824     MigrationIncomingState *mis = opaque;
825     QEMUFile *fb = NULL;
826     QIOChannelBuffer *bioc = NULL; /* Cache incoming device state */
827     Error *local_err = NULL;
828 
829     rcu_register_thread();
830     qemu_sem_init(&mis->colo_incoming_sem, 0);
831 
832     migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
833                       MIGRATION_STATUS_COLO);
834 
835     last_colo_mode = get_colo_mode();
836     if (last_colo_mode != COLO_MODE_SECONDARY) {
837         error_report("COLO mode must be COLO_MODE_SECONDARY");
838         return NULL;
839     }
840 
841     failover_init_state();
842 
843     mis->to_src_file = qemu_file_get_return_path(mis->from_src_file);
844     if (!mis->to_src_file) {
845         error_report("COLO incoming thread: Open QEMUFile to_src_file failed");
846         goto out;
847     }
848     /*
849      * Note: the communication between Primary side and Secondary side
850      * should be sequential, we set the fd to unblocked in migration incoming
851      * coroutine, and here we are in the COLO incoming thread, so it is ok to
852      * set the fd back to blocked.
853      */
854     qemu_file_set_blocking(mis->from_src_file, true);
855 
856     colo_incoming_start_dirty_log();
857 
858     bioc = qio_channel_buffer_new(COLO_BUFFER_BASE_SIZE);
859     fb = qemu_fopen_channel_input(QIO_CHANNEL(bioc));
860     object_unref(OBJECT(bioc));
861 
862     qemu_mutex_lock_iothread();
863 #ifdef CONFIG_REPLICATION
864     replication_start_all(REPLICATION_MODE_SECONDARY, &local_err);
865     if (local_err) {
866         qemu_mutex_unlock_iothread();
867         goto out;
868     }
869 #else
870         abort();
871 #endif
872     vm_start();
873     trace_colo_vm_state_change("stop", "run");
874     qemu_mutex_unlock_iothread();
875 
876     colo_send_message(mis->to_src_file, COLO_MESSAGE_CHECKPOINT_READY,
877                       &local_err);
878     if (local_err) {
879         goto out;
880     }
881 
882     while (mis->state == MIGRATION_STATUS_COLO) {
883         colo_wait_handle_message(mis, fb, bioc, &local_err);
884         if (local_err) {
885             error_report_err(local_err);
886             break;
887         }
888         if (failover_get_state() != FAILOVER_STATUS_NONE) {
889             error_report("failover request");
890             break;
891         }
892     }
893 
894 out:
895     vmstate_loading = false;
896 
897     /*
898      * There are only two reasons we can get here, some error happened
899      * or the user triggered failover.
900      */
901     switch (failover_get_state()) {
902     case FAILOVER_STATUS_COMPLETED:
903         qapi_event_send_colo_exit(COLO_MODE_SECONDARY,
904                                   COLO_EXIT_REASON_REQUEST);
905         break;
906     default:
907         qapi_event_send_colo_exit(COLO_MODE_SECONDARY,
908                                   COLO_EXIT_REASON_ERROR);
909     }
910 
911     if (fb) {
912         qemu_fclose(fb);
913     }
914 
915     /* Hope this not to be too long to loop here */
916     qemu_sem_wait(&mis->colo_incoming_sem);
917     qemu_sem_destroy(&mis->colo_incoming_sem);
918     /* Must be called after failover BH is completed */
919     if (mis->to_src_file) {
920         qemu_fclose(mis->to_src_file);
921         mis->to_src_file = NULL;
922     }
923 
924     rcu_unregister_thread();
925     return NULL;
926 }
927