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 len
= announce_self_create(buf
, nic
->conf
->macaddr
.a
);
86 qemu_send_packet_raw(qemu_get_queue(nic
), buf
, len
);
90 static void qemu_announce_self_once(void *opaque
)
92 static int count
= SELF_ANNOUNCE_ROUNDS
;
93 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
95 qemu_foreach_nic(qemu_announce_self_iter
, NULL
);
98 /* delay 50ms, 150ms, 250ms, ... */
99 timer_mod(timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) +
100 50 + (SELF_ANNOUNCE_ROUNDS
- count
- 1) * 100);
107 void qemu_announce_self(void)
109 static QEMUTimer
*timer
;
110 timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, qemu_announce_self_once
, &timer
);
111 qemu_announce_self_once(&timer
);
114 /***********************************************************/
115 /* savevm/loadvm support */
117 static ssize_t
block_writev_buffer(void *opaque
, struct iovec
*iov
, int iovcnt
,
123 qemu_iovec_init_external(&qiov
, iov
, iovcnt
);
124 ret
= bdrv_writev_vmstate(opaque
, &qiov
, pos
);
132 static int block_put_buffer(void *opaque
, const uint8_t *buf
,
133 int64_t pos
, int size
)
135 bdrv_save_vmstate(opaque
, buf
, pos
, size
);
139 static int block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
141 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
144 static int bdrv_fclose(void *opaque
)
146 return bdrv_flush(opaque
);
149 static const QEMUFileOps bdrv_read_ops
= {
150 .get_buffer
= block_get_buffer
,
154 static const QEMUFileOps bdrv_write_ops
= {
155 .put_buffer
= block_put_buffer
,
156 .writev_buffer
= block_writev_buffer
,
160 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
163 return qemu_fopen_ops(bs
, &bdrv_write_ops
);
165 return qemu_fopen_ops(bs
, &bdrv_read_ops
);
169 /* QEMUFile timer support.
170 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
173 void timer_put(QEMUFile
*f
, QEMUTimer
*ts
)
175 uint64_t expire_time
;
177 expire_time
= timer_expire_time_ns(ts
);
178 qemu_put_be64(f
, expire_time
);
181 void timer_get(QEMUFile
*f
, QEMUTimer
*ts
)
183 uint64_t expire_time
;
185 expire_time
= qemu_get_be64(f
);
186 if (expire_time
!= -1) {
187 timer_mod_ns(ts
, expire_time
);
194 /* VMState timer support.
195 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
198 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
)
205 static void put_timer(QEMUFile
*f
, void *pv
, size_t size
)
211 const VMStateInfo vmstate_info_timer
= {
218 typedef struct CompatEntry
{
223 typedef struct SaveStateEntry
{
224 QTAILQ_ENTRY(SaveStateEntry
) entry
;
231 const VMStateDescription
*vmsd
;
239 static QTAILQ_HEAD(savevm_handlers
, SaveStateEntry
) savevm_handlers
=
240 QTAILQ_HEAD_INITIALIZER(savevm_handlers
);
241 static int global_section_id
;
243 static int calculate_new_instance_id(const char *idstr
)
248 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
249 if (strcmp(idstr
, se
->idstr
) == 0
250 && instance_id
<= se
->instance_id
) {
251 instance_id
= se
->instance_id
+ 1;
257 static int calculate_compat_instance_id(const char *idstr
)
262 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
267 if (strcmp(idstr
, se
->compat
->idstr
) == 0
268 && instance_id
<= se
->compat
->instance_id
) {
269 instance_id
= se
->compat
->instance_id
+ 1;
275 /* TODO: Individual devices generally have very little idea about the rest
276 of the system, so instance_id should be removed/replaced.
277 Meanwhile pass -1 as instance_id if you do not already have a clearly
278 distinguishing id for all instances of your device class. */
279 int register_savevm_live(DeviceState
*dev
,
288 se
= g_malloc0(sizeof(SaveStateEntry
));
289 se
->version_id
= version_id
;
290 se
->section_id
= global_section_id
++;
295 /* if this is a live_savem then set is_ram */
296 if (ops
->save_live_setup
!= NULL
) {
301 char *id
= qdev_get_dev_path(dev
);
303 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
304 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
307 se
->compat
= g_malloc0(sizeof(CompatEntry
));
308 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), idstr
);
309 se
->compat
->instance_id
= instance_id
== -1 ?
310 calculate_compat_instance_id(idstr
) : instance_id
;
314 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
316 if (instance_id
== -1) {
317 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
319 se
->instance_id
= instance_id
;
321 assert(!se
->compat
|| se
->instance_id
== 0);
322 /* add at the end of list */
323 QTAILQ_INSERT_TAIL(&savevm_handlers
, se
, entry
);
327 int register_savevm(DeviceState
*dev
,
331 SaveStateHandler
*save_state
,
332 LoadStateHandler
*load_state
,
335 SaveVMHandlers
*ops
= g_malloc0(sizeof(SaveVMHandlers
));
336 ops
->save_state
= save_state
;
337 ops
->load_state
= load_state
;
338 return register_savevm_live(dev
, idstr
, instance_id
, version_id
,
342 void unregister_savevm(DeviceState
*dev
, const char *idstr
, void *opaque
)
344 SaveStateEntry
*se
, *new_se
;
348 char *path
= qdev_get_dev_path(dev
);
350 pstrcpy(id
, sizeof(id
), path
);
351 pstrcat(id
, sizeof(id
), "/");
355 pstrcat(id
, sizeof(id
), idstr
);
357 QTAILQ_FOREACH_SAFE(se
, &savevm_handlers
, entry
, new_se
) {
358 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
359 QTAILQ_REMOVE(&savevm_handlers
, se
, entry
);
369 int vmstate_register_with_alias_id(DeviceState
*dev
, int instance_id
,
370 const VMStateDescription
*vmsd
,
371 void *opaque
, int alias_id
,
372 int required_for_version
)
376 /* If this triggers, alias support can be dropped for the vmsd. */
377 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
379 se
= g_malloc0(sizeof(SaveStateEntry
));
380 se
->version_id
= vmsd
->version_id
;
381 se
->section_id
= global_section_id
++;
384 se
->alias_id
= alias_id
;
385 se
->no_migrate
= vmsd
->unmigratable
;
388 char *id
= qdev_get_dev_path(dev
);
390 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
391 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
394 se
->compat
= g_malloc0(sizeof(CompatEntry
));
395 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
396 se
->compat
->instance_id
= instance_id
== -1 ?
397 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
401 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
403 if (instance_id
== -1) {
404 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
406 se
->instance_id
= instance_id
;
408 assert(!se
->compat
|| se
->instance_id
== 0);
409 /* add at the end of list */
410 QTAILQ_INSERT_TAIL(&savevm_handlers
, se
, entry
);
414 void vmstate_unregister(DeviceState
*dev
, const VMStateDescription
*vmsd
,
417 SaveStateEntry
*se
, *new_se
;
419 QTAILQ_FOREACH_SAFE(se
, &savevm_handlers
, entry
, new_se
) {
420 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
421 QTAILQ_REMOVE(&savevm_handlers
, se
, entry
);
430 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
, int version_id
)
432 if (!se
->vmsd
) { /* Old style */
433 return se
->ops
->load_state(f
, se
->opaque
, version_id
);
435 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, version_id
);
438 static void vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
)
440 if (!se
->vmsd
) { /* Old style */
441 se
->ops
->save_state(f
, se
->opaque
);
444 vmstate_save_state(f
, se
->vmsd
, se
->opaque
);
447 bool qemu_savevm_state_blocked(Error
**errp
)
451 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
452 if (se
->no_migrate
) {
453 error_set(errp
, QERR_MIGRATION_NOT_SUPPORTED
, se
->idstr
);
460 void qemu_savevm_state_begin(QEMUFile
*f
,
461 const MigrationParams
*params
)
466 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
467 if (!se
->ops
|| !se
->ops
->set_params
) {
470 se
->ops
->set_params(params
, se
->opaque
);
473 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
474 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
476 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
479 if (!se
->ops
|| !se
->ops
->save_live_setup
) {
482 if (se
->ops
&& se
->ops
->is_active
) {
483 if (!se
->ops
->is_active(se
->opaque
)) {
488 qemu_put_byte(f
, QEMU_VM_SECTION_START
);
489 qemu_put_be32(f
, se
->section_id
);
492 len
= strlen(se
->idstr
);
493 qemu_put_byte(f
, len
);
494 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
496 qemu_put_be32(f
, se
->instance_id
);
497 qemu_put_be32(f
, se
->version_id
);
499 ret
= se
->ops
->save_live_setup(f
, se
->opaque
);
501 qemu_file_set_error(f
, ret
);
508 * this function has three return values:
509 * negative: there was one error, and we have -errno.
510 * 0 : We haven't finished, caller have to go again
511 * 1 : We have finished, we can go to complete phase
513 int qemu_savevm_state_iterate(QEMUFile
*f
)
518 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
519 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
522 if (se
->ops
&& se
->ops
->is_active
) {
523 if (!se
->ops
->is_active(se
->opaque
)) {
527 if (qemu_file_rate_limit(f
)) {
530 trace_savevm_section_start();
532 qemu_put_byte(f
, QEMU_VM_SECTION_PART
);
533 qemu_put_be32(f
, se
->section_id
);
535 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
536 trace_savevm_section_end(se
->section_id
);
539 qemu_file_set_error(f
, ret
);
542 /* Do not proceed to the next vmstate before this one reported
543 completion of the current stage. This serializes the migration
544 and reduces the probability that a faster changing state is
545 synchronized over and over again. */
552 void qemu_savevm_state_complete(QEMUFile
*f
)
557 cpu_synchronize_all_states();
559 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
560 if (!se
->ops
|| !se
->ops
->save_live_complete
) {
563 if (se
->ops
&& se
->ops
->is_active
) {
564 if (!se
->ops
->is_active(se
->opaque
)) {
568 trace_savevm_section_start();
570 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
571 qemu_put_be32(f
, se
->section_id
);
573 ret
= se
->ops
->save_live_complete(f
, se
->opaque
);
574 trace_savevm_section_end(se
->section_id
);
576 qemu_file_set_error(f
, ret
);
581 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
584 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
587 trace_savevm_section_start();
589 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
590 qemu_put_be32(f
, se
->section_id
);
593 len
= strlen(se
->idstr
);
594 qemu_put_byte(f
, len
);
595 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
597 qemu_put_be32(f
, se
->instance_id
);
598 qemu_put_be32(f
, se
->version_id
);
601 trace_savevm_section_end(se
->section_id
);
604 qemu_put_byte(f
, QEMU_VM_EOF
);
608 uint64_t qemu_savevm_state_pending(QEMUFile
*f
, uint64_t max_size
)
613 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
614 if (!se
->ops
|| !se
->ops
->save_live_pending
) {
617 if (se
->ops
&& se
->ops
->is_active
) {
618 if (!se
->ops
->is_active(se
->opaque
)) {
622 ret
+= se
->ops
->save_live_pending(f
, se
->opaque
, max_size
);
627 void qemu_savevm_state_cancel(void)
631 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
632 if (se
->ops
&& se
->ops
->cancel
) {
633 se
->ops
->cancel(se
->opaque
);
638 static int qemu_savevm_state(QEMUFile
*f
)
641 MigrationParams params
= {
646 if (qemu_savevm_state_blocked(NULL
)) {
650 qemu_mutex_unlock_iothread();
651 qemu_savevm_state_begin(f
, ¶ms
);
652 qemu_mutex_lock_iothread();
654 while (qemu_file_get_error(f
) == 0) {
655 if (qemu_savevm_state_iterate(f
) > 0) {
660 ret
= qemu_file_get_error(f
);
662 qemu_savevm_state_complete(f
);
663 ret
= qemu_file_get_error(f
);
666 qemu_savevm_state_cancel();
671 static int qemu_save_device_state(QEMUFile
*f
)
675 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
676 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
678 cpu_synchronize_all_states();
680 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
686 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
691 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
692 qemu_put_be32(f
, se
->section_id
);
695 len
= strlen(se
->idstr
);
696 qemu_put_byte(f
, len
);
697 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
699 qemu_put_be32(f
, se
->instance_id
);
700 qemu_put_be32(f
, se
->version_id
);
705 qemu_put_byte(f
, QEMU_VM_EOF
);
707 return qemu_file_get_error(f
);
710 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
714 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
715 if (!strcmp(se
->idstr
, idstr
) &&
716 (instance_id
== se
->instance_id
||
717 instance_id
== se
->alias_id
))
719 /* Migrating from an older version? */
720 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
721 if (!strcmp(se
->compat
->idstr
, idstr
) &&
722 (instance_id
== se
->compat
->instance_id
||
723 instance_id
== se
->alias_id
))
730 typedef struct LoadStateEntry
{
731 QLIST_ENTRY(LoadStateEntry
) entry
;
737 int qemu_loadvm_state(QEMUFile
*f
)
739 QLIST_HEAD(, LoadStateEntry
) loadvm_handlers
=
740 QLIST_HEAD_INITIALIZER(loadvm_handlers
);
741 LoadStateEntry
*le
, *new_le
;
742 uint8_t section_type
;
746 if (qemu_savevm_state_blocked(NULL
)) {
750 v
= qemu_get_be32(f
);
751 if (v
!= QEMU_VM_FILE_MAGIC
) {
755 v
= qemu_get_be32(f
);
756 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
757 fprintf(stderr
, "SaveVM v2 format is obsolete and don't work anymore\n");
760 if (v
!= QEMU_VM_FILE_VERSION
) {
764 while ((section_type
= qemu_get_byte(f
)) != QEMU_VM_EOF
) {
765 uint32_t instance_id
, version_id
, section_id
;
770 switch (section_type
) {
771 case QEMU_VM_SECTION_START
:
772 case QEMU_VM_SECTION_FULL
:
773 /* Read section start */
774 section_id
= qemu_get_be32(f
);
775 len
= qemu_get_byte(f
);
776 qemu_get_buffer(f
, (uint8_t *)idstr
, len
);
778 instance_id
= qemu_get_be32(f
);
779 version_id
= qemu_get_be32(f
);
781 /* Find savevm section */
782 se
= find_se(idstr
, instance_id
);
784 fprintf(stderr
, "Unknown savevm section or instance '%s' %d\n", idstr
, instance_id
);
789 /* Validate version */
790 if (version_id
> se
->version_id
) {
791 fprintf(stderr
, "savevm: unsupported version %d for '%s' v%d\n",
792 version_id
, idstr
, se
->version_id
);
798 le
= g_malloc0(sizeof(*le
));
801 le
->section_id
= section_id
;
802 le
->version_id
= version_id
;
803 QLIST_INSERT_HEAD(&loadvm_handlers
, le
, entry
);
805 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
807 fprintf(stderr
, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
812 case QEMU_VM_SECTION_PART
:
813 case QEMU_VM_SECTION_END
:
814 section_id
= qemu_get_be32(f
);
816 QLIST_FOREACH(le
, &loadvm_handlers
, entry
) {
817 if (le
->section_id
== section_id
) {
822 fprintf(stderr
, "Unknown savevm section %d\n", section_id
);
827 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
829 fprintf(stderr
, "qemu: warning: error while loading state section id %d\n",
835 fprintf(stderr
, "Unknown savevm section type %d\n", section_type
);
841 cpu_synchronize_all_post_init();
846 QLIST_FOREACH_SAFE(le
, &loadvm_handlers
, entry
, new_le
) {
847 QLIST_REMOVE(le
, entry
);
852 ret
= qemu_file_get_error(f
);
858 static BlockDriverState
*find_vmstate_bs(void)
860 BlockDriverState
*bs
= NULL
;
861 while ((bs
= bdrv_next(bs
))) {
862 if (bdrv_can_snapshot(bs
)) {
870 * Deletes snapshots of a given name in all opened images.
872 static int del_existing_snapshots(Monitor
*mon
, const char *name
)
874 BlockDriverState
*bs
;
875 QEMUSnapshotInfo sn1
, *snapshot
= &sn1
;
879 while ((bs
= bdrv_next(bs
))) {
880 if (bdrv_can_snapshot(bs
) &&
881 bdrv_snapshot_find(bs
, snapshot
, name
) >= 0) {
882 bdrv_snapshot_delete_by_id_or_name(bs
, name
, &err
);
885 "Error while deleting snapshot on device '%s':"
887 bdrv_get_device_name(bs
),
888 error_get_pretty(err
));
898 void do_savevm(Monitor
*mon
, const QDict
*qdict
)
900 BlockDriverState
*bs
, *bs1
;
901 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
904 int saved_vm_running
;
905 uint64_t vm_state_size
;
908 const char *name
= qdict_get_try_str(qdict
, "name");
910 /* Verify if there is a device that doesn't support snapshots and is writable */
912 while ((bs
= bdrv_next(bs
))) {
914 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
918 if (!bdrv_can_snapshot(bs
)) {
919 monitor_printf(mon
, "Device '%s' is writable but does not support snapshots.\n",
920 bdrv_get_device_name(bs
));
925 bs
= find_vmstate_bs();
927 monitor_printf(mon
, "No block device can accept snapshots\n");
931 saved_vm_running
= runstate_is_running();
932 vm_stop(RUN_STATE_SAVE_VM
);
934 memset(sn
, 0, sizeof(*sn
));
936 /* fill auxiliary fields */
937 qemu_gettimeofday(&tv
);
938 sn
->date_sec
= tv
.tv_sec
;
939 sn
->date_nsec
= tv
.tv_usec
* 1000;
940 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
943 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
945 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
946 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
948 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
951 /* cast below needed for OpenBSD where tv_sec is still 'long' */
952 localtime_r((const time_t *)&tv
.tv_sec
, &tm
);
953 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", &tm
);
956 /* Delete old snapshots of the same name */
957 if (name
&& del_existing_snapshots(mon
, name
) < 0) {
961 /* save the VM state */
962 f
= qemu_fopen_bdrv(bs
, 1);
964 monitor_printf(mon
, "Could not open VM state file\n");
967 ret
= qemu_savevm_state(f
);
968 vm_state_size
= qemu_ftell(f
);
971 monitor_printf(mon
, "Error %d while writing VM\n", ret
);
975 /* create the snapshots */
978 while ((bs1
= bdrv_next(bs1
))) {
979 if (bdrv_can_snapshot(bs1
)) {
980 /* Write VM state size only to the image that contains the state */
981 sn
->vm_state_size
= (bs
== bs1
? vm_state_size
: 0);
982 ret
= bdrv_snapshot_create(bs1
, sn
);
984 monitor_printf(mon
, "Error while creating snapshot on '%s'\n",
985 bdrv_get_device_name(bs1
));
991 if (saved_vm_running
) {
996 void qmp_xen_save_devices_state(const char *filename
, Error
**errp
)
999 int saved_vm_running
;
1002 saved_vm_running
= runstate_is_running();
1003 vm_stop(RUN_STATE_SAVE_VM
);
1005 f
= qemu_fopen(filename
, "wb");
1007 error_setg_file_open(errp
, errno
, filename
);
1010 ret
= qemu_save_device_state(f
);
1013 error_set(errp
, QERR_IO_ERROR
);
1017 if (saved_vm_running
) {
1022 int load_vmstate(const char *name
)
1024 BlockDriverState
*bs
, *bs_vm_state
;
1025 QEMUSnapshotInfo sn
;
1029 bs_vm_state
= find_vmstate_bs();
1031 error_report("No block device supports snapshots");
1035 /* Don't even try to load empty VM states */
1036 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
1039 } else if (sn
.vm_state_size
== 0) {
1040 error_report("This is a disk-only snapshot. Revert to it offline "
1045 /* Verify if there is any device that doesn't support snapshots and is
1046 writable and check if the requested snapshot is available too. */
1048 while ((bs
= bdrv_next(bs
))) {
1050 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
1054 if (!bdrv_can_snapshot(bs
)) {
1055 error_report("Device '%s' is writable but does not support snapshots.",
1056 bdrv_get_device_name(bs
));
1060 ret
= bdrv_snapshot_find(bs
, &sn
, name
);
1062 error_report("Device '%s' does not have the requested snapshot '%s'",
1063 bdrv_get_device_name(bs
), name
);
1068 /* Flush all IO requests so they don't interfere with the new state. */
1072 while ((bs
= bdrv_next(bs
))) {
1073 if (bdrv_can_snapshot(bs
)) {
1074 ret
= bdrv_snapshot_goto(bs
, name
);
1076 error_report("Error %d while activating snapshot '%s' on '%s'",
1077 ret
, name
, bdrv_get_device_name(bs
));
1083 /* restore the VM state */
1084 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
1086 error_report("Could not open VM state file");
1090 qemu_system_reset(VMRESET_SILENT
);
1091 ret
= qemu_loadvm_state(f
);
1095 error_report("Error %d while loading VM state", ret
);
1102 void do_delvm(Monitor
*mon
, const QDict
*qdict
)
1104 BlockDriverState
*bs
, *bs1
;
1106 const char *name
= qdict_get_str(qdict
, "name");
1108 bs
= find_vmstate_bs();
1110 monitor_printf(mon
, "No block device supports snapshots\n");
1115 while ((bs1
= bdrv_next(bs1
))) {
1116 if (bdrv_can_snapshot(bs1
)) {
1117 bdrv_snapshot_delete_by_id_or_name(bs
, name
, &err
);
1120 "Error while deleting snapshot on device '%s':"
1122 bdrv_get_device_name(bs
),
1123 error_get_pretty(err
));
1130 void do_info_snapshots(Monitor
*mon
, const QDict
*qdict
)
1132 BlockDriverState
*bs
, *bs1
;
1133 QEMUSnapshotInfo
*sn_tab
, *sn
, s
, *sn_info
= &s
;
1134 int nb_sns
, i
, ret
, available
;
1136 int *available_snapshots
;
1138 bs
= find_vmstate_bs();
1140 monitor_printf(mon
, "No available block device supports snapshots\n");
1144 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1146 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
1151 monitor_printf(mon
, "There is no snapshot available.\n");
1155 available_snapshots
= g_malloc0(sizeof(int) * nb_sns
);
1157 for (i
= 0; i
< nb_sns
; i
++) {
1162 while ((bs1
= bdrv_next(bs1
))) {
1163 if (bdrv_can_snapshot(bs1
) && bs1
!= bs
) {
1164 ret
= bdrv_snapshot_find(bs1
, sn_info
, sn
->id_str
);
1173 available_snapshots
[total
] = i
;
1179 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
1180 monitor_printf(mon
, "\n");
1181 for (i
= 0; i
< total
; i
++) {
1182 sn
= &sn_tab
[available_snapshots
[i
]];
1183 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, sn
);
1184 monitor_printf(mon
, "\n");
1187 monitor_printf(mon
, "There is no suitable snapshot available\n");
1191 g_free(available_snapshots
);
1195 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
1197 qemu_ram_set_idstr(memory_region_get_ram_addr(mr
) & TARGET_PAGE_MASK
,
1198 memory_region_name(mr
), dev
);
1201 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
1203 /* Nothing do to while the implementation is in RAMBlock */
1206 void vmstate_register_ram_global(MemoryRegion
*mr
)
1208 vmstate_register_ram(mr
, NULL
);