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/qmp/qerror.h"
45 #include "qemu/error-report.h"
46 #include "sysemu/cpus.h"
47 #include "exec/memory.h"
48 #include "exec/target_page.h"
49 #include "qmp-commands.h"
52 #include "block/snapshot.h"
53 #include "qemu/cutils.h"
54 #include "io/channel-buffer.h"
55 #include "io/channel-file.h"
58 #define ETH_P_RARP 0x8035
60 #define ARP_HTYPE_ETH 0x0001
61 #define ARP_PTYPE_IP 0x0800
62 #define ARP_OP_REQUEST_REV 0x3
64 const unsigned int postcopy_ram_discard_version
= 0;
66 /* Subcommands for QEMU_VM_COMMAND */
68 MIG_CMD_INVALID
= 0, /* Must be 0 */
69 MIG_CMD_OPEN_RETURN_PATH
, /* Tell the dest to open the Return path */
70 MIG_CMD_PING
, /* Request a PONG on the RP */
72 MIG_CMD_POSTCOPY_ADVISE
, /* Prior to any page transfers, just
73 warn we might want to do PC */
74 MIG_CMD_POSTCOPY_LISTEN
, /* Start listening for incoming
75 pages as it's running. */
76 MIG_CMD_POSTCOPY_RUN
, /* Start execution */
78 MIG_CMD_POSTCOPY_RAM_DISCARD
, /* A list of pages to discard that
79 were previously sent during
80 precopy but are dirty. */
81 MIG_CMD_PACKAGED
, /* Send a wrapped stream within this stream */
85 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
86 static struct mig_cmd_args
{
87 ssize_t len
; /* -1 = variable */
90 [MIG_CMD_INVALID
] = { .len
= -1, .name
= "INVALID" },
91 [MIG_CMD_OPEN_RETURN_PATH
] = { .len
= 0, .name
= "OPEN_RETURN_PATH" },
92 [MIG_CMD_PING
] = { .len
= sizeof(uint32_t), .name
= "PING" },
93 [MIG_CMD_POSTCOPY_ADVISE
] = { .len
= -1, .name
= "POSTCOPY_ADVISE" },
94 [MIG_CMD_POSTCOPY_LISTEN
] = { .len
= 0, .name
= "POSTCOPY_LISTEN" },
95 [MIG_CMD_POSTCOPY_RUN
] = { .len
= 0, .name
= "POSTCOPY_RUN" },
96 [MIG_CMD_POSTCOPY_RAM_DISCARD
] = {
97 .len
= -1, .name
= "POSTCOPY_RAM_DISCARD" },
98 [MIG_CMD_PACKAGED
] = { .len
= 4, .name
= "PACKAGED" },
99 [MIG_CMD_MAX
] = { .len
= -1, .name
= "MAX" },
102 /* Note for MIG_CMD_POSTCOPY_ADVISE:
103 * The format of arguments is depending on postcopy mode:
104 * - postcopy RAM only
105 * uint64_t host page size
106 * uint64_t taget page size
108 * - postcopy RAM and postcopy dirty bitmaps
109 * format is the same as for postcopy RAM only
111 * - postcopy dirty bitmaps only
112 * Nothing. Command length field is 0.
114 * Be careful: adding a new postcopy entity with some other parameters should
115 * not break format self-description ability. Good way is to introduce some
116 * generic extendable format with an exception for two old entities.
119 static int announce_self_create(uint8_t *buf
,
122 /* Ethernet header. */
123 memset(buf
, 0xff, 6); /* destination MAC addr */
124 memcpy(buf
+ 6, mac_addr
, 6); /* source MAC addr */
125 *(uint16_t *)(buf
+ 12) = htons(ETH_P_RARP
); /* ethertype */
128 *(uint16_t *)(buf
+ 14) = htons(ARP_HTYPE_ETH
); /* hardware addr space */
129 *(uint16_t *)(buf
+ 16) = htons(ARP_PTYPE_IP
); /* protocol addr space */
130 *(buf
+ 18) = 6; /* hardware addr length (ethernet) */
131 *(buf
+ 19) = 4; /* protocol addr length (IPv4) */
132 *(uint16_t *)(buf
+ 20) = htons(ARP_OP_REQUEST_REV
); /* opcode */
133 memcpy(buf
+ 22, mac_addr
, 6); /* source hw addr */
134 memset(buf
+ 28, 0x00, 4); /* source protocol addr */
135 memcpy(buf
+ 32, mac_addr
, 6); /* target hw addr */
136 memset(buf
+ 38, 0x00, 4); /* target protocol addr */
138 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
139 memset(buf
+ 42, 0x00, 18);
141 return 60; /* len (FCS will be added by hardware) */
144 static void qemu_announce_self_iter(NICState
*nic
, void *opaque
)
149 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic
->conf
->macaddr
));
150 len
= announce_self_create(buf
, nic
->conf
->macaddr
.a
);
152 qemu_send_packet_raw(qemu_get_queue(nic
), buf
, len
);
156 static void qemu_announce_self_once(void *opaque
)
158 static int count
= SELF_ANNOUNCE_ROUNDS
;
159 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
161 qemu_foreach_nic(qemu_announce_self_iter
, NULL
);
164 /* delay 50ms, 150ms, 250ms, ... */
165 timer_mod(timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) +
166 self_announce_delay(count
));
173 void qemu_announce_self(void)
175 static QEMUTimer
*timer
;
176 timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, qemu_announce_self_once
, &timer
);
177 qemu_announce_self_once(&timer
);
180 /***********************************************************/
181 /* savevm/loadvm support */
183 static ssize_t
block_writev_buffer(void *opaque
, struct iovec
*iov
, int iovcnt
,
189 qemu_iovec_init_external(&qiov
, iov
, iovcnt
);
190 ret
= bdrv_writev_vmstate(opaque
, &qiov
, pos
);
198 static ssize_t
block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
,
201 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
204 static int bdrv_fclose(void *opaque
)
206 return bdrv_flush(opaque
);
209 static const QEMUFileOps bdrv_read_ops
= {
210 .get_buffer
= block_get_buffer
,
214 static const QEMUFileOps bdrv_write_ops
= {
215 .writev_buffer
= block_writev_buffer
,
219 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
222 return qemu_fopen_ops(bs
, &bdrv_write_ops
);
224 return qemu_fopen_ops(bs
, &bdrv_read_ops
);
228 /* QEMUFile timer support.
229 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
232 void timer_put(QEMUFile
*f
, QEMUTimer
*ts
)
234 uint64_t expire_time
;
236 expire_time
= timer_expire_time_ns(ts
);
237 qemu_put_be64(f
, expire_time
);
240 void timer_get(QEMUFile
*f
, QEMUTimer
*ts
)
242 uint64_t expire_time
;
244 expire_time
= qemu_get_be64(f
);
245 if (expire_time
!= -1) {
246 timer_mod_ns(ts
, expire_time
);
253 /* VMState timer support.
254 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
257 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
, VMStateField
*field
)
264 static int put_timer(QEMUFile
*f
, void *pv
, size_t size
, VMStateField
*field
,
273 const VMStateInfo vmstate_info_timer
= {
280 typedef struct CompatEntry
{
285 typedef struct SaveStateEntry
{
286 QTAILQ_ENTRY(SaveStateEntry
) entry
;
291 /* version id read from the stream */
294 /* section id read from the stream */
297 const VMStateDescription
*vmsd
;
303 typedef struct SaveState
{
304 QTAILQ_HEAD(, SaveStateEntry
) handlers
;
305 int global_section_id
;
308 uint32_t target_page_bits
;
311 static SaveState savevm_state
= {
312 .handlers
= QTAILQ_HEAD_INITIALIZER(savevm_state
.handlers
),
313 .global_section_id
= 0,
316 static int configuration_pre_save(void *opaque
)
318 SaveState
*state
= opaque
;
319 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
321 state
->len
= strlen(current_name
);
322 state
->name
= current_name
;
323 state
->target_page_bits
= qemu_target_page_bits();
328 static int configuration_pre_load(void *opaque
)
330 SaveState
*state
= opaque
;
332 /* If there is no target-page-bits subsection it means the source
333 * predates the variable-target-page-bits support and is using the
334 * minimum possible value for this CPU.
336 state
->target_page_bits
= qemu_target_page_bits_min();
340 static int configuration_post_load(void *opaque
, int version_id
)
342 SaveState
*state
= opaque
;
343 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
345 if (strncmp(state
->name
, current_name
, state
->len
) != 0) {
346 error_report("Machine type received is '%.*s' and local is '%s'",
347 (int) state
->len
, state
->name
, current_name
);
351 if (state
->target_page_bits
!= qemu_target_page_bits()) {
352 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
353 state
->target_page_bits
, qemu_target_page_bits());
360 /* The target-page-bits subsection is present only if the
361 * target page size is not the same as the default (ie the
362 * minimum page size for a variable-page-size guest CPU).
363 * If it is present then it contains the actual target page
364 * bits for the machine, and migration will fail if the
365 * two ends don't agree about it.
367 static bool vmstate_target_page_bits_needed(void *opaque
)
369 return qemu_target_page_bits()
370 > qemu_target_page_bits_min();
373 static const VMStateDescription vmstate_target_page_bits
= {
374 .name
= "configuration/target-page-bits",
376 .minimum_version_id
= 1,
377 .needed
= vmstate_target_page_bits_needed
,
378 .fields
= (VMStateField
[]) {
379 VMSTATE_UINT32(target_page_bits
, SaveState
),
380 VMSTATE_END_OF_LIST()
384 static const VMStateDescription vmstate_configuration
= {
385 .name
= "configuration",
387 .pre_load
= configuration_pre_load
,
388 .post_load
= configuration_post_load
,
389 .pre_save
= configuration_pre_save
,
390 .fields
= (VMStateField
[]) {
391 VMSTATE_UINT32(len
, SaveState
),
392 VMSTATE_VBUFFER_ALLOC_UINT32(name
, SaveState
, 0, NULL
, len
),
393 VMSTATE_END_OF_LIST()
395 .subsections
= (const VMStateDescription
*[]) {
396 &vmstate_target_page_bits
,
401 static void dump_vmstate_vmsd(FILE *out_file
,
402 const VMStateDescription
*vmsd
, int indent
,
405 static void dump_vmstate_vmsf(FILE *out_file
, const VMStateField
*field
,
408 fprintf(out_file
, "%*s{\n", indent
, "");
410 fprintf(out_file
, "%*s\"field\": \"%s\",\n", indent
, "", field
->name
);
411 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
413 fprintf(out_file
, "%*s\"field_exists\": %s,\n", indent
, "",
414 field
->field_exists
? "true" : "false");
415 fprintf(out_file
, "%*s\"size\": %zu", indent
, "", field
->size
);
416 if (field
->vmsd
!= NULL
) {
417 fprintf(out_file
, ",\n");
418 dump_vmstate_vmsd(out_file
, field
->vmsd
, indent
, false);
420 fprintf(out_file
, "\n%*s}", indent
- 2, "");
423 static void dump_vmstate_vmss(FILE *out_file
,
424 const VMStateDescription
**subsection
,
427 if (*subsection
!= NULL
) {
428 dump_vmstate_vmsd(out_file
, *subsection
, indent
, true);
432 static void dump_vmstate_vmsd(FILE *out_file
,
433 const VMStateDescription
*vmsd
, int indent
,
437 fprintf(out_file
, "%*s{\n", indent
, "");
439 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", "Description");
442 fprintf(out_file
, "%*s\"name\": \"%s\",\n", indent
, "", vmsd
->name
);
443 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
445 fprintf(out_file
, "%*s\"minimum_version_id\": %d", indent
, "",
446 vmsd
->minimum_version_id
);
447 if (vmsd
->fields
!= NULL
) {
448 const VMStateField
*field
= vmsd
->fields
;
451 fprintf(out_file
, ",\n%*s\"Fields\": [\n", indent
, "");
453 while (field
->name
!= NULL
) {
454 if (field
->flags
& VMS_MUST_EXIST
) {
455 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
460 fprintf(out_file
, ",\n");
462 dump_vmstate_vmsf(out_file
, field
, indent
+ 2);
466 fprintf(out_file
, "\n%*s]", indent
, "");
468 if (vmsd
->subsections
!= NULL
) {
469 const VMStateDescription
**subsection
= vmsd
->subsections
;
472 fprintf(out_file
, ",\n%*s\"Subsections\": [\n", indent
, "");
474 while (*subsection
!= NULL
) {
476 fprintf(out_file
, ",\n");
478 dump_vmstate_vmss(out_file
, subsection
, indent
+ 2);
482 fprintf(out_file
, "\n%*s]", indent
, "");
484 fprintf(out_file
, "\n%*s}", indent
- 2, "");
487 static void dump_machine_type(FILE *out_file
)
491 mc
= MACHINE_GET_CLASS(current_machine
);
493 fprintf(out_file
, " \"vmschkmachine\": {\n");
494 fprintf(out_file
, " \"Name\": \"%s\"\n", mc
->name
);
495 fprintf(out_file
, " },\n");
498 void dump_vmstate_json_to_file(FILE *out_file
)
503 fprintf(out_file
, "{\n");
504 dump_machine_type(out_file
);
507 list
= object_class_get_list(TYPE_DEVICE
, true);
508 for (elt
= list
; elt
; elt
= elt
->next
) {
509 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
519 fprintf(out_file
, ",\n");
521 name
= object_class_get_name(OBJECT_CLASS(dc
));
522 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", name
);
524 fprintf(out_file
, "%*s\"Name\": \"%s\",\n", indent
, "", name
);
525 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
526 dc
->vmsd
->version_id
);
527 fprintf(out_file
, "%*s\"minimum_version_id\": %d,\n", indent
, "",
528 dc
->vmsd
->minimum_version_id
);
530 dump_vmstate_vmsd(out_file
, dc
->vmsd
, indent
, false);
532 fprintf(out_file
, "\n%*s}", indent
- 2, "");
535 fprintf(out_file
, "\n}\n");
539 static int calculate_new_instance_id(const char *idstr
)
544 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
545 if (strcmp(idstr
, se
->idstr
) == 0
546 && instance_id
<= se
->instance_id
) {
547 instance_id
= se
->instance_id
+ 1;
553 static int calculate_compat_instance_id(const char *idstr
)
558 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
563 if (strcmp(idstr
, se
->compat
->idstr
) == 0
564 && instance_id
<= se
->compat
->instance_id
) {
565 instance_id
= se
->compat
->instance_id
+ 1;
571 static inline MigrationPriority
save_state_priority(SaveStateEntry
*se
)
574 return se
->vmsd
->priority
;
576 return MIG_PRI_DEFAULT
;
579 static void savevm_state_handler_insert(SaveStateEntry
*nse
)
581 MigrationPriority priority
= save_state_priority(nse
);
584 assert(priority
<= MIG_PRI_MAX
);
586 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
587 if (save_state_priority(se
) < priority
) {
593 QTAILQ_INSERT_BEFORE(se
, nse
, entry
);
595 QTAILQ_INSERT_TAIL(&savevm_state
.handlers
, nse
, entry
);
599 /* TODO: Individual devices generally have very little idea about the rest
600 of the system, so instance_id should be removed/replaced.
601 Meanwhile pass -1 as instance_id if you do not already have a clearly
602 distinguishing id for all instances of your device class. */
603 int register_savevm_live(DeviceState
*dev
,
612 se
= g_new0(SaveStateEntry
, 1);
613 se
->version_id
= version_id
;
614 se
->section_id
= savevm_state
.global_section_id
++;
618 /* if this is a live_savem then set is_ram */
619 if (ops
->save_setup
!= NULL
) {
624 char *id
= qdev_get_dev_path(dev
);
626 if (snprintf(se
->idstr
, sizeof(se
->idstr
), "%s/", id
) >=
628 error_report("Path too long for VMState (%s)", id
);
636 se
->compat
= g_new0(CompatEntry
, 1);
637 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), idstr
);
638 se
->compat
->instance_id
= instance_id
== -1 ?
639 calculate_compat_instance_id(idstr
) : instance_id
;
643 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
645 if (instance_id
== -1) {
646 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
648 se
->instance_id
= instance_id
;
650 assert(!se
->compat
|| se
->instance_id
== 0);
651 savevm_state_handler_insert(se
);
655 void unregister_savevm(DeviceState
*dev
, const char *idstr
, void *opaque
)
657 SaveStateEntry
*se
, *new_se
;
661 char *path
= qdev_get_dev_path(dev
);
663 pstrcpy(id
, sizeof(id
), path
);
664 pstrcat(id
, sizeof(id
), "/");
668 pstrcat(id
, sizeof(id
), idstr
);
670 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
671 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
672 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
679 int vmstate_register_with_alias_id(DeviceState
*dev
, int instance_id
,
680 const VMStateDescription
*vmsd
,
681 void *opaque
, int alias_id
,
682 int required_for_version
,
687 /* If this triggers, alias support can be dropped for the vmsd. */
688 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
690 se
= g_new0(SaveStateEntry
, 1);
691 se
->version_id
= vmsd
->version_id
;
692 se
->section_id
= savevm_state
.global_section_id
++;
695 se
->alias_id
= alias_id
;
698 char *id
= qdev_get_dev_path(dev
);
700 if (snprintf(se
->idstr
, sizeof(se
->idstr
), "%s/", id
) >=
702 error_setg(errp
, "Path too long for VMState (%s)", id
);
710 se
->compat
= g_new0(CompatEntry
, 1);
711 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
712 se
->compat
->instance_id
= instance_id
== -1 ?
713 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
717 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
719 if (instance_id
== -1) {
720 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
722 se
->instance_id
= instance_id
;
724 assert(!se
->compat
|| se
->instance_id
== 0);
725 savevm_state_handler_insert(se
);
729 void vmstate_unregister(DeviceState
*dev
, const VMStateDescription
*vmsd
,
732 SaveStateEntry
*se
, *new_se
;
734 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
735 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
736 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
743 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
)
745 trace_vmstate_load(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
746 if (!se
->vmsd
) { /* Old style */
747 return se
->ops
->load_state(f
, se
->opaque
, se
->load_version_id
);
749 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, se
->load_version_id
);
752 static void vmstate_save_old_style(QEMUFile
*f
, SaveStateEntry
*se
, QJSON
*vmdesc
)
754 int64_t old_offset
, size
;
756 old_offset
= qemu_ftell_fast(f
);
757 se
->ops
->save_state(f
, se
->opaque
);
758 size
= qemu_ftell_fast(f
) - old_offset
;
761 json_prop_int(vmdesc
, "size", size
);
762 json_start_array(vmdesc
, "fields");
763 json_start_object(vmdesc
, NULL
);
764 json_prop_str(vmdesc
, "name", "data");
765 json_prop_int(vmdesc
, "size", size
);
766 json_prop_str(vmdesc
, "type", "buffer");
767 json_end_object(vmdesc
);
768 json_end_array(vmdesc
);
772 static int vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
, QJSON
*vmdesc
)
774 trace_vmstate_save(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
776 vmstate_save_old_style(f
, se
, vmdesc
);
779 return vmstate_save_state(f
, se
->vmsd
, se
->opaque
, vmdesc
);
783 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
785 static void save_section_header(QEMUFile
*f
, SaveStateEntry
*se
,
786 uint8_t section_type
)
788 qemu_put_byte(f
, section_type
);
789 qemu_put_be32(f
, se
->section_id
);
791 if (section_type
== QEMU_VM_SECTION_FULL
||
792 section_type
== QEMU_VM_SECTION_START
) {
794 size_t len
= strlen(se
->idstr
);
795 qemu_put_byte(f
, len
);
796 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
798 qemu_put_be32(f
, se
->instance_id
);
799 qemu_put_be32(f
, se
->version_id
);
804 * Write a footer onto device sections that catches cases misformatted device
807 static void save_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
809 if (migrate_get_current()->send_section_footer
) {
810 qemu_put_byte(f
, QEMU_VM_SECTION_FOOTER
);
811 qemu_put_be32(f
, se
->section_id
);
816 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
817 * command and associated data.
819 * @f: File to send command on
820 * @command: Command type to send
821 * @len: Length of associated data
822 * @data: Data associated with command.
824 static void qemu_savevm_command_send(QEMUFile
*f
,
825 enum qemu_vm_cmd command
,
829 trace_savevm_command_send(command
, len
);
830 qemu_put_byte(f
, QEMU_VM_COMMAND
);
831 qemu_put_be16(f
, (uint16_t)command
);
832 qemu_put_be16(f
, len
);
833 qemu_put_buffer(f
, data
, len
);
837 void qemu_savevm_send_ping(QEMUFile
*f
, uint32_t value
)
841 trace_savevm_send_ping(value
);
842 buf
= cpu_to_be32(value
);
843 qemu_savevm_command_send(f
, MIG_CMD_PING
, sizeof(value
), (uint8_t *)&buf
);
846 void qemu_savevm_send_open_return_path(QEMUFile
*f
)
848 trace_savevm_send_open_return_path();
849 qemu_savevm_command_send(f
, MIG_CMD_OPEN_RETURN_PATH
, 0, NULL
);
852 /* We have a buffer of data to send; we don't want that all to be loaded
853 * by the command itself, so the command contains just the length of the
854 * extra buffer that we then send straight after it.
855 * TODO: Must be a better way to organise that
861 int qemu_savevm_send_packaged(QEMUFile
*f
, const uint8_t *buf
, size_t len
)
865 if (len
> MAX_VM_CMD_PACKAGED_SIZE
) {
866 error_report("%s: Unreasonably large packaged state: %zu",
871 tmp
= cpu_to_be32(len
);
873 trace_qemu_savevm_send_packaged();
874 qemu_savevm_command_send(f
, MIG_CMD_PACKAGED
, 4, (uint8_t *)&tmp
);
876 qemu_put_buffer(f
, buf
, len
);
881 /* Send prior to any postcopy transfer */
882 void qemu_savevm_send_postcopy_advise(QEMUFile
*f
)
884 if (migrate_postcopy_ram()) {
886 tmp
[0] = cpu_to_be64(ram_pagesize_summary());
887 tmp
[1] = cpu_to_be64(qemu_target_page_size());
889 trace_qemu_savevm_send_postcopy_advise();
890 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
,
893 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
, 0, NULL
);
897 /* Sent prior to starting the destination running in postcopy, discard pages
898 * that have already been sent but redirtied on the source.
899 * CMD_POSTCOPY_RAM_DISCARD consist of:
901 * byte Length of name field (not including 0)
902 * n x byte RAM block name
903 * byte 0 terminator (just for safety)
904 * n x Byte ranges within the named RAMBlock
905 * be64 Start of the range
908 * name: RAMBlock name that these entries are part of
909 * len: Number of page entries
910 * start_list: 'len' addresses
911 * length_list: 'len' addresses
914 void qemu_savevm_send_postcopy_ram_discard(QEMUFile
*f
, const char *name
,
916 uint64_t *start_list
,
917 uint64_t *length_list
)
922 size_t name_len
= strlen(name
);
924 trace_qemu_savevm_send_postcopy_ram_discard(name
, len
);
925 assert(name_len
< 256);
926 buf
= g_malloc0(1 + 1 + name_len
+ 1 + (8 + 8) * len
);
927 buf
[0] = postcopy_ram_discard_version
;
929 memcpy(buf
+ 2, name
, name_len
);
930 tmplen
= 2 + name_len
;
931 buf
[tmplen
++] = '\0';
933 for (t
= 0; t
< len
; t
++) {
934 stq_be_p(buf
+ tmplen
, start_list
[t
]);
936 stq_be_p(buf
+ tmplen
, length_list
[t
]);
939 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RAM_DISCARD
, tmplen
, buf
);
943 /* Get the destination into a state where it can receive postcopy data. */
944 void qemu_savevm_send_postcopy_listen(QEMUFile
*f
)
946 trace_savevm_send_postcopy_listen();
947 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_LISTEN
, 0, NULL
);
950 /* Kick the destination into running */
951 void qemu_savevm_send_postcopy_run(QEMUFile
*f
)
953 trace_savevm_send_postcopy_run();
954 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RUN
, 0, NULL
);
957 bool qemu_savevm_state_blocked(Error
**errp
)
961 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
962 if (se
->vmsd
&& se
->vmsd
->unmigratable
) {
963 error_setg(errp
, "State blocked by non-migratable device '%s'",
971 void qemu_savevm_state_header(QEMUFile
*f
)
973 trace_savevm_state_header();
974 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
975 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
977 if (migrate_get_current()->send_configuration
) {
978 qemu_put_byte(f
, QEMU_VM_CONFIGURATION
);
979 vmstate_save_state(f
, &vmstate_configuration
, &savevm_state
, 0);
983 void qemu_savevm_state_setup(QEMUFile
*f
)
988 trace_savevm_state_setup();
989 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
990 if (!se
->ops
|| !se
->ops
->save_setup
) {
993 if (se
->ops
&& se
->ops
->is_active
) {
994 if (!se
->ops
->is_active(se
->opaque
)) {
998 save_section_header(f
, se
, QEMU_VM_SECTION_START
);
1000 ret
= se
->ops
->save_setup(f
, se
->opaque
);
1001 save_section_footer(f
, se
);
1003 qemu_file_set_error(f
, ret
);
1010 * this function has three return values:
1011 * negative: there was one error, and we have -errno.
1012 * 0 : We haven't finished, caller have to go again
1013 * 1 : We have finished, we can go to complete phase
1015 int qemu_savevm_state_iterate(QEMUFile
*f
, bool postcopy
)
1020 trace_savevm_state_iterate();
1021 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1022 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
1025 if (se
->ops
&& se
->ops
->is_active
) {
1026 if (!se
->ops
->is_active(se
->opaque
)) {
1031 * In the postcopy phase, any device that doesn't know how to
1032 * do postcopy should have saved it's state in the _complete
1033 * call that's already run, it might get confused if we call
1034 * iterate afterwards.
1037 !(se
->ops
->has_postcopy
&& se
->ops
->has_postcopy(se
->opaque
))) {
1040 if (qemu_file_rate_limit(f
)) {
1043 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1045 save_section_header(f
, se
, QEMU_VM_SECTION_PART
);
1047 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
1048 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1049 save_section_footer(f
, se
);
1052 qemu_file_set_error(f
, ret
);
1055 /* Do not proceed to the next vmstate before this one reported
1056 completion of the current stage. This serializes the migration
1057 and reduces the probability that a faster changing state is
1058 synchronized over and over again. */
1065 static bool should_send_vmdesc(void)
1067 MachineState
*machine
= MACHINE(qdev_get_machine());
1068 bool in_postcopy
= migration_in_postcopy();
1069 return !machine
->suppress_vmdesc
&& !in_postcopy
;
1073 * Calls the save_live_complete_postcopy methods
1074 * causing the last few pages to be sent immediately and doing any associated
1076 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1077 * all the other devices, but that happens at the point we switch to postcopy.
1079 void qemu_savevm_state_complete_postcopy(QEMUFile
*f
)
1084 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1085 if (!se
->ops
|| !se
->ops
->save_live_complete_postcopy
) {
1088 if (se
->ops
&& se
->ops
->is_active
) {
1089 if (!se
->ops
->is_active(se
->opaque
)) {
1093 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1095 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1096 qemu_put_be32(f
, se
->section_id
);
1098 ret
= se
->ops
->save_live_complete_postcopy(f
, se
->opaque
);
1099 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1100 save_section_footer(f
, se
);
1102 qemu_file_set_error(f
, ret
);
1107 qemu_put_byte(f
, QEMU_VM_EOF
);
1111 int qemu_savevm_state_complete_precopy(QEMUFile
*f
, bool iterable_only
,
1112 bool inactivate_disks
)
1118 bool in_postcopy
= migration_in_postcopy();
1120 trace_savevm_state_complete_precopy();
1122 cpu_synchronize_all_states();
1124 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1126 (in_postcopy
&& se
->ops
->has_postcopy
&&
1127 se
->ops
->has_postcopy(se
->opaque
)) ||
1128 (in_postcopy
&& !iterable_only
) ||
1129 !se
->ops
->save_live_complete_precopy
) {
1133 if (se
->ops
&& se
->ops
->is_active
) {
1134 if (!se
->ops
->is_active(se
->opaque
)) {
1138 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1140 save_section_header(f
, se
, QEMU_VM_SECTION_END
);
1142 ret
= se
->ops
->save_live_complete_precopy(f
, se
->opaque
);
1143 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1144 save_section_footer(f
, se
);
1146 qemu_file_set_error(f
, ret
);
1151 if (iterable_only
) {
1155 vmdesc
= qjson_new();
1156 json_prop_int(vmdesc
, "page_size", qemu_target_page_size());
1157 json_start_array(vmdesc
, "devices");
1158 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1160 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1163 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1164 trace_savevm_section_skip(se
->idstr
, se
->section_id
);
1168 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1170 json_start_object(vmdesc
, NULL
);
1171 json_prop_str(vmdesc
, "name", se
->idstr
);
1172 json_prop_int(vmdesc
, "instance_id", se
->instance_id
);
1174 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1175 ret
= vmstate_save(f
, se
, vmdesc
);
1177 qemu_file_set_error(f
, ret
);
1180 trace_savevm_section_end(se
->idstr
, se
->section_id
, 0);
1181 save_section_footer(f
, se
);
1183 json_end_object(vmdesc
);
1186 if (inactivate_disks
) {
1187 /* Inactivate before sending QEMU_VM_EOF so that the
1188 * bdrv_invalidate_cache_all() on the other end won't fail. */
1189 ret
= bdrv_inactivate_all();
1191 error_report("%s: bdrv_inactivate_all() failed (%d)",
1193 qemu_file_set_error(f
, ret
);
1198 /* Postcopy stream will still be going */
1199 qemu_put_byte(f
, QEMU_VM_EOF
);
1202 json_end_array(vmdesc
);
1203 qjson_finish(vmdesc
);
1204 vmdesc_len
= strlen(qjson_get_str(vmdesc
));
1206 if (should_send_vmdesc()) {
1207 qemu_put_byte(f
, QEMU_VM_VMDESCRIPTION
);
1208 qemu_put_be32(f
, vmdesc_len
);
1209 qemu_put_buffer(f
, (uint8_t *)qjson_get_str(vmdesc
), vmdesc_len
);
1211 qjson_destroy(vmdesc
);
1217 /* Give an estimate of the amount left to be transferred,
1218 * the result is split into the amount for units that can and
1219 * for units that can't do postcopy.
1221 void qemu_savevm_state_pending(QEMUFile
*f
, uint64_t threshold_size
,
1222 uint64_t *res_non_postcopiable
,
1223 uint64_t *res_postcopiable
)
1227 *res_non_postcopiable
= 0;
1228 *res_postcopiable
= 0;
1231 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1232 if (!se
->ops
|| !se
->ops
->save_live_pending
) {
1235 if (se
->ops
&& se
->ops
->is_active
) {
1236 if (!se
->ops
->is_active(se
->opaque
)) {
1240 se
->ops
->save_live_pending(f
, se
->opaque
, threshold_size
,
1241 res_non_postcopiable
, res_postcopiable
);
1245 void qemu_savevm_state_cleanup(void)
1249 trace_savevm_state_cleanup();
1250 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1251 if (se
->ops
&& se
->ops
->save_cleanup
) {
1252 se
->ops
->save_cleanup(se
->opaque
);
1257 static int qemu_savevm_state(QEMUFile
*f
, Error
**errp
)
1260 MigrationState
*ms
= migrate_get_current();
1261 MigrationStatus status
;
1265 ms
->to_dst_file
= f
;
1267 if (migration_is_blocked(errp
)) {
1272 if (migrate_use_block()) {
1273 error_setg(errp
, "Block migration and snapshots are incompatible");
1278 qemu_mutex_unlock_iothread();
1279 qemu_savevm_state_header(f
);
1280 qemu_savevm_state_setup(f
);
1281 qemu_mutex_lock_iothread();
1283 while (qemu_file_get_error(f
) == 0) {
1284 if (qemu_savevm_state_iterate(f
, false) > 0) {
1289 ret
= qemu_file_get_error(f
);
1291 qemu_savevm_state_complete_precopy(f
, false, false);
1292 ret
= qemu_file_get_error(f
);
1294 qemu_savevm_state_cleanup();
1296 error_setg_errno(errp
, -ret
, "Error while writing VM state");
1301 status
= MIGRATION_STATUS_FAILED
;
1303 status
= MIGRATION_STATUS_COMPLETED
;
1305 migrate_set_state(&ms
->state
, MIGRATION_STATUS_SETUP
, status
);
1307 /* f is outer parameter, it should not stay in global migration state after
1308 * this function finished */
1309 ms
->to_dst_file
= NULL
;
1314 static int qemu_save_device_state(QEMUFile
*f
)
1318 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1319 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1321 cpu_synchronize_all_states();
1323 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1329 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1332 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1336 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1338 ret
= vmstate_save(f
, se
, NULL
);
1343 save_section_footer(f
, se
);
1346 qemu_put_byte(f
, QEMU_VM_EOF
);
1348 return qemu_file_get_error(f
);
1351 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
1355 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1356 if (!strcmp(se
->idstr
, idstr
) &&
1357 (instance_id
== se
->instance_id
||
1358 instance_id
== se
->alias_id
))
1360 /* Migrating from an older version? */
1361 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
1362 if (!strcmp(se
->compat
->idstr
, idstr
) &&
1363 (instance_id
== se
->compat
->instance_id
||
1364 instance_id
== se
->alias_id
))
1371 enum LoadVMExitCodes
{
1372 /* Allow a command to quit all layers of nested loadvm loops */
1376 static int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
);
1378 /* ------ incoming postcopy messages ------ */
1379 /* 'advise' arrives before any transfers just to tell us that a postcopy
1380 * *might* happen - it might be skipped if precopy transferred everything
1383 static int loadvm_postcopy_handle_advise(MigrationIncomingState
*mis
,
1386 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1387 uint64_t remote_pagesize_summary
, local_pagesize_summary
, remote_tps
;
1389 trace_loadvm_postcopy_handle_advise();
1390 if (ps
!= POSTCOPY_INCOMING_NONE
) {
1391 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps
);
1397 if (migrate_postcopy_ram()) {
1398 error_report("RAM postcopy is enabled but have 0 byte advise");
1403 if (!migrate_postcopy_ram()) {
1404 error_report("RAM postcopy is disabled but have 16 byte advise");
1409 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len
);
1413 if (!postcopy_ram_supported_by_host(mis
)) {
1414 postcopy_state_set(POSTCOPY_INCOMING_NONE
);
1418 remote_pagesize_summary
= qemu_get_be64(mis
->from_src_file
);
1419 local_pagesize_summary
= ram_pagesize_summary();
1421 if (remote_pagesize_summary
!= local_pagesize_summary
) {
1423 * This detects two potential causes of mismatch:
1424 * a) A mismatch in host page sizes
1425 * Some combinations of mismatch are probably possible but it gets
1426 * a bit more complicated. In particular we need to place whole
1427 * host pages on the dest at once, and we need to ensure that we
1428 * handle dirtying to make sure we never end up sending part of
1429 * a hostpage on it's own.
1430 * b) The use of different huge page sizes on source/destination
1431 * a more fine grain test is performed during RAM block migration
1432 * but this test here causes a nice early clear failure, and
1433 * also fails when passed to an older qemu that doesn't
1436 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1438 remote_pagesize_summary
, local_pagesize_summary
);
1442 remote_tps
= qemu_get_be64(mis
->from_src_file
);
1443 if (remote_tps
!= qemu_target_page_size()) {
1445 * Again, some differences could be dealt with, but for now keep it
1448 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1449 (int)remote_tps
, qemu_target_page_size());
1453 if (ram_postcopy_incoming_init(mis
)) {
1457 postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1462 /* After postcopy we will be told to throw some pages away since they're
1463 * dirty and will have to be demand fetched. Must happen before CPU is
1465 * There can be 0..many of these messages, each encoding multiple pages.
1467 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState
*mis
,
1472 PostcopyState ps
= postcopy_state_get();
1474 trace_loadvm_postcopy_ram_handle_discard();
1477 case POSTCOPY_INCOMING_ADVISE
:
1479 tmp
= postcopy_ram_prepare_discard(mis
);
1485 case POSTCOPY_INCOMING_DISCARD
:
1486 /* Expected state */
1490 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1494 /* We're expecting a
1496 * a RAM ID string (length byte, name, 0 term)
1497 * then at least 1 16 byte chunk
1499 if (len
< (1 + 1 + 1 + 1 + 2 * 8)) {
1500 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1504 tmp
= qemu_get_byte(mis
->from_src_file
);
1505 if (tmp
!= postcopy_ram_discard_version
) {
1506 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp
);
1510 if (!qemu_get_counted_string(mis
->from_src_file
, ramid
)) {
1511 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1514 tmp
= qemu_get_byte(mis
->from_src_file
);
1516 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp
);
1520 len
-= 3 + strlen(ramid
);
1522 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1525 trace_loadvm_postcopy_ram_handle_discard_header(ramid
, len
);
1527 uint64_t start_addr
, block_length
;
1528 start_addr
= qemu_get_be64(mis
->from_src_file
);
1529 block_length
= qemu_get_be64(mis
->from_src_file
);
1532 int ret
= ram_discard_range(ramid
, start_addr
, block_length
);
1537 trace_loadvm_postcopy_ram_handle_discard_end();
1543 * Triggered by a postcopy_listen command; this thread takes over reading
1544 * the input stream, leaving the main thread free to carry on loading the rest
1545 * of the device state (from RAM).
1546 * (TODO:This could do with being in a postcopy file - but there again it's
1547 * just another input loop, not that postcopy specific)
1549 static void *postcopy_ram_listen_thread(void *opaque
)
1551 QEMUFile
*f
= opaque
;
1552 MigrationIncomingState
*mis
= migration_incoming_get_current();
1555 migrate_set_state(&mis
->state
, MIGRATION_STATUS_ACTIVE
,
1556 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1557 qemu_sem_post(&mis
->listen_thread_sem
);
1558 trace_postcopy_ram_listen_thread_start();
1561 * Because we're a thread and not a coroutine we can't yield
1562 * in qemu_file, and thus we must be blocking now.
1564 qemu_file_set_blocking(f
, true);
1565 load_res
= qemu_loadvm_state_main(f
, mis
);
1566 /* And non-blocking again so we don't block in any cleanup */
1567 qemu_file_set_blocking(f
, false);
1569 trace_postcopy_ram_listen_thread_exit();
1571 error_report("%s: loadvm failed: %d", __func__
, load_res
);
1572 qemu_file_set_error(f
, load_res
);
1573 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1574 MIGRATION_STATUS_FAILED
);
1577 * This looks good, but it's possible that the device loading in the
1578 * main thread hasn't finished yet, and so we might not be in 'RUN'
1579 * state yet; wait for the end of the main thread.
1581 qemu_event_wait(&mis
->main_thread_load_event
);
1583 postcopy_ram_incoming_cleanup(mis
);
1587 * If something went wrong then we have a bad state so exit;
1588 * depending how far we got it might be possible at this point
1589 * to leave the guest running and fire MCEs for pages that never
1590 * arrived as a desperate recovery step.
1595 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1596 MIGRATION_STATUS_COMPLETED
);
1598 * If everything has worked fine, then the main thread has waited
1599 * for us to start, and we're the last use of the mis.
1600 * (If something broke then qemu will have to exit anyway since it's
1601 * got a bad migration state).
1603 migration_incoming_state_destroy();
1604 qemu_loadvm_state_cleanup();
1609 /* After this message we must be able to immediately receive postcopy data */
1610 static int loadvm_postcopy_handle_listen(MigrationIncomingState
*mis
)
1612 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_LISTENING
);
1613 trace_loadvm_postcopy_handle_listen();
1614 if (ps
!= POSTCOPY_INCOMING_ADVISE
&& ps
!= POSTCOPY_INCOMING_DISCARD
) {
1615 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps
);
1618 if (ps
== POSTCOPY_INCOMING_ADVISE
) {
1620 * A rare case, we entered listen without having to do any discards,
1621 * so do the setup that's normally done at the time of the 1st discard.
1623 if (migrate_postcopy_ram()) {
1624 postcopy_ram_prepare_discard(mis
);
1629 * Sensitise RAM - can now generate requests for blocks that don't exist
1630 * However, at this point the CPU shouldn't be running, and the IO
1631 * shouldn't be doing anything yet so don't actually expect requests
1633 if (migrate_postcopy_ram()) {
1634 if (postcopy_ram_enable_notify(mis
)) {
1639 if (mis
->have_listen_thread
) {
1640 error_report("CMD_POSTCOPY_RAM_LISTEN already has a listen thread");
1644 mis
->have_listen_thread
= true;
1645 /* Start up the listening thread and wait for it to signal ready */
1646 qemu_sem_init(&mis
->listen_thread_sem
, 0);
1647 qemu_thread_create(&mis
->listen_thread
, "postcopy/listen",
1648 postcopy_ram_listen_thread
, mis
->from_src_file
,
1649 QEMU_THREAD_DETACHED
);
1650 qemu_sem_wait(&mis
->listen_thread_sem
);
1651 qemu_sem_destroy(&mis
->listen_thread_sem
);
1661 static void loadvm_postcopy_handle_run_bh(void *opaque
)
1663 Error
*local_err
= NULL
;
1664 HandleRunBhData
*data
= opaque
;
1666 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
1669 cpu_synchronize_all_post_init();
1671 qemu_announce_self();
1673 /* Make sure all file formats flush their mutable metadata.
1674 * If we get an error here, just don't restart the VM yet. */
1675 bdrv_invalidate_cache_all(&local_err
);
1677 error_report_err(local_err
);
1682 trace_loadvm_postcopy_handle_run_cpu_sync();
1683 cpu_synchronize_all_post_init();
1685 trace_loadvm_postcopy_handle_run_vmstart();
1688 /* Hold onto your hats, starting the CPU */
1691 /* leave it paused and let management decide when to start the CPU */
1692 runstate_set(RUN_STATE_PAUSED
);
1695 qemu_bh_delete(data
->bh
);
1699 /* After all discards we can start running and asking for pages */
1700 static int loadvm_postcopy_handle_run(MigrationIncomingState
*mis
)
1702 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_RUNNING
);
1703 HandleRunBhData
*data
;
1705 trace_loadvm_postcopy_handle_run();
1706 if (ps
!= POSTCOPY_INCOMING_LISTENING
) {
1707 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps
);
1711 data
= g_new(HandleRunBhData
, 1);
1712 data
->bh
= qemu_bh_new(loadvm_postcopy_handle_run_bh
, data
);
1713 qemu_bh_schedule(data
->bh
);
1715 /* We need to finish reading the stream from the package
1716 * and also stop reading anything more from the stream that loaded the
1717 * package (since it's now being read by the listener thread).
1718 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
1724 * Immediately following this command is a blob of data containing an embedded
1725 * chunk of migration stream; read it and load it.
1727 * @mis: Incoming state
1728 * @length: Length of packaged data to read
1730 * Returns: Negative values on error
1733 static int loadvm_handle_cmd_packaged(MigrationIncomingState
*mis
)
1737 QIOChannelBuffer
*bioc
;
1739 length
= qemu_get_be32(mis
->from_src_file
);
1740 trace_loadvm_handle_cmd_packaged(length
);
1742 if (length
> MAX_VM_CMD_PACKAGED_SIZE
) {
1743 error_report("Unreasonably large packaged state: %zu", length
);
1747 bioc
= qio_channel_buffer_new(length
);
1748 qio_channel_set_name(QIO_CHANNEL(bioc
), "migration-loadvm-buffer");
1749 ret
= qemu_get_buffer(mis
->from_src_file
,
1752 if (ret
!= length
) {
1753 object_unref(OBJECT(bioc
));
1754 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
1756 return (ret
< 0) ? ret
: -EAGAIN
;
1758 bioc
->usage
+= length
;
1759 trace_loadvm_handle_cmd_packaged_received(ret
);
1761 QEMUFile
*packf
= qemu_fopen_channel_input(QIO_CHANNEL(bioc
));
1763 ret
= qemu_loadvm_state_main(packf
, mis
);
1764 trace_loadvm_handle_cmd_packaged_main(ret
);
1766 object_unref(OBJECT(bioc
));
1772 * Process an incoming 'QEMU_VM_COMMAND'
1773 * 0 just a normal return
1774 * LOADVM_QUIT All good, but exit the loop
1777 static int loadvm_process_command(QEMUFile
*f
)
1779 MigrationIncomingState
*mis
= migration_incoming_get_current();
1784 cmd
= qemu_get_be16(f
);
1785 len
= qemu_get_be16(f
);
1787 /* Check validity before continue processing of cmds */
1788 if (qemu_file_get_error(f
)) {
1789 return qemu_file_get_error(f
);
1792 trace_loadvm_process_command(cmd
, len
);
1793 if (cmd
>= MIG_CMD_MAX
|| cmd
== MIG_CMD_INVALID
) {
1794 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd
, len
);
1798 if (mig_cmd_args
[cmd
].len
!= -1 && mig_cmd_args
[cmd
].len
!= len
) {
1799 error_report("%s received with bad length - expecting %zu, got %d",
1800 mig_cmd_args
[cmd
].name
,
1801 (size_t)mig_cmd_args
[cmd
].len
, len
);
1806 case MIG_CMD_OPEN_RETURN_PATH
:
1807 if (mis
->to_src_file
) {
1808 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
1809 /* Not really a problem, so don't give up */
1812 mis
->to_src_file
= qemu_file_get_return_path(f
);
1813 if (!mis
->to_src_file
) {
1814 error_report("CMD_OPEN_RETURN_PATH failed");
1820 tmp32
= qemu_get_be32(f
);
1821 trace_loadvm_process_command_ping(tmp32
);
1822 if (!mis
->to_src_file
) {
1823 error_report("CMD_PING (0x%x) received with no return path",
1827 migrate_send_rp_pong(mis
, tmp32
);
1830 case MIG_CMD_PACKAGED
:
1831 return loadvm_handle_cmd_packaged(mis
);
1833 case MIG_CMD_POSTCOPY_ADVISE
:
1834 return loadvm_postcopy_handle_advise(mis
, len
);
1836 case MIG_CMD_POSTCOPY_LISTEN
:
1837 return loadvm_postcopy_handle_listen(mis
);
1839 case MIG_CMD_POSTCOPY_RUN
:
1840 return loadvm_postcopy_handle_run(mis
);
1842 case MIG_CMD_POSTCOPY_RAM_DISCARD
:
1843 return loadvm_postcopy_ram_handle_discard(mis
, len
);
1850 * Read a footer off the wire and check that it matches the expected section
1852 * Returns: true if the footer was good
1853 * false if there is a problem (and calls error_report to say why)
1855 static bool check_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
1859 uint32_t read_section_id
;
1861 if (!migrate_get_current()->send_section_footer
) {
1862 /* No footer to check */
1866 read_mark
= qemu_get_byte(f
);
1868 ret
= qemu_file_get_error(f
);
1870 error_report("%s: Read section footer failed: %d",
1875 if (read_mark
!= QEMU_VM_SECTION_FOOTER
) {
1876 error_report("Missing section footer for %s", se
->idstr
);
1880 read_section_id
= qemu_get_be32(f
);
1881 if (read_section_id
!= se
->load_section_id
) {
1882 error_report("Mismatched section id in footer for %s -"
1883 " read 0x%x expected 0x%x",
1884 se
->idstr
, read_section_id
, se
->load_section_id
);
1893 qemu_loadvm_section_start_full(QEMUFile
*f
, MigrationIncomingState
*mis
)
1895 uint32_t instance_id
, version_id
, section_id
;
1900 /* Read section start */
1901 section_id
= qemu_get_be32(f
);
1902 if (!qemu_get_counted_string(f
, idstr
)) {
1903 error_report("Unable to read ID string for section %u",
1907 instance_id
= qemu_get_be32(f
);
1908 version_id
= qemu_get_be32(f
);
1910 ret
= qemu_file_get_error(f
);
1912 error_report("%s: Failed to read instance/version ID: %d",
1917 trace_qemu_loadvm_state_section_startfull(section_id
, idstr
,
1918 instance_id
, version_id
);
1919 /* Find savevm section */
1920 se
= find_se(idstr
, instance_id
);
1922 error_report("Unknown savevm section or instance '%s' %d",
1923 idstr
, instance_id
);
1927 /* Validate version */
1928 if (version_id
> se
->version_id
) {
1929 error_report("savevm: unsupported version %d for '%s' v%d",
1930 version_id
, idstr
, se
->version_id
);
1933 se
->load_version_id
= version_id
;
1934 se
->load_section_id
= section_id
;
1936 /* Validate if it is a device's state */
1937 if (xen_enabled() && se
->is_ram
) {
1938 error_report("loadvm: %s RAM loading not allowed on Xen", idstr
);
1942 ret
= vmstate_load(f
, se
);
1944 error_report("error while loading state for instance 0x%x of"
1945 " device '%s'", instance_id
, idstr
);
1948 if (!check_section_footer(f
, se
)) {
1956 qemu_loadvm_section_part_end(QEMUFile
*f
, MigrationIncomingState
*mis
)
1958 uint32_t section_id
;
1962 section_id
= qemu_get_be32(f
);
1964 ret
= qemu_file_get_error(f
);
1966 error_report("%s: Failed to read section ID: %d",
1971 trace_qemu_loadvm_state_section_partend(section_id
);
1972 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1973 if (se
->load_section_id
== section_id
) {
1978 error_report("Unknown savevm section %d", section_id
);
1982 ret
= vmstate_load(f
, se
);
1984 error_report("error while loading state section id %d(%s)",
1985 section_id
, se
->idstr
);
1988 if (!check_section_footer(f
, se
)) {
1995 static int qemu_loadvm_state_setup(QEMUFile
*f
)
2000 trace_loadvm_state_setup();
2001 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2002 if (!se
->ops
|| !se
->ops
->load_setup
) {
2005 if (se
->ops
&& se
->ops
->is_active
) {
2006 if (!se
->ops
->is_active(se
->opaque
)) {
2011 ret
= se
->ops
->load_setup(f
, se
->opaque
);
2013 qemu_file_set_error(f
, ret
);
2014 error_report("Load state of device %s failed", se
->idstr
);
2021 void qemu_loadvm_state_cleanup(void)
2025 trace_loadvm_state_cleanup();
2026 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2027 if (se
->ops
&& se
->ops
->load_cleanup
) {
2028 se
->ops
->load_cleanup(se
->opaque
);
2033 static int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
)
2035 uint8_t section_type
;
2039 section_type
= qemu_get_byte(f
);
2041 if (qemu_file_get_error(f
)) {
2042 ret
= qemu_file_get_error(f
);
2046 trace_qemu_loadvm_state_section(section_type
);
2047 switch (section_type
) {
2048 case QEMU_VM_SECTION_START
:
2049 case QEMU_VM_SECTION_FULL
:
2050 ret
= qemu_loadvm_section_start_full(f
, mis
);
2055 case QEMU_VM_SECTION_PART
:
2056 case QEMU_VM_SECTION_END
:
2057 ret
= qemu_loadvm_section_part_end(f
, mis
);
2062 case QEMU_VM_COMMAND
:
2063 ret
= loadvm_process_command(f
);
2064 trace_qemu_loadvm_state_section_command(ret
);
2065 if ((ret
< 0) || (ret
& LOADVM_QUIT
)) {
2070 /* This is the end of migration */
2073 error_report("Unknown savevm section type %d", section_type
);
2081 qemu_file_set_error(f
, ret
);
2086 int qemu_loadvm_state(QEMUFile
*f
)
2088 MigrationIncomingState
*mis
= migration_incoming_get_current();
2089 Error
*local_err
= NULL
;
2093 if (qemu_savevm_state_blocked(&local_err
)) {
2094 error_report_err(local_err
);
2098 v
= qemu_get_be32(f
);
2099 if (v
!= QEMU_VM_FILE_MAGIC
) {
2100 error_report("Not a migration stream");
2104 v
= qemu_get_be32(f
);
2105 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
2106 error_report("SaveVM v2 format is obsolete and don't work anymore");
2109 if (v
!= QEMU_VM_FILE_VERSION
) {
2110 error_report("Unsupported migration stream version");
2114 if (qemu_loadvm_state_setup(f
) != 0) {
2118 if (migrate_get_current()->send_configuration
) {
2119 if (qemu_get_byte(f
) != QEMU_VM_CONFIGURATION
) {
2120 error_report("Configuration section missing");
2123 ret
= vmstate_load_state(f
, &vmstate_configuration
, &savevm_state
, 0);
2130 cpu_synchronize_all_pre_loadvm();
2132 ret
= qemu_loadvm_state_main(f
, mis
);
2133 qemu_event_set(&mis
->main_thread_load_event
);
2135 trace_qemu_loadvm_state_post_main(ret
);
2137 if (mis
->have_listen_thread
) {
2138 /* Listen thread still going, can't clean up yet */
2143 ret
= qemu_file_get_error(f
);
2147 * Try to read in the VMDESC section as well, so that dumping tools that
2148 * intercept our migration stream have the chance to see it.
2151 /* We've got to be careful; if we don't read the data and just shut the fd
2152 * then the sender can error if we close while it's still sending.
2153 * We also mustn't read data that isn't there; some transports (RDMA)
2154 * will stall waiting for that data when the source has already closed.
2156 if (ret
== 0 && should_send_vmdesc()) {
2159 uint8_t section_type
= qemu_get_byte(f
);
2161 if (section_type
!= QEMU_VM_VMDESCRIPTION
) {
2162 error_report("Expected vmdescription section, but got %d",
2165 * It doesn't seem worth failing at this point since
2166 * we apparently have an otherwise valid VM state
2169 buf
= g_malloc(0x1000);
2170 size
= qemu_get_be32(f
);
2173 uint32_t read_chunk
= MIN(size
, 0x1000);
2174 qemu_get_buffer(f
, buf
, read_chunk
);
2181 qemu_loadvm_state_cleanup();
2182 cpu_synchronize_all_post_init();
2187 int save_snapshot(const char *name
, Error
**errp
)
2189 BlockDriverState
*bs
, *bs1
;
2190 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
2193 int saved_vm_running
;
2194 uint64_t vm_state_size
;
2197 AioContext
*aio_context
;
2199 if (!bdrv_all_can_snapshot(&bs
)) {
2200 error_setg(errp
, "Device '%s' is writable but does not support "
2201 "snapshots", bdrv_get_device_name(bs
));
2205 /* Delete old snapshots of the same name */
2207 ret
= bdrv_all_delete_snapshot(name
, &bs1
, errp
);
2209 error_prepend(errp
, "Error while deleting snapshot on device "
2210 "'%s': ", bdrv_get_device_name(bs1
));
2215 bs
= bdrv_all_find_vmstate_bs();
2217 error_setg(errp
, "No block device can accept snapshots");
2220 aio_context
= bdrv_get_aio_context(bs
);
2222 saved_vm_running
= runstate_is_running();
2224 ret
= global_state_store();
2226 error_setg(errp
, "Error saving global state");
2229 vm_stop(RUN_STATE_SAVE_VM
);
2231 bdrv_drain_all_begin();
2233 aio_context_acquire(aio_context
);
2235 memset(sn
, 0, sizeof(*sn
));
2237 /* fill auxiliary fields */
2238 qemu_gettimeofday(&tv
);
2239 sn
->date_sec
= tv
.tv_sec
;
2240 sn
->date_nsec
= tv
.tv_usec
* 1000;
2241 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2244 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
2246 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
2247 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
2249 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
2252 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2253 localtime_r((const time_t *)&tv
.tv_sec
, &tm
);
2254 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", &tm
);
2257 /* save the VM state */
2258 f
= qemu_fopen_bdrv(bs
, 1);
2260 error_setg(errp
, "Could not open VM state file");
2263 ret
= qemu_savevm_state(f
, errp
);
2264 vm_state_size
= qemu_ftell(f
);
2270 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
2271 * for itself. BDRV_POLL_WHILE() does not support nested locking because
2272 * it only releases the lock once. Therefore synchronous I/O will deadlock
2273 * unless we release the AioContext before bdrv_all_create_snapshot().
2275 aio_context_release(aio_context
);
2278 ret
= bdrv_all_create_snapshot(sn
, bs
, vm_state_size
, &bs
);
2280 error_setg(errp
, "Error while creating snapshot on '%s'",
2281 bdrv_get_device_name(bs
));
2289 aio_context_release(aio_context
);
2292 bdrv_drain_all_end();
2294 if (saved_vm_running
) {
2300 void qmp_xen_save_devices_state(const char *filename
, bool has_live
, bool live
,
2304 QIOChannelFile
*ioc
;
2305 int saved_vm_running
;
2309 /* live default to true so old version of Xen tool stack can have a
2310 * successfull live migration */
2314 saved_vm_running
= runstate_is_running();
2315 vm_stop(RUN_STATE_SAVE_VM
);
2316 global_state_store_running();
2318 ioc
= qio_channel_file_new_path(filename
, O_WRONLY
| O_CREAT
, 0660, errp
);
2322 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-save-state");
2323 f
= qemu_fopen_channel_output(QIO_CHANNEL(ioc
));
2324 object_unref(OBJECT(ioc
));
2325 ret
= qemu_save_device_state(f
);
2326 if (ret
< 0 || qemu_fclose(f
) < 0) {
2327 error_setg(errp
, QERR_IO_ERROR
);
2329 /* libxl calls the QMP command "stop" before calling
2330 * "xen-save-devices-state" and in case of migration failure, libxl
2331 * would call "cont".
2332 * So call bdrv_inactivate_all (release locks) here to let the other
2333 * side of the migration take controle of the images.
2335 if (live
&& !saved_vm_running
) {
2336 ret
= bdrv_inactivate_all();
2338 error_setg(errp
, "%s: bdrv_inactivate_all() failed (%d)",
2345 if (saved_vm_running
) {
2350 void qmp_xen_load_devices_state(const char *filename
, Error
**errp
)
2353 QIOChannelFile
*ioc
;
2356 /* Guest must be paused before loading the device state; the RAM state
2357 * will already have been loaded by xc
2359 if (runstate_is_running()) {
2360 error_setg(errp
, "Cannot update device state while vm is running");
2363 vm_stop(RUN_STATE_RESTORE_VM
);
2365 ioc
= qio_channel_file_new_path(filename
, O_RDONLY
| O_BINARY
, 0, errp
);
2369 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-load-state");
2370 f
= qemu_fopen_channel_input(QIO_CHANNEL(ioc
));
2371 object_unref(OBJECT(ioc
));
2373 ret
= qemu_loadvm_state(f
);
2376 error_setg(errp
, QERR_IO_ERROR
);
2378 migration_incoming_state_destroy();
2381 int load_snapshot(const char *name
, Error
**errp
)
2383 BlockDriverState
*bs
, *bs_vm_state
;
2384 QEMUSnapshotInfo sn
;
2387 AioContext
*aio_context
;
2388 MigrationIncomingState
*mis
= migration_incoming_get_current();
2390 if (!bdrv_all_can_snapshot(&bs
)) {
2392 "Device '%s' is writable but does not support snapshots",
2393 bdrv_get_device_name(bs
));
2396 ret
= bdrv_all_find_snapshot(name
, &bs
);
2399 "Device '%s' does not have the requested snapshot '%s'",
2400 bdrv_get_device_name(bs
), name
);
2404 bs_vm_state
= bdrv_all_find_vmstate_bs();
2406 error_setg(errp
, "No block device supports snapshots");
2409 aio_context
= bdrv_get_aio_context(bs_vm_state
);
2411 /* Don't even try to load empty VM states */
2412 aio_context_acquire(aio_context
);
2413 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
2414 aio_context_release(aio_context
);
2417 } else if (sn
.vm_state_size
== 0) {
2418 error_setg(errp
, "This is a disk-only snapshot. Revert to it "
2419 " offline using qemu-img");
2423 /* Flush all IO requests so they don't interfere with the new state. */
2424 bdrv_drain_all_begin();
2426 ret
= bdrv_all_goto_snapshot(name
, &bs
, errp
);
2428 error_prepend(errp
, "Could not load snapshot '%s' on '%s': ",
2429 name
, bdrv_get_device_name(bs
));
2433 /* restore the VM state */
2434 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
2436 error_setg(errp
, "Could not open VM state file");
2441 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
2442 mis
->from_src_file
= f
;
2444 aio_context_acquire(aio_context
);
2445 ret
= qemu_loadvm_state(f
);
2446 migration_incoming_state_destroy();
2447 aio_context_release(aio_context
);
2449 bdrv_drain_all_end();
2452 error_setg(errp
, "Error %d while loading VM state", ret
);
2459 bdrv_drain_all_end();
2463 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2465 qemu_ram_set_idstr(mr
->ram_block
,
2466 memory_region_name(mr
), dev
);
2469 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2471 qemu_ram_unset_idstr(mr
->ram_block
);
2474 void vmstate_register_ram_global(MemoryRegion
*mr
)
2476 vmstate_register_ram(mr
, NULL
);
2479 bool vmstate_check_only_migratable(const VMStateDescription
*vmsd
)
2481 /* check needed if --only-migratable is specified */
2482 if (!migrate_get_current()->only_migratable
) {
2486 return !(vmsd
&& vmsd
->unmigratable
);