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"
31 #include "hw/xen/xen.h"
33 #include "migration.h"
34 #include "migration/snapshot.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/qapi-commands-misc.h"
46 #include "qapi/qmp/qerror.h"
47 #include "qemu/error-report.h"
48 #include "sysemu/cpus.h"
49 #include "exec/memory.h"
50 #include "exec/target_page.h"
53 #include "block/snapshot.h"
54 #include "qemu/cutils.h"
55 #include "io/channel-buffer.h"
56 #include "io/channel-file.h"
57 #include "sysemu/replay.h"
61 #define ETH_P_RARP 0x8035
63 #define ARP_HTYPE_ETH 0x0001
64 #define ARP_PTYPE_IP 0x0800
65 #define ARP_OP_REQUEST_REV 0x3
67 const unsigned int postcopy_ram_discard_version
= 0;
69 /* Subcommands for QEMU_VM_COMMAND */
71 MIG_CMD_INVALID
= 0, /* Must be 0 */
72 MIG_CMD_OPEN_RETURN_PATH
, /* Tell the dest to open the Return path */
73 MIG_CMD_PING
, /* Request a PONG on the RP */
75 MIG_CMD_POSTCOPY_ADVISE
, /* Prior to any page transfers, just
76 warn we might want to do PC */
77 MIG_CMD_POSTCOPY_LISTEN
, /* Start listening for incoming
78 pages as it's running. */
79 MIG_CMD_POSTCOPY_RUN
, /* Start execution */
81 MIG_CMD_POSTCOPY_RAM_DISCARD
, /* A list of pages to discard that
82 were previously sent during
83 precopy but are dirty. */
84 MIG_CMD_PACKAGED
, /* Send a wrapped stream within this stream */
85 MIG_CMD_POSTCOPY_RESUME
, /* resume postcopy on dest */
86 MIG_CMD_RECV_BITMAP
, /* Request for recved bitmap on dst */
90 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
91 static struct mig_cmd_args
{
92 ssize_t len
; /* -1 = variable */
95 [MIG_CMD_INVALID
] = { .len
= -1, .name
= "INVALID" },
96 [MIG_CMD_OPEN_RETURN_PATH
] = { .len
= 0, .name
= "OPEN_RETURN_PATH" },
97 [MIG_CMD_PING
] = { .len
= sizeof(uint32_t), .name
= "PING" },
98 [MIG_CMD_POSTCOPY_ADVISE
] = { .len
= -1, .name
= "POSTCOPY_ADVISE" },
99 [MIG_CMD_POSTCOPY_LISTEN
] = { .len
= 0, .name
= "POSTCOPY_LISTEN" },
100 [MIG_CMD_POSTCOPY_RUN
] = { .len
= 0, .name
= "POSTCOPY_RUN" },
101 [MIG_CMD_POSTCOPY_RAM_DISCARD
] = {
102 .len
= -1, .name
= "POSTCOPY_RAM_DISCARD" },
103 [MIG_CMD_POSTCOPY_RESUME
] = { .len
= 0, .name
= "POSTCOPY_RESUME" },
104 [MIG_CMD_PACKAGED
] = { .len
= 4, .name
= "PACKAGED" },
105 [MIG_CMD_RECV_BITMAP
] = { .len
= -1, .name
= "RECV_BITMAP" },
106 [MIG_CMD_MAX
] = { .len
= -1, .name
= "MAX" },
109 /* Note for MIG_CMD_POSTCOPY_ADVISE:
110 * The format of arguments is depending on postcopy mode:
111 * - postcopy RAM only
112 * uint64_t host page size
113 * uint64_t taget page size
115 * - postcopy RAM and postcopy dirty bitmaps
116 * format is the same as for postcopy RAM only
118 * - postcopy dirty bitmaps only
119 * Nothing. Command length field is 0.
121 * Be careful: adding a new postcopy entity with some other parameters should
122 * not break format self-description ability. Good way is to introduce some
123 * generic extendable format with an exception for two old entities.
126 static int announce_self_create(uint8_t *buf
,
129 /* Ethernet header. */
130 memset(buf
, 0xff, 6); /* destination MAC addr */
131 memcpy(buf
+ 6, mac_addr
, 6); /* source MAC addr */
132 *(uint16_t *)(buf
+ 12) = htons(ETH_P_RARP
); /* ethertype */
135 *(uint16_t *)(buf
+ 14) = htons(ARP_HTYPE_ETH
); /* hardware addr space */
136 *(uint16_t *)(buf
+ 16) = htons(ARP_PTYPE_IP
); /* protocol addr space */
137 *(buf
+ 18) = 6; /* hardware addr length (ethernet) */
138 *(buf
+ 19) = 4; /* protocol addr length (IPv4) */
139 *(uint16_t *)(buf
+ 20) = htons(ARP_OP_REQUEST_REV
); /* opcode */
140 memcpy(buf
+ 22, mac_addr
, 6); /* source hw addr */
141 memset(buf
+ 28, 0x00, 4); /* source protocol addr */
142 memcpy(buf
+ 32, mac_addr
, 6); /* target hw addr */
143 memset(buf
+ 38, 0x00, 4); /* target protocol addr */
145 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
146 memset(buf
+ 42, 0x00, 18);
148 return 60; /* len (FCS will be added by hardware) */
151 static void qemu_announce_self_iter(NICState
*nic
, void *opaque
)
156 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic
->conf
->macaddr
));
157 len
= announce_self_create(buf
, nic
->conf
->macaddr
.a
);
159 qemu_send_packet_raw(qemu_get_queue(nic
), buf
, len
);
163 static void qemu_announce_self_once(void *opaque
)
165 static int count
= SELF_ANNOUNCE_ROUNDS
;
166 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
168 qemu_foreach_nic(qemu_announce_self_iter
, NULL
);
171 /* delay 50ms, 150ms, 250ms, ... */
172 timer_mod(timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) +
173 self_announce_delay(count
));
180 void qemu_announce_self(void)
182 static QEMUTimer
*timer
;
183 timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, qemu_announce_self_once
, &timer
);
184 qemu_announce_self_once(&timer
);
187 /***********************************************************/
188 /* savevm/loadvm support */
190 static ssize_t
block_writev_buffer(void *opaque
, struct iovec
*iov
, int iovcnt
,
196 qemu_iovec_init_external(&qiov
, iov
, iovcnt
);
197 ret
= bdrv_writev_vmstate(opaque
, &qiov
, pos
);
205 static ssize_t
block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
,
208 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
211 static int bdrv_fclose(void *opaque
)
213 return bdrv_flush(opaque
);
216 static const QEMUFileOps bdrv_read_ops
= {
217 .get_buffer
= block_get_buffer
,
221 static const QEMUFileOps bdrv_write_ops
= {
222 .writev_buffer
= block_writev_buffer
,
226 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
229 return qemu_fopen_ops(bs
, &bdrv_write_ops
);
231 return qemu_fopen_ops(bs
, &bdrv_read_ops
);
235 /* QEMUFile timer support.
236 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
239 void timer_put(QEMUFile
*f
, QEMUTimer
*ts
)
241 uint64_t expire_time
;
243 expire_time
= timer_expire_time_ns(ts
);
244 qemu_put_be64(f
, expire_time
);
247 void timer_get(QEMUFile
*f
, QEMUTimer
*ts
)
249 uint64_t expire_time
;
251 expire_time
= qemu_get_be64(f
);
252 if (expire_time
!= -1) {
253 timer_mod_ns(ts
, expire_time
);
260 /* VMState timer support.
261 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
264 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
, VMStateField
*field
)
271 static int put_timer(QEMUFile
*f
, void *pv
, size_t size
, VMStateField
*field
,
280 const VMStateInfo vmstate_info_timer
= {
287 typedef struct CompatEntry
{
292 typedef struct SaveStateEntry
{
293 QTAILQ_ENTRY(SaveStateEntry
) entry
;
298 /* version id read from the stream */
301 /* section id read from the stream */
304 const VMStateDescription
*vmsd
;
310 typedef struct SaveState
{
311 QTAILQ_HEAD(, SaveStateEntry
) handlers
;
312 int global_section_id
;
315 uint32_t target_page_bits
;
318 static SaveState savevm_state
= {
319 .handlers
= QTAILQ_HEAD_INITIALIZER(savevm_state
.handlers
),
320 .global_section_id
= 0,
323 static int configuration_pre_save(void *opaque
)
325 SaveState
*state
= opaque
;
326 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
328 state
->len
= strlen(current_name
);
329 state
->name
= current_name
;
330 state
->target_page_bits
= qemu_target_page_bits();
335 static int configuration_pre_load(void *opaque
)
337 SaveState
*state
= opaque
;
339 /* If there is no target-page-bits subsection it means the source
340 * predates the variable-target-page-bits support and is using the
341 * minimum possible value for this CPU.
343 state
->target_page_bits
= qemu_target_page_bits_min();
347 static int configuration_post_load(void *opaque
, int version_id
)
349 SaveState
*state
= opaque
;
350 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
352 if (strncmp(state
->name
, current_name
, state
->len
) != 0) {
353 error_report("Machine type received is '%.*s' and local is '%s'",
354 (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());
367 /* The target-page-bits subsection is present only if the
368 * target page size is not the same as the default (ie the
369 * minimum page size for a variable-page-size guest CPU).
370 * If it is present then it contains the actual target page
371 * bits for the machine, and migration will fail if the
372 * two ends don't agree about it.
374 static bool vmstate_target_page_bits_needed(void *opaque
)
376 return qemu_target_page_bits()
377 > qemu_target_page_bits_min();
380 static const VMStateDescription vmstate_target_page_bits
= {
381 .name
= "configuration/target-page-bits",
383 .minimum_version_id
= 1,
384 .needed
= vmstate_target_page_bits_needed
,
385 .fields
= (VMStateField
[]) {
386 VMSTATE_UINT32(target_page_bits
, SaveState
),
387 VMSTATE_END_OF_LIST()
391 static const VMStateDescription vmstate_configuration
= {
392 .name
= "configuration",
394 .pre_load
= configuration_pre_load
,
395 .post_load
= configuration_post_load
,
396 .pre_save
= configuration_pre_save
,
397 .fields
= (VMStateField
[]) {
398 VMSTATE_UINT32(len
, SaveState
),
399 VMSTATE_VBUFFER_ALLOC_UINT32(name
, SaveState
, 0, NULL
, len
),
400 VMSTATE_END_OF_LIST()
402 .subsections
= (const VMStateDescription
*[]) {
403 &vmstate_target_page_bits
,
408 static void dump_vmstate_vmsd(FILE *out_file
,
409 const VMStateDescription
*vmsd
, int indent
,
412 static void dump_vmstate_vmsf(FILE *out_file
, const VMStateField
*field
,
415 fprintf(out_file
, "%*s{\n", indent
, "");
417 fprintf(out_file
, "%*s\"field\": \"%s\",\n", indent
, "", field
->name
);
418 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
420 fprintf(out_file
, "%*s\"field_exists\": %s,\n", indent
, "",
421 field
->field_exists
? "true" : "false");
422 fprintf(out_file
, "%*s\"size\": %zu", indent
, "", field
->size
);
423 if (field
->vmsd
!= NULL
) {
424 fprintf(out_file
, ",\n");
425 dump_vmstate_vmsd(out_file
, field
->vmsd
, indent
, false);
427 fprintf(out_file
, "\n%*s}", indent
- 2, "");
430 static void dump_vmstate_vmss(FILE *out_file
,
431 const VMStateDescription
**subsection
,
434 if (*subsection
!= NULL
) {
435 dump_vmstate_vmsd(out_file
, *subsection
, indent
, true);
439 static void dump_vmstate_vmsd(FILE *out_file
,
440 const VMStateDescription
*vmsd
, int indent
,
444 fprintf(out_file
, "%*s{\n", indent
, "");
446 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", "Description");
449 fprintf(out_file
, "%*s\"name\": \"%s\",\n", indent
, "", vmsd
->name
);
450 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
452 fprintf(out_file
, "%*s\"minimum_version_id\": %d", indent
, "",
453 vmsd
->minimum_version_id
);
454 if (vmsd
->fields
!= NULL
) {
455 const VMStateField
*field
= vmsd
->fields
;
458 fprintf(out_file
, ",\n%*s\"Fields\": [\n", indent
, "");
460 while (field
->name
!= NULL
) {
461 if (field
->flags
& VMS_MUST_EXIST
) {
462 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
467 fprintf(out_file
, ",\n");
469 dump_vmstate_vmsf(out_file
, field
, indent
+ 2);
473 fprintf(out_file
, "\n%*s]", indent
, "");
475 if (vmsd
->subsections
!= NULL
) {
476 const VMStateDescription
**subsection
= vmsd
->subsections
;
479 fprintf(out_file
, ",\n%*s\"Subsections\": [\n", indent
, "");
481 while (*subsection
!= NULL
) {
483 fprintf(out_file
, ",\n");
485 dump_vmstate_vmss(out_file
, subsection
, indent
+ 2);
489 fprintf(out_file
, "\n%*s]", indent
, "");
491 fprintf(out_file
, "\n%*s}", indent
- 2, "");
494 static void dump_machine_type(FILE *out_file
)
498 mc
= MACHINE_GET_CLASS(current_machine
);
500 fprintf(out_file
, " \"vmschkmachine\": {\n");
501 fprintf(out_file
, " \"Name\": \"%s\"\n", mc
->name
);
502 fprintf(out_file
, " },\n");
505 void dump_vmstate_json_to_file(FILE *out_file
)
510 fprintf(out_file
, "{\n");
511 dump_machine_type(out_file
);
514 list
= object_class_get_list(TYPE_DEVICE
, true);
515 for (elt
= list
; elt
; elt
= elt
->next
) {
516 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
526 fprintf(out_file
, ",\n");
528 name
= object_class_get_name(OBJECT_CLASS(dc
));
529 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", name
);
531 fprintf(out_file
, "%*s\"Name\": \"%s\",\n", indent
, "", name
);
532 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
533 dc
->vmsd
->version_id
);
534 fprintf(out_file
, "%*s\"minimum_version_id\": %d,\n", indent
, "",
535 dc
->vmsd
->minimum_version_id
);
537 dump_vmstate_vmsd(out_file
, dc
->vmsd
, indent
, false);
539 fprintf(out_file
, "\n%*s}", indent
- 2, "");
542 fprintf(out_file
, "\n}\n");
546 static int calculate_new_instance_id(const char *idstr
)
551 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
552 if (strcmp(idstr
, se
->idstr
) == 0
553 && instance_id
<= se
->instance_id
) {
554 instance_id
= se
->instance_id
+ 1;
560 static int calculate_compat_instance_id(const char *idstr
)
565 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
570 if (strcmp(idstr
, se
->compat
->idstr
) == 0
571 && instance_id
<= se
->compat
->instance_id
) {
572 instance_id
= se
->compat
->instance_id
+ 1;
578 static inline MigrationPriority
save_state_priority(SaveStateEntry
*se
)
581 return se
->vmsd
->priority
;
583 return MIG_PRI_DEFAULT
;
586 static void savevm_state_handler_insert(SaveStateEntry
*nse
)
588 MigrationPriority priority
= save_state_priority(nse
);
591 assert(priority
<= MIG_PRI_MAX
);
593 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
594 if (save_state_priority(se
) < priority
) {
600 QTAILQ_INSERT_BEFORE(se
, nse
, entry
);
602 QTAILQ_INSERT_TAIL(&savevm_state
.handlers
, nse
, entry
);
606 /* TODO: Individual devices generally have very little idea about the rest
607 of the system, so instance_id should be removed/replaced.
608 Meanwhile pass -1 as instance_id if you do not already have a clearly
609 distinguishing id for all instances of your device class. */
610 int register_savevm_live(DeviceState
*dev
,
619 se
= g_new0(SaveStateEntry
, 1);
620 se
->version_id
= version_id
;
621 se
->section_id
= savevm_state
.global_section_id
++;
625 /* if this is a live_savem then set is_ram */
626 if (ops
->save_setup
!= NULL
) {
631 char *id
= qdev_get_dev_path(dev
);
633 if (snprintf(se
->idstr
, sizeof(se
->idstr
), "%s/", id
) >=
635 error_report("Path too long for VMState (%s)", id
);
643 se
->compat
= g_new0(CompatEntry
, 1);
644 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), idstr
);
645 se
->compat
->instance_id
= instance_id
== -1 ?
646 calculate_compat_instance_id(idstr
) : instance_id
;
650 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
652 if (instance_id
== -1) {
653 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
655 se
->instance_id
= instance_id
;
657 assert(!se
->compat
|| se
->instance_id
== 0);
658 savevm_state_handler_insert(se
);
662 void unregister_savevm(DeviceState
*dev
, const char *idstr
, void *opaque
)
664 SaveStateEntry
*se
, *new_se
;
668 char *path
= qdev_get_dev_path(dev
);
670 pstrcpy(id
, sizeof(id
), path
);
671 pstrcat(id
, sizeof(id
), "/");
675 pstrcat(id
, sizeof(id
), idstr
);
677 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
678 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
679 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
686 int vmstate_register_with_alias_id(DeviceState
*dev
, int instance_id
,
687 const VMStateDescription
*vmsd
,
688 void *opaque
, int alias_id
,
689 int required_for_version
,
694 /* If this triggers, alias support can be dropped for the vmsd. */
695 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
697 se
= g_new0(SaveStateEntry
, 1);
698 se
->version_id
= vmsd
->version_id
;
699 se
->section_id
= savevm_state
.global_section_id
++;
702 se
->alias_id
= alias_id
;
705 char *id
= qdev_get_dev_path(dev
);
707 if (snprintf(se
->idstr
, sizeof(se
->idstr
), "%s/", id
) >=
709 error_setg(errp
, "Path too long for VMState (%s)", id
);
717 se
->compat
= g_new0(CompatEntry
, 1);
718 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
719 se
->compat
->instance_id
= instance_id
== -1 ?
720 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
724 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
726 if (instance_id
== -1) {
727 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
729 se
->instance_id
= instance_id
;
731 assert(!se
->compat
|| se
->instance_id
== 0);
732 savevm_state_handler_insert(se
);
736 void vmstate_unregister(DeviceState
*dev
, const VMStateDescription
*vmsd
,
739 SaveStateEntry
*se
, *new_se
;
741 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
742 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
743 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
750 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
)
752 trace_vmstate_load(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
753 if (!se
->vmsd
) { /* Old style */
754 return se
->ops
->load_state(f
, se
->opaque
, se
->load_version_id
);
756 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, se
->load_version_id
);
759 static void vmstate_save_old_style(QEMUFile
*f
, SaveStateEntry
*se
, QJSON
*vmdesc
)
761 int64_t old_offset
, size
;
763 old_offset
= qemu_ftell_fast(f
);
764 se
->ops
->save_state(f
, se
->opaque
);
765 size
= qemu_ftell_fast(f
) - old_offset
;
768 json_prop_int(vmdesc
, "size", size
);
769 json_start_array(vmdesc
, "fields");
770 json_start_object(vmdesc
, NULL
);
771 json_prop_str(vmdesc
, "name", "data");
772 json_prop_int(vmdesc
, "size", size
);
773 json_prop_str(vmdesc
, "type", "buffer");
774 json_end_object(vmdesc
);
775 json_end_array(vmdesc
);
779 static int vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
, QJSON
*vmdesc
)
781 trace_vmstate_save(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
783 vmstate_save_old_style(f
, se
, vmdesc
);
786 return vmstate_save_state(f
, se
->vmsd
, se
->opaque
, vmdesc
);
790 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
792 static void save_section_header(QEMUFile
*f
, SaveStateEntry
*se
,
793 uint8_t section_type
)
795 qemu_put_byte(f
, section_type
);
796 qemu_put_be32(f
, se
->section_id
);
798 if (section_type
== QEMU_VM_SECTION_FULL
||
799 section_type
== QEMU_VM_SECTION_START
) {
801 size_t len
= strlen(se
->idstr
);
802 qemu_put_byte(f
, len
);
803 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
805 qemu_put_be32(f
, se
->instance_id
);
806 qemu_put_be32(f
, se
->version_id
);
811 * Write a footer onto device sections that catches cases misformatted device
814 static void save_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
816 if (migrate_get_current()->send_section_footer
) {
817 qemu_put_byte(f
, QEMU_VM_SECTION_FOOTER
);
818 qemu_put_be32(f
, se
->section_id
);
823 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
824 * command and associated data.
826 * @f: File to send command on
827 * @command: Command type to send
828 * @len: Length of associated data
829 * @data: Data associated with command.
831 static void qemu_savevm_command_send(QEMUFile
*f
,
832 enum qemu_vm_cmd command
,
836 trace_savevm_command_send(command
, len
);
837 qemu_put_byte(f
, QEMU_VM_COMMAND
);
838 qemu_put_be16(f
, (uint16_t)command
);
839 qemu_put_be16(f
, len
);
840 qemu_put_buffer(f
, data
, len
);
844 void qemu_savevm_send_ping(QEMUFile
*f
, uint32_t value
)
848 trace_savevm_send_ping(value
);
849 buf
= cpu_to_be32(value
);
850 qemu_savevm_command_send(f
, MIG_CMD_PING
, sizeof(value
), (uint8_t *)&buf
);
853 void qemu_savevm_send_open_return_path(QEMUFile
*f
)
855 trace_savevm_send_open_return_path();
856 qemu_savevm_command_send(f
, MIG_CMD_OPEN_RETURN_PATH
, 0, NULL
);
859 /* We have a buffer of data to send; we don't want that all to be loaded
860 * by the command itself, so the command contains just the length of the
861 * extra buffer that we then send straight after it.
862 * TODO: Must be a better way to organise that
868 int qemu_savevm_send_packaged(QEMUFile
*f
, const uint8_t *buf
, size_t len
)
872 if (len
> MAX_VM_CMD_PACKAGED_SIZE
) {
873 error_report("%s: Unreasonably large packaged state: %zu",
878 tmp
= cpu_to_be32(len
);
880 trace_qemu_savevm_send_packaged();
881 qemu_savevm_command_send(f
, MIG_CMD_PACKAGED
, 4, (uint8_t *)&tmp
);
883 qemu_put_buffer(f
, buf
, len
);
888 /* Send prior to any postcopy transfer */
889 void qemu_savevm_send_postcopy_advise(QEMUFile
*f
)
891 if (migrate_postcopy_ram()) {
893 tmp
[0] = cpu_to_be64(ram_pagesize_summary());
894 tmp
[1] = cpu_to_be64(qemu_target_page_size());
896 trace_qemu_savevm_send_postcopy_advise();
897 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
,
900 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
, 0, NULL
);
904 /* Sent prior to starting the destination running in postcopy, discard pages
905 * that have already been sent but redirtied on the source.
906 * CMD_POSTCOPY_RAM_DISCARD consist of:
908 * byte Length of name field (not including 0)
909 * n x byte RAM block name
910 * byte 0 terminator (just for safety)
911 * n x Byte ranges within the named RAMBlock
912 * be64 Start of the range
915 * name: RAMBlock name that these entries are part of
916 * len: Number of page entries
917 * start_list: 'len' addresses
918 * length_list: 'len' addresses
921 void qemu_savevm_send_postcopy_ram_discard(QEMUFile
*f
, const char *name
,
923 uint64_t *start_list
,
924 uint64_t *length_list
)
929 size_t name_len
= strlen(name
);
931 trace_qemu_savevm_send_postcopy_ram_discard(name
, len
);
932 assert(name_len
< 256);
933 buf
= g_malloc0(1 + 1 + name_len
+ 1 + (8 + 8) * len
);
934 buf
[0] = postcopy_ram_discard_version
;
936 memcpy(buf
+ 2, name
, name_len
);
937 tmplen
= 2 + name_len
;
938 buf
[tmplen
++] = '\0';
940 for (t
= 0; t
< len
; t
++) {
941 stq_be_p(buf
+ tmplen
, start_list
[t
]);
943 stq_be_p(buf
+ tmplen
, length_list
[t
]);
946 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RAM_DISCARD
, tmplen
, buf
);
950 /* Get the destination into a state where it can receive postcopy data. */
951 void qemu_savevm_send_postcopy_listen(QEMUFile
*f
)
953 trace_savevm_send_postcopy_listen();
954 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_LISTEN
, 0, NULL
);
957 /* Kick the destination into running */
958 void qemu_savevm_send_postcopy_run(QEMUFile
*f
)
960 trace_savevm_send_postcopy_run();
961 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RUN
, 0, NULL
);
964 void qemu_savevm_send_postcopy_resume(QEMUFile
*f
)
966 trace_savevm_send_postcopy_resume();
967 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RESUME
, 0, NULL
);
970 void qemu_savevm_send_recv_bitmap(QEMUFile
*f
, char *block_name
)
975 trace_savevm_send_recv_bitmap(block_name
);
977 buf
[0] = len
= strlen(block_name
);
978 memcpy(buf
+ 1, block_name
, len
);
980 qemu_savevm_command_send(f
, MIG_CMD_RECV_BITMAP
, len
+ 1, (uint8_t *)buf
);
983 bool qemu_savevm_state_blocked(Error
**errp
)
987 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
988 if (se
->vmsd
&& se
->vmsd
->unmigratable
) {
989 error_setg(errp
, "State blocked by non-migratable device '%s'",
997 void qemu_savevm_state_header(QEMUFile
*f
)
999 trace_savevm_state_header();
1000 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1001 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1003 if (migrate_get_current()->send_configuration
) {
1004 qemu_put_byte(f
, QEMU_VM_CONFIGURATION
);
1005 vmstate_save_state(f
, &vmstate_configuration
, &savevm_state
, 0);
1009 void qemu_savevm_state_setup(QEMUFile
*f
)
1014 trace_savevm_state_setup();
1015 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1016 if (!se
->ops
|| !se
->ops
->save_setup
) {
1019 if (se
->ops
&& se
->ops
->is_active
) {
1020 if (!se
->ops
->is_active(se
->opaque
)) {
1024 save_section_header(f
, se
, QEMU_VM_SECTION_START
);
1026 ret
= se
->ops
->save_setup(f
, se
->opaque
);
1027 save_section_footer(f
, se
);
1029 qemu_file_set_error(f
, ret
);
1035 int qemu_savevm_state_resume_prepare(MigrationState
*s
)
1040 trace_savevm_state_resume_prepare();
1042 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1043 if (!se
->ops
|| !se
->ops
->resume_prepare
) {
1046 if (se
->ops
&& se
->ops
->is_active
) {
1047 if (!se
->ops
->is_active(se
->opaque
)) {
1051 ret
= se
->ops
->resume_prepare(s
, se
->opaque
);
1061 * this function has three return values:
1062 * negative: there was one error, and we have -errno.
1063 * 0 : We haven't finished, caller have to go again
1064 * 1 : We have finished, we can go to complete phase
1066 int qemu_savevm_state_iterate(QEMUFile
*f
, bool postcopy
)
1071 trace_savevm_state_iterate();
1072 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1073 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
1076 if (se
->ops
&& se
->ops
->is_active
) {
1077 if (!se
->ops
->is_active(se
->opaque
)) {
1081 if (se
->ops
&& se
->ops
->is_active_iterate
) {
1082 if (!se
->ops
->is_active_iterate(se
->opaque
)) {
1087 * In the postcopy phase, any device that doesn't know how to
1088 * do postcopy should have saved it's state in the _complete
1089 * call that's already run, it might get confused if we call
1090 * iterate afterwards.
1093 !(se
->ops
->has_postcopy
&& se
->ops
->has_postcopy(se
->opaque
))) {
1096 if (qemu_file_rate_limit(f
)) {
1099 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1101 save_section_header(f
, se
, QEMU_VM_SECTION_PART
);
1103 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
1104 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1105 save_section_footer(f
, se
);
1108 qemu_file_set_error(f
, ret
);
1111 /* Do not proceed to the next vmstate before this one reported
1112 completion of the current stage. This serializes the migration
1113 and reduces the probability that a faster changing state is
1114 synchronized over and over again. */
1121 static bool should_send_vmdesc(void)
1123 MachineState
*machine
= MACHINE(qdev_get_machine());
1124 bool in_postcopy
= migration_in_postcopy();
1125 return !machine
->suppress_vmdesc
&& !in_postcopy
;
1129 * Calls the save_live_complete_postcopy methods
1130 * causing the last few pages to be sent immediately and doing any associated
1132 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1133 * all the other devices, but that happens at the point we switch to postcopy.
1135 void qemu_savevm_state_complete_postcopy(QEMUFile
*f
)
1140 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1141 if (!se
->ops
|| !se
->ops
->save_live_complete_postcopy
) {
1144 if (se
->ops
&& se
->ops
->is_active
) {
1145 if (!se
->ops
->is_active(se
->opaque
)) {
1149 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1151 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1152 qemu_put_be32(f
, se
->section_id
);
1154 ret
= se
->ops
->save_live_complete_postcopy(f
, se
->opaque
);
1155 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1156 save_section_footer(f
, se
);
1158 qemu_file_set_error(f
, ret
);
1163 qemu_put_byte(f
, QEMU_VM_EOF
);
1167 int qemu_savevm_state_complete_precopy(QEMUFile
*f
, bool iterable_only
,
1168 bool inactivate_disks
)
1174 bool in_postcopy
= migration_in_postcopy();
1176 trace_savevm_state_complete_precopy();
1178 cpu_synchronize_all_states();
1180 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1182 (in_postcopy
&& se
->ops
->has_postcopy
&&
1183 se
->ops
->has_postcopy(se
->opaque
)) ||
1184 (in_postcopy
&& !iterable_only
) ||
1185 !se
->ops
->save_live_complete_precopy
) {
1189 if (se
->ops
&& se
->ops
->is_active
) {
1190 if (!se
->ops
->is_active(se
->opaque
)) {
1194 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1196 save_section_header(f
, se
, QEMU_VM_SECTION_END
);
1198 ret
= se
->ops
->save_live_complete_precopy(f
, se
->opaque
);
1199 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1200 save_section_footer(f
, se
);
1202 qemu_file_set_error(f
, ret
);
1207 if (iterable_only
) {
1211 vmdesc
= qjson_new();
1212 json_prop_int(vmdesc
, "page_size", qemu_target_page_size());
1213 json_start_array(vmdesc
, "devices");
1214 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1216 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1219 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1220 trace_savevm_section_skip(se
->idstr
, se
->section_id
);
1224 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1226 json_start_object(vmdesc
, NULL
);
1227 json_prop_str(vmdesc
, "name", se
->idstr
);
1228 json_prop_int(vmdesc
, "instance_id", se
->instance_id
);
1230 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1231 ret
= vmstate_save(f
, se
, vmdesc
);
1233 qemu_file_set_error(f
, ret
);
1236 trace_savevm_section_end(se
->idstr
, se
->section_id
, 0);
1237 save_section_footer(f
, se
);
1239 json_end_object(vmdesc
);
1242 if (inactivate_disks
) {
1243 /* Inactivate before sending QEMU_VM_EOF so that the
1244 * bdrv_invalidate_cache_all() on the other end won't fail. */
1245 ret
= bdrv_inactivate_all();
1247 error_report("%s: bdrv_inactivate_all() failed (%d)",
1249 qemu_file_set_error(f
, ret
);
1254 /* Postcopy stream will still be going */
1255 qemu_put_byte(f
, QEMU_VM_EOF
);
1258 json_end_array(vmdesc
);
1259 qjson_finish(vmdesc
);
1260 vmdesc_len
= strlen(qjson_get_str(vmdesc
));
1262 if (should_send_vmdesc()) {
1263 qemu_put_byte(f
, QEMU_VM_VMDESCRIPTION
);
1264 qemu_put_be32(f
, vmdesc_len
);
1265 qemu_put_buffer(f
, (uint8_t *)qjson_get_str(vmdesc
), vmdesc_len
);
1267 qjson_destroy(vmdesc
);
1273 /* Give an estimate of the amount left to be transferred,
1274 * the result is split into the amount for units that can and
1275 * for units that can't do postcopy.
1277 void qemu_savevm_state_pending(QEMUFile
*f
, uint64_t threshold_size
,
1278 uint64_t *res_precopy_only
,
1279 uint64_t *res_compatible
,
1280 uint64_t *res_postcopy_only
)
1284 *res_precopy_only
= 0;
1285 *res_compatible
= 0;
1286 *res_postcopy_only
= 0;
1289 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1290 if (!se
->ops
|| !se
->ops
->save_live_pending
) {
1293 if (se
->ops
&& se
->ops
->is_active
) {
1294 if (!se
->ops
->is_active(se
->opaque
)) {
1298 se
->ops
->save_live_pending(f
, se
->opaque
, threshold_size
,
1299 res_precopy_only
, res_compatible
,
1304 void qemu_savevm_state_cleanup(void)
1308 trace_savevm_state_cleanup();
1309 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1310 if (se
->ops
&& se
->ops
->save_cleanup
) {
1311 se
->ops
->save_cleanup(se
->opaque
);
1316 static int qemu_savevm_state(QEMUFile
*f
, Error
**errp
)
1319 MigrationState
*ms
= migrate_get_current();
1320 MigrationStatus status
;
1324 ms
->to_dst_file
= f
;
1326 if (migration_is_blocked(errp
)) {
1331 if (migrate_use_block()) {
1332 error_setg(errp
, "Block migration and snapshots are incompatible");
1337 qemu_mutex_unlock_iothread();
1338 qemu_savevm_state_header(f
);
1339 qemu_savevm_state_setup(f
);
1340 qemu_mutex_lock_iothread();
1342 while (qemu_file_get_error(f
) == 0) {
1343 if (qemu_savevm_state_iterate(f
, false) > 0) {
1348 ret
= qemu_file_get_error(f
);
1350 qemu_savevm_state_complete_precopy(f
, false, false);
1351 ret
= qemu_file_get_error(f
);
1353 qemu_savevm_state_cleanup();
1355 error_setg_errno(errp
, -ret
, "Error while writing VM state");
1360 status
= MIGRATION_STATUS_FAILED
;
1362 status
= MIGRATION_STATUS_COMPLETED
;
1364 migrate_set_state(&ms
->state
, MIGRATION_STATUS_SETUP
, status
);
1366 /* f is outer parameter, it should not stay in global migration state after
1367 * this function finished */
1368 ms
->to_dst_file
= NULL
;
1373 static int qemu_save_device_state(QEMUFile
*f
)
1377 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1378 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1380 cpu_synchronize_all_states();
1382 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1388 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1391 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1395 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1397 ret
= vmstate_save(f
, se
, NULL
);
1402 save_section_footer(f
, se
);
1405 qemu_put_byte(f
, QEMU_VM_EOF
);
1407 return qemu_file_get_error(f
);
1410 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
1414 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1415 if (!strcmp(se
->idstr
, idstr
) &&
1416 (instance_id
== se
->instance_id
||
1417 instance_id
== se
->alias_id
))
1419 /* Migrating from an older version? */
1420 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
1421 if (!strcmp(se
->compat
->idstr
, idstr
) &&
1422 (instance_id
== se
->compat
->instance_id
||
1423 instance_id
== se
->alias_id
))
1430 enum LoadVMExitCodes
{
1431 /* Allow a command to quit all layers of nested loadvm loops */
1435 static int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
);
1437 /* ------ incoming postcopy messages ------ */
1438 /* 'advise' arrives before any transfers just to tell us that a postcopy
1439 * *might* happen - it might be skipped if precopy transferred everything
1442 static int loadvm_postcopy_handle_advise(MigrationIncomingState
*mis
,
1445 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1446 uint64_t remote_pagesize_summary
, local_pagesize_summary
, remote_tps
;
1447 Error
*local_err
= NULL
;
1449 trace_loadvm_postcopy_handle_advise();
1450 if (ps
!= POSTCOPY_INCOMING_NONE
) {
1451 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps
);
1457 if (migrate_postcopy_ram()) {
1458 error_report("RAM postcopy is enabled but have 0 byte advise");
1463 if (!migrate_postcopy_ram()) {
1464 error_report("RAM postcopy is disabled but have 16 byte advise");
1469 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len
);
1473 if (!postcopy_ram_supported_by_host(mis
)) {
1474 postcopy_state_set(POSTCOPY_INCOMING_NONE
);
1478 remote_pagesize_summary
= qemu_get_be64(mis
->from_src_file
);
1479 local_pagesize_summary
= ram_pagesize_summary();
1481 if (remote_pagesize_summary
!= local_pagesize_summary
) {
1483 * This detects two potential causes of mismatch:
1484 * a) A mismatch in host page sizes
1485 * Some combinations of mismatch are probably possible but it gets
1486 * a bit more complicated. In particular we need to place whole
1487 * host pages on the dest at once, and we need to ensure that we
1488 * handle dirtying to make sure we never end up sending part of
1489 * a hostpage on it's own.
1490 * b) The use of different huge page sizes on source/destination
1491 * a more fine grain test is performed during RAM block migration
1492 * but this test here causes a nice early clear failure, and
1493 * also fails when passed to an older qemu that doesn't
1496 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1498 remote_pagesize_summary
, local_pagesize_summary
);
1502 remote_tps
= qemu_get_be64(mis
->from_src_file
);
1503 if (remote_tps
!= qemu_target_page_size()) {
1505 * Again, some differences could be dealt with, but for now keep it
1508 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1509 (int)remote_tps
, qemu_target_page_size());
1513 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_ADVISE
, &local_err
)) {
1514 error_report_err(local_err
);
1518 if (ram_postcopy_incoming_init(mis
)) {
1522 postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1527 /* After postcopy we will be told to throw some pages away since they're
1528 * dirty and will have to be demand fetched. Must happen before CPU is
1530 * There can be 0..many of these messages, each encoding multiple pages.
1532 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState
*mis
,
1537 PostcopyState ps
= postcopy_state_get();
1539 trace_loadvm_postcopy_ram_handle_discard();
1542 case POSTCOPY_INCOMING_ADVISE
:
1544 tmp
= postcopy_ram_prepare_discard(mis
);
1550 case POSTCOPY_INCOMING_DISCARD
:
1551 /* Expected state */
1555 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1559 /* We're expecting a
1561 * a RAM ID string (length byte, name, 0 term)
1562 * then at least 1 16 byte chunk
1564 if (len
< (1 + 1 + 1 + 1 + 2 * 8)) {
1565 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1569 tmp
= qemu_get_byte(mis
->from_src_file
);
1570 if (tmp
!= postcopy_ram_discard_version
) {
1571 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp
);
1575 if (!qemu_get_counted_string(mis
->from_src_file
, ramid
)) {
1576 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1579 tmp
= qemu_get_byte(mis
->from_src_file
);
1581 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp
);
1585 len
-= 3 + strlen(ramid
);
1587 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1590 trace_loadvm_postcopy_ram_handle_discard_header(ramid
, len
);
1592 uint64_t start_addr
, block_length
;
1593 start_addr
= qemu_get_be64(mis
->from_src_file
);
1594 block_length
= qemu_get_be64(mis
->from_src_file
);
1597 int ret
= ram_discard_range(ramid
, start_addr
, block_length
);
1602 trace_loadvm_postcopy_ram_handle_discard_end();
1608 * Triggered by a postcopy_listen command; this thread takes over reading
1609 * the input stream, leaving the main thread free to carry on loading the rest
1610 * of the device state (from RAM).
1611 * (TODO:This could do with being in a postcopy file - but there again it's
1612 * just another input loop, not that postcopy specific)
1614 static void *postcopy_ram_listen_thread(void *opaque
)
1616 MigrationIncomingState
*mis
= migration_incoming_get_current();
1617 QEMUFile
*f
= mis
->from_src_file
;
1620 migrate_set_state(&mis
->state
, MIGRATION_STATUS_ACTIVE
,
1621 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1622 qemu_sem_post(&mis
->listen_thread_sem
);
1623 trace_postcopy_ram_listen_thread_start();
1625 rcu_register_thread();
1627 * Because we're a thread and not a coroutine we can't yield
1628 * in qemu_file, and thus we must be blocking now.
1630 qemu_file_set_blocking(f
, true);
1631 load_res
= qemu_loadvm_state_main(f
, mis
);
1634 * This is tricky, but, mis->from_src_file can change after it
1635 * returns, when postcopy recovery happened. In the future, we may
1636 * want a wrapper for the QEMUFile handle.
1638 f
= mis
->from_src_file
;
1640 /* And non-blocking again so we don't block in any cleanup */
1641 qemu_file_set_blocking(f
, false);
1643 trace_postcopy_ram_listen_thread_exit();
1645 error_report("%s: loadvm failed: %d", __func__
, load_res
);
1646 qemu_file_set_error(f
, load_res
);
1647 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1648 MIGRATION_STATUS_FAILED
);
1651 * This looks good, but it's possible that the device loading in the
1652 * main thread hasn't finished yet, and so we might not be in 'RUN'
1653 * state yet; wait for the end of the main thread.
1655 qemu_event_wait(&mis
->main_thread_load_event
);
1657 postcopy_ram_incoming_cleanup(mis
);
1661 * If something went wrong then we have a bad state so exit;
1662 * depending how far we got it might be possible at this point
1663 * to leave the guest running and fire MCEs for pages that never
1664 * arrived as a desperate recovery step.
1666 rcu_unregister_thread();
1670 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1671 MIGRATION_STATUS_COMPLETED
);
1673 * If everything has worked fine, then the main thread has waited
1674 * for us to start, and we're the last use of the mis.
1675 * (If something broke then qemu will have to exit anyway since it's
1676 * got a bad migration state).
1678 migration_incoming_state_destroy();
1679 qemu_loadvm_state_cleanup();
1681 rcu_unregister_thread();
1682 mis
->have_listen_thread
= false;
1686 /* After this message we must be able to immediately receive postcopy data */
1687 static int loadvm_postcopy_handle_listen(MigrationIncomingState
*mis
)
1689 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_LISTENING
);
1690 trace_loadvm_postcopy_handle_listen();
1691 Error
*local_err
= NULL
;
1693 if (ps
!= POSTCOPY_INCOMING_ADVISE
&& ps
!= POSTCOPY_INCOMING_DISCARD
) {
1694 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps
);
1697 if (ps
== POSTCOPY_INCOMING_ADVISE
) {
1699 * A rare case, we entered listen without having to do any discards,
1700 * so do the setup that's normally done at the time of the 1st discard.
1702 if (migrate_postcopy_ram()) {
1703 postcopy_ram_prepare_discard(mis
);
1708 * Sensitise RAM - can now generate requests for blocks that don't exist
1709 * However, at this point the CPU shouldn't be running, and the IO
1710 * shouldn't be doing anything yet so don't actually expect requests
1712 if (migrate_postcopy_ram()) {
1713 if (postcopy_ram_enable_notify(mis
)) {
1718 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_LISTEN
, &local_err
)) {
1719 error_report_err(local_err
);
1723 if (mis
->have_listen_thread
) {
1724 error_report("CMD_POSTCOPY_RAM_LISTEN already has a listen thread");
1728 mis
->have_listen_thread
= true;
1729 /* Start up the listening thread and wait for it to signal ready */
1730 qemu_sem_init(&mis
->listen_thread_sem
, 0);
1731 qemu_thread_create(&mis
->listen_thread
, "postcopy/listen",
1732 postcopy_ram_listen_thread
, NULL
,
1733 QEMU_THREAD_DETACHED
);
1734 qemu_sem_wait(&mis
->listen_thread_sem
);
1735 qemu_sem_destroy(&mis
->listen_thread_sem
);
1745 static void loadvm_postcopy_handle_run_bh(void *opaque
)
1747 Error
*local_err
= NULL
;
1748 HandleRunBhData
*data
= opaque
;
1750 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
1753 cpu_synchronize_all_post_init();
1755 qemu_announce_self();
1757 /* Make sure all file formats flush their mutable metadata.
1758 * If we get an error here, just don't restart the VM yet. */
1759 bdrv_invalidate_cache_all(&local_err
);
1761 error_report_err(local_err
);
1766 trace_loadvm_postcopy_handle_run_cpu_sync();
1767 cpu_synchronize_all_post_init();
1769 trace_loadvm_postcopy_handle_run_vmstart();
1771 dirty_bitmap_mig_before_vm_start();
1774 /* Hold onto your hats, starting the CPU */
1777 /* leave it paused and let management decide when to start the CPU */
1778 runstate_set(RUN_STATE_PAUSED
);
1781 qemu_bh_delete(data
->bh
);
1785 /* After all discards we can start running and asking for pages */
1786 static int loadvm_postcopy_handle_run(MigrationIncomingState
*mis
)
1788 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_RUNNING
);
1789 HandleRunBhData
*data
;
1791 trace_loadvm_postcopy_handle_run();
1792 if (ps
!= POSTCOPY_INCOMING_LISTENING
) {
1793 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps
);
1797 data
= g_new(HandleRunBhData
, 1);
1798 data
->bh
= qemu_bh_new(loadvm_postcopy_handle_run_bh
, data
);
1799 qemu_bh_schedule(data
->bh
);
1801 /* We need to finish reading the stream from the package
1802 * and also stop reading anything more from the stream that loaded the
1803 * package (since it's now being read by the listener thread).
1804 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
1809 static int loadvm_postcopy_handle_resume(MigrationIncomingState
*mis
)
1811 if (mis
->state
!= MIGRATION_STATUS_POSTCOPY_RECOVER
) {
1812 error_report("%s: illegal resume received", __func__
);
1813 /* Don't fail the load, only for this. */
1818 * This means source VM is ready to resume the postcopy migration.
1819 * It's time to switch state and release the fault thread to
1820 * continue service page faults.
1822 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_RECOVER
,
1823 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1824 qemu_sem_post(&mis
->postcopy_pause_sem_fault
);
1826 trace_loadvm_postcopy_handle_resume();
1828 /* Tell source that "we are ready" */
1829 migrate_send_rp_resume_ack(mis
, MIGRATION_RESUME_ACK_VALUE
);
1835 * Immediately following this command is a blob of data containing an embedded
1836 * chunk of migration stream; read it and load it.
1838 * @mis: Incoming state
1839 * @length: Length of packaged data to read
1841 * Returns: Negative values on error
1844 static int loadvm_handle_cmd_packaged(MigrationIncomingState
*mis
)
1848 QIOChannelBuffer
*bioc
;
1850 length
= qemu_get_be32(mis
->from_src_file
);
1851 trace_loadvm_handle_cmd_packaged(length
);
1853 if (length
> MAX_VM_CMD_PACKAGED_SIZE
) {
1854 error_report("Unreasonably large packaged state: %zu", length
);
1858 bioc
= qio_channel_buffer_new(length
);
1859 qio_channel_set_name(QIO_CHANNEL(bioc
), "migration-loadvm-buffer");
1860 ret
= qemu_get_buffer(mis
->from_src_file
,
1863 if (ret
!= length
) {
1864 object_unref(OBJECT(bioc
));
1865 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
1867 return (ret
< 0) ? ret
: -EAGAIN
;
1869 bioc
->usage
+= length
;
1870 trace_loadvm_handle_cmd_packaged_received(ret
);
1872 QEMUFile
*packf
= qemu_fopen_channel_input(QIO_CHANNEL(bioc
));
1874 ret
= qemu_loadvm_state_main(packf
, mis
);
1875 trace_loadvm_handle_cmd_packaged_main(ret
);
1877 object_unref(OBJECT(bioc
));
1883 * Handle request that source requests for recved_bitmap on
1884 * destination. Payload format:
1886 * len (1 byte) + ramblock_name (<255 bytes)
1888 static int loadvm_handle_recv_bitmap(MigrationIncomingState
*mis
,
1891 QEMUFile
*file
= mis
->from_src_file
;
1893 char block_name
[256];
1896 cnt
= qemu_get_counted_string(file
, block_name
);
1898 error_report("%s: failed to read block name", __func__
);
1902 /* Validate before using the data */
1903 if (qemu_file_get_error(file
)) {
1904 return qemu_file_get_error(file
);
1907 if (len
!= cnt
+ 1) {
1908 error_report("%s: invalid payload length (%d)", __func__
, len
);
1912 rb
= qemu_ram_block_by_name(block_name
);
1914 error_report("%s: block '%s' not found", __func__
, block_name
);
1918 migrate_send_rp_recv_bitmap(mis
, block_name
);
1920 trace_loadvm_handle_recv_bitmap(block_name
);
1926 * Process an incoming 'QEMU_VM_COMMAND'
1927 * 0 just a normal return
1928 * LOADVM_QUIT All good, but exit the loop
1931 static int loadvm_process_command(QEMUFile
*f
)
1933 MigrationIncomingState
*mis
= migration_incoming_get_current();
1938 cmd
= qemu_get_be16(f
);
1939 len
= qemu_get_be16(f
);
1941 /* Check validity before continue processing of cmds */
1942 if (qemu_file_get_error(f
)) {
1943 return qemu_file_get_error(f
);
1946 trace_loadvm_process_command(cmd
, len
);
1947 if (cmd
>= MIG_CMD_MAX
|| cmd
== MIG_CMD_INVALID
) {
1948 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd
, len
);
1952 if (mig_cmd_args
[cmd
].len
!= -1 && mig_cmd_args
[cmd
].len
!= len
) {
1953 error_report("%s received with bad length - expecting %zu, got %d",
1954 mig_cmd_args
[cmd
].name
,
1955 (size_t)mig_cmd_args
[cmd
].len
, len
);
1960 case MIG_CMD_OPEN_RETURN_PATH
:
1961 if (mis
->to_src_file
) {
1962 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
1963 /* Not really a problem, so don't give up */
1966 mis
->to_src_file
= qemu_file_get_return_path(f
);
1967 if (!mis
->to_src_file
) {
1968 error_report("CMD_OPEN_RETURN_PATH failed");
1974 tmp32
= qemu_get_be32(f
);
1975 trace_loadvm_process_command_ping(tmp32
);
1976 if (!mis
->to_src_file
) {
1977 error_report("CMD_PING (0x%x) received with no return path",
1981 migrate_send_rp_pong(mis
, tmp32
);
1984 case MIG_CMD_PACKAGED
:
1985 return loadvm_handle_cmd_packaged(mis
);
1987 case MIG_CMD_POSTCOPY_ADVISE
:
1988 return loadvm_postcopy_handle_advise(mis
, len
);
1990 case MIG_CMD_POSTCOPY_LISTEN
:
1991 return loadvm_postcopy_handle_listen(mis
);
1993 case MIG_CMD_POSTCOPY_RUN
:
1994 return loadvm_postcopy_handle_run(mis
);
1996 case MIG_CMD_POSTCOPY_RAM_DISCARD
:
1997 return loadvm_postcopy_ram_handle_discard(mis
, len
);
1999 case MIG_CMD_POSTCOPY_RESUME
:
2000 return loadvm_postcopy_handle_resume(mis
);
2002 case MIG_CMD_RECV_BITMAP
:
2003 return loadvm_handle_recv_bitmap(mis
, len
);
2010 * Read a footer off the wire and check that it matches the expected section
2012 * Returns: true if the footer was good
2013 * false if there is a problem (and calls error_report to say why)
2015 static bool check_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
2019 uint32_t read_section_id
;
2021 if (!migrate_get_current()->send_section_footer
) {
2022 /* No footer to check */
2026 read_mark
= qemu_get_byte(f
);
2028 ret
= qemu_file_get_error(f
);
2030 error_report("%s: Read section footer failed: %d",
2035 if (read_mark
!= QEMU_VM_SECTION_FOOTER
) {
2036 error_report("Missing section footer for %s", se
->idstr
);
2040 read_section_id
= qemu_get_be32(f
);
2041 if (read_section_id
!= se
->load_section_id
) {
2042 error_report("Mismatched section id in footer for %s -"
2043 " read 0x%x expected 0x%x",
2044 se
->idstr
, read_section_id
, se
->load_section_id
);
2053 qemu_loadvm_section_start_full(QEMUFile
*f
, MigrationIncomingState
*mis
)
2055 uint32_t instance_id
, version_id
, section_id
;
2060 /* Read section start */
2061 section_id
= qemu_get_be32(f
);
2062 if (!qemu_get_counted_string(f
, idstr
)) {
2063 error_report("Unable to read ID string for section %u",
2067 instance_id
= qemu_get_be32(f
);
2068 version_id
= qemu_get_be32(f
);
2070 ret
= qemu_file_get_error(f
);
2072 error_report("%s: Failed to read instance/version ID: %d",
2077 trace_qemu_loadvm_state_section_startfull(section_id
, idstr
,
2078 instance_id
, version_id
);
2079 /* Find savevm section */
2080 se
= find_se(idstr
, instance_id
);
2082 error_report("Unknown savevm section or instance '%s' %d. "
2083 "Make sure that your current VM setup matches your "
2084 "saved VM setup, including any hotplugged devices",
2085 idstr
, instance_id
);
2089 /* Validate version */
2090 if (version_id
> se
->version_id
) {
2091 error_report("savevm: unsupported version %d for '%s' v%d",
2092 version_id
, idstr
, se
->version_id
);
2095 se
->load_version_id
= version_id
;
2096 se
->load_section_id
= section_id
;
2098 /* Validate if it is a device's state */
2099 if (xen_enabled() && se
->is_ram
) {
2100 error_report("loadvm: %s RAM loading not allowed on Xen", idstr
);
2104 ret
= vmstate_load(f
, se
);
2106 error_report("error while loading state for instance 0x%x of"
2107 " device '%s'", instance_id
, idstr
);
2110 if (!check_section_footer(f
, se
)) {
2118 qemu_loadvm_section_part_end(QEMUFile
*f
, MigrationIncomingState
*mis
)
2120 uint32_t section_id
;
2124 section_id
= qemu_get_be32(f
);
2126 ret
= qemu_file_get_error(f
);
2128 error_report("%s: Failed to read section ID: %d",
2133 trace_qemu_loadvm_state_section_partend(section_id
);
2134 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2135 if (se
->load_section_id
== section_id
) {
2140 error_report("Unknown savevm section %d", section_id
);
2144 ret
= vmstate_load(f
, se
);
2146 error_report("error while loading state section id %d(%s)",
2147 section_id
, se
->idstr
);
2150 if (!check_section_footer(f
, se
)) {
2157 static int qemu_loadvm_state_setup(QEMUFile
*f
)
2162 trace_loadvm_state_setup();
2163 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2164 if (!se
->ops
|| !se
->ops
->load_setup
) {
2167 if (se
->ops
&& se
->ops
->is_active
) {
2168 if (!se
->ops
->is_active(se
->opaque
)) {
2173 ret
= se
->ops
->load_setup(f
, se
->opaque
);
2175 qemu_file_set_error(f
, ret
);
2176 error_report("Load state of device %s failed", se
->idstr
);
2183 void qemu_loadvm_state_cleanup(void)
2187 trace_loadvm_state_cleanup();
2188 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2189 if (se
->ops
&& se
->ops
->load_cleanup
) {
2190 se
->ops
->load_cleanup(se
->opaque
);
2195 /* Return true if we should continue the migration, or false. */
2196 static bool postcopy_pause_incoming(MigrationIncomingState
*mis
)
2198 trace_postcopy_pause_incoming();
2200 /* Clear the triggered bit to allow one recovery */
2201 mis
->postcopy_recover_triggered
= false;
2203 assert(mis
->from_src_file
);
2204 qemu_file_shutdown(mis
->from_src_file
);
2205 qemu_fclose(mis
->from_src_file
);
2206 mis
->from_src_file
= NULL
;
2208 assert(mis
->to_src_file
);
2209 qemu_file_shutdown(mis
->to_src_file
);
2210 qemu_mutex_lock(&mis
->rp_mutex
);
2211 qemu_fclose(mis
->to_src_file
);
2212 mis
->to_src_file
= NULL
;
2213 qemu_mutex_unlock(&mis
->rp_mutex
);
2215 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
2216 MIGRATION_STATUS_POSTCOPY_PAUSED
);
2218 /* Notify the fault thread for the invalidated file handle */
2219 postcopy_fault_thread_notify(mis
);
2221 error_report("Detected IO failure for postcopy. "
2222 "Migration paused.");
2224 while (mis
->state
== MIGRATION_STATUS_POSTCOPY_PAUSED
) {
2225 qemu_sem_wait(&mis
->postcopy_pause_sem_dst
);
2228 trace_postcopy_pause_incoming_continued();
2233 static int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
)
2235 uint8_t section_type
;
2240 section_type
= qemu_get_byte(f
);
2242 if (qemu_file_get_error(f
)) {
2243 ret
= qemu_file_get_error(f
);
2247 trace_qemu_loadvm_state_section(section_type
);
2248 switch (section_type
) {
2249 case QEMU_VM_SECTION_START
:
2250 case QEMU_VM_SECTION_FULL
:
2251 ret
= qemu_loadvm_section_start_full(f
, mis
);
2256 case QEMU_VM_SECTION_PART
:
2257 case QEMU_VM_SECTION_END
:
2258 ret
= qemu_loadvm_section_part_end(f
, mis
);
2263 case QEMU_VM_COMMAND
:
2264 ret
= loadvm_process_command(f
);
2265 trace_qemu_loadvm_state_section_command(ret
);
2266 if ((ret
< 0) || (ret
& LOADVM_QUIT
)) {
2271 /* This is the end of migration */
2274 error_report("Unknown savevm section type %d", section_type
);
2282 qemu_file_set_error(f
, ret
);
2285 * If we are during an active postcopy, then we pause instead
2286 * of bail out to at least keep the VM's dirty data. Note
2287 * that POSTCOPY_INCOMING_LISTENING stage is still not enough,
2288 * during which we're still receiving device states and we
2289 * still haven't yet started the VM on destination.
2291 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING
&&
2292 postcopy_pause_incoming(mis
)) {
2293 /* Reset f to point to the newly created channel */
2294 f
= mis
->from_src_file
;
2301 int qemu_loadvm_state(QEMUFile
*f
)
2303 MigrationIncomingState
*mis
= migration_incoming_get_current();
2304 Error
*local_err
= NULL
;
2308 if (qemu_savevm_state_blocked(&local_err
)) {
2309 error_report_err(local_err
);
2313 v
= qemu_get_be32(f
);
2314 if (v
!= QEMU_VM_FILE_MAGIC
) {
2315 error_report("Not a migration stream");
2319 v
= qemu_get_be32(f
);
2320 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
2321 error_report("SaveVM v2 format is obsolete and don't work anymore");
2324 if (v
!= QEMU_VM_FILE_VERSION
) {
2325 error_report("Unsupported migration stream version");
2329 if (qemu_loadvm_state_setup(f
) != 0) {
2333 if (migrate_get_current()->send_configuration
) {
2334 if (qemu_get_byte(f
) != QEMU_VM_CONFIGURATION
) {
2335 error_report("Configuration section missing");
2336 qemu_loadvm_state_cleanup();
2339 ret
= vmstate_load_state(f
, &vmstate_configuration
, &savevm_state
, 0);
2342 qemu_loadvm_state_cleanup();
2347 cpu_synchronize_all_pre_loadvm();
2349 ret
= qemu_loadvm_state_main(f
, mis
);
2350 qemu_event_set(&mis
->main_thread_load_event
);
2352 trace_qemu_loadvm_state_post_main(ret
);
2354 if (mis
->have_listen_thread
) {
2355 /* Listen thread still going, can't clean up yet */
2360 ret
= qemu_file_get_error(f
);
2364 * Try to read in the VMDESC section as well, so that dumping tools that
2365 * intercept our migration stream have the chance to see it.
2368 /* We've got to be careful; if we don't read the data and just shut the fd
2369 * then the sender can error if we close while it's still sending.
2370 * We also mustn't read data that isn't there; some transports (RDMA)
2371 * will stall waiting for that data when the source has already closed.
2373 if (ret
== 0 && should_send_vmdesc()) {
2376 uint8_t section_type
= qemu_get_byte(f
);
2378 if (section_type
!= QEMU_VM_VMDESCRIPTION
) {
2379 error_report("Expected vmdescription section, but got %d",
2382 * It doesn't seem worth failing at this point since
2383 * we apparently have an otherwise valid VM state
2386 buf
= g_malloc(0x1000);
2387 size
= qemu_get_be32(f
);
2390 uint32_t read_chunk
= MIN(size
, 0x1000);
2391 qemu_get_buffer(f
, buf
, read_chunk
);
2398 qemu_loadvm_state_cleanup();
2399 cpu_synchronize_all_post_init();
2404 int save_snapshot(const char *name
, Error
**errp
)
2406 BlockDriverState
*bs
, *bs1
;
2407 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
2410 int saved_vm_running
;
2411 uint64_t vm_state_size
;
2414 AioContext
*aio_context
;
2416 if (!replay_can_snapshot()) {
2417 error_report("Record/replay does not allow making snapshot "
2418 "right now. Try once more later.");
2422 if (!bdrv_all_can_snapshot(&bs
)) {
2423 error_setg(errp
, "Device '%s' is writable but does not support "
2424 "snapshots", bdrv_get_device_name(bs
));
2428 /* Delete old snapshots of the same name */
2430 ret
= bdrv_all_delete_snapshot(name
, &bs1
, errp
);
2432 error_prepend(errp
, "Error while deleting snapshot on device "
2433 "'%s': ", bdrv_get_device_name(bs1
));
2438 bs
= bdrv_all_find_vmstate_bs();
2440 error_setg(errp
, "No block device can accept snapshots");
2443 aio_context
= bdrv_get_aio_context(bs
);
2445 saved_vm_running
= runstate_is_running();
2447 ret
= global_state_store();
2449 error_setg(errp
, "Error saving global state");
2452 vm_stop(RUN_STATE_SAVE_VM
);
2454 bdrv_drain_all_begin();
2456 aio_context_acquire(aio_context
);
2458 memset(sn
, 0, sizeof(*sn
));
2460 /* fill auxiliary fields */
2461 qemu_gettimeofday(&tv
);
2462 sn
->date_sec
= tv
.tv_sec
;
2463 sn
->date_nsec
= tv
.tv_usec
* 1000;
2464 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2467 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
2469 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
2470 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
2472 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
2475 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2476 localtime_r((const time_t *)&tv
.tv_sec
, &tm
);
2477 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", &tm
);
2480 /* save the VM state */
2481 f
= qemu_fopen_bdrv(bs
, 1);
2483 error_setg(errp
, "Could not open VM state file");
2486 ret
= qemu_savevm_state(f
, errp
);
2487 vm_state_size
= qemu_ftell(f
);
2493 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
2494 * for itself. BDRV_POLL_WHILE() does not support nested locking because
2495 * it only releases the lock once. Therefore synchronous I/O will deadlock
2496 * unless we release the AioContext before bdrv_all_create_snapshot().
2498 aio_context_release(aio_context
);
2501 ret
= bdrv_all_create_snapshot(sn
, bs
, vm_state_size
, &bs
);
2503 error_setg(errp
, "Error while creating snapshot on '%s'",
2504 bdrv_get_device_name(bs
));
2512 aio_context_release(aio_context
);
2515 bdrv_drain_all_end();
2517 if (saved_vm_running
) {
2523 void qmp_xen_save_devices_state(const char *filename
, bool has_live
, bool live
,
2527 QIOChannelFile
*ioc
;
2528 int saved_vm_running
;
2532 /* live default to true so old version of Xen tool stack can have a
2533 * successfull live migration */
2537 saved_vm_running
= runstate_is_running();
2538 vm_stop(RUN_STATE_SAVE_VM
);
2539 global_state_store_running();
2541 ioc
= qio_channel_file_new_path(filename
, O_WRONLY
| O_CREAT
, 0660, errp
);
2545 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-save-state");
2546 f
= qemu_fopen_channel_output(QIO_CHANNEL(ioc
));
2547 object_unref(OBJECT(ioc
));
2548 ret
= qemu_save_device_state(f
);
2549 if (ret
< 0 || qemu_fclose(f
) < 0) {
2550 error_setg(errp
, QERR_IO_ERROR
);
2552 /* libxl calls the QMP command "stop" before calling
2553 * "xen-save-devices-state" and in case of migration failure, libxl
2554 * would call "cont".
2555 * So call bdrv_inactivate_all (release locks) here to let the other
2556 * side of the migration take controle of the images.
2558 if (live
&& !saved_vm_running
) {
2559 ret
= bdrv_inactivate_all();
2561 error_setg(errp
, "%s: bdrv_inactivate_all() failed (%d)",
2568 if (saved_vm_running
) {
2573 void qmp_xen_load_devices_state(const char *filename
, Error
**errp
)
2576 QIOChannelFile
*ioc
;
2579 /* Guest must be paused before loading the device state; the RAM state
2580 * will already have been loaded by xc
2582 if (runstate_is_running()) {
2583 error_setg(errp
, "Cannot update device state while vm is running");
2586 vm_stop(RUN_STATE_RESTORE_VM
);
2588 ioc
= qio_channel_file_new_path(filename
, O_RDONLY
| O_BINARY
, 0, errp
);
2592 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-load-state");
2593 f
= qemu_fopen_channel_input(QIO_CHANNEL(ioc
));
2594 object_unref(OBJECT(ioc
));
2596 ret
= qemu_loadvm_state(f
);
2599 error_setg(errp
, QERR_IO_ERROR
);
2601 migration_incoming_state_destroy();
2604 int load_snapshot(const char *name
, Error
**errp
)
2606 BlockDriverState
*bs
, *bs_vm_state
;
2607 QEMUSnapshotInfo sn
;
2610 AioContext
*aio_context
;
2611 MigrationIncomingState
*mis
= migration_incoming_get_current();
2613 if (!replay_can_snapshot()) {
2614 error_report("Record/replay does not allow loading snapshot "
2615 "right now. Try once more later.");
2619 if (!bdrv_all_can_snapshot(&bs
)) {
2621 "Device '%s' is writable but does not support snapshots",
2622 bdrv_get_device_name(bs
));
2625 ret
= bdrv_all_find_snapshot(name
, &bs
);
2628 "Device '%s' does not have the requested snapshot '%s'",
2629 bdrv_get_device_name(bs
), name
);
2633 bs_vm_state
= bdrv_all_find_vmstate_bs();
2635 error_setg(errp
, "No block device supports snapshots");
2638 aio_context
= bdrv_get_aio_context(bs_vm_state
);
2640 /* Don't even try to load empty VM states */
2641 aio_context_acquire(aio_context
);
2642 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
2643 aio_context_release(aio_context
);
2646 } else if (sn
.vm_state_size
== 0) {
2647 error_setg(errp
, "This is a disk-only snapshot. Revert to it "
2648 " offline using qemu-img");
2652 /* Flush all IO requests so they don't interfere with the new state. */
2653 bdrv_drain_all_begin();
2655 ret
= bdrv_all_goto_snapshot(name
, &bs
, errp
);
2657 error_prepend(errp
, "Could not load snapshot '%s' on '%s': ",
2658 name
, bdrv_get_device_name(bs
));
2662 /* restore the VM state */
2663 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
2665 error_setg(errp
, "Could not open VM state file");
2670 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
2671 mis
->from_src_file
= f
;
2673 aio_context_acquire(aio_context
);
2674 ret
= qemu_loadvm_state(f
);
2675 migration_incoming_state_destroy();
2676 aio_context_release(aio_context
);
2678 bdrv_drain_all_end();
2681 error_setg(errp
, "Error %d while loading VM state", ret
);
2688 bdrv_drain_all_end();
2692 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2694 qemu_ram_set_idstr(mr
->ram_block
,
2695 memory_region_name(mr
), dev
);
2696 qemu_ram_set_migratable(mr
->ram_block
);
2699 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2701 qemu_ram_unset_idstr(mr
->ram_block
);
2702 qemu_ram_unset_migratable(mr
->ram_block
);
2705 void vmstate_register_ram_global(MemoryRegion
*mr
)
2707 vmstate_register_ram(mr
, NULL
);
2710 bool vmstate_check_only_migratable(const VMStateDescription
*vmsd
)
2712 /* check needed if --only-migratable is specified */
2713 if (!migrate_get_current()->only_migratable
) {
2717 return !(vmsd
&& vmsd
->unmigratable
);