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/vmstate.h"
35 #include "migration/misc.h"
36 #include "migration/register.h"
37 #include "migration/global_state.h"
39 #include "qemu-file-channel.h"
40 #include "qemu-file.h"
42 #include "postcopy-ram.h"
43 #include "qapi/error.h"
44 #include "qapi/qapi-commands-migration.h"
45 #include "qapi/qmp/json-writer.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"
55 #include "qemu/main-loop.h"
56 #include "block/snapshot.h"
57 #include "qemu/cutils.h"
58 #include "io/channel-buffer.h"
59 #include "io/channel-file.h"
60 #include "sysemu/replay.h"
61 #include "sysemu/runstate.h"
62 #include "sysemu/sysemu.h"
63 #include "sysemu/xen.h"
64 #include "migration/colo.h"
65 #include "qemu/bitmap.h"
66 #include "net/announce.h"
67 #include "qemu/yank.h"
68 #include "yank_functions.h"
70 const unsigned int postcopy_ram_discard_version
;
72 /* Subcommands for QEMU_VM_COMMAND */
74 MIG_CMD_INVALID
= 0, /* Must be 0 */
75 MIG_CMD_OPEN_RETURN_PATH
, /* Tell the dest to open the Return path */
76 MIG_CMD_PING
, /* Request a PONG on the RP */
78 MIG_CMD_POSTCOPY_ADVISE
, /* Prior to any page transfers, just
79 warn we might want to do PC */
80 MIG_CMD_POSTCOPY_LISTEN
, /* Start listening for incoming
81 pages as it's running. */
82 MIG_CMD_POSTCOPY_RUN
, /* Start execution */
84 MIG_CMD_POSTCOPY_RAM_DISCARD
, /* A list of pages to discard that
85 were previously sent during
86 precopy but are dirty. */
87 MIG_CMD_PACKAGED
, /* Send a wrapped stream within this stream */
88 MIG_CMD_ENABLE_COLO
, /* Enable COLO */
89 MIG_CMD_POSTCOPY_RESUME
, /* resume postcopy on dest */
90 MIG_CMD_RECV_BITMAP
, /* Request for recved bitmap on dst */
94 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
95 static struct mig_cmd_args
{
96 ssize_t len
; /* -1 = variable */
99 [MIG_CMD_INVALID
] = { .len
= -1, .name
= "INVALID" },
100 [MIG_CMD_OPEN_RETURN_PATH
] = { .len
= 0, .name
= "OPEN_RETURN_PATH" },
101 [MIG_CMD_PING
] = { .len
= sizeof(uint32_t), .name
= "PING" },
102 [MIG_CMD_POSTCOPY_ADVISE
] = { .len
= -1, .name
= "POSTCOPY_ADVISE" },
103 [MIG_CMD_POSTCOPY_LISTEN
] = { .len
= 0, .name
= "POSTCOPY_LISTEN" },
104 [MIG_CMD_POSTCOPY_RUN
] = { .len
= 0, .name
= "POSTCOPY_RUN" },
105 [MIG_CMD_POSTCOPY_RAM_DISCARD
] = {
106 .len
= -1, .name
= "POSTCOPY_RAM_DISCARD" },
107 [MIG_CMD_POSTCOPY_RESUME
] = { .len
= 0, .name
= "POSTCOPY_RESUME" },
108 [MIG_CMD_PACKAGED
] = { .len
= 4, .name
= "PACKAGED" },
109 [MIG_CMD_RECV_BITMAP
] = { .len
= -1, .name
= "RECV_BITMAP" },
110 [MIG_CMD_MAX
] = { .len
= -1, .name
= "MAX" },
113 /* Note for MIG_CMD_POSTCOPY_ADVISE:
114 * The format of arguments is depending on postcopy mode:
115 * - postcopy RAM only
116 * uint64_t host page size
117 * uint64_t taget page size
119 * - postcopy RAM and postcopy dirty bitmaps
120 * format is the same as for postcopy RAM only
122 * - postcopy dirty bitmaps only
123 * Nothing. Command length field is 0.
125 * Be careful: adding a new postcopy entity with some other parameters should
126 * not break format self-description ability. Good way is to introduce some
127 * generic extendable format with an exception for two old entities.
130 /***********************************************************/
131 /* savevm/loadvm support */
133 static ssize_t
block_writev_buffer(void *opaque
, struct iovec
*iov
, int iovcnt
,
134 int64_t pos
, Error
**errp
)
139 qemu_iovec_init_external(&qiov
, iov
, iovcnt
);
140 ret
= bdrv_writev_vmstate(opaque
, &qiov
, pos
);
148 static ssize_t
block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
,
149 size_t size
, Error
**errp
)
151 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
154 static int bdrv_fclose(void *opaque
, Error
**errp
)
156 return bdrv_flush(opaque
);
159 static const QEMUFileOps bdrv_read_ops
= {
160 .get_buffer
= block_get_buffer
,
164 static const QEMUFileOps bdrv_write_ops
= {
165 .writev_buffer
= block_writev_buffer
,
169 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
172 return qemu_fopen_ops(bs
, &bdrv_write_ops
, false);
174 return qemu_fopen_ops(bs
, &bdrv_read_ops
, false);
178 /* QEMUFile timer support.
179 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
182 void timer_put(QEMUFile
*f
, QEMUTimer
*ts
)
184 uint64_t expire_time
;
186 expire_time
= timer_expire_time_ns(ts
);
187 qemu_put_be64(f
, expire_time
);
190 void timer_get(QEMUFile
*f
, QEMUTimer
*ts
)
192 uint64_t expire_time
;
194 expire_time
= qemu_get_be64(f
);
195 if (expire_time
!= -1) {
196 timer_mod_ns(ts
, expire_time
);
203 /* VMState timer support.
204 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
207 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
,
208 const VMStateField
*field
)
215 static int put_timer(QEMUFile
*f
, void *pv
, size_t size
,
216 const VMStateField
*field
, JSONWriter
*vmdesc
)
224 const VMStateInfo vmstate_info_timer
= {
231 typedef struct CompatEntry
{
236 typedef struct SaveStateEntry
{
237 QTAILQ_ENTRY(SaveStateEntry
) entry
;
239 uint32_t instance_id
;
242 /* version id read from the stream */
245 /* section id read from the stream */
247 const SaveVMHandlers
*ops
;
248 const VMStateDescription
*vmsd
;
254 typedef struct SaveState
{
255 QTAILQ_HEAD(, SaveStateEntry
) handlers
;
256 SaveStateEntry
*handler_pri_head
[MIG_PRI_MAX
+ 1];
257 int global_section_id
;
260 uint32_t target_page_bits
;
262 MigrationCapability
*capabilities
;
266 static SaveState savevm_state
= {
267 .handlers
= QTAILQ_HEAD_INITIALIZER(savevm_state
.handlers
),
268 .handler_pri_head
= { [MIG_PRI_DEFAULT
... MIG_PRI_MAX
] = NULL
},
269 .global_section_id
= 0,
272 static bool should_validate_capability(int capability
)
274 assert(capability
>= 0 && capability
< MIGRATION_CAPABILITY__MAX
);
275 /* Validate only new capabilities to keep compatibility. */
276 switch (capability
) {
277 case MIGRATION_CAPABILITY_X_IGNORE_SHARED
:
284 static uint32_t get_validatable_capabilities_count(void)
286 MigrationState
*s
= migrate_get_current();
289 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
290 if (should_validate_capability(i
) && s
->enabled_capabilities
[i
]) {
297 static int configuration_pre_save(void *opaque
)
299 SaveState
*state
= opaque
;
300 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
301 MigrationState
*s
= migrate_get_current();
304 state
->len
= strlen(current_name
);
305 state
->name
= current_name
;
306 state
->target_page_bits
= qemu_target_page_bits();
308 state
->caps_count
= get_validatable_capabilities_count();
309 state
->capabilities
= g_renew(MigrationCapability
, state
->capabilities
,
311 for (i
= j
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
312 if (should_validate_capability(i
) && s
->enabled_capabilities
[i
]) {
313 state
->capabilities
[j
++] = i
;
316 state
->uuid
= qemu_uuid
;
321 static int configuration_post_save(void *opaque
)
323 SaveState
*state
= opaque
;
325 g_free(state
->capabilities
);
326 state
->capabilities
= NULL
;
327 state
->caps_count
= 0;
331 static int configuration_pre_load(void *opaque
)
333 SaveState
*state
= opaque
;
335 /* If there is no target-page-bits subsection it means the source
336 * predates the variable-target-page-bits support and is using the
337 * minimum possible value for this CPU.
339 state
->target_page_bits
= qemu_target_page_bits_min();
343 static bool configuration_validate_capabilities(SaveState
*state
)
346 MigrationState
*s
= migrate_get_current();
347 unsigned long *source_caps_bm
;
350 source_caps_bm
= bitmap_new(MIGRATION_CAPABILITY__MAX
);
351 for (i
= 0; i
< state
->caps_count
; i
++) {
352 MigrationCapability capability
= state
->capabilities
[i
];
353 set_bit(capability
, source_caps_bm
);
356 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
357 bool source_state
, target_state
;
358 if (!should_validate_capability(i
)) {
361 source_state
= test_bit(i
, source_caps_bm
);
362 target_state
= s
->enabled_capabilities
[i
];
363 if (source_state
!= target_state
) {
364 error_report("Capability %s is %s, but received capability is %s",
365 MigrationCapability_str(i
),
366 target_state
? "on" : "off",
367 source_state
? "on" : "off");
369 /* Don't break here to report all failed capabilities */
373 g_free(source_caps_bm
);
377 static int configuration_post_load(void *opaque
, int version_id
)
379 SaveState
*state
= opaque
;
380 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
383 if (strncmp(state
->name
, current_name
, state
->len
) != 0) {
384 error_report("Machine type received is '%.*s' and local is '%s'",
385 (int) state
->len
, state
->name
, current_name
);
390 if (state
->target_page_bits
!= qemu_target_page_bits()) {
391 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
392 state
->target_page_bits
, qemu_target_page_bits());
397 if (!configuration_validate_capabilities(state
)) {
403 g_free((void *)state
->name
);
406 g_free(state
->capabilities
);
407 state
->capabilities
= NULL
;
408 state
->caps_count
= 0;
413 static int get_capability(QEMUFile
*f
, void *pv
, size_t size
,
414 const VMStateField
*field
)
416 MigrationCapability
*capability
= pv
;
417 char capability_str
[UINT8_MAX
+ 1];
421 len
= qemu_get_byte(f
);
422 qemu_get_buffer(f
, (uint8_t *)capability_str
, len
);
423 capability_str
[len
] = '\0';
424 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
425 if (!strcmp(MigrationCapability_str(i
), capability_str
)) {
430 error_report("Received unknown capability %s", capability_str
);
434 static int put_capability(QEMUFile
*f
, void *pv
, size_t size
,
435 const VMStateField
*field
, JSONWriter
*vmdesc
)
437 MigrationCapability
*capability
= pv
;
438 const char *capability_str
= MigrationCapability_str(*capability
);
439 size_t len
= strlen(capability_str
);
440 assert(len
<= UINT8_MAX
);
442 qemu_put_byte(f
, len
);
443 qemu_put_buffer(f
, (uint8_t *)capability_str
, len
);
447 static const VMStateInfo vmstate_info_capability
= {
448 .name
= "capability",
449 .get
= get_capability
,
450 .put
= put_capability
,
453 /* The target-page-bits subsection is present only if the
454 * target page size is not the same as the default (ie the
455 * minimum page size for a variable-page-size guest CPU).
456 * If it is present then it contains the actual target page
457 * bits for the machine, and migration will fail if the
458 * two ends don't agree about it.
460 static bool vmstate_target_page_bits_needed(void *opaque
)
462 return qemu_target_page_bits()
463 > qemu_target_page_bits_min();
466 static const VMStateDescription vmstate_target_page_bits
= {
467 .name
= "configuration/target-page-bits",
469 .minimum_version_id
= 1,
470 .needed
= vmstate_target_page_bits_needed
,
471 .fields
= (VMStateField
[]) {
472 VMSTATE_UINT32(target_page_bits
, SaveState
),
473 VMSTATE_END_OF_LIST()
477 static bool vmstate_capabilites_needed(void *opaque
)
479 return get_validatable_capabilities_count() > 0;
482 static const VMStateDescription vmstate_capabilites
= {
483 .name
= "configuration/capabilities",
485 .minimum_version_id
= 1,
486 .needed
= vmstate_capabilites_needed
,
487 .fields
= (VMStateField
[]) {
488 VMSTATE_UINT32_V(caps_count
, SaveState
, 1),
489 VMSTATE_VARRAY_UINT32_ALLOC(capabilities
, SaveState
, caps_count
, 1,
490 vmstate_info_capability
,
491 MigrationCapability
),
492 VMSTATE_END_OF_LIST()
496 static bool vmstate_uuid_needed(void *opaque
)
498 return qemu_uuid_set
&& migrate_validate_uuid();
501 static int vmstate_uuid_post_load(void *opaque
, int version_id
)
503 SaveState
*state
= opaque
;
504 char uuid_src
[UUID_FMT_LEN
+ 1];
505 char uuid_dst
[UUID_FMT_LEN
+ 1];
507 if (!qemu_uuid_set
) {
509 * It's warning because user might not know UUID in some cases,
510 * e.g. load an old snapshot
512 qemu_uuid_unparse(&state
->uuid
, uuid_src
);
513 warn_report("UUID is received %s, but local uuid isn't set",
517 if (!qemu_uuid_is_equal(&state
->uuid
, &qemu_uuid
)) {
518 qemu_uuid_unparse(&state
->uuid
, uuid_src
);
519 qemu_uuid_unparse(&qemu_uuid
, uuid_dst
);
520 error_report("UUID received is %s and local is %s", uuid_src
, uuid_dst
);
526 static const VMStateDescription vmstate_uuid
= {
527 .name
= "configuration/uuid",
529 .minimum_version_id
= 1,
530 .needed
= vmstate_uuid_needed
,
531 .post_load
= vmstate_uuid_post_load
,
532 .fields
= (VMStateField
[]) {
533 VMSTATE_UINT8_ARRAY_V(uuid
.data
, SaveState
, sizeof(QemuUUID
), 1),
534 VMSTATE_END_OF_LIST()
538 static const VMStateDescription vmstate_configuration
= {
539 .name
= "configuration",
541 .pre_load
= configuration_pre_load
,
542 .post_load
= configuration_post_load
,
543 .pre_save
= configuration_pre_save
,
544 .post_save
= configuration_post_save
,
545 .fields
= (VMStateField
[]) {
546 VMSTATE_UINT32(len
, SaveState
),
547 VMSTATE_VBUFFER_ALLOC_UINT32(name
, SaveState
, 0, NULL
, len
),
548 VMSTATE_END_OF_LIST()
550 .subsections
= (const VMStateDescription
*[]) {
551 &vmstate_target_page_bits
,
552 &vmstate_capabilites
,
558 static void dump_vmstate_vmsd(FILE *out_file
,
559 const VMStateDescription
*vmsd
, int indent
,
562 static void dump_vmstate_vmsf(FILE *out_file
, const VMStateField
*field
,
565 fprintf(out_file
, "%*s{\n", indent
, "");
567 fprintf(out_file
, "%*s\"field\": \"%s\",\n", indent
, "", field
->name
);
568 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
570 fprintf(out_file
, "%*s\"field_exists\": %s,\n", indent
, "",
571 field
->field_exists
? "true" : "false");
572 fprintf(out_file
, "%*s\"size\": %zu", indent
, "", field
->size
);
573 if (field
->vmsd
!= NULL
) {
574 fprintf(out_file
, ",\n");
575 dump_vmstate_vmsd(out_file
, field
->vmsd
, indent
, false);
577 fprintf(out_file
, "\n%*s}", indent
- 2, "");
580 static void dump_vmstate_vmss(FILE *out_file
,
581 const VMStateDescription
**subsection
,
584 if (*subsection
!= NULL
) {
585 dump_vmstate_vmsd(out_file
, *subsection
, indent
, true);
589 static void dump_vmstate_vmsd(FILE *out_file
,
590 const VMStateDescription
*vmsd
, int indent
,
594 fprintf(out_file
, "%*s{\n", indent
, "");
596 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", "Description");
599 fprintf(out_file
, "%*s\"name\": \"%s\",\n", indent
, "", vmsd
->name
);
600 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
602 fprintf(out_file
, "%*s\"minimum_version_id\": %d", indent
, "",
603 vmsd
->minimum_version_id
);
604 if (vmsd
->fields
!= NULL
) {
605 const VMStateField
*field
= vmsd
->fields
;
608 fprintf(out_file
, ",\n%*s\"Fields\": [\n", indent
, "");
610 while (field
->name
!= NULL
) {
611 if (field
->flags
& VMS_MUST_EXIST
) {
612 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
617 fprintf(out_file
, ",\n");
619 dump_vmstate_vmsf(out_file
, field
, indent
+ 2);
623 fprintf(out_file
, "\n%*s]", indent
, "");
625 if (vmsd
->subsections
!= NULL
) {
626 const VMStateDescription
**subsection
= vmsd
->subsections
;
629 fprintf(out_file
, ",\n%*s\"Subsections\": [\n", indent
, "");
631 while (*subsection
!= NULL
) {
633 fprintf(out_file
, ",\n");
635 dump_vmstate_vmss(out_file
, subsection
, indent
+ 2);
639 fprintf(out_file
, "\n%*s]", indent
, "");
641 fprintf(out_file
, "\n%*s}", indent
- 2, "");
644 static void dump_machine_type(FILE *out_file
)
648 mc
= MACHINE_GET_CLASS(current_machine
);
650 fprintf(out_file
, " \"vmschkmachine\": {\n");
651 fprintf(out_file
, " \"Name\": \"%s\"\n", mc
->name
);
652 fprintf(out_file
, " },\n");
655 void dump_vmstate_json_to_file(FILE *out_file
)
660 fprintf(out_file
, "{\n");
661 dump_machine_type(out_file
);
664 list
= object_class_get_list(TYPE_DEVICE
, true);
665 for (elt
= list
; elt
; elt
= elt
->next
) {
666 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
676 fprintf(out_file
, ",\n");
678 name
= object_class_get_name(OBJECT_CLASS(dc
));
679 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", name
);
681 fprintf(out_file
, "%*s\"Name\": \"%s\",\n", indent
, "", name
);
682 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
683 dc
->vmsd
->version_id
);
684 fprintf(out_file
, "%*s\"minimum_version_id\": %d,\n", indent
, "",
685 dc
->vmsd
->minimum_version_id
);
687 dump_vmstate_vmsd(out_file
, dc
->vmsd
, indent
, false);
689 fprintf(out_file
, "\n%*s}", indent
- 2, "");
692 fprintf(out_file
, "\n}\n");
697 static uint32_t calculate_new_instance_id(const char *idstr
)
700 uint32_t instance_id
= 0;
702 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
703 if (strcmp(idstr
, se
->idstr
) == 0
704 && instance_id
<= se
->instance_id
) {
705 instance_id
= se
->instance_id
+ 1;
708 /* Make sure we never loop over without being noticed */
709 assert(instance_id
!= VMSTATE_INSTANCE_ID_ANY
);
713 static int calculate_compat_instance_id(const char *idstr
)
718 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
723 if (strcmp(idstr
, se
->compat
->idstr
) == 0
724 && instance_id
<= se
->compat
->instance_id
) {
725 instance_id
= se
->compat
->instance_id
+ 1;
731 static inline MigrationPriority
save_state_priority(SaveStateEntry
*se
)
734 return se
->vmsd
->priority
;
736 return MIG_PRI_DEFAULT
;
739 static void savevm_state_handler_insert(SaveStateEntry
*nse
)
741 MigrationPriority priority
= save_state_priority(nse
);
745 assert(priority
<= MIG_PRI_MAX
);
747 for (i
= priority
- 1; i
>= 0; i
--) {
748 se
= savevm_state
.handler_pri_head
[i
];
750 assert(save_state_priority(se
) < priority
);
756 QTAILQ_INSERT_BEFORE(se
, nse
, entry
);
758 QTAILQ_INSERT_TAIL(&savevm_state
.handlers
, nse
, entry
);
761 if (savevm_state
.handler_pri_head
[priority
] == NULL
) {
762 savevm_state
.handler_pri_head
[priority
] = nse
;
766 static void savevm_state_handler_remove(SaveStateEntry
*se
)
768 SaveStateEntry
*next
;
769 MigrationPriority priority
= save_state_priority(se
);
771 if (se
== savevm_state
.handler_pri_head
[priority
]) {
772 next
= QTAILQ_NEXT(se
, entry
);
773 if (next
!= NULL
&& save_state_priority(next
) == priority
) {
774 savevm_state
.handler_pri_head
[priority
] = next
;
776 savevm_state
.handler_pri_head
[priority
] = NULL
;
779 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
782 /* TODO: Individual devices generally have very little idea about the rest
783 of the system, so instance_id should be removed/replaced.
784 Meanwhile pass -1 as instance_id if you do not already have a clearly
785 distinguishing id for all instances of your device class. */
786 int register_savevm_live(const char *idstr
,
787 uint32_t instance_id
,
789 const SaveVMHandlers
*ops
,
794 se
= g_new0(SaveStateEntry
, 1);
795 se
->version_id
= version_id
;
796 se
->section_id
= savevm_state
.global_section_id
++;
800 /* if this is a live_savem then set is_ram */
801 if (ops
->save_setup
!= NULL
) {
805 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
807 if (instance_id
== VMSTATE_INSTANCE_ID_ANY
) {
808 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
810 se
->instance_id
= instance_id
;
812 assert(!se
->compat
|| se
->instance_id
== 0);
813 savevm_state_handler_insert(se
);
817 void unregister_savevm(VMStateIf
*obj
, const char *idstr
, void *opaque
)
819 SaveStateEntry
*se
, *new_se
;
823 char *oid
= vmstate_if_get_id(obj
);
825 pstrcpy(id
, sizeof(id
), oid
);
826 pstrcat(id
, sizeof(id
), "/");
830 pstrcat(id
, sizeof(id
), idstr
);
832 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
833 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
834 savevm_state_handler_remove(se
);
841 int vmstate_register_with_alias_id(VMStateIf
*obj
, uint32_t instance_id
,
842 const VMStateDescription
*vmsd
,
843 void *opaque
, int alias_id
,
844 int required_for_version
,
849 /* If this triggers, alias support can be dropped for the vmsd. */
850 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
852 se
= g_new0(SaveStateEntry
, 1);
853 se
->version_id
= vmsd
->version_id
;
854 se
->section_id
= savevm_state
.global_section_id
++;
857 se
->alias_id
= alias_id
;
860 char *id
= vmstate_if_get_id(obj
);
862 if (snprintf(se
->idstr
, sizeof(se
->idstr
), "%s/", id
) >=
864 error_setg(errp
, "Path too long for VMState (%s)", id
);
872 se
->compat
= g_new0(CompatEntry
, 1);
873 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
874 se
->compat
->instance_id
= instance_id
== VMSTATE_INSTANCE_ID_ANY
?
875 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
876 instance_id
= VMSTATE_INSTANCE_ID_ANY
;
879 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
881 if (instance_id
== VMSTATE_INSTANCE_ID_ANY
) {
882 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
884 se
->instance_id
= instance_id
;
886 assert(!se
->compat
|| se
->instance_id
== 0);
887 savevm_state_handler_insert(se
);
891 void vmstate_unregister(VMStateIf
*obj
, const VMStateDescription
*vmsd
,
894 SaveStateEntry
*se
, *new_se
;
896 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
897 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
898 savevm_state_handler_remove(se
);
905 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
)
907 trace_vmstate_load(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
908 if (!se
->vmsd
) { /* Old style */
909 return se
->ops
->load_state(f
, se
->opaque
, se
->load_version_id
);
911 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, se
->load_version_id
);
914 static void vmstate_save_old_style(QEMUFile
*f
, SaveStateEntry
*se
,
917 int64_t old_offset
, size
;
919 old_offset
= qemu_ftell_fast(f
);
920 se
->ops
->save_state(f
, se
->opaque
);
921 size
= qemu_ftell_fast(f
) - old_offset
;
924 json_writer_int64(vmdesc
, "size", size
);
925 json_writer_start_array(vmdesc
, "fields");
926 json_writer_start_object(vmdesc
, NULL
);
927 json_writer_str(vmdesc
, "name", "data");
928 json_writer_int64(vmdesc
, "size", size
);
929 json_writer_str(vmdesc
, "type", "buffer");
930 json_writer_end_object(vmdesc
);
931 json_writer_end_array(vmdesc
);
935 static int vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
,
938 trace_vmstate_save(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
940 vmstate_save_old_style(f
, se
, vmdesc
);
943 return vmstate_save_state(f
, se
->vmsd
, se
->opaque
, 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
);
980 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
981 * command and associated data.
983 * @f: File to send command on
984 * @command: Command type to send
985 * @len: Length of associated data
986 * @data: Data associated with command.
988 static void qemu_savevm_command_send(QEMUFile
*f
,
989 enum qemu_vm_cmd command
,
993 trace_savevm_command_send(command
, len
);
994 qemu_put_byte(f
, QEMU_VM_COMMAND
);
995 qemu_put_be16(f
, (uint16_t)command
);
996 qemu_put_be16(f
, len
);
997 qemu_put_buffer(f
, data
, len
);
1001 void qemu_savevm_send_colo_enable(QEMUFile
*f
)
1003 trace_savevm_send_colo_enable();
1004 qemu_savevm_command_send(f
, MIG_CMD_ENABLE_COLO
, 0, NULL
);
1007 void qemu_savevm_send_ping(QEMUFile
*f
, uint32_t value
)
1011 trace_savevm_send_ping(value
);
1012 buf
= cpu_to_be32(value
);
1013 qemu_savevm_command_send(f
, MIG_CMD_PING
, sizeof(value
), (uint8_t *)&buf
);
1016 void qemu_savevm_send_open_return_path(QEMUFile
*f
)
1018 trace_savevm_send_open_return_path();
1019 qemu_savevm_command_send(f
, MIG_CMD_OPEN_RETURN_PATH
, 0, NULL
);
1022 /* We have a buffer of data to send; we don't want that all to be loaded
1023 * by the command itself, so the command contains just the length of the
1024 * extra buffer that we then send straight after it.
1025 * TODO: Must be a better way to organise that
1031 int qemu_savevm_send_packaged(QEMUFile
*f
, const uint8_t *buf
, size_t len
)
1035 if (len
> MAX_VM_CMD_PACKAGED_SIZE
) {
1036 error_report("%s: Unreasonably large packaged state: %zu",
1041 tmp
= cpu_to_be32(len
);
1043 trace_qemu_savevm_send_packaged();
1044 qemu_savevm_command_send(f
, MIG_CMD_PACKAGED
, 4, (uint8_t *)&tmp
);
1046 qemu_put_buffer(f
, buf
, len
);
1051 /* Send prior to any postcopy transfer */
1052 void qemu_savevm_send_postcopy_advise(QEMUFile
*f
)
1054 if (migrate_postcopy_ram()) {
1056 tmp
[0] = cpu_to_be64(ram_pagesize_summary());
1057 tmp
[1] = cpu_to_be64(qemu_target_page_size());
1059 trace_qemu_savevm_send_postcopy_advise();
1060 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
,
1061 16, (uint8_t *)tmp
);
1063 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
, 0, NULL
);
1067 /* Sent prior to starting the destination running in postcopy, discard pages
1068 * that have already been sent but redirtied on the source.
1069 * CMD_POSTCOPY_RAM_DISCARD consist of:
1071 * byte Length of name field (not including 0)
1072 * n x byte RAM block name
1073 * byte 0 terminator (just for safety)
1074 * n x Byte ranges within the named RAMBlock
1075 * be64 Start of the range
1078 * name: RAMBlock name that these entries are part of
1079 * len: Number of page entries
1080 * start_list: 'len' addresses
1081 * length_list: 'len' addresses
1084 void qemu_savevm_send_postcopy_ram_discard(QEMUFile
*f
, const char *name
,
1086 uint64_t *start_list
,
1087 uint64_t *length_list
)
1092 size_t name_len
= strlen(name
);
1094 trace_qemu_savevm_send_postcopy_ram_discard(name
, len
);
1095 assert(name_len
< 256);
1096 buf
= g_malloc0(1 + 1 + name_len
+ 1 + (8 + 8) * len
);
1097 buf
[0] = postcopy_ram_discard_version
;
1099 memcpy(buf
+ 2, name
, name_len
);
1100 tmplen
= 2 + name_len
;
1101 buf
[tmplen
++] = '\0';
1103 for (t
= 0; t
< len
; t
++) {
1104 stq_be_p(buf
+ tmplen
, start_list
[t
]);
1106 stq_be_p(buf
+ tmplen
, length_list
[t
]);
1109 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RAM_DISCARD
, tmplen
, buf
);
1113 /* Get the destination into a state where it can receive postcopy data. */
1114 void qemu_savevm_send_postcopy_listen(QEMUFile
*f
)
1116 trace_savevm_send_postcopy_listen();
1117 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_LISTEN
, 0, NULL
);
1120 /* Kick the destination into running */
1121 void qemu_savevm_send_postcopy_run(QEMUFile
*f
)
1123 trace_savevm_send_postcopy_run();
1124 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RUN
, 0, NULL
);
1127 void qemu_savevm_send_postcopy_resume(QEMUFile
*f
)
1129 trace_savevm_send_postcopy_resume();
1130 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RESUME
, 0, NULL
);
1133 void qemu_savevm_send_recv_bitmap(QEMUFile
*f
, char *block_name
)
1138 trace_savevm_send_recv_bitmap(block_name
);
1140 buf
[0] = len
= strlen(block_name
);
1141 memcpy(buf
+ 1, block_name
, len
);
1143 qemu_savevm_command_send(f
, MIG_CMD_RECV_BITMAP
, len
+ 1, (uint8_t *)buf
);
1146 bool qemu_savevm_state_blocked(Error
**errp
)
1150 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1151 if (se
->vmsd
&& se
->vmsd
->unmigratable
) {
1152 error_setg(errp
, "State blocked by non-migratable device '%s'",
1160 void qemu_savevm_non_migratable_list(strList
**reasons
)
1164 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1165 if (se
->vmsd
&& se
->vmsd
->unmigratable
) {
1166 QAPI_LIST_PREPEND(*reasons
,
1167 g_strdup_printf("non-migratable device: %s",
1173 void qemu_savevm_state_header(QEMUFile
*f
)
1175 trace_savevm_state_header();
1176 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1177 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1179 if (migrate_get_current()->send_configuration
) {
1180 qemu_put_byte(f
, QEMU_VM_CONFIGURATION
);
1181 vmstate_save_state(f
, &vmstate_configuration
, &savevm_state
, 0);
1185 bool qemu_savevm_state_guest_unplug_pending(void)
1189 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1190 if (se
->vmsd
&& se
->vmsd
->dev_unplug_pending
&&
1191 se
->vmsd
->dev_unplug_pending(se
->opaque
)) {
1199 void qemu_savevm_state_setup(QEMUFile
*f
)
1202 Error
*local_err
= NULL
;
1205 trace_savevm_state_setup();
1206 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1207 if (!se
->ops
|| !se
->ops
->save_setup
) {
1210 if (se
->ops
->is_active
) {
1211 if (!se
->ops
->is_active(se
->opaque
)) {
1215 save_section_header(f
, se
, QEMU_VM_SECTION_START
);
1217 ret
= se
->ops
->save_setup(f
, se
->opaque
);
1218 save_section_footer(f
, se
);
1220 qemu_file_set_error(f
, ret
);
1225 if (precopy_notify(PRECOPY_NOTIFY_SETUP
, &local_err
)) {
1226 error_report_err(local_err
);
1230 int qemu_savevm_state_resume_prepare(MigrationState
*s
)
1235 trace_savevm_state_resume_prepare();
1237 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1238 if (!se
->ops
|| !se
->ops
->resume_prepare
) {
1241 if (se
->ops
->is_active
) {
1242 if (!se
->ops
->is_active(se
->opaque
)) {
1246 ret
= se
->ops
->resume_prepare(s
, se
->opaque
);
1256 * this function has three return values:
1257 * negative: there was one error, and we have -errno.
1258 * 0 : We haven't finished, caller have to go again
1259 * 1 : We have finished, we can go to complete phase
1261 int qemu_savevm_state_iterate(QEMUFile
*f
, bool postcopy
)
1266 trace_savevm_state_iterate();
1267 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1268 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
1271 if (se
->ops
->is_active
&&
1272 !se
->ops
->is_active(se
->opaque
)) {
1275 if (se
->ops
->is_active_iterate
&&
1276 !se
->ops
->is_active_iterate(se
->opaque
)) {
1280 * In the postcopy phase, any device that doesn't know how to
1281 * do postcopy should have saved it's state in the _complete
1282 * call that's already run, it might get confused if we call
1283 * iterate afterwards.
1286 !(se
->ops
->has_postcopy
&& se
->ops
->has_postcopy(se
->opaque
))) {
1289 if (qemu_file_rate_limit(f
)) {
1292 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1294 save_section_header(f
, se
, QEMU_VM_SECTION_PART
);
1296 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
1297 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1298 save_section_footer(f
, se
);
1301 error_report("failed to save SaveStateEntry with id(name): %d(%s)",
1302 se
->section_id
, se
->idstr
);
1303 qemu_file_set_error(f
, ret
);
1306 /* Do not proceed to the next vmstate before this one reported
1307 completion of the current stage. This serializes the migration
1308 and reduces the probability that a faster changing state is
1309 synchronized over and over again. */
1316 static bool should_send_vmdesc(void)
1318 MachineState
*machine
= MACHINE(qdev_get_machine());
1319 bool in_postcopy
= migration_in_postcopy();
1320 return !machine
->suppress_vmdesc
&& !in_postcopy
;
1324 * Calls the save_live_complete_postcopy methods
1325 * causing the last few pages to be sent immediately and doing any associated
1327 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1328 * all the other devices, but that happens at the point we switch to postcopy.
1330 void qemu_savevm_state_complete_postcopy(QEMUFile
*f
)
1335 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1336 if (!se
->ops
|| !se
->ops
->save_live_complete_postcopy
) {
1339 if (se
->ops
->is_active
) {
1340 if (!se
->ops
->is_active(se
->opaque
)) {
1344 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1346 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1347 qemu_put_be32(f
, se
->section_id
);
1349 ret
= se
->ops
->save_live_complete_postcopy(f
, se
->opaque
);
1350 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1351 save_section_footer(f
, se
);
1353 qemu_file_set_error(f
, ret
);
1358 qemu_put_byte(f
, QEMU_VM_EOF
);
1363 int qemu_savevm_state_complete_precopy_iterable(QEMUFile
*f
, bool in_postcopy
)
1368 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1370 (in_postcopy
&& se
->ops
->has_postcopy
&&
1371 se
->ops
->has_postcopy(se
->opaque
)) ||
1372 !se
->ops
->save_live_complete_precopy
) {
1376 if (se
->ops
->is_active
) {
1377 if (!se
->ops
->is_active(se
->opaque
)) {
1381 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1383 save_section_header(f
, se
, QEMU_VM_SECTION_END
);
1385 ret
= se
->ops
->save_live_complete_precopy(f
, se
->opaque
);
1386 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1387 save_section_footer(f
, se
);
1389 qemu_file_set_error(f
, ret
);
1397 int qemu_savevm_state_complete_precopy_non_iterable(QEMUFile
*f
,
1399 bool inactivate_disks
)
1401 g_autoptr(JSONWriter
) vmdesc
= NULL
;
1406 vmdesc
= json_writer_new(false);
1407 json_writer_start_object(vmdesc
, NULL
);
1408 json_writer_int64(vmdesc
, "page_size", qemu_target_page_size());
1409 json_writer_start_array(vmdesc
, "devices");
1410 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1412 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1415 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1416 trace_savevm_section_skip(se
->idstr
, se
->section_id
);
1420 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1422 json_writer_start_object(vmdesc
, NULL
);
1423 json_writer_str(vmdesc
, "name", se
->idstr
);
1424 json_writer_int64(vmdesc
, "instance_id", se
->instance_id
);
1426 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1427 ret
= vmstate_save(f
, se
, vmdesc
);
1429 qemu_file_set_error(f
, ret
);
1432 trace_savevm_section_end(se
->idstr
, se
->section_id
, 0);
1433 save_section_footer(f
, se
);
1435 json_writer_end_object(vmdesc
);
1438 if (inactivate_disks
) {
1439 /* Inactivate before sending QEMU_VM_EOF so that the
1440 * bdrv_invalidate_cache_all() on the other end won't fail. */
1441 ret
= bdrv_inactivate_all();
1443 error_report("%s: bdrv_inactivate_all() failed (%d)",
1445 qemu_file_set_error(f
, ret
);
1450 /* Postcopy stream will still be going */
1451 qemu_put_byte(f
, QEMU_VM_EOF
);
1454 json_writer_end_array(vmdesc
);
1455 json_writer_end_object(vmdesc
);
1456 vmdesc_len
= strlen(json_writer_get(vmdesc
));
1458 if (should_send_vmdesc()) {
1459 qemu_put_byte(f
, QEMU_VM_VMDESCRIPTION
);
1460 qemu_put_be32(f
, vmdesc_len
);
1461 qemu_put_buffer(f
, (uint8_t *)json_writer_get(vmdesc
), vmdesc_len
);
1467 int qemu_savevm_state_complete_precopy(QEMUFile
*f
, bool iterable_only
,
1468 bool inactivate_disks
)
1471 Error
*local_err
= NULL
;
1472 bool in_postcopy
= migration_in_postcopy();
1474 if (precopy_notify(PRECOPY_NOTIFY_COMPLETE
, &local_err
)) {
1475 error_report_err(local_err
);
1478 trace_savevm_state_complete_precopy();
1480 cpu_synchronize_all_states();
1482 if (!in_postcopy
|| iterable_only
) {
1483 ret
= qemu_savevm_state_complete_precopy_iterable(f
, in_postcopy
);
1489 if (iterable_only
) {
1493 ret
= qemu_savevm_state_complete_precopy_non_iterable(f
, in_postcopy
,
1504 /* Give an estimate of the amount left to be transferred,
1505 * the result is split into the amount for units that can and
1506 * for units that can't do postcopy.
1508 void qemu_savevm_state_pending(QEMUFile
*f
, uint64_t threshold_size
,
1509 uint64_t *res_precopy_only
,
1510 uint64_t *res_compatible
,
1511 uint64_t *res_postcopy_only
)
1515 *res_precopy_only
= 0;
1516 *res_compatible
= 0;
1517 *res_postcopy_only
= 0;
1520 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1521 if (!se
->ops
|| !se
->ops
->save_live_pending
) {
1524 if (se
->ops
->is_active
) {
1525 if (!se
->ops
->is_active(se
->opaque
)) {
1529 se
->ops
->save_live_pending(f
, se
->opaque
, threshold_size
,
1530 res_precopy_only
, res_compatible
,
1535 void qemu_savevm_state_cleanup(void)
1538 Error
*local_err
= NULL
;
1540 if (precopy_notify(PRECOPY_NOTIFY_CLEANUP
, &local_err
)) {
1541 error_report_err(local_err
);
1544 trace_savevm_state_cleanup();
1545 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1546 if (se
->ops
&& se
->ops
->save_cleanup
) {
1547 se
->ops
->save_cleanup(se
->opaque
);
1552 static int qemu_savevm_state(QEMUFile
*f
, Error
**errp
)
1555 MigrationState
*ms
= migrate_get_current();
1556 MigrationStatus status
;
1558 if (migration_is_running(ms
->state
)) {
1559 error_setg(errp
, QERR_MIGRATION_ACTIVE
);
1563 if (migrate_use_block()) {
1564 error_setg(errp
, "Block migration and snapshots are incompatible");
1569 memset(&ram_counters
, 0, sizeof(ram_counters
));
1570 ms
->to_dst_file
= f
;
1572 qemu_mutex_unlock_iothread();
1573 qemu_savevm_state_header(f
);
1574 qemu_savevm_state_setup(f
);
1575 qemu_mutex_lock_iothread();
1577 while (qemu_file_get_error(f
) == 0) {
1578 if (qemu_savevm_state_iterate(f
, false) > 0) {
1583 ret
= qemu_file_get_error(f
);
1585 qemu_savevm_state_complete_precopy(f
, false, false);
1586 ret
= qemu_file_get_error(f
);
1588 qemu_savevm_state_cleanup();
1590 error_setg_errno(errp
, -ret
, "Error while writing VM state");
1594 status
= MIGRATION_STATUS_FAILED
;
1596 status
= MIGRATION_STATUS_COMPLETED
;
1598 migrate_set_state(&ms
->state
, MIGRATION_STATUS_SETUP
, status
);
1600 /* f is outer parameter, it should not stay in global migration state after
1601 * this function finished */
1602 ms
->to_dst_file
= NULL
;
1607 void qemu_savevm_live_state(QEMUFile
*f
)
1609 /* save QEMU_VM_SECTION_END section */
1610 qemu_savevm_state_complete_precopy(f
, true, false);
1611 qemu_put_byte(f
, QEMU_VM_EOF
);
1614 int qemu_save_device_state(QEMUFile
*f
)
1618 if (!migration_in_colo_state()) {
1619 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1620 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1622 cpu_synchronize_all_states();
1624 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1630 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1633 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1637 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1639 ret
= vmstate_save(f
, se
, NULL
);
1644 save_section_footer(f
, se
);
1647 qemu_put_byte(f
, QEMU_VM_EOF
);
1649 return qemu_file_get_error(f
);
1652 static SaveStateEntry
*find_se(const char *idstr
, uint32_t instance_id
)
1656 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1657 if (!strcmp(se
->idstr
, idstr
) &&
1658 (instance_id
== se
->instance_id
||
1659 instance_id
== se
->alias_id
))
1661 /* Migrating from an older version? */
1662 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
1663 if (!strcmp(se
->compat
->idstr
, idstr
) &&
1664 (instance_id
== se
->compat
->instance_id
||
1665 instance_id
== se
->alias_id
))
1672 enum LoadVMExitCodes
{
1673 /* Allow a command to quit all layers of nested loadvm loops */
1677 /* ------ incoming postcopy messages ------ */
1678 /* 'advise' arrives before any transfers just to tell us that a postcopy
1679 * *might* happen - it might be skipped if precopy transferred everything
1682 static int loadvm_postcopy_handle_advise(MigrationIncomingState
*mis
,
1685 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1686 uint64_t remote_pagesize_summary
, local_pagesize_summary
, remote_tps
;
1687 Error
*local_err
= NULL
;
1689 trace_loadvm_postcopy_handle_advise();
1690 if (ps
!= POSTCOPY_INCOMING_NONE
) {
1691 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps
);
1697 if (migrate_postcopy_ram()) {
1698 error_report("RAM postcopy is enabled but have 0 byte advise");
1703 if (!migrate_postcopy_ram()) {
1704 error_report("RAM postcopy is disabled but have 16 byte advise");
1709 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len
);
1713 if (!postcopy_ram_supported_by_host(mis
)) {
1714 postcopy_state_set(POSTCOPY_INCOMING_NONE
);
1718 remote_pagesize_summary
= qemu_get_be64(mis
->from_src_file
);
1719 local_pagesize_summary
= ram_pagesize_summary();
1721 if (remote_pagesize_summary
!= local_pagesize_summary
) {
1723 * This detects two potential causes of mismatch:
1724 * a) A mismatch in host page sizes
1725 * Some combinations of mismatch are probably possible but it gets
1726 * a bit more complicated. In particular we need to place whole
1727 * host pages on the dest at once, and we need to ensure that we
1728 * handle dirtying to make sure we never end up sending part of
1729 * a hostpage on it's own.
1730 * b) The use of different huge page sizes on source/destination
1731 * a more fine grain test is performed during RAM block migration
1732 * but this test here causes a nice early clear failure, and
1733 * also fails when passed to an older qemu that doesn't
1736 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1738 remote_pagesize_summary
, local_pagesize_summary
);
1742 remote_tps
= qemu_get_be64(mis
->from_src_file
);
1743 if (remote_tps
!= qemu_target_page_size()) {
1745 * Again, some differences could be dealt with, but for now keep it
1748 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1749 (int)remote_tps
, qemu_target_page_size());
1753 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_ADVISE
, &local_err
)) {
1754 error_report_err(local_err
);
1758 if (ram_postcopy_incoming_init(mis
)) {
1765 /* After postcopy we will be told to throw some pages away since they're
1766 * dirty and will have to be demand fetched. Must happen before CPU is
1768 * There can be 0..many of these messages, each encoding multiple pages.
1770 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState
*mis
,
1775 PostcopyState ps
= postcopy_state_get();
1777 trace_loadvm_postcopy_ram_handle_discard();
1780 case POSTCOPY_INCOMING_ADVISE
:
1782 tmp
= postcopy_ram_prepare_discard(mis
);
1788 case POSTCOPY_INCOMING_DISCARD
:
1789 /* Expected state */
1793 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1797 /* We're expecting a
1799 * a RAM ID string (length byte, name, 0 term)
1800 * then at least 1 16 byte chunk
1802 if (len
< (1 + 1 + 1 + 1 + 2 * 8)) {
1803 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1807 tmp
= qemu_get_byte(mis
->from_src_file
);
1808 if (tmp
!= postcopy_ram_discard_version
) {
1809 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp
);
1813 if (!qemu_get_counted_string(mis
->from_src_file
, ramid
)) {
1814 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1817 tmp
= qemu_get_byte(mis
->from_src_file
);
1819 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp
);
1823 len
-= 3 + strlen(ramid
);
1825 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1828 trace_loadvm_postcopy_ram_handle_discard_header(ramid
, len
);
1830 uint64_t start_addr
, block_length
;
1831 start_addr
= qemu_get_be64(mis
->from_src_file
);
1832 block_length
= qemu_get_be64(mis
->from_src_file
);
1835 int ret
= ram_discard_range(ramid
, start_addr
, block_length
);
1840 trace_loadvm_postcopy_ram_handle_discard_end();
1846 * Triggered by a postcopy_listen command; this thread takes over reading
1847 * the input stream, leaving the main thread free to carry on loading the rest
1848 * of the device state (from RAM).
1849 * (TODO:This could do with being in a postcopy file - but there again it's
1850 * just another input loop, not that postcopy specific)
1852 static void *postcopy_ram_listen_thread(void *opaque
)
1854 MigrationIncomingState
*mis
= migration_incoming_get_current();
1855 QEMUFile
*f
= mis
->from_src_file
;
1857 MigrationState
*migr
= migrate_get_current();
1859 object_ref(OBJECT(migr
));
1861 migrate_set_state(&mis
->state
, MIGRATION_STATUS_ACTIVE
,
1862 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1863 qemu_sem_post(&mis
->listen_thread_sem
);
1864 trace_postcopy_ram_listen_thread_start();
1866 rcu_register_thread();
1868 * Because we're a thread and not a coroutine we can't yield
1869 * in qemu_file, and thus we must be blocking now.
1871 qemu_file_set_blocking(f
, true);
1872 load_res
= qemu_loadvm_state_main(f
, mis
);
1875 * This is tricky, but, mis->from_src_file can change after it
1876 * returns, when postcopy recovery happened. In the future, we may
1877 * want a wrapper for the QEMUFile handle.
1879 f
= mis
->from_src_file
;
1881 /* And non-blocking again so we don't block in any cleanup */
1882 qemu_file_set_blocking(f
, false);
1884 trace_postcopy_ram_listen_thread_exit();
1886 qemu_file_set_error(f
, load_res
);
1887 dirty_bitmap_mig_cancel_incoming();
1888 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING
&&
1889 !migrate_postcopy_ram() && migrate_dirty_bitmaps())
1891 error_report("%s: loadvm failed during postcopy: %d. All states "
1892 "are migrated except dirty bitmaps. Some dirty "
1893 "bitmaps may be lost, and present migrated dirty "
1894 "bitmaps are correctly migrated and valid.",
1895 __func__
, load_res
);
1896 load_res
= 0; /* prevent further exit() */
1898 error_report("%s: loadvm failed: %d", __func__
, load_res
);
1899 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1900 MIGRATION_STATUS_FAILED
);
1903 if (load_res
>= 0) {
1905 * This looks good, but it's possible that the device loading in the
1906 * main thread hasn't finished yet, and so we might not be in 'RUN'
1907 * state yet; wait for the end of the main thread.
1909 qemu_event_wait(&mis
->main_thread_load_event
);
1911 postcopy_ram_incoming_cleanup(mis
);
1915 * If something went wrong then we have a bad state so exit;
1916 * depending how far we got it might be possible at this point
1917 * to leave the guest running and fire MCEs for pages that never
1918 * arrived as a desperate recovery step.
1920 rcu_unregister_thread();
1924 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1925 MIGRATION_STATUS_COMPLETED
);
1927 * If everything has worked fine, then the main thread has waited
1928 * for us to start, and we're the last use of the mis.
1929 * (If something broke then qemu will have to exit anyway since it's
1930 * got a bad migration state).
1932 migration_incoming_state_destroy();
1933 qemu_loadvm_state_cleanup();
1935 rcu_unregister_thread();
1936 mis
->have_listen_thread
= false;
1937 postcopy_state_set(POSTCOPY_INCOMING_END
);
1939 object_unref(OBJECT(migr
));
1944 /* After this message we must be able to immediately receive postcopy data */
1945 static int loadvm_postcopy_handle_listen(MigrationIncomingState
*mis
)
1947 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_LISTENING
);
1948 trace_loadvm_postcopy_handle_listen();
1949 Error
*local_err
= NULL
;
1951 if (ps
!= POSTCOPY_INCOMING_ADVISE
&& ps
!= POSTCOPY_INCOMING_DISCARD
) {
1952 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps
);
1955 if (ps
== POSTCOPY_INCOMING_ADVISE
) {
1957 * A rare case, we entered listen without having to do any discards,
1958 * so do the setup that's normally done at the time of the 1st discard.
1960 if (migrate_postcopy_ram()) {
1961 postcopy_ram_prepare_discard(mis
);
1966 * Sensitise RAM - can now generate requests for blocks that don't exist
1967 * However, at this point the CPU shouldn't be running, and the IO
1968 * shouldn't be doing anything yet so don't actually expect requests
1970 if (migrate_postcopy_ram()) {
1971 if (postcopy_ram_incoming_setup(mis
)) {
1972 postcopy_ram_incoming_cleanup(mis
);
1977 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_LISTEN
, &local_err
)) {
1978 error_report_err(local_err
);
1982 mis
->have_listen_thread
= true;
1983 /* Start up the listening thread and wait for it to signal ready */
1984 qemu_sem_init(&mis
->listen_thread_sem
, 0);
1985 qemu_thread_create(&mis
->listen_thread
, "postcopy/listen",
1986 postcopy_ram_listen_thread
, NULL
,
1987 QEMU_THREAD_DETACHED
);
1988 qemu_sem_wait(&mis
->listen_thread_sem
);
1989 qemu_sem_destroy(&mis
->listen_thread_sem
);
1994 static void loadvm_postcopy_handle_run_bh(void *opaque
)
1996 Error
*local_err
= NULL
;
1997 MigrationIncomingState
*mis
= opaque
;
1999 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
2002 cpu_synchronize_all_post_init();
2004 qemu_announce_self(&mis
->announce_timer
, migrate_announce_params());
2006 /* Make sure all file formats flush their mutable metadata.
2007 * If we get an error here, just don't restart the VM yet. */
2008 bdrv_invalidate_cache_all(&local_err
);
2010 error_report_err(local_err
);
2015 trace_loadvm_postcopy_handle_run_cpu_sync();
2017 trace_loadvm_postcopy_handle_run_vmstart();
2019 dirty_bitmap_mig_before_vm_start();
2022 /* Hold onto your hats, starting the CPU */
2025 /* leave it paused and let management decide when to start the CPU */
2026 runstate_set(RUN_STATE_PAUSED
);
2029 qemu_bh_delete(mis
->bh
);
2032 /* After all discards we can start running and asking for pages */
2033 static int loadvm_postcopy_handle_run(MigrationIncomingState
*mis
)
2035 PostcopyState ps
= postcopy_state_get();
2037 trace_loadvm_postcopy_handle_run();
2038 if (ps
!= POSTCOPY_INCOMING_LISTENING
) {
2039 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps
);
2043 postcopy_state_set(POSTCOPY_INCOMING_RUNNING
);
2044 mis
->bh
= qemu_bh_new(loadvm_postcopy_handle_run_bh
, mis
);
2045 qemu_bh_schedule(mis
->bh
);
2047 /* We need to finish reading the stream from the package
2048 * and also stop reading anything more from the stream that loaded the
2049 * package (since it's now being read by the listener thread).
2050 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
2055 /* We must be with page_request_mutex held */
2056 static gboolean
postcopy_sync_page_req(gpointer key
, gpointer value
,
2059 MigrationIncomingState
*mis
= data
;
2060 void *host_addr
= (void *) key
;
2061 ram_addr_t rb_offset
;
2065 rb
= qemu_ram_block_from_host(host_addr
, true, &rb_offset
);
2068 * This should _never_ happen. However be nice for a migrating VM to
2069 * not crash/assert. Post an error (note: intended to not use *_once
2070 * because we do want to see all the illegal addresses; and this can
2071 * never be triggered by the guest so we're safe) and move on next.
2073 error_report("%s: illegal host addr %p", __func__
, host_addr
);
2074 /* Try the next entry */
2078 ret
= migrate_send_rp_message_req_pages(mis
, rb
, rb_offset
);
2080 /* Please refer to above comment. */
2081 error_report("%s: send rp message failed for addr %p",
2082 __func__
, host_addr
);
2086 trace_postcopy_page_req_sync(host_addr
);
2091 static void migrate_send_rp_req_pages_pending(MigrationIncomingState
*mis
)
2093 WITH_QEMU_LOCK_GUARD(&mis
->page_request_mutex
) {
2094 g_tree_foreach(mis
->page_requested
, postcopy_sync_page_req
, mis
);
2098 static int loadvm_postcopy_handle_resume(MigrationIncomingState
*mis
)
2100 if (mis
->state
!= MIGRATION_STATUS_POSTCOPY_RECOVER
) {
2101 error_report("%s: illegal resume received", __func__
);
2102 /* Don't fail the load, only for this. */
2107 * Reset the last_rb before we resend any page req to source again, since
2108 * the source should have it reset already.
2110 mis
->last_rb
= NULL
;
2113 * This means source VM is ready to resume the postcopy migration.
2115 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_RECOVER
,
2116 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
2118 trace_loadvm_postcopy_handle_resume();
2120 /* Tell source that "we are ready" */
2121 migrate_send_rp_resume_ack(mis
, MIGRATION_RESUME_ACK_VALUE
);
2124 * After a postcopy recovery, the source should have lost the postcopy
2125 * queue, or potentially the requested pages could have been lost during
2126 * the network down phase. Let's re-sync with the source VM by re-sending
2127 * all the pending pages that we eagerly need, so these threads won't get
2128 * blocked too long due to the recovery.
2130 * Without this procedure, the faulted destination VM threads (waiting for
2131 * page requests right before the postcopy is interrupted) can keep hanging
2132 * until the pages are sent by the source during the background copying of
2133 * pages, or another thread faulted on the same address accidentally.
2135 migrate_send_rp_req_pages_pending(mis
);
2138 * It's time to switch state and release the fault thread to continue
2139 * service page faults. Note that this should be explicitly after the
2140 * above call to migrate_send_rp_req_pages_pending(). In short:
2141 * migrate_send_rp_message_req_pages() is not thread safe, yet.
2143 qemu_sem_post(&mis
->postcopy_pause_sem_fault
);
2149 * Immediately following this command is a blob of data containing an embedded
2150 * chunk of migration stream; read it and load it.
2152 * @mis: Incoming state
2153 * @length: Length of packaged data to read
2155 * Returns: Negative values on error
2158 static int loadvm_handle_cmd_packaged(MigrationIncomingState
*mis
)
2162 QIOChannelBuffer
*bioc
;
2164 length
= qemu_get_be32(mis
->from_src_file
);
2165 trace_loadvm_handle_cmd_packaged(length
);
2167 if (length
> MAX_VM_CMD_PACKAGED_SIZE
) {
2168 error_report("Unreasonably large packaged state: %zu", length
);
2172 bioc
= qio_channel_buffer_new(length
);
2173 qio_channel_set_name(QIO_CHANNEL(bioc
), "migration-loadvm-buffer");
2174 ret
= qemu_get_buffer(mis
->from_src_file
,
2177 if (ret
!= length
) {
2178 object_unref(OBJECT(bioc
));
2179 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
2181 return (ret
< 0) ? ret
: -EAGAIN
;
2183 bioc
->usage
+= length
;
2184 trace_loadvm_handle_cmd_packaged_received(ret
);
2186 QEMUFile
*packf
= qemu_fopen_channel_input(QIO_CHANNEL(bioc
));
2188 ret
= qemu_loadvm_state_main(packf
, mis
);
2189 trace_loadvm_handle_cmd_packaged_main(ret
);
2191 object_unref(OBJECT(bioc
));
2197 * Handle request that source requests for recved_bitmap on
2198 * destination. Payload format:
2200 * len (1 byte) + ramblock_name (<255 bytes)
2202 static int loadvm_handle_recv_bitmap(MigrationIncomingState
*mis
,
2205 QEMUFile
*file
= mis
->from_src_file
;
2207 char block_name
[256];
2210 cnt
= qemu_get_counted_string(file
, block_name
);
2212 error_report("%s: failed to read block name", __func__
);
2216 /* Validate before using the data */
2217 if (qemu_file_get_error(file
)) {
2218 return qemu_file_get_error(file
);
2221 if (len
!= cnt
+ 1) {
2222 error_report("%s: invalid payload length (%d)", __func__
, len
);
2226 rb
= qemu_ram_block_by_name(block_name
);
2228 error_report("%s: block '%s' not found", __func__
, block_name
);
2232 migrate_send_rp_recv_bitmap(mis
, block_name
);
2234 trace_loadvm_handle_recv_bitmap(block_name
);
2239 static int loadvm_process_enable_colo(MigrationIncomingState
*mis
)
2241 int ret
= migration_incoming_enable_colo();
2244 ret
= colo_init_ram_cache();
2246 migration_incoming_disable_colo();
2253 * Process an incoming 'QEMU_VM_COMMAND'
2254 * 0 just a normal return
2255 * LOADVM_QUIT All good, but exit the loop
2258 static int loadvm_process_command(QEMUFile
*f
)
2260 MigrationIncomingState
*mis
= migration_incoming_get_current();
2265 cmd
= qemu_get_be16(f
);
2266 len
= qemu_get_be16(f
);
2268 /* Check validity before continue processing of cmds */
2269 if (qemu_file_get_error(f
)) {
2270 return qemu_file_get_error(f
);
2273 trace_loadvm_process_command(cmd
, len
);
2274 if (cmd
>= MIG_CMD_MAX
|| cmd
== MIG_CMD_INVALID
) {
2275 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd
, len
);
2279 if (mig_cmd_args
[cmd
].len
!= -1 && mig_cmd_args
[cmd
].len
!= len
) {
2280 error_report("%s received with bad length - expecting %zu, got %d",
2281 mig_cmd_args
[cmd
].name
,
2282 (size_t)mig_cmd_args
[cmd
].len
, len
);
2287 case MIG_CMD_OPEN_RETURN_PATH
:
2288 if (mis
->to_src_file
) {
2289 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
2290 /* Not really a problem, so don't give up */
2293 mis
->to_src_file
= qemu_file_get_return_path(f
);
2294 if (!mis
->to_src_file
) {
2295 error_report("CMD_OPEN_RETURN_PATH failed");
2301 tmp32
= qemu_get_be32(f
);
2302 trace_loadvm_process_command_ping(tmp32
);
2303 if (!mis
->to_src_file
) {
2304 error_report("CMD_PING (0x%x) received with no return path",
2308 migrate_send_rp_pong(mis
, tmp32
);
2311 case MIG_CMD_PACKAGED
:
2312 return loadvm_handle_cmd_packaged(mis
);
2314 case MIG_CMD_POSTCOPY_ADVISE
:
2315 return loadvm_postcopy_handle_advise(mis
, len
);
2317 case MIG_CMD_POSTCOPY_LISTEN
:
2318 return loadvm_postcopy_handle_listen(mis
);
2320 case MIG_CMD_POSTCOPY_RUN
:
2321 return loadvm_postcopy_handle_run(mis
);
2323 case MIG_CMD_POSTCOPY_RAM_DISCARD
:
2324 return loadvm_postcopy_ram_handle_discard(mis
, len
);
2326 case MIG_CMD_POSTCOPY_RESUME
:
2327 return loadvm_postcopy_handle_resume(mis
);
2329 case MIG_CMD_RECV_BITMAP
:
2330 return loadvm_handle_recv_bitmap(mis
, len
);
2332 case MIG_CMD_ENABLE_COLO
:
2333 return loadvm_process_enable_colo(mis
);
2340 * Read a footer off the wire and check that it matches the expected section
2342 * Returns: true if the footer was good
2343 * false if there is a problem (and calls error_report to say why)
2345 static bool check_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
2349 uint32_t read_section_id
;
2351 if (!migrate_get_current()->send_section_footer
) {
2352 /* No footer to check */
2356 read_mark
= qemu_get_byte(f
);
2358 ret
= qemu_file_get_error(f
);
2360 error_report("%s: Read section footer failed: %d",
2365 if (read_mark
!= QEMU_VM_SECTION_FOOTER
) {
2366 error_report("Missing section footer for %s", se
->idstr
);
2370 read_section_id
= qemu_get_be32(f
);
2371 if (read_section_id
!= se
->load_section_id
) {
2372 error_report("Mismatched section id in footer for %s -"
2373 " read 0x%x expected 0x%x",
2374 se
->idstr
, read_section_id
, se
->load_section_id
);
2383 qemu_loadvm_section_start_full(QEMUFile
*f
, MigrationIncomingState
*mis
)
2385 uint32_t instance_id
, version_id
, section_id
;
2390 /* Read section start */
2391 section_id
= qemu_get_be32(f
);
2392 if (!qemu_get_counted_string(f
, idstr
)) {
2393 error_report("Unable to read ID string for section %u",
2397 instance_id
= qemu_get_be32(f
);
2398 version_id
= qemu_get_be32(f
);
2400 ret
= qemu_file_get_error(f
);
2402 error_report("%s: Failed to read instance/version ID: %d",
2407 trace_qemu_loadvm_state_section_startfull(section_id
, idstr
,
2408 instance_id
, version_id
);
2409 /* Find savevm section */
2410 se
= find_se(idstr
, instance_id
);
2412 error_report("Unknown savevm section or instance '%s' %"PRIu32
". "
2413 "Make sure that your current VM setup matches your "
2414 "saved VM setup, including any hotplugged devices",
2415 idstr
, instance_id
);
2419 /* Validate version */
2420 if (version_id
> se
->version_id
) {
2421 error_report("savevm: unsupported version %d for '%s' v%d",
2422 version_id
, idstr
, se
->version_id
);
2425 se
->load_version_id
= version_id
;
2426 se
->load_section_id
= section_id
;
2428 /* Validate if it is a device's state */
2429 if (xen_enabled() && se
->is_ram
) {
2430 error_report("loadvm: %s RAM loading not allowed on Xen", idstr
);
2434 ret
= vmstate_load(f
, se
);
2436 error_report("error while loading state for instance 0x%"PRIx32
" of"
2437 " device '%s'", instance_id
, idstr
);
2440 if (!check_section_footer(f
, se
)) {
2448 qemu_loadvm_section_part_end(QEMUFile
*f
, MigrationIncomingState
*mis
)
2450 uint32_t section_id
;
2454 section_id
= qemu_get_be32(f
);
2456 ret
= qemu_file_get_error(f
);
2458 error_report("%s: Failed to read section ID: %d",
2463 trace_qemu_loadvm_state_section_partend(section_id
);
2464 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2465 if (se
->load_section_id
== section_id
) {
2470 error_report("Unknown savevm section %d", section_id
);
2474 ret
= vmstate_load(f
, se
);
2476 error_report("error while loading state section id %d(%s)",
2477 section_id
, se
->idstr
);
2480 if (!check_section_footer(f
, se
)) {
2487 static int qemu_loadvm_state_header(QEMUFile
*f
)
2492 v
= qemu_get_be32(f
);
2493 if (v
!= QEMU_VM_FILE_MAGIC
) {
2494 error_report("Not a migration stream");
2498 v
= qemu_get_be32(f
);
2499 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
2500 error_report("SaveVM v2 format is obsolete and don't work anymore");
2503 if (v
!= QEMU_VM_FILE_VERSION
) {
2504 error_report("Unsupported migration stream version");
2508 if (migrate_get_current()->send_configuration
) {
2509 if (qemu_get_byte(f
) != QEMU_VM_CONFIGURATION
) {
2510 error_report("Configuration section missing");
2511 qemu_loadvm_state_cleanup();
2514 ret
= vmstate_load_state(f
, &vmstate_configuration
, &savevm_state
, 0);
2517 qemu_loadvm_state_cleanup();
2524 static int qemu_loadvm_state_setup(QEMUFile
*f
)
2529 trace_loadvm_state_setup();
2530 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2531 if (!se
->ops
|| !se
->ops
->load_setup
) {
2534 if (se
->ops
->is_active
) {
2535 if (!se
->ops
->is_active(se
->opaque
)) {
2540 ret
= se
->ops
->load_setup(f
, se
->opaque
);
2542 qemu_file_set_error(f
, ret
);
2543 error_report("Load state of device %s failed", se
->idstr
);
2550 void qemu_loadvm_state_cleanup(void)
2554 trace_loadvm_state_cleanup();
2555 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2556 if (se
->ops
&& se
->ops
->load_cleanup
) {
2557 se
->ops
->load_cleanup(se
->opaque
);
2562 /* Return true if we should continue the migration, or false. */
2563 static bool postcopy_pause_incoming(MigrationIncomingState
*mis
)
2565 trace_postcopy_pause_incoming();
2567 assert(migrate_postcopy_ram());
2569 /* Clear the triggered bit to allow one recovery */
2570 mis
->postcopy_recover_triggered
= false;
2573 * Unregister yank with either from/to src would work, since ioc behind it
2576 migration_ioc_unregister_yank_from_file(mis
->from_src_file
);
2578 assert(mis
->from_src_file
);
2579 qemu_file_shutdown(mis
->from_src_file
);
2580 qemu_fclose(mis
->from_src_file
);
2581 mis
->from_src_file
= NULL
;
2583 assert(mis
->to_src_file
);
2584 qemu_file_shutdown(mis
->to_src_file
);
2585 qemu_mutex_lock(&mis
->rp_mutex
);
2586 qemu_fclose(mis
->to_src_file
);
2587 mis
->to_src_file
= NULL
;
2588 qemu_mutex_unlock(&mis
->rp_mutex
);
2590 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
2591 MIGRATION_STATUS_POSTCOPY_PAUSED
);
2593 /* Notify the fault thread for the invalidated file handle */
2594 postcopy_fault_thread_notify(mis
);
2596 error_report("Detected IO failure for postcopy. "
2597 "Migration paused.");
2599 while (mis
->state
== MIGRATION_STATUS_POSTCOPY_PAUSED
) {
2600 qemu_sem_wait(&mis
->postcopy_pause_sem_dst
);
2603 trace_postcopy_pause_incoming_continued();
2608 int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
)
2610 uint8_t section_type
;
2615 section_type
= qemu_get_byte(f
);
2617 if (qemu_file_get_error(f
)) {
2618 ret
= qemu_file_get_error(f
);
2622 trace_qemu_loadvm_state_section(section_type
);
2623 switch (section_type
) {
2624 case QEMU_VM_SECTION_START
:
2625 case QEMU_VM_SECTION_FULL
:
2626 ret
= qemu_loadvm_section_start_full(f
, mis
);
2631 case QEMU_VM_SECTION_PART
:
2632 case QEMU_VM_SECTION_END
:
2633 ret
= qemu_loadvm_section_part_end(f
, mis
);
2638 case QEMU_VM_COMMAND
:
2639 ret
= loadvm_process_command(f
);
2640 trace_qemu_loadvm_state_section_command(ret
);
2641 if ((ret
< 0) || (ret
== LOADVM_QUIT
)) {
2646 /* This is the end of migration */
2649 error_report("Unknown savevm section type %d", section_type
);
2657 qemu_file_set_error(f
, ret
);
2659 /* Cancel bitmaps incoming regardless of recovery */
2660 dirty_bitmap_mig_cancel_incoming();
2663 * If we are during an active postcopy, then we pause instead
2664 * of bail out to at least keep the VM's dirty data. Note
2665 * that POSTCOPY_INCOMING_LISTENING stage is still not enough,
2666 * during which we're still receiving device states and we
2667 * still haven't yet started the VM on destination.
2669 * Only RAM postcopy supports recovery. Still, if RAM postcopy is
2670 * enabled, canceled bitmaps postcopy will not affect RAM postcopy
2673 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING
&&
2674 migrate_postcopy_ram() && postcopy_pause_incoming(mis
)) {
2675 /* Reset f to point to the newly created channel */
2676 f
= mis
->from_src_file
;
2683 int qemu_loadvm_state(QEMUFile
*f
)
2685 MigrationIncomingState
*mis
= migration_incoming_get_current();
2686 Error
*local_err
= NULL
;
2689 if (qemu_savevm_state_blocked(&local_err
)) {
2690 error_report_err(local_err
);
2694 ret
= qemu_loadvm_state_header(f
);
2699 if (qemu_loadvm_state_setup(f
) != 0) {
2703 cpu_synchronize_all_pre_loadvm();
2705 ret
= qemu_loadvm_state_main(f
, mis
);
2706 qemu_event_set(&mis
->main_thread_load_event
);
2708 trace_qemu_loadvm_state_post_main(ret
);
2710 if (mis
->have_listen_thread
) {
2711 /* Listen thread still going, can't clean up yet */
2716 ret
= qemu_file_get_error(f
);
2720 * Try to read in the VMDESC section as well, so that dumping tools that
2721 * intercept our migration stream have the chance to see it.
2724 /* We've got to be careful; if we don't read the data and just shut the fd
2725 * then the sender can error if we close while it's still sending.
2726 * We also mustn't read data that isn't there; some transports (RDMA)
2727 * will stall waiting for that data when the source has already closed.
2729 if (ret
== 0 && should_send_vmdesc()) {
2732 uint8_t section_type
= qemu_get_byte(f
);
2734 if (section_type
!= QEMU_VM_VMDESCRIPTION
) {
2735 error_report("Expected vmdescription section, but got %d",
2738 * It doesn't seem worth failing at this point since
2739 * we apparently have an otherwise valid VM state
2742 buf
= g_malloc(0x1000);
2743 size
= qemu_get_be32(f
);
2746 uint32_t read_chunk
= MIN(size
, 0x1000);
2747 qemu_get_buffer(f
, buf
, read_chunk
);
2754 qemu_loadvm_state_cleanup();
2755 cpu_synchronize_all_post_init();
2760 int qemu_load_device_state(QEMUFile
*f
)
2762 MigrationIncomingState
*mis
= migration_incoming_get_current();
2765 /* Load QEMU_VM_SECTION_FULL section */
2766 ret
= qemu_loadvm_state_main(f
, mis
);
2768 error_report("Failed to load device state: %d", ret
);
2772 cpu_synchronize_all_post_init();
2776 bool save_snapshot(const char *name
, bool overwrite
, const char *vmstate
,
2777 bool has_devices
, strList
*devices
, Error
**errp
)
2779 BlockDriverState
*bs
;
2780 QEMUSnapshotInfo sn1
, *sn
= &sn1
;
2783 int saved_vm_running
;
2784 uint64_t vm_state_size
;
2785 g_autoptr(GDateTime
) now
= g_date_time_new_now_local();
2786 AioContext
*aio_context
;
2788 if (migration_is_blocked(errp
)) {
2792 if (!replay_can_snapshot()) {
2793 error_setg(errp
, "Record/replay does not allow making snapshot "
2794 "right now. Try once more later.");
2798 if (!bdrv_all_can_snapshot(has_devices
, devices
, errp
)) {
2802 /* Delete old snapshots of the same name */
2805 if (bdrv_all_delete_snapshot(name
, has_devices
,
2806 devices
, errp
) < 0) {
2810 ret2
= bdrv_all_has_snapshot(name
, has_devices
, devices
, errp
);
2816 "Snapshot '%s' already exists in one or more devices",
2823 bs
= bdrv_all_find_vmstate_bs(vmstate
, has_devices
, devices
, errp
);
2827 aio_context
= bdrv_get_aio_context(bs
);
2829 saved_vm_running
= runstate_is_running();
2831 ret
= global_state_store();
2833 error_setg(errp
, "Error saving global state");
2836 vm_stop(RUN_STATE_SAVE_VM
);
2838 bdrv_drain_all_begin();
2840 aio_context_acquire(aio_context
);
2842 memset(sn
, 0, sizeof(*sn
));
2844 /* fill auxiliary fields */
2845 sn
->date_sec
= g_date_time_to_unix(now
);
2846 sn
->date_nsec
= g_date_time_get_microsecond(now
) * 1000;
2847 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2848 if (replay_mode
!= REPLAY_MODE_NONE
) {
2849 sn
->icount
= replay_get_current_icount();
2855 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
2857 g_autofree
char *autoname
= g_date_time_format(now
, "vm-%Y%m%d%H%M%S");
2858 pstrcpy(sn
->name
, sizeof(sn
->name
), autoname
);
2861 /* save the VM state */
2862 f
= qemu_fopen_bdrv(bs
, 1);
2864 error_setg(errp
, "Could not open VM state file");
2867 ret
= qemu_savevm_state(f
, errp
);
2868 vm_state_size
= qemu_ftell(f
);
2869 ret2
= qemu_fclose(f
);
2878 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
2879 * for itself. BDRV_POLL_WHILE() does not support nested locking because
2880 * it only releases the lock once. Therefore synchronous I/O will deadlock
2881 * unless we release the AioContext before bdrv_all_create_snapshot().
2883 aio_context_release(aio_context
);
2886 ret
= bdrv_all_create_snapshot(sn
, bs
, vm_state_size
,
2887 has_devices
, devices
, errp
);
2889 bdrv_all_delete_snapshot(sn
->name
, has_devices
, devices
, NULL
);
2897 aio_context_release(aio_context
);
2900 bdrv_drain_all_end();
2902 if (saved_vm_running
) {
2908 void qmp_xen_save_devices_state(const char *filename
, bool has_live
, bool live
,
2912 QIOChannelFile
*ioc
;
2913 int saved_vm_running
;
2917 /* live default to true so old version of Xen tool stack can have a
2918 * successful live migration */
2922 saved_vm_running
= runstate_is_running();
2923 vm_stop(RUN_STATE_SAVE_VM
);
2924 global_state_store_running();
2926 ioc
= qio_channel_file_new_path(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
,
2931 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-save-state");
2932 f
= qemu_fopen_channel_output(QIO_CHANNEL(ioc
));
2933 object_unref(OBJECT(ioc
));
2934 ret
= qemu_save_device_state(f
);
2935 if (ret
< 0 || qemu_fclose(f
) < 0) {
2936 error_setg(errp
, QERR_IO_ERROR
);
2938 /* libxl calls the QMP command "stop" before calling
2939 * "xen-save-devices-state" and in case of migration failure, libxl
2940 * would call "cont".
2941 * So call bdrv_inactivate_all (release locks) here to let the other
2942 * side of the migration take control of the images.
2944 if (live
&& !saved_vm_running
) {
2945 ret
= bdrv_inactivate_all();
2947 error_setg(errp
, "%s: bdrv_inactivate_all() failed (%d)",
2954 if (saved_vm_running
) {
2959 void qmp_xen_load_devices_state(const char *filename
, Error
**errp
)
2962 QIOChannelFile
*ioc
;
2965 /* Guest must be paused before loading the device state; the RAM state
2966 * will already have been loaded by xc
2968 if (runstate_is_running()) {
2969 error_setg(errp
, "Cannot update device state while vm is running");
2972 vm_stop(RUN_STATE_RESTORE_VM
);
2974 ioc
= qio_channel_file_new_path(filename
, O_RDONLY
| O_BINARY
, 0, errp
);
2978 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-load-state");
2979 f
= qemu_fopen_channel_input(QIO_CHANNEL(ioc
));
2980 object_unref(OBJECT(ioc
));
2982 ret
= qemu_loadvm_state(f
);
2985 error_setg(errp
, QERR_IO_ERROR
);
2987 migration_incoming_state_destroy();
2990 bool load_snapshot(const char *name
, const char *vmstate
,
2991 bool has_devices
, strList
*devices
, Error
**errp
)
2993 BlockDriverState
*bs_vm_state
;
2994 QEMUSnapshotInfo sn
;
2997 AioContext
*aio_context
;
2998 MigrationIncomingState
*mis
= migration_incoming_get_current();
3000 if (!bdrv_all_can_snapshot(has_devices
, devices
, errp
)) {
3003 ret
= bdrv_all_has_snapshot(name
, has_devices
, devices
, errp
);
3008 error_setg(errp
, "Snapshot '%s' does not exist in one or more devices",
3013 bs_vm_state
= bdrv_all_find_vmstate_bs(vmstate
, has_devices
, devices
, errp
);
3017 aio_context
= bdrv_get_aio_context(bs_vm_state
);
3019 /* Don't even try to load empty VM states */
3020 aio_context_acquire(aio_context
);
3021 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
3022 aio_context_release(aio_context
);
3025 } else if (sn
.vm_state_size
== 0) {
3026 error_setg(errp
, "This is a disk-only snapshot. Revert to it "
3027 " offline using qemu-img");
3032 * Flush the record/replay queue. Now the VM state is going
3033 * to change. Therefore we don't need to preserve its consistency
3035 replay_flush_events();
3037 /* Flush all IO requests so they don't interfere with the new state. */
3038 bdrv_drain_all_begin();
3040 ret
= bdrv_all_goto_snapshot(name
, has_devices
, devices
, errp
);
3045 /* restore the VM state */
3046 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
3048 error_setg(errp
, "Could not open VM state file");
3052 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
3053 mis
->from_src_file
= f
;
3055 if (!yank_register_instance(MIGRATION_YANK_INSTANCE
, errp
)) {
3059 aio_context_acquire(aio_context
);
3060 ret
= qemu_loadvm_state(f
);
3061 migration_incoming_state_destroy();
3062 aio_context_release(aio_context
);
3064 bdrv_drain_all_end();
3067 error_setg(errp
, "Error %d while loading VM state", ret
);
3074 bdrv_drain_all_end();
3078 bool delete_snapshot(const char *name
, bool has_devices
,
3079 strList
*devices
, Error
**errp
)
3081 if (!bdrv_all_can_snapshot(has_devices
, devices
, errp
)) {
3085 if (bdrv_all_delete_snapshot(name
, has_devices
, devices
, errp
) < 0) {
3092 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
3094 qemu_ram_set_idstr(mr
->ram_block
,
3095 memory_region_name(mr
), dev
);
3096 qemu_ram_set_migratable(mr
->ram_block
);
3099 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
3101 qemu_ram_unset_idstr(mr
->ram_block
);
3102 qemu_ram_unset_migratable(mr
->ram_block
);
3105 void vmstate_register_ram_global(MemoryRegion
*mr
)
3107 vmstate_register_ram(mr
, NULL
);
3110 bool vmstate_check_only_migratable(const VMStateDescription
*vmsd
)
3112 /* check needed if --only-migratable is specified */
3113 if (!only_migratable
) {
3117 return !(vmsd
&& vmsd
->unmigratable
);
3120 typedef struct SnapshotJob
{
3130 static void qmp_snapshot_job_free(SnapshotJob
*s
)
3134 qapi_free_strList(s
->devices
);
3138 static void snapshot_load_job_bh(void *opaque
)
3141 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3142 int orig_vm_running
;
3144 job_progress_set_remaining(&s
->common
, 1);
3146 orig_vm_running
= runstate_is_running();
3147 vm_stop(RUN_STATE_RESTORE_VM
);
3149 s
->ret
= load_snapshot(s
->tag
, s
->vmstate
, true, s
->devices
, s
->errp
);
3150 if (s
->ret
&& orig_vm_running
) {
3154 job_progress_update(&s
->common
, 1);
3156 qmp_snapshot_job_free(s
);
3160 static void snapshot_save_job_bh(void *opaque
)
3163 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3165 job_progress_set_remaining(&s
->common
, 1);
3166 s
->ret
= save_snapshot(s
->tag
, false, s
->vmstate
,
3167 true, s
->devices
, s
->errp
);
3168 job_progress_update(&s
->common
, 1);
3170 qmp_snapshot_job_free(s
);
3174 static void snapshot_delete_job_bh(void *opaque
)
3177 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3179 job_progress_set_remaining(&s
->common
, 1);
3180 s
->ret
= delete_snapshot(s
->tag
, true, s
->devices
, s
->errp
);
3181 job_progress_update(&s
->common
, 1);
3183 qmp_snapshot_job_free(s
);
3187 static int coroutine_fn
snapshot_save_job_run(Job
*job
, Error
**errp
)
3189 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3191 s
->co
= qemu_coroutine_self();
3192 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3193 snapshot_save_job_bh
, job
);
3194 qemu_coroutine_yield();
3195 return s
->ret
? 0 : -1;
3198 static int coroutine_fn
snapshot_load_job_run(Job
*job
, Error
**errp
)
3200 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3202 s
->co
= qemu_coroutine_self();
3203 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3204 snapshot_load_job_bh
, job
);
3205 qemu_coroutine_yield();
3206 return s
->ret
? 0 : -1;
3209 static int coroutine_fn
snapshot_delete_job_run(Job
*job
, Error
**errp
)
3211 SnapshotJob
*s
= container_of(job
, SnapshotJob
, common
);
3213 s
->co
= qemu_coroutine_self();
3214 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3215 snapshot_delete_job_bh
, job
);
3216 qemu_coroutine_yield();
3217 return s
->ret
? 0 : -1;
3221 static const JobDriver snapshot_load_job_driver
= {
3222 .instance_size
= sizeof(SnapshotJob
),
3223 .job_type
= JOB_TYPE_SNAPSHOT_LOAD
,
3224 .run
= snapshot_load_job_run
,
3227 static const JobDriver snapshot_save_job_driver
= {
3228 .instance_size
= sizeof(SnapshotJob
),
3229 .job_type
= JOB_TYPE_SNAPSHOT_SAVE
,
3230 .run
= snapshot_save_job_run
,
3233 static const JobDriver snapshot_delete_job_driver
= {
3234 .instance_size
= sizeof(SnapshotJob
),
3235 .job_type
= JOB_TYPE_SNAPSHOT_DELETE
,
3236 .run
= snapshot_delete_job_run
,
3240 void qmp_snapshot_save(const char *job_id
,
3242 const char *vmstate
,
3248 s
= job_create(job_id
, &snapshot_save_job_driver
, NULL
,
3249 qemu_get_aio_context(), JOB_MANUAL_DISMISS
,
3255 s
->tag
= g_strdup(tag
);
3256 s
->vmstate
= g_strdup(vmstate
);
3257 s
->devices
= QAPI_CLONE(strList
, devices
);
3259 job_start(&s
->common
);
3262 void qmp_snapshot_load(const char *job_id
,
3264 const char *vmstate
,
3270 s
= job_create(job_id
, &snapshot_load_job_driver
, NULL
,
3271 qemu_get_aio_context(), JOB_MANUAL_DISMISS
,
3277 s
->tag
= g_strdup(tag
);
3278 s
->vmstate
= g_strdup(vmstate
);
3279 s
->devices
= QAPI_CLONE(strList
, devices
);
3281 job_start(&s
->common
);
3284 void qmp_snapshot_delete(const char *job_id
,
3291 s
= job_create(job_id
, &snapshot_delete_job_driver
, NULL
,
3292 qemu_get_aio_context(), JOB_MANUAL_DISMISS
,
3298 s
->tag
= g_strdup(tag
);
3299 s
->devices
= QAPI_CLONE(strList
, devices
);
3301 job_start(&s
->common
);