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
32 /* Needed early for HOST_BSD etc. */
33 #include "config-host.h"
36 #include <sys/times.h>
40 #include <sys/ioctl.h>
41 #include <sys/resource.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
45 #if defined(__NetBSD__)
46 #include <net/if_tap.h>
49 #include <linux/if_tun.h>
51 #include <arpa/inet.h>
54 #include <sys/select.h>
57 #if defined(__FreeBSD__) || defined(__DragonFly__)
62 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63 #include <freebsd/stdlib.h>
68 #include <linux/rtc.h>
76 #include <sys/timeb.h>
78 #define getopt_long_only getopt_long
79 #define memalign(align, size) malloc(size)
82 #include "qemu-common.h"
87 #include "qemu-timer.h"
88 #include "qemu-char.h"
90 #include "audio/audio.h"
91 #include "migration.h"
92 #include "qemu_socket.h"
94 /* point to the block driver where the snapshots are managed */
95 static BlockDriverState
*bs_snapshots
;
97 #define SELF_ANNOUNCE_ROUNDS 5
98 #define ETH_P_EXPERIMENTAL 0x01F1 /* just a number */
99 //#define ETH_P_EXPERIMENTAL 0x0012 /* make it the size of the packet */
100 #define EXPERIMENTAL_MAGIC 0xf1f23f4f
102 static int announce_self_create(uint8_t *buf
,
105 uint32_t magic
= EXPERIMENTAL_MAGIC
;
106 uint16_t proto
= htons(ETH_P_EXPERIMENTAL
);
108 /* FIXME: should we send a different packet (arp/rarp/ping)? */
111 memset(buf
, 0xff, 6); /* h_dst */
112 memcpy(buf
+ 6, mac_addr
, 6); /* h_src */
113 memcpy(buf
+ 12, &proto
, 2); /* h_proto */
114 memcpy(buf
+ 14, &magic
, 4); /* magic */
119 static void qemu_announce_self_once(void *opaque
)
125 static int count
= SELF_ANNOUNCE_ROUNDS
;
126 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
128 for (i
= 0; i
< MAX_NICS
; i
++) {
129 if (!nd_table
[i
].used
)
131 len
= announce_self_create(buf
, nd_table
[i
].macaddr
);
132 vlan
= nd_table
[i
].vlan
;
133 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
134 vc
->fd_read(vc
->opaque
, buf
, len
);
138 qemu_mod_timer(timer
, qemu_get_clock(rt_clock
) + 100);
140 qemu_del_timer(timer
);
141 qemu_free_timer(timer
);
145 void qemu_announce_self(void)
147 static QEMUTimer
*timer
;
148 timer
= qemu_new_timer(rt_clock
, qemu_announce_self_once
, &timer
);
149 qemu_announce_self_once(&timer
);
152 /***********************************************************/
153 /* savevm/loadvm support */
155 #define IO_BUF_SIZE 32768
158 QEMUFilePutBufferFunc
*put_buffer
;
159 QEMUFileGetBufferFunc
*get_buffer
;
160 QEMUFileCloseFunc
*close
;
161 QEMUFileRateLimit
*rate_limit
;
162 QEMUFileSetRateLimit
*set_rate_limit
;
166 int64_t buf_offset
; /* start of buffer when writing, end of buffer
169 int buf_size
; /* 0 when writing */
170 uint8_t buf
[IO_BUF_SIZE
];
175 typedef struct QEMUFilePopen
181 typedef struct QEMUFileSocket
187 static int socket_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
189 QEMUFileSocket
*s
= opaque
;
193 len
= recv(s
->fd
, buf
, size
, 0);
194 } while (len
== -1 && socket_error() == EINTR
);
197 len
= -socket_error();
202 static int socket_close(void *opaque
)
204 QEMUFileSocket
*s
= opaque
;
209 static int popen_put_buffer(void *opaque
, const uint8_t *buf
, int64_t pos
, int size
)
211 QEMUFilePopen
*s
= opaque
;
212 return fwrite(buf
, 1, size
, s
->popen_file
);
215 static int popen_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
217 QEMUFilePopen
*s
= opaque
;
218 return fread(buf
, 1, size
, s
->popen_file
);
221 static int popen_close(void *opaque
)
223 QEMUFilePopen
*s
= opaque
;
224 pclose(s
->popen_file
);
229 QEMUFile
*qemu_popen(FILE *popen_file
, const char *mode
)
233 if (popen_file
== NULL
|| mode
== NULL
|| (mode
[0] != 'r' && mode
[0] != 'w') || mode
[1] != 0) {
234 fprintf(stderr
, "qemu_popen: Argument validity check failed\n");
238 s
= qemu_mallocz(sizeof(QEMUFilePopen
));
240 s
->popen_file
= popen_file
;
243 s
->file
= qemu_fopen_ops(s
, NULL
, popen_get_buffer
, popen_close
, NULL
, NULL
);
245 s
->file
= qemu_fopen_ops(s
, popen_put_buffer
, NULL
, popen_close
, NULL
, NULL
);
247 fprintf(stderr
, "qemu_popen: returning result of qemu_fopen_ops\n");
251 QEMUFile
*qemu_popen_cmd(const char *command
, const char *mode
)
255 popen_file
= popen(command
, mode
);
256 if(popen_file
== NULL
) {
260 return qemu_popen(popen_file
, mode
);
263 QEMUFile
*qemu_fopen_socket(int fd
)
265 QEMUFileSocket
*s
= qemu_mallocz(sizeof(QEMUFileSocket
));
268 s
->file
= qemu_fopen_ops(s
, NULL
, socket_get_buffer
, socket_close
, NULL
, NULL
);
272 typedef struct QEMUFileStdio
277 static int file_put_buffer(void *opaque
, const uint8_t *buf
,
278 int64_t pos
, int size
)
280 QEMUFileStdio
*s
= opaque
;
281 fseek(s
->outfile
, pos
, SEEK_SET
);
282 fwrite(buf
, 1, size
, s
->outfile
);
286 static int file_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
288 QEMUFileStdio
*s
= opaque
;
289 fseek(s
->outfile
, pos
, SEEK_SET
);
290 return fread(buf
, 1, size
, s
->outfile
);
293 static int file_close(void *opaque
)
295 QEMUFileStdio
*s
= opaque
;
301 QEMUFile
*qemu_fopen(const char *filename
, const char *mode
)
305 s
= qemu_mallocz(sizeof(QEMUFileStdio
));
307 s
->outfile
= fopen(filename
, mode
);
311 if (!strcmp(mode
, "wb"))
312 return qemu_fopen_ops(s
, file_put_buffer
, NULL
, file_close
, NULL
, NULL
);
313 else if (!strcmp(mode
, "rb"))
314 return qemu_fopen_ops(s
, NULL
, file_get_buffer
, file_close
, NULL
, NULL
);
323 typedef struct QEMUFileBdrv
325 BlockDriverState
*bs
;
329 static int block_put_buffer(void *opaque
, const uint8_t *buf
,
330 int64_t pos
, int size
)
332 QEMUFileBdrv
*s
= opaque
;
333 bdrv_put_buffer(s
->bs
, buf
, s
->base_offset
+ pos
, size
);
337 static int block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
339 QEMUFileBdrv
*s
= opaque
;
340 return bdrv_get_buffer(s
->bs
, buf
, s
->base_offset
+ pos
, size
);
343 static int bdrv_fclose(void *opaque
)
345 QEMUFileBdrv
*s
= opaque
;
350 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int64_t offset
, int is_writable
)
354 s
= qemu_mallocz(sizeof(QEMUFileBdrv
));
357 s
->base_offset
= offset
;
360 return qemu_fopen_ops(s
, block_put_buffer
, NULL
, bdrv_fclose
, NULL
, NULL
);
362 return qemu_fopen_ops(s
, NULL
, block_get_buffer
, bdrv_fclose
, NULL
, NULL
);
365 QEMUFile
*qemu_fopen_ops(void *opaque
, QEMUFilePutBufferFunc
*put_buffer
,
366 QEMUFileGetBufferFunc
*get_buffer
,
367 QEMUFileCloseFunc
*close
,
368 QEMUFileRateLimit
*rate_limit
,
369 QEMUFileSetRateLimit
*set_rate_limit
)
373 f
= qemu_mallocz(sizeof(QEMUFile
));
376 f
->put_buffer
= put_buffer
;
377 f
->get_buffer
= get_buffer
;
379 f
->rate_limit
= rate_limit
;
380 f
->set_rate_limit
= set_rate_limit
;
386 int qemu_file_has_error(QEMUFile
*f
)
391 void qemu_file_set_error(QEMUFile
*f
)
396 void qemu_fflush(QEMUFile
*f
)
401 if (f
->is_write
&& f
->buf_index
> 0) {
404 len
= f
->put_buffer(f
->opaque
, f
->buf
, f
->buf_offset
, f
->buf_index
);
406 f
->buf_offset
+= f
->buf_index
;
413 static void qemu_fill_buffer(QEMUFile
*f
)
423 len
= f
->get_buffer(f
->opaque
, f
->buf
, f
->buf_offset
, IO_BUF_SIZE
);
427 f
->buf_offset
+= len
;
428 } else if (len
!= -EAGAIN
)
432 int qemu_fclose(QEMUFile
*f
)
437 ret
= f
->close(f
->opaque
);
442 void qemu_file_put_notify(QEMUFile
*f
)
444 f
->put_buffer(f
->opaque
, NULL
, 0, 0);
447 void qemu_put_buffer(QEMUFile
*f
, const uint8_t *buf
, int size
)
451 if (!f
->has_error
&& f
->is_write
== 0 && f
->buf_index
> 0) {
453 "Attempted to write to buffer while read buffer is not empty\n");
457 while (!f
->has_error
&& size
> 0) {
458 l
= IO_BUF_SIZE
- f
->buf_index
;
461 memcpy(f
->buf
+ f
->buf_index
, buf
, l
);
466 if (f
->buf_index
>= IO_BUF_SIZE
)
471 void qemu_put_byte(QEMUFile
*f
, int v
)
473 if (!f
->has_error
&& f
->is_write
== 0 && f
->buf_index
> 0) {
475 "Attempted to write to buffer while read buffer is not empty\n");
479 f
->buf
[f
->buf_index
++] = v
;
481 if (f
->buf_index
>= IO_BUF_SIZE
)
485 int qemu_get_buffer(QEMUFile
*f
, uint8_t *buf
, int size1
)
494 l
= f
->buf_size
- f
->buf_index
;
497 l
= f
->buf_size
- f
->buf_index
;
503 memcpy(buf
, f
->buf
+ f
->buf_index
, l
);
511 int qemu_get_byte(QEMUFile
*f
)
516 if (f
->buf_index
>= f
->buf_size
) {
518 if (f
->buf_index
>= f
->buf_size
)
521 return f
->buf
[f
->buf_index
++];
524 int64_t qemu_ftell(QEMUFile
*f
)
526 return f
->buf_offset
- f
->buf_size
+ f
->buf_index
;
529 int64_t qemu_fseek(QEMUFile
*f
, int64_t pos
, int whence
)
531 if (whence
== SEEK_SET
) {
533 } else if (whence
== SEEK_CUR
) {
534 pos
+= qemu_ftell(f
);
536 /* SEEK_END not supported */
550 int qemu_file_rate_limit(QEMUFile
*f
)
553 return f
->rate_limit(f
->opaque
);
558 size_t qemu_file_set_rate_limit(QEMUFile
*f
, size_t new_rate
)
560 if (f
->set_rate_limit
)
561 return f
->set_rate_limit(f
->opaque
, new_rate
);
566 void qemu_put_be16(QEMUFile
*f
, unsigned int v
)
568 qemu_put_byte(f
, v
>> 8);
572 void qemu_put_be32(QEMUFile
*f
, unsigned int v
)
574 qemu_put_byte(f
, v
>> 24);
575 qemu_put_byte(f
, v
>> 16);
576 qemu_put_byte(f
, v
>> 8);
580 void qemu_put_be64(QEMUFile
*f
, uint64_t v
)
582 qemu_put_be32(f
, v
>> 32);
586 unsigned int qemu_get_be16(QEMUFile
*f
)
589 v
= qemu_get_byte(f
) << 8;
590 v
|= qemu_get_byte(f
);
594 unsigned int qemu_get_be32(QEMUFile
*f
)
597 v
= qemu_get_byte(f
) << 24;
598 v
|= qemu_get_byte(f
) << 16;
599 v
|= qemu_get_byte(f
) << 8;
600 v
|= qemu_get_byte(f
);
604 uint64_t qemu_get_be64(QEMUFile
*f
)
607 v
= (uint64_t)qemu_get_be32(f
) << 32;
608 v
|= qemu_get_be32(f
);
612 typedef struct SaveStateEntry
{
617 SaveLiveStateHandler
*save_live_state
;
618 SaveStateHandler
*save_state
;
619 LoadStateHandler
*load_state
;
621 struct SaveStateEntry
*next
;
624 static SaveStateEntry
*first_se
;
626 /* TODO: Individual devices generally have very little idea about the rest
627 of the system, so instance_id should be removed/replaced.
628 Meanwhile pass -1 as instance_id if you do not already have a clearly
629 distinguishing id for all instances of your device class. */
630 int register_savevm_live(const char *idstr
,
633 SaveLiveStateHandler
*save_live_state
,
634 SaveStateHandler
*save_state
,
635 LoadStateHandler
*load_state
,
638 SaveStateEntry
*se
, **pse
;
639 static int global_section_id
;
641 se
= qemu_malloc(sizeof(SaveStateEntry
));
642 pstrcpy(se
->idstr
, sizeof(se
->idstr
), idstr
);
643 se
->instance_id
= (instance_id
== -1) ? 0 : instance_id
;
644 se
->version_id
= version_id
;
645 se
->section_id
= global_section_id
++;
646 se
->save_live_state
= save_live_state
;
647 se
->save_state
= save_state
;
648 se
->load_state
= load_state
;
652 /* add at the end of list */
654 while (*pse
!= NULL
) {
655 if (instance_id
== -1
656 && strcmp(se
->idstr
, (*pse
)->idstr
) == 0
657 && se
->instance_id
<= (*pse
)->instance_id
)
658 se
->instance_id
= (*pse
)->instance_id
+ 1;
665 int register_savevm(const char *idstr
,
668 SaveStateHandler
*save_state
,
669 LoadStateHandler
*load_state
,
672 return register_savevm_live(idstr
, instance_id
, version_id
,
673 NULL
, save_state
, load_state
, opaque
);
676 void unregister_savevm(const char *idstr
, void *opaque
)
678 SaveStateEntry
**pse
;
681 while (*pse
!= NULL
) {
682 if (strcmp((*pse
)->idstr
, idstr
) == 0 && (*pse
)->opaque
== opaque
) {
683 SaveStateEntry
*next
= (*pse
)->next
;
692 #define QEMU_VM_FILE_MAGIC 0x5145564d
693 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
694 #define QEMU_VM_FILE_VERSION 0x00000003
696 #define QEMU_VM_EOF 0x00
697 #define QEMU_VM_SECTION_START 0x01
698 #define QEMU_VM_SECTION_PART 0x02
699 #define QEMU_VM_SECTION_END 0x03
700 #define QEMU_VM_SECTION_FULL 0x04
702 int qemu_savevm_state_begin(QEMUFile
*f
)
706 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
707 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
709 for (se
= first_se
; se
!= NULL
; se
= se
->next
) {
712 if (se
->save_live_state
== NULL
)
716 qemu_put_byte(f
, QEMU_VM_SECTION_START
);
717 qemu_put_be32(f
, se
->section_id
);
720 len
= strlen(se
->idstr
);
721 qemu_put_byte(f
, len
);
722 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
724 qemu_put_be32(f
, se
->instance_id
);
725 qemu_put_be32(f
, se
->version_id
);
727 se
->save_live_state(f
, QEMU_VM_SECTION_START
, se
->opaque
);
730 if (qemu_file_has_error(f
))
736 int qemu_savevm_state_iterate(QEMUFile
*f
)
741 for (se
= first_se
; se
!= NULL
; se
= se
->next
) {
742 if (se
->save_live_state
== NULL
)
746 qemu_put_byte(f
, QEMU_VM_SECTION_PART
);
747 qemu_put_be32(f
, se
->section_id
);
749 ret
&= !!se
->save_live_state(f
, QEMU_VM_SECTION_PART
, se
->opaque
);
755 if (qemu_file_has_error(f
))
761 int qemu_savevm_state_complete(QEMUFile
*f
)
765 for (se
= first_se
; se
!= NULL
; se
= se
->next
) {
766 if (se
->save_live_state
== NULL
)
770 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
771 qemu_put_be32(f
, se
->section_id
);
773 se
->save_live_state(f
, QEMU_VM_SECTION_END
, se
->opaque
);
776 for(se
= first_se
; se
!= NULL
; se
= se
->next
) {
779 if (se
->save_state
== NULL
)
783 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
784 qemu_put_be32(f
, se
->section_id
);
787 len
= strlen(se
->idstr
);
788 qemu_put_byte(f
, len
);
789 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
791 qemu_put_be32(f
, se
->instance_id
);
792 qemu_put_be32(f
, se
->version_id
);
794 se
->save_state(f
, se
->opaque
);
797 qemu_put_byte(f
, QEMU_VM_EOF
);
799 if (qemu_file_has_error(f
))
805 int qemu_savevm_state(QEMUFile
*f
)
807 int saved_vm_running
;
810 saved_vm_running
= vm_running
;
815 ret
= qemu_savevm_state_begin(f
);
820 ret
= qemu_savevm_state_iterate(f
);
825 ret
= qemu_savevm_state_complete(f
);
828 if (qemu_file_has_error(f
))
831 if (!ret
&& saved_vm_running
)
837 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
841 for(se
= first_se
; se
!= NULL
; se
= se
->next
) {
842 if (!strcmp(se
->idstr
, idstr
) &&
843 instance_id
== se
->instance_id
)
849 typedef struct LoadStateEntry
{
853 struct LoadStateEntry
*next
;
856 static int qemu_loadvm_state_v2(QEMUFile
*f
)
859 int len
, ret
, instance_id
, record_len
, version_id
;
860 int64_t total_len
, end_pos
, cur_pos
;
863 total_len
= qemu_get_be64(f
);
864 end_pos
= total_len
+ qemu_ftell(f
);
866 if (qemu_ftell(f
) >= end_pos
)
868 len
= qemu_get_byte(f
);
869 qemu_get_buffer(f
, (uint8_t *)idstr
, len
);
871 instance_id
= qemu_get_be32(f
);
872 version_id
= qemu_get_be32(f
);
873 record_len
= qemu_get_be32(f
);
874 cur_pos
= qemu_ftell(f
);
875 se
= find_se(idstr
, instance_id
);
877 fprintf(stderr
, "qemu: warning: instance 0x%x of device '%s' not present in current VM\n",
880 ret
= se
->load_state(f
, se
->opaque
, version_id
);
882 fprintf(stderr
, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
887 /* always seek to exact end of record */
888 qemu_fseek(f
, cur_pos
+ record_len
, SEEK_SET
);
891 if (qemu_file_has_error(f
))
897 int qemu_loadvm_state(QEMUFile
*f
)
899 LoadStateEntry
*first_le
= NULL
;
900 uint8_t section_type
;
904 v
= qemu_get_be32(f
);
905 if (v
!= QEMU_VM_FILE_MAGIC
)
908 v
= qemu_get_be32(f
);
909 if (v
== QEMU_VM_FILE_VERSION_COMPAT
)
910 return qemu_loadvm_state_v2(f
);
911 if (v
!= QEMU_VM_FILE_VERSION
)
914 while ((section_type
= qemu_get_byte(f
)) != QEMU_VM_EOF
) {
915 uint32_t instance_id
, version_id
, section_id
;
921 switch (section_type
) {
922 case QEMU_VM_SECTION_START
:
923 case QEMU_VM_SECTION_FULL
:
924 /* Read section start */
925 section_id
= qemu_get_be32(f
);
926 len
= qemu_get_byte(f
);
927 qemu_get_buffer(f
, (uint8_t *)idstr
, len
);
929 instance_id
= qemu_get_be32(f
);
930 version_id
= qemu_get_be32(f
);
932 /* Find savevm section */
933 se
= find_se(idstr
, instance_id
);
935 fprintf(stderr
, "Unknown savevm section or instance '%s' %d\n", idstr
, instance_id
);
940 /* Validate version */
941 if (version_id
> se
->version_id
) {
942 fprintf(stderr
, "savevm: unsupported version %d for '%s' v%d\n",
943 version_id
, idstr
, se
->version_id
);
949 le
= qemu_mallocz(sizeof(*le
));
952 le
->section_id
= section_id
;
953 le
->version_id
= version_id
;
957 le
->se
->load_state(f
, le
->se
->opaque
, le
->version_id
);
959 case QEMU_VM_SECTION_PART
:
960 case QEMU_VM_SECTION_END
:
961 section_id
= qemu_get_be32(f
);
963 for (le
= first_le
; le
&& le
->section_id
!= section_id
; le
= le
->next
);
965 fprintf(stderr
, "Unknown savevm section %d\n", section_id
);
970 le
->se
->load_state(f
, le
->se
->opaque
, le
->version_id
);
973 fprintf(stderr
, "Unknown savevm section type %d\n", section_type
);
983 LoadStateEntry
*le
= first_le
;
984 first_le
= first_le
->next
;
988 if (qemu_file_has_error(f
))
994 /* device can contain snapshots */
995 static int bdrv_can_snapshot(BlockDriverState
*bs
)
998 !bdrv_is_removable(bs
) &&
999 !bdrv_is_read_only(bs
));
1002 /* device must be snapshots in order to have a reliable snapshot */
1003 static int bdrv_has_snapshot(BlockDriverState
*bs
)
1006 !bdrv_is_removable(bs
) &&
1007 !bdrv_is_read_only(bs
));
1010 static BlockDriverState
*get_bs_snapshots(void)
1012 BlockDriverState
*bs
;
1016 return bs_snapshots
;
1017 for(i
= 0; i
<= nb_drives
; i
++) {
1018 bs
= drives_table
[i
].bdrv
;
1019 if (bdrv_can_snapshot(bs
))
1028 static int bdrv_snapshot_find(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
,
1031 QEMUSnapshotInfo
*sn_tab
, *sn
;
1035 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1038 for(i
= 0; i
< nb_sns
; i
++) {
1040 if (!strcmp(sn
->id_str
, name
) || !strcmp(sn
->name
, name
)) {
1050 void do_savevm(Monitor
*mon
, const char *name
)
1052 BlockDriverState
*bs
, *bs1
;
1053 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
1054 int must_delete
, ret
, i
;
1055 BlockDriverInfo bdi1
, *bdi
= &bdi1
;
1057 int saved_vm_running
;
1058 uint32_t vm_state_size
;
1065 bs
= get_bs_snapshots();
1067 monitor_printf(mon
, "No block device can accept snapshots\n");
1071 /* ??? Should this occur after vm_stop? */
1074 saved_vm_running
= vm_running
;
1079 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
1084 memset(sn
, 0, sizeof(*sn
));
1086 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
1087 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
1090 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
1093 /* fill auxiliary fields */
1096 sn
->date_sec
= tb
.time
;
1097 sn
->date_nsec
= tb
.millitm
* 1000000;
1099 gettimeofday(&tv
, NULL
);
1100 sn
->date_sec
= tv
.tv_sec
;
1101 sn
->date_nsec
= tv
.tv_usec
* 1000;
1103 sn
->vm_clock_nsec
= qemu_get_clock(vm_clock
);
1105 if (bdrv_get_info(bs
, bdi
) < 0 || bdi
->vm_state_offset
<= 0) {
1106 monitor_printf(mon
, "Device %s does not support VM state snapshots\n",
1107 bdrv_get_device_name(bs
));
1111 /* save the VM state */
1112 f
= qemu_fopen_bdrv(bs
, bdi
->vm_state_offset
, 1);
1114 monitor_printf(mon
, "Could not open VM state file\n");
1117 ret
= qemu_savevm_state(f
);
1118 vm_state_size
= qemu_ftell(f
);
1121 monitor_printf(mon
, "Error %d while writing VM\n", ret
);
1125 /* create the snapshots */
1127 for(i
= 0; i
< nb_drives
; i
++) {
1128 bs1
= drives_table
[i
].bdrv
;
1129 if (bdrv_has_snapshot(bs1
)) {
1131 ret
= bdrv_snapshot_delete(bs1
, old_sn
->id_str
);
1134 "Error while deleting snapshot on '%s'\n",
1135 bdrv_get_device_name(bs1
));
1138 /* Write VM state size only to the image that contains the state */
1139 sn
->vm_state_size
= (bs
== bs1
? vm_state_size
: 0);
1140 ret
= bdrv_snapshot_create(bs1
, sn
);
1142 monitor_printf(mon
, "Error while creating snapshot on '%s'\n",
1143 bdrv_get_device_name(bs1
));
1149 if (saved_vm_running
)
1153 void do_loadvm(Monitor
*mon
, const char *name
)
1155 BlockDriverState
*bs
, *bs1
;
1156 BlockDriverInfo bdi1
, *bdi
= &bdi1
;
1157 QEMUSnapshotInfo sn
;
1160 int saved_vm_running
;
1162 bs
= get_bs_snapshots();
1164 monitor_printf(mon
, "No block device supports snapshots\n");
1168 /* Flush all IO requests so they don't interfere with the new state. */
1171 saved_vm_running
= vm_running
;
1174 for(i
= 0; i
<= nb_drives
; i
++) {
1175 bs1
= drives_table
[i
].bdrv
;
1176 if (bdrv_has_snapshot(bs1
)) {
1177 ret
= bdrv_snapshot_goto(bs1
, name
);
1180 monitor_printf(mon
, "Warning: ");
1184 "Snapshots not supported on device '%s'\n",
1185 bdrv_get_device_name(bs1
));
1188 monitor_printf(mon
, "Could not find snapshot '%s' on "
1190 name
, bdrv_get_device_name(bs1
));
1193 monitor_printf(mon
, "Error %d while activating snapshot on"
1194 " '%s'\n", ret
, bdrv_get_device_name(bs1
));
1197 /* fatal on snapshot block device */
1204 if (bdrv_get_info(bs
, bdi
) < 0 || bdi
->vm_state_offset
<= 0) {
1205 monitor_printf(mon
, "Device %s does not support VM state snapshots\n",
1206 bdrv_get_device_name(bs
));
1210 /* Don't even try to load empty VM states */
1211 ret
= bdrv_snapshot_find(bs
, &sn
, name
);
1212 if ((ret
>= 0) && (sn
.vm_state_size
== 0))
1215 /* restore the VM state */
1216 f
= qemu_fopen_bdrv(bs
, bdi
->vm_state_offset
, 0);
1218 monitor_printf(mon
, "Could not open VM state file\n");
1221 ret
= qemu_loadvm_state(f
);
1224 monitor_printf(mon
, "Error %d while loading VM state\n", ret
);
1227 if (saved_vm_running
)
1231 void do_delvm(Monitor
*mon
, const char *name
)
1233 BlockDriverState
*bs
, *bs1
;
1236 bs
= get_bs_snapshots();
1238 monitor_printf(mon
, "No block device supports snapshots\n");
1242 for(i
= 0; i
<= nb_drives
; i
++) {
1243 bs1
= drives_table
[i
].bdrv
;
1244 if (bdrv_has_snapshot(bs1
)) {
1245 ret
= bdrv_snapshot_delete(bs1
, name
);
1247 if (ret
== -ENOTSUP
)
1249 "Snapshots not supported on device '%s'\n",
1250 bdrv_get_device_name(bs1
));
1252 monitor_printf(mon
, "Error %d while deleting snapshot on "
1253 "'%s'\n", ret
, bdrv_get_device_name(bs1
));
1259 void do_info_snapshots(Monitor
*mon
)
1261 BlockDriverState
*bs
, *bs1
;
1262 QEMUSnapshotInfo
*sn_tab
, *sn
;
1266 bs
= get_bs_snapshots();
1268 monitor_printf(mon
, "No available block device supports snapshots\n");
1271 monitor_printf(mon
, "Snapshot devices:");
1272 for(i
= 0; i
<= nb_drives
; i
++) {
1273 bs1
= drives_table
[i
].bdrv
;
1274 if (bdrv_has_snapshot(bs1
)) {
1276 monitor_printf(mon
, " %s", bdrv_get_device_name(bs1
));
1279 monitor_printf(mon
, "\n");
1281 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1283 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
1286 monitor_printf(mon
, "Snapshot list (from %s):\n",
1287 bdrv_get_device_name(bs
));
1288 monitor_printf(mon
, "%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), NULL
));
1289 for(i
= 0; i
< nb_sns
; i
++) {
1291 monitor_printf(mon
, "%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), sn
));