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"
59 #include "migration/colo.h"
62 #define ETH_P_RARP 0x8035
64 #define ARP_HTYPE_ETH 0x0001
65 #define ARP_PTYPE_IP 0x0800
66 #define ARP_OP_REQUEST_REV 0x3
68 const unsigned int postcopy_ram_discard_version
= 0;
70 /* Subcommands for QEMU_VM_COMMAND */
72 MIG_CMD_INVALID
= 0, /* Must be 0 */
73 MIG_CMD_OPEN_RETURN_PATH
, /* Tell the dest to open the Return path */
74 MIG_CMD_PING
, /* Request a PONG on the RP */
76 MIG_CMD_POSTCOPY_ADVISE
, /* Prior to any page transfers, just
77 warn we might want to do PC */
78 MIG_CMD_POSTCOPY_LISTEN
, /* Start listening for incoming
79 pages as it's running. */
80 MIG_CMD_POSTCOPY_RUN
, /* Start execution */
82 MIG_CMD_POSTCOPY_RAM_DISCARD
, /* A list of pages to discard that
83 were previously sent during
84 precopy but are dirty. */
85 MIG_CMD_PACKAGED
, /* Send a wrapped stream within this stream */
86 MIG_CMD_ENABLE_COLO
, /* Enable COLO */
87 MIG_CMD_POSTCOPY_RESUME
, /* resume postcopy on dest */
88 MIG_CMD_RECV_BITMAP
, /* Request for recved bitmap on dst */
92 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
93 static struct mig_cmd_args
{
94 ssize_t len
; /* -1 = variable */
97 [MIG_CMD_INVALID
] = { .len
= -1, .name
= "INVALID" },
98 [MIG_CMD_OPEN_RETURN_PATH
] = { .len
= 0, .name
= "OPEN_RETURN_PATH" },
99 [MIG_CMD_PING
] = { .len
= sizeof(uint32_t), .name
= "PING" },
100 [MIG_CMD_POSTCOPY_ADVISE
] = { .len
= -1, .name
= "POSTCOPY_ADVISE" },
101 [MIG_CMD_POSTCOPY_LISTEN
] = { .len
= 0, .name
= "POSTCOPY_LISTEN" },
102 [MIG_CMD_POSTCOPY_RUN
] = { .len
= 0, .name
= "POSTCOPY_RUN" },
103 [MIG_CMD_POSTCOPY_RAM_DISCARD
] = {
104 .len
= -1, .name
= "POSTCOPY_RAM_DISCARD" },
105 [MIG_CMD_POSTCOPY_RESUME
] = { .len
= 0, .name
= "POSTCOPY_RESUME" },
106 [MIG_CMD_PACKAGED
] = { .len
= 4, .name
= "PACKAGED" },
107 [MIG_CMD_RECV_BITMAP
] = { .len
= -1, .name
= "RECV_BITMAP" },
108 [MIG_CMD_MAX
] = { .len
= -1, .name
= "MAX" },
111 /* Note for MIG_CMD_POSTCOPY_ADVISE:
112 * The format of arguments is depending on postcopy mode:
113 * - postcopy RAM only
114 * uint64_t host page size
115 * uint64_t taget page size
117 * - postcopy RAM and postcopy dirty bitmaps
118 * format is the same as for postcopy RAM only
120 * - postcopy dirty bitmaps only
121 * Nothing. Command length field is 0.
123 * Be careful: adding a new postcopy entity with some other parameters should
124 * not break format self-description ability. Good way is to introduce some
125 * generic extendable format with an exception for two old entities.
128 static int announce_self_create(uint8_t *buf
,
131 /* Ethernet header. */
132 memset(buf
, 0xff, 6); /* destination MAC addr */
133 memcpy(buf
+ 6, mac_addr
, 6); /* source MAC addr */
134 *(uint16_t *)(buf
+ 12) = htons(ETH_P_RARP
); /* ethertype */
137 *(uint16_t *)(buf
+ 14) = htons(ARP_HTYPE_ETH
); /* hardware addr space */
138 *(uint16_t *)(buf
+ 16) = htons(ARP_PTYPE_IP
); /* protocol addr space */
139 *(buf
+ 18) = 6; /* hardware addr length (ethernet) */
140 *(buf
+ 19) = 4; /* protocol addr length (IPv4) */
141 *(uint16_t *)(buf
+ 20) = htons(ARP_OP_REQUEST_REV
); /* opcode */
142 memcpy(buf
+ 22, mac_addr
, 6); /* source hw addr */
143 memset(buf
+ 28, 0x00, 4); /* source protocol addr */
144 memcpy(buf
+ 32, mac_addr
, 6); /* target hw addr */
145 memset(buf
+ 38, 0x00, 4); /* target protocol addr */
147 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
148 memset(buf
+ 42, 0x00, 18);
150 return 60; /* len (FCS will be added by hardware) */
153 static void qemu_announce_self_iter(NICState
*nic
, void *opaque
)
158 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic
->conf
->macaddr
));
159 len
= announce_self_create(buf
, nic
->conf
->macaddr
.a
);
161 qemu_send_packet_raw(qemu_get_queue(nic
), buf
, len
);
165 static void qemu_announce_self_once(void *opaque
)
167 static int count
= SELF_ANNOUNCE_ROUNDS
;
168 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
170 qemu_foreach_nic(qemu_announce_self_iter
, NULL
);
173 /* delay 50ms, 150ms, 250ms, ... */
174 timer_mod(timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) +
175 self_announce_delay(count
));
182 void qemu_announce_self(void)
184 static QEMUTimer
*timer
;
185 timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, qemu_announce_self_once
, &timer
);
186 qemu_announce_self_once(&timer
);
189 /***********************************************************/
190 /* savevm/loadvm support */
192 static ssize_t
block_writev_buffer(void *opaque
, struct iovec
*iov
, int iovcnt
,
198 qemu_iovec_init_external(&qiov
, iov
, iovcnt
);
199 ret
= bdrv_writev_vmstate(opaque
, &qiov
, pos
);
207 static ssize_t
block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
,
210 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
213 static int bdrv_fclose(void *opaque
)
215 return bdrv_flush(opaque
);
218 static const QEMUFileOps bdrv_read_ops
= {
219 .get_buffer
= block_get_buffer
,
223 static const QEMUFileOps bdrv_write_ops
= {
224 .writev_buffer
= block_writev_buffer
,
228 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
231 return qemu_fopen_ops(bs
, &bdrv_write_ops
);
233 return qemu_fopen_ops(bs
, &bdrv_read_ops
);
237 /* QEMUFile timer support.
238 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
241 void timer_put(QEMUFile
*f
, QEMUTimer
*ts
)
243 uint64_t expire_time
;
245 expire_time
= timer_expire_time_ns(ts
);
246 qemu_put_be64(f
, expire_time
);
249 void timer_get(QEMUFile
*f
, QEMUTimer
*ts
)
251 uint64_t expire_time
;
253 expire_time
= qemu_get_be64(f
);
254 if (expire_time
!= -1) {
255 timer_mod_ns(ts
, expire_time
);
262 /* VMState timer support.
263 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
266 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
,
267 const VMStateField
*field
)
274 static int put_timer(QEMUFile
*f
, void *pv
, size_t size
,
275 const VMStateField
*field
, QJSON
*vmdesc
)
283 const VMStateInfo vmstate_info_timer
= {
290 typedef struct CompatEntry
{
295 typedef struct SaveStateEntry
{
296 QTAILQ_ENTRY(SaveStateEntry
) entry
;
301 /* version id read from the stream */
304 /* section id read from the stream */
306 const SaveVMHandlers
*ops
;
307 const VMStateDescription
*vmsd
;
313 typedef struct SaveState
{
314 QTAILQ_HEAD(, SaveStateEntry
) handlers
;
315 int global_section_id
;
318 uint32_t target_page_bits
;
321 static SaveState savevm_state
= {
322 .handlers
= QTAILQ_HEAD_INITIALIZER(savevm_state
.handlers
),
323 .global_section_id
= 0,
326 static int configuration_pre_save(void *opaque
)
328 SaveState
*state
= opaque
;
329 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
331 state
->len
= strlen(current_name
);
332 state
->name
= current_name
;
333 state
->target_page_bits
= qemu_target_page_bits();
338 static int configuration_pre_load(void *opaque
)
340 SaveState
*state
= opaque
;
342 /* If there is no target-page-bits subsection it means the source
343 * predates the variable-target-page-bits support and is using the
344 * minimum possible value for this CPU.
346 state
->target_page_bits
= qemu_target_page_bits_min();
350 static int configuration_post_load(void *opaque
, int version_id
)
352 SaveState
*state
= opaque
;
353 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
355 if (strncmp(state
->name
, current_name
, state
->len
) != 0) {
356 error_report("Machine type received is '%.*s' and local is '%s'",
357 (int) state
->len
, state
->name
, current_name
);
361 if (state
->target_page_bits
!= qemu_target_page_bits()) {
362 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
363 state
->target_page_bits
, qemu_target_page_bits());
370 /* The target-page-bits subsection is present only if the
371 * target page size is not the same as the default (ie the
372 * minimum page size for a variable-page-size guest CPU).
373 * If it is present then it contains the actual target page
374 * bits for the machine, and migration will fail if the
375 * two ends don't agree about it.
377 static bool vmstate_target_page_bits_needed(void *opaque
)
379 return qemu_target_page_bits()
380 > qemu_target_page_bits_min();
383 static const VMStateDescription vmstate_target_page_bits
= {
384 .name
= "configuration/target-page-bits",
386 .minimum_version_id
= 1,
387 .needed
= vmstate_target_page_bits_needed
,
388 .fields
= (VMStateField
[]) {
389 VMSTATE_UINT32(target_page_bits
, SaveState
),
390 VMSTATE_END_OF_LIST()
394 static const VMStateDescription vmstate_configuration
= {
395 .name
= "configuration",
397 .pre_load
= configuration_pre_load
,
398 .post_load
= configuration_post_load
,
399 .pre_save
= configuration_pre_save
,
400 .fields
= (VMStateField
[]) {
401 VMSTATE_UINT32(len
, SaveState
),
402 VMSTATE_VBUFFER_ALLOC_UINT32(name
, SaveState
, 0, NULL
, len
),
403 VMSTATE_END_OF_LIST()
405 .subsections
= (const VMStateDescription
*[]) {
406 &vmstate_target_page_bits
,
411 static void dump_vmstate_vmsd(FILE *out_file
,
412 const VMStateDescription
*vmsd
, int indent
,
415 static void dump_vmstate_vmsf(FILE *out_file
, const VMStateField
*field
,
418 fprintf(out_file
, "%*s{\n", indent
, "");
420 fprintf(out_file
, "%*s\"field\": \"%s\",\n", indent
, "", field
->name
);
421 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
423 fprintf(out_file
, "%*s\"field_exists\": %s,\n", indent
, "",
424 field
->field_exists
? "true" : "false");
425 fprintf(out_file
, "%*s\"size\": %zu", indent
, "", field
->size
);
426 if (field
->vmsd
!= NULL
) {
427 fprintf(out_file
, ",\n");
428 dump_vmstate_vmsd(out_file
, field
->vmsd
, indent
, false);
430 fprintf(out_file
, "\n%*s}", indent
- 2, "");
433 static void dump_vmstate_vmss(FILE *out_file
,
434 const VMStateDescription
**subsection
,
437 if (*subsection
!= NULL
) {
438 dump_vmstate_vmsd(out_file
, *subsection
, indent
, true);
442 static void dump_vmstate_vmsd(FILE *out_file
,
443 const VMStateDescription
*vmsd
, int indent
,
447 fprintf(out_file
, "%*s{\n", indent
, "");
449 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", "Description");
452 fprintf(out_file
, "%*s\"name\": \"%s\",\n", indent
, "", vmsd
->name
);
453 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
455 fprintf(out_file
, "%*s\"minimum_version_id\": %d", indent
, "",
456 vmsd
->minimum_version_id
);
457 if (vmsd
->fields
!= NULL
) {
458 const VMStateField
*field
= vmsd
->fields
;
461 fprintf(out_file
, ",\n%*s\"Fields\": [\n", indent
, "");
463 while (field
->name
!= NULL
) {
464 if (field
->flags
& VMS_MUST_EXIST
) {
465 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
470 fprintf(out_file
, ",\n");
472 dump_vmstate_vmsf(out_file
, field
, indent
+ 2);
476 fprintf(out_file
, "\n%*s]", indent
, "");
478 if (vmsd
->subsections
!= NULL
) {
479 const VMStateDescription
**subsection
= vmsd
->subsections
;
482 fprintf(out_file
, ",\n%*s\"Subsections\": [\n", indent
, "");
484 while (*subsection
!= NULL
) {
486 fprintf(out_file
, ",\n");
488 dump_vmstate_vmss(out_file
, subsection
, indent
+ 2);
492 fprintf(out_file
, "\n%*s]", indent
, "");
494 fprintf(out_file
, "\n%*s}", indent
- 2, "");
497 static void dump_machine_type(FILE *out_file
)
501 mc
= MACHINE_GET_CLASS(current_machine
);
503 fprintf(out_file
, " \"vmschkmachine\": {\n");
504 fprintf(out_file
, " \"Name\": \"%s\"\n", mc
->name
);
505 fprintf(out_file
, " },\n");
508 void dump_vmstate_json_to_file(FILE *out_file
)
513 fprintf(out_file
, "{\n");
514 dump_machine_type(out_file
);
517 list
= object_class_get_list(TYPE_DEVICE
, true);
518 for (elt
= list
; elt
; elt
= elt
->next
) {
519 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
529 fprintf(out_file
, ",\n");
531 name
= object_class_get_name(OBJECT_CLASS(dc
));
532 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", name
);
534 fprintf(out_file
, "%*s\"Name\": \"%s\",\n", indent
, "", name
);
535 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
536 dc
->vmsd
->version_id
);
537 fprintf(out_file
, "%*s\"minimum_version_id\": %d,\n", indent
, "",
538 dc
->vmsd
->minimum_version_id
);
540 dump_vmstate_vmsd(out_file
, dc
->vmsd
, indent
, false);
542 fprintf(out_file
, "\n%*s}", indent
- 2, "");
545 fprintf(out_file
, "\n}\n");
549 static int calculate_new_instance_id(const char *idstr
)
554 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
555 if (strcmp(idstr
, se
->idstr
) == 0
556 && instance_id
<= se
->instance_id
) {
557 instance_id
= se
->instance_id
+ 1;
563 static int calculate_compat_instance_id(const char *idstr
)
568 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
573 if (strcmp(idstr
, se
->compat
->idstr
) == 0
574 && instance_id
<= se
->compat
->instance_id
) {
575 instance_id
= se
->compat
->instance_id
+ 1;
581 static inline MigrationPriority
save_state_priority(SaveStateEntry
*se
)
584 return se
->vmsd
->priority
;
586 return MIG_PRI_DEFAULT
;
589 static void savevm_state_handler_insert(SaveStateEntry
*nse
)
591 MigrationPriority priority
= save_state_priority(nse
);
594 assert(priority
<= MIG_PRI_MAX
);
596 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
597 if (save_state_priority(se
) < priority
) {
603 QTAILQ_INSERT_BEFORE(se
, nse
, entry
);
605 QTAILQ_INSERT_TAIL(&savevm_state
.handlers
, nse
, entry
);
609 /* TODO: Individual devices generally have very little idea about the rest
610 of the system, so instance_id should be removed/replaced.
611 Meanwhile pass -1 as instance_id if you do not already have a clearly
612 distinguishing id for all instances of your device class. */
613 int register_savevm_live(DeviceState
*dev
,
617 const SaveVMHandlers
*ops
,
622 se
= g_new0(SaveStateEntry
, 1);
623 se
->version_id
= version_id
;
624 se
->section_id
= savevm_state
.global_section_id
++;
628 /* if this is a live_savem then set is_ram */
629 if (ops
->save_setup
!= NULL
) {
634 char *id
= qdev_get_dev_path(dev
);
636 if (snprintf(se
->idstr
, sizeof(se
->idstr
), "%s/", id
) >=
638 error_report("Path too long for VMState (%s)", id
);
646 se
->compat
= g_new0(CompatEntry
, 1);
647 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), idstr
);
648 se
->compat
->instance_id
= instance_id
== -1 ?
649 calculate_compat_instance_id(idstr
) : instance_id
;
653 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
655 if (instance_id
== -1) {
656 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
658 se
->instance_id
= instance_id
;
660 assert(!se
->compat
|| se
->instance_id
== 0);
661 savevm_state_handler_insert(se
);
665 void unregister_savevm(DeviceState
*dev
, const char *idstr
, void *opaque
)
667 SaveStateEntry
*se
, *new_se
;
671 char *path
= qdev_get_dev_path(dev
);
673 pstrcpy(id
, sizeof(id
), path
);
674 pstrcat(id
, sizeof(id
), "/");
678 pstrcat(id
, sizeof(id
), idstr
);
680 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
681 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
682 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
689 int vmstate_register_with_alias_id(DeviceState
*dev
, int instance_id
,
690 const VMStateDescription
*vmsd
,
691 void *opaque
, int alias_id
,
692 int required_for_version
,
697 /* If this triggers, alias support can be dropped for the vmsd. */
698 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
700 se
= g_new0(SaveStateEntry
, 1);
701 se
->version_id
= vmsd
->version_id
;
702 se
->section_id
= savevm_state
.global_section_id
++;
705 se
->alias_id
= alias_id
;
708 char *id
= qdev_get_dev_path(dev
);
710 if (snprintf(se
->idstr
, sizeof(se
->idstr
), "%s/", id
) >=
712 error_setg(errp
, "Path too long for VMState (%s)", id
);
720 se
->compat
= g_new0(CompatEntry
, 1);
721 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
722 se
->compat
->instance_id
= instance_id
== -1 ?
723 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
727 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
729 if (instance_id
== -1) {
730 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
732 se
->instance_id
= instance_id
;
734 assert(!se
->compat
|| se
->instance_id
== 0);
735 savevm_state_handler_insert(se
);
739 void vmstate_unregister(DeviceState
*dev
, const VMStateDescription
*vmsd
,
742 SaveStateEntry
*se
, *new_se
;
744 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
745 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
746 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
753 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
)
755 trace_vmstate_load(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
756 if (!se
->vmsd
) { /* Old style */
757 return se
->ops
->load_state(f
, se
->opaque
, se
->load_version_id
);
759 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, se
->load_version_id
);
762 static void vmstate_save_old_style(QEMUFile
*f
, SaveStateEntry
*se
, QJSON
*vmdesc
)
764 int64_t old_offset
, size
;
766 old_offset
= qemu_ftell_fast(f
);
767 se
->ops
->save_state(f
, se
->opaque
);
768 size
= qemu_ftell_fast(f
) - old_offset
;
771 json_prop_int(vmdesc
, "size", size
);
772 json_start_array(vmdesc
, "fields");
773 json_start_object(vmdesc
, NULL
);
774 json_prop_str(vmdesc
, "name", "data");
775 json_prop_int(vmdesc
, "size", size
);
776 json_prop_str(vmdesc
, "type", "buffer");
777 json_end_object(vmdesc
);
778 json_end_array(vmdesc
);
782 static int vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
, QJSON
*vmdesc
)
784 trace_vmstate_save(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
786 vmstate_save_old_style(f
, se
, vmdesc
);
789 return vmstate_save_state(f
, se
->vmsd
, se
->opaque
, vmdesc
);
793 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
795 static void save_section_header(QEMUFile
*f
, SaveStateEntry
*se
,
796 uint8_t section_type
)
798 qemu_put_byte(f
, section_type
);
799 qemu_put_be32(f
, se
->section_id
);
801 if (section_type
== QEMU_VM_SECTION_FULL
||
802 section_type
== QEMU_VM_SECTION_START
) {
804 size_t len
= strlen(se
->idstr
);
805 qemu_put_byte(f
, len
);
806 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
808 qemu_put_be32(f
, se
->instance_id
);
809 qemu_put_be32(f
, se
->version_id
);
814 * Write a footer onto device sections that catches cases misformatted device
817 static void save_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
819 if (migrate_get_current()->send_section_footer
) {
820 qemu_put_byte(f
, QEMU_VM_SECTION_FOOTER
);
821 qemu_put_be32(f
, se
->section_id
);
826 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
827 * command and associated data.
829 * @f: File to send command on
830 * @command: Command type to send
831 * @len: Length of associated data
832 * @data: Data associated with command.
834 static void qemu_savevm_command_send(QEMUFile
*f
,
835 enum qemu_vm_cmd command
,
839 trace_savevm_command_send(command
, len
);
840 qemu_put_byte(f
, QEMU_VM_COMMAND
);
841 qemu_put_be16(f
, (uint16_t)command
);
842 qemu_put_be16(f
, len
);
843 qemu_put_buffer(f
, data
, len
);
847 void qemu_savevm_send_colo_enable(QEMUFile
*f
)
849 trace_savevm_send_colo_enable();
850 qemu_savevm_command_send(f
, MIG_CMD_ENABLE_COLO
, 0, NULL
);
853 void qemu_savevm_send_ping(QEMUFile
*f
, uint32_t value
)
857 trace_savevm_send_ping(value
);
858 buf
= cpu_to_be32(value
);
859 qemu_savevm_command_send(f
, MIG_CMD_PING
, sizeof(value
), (uint8_t *)&buf
);
862 void qemu_savevm_send_open_return_path(QEMUFile
*f
)
864 trace_savevm_send_open_return_path();
865 qemu_savevm_command_send(f
, MIG_CMD_OPEN_RETURN_PATH
, 0, NULL
);
868 /* We have a buffer of data to send; we don't want that all to be loaded
869 * by the command itself, so the command contains just the length of the
870 * extra buffer that we then send straight after it.
871 * TODO: Must be a better way to organise that
877 int qemu_savevm_send_packaged(QEMUFile
*f
, const uint8_t *buf
, size_t len
)
881 if (len
> MAX_VM_CMD_PACKAGED_SIZE
) {
882 error_report("%s: Unreasonably large packaged state: %zu",
887 tmp
= cpu_to_be32(len
);
889 trace_qemu_savevm_send_packaged();
890 qemu_savevm_command_send(f
, MIG_CMD_PACKAGED
, 4, (uint8_t *)&tmp
);
892 qemu_put_buffer(f
, buf
, len
);
897 /* Send prior to any postcopy transfer */
898 void qemu_savevm_send_postcopy_advise(QEMUFile
*f
)
900 if (migrate_postcopy_ram()) {
902 tmp
[0] = cpu_to_be64(ram_pagesize_summary());
903 tmp
[1] = cpu_to_be64(qemu_target_page_size());
905 trace_qemu_savevm_send_postcopy_advise();
906 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
,
909 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
, 0, NULL
);
913 /* Sent prior to starting the destination running in postcopy, discard pages
914 * that have already been sent but redirtied on the source.
915 * CMD_POSTCOPY_RAM_DISCARD consist of:
917 * byte Length of name field (not including 0)
918 * n x byte RAM block name
919 * byte 0 terminator (just for safety)
920 * n x Byte ranges within the named RAMBlock
921 * be64 Start of the range
924 * name: RAMBlock name that these entries are part of
925 * len: Number of page entries
926 * start_list: 'len' addresses
927 * length_list: 'len' addresses
930 void qemu_savevm_send_postcopy_ram_discard(QEMUFile
*f
, const char *name
,
932 uint64_t *start_list
,
933 uint64_t *length_list
)
938 size_t name_len
= strlen(name
);
940 trace_qemu_savevm_send_postcopy_ram_discard(name
, len
);
941 assert(name_len
< 256);
942 buf
= g_malloc0(1 + 1 + name_len
+ 1 + (8 + 8) * len
);
943 buf
[0] = postcopy_ram_discard_version
;
945 memcpy(buf
+ 2, name
, name_len
);
946 tmplen
= 2 + name_len
;
947 buf
[tmplen
++] = '\0';
949 for (t
= 0; t
< len
; t
++) {
950 stq_be_p(buf
+ tmplen
, start_list
[t
]);
952 stq_be_p(buf
+ tmplen
, length_list
[t
]);
955 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RAM_DISCARD
, tmplen
, buf
);
959 /* Get the destination into a state where it can receive postcopy data. */
960 void qemu_savevm_send_postcopy_listen(QEMUFile
*f
)
962 trace_savevm_send_postcopy_listen();
963 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_LISTEN
, 0, NULL
);
966 /* Kick the destination into running */
967 void qemu_savevm_send_postcopy_run(QEMUFile
*f
)
969 trace_savevm_send_postcopy_run();
970 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RUN
, 0, NULL
);
973 void qemu_savevm_send_postcopy_resume(QEMUFile
*f
)
975 trace_savevm_send_postcopy_resume();
976 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RESUME
, 0, NULL
);
979 void qemu_savevm_send_recv_bitmap(QEMUFile
*f
, char *block_name
)
984 trace_savevm_send_recv_bitmap(block_name
);
986 buf
[0] = len
= strlen(block_name
);
987 memcpy(buf
+ 1, block_name
, len
);
989 qemu_savevm_command_send(f
, MIG_CMD_RECV_BITMAP
, len
+ 1, (uint8_t *)buf
);
992 bool qemu_savevm_state_blocked(Error
**errp
)
996 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
997 if (se
->vmsd
&& se
->vmsd
->unmigratable
) {
998 error_setg(errp
, "State blocked by non-migratable device '%s'",
1006 void qemu_savevm_state_header(QEMUFile
*f
)
1008 trace_savevm_state_header();
1009 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1010 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1012 if (migrate_get_current()->send_configuration
) {
1013 qemu_put_byte(f
, QEMU_VM_CONFIGURATION
);
1014 vmstate_save_state(f
, &vmstate_configuration
, &savevm_state
, 0);
1018 void qemu_savevm_state_setup(QEMUFile
*f
)
1023 trace_savevm_state_setup();
1024 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1025 if (!se
->ops
|| !se
->ops
->save_setup
) {
1028 if (se
->ops
&& se
->ops
->is_active
) {
1029 if (!se
->ops
->is_active(se
->opaque
)) {
1033 save_section_header(f
, se
, QEMU_VM_SECTION_START
);
1035 ret
= se
->ops
->save_setup(f
, se
->opaque
);
1036 save_section_footer(f
, se
);
1038 qemu_file_set_error(f
, ret
);
1044 int qemu_savevm_state_resume_prepare(MigrationState
*s
)
1049 trace_savevm_state_resume_prepare();
1051 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1052 if (!se
->ops
|| !se
->ops
->resume_prepare
) {
1055 if (se
->ops
&& se
->ops
->is_active
) {
1056 if (!se
->ops
->is_active(se
->opaque
)) {
1060 ret
= se
->ops
->resume_prepare(s
, se
->opaque
);
1070 * this function has three return values:
1071 * negative: there was one error, and we have -errno.
1072 * 0 : We haven't finished, caller have to go again
1073 * 1 : We have finished, we can go to complete phase
1075 int qemu_savevm_state_iterate(QEMUFile
*f
, bool postcopy
)
1080 trace_savevm_state_iterate();
1081 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1082 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
1085 if (se
->ops
&& se
->ops
->is_active
) {
1086 if (!se
->ops
->is_active(se
->opaque
)) {
1090 if (se
->ops
&& se
->ops
->is_active_iterate
) {
1091 if (!se
->ops
->is_active_iterate(se
->opaque
)) {
1096 * In the postcopy phase, any device that doesn't know how to
1097 * do postcopy should have saved it's state in the _complete
1098 * call that's already run, it might get confused if we call
1099 * iterate afterwards.
1102 !(se
->ops
->has_postcopy
&& se
->ops
->has_postcopy(se
->opaque
))) {
1105 if (qemu_file_rate_limit(f
)) {
1108 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1110 save_section_header(f
, se
, QEMU_VM_SECTION_PART
);
1112 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
1113 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1114 save_section_footer(f
, se
);
1117 qemu_file_set_error(f
, ret
);
1120 /* Do not proceed to the next vmstate before this one reported
1121 completion of the current stage. This serializes the migration
1122 and reduces the probability that a faster changing state is
1123 synchronized over and over again. */
1130 static bool should_send_vmdesc(void)
1132 MachineState
*machine
= MACHINE(qdev_get_machine());
1133 bool in_postcopy
= migration_in_postcopy();
1134 return !machine
->suppress_vmdesc
&& !in_postcopy
;
1138 * Calls the save_live_complete_postcopy methods
1139 * causing the last few pages to be sent immediately and doing any associated
1141 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1142 * all the other devices, but that happens at the point we switch to postcopy.
1144 void qemu_savevm_state_complete_postcopy(QEMUFile
*f
)
1149 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1150 if (!se
->ops
|| !se
->ops
->save_live_complete_postcopy
) {
1153 if (se
->ops
&& se
->ops
->is_active
) {
1154 if (!se
->ops
->is_active(se
->opaque
)) {
1158 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1160 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1161 qemu_put_be32(f
, se
->section_id
);
1163 ret
= se
->ops
->save_live_complete_postcopy(f
, se
->opaque
);
1164 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1165 save_section_footer(f
, se
);
1167 qemu_file_set_error(f
, ret
);
1172 qemu_put_byte(f
, QEMU_VM_EOF
);
1176 int qemu_savevm_state_complete_precopy(QEMUFile
*f
, bool iterable_only
,
1177 bool inactivate_disks
)
1183 bool in_postcopy
= migration_in_postcopy();
1185 trace_savevm_state_complete_precopy();
1187 cpu_synchronize_all_states();
1189 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1191 (in_postcopy
&& se
->ops
->has_postcopy
&&
1192 se
->ops
->has_postcopy(se
->opaque
)) ||
1193 (in_postcopy
&& !iterable_only
) ||
1194 !se
->ops
->save_live_complete_precopy
) {
1198 if (se
->ops
&& se
->ops
->is_active
) {
1199 if (!se
->ops
->is_active(se
->opaque
)) {
1203 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1205 save_section_header(f
, se
, QEMU_VM_SECTION_END
);
1207 ret
= se
->ops
->save_live_complete_precopy(f
, se
->opaque
);
1208 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1209 save_section_footer(f
, se
);
1211 qemu_file_set_error(f
, ret
);
1216 if (iterable_only
) {
1220 vmdesc
= qjson_new();
1221 json_prop_int(vmdesc
, "page_size", qemu_target_page_size());
1222 json_start_array(vmdesc
, "devices");
1223 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1225 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1228 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1229 trace_savevm_section_skip(se
->idstr
, se
->section_id
);
1233 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1235 json_start_object(vmdesc
, NULL
);
1236 json_prop_str(vmdesc
, "name", se
->idstr
);
1237 json_prop_int(vmdesc
, "instance_id", se
->instance_id
);
1239 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1240 ret
= vmstate_save(f
, se
, vmdesc
);
1242 qemu_file_set_error(f
, ret
);
1245 trace_savevm_section_end(se
->idstr
, se
->section_id
, 0);
1246 save_section_footer(f
, se
);
1248 json_end_object(vmdesc
);
1251 if (inactivate_disks
) {
1252 /* Inactivate before sending QEMU_VM_EOF so that the
1253 * bdrv_invalidate_cache_all() on the other end won't fail. */
1254 ret
= bdrv_inactivate_all();
1256 error_report("%s: bdrv_inactivate_all() failed (%d)",
1258 qemu_file_set_error(f
, ret
);
1263 /* Postcopy stream will still be going */
1264 qemu_put_byte(f
, QEMU_VM_EOF
);
1267 json_end_array(vmdesc
);
1268 qjson_finish(vmdesc
);
1269 vmdesc_len
= strlen(qjson_get_str(vmdesc
));
1271 if (should_send_vmdesc()) {
1272 qemu_put_byte(f
, QEMU_VM_VMDESCRIPTION
);
1273 qemu_put_be32(f
, vmdesc_len
);
1274 qemu_put_buffer(f
, (uint8_t *)qjson_get_str(vmdesc
), vmdesc_len
);
1276 qjson_destroy(vmdesc
);
1282 /* Give an estimate of the amount left to be transferred,
1283 * the result is split into the amount for units that can and
1284 * for units that can't do postcopy.
1286 void qemu_savevm_state_pending(QEMUFile
*f
, uint64_t threshold_size
,
1287 uint64_t *res_precopy_only
,
1288 uint64_t *res_compatible
,
1289 uint64_t *res_postcopy_only
)
1293 *res_precopy_only
= 0;
1294 *res_compatible
= 0;
1295 *res_postcopy_only
= 0;
1298 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1299 if (!se
->ops
|| !se
->ops
->save_live_pending
) {
1302 if (se
->ops
&& se
->ops
->is_active
) {
1303 if (!se
->ops
->is_active(se
->opaque
)) {
1307 se
->ops
->save_live_pending(f
, se
->opaque
, threshold_size
,
1308 res_precopy_only
, res_compatible
,
1313 void qemu_savevm_state_cleanup(void)
1317 trace_savevm_state_cleanup();
1318 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1319 if (se
->ops
&& se
->ops
->save_cleanup
) {
1320 se
->ops
->save_cleanup(se
->opaque
);
1325 static int qemu_savevm_state(QEMUFile
*f
, Error
**errp
)
1328 MigrationState
*ms
= migrate_get_current();
1329 MigrationStatus status
;
1331 if (migration_is_setup_or_active(ms
->state
) ||
1332 ms
->state
== MIGRATION_STATUS_CANCELLING
||
1333 ms
->state
== MIGRATION_STATUS_COLO
) {
1334 error_setg(errp
, QERR_MIGRATION_ACTIVE
);
1338 if (migration_is_blocked(errp
)) {
1342 if (migrate_use_block()) {
1343 error_setg(errp
, "Block migration and snapshots are incompatible");
1348 ms
->to_dst_file
= f
;
1350 qemu_mutex_unlock_iothread();
1351 qemu_savevm_state_header(f
);
1352 qemu_savevm_state_setup(f
);
1353 qemu_mutex_lock_iothread();
1355 while (qemu_file_get_error(f
) == 0) {
1356 if (qemu_savevm_state_iterate(f
, false) > 0) {
1361 ret
= qemu_file_get_error(f
);
1363 qemu_savevm_state_complete_precopy(f
, false, false);
1364 ret
= qemu_file_get_error(f
);
1366 qemu_savevm_state_cleanup();
1368 error_setg_errno(errp
, -ret
, "Error while writing VM state");
1372 status
= MIGRATION_STATUS_FAILED
;
1374 status
= MIGRATION_STATUS_COMPLETED
;
1376 migrate_set_state(&ms
->state
, MIGRATION_STATUS_SETUP
, status
);
1378 /* f is outer parameter, it should not stay in global migration state after
1379 * this function finished */
1380 ms
->to_dst_file
= NULL
;
1385 void qemu_savevm_live_state(QEMUFile
*f
)
1387 /* save QEMU_VM_SECTION_END section */
1388 qemu_savevm_state_complete_precopy(f
, true, false);
1389 qemu_put_byte(f
, QEMU_VM_EOF
);
1392 int qemu_save_device_state(QEMUFile
*f
)
1396 if (!migration_in_colo_state()) {
1397 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1398 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1400 cpu_synchronize_all_states();
1402 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1408 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1411 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1415 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1417 ret
= vmstate_save(f
, se
, NULL
);
1422 save_section_footer(f
, se
);
1425 qemu_put_byte(f
, QEMU_VM_EOF
);
1427 return qemu_file_get_error(f
);
1430 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
1434 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1435 if (!strcmp(se
->idstr
, idstr
) &&
1436 (instance_id
== se
->instance_id
||
1437 instance_id
== se
->alias_id
))
1439 /* Migrating from an older version? */
1440 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
1441 if (!strcmp(se
->compat
->idstr
, idstr
) &&
1442 (instance_id
== se
->compat
->instance_id
||
1443 instance_id
== se
->alias_id
))
1450 enum LoadVMExitCodes
{
1451 /* Allow a command to quit all layers of nested loadvm loops */
1455 /* ------ incoming postcopy messages ------ */
1456 /* 'advise' arrives before any transfers just to tell us that a postcopy
1457 * *might* happen - it might be skipped if precopy transferred everything
1460 static int loadvm_postcopy_handle_advise(MigrationIncomingState
*mis
,
1463 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1464 uint64_t remote_pagesize_summary
, local_pagesize_summary
, remote_tps
;
1465 Error
*local_err
= NULL
;
1467 trace_loadvm_postcopy_handle_advise();
1468 if (ps
!= POSTCOPY_INCOMING_NONE
) {
1469 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps
);
1475 if (migrate_postcopy_ram()) {
1476 error_report("RAM postcopy is enabled but have 0 byte advise");
1481 if (!migrate_postcopy_ram()) {
1482 error_report("RAM postcopy is disabled but have 16 byte advise");
1487 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len
);
1491 if (!postcopy_ram_supported_by_host(mis
)) {
1492 postcopy_state_set(POSTCOPY_INCOMING_NONE
);
1496 remote_pagesize_summary
= qemu_get_be64(mis
->from_src_file
);
1497 local_pagesize_summary
= ram_pagesize_summary();
1499 if (remote_pagesize_summary
!= local_pagesize_summary
) {
1501 * This detects two potential causes of mismatch:
1502 * a) A mismatch in host page sizes
1503 * Some combinations of mismatch are probably possible but it gets
1504 * a bit more complicated. In particular we need to place whole
1505 * host pages on the dest at once, and we need to ensure that we
1506 * handle dirtying to make sure we never end up sending part of
1507 * a hostpage on it's own.
1508 * b) The use of different huge page sizes on source/destination
1509 * a more fine grain test is performed during RAM block migration
1510 * but this test here causes a nice early clear failure, and
1511 * also fails when passed to an older qemu that doesn't
1514 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1516 remote_pagesize_summary
, local_pagesize_summary
);
1520 remote_tps
= qemu_get_be64(mis
->from_src_file
);
1521 if (remote_tps
!= qemu_target_page_size()) {
1523 * Again, some differences could be dealt with, but for now keep it
1526 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1527 (int)remote_tps
, qemu_target_page_size());
1531 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_ADVISE
, &local_err
)) {
1532 error_report_err(local_err
);
1536 if (ram_postcopy_incoming_init(mis
)) {
1540 postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1545 /* After postcopy we will be told to throw some pages away since they're
1546 * dirty and will have to be demand fetched. Must happen before CPU is
1548 * There can be 0..many of these messages, each encoding multiple pages.
1550 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState
*mis
,
1555 PostcopyState ps
= postcopy_state_get();
1557 trace_loadvm_postcopy_ram_handle_discard();
1560 case POSTCOPY_INCOMING_ADVISE
:
1562 tmp
= postcopy_ram_prepare_discard(mis
);
1568 case POSTCOPY_INCOMING_DISCARD
:
1569 /* Expected state */
1573 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1577 /* We're expecting a
1579 * a RAM ID string (length byte, name, 0 term)
1580 * then at least 1 16 byte chunk
1582 if (len
< (1 + 1 + 1 + 1 + 2 * 8)) {
1583 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1587 tmp
= qemu_get_byte(mis
->from_src_file
);
1588 if (tmp
!= postcopy_ram_discard_version
) {
1589 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp
);
1593 if (!qemu_get_counted_string(mis
->from_src_file
, ramid
)) {
1594 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1597 tmp
= qemu_get_byte(mis
->from_src_file
);
1599 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp
);
1603 len
-= 3 + strlen(ramid
);
1605 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1608 trace_loadvm_postcopy_ram_handle_discard_header(ramid
, len
);
1610 uint64_t start_addr
, block_length
;
1611 start_addr
= qemu_get_be64(mis
->from_src_file
);
1612 block_length
= qemu_get_be64(mis
->from_src_file
);
1615 int ret
= ram_discard_range(ramid
, start_addr
, block_length
);
1620 trace_loadvm_postcopy_ram_handle_discard_end();
1626 * Triggered by a postcopy_listen command; this thread takes over reading
1627 * the input stream, leaving the main thread free to carry on loading the rest
1628 * of the device state (from RAM).
1629 * (TODO:This could do with being in a postcopy file - but there again it's
1630 * just another input loop, not that postcopy specific)
1632 static void *postcopy_ram_listen_thread(void *opaque
)
1634 MigrationIncomingState
*mis
= migration_incoming_get_current();
1635 QEMUFile
*f
= mis
->from_src_file
;
1638 migrate_set_state(&mis
->state
, MIGRATION_STATUS_ACTIVE
,
1639 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1640 qemu_sem_post(&mis
->listen_thread_sem
);
1641 trace_postcopy_ram_listen_thread_start();
1643 rcu_register_thread();
1645 * Because we're a thread and not a coroutine we can't yield
1646 * in qemu_file, and thus we must be blocking now.
1648 qemu_file_set_blocking(f
, true);
1649 load_res
= qemu_loadvm_state_main(f
, mis
);
1652 * This is tricky, but, mis->from_src_file can change after it
1653 * returns, when postcopy recovery happened. In the future, we may
1654 * want a wrapper for the QEMUFile handle.
1656 f
= mis
->from_src_file
;
1658 /* And non-blocking again so we don't block in any cleanup */
1659 qemu_file_set_blocking(f
, false);
1661 trace_postcopy_ram_listen_thread_exit();
1663 error_report("%s: loadvm failed: %d", __func__
, load_res
);
1664 qemu_file_set_error(f
, load_res
);
1665 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1666 MIGRATION_STATUS_FAILED
);
1669 * This looks good, but it's possible that the device loading in the
1670 * main thread hasn't finished yet, and so we might not be in 'RUN'
1671 * state yet; wait for the end of the main thread.
1673 qemu_event_wait(&mis
->main_thread_load_event
);
1675 postcopy_ram_incoming_cleanup(mis
);
1679 * If something went wrong then we have a bad state so exit;
1680 * depending how far we got it might be possible at this point
1681 * to leave the guest running and fire MCEs for pages that never
1682 * arrived as a desperate recovery step.
1684 rcu_unregister_thread();
1688 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1689 MIGRATION_STATUS_COMPLETED
);
1691 * If everything has worked fine, then the main thread has waited
1692 * for us to start, and we're the last use of the mis.
1693 * (If something broke then qemu will have to exit anyway since it's
1694 * got a bad migration state).
1696 migration_incoming_state_destroy();
1697 qemu_loadvm_state_cleanup();
1699 rcu_unregister_thread();
1700 mis
->have_listen_thread
= false;
1704 /* After this message we must be able to immediately receive postcopy data */
1705 static int loadvm_postcopy_handle_listen(MigrationIncomingState
*mis
)
1707 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_LISTENING
);
1708 trace_loadvm_postcopy_handle_listen();
1709 Error
*local_err
= NULL
;
1711 if (ps
!= POSTCOPY_INCOMING_ADVISE
&& ps
!= POSTCOPY_INCOMING_DISCARD
) {
1712 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps
);
1715 if (ps
== POSTCOPY_INCOMING_ADVISE
) {
1717 * A rare case, we entered listen without having to do any discards,
1718 * so do the setup that's normally done at the time of the 1st discard.
1720 if (migrate_postcopy_ram()) {
1721 postcopy_ram_prepare_discard(mis
);
1726 * Sensitise RAM - can now generate requests for blocks that don't exist
1727 * However, at this point the CPU shouldn't be running, and the IO
1728 * shouldn't be doing anything yet so don't actually expect requests
1730 if (migrate_postcopy_ram()) {
1731 if (postcopy_ram_enable_notify(mis
)) {
1732 postcopy_ram_incoming_cleanup(mis
);
1737 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_LISTEN
, &local_err
)) {
1738 error_report_err(local_err
);
1742 if (mis
->have_listen_thread
) {
1743 error_report("CMD_POSTCOPY_RAM_LISTEN already has a listen thread");
1747 mis
->have_listen_thread
= true;
1748 /* Start up the listening thread and wait for it to signal ready */
1749 qemu_sem_init(&mis
->listen_thread_sem
, 0);
1750 qemu_thread_create(&mis
->listen_thread
, "postcopy/listen",
1751 postcopy_ram_listen_thread
, NULL
,
1752 QEMU_THREAD_DETACHED
);
1753 qemu_sem_wait(&mis
->listen_thread_sem
);
1754 qemu_sem_destroy(&mis
->listen_thread_sem
);
1764 static void loadvm_postcopy_handle_run_bh(void *opaque
)
1766 Error
*local_err
= NULL
;
1767 HandleRunBhData
*data
= opaque
;
1769 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
1772 cpu_synchronize_all_post_init();
1774 qemu_announce_self();
1776 /* Make sure all file formats flush their mutable metadata.
1777 * If we get an error here, just don't restart the VM yet. */
1778 bdrv_invalidate_cache_all(&local_err
);
1780 error_report_err(local_err
);
1785 trace_loadvm_postcopy_handle_run_cpu_sync();
1786 cpu_synchronize_all_post_init();
1788 trace_loadvm_postcopy_handle_run_vmstart();
1790 dirty_bitmap_mig_before_vm_start();
1793 /* Hold onto your hats, starting the CPU */
1796 /* leave it paused and let management decide when to start the CPU */
1797 runstate_set(RUN_STATE_PAUSED
);
1800 qemu_bh_delete(data
->bh
);
1804 /* After all discards we can start running and asking for pages */
1805 static int loadvm_postcopy_handle_run(MigrationIncomingState
*mis
)
1807 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_RUNNING
);
1808 HandleRunBhData
*data
;
1810 trace_loadvm_postcopy_handle_run();
1811 if (ps
!= POSTCOPY_INCOMING_LISTENING
) {
1812 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps
);
1816 data
= g_new(HandleRunBhData
, 1);
1817 data
->bh
= qemu_bh_new(loadvm_postcopy_handle_run_bh
, data
);
1818 qemu_bh_schedule(data
->bh
);
1820 /* We need to finish reading the stream from the package
1821 * and also stop reading anything more from the stream that loaded the
1822 * package (since it's now being read by the listener thread).
1823 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
1828 static int loadvm_postcopy_handle_resume(MigrationIncomingState
*mis
)
1830 if (mis
->state
!= MIGRATION_STATUS_POSTCOPY_RECOVER
) {
1831 error_report("%s: illegal resume received", __func__
);
1832 /* Don't fail the load, only for this. */
1837 * This means source VM is ready to resume the postcopy migration.
1838 * It's time to switch state and release the fault thread to
1839 * continue service page faults.
1841 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_RECOVER
,
1842 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1843 qemu_sem_post(&mis
->postcopy_pause_sem_fault
);
1845 trace_loadvm_postcopy_handle_resume();
1847 /* Tell source that "we are ready" */
1848 migrate_send_rp_resume_ack(mis
, MIGRATION_RESUME_ACK_VALUE
);
1854 * Immediately following this command is a blob of data containing an embedded
1855 * chunk of migration stream; read it and load it.
1857 * @mis: Incoming state
1858 * @length: Length of packaged data to read
1860 * Returns: Negative values on error
1863 static int loadvm_handle_cmd_packaged(MigrationIncomingState
*mis
)
1867 QIOChannelBuffer
*bioc
;
1869 length
= qemu_get_be32(mis
->from_src_file
);
1870 trace_loadvm_handle_cmd_packaged(length
);
1872 if (length
> MAX_VM_CMD_PACKAGED_SIZE
) {
1873 error_report("Unreasonably large packaged state: %zu", length
);
1877 bioc
= qio_channel_buffer_new(length
);
1878 qio_channel_set_name(QIO_CHANNEL(bioc
), "migration-loadvm-buffer");
1879 ret
= qemu_get_buffer(mis
->from_src_file
,
1882 if (ret
!= length
) {
1883 object_unref(OBJECT(bioc
));
1884 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
1886 return (ret
< 0) ? ret
: -EAGAIN
;
1888 bioc
->usage
+= length
;
1889 trace_loadvm_handle_cmd_packaged_received(ret
);
1891 QEMUFile
*packf
= qemu_fopen_channel_input(QIO_CHANNEL(bioc
));
1893 ret
= qemu_loadvm_state_main(packf
, mis
);
1894 trace_loadvm_handle_cmd_packaged_main(ret
);
1896 object_unref(OBJECT(bioc
));
1902 * Handle request that source requests for recved_bitmap on
1903 * destination. Payload format:
1905 * len (1 byte) + ramblock_name (<255 bytes)
1907 static int loadvm_handle_recv_bitmap(MigrationIncomingState
*mis
,
1910 QEMUFile
*file
= mis
->from_src_file
;
1912 char block_name
[256];
1915 cnt
= qemu_get_counted_string(file
, block_name
);
1917 error_report("%s: failed to read block name", __func__
);
1921 /* Validate before using the data */
1922 if (qemu_file_get_error(file
)) {
1923 return qemu_file_get_error(file
);
1926 if (len
!= cnt
+ 1) {
1927 error_report("%s: invalid payload length (%d)", __func__
, len
);
1931 rb
= qemu_ram_block_by_name(block_name
);
1933 error_report("%s: block '%s' not found", __func__
, block_name
);
1937 migrate_send_rp_recv_bitmap(mis
, block_name
);
1939 trace_loadvm_handle_recv_bitmap(block_name
);
1944 static int loadvm_process_enable_colo(MigrationIncomingState
*mis
)
1946 migration_incoming_enable_colo();
1947 return colo_init_ram_cache();
1951 * Process an incoming 'QEMU_VM_COMMAND'
1952 * 0 just a normal return
1953 * LOADVM_QUIT All good, but exit the loop
1956 static int loadvm_process_command(QEMUFile
*f
)
1958 MigrationIncomingState
*mis
= migration_incoming_get_current();
1963 cmd
= qemu_get_be16(f
);
1964 len
= qemu_get_be16(f
);
1966 /* Check validity before continue processing of cmds */
1967 if (qemu_file_get_error(f
)) {
1968 return qemu_file_get_error(f
);
1971 trace_loadvm_process_command(cmd
, len
);
1972 if (cmd
>= MIG_CMD_MAX
|| cmd
== MIG_CMD_INVALID
) {
1973 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd
, len
);
1977 if (mig_cmd_args
[cmd
].len
!= -1 && mig_cmd_args
[cmd
].len
!= len
) {
1978 error_report("%s received with bad length - expecting %zu, got %d",
1979 mig_cmd_args
[cmd
].name
,
1980 (size_t)mig_cmd_args
[cmd
].len
, len
);
1985 case MIG_CMD_OPEN_RETURN_PATH
:
1986 if (mis
->to_src_file
) {
1987 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
1988 /* Not really a problem, so don't give up */
1991 mis
->to_src_file
= qemu_file_get_return_path(f
);
1992 if (!mis
->to_src_file
) {
1993 error_report("CMD_OPEN_RETURN_PATH failed");
1999 tmp32
= qemu_get_be32(f
);
2000 trace_loadvm_process_command_ping(tmp32
);
2001 if (!mis
->to_src_file
) {
2002 error_report("CMD_PING (0x%x) received with no return path",
2006 migrate_send_rp_pong(mis
, tmp32
);
2009 case MIG_CMD_PACKAGED
:
2010 return loadvm_handle_cmd_packaged(mis
);
2012 case MIG_CMD_POSTCOPY_ADVISE
:
2013 return loadvm_postcopy_handle_advise(mis
, len
);
2015 case MIG_CMD_POSTCOPY_LISTEN
:
2016 return loadvm_postcopy_handle_listen(mis
);
2018 case MIG_CMD_POSTCOPY_RUN
:
2019 return loadvm_postcopy_handle_run(mis
);
2021 case MIG_CMD_POSTCOPY_RAM_DISCARD
:
2022 return loadvm_postcopy_ram_handle_discard(mis
, len
);
2024 case MIG_CMD_POSTCOPY_RESUME
:
2025 return loadvm_postcopy_handle_resume(mis
);
2027 case MIG_CMD_RECV_BITMAP
:
2028 return loadvm_handle_recv_bitmap(mis
, len
);
2030 case MIG_CMD_ENABLE_COLO
:
2031 return loadvm_process_enable_colo(mis
);
2038 * Read a footer off the wire and check that it matches the expected section
2040 * Returns: true if the footer was good
2041 * false if there is a problem (and calls error_report to say why)
2043 static bool check_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
2047 uint32_t read_section_id
;
2049 if (!migrate_get_current()->send_section_footer
) {
2050 /* No footer to check */
2054 read_mark
= qemu_get_byte(f
);
2056 ret
= qemu_file_get_error(f
);
2058 error_report("%s: Read section footer failed: %d",
2063 if (read_mark
!= QEMU_VM_SECTION_FOOTER
) {
2064 error_report("Missing section footer for %s", se
->idstr
);
2068 read_section_id
= qemu_get_be32(f
);
2069 if (read_section_id
!= se
->load_section_id
) {
2070 error_report("Mismatched section id in footer for %s -"
2071 " read 0x%x expected 0x%x",
2072 se
->idstr
, read_section_id
, se
->load_section_id
);
2081 qemu_loadvm_section_start_full(QEMUFile
*f
, MigrationIncomingState
*mis
)
2083 uint32_t instance_id
, version_id
, section_id
;
2088 /* Read section start */
2089 section_id
= qemu_get_be32(f
);
2090 if (!qemu_get_counted_string(f
, idstr
)) {
2091 error_report("Unable to read ID string for section %u",
2095 instance_id
= qemu_get_be32(f
);
2096 version_id
= qemu_get_be32(f
);
2098 ret
= qemu_file_get_error(f
);
2100 error_report("%s: Failed to read instance/version ID: %d",
2105 trace_qemu_loadvm_state_section_startfull(section_id
, idstr
,
2106 instance_id
, version_id
);
2107 /* Find savevm section */
2108 se
= find_se(idstr
, instance_id
);
2110 error_report("Unknown savevm section or instance '%s' %d. "
2111 "Make sure that your current VM setup matches your "
2112 "saved VM setup, including any hotplugged devices",
2113 idstr
, instance_id
);
2117 /* Validate version */
2118 if (version_id
> se
->version_id
) {
2119 error_report("savevm: unsupported version %d for '%s' v%d",
2120 version_id
, idstr
, se
->version_id
);
2123 se
->load_version_id
= version_id
;
2124 se
->load_section_id
= section_id
;
2126 /* Validate if it is a device's state */
2127 if (xen_enabled() && se
->is_ram
) {
2128 error_report("loadvm: %s RAM loading not allowed on Xen", idstr
);
2132 ret
= vmstate_load(f
, se
);
2134 error_report("error while loading state for instance 0x%x of"
2135 " device '%s'", instance_id
, idstr
);
2138 if (!check_section_footer(f
, se
)) {
2146 qemu_loadvm_section_part_end(QEMUFile
*f
, MigrationIncomingState
*mis
)
2148 uint32_t section_id
;
2152 section_id
= qemu_get_be32(f
);
2154 ret
= qemu_file_get_error(f
);
2156 error_report("%s: Failed to read section ID: %d",
2161 trace_qemu_loadvm_state_section_partend(section_id
);
2162 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2163 if (se
->load_section_id
== section_id
) {
2168 error_report("Unknown savevm section %d", section_id
);
2172 ret
= vmstate_load(f
, se
);
2174 error_report("error while loading state section id %d(%s)",
2175 section_id
, se
->idstr
);
2178 if (!check_section_footer(f
, se
)) {
2185 static int qemu_loadvm_state_setup(QEMUFile
*f
)
2190 trace_loadvm_state_setup();
2191 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2192 if (!se
->ops
|| !se
->ops
->load_setup
) {
2195 if (se
->ops
&& se
->ops
->is_active
) {
2196 if (!se
->ops
->is_active(se
->opaque
)) {
2201 ret
= se
->ops
->load_setup(f
, se
->opaque
);
2203 qemu_file_set_error(f
, ret
);
2204 error_report("Load state of device %s failed", se
->idstr
);
2211 void qemu_loadvm_state_cleanup(void)
2215 trace_loadvm_state_cleanup();
2216 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
2217 if (se
->ops
&& se
->ops
->load_cleanup
) {
2218 se
->ops
->load_cleanup(se
->opaque
);
2223 /* Return true if we should continue the migration, or false. */
2224 static bool postcopy_pause_incoming(MigrationIncomingState
*mis
)
2226 trace_postcopy_pause_incoming();
2228 /* Clear the triggered bit to allow one recovery */
2229 mis
->postcopy_recover_triggered
= false;
2231 assert(mis
->from_src_file
);
2232 qemu_file_shutdown(mis
->from_src_file
);
2233 qemu_fclose(mis
->from_src_file
);
2234 mis
->from_src_file
= NULL
;
2236 assert(mis
->to_src_file
);
2237 qemu_file_shutdown(mis
->to_src_file
);
2238 qemu_mutex_lock(&mis
->rp_mutex
);
2239 qemu_fclose(mis
->to_src_file
);
2240 mis
->to_src_file
= NULL
;
2241 qemu_mutex_unlock(&mis
->rp_mutex
);
2243 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
2244 MIGRATION_STATUS_POSTCOPY_PAUSED
);
2246 /* Notify the fault thread for the invalidated file handle */
2247 postcopy_fault_thread_notify(mis
);
2249 error_report("Detected IO failure for postcopy. "
2250 "Migration paused.");
2252 while (mis
->state
== MIGRATION_STATUS_POSTCOPY_PAUSED
) {
2253 qemu_sem_wait(&mis
->postcopy_pause_sem_dst
);
2256 trace_postcopy_pause_incoming_continued();
2261 int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
)
2263 uint8_t section_type
;
2268 section_type
= qemu_get_byte(f
);
2270 if (qemu_file_get_error(f
)) {
2271 ret
= qemu_file_get_error(f
);
2275 trace_qemu_loadvm_state_section(section_type
);
2276 switch (section_type
) {
2277 case QEMU_VM_SECTION_START
:
2278 case QEMU_VM_SECTION_FULL
:
2279 ret
= qemu_loadvm_section_start_full(f
, mis
);
2284 case QEMU_VM_SECTION_PART
:
2285 case QEMU_VM_SECTION_END
:
2286 ret
= qemu_loadvm_section_part_end(f
, mis
);
2291 case QEMU_VM_COMMAND
:
2292 ret
= loadvm_process_command(f
);
2293 trace_qemu_loadvm_state_section_command(ret
);
2294 if ((ret
< 0) || (ret
& LOADVM_QUIT
)) {
2299 /* This is the end of migration */
2302 error_report("Unknown savevm section type %d", section_type
);
2310 qemu_file_set_error(f
, ret
);
2313 * If we are during an active postcopy, then we pause instead
2314 * of bail out to at least keep the VM's dirty data. Note
2315 * that POSTCOPY_INCOMING_LISTENING stage is still not enough,
2316 * during which we're still receiving device states and we
2317 * still haven't yet started the VM on destination.
2319 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING
&&
2320 postcopy_pause_incoming(mis
)) {
2321 /* Reset f to point to the newly created channel */
2322 f
= mis
->from_src_file
;
2329 int qemu_loadvm_state(QEMUFile
*f
)
2331 MigrationIncomingState
*mis
= migration_incoming_get_current();
2332 Error
*local_err
= NULL
;
2336 if (qemu_savevm_state_blocked(&local_err
)) {
2337 error_report_err(local_err
);
2341 v
= qemu_get_be32(f
);
2342 if (v
!= QEMU_VM_FILE_MAGIC
) {
2343 error_report("Not a migration stream");
2347 v
= qemu_get_be32(f
);
2348 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
2349 error_report("SaveVM v2 format is obsolete and don't work anymore");
2352 if (v
!= QEMU_VM_FILE_VERSION
) {
2353 error_report("Unsupported migration stream version");
2357 if (qemu_loadvm_state_setup(f
) != 0) {
2361 if (migrate_get_current()->send_configuration
) {
2362 if (qemu_get_byte(f
) != QEMU_VM_CONFIGURATION
) {
2363 error_report("Configuration section missing");
2364 qemu_loadvm_state_cleanup();
2367 ret
= vmstate_load_state(f
, &vmstate_configuration
, &savevm_state
, 0);
2370 qemu_loadvm_state_cleanup();
2375 cpu_synchronize_all_pre_loadvm();
2377 ret
= qemu_loadvm_state_main(f
, mis
);
2378 qemu_event_set(&mis
->main_thread_load_event
);
2380 trace_qemu_loadvm_state_post_main(ret
);
2382 if (mis
->have_listen_thread
) {
2383 /* Listen thread still going, can't clean up yet */
2388 ret
= qemu_file_get_error(f
);
2392 * Try to read in the VMDESC section as well, so that dumping tools that
2393 * intercept our migration stream have the chance to see it.
2396 /* We've got to be careful; if we don't read the data and just shut the fd
2397 * then the sender can error if we close while it's still sending.
2398 * We also mustn't read data that isn't there; some transports (RDMA)
2399 * will stall waiting for that data when the source has already closed.
2401 if (ret
== 0 && should_send_vmdesc()) {
2404 uint8_t section_type
= qemu_get_byte(f
);
2406 if (section_type
!= QEMU_VM_VMDESCRIPTION
) {
2407 error_report("Expected vmdescription section, but got %d",
2410 * It doesn't seem worth failing at this point since
2411 * we apparently have an otherwise valid VM state
2414 buf
= g_malloc(0x1000);
2415 size
= qemu_get_be32(f
);
2418 uint32_t read_chunk
= MIN(size
, 0x1000);
2419 qemu_get_buffer(f
, buf
, read_chunk
);
2426 qemu_loadvm_state_cleanup();
2427 cpu_synchronize_all_post_init();
2432 int qemu_load_device_state(QEMUFile
*f
)
2434 MigrationIncomingState
*mis
= migration_incoming_get_current();
2437 /* Load QEMU_VM_SECTION_FULL section */
2438 ret
= qemu_loadvm_state_main(f
, mis
);
2440 error_report("Failed to load device state: %d", ret
);
2444 cpu_synchronize_all_post_init();
2448 int save_snapshot(const char *name
, Error
**errp
)
2450 BlockDriverState
*bs
, *bs1
;
2451 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
2454 int saved_vm_running
;
2455 uint64_t vm_state_size
;
2458 AioContext
*aio_context
;
2460 if (migration_is_blocked(errp
)) {
2464 if (!replay_can_snapshot()) {
2465 error_setg(errp
, "Record/replay does not allow making snapshot "
2466 "right now. Try once more later.");
2470 if (!bdrv_all_can_snapshot(&bs
)) {
2471 error_setg(errp
, "Device '%s' is writable but does not support "
2472 "snapshots", bdrv_get_device_name(bs
));
2476 /* Delete old snapshots of the same name */
2478 ret
= bdrv_all_delete_snapshot(name
, &bs1
, errp
);
2480 error_prepend(errp
, "Error while deleting snapshot on device "
2481 "'%s': ", bdrv_get_device_name(bs1
));
2486 bs
= bdrv_all_find_vmstate_bs();
2488 error_setg(errp
, "No block device can accept snapshots");
2491 aio_context
= bdrv_get_aio_context(bs
);
2493 saved_vm_running
= runstate_is_running();
2495 ret
= global_state_store();
2497 error_setg(errp
, "Error saving global state");
2500 vm_stop(RUN_STATE_SAVE_VM
);
2502 bdrv_drain_all_begin();
2504 aio_context_acquire(aio_context
);
2506 memset(sn
, 0, sizeof(*sn
));
2508 /* fill auxiliary fields */
2509 qemu_gettimeofday(&tv
);
2510 sn
->date_sec
= tv
.tv_sec
;
2511 sn
->date_nsec
= tv
.tv_usec
* 1000;
2512 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2515 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
2517 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
2518 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
2520 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
2523 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2524 localtime_r((const time_t *)&tv
.tv_sec
, &tm
);
2525 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", &tm
);
2528 /* save the VM state */
2529 f
= qemu_fopen_bdrv(bs
, 1);
2531 error_setg(errp
, "Could not open VM state file");
2534 ret
= qemu_savevm_state(f
, errp
);
2535 vm_state_size
= qemu_ftell(f
);
2541 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
2542 * for itself. BDRV_POLL_WHILE() does not support nested locking because
2543 * it only releases the lock once. Therefore synchronous I/O will deadlock
2544 * unless we release the AioContext before bdrv_all_create_snapshot().
2546 aio_context_release(aio_context
);
2549 ret
= bdrv_all_create_snapshot(sn
, bs
, vm_state_size
, &bs
);
2551 error_setg(errp
, "Error while creating snapshot on '%s'",
2552 bdrv_get_device_name(bs
));
2560 aio_context_release(aio_context
);
2563 bdrv_drain_all_end();
2565 if (saved_vm_running
) {
2571 void qmp_xen_save_devices_state(const char *filename
, bool has_live
, bool live
,
2575 QIOChannelFile
*ioc
;
2576 int saved_vm_running
;
2580 /* live default to true so old version of Xen tool stack can have a
2581 * successfull live migration */
2585 saved_vm_running
= runstate_is_running();
2586 vm_stop(RUN_STATE_SAVE_VM
);
2587 global_state_store_running();
2589 ioc
= qio_channel_file_new_path(filename
, O_WRONLY
| O_CREAT
, 0660, errp
);
2593 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-save-state");
2594 f
= qemu_fopen_channel_output(QIO_CHANNEL(ioc
));
2595 object_unref(OBJECT(ioc
));
2596 ret
= qemu_save_device_state(f
);
2597 if (ret
< 0 || qemu_fclose(f
) < 0) {
2598 error_setg(errp
, QERR_IO_ERROR
);
2600 /* libxl calls the QMP command "stop" before calling
2601 * "xen-save-devices-state" and in case of migration failure, libxl
2602 * would call "cont".
2603 * So call bdrv_inactivate_all (release locks) here to let the other
2604 * side of the migration take controle of the images.
2606 if (live
&& !saved_vm_running
) {
2607 ret
= bdrv_inactivate_all();
2609 error_setg(errp
, "%s: bdrv_inactivate_all() failed (%d)",
2616 if (saved_vm_running
) {
2621 void qmp_xen_load_devices_state(const char *filename
, Error
**errp
)
2624 QIOChannelFile
*ioc
;
2627 /* Guest must be paused before loading the device state; the RAM state
2628 * will already have been loaded by xc
2630 if (runstate_is_running()) {
2631 error_setg(errp
, "Cannot update device state while vm is running");
2634 vm_stop(RUN_STATE_RESTORE_VM
);
2636 ioc
= qio_channel_file_new_path(filename
, O_RDONLY
| O_BINARY
, 0, errp
);
2640 qio_channel_set_name(QIO_CHANNEL(ioc
), "migration-xen-load-state");
2641 f
= qemu_fopen_channel_input(QIO_CHANNEL(ioc
));
2642 object_unref(OBJECT(ioc
));
2644 ret
= qemu_loadvm_state(f
);
2647 error_setg(errp
, QERR_IO_ERROR
);
2649 migration_incoming_state_destroy();
2652 int load_snapshot(const char *name
, Error
**errp
)
2654 BlockDriverState
*bs
, *bs_vm_state
;
2655 QEMUSnapshotInfo sn
;
2658 AioContext
*aio_context
;
2659 MigrationIncomingState
*mis
= migration_incoming_get_current();
2661 if (!replay_can_snapshot()) {
2662 error_setg(errp
, "Record/replay does not allow loading snapshot "
2663 "right now. Try once more later.");
2667 if (!bdrv_all_can_snapshot(&bs
)) {
2669 "Device '%s' is writable but does not support snapshots",
2670 bdrv_get_device_name(bs
));
2673 ret
= bdrv_all_find_snapshot(name
, &bs
);
2676 "Device '%s' does not have the requested snapshot '%s'",
2677 bdrv_get_device_name(bs
), name
);
2681 bs_vm_state
= bdrv_all_find_vmstate_bs();
2683 error_setg(errp
, "No block device supports snapshots");
2686 aio_context
= bdrv_get_aio_context(bs_vm_state
);
2688 /* Don't even try to load empty VM states */
2689 aio_context_acquire(aio_context
);
2690 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
2691 aio_context_release(aio_context
);
2694 } else if (sn
.vm_state_size
== 0) {
2695 error_setg(errp
, "This is a disk-only snapshot. Revert to it "
2696 " offline using qemu-img");
2700 /* Flush all IO requests so they don't interfere with the new state. */
2701 bdrv_drain_all_begin();
2703 ret
= bdrv_all_goto_snapshot(name
, &bs
, errp
);
2705 error_prepend(errp
, "Could not load snapshot '%s' on '%s': ",
2706 name
, bdrv_get_device_name(bs
));
2710 /* restore the VM state */
2711 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
2713 error_setg(errp
, "Could not open VM state file");
2718 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
2719 mis
->from_src_file
= f
;
2721 aio_context_acquire(aio_context
);
2722 ret
= qemu_loadvm_state(f
);
2723 migration_incoming_state_destroy();
2724 aio_context_release(aio_context
);
2726 bdrv_drain_all_end();
2729 error_setg(errp
, "Error %d while loading VM state", ret
);
2736 bdrv_drain_all_end();
2740 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2742 qemu_ram_set_idstr(mr
->ram_block
,
2743 memory_region_name(mr
), dev
);
2744 qemu_ram_set_migratable(mr
->ram_block
);
2747 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2749 qemu_ram_unset_idstr(mr
->ram_block
);
2750 qemu_ram_unset_migratable(mr
->ram_block
);
2753 void vmstate_register_ram_global(MemoryRegion
*mr
)
2755 vmstate_register_ram(mr
, NULL
);
2758 bool vmstate_check_only_migratable(const VMStateDescription
*vmsd
)
2760 /* check needed if --only-migratable is specified */
2761 if (!migrate_get_current()->only_migratable
) {
2765 return !(vmsd
&& vmsd
->unmigratable
);