4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2009-2015 Red Hat Inc
8 * Juan Quintela <quintela@redhat.com>
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:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
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
29 #include "qemu/osdep.h"
30 #include "hw/boards.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"
41 #include "qemu-file.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"
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"
73 const unsigned int postcopy_ram_discard_version
;
75 /* Subcommands for QEMU_VM_COMMAND */
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 */
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 */
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 */
97 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
98 static struct mig_cmd_args
{
99 ssize_t len
; /* -1 = variable */
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" },
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
122 * - postcopy RAM and postcopy dirty bitmaps
123 * format is the same as for postcopy RAM only
125 * - postcopy dirty bitmaps only
126 * Nothing. Command length field is 0.
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.
133 /***********************************************************/
134 /* savevm/loadvm support */
136 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
139 return qemu_file_new_output(QIO_CHANNEL(qio_channel_block_new(bs
)));
141 return qemu_file_new_input(QIO_CHANNEL(qio_channel_block_new(bs
)));
146 /* QEMUFile timer support.
147 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
150 void timer_put(QEMUFile
*f
, QEMUTimer
*ts
)
152 uint64_t expire_time
;
154 expire_time
= timer_expire_time_ns(ts
);
155 qemu_put_be64(f
, expire_time
);
158 void timer_get(QEMUFile
*f
, QEMUTimer
*ts
)
160 uint64_t expire_time
;
162 expire_time
= qemu_get_be64(f
);
163 if (expire_time
!= -1) {
164 timer_mod_ns(ts
, expire_time
);
171 /* VMState timer support.
172 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
175 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
,
176 const VMStateField
*field
)
183 static int put_timer(QEMUFile
*f
, void *pv
, size_t size
,
184 const VMStateField
*field
, JSONWriter
*vmdesc
)
192 const VMStateInfo vmstate_info_timer
= {
199 typedef struct CompatEntry
{
204 typedef struct SaveStateEntry
{
205 QTAILQ_ENTRY(SaveStateEntry
) entry
;
207 uint32_t instance_id
;
210 /* version id read from the stream */
213 /* section id read from the stream */
215 const SaveVMHandlers
*ops
;
216 const VMStateDescription
*vmsd
;
222 typedef struct SaveState
{
223 QTAILQ_HEAD(, SaveStateEntry
) handlers
;
224 SaveStateEntry
*handler_pri_head
[MIG_PRI_MAX
+ 1];
225 int global_section_id
;
228 uint32_t target_page_bits
;
230 MigrationCapability
*capabilities
;
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,
240 static bool should_validate_capability(int capability
)
242 assert(capability
>= 0 && capability
< MIGRATION_CAPABILITY__MAX
);
243 /* Validate only new capabilities to keep compatibility. */
244 switch (capability
) {
245 case MIGRATION_CAPABILITY_X_IGNORE_SHARED
:
252 static uint32_t get_validatable_capabilities_count(void)
254 MigrationState
*s
= migrate_get_current();
257 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
258 if (should_validate_capability(i
) && s
->capabilities
[i
]) {
265 static int configuration_pre_save(void *opaque
)
267 SaveState
*state
= opaque
;
268 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
269 MigrationState
*s
= migrate_get_current();
272 state
->len
= strlen(current_name
);
273 state
->name
= current_name
;
274 state
->target_page_bits
= qemu_target_page_bits();
276 state
->caps_count
= get_validatable_capabilities_count();
277 state
->capabilities
= g_renew(MigrationCapability
, state
->capabilities
,
279 for (i
= j
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
280 if (should_validate_capability(i
) && s
->capabilities
[i
]) {
281 state
->capabilities
[j
++] = i
;
284 state
->uuid
= qemu_uuid
;
289 static int configuration_post_save(void *opaque
)
291 SaveState
*state
= opaque
;
293 g_free(state
->capabilities
);
294 state
->capabilities
= NULL
;
295 state
->caps_count
= 0;
299 static int configuration_pre_load(void *opaque
)
301 SaveState
*state
= opaque
;
303 /* If there is no target-page-bits subsection it means the source
304 * predates the variable-target-page-bits support and is using the
305 * minimum possible value for this CPU.
307 state
->target_page_bits
= qemu_target_page_bits_min();
311 static bool configuration_validate_capabilities(SaveState
*state
)
314 MigrationState
*s
= migrate_get_current();
315 unsigned long *source_caps_bm
;
318 source_caps_bm
= bitmap_new(MIGRATION_CAPABILITY__MAX
);
319 for (i
= 0; i
< state
->caps_count
; i
++) {
320 MigrationCapability capability
= state
->capabilities
[i
];
321 set_bit(capability
, source_caps_bm
);
324 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
325 bool source_state
, target_state
;
326 if (!should_validate_capability(i
)) {
329 source_state
= test_bit(i
, source_caps_bm
);
330 target_state
= s
->capabilities
[i
];
331 if (source_state
!= target_state
) {
332 error_report("Capability %s is %s, but received capability is %s",
333 MigrationCapability_str(i
),
334 target_state
? "on" : "off",
335 source_state
? "on" : "off");
337 /* Don't break here to report all failed capabilities */
341 g_free(source_caps_bm
);
345 static int configuration_post_load(void *opaque
, int version_id
)
347 SaveState
*state
= opaque
;
348 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
351 if (strncmp(state
->name
, current_name
, state
->len
) != 0) {
352 error_report("Machine type received is '%.*s' and local is '%s'",
353 (int) state
->len
, state
->name
, current_name
);
358 if (state
->target_page_bits
!= qemu_target_page_bits()) {
359 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
360 state
->target_page_bits
, qemu_target_page_bits());
365 if (!configuration_validate_capabilities(state
)) {
371 g_free((void *)state
->name
);
374 g_free(state
->capabilities
);
375 state
->capabilities
= NULL
;
376 state
->caps_count
= 0;
381 static int get_capability(QEMUFile
*f
, void *pv
, size_t size
,
382 const VMStateField
*field
)
384 MigrationCapability
*capability
= pv
;
385 char capability_str
[UINT8_MAX
+ 1];
389 len
= qemu_get_byte(f
);
390 qemu_get_buffer(f
, (uint8_t *)capability_str
, len
);
391 capability_str
[len
] = '\0';
392 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
393 if (!strcmp(MigrationCapability_str(i
), capability_str
)) {
398 error_report("Received unknown capability %s", capability_str
);
402 static int put_capability(QEMUFile
*f
, void *pv
, size_t size
,
403 const VMStateField
*field
, JSONWriter
*vmdesc
)
405 MigrationCapability
*capability
= pv
;
406 const char *capability_str
= MigrationCapability_str(*capability
);
407 size_t len
= strlen(capability_str
);
408 assert(len
<= UINT8_MAX
);
410 qemu_put_byte(f
, len
);
411 qemu_put_buffer(f
, (uint8_t *)capability_str
, len
);
415 static const VMStateInfo vmstate_info_capability
= {
416 .name
= "capability",
417 .get
= get_capability
,
418 .put
= put_capability
,
421 /* The target-page-bits subsection is present only if the
422 * target page size is not the same as the default (ie the
423 * minimum page size for a variable-page-size guest CPU).
424 * If it is present then it contains the actual target page
425 * bits for the machine, and migration will fail if the
426 * two ends don't agree about it.
428 static bool vmstate_target_page_bits_needed(void *opaque
)
430 return qemu_target_page_bits()
431 > qemu_target_page_bits_min();
434 static const VMStateDescription vmstate_target_page_bits
= {
435 .name
= "configuration/target-page-bits",
437 .minimum_version_id
= 1,
438 .needed
= vmstate_target_page_bits_needed
,
439 .fields
= (VMStateField
[]) {
440 VMSTATE_UINT32(target_page_bits
, SaveState
),
441 VMSTATE_END_OF_LIST()
445 static bool vmstate_capabilites_needed(void *opaque
)
447 return get_validatable_capabilities_count() > 0;
450 static const VMStateDescription vmstate_capabilites
= {
451 .name
= "configuration/capabilities",
453 .minimum_version_id
= 1,
454 .needed
= vmstate_capabilites_needed
,
455 .fields
= (VMStateField
[]) {
456 VMSTATE_UINT32_V(caps_count
, SaveState
, 1),
457 VMSTATE_VARRAY_UINT32_ALLOC(capabilities
, SaveState
, caps_count
, 1,
458 vmstate_info_capability
,
459 MigrationCapability
),
460 VMSTATE_END_OF_LIST()
464 static bool vmstate_uuid_needed(void *opaque
)
466 return qemu_uuid_set
&& migrate_validate_uuid();
469 static int vmstate_uuid_post_load(void *opaque
, int version_id
)
471 SaveState
*state
= opaque
;
472 char uuid_src
[UUID_FMT_LEN
+ 1];
473 char uuid_dst
[UUID_FMT_LEN
+ 1];
475 if (!qemu_uuid_set
) {
477 * It's warning because user might not know UUID in some cases,
478 * e.g. load an old snapshot
480 qemu_uuid_unparse(&state
->uuid
, uuid_src
);
481 warn_report("UUID is received %s, but local uuid isn't set",
485 if (!qemu_uuid_is_equal(&state
->uuid
, &qemu_uuid
)) {
486 qemu_uuid_unparse(&state
->uuid
, uuid_src
);
487 qemu_uuid_unparse(&qemu_uuid
, uuid_dst
);
488 error_report("UUID received is %s and local is %s", uuid_src
, uuid_dst
);
494 static const VMStateDescription vmstate_uuid
= {
495 .name
= "configuration/uuid",
497 .minimum_version_id
= 1,
498 .needed
= vmstate_uuid_needed
,
499 .post_load
= vmstate_uuid_post_load
,
500 .fields
= (VMStateField
[]) {
501 VMSTATE_UINT8_ARRAY_V(uuid
.data
, SaveState
, sizeof(QemuUUID
), 1),
502 VMSTATE_END_OF_LIST()
506 static const VMStateDescription vmstate_configuration
= {
507 .name
= "configuration",
509 .pre_load
= configuration_pre_load
,
510 .post_load
= configuration_post_load
,
511 .pre_save
= configuration_pre_save
,
512 .post_save
= configuration_post_save
,
513 .fields
= (VMStateField
[]) {
514 VMSTATE_UINT32(len
, SaveState
),
515 VMSTATE_VBUFFER_ALLOC_UINT32(name
, SaveState
, 0, NULL
, len
),
516 VMSTATE_END_OF_LIST()
518 .subsections
= (const VMStateDescription
*[]) {
519 &vmstate_target_page_bits
,
520 &vmstate_capabilites
,
526 static void dump_vmstate_vmsd(FILE *out_file
,
527 const VMStateDescription
*vmsd
, int indent
,
530 static void dump_vmstate_vmsf(FILE *out_file
, const VMStateField
*field
,
533 fprintf(out_file
, "%*s{\n", indent
, "");
535 fprintf(out_file
, "%*s\"field\": \"%s\",\n", indent
, "", field
->name
);
536 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
538 fprintf(out_file
, "%*s\"field_exists\": %s,\n", indent
, "",
539 field
->field_exists
? "true" : "false");
540 if (field
->flags
& VMS_ARRAY
) {
541 fprintf(out_file
, "%*s\"num\": %d,\n", indent
, "", field
->num
);
543 fprintf(out_file
, "%*s\"size\": %zu", indent
, "", field
->size
);
544 if (field
->vmsd
!= NULL
) {
545 fprintf(out_file
, ",\n");
546 dump_vmstate_vmsd(out_file
, field
->vmsd
, indent
, false);
548 fprintf(out_file
, "\n%*s}", indent
- 2, "");
551 static void dump_vmstate_vmss(FILE *out_file
,
552 const VMStateDescription
**subsection
,
555 if (*subsection
!= NULL
) {
556 dump_vmstate_vmsd(out_file
, *subsection
, indent
, true);
560 static void dump_vmstate_vmsd(FILE *out_file
,
561 const VMStateDescription
*vmsd
, int indent
,
565 fprintf(out_file
, "%*s{\n", indent
, "");
567 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", "Description");
570 fprintf(out_file
, "%*s\"name\": \"%s\",\n", indent
, "", vmsd
->name
);
571 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
573 fprintf(out_file
, "%*s\"minimum_version_id\": %d", indent
, "",
574 vmsd
->minimum_version_id
);
575 if (vmsd
->fields
!= NULL
) {
576 const VMStateField
*field
= vmsd
->fields
;
579 fprintf(out_file
, ",\n%*s\"Fields\": [\n", indent
, "");
581 while (field
->name
!= NULL
) {
582 if (field
->flags
& VMS_MUST_EXIST
) {
583 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
588 fprintf(out_file
, ",\n");
590 dump_vmstate_vmsf(out_file
, field
, indent
+ 2);
594 assert(field
->flags
== VMS_END
);
595 fprintf(out_file
, "\n%*s]", indent
, "");
597 if (vmsd
->subsections
!= NULL
) {
598 const VMStateDescription
**subsection
= vmsd
->subsections
;
601 fprintf(out_file
, ",\n%*s\"Subsections\": [\n", indent
, "");
603 while (*subsection
!= NULL
) {
605 fprintf(out_file
, ",\n");
607 dump_vmstate_vmss(out_file
, subsection
, indent
+ 2);
611 fprintf(out_file
, "\n%*s]", indent
, "");
613 fprintf(out_file
, "\n%*s}", indent
- 2, "");
616 static void dump_machine_type(FILE *out_file
)
620 mc
= MACHINE_GET_CLASS(current_machine
);
622 fprintf(out_file
, " \"vmschkmachine\": {\n");
623 fprintf(out_file
, " \"Name\": \"%s\"\n", mc
->name
);
624 fprintf(out_file
, " },\n");
627 void dump_vmstate_json_to_file(FILE *out_file
)
632 fprintf(out_file
, "{\n");
633 dump_machine_type(out_file
);
636 list
= object_class_get_list(TYPE_DEVICE
, true);
637 for (elt
= list
; elt
; elt
= elt
->next
) {
638 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
648 fprintf(out_file
, ",\n");
650 name
= object_class_get_name(OBJECT_CLASS(dc
));
651 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", name
);
653 fprintf(out_file
, "%*s\"Name\": \"%s\",\n", indent
, "", name
);
654 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
655 dc
->vmsd
->version_id
);
656 fprintf(out_file
, "%*s\"minimum_version_id\": %d,\n", indent
, "",
657 dc
->vmsd
->minimum_version_id
);
659 dump_vmstate_vmsd(out_file
, dc
->vmsd
, indent
, false);
661 fprintf(out_file
, "\n%*s}", indent
- 2, "");
664 fprintf(out_file
, "\n}\n");
669 static uint32_t calculate_new_instance_id(const char *idstr
)
672 uint32_t instance_id
= 0;
674 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
675 if (strcmp(idstr
, se
->idstr
) == 0
676 && instance_id
<= se
->instance_id
) {
677 instance_id
= se
->instance_id
+ 1;
680 /* Make sure we never loop over without being noticed */
681 assert(instance_id
!= VMSTATE_INSTANCE_ID_ANY
);
685 static int calculate_compat_instance_id(const char *idstr
)
690 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
695 if (strcmp(idstr
, se
->compat
->idstr
) == 0
696 && instance_id
<= se
->compat
->instance_id
) {
697 instance_id
= se
->compat
->instance_id
+ 1;
703 static inline MigrationPriority
save_state_priority(SaveStateEntry
*se
)
706 return se
->vmsd
->priority
;
708 return MIG_PRI_DEFAULT
;
711 static void savevm_state_handler_insert(SaveStateEntry
*nse
)
713 MigrationPriority priority
= save_state_priority(nse
);
717 assert(priority
<= MIG_PRI_MAX
);
719 for (i
= priority
- 1; i
>= 0; i
--) {
720 se
= savevm_state
.handler_pri_head
[i
];
722 assert(save_state_priority(se
) < priority
);
728 QTAILQ_INSERT_BEFORE(se
, nse
, entry
);
730 QTAILQ_INSERT_TAIL(&savevm_state
.handlers
, nse
, entry
);
733 if (savevm_state
.handler_pri_head
[priority
] == NULL
) {
734 savevm_state
.handler_pri_head
[priority
] = nse
;
738 static void savevm_state_handler_remove(SaveStateEntry
*se
)
740 SaveStateEntry
*next
;
741 MigrationPriority priority
= save_state_priority(se
);
743 if (se
== savevm_state
.handler_pri_head
[priority
]) {
744 next
= QTAILQ_NEXT(se
, entry
);
745 if (next
!= NULL
&& save_state_priority(next
) == priority
) {
746 savevm_state
.handler_pri_head
[priority
] = next
;
748 savevm_state
.handler_pri_head
[priority
] = NULL
;
751 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
754 /* TODO: Individual devices generally have very little idea about the rest
755 of the system, so instance_id should be removed/replaced.
756 Meanwhile pass -1 as instance_id if you do not already have a clearly
757 distinguishing id for all instances of your device class. */
758 int register_savevm_live(const char *idstr
,
759 uint32_t instance_id
,
761 const SaveVMHandlers
*ops
,
766 se
= g_new0(SaveStateEntry
, 1);
767 se
->version_id
= version_id
;
768 se
->section_id
= savevm_state
.global_section_id
++;
772 /* if this is a live_savem then set is_ram */
773 if (ops
->save_setup
!= NULL
) {
777 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
779 if (instance_id
== VMSTATE_INSTANCE_ID_ANY
) {
780 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
782 se
->instance_id
= instance_id
;
784 assert(!se
->compat
|| se
->instance_id
== 0);
785 savevm_state_handler_insert(se
);
789 void unregister_savevm(VMStateIf
*obj
, const char *idstr
, void *opaque
)
791 SaveStateEntry
*se
, *new_se
;
795 char *oid
= vmstate_if_get_id(obj
);
797 pstrcpy(id
, sizeof(id
), oid
);
798 pstrcat(id
, sizeof(id
), "/");
802 pstrcat(id
, sizeof(id
), idstr
);
804 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
805 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
806 savevm_state_handler_remove(se
);
814 * Perform some basic checks on vmsd's at registration
817 static void vmstate_check(const VMStateDescription
*vmsd
)
819 const VMStateField
*field
= vmsd
->fields
;
820 const VMStateDescription
**subsection
= vmsd
->subsections
;
823 while (field
->name
) {
824 if (field
->flags
& (VMS_STRUCT
| VMS_VSTRUCT
)) {
825 /* Recurse to sub structures */
826 vmstate_check(field
->vmsd
);
831 /* Check for the end of field list canary */
832 if (field
->flags
!= VMS_END
) {
833 error_report("VMSTATE not ending with VMS_END: %s", vmsd
->name
);
834 g_assert_not_reached();
838 while (subsection
&& *subsection
) {
840 * The name of a subsection should start with the name of the
843 assert(!strncmp(vmsd
->name
, (*subsection
)->name
, strlen(vmsd
->name
)));
844 vmstate_check(*subsection
);
849 int vmstate_register_with_alias_id(VMStateIf
*obj
, uint32_t instance_id
,
850 const VMStateDescription
*vmsd
,
851 void *opaque
, int alias_id
,
852 int required_for_version
,
857 /* If this triggers, alias support can be dropped for the vmsd. */
858 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
860 se
= g_new0(SaveStateEntry
, 1);
861 se
->version_id
= vmsd
->version_id
;
862 se
->section_id
= savevm_state
.global_section_id
++;
865 se
->alias_id
= alias_id
;
868 char *id
= vmstate_if_get_id(obj
);
870 if (snprintf(se
->idstr
, sizeof(se
->idstr
), "%s/", id
) >=
872 error_setg(errp
, "Path too long for VMState (%s)", id
);
880 se
->compat
= g_new0(CompatEntry
, 1);
881 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
882 se
->compat
->instance_id
= instance_id
== VMSTATE_INSTANCE_ID_ANY
?
883 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
884 instance_id
= VMSTATE_INSTANCE_ID_ANY
;
887 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
889 if (instance_id
== VMSTATE_INSTANCE_ID_ANY
) {
890 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
892 se
->instance_id
= instance_id
;
895 /* Perform a recursive sanity check during the test runs */
896 if (qtest_enabled()) {
899 assert(!se
->compat
|| se
->instance_id
== 0);
900 savevm_state_handler_insert(se
);
904 void vmstate_unregister(VMStateIf
*obj
, const VMStateDescription
*vmsd
,
907 SaveStateEntry
*se
, *new_se
;
909 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
910 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
911 savevm_state_handler_remove(se
);
918 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
)
920 trace_vmstate_load(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
921 if (!se
->vmsd
) { /* Old style */
922 return se
->ops
->load_state(f
, se
->opaque
, se
->load_version_id
);
924 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, se
->load_version_id
);
927 static void vmstate_save_old_style(QEMUFile
*f
, SaveStateEntry
*se
,
930 uint64_t old_offset
= qemu_file_transferred_noflush(f
);
931 se
->ops
->save_state(f
, se
->opaque
);
932 uint64_t size
= qemu_file_transferred_noflush(f
) - old_offset
;
935 json_writer_int64(vmdesc
, "size", size
);
936 json_writer_start_array(vmdesc
, "fields");
937 json_writer_start_object(vmdesc
, NULL
);
938 json_writer_str(vmdesc
, "name", "data");
939 json_writer_int64(vmdesc
, "size", size
);
940 json_writer_str(vmdesc
, "type", "buffer");
941 json_writer_end_object(vmdesc
);
942 json_writer_end_array(vmdesc
);
947 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
949 static void save_section_header(QEMUFile
*f
, SaveStateEntry
*se
,
950 uint8_t section_type
)
952 qemu_put_byte(f
, section_type
);
953 qemu_put_be32(f
, se
->section_id
);
955 if (section_type
== QEMU_VM_SECTION_FULL
||
956 section_type
== QEMU_VM_SECTION_START
) {
958 size_t len
= strlen(se
->idstr
);
959 qemu_put_byte(f
, len
);
960 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
962 qemu_put_be32(f
, se
->instance_id
);
963 qemu_put_be32(f
, se
->version_id
);
968 * Write a footer onto device sections that catches cases misformatted device
971 static void save_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
973 if (migrate_get_current()->send_section_footer
) {
974 qemu_put_byte(f
, QEMU_VM_SECTION_FOOTER
);
975 qemu_put_be32(f
, se
->section_id
);
979 static int vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
, JSONWriter
*vmdesc
)
982 Error
*local_err
= NULL
;
983 MigrationState
*s
= migrate_get_current();
985 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
988 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
989 trace_savevm_section_skip(se
->idstr
, se
->section_id
);
993 trace_savevm_section_start(se
->idstr
, se
->section_id
);
994 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
996 json_writer_start_object(vmdesc
, NULL
);
997 json_writer_str(vmdesc
, "name", se
->idstr
);
998 json_writer_int64(vmdesc
, "instance_id", se
->instance_id
);
1001 trace_vmstate_save(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
1003 vmstate_save_old_style(f
, se
, vmdesc
);
1005 ret
= vmstate_save_state_with_err(f
, se
->vmsd
, se
->opaque
, vmdesc
, &local_err
);
1007 migrate_set_error(s
, local_err
);
1008 error_report_err(local_err
);
1013 trace_savevm_section_end(se
->idstr
, se
->section_id
, 0);
1014 save_section_footer(f
, se
);
1016 json_writer_end_object(vmdesc
);
1021 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
1022 * command and associated data.
1024 * @f: File to send command on
1025 * @command: Command type to send
1026 * @len: Length of associated data
1027 * @data: Data associated with command.
1029 static void qemu_savevm_command_send(QEMUFile
*f
,
1030 enum qemu_vm_cmd command
,
1034 trace_savevm_command_send(command
, len
);
1035 qemu_put_byte(f
, QEMU_VM_COMMAND
);
1036 qemu_put_be16(f
, (uint16_t)command
);
1037 qemu_put_be16(f
, len
);
1038 qemu_put_buffer(f
, data
, len
);
1042 void qemu_savevm_send_colo_enable(QEMUFile
*f
)
1044 trace_savevm_send_colo_enable();
1045 qemu_savevm_command_send(f
, MIG_CMD_ENABLE_COLO
, 0, NULL
);
1048 void qemu_savevm_send_ping(QEMUFile
*f
, uint32_t value
)
1052 trace_savevm_send_ping(value
);
1053 buf
= cpu_to_be32(value
);
1054 qemu_savevm_command_send(f
, MIG_CMD_PING
, sizeof(value
), (uint8_t *)&buf
);
1057 void qemu_savevm_send_open_return_path(QEMUFile
*f
)
1059 trace_savevm_send_open_return_path();
1060 qemu_savevm_command_send(f
, MIG_CMD_OPEN_RETURN_PATH
, 0, NULL
);
1063 /* We have a buffer of data to send; we don't want that all to be loaded
1064 * by the command itself, so the command contains just the length of the
1065 * extra buffer that we then send straight after it.
1066 * TODO: Must be a better way to organise that
1072 int qemu_savevm_send_packaged(QEMUFile
*f
, const uint8_t *buf
, size_t len
)
1075 MigrationState
*ms
= migrate_get_current();
1076 Error
*local_err
= NULL
;
1078 if (len
> MAX_VM_CMD_PACKAGED_SIZE
) {
1079 error_setg(&local_err
, "%s: Unreasonably large packaged state: %zu",
1081 migrate_set_error(ms
, local_err
);
1082 error_report_err(local_err
);
1086 tmp
= cpu_to_be32(len
);
1088 trace_qemu_savevm_send_packaged();
1089 qemu_savevm_command_send(f
, MIG_CMD_PACKAGED
, 4, (uint8_t *)&tmp
);
1091 qemu_put_buffer(f
, buf
, len
);
1096 /* Send prior to any postcopy transfer */
1097 void qemu_savevm_send_postcopy_advise(QEMUFile
*f
)
1099 if (migrate_postcopy_ram()) {
1101 tmp
[0] = cpu_to_be64(ram_pagesize_summary());
1102 tmp
[1] = cpu_to_be64(qemu_target_page_size());
1104 trace_qemu_savevm_send_postcopy_advise();
1105 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
,
1106 16, (uint8_t *)tmp
);
1108 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
, 0, NULL
);
1112 /* Sent prior to starting the destination running in postcopy, discard pages
1113 * that have already been sent but redirtied on the source.
1114 * CMD_POSTCOPY_RAM_DISCARD consist of:
1116 * byte Length of name field (not including 0)
1117 * n x byte RAM block name
1118 * byte 0 terminator (just for safety)
1119 * n x Byte ranges within the named RAMBlock
1120 * be64 Start of the range
1123 * name: RAMBlock name that these entries are part of
1124 * len: Number of page entries
1125 * start_list: 'len' addresses
1126 * length_list: 'len' addresses
1129 void qemu_savevm_send_postcopy_ram_discard(QEMUFile
*f
, const char *name
,
1131 uint64_t *start_list
,
1132 uint64_t *length_list
)
1137 size_t name_len
= strlen(name
);
1139 trace_qemu_savevm_send_postcopy_ram_discard(name
, len
);
1140 assert(name_len
< 256);
1141 buf
= g_malloc0(1 + 1 + name_len
+ 1 + (8 + 8) * len
);
1142 buf
[0] = postcopy_ram_discard_version
;
1144 memcpy(buf
+ 2, name
, name_len
);
1145 tmplen
= 2 + name_len
;
1146 buf
[tmplen
++] = '\0';
1148 for (t
= 0; t
< len
; t
++) {
1149 stq_be_p(buf
+ tmplen
, start_list
[t
]);
1151 stq_be_p(buf
+ tmplen
, length_list
[t
]);
1154 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RAM_DISCARD
, tmplen
, buf
);
1158 /* Get the destination into a state where it can receive postcopy data. */
1159 void qemu_savevm_send_postcopy_listen(QEMUFile
*f
)
1161 trace_savevm_send_postcopy_listen();
1162 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_LISTEN
, 0, NULL
);
1165 /* Kick the destination into running */
1166 void qemu_savevm_send_postcopy_run(QEMUFile
*f
)
1168 trace_savevm_send_postcopy_run();
1169 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RUN
, 0, NULL
);
1172 void qemu_savevm_send_postcopy_resume(QEMUFile
*f
)
1174 trace_savevm_send_postcopy_resume();
1175 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RESUME
, 0, NULL
);
1178 void qemu_savevm_send_recv_bitmap(QEMUFile
*f
, char *block_name
)
1183 trace_savevm_send_recv_bitmap(block_name
);
1185 buf
[0] = len
= strlen(block_name
);
1186 memcpy(buf
+ 1, block_name
, len
);
1188 qemu_savevm_command_send(f
, MIG_CMD_RECV_BITMAP
, len
+ 1, (uint8_t *)buf
);
1191 bool qemu_savevm_state_blocked(Error
**errp
)
1195 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1196 if (se
->vmsd
&& se
->vmsd
->unmigratable
) {
1197 error_setg(errp
, "State blocked by non-migratable device '%s'",
1205 void qemu_savevm_non_migratable_list(strList
**reasons
)
1209 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1210 if (se
->vmsd
&& se
->vmsd
->unmigratable
) {
1211 QAPI_LIST_PREPEND(*reasons
,
1212 g_strdup_printf("non-migratable device: %s",
1218 void qemu_savevm_state_header(QEMUFile
*f
)
1220 MigrationState
*s
= migrate_get_current();
1222 s
->vmdesc
= json_writer_new(false);
1224 trace_savevm_state_header();
1225 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1226 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1228 if (s
->send_configuration
) {
1229 qemu_put_byte(f
, QEMU_VM_CONFIGURATION
);
1232 * This starts the main json object and is paired with the
1233 * json_writer_end_object in
1234 * qemu_savevm_state_complete_precopy_non_iterable
1236 json_writer_start_object(s
->vmdesc
, NULL
);
1238 json_writer_start_object(s
->vmdesc
, "configuration");
1239 vmstate_save_state(f
, &vmstate_configuration
, &savevm_state
, s
->vmdesc
);
1240 json_writer_end_object(s
->vmdesc
);
1244 bool qemu_savevm_state_guest_unplug_pending(void)
1248 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1249 if (se
->vmsd
&& se
->vmsd
->dev_unplug_pending
&&
1250 se
->vmsd
->dev_unplug_pending(se
->opaque
)) {
1258 int qemu_savevm_state_prepare(Error
**errp
)
1263 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1264 if (!se
->ops
|| !se
->ops
->save_prepare
) {
1267 if (se
->ops
->is_active
) {
1268 if (!se
->ops
->is_active(se
->opaque
)) {
1273 ret
= se
->ops
->save_prepare(se
->opaque
, errp
);
1282 void qemu_savevm_state_setup(QEMUFile
*f
)
1284 MigrationState
*ms
= migrate_get_current();
1286 Error
*local_err
= NULL
;
1289 json_writer_int64(ms
->vmdesc
, "page_size", qemu_target_page_size());
1290 json_writer_start_array(ms
->vmdesc
, "devices");
1292 trace_savevm_state_setup();
1293 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1294 if (se
->vmsd
&& se
->vmsd
->early_setup
) {
1295 ret
= vmstate_save(f
, se
, ms
->vmdesc
);
1297 qemu_file_set_error(f
, ret
);
1303 if (!se
->ops
|| !se
->ops
->save_setup
) {
1306 if (se
->ops
->is_active
) {
1307 if (!se
->ops
->is_active(se
->opaque
)) {
1311 save_section_header(f
, se
, QEMU_VM_SECTION_START
);
1313 ret
= se
->ops
->save_setup(f
, se
->opaque
);
1314 save_section_footer(f
, se
);
1316 qemu_file_set_error(f
, ret
);
1321 if (precopy_notify(PRECOPY_NOTIFY_SETUP
, &local_err
)) {
1322 error_report_err(local_err
);
1326 int qemu_savevm_state_resume_prepare(MigrationState
*s
)
1331 trace_savevm_state_resume_prepare();
1333 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1334 if (!se
->ops
|| !se
->ops
->resume_prepare
) {
1337 if (se
->ops
->is_active
) {
1338 if (!se
->ops
->is_active(se
->opaque
)) {
1342 ret
= se
->ops
->resume_prepare(s
, se
->opaque
);
1352 * this function has three return values:
1353 * negative: there was one error, and we have -errno.
1354 * 0 : We haven't finished, caller have to go again
1355 * 1 : We have finished, we can go to complete phase
1357 int qemu_savevm_state_iterate(QEMUFile
*f
, bool postcopy
)
1362 trace_savevm_state_iterate();
1363 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1364 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
1367 if (se
->ops
->is_active
&&
1368 !se
->ops
->is_active(se
->opaque
)) {
1371 if (se
->ops
->is_active_iterate
&&
1372 !se
->ops
->is_active_iterate(se
->opaque
)) {
1376 * In the postcopy phase, any device that doesn't know how to
1377 * do postcopy should have saved it's state in the _complete
1378 * call that's already run, it might get confused if we call
1379 * iterate afterwards.
1382 !(se
->ops
->has_postcopy
&& se
->ops
->has_postcopy(se
->opaque
))) {
1385 if (migration_rate_exceeded(f
)) {
1388 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1390 save_section_header(f
, se
, QEMU_VM_SECTION_PART
);
1392 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
1393 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1394 save_section_footer(f
, se
);
1397 error_report("failed to save SaveStateEntry with id(name): "
1399 se
->section_id
, se
->idstr
, ret
);
1400 qemu_file_set_error(f
, ret
);
1403 /* Do not proceed to the next vmstate before this one reported
1404 completion of the current stage. This serializes the migration
1405 and reduces the probability that a faster changing state is
1406 synchronized over and over again. */
1413 static bool should_send_vmdesc(void)
1415 MachineState
*machine
= MACHINE(qdev_get_machine());
1416 bool in_postcopy
= migration_in_postcopy();
1417 return !machine
->suppress_vmdesc
&& !in_postcopy
;
1421 * Calls the save_live_complete_postcopy methods
1422 * causing the last few pages to be sent immediately and doing any associated
1424 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1425 * all the other devices, but that happens at the point we switch to postcopy.
1427 void qemu_savevm_state_complete_postcopy(QEMUFile
*f
)
1432 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1433 if (!se
->ops
|| !se
->ops
->save_live_complete_postcopy
) {
1436 if (se
->ops
->is_active
) {
1437 if (!se
->ops
->is_active(se
->opaque
)) {
1441 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1443 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1444 qemu_put_be32(f
, se
->section_id
);
1446 ret
= se
->ops
->save_live_complete_postcopy(f
, se
->opaque
);
1447 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1448 save_section_footer(f
, se
);
1450 qemu_file_set_error(f
, ret
);
1455 qemu_put_byte(f
, QEMU_VM_EOF
);
1460 int qemu_savevm_state_complete_precopy_iterable(QEMUFile
*f
, bool in_postcopy
)
1465 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1467 (in_postcopy
&& se
->ops
->has_postcopy
&&
1468 se
->ops
->has_postcopy(se
->opaque
)) ||
1469 !se
->ops
->save_live_complete_precopy
) {
1473 if (se
->ops
->is_active
) {
1474 if (!se
->ops
->is_active(se
->opaque
)) {
1478 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1480 save_section_header(f
, se
, QEMU_VM_SECTION_END
);
1482 ret
= se
->ops
->save_live_complete_precopy(f
, se
->opaque
);
1483 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1484 save_section_footer(f
, se
);
1486 qemu_file_set_error(f
, ret
);
1494 int qemu_savevm_state_complete_precopy_non_iterable(QEMUFile
*f
,
1496 bool inactivate_disks
)
1498 MigrationState
*ms
= migrate_get_current();
1499 JSONWriter
*vmdesc
= ms
->vmdesc
;
1504 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1505 if (se
->vmsd
&& se
->vmsd
->early_setup
) {
1506 /* Already saved during qemu_savevm_state_setup(). */
1510 ret
= vmstate_save(f
, se
, vmdesc
);
1512 qemu_file_set_error(f
, ret
);
1517 if (inactivate_disks
) {
1518 /* Inactivate before sending QEMU_VM_EOF so that the
1519 * bdrv_activate_all() on the other end won't fail. */
1520 ret
= bdrv_inactivate_all();
1522 Error
*local_err
= NULL
;
1523 error_setg(&local_err
, "%s: bdrv_inactivate_all() failed (%d)",
1525 migrate_set_error(ms
, local_err
);
1526 error_report_err(local_err
);
1527 qemu_file_set_error(f
, ret
);
1532 /* Postcopy stream will still be going */
1533 qemu_put_byte(f
, QEMU_VM_EOF
);
1536 json_writer_end_array(vmdesc
);
1537 json_writer_end_object(vmdesc
);
1538 vmdesc_len
= strlen(json_writer_get(vmdesc
));
1540 if (should_send_vmdesc()) {
1541 qemu_put_byte(f
, QEMU_VM_VMDESCRIPTION
);
1542 qemu_put_be32(f
, vmdesc_len
);
1543 qemu_put_buffer(f
, (uint8_t *)json_writer_get(vmdesc
), vmdesc_len
);
1546 /* Free it now to detect any inconsistencies. */
1547 json_writer_free(vmdesc
);
1553 int qemu_savevm_state_complete_precopy(QEMUFile
*f
, bool iterable_only
,
1554 bool inactivate_disks
)
1557 Error
*local_err
= NULL
;
1558 bool in_postcopy
= migration_in_postcopy();
1560 if (precopy_notify(PRECOPY_NOTIFY_COMPLETE
, &local_err
)) {
1561 error_report_err(local_err
);
1564 trace_savevm_state_complete_precopy();
1566 cpu_synchronize_all_states();
1568 if (!in_postcopy
|| iterable_only
) {
1569 ret
= qemu_savevm_state_complete_precopy_iterable(f
, in_postcopy
);
1575 if (iterable_only
) {
1579 ret
= qemu_savevm_state_complete_precopy_non_iterable(f
, in_postcopy
,
1590 /* Give an estimate of the amount left to be transferred,
1591 * the result is split into the amount for units that can and
1592 * for units that can't do postcopy.
1594 void qemu_savevm_state_pending_estimate(uint64_t *must_precopy
,
1595 uint64_t *can_postcopy
)
1602 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1603 if (!se
->ops
|| !se
->ops
->state_pending_estimate
) {
1606 if (se
->ops
->is_active
) {
1607 if (!se
->ops
->is_active(se
->opaque
)) {
1611 se
->ops
->state_pending_estimate(se
->opaque
, must_precopy
, can_postcopy
);
1615 void qemu_savevm_state_pending_exact(uint64_t *must_precopy
,
1616 uint64_t *can_postcopy
)
1623 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1624 if (!se
->ops
|| !se
->ops
->state_pending_exact
) {
1627 if (se
->ops
->is_active
) {
1628 if (!se
->ops
->is_active(se
->opaque
)) {
1632 se
->ops
->state_pending_exact(se
->opaque
, must_precopy
, can_postcopy
);
1636 void qemu_savevm_state_cleanup(void)
1639 Error
*local_err
= NULL
;
1641 if (precopy_notify(PRECOPY_NOTIFY_CLEANUP
, &local_err
)) {
1642 error_report_err(local_err
);
1645 trace_savevm_state_cleanup();
1646 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1647 if (se
->ops
&& se
->ops
->save_cleanup
) {
1648 se
->ops
->save_cleanup(se
->opaque
);
1653 static int qemu_savevm_state(QEMUFile
*f
, Error
**errp
)
1656 MigrationState
*ms
= migrate_get_current();
1657 MigrationStatus status
;
1659 if (migration_is_running(ms
->state
)) {
1660 error_setg(errp
, QERR_MIGRATION_ACTIVE
);
1664 if (migrate_block()) {
1665 error_setg(errp
, "Block migration and snapshots are incompatible");
1669 ret
= migrate_init(ms
, errp
);
1673 ms
->to_dst_file
= f
;
1675 qemu_savevm_state_header(f
);
1676 qemu_savevm_state_setup(f
);
1678 while (qemu_file_get_error(f
) == 0) {
1679 if (qemu_savevm_state_iterate(f
, false) > 0) {
1684 ret
= qemu_file_get_error(f
);
1686 qemu_savevm_state_complete_precopy(f
, false, false);
1687 ret
= qemu_file_get_error(f
);
1689 qemu_savevm_state_cleanup();
1691 error_setg_errno(errp
, -ret
, "Error while writing VM state");
1695 status
= MIGRATION_STATUS_FAILED
;
1697 status
= MIGRATION_STATUS_COMPLETED
;
1699 migrate_set_state(&ms
->state
, MIGRATION_STATUS_SETUP
, status
);
1701 /* f is outer parameter, it should not stay in global migration state after
1702 * this function finished */
1703 ms
->to_dst_file
= NULL
;
1708 void qemu_savevm_live_state(QEMUFile
*f
)
1710 /* save QEMU_VM_SECTION_END section */
1711 qemu_savevm_state_complete_precopy(f
, true, false);
1712 qemu_put_byte(f
, QEMU_VM_EOF
);
1715 int qemu_save_device_state(QEMUFile
*f
)
1719 if (!migration_in_colo_state()) {
1720 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1721 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1723 cpu_synchronize_all_states();
1725 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1731 ret
= vmstate_save(f
, se
, NULL
);
1737 qemu_put_byte(f
, QEMU_VM_EOF
);
1739 return qemu_file_get_error(f
);
1742 static SaveStateEntry
*find_se(const char *idstr
, uint32_t instance_id
)
1746 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1747 if (!strcmp(se
->idstr
, idstr
) &&
1748 (instance_id
== se
->instance_id
||
1749 instance_id
== se
->alias_id
))
1751 /* Migrating from an older version? */
1752 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
1753 if (!strcmp(se
->compat
->idstr
, idstr
) &&
1754 (instance_id
== se
->compat
->instance_id
||
1755 instance_id
== se
->alias_id
))
1762 enum LoadVMExitCodes
{
1763 /* Allow a command to quit all layers of nested loadvm loops */
1767 /* ------ incoming postcopy messages ------ */
1768 /* 'advise' arrives before any transfers just to tell us that a postcopy
1769 * *might* happen - it might be skipped if precopy transferred everything
1772 static int loadvm_postcopy_handle_advise(MigrationIncomingState
*mis
,
1775 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1776 uint64_t remote_pagesize_summary
, local_pagesize_summary
, remote_tps
;
1777 size_t page_size
= qemu_target_page_size();
1778 Error
*local_err
= NULL
;
1780 trace_loadvm_postcopy_handle_advise();
1781 if (ps
!= POSTCOPY_INCOMING_NONE
) {
1782 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps
);
1788 if (migrate_postcopy_ram()) {
1789 error_report("RAM postcopy is enabled but have 0 byte advise");
1794 if (!migrate_postcopy_ram()) {
1795 error_report("RAM postcopy is disabled but have 16 byte advise");
1800 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len
);
1804 if (!postcopy_ram_supported_by_host(mis
, &local_err
)) {
1805 error_report_err(local_err
);
1806 postcopy_state_set(POSTCOPY_INCOMING_NONE
);
1810 remote_pagesize_summary
= qemu_get_be64(mis
->from_src_file
);
1811 local_pagesize_summary
= ram_pagesize_summary();
1813 if (remote_pagesize_summary
!= local_pagesize_summary
) {
1815 * This detects two potential causes of mismatch:
1816 * a) A mismatch in host page sizes
1817 * Some combinations of mismatch are probably possible but it gets
1818 * a bit more complicated. In particular we need to place whole
1819 * host pages on the dest at once, and we need to ensure that we
1820 * handle dirtying to make sure we never end up sending part of
1821 * a hostpage on it's own.
1822 * b) The use of different huge page sizes on source/destination
1823 * a more fine grain test is performed during RAM block migration
1824 * but this test here causes a nice early clear failure, and
1825 * also fails when passed to an older qemu that doesn't
1828 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1830 remote_pagesize_summary
, local_pagesize_summary
);
1834 remote_tps
= qemu_get_be64(mis
->from_src_file
);
1835 if (remote_tps
!= page_size
) {
1837 * Again, some differences could be dealt with, but for now keep it
1840 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1841 (int)remote_tps
, page_size
);
1845 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_ADVISE
, &local_err
)) {
1846 error_report_err(local_err
);
1850 if (ram_postcopy_incoming_init(mis
)) {
1857 /* After postcopy we will be told to throw some pages away since they're
1858 * dirty and will have to be demand fetched. Must happen before CPU is
1860 * There can be 0..many of these messages, each encoding multiple pages.
1862 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState
*mis
,
1867 PostcopyState ps
= postcopy_state_get();
1869 trace_loadvm_postcopy_ram_handle_discard();
1872 case POSTCOPY_INCOMING_ADVISE
:
1874 tmp
= postcopy_ram_prepare_discard(mis
);
1880 case POSTCOPY_INCOMING_DISCARD
:
1881 /* Expected state */
1885 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1889 /* We're expecting a
1891 * a RAM ID string (length byte, name, 0 term)
1892 * then at least 1 16 byte chunk
1894 if (len
< (1 + 1 + 1 + 1 + 2 * 8)) {
1895 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1899 tmp
= qemu_get_byte(mis
->from_src_file
);
1900 if (tmp
!= postcopy_ram_discard_version
) {
1901 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp
);
1905 if (!qemu_get_counted_string(mis
->from_src_file
, ramid
)) {
1906 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1909 tmp
= qemu_get_byte(mis
->from_src_file
);
1911 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp
);
1915 len
-= 3 + strlen(ramid
);
1917 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1920 trace_loadvm_postcopy_ram_handle_discard_header(ramid
, len
);
1922 uint64_t start_addr
, block_length
;
1923 start_addr
= qemu_get_be64(mis
->from_src_file
);
1924 block_length
= qemu_get_be64(mis
->from_src_file
);
1927 int ret
= ram_discard_range(ramid
, start_addr
, block_length
);
1932 trace_loadvm_postcopy_ram_handle_discard_end();
1938 * Triggered by a postcopy_listen command; this thread takes over reading
1939 * the input stream, leaving the main thread free to carry on loading the rest
1940 * of the device state (from RAM).
1941 * (TODO:This could do with being in a postcopy file - but there again it's
1942 * just another input loop, not that postcopy specific)
1944 static void *postcopy_ram_listen_thread(void *opaque
)
1946 MigrationIncomingState
*mis
= migration_incoming_get_current();
1947 QEMUFile
*f
= mis
->from_src_file
;
1949 MigrationState
*migr
= migrate_get_current();
1951 object_ref(OBJECT(migr
));
1953 migrate_set_state(&mis
->state
, MIGRATION_STATUS_ACTIVE
,
1954 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1955 qemu_sem_post(&mis
->thread_sync_sem
);
1956 trace_postcopy_ram_listen_thread_start();
1958 rcu_register_thread();
1960 * Because we're a thread and not a coroutine we can't yield
1961 * in qemu_file, and thus we must be blocking now.
1963 qemu_file_set_blocking(f
, true);
1964 load_res
= qemu_loadvm_state_main(f
, mis
);
1967 * This is tricky, but, mis->from_src_file can change after it
1968 * returns, when postcopy recovery happened. In the future, we may
1969 * want a wrapper for the QEMUFile handle.
1971 f
= mis
->from_src_file
;
1973 /* And non-blocking again so we don't block in any cleanup */
1974 qemu_file_set_blocking(f
, false);
1976 trace_postcopy_ram_listen_thread_exit();
1978 qemu_file_set_error(f
, load_res
);
1979 dirty_bitmap_mig_cancel_incoming();
1980 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING
&&
1981 !migrate_postcopy_ram() && migrate_dirty_bitmaps())
1983 error_report("%s: loadvm failed during postcopy: %d. All states "
1984 "are migrated except dirty bitmaps. Some dirty "
1985 "bitmaps may be lost, and present migrated dirty "
1986 "bitmaps are correctly migrated and valid.",
1987 __func__
, load_res
);
1988 load_res
= 0; /* prevent further exit() */
1990 error_report("%s: loadvm failed: %d", __func__
, load_res
);
1991 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1992 MIGRATION_STATUS_FAILED
);
1995 if (load_res
>= 0) {
1997 * This looks good, but it's possible that the device loading in the
1998 * main thread hasn't finished yet, and so we might not be in 'RUN'
1999 * state yet; wait for the end of the main thread.
2001 qemu_event_wait(&mis
->main_thread_load_event
);
2003 postcopy_ram_incoming_cleanup(mis
);
2007 * If something went wrong then we have a bad state so exit;
2008 * depending how far we got it might be possible at this point
2009 * to leave the guest running and fire MCEs for pages that never
2010 * arrived as a desperate recovery step.
2012 rcu_unregister_thread();
2016 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
2017 MIGRATION_STATUS_COMPLETED
);
2019 * If everything has worked fine, then the main thread has waited
2020 * for us to start, and we're the last use of the mis.
2021 * (If something broke then qemu will have to exit anyway since it's
2022 * got a bad migration state).
2024 migration_incoming_state_destroy();
2025 qemu_loadvm_state_cleanup();
2027 rcu_unregister_thread();
2028 mis
->have_listen_thread
= false;
2029 postcopy_state_set(POSTCOPY_INCOMING_END
);
2031 object_unref(OBJECT(migr
));
2036 /* After this message we must be able to immediately receive postcopy data */
2037 static int loadvm_postcopy_handle_listen(MigrationIncomingState
*mis
)
2039 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_LISTENING
);
2040 Error
*local_err
= NULL
;
2042 trace_loadvm_postcopy_handle_listen("enter");
2044 if (ps
!= POSTCOPY_INCOMING_ADVISE
&& ps
!= POSTCOPY_INCOMING_DISCARD
) {
2045 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps
);
2048 if (ps
== POSTCOPY_INCOMING_ADVISE
) {
2050 * A rare case, we entered listen without having to do any discards,
2051 * so do the setup that's normally done at the time of the 1st discard.
2053 if (migrate_postcopy_ram()) {
2054 postcopy_ram_prepare_discard(mis
);
2058 trace_loadvm_postcopy_handle_listen("after discard");
2061 * Sensitise RAM - can now generate requests for blocks that don't exist
2062 * However, at this point the CPU shouldn't be running, and the IO
2063 * shouldn't be doing anything yet so don't actually expect requests
2065 if (migrate_postcopy_ram()) {
2066 if (postcopy_ram_incoming_setup(mis
)) {
2067 postcopy_ram_incoming_cleanup(mis
);
2072 trace_loadvm_postcopy_handle_listen("after uffd");
2074 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_LISTEN
, &local_err
)) {
2075 error_report_err(local_err
);
2079 mis
->have_listen_thread
= true;
2080 postcopy_thread_create(mis
, &mis
->listen_thread
, "postcopy/listen",
2081 postcopy_ram_listen_thread
, QEMU_THREAD_DETACHED
);
2082 trace_loadvm_postcopy_handle_listen("return");
2087 static void loadvm_postcopy_handle_run_bh(void *opaque
)
2089 Error
*local_err
= NULL
;
2090 MigrationIncomingState
*mis
= opaque
;
2092 trace_loadvm_postcopy_handle_run_bh("enter");
2094 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
2097 cpu_synchronize_all_post_init();
2099 trace_loadvm_postcopy_handle_run_bh("after cpu sync");
2101 qemu_announce_self(&mis
->announce_timer
, migrate_announce_params());
2103 trace_loadvm_postcopy_handle_run_bh("after announce");
2105 /* Make sure all file formats throw away their mutable metadata.
2106 * If we get an error here, just don't restart the VM yet. */
2107 bdrv_activate_all(&local_err
);
2109 error_report_err(local_err
);
2114 trace_loadvm_postcopy_handle_run_bh("after invalidate cache");
2116 dirty_bitmap_mig_before_vm_start();
2119 /* Hold onto your hats, starting the CPU */
2122 /* leave it paused and let management decide when to start the CPU */
2123 runstate_set(RUN_STATE_PAUSED
);
2126 qemu_bh_delete(mis
->bh
);
2128 trace_loadvm_postcopy_handle_run_bh("return");
2131 /* After all discards we can start running and asking for pages */
2132 static int loadvm_postcopy_handle_run(MigrationIncomingState
*mis
)
2134 PostcopyState ps
= postcopy_state_get();
2136 trace_loadvm_postcopy_handle_run();
2137 if (ps
!= POSTCOPY_INCOMING_LISTENING
) {
2138 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps
);
2142 postcopy_state_set(POSTCOPY_INCOMING_RUNNING
);
2143 mis
->bh
= qemu_bh_new(loadvm_postcopy_handle_run_bh
, mis
);
2144 qemu_bh_schedule(mis
->bh
);
2146 /* We need to finish reading the stream from the package
2147 * and also stop reading anything more from the stream that loaded the
2148 * package (since it's now being read by the listener thread).
2149 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
2154 /* We must be with page_request_mutex held */
2155 static gboolean
postcopy_sync_page_req(gpointer key
, gpointer value
,
2158 MigrationIncomingState
*mis
= data
;
2159 void *host_addr
= (void *) key
;
2160 ram_addr_t rb_offset
;
2164 rb
= qemu_ram_block_from_host(host_addr
, true, &rb_offset
);
2167 * This should _never_ happen. However be nice for a migrating VM to
2168 * not crash/assert. Post an error (note: intended to not use *_once
2169 * because we do want to see all the illegal addresses; and this can
2170 * never be triggered by the guest so we're safe) and move on next.
2172 error_report("%s: illegal host addr %p", __func__
, host_addr
);
2173 /* Try the next entry */
2177 ret
= migrate_send_rp_message_req_pages(mis
, rb
, rb_offset
);
2179 /* Please refer to above comment. */
2180 error_report("%s: send rp message failed for addr %p",
2181 __func__
, host_addr
);
2185 trace_postcopy_page_req_sync(host_addr
);
2190 static void migrate_send_rp_req_pages_pending(MigrationIncomingState
*mis
)
2192 WITH_QEMU_LOCK_GUARD(&mis
->page_request_mutex
) {
2193 g_tree_foreach(mis
->page_requested
, postcopy_sync_page_req
, mis
);
2197 static int loadvm_postcopy_handle_resume(MigrationIncomingState
*mis
)
2199 if (mis
->state
!= MIGRATION_STATUS_POSTCOPY_RECOVER
) {
2200 error_report("%s: illegal resume received", __func__
);
2201 /* Don't fail the load, only for this. */
2206 * Reset the last_rb before we resend any page req to source again, since
2207 * the source should have it reset already.
2209 mis
->last_rb
= NULL
;
2212 * This means source VM is ready to resume the postcopy migration.
2214 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_RECOVER
,
2215 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
2217 trace_loadvm_postcopy_handle_resume();
2219 /* Tell source that "we are ready" */
2220 migrate_send_rp_resume_ack(mis
, MIGRATION_RESUME_ACK_VALUE
);
2223 * After a postcopy recovery, the source should have lost the postcopy
2224 * queue, or potentially the requested pages could have been lost during
2225 * the network down phase. Let's re-sync with the source VM by re-sending
2226 * all the pending pages that we eagerly need, so these threads won't get
2227 * blocked too long due to the recovery.
2229 * Without this procedure, the faulted destination VM threads (waiting for
2230 * page requests right before the postcopy is interrupted) can keep hanging
2231 * until the pages are sent by the source during the background copying of
2232 * pages, or another thread faulted on the same address accidentally.
2234 migrate_send_rp_req_pages_pending(mis
);
2237 * It's time to switch state and release the fault thread to continue
2238 * service page faults. Note that this should be explicitly after the
2239 * above call to migrate_send_rp_req_pages_pending(). In short:
2240 * migrate_send_rp_message_req_pages() is not thread safe, yet.
2242 qemu_sem_post(&mis
->postcopy_pause_sem_fault
);
2244 if (migrate_postcopy_preempt()) {
2246 * The preempt channel will be created in async manner, now let's
2247 * wait for it and make sure it's created.
2249 qemu_sem_wait(&mis
->postcopy_qemufile_dst_done
);
2250 assert(mis
->postcopy_qemufile_dst
);
2251 /* Kick the fast ram load thread too */
2252 qemu_sem_post(&mis
->postcopy_pause_sem_fast_load
);
2259 * Immediately following this command is a blob of data containing an embedded
2260 * chunk of migration stream; read it and load it.
2262 * @mis: Incoming state
2263 * @length: Length of packaged data to read
2265 * Returns: Negative values on error
2268 static int loadvm_handle_cmd_packaged(MigrationIncomingState
*mis
)
2272 QIOChannelBuffer
*bioc
;
2274 length
= qemu_get_be32(mis
->from_src_file
);
2275 trace_loadvm_handle_cmd_packaged(length
);
2277 if (length
> MAX_VM_CMD_PACKAGED_SIZE
) {
2278 error_report("Unreasonably large packaged state: %zu", length
);
2282 bioc
= qio_channel_buffer_new(length
);
2283 qio_channel_set_name(QIO_CHANNEL(bioc
), "migration-loadvm-buffer");
2284 ret
= qemu_get_buffer(mis
->from_src_file
,
2287 if (ret
!= length
) {
2288 object_unref(OBJECT(bioc
));
2289 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
2291 return (ret
< 0) ? ret
: -EAGAIN
;
2293 bioc
->usage
+= length
;
2294 trace_loadvm_handle_cmd_packaged_received(ret
);
2296 QEMUFile
*packf
= qemu_file_new_input(QIO_CHANNEL(bioc
));
2298 ret
= qemu_loadvm_state_main(packf
, mis
);
2299 trace_loadvm_handle_cmd_packaged_main(ret
);
2301 object_unref(OBJECT(bioc
));
2307 * Handle request that source requests for recved_bitmap on
2308 * destination. Payload format:
2310 * len (1 byte) + ramblock_name (<255 bytes)
2312 static int loadvm_handle_recv_bitmap(MigrationIncomingState
*mis
,
2315 QEMUFile
*file
= mis
->from_src_file
;
2317 char block_name
[256];
2320 cnt
= qemu_get_counted_string(file
, block_name
);
2322 error_report("%s: failed to read block name", __func__
);
2326 /* Validate before using the data */
2327 if (qemu_file_get_error(file
)) {
2328 return qemu_file_get_error(file
);
2331 if (len
!= cnt
+ 1) {
2332 error_report("%s: invalid payload length (%d)", __func__
, len
);
2336 rb
= qemu_ram_block_by_name(block_name
);
2338 error_report("%s: block '%s' not found", __func__
, block_name
);
2342 migrate_send_rp_recv_bitmap(mis
, block_name
);
2344 trace_loadvm_handle_recv_bitmap(block_name
);
2349 static int loadvm_process_enable_colo(MigrationIncomingState
*mis
)
2351 int ret
= migration_incoming_enable_colo();
2354 ret
= colo_init_ram_cache();
2356 migration_incoming_disable_colo();
2363 * Process an incoming 'QEMU_VM_COMMAND'
2364 * 0 just a normal return
2365 * LOADVM_QUIT All good, but exit the loop
2368 static int loadvm_process_command(QEMUFile
*f
)
2370 MigrationIncomingState
*mis
= migration_incoming_get_current();
2375 cmd
= qemu_get_be16(f
);
2376 len
= qemu_get_be16(f
);
2378 /* Check validity before continue processing of cmds */
2379 if (qemu_file_get_error(f
)) {
2380 return qemu_file_get_error(f
);
2383 if (cmd
>= MIG_CMD_MAX
|| cmd
== MIG_CMD_INVALID
) {
2384 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd
, len
);
2388 trace_loadvm_process_command(mig_cmd_args
[cmd
].name
, len
);
2390 if (mig_cmd_args
[cmd
].len
!= -1 && mig_cmd_args
[cmd
].len
!= len
) {
2391 error_report("%s received with bad length - expecting %zu, got %d",
2392 mig_cmd_args
[cmd
].name
,
2393 (size_t)mig_cmd_args
[cmd
].len
, len
);
2398 case MIG_CMD_OPEN_RETURN_PATH
:
2399 if (mis
->to_src_file
) {
2400 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
2401 /* Not really a problem, so don't give up */
2404 mis
->to_src_file
= qemu_file_get_return_path(f
);
2405 if (!mis
->to_src_file
) {
2406 error_report("CMD_OPEN_RETURN_PATH failed");
2411 * Switchover ack is enabled but no device uses it, so send an ACK to
2412 * source that it's OK to switchover. Do it here, after return path has
2415 if (migrate_switchover_ack() && !mis
->switchover_ack_pending_num
) {
2416 int ret
= migrate_send_rp_switchover_ack(mis
);
2419 "Could not send switchover ack RP MSG, err %d (%s)", ret
,
2427 tmp32
= qemu_get_be32(f
);
2428 trace_loadvm_process_command_ping(tmp32
);
2429 if (!mis
->to_src_file
) {
2430 error_report("CMD_PING (0x%x) received with no return path",
2434 migrate_send_rp_pong(mis
, tmp32
);
2437 case MIG_CMD_PACKAGED
:
2438 return loadvm_handle_cmd_packaged(mis
);
2440 case MIG_CMD_POSTCOPY_ADVISE
:
2441 return loadvm_postcopy_handle_advise(mis
, len
);
2443 case MIG_CMD_POSTCOPY_LISTEN
:
2444 return loadvm_postcopy_handle_listen(mis
);
2446 case MIG_CMD_POSTCOPY_RUN
:
2447 return loadvm_postcopy_handle_run(mis
);
2449 case MIG_CMD_POSTCOPY_RAM_DISCARD
:
2450 return loadvm_postcopy_ram_handle_discard(mis
, len
);
2452 case MIG_CMD_POSTCOPY_RESUME
:
2453 return loadvm_postcopy_handle_resume(mis
);
2455 case MIG_CMD_RECV_BITMAP
:
2456 return loadvm_handle_recv_bitmap(mis
, len
);
2458 case MIG_CMD_ENABLE_COLO
:
2459 return loadvm_process_enable_colo(mis
);
2466 * Read a footer off the wire and check that it matches the expected section
2468 * Returns: true if the footer was good
2469 * false if there is a problem (and calls error_report to say why)
2471 static bool check_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
2475 uint32_t read_section_id
;
2477 if (!migrate_get_current()->send_section_footer
) {
2478 /* No footer to check */
2482 read_mark
= qemu_get_byte(f
);
2484 ret
= qemu_file_get_error(f
);
2486 error_report("%s: Read section footer failed: %d",
2491 if (read_mark
!= QEMU_VM_SECTION_FOOTER
) {
2492 error_report("Missing section footer for %s", se
->idstr
);
2496 read_section_id
= qemu_get_be32(f
);
2497 if (read_section_id
!= se
->load_section_id
) {
2498 error_report("Mismatched section id in footer for %s -"
2499 " read 0x%x expected 0x%x",
2500 se
->idstr
, read_section_id
, se
->load_section_id
);
2509 qemu_loadvm_section_start_full(QEMUFile
*f
, MigrationIncomingState
*mis
)
2511 uint32_t instance_id
, version_id
, section_id
;
2516 /* Read section start */
2517 section_id
= qemu_get_be32(f
);
2518 if (!qemu_get_counted_string(f
, idstr
)) {
2519 error_report("Unable to read ID string for section %u",
2523 instance_id
= qemu_get_be32(f
);
2524 version_id
= qemu_get_be32(f
);
2526 ret
= qemu_file_get_error(f
);
2528 error_report("%s: Failed to read instance/version ID: %d",
2533 trace_qemu_loadvm_state_section_startfull(section_id
, idstr
,
2534 instance_id
, version_id
);
2535 /* Find savevm section */
2536 se
= find_se(idstr
, instance_id
);
2538 error_report("Unknown savevm section or instance '%s' %"PRIu32
". "
2539 "Make sure that your current VM setup matches your "
2540 "saved VM setup, including any hotplugged devices",
2541 idstr
, instance_id
);
2545 /* Validate version */
2546 if (version_id
> se
->version_id
) {
2547 error_report("savevm: unsupported version %d for '%s' v%d",
2548 version_id
, idstr
, se
->version_id
);
2551 se
->load_version_id
= version_id
;
2552 se
->load_section_id
= section_id
;
2554 /* Validate if it is a device's state */
2555 if (xen_enabled() && se
->is_ram
) {
2556 error_report("loadvm: %s RAM loading not allowed on Xen", idstr
);
2560 ret
= vmstate_load(f
, se
);
2562 error_report("error while loading state for instance 0x%"PRIx32
" of"
2563 " device '%s'", instance_id
, idstr
);
2566 if (!check_section_footer(f
, se
)) {
2574 qemu_loadvm_section_part_end(QEMUFile
*f
, MigrationIncomingState
*mis
)
2576 uint32_t section_id
;
2580 section_id
= qemu_get_be32(f
);
2582 ret
= qemu_file_get_error(f
);
2584 error_report("%s: Failed to read section ID: %d",
2589 trace_qemu_loadvm_state_section_partend(section_id
);
2590 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2591 if (se
->load_section_id
== section_id
) {
2596 error_report("Unknown savevm section %d", section_id
);
2600 ret
= vmstate_load(f
, se
);
2602 error_report("error while loading state section id %d(%s)",
2603 section_id
, se
->idstr
);
2606 if (!check_section_footer(f
, se
)) {
2613 static int qemu_loadvm_state_header(QEMUFile
*f
)
2618 v
= qemu_get_be32(f
);
2619 if (v
!= QEMU_VM_FILE_MAGIC
) {
2620 error_report("Not a migration stream");
2624 v
= qemu_get_be32(f
);
2625 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
2626 error_report("SaveVM v2 format is obsolete and don't work anymore");
2629 if (v
!= QEMU_VM_FILE_VERSION
) {
2630 error_report("Unsupported migration stream version");
2634 if (migrate_get_current()->send_configuration
) {
2635 if (qemu_get_byte(f
) != QEMU_VM_CONFIGURATION
) {
2636 error_report("Configuration section missing");
2637 qemu_loadvm_state_cleanup();
2640 ret
= vmstate_load_state(f
, &vmstate_configuration
, &savevm_state
, 0);
2643 qemu_loadvm_state_cleanup();
2650 static void qemu_loadvm_state_switchover_ack_needed(MigrationIncomingState
*mis
)
2654 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2655 if (!se
->ops
|| !se
->ops
->switchover_ack_needed
) {
2659 if (se
->ops
->switchover_ack_needed(se
->opaque
)) {
2660 mis
->switchover_ack_pending_num
++;
2664 trace_loadvm_state_switchover_ack_needed(mis
->switchover_ack_pending_num
);
2667 static int qemu_loadvm_state_setup(QEMUFile
*f
)
2672 trace_loadvm_state_setup();
2673 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2674 if (!se
->ops
|| !se
->ops
->load_setup
) {
2677 if (se
->ops
->is_active
) {
2678 if (!se
->ops
->is_active(se
->opaque
)) {
2683 ret
= se
->ops
->load_setup(f
, se
->opaque
);
2685 qemu_file_set_error(f
, ret
);
2686 error_report("Load state of device %s failed", se
->idstr
);
2693 void qemu_loadvm_state_cleanup(void)
2697 trace_loadvm_state_cleanup();
2698 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2699 if (se
->ops
&& se
->ops
->load_cleanup
) {
2700 se
->ops
->load_cleanup(se
->opaque
);
2705 /* Return true if we should continue the migration, or false. */
2706 static bool postcopy_pause_incoming(MigrationIncomingState
*mis
)
2710 trace_postcopy_pause_incoming();
2712 assert(migrate_postcopy_ram());
2715 * Unregister yank with either from/to src would work, since ioc behind it
2718 migration_ioc_unregister_yank_from_file(mis
->from_src_file
);
2720 assert(mis
->from_src_file
);
2721 qemu_file_shutdown(mis
->from_src_file
);
2722 qemu_fclose(mis
->from_src_file
);
2723 mis
->from_src_file
= NULL
;
2725 assert(mis
->to_src_file
);
2726 qemu_file_shutdown(mis
->to_src_file
);
2727 qemu_mutex_lock(&mis
->rp_mutex
);
2728 qemu_fclose(mis
->to_src_file
);
2729 mis
->to_src_file
= NULL
;
2730 qemu_mutex_unlock(&mis
->rp_mutex
);
2733 * NOTE: this must happen before reset the PostcopyTmpPages below,
2734 * otherwise it's racy to reset those fields when the fast load thread
2735 * can be accessing it in parallel.
2737 if (mis
->postcopy_qemufile_dst
) {
2738 qemu_file_shutdown(mis
->postcopy_qemufile_dst
);
2739 /* Take the mutex to make sure the fast ram load thread halted */
2740 qemu_mutex_lock(&mis
->postcopy_prio_thread_mutex
);
2741 migration_ioc_unregister_yank_from_file(mis
->postcopy_qemufile_dst
);
2742 qemu_fclose(mis
->postcopy_qemufile_dst
);
2743 mis
->postcopy_qemufile_dst
= NULL
;
2744 qemu_mutex_unlock(&mis
->postcopy_prio_thread_mutex
);
2747 /* Current state can be either ACTIVE or RECOVER */
2748 migrate_set_state(&mis
->state
, mis
->state
,
2749 MIGRATION_STATUS_POSTCOPY_PAUSED
);
2751 /* Notify the fault thread for the invalidated file handle */
2752 postcopy_fault_thread_notify(mis
);
2755 * If network is interrupted, any temp page we received will be useless
2756 * because we didn't mark them as "received" in receivedmap. After a
2757 * proper recovery later (which will sync src dirty bitmap with receivedmap
2758 * on dest) these cached small pages will be resent again.
2760 for (i
= 0; i
< mis
->postcopy_channels
; i
++) {
2761 postcopy_temp_page_reset(&mis
->postcopy_tmp_pages
[i
]);
2764 error_report("Detected IO failure for postcopy. "
2765 "Migration paused.");
2767 while (mis
->state
== MIGRATION_STATUS_POSTCOPY_PAUSED
) {
2768 qemu_sem_wait(&mis
->postcopy_pause_sem_dst
);
2771 trace_postcopy_pause_incoming_continued();
2776 int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
)
2778 uint8_t section_type
;
2783 section_type
= qemu_get_byte(f
);
2785 ret
= qemu_file_get_error_obj_any(f
, mis
->postcopy_qemufile_dst
, NULL
);
2790 trace_qemu_loadvm_state_section(section_type
);
2791 switch (section_type
) {
2792 case QEMU_VM_SECTION_START
:
2793 case QEMU_VM_SECTION_FULL
:
2794 ret
= qemu_loadvm_section_start_full(f
, mis
);
2799 case QEMU_VM_SECTION_PART
:
2800 case QEMU_VM_SECTION_END
:
2801 ret
= qemu_loadvm_section_part_end(f
, mis
);
2806 case QEMU_VM_COMMAND
:
2807 ret
= loadvm_process_command(f
);
2808 trace_qemu_loadvm_state_section_command(ret
);
2809 if ((ret
< 0) || (ret
== LOADVM_QUIT
)) {
2814 /* This is the end of migration */
2817 error_report("Unknown savevm section type %d", section_type
);
2825 qemu_file_set_error(f
, ret
);
2827 /* Cancel bitmaps incoming regardless of recovery */
2828 dirty_bitmap_mig_cancel_incoming();
2831 * If we are during an active postcopy, then we pause instead
2832 * of bail out to at least keep the VM's dirty data. Note
2833 * that POSTCOPY_INCOMING_LISTENING stage is still not enough,
2834 * during which we're still receiving device states and we
2835 * still haven't yet started the VM on destination.
2837 * Only RAM postcopy supports recovery. Still, if RAM postcopy is
2838 * enabled, canceled bitmaps postcopy will not affect RAM postcopy
2841 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING
&&
2842 migrate_postcopy_ram() && postcopy_pause_incoming(mis
)) {
2843 /* Reset f to point to the newly created channel */
2844 f
= mis
->from_src_file
;
2851 int qemu_loadvm_state(QEMUFile
*f
)
2853 MigrationIncomingState
*mis
= migration_incoming_get_current();
2854 Error
*local_err
= NULL
;
2857 if (qemu_savevm_state_blocked(&local_err
)) {
2858 error_report_err(local_err
);
2862 ret
= qemu_loadvm_state_header(f
);
2867 if (qemu_loadvm_state_setup(f
) != 0) {
2871 if (migrate_switchover_ack()) {
2872 qemu_loadvm_state_switchover_ack_needed(mis
);
2875 cpu_synchronize_all_pre_loadvm();
2877 ret
= qemu_loadvm_state_main(f
, mis
);
2878 qemu_event_set(&mis
->main_thread_load_event
);
2880 trace_qemu_loadvm_state_post_main(ret
);
2882 if (mis
->have_listen_thread
) {
2883 /* Listen thread still going, can't clean up yet */
2888 ret
= qemu_file_get_error(f
);
2892 * Try to read in the VMDESC section as well, so that dumping tools that
2893 * intercept our migration stream have the chance to see it.
2896 /* We've got to be careful; if we don't read the data and just shut the fd
2897 * then the sender can error if we close while it's still sending.
2898 * We also mustn't read data that isn't there; some transports (RDMA)
2899 * will stall waiting for that data when the source has already closed.
2901 if (ret
== 0 && should_send_vmdesc()) {
2904 uint8_t section_type
= qemu_get_byte(f
);
2906 if (section_type
!= QEMU_VM_VMDESCRIPTION
) {
2907 error_report("Expected vmdescription section, but got %d",
2910 * It doesn't seem worth failing at this point since
2911 * we apparently have an otherwise valid VM state
2914 buf
= g_malloc(0x1000);
2915 size
= qemu_get_be32(f
);
2918 uint32_t read_chunk
= MIN(size
, 0x1000);
2919 qemu_get_buffer(f
, buf
, read_chunk
);
2926 qemu_loadvm_state_cleanup();
2927 cpu_synchronize_all_post_init();
2932 int qemu_load_device_state(QEMUFile
*f
)
2934 MigrationIncomingState
*mis
= migration_incoming_get_current();
2937 /* Load QEMU_VM_SECTION_FULL section */
2938 ret
= qemu_loadvm_state_main(f
, mis
);
2940 error_report("Failed to load device state: %d", ret
);
2944 cpu_synchronize_all_post_init();
2948 int qemu_loadvm_approve_switchover(void)
2950 MigrationIncomingState
*mis
= migration_incoming_get_current();
2952 if (!mis
->switchover_ack_pending_num
) {
2956 mis
->switchover_ack_pending_num
--;
2957 trace_loadvm_approve_switchover(mis
->switchover_ack_pending_num
);
2959 if (mis
->switchover_ack_pending_num
) {
2963 return migrate_send_rp_switchover_ack(mis
);
2966 bool save_snapshot(const char *name
, bool overwrite
, const char *vmstate
,
2967 bool has_devices
, strList
*devices
, Error
**errp
)
2969 BlockDriverState
*bs
;
2970 QEMUSnapshotInfo sn1
, *sn
= &sn1
;
2973 int saved_vm_running
;
2974 uint64_t vm_state_size
;
2975 g_autoptr(GDateTime
) now
= g_date_time_new_now_local();
2976 AioContext
*aio_context
;
2978 GLOBAL_STATE_CODE();
2980 if (migration_is_blocked(errp
)) {
2984 if (!replay_can_snapshot()) {
2985 error_setg(errp
, "Record/replay does not allow making snapshot "
2986 "right now. Try once more later.");
2990 if (!bdrv_all_can_snapshot(has_devices
, devices
, errp
)) {
2994 /* Delete old snapshots of the same name */
2997 if (bdrv_all_delete_snapshot(name
, has_devices
,
2998 devices
, errp
) < 0) {
3002 ret2
= bdrv_all_has_snapshot(name
, has_devices
, devices
, errp
);
3008 "Snapshot '%s' already exists in one or more devices",
3015 bs
= bdrv_all_find_vmstate_bs(vmstate
, has_devices
, devices
, errp
);
3019 aio_context
= bdrv_get_aio_context(bs
);
3021 saved_vm_running
= runstate_is_running();
3023 global_state_store();
3024 vm_stop(RUN_STATE_SAVE_VM
);
3026 bdrv_drain_all_begin();
3028 aio_context_acquire(aio_context
);
3030 memset(sn
, 0, sizeof(*sn
));
3032 /* fill auxiliary fields */
3033 sn
->date_sec
= g_date_time_to_unix(now
);
3034 sn
->date_nsec
= g_date_time_get_microsecond(now
) * 1000;
3035 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
3036 if (replay_mode
!= REPLAY_MODE_NONE
) {
3037 sn
->icount
= replay_get_current_icount();
3043 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
3045 g_autofree
char *autoname
= g_date_time_format(now
, "vm-%Y%m%d%H%M%S");
3046 pstrcpy(sn
->name
, sizeof(sn
->name
), autoname
);
3049 /* save the VM state */
3050 f
= qemu_fopen_bdrv(bs
, 1);
3052 error_setg(errp
, "Could not open VM state file");
3055 ret
= qemu_savevm_state(f
, errp
);
3056 vm_state_size
= qemu_file_transferred_noflush(f
);
3057 ret2
= qemu_fclose(f
);
3066 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
3067 * for itself. BDRV_POLL_WHILE() does not support nested locking because
3068 * it only releases the lock once. Therefore synchronous I/O will deadlock
3069 * unless we release the AioContext before bdrv_all_create_snapshot().
3071 aio_context_release(aio_context
);
3074 ret
= bdrv_all_create_snapshot(sn
, bs
, vm_state_size
,
3075 has_devices
, devices
, errp
);
3077 bdrv_all_delete_snapshot(sn
->name
, has_devices
, devices
, NULL
);
3085 aio_context_release(aio_context
);
3088 bdrv_drain_all_end();
3090 if (saved_vm_running
) {
3096 void qmp_xen_save_devices_state(const char *filename
, bool has_live
, bool live
,
3100 QIOChannelFile
*ioc
;
3101 int saved_vm_running
;
3105 /* live default to true so old version of Xen tool stack can have a
3106 * successful live migration */
3110 saved_vm_running
= runstate_is_running();
3111 vm_stop(RUN_STATE_SAVE_VM
);
3112 global_state_store_running();
3114 ioc
= qio_channel_file_new_path(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
,
3119 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-save-state");
3120 f
= qemu_file_new_output(QIO_CHANNEL(ioc
));
3121 object_unref(OBJECT(ioc
));
3122 ret
= qemu_save_device_state(f
);
3123 if (ret
< 0 || qemu_fclose(f
) < 0) {
3124 error_setg(errp
, QERR_IO_ERROR
);
3126 /* libxl calls the QMP command "stop" before calling
3127 * "xen-save-devices-state" and in case of migration failure, libxl
3128 * would call "cont".
3129 * So call bdrv_inactivate_all (release locks) here to let the other
3130 * side of the migration take control of the images.
3132 if (live
&& !saved_vm_running
) {
3133 ret
= bdrv_inactivate_all();
3135 error_setg(errp
, "%s: bdrv_inactivate_all() failed (%d)",
3142 if (saved_vm_running
) {
3147 void qmp_xen_load_devices_state(const char *filename
, Error
**errp
)
3150 QIOChannelFile
*ioc
;
3153 /* Guest must be paused before loading the device state; the RAM state
3154 * will already have been loaded by xc
3156 if (runstate_is_running()) {
3157 error_setg(errp
, "Cannot update device state while vm is running");
3160 vm_stop(RUN_STATE_RESTORE_VM
);
3162 ioc
= qio_channel_file_new_path(filename
, O_RDONLY
| O_BINARY
, 0, errp
);
3166 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-load-state");
3167 f
= qemu_file_new_input(QIO_CHANNEL(ioc
));
3168 object_unref(OBJECT(ioc
));
3170 ret
= qemu_loadvm_state(f
);
3173 error_setg(errp
, QERR_IO_ERROR
);
3175 migration_incoming_state_destroy();
3178 bool load_snapshot(const char *name
, const char *vmstate
,
3179 bool has_devices
, strList
*devices
, Error
**errp
)
3181 BlockDriverState
*bs_vm_state
;
3182 QEMUSnapshotInfo sn
;
3185 AioContext
*aio_context
;
3186 MigrationIncomingState
*mis
= migration_incoming_get_current();
3188 if (!bdrv_all_can_snapshot(has_devices
, devices
, errp
)) {
3191 ret
= bdrv_all_has_snapshot(name
, has_devices
, devices
, errp
);
3196 error_setg(errp
, "Snapshot '%s' does not exist in one or more devices",
3201 bs_vm_state
= bdrv_all_find_vmstate_bs(vmstate
, has_devices
, devices
, errp
);
3205 aio_context
= bdrv_get_aio_context(bs_vm_state
);
3207 /* Don't even try to load empty VM states */
3208 aio_context_acquire(aio_context
);
3209 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
3210 aio_context_release(aio_context
);
3213 } else if (sn
.vm_state_size
== 0) {
3214 error_setg(errp
, "This is a disk-only snapshot. Revert to it "
3215 " offline using qemu-img");
3220 * Flush the record/replay queue. Now the VM state is going
3221 * to change. Therefore we don't need to preserve its consistency
3223 replay_flush_events();
3225 /* Flush all IO requests so they don't interfere with the new state. */
3226 bdrv_drain_all_begin();
3228 ret
= bdrv_all_goto_snapshot(name
, has_devices
, devices
, errp
);
3233 /* restore the VM state */
3234 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
3236 error_setg(errp
, "Could not open VM state file");
3240 qemu_system_reset(SHUTDOWN_CAUSE_SNAPSHOT_LOAD
);
3241 mis
->from_src_file
= f
;
3243 if (!yank_register_instance(MIGRATION_YANK_INSTANCE
, errp
)) {
3247 aio_context_acquire(aio_context
);
3248 ret
= qemu_loadvm_state(f
);
3249 migration_incoming_state_destroy();
3250 aio_context_release(aio_context
);
3252 bdrv_drain_all_end();
3255 error_setg(errp
, "Error %d while loading VM state", ret
);
3262 bdrv_drain_all_end();
3266 bool delete_snapshot(const char *name
, bool has_devices
,
3267 strList
*devices
, Error
**errp
)
3269 if (!bdrv_all_can_snapshot(has_devices
, devices
, errp
)) {
3273 if (bdrv_all_delete_snapshot(name
, has_devices
, devices
, errp
) < 0) {
3280 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
3282 qemu_ram_set_idstr(mr
->ram_block
,
3283 memory_region_name(mr
), dev
);
3284 qemu_ram_set_migratable(mr
->ram_block
);
3287 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
3289 qemu_ram_unset_idstr(mr
->ram_block
);
3290 qemu_ram_unset_migratable(mr
->ram_block
);
3293 void vmstate_register_ram_global(MemoryRegion
*mr
)
3295 vmstate_register_ram(mr
, NULL
);
3298 bool vmstate_check_only_migratable(const VMStateDescription
*vmsd
)
3300 /* check needed if --only-migratable is specified */
3301 if (!only_migratable
) {
3305 return !(vmsd
&& vmsd
->unmigratable
);
3308 typedef struct SnapshotJob
{
3318 static void qmp_snapshot_job_free(SnapshotJob
*s
)
3322 qapi_free_strList(s
->devices
);
3326 static void snapshot_load_job_bh(void *opaque
)
3329 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3330 int orig_vm_running
;
3332 job_progress_set_remaining(&s
->common
, 1);
3334 orig_vm_running
= runstate_is_running();
3335 vm_stop(RUN_STATE_RESTORE_VM
);
3337 s
->ret
= load_snapshot(s
->tag
, s
->vmstate
, true, s
->devices
, s
->errp
);
3338 if (s
->ret
&& orig_vm_running
) {
3342 job_progress_update(&s
->common
, 1);
3344 qmp_snapshot_job_free(s
);
3348 static void snapshot_save_job_bh(void *opaque
)
3351 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3353 job_progress_set_remaining(&s
->common
, 1);
3354 s
->ret
= save_snapshot(s
->tag
, false, s
->vmstate
,
3355 true, s
->devices
, s
->errp
);
3356 job_progress_update(&s
->common
, 1);
3358 qmp_snapshot_job_free(s
);
3362 static void snapshot_delete_job_bh(void *opaque
)
3365 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3367 job_progress_set_remaining(&s
->common
, 1);
3368 s
->ret
= delete_snapshot(s
->tag
, true, s
->devices
, s
->errp
);
3369 job_progress_update(&s
->common
, 1);
3371 qmp_snapshot_job_free(s
);
3375 static int coroutine_fn
snapshot_save_job_run(Job
*job
, Error
**errp
)
3377 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3379 s
->co
= qemu_coroutine_self();
3380 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3381 snapshot_save_job_bh
, job
);
3382 qemu_coroutine_yield();
3383 return s
->ret
? 0 : -1;
3386 static int coroutine_fn
snapshot_load_job_run(Job
*job
, Error
**errp
)
3388 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3390 s
->co
= qemu_coroutine_self();
3391 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3392 snapshot_load_job_bh
, job
);
3393 qemu_coroutine_yield();
3394 return s
->ret
? 0 : -1;
3397 static int coroutine_fn
snapshot_delete_job_run(Job
*job
, Error
**errp
)
3399 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3401 s
->co
= qemu_coroutine_self();
3402 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3403 snapshot_delete_job_bh
, job
);
3404 qemu_coroutine_yield();
3405 return s
->ret
? 0 : -1;
3409 static const JobDriver snapshot_load_job_driver
= {
3410 .instance_size
= sizeof(SnapshotJob
),
3411 .job_type
= JOB_TYPE_SNAPSHOT_LOAD
,
3412 .run
= snapshot_load_job_run
,
3415 static const JobDriver snapshot_save_job_driver
= {
3416 .instance_size
= sizeof(SnapshotJob
),
3417 .job_type
= JOB_TYPE_SNAPSHOT_SAVE
,
3418 .run
= snapshot_save_job_run
,
3421 static const JobDriver snapshot_delete_job_driver
= {
3422 .instance_size
= sizeof(SnapshotJob
),
3423 .job_type
= JOB_TYPE_SNAPSHOT_DELETE
,
3424 .run
= snapshot_delete_job_run
,
3428 void qmp_snapshot_save(const char *job_id
,
3430 const char *vmstate
,
3436 s
= job_create(job_id
, &snapshot_save_job_driver
, NULL
,
3437 qemu_get_aio_context(), JOB_MANUAL_DISMISS
,
3443 s
->tag
= g_strdup(tag
);
3444 s
->vmstate
= g_strdup(vmstate
);
3445 s
->devices
= QAPI_CLONE(strList
, devices
);
3447 job_start(&s
->common
);
3450 void qmp_snapshot_load(const char *job_id
,
3452 const char *vmstate
,
3458 s
= job_create(job_id
, &snapshot_load_job_driver
, NULL
,
3459 qemu_get_aio_context(), JOB_MANUAL_DISMISS
,
3465 s
->tag
= g_strdup(tag
);
3466 s
->vmstate
= g_strdup(vmstate
);
3467 s
->devices
= QAPI_CLONE(strList
, devices
);
3469 job_start(&s
->common
);
3472 void qmp_snapshot_delete(const char *job_id
,
3479 s
= job_create(job_id
, &snapshot_delete_job_driver
, NULL
,
3480 qemu_get_aio_context(), JOB_MANUAL_DISMISS
,
3486 s
->tag
= g_strdup(tag
);
3487 s
->devices
= QAPI_CLONE(strList
, devices
);
3489 job_start(&s
->common
);