4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "config-host.h"
26 #include "qemu-common.h"
30 #include "monitor/monitor.h"
31 #include "sysemu/sysemu.h"
32 #include "qemu/timer.h"
33 #include "audio/audio.h"
34 #include "migration/migration.h"
35 #include "qemu/sockets.h"
36 #include "qemu/queue.h"
37 #include "sysemu/cpus.h"
38 #include "exec/memory.h"
39 #include "qmp-commands.h"
42 #include "block/snapshot.h"
43 #include "block/qapi.h"
45 #define SELF_ANNOUNCE_ROUNDS 5
48 #define ETH_P_RARP 0x8035
50 #define ARP_HTYPE_ETH 0x0001
51 #define ARP_PTYPE_IP 0x0800
52 #define ARP_OP_REQUEST_REV 0x3
54 static int announce_self_create(uint8_t *buf
,
57 /* Ethernet header. */
58 memset(buf
, 0xff, 6); /* destination MAC addr */
59 memcpy(buf
+ 6, mac_addr
, 6); /* source MAC addr */
60 *(uint16_t *)(buf
+ 12) = htons(ETH_P_RARP
); /* ethertype */
63 *(uint16_t *)(buf
+ 14) = htons(ARP_HTYPE_ETH
); /* hardware addr space */
64 *(uint16_t *)(buf
+ 16) = htons(ARP_PTYPE_IP
); /* protocol addr space */
65 *(buf
+ 18) = 6; /* hardware addr length (ethernet) */
66 *(buf
+ 19) = 4; /* protocol addr length (IPv4) */
67 *(uint16_t *)(buf
+ 20) = htons(ARP_OP_REQUEST_REV
); /* opcode */
68 memcpy(buf
+ 22, mac_addr
, 6); /* source hw addr */
69 memset(buf
+ 28, 0x00, 4); /* source protocol addr */
70 memcpy(buf
+ 32, mac_addr
, 6); /* target hw addr */
71 memset(buf
+ 38, 0x00, 4); /* target protocol addr */
73 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
74 memset(buf
+ 42, 0x00, 18);
76 return 60; /* len (FCS will be added by hardware) */
79 static void qemu_announce_self_iter(NICState
*nic
, void *opaque
)
84 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic
->conf
->macaddr
));
85 len
= announce_self_create(buf
, nic
->conf
->macaddr
.a
);
87 qemu_send_packet_raw(qemu_get_queue(nic
), buf
, len
);
91 static void qemu_announce_self_once(void *opaque
)
93 static int count
= SELF_ANNOUNCE_ROUNDS
;
94 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
96 qemu_foreach_nic(qemu_announce_self_iter
, NULL
);
99 /* delay 50ms, 150ms, 250ms, ... */
100 timer_mod(timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) +
101 50 + (SELF_ANNOUNCE_ROUNDS
- count
- 1) * 100);
108 void qemu_announce_self(void)
110 static QEMUTimer
*timer
;
111 timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, qemu_announce_self_once
, &timer
);
112 qemu_announce_self_once(&timer
);
115 /***********************************************************/
116 /* savevm/loadvm support */
118 static ssize_t
block_writev_buffer(void *opaque
, struct iovec
*iov
, int iovcnt
,
124 qemu_iovec_init_external(&qiov
, iov
, iovcnt
);
125 ret
= bdrv_writev_vmstate(opaque
, &qiov
, pos
);
133 static int block_put_buffer(void *opaque
, const uint8_t *buf
,
134 int64_t pos
, int size
)
136 bdrv_save_vmstate(opaque
, buf
, pos
, size
);
140 static int block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
142 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
145 static int bdrv_fclose(void *opaque
)
147 return bdrv_flush(opaque
);
150 static const QEMUFileOps bdrv_read_ops
= {
151 .get_buffer
= block_get_buffer
,
155 static const QEMUFileOps bdrv_write_ops
= {
156 .put_buffer
= block_put_buffer
,
157 .writev_buffer
= block_writev_buffer
,
161 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
164 return qemu_fopen_ops(bs
, &bdrv_write_ops
);
166 return qemu_fopen_ops(bs
, &bdrv_read_ops
);
170 /* QEMUFile timer support.
171 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
174 void timer_put(QEMUFile
*f
, QEMUTimer
*ts
)
176 uint64_t expire_time
;
178 expire_time
= timer_expire_time_ns(ts
);
179 qemu_put_be64(f
, expire_time
);
182 void timer_get(QEMUFile
*f
, QEMUTimer
*ts
)
184 uint64_t expire_time
;
186 expire_time
= qemu_get_be64(f
);
187 if (expire_time
!= -1) {
188 timer_mod_ns(ts
, expire_time
);
195 /* VMState timer support.
196 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
199 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
)
206 static void put_timer(QEMUFile
*f
, void *pv
, size_t size
)
212 const VMStateInfo vmstate_info_timer
= {
219 typedef struct CompatEntry
{
224 typedef struct SaveStateEntry
{
225 QTAILQ_ENTRY(SaveStateEntry
) entry
;
232 const VMStateDescription
*vmsd
;
240 static QTAILQ_HEAD(savevm_handlers
, SaveStateEntry
) savevm_handlers
=
241 QTAILQ_HEAD_INITIALIZER(savevm_handlers
);
242 static int global_section_id
;
244 static int calculate_new_instance_id(const char *idstr
)
249 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
250 if (strcmp(idstr
, se
->idstr
) == 0
251 && instance_id
<= se
->instance_id
) {
252 instance_id
= se
->instance_id
+ 1;
258 static int calculate_compat_instance_id(const char *idstr
)
263 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
268 if (strcmp(idstr
, se
->compat
->idstr
) == 0
269 && instance_id
<= se
->compat
->instance_id
) {
270 instance_id
= se
->compat
->instance_id
+ 1;
276 /* TODO: Individual devices generally have very little idea about the rest
277 of the system, so instance_id should be removed/replaced.
278 Meanwhile pass -1 as instance_id if you do not already have a clearly
279 distinguishing id for all instances of your device class. */
280 int register_savevm_live(DeviceState
*dev
,
289 se
= g_malloc0(sizeof(SaveStateEntry
));
290 se
->version_id
= version_id
;
291 se
->section_id
= global_section_id
++;
296 /* if this is a live_savem then set is_ram */
297 if (ops
->save_live_setup
!= NULL
) {
302 char *id
= qdev_get_dev_path(dev
);
304 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
305 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
308 se
->compat
= g_malloc0(sizeof(CompatEntry
));
309 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), idstr
);
310 se
->compat
->instance_id
= instance_id
== -1 ?
311 calculate_compat_instance_id(idstr
) : instance_id
;
315 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
317 if (instance_id
== -1) {
318 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
320 se
->instance_id
= instance_id
;
322 assert(!se
->compat
|| se
->instance_id
== 0);
323 /* add at the end of list */
324 QTAILQ_INSERT_TAIL(&savevm_handlers
, se
, entry
);
328 int register_savevm(DeviceState
*dev
,
332 SaveStateHandler
*save_state
,
333 LoadStateHandler
*load_state
,
336 SaveVMHandlers
*ops
= g_malloc0(sizeof(SaveVMHandlers
));
337 ops
->save_state
= save_state
;
338 ops
->load_state
= load_state
;
339 return register_savevm_live(dev
, idstr
, instance_id
, version_id
,
343 void unregister_savevm(DeviceState
*dev
, const char *idstr
, void *opaque
)
345 SaveStateEntry
*se
, *new_se
;
349 char *path
= qdev_get_dev_path(dev
);
351 pstrcpy(id
, sizeof(id
), path
);
352 pstrcat(id
, sizeof(id
), "/");
356 pstrcat(id
, sizeof(id
), idstr
);
358 QTAILQ_FOREACH_SAFE(se
, &savevm_handlers
, entry
, new_se
) {
359 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
360 QTAILQ_REMOVE(&savevm_handlers
, se
, entry
);
370 int vmstate_register_with_alias_id(DeviceState
*dev
, int instance_id
,
371 const VMStateDescription
*vmsd
,
372 void *opaque
, int alias_id
,
373 int required_for_version
)
377 /* If this triggers, alias support can be dropped for the vmsd. */
378 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
380 se
= g_malloc0(sizeof(SaveStateEntry
));
381 se
->version_id
= vmsd
->version_id
;
382 se
->section_id
= global_section_id
++;
385 se
->alias_id
= alias_id
;
386 se
->no_migrate
= vmsd
->unmigratable
;
389 char *id
= qdev_get_dev_path(dev
);
391 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
392 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
395 se
->compat
= g_malloc0(sizeof(CompatEntry
));
396 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
397 se
->compat
->instance_id
= instance_id
== -1 ?
398 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
402 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
404 if (instance_id
== -1) {
405 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
407 se
->instance_id
= instance_id
;
409 assert(!se
->compat
|| se
->instance_id
== 0);
410 /* add at the end of list */
411 QTAILQ_INSERT_TAIL(&savevm_handlers
, se
, entry
);
415 void vmstate_unregister(DeviceState
*dev
, const VMStateDescription
*vmsd
,
418 SaveStateEntry
*se
, *new_se
;
420 QTAILQ_FOREACH_SAFE(se
, &savevm_handlers
, entry
, new_se
) {
421 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
422 QTAILQ_REMOVE(&savevm_handlers
, se
, entry
);
431 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
, int version_id
)
433 trace_vmstate_load(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
434 if (!se
->vmsd
) { /* Old style */
435 return se
->ops
->load_state(f
, se
->opaque
, version_id
);
437 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, version_id
);
440 static void vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
)
442 trace_vmstate_save(se
->idstr
, se
->vmsd
? se
->vmsd
->name
: "(old)");
443 if (!se
->vmsd
) { /* Old style */
444 se
->ops
->save_state(f
, se
->opaque
);
447 vmstate_save_state(f
, se
->vmsd
, se
->opaque
);
450 bool qemu_savevm_state_blocked(Error
**errp
)
454 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
455 if (se
->no_migrate
) {
456 error_setg(errp
, "State blocked by non-migratable device '%s'",
464 void qemu_savevm_state_begin(QEMUFile
*f
,
465 const MigrationParams
*params
)
470 trace_savevm_state_begin();
471 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
472 if (!se
->ops
|| !se
->ops
->set_params
) {
475 se
->ops
->set_params(params
, se
->opaque
);
478 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
479 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
481 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
484 if (!se
->ops
|| !se
->ops
->save_live_setup
) {
487 if (se
->ops
&& se
->ops
->is_active
) {
488 if (!se
->ops
->is_active(se
->opaque
)) {
493 qemu_put_byte(f
, QEMU_VM_SECTION_START
);
494 qemu_put_be32(f
, se
->section_id
);
497 len
= strlen(se
->idstr
);
498 qemu_put_byte(f
, len
);
499 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
501 qemu_put_be32(f
, se
->instance_id
);
502 qemu_put_be32(f
, se
->version_id
);
504 ret
= se
->ops
->save_live_setup(f
, se
->opaque
);
506 qemu_file_set_error(f
, ret
);
513 * this function has three return values:
514 * negative: there was one error, and we have -errno.
515 * 0 : We haven't finished, caller have to go again
516 * 1 : We have finished, we can go to complete phase
518 int qemu_savevm_state_iterate(QEMUFile
*f
)
523 trace_savevm_state_iterate();
524 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
525 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
528 if (se
->ops
&& se
->ops
->is_active
) {
529 if (!se
->ops
->is_active(se
->opaque
)) {
533 if (qemu_file_rate_limit(f
)) {
536 trace_savevm_section_start(se
->idstr
, se
->section_id
);
538 qemu_put_byte(f
, QEMU_VM_SECTION_PART
);
539 qemu_put_be32(f
, se
->section_id
);
541 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
542 trace_savevm_section_end(se
->idstr
, se
->section_id
);
545 qemu_file_set_error(f
, ret
);
548 /* Do not proceed to the next vmstate before this one reported
549 completion of the current stage. This serializes the migration
550 and reduces the probability that a faster changing state is
551 synchronized over and over again. */
558 void qemu_savevm_state_complete(QEMUFile
*f
)
563 trace_savevm_state_complete();
565 cpu_synchronize_all_states();
567 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
568 if (!se
->ops
|| !se
->ops
->save_live_complete
) {
571 if (se
->ops
&& se
->ops
->is_active
) {
572 if (!se
->ops
->is_active(se
->opaque
)) {
576 trace_savevm_section_start(se
->idstr
, se
->section_id
);
578 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
579 qemu_put_be32(f
, se
->section_id
);
581 ret
= se
->ops
->save_live_complete(f
, se
->opaque
);
582 trace_savevm_section_end(se
->idstr
, se
->section_id
);
584 qemu_file_set_error(f
, ret
);
589 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
592 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
595 trace_savevm_section_start(se
->idstr
, se
->section_id
);
597 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
598 qemu_put_be32(f
, se
->section_id
);
601 len
= strlen(se
->idstr
);
602 qemu_put_byte(f
, len
);
603 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
605 qemu_put_be32(f
, se
->instance_id
);
606 qemu_put_be32(f
, se
->version_id
);
609 trace_savevm_section_end(se
->idstr
, se
->section_id
);
612 qemu_put_byte(f
, QEMU_VM_EOF
);
616 uint64_t qemu_savevm_state_pending(QEMUFile
*f
, uint64_t max_size
)
621 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
622 if (!se
->ops
|| !se
->ops
->save_live_pending
) {
625 if (se
->ops
&& se
->ops
->is_active
) {
626 if (!se
->ops
->is_active(se
->opaque
)) {
630 ret
+= se
->ops
->save_live_pending(f
, se
->opaque
, max_size
);
635 void qemu_savevm_state_cancel(void)
639 trace_savevm_state_cancel();
640 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
641 if (se
->ops
&& se
->ops
->cancel
) {
642 se
->ops
->cancel(se
->opaque
);
647 static int qemu_savevm_state(QEMUFile
*f
)
650 MigrationParams params
= {
655 if (qemu_savevm_state_blocked(NULL
)) {
659 qemu_mutex_unlock_iothread();
660 qemu_savevm_state_begin(f
, ¶ms
);
661 qemu_mutex_lock_iothread();
663 while (qemu_file_get_error(f
) == 0) {
664 if (qemu_savevm_state_iterate(f
) > 0) {
669 ret
= qemu_file_get_error(f
);
671 qemu_savevm_state_complete(f
);
672 ret
= qemu_file_get_error(f
);
675 qemu_savevm_state_cancel();
680 static int qemu_save_device_state(QEMUFile
*f
)
684 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
685 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
687 cpu_synchronize_all_states();
689 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
695 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
700 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
701 qemu_put_be32(f
, se
->section_id
);
704 len
= strlen(se
->idstr
);
705 qemu_put_byte(f
, len
);
706 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
708 qemu_put_be32(f
, se
->instance_id
);
709 qemu_put_be32(f
, se
->version_id
);
714 qemu_put_byte(f
, QEMU_VM_EOF
);
716 return qemu_file_get_error(f
);
719 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
723 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
724 if (!strcmp(se
->idstr
, idstr
) &&
725 (instance_id
== se
->instance_id
||
726 instance_id
== se
->alias_id
))
728 /* Migrating from an older version? */
729 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
730 if (!strcmp(se
->compat
->idstr
, idstr
) &&
731 (instance_id
== se
->compat
->instance_id
||
732 instance_id
== se
->alias_id
))
739 typedef struct LoadStateEntry
{
740 QLIST_ENTRY(LoadStateEntry
) entry
;
746 int qemu_loadvm_state(QEMUFile
*f
)
748 QLIST_HEAD(, LoadStateEntry
) loadvm_handlers
=
749 QLIST_HEAD_INITIALIZER(loadvm_handlers
);
750 LoadStateEntry
*le
, *new_le
;
751 uint8_t section_type
;
755 if (qemu_savevm_state_blocked(NULL
)) {
759 v
= qemu_get_be32(f
);
760 if (v
!= QEMU_VM_FILE_MAGIC
) {
764 v
= qemu_get_be32(f
);
765 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
766 fprintf(stderr
, "SaveVM v2 format is obsolete and don't work anymore\n");
769 if (v
!= QEMU_VM_FILE_VERSION
) {
773 while ((section_type
= qemu_get_byte(f
)) != QEMU_VM_EOF
) {
774 uint32_t instance_id
, version_id
, section_id
;
779 switch (section_type
) {
780 case QEMU_VM_SECTION_START
:
781 case QEMU_VM_SECTION_FULL
:
782 /* Read section start */
783 section_id
= qemu_get_be32(f
);
784 len
= qemu_get_byte(f
);
785 qemu_get_buffer(f
, (uint8_t *)idstr
, len
);
787 instance_id
= qemu_get_be32(f
);
788 version_id
= qemu_get_be32(f
);
790 /* Find savevm section */
791 se
= find_se(idstr
, instance_id
);
793 fprintf(stderr
, "Unknown savevm section or instance '%s' %d\n", idstr
, instance_id
);
798 /* Validate version */
799 if (version_id
> se
->version_id
) {
800 fprintf(stderr
, "savevm: unsupported version %d for '%s' v%d\n",
801 version_id
, idstr
, se
->version_id
);
807 le
= g_malloc0(sizeof(*le
));
810 le
->section_id
= section_id
;
811 le
->version_id
= version_id
;
812 QLIST_INSERT_HEAD(&loadvm_handlers
, le
, entry
);
814 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
816 fprintf(stderr
, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
821 case QEMU_VM_SECTION_PART
:
822 case QEMU_VM_SECTION_END
:
823 section_id
= qemu_get_be32(f
);
825 QLIST_FOREACH(le
, &loadvm_handlers
, entry
) {
826 if (le
->section_id
== section_id
) {
831 fprintf(stderr
, "Unknown savevm section %d\n", section_id
);
836 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
838 fprintf(stderr
, "qemu: warning: error while loading state section id %d\n",
844 fprintf(stderr
, "Unknown savevm section type %d\n", section_type
);
850 cpu_synchronize_all_post_init();
855 QLIST_FOREACH_SAFE(le
, &loadvm_handlers
, entry
, new_le
) {
856 QLIST_REMOVE(le
, entry
);
861 ret
= qemu_file_get_error(f
);
867 static BlockDriverState
*find_vmstate_bs(void)
869 BlockDriverState
*bs
= NULL
;
870 while ((bs
= bdrv_next(bs
))) {
871 if (bdrv_can_snapshot(bs
)) {
879 * Deletes snapshots of a given name in all opened images.
881 static int del_existing_snapshots(Monitor
*mon
, const char *name
)
883 BlockDriverState
*bs
;
884 QEMUSnapshotInfo sn1
, *snapshot
= &sn1
;
888 while ((bs
= bdrv_next(bs
))) {
889 if (bdrv_can_snapshot(bs
) &&
890 bdrv_snapshot_find(bs
, snapshot
, name
) >= 0) {
891 bdrv_snapshot_delete_by_id_or_name(bs
, name
, &err
);
894 "Error while deleting snapshot on device '%s':"
896 bdrv_get_device_name(bs
),
897 error_get_pretty(err
));
907 void do_savevm(Monitor
*mon
, const QDict
*qdict
)
909 BlockDriverState
*bs
, *bs1
;
910 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
913 int saved_vm_running
;
914 uint64_t vm_state_size
;
917 const char *name
= qdict_get_try_str(qdict
, "name");
919 /* Verify if there is a device that doesn't support snapshots and is writable */
921 while ((bs
= bdrv_next(bs
))) {
923 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
927 if (!bdrv_can_snapshot(bs
)) {
928 monitor_printf(mon
, "Device '%s' is writable but does not support snapshots.\n",
929 bdrv_get_device_name(bs
));
934 bs
= find_vmstate_bs();
936 monitor_printf(mon
, "No block device can accept snapshots\n");
940 saved_vm_running
= runstate_is_running();
941 vm_stop(RUN_STATE_SAVE_VM
);
943 memset(sn
, 0, sizeof(*sn
));
945 /* fill auxiliary fields */
946 qemu_gettimeofday(&tv
);
947 sn
->date_sec
= tv
.tv_sec
;
948 sn
->date_nsec
= tv
.tv_usec
* 1000;
949 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
952 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
954 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
955 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
957 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
960 /* cast below needed for OpenBSD where tv_sec is still 'long' */
961 localtime_r((const time_t *)&tv
.tv_sec
, &tm
);
962 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", &tm
);
965 /* Delete old snapshots of the same name */
966 if (name
&& del_existing_snapshots(mon
, name
) < 0) {
970 /* save the VM state */
971 f
= qemu_fopen_bdrv(bs
, 1);
973 monitor_printf(mon
, "Could not open VM state file\n");
976 ret
= qemu_savevm_state(f
);
977 vm_state_size
= qemu_ftell(f
);
980 monitor_printf(mon
, "Error %d while writing VM\n", ret
);
984 /* create the snapshots */
987 while ((bs1
= bdrv_next(bs1
))) {
988 if (bdrv_can_snapshot(bs1
)) {
989 /* Write VM state size only to the image that contains the state */
990 sn
->vm_state_size
= (bs
== bs1
? vm_state_size
: 0);
991 ret
= bdrv_snapshot_create(bs1
, sn
);
993 monitor_printf(mon
, "Error while creating snapshot on '%s'\n",
994 bdrv_get_device_name(bs1
));
1000 if (saved_vm_running
) {
1005 void qmp_xen_save_devices_state(const char *filename
, Error
**errp
)
1008 int saved_vm_running
;
1011 saved_vm_running
= runstate_is_running();
1012 vm_stop(RUN_STATE_SAVE_VM
);
1014 f
= qemu_fopen(filename
, "wb");
1016 error_setg_file_open(errp
, errno
, filename
);
1019 ret
= qemu_save_device_state(f
);
1022 error_set(errp
, QERR_IO_ERROR
);
1026 if (saved_vm_running
) {
1031 int load_vmstate(const char *name
)
1033 BlockDriverState
*bs
, *bs_vm_state
;
1034 QEMUSnapshotInfo sn
;
1038 bs_vm_state
= find_vmstate_bs();
1040 error_report("No block device supports snapshots");
1044 /* Don't even try to load empty VM states */
1045 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
1048 } else if (sn
.vm_state_size
== 0) {
1049 error_report("This is a disk-only snapshot. Revert to it offline "
1054 /* Verify if there is any device that doesn't support snapshots and is
1055 writable and check if the requested snapshot is available too. */
1057 while ((bs
= bdrv_next(bs
))) {
1059 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
1063 if (!bdrv_can_snapshot(bs
)) {
1064 error_report("Device '%s' is writable but does not support snapshots.",
1065 bdrv_get_device_name(bs
));
1069 ret
= bdrv_snapshot_find(bs
, &sn
, name
);
1071 error_report("Device '%s' does not have the requested snapshot '%s'",
1072 bdrv_get_device_name(bs
), name
);
1077 /* Flush all IO requests so they don't interfere with the new state. */
1081 while ((bs
= bdrv_next(bs
))) {
1082 if (bdrv_can_snapshot(bs
)) {
1083 ret
= bdrv_snapshot_goto(bs
, name
);
1085 error_report("Error %d while activating snapshot '%s' on '%s'",
1086 ret
, name
, bdrv_get_device_name(bs
));
1092 /* restore the VM state */
1093 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
1095 error_report("Could not open VM state file");
1099 qemu_system_reset(VMRESET_SILENT
);
1100 ret
= qemu_loadvm_state(f
);
1104 error_report("Error %d while loading VM state", ret
);
1111 void do_delvm(Monitor
*mon
, const QDict
*qdict
)
1113 BlockDriverState
*bs
, *bs1
;
1115 const char *name
= qdict_get_str(qdict
, "name");
1117 bs
= find_vmstate_bs();
1119 monitor_printf(mon
, "No block device supports snapshots\n");
1124 while ((bs1
= bdrv_next(bs1
))) {
1125 if (bdrv_can_snapshot(bs1
)) {
1126 bdrv_snapshot_delete_by_id_or_name(bs
, name
, &err
);
1129 "Error while deleting snapshot on device '%s':"
1131 bdrv_get_device_name(bs
),
1132 error_get_pretty(err
));
1139 void do_info_snapshots(Monitor
*mon
, const QDict
*qdict
)
1141 BlockDriverState
*bs
, *bs1
;
1142 QEMUSnapshotInfo
*sn_tab
, *sn
, s
, *sn_info
= &s
;
1143 int nb_sns
, i
, ret
, available
;
1145 int *available_snapshots
;
1147 bs
= find_vmstate_bs();
1149 monitor_printf(mon
, "No available block device supports snapshots\n");
1153 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1155 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
1160 monitor_printf(mon
, "There is no snapshot available.\n");
1164 available_snapshots
= g_malloc0(sizeof(int) * nb_sns
);
1166 for (i
= 0; i
< nb_sns
; i
++) {
1171 while ((bs1
= bdrv_next(bs1
))) {
1172 if (bdrv_can_snapshot(bs1
) && bs1
!= bs
) {
1173 ret
= bdrv_snapshot_find(bs1
, sn_info
, sn
->id_str
);
1182 available_snapshots
[total
] = i
;
1188 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
1189 monitor_printf(mon
, "\n");
1190 for (i
= 0; i
< total
; i
++) {
1191 sn
= &sn_tab
[available_snapshots
[i
]];
1192 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, sn
);
1193 monitor_printf(mon
, "\n");
1196 monitor_printf(mon
, "There is no suitable snapshot available\n");
1200 g_free(available_snapshots
);
1204 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
1206 qemu_ram_set_idstr(memory_region_get_ram_addr(mr
) & TARGET_PAGE_MASK
,
1207 memory_region_name(mr
), dev
);
1210 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
1212 /* Nothing do to while the implementation is in RAMBlock */
1215 void vmstate_register_ram_global(MemoryRegion
*mr
)
1217 vmstate_register_ram(mr
, NULL
);