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 "qemu-common.h"
31 #include "hw/boards.h"
35 #include "monitor/monitor.h"
36 #include "sysemu/sysemu.h"
37 #include "qemu/timer.h"
38 #include "audio/audio.h"
39 #include "migration/migration.h"
40 #include "migration/postcopy-ram.h"
41 #include "qapi/qmp/qerror.h"
42 #include "qemu/error-report.h"
43 #include "qemu/sockets.h"
44 #include "qemu/queue.h"
45 #include "sysemu/cpus.h"
46 #include "exec/memory.h"
47 #include "qmp-commands.h"
49 #include "qemu/bitops.h"
51 #include "block/snapshot.h"
52 #include "block/qapi.h"
56 #define ETH_P_RARP 0x8035
58 #define ARP_HTYPE_ETH 0x0001
59 #define ARP_PTYPE_IP 0x0800
60 #define ARP_OP_REQUEST_REV 0x3
62 const unsigned int postcopy_ram_discard_version
= 0;
64 static bool skip_section_footers
;
66 static struct mig_cmd_args
{
67 ssize_t len
; /* -1 = variable */
70 [MIG_CMD_INVALID
] = { .len
= -1, .name
= "INVALID" },
71 [MIG_CMD_OPEN_RETURN_PATH
] = { .len
= 0, .name
= "OPEN_RETURN_PATH" },
72 [MIG_CMD_PING
] = { .len
= sizeof(uint32_t), .name
= "PING" },
73 [MIG_CMD_POSTCOPY_ADVISE
] = { .len
= 16, .name
= "POSTCOPY_ADVISE" },
74 [MIG_CMD_POSTCOPY_LISTEN
] = { .len
= 0, .name
= "POSTCOPY_LISTEN" },
75 [MIG_CMD_POSTCOPY_RUN
] = { .len
= 0, .name
= "POSTCOPY_RUN" },
76 [MIG_CMD_POSTCOPY_RAM_DISCARD
] = {
77 .len
= -1, .name
= "POSTCOPY_RAM_DISCARD" },
78 [MIG_CMD_PACKAGED
] = { .len
= 4, .name
= "PACKAGED" },
79 [MIG_CMD_MAX
] = { .len
= -1, .name
= "MAX" },
82 static int announce_self_create(uint8_t *buf
,
85 /* Ethernet header. */
86 memset(buf
, 0xff, 6); /* destination MAC addr */
87 memcpy(buf
+ 6, mac_addr
, 6); /* source MAC addr */
88 *(uint16_t *)(buf
+ 12) = htons(ETH_P_RARP
); /* ethertype */
91 *(uint16_t *)(buf
+ 14) = htons(ARP_HTYPE_ETH
); /* hardware addr space */
92 *(uint16_t *)(buf
+ 16) = htons(ARP_PTYPE_IP
); /* protocol addr space */
93 *(buf
+ 18) = 6; /* hardware addr length (ethernet) */
94 *(buf
+ 19) = 4; /* protocol addr length (IPv4) */
95 *(uint16_t *)(buf
+ 20) = htons(ARP_OP_REQUEST_REV
); /* opcode */
96 memcpy(buf
+ 22, mac_addr
, 6); /* source hw addr */
97 memset(buf
+ 28, 0x00, 4); /* source protocol addr */
98 memcpy(buf
+ 32, mac_addr
, 6); /* target hw addr */
99 memset(buf
+ 38, 0x00, 4); /* target protocol addr */
101 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
102 memset(buf
+ 42, 0x00, 18);
104 return 60; /* len (FCS will be added by hardware) */
107 static void qemu_announce_self_iter(NICState
*nic
, void *opaque
)
112 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic
->conf
->macaddr
));
113 len
= announce_self_create(buf
, nic
->conf
->macaddr
.a
);
115 qemu_send_packet_raw(qemu_get_queue(nic
), buf
, len
);
119 static void qemu_announce_self_once(void *opaque
)
121 static int count
= SELF_ANNOUNCE_ROUNDS
;
122 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
124 qemu_foreach_nic(qemu_announce_self_iter
, NULL
);
127 /* delay 50ms, 150ms, 250ms, ... */
128 timer_mod(timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) +
129 self_announce_delay(count
));
136 void qemu_announce_self(void)
138 static QEMUTimer
*timer
;
139 timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, qemu_announce_self_once
, &timer
);
140 qemu_announce_self_once(&timer
);
143 /***********************************************************/
144 /* savevm/loadvm support */
146 static ssize_t
block_writev_buffer(void *opaque
, struct iovec
*iov
, int iovcnt
,
152 qemu_iovec_init_external(&qiov
, iov
, iovcnt
);
153 ret
= bdrv_writev_vmstate(opaque
, &qiov
, pos
);
161 static ssize_t
block_put_buffer(void *opaque
, const uint8_t *buf
,
162 int64_t pos
, size_t size
)
164 bdrv_save_vmstate(opaque
, buf
, pos
, size
);
168 static ssize_t
block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
,
171 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
174 static int bdrv_fclose(void *opaque
)
176 return bdrv_flush(opaque
);
179 static const QEMUFileOps bdrv_read_ops
= {
180 .get_buffer
= block_get_buffer
,
184 static const QEMUFileOps bdrv_write_ops
= {
185 .put_buffer
= block_put_buffer
,
186 .writev_buffer
= block_writev_buffer
,
190 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
193 return qemu_fopen_ops(bs
, &bdrv_write_ops
);
195 return qemu_fopen_ops(bs
, &bdrv_read_ops
);
199 /* QEMUFile timer support.
200 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
203 void timer_put(QEMUFile
*f
, QEMUTimer
*ts
)
205 uint64_t expire_time
;
207 expire_time
= timer_expire_time_ns(ts
);
208 qemu_put_be64(f
, expire_time
);
211 void timer_get(QEMUFile
*f
, QEMUTimer
*ts
)
213 uint64_t expire_time
;
215 expire_time
= qemu_get_be64(f
);
216 if (expire_time
!= -1) {
217 timer_mod_ns(ts
, expire_time
);
224 /* VMState timer support.
225 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
228 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
)
235 static void put_timer(QEMUFile
*f
, void *pv
, size_t size
)
241 const VMStateInfo vmstate_info_timer
= {
248 typedef struct CompatEntry
{
253 typedef struct SaveStateEntry
{
254 QTAILQ_ENTRY(SaveStateEntry
) entry
;
261 const VMStateDescription
*vmsd
;
267 typedef struct SaveState
{
268 QTAILQ_HEAD(, SaveStateEntry
) handlers
;
269 int global_section_id
;
270 bool skip_configuration
;
275 static SaveState savevm_state
= {
276 .handlers
= QTAILQ_HEAD_INITIALIZER(savevm_state
.handlers
),
277 .global_section_id
= 0,
278 .skip_configuration
= false,
281 void savevm_skip_configuration(void)
283 savevm_state
.skip_configuration
= true;
287 static void configuration_pre_save(void *opaque
)
289 SaveState
*state
= opaque
;
290 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
292 state
->len
= strlen(current_name
);
293 state
->name
= current_name
;
296 static int configuration_post_load(void *opaque
, int version_id
)
298 SaveState
*state
= opaque
;
299 const char *current_name
= MACHINE_GET_CLASS(current_machine
)->name
;
301 if (strncmp(state
->name
, current_name
, state
->len
) != 0) {
302 error_report("Machine type received is '%.*s' and local is '%s'",
303 (int) state
->len
, state
->name
, current_name
);
309 static const VMStateDescription vmstate_configuration
= {
310 .name
= "configuration",
312 .post_load
= configuration_post_load
,
313 .pre_save
= configuration_pre_save
,
314 .fields
= (VMStateField
[]) {
315 VMSTATE_UINT32(len
, SaveState
),
316 VMSTATE_VBUFFER_ALLOC_UINT32(name
, SaveState
, 0, NULL
, 0, len
),
317 VMSTATE_END_OF_LIST()
321 static void dump_vmstate_vmsd(FILE *out_file
,
322 const VMStateDescription
*vmsd
, int indent
,
325 static void dump_vmstate_vmsf(FILE *out_file
, const VMStateField
*field
,
328 fprintf(out_file
, "%*s{\n", indent
, "");
330 fprintf(out_file
, "%*s\"field\": \"%s\",\n", indent
, "", field
->name
);
331 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
333 fprintf(out_file
, "%*s\"field_exists\": %s,\n", indent
, "",
334 field
->field_exists
? "true" : "false");
335 fprintf(out_file
, "%*s\"size\": %zu", indent
, "", field
->size
);
336 if (field
->vmsd
!= NULL
) {
337 fprintf(out_file
, ",\n");
338 dump_vmstate_vmsd(out_file
, field
->vmsd
, indent
, false);
340 fprintf(out_file
, "\n%*s}", indent
- 2, "");
343 static void dump_vmstate_vmss(FILE *out_file
,
344 const VMStateDescription
**subsection
,
347 if (*subsection
!= NULL
) {
348 dump_vmstate_vmsd(out_file
, *subsection
, indent
, true);
352 static void dump_vmstate_vmsd(FILE *out_file
,
353 const VMStateDescription
*vmsd
, int indent
,
357 fprintf(out_file
, "%*s{\n", indent
, "");
359 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", "Description");
362 fprintf(out_file
, "%*s\"name\": \"%s\",\n", indent
, "", vmsd
->name
);
363 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
365 fprintf(out_file
, "%*s\"minimum_version_id\": %d", indent
, "",
366 vmsd
->minimum_version_id
);
367 if (vmsd
->fields
!= NULL
) {
368 const VMStateField
*field
= vmsd
->fields
;
371 fprintf(out_file
, ",\n%*s\"Fields\": [\n", indent
, "");
373 while (field
->name
!= NULL
) {
374 if (field
->flags
& VMS_MUST_EXIST
) {
375 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
380 fprintf(out_file
, ",\n");
382 dump_vmstate_vmsf(out_file
, field
, indent
+ 2);
386 fprintf(out_file
, "\n%*s]", indent
, "");
388 if (vmsd
->subsections
!= NULL
) {
389 const VMStateDescription
**subsection
= vmsd
->subsections
;
392 fprintf(out_file
, ",\n%*s\"Subsections\": [\n", indent
, "");
394 while (*subsection
!= NULL
) {
396 fprintf(out_file
, ",\n");
398 dump_vmstate_vmss(out_file
, subsection
, indent
+ 2);
402 fprintf(out_file
, "\n%*s]", indent
, "");
404 fprintf(out_file
, "\n%*s}", indent
- 2, "");
407 static void dump_machine_type(FILE *out_file
)
411 mc
= MACHINE_GET_CLASS(current_machine
);
413 fprintf(out_file
, " \"vmschkmachine\": {\n");
414 fprintf(out_file
, " \"Name\": \"%s\"\n", mc
->name
);
415 fprintf(out_file
, " },\n");
418 void dump_vmstate_json_to_file(FILE *out_file
)
423 fprintf(out_file
, "{\n");
424 dump_machine_type(out_file
);
427 list
= object_class_get_list(TYPE_DEVICE
, true);
428 for (elt
= list
; elt
; elt
= elt
->next
) {
429 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
439 fprintf(out_file
, ",\n");
441 name
= object_class_get_name(OBJECT_CLASS(dc
));
442 fprintf(out_file
, "%*s\"%s\": {\n", indent
, "", name
);
444 fprintf(out_file
, "%*s\"Name\": \"%s\",\n", indent
, "", name
);
445 fprintf(out_file
, "%*s\"version_id\": %d,\n", indent
, "",
446 dc
->vmsd
->version_id
);
447 fprintf(out_file
, "%*s\"minimum_version_id\": %d,\n", indent
, "",
448 dc
->vmsd
->minimum_version_id
);
450 dump_vmstate_vmsd(out_file
, dc
->vmsd
, indent
, false);
452 fprintf(out_file
, "\n%*s}", indent
- 2, "");
455 fprintf(out_file
, "\n}\n");
459 static int calculate_new_instance_id(const char *idstr
)
464 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
465 if (strcmp(idstr
, se
->idstr
) == 0
466 && instance_id
<= se
->instance_id
) {
467 instance_id
= se
->instance_id
+ 1;
473 static int calculate_compat_instance_id(const char *idstr
)
478 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
483 if (strcmp(idstr
, se
->compat
->idstr
) == 0
484 && instance_id
<= se
->compat
->instance_id
) {
485 instance_id
= se
->compat
->instance_id
+ 1;
491 /* TODO: Individual devices generally have very little idea about the rest
492 of the system, so instance_id should be removed/replaced.
493 Meanwhile pass -1 as instance_id if you do not already have a clearly
494 distinguishing id for all instances of your device class. */
495 int register_savevm_live(DeviceState
*dev
,
504 se
= g_new0(SaveStateEntry
, 1);
505 se
->version_id
= version_id
;
506 se
->section_id
= savevm_state
.global_section_id
++;
510 /* if this is a live_savem then set is_ram */
511 if (ops
->save_live_setup
!= NULL
) {
516 char *id
= qdev_get_dev_path(dev
);
518 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
519 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
522 se
->compat
= g_new0(CompatEntry
, 1);
523 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), idstr
);
524 se
->compat
->instance_id
= instance_id
== -1 ?
525 calculate_compat_instance_id(idstr
) : instance_id
;
529 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
531 if (instance_id
== -1) {
532 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
534 se
->instance_id
= instance_id
;
536 assert(!se
->compat
|| se
->instance_id
== 0);
537 /* add at the end of list */
538 QTAILQ_INSERT_TAIL(&savevm_state
.handlers
, se
, entry
);
542 int register_savevm(DeviceState
*dev
,
546 SaveStateHandler
*save_state
,
547 LoadStateHandler
*load_state
,
550 SaveVMHandlers
*ops
= g_new0(SaveVMHandlers
, 1);
551 ops
->save_state
= save_state
;
552 ops
->load_state
= load_state
;
553 return register_savevm_live(dev
, idstr
, instance_id
, version_id
,
557 void unregister_savevm(DeviceState
*dev
, const char *idstr
, void *opaque
)
559 SaveStateEntry
*se
, *new_se
;
563 char *path
= qdev_get_dev_path(dev
);
565 pstrcpy(id
, sizeof(id
), path
);
566 pstrcat(id
, sizeof(id
), "/");
570 pstrcat(id
, sizeof(id
), idstr
);
572 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
573 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
574 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
582 int vmstate_register_with_alias_id(DeviceState
*dev
, int instance_id
,
583 const VMStateDescription
*vmsd
,
584 void *opaque
, int alias_id
,
585 int required_for_version
)
589 /* If this triggers, alias support can be dropped for the vmsd. */
590 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
592 se
= g_new0(SaveStateEntry
, 1);
593 se
->version_id
= vmsd
->version_id
;
594 se
->section_id
= savevm_state
.global_section_id
++;
597 se
->alias_id
= alias_id
;
600 char *id
= qdev_get_dev_path(dev
);
602 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
603 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
606 se
->compat
= g_new0(CompatEntry
, 1);
607 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
608 se
->compat
->instance_id
= instance_id
== -1 ?
609 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
613 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
615 if (instance_id
== -1) {
616 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
618 se
->instance_id
= instance_id
;
620 assert(!se
->compat
|| se
->instance_id
== 0);
621 /* add at the end of list */
622 QTAILQ_INSERT_TAIL(&savevm_state
.handlers
, se
, entry
);
626 void vmstate_unregister(DeviceState
*dev
, const VMStateDescription
*vmsd
,
629 SaveStateEntry
*se
, *new_se
;
631 QTAILQ_FOREACH_SAFE(se
, &savevm_state
.handlers
, entry
, new_se
) {
632 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
633 QTAILQ_REMOVE(&savevm_state
.handlers
, se
, entry
);
640 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
, int version_id
)
642 trace_vmstate_load(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
643 if (!se
->vmsd
) { /* Old style */
644 return se
->ops
->load_state(f
, se
->opaque
, version_id
);
646 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, version_id
);
649 static void vmstate_save_old_style(QEMUFile
*f
, SaveStateEntry
*se
, QJSON
*vmdesc
)
651 int64_t old_offset
, size
;
653 old_offset
= qemu_ftell_fast(f
);
654 se
->ops
->save_state(f
, se
->opaque
);
655 size
= qemu_ftell_fast(f
) - old_offset
;
658 json_prop_int(vmdesc
, "size", size
);
659 json_start_array(vmdesc
, "fields");
660 json_start_object(vmdesc
, NULL
);
661 json_prop_str(vmdesc
, "name", "data");
662 json_prop_int(vmdesc
, "size", size
);
663 json_prop_str(vmdesc
, "type", "buffer");
664 json_end_object(vmdesc
);
665 json_end_array(vmdesc
);
669 static void vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
, QJSON
*vmdesc
)
671 trace_vmstate_save(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
673 vmstate_save_old_style(f
, se
, vmdesc
);
676 vmstate_save_state(f
, se
->vmsd
, se
->opaque
, vmdesc
);
679 void savevm_skip_section_footers(void)
681 skip_section_footers
= true;
685 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
687 static void save_section_header(QEMUFile
*f
, SaveStateEntry
*se
,
688 uint8_t section_type
)
690 qemu_put_byte(f
, section_type
);
691 qemu_put_be32(f
, se
->section_id
);
693 if (section_type
== QEMU_VM_SECTION_FULL
||
694 section_type
== QEMU_VM_SECTION_START
) {
696 size_t len
= strlen(se
->idstr
);
697 qemu_put_byte(f
, len
);
698 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
700 qemu_put_be32(f
, se
->instance_id
);
701 qemu_put_be32(f
, se
->version_id
);
706 * Write a footer onto device sections that catches cases misformatted device
709 static void save_section_footer(QEMUFile
*f
, SaveStateEntry
*se
)
711 if (!skip_section_footers
) {
712 qemu_put_byte(f
, QEMU_VM_SECTION_FOOTER
);
713 qemu_put_be32(f
, se
->section_id
);
718 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
719 * command and associated data.
721 * @f: File to send command on
722 * @command: Command type to send
723 * @len: Length of associated data
724 * @data: Data associated with command.
726 void qemu_savevm_command_send(QEMUFile
*f
,
727 enum qemu_vm_cmd command
,
731 trace_savevm_command_send(command
, len
);
732 qemu_put_byte(f
, QEMU_VM_COMMAND
);
733 qemu_put_be16(f
, (uint16_t)command
);
734 qemu_put_be16(f
, len
);
735 qemu_put_buffer(f
, data
, len
);
739 void qemu_savevm_send_ping(QEMUFile
*f
, uint32_t value
)
743 trace_savevm_send_ping(value
);
744 buf
= cpu_to_be32(value
);
745 qemu_savevm_command_send(f
, MIG_CMD_PING
, sizeof(value
), (uint8_t *)&buf
);
748 void qemu_savevm_send_open_return_path(QEMUFile
*f
)
750 trace_savevm_send_open_return_path();
751 qemu_savevm_command_send(f
, MIG_CMD_OPEN_RETURN_PATH
, 0, NULL
);
754 /* We have a buffer of data to send; we don't want that all to be loaded
755 * by the command itself, so the command contains just the length of the
756 * extra buffer that we then send straight after it.
757 * TODO: Must be a better way to organise that
763 int qemu_savevm_send_packaged(QEMUFile
*f
, const QEMUSizedBuffer
*qsb
)
766 size_t len
= qsb_get_length(qsb
);
769 if (len
> MAX_VM_CMD_PACKAGED_SIZE
) {
770 error_report("%s: Unreasonably large packaged state: %zu",
775 tmp
= cpu_to_be32(len
);
777 trace_qemu_savevm_send_packaged();
778 qemu_savevm_command_send(f
, MIG_CMD_PACKAGED
, 4, (uint8_t *)&tmp
);
780 /* all the data follows (concatinating the iov's) */
781 for (cur_iov
= 0; cur_iov
< qsb
->n_iov
; cur_iov
++) {
782 /* The iov entries are partially filled */
783 size_t towrite
= MIN(qsb
->iov
[cur_iov
].iov_len
, len
);
790 qemu_put_buffer(f
, qsb
->iov
[cur_iov
].iov_base
, towrite
);
796 /* Send prior to any postcopy transfer */
797 void qemu_savevm_send_postcopy_advise(QEMUFile
*f
)
800 tmp
[0] = cpu_to_be64(getpagesize());
801 tmp
[1] = cpu_to_be64(1ul << qemu_target_page_bits());
803 trace_qemu_savevm_send_postcopy_advise();
804 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_ADVISE
, 16, (uint8_t *)tmp
);
807 /* Sent prior to starting the destination running in postcopy, discard pages
808 * that have already been sent but redirtied on the source.
809 * CMD_POSTCOPY_RAM_DISCARD consist of:
811 * byte Length of name field (not including 0)
812 * n x byte RAM block name
813 * byte 0 terminator (just for safety)
814 * n x Byte ranges within the named RAMBlock
815 * be64 Start of the range
818 * name: RAMBlock name that these entries are part of
819 * len: Number of page entries
820 * start_list: 'len' addresses
821 * length_list: 'len' addresses
824 void qemu_savevm_send_postcopy_ram_discard(QEMUFile
*f
, const char *name
,
826 uint64_t *start_list
,
827 uint64_t *length_list
)
832 size_t name_len
= strlen(name
);
834 trace_qemu_savevm_send_postcopy_ram_discard(name
, len
);
835 assert(name_len
< 256);
836 buf
= g_malloc0(1 + 1 + name_len
+ 1 + (8 + 8) * len
);
837 buf
[0] = postcopy_ram_discard_version
;
839 memcpy(buf
+ 2, name
, name_len
);
840 tmplen
= 2 + name_len
;
841 buf
[tmplen
++] = '\0';
843 for (t
= 0; t
< len
; t
++) {
844 cpu_to_be64w((uint64_t *)(buf
+ tmplen
), start_list
[t
]);
846 cpu_to_be64w((uint64_t *)(buf
+ tmplen
), length_list
[t
]);
849 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RAM_DISCARD
, tmplen
, buf
);
853 /* Get the destination into a state where it can receive postcopy data. */
854 void qemu_savevm_send_postcopy_listen(QEMUFile
*f
)
856 trace_savevm_send_postcopy_listen();
857 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_LISTEN
, 0, NULL
);
860 /* Kick the destination into running */
861 void qemu_savevm_send_postcopy_run(QEMUFile
*f
)
863 trace_savevm_send_postcopy_run();
864 qemu_savevm_command_send(f
, MIG_CMD_POSTCOPY_RUN
, 0, NULL
);
867 bool qemu_savevm_state_blocked(Error
**errp
)
871 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
872 if (se
->vmsd
&& se
->vmsd
->unmigratable
) {
873 error_setg(errp
, "State blocked by non-migratable device '%s'",
881 static bool enforce_config_section(void)
883 MachineState
*machine
= MACHINE(qdev_get_machine());
884 return machine
->enforce_config_section
;
887 void qemu_savevm_state_header(QEMUFile
*f
)
889 trace_savevm_state_header();
890 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
891 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
893 if (!savevm_state
.skip_configuration
|| enforce_config_section()) {
894 qemu_put_byte(f
, QEMU_VM_CONFIGURATION
);
895 vmstate_save_state(f
, &vmstate_configuration
, &savevm_state
, 0);
900 void qemu_savevm_state_begin(QEMUFile
*f
,
901 const MigrationParams
*params
)
906 trace_savevm_state_begin();
907 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
908 if (!se
->ops
|| !se
->ops
->set_params
) {
911 se
->ops
->set_params(params
, se
->opaque
);
914 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
915 if (!se
->ops
|| !se
->ops
->save_live_setup
) {
918 if (se
->ops
&& se
->ops
->is_active
) {
919 if (!se
->ops
->is_active(se
->opaque
)) {
923 save_section_header(f
, se
, QEMU_VM_SECTION_START
);
925 ret
= se
->ops
->save_live_setup(f
, se
->opaque
);
926 save_section_footer(f
, se
);
928 qemu_file_set_error(f
, ret
);
935 * this function has three return values:
936 * negative: there was one error, and we have -errno.
937 * 0 : We haven't finished, caller have to go again
938 * 1 : We have finished, we can go to complete phase
940 int qemu_savevm_state_iterate(QEMUFile
*f
, bool postcopy
)
945 trace_savevm_state_iterate();
946 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
947 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
950 if (se
->ops
&& se
->ops
->is_active
) {
951 if (!se
->ops
->is_active(se
->opaque
)) {
956 * In the postcopy phase, any device that doesn't know how to
957 * do postcopy should have saved it's state in the _complete
958 * call that's already run, it might get confused if we call
959 * iterate afterwards.
961 if (postcopy
&& !se
->ops
->save_live_complete_postcopy
) {
964 if (qemu_file_rate_limit(f
)) {
967 trace_savevm_section_start(se
->idstr
, se
->section_id
);
969 save_section_header(f
, se
, QEMU_VM_SECTION_PART
);
971 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
972 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
973 save_section_footer(f
, se
);
976 qemu_file_set_error(f
, ret
);
979 /* Do not proceed to the next vmstate before this one reported
980 completion of the current stage. This serializes the migration
981 and reduces the probability that a faster changing state is
982 synchronized over and over again. */
989 static bool should_send_vmdesc(void)
991 MachineState
*machine
= MACHINE(qdev_get_machine());
992 bool in_postcopy
= migration_in_postcopy(migrate_get_current());
993 return !machine
->suppress_vmdesc
&& !in_postcopy
;
997 * Calls the save_live_complete_postcopy methods
998 * causing the last few pages to be sent immediately and doing any associated
1000 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1001 * all the other devices, but that happens at the point we switch to postcopy.
1003 void qemu_savevm_state_complete_postcopy(QEMUFile
*f
)
1008 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1009 if (!se
->ops
|| !se
->ops
->save_live_complete_postcopy
) {
1012 if (se
->ops
&& se
->ops
->is_active
) {
1013 if (!se
->ops
->is_active(se
->opaque
)) {
1017 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1019 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1020 qemu_put_be32(f
, se
->section_id
);
1022 ret
= se
->ops
->save_live_complete_postcopy(f
, se
->opaque
);
1023 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1024 save_section_footer(f
, se
);
1026 qemu_file_set_error(f
, ret
);
1031 qemu_put_byte(f
, QEMU_VM_EOF
);
1035 void qemu_savevm_state_complete_precopy(QEMUFile
*f
, bool iterable_only
)
1041 bool in_postcopy
= migration_in_postcopy(migrate_get_current());
1043 trace_savevm_state_complete_precopy();
1045 cpu_synchronize_all_states();
1047 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1049 (in_postcopy
&& se
->ops
->save_live_complete_postcopy
) ||
1050 (in_postcopy
&& !iterable_only
) ||
1051 !se
->ops
->save_live_complete_precopy
) {
1055 if (se
->ops
&& se
->ops
->is_active
) {
1056 if (!se
->ops
->is_active(se
->opaque
)) {
1060 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1062 save_section_header(f
, se
, QEMU_VM_SECTION_END
);
1064 ret
= se
->ops
->save_live_complete_precopy(f
, se
->opaque
);
1065 trace_savevm_section_end(se
->idstr
, se
->section_id
, ret
);
1066 save_section_footer(f
, se
);
1068 qemu_file_set_error(f
, ret
);
1073 if (iterable_only
) {
1077 vmdesc
= qjson_new();
1078 json_prop_int(vmdesc
, "page_size", TARGET_PAGE_SIZE
);
1079 json_start_array(vmdesc
, "devices");
1080 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1082 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1085 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1086 trace_savevm_section_skip(se
->idstr
, se
->section_id
);
1090 trace_savevm_section_start(se
->idstr
, se
->section_id
);
1092 json_start_object(vmdesc
, NULL
);
1093 json_prop_str(vmdesc
, "name", se
->idstr
);
1094 json_prop_int(vmdesc
, "instance_id", se
->instance_id
);
1096 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1097 vmstate_save(f
, se
, vmdesc
);
1098 trace_savevm_section_end(se
->idstr
, se
->section_id
, 0);
1099 save_section_footer(f
, se
);
1101 json_end_object(vmdesc
);
1105 /* Postcopy stream will still be going */
1106 qemu_put_byte(f
, QEMU_VM_EOF
);
1109 json_end_array(vmdesc
);
1110 qjson_finish(vmdesc
);
1111 vmdesc_len
= strlen(qjson_get_str(vmdesc
));
1113 if (should_send_vmdesc()) {
1114 qemu_put_byte(f
, QEMU_VM_VMDESCRIPTION
);
1115 qemu_put_be32(f
, vmdesc_len
);
1116 qemu_put_buffer(f
, (uint8_t *)qjson_get_str(vmdesc
), vmdesc_len
);
1118 object_unref(OBJECT(vmdesc
));
1123 /* Give an estimate of the amount left to be transferred,
1124 * the result is split into the amount for units that can and
1125 * for units that can't do postcopy.
1127 void qemu_savevm_state_pending(QEMUFile
*f
, uint64_t max_size
,
1128 uint64_t *res_non_postcopiable
,
1129 uint64_t *res_postcopiable
)
1133 *res_non_postcopiable
= 0;
1134 *res_postcopiable
= 0;
1137 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1138 if (!se
->ops
|| !se
->ops
->save_live_pending
) {
1141 if (se
->ops
&& se
->ops
->is_active
) {
1142 if (!se
->ops
->is_active(se
->opaque
)) {
1146 se
->ops
->save_live_pending(f
, se
->opaque
, max_size
,
1147 res_non_postcopiable
, res_postcopiable
);
1151 void qemu_savevm_state_cleanup(void)
1155 trace_savevm_state_cleanup();
1156 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1157 if (se
->ops
&& se
->ops
->cleanup
) {
1158 se
->ops
->cleanup(se
->opaque
);
1163 static int qemu_savevm_state(QEMUFile
*f
, Error
**errp
)
1166 MigrationParams params
= {
1170 MigrationState
*ms
= migrate_init(¶ms
);
1171 ms
->to_dst_file
= f
;
1173 if (qemu_savevm_state_blocked(errp
)) {
1177 qemu_mutex_unlock_iothread();
1178 qemu_savevm_state_header(f
);
1179 qemu_savevm_state_begin(f
, ¶ms
);
1180 qemu_mutex_lock_iothread();
1182 while (qemu_file_get_error(f
) == 0) {
1183 if (qemu_savevm_state_iterate(f
, false) > 0) {
1188 ret
= qemu_file_get_error(f
);
1190 qemu_savevm_state_complete_precopy(f
, false);
1191 ret
= qemu_file_get_error(f
);
1193 qemu_savevm_state_cleanup();
1195 error_setg_errno(errp
, -ret
, "Error while writing VM state");
1200 static int qemu_save_device_state(QEMUFile
*f
)
1204 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1205 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1207 cpu_synchronize_all_states();
1209 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1213 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1216 if (se
->vmsd
&& !vmstate_save_needed(se
->vmsd
, se
->opaque
)) {
1220 save_section_header(f
, se
, QEMU_VM_SECTION_FULL
);
1222 vmstate_save(f
, se
, NULL
);
1224 save_section_footer(f
, se
);
1227 qemu_put_byte(f
, QEMU_VM_EOF
);
1229 return qemu_file_get_error(f
);
1232 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
1236 QTAILQ_FOREACH(se
, &savevm_state
.handlers
, entry
) {
1237 if (!strcmp(se
->idstr
, idstr
) &&
1238 (instance_id
== se
->instance_id
||
1239 instance_id
== se
->alias_id
))
1241 /* Migrating from an older version? */
1242 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
1243 if (!strcmp(se
->compat
->idstr
, idstr
) &&
1244 (instance_id
== se
->compat
->instance_id
||
1245 instance_id
== se
->alias_id
))
1252 enum LoadVMExitCodes
{
1253 /* Allow a command to quit all layers of nested loadvm loops */
1257 static int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
);
1259 /* ------ incoming postcopy messages ------ */
1260 /* 'advise' arrives before any transfers just to tell us that a postcopy
1261 * *might* happen - it might be skipped if precopy transferred everything
1264 static int loadvm_postcopy_handle_advise(MigrationIncomingState
*mis
)
1266 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1267 uint64_t remote_hps
, remote_tps
;
1269 trace_loadvm_postcopy_handle_advise();
1270 if (ps
!= POSTCOPY_INCOMING_NONE
) {
1271 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps
);
1275 if (!postcopy_ram_supported_by_host()) {
1279 remote_hps
= qemu_get_be64(mis
->from_src_file
);
1280 if (remote_hps
!= getpagesize()) {
1282 * Some combinations of mismatch are probably possible but it gets
1283 * a bit more complicated. In particular we need to place whole
1284 * host pages on the dest at once, and we need to ensure that we
1285 * handle dirtying to make sure we never end up sending part of
1286 * a hostpage on it's own.
1288 error_report("Postcopy needs matching host page sizes (s=%d d=%d)",
1289 (int)remote_hps
, getpagesize());
1293 remote_tps
= qemu_get_be64(mis
->from_src_file
);
1294 if (remote_tps
!= (1ul << qemu_target_page_bits())) {
1296 * Again, some differences could be dealt with, but for now keep it
1299 error_report("Postcopy needs matching target page sizes (s=%d d=%d)",
1300 (int)remote_tps
, 1 << qemu_target_page_bits());
1304 if (ram_postcopy_incoming_init(mis
)) {
1308 postcopy_state_set(POSTCOPY_INCOMING_ADVISE
);
1313 /* After postcopy we will be told to throw some pages away since they're
1314 * dirty and will have to be demand fetched. Must happen before CPU is
1316 * There can be 0..many of these messages, each encoding multiple pages.
1318 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState
*mis
,
1323 PostcopyState ps
= postcopy_state_get();
1325 trace_loadvm_postcopy_ram_handle_discard();
1328 case POSTCOPY_INCOMING_ADVISE
:
1330 tmp
= postcopy_ram_prepare_discard(mis
);
1336 case POSTCOPY_INCOMING_DISCARD
:
1337 /* Expected state */
1341 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1345 /* We're expecting a
1347 * a RAM ID string (length byte, name, 0 term)
1348 * then at least 1 16 byte chunk
1350 if (len
< (1 + 1 + 1 + 1 + 2 * 8)) {
1351 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1355 tmp
= qemu_get_byte(mis
->from_src_file
);
1356 if (tmp
!= postcopy_ram_discard_version
) {
1357 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp
);
1361 if (!qemu_get_counted_string(mis
->from_src_file
, ramid
)) {
1362 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1365 tmp
= qemu_get_byte(mis
->from_src_file
);
1367 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp
);
1371 len
-= 3 + strlen(ramid
);
1373 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len
);
1376 trace_loadvm_postcopy_ram_handle_discard_header(ramid
, len
);
1378 uint64_t start_addr
, block_length
;
1379 start_addr
= qemu_get_be64(mis
->from_src_file
);
1380 block_length
= qemu_get_be64(mis
->from_src_file
);
1383 int ret
= ram_discard_range(mis
, ramid
, start_addr
,
1389 trace_loadvm_postcopy_ram_handle_discard_end();
1395 * Triggered by a postcopy_listen command; this thread takes over reading
1396 * the input stream, leaving the main thread free to carry on loading the rest
1397 * of the device state (from RAM).
1398 * (TODO:This could do with being in a postcopy file - but there again it's
1399 * just another input loop, not that postcopy specific)
1401 static void *postcopy_ram_listen_thread(void *opaque
)
1403 QEMUFile
*f
= opaque
;
1404 MigrationIncomingState
*mis
= migration_incoming_get_current();
1407 migrate_set_state(&mis
->state
, MIGRATION_STATUS_ACTIVE
,
1408 MIGRATION_STATUS_POSTCOPY_ACTIVE
);
1409 qemu_sem_post(&mis
->listen_thread_sem
);
1410 trace_postcopy_ram_listen_thread_start();
1413 * Because we're a thread and not a coroutine we can't yield
1414 * in qemu_file, and thus we must be blocking now.
1416 qemu_file_set_blocking(f
, true);
1417 load_res
= qemu_loadvm_state_main(f
, mis
);
1418 /* And non-blocking again so we don't block in any cleanup */
1419 qemu_file_set_blocking(f
, false);
1421 trace_postcopy_ram_listen_thread_exit();
1423 error_report("%s: loadvm failed: %d", __func__
, load_res
);
1424 qemu_file_set_error(f
, load_res
);
1425 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1426 MIGRATION_STATUS_FAILED
);
1429 * This looks good, but it's possible that the device loading in the
1430 * main thread hasn't finished yet, and so we might not be in 'RUN'
1431 * state yet; wait for the end of the main thread.
1433 qemu_event_wait(&mis
->main_thread_load_event
);
1435 postcopy_ram_incoming_cleanup(mis
);
1439 * If something went wrong then we have a bad state so exit;
1440 * depending how far we got it might be possible at this point
1441 * to leave the guest running and fire MCEs for pages that never
1442 * arrived as a desperate recovery step.
1447 migrate_set_state(&mis
->state
, MIGRATION_STATUS_POSTCOPY_ACTIVE
,
1448 MIGRATION_STATUS_COMPLETED
);
1450 * If everything has worked fine, then the main thread has waited
1451 * for us to start, and we're the last use of the mis.
1452 * (If something broke then qemu will have to exit anyway since it's
1453 * got a bad migration state).
1455 migration_incoming_state_destroy();
1461 /* After this message we must be able to immediately receive postcopy data */
1462 static int loadvm_postcopy_handle_listen(MigrationIncomingState
*mis
)
1464 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_LISTENING
);
1465 trace_loadvm_postcopy_handle_listen();
1466 if (ps
!= POSTCOPY_INCOMING_ADVISE
&& ps
!= POSTCOPY_INCOMING_DISCARD
) {
1467 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps
);
1470 if (ps
== POSTCOPY_INCOMING_ADVISE
) {
1472 * A rare case, we entered listen without having to do any discards,
1473 * so do the setup that's normally done at the time of the 1st discard.
1475 postcopy_ram_prepare_discard(mis
);
1479 * Sensitise RAM - can now generate requests for blocks that don't exist
1480 * However, at this point the CPU shouldn't be running, and the IO
1481 * shouldn't be doing anything yet so don't actually expect requests
1483 if (postcopy_ram_enable_notify(mis
)) {
1487 if (mis
->have_listen_thread
) {
1488 error_report("CMD_POSTCOPY_RAM_LISTEN already has a listen thread");
1492 mis
->have_listen_thread
= true;
1493 /* Start up the listening thread and wait for it to signal ready */
1494 qemu_sem_init(&mis
->listen_thread_sem
, 0);
1495 qemu_thread_create(&mis
->listen_thread
, "postcopy/listen",
1496 postcopy_ram_listen_thread
, mis
->from_src_file
,
1497 QEMU_THREAD_JOINABLE
);
1498 qemu_sem_wait(&mis
->listen_thread_sem
);
1499 qemu_sem_destroy(&mis
->listen_thread_sem
);
1504 static void loadvm_postcopy_handle_run_bh(void *opaque
)
1506 Error
*local_err
= NULL
;
1507 MigrationIncomingState
*mis
= opaque
;
1509 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
1512 cpu_synchronize_all_post_init();
1514 qemu_announce_self();
1516 /* Make sure all file formats flush their mutable metadata */
1517 bdrv_invalidate_cache_all(&local_err
);
1519 error_report_err(local_err
);
1522 trace_loadvm_postcopy_handle_run_cpu_sync();
1523 cpu_synchronize_all_post_init();
1525 trace_loadvm_postcopy_handle_run_vmstart();
1528 /* Hold onto your hats, starting the CPU */
1531 /* leave it paused and let management decide when to start the CPU */
1532 runstate_set(RUN_STATE_PAUSED
);
1535 qemu_bh_delete(mis
->bh
);
1538 /* After all discards we can start running and asking for pages */
1539 static int loadvm_postcopy_handle_run(MigrationIncomingState
*mis
)
1541 PostcopyState ps
= postcopy_state_set(POSTCOPY_INCOMING_RUNNING
);
1543 trace_loadvm_postcopy_handle_run();
1544 if (ps
!= POSTCOPY_INCOMING_LISTENING
) {
1545 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps
);
1549 mis
->bh
= qemu_bh_new(loadvm_postcopy_handle_run_bh
, NULL
);
1550 qemu_bh_schedule(mis
->bh
);
1552 /* We need to finish reading the stream from the package
1553 * and also stop reading anything more from the stream that loaded the
1554 * package (since it's now being read by the listener thread).
1555 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
1561 * Immediately following this command is a blob of data containing an embedded
1562 * chunk of migration stream; read it and load it.
1564 * @mis: Incoming state
1565 * @length: Length of packaged data to read
1567 * Returns: Negative values on error
1570 static int loadvm_handle_cmd_packaged(MigrationIncomingState
*mis
)
1575 QEMUSizedBuffer
*qsb
;
1577 length
= qemu_get_be32(mis
->from_src_file
);
1578 trace_loadvm_handle_cmd_packaged(length
);
1580 if (length
> MAX_VM_CMD_PACKAGED_SIZE
) {
1581 error_report("Unreasonably large packaged state: %u", length
);
1584 buffer
= g_malloc0(length
);
1585 ret
= qemu_get_buffer(mis
->from_src_file
, buffer
, (int)length
);
1586 if (ret
!= length
) {
1588 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%d",
1590 return (ret
< 0) ? ret
: -EAGAIN
;
1592 trace_loadvm_handle_cmd_packaged_received(ret
);
1594 /* Setup a dummy QEMUFile that actually reads from the buffer */
1595 qsb
= qsb_create(buffer
, length
);
1596 g_free(buffer
); /* Because qsb_create copies */
1598 error_report("Unable to create qsb");
1600 QEMUFile
*packf
= qemu_bufopen("r", qsb
);
1602 ret
= qemu_loadvm_state_main(packf
, mis
);
1603 trace_loadvm_handle_cmd_packaged_main(ret
);
1611 * Process an incoming 'QEMU_VM_COMMAND'
1612 * 0 just a normal return
1613 * LOADVM_QUIT All good, but exit the loop
1616 static int loadvm_process_command(QEMUFile
*f
)
1618 MigrationIncomingState
*mis
= migration_incoming_get_current();
1623 cmd
= qemu_get_be16(f
);
1624 len
= qemu_get_be16(f
);
1626 trace_loadvm_process_command(cmd
, len
);
1627 if (cmd
>= MIG_CMD_MAX
|| cmd
== MIG_CMD_INVALID
) {
1628 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd
, len
);
1632 if (mig_cmd_args
[cmd
].len
!= -1 && mig_cmd_args
[cmd
].len
!= len
) {
1633 error_report("%s received with bad length - expecting %zu, got %d",
1634 mig_cmd_args
[cmd
].name
,
1635 (size_t)mig_cmd_args
[cmd
].len
, len
);
1640 case MIG_CMD_OPEN_RETURN_PATH
:
1641 if (mis
->to_src_file
) {
1642 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
1643 /* Not really a problem, so don't give up */
1646 mis
->to_src_file
= qemu_file_get_return_path(f
);
1647 if (!mis
->to_src_file
) {
1648 error_report("CMD_OPEN_RETURN_PATH failed");
1654 tmp32
= qemu_get_be32(f
);
1655 trace_loadvm_process_command_ping(tmp32
);
1656 if (!mis
->to_src_file
) {
1657 error_report("CMD_PING (0x%x) received with no return path",
1661 migrate_send_rp_pong(mis
, tmp32
);
1664 case MIG_CMD_PACKAGED
:
1665 return loadvm_handle_cmd_packaged(mis
);
1667 case MIG_CMD_POSTCOPY_ADVISE
:
1668 return loadvm_postcopy_handle_advise(mis
);
1670 case MIG_CMD_POSTCOPY_LISTEN
:
1671 return loadvm_postcopy_handle_listen(mis
);
1673 case MIG_CMD_POSTCOPY_RUN
:
1674 return loadvm_postcopy_handle_run(mis
);
1676 case MIG_CMD_POSTCOPY_RAM_DISCARD
:
1677 return loadvm_postcopy_ram_handle_discard(mis
, len
);
1683 struct LoadStateEntry
{
1684 QLIST_ENTRY(LoadStateEntry
) entry
;
1691 * Read a footer off the wire and check that it matches the expected section
1693 * Returns: true if the footer was good
1694 * false if there is a problem (and calls error_report to say why)
1696 static bool check_section_footer(QEMUFile
*f
, LoadStateEntry
*le
)
1699 uint32_t read_section_id
;
1701 if (skip_section_footers
) {
1702 /* No footer to check */
1706 read_mark
= qemu_get_byte(f
);
1708 if (read_mark
!= QEMU_VM_SECTION_FOOTER
) {
1709 error_report("Missing section footer for %s", le
->se
->idstr
);
1713 read_section_id
= qemu_get_be32(f
);
1714 if (read_section_id
!= le
->section_id
) {
1715 error_report("Mismatched section id in footer for %s -"
1716 " read 0x%x expected 0x%x",
1717 le
->se
->idstr
, read_section_id
, le
->section_id
);
1725 void loadvm_free_handlers(MigrationIncomingState
*mis
)
1727 LoadStateEntry
*le
, *new_le
;
1729 QLIST_FOREACH_SAFE(le
, &mis
->loadvm_handlers
, entry
, new_le
) {
1730 QLIST_REMOVE(le
, entry
);
1736 qemu_loadvm_section_start_full(QEMUFile
*f
, MigrationIncomingState
*mis
)
1738 uint32_t instance_id
, version_id
, section_id
;
1744 /* Read section start */
1745 section_id
= qemu_get_be32(f
);
1746 if (!qemu_get_counted_string(f
, idstr
)) {
1747 error_report("Unable to read ID string for section %u",
1751 instance_id
= qemu_get_be32(f
);
1752 version_id
= qemu_get_be32(f
);
1754 trace_qemu_loadvm_state_section_startfull(section_id
, idstr
,
1755 instance_id
, version_id
);
1756 /* Find savevm section */
1757 se
= find_se(idstr
, instance_id
);
1759 error_report("Unknown savevm section or instance '%s' %d",
1760 idstr
, instance_id
);
1764 /* Validate version */
1765 if (version_id
> se
->version_id
) {
1766 error_report("savevm: unsupported version %d for '%s' v%d",
1767 version_id
, idstr
, se
->version_id
);
1772 le
= g_malloc0(sizeof(*le
));
1775 le
->section_id
= section_id
;
1776 le
->version_id
= version_id
;
1777 QLIST_INSERT_HEAD(&mis
->loadvm_handlers
, le
, entry
);
1779 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
1781 error_report("error while loading state for instance 0x%x of"
1782 " device '%s'", instance_id
, idstr
);
1785 if (!check_section_footer(f
, le
)) {
1793 qemu_loadvm_section_part_end(QEMUFile
*f
, MigrationIncomingState
*mis
)
1795 uint32_t section_id
;
1799 section_id
= qemu_get_be32(f
);
1801 trace_qemu_loadvm_state_section_partend(section_id
);
1802 QLIST_FOREACH(le
, &mis
->loadvm_handlers
, entry
) {
1803 if (le
->section_id
== section_id
) {
1808 error_report("Unknown savevm section %d", section_id
);
1812 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
1814 error_report("error while loading state section id %d(%s)",
1815 section_id
, le
->se
->idstr
);
1818 if (!check_section_footer(f
, le
)) {
1825 static int qemu_loadvm_state_main(QEMUFile
*f
, MigrationIncomingState
*mis
)
1827 uint8_t section_type
;
1830 while ((section_type
= qemu_get_byte(f
)) != QEMU_VM_EOF
) {
1832 trace_qemu_loadvm_state_section(section_type
);
1833 switch (section_type
) {
1834 case QEMU_VM_SECTION_START
:
1835 case QEMU_VM_SECTION_FULL
:
1836 ret
= qemu_loadvm_section_start_full(f
, mis
);
1841 case QEMU_VM_SECTION_PART
:
1842 case QEMU_VM_SECTION_END
:
1843 ret
= qemu_loadvm_section_part_end(f
, mis
);
1848 case QEMU_VM_COMMAND
:
1849 ret
= loadvm_process_command(f
);
1850 trace_qemu_loadvm_state_section_command(ret
);
1851 if ((ret
< 0) || (ret
& LOADVM_QUIT
)) {
1856 error_report("Unknown savevm section type %d", section_type
);
1864 int qemu_loadvm_state(QEMUFile
*f
)
1866 MigrationIncomingState
*mis
= migration_incoming_get_current();
1867 Error
*local_err
= NULL
;
1871 if (qemu_savevm_state_blocked(&local_err
)) {
1872 error_report_err(local_err
);
1876 v
= qemu_get_be32(f
);
1877 if (v
!= QEMU_VM_FILE_MAGIC
) {
1878 error_report("Not a migration stream");
1882 v
= qemu_get_be32(f
);
1883 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
1884 error_report("SaveVM v2 format is obsolete and don't work anymore");
1887 if (v
!= QEMU_VM_FILE_VERSION
) {
1888 error_report("Unsupported migration stream version");
1892 if (!savevm_state
.skip_configuration
|| enforce_config_section()) {
1893 if (qemu_get_byte(f
) != QEMU_VM_CONFIGURATION
) {
1894 error_report("Configuration section missing");
1897 ret
= vmstate_load_state(f
, &vmstate_configuration
, &savevm_state
, 0);
1904 ret
= qemu_loadvm_state_main(f
, mis
);
1905 qemu_event_set(&mis
->main_thread_load_event
);
1907 trace_qemu_loadvm_state_post_main(ret
);
1909 if (mis
->have_listen_thread
) {
1910 /* Listen thread still going, can't clean up yet */
1915 ret
= qemu_file_get_error(f
);
1919 * Try to read in the VMDESC section as well, so that dumping tools that
1920 * intercept our migration stream have the chance to see it.
1923 /* We've got to be careful; if we don't read the data and just shut the fd
1924 * then the sender can error if we close while it's still sending.
1925 * We also mustn't read data that isn't there; some transports (RDMA)
1926 * will stall waiting for that data when the source has already closed.
1928 if (ret
== 0 && should_send_vmdesc()) {
1931 uint8_t section_type
= qemu_get_byte(f
);
1933 if (section_type
!= QEMU_VM_VMDESCRIPTION
) {
1934 error_report("Expected vmdescription section, but got %d",
1937 * It doesn't seem worth failing at this point since
1938 * we apparently have an otherwise valid VM state
1941 buf
= g_malloc(0x1000);
1942 size
= qemu_get_be32(f
);
1945 uint32_t read_chunk
= MIN(size
, 0x1000);
1946 qemu_get_buffer(f
, buf
, read_chunk
);
1953 cpu_synchronize_all_post_init();
1958 void hmp_savevm(Monitor
*mon
, const QDict
*qdict
)
1960 BlockDriverState
*bs
, *bs1
;
1961 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
1964 int saved_vm_running
;
1965 uint64_t vm_state_size
;
1968 const char *name
= qdict_get_try_str(qdict
, "name");
1969 Error
*local_err
= NULL
;
1970 AioContext
*aio_context
;
1972 if (!bdrv_all_can_snapshot(&bs
)) {
1973 monitor_printf(mon
, "Device '%s' is writable but does not "
1974 "support snapshots.\n", bdrv_get_device_name(bs
));
1978 /* Delete old snapshots of the same name */
1979 if (name
&& bdrv_all_delete_snapshot(name
, &bs1
, &local_err
) < 0) {
1980 error_reportf_err(local_err
,
1981 "Error while deleting snapshot on device '%s': ",
1982 bdrv_get_device_name(bs1
));
1986 bs
= bdrv_all_find_vmstate_bs();
1988 monitor_printf(mon
, "No block device can accept snapshots\n");
1991 aio_context
= bdrv_get_aio_context(bs
);
1993 saved_vm_running
= runstate_is_running();
1995 ret
= global_state_store();
1997 monitor_printf(mon
, "Error saving global state\n");
2000 vm_stop(RUN_STATE_SAVE_VM
);
2002 aio_context_acquire(aio_context
);
2004 memset(sn
, 0, sizeof(*sn
));
2006 /* fill auxiliary fields */
2007 qemu_gettimeofday(&tv
);
2008 sn
->date_sec
= tv
.tv_sec
;
2009 sn
->date_nsec
= tv
.tv_usec
* 1000;
2010 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2013 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
2015 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
2016 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
2018 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
2021 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2022 localtime_r((const time_t *)&tv
.tv_sec
, &tm
);
2023 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", &tm
);
2026 /* save the VM state */
2027 f
= qemu_fopen_bdrv(bs
, 1);
2029 monitor_printf(mon
, "Could not open VM state file\n");
2032 ret
= qemu_savevm_state(f
, &local_err
);
2033 vm_state_size
= qemu_ftell(f
);
2036 error_report_err(local_err
);
2040 ret
= bdrv_all_create_snapshot(sn
, bs
, vm_state_size
, &bs
);
2042 monitor_printf(mon
, "Error while creating snapshot on '%s'\n",
2043 bdrv_get_device_name(bs
));
2047 aio_context_release(aio_context
);
2048 if (saved_vm_running
) {
2053 void qmp_xen_save_devices_state(const char *filename
, Error
**errp
)
2056 int saved_vm_running
;
2059 saved_vm_running
= runstate_is_running();
2060 vm_stop(RUN_STATE_SAVE_VM
);
2061 global_state_store_running();
2063 f
= qemu_fopen(filename
, "wb");
2065 error_setg_file_open(errp
, errno
, filename
);
2068 ret
= qemu_save_device_state(f
);
2071 error_setg(errp
, QERR_IO_ERROR
);
2075 if (saved_vm_running
) {
2080 int load_vmstate(const char *name
)
2082 BlockDriverState
*bs
, *bs_vm_state
;
2083 QEMUSnapshotInfo sn
;
2086 AioContext
*aio_context
;
2088 if (!bdrv_all_can_snapshot(&bs
)) {
2089 error_report("Device '%s' is writable but does not support snapshots.",
2090 bdrv_get_device_name(bs
));
2093 ret
= bdrv_all_find_snapshot(name
, &bs
);
2095 error_report("Device '%s' does not have the requested snapshot '%s'",
2096 bdrv_get_device_name(bs
), name
);
2100 bs_vm_state
= bdrv_all_find_vmstate_bs();
2102 error_report("No block device supports snapshots");
2105 aio_context
= bdrv_get_aio_context(bs_vm_state
);
2107 /* Don't even try to load empty VM states */
2108 aio_context_acquire(aio_context
);
2109 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
2110 aio_context_release(aio_context
);
2113 } else if (sn
.vm_state_size
== 0) {
2114 error_report("This is a disk-only snapshot. Revert to it offline "
2119 /* Flush all IO requests so they don't interfere with the new state. */
2122 ret
= bdrv_all_goto_snapshot(name
, &bs
);
2124 error_report("Error %d while activating snapshot '%s' on '%s'",
2125 ret
, name
, bdrv_get_device_name(bs
));
2129 /* restore the VM state */
2130 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
2132 error_report("Could not open VM state file");
2136 qemu_system_reset(VMRESET_SILENT
);
2137 migration_incoming_state_new(f
);
2139 aio_context_acquire(aio_context
);
2140 ret
= qemu_loadvm_state(f
);
2142 aio_context_release(aio_context
);
2144 migration_incoming_state_destroy();
2146 error_report("Error %d while loading VM state", ret
);
2153 void hmp_delvm(Monitor
*mon
, const QDict
*qdict
)
2155 BlockDriverState
*bs
;
2157 const char *name
= qdict_get_str(qdict
, "name");
2159 if (bdrv_all_delete_snapshot(name
, &bs
, &err
) < 0) {
2160 error_reportf_err(err
,
2161 "Error while deleting snapshot on device '%s': ",
2162 bdrv_get_device_name(bs
));
2166 void hmp_info_snapshots(Monitor
*mon
, const QDict
*qdict
)
2168 BlockDriverState
*bs
, *bs1
;
2169 QEMUSnapshotInfo
*sn_tab
, *sn
;
2172 int *available_snapshots
;
2173 AioContext
*aio_context
;
2175 bs
= bdrv_all_find_vmstate_bs();
2177 monitor_printf(mon
, "No available block device supports snapshots\n");
2180 aio_context
= bdrv_get_aio_context(bs
);
2182 aio_context_acquire(aio_context
);
2183 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
2184 aio_context_release(aio_context
);
2187 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
2192 monitor_printf(mon
, "There is no snapshot available.\n");
2196 available_snapshots
= g_new0(int, nb_sns
);
2198 for (i
= 0; i
< nb_sns
; i
++) {
2199 if (bdrv_all_find_snapshot(sn_tab
[i
].id_str
, &bs1
) == 0) {
2200 available_snapshots
[total
] = i
;
2206 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
2207 monitor_printf(mon
, "\n");
2208 for (i
= 0; i
< total
; i
++) {
2209 sn
= &sn_tab
[available_snapshots
[i
]];
2210 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, sn
);
2211 monitor_printf(mon
, "\n");
2214 monitor_printf(mon
, "There is no suitable snapshot available\n");
2218 g_free(available_snapshots
);
2222 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2224 qemu_ram_set_idstr(memory_region_get_ram_addr(mr
) & TARGET_PAGE_MASK
,
2225 memory_region_name(mr
), dev
);
2228 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2230 qemu_ram_unset_idstr(memory_region_get_ram_addr(mr
) & TARGET_PAGE_MASK
);
2233 void vmstate_register_ram_global(MemoryRegion
*mr
)
2235 vmstate_register_ram(mr
, NULL
);