xref: /openbmc/qemu/migration/savevm.c (revision f61efdee)
1 /*
2  * QEMU System Emulator
3  *
4  * Copyright (c) 2003-2008 Fabrice Bellard
5  * Copyright (c) 2009-2015 Red Hat Inc
6  *
7  * Authors:
8  *  Juan Quintela <quintela@redhat.com>
9  *
10  * Permission is hereby granted, free of charge, to any person obtaining a copy
11  * of this software and associated documentation files (the "Software"), to deal
12  * in the Software without restriction, including without limitation the rights
13  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14  * copies of the Software, and to permit persons to whom the Software is
15  * furnished to do so, subject to the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be included in
18  * all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26  * THE SOFTWARE.
27  */
28 
29 #include "qemu/osdep.h"
30 #include "hw/boards.h"
31 #include "net/net.h"
32 #include "migration.h"
33 #include "migration/snapshot.h"
34 #include "migration-stats.h"
35 #include "migration/vmstate.h"
36 #include "migration/misc.h"
37 #include "migration/register.h"
38 #include "migration/global_state.h"
39 #include "migration/channel-block.h"
40 #include "ram.h"
41 #include "qemu-file.h"
42 #include "savevm.h"
43 #include "postcopy-ram.h"
44 #include "qapi/error.h"
45 #include "qapi/qapi-commands-migration.h"
46 #include "qapi/clone-visitor.h"
47 #include "qapi/qapi-builtin-visit.h"
48 #include "qapi/qmp/qerror.h"
49 #include "qemu/error-report.h"
50 #include "sysemu/cpus.h"
51 #include "exec/memory.h"
52 #include "exec/target_page.h"
53 #include "trace.h"
54 #include "qemu/iov.h"
55 #include "qemu/job.h"
56 #include "qemu/main-loop.h"
57 #include "block/snapshot.h"
58 #include "qemu/cutils.h"
59 #include "io/channel-buffer.h"
60 #include "io/channel-file.h"
61 #include "sysemu/replay.h"
62 #include "sysemu/runstate.h"
63 #include "sysemu/sysemu.h"
64 #include "sysemu/xen.h"
65 #include "migration/colo.h"
66 #include "qemu/bitmap.h"
67 #include "net/announce.h"
68 #include "qemu/yank.h"
69 #include "yank_functions.h"
70 #include "sysemu/qtest.h"
71 #include "options.h"
72 
73 const unsigned int postcopy_ram_discard_version;
74 
75 /* Subcommands for QEMU_VM_COMMAND */
76 enum qemu_vm_cmd {
77     MIG_CMD_INVALID = 0,   /* Must be 0 */
78     MIG_CMD_OPEN_RETURN_PATH,  /* Tell the dest to open the Return path */
79     MIG_CMD_PING,              /* Request a PONG on the RP */
80 
81     MIG_CMD_POSTCOPY_ADVISE,       /* Prior to any page transfers, just
82                                       warn we might want to do PC */
83     MIG_CMD_POSTCOPY_LISTEN,       /* Start listening for incoming
84                                       pages as it's running. */
85     MIG_CMD_POSTCOPY_RUN,          /* Start execution */
86 
87     MIG_CMD_POSTCOPY_RAM_DISCARD,  /* A list of pages to discard that
88                                       were previously sent during
89                                       precopy but are dirty. */
90     MIG_CMD_PACKAGED,          /* Send a wrapped stream within this stream */
91     MIG_CMD_ENABLE_COLO,       /* Enable COLO */
92     MIG_CMD_POSTCOPY_RESUME,   /* resume postcopy on dest */
93     MIG_CMD_RECV_BITMAP,       /* Request for recved bitmap on dst */
94     MIG_CMD_MAX
95 };
96 
97 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
98 static struct mig_cmd_args {
99     ssize_t     len; /* -1 = variable */
100     const char *name;
101 } mig_cmd_args[] = {
102     [MIG_CMD_INVALID]          = { .len = -1, .name = "INVALID" },
103     [MIG_CMD_OPEN_RETURN_PATH] = { .len =  0, .name = "OPEN_RETURN_PATH" },
104     [MIG_CMD_PING]             = { .len = sizeof(uint32_t), .name = "PING" },
105     [MIG_CMD_POSTCOPY_ADVISE]  = { .len = -1, .name = "POSTCOPY_ADVISE" },
106     [MIG_CMD_POSTCOPY_LISTEN]  = { .len =  0, .name = "POSTCOPY_LISTEN" },
107     [MIG_CMD_POSTCOPY_RUN]     = { .len =  0, .name = "POSTCOPY_RUN" },
108     [MIG_CMD_POSTCOPY_RAM_DISCARD] = {
109                                    .len = -1, .name = "POSTCOPY_RAM_DISCARD" },
110     [MIG_CMD_POSTCOPY_RESUME]  = { .len =  0, .name = "POSTCOPY_RESUME" },
111     [MIG_CMD_PACKAGED]         = { .len =  4, .name = "PACKAGED" },
112     [MIG_CMD_RECV_BITMAP]      = { .len = -1, .name = "RECV_BITMAP" },
113     [MIG_CMD_MAX]              = { .len = -1, .name = "MAX" },
114 };
115 
116 /* Note for MIG_CMD_POSTCOPY_ADVISE:
117  * The format of arguments is depending on postcopy mode:
118  * - postcopy RAM only
119  *   uint64_t host page size
120  *   uint64_t target page size
121  *
122  * - postcopy RAM and postcopy dirty bitmaps
123  *   format is the same as for postcopy RAM only
124  *
125  * - postcopy dirty bitmaps only
126  *   Nothing. Command length field is 0.
127  *
128  * Be careful: adding a new postcopy entity with some other parameters should
129  * not break format self-description ability. Good way is to introduce some
130  * generic extendable format with an exception for two old entities.
131  */
132 
133 /***********************************************************/
134 /* savevm/loadvm support */
135 
136 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
137 {
138     if (is_writable) {
139         return qemu_file_new_output(QIO_CHANNEL(qio_channel_block_new(bs)));
140     } else {
141         return qemu_file_new_input(QIO_CHANNEL(qio_channel_block_new(bs)));
142     }
143 }
144 
145 
146 /* QEMUFile timer support.
147  * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
148  */
149 
150 void timer_put(QEMUFile *f, QEMUTimer *ts)
151 {
152     uint64_t expire_time;
153 
154     expire_time = timer_expire_time_ns(ts);
155     qemu_put_be64(f, expire_time);
156 }
157 
158 void timer_get(QEMUFile *f, QEMUTimer *ts)
159 {
160     uint64_t expire_time;
161 
162     expire_time = qemu_get_be64(f);
163     if (expire_time != -1) {
164         timer_mod_ns(ts, expire_time);
165     } else {
166         timer_del(ts);
167     }
168 }
169 
170 
171 /* VMState timer support.
172  * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
173  */
174 
175 static int get_timer(QEMUFile *f, void *pv, size_t size,
176                      const VMStateField *field)
177 {
178     QEMUTimer *v = pv;
179     timer_get(f, v);
180     return 0;
181 }
182 
183 static int put_timer(QEMUFile *f, void *pv, size_t size,
184                      const VMStateField *field, JSONWriter *vmdesc)
185 {
186     QEMUTimer *v = pv;
187     timer_put(f, v);
188 
189     return 0;
190 }
191 
192 const VMStateInfo vmstate_info_timer = {
193     .name = "timer",
194     .get  = get_timer,
195     .put  = put_timer,
196 };
197 
198 
199 typedef struct CompatEntry {
200     char idstr[256];
201     int instance_id;
202 } CompatEntry;
203 
204 typedef struct SaveStateEntry {
205     QTAILQ_ENTRY(SaveStateEntry) entry;
206     char idstr[256];
207     uint32_t instance_id;
208     int alias_id;
209     int version_id;
210     /* version id read from the stream */
211     int load_version_id;
212     int section_id;
213     /* section id read from the stream */
214     int load_section_id;
215     const SaveVMHandlers *ops;
216     const VMStateDescription *vmsd;
217     void *opaque;
218     CompatEntry *compat;
219     int is_ram;
220 } SaveStateEntry;
221 
222 typedef struct SaveState {
223     QTAILQ_HEAD(, SaveStateEntry) handlers;
224     SaveStateEntry *handler_pri_head[MIG_PRI_MAX + 1];
225     int global_section_id;
226     uint32_t len;
227     const char *name;
228     uint32_t target_page_bits;
229     uint32_t caps_count;
230     MigrationCapability *capabilities;
231     QemuUUID uuid;
232 } SaveState;
233 
234 static SaveState savevm_state = {
235     .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
236     .handler_pri_head = { [MIG_PRI_DEFAULT ... MIG_PRI_MAX] = NULL },
237     .global_section_id = 0,
238 };
239 
240 static SaveStateEntry *find_se(const char *idstr, uint32_t instance_id);
241 
242 static bool should_validate_capability(int capability)
243 {
244     assert(capability >= 0 && capability < MIGRATION_CAPABILITY__MAX);
245     /* Validate only new capabilities to keep compatibility. */
246     switch (capability) {
247     case MIGRATION_CAPABILITY_X_IGNORE_SHARED:
248     case MIGRATION_CAPABILITY_MAPPED_RAM:
249         return true;
250     default:
251         return false;
252     }
253 }
254 
255 static uint32_t get_validatable_capabilities_count(void)
256 {
257     MigrationState *s = migrate_get_current();
258     uint32_t result = 0;
259     int i;
260     for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
261         if (should_validate_capability(i) && s->capabilities[i]) {
262             result++;
263         }
264     }
265     return result;
266 }
267 
268 static int configuration_pre_save(void *opaque)
269 {
270     SaveState *state = opaque;
271     const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
272     MigrationState *s = migrate_get_current();
273     int i, j;
274 
275     state->len = strlen(current_name);
276     state->name = current_name;
277     state->target_page_bits = qemu_target_page_bits();
278 
279     state->caps_count = get_validatable_capabilities_count();
280     state->capabilities = g_renew(MigrationCapability, state->capabilities,
281                                   state->caps_count);
282     for (i = j = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
283         if (should_validate_capability(i) && s->capabilities[i]) {
284             state->capabilities[j++] = i;
285         }
286     }
287     state->uuid = qemu_uuid;
288 
289     return 0;
290 }
291 
292 static int configuration_post_save(void *opaque)
293 {
294     SaveState *state = opaque;
295 
296     g_free(state->capabilities);
297     state->capabilities = NULL;
298     state->caps_count = 0;
299     return 0;
300 }
301 
302 static int configuration_pre_load(void *opaque)
303 {
304     SaveState *state = opaque;
305 
306     /* If there is no target-page-bits subsection it means the source
307      * predates the variable-target-page-bits support and is using the
308      * minimum possible value for this CPU.
309      */
310     state->target_page_bits = qemu_target_page_bits_min();
311     return 0;
312 }
313 
314 static bool configuration_validate_capabilities(SaveState *state)
315 {
316     bool ret = true;
317     MigrationState *s = migrate_get_current();
318     unsigned long *source_caps_bm;
319     int i;
320 
321     source_caps_bm = bitmap_new(MIGRATION_CAPABILITY__MAX);
322     for (i = 0; i < state->caps_count; i++) {
323         MigrationCapability capability = state->capabilities[i];
324         set_bit(capability, source_caps_bm);
325     }
326 
327     for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
328         bool source_state, target_state;
329         if (!should_validate_capability(i)) {
330             continue;
331         }
332         source_state = test_bit(i, source_caps_bm);
333         target_state = s->capabilities[i];
334         if (source_state != target_state) {
335             error_report("Capability %s is %s, but received capability is %s",
336                          MigrationCapability_str(i),
337                          target_state ? "on" : "off",
338                          source_state ? "on" : "off");
339             ret = false;
340             /* Don't break here to report all failed capabilities */
341         }
342     }
343 
344     g_free(source_caps_bm);
345     return ret;
346 }
347 
348 static int configuration_post_load(void *opaque, int version_id)
349 {
350     SaveState *state = opaque;
351     const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
352     int ret = 0;
353 
354     if (strncmp(state->name, current_name, state->len) != 0) {
355         error_report("Machine type received is '%.*s' and local is '%s'",
356                      (int) state->len, state->name, current_name);
357         ret = -EINVAL;
358         goto out;
359     }
360 
361     if (state->target_page_bits != qemu_target_page_bits()) {
362         error_report("Received TARGET_PAGE_BITS is %d but local is %d",
363                      state->target_page_bits, qemu_target_page_bits());
364         ret = -EINVAL;
365         goto out;
366     }
367 
368     if (!configuration_validate_capabilities(state)) {
369         ret = -EINVAL;
370         goto out;
371     }
372 
373 out:
374     g_free((void *)state->name);
375     state->name = NULL;
376     state->len = 0;
377     g_free(state->capabilities);
378     state->capabilities = NULL;
379     state->caps_count = 0;
380 
381     return ret;
382 }
383 
384 static int get_capability(QEMUFile *f, void *pv, size_t size,
385                           const VMStateField *field)
386 {
387     MigrationCapability *capability = pv;
388     char capability_str[UINT8_MAX + 1];
389     uint8_t len;
390     int i;
391 
392     len = qemu_get_byte(f);
393     qemu_get_buffer(f, (uint8_t *)capability_str, len);
394     capability_str[len] = '\0';
395     for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
396         if (!strcmp(MigrationCapability_str(i), capability_str)) {
397             *capability = i;
398             return 0;
399         }
400     }
401     error_report("Received unknown capability %s", capability_str);
402     return -EINVAL;
403 }
404 
405 static int put_capability(QEMUFile *f, void *pv, size_t size,
406                           const VMStateField *field, JSONWriter *vmdesc)
407 {
408     MigrationCapability *capability = pv;
409     const char *capability_str = MigrationCapability_str(*capability);
410     size_t len = strlen(capability_str);
411     assert(len <= UINT8_MAX);
412 
413     qemu_put_byte(f, len);
414     qemu_put_buffer(f, (uint8_t *)capability_str, len);
415     return 0;
416 }
417 
418 static const VMStateInfo vmstate_info_capability = {
419     .name = "capability",
420     .get  = get_capability,
421     .put  = put_capability,
422 };
423 
424 /* The target-page-bits subsection is present only if the
425  * target page size is not the same as the default (ie the
426  * minimum page size for a variable-page-size guest CPU).
427  * If it is present then it contains the actual target page
428  * bits for the machine, and migration will fail if the
429  * two ends don't agree about it.
430  */
431 static bool vmstate_target_page_bits_needed(void *opaque)
432 {
433     return qemu_target_page_bits()
434         > qemu_target_page_bits_min();
435 }
436 
437 static const VMStateDescription vmstate_target_page_bits = {
438     .name = "configuration/target-page-bits",
439     .version_id = 1,
440     .minimum_version_id = 1,
441     .needed = vmstate_target_page_bits_needed,
442     .fields = (const VMStateField[]) {
443         VMSTATE_UINT32(target_page_bits, SaveState),
444         VMSTATE_END_OF_LIST()
445     }
446 };
447 
448 static bool vmstate_capabilites_needed(void *opaque)
449 {
450     return get_validatable_capabilities_count() > 0;
451 }
452 
453 static const VMStateDescription vmstate_capabilites = {
454     .name = "configuration/capabilities",
455     .version_id = 1,
456     .minimum_version_id = 1,
457     .needed = vmstate_capabilites_needed,
458     .fields = (const VMStateField[]) {
459         VMSTATE_UINT32_V(caps_count, SaveState, 1),
460         VMSTATE_VARRAY_UINT32_ALLOC(capabilities, SaveState, caps_count, 1,
461                                     vmstate_info_capability,
462                                     MigrationCapability),
463         VMSTATE_END_OF_LIST()
464     }
465 };
466 
467 static bool vmstate_uuid_needed(void *opaque)
468 {
469     return qemu_uuid_set && migrate_validate_uuid();
470 }
471 
472 static int vmstate_uuid_post_load(void *opaque, int version_id)
473 {
474     SaveState *state = opaque;
475     char uuid_src[UUID_STR_LEN];
476     char uuid_dst[UUID_STR_LEN];
477 
478     if (!qemu_uuid_set) {
479         /*
480          * It's warning because user might not know UUID in some cases,
481          * e.g. load an old snapshot
482          */
483         qemu_uuid_unparse(&state->uuid, uuid_src);
484         warn_report("UUID is received %s, but local uuid isn't set",
485                      uuid_src);
486         return 0;
487     }
488     if (!qemu_uuid_is_equal(&state->uuid, &qemu_uuid)) {
489         qemu_uuid_unparse(&state->uuid, uuid_src);
490         qemu_uuid_unparse(&qemu_uuid, uuid_dst);
491         error_report("UUID received is %s and local is %s", uuid_src, uuid_dst);
492         return -EINVAL;
493     }
494     return 0;
495 }
496 
497 static const VMStateDescription vmstate_uuid = {
498     .name = "configuration/uuid",
499     .version_id = 1,
500     .minimum_version_id = 1,
501     .needed = vmstate_uuid_needed,
502     .post_load = vmstate_uuid_post_load,
503     .fields = (const VMStateField[]) {
504         VMSTATE_UINT8_ARRAY_V(uuid.data, SaveState, sizeof(QemuUUID), 1),
505         VMSTATE_END_OF_LIST()
506     }
507 };
508 
509 static const VMStateDescription vmstate_configuration = {
510     .name = "configuration",
511     .version_id = 1,
512     .pre_load = configuration_pre_load,
513     .post_load = configuration_post_load,
514     .pre_save = configuration_pre_save,
515     .post_save = configuration_post_save,
516     .fields = (const VMStateField[]) {
517         VMSTATE_UINT32(len, SaveState),
518         VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, len),
519         VMSTATE_END_OF_LIST()
520     },
521     .subsections = (const VMStateDescription * const []) {
522         &vmstate_target_page_bits,
523         &vmstate_capabilites,
524         &vmstate_uuid,
525         NULL
526     }
527 };
528 
529 static void dump_vmstate_vmsd(FILE *out_file,
530                               const VMStateDescription *vmsd, int indent,
531                               bool is_subsection);
532 
533 static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
534                               int indent)
535 {
536     fprintf(out_file, "%*s{\n", indent, "");
537     indent += 2;
538     fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
539     fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
540             field->version_id);
541     fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
542             field->field_exists ? "true" : "false");
543     if (field->flags & VMS_ARRAY) {
544         fprintf(out_file, "%*s\"num\": %d,\n", indent, "", field->num);
545     }
546     fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
547     if (field->vmsd != NULL) {
548         fprintf(out_file, ",\n");
549         dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
550     }
551     fprintf(out_file, "\n%*s}", indent - 2, "");
552 }
553 
554 static void dump_vmstate_vmss(FILE *out_file,
555                               const VMStateDescription *subsection,
556                               int indent)
557 {
558     if (subsection != NULL) {
559         dump_vmstate_vmsd(out_file, subsection, indent, true);
560     }
561 }
562 
563 static void dump_vmstate_vmsd(FILE *out_file,
564                               const VMStateDescription *vmsd, int indent,
565                               bool is_subsection)
566 {
567     if (is_subsection) {
568         fprintf(out_file, "%*s{\n", indent, "");
569     } else {
570         fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
571     }
572     indent += 2;
573     fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
574     fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
575             vmsd->version_id);
576     fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
577             vmsd->minimum_version_id);
578     if (vmsd->fields != NULL) {
579         const VMStateField *field = vmsd->fields;
580         bool first;
581 
582         fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
583         first = true;
584         while (field->name != NULL) {
585             if (field->flags & VMS_MUST_EXIST) {
586                 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
587                 field++;
588                 continue;
589             }
590             if (!first) {
591                 fprintf(out_file, ",\n");
592             }
593             dump_vmstate_vmsf(out_file, field, indent + 2);
594             field++;
595             first = false;
596         }
597         assert(field->flags == VMS_END);
598         fprintf(out_file, "\n%*s]", indent, "");
599     }
600     if (vmsd->subsections != NULL) {
601         const VMStateDescription * const *subsection = vmsd->subsections;
602         bool first;
603 
604         fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
605         first = true;
606         while (*subsection != NULL) {
607             if (!first) {
608                 fprintf(out_file, ",\n");
609             }
610             dump_vmstate_vmss(out_file, *subsection, indent + 2);
611             subsection++;
612             first = false;
613         }
614         fprintf(out_file, "\n%*s]", indent, "");
615     }
616     fprintf(out_file, "\n%*s}", indent - 2, "");
617 }
618 
619 static void dump_machine_type(FILE *out_file)
620 {
621     MachineClass *mc;
622 
623     mc = MACHINE_GET_CLASS(current_machine);
624 
625     fprintf(out_file, "  \"vmschkmachine\": {\n");
626     fprintf(out_file, "    \"Name\": \"%s\"\n", mc->name);
627     fprintf(out_file, "  },\n");
628 }
629 
630 void dump_vmstate_json_to_file(FILE *out_file)
631 {
632     GSList *list, *elt;
633     bool first;
634 
635     fprintf(out_file, "{\n");
636     dump_machine_type(out_file);
637 
638     first = true;
639     list = object_class_get_list(TYPE_DEVICE, true);
640     for (elt = list; elt; elt = elt->next) {
641         DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
642                                              TYPE_DEVICE);
643         const char *name;
644         int indent = 2;
645 
646         if (!dc->vmsd) {
647             continue;
648         }
649 
650         if (!first) {
651             fprintf(out_file, ",\n");
652         }
653         name = object_class_get_name(OBJECT_CLASS(dc));
654         fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
655         indent += 2;
656         fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
657         fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
658                 dc->vmsd->version_id);
659         fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
660                 dc->vmsd->minimum_version_id);
661 
662         dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
663 
664         fprintf(out_file, "\n%*s}", indent - 2, "");
665         first = false;
666     }
667     fprintf(out_file, "\n}\n");
668     fclose(out_file);
669     g_slist_free(list);
670 }
671 
672 static uint32_t calculate_new_instance_id(const char *idstr)
673 {
674     SaveStateEntry *se;
675     uint32_t instance_id = 0;
676 
677     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
678         if (strcmp(idstr, se->idstr) == 0
679             && instance_id <= se->instance_id) {
680             instance_id = se->instance_id + 1;
681         }
682     }
683     /* Make sure we never loop over without being noticed */
684     assert(instance_id != VMSTATE_INSTANCE_ID_ANY);
685     return instance_id;
686 }
687 
688 static int calculate_compat_instance_id(const char *idstr)
689 {
690     SaveStateEntry *se;
691     int instance_id = 0;
692 
693     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
694         if (!se->compat) {
695             continue;
696         }
697 
698         if (strcmp(idstr, se->compat->idstr) == 0
699             && instance_id <= se->compat->instance_id) {
700             instance_id = se->compat->instance_id + 1;
701         }
702     }
703     return instance_id;
704 }
705 
706 static inline MigrationPriority save_state_priority(SaveStateEntry *se)
707 {
708     if (se->vmsd) {
709         return se->vmsd->priority;
710     }
711     return MIG_PRI_DEFAULT;
712 }
713 
714 static void savevm_state_handler_insert(SaveStateEntry *nse)
715 {
716     MigrationPriority priority = save_state_priority(nse);
717     SaveStateEntry *se;
718     int i;
719 
720     assert(priority <= MIG_PRI_MAX);
721 
722     /*
723      * This should never happen otherwise migration will probably fail
724      * silently somewhere because we can be wrongly applying one
725      * object properties upon another one.  Bail out ASAP.
726      */
727     if (find_se(nse->idstr, nse->instance_id)) {
728         error_report("%s: Detected duplicate SaveStateEntry: "
729                      "id=%s, instance_id=0x%"PRIx32, __func__,
730                      nse->idstr, nse->instance_id);
731         exit(EXIT_FAILURE);
732     }
733 
734     for (i = priority - 1; i >= 0; i--) {
735         se = savevm_state.handler_pri_head[i];
736         if (se != NULL) {
737             assert(save_state_priority(se) < priority);
738             break;
739         }
740     }
741 
742     if (i >= 0) {
743         QTAILQ_INSERT_BEFORE(se, nse, entry);
744     } else {
745         QTAILQ_INSERT_TAIL(&savevm_state.handlers, nse, entry);
746     }
747 
748     if (savevm_state.handler_pri_head[priority] == NULL) {
749         savevm_state.handler_pri_head[priority] = nse;
750     }
751 }
752 
753 static void savevm_state_handler_remove(SaveStateEntry *se)
754 {
755     SaveStateEntry *next;
756     MigrationPriority priority = save_state_priority(se);
757 
758     if (se == savevm_state.handler_pri_head[priority]) {
759         next = QTAILQ_NEXT(se, entry);
760         if (next != NULL && save_state_priority(next) == priority) {
761             savevm_state.handler_pri_head[priority] = next;
762         } else {
763             savevm_state.handler_pri_head[priority] = NULL;
764         }
765     }
766     QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
767 }
768 
769 /* TODO: Individual devices generally have very little idea about the rest
770    of the system, so instance_id should be removed/replaced.
771    Meanwhile pass -1 as instance_id if you do not already have a clearly
772    distinguishing id for all instances of your device class. */
773 int register_savevm_live(const char *idstr,
774                          uint32_t instance_id,
775                          int version_id,
776                          const SaveVMHandlers *ops,
777                          void *opaque)
778 {
779     SaveStateEntry *se;
780 
781     se = g_new0(SaveStateEntry, 1);
782     se->version_id = version_id;
783     se->section_id = savevm_state.global_section_id++;
784     se->ops = ops;
785     se->opaque = opaque;
786     se->vmsd = NULL;
787     /* if this is a live_savem then set is_ram */
788     if (ops->save_setup != NULL) {
789         se->is_ram = 1;
790     }
791 
792     pstrcat(se->idstr, sizeof(se->idstr), idstr);
793 
794     if (instance_id == VMSTATE_INSTANCE_ID_ANY) {
795         se->instance_id = calculate_new_instance_id(se->idstr);
796     } else {
797         se->instance_id = instance_id;
798     }
799     assert(!se->compat || se->instance_id == 0);
800     savevm_state_handler_insert(se);
801     return 0;
802 }
803 
804 void unregister_savevm(VMStateIf *obj, const char *idstr, void *opaque)
805 {
806     SaveStateEntry *se, *new_se;
807     char id[256] = "";
808 
809     if (obj) {
810         char *oid = vmstate_if_get_id(obj);
811         if (oid) {
812             pstrcpy(id, sizeof(id), oid);
813             pstrcat(id, sizeof(id), "/");
814             g_free(oid);
815         }
816     }
817     pstrcat(id, sizeof(id), idstr);
818 
819     QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
820         if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
821             savevm_state_handler_remove(se);
822             g_free(se->compat);
823             g_free(se);
824         }
825     }
826 }
827 
828 /*
829  * Perform some basic checks on vmsd's at registration
830  * time.
831  */
832 static void vmstate_check(const VMStateDescription *vmsd)
833 {
834     const VMStateField *field = vmsd->fields;
835     const VMStateDescription * const *subsection = vmsd->subsections;
836 
837     if (field) {
838         while (field->name) {
839             if (field->flags & (VMS_STRUCT | VMS_VSTRUCT)) {
840                 /* Recurse to sub structures */
841                 vmstate_check(field->vmsd);
842             }
843             /* Carry on */
844             field++;
845         }
846         /* Check for the end of field list canary */
847         if (field->flags != VMS_END) {
848             error_report("VMSTATE not ending with VMS_END: %s", vmsd->name);
849             g_assert_not_reached();
850         }
851     }
852 
853     while (subsection && *subsection) {
854         /*
855          * The name of a subsection should start with the name of the
856          * current object.
857          */
858         assert(!strncmp(vmsd->name, (*subsection)->name, strlen(vmsd->name)));
859         vmstate_check(*subsection);
860         subsection++;
861     }
862 }
863 
864 /*
865  * See comment in hw/intc/xics.c:icp_realize()
866  *
867  * This function can be removed when
868  * pre_2_10_vmstate_register_dummy_icp() is removed.
869  */
870 int vmstate_replace_hack_for_ppc(VMStateIf *obj, int instance_id,
871                                  const VMStateDescription *vmsd,
872                                  void *opaque)
873 {
874     SaveStateEntry *se = find_se(vmsd->name, instance_id);
875 
876     if (se) {
877         savevm_state_handler_remove(se);
878     }
879     return vmstate_register(obj, instance_id, vmsd, opaque);
880 }
881 
882 int vmstate_register_with_alias_id(VMStateIf *obj, uint32_t instance_id,
883                                    const VMStateDescription *vmsd,
884                                    void *opaque, int alias_id,
885                                    int required_for_version,
886                                    Error **errp)
887 {
888     SaveStateEntry *se;
889 
890     /* If this triggers, alias support can be dropped for the vmsd. */
891     assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
892 
893     se = g_new0(SaveStateEntry, 1);
894     se->version_id = vmsd->version_id;
895     se->section_id = savevm_state.global_section_id++;
896     se->opaque = opaque;
897     se->vmsd = vmsd;
898     se->alias_id = alias_id;
899 
900     if (obj) {
901         char *id = vmstate_if_get_id(obj);
902         if (id) {
903             if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
904                 sizeof(se->idstr)) {
905                 error_setg(errp, "Path too long for VMState (%s)", id);
906                 g_free(id);
907                 g_free(se);
908 
909                 return -1;
910             }
911             g_free(id);
912 
913             se->compat = g_new0(CompatEntry, 1);
914             pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
915             se->compat->instance_id = instance_id == VMSTATE_INSTANCE_ID_ANY ?
916                          calculate_compat_instance_id(vmsd->name) : instance_id;
917             instance_id = VMSTATE_INSTANCE_ID_ANY;
918         }
919     }
920     pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
921 
922     if (instance_id == VMSTATE_INSTANCE_ID_ANY) {
923         se->instance_id = calculate_new_instance_id(se->idstr);
924     } else {
925         se->instance_id = instance_id;
926     }
927 
928     /* Perform a recursive sanity check during the test runs */
929     if (qtest_enabled()) {
930         vmstate_check(vmsd);
931     }
932     assert(!se->compat || se->instance_id == 0);
933     savevm_state_handler_insert(se);
934     return 0;
935 }
936 
937 void vmstate_unregister(VMStateIf *obj, const VMStateDescription *vmsd,
938                         void *opaque)
939 {
940     SaveStateEntry *se, *new_se;
941 
942     QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
943         if (se->vmsd == vmsd && se->opaque == opaque) {
944             savevm_state_handler_remove(se);
945             g_free(se->compat);
946             g_free(se);
947         }
948     }
949 }
950 
951 static int vmstate_load(QEMUFile *f, SaveStateEntry *se)
952 {
953     trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
954     if (!se->vmsd) {         /* Old style */
955         return se->ops->load_state(f, se->opaque, se->load_version_id);
956     }
957     return vmstate_load_state(f, se->vmsd, se->opaque, se->load_version_id);
958 }
959 
960 static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se,
961                                    JSONWriter *vmdesc)
962 {
963     uint64_t old_offset = qemu_file_transferred(f);
964     se->ops->save_state(f, se->opaque);
965     uint64_t size = qemu_file_transferred(f) - old_offset;
966 
967     if (vmdesc) {
968         json_writer_int64(vmdesc, "size", size);
969         json_writer_start_array(vmdesc, "fields");
970         json_writer_start_object(vmdesc, NULL);
971         json_writer_str(vmdesc, "name", "data");
972         json_writer_int64(vmdesc, "size", size);
973         json_writer_str(vmdesc, "type", "buffer");
974         json_writer_end_object(vmdesc);
975         json_writer_end_array(vmdesc);
976     }
977 }
978 
979 /*
980  * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
981  */
982 static void save_section_header(QEMUFile *f, SaveStateEntry *se,
983                                 uint8_t section_type)
984 {
985     qemu_put_byte(f, section_type);
986     qemu_put_be32(f, se->section_id);
987 
988     if (section_type == QEMU_VM_SECTION_FULL ||
989         section_type == QEMU_VM_SECTION_START) {
990         /* ID string */
991         size_t len = strlen(se->idstr);
992         qemu_put_byte(f, len);
993         qemu_put_buffer(f, (uint8_t *)se->idstr, len);
994 
995         qemu_put_be32(f, se->instance_id);
996         qemu_put_be32(f, se->version_id);
997     }
998 }
999 
1000 /*
1001  * Write a footer onto device sections that catches cases misformatted device
1002  * sections.
1003  */
1004 static void save_section_footer(QEMUFile *f, SaveStateEntry *se)
1005 {
1006     if (migrate_get_current()->send_section_footer) {
1007         qemu_put_byte(f, QEMU_VM_SECTION_FOOTER);
1008         qemu_put_be32(f, se->section_id);
1009     }
1010 }
1011 
1012 static int vmstate_save(QEMUFile *f, SaveStateEntry *se, JSONWriter *vmdesc)
1013 {
1014     int ret;
1015     Error *local_err = NULL;
1016     MigrationState *s = migrate_get_current();
1017 
1018     if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1019         return 0;
1020     }
1021     if (se->vmsd && !vmstate_section_needed(se->vmsd, se->opaque)) {
1022         trace_savevm_section_skip(se->idstr, se->section_id);
1023         return 0;
1024     }
1025 
1026     trace_savevm_section_start(se->idstr, se->section_id);
1027     save_section_header(f, se, QEMU_VM_SECTION_FULL);
1028     if (vmdesc) {
1029         json_writer_start_object(vmdesc, NULL);
1030         json_writer_str(vmdesc, "name", se->idstr);
1031         json_writer_int64(vmdesc, "instance_id", se->instance_id);
1032     }
1033 
1034     trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
1035     if (!se->vmsd) {
1036         vmstate_save_old_style(f, se, vmdesc);
1037     } else {
1038         ret = vmstate_save_state_with_err(f, se->vmsd, se->opaque, vmdesc, &local_err);
1039         if (ret) {
1040             migrate_set_error(s, local_err);
1041             error_report_err(local_err);
1042             return ret;
1043         }
1044     }
1045 
1046     trace_savevm_section_end(se->idstr, se->section_id, 0);
1047     save_section_footer(f, se);
1048     if (vmdesc) {
1049         json_writer_end_object(vmdesc);
1050     }
1051     return 0;
1052 }
1053 /**
1054  * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
1055  *                           command and associated data.
1056  *
1057  * @f: File to send command on
1058  * @command: Command type to send
1059  * @len: Length of associated data
1060  * @data: Data associated with command.
1061  */
1062 static void qemu_savevm_command_send(QEMUFile *f,
1063                                      enum qemu_vm_cmd command,
1064                                      uint16_t len,
1065                                      uint8_t *data)
1066 {
1067     trace_savevm_command_send(command, len);
1068     qemu_put_byte(f, QEMU_VM_COMMAND);
1069     qemu_put_be16(f, (uint16_t)command);
1070     qemu_put_be16(f, len);
1071     qemu_put_buffer(f, data, len);
1072     qemu_fflush(f);
1073 }
1074 
1075 void qemu_savevm_send_colo_enable(QEMUFile *f)
1076 {
1077     trace_savevm_send_colo_enable();
1078     qemu_savevm_command_send(f, MIG_CMD_ENABLE_COLO, 0, NULL);
1079 }
1080 
1081 void qemu_savevm_send_ping(QEMUFile *f, uint32_t value)
1082 {
1083     uint32_t buf;
1084 
1085     trace_savevm_send_ping(value);
1086     buf = cpu_to_be32(value);
1087     qemu_savevm_command_send(f, MIG_CMD_PING, sizeof(value), (uint8_t *)&buf);
1088 }
1089 
1090 void qemu_savevm_send_open_return_path(QEMUFile *f)
1091 {
1092     trace_savevm_send_open_return_path();
1093     qemu_savevm_command_send(f, MIG_CMD_OPEN_RETURN_PATH, 0, NULL);
1094 }
1095 
1096 /* We have a buffer of data to send; we don't want that all to be loaded
1097  * by the command itself, so the command contains just the length of the
1098  * extra buffer that we then send straight after it.
1099  * TODO: Must be a better way to organise that
1100  *
1101  * Returns:
1102  *    0 on success
1103  *    -ve on error
1104  */
1105 int qemu_savevm_send_packaged(QEMUFile *f, const uint8_t *buf, size_t len)
1106 {
1107     uint32_t tmp;
1108     MigrationState *ms = migrate_get_current();
1109     Error *local_err = NULL;
1110 
1111     if (len > MAX_VM_CMD_PACKAGED_SIZE) {
1112         error_setg(&local_err, "%s: Unreasonably large packaged state: %zu",
1113                      __func__, len);
1114         migrate_set_error(ms, local_err);
1115         error_report_err(local_err);
1116         return -1;
1117     }
1118 
1119     tmp = cpu_to_be32(len);
1120 
1121     trace_qemu_savevm_send_packaged();
1122     qemu_savevm_command_send(f, MIG_CMD_PACKAGED, 4, (uint8_t *)&tmp);
1123 
1124     qemu_put_buffer(f, buf, len);
1125 
1126     return 0;
1127 }
1128 
1129 /* Send prior to any postcopy transfer */
1130 void qemu_savevm_send_postcopy_advise(QEMUFile *f)
1131 {
1132     if (migrate_postcopy_ram()) {
1133         uint64_t tmp[2];
1134         tmp[0] = cpu_to_be64(ram_pagesize_summary());
1135         tmp[1] = cpu_to_be64(qemu_target_page_size());
1136 
1137         trace_qemu_savevm_send_postcopy_advise();
1138         qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE,
1139                                  16, (uint8_t *)tmp);
1140     } else {
1141         qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE, 0, NULL);
1142     }
1143 }
1144 
1145 /* Sent prior to starting the destination running in postcopy, discard pages
1146  * that have already been sent but redirtied on the source.
1147  * CMD_POSTCOPY_RAM_DISCARD consist of:
1148  *      byte   version (0)
1149  *      byte   Length of name field (not including 0)
1150  *  n x byte   RAM block name
1151  *      byte   0 terminator (just for safety)
1152  *  n x        Byte ranges within the named RAMBlock
1153  *      be64   Start of the range
1154  *      be64   Length
1155  *
1156  *  name:  RAMBlock name that these entries are part of
1157  *  len: Number of page entries
1158  *  start_list: 'len' addresses
1159  *  length_list: 'len' addresses
1160  *
1161  */
1162 void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name,
1163                                            uint16_t len,
1164                                            uint64_t *start_list,
1165                                            uint64_t *length_list)
1166 {
1167     uint8_t *buf;
1168     uint16_t tmplen;
1169     uint16_t t;
1170     size_t name_len = strlen(name);
1171 
1172     trace_qemu_savevm_send_postcopy_ram_discard(name, len);
1173     assert(name_len < 256);
1174     buf = g_malloc0(1 + 1 + name_len + 1 + (8 + 8) * len);
1175     buf[0] = postcopy_ram_discard_version;
1176     buf[1] = name_len;
1177     memcpy(buf + 2, name, name_len);
1178     tmplen = 2 + name_len;
1179     buf[tmplen++] = '\0';
1180 
1181     for (t = 0; t < len; t++) {
1182         stq_be_p(buf + tmplen, start_list[t]);
1183         tmplen += 8;
1184         stq_be_p(buf + tmplen, length_list[t]);
1185         tmplen += 8;
1186     }
1187     qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RAM_DISCARD, tmplen, buf);
1188     g_free(buf);
1189 }
1190 
1191 /* Get the destination into a state where it can receive postcopy data. */
1192 void qemu_savevm_send_postcopy_listen(QEMUFile *f)
1193 {
1194     trace_savevm_send_postcopy_listen();
1195     qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_LISTEN, 0, NULL);
1196 }
1197 
1198 /* Kick the destination into running */
1199 void qemu_savevm_send_postcopy_run(QEMUFile *f)
1200 {
1201     trace_savevm_send_postcopy_run();
1202     qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RUN, 0, NULL);
1203 }
1204 
1205 void qemu_savevm_send_postcopy_resume(QEMUFile *f)
1206 {
1207     trace_savevm_send_postcopy_resume();
1208     qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RESUME, 0, NULL);
1209 }
1210 
1211 void qemu_savevm_send_recv_bitmap(QEMUFile *f, char *block_name)
1212 {
1213     size_t len;
1214     char buf[256];
1215 
1216     trace_savevm_send_recv_bitmap(block_name);
1217 
1218     buf[0] = len = strlen(block_name);
1219     memcpy(buf + 1, block_name, len);
1220 
1221     qemu_savevm_command_send(f, MIG_CMD_RECV_BITMAP, len + 1, (uint8_t *)buf);
1222 }
1223 
1224 bool qemu_savevm_state_blocked(Error **errp)
1225 {
1226     SaveStateEntry *se;
1227 
1228     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1229         if (se->vmsd && se->vmsd->unmigratable) {
1230             error_setg(errp, "State blocked by non-migratable device '%s'",
1231                        se->idstr);
1232             return true;
1233         }
1234     }
1235     return false;
1236 }
1237 
1238 void qemu_savevm_non_migratable_list(strList **reasons)
1239 {
1240     SaveStateEntry *se;
1241 
1242     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1243         if (se->vmsd && se->vmsd->unmigratable) {
1244             QAPI_LIST_PREPEND(*reasons,
1245                               g_strdup_printf("non-migratable device: %s",
1246                                               se->idstr));
1247         }
1248     }
1249 }
1250 
1251 void qemu_savevm_state_header(QEMUFile *f)
1252 {
1253     MigrationState *s = migrate_get_current();
1254 
1255     s->vmdesc = json_writer_new(false);
1256 
1257     trace_savevm_state_header();
1258     qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1259     qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1260 
1261     if (s->send_configuration) {
1262         qemu_put_byte(f, QEMU_VM_CONFIGURATION);
1263 
1264         /*
1265          * This starts the main json object and is paired with the
1266          * json_writer_end_object in
1267          * qemu_savevm_state_complete_precopy_non_iterable
1268          */
1269         json_writer_start_object(s->vmdesc, NULL);
1270 
1271         json_writer_start_object(s->vmdesc, "configuration");
1272         vmstate_save_state(f, &vmstate_configuration, &savevm_state, s->vmdesc);
1273         json_writer_end_object(s->vmdesc);
1274     }
1275 }
1276 
1277 bool qemu_savevm_state_guest_unplug_pending(void)
1278 {
1279     SaveStateEntry *se;
1280 
1281     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1282         if (se->vmsd && se->vmsd->dev_unplug_pending &&
1283             se->vmsd->dev_unplug_pending(se->opaque)) {
1284             return true;
1285         }
1286     }
1287 
1288     return false;
1289 }
1290 
1291 int qemu_savevm_state_prepare(Error **errp)
1292 {
1293     SaveStateEntry *se;
1294     int ret;
1295 
1296     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1297         if (!se->ops || !se->ops->save_prepare) {
1298             continue;
1299         }
1300         if (se->ops->is_active) {
1301             if (!se->ops->is_active(se->opaque)) {
1302                 continue;
1303             }
1304         }
1305 
1306         ret = se->ops->save_prepare(se->opaque, errp);
1307         if (ret < 0) {
1308             return ret;
1309         }
1310     }
1311 
1312     return 0;
1313 }
1314 
1315 void qemu_savevm_state_setup(QEMUFile *f)
1316 {
1317     MigrationState *ms = migrate_get_current();
1318     SaveStateEntry *se;
1319     Error *local_err = NULL;
1320     int ret;
1321 
1322     json_writer_int64(ms->vmdesc, "page_size", qemu_target_page_size());
1323     json_writer_start_array(ms->vmdesc, "devices");
1324 
1325     trace_savevm_state_setup();
1326     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1327         if (se->vmsd && se->vmsd->early_setup) {
1328             ret = vmstate_save(f, se, ms->vmdesc);
1329             if (ret) {
1330                 qemu_file_set_error(f, ret);
1331                 break;
1332             }
1333             continue;
1334         }
1335 
1336         if (!se->ops || !se->ops->save_setup) {
1337             continue;
1338         }
1339         if (se->ops->is_active) {
1340             if (!se->ops->is_active(se->opaque)) {
1341                 continue;
1342             }
1343         }
1344         save_section_header(f, se, QEMU_VM_SECTION_START);
1345 
1346         ret = se->ops->save_setup(f, se->opaque);
1347         save_section_footer(f, se);
1348         if (ret < 0) {
1349             qemu_file_set_error(f, ret);
1350             break;
1351         }
1352     }
1353 
1354     if (precopy_notify(PRECOPY_NOTIFY_SETUP, &local_err)) {
1355         error_report_err(local_err);
1356     }
1357 }
1358 
1359 int qemu_savevm_state_resume_prepare(MigrationState *s)
1360 {
1361     SaveStateEntry *se;
1362     int ret;
1363 
1364     trace_savevm_state_resume_prepare();
1365 
1366     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1367         if (!se->ops || !se->ops->resume_prepare) {
1368             continue;
1369         }
1370         if (se->ops->is_active) {
1371             if (!se->ops->is_active(se->opaque)) {
1372                 continue;
1373             }
1374         }
1375         ret = se->ops->resume_prepare(s, se->opaque);
1376         if (ret < 0) {
1377             return ret;
1378         }
1379     }
1380 
1381     return 0;
1382 }
1383 
1384 /*
1385  * this function has three return values:
1386  *   negative: there was one error, and we have -errno.
1387  *   0 : We haven't finished, caller have to go again
1388  *   1 : We have finished, we can go to complete phase
1389  */
1390 int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy)
1391 {
1392     SaveStateEntry *se;
1393     bool all_finished = true;
1394     int ret;
1395 
1396     trace_savevm_state_iterate();
1397     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1398         if (!se->ops || !se->ops->save_live_iterate) {
1399             continue;
1400         }
1401         if (se->ops->is_active &&
1402             !se->ops->is_active(se->opaque)) {
1403             continue;
1404         }
1405         if (se->ops->is_active_iterate &&
1406             !se->ops->is_active_iterate(se->opaque)) {
1407             continue;
1408         }
1409         /*
1410          * In the postcopy phase, any device that doesn't know how to
1411          * do postcopy should have saved it's state in the _complete
1412          * call that's already run, it might get confused if we call
1413          * iterate afterwards.
1414          */
1415         if (postcopy &&
1416             !(se->ops->has_postcopy && se->ops->has_postcopy(se->opaque))) {
1417             continue;
1418         }
1419         if (migration_rate_exceeded(f)) {
1420             return 0;
1421         }
1422         trace_savevm_section_start(se->idstr, se->section_id);
1423 
1424         save_section_header(f, se, QEMU_VM_SECTION_PART);
1425 
1426         ret = se->ops->save_live_iterate(f, se->opaque);
1427         trace_savevm_section_end(se->idstr, se->section_id, ret);
1428         save_section_footer(f, se);
1429 
1430         if (ret < 0) {
1431             error_report("failed to save SaveStateEntry with id(name): "
1432                          "%d(%s): %d",
1433                          se->section_id, se->idstr, ret);
1434             qemu_file_set_error(f, ret);
1435             return ret;
1436         } else if (!ret) {
1437             all_finished = false;
1438         }
1439     }
1440     return all_finished;
1441 }
1442 
1443 static bool should_send_vmdesc(void)
1444 {
1445     MachineState *machine = MACHINE(qdev_get_machine());
1446     bool in_postcopy = migration_in_postcopy();
1447     return !machine->suppress_vmdesc && !in_postcopy;
1448 }
1449 
1450 /*
1451  * Calls the save_live_complete_postcopy methods
1452  * causing the last few pages to be sent immediately and doing any associated
1453  * cleanup.
1454  * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1455  * all the other devices, but that happens at the point we switch to postcopy.
1456  */
1457 void qemu_savevm_state_complete_postcopy(QEMUFile *f)
1458 {
1459     SaveStateEntry *se;
1460     int ret;
1461 
1462     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1463         if (!se->ops || !se->ops->save_live_complete_postcopy) {
1464             continue;
1465         }
1466         if (se->ops->is_active) {
1467             if (!se->ops->is_active(se->opaque)) {
1468                 continue;
1469             }
1470         }
1471         trace_savevm_section_start(se->idstr, se->section_id);
1472         /* Section type */
1473         qemu_put_byte(f, QEMU_VM_SECTION_END);
1474         qemu_put_be32(f, se->section_id);
1475 
1476         ret = se->ops->save_live_complete_postcopy(f, se->opaque);
1477         trace_savevm_section_end(se->idstr, se->section_id, ret);
1478         save_section_footer(f, se);
1479         if (ret < 0) {
1480             qemu_file_set_error(f, ret);
1481             return;
1482         }
1483     }
1484 
1485     qemu_put_byte(f, QEMU_VM_EOF);
1486     qemu_fflush(f);
1487 }
1488 
1489 static
1490 int qemu_savevm_state_complete_precopy_iterable(QEMUFile *f, bool in_postcopy)
1491 {
1492     int64_t start_ts_each, end_ts_each;
1493     SaveStateEntry *se;
1494     int ret;
1495 
1496     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1497         if (!se->ops ||
1498             (in_postcopy && se->ops->has_postcopy &&
1499              se->ops->has_postcopy(se->opaque)) ||
1500             !se->ops->save_live_complete_precopy) {
1501             continue;
1502         }
1503 
1504         if (se->ops->is_active) {
1505             if (!se->ops->is_active(se->opaque)) {
1506                 continue;
1507             }
1508         }
1509 
1510         start_ts_each = qemu_clock_get_us(QEMU_CLOCK_REALTIME);
1511         trace_savevm_section_start(se->idstr, se->section_id);
1512 
1513         save_section_header(f, se, QEMU_VM_SECTION_END);
1514 
1515         ret = se->ops->save_live_complete_precopy(f, se->opaque);
1516         trace_savevm_section_end(se->idstr, se->section_id, ret);
1517         save_section_footer(f, se);
1518         if (ret < 0) {
1519             qemu_file_set_error(f, ret);
1520             return -1;
1521         }
1522         end_ts_each = qemu_clock_get_us(QEMU_CLOCK_REALTIME);
1523         trace_vmstate_downtime_save("iterable", se->idstr, se->instance_id,
1524                                     end_ts_each - start_ts_each);
1525     }
1526 
1527     trace_vmstate_downtime_checkpoint("src-iterable-saved");
1528 
1529     return 0;
1530 }
1531 
1532 int qemu_savevm_state_complete_precopy_non_iterable(QEMUFile *f,
1533                                                     bool in_postcopy,
1534                                                     bool inactivate_disks)
1535 {
1536     MigrationState *ms = migrate_get_current();
1537     int64_t start_ts_each, end_ts_each;
1538     JSONWriter *vmdesc = ms->vmdesc;
1539     int vmdesc_len;
1540     SaveStateEntry *se;
1541     int ret;
1542 
1543     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1544         if (se->vmsd && se->vmsd->early_setup) {
1545             /* Already saved during qemu_savevm_state_setup(). */
1546             continue;
1547         }
1548 
1549         start_ts_each = qemu_clock_get_us(QEMU_CLOCK_REALTIME);
1550 
1551         ret = vmstate_save(f, se, vmdesc);
1552         if (ret) {
1553             qemu_file_set_error(f, ret);
1554             return ret;
1555         }
1556 
1557         end_ts_each = qemu_clock_get_us(QEMU_CLOCK_REALTIME);
1558         trace_vmstate_downtime_save("non-iterable", se->idstr, se->instance_id,
1559                                     end_ts_each - start_ts_each);
1560     }
1561 
1562     if (inactivate_disks) {
1563         /* Inactivate before sending QEMU_VM_EOF so that the
1564          * bdrv_activate_all() on the other end won't fail. */
1565         ret = bdrv_inactivate_all();
1566         if (ret) {
1567             Error *local_err = NULL;
1568             error_setg(&local_err, "%s: bdrv_inactivate_all() failed (%d)",
1569                        __func__, ret);
1570             migrate_set_error(ms, local_err);
1571             error_report_err(local_err);
1572             qemu_file_set_error(f, ret);
1573             return ret;
1574         }
1575     }
1576     if (!in_postcopy) {
1577         /* Postcopy stream will still be going */
1578         qemu_put_byte(f, QEMU_VM_EOF);
1579     }
1580 
1581     json_writer_end_array(vmdesc);
1582     json_writer_end_object(vmdesc);
1583     vmdesc_len = strlen(json_writer_get(vmdesc));
1584 
1585     if (should_send_vmdesc()) {
1586         qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
1587         qemu_put_be32(f, vmdesc_len);
1588         qemu_put_buffer(f, (uint8_t *)json_writer_get(vmdesc), vmdesc_len);
1589     }
1590 
1591     /* Free it now to detect any inconsistencies. */
1592     json_writer_free(vmdesc);
1593     ms->vmdesc = NULL;
1594 
1595     trace_vmstate_downtime_checkpoint("src-non-iterable-saved");
1596 
1597     return 0;
1598 }
1599 
1600 int qemu_savevm_state_complete_precopy(QEMUFile *f, bool iterable_only,
1601                                        bool inactivate_disks)
1602 {
1603     int ret;
1604     Error *local_err = NULL;
1605     bool in_postcopy = migration_in_postcopy();
1606 
1607     if (precopy_notify(PRECOPY_NOTIFY_COMPLETE, &local_err)) {
1608         error_report_err(local_err);
1609     }
1610 
1611     trace_savevm_state_complete_precopy();
1612 
1613     cpu_synchronize_all_states();
1614 
1615     if (!in_postcopy || iterable_only) {
1616         ret = qemu_savevm_state_complete_precopy_iterable(f, in_postcopy);
1617         if (ret) {
1618             return ret;
1619         }
1620     }
1621 
1622     if (iterable_only) {
1623         goto flush;
1624     }
1625 
1626     ret = qemu_savevm_state_complete_precopy_non_iterable(f, in_postcopy,
1627                                                           inactivate_disks);
1628     if (ret) {
1629         return ret;
1630     }
1631 
1632 flush:
1633     return qemu_fflush(f);
1634 }
1635 
1636 /* Give an estimate of the amount left to be transferred,
1637  * the result is split into the amount for units that can and
1638  * for units that can't do postcopy.
1639  */
1640 void qemu_savevm_state_pending_estimate(uint64_t *must_precopy,
1641                                         uint64_t *can_postcopy)
1642 {
1643     SaveStateEntry *se;
1644 
1645     *must_precopy = 0;
1646     *can_postcopy = 0;
1647 
1648     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1649         if (!se->ops || !se->ops->state_pending_estimate) {
1650             continue;
1651         }
1652         if (se->ops->is_active) {
1653             if (!se->ops->is_active(se->opaque)) {
1654                 continue;
1655             }
1656         }
1657         se->ops->state_pending_estimate(se->opaque, must_precopy, can_postcopy);
1658     }
1659 }
1660 
1661 void qemu_savevm_state_pending_exact(uint64_t *must_precopy,
1662                                      uint64_t *can_postcopy)
1663 {
1664     SaveStateEntry *se;
1665 
1666     *must_precopy = 0;
1667     *can_postcopy = 0;
1668 
1669     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1670         if (!se->ops || !se->ops->state_pending_exact) {
1671             continue;
1672         }
1673         if (se->ops->is_active) {
1674             if (!se->ops->is_active(se->opaque)) {
1675                 continue;
1676             }
1677         }
1678         se->ops->state_pending_exact(se->opaque, must_precopy, can_postcopy);
1679     }
1680 }
1681 
1682 void qemu_savevm_state_cleanup(void)
1683 {
1684     SaveStateEntry *se;
1685     Error *local_err = NULL;
1686 
1687     if (precopy_notify(PRECOPY_NOTIFY_CLEANUP, &local_err)) {
1688         error_report_err(local_err);
1689     }
1690 
1691     trace_savevm_state_cleanup();
1692     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1693         if (se->ops && se->ops->save_cleanup) {
1694             se->ops->save_cleanup(se->opaque);
1695         }
1696     }
1697 }
1698 
1699 static int qemu_savevm_state(QEMUFile *f, Error **errp)
1700 {
1701     int ret;
1702     MigrationState *ms = migrate_get_current();
1703     MigrationStatus status;
1704 
1705     if (migration_is_running(ms->state)) {
1706         error_setg(errp, QERR_MIGRATION_ACTIVE);
1707         return -EINVAL;
1708     }
1709 
1710     if (migrate_block()) {
1711         error_setg(errp, "Block migration and snapshots are incompatible");
1712         return -EINVAL;
1713     }
1714 
1715     ret = migrate_init(ms, errp);
1716     if (ret) {
1717         return ret;
1718     }
1719     ms->to_dst_file = f;
1720 
1721     qemu_savevm_state_header(f);
1722     qemu_savevm_state_setup(f);
1723 
1724     while (qemu_file_get_error(f) == 0) {
1725         if (qemu_savevm_state_iterate(f, false) > 0) {
1726             break;
1727         }
1728     }
1729 
1730     ret = qemu_file_get_error(f);
1731     if (ret == 0) {
1732         qemu_savevm_state_complete_precopy(f, false, false);
1733         ret = qemu_file_get_error(f);
1734     }
1735     qemu_savevm_state_cleanup();
1736     if (ret != 0) {
1737         error_setg_errno(errp, -ret, "Error while writing VM state");
1738     }
1739 
1740     if (ret != 0) {
1741         status = MIGRATION_STATUS_FAILED;
1742     } else {
1743         status = MIGRATION_STATUS_COMPLETED;
1744     }
1745     migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
1746 
1747     /* f is outer parameter, it should not stay in global migration state after
1748      * this function finished */
1749     ms->to_dst_file = NULL;
1750 
1751     return ret;
1752 }
1753 
1754 void qemu_savevm_live_state(QEMUFile *f)
1755 {
1756     /* save QEMU_VM_SECTION_END section */
1757     qemu_savevm_state_complete_precopy(f, true, false);
1758     qemu_put_byte(f, QEMU_VM_EOF);
1759 }
1760 
1761 int qemu_save_device_state(QEMUFile *f)
1762 {
1763     SaveStateEntry *se;
1764 
1765     if (!migration_in_colo_state()) {
1766         qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1767         qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1768     }
1769     cpu_synchronize_all_states();
1770 
1771     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1772         int ret;
1773 
1774         if (se->is_ram) {
1775             continue;
1776         }
1777         ret = vmstate_save(f, se, NULL);
1778         if (ret) {
1779             return ret;
1780         }
1781     }
1782 
1783     qemu_put_byte(f, QEMU_VM_EOF);
1784 
1785     return qemu_file_get_error(f);
1786 }
1787 
1788 static SaveStateEntry *find_se(const char *idstr, uint32_t instance_id)
1789 {
1790     SaveStateEntry *se;
1791 
1792     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1793         if (!strcmp(se->idstr, idstr) &&
1794             (instance_id == se->instance_id ||
1795              instance_id == se->alias_id))
1796             return se;
1797         /* Migrating from an older version? */
1798         if (strstr(se->idstr, idstr) && se->compat) {
1799             if (!strcmp(se->compat->idstr, idstr) &&
1800                 (instance_id == se->compat->instance_id ||
1801                  instance_id == se->alias_id))
1802                 return se;
1803         }
1804     }
1805     return NULL;
1806 }
1807 
1808 enum LoadVMExitCodes {
1809     /* Allow a command to quit all layers of nested loadvm loops */
1810     LOADVM_QUIT     =  1,
1811 };
1812 
1813 /* ------ incoming postcopy messages ------ */
1814 /* 'advise' arrives before any transfers just to tell us that a postcopy
1815  * *might* happen - it might be skipped if precopy transferred everything
1816  * quickly.
1817  */
1818 static int loadvm_postcopy_handle_advise(MigrationIncomingState *mis,
1819                                          uint16_t len)
1820 {
1821     PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1822     uint64_t remote_pagesize_summary, local_pagesize_summary, remote_tps;
1823     size_t page_size = qemu_target_page_size();
1824     Error *local_err = NULL;
1825 
1826     trace_loadvm_postcopy_handle_advise();
1827     if (ps != POSTCOPY_INCOMING_NONE) {
1828         error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps);
1829         return -1;
1830     }
1831 
1832     switch (len) {
1833     case 0:
1834         if (migrate_postcopy_ram()) {
1835             error_report("RAM postcopy is enabled but have 0 byte advise");
1836             return -EINVAL;
1837         }
1838         return 0;
1839     case 8 + 8:
1840         if (!migrate_postcopy_ram()) {
1841             error_report("RAM postcopy is disabled but have 16 byte advise");
1842             return -EINVAL;
1843         }
1844         break;
1845     default:
1846         error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len);
1847         return -EINVAL;
1848     }
1849 
1850     if (!postcopy_ram_supported_by_host(mis, &local_err)) {
1851         error_report_err(local_err);
1852         postcopy_state_set(POSTCOPY_INCOMING_NONE);
1853         return -1;
1854     }
1855 
1856     remote_pagesize_summary = qemu_get_be64(mis->from_src_file);
1857     local_pagesize_summary = ram_pagesize_summary();
1858 
1859     if (remote_pagesize_summary != local_pagesize_summary)  {
1860         /*
1861          * This detects two potential causes of mismatch:
1862          *   a) A mismatch in host page sizes
1863          *      Some combinations of mismatch are probably possible but it gets
1864          *      a bit more complicated.  In particular we need to place whole
1865          *      host pages on the dest at once, and we need to ensure that we
1866          *      handle dirtying to make sure we never end up sending part of
1867          *      a hostpage on it's own.
1868          *   b) The use of different huge page sizes on source/destination
1869          *      a more fine grain test is performed during RAM block migration
1870          *      but this test here causes a nice early clear failure, and
1871          *      also fails when passed to an older qemu that doesn't
1872          *      do huge pages.
1873          */
1874         error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1875                                                              " d=%" PRIx64 ")",
1876                      remote_pagesize_summary, local_pagesize_summary);
1877         return -1;
1878     }
1879 
1880     remote_tps = qemu_get_be64(mis->from_src_file);
1881     if (remote_tps != page_size) {
1882         /*
1883          * Again, some differences could be dealt with, but for now keep it
1884          * simple.
1885          */
1886         error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1887                      (int)remote_tps, page_size);
1888         return -1;
1889     }
1890 
1891     if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_ADVISE, &local_err)) {
1892         error_report_err(local_err);
1893         return -1;
1894     }
1895 
1896     if (ram_postcopy_incoming_init(mis)) {
1897         return -1;
1898     }
1899 
1900     return 0;
1901 }
1902 
1903 /* After postcopy we will be told to throw some pages away since they're
1904  * dirty and will have to be demand fetched.  Must happen before CPU is
1905  * started.
1906  * There can be 0..many of these messages, each encoding multiple pages.
1907  */
1908 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
1909                                               uint16_t len)
1910 {
1911     int tmp;
1912     char ramid[256];
1913     PostcopyState ps = postcopy_state_get();
1914 
1915     trace_loadvm_postcopy_ram_handle_discard();
1916 
1917     switch (ps) {
1918     case POSTCOPY_INCOMING_ADVISE:
1919         /* 1st discard */
1920         tmp = postcopy_ram_prepare_discard(mis);
1921         if (tmp) {
1922             return tmp;
1923         }
1924         break;
1925 
1926     case POSTCOPY_INCOMING_DISCARD:
1927         /* Expected state */
1928         break;
1929 
1930     default:
1931         error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1932                      ps);
1933         return -1;
1934     }
1935     /* We're expecting a
1936      *    Version (0)
1937      *    a RAM ID string (length byte, name, 0 term)
1938      *    then at least 1 16 byte chunk
1939     */
1940     if (len < (1 + 1 + 1 + 1 + 2 * 8)) {
1941         error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1942         return -1;
1943     }
1944 
1945     tmp = qemu_get_byte(mis->from_src_file);
1946     if (tmp != postcopy_ram_discard_version) {
1947         error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp);
1948         return -1;
1949     }
1950 
1951     if (!qemu_get_counted_string(mis->from_src_file, ramid)) {
1952         error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1953         return -1;
1954     }
1955     tmp = qemu_get_byte(mis->from_src_file);
1956     if (tmp != 0) {
1957         error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp);
1958         return -1;
1959     }
1960 
1961     len -= 3 + strlen(ramid);
1962     if (len % 16) {
1963         error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1964         return -1;
1965     }
1966     trace_loadvm_postcopy_ram_handle_discard_header(ramid, len);
1967     while (len) {
1968         uint64_t start_addr, block_length;
1969         start_addr = qemu_get_be64(mis->from_src_file);
1970         block_length = qemu_get_be64(mis->from_src_file);
1971 
1972         len -= 16;
1973         int ret = ram_discard_range(ramid, start_addr, block_length);
1974         if (ret) {
1975             return ret;
1976         }
1977     }
1978     trace_loadvm_postcopy_ram_handle_discard_end();
1979 
1980     return 0;
1981 }
1982 
1983 /*
1984  * Triggered by a postcopy_listen command; this thread takes over reading
1985  * the input stream, leaving the main thread free to carry on loading the rest
1986  * of the device state (from RAM).
1987  * (TODO:This could do with being in a postcopy file - but there again it's
1988  * just another input loop, not that postcopy specific)
1989  */
1990 static void *postcopy_ram_listen_thread(void *opaque)
1991 {
1992     MigrationIncomingState *mis = migration_incoming_get_current();
1993     QEMUFile *f = mis->from_src_file;
1994     int load_res;
1995     MigrationState *migr = migrate_get_current();
1996 
1997     object_ref(OBJECT(migr));
1998 
1999     migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
2000                                    MIGRATION_STATUS_POSTCOPY_ACTIVE);
2001     qemu_sem_post(&mis->thread_sync_sem);
2002     trace_postcopy_ram_listen_thread_start();
2003 
2004     rcu_register_thread();
2005     /*
2006      * Because we're a thread and not a coroutine we can't yield
2007      * in qemu_file, and thus we must be blocking now.
2008      */
2009     qemu_file_set_blocking(f, true);
2010     load_res = qemu_loadvm_state_main(f, mis);
2011 
2012     /*
2013      * This is tricky, but, mis->from_src_file can change after it
2014      * returns, when postcopy recovery happened. In the future, we may
2015      * want a wrapper for the QEMUFile handle.
2016      */
2017     f = mis->from_src_file;
2018 
2019     /* And non-blocking again so we don't block in any cleanup */
2020     qemu_file_set_blocking(f, false);
2021 
2022     trace_postcopy_ram_listen_thread_exit();
2023     if (load_res < 0) {
2024         qemu_file_set_error(f, load_res);
2025         dirty_bitmap_mig_cancel_incoming();
2026         if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING &&
2027             !migrate_postcopy_ram() && migrate_dirty_bitmaps())
2028         {
2029             error_report("%s: loadvm failed during postcopy: %d. All states "
2030                          "are migrated except dirty bitmaps. Some dirty "
2031                          "bitmaps may be lost, and present migrated dirty "
2032                          "bitmaps are correctly migrated and valid.",
2033                          __func__, load_res);
2034             load_res = 0; /* prevent further exit() */
2035         } else {
2036             error_report("%s: loadvm failed: %d", __func__, load_res);
2037             migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2038                                            MIGRATION_STATUS_FAILED);
2039         }
2040     }
2041     if (load_res >= 0) {
2042         /*
2043          * This looks good, but it's possible that the device loading in the
2044          * main thread hasn't finished yet, and so we might not be in 'RUN'
2045          * state yet; wait for the end of the main thread.
2046          */
2047         qemu_event_wait(&mis->main_thread_load_event);
2048     }
2049     postcopy_ram_incoming_cleanup(mis);
2050 
2051     if (load_res < 0) {
2052         /*
2053          * If something went wrong then we have a bad state so exit;
2054          * depending how far we got it might be possible at this point
2055          * to leave the guest running and fire MCEs for pages that never
2056          * arrived as a desperate recovery step.
2057          */
2058         rcu_unregister_thread();
2059         exit(EXIT_FAILURE);
2060     }
2061 
2062     migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2063                                    MIGRATION_STATUS_COMPLETED);
2064     /*
2065      * If everything has worked fine, then the main thread has waited
2066      * for us to start, and we're the last use of the mis.
2067      * (If something broke then qemu will have to exit anyway since it's
2068      * got a bad migration state).
2069      */
2070     migration_incoming_state_destroy();
2071     qemu_loadvm_state_cleanup();
2072 
2073     rcu_unregister_thread();
2074     mis->have_listen_thread = false;
2075     postcopy_state_set(POSTCOPY_INCOMING_END);
2076 
2077     object_unref(OBJECT(migr));
2078 
2079     return NULL;
2080 }
2081 
2082 /* After this message we must be able to immediately receive postcopy data */
2083 static int loadvm_postcopy_handle_listen(MigrationIncomingState *mis)
2084 {
2085     PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_LISTENING);
2086     Error *local_err = NULL;
2087 
2088     trace_loadvm_postcopy_handle_listen("enter");
2089 
2090     if (ps != POSTCOPY_INCOMING_ADVISE && ps != POSTCOPY_INCOMING_DISCARD) {
2091         error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps);
2092         return -1;
2093     }
2094     if (ps == POSTCOPY_INCOMING_ADVISE) {
2095         /*
2096          * A rare case, we entered listen without having to do any discards,
2097          * so do the setup that's normally done at the time of the 1st discard.
2098          */
2099         if (migrate_postcopy_ram()) {
2100             postcopy_ram_prepare_discard(mis);
2101         }
2102     }
2103 
2104     trace_loadvm_postcopy_handle_listen("after discard");
2105 
2106     /*
2107      * Sensitise RAM - can now generate requests for blocks that don't exist
2108      * However, at this point the CPU shouldn't be running, and the IO
2109      * shouldn't be doing anything yet so don't actually expect requests
2110      */
2111     if (migrate_postcopy_ram()) {
2112         if (postcopy_ram_incoming_setup(mis)) {
2113             postcopy_ram_incoming_cleanup(mis);
2114             return -1;
2115         }
2116     }
2117 
2118     trace_loadvm_postcopy_handle_listen("after uffd");
2119 
2120     if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_LISTEN, &local_err)) {
2121         error_report_err(local_err);
2122         return -1;
2123     }
2124 
2125     mis->have_listen_thread = true;
2126     postcopy_thread_create(mis, &mis->listen_thread, "postcopy/listen",
2127                            postcopy_ram_listen_thread, QEMU_THREAD_DETACHED);
2128     trace_loadvm_postcopy_handle_listen("return");
2129 
2130     return 0;
2131 }
2132 
2133 static void loadvm_postcopy_handle_run_bh(void *opaque)
2134 {
2135     Error *local_err = NULL;
2136     MigrationIncomingState *mis = opaque;
2137 
2138     trace_vmstate_downtime_checkpoint("dst-postcopy-bh-enter");
2139 
2140     /* TODO we should move all of this lot into postcopy_ram.c or a shared code
2141      * in migration.c
2142      */
2143     cpu_synchronize_all_post_init();
2144 
2145     trace_vmstate_downtime_checkpoint("dst-postcopy-bh-cpu-synced");
2146 
2147     qemu_announce_self(&mis->announce_timer, migrate_announce_params());
2148 
2149     trace_vmstate_downtime_checkpoint("dst-postcopy-bh-announced");
2150 
2151     /* Make sure all file formats throw away their mutable metadata.
2152      * If we get an error here, just don't restart the VM yet. */
2153     bdrv_activate_all(&local_err);
2154     if (local_err) {
2155         error_report_err(local_err);
2156         local_err = NULL;
2157         autostart = false;
2158     }
2159 
2160     trace_vmstate_downtime_checkpoint("dst-postcopy-bh-cache-invalidated");
2161 
2162     dirty_bitmap_mig_before_vm_start();
2163 
2164     if (autostart) {
2165         /* Hold onto your hats, starting the CPU */
2166         vm_start();
2167     } else {
2168         /* leave it paused and let management decide when to start the CPU */
2169         runstate_set(RUN_STATE_PAUSED);
2170     }
2171 
2172     trace_vmstate_downtime_checkpoint("dst-postcopy-bh-vm-started");
2173 }
2174 
2175 /* After all discards we can start running and asking for pages */
2176 static int loadvm_postcopy_handle_run(MigrationIncomingState *mis)
2177 {
2178     PostcopyState ps = postcopy_state_get();
2179 
2180     trace_loadvm_postcopy_handle_run();
2181     if (ps != POSTCOPY_INCOMING_LISTENING) {
2182         error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps);
2183         return -1;
2184     }
2185 
2186     postcopy_state_set(POSTCOPY_INCOMING_RUNNING);
2187     migration_bh_schedule(loadvm_postcopy_handle_run_bh, mis);
2188 
2189     /* We need to finish reading the stream from the package
2190      * and also stop reading anything more from the stream that loaded the
2191      * package (since it's now being read by the listener thread).
2192      * LOADVM_QUIT will quit all the layers of nested loadvm loops.
2193      */
2194     return LOADVM_QUIT;
2195 }
2196 
2197 /* We must be with page_request_mutex held */
2198 static gboolean postcopy_sync_page_req(gpointer key, gpointer value,
2199                                        gpointer data)
2200 {
2201     MigrationIncomingState *mis = data;
2202     void *host_addr = (void *) key;
2203     ram_addr_t rb_offset;
2204     RAMBlock *rb;
2205     int ret;
2206 
2207     rb = qemu_ram_block_from_host(host_addr, true, &rb_offset);
2208     if (!rb) {
2209         /*
2210          * This should _never_ happen.  However be nice for a migrating VM to
2211          * not crash/assert.  Post an error (note: intended to not use *_once
2212          * because we do want to see all the illegal addresses; and this can
2213          * never be triggered by the guest so we're safe) and move on next.
2214          */
2215         error_report("%s: illegal host addr %p", __func__, host_addr);
2216         /* Try the next entry */
2217         return FALSE;
2218     }
2219 
2220     ret = migrate_send_rp_message_req_pages(mis, rb, rb_offset);
2221     if (ret) {
2222         /* Please refer to above comment. */
2223         error_report("%s: send rp message failed for addr %p",
2224                      __func__, host_addr);
2225         return FALSE;
2226     }
2227 
2228     trace_postcopy_page_req_sync(host_addr);
2229 
2230     return FALSE;
2231 }
2232 
2233 static void migrate_send_rp_req_pages_pending(MigrationIncomingState *mis)
2234 {
2235     WITH_QEMU_LOCK_GUARD(&mis->page_request_mutex) {
2236         g_tree_foreach(mis->page_requested, postcopy_sync_page_req, mis);
2237     }
2238 }
2239 
2240 static int loadvm_postcopy_handle_resume(MigrationIncomingState *mis)
2241 {
2242     if (mis->state != MIGRATION_STATUS_POSTCOPY_RECOVER) {
2243         error_report("%s: illegal resume received", __func__);
2244         /* Don't fail the load, only for this. */
2245         return 0;
2246     }
2247 
2248     /*
2249      * Reset the last_rb before we resend any page req to source again, since
2250      * the source should have it reset already.
2251      */
2252     mis->last_rb = NULL;
2253 
2254     /*
2255      * This means source VM is ready to resume the postcopy migration.
2256      */
2257     migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_RECOVER,
2258                       MIGRATION_STATUS_POSTCOPY_ACTIVE);
2259 
2260     trace_loadvm_postcopy_handle_resume();
2261 
2262     /* Tell source that "we are ready" */
2263     migrate_send_rp_resume_ack(mis, MIGRATION_RESUME_ACK_VALUE);
2264 
2265     /*
2266      * After a postcopy recovery, the source should have lost the postcopy
2267      * queue, or potentially the requested pages could have been lost during
2268      * the network down phase.  Let's re-sync with the source VM by re-sending
2269      * all the pending pages that we eagerly need, so these threads won't get
2270      * blocked too long due to the recovery.
2271      *
2272      * Without this procedure, the faulted destination VM threads (waiting for
2273      * page requests right before the postcopy is interrupted) can keep hanging
2274      * until the pages are sent by the source during the background copying of
2275      * pages, or another thread faulted on the same address accidentally.
2276      */
2277     migrate_send_rp_req_pages_pending(mis);
2278 
2279     /*
2280      * It's time to switch state and release the fault thread to continue
2281      * service page faults.  Note that this should be explicitly after the
2282      * above call to migrate_send_rp_req_pages_pending().  In short:
2283      * migrate_send_rp_message_req_pages() is not thread safe, yet.
2284      */
2285     qemu_sem_post(&mis->postcopy_pause_sem_fault);
2286 
2287     if (migrate_postcopy_preempt()) {
2288         /*
2289          * The preempt channel will be created in async manner, now let's
2290          * wait for it and make sure it's created.
2291          */
2292         qemu_sem_wait(&mis->postcopy_qemufile_dst_done);
2293         assert(mis->postcopy_qemufile_dst);
2294         /* Kick the fast ram load thread too */
2295         qemu_sem_post(&mis->postcopy_pause_sem_fast_load);
2296     }
2297 
2298     return 0;
2299 }
2300 
2301 /**
2302  * Immediately following this command is a blob of data containing an embedded
2303  * chunk of migration stream; read it and load it.
2304  *
2305  * @mis: Incoming state
2306  * @length: Length of packaged data to read
2307  *
2308  * Returns: Negative values on error
2309  *
2310  */
2311 static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
2312 {
2313     int ret;
2314     size_t length;
2315     QIOChannelBuffer *bioc;
2316 
2317     length = qemu_get_be32(mis->from_src_file);
2318     trace_loadvm_handle_cmd_packaged(length);
2319 
2320     if (length > MAX_VM_CMD_PACKAGED_SIZE) {
2321         error_report("Unreasonably large packaged state: %zu", length);
2322         return -1;
2323     }
2324 
2325     bioc = qio_channel_buffer_new(length);
2326     qio_channel_set_name(QIO_CHANNEL(bioc), "migration-loadvm-buffer");
2327     ret = qemu_get_buffer(mis->from_src_file,
2328                           bioc->data,
2329                           length);
2330     if (ret != length) {
2331         object_unref(OBJECT(bioc));
2332         error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
2333                      ret, length);
2334         return (ret < 0) ? ret : -EAGAIN;
2335     }
2336     bioc->usage += length;
2337     trace_loadvm_handle_cmd_packaged_received(ret);
2338 
2339     QEMUFile *packf = qemu_file_new_input(QIO_CHANNEL(bioc));
2340 
2341     ret = qemu_loadvm_state_main(packf, mis);
2342     trace_loadvm_handle_cmd_packaged_main(ret);
2343     qemu_fclose(packf);
2344     object_unref(OBJECT(bioc));
2345 
2346     return ret;
2347 }
2348 
2349 /*
2350  * Handle request that source requests for recved_bitmap on
2351  * destination. Payload format:
2352  *
2353  * len (1 byte) + ramblock_name (<255 bytes)
2354  */
2355 static int loadvm_handle_recv_bitmap(MigrationIncomingState *mis,
2356                                      uint16_t len)
2357 {
2358     QEMUFile *file = mis->from_src_file;
2359     RAMBlock *rb;
2360     char block_name[256];
2361     size_t cnt;
2362 
2363     cnt = qemu_get_counted_string(file, block_name);
2364     if (!cnt) {
2365         error_report("%s: failed to read block name", __func__);
2366         return -EINVAL;
2367     }
2368 
2369     /* Validate before using the data */
2370     if (qemu_file_get_error(file)) {
2371         return qemu_file_get_error(file);
2372     }
2373 
2374     if (len != cnt + 1) {
2375         error_report("%s: invalid payload length (%d)", __func__, len);
2376         return -EINVAL;
2377     }
2378 
2379     rb = qemu_ram_block_by_name(block_name);
2380     if (!rb) {
2381         error_report("%s: block '%s' not found", __func__, block_name);
2382         return -EINVAL;
2383     }
2384 
2385     migrate_send_rp_recv_bitmap(mis, block_name);
2386 
2387     trace_loadvm_handle_recv_bitmap(block_name);
2388 
2389     return 0;
2390 }
2391 
2392 static int loadvm_process_enable_colo(MigrationIncomingState *mis)
2393 {
2394     int ret = migration_incoming_enable_colo();
2395 
2396     if (!ret) {
2397         ret = colo_init_ram_cache();
2398         if (ret) {
2399             migration_incoming_disable_colo();
2400         }
2401     }
2402     return ret;
2403 }
2404 
2405 /*
2406  * Process an incoming 'QEMU_VM_COMMAND'
2407  * 0           just a normal return
2408  * LOADVM_QUIT All good, but exit the loop
2409  * <0          Error
2410  */
2411 static int loadvm_process_command(QEMUFile *f)
2412 {
2413     MigrationIncomingState *mis = migration_incoming_get_current();
2414     uint16_t cmd;
2415     uint16_t len;
2416     uint32_t tmp32;
2417 
2418     cmd = qemu_get_be16(f);
2419     len = qemu_get_be16(f);
2420 
2421     /* Check validity before continue processing of cmds */
2422     if (qemu_file_get_error(f)) {
2423         return qemu_file_get_error(f);
2424     }
2425 
2426     if (cmd >= MIG_CMD_MAX || cmd == MIG_CMD_INVALID) {
2427         error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd, len);
2428         return -EINVAL;
2429     }
2430 
2431     trace_loadvm_process_command(mig_cmd_args[cmd].name, len);
2432 
2433     if (mig_cmd_args[cmd].len != -1 && mig_cmd_args[cmd].len != len) {
2434         error_report("%s received with bad length - expecting %zu, got %d",
2435                      mig_cmd_args[cmd].name,
2436                      (size_t)mig_cmd_args[cmd].len, len);
2437         return -ERANGE;
2438     }
2439 
2440     switch (cmd) {
2441     case MIG_CMD_OPEN_RETURN_PATH:
2442         if (mis->to_src_file) {
2443             error_report("CMD_OPEN_RETURN_PATH called when RP already open");
2444             /* Not really a problem, so don't give up */
2445             return 0;
2446         }
2447         mis->to_src_file = qemu_file_get_return_path(f);
2448         if (!mis->to_src_file) {
2449             error_report("CMD_OPEN_RETURN_PATH failed");
2450             return -1;
2451         }
2452 
2453         /*
2454          * Switchover ack is enabled but no device uses it, so send an ACK to
2455          * source that it's OK to switchover. Do it here, after return path has
2456          * been created.
2457          */
2458         if (migrate_switchover_ack() && !mis->switchover_ack_pending_num) {
2459             int ret = migrate_send_rp_switchover_ack(mis);
2460             if (ret) {
2461                 error_report(
2462                     "Could not send switchover ack RP MSG, err %d (%s)", ret,
2463                     strerror(-ret));
2464                 return ret;
2465             }
2466         }
2467         break;
2468 
2469     case MIG_CMD_PING:
2470         tmp32 = qemu_get_be32(f);
2471         trace_loadvm_process_command_ping(tmp32);
2472         if (!mis->to_src_file) {
2473             error_report("CMD_PING (0x%x) received with no return path",
2474                          tmp32);
2475             return -1;
2476         }
2477         migrate_send_rp_pong(mis, tmp32);
2478         break;
2479 
2480     case MIG_CMD_PACKAGED:
2481         return loadvm_handle_cmd_packaged(mis);
2482 
2483     case MIG_CMD_POSTCOPY_ADVISE:
2484         return loadvm_postcopy_handle_advise(mis, len);
2485 
2486     case MIG_CMD_POSTCOPY_LISTEN:
2487         return loadvm_postcopy_handle_listen(mis);
2488 
2489     case MIG_CMD_POSTCOPY_RUN:
2490         return loadvm_postcopy_handle_run(mis);
2491 
2492     case MIG_CMD_POSTCOPY_RAM_DISCARD:
2493         return loadvm_postcopy_ram_handle_discard(mis, len);
2494 
2495     case MIG_CMD_POSTCOPY_RESUME:
2496         return loadvm_postcopy_handle_resume(mis);
2497 
2498     case MIG_CMD_RECV_BITMAP:
2499         return loadvm_handle_recv_bitmap(mis, len);
2500 
2501     case MIG_CMD_ENABLE_COLO:
2502         return loadvm_process_enable_colo(mis);
2503     }
2504 
2505     return 0;
2506 }
2507 
2508 /*
2509  * Read a footer off the wire and check that it matches the expected section
2510  *
2511  * Returns: true if the footer was good
2512  *          false if there is a problem (and calls error_report to say why)
2513  */
2514 static bool check_section_footer(QEMUFile *f, SaveStateEntry *se)
2515 {
2516     int ret;
2517     uint8_t read_mark;
2518     uint32_t read_section_id;
2519 
2520     if (!migrate_get_current()->send_section_footer) {
2521         /* No footer to check */
2522         return true;
2523     }
2524 
2525     read_mark = qemu_get_byte(f);
2526 
2527     ret = qemu_file_get_error(f);
2528     if (ret) {
2529         error_report("%s: Read section footer failed: %d",
2530                      __func__, ret);
2531         return false;
2532     }
2533 
2534     if (read_mark != QEMU_VM_SECTION_FOOTER) {
2535         error_report("Missing section footer for %s", se->idstr);
2536         return false;
2537     }
2538 
2539     read_section_id = qemu_get_be32(f);
2540     if (read_section_id != se->load_section_id) {
2541         error_report("Mismatched section id in footer for %s -"
2542                      " read 0x%x expected 0x%x",
2543                      se->idstr, read_section_id, se->load_section_id);
2544         return false;
2545     }
2546 
2547     /* All good */
2548     return true;
2549 }
2550 
2551 static int
2552 qemu_loadvm_section_start_full(QEMUFile *f, MigrationIncomingState *mis,
2553                                uint8_t type)
2554 {
2555     bool trace_downtime = (type == QEMU_VM_SECTION_FULL);
2556     uint32_t instance_id, version_id, section_id;
2557     int64_t start_ts, end_ts;
2558     SaveStateEntry *se;
2559     char idstr[256];
2560     int ret;
2561 
2562     /* Read section start */
2563     section_id = qemu_get_be32(f);
2564     if (!qemu_get_counted_string(f, idstr)) {
2565         error_report("Unable to read ID string for section %u",
2566                      section_id);
2567         return -EINVAL;
2568     }
2569     instance_id = qemu_get_be32(f);
2570     version_id = qemu_get_be32(f);
2571 
2572     ret = qemu_file_get_error(f);
2573     if (ret) {
2574         error_report("%s: Failed to read instance/version ID: %d",
2575                      __func__, ret);
2576         return ret;
2577     }
2578 
2579     trace_qemu_loadvm_state_section_startfull(section_id, idstr,
2580             instance_id, version_id);
2581     /* Find savevm section */
2582     se = find_se(idstr, instance_id);
2583     if (se == NULL) {
2584         error_report("Unknown savevm section or instance '%s' %"PRIu32". "
2585                      "Make sure that your current VM setup matches your "
2586                      "saved VM setup, including any hotplugged devices",
2587                      idstr, instance_id);
2588         return -EINVAL;
2589     }
2590 
2591     /* Validate version */
2592     if (version_id > se->version_id) {
2593         error_report("savevm: unsupported version %d for '%s' v%d",
2594                      version_id, idstr, se->version_id);
2595         return -EINVAL;
2596     }
2597     se->load_version_id = version_id;
2598     se->load_section_id = section_id;
2599 
2600     /* Validate if it is a device's state */
2601     if (xen_enabled() && se->is_ram) {
2602         error_report("loadvm: %s RAM loading not allowed on Xen", idstr);
2603         return -EINVAL;
2604     }
2605 
2606     if (trace_downtime) {
2607         start_ts = qemu_clock_get_us(QEMU_CLOCK_REALTIME);
2608     }
2609 
2610     ret = vmstate_load(f, se);
2611     if (ret < 0) {
2612         error_report("error while loading state for instance 0x%"PRIx32" of"
2613                      " device '%s'", instance_id, idstr);
2614         return ret;
2615     }
2616 
2617     if (trace_downtime) {
2618         end_ts = qemu_clock_get_us(QEMU_CLOCK_REALTIME);
2619         trace_vmstate_downtime_load("non-iterable", se->idstr,
2620                                     se->instance_id, end_ts - start_ts);
2621     }
2622 
2623     if (!check_section_footer(f, se)) {
2624         return -EINVAL;
2625     }
2626 
2627     return 0;
2628 }
2629 
2630 static int
2631 qemu_loadvm_section_part_end(QEMUFile *f, MigrationIncomingState *mis,
2632                              uint8_t type)
2633 {
2634     bool trace_downtime = (type == QEMU_VM_SECTION_END);
2635     int64_t start_ts, end_ts;
2636     uint32_t section_id;
2637     SaveStateEntry *se;
2638     int ret;
2639 
2640     section_id = qemu_get_be32(f);
2641 
2642     ret = qemu_file_get_error(f);
2643     if (ret) {
2644         error_report("%s: Failed to read section ID: %d",
2645                      __func__, ret);
2646         return ret;
2647     }
2648 
2649     trace_qemu_loadvm_state_section_partend(section_id);
2650     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2651         if (se->load_section_id == section_id) {
2652             break;
2653         }
2654     }
2655     if (se == NULL) {
2656         error_report("Unknown savevm section %d", section_id);
2657         return -EINVAL;
2658     }
2659 
2660     if (trace_downtime) {
2661         start_ts = qemu_clock_get_us(QEMU_CLOCK_REALTIME);
2662     }
2663 
2664     ret = vmstate_load(f, se);
2665     if (ret < 0) {
2666         error_report("error while loading state section id %d(%s)",
2667                      section_id, se->idstr);
2668         return ret;
2669     }
2670 
2671     if (trace_downtime) {
2672         end_ts = qemu_clock_get_us(QEMU_CLOCK_REALTIME);
2673         trace_vmstate_downtime_load("iterable", se->idstr,
2674                                     se->instance_id, end_ts - start_ts);
2675     }
2676 
2677     if (!check_section_footer(f, se)) {
2678         return -EINVAL;
2679     }
2680 
2681     return 0;
2682 }
2683 
2684 static int qemu_loadvm_state_header(QEMUFile *f)
2685 {
2686     unsigned int v;
2687     int ret;
2688 
2689     v = qemu_get_be32(f);
2690     if (v != QEMU_VM_FILE_MAGIC) {
2691         error_report("Not a migration stream");
2692         return -EINVAL;
2693     }
2694 
2695     v = qemu_get_be32(f);
2696     if (v == QEMU_VM_FILE_VERSION_COMPAT) {
2697         error_report("SaveVM v2 format is obsolete and don't work anymore");
2698         return -ENOTSUP;
2699     }
2700     if (v != QEMU_VM_FILE_VERSION) {
2701         error_report("Unsupported migration stream version");
2702         return -ENOTSUP;
2703     }
2704 
2705     if (migrate_get_current()->send_configuration) {
2706         if (qemu_get_byte(f) != QEMU_VM_CONFIGURATION) {
2707             error_report("Configuration section missing");
2708             qemu_loadvm_state_cleanup();
2709             return -EINVAL;
2710         }
2711         ret = vmstate_load_state(f, &vmstate_configuration, &savevm_state, 0);
2712 
2713         if (ret) {
2714             qemu_loadvm_state_cleanup();
2715             return ret;
2716         }
2717     }
2718     return 0;
2719 }
2720 
2721 static void qemu_loadvm_state_switchover_ack_needed(MigrationIncomingState *mis)
2722 {
2723     SaveStateEntry *se;
2724 
2725     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2726         if (!se->ops || !se->ops->switchover_ack_needed) {
2727             continue;
2728         }
2729 
2730         if (se->ops->switchover_ack_needed(se->opaque)) {
2731             mis->switchover_ack_pending_num++;
2732         }
2733     }
2734 
2735     trace_loadvm_state_switchover_ack_needed(mis->switchover_ack_pending_num);
2736 }
2737 
2738 static int qemu_loadvm_state_setup(QEMUFile *f)
2739 {
2740     SaveStateEntry *se;
2741     int ret;
2742 
2743     trace_loadvm_state_setup();
2744     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2745         if (!se->ops || !se->ops->load_setup) {
2746             continue;
2747         }
2748         if (se->ops->is_active) {
2749             if (!se->ops->is_active(se->opaque)) {
2750                 continue;
2751             }
2752         }
2753 
2754         ret = se->ops->load_setup(f, se->opaque);
2755         if (ret < 0) {
2756             qemu_file_set_error(f, ret);
2757             error_report("Load state of device %s failed", se->idstr);
2758             return ret;
2759         }
2760     }
2761     return 0;
2762 }
2763 
2764 void qemu_loadvm_state_cleanup(void)
2765 {
2766     SaveStateEntry *se;
2767 
2768     trace_loadvm_state_cleanup();
2769     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2770         if (se->ops && se->ops->load_cleanup) {
2771             se->ops->load_cleanup(se->opaque);
2772         }
2773     }
2774 }
2775 
2776 /* Return true if we should continue the migration, or false. */
2777 static bool postcopy_pause_incoming(MigrationIncomingState *mis)
2778 {
2779     int i;
2780 
2781     trace_postcopy_pause_incoming();
2782 
2783     assert(migrate_postcopy_ram());
2784 
2785     /*
2786      * Unregister yank with either from/to src would work, since ioc behind it
2787      * is the same
2788      */
2789     migration_ioc_unregister_yank_from_file(mis->from_src_file);
2790 
2791     assert(mis->from_src_file);
2792     qemu_file_shutdown(mis->from_src_file);
2793     qemu_fclose(mis->from_src_file);
2794     mis->from_src_file = NULL;
2795 
2796     assert(mis->to_src_file);
2797     qemu_file_shutdown(mis->to_src_file);
2798     qemu_mutex_lock(&mis->rp_mutex);
2799     qemu_fclose(mis->to_src_file);
2800     mis->to_src_file = NULL;
2801     qemu_mutex_unlock(&mis->rp_mutex);
2802 
2803     /*
2804      * NOTE: this must happen before reset the PostcopyTmpPages below,
2805      * otherwise it's racy to reset those fields when the fast load thread
2806      * can be accessing it in parallel.
2807      */
2808     if (mis->postcopy_qemufile_dst) {
2809         qemu_file_shutdown(mis->postcopy_qemufile_dst);
2810         /* Take the mutex to make sure the fast ram load thread halted */
2811         qemu_mutex_lock(&mis->postcopy_prio_thread_mutex);
2812         migration_ioc_unregister_yank_from_file(mis->postcopy_qemufile_dst);
2813         qemu_fclose(mis->postcopy_qemufile_dst);
2814         mis->postcopy_qemufile_dst = NULL;
2815         qemu_mutex_unlock(&mis->postcopy_prio_thread_mutex);
2816     }
2817 
2818     /* Current state can be either ACTIVE or RECOVER */
2819     migrate_set_state(&mis->state, mis->state,
2820                       MIGRATION_STATUS_POSTCOPY_PAUSED);
2821 
2822     /* Notify the fault thread for the invalidated file handle */
2823     postcopy_fault_thread_notify(mis);
2824 
2825     /*
2826      * If network is interrupted, any temp page we received will be useless
2827      * because we didn't mark them as "received" in receivedmap.  After a
2828      * proper recovery later (which will sync src dirty bitmap with receivedmap
2829      * on dest) these cached small pages will be resent again.
2830      */
2831     for (i = 0; i < mis->postcopy_channels; i++) {
2832         postcopy_temp_page_reset(&mis->postcopy_tmp_pages[i]);
2833     }
2834 
2835     error_report("Detected IO failure for postcopy. "
2836                  "Migration paused.");
2837 
2838     while (mis->state == MIGRATION_STATUS_POSTCOPY_PAUSED) {
2839         qemu_sem_wait(&mis->postcopy_pause_sem_dst);
2840     }
2841 
2842     trace_postcopy_pause_incoming_continued();
2843 
2844     return true;
2845 }
2846 
2847 int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
2848 {
2849     uint8_t section_type;
2850     int ret = 0;
2851 
2852 retry:
2853     while (true) {
2854         section_type = qemu_get_byte(f);
2855 
2856         ret = qemu_file_get_error_obj_any(f, mis->postcopy_qemufile_dst, NULL);
2857         if (ret) {
2858             break;
2859         }
2860 
2861         trace_qemu_loadvm_state_section(section_type);
2862         switch (section_type) {
2863         case QEMU_VM_SECTION_START:
2864         case QEMU_VM_SECTION_FULL:
2865             ret = qemu_loadvm_section_start_full(f, mis, section_type);
2866             if (ret < 0) {
2867                 goto out;
2868             }
2869             break;
2870         case QEMU_VM_SECTION_PART:
2871         case QEMU_VM_SECTION_END:
2872             ret = qemu_loadvm_section_part_end(f, mis, section_type);
2873             if (ret < 0) {
2874                 goto out;
2875             }
2876             break;
2877         case QEMU_VM_COMMAND:
2878             ret = loadvm_process_command(f);
2879             trace_qemu_loadvm_state_section_command(ret);
2880             if ((ret < 0) || (ret == LOADVM_QUIT)) {
2881                 goto out;
2882             }
2883             break;
2884         case QEMU_VM_EOF:
2885             /* This is the end of migration */
2886             goto out;
2887         default:
2888             error_report("Unknown savevm section type %d", section_type);
2889             ret = -EINVAL;
2890             goto out;
2891         }
2892     }
2893 
2894 out:
2895     if (ret < 0) {
2896         qemu_file_set_error(f, ret);
2897 
2898         /* Cancel bitmaps incoming regardless of recovery */
2899         dirty_bitmap_mig_cancel_incoming();
2900 
2901         /*
2902          * If we are during an active postcopy, then we pause instead
2903          * of bail out to at least keep the VM's dirty data.  Note
2904          * that POSTCOPY_INCOMING_LISTENING stage is still not enough,
2905          * during which we're still receiving device states and we
2906          * still haven't yet started the VM on destination.
2907          *
2908          * Only RAM postcopy supports recovery. Still, if RAM postcopy is
2909          * enabled, canceled bitmaps postcopy will not affect RAM postcopy
2910          * recovering.
2911          */
2912         if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING &&
2913             migrate_postcopy_ram() && postcopy_pause_incoming(mis)) {
2914             /* Reset f to point to the newly created channel */
2915             f = mis->from_src_file;
2916             goto retry;
2917         }
2918     }
2919     return ret;
2920 }
2921 
2922 int qemu_loadvm_state(QEMUFile *f)
2923 {
2924     MigrationIncomingState *mis = migration_incoming_get_current();
2925     Error *local_err = NULL;
2926     int ret;
2927 
2928     if (qemu_savevm_state_blocked(&local_err)) {
2929         error_report_err(local_err);
2930         return -EINVAL;
2931     }
2932 
2933     ret = qemu_loadvm_state_header(f);
2934     if (ret) {
2935         return ret;
2936     }
2937 
2938     if (qemu_loadvm_state_setup(f) != 0) {
2939         return -EINVAL;
2940     }
2941 
2942     if (migrate_switchover_ack()) {
2943         qemu_loadvm_state_switchover_ack_needed(mis);
2944     }
2945 
2946     cpu_synchronize_all_pre_loadvm();
2947 
2948     ret = qemu_loadvm_state_main(f, mis);
2949     qemu_event_set(&mis->main_thread_load_event);
2950 
2951     trace_qemu_loadvm_state_post_main(ret);
2952 
2953     if (mis->have_listen_thread) {
2954         /* Listen thread still going, can't clean up yet */
2955         return ret;
2956     }
2957 
2958     if (ret == 0) {
2959         ret = qemu_file_get_error(f);
2960     }
2961 
2962     /*
2963      * Try to read in the VMDESC section as well, so that dumping tools that
2964      * intercept our migration stream have the chance to see it.
2965      */
2966 
2967     /* We've got to be careful; if we don't read the data and just shut the fd
2968      * then the sender can error if we close while it's still sending.
2969      * We also mustn't read data that isn't there; some transports (RDMA)
2970      * will stall waiting for that data when the source has already closed.
2971      */
2972     if (ret == 0 && should_send_vmdesc()) {
2973         uint8_t *buf;
2974         uint32_t size;
2975         uint8_t  section_type = qemu_get_byte(f);
2976 
2977         if (section_type != QEMU_VM_VMDESCRIPTION) {
2978             error_report("Expected vmdescription section, but got %d",
2979                          section_type);
2980             /*
2981              * It doesn't seem worth failing at this point since
2982              * we apparently have an otherwise valid VM state
2983              */
2984         } else {
2985             buf = g_malloc(0x1000);
2986             size = qemu_get_be32(f);
2987 
2988             while (size > 0) {
2989                 uint32_t read_chunk = MIN(size, 0x1000);
2990                 qemu_get_buffer(f, buf, read_chunk);
2991                 size -= read_chunk;
2992             }
2993             g_free(buf);
2994         }
2995     }
2996 
2997     qemu_loadvm_state_cleanup();
2998     cpu_synchronize_all_post_init();
2999 
3000     return ret;
3001 }
3002 
3003 int qemu_load_device_state(QEMUFile *f)
3004 {
3005     MigrationIncomingState *mis = migration_incoming_get_current();
3006     int ret;
3007 
3008     /* Load QEMU_VM_SECTION_FULL section */
3009     ret = qemu_loadvm_state_main(f, mis);
3010     if (ret < 0) {
3011         error_report("Failed to load device state: %d", ret);
3012         return ret;
3013     }
3014 
3015     cpu_synchronize_all_post_init();
3016     return 0;
3017 }
3018 
3019 int qemu_loadvm_approve_switchover(void)
3020 {
3021     MigrationIncomingState *mis = migration_incoming_get_current();
3022 
3023     if (!mis->switchover_ack_pending_num) {
3024         return -EINVAL;
3025     }
3026 
3027     mis->switchover_ack_pending_num--;
3028     trace_loadvm_approve_switchover(mis->switchover_ack_pending_num);
3029 
3030     if (mis->switchover_ack_pending_num) {
3031         return 0;
3032     }
3033 
3034     return migrate_send_rp_switchover_ack(mis);
3035 }
3036 
3037 bool save_snapshot(const char *name, bool overwrite, const char *vmstate,
3038                   bool has_devices, strList *devices, Error **errp)
3039 {
3040     BlockDriverState *bs;
3041     QEMUSnapshotInfo sn1, *sn = &sn1;
3042     int ret = -1, ret2;
3043     QEMUFile *f;
3044     RunState saved_state = runstate_get();
3045     uint64_t vm_state_size;
3046     g_autoptr(GDateTime) now = g_date_time_new_now_local();
3047 
3048     GLOBAL_STATE_CODE();
3049 
3050     if (migration_is_blocked(errp)) {
3051         return false;
3052     }
3053 
3054     if (!replay_can_snapshot()) {
3055         error_setg(errp, "Record/replay does not allow making snapshot "
3056                    "right now. Try once more later.");
3057         return false;
3058     }
3059 
3060     if (!bdrv_all_can_snapshot(has_devices, devices, errp)) {
3061         return false;
3062     }
3063 
3064     /* Delete old snapshots of the same name */
3065     if (name) {
3066         if (overwrite) {
3067             if (bdrv_all_delete_snapshot(name, has_devices,
3068                                          devices, errp) < 0) {
3069                 return false;
3070             }
3071         } else {
3072             ret2 = bdrv_all_has_snapshot(name, has_devices, devices, errp);
3073             if (ret2 < 0) {
3074                 return false;
3075             }
3076             if (ret2 == 1) {
3077                 error_setg(errp,
3078                            "Snapshot '%s' already exists in one or more devices",
3079                            name);
3080                 return false;
3081             }
3082         }
3083     }
3084 
3085     bs = bdrv_all_find_vmstate_bs(vmstate, has_devices, devices, errp);
3086     if (bs == NULL) {
3087         return false;
3088     }
3089 
3090     global_state_store();
3091     vm_stop(RUN_STATE_SAVE_VM);
3092 
3093     bdrv_drain_all_begin();
3094 
3095     memset(sn, 0, sizeof(*sn));
3096 
3097     /* fill auxiliary fields */
3098     sn->date_sec = g_date_time_to_unix(now);
3099     sn->date_nsec = g_date_time_get_microsecond(now) * 1000;
3100     sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
3101     if (replay_mode != REPLAY_MODE_NONE) {
3102         sn->icount = replay_get_current_icount();
3103     } else {
3104         sn->icount = -1ULL;
3105     }
3106 
3107     if (name) {
3108         pstrcpy(sn->name, sizeof(sn->name), name);
3109     } else {
3110         g_autofree char *autoname = g_date_time_format(now,  "vm-%Y%m%d%H%M%S");
3111         pstrcpy(sn->name, sizeof(sn->name), autoname);
3112     }
3113 
3114     /* save the VM state */
3115     f = qemu_fopen_bdrv(bs, 1);
3116     if (!f) {
3117         error_setg(errp, "Could not open VM state file");
3118         goto the_end;
3119     }
3120     ret = qemu_savevm_state(f, errp);
3121     vm_state_size = qemu_file_transferred(f);
3122     ret2 = qemu_fclose(f);
3123     if (ret < 0) {
3124         goto the_end;
3125     }
3126     if (ret2 < 0) {
3127         ret = ret2;
3128         goto the_end;
3129     }
3130 
3131     ret = bdrv_all_create_snapshot(sn, bs, vm_state_size,
3132                                    has_devices, devices, errp);
3133     if (ret < 0) {
3134         bdrv_all_delete_snapshot(sn->name, has_devices, devices, NULL);
3135         goto the_end;
3136     }
3137 
3138     ret = 0;
3139 
3140  the_end:
3141     bdrv_drain_all_end();
3142 
3143     vm_resume(saved_state);
3144     return ret == 0;
3145 }
3146 
3147 void qmp_xen_save_devices_state(const char *filename, bool has_live, bool live,
3148                                 Error **errp)
3149 {
3150     QEMUFile *f;
3151     QIOChannelFile *ioc;
3152     int saved_vm_running;
3153     int ret;
3154 
3155     if (!has_live) {
3156         /* live default to true so old version of Xen tool stack can have a
3157          * successful live migration */
3158         live = true;
3159     }
3160 
3161     saved_vm_running = runstate_is_running();
3162     vm_stop(RUN_STATE_SAVE_VM);
3163     global_state_store_running();
3164 
3165     ioc = qio_channel_file_new_path(filename, O_WRONLY | O_CREAT | O_TRUNC,
3166                                     0660, errp);
3167     if (!ioc) {
3168         goto the_end;
3169     }
3170     qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-save-state");
3171     f = qemu_file_new_output(QIO_CHANNEL(ioc));
3172     object_unref(OBJECT(ioc));
3173     ret = qemu_save_device_state(f);
3174     if (ret < 0 || qemu_fclose(f) < 0) {
3175         error_setg(errp, QERR_IO_ERROR);
3176     } else {
3177         /* libxl calls the QMP command "stop" before calling
3178          * "xen-save-devices-state" and in case of migration failure, libxl
3179          * would call "cont".
3180          * So call bdrv_inactivate_all (release locks) here to let the other
3181          * side of the migration take control of the images.
3182          */
3183         if (live && !saved_vm_running) {
3184             ret = bdrv_inactivate_all();
3185             if (ret) {
3186                 error_setg(errp, "%s: bdrv_inactivate_all() failed (%d)",
3187                            __func__, ret);
3188             }
3189         }
3190     }
3191 
3192  the_end:
3193     if (saved_vm_running) {
3194         vm_start();
3195     }
3196 }
3197 
3198 void qmp_xen_load_devices_state(const char *filename, Error **errp)
3199 {
3200     QEMUFile *f;
3201     QIOChannelFile *ioc;
3202     int ret;
3203 
3204     /* Guest must be paused before loading the device state; the RAM state
3205      * will already have been loaded by xc
3206      */
3207     if (runstate_is_running()) {
3208         error_setg(errp, "Cannot update device state while vm is running");
3209         return;
3210     }
3211     vm_stop(RUN_STATE_RESTORE_VM);
3212 
3213     ioc = qio_channel_file_new_path(filename, O_RDONLY | O_BINARY, 0, errp);
3214     if (!ioc) {
3215         return;
3216     }
3217     qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-load-state");
3218     f = qemu_file_new_input(QIO_CHANNEL(ioc));
3219     object_unref(OBJECT(ioc));
3220 
3221     ret = qemu_loadvm_state(f);
3222     qemu_fclose(f);
3223     if (ret < 0) {
3224         error_setg(errp, QERR_IO_ERROR);
3225     }
3226     migration_incoming_state_destroy();
3227 }
3228 
3229 bool load_snapshot(const char *name, const char *vmstate,
3230                    bool has_devices, strList *devices, Error **errp)
3231 {
3232     BlockDriverState *bs_vm_state;
3233     QEMUSnapshotInfo sn;
3234     QEMUFile *f;
3235     int ret;
3236     MigrationIncomingState *mis = migration_incoming_get_current();
3237 
3238     if (!bdrv_all_can_snapshot(has_devices, devices, errp)) {
3239         return false;
3240     }
3241     ret = bdrv_all_has_snapshot(name, has_devices, devices, errp);
3242     if (ret < 0) {
3243         return false;
3244     }
3245     if (ret == 0) {
3246         error_setg(errp, "Snapshot '%s' does not exist in one or more devices",
3247                    name);
3248         return false;
3249     }
3250 
3251     bs_vm_state = bdrv_all_find_vmstate_bs(vmstate, has_devices, devices, errp);
3252     if (!bs_vm_state) {
3253         return false;
3254     }
3255 
3256     /* Don't even try to load empty VM states */
3257     ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
3258     if (ret < 0) {
3259         return false;
3260     } else if (sn.vm_state_size == 0) {
3261         error_setg(errp, "This is a disk-only snapshot. Revert to it "
3262                    " offline using qemu-img");
3263         return false;
3264     }
3265 
3266     /*
3267      * Flush the record/replay queue. Now the VM state is going
3268      * to change. Therefore we don't need to preserve its consistency
3269      */
3270     replay_flush_events();
3271 
3272     /* Flush all IO requests so they don't interfere with the new state.  */
3273     bdrv_drain_all_begin();
3274 
3275     ret = bdrv_all_goto_snapshot(name, has_devices, devices, errp);
3276     if (ret < 0) {
3277         goto err_drain;
3278     }
3279 
3280     /* restore the VM state */
3281     f = qemu_fopen_bdrv(bs_vm_state, 0);
3282     if (!f) {
3283         error_setg(errp, "Could not open VM state file");
3284         goto err_drain;
3285     }
3286 
3287     qemu_system_reset(SHUTDOWN_CAUSE_SNAPSHOT_LOAD);
3288     mis->from_src_file = f;
3289 
3290     if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) {
3291         ret = -EINVAL;
3292         goto err_drain;
3293     }
3294     ret = qemu_loadvm_state(f);
3295     migration_incoming_state_destroy();
3296 
3297     bdrv_drain_all_end();
3298 
3299     if (ret < 0) {
3300         error_setg(errp, "Error %d while loading VM state", ret);
3301         return false;
3302     }
3303 
3304     return true;
3305 
3306 err_drain:
3307     bdrv_drain_all_end();
3308     return false;
3309 }
3310 
3311 void load_snapshot_resume(RunState state)
3312 {
3313     vm_resume(state);
3314     if (state == RUN_STATE_RUNNING && runstate_get() == RUN_STATE_SUSPENDED) {
3315         qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, &error_abort);
3316     }
3317 }
3318 
3319 bool delete_snapshot(const char *name, bool has_devices,
3320                      strList *devices, Error **errp)
3321 {
3322     if (!bdrv_all_can_snapshot(has_devices, devices, errp)) {
3323         return false;
3324     }
3325 
3326     if (bdrv_all_delete_snapshot(name, has_devices, devices, errp) < 0) {
3327         return false;
3328     }
3329 
3330     return true;
3331 }
3332 
3333 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
3334 {
3335     qemu_ram_set_idstr(mr->ram_block,
3336                        memory_region_name(mr), dev);
3337     qemu_ram_set_migratable(mr->ram_block);
3338 }
3339 
3340 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
3341 {
3342     qemu_ram_unset_idstr(mr->ram_block);
3343     qemu_ram_unset_migratable(mr->ram_block);
3344 }
3345 
3346 void vmstate_register_ram_global(MemoryRegion *mr)
3347 {
3348     vmstate_register_ram(mr, NULL);
3349 }
3350 
3351 bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
3352 {
3353     /* check needed if --only-migratable is specified */
3354     if (!only_migratable) {
3355         return true;
3356     }
3357 
3358     return !(vmsd && vmsd->unmigratable);
3359 }
3360 
3361 typedef struct SnapshotJob {
3362     Job common;
3363     char *tag;
3364     char *vmstate;
3365     strList *devices;
3366     Coroutine *co;
3367     Error **errp;
3368     bool ret;
3369 } SnapshotJob;
3370 
3371 static void qmp_snapshot_job_free(SnapshotJob *s)
3372 {
3373     g_free(s->tag);
3374     g_free(s->vmstate);
3375     qapi_free_strList(s->devices);
3376 }
3377 
3378 
3379 static void snapshot_load_job_bh(void *opaque)
3380 {
3381     Job *job = opaque;
3382     SnapshotJob *s = container_of(job, SnapshotJob, common);
3383     RunState orig_state = runstate_get();
3384 
3385     job_progress_set_remaining(&s->common, 1);
3386 
3387     vm_stop(RUN_STATE_RESTORE_VM);
3388 
3389     s->ret = load_snapshot(s->tag, s->vmstate, true, s->devices, s->errp);
3390     if (s->ret) {
3391         load_snapshot_resume(orig_state);
3392     }
3393 
3394     job_progress_update(&s->common, 1);
3395 
3396     qmp_snapshot_job_free(s);
3397     aio_co_wake(s->co);
3398 }
3399 
3400 static void snapshot_save_job_bh(void *opaque)
3401 {
3402     Job *job = opaque;
3403     SnapshotJob *s = container_of(job, SnapshotJob, common);
3404 
3405     job_progress_set_remaining(&s->common, 1);
3406     s->ret = save_snapshot(s->tag, false, s->vmstate,
3407                            true, s->devices, s->errp);
3408     job_progress_update(&s->common, 1);
3409 
3410     qmp_snapshot_job_free(s);
3411     aio_co_wake(s->co);
3412 }
3413 
3414 static void snapshot_delete_job_bh(void *opaque)
3415 {
3416     Job *job = opaque;
3417     SnapshotJob *s = container_of(job, SnapshotJob, common);
3418 
3419     job_progress_set_remaining(&s->common, 1);
3420     s->ret = delete_snapshot(s->tag, true, s->devices, s->errp);
3421     job_progress_update(&s->common, 1);
3422 
3423     qmp_snapshot_job_free(s);
3424     aio_co_wake(s->co);
3425 }
3426 
3427 static int coroutine_fn snapshot_save_job_run(Job *job, Error **errp)
3428 {
3429     SnapshotJob *s = container_of(job, SnapshotJob, common);
3430     s->errp = errp;
3431     s->co = qemu_coroutine_self();
3432     aio_bh_schedule_oneshot(qemu_get_aio_context(),
3433                             snapshot_save_job_bh, job);
3434     qemu_coroutine_yield();
3435     return s->ret ? 0 : -1;
3436 }
3437 
3438 static int coroutine_fn snapshot_load_job_run(Job *job, Error **errp)
3439 {
3440     SnapshotJob *s = container_of(job, SnapshotJob, common);
3441     s->errp = errp;
3442     s->co = qemu_coroutine_self();
3443     aio_bh_schedule_oneshot(qemu_get_aio_context(),
3444                             snapshot_load_job_bh, job);
3445     qemu_coroutine_yield();
3446     return s->ret ? 0 : -1;
3447 }
3448 
3449 static int coroutine_fn snapshot_delete_job_run(Job *job, Error **errp)
3450 {
3451     SnapshotJob *s = container_of(job, SnapshotJob, common);
3452     s->errp = errp;
3453     s->co = qemu_coroutine_self();
3454     aio_bh_schedule_oneshot(qemu_get_aio_context(),
3455                             snapshot_delete_job_bh, job);
3456     qemu_coroutine_yield();
3457     return s->ret ? 0 : -1;
3458 }
3459 
3460 
3461 static const JobDriver snapshot_load_job_driver = {
3462     .instance_size = sizeof(SnapshotJob),
3463     .job_type      = JOB_TYPE_SNAPSHOT_LOAD,
3464     .run           = snapshot_load_job_run,
3465 };
3466 
3467 static const JobDriver snapshot_save_job_driver = {
3468     .instance_size = sizeof(SnapshotJob),
3469     .job_type      = JOB_TYPE_SNAPSHOT_SAVE,
3470     .run           = snapshot_save_job_run,
3471 };
3472 
3473 static const JobDriver snapshot_delete_job_driver = {
3474     .instance_size = sizeof(SnapshotJob),
3475     .job_type      = JOB_TYPE_SNAPSHOT_DELETE,
3476     .run           = snapshot_delete_job_run,
3477 };
3478 
3479 
3480 void qmp_snapshot_save(const char *job_id,
3481                        const char *tag,
3482                        const char *vmstate,
3483                        strList *devices,
3484                        Error **errp)
3485 {
3486     SnapshotJob *s;
3487 
3488     s = job_create(job_id, &snapshot_save_job_driver, NULL,
3489                    qemu_get_aio_context(), JOB_MANUAL_DISMISS,
3490                    NULL, NULL, errp);
3491     if (!s) {
3492         return;
3493     }
3494 
3495     s->tag = g_strdup(tag);
3496     s->vmstate = g_strdup(vmstate);
3497     s->devices = QAPI_CLONE(strList, devices);
3498 
3499     job_start(&s->common);
3500 }
3501 
3502 void qmp_snapshot_load(const char *job_id,
3503                        const char *tag,
3504                        const char *vmstate,
3505                        strList *devices,
3506                        Error **errp)
3507 {
3508     SnapshotJob *s;
3509 
3510     s = job_create(job_id, &snapshot_load_job_driver, NULL,
3511                    qemu_get_aio_context(), JOB_MANUAL_DISMISS,
3512                    NULL, NULL, errp);
3513     if (!s) {
3514         return;
3515     }
3516 
3517     s->tag = g_strdup(tag);
3518     s->vmstate = g_strdup(vmstate);
3519     s->devices = QAPI_CLONE(strList, devices);
3520 
3521     job_start(&s->common);
3522 }
3523 
3524 void qmp_snapshot_delete(const char *job_id,
3525                          const char *tag,
3526                          strList *devices,
3527                          Error **errp)
3528 {
3529     SnapshotJob *s;
3530 
3531     s = job_create(job_id, &snapshot_delete_job_driver, NULL,
3532                    qemu_get_aio_context(), JOB_MANUAL_DISMISS,
3533                    NULL, NULL, errp);
3534     if (!s) {
3535         return;
3536     }
3537 
3538     s->tag = g_strdup(tag);
3539     s->devices = QAPI_CLONE(strList, devices);
3540 
3541     job_start(&s->common);
3542 }
3543