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 CONFIG_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
->receive(vc
, 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 QEMUFileStdio
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
, (void *)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 stdio_put_buffer(void *opaque
, const uint8_t *buf
, int64_t pos
, int size
)
211 QEMUFileStdio
*s
= opaque
;
212 return fwrite(buf
, 1, size
, s
->stdio_file
);
215 static int stdio_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
217 QEMUFileStdio
*s
= opaque
;
218 FILE *fp
= s
->stdio_file
;
223 bytes
= fread(buf
, 1, size
, fp
);
224 } while ((bytes
== 0) && ferror(fp
) && (errno
== EINTR
));
228 static int stdio_pclose(void *opaque
)
230 QEMUFileStdio
*s
= opaque
;
231 pclose(s
->stdio_file
);
236 static int stdio_fclose(void *opaque
)
238 QEMUFileStdio
*s
= opaque
;
239 fclose(s
->stdio_file
);
244 QEMUFile
*qemu_popen(FILE *stdio_file
, const char *mode
)
248 if (stdio_file
== NULL
|| mode
== NULL
|| (mode
[0] != 'r' && mode
[0] != 'w') || mode
[1] != 0) {
249 fprintf(stderr
, "qemu_popen: Argument validity check failed\n");
253 s
= qemu_mallocz(sizeof(QEMUFileStdio
));
255 s
->stdio_file
= stdio_file
;
258 s
->file
= qemu_fopen_ops(s
, NULL
, stdio_get_buffer
, stdio_pclose
, NULL
, NULL
);
260 s
->file
= qemu_fopen_ops(s
, stdio_put_buffer
, NULL
, stdio_pclose
, NULL
, NULL
);
265 QEMUFile
*qemu_popen_cmd(const char *command
, const char *mode
)
269 popen_file
= popen(command
, mode
);
270 if(popen_file
== NULL
) {
274 return qemu_popen(popen_file
, mode
);
277 int qemu_stdio_fd(QEMUFile
*f
)
282 p
= (QEMUFileStdio
*)f
->opaque
;
283 fd
= fileno(p
->stdio_file
);
288 QEMUFile
*qemu_fdopen(int fd
, const char *mode
)
293 (mode
[0] != 'r' && mode
[0] != 'w') ||
294 mode
[1] != 'b' || mode
[2] != 0) {
295 fprintf(stderr
, "qemu_fdopen: Argument validity check failed\n");
299 s
= qemu_mallocz(sizeof(QEMUFileStdio
));
300 s
->stdio_file
= fdopen(fd
, mode
);
305 s
->file
= qemu_fopen_ops(s
, NULL
, stdio_get_buffer
, stdio_fclose
, NULL
, NULL
);
307 s
->file
= qemu_fopen_ops(s
, stdio_put_buffer
, NULL
, stdio_fclose
, NULL
, NULL
);
316 QEMUFile
*qemu_fopen_socket(int fd
)
318 QEMUFileSocket
*s
= qemu_mallocz(sizeof(QEMUFileSocket
));
321 s
->file
= qemu_fopen_ops(s
, NULL
, socket_get_buffer
, socket_close
, NULL
, NULL
);
325 static int file_put_buffer(void *opaque
, const uint8_t *buf
,
326 int64_t pos
, int size
)
328 QEMUFileStdio
*s
= opaque
;
329 fseek(s
->stdio_file
, pos
, SEEK_SET
);
330 fwrite(buf
, 1, size
, s
->stdio_file
);
334 static int file_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
336 QEMUFileStdio
*s
= opaque
;
337 fseek(s
->stdio_file
, pos
, SEEK_SET
);
338 return fread(buf
, 1, size
, s
->stdio_file
);
341 QEMUFile
*qemu_fopen(const char *filename
, const char *mode
)
346 (mode
[0] != 'r' && mode
[0] != 'w') ||
347 mode
[1] != 'b' || mode
[2] != 0) {
348 fprintf(stderr
, "qemu_fdopen: Argument validity check failed\n");
352 s
= qemu_mallocz(sizeof(QEMUFileStdio
));
354 s
->stdio_file
= fopen(filename
, mode
);
359 s
->file
= qemu_fopen_ops(s
, file_put_buffer
, NULL
, stdio_fclose
, NULL
, NULL
);
361 s
->file
= qemu_fopen_ops(s
, NULL
, file_get_buffer
, stdio_fclose
, NULL
, NULL
);
369 static int block_put_buffer(void *opaque
, const uint8_t *buf
,
370 int64_t pos
, int size
)
372 bdrv_save_vmstate(opaque
, buf
, pos
, size
);
376 static int block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
378 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
381 static int bdrv_fclose(void *opaque
)
386 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
389 return qemu_fopen_ops(bs
, block_put_buffer
, NULL
, bdrv_fclose
, NULL
, NULL
);
390 return qemu_fopen_ops(bs
, NULL
, block_get_buffer
, bdrv_fclose
, NULL
, NULL
);
393 QEMUFile
*qemu_fopen_ops(void *opaque
, QEMUFilePutBufferFunc
*put_buffer
,
394 QEMUFileGetBufferFunc
*get_buffer
,
395 QEMUFileCloseFunc
*close
,
396 QEMUFileRateLimit
*rate_limit
,
397 QEMUFileSetRateLimit
*set_rate_limit
)
401 f
= qemu_mallocz(sizeof(QEMUFile
));
404 f
->put_buffer
= put_buffer
;
405 f
->get_buffer
= get_buffer
;
407 f
->rate_limit
= rate_limit
;
408 f
->set_rate_limit
= set_rate_limit
;
414 int qemu_file_has_error(QEMUFile
*f
)
419 void qemu_file_set_error(QEMUFile
*f
)
424 void qemu_fflush(QEMUFile
*f
)
429 if (f
->is_write
&& f
->buf_index
> 0) {
432 len
= f
->put_buffer(f
->opaque
, f
->buf
, f
->buf_offset
, f
->buf_index
);
434 f
->buf_offset
+= f
->buf_index
;
441 static void qemu_fill_buffer(QEMUFile
*f
)
451 len
= f
->get_buffer(f
->opaque
, f
->buf
, f
->buf_offset
, IO_BUF_SIZE
);
455 f
->buf_offset
+= len
;
456 } else if (len
!= -EAGAIN
)
460 int qemu_fclose(QEMUFile
*f
)
465 ret
= f
->close(f
->opaque
);
470 void qemu_file_put_notify(QEMUFile
*f
)
472 f
->put_buffer(f
->opaque
, NULL
, 0, 0);
475 void qemu_put_buffer(QEMUFile
*f
, const uint8_t *buf
, int size
)
479 if (!f
->has_error
&& f
->is_write
== 0 && f
->buf_index
> 0) {
481 "Attempted to write to buffer while read buffer is not empty\n");
485 while (!f
->has_error
&& size
> 0) {
486 l
= IO_BUF_SIZE
- f
->buf_index
;
489 memcpy(f
->buf
+ f
->buf_index
, buf
, l
);
494 if (f
->buf_index
>= IO_BUF_SIZE
)
499 void qemu_put_byte(QEMUFile
*f
, int v
)
501 if (!f
->has_error
&& f
->is_write
== 0 && f
->buf_index
> 0) {
503 "Attempted to write to buffer while read buffer is not empty\n");
507 f
->buf
[f
->buf_index
++] = v
;
509 if (f
->buf_index
>= IO_BUF_SIZE
)
513 int qemu_get_buffer(QEMUFile
*f
, uint8_t *buf
, int size1
)
522 l
= f
->buf_size
- f
->buf_index
;
525 l
= f
->buf_size
- f
->buf_index
;
531 memcpy(buf
, f
->buf
+ f
->buf_index
, l
);
539 int qemu_get_byte(QEMUFile
*f
)
544 if (f
->buf_index
>= f
->buf_size
) {
546 if (f
->buf_index
>= f
->buf_size
)
549 return f
->buf
[f
->buf_index
++];
552 int64_t qemu_ftell(QEMUFile
*f
)
554 return f
->buf_offset
- f
->buf_size
+ f
->buf_index
;
557 int64_t qemu_fseek(QEMUFile
*f
, int64_t pos
, int whence
)
559 if (whence
== SEEK_SET
) {
561 } else if (whence
== SEEK_CUR
) {
562 pos
+= qemu_ftell(f
);
564 /* SEEK_END not supported */
578 int qemu_file_rate_limit(QEMUFile
*f
)
581 return f
->rate_limit(f
->opaque
);
586 size_t qemu_file_set_rate_limit(QEMUFile
*f
, size_t new_rate
)
588 /* any failed or completed migration keeps its state to allow probing of
589 * migration data, but has no associated file anymore */
590 if (f
&& f
->set_rate_limit
)
591 return f
->set_rate_limit(f
->opaque
, new_rate
);
596 void qemu_put_be16(QEMUFile
*f
, unsigned int v
)
598 qemu_put_byte(f
, v
>> 8);
602 void qemu_put_be32(QEMUFile
*f
, unsigned int v
)
604 qemu_put_byte(f
, v
>> 24);
605 qemu_put_byte(f
, v
>> 16);
606 qemu_put_byte(f
, v
>> 8);
610 void qemu_put_be64(QEMUFile
*f
, uint64_t v
)
612 qemu_put_be32(f
, v
>> 32);
616 unsigned int qemu_get_be16(QEMUFile
*f
)
619 v
= qemu_get_byte(f
) << 8;
620 v
|= qemu_get_byte(f
);
624 unsigned int qemu_get_be32(QEMUFile
*f
)
627 v
= qemu_get_byte(f
) << 24;
628 v
|= qemu_get_byte(f
) << 16;
629 v
|= qemu_get_byte(f
) << 8;
630 v
|= qemu_get_byte(f
);
634 uint64_t qemu_get_be64(QEMUFile
*f
)
637 v
= (uint64_t)qemu_get_be32(f
) << 32;
638 v
|= qemu_get_be32(f
);
644 static int get_int8(QEMUFile
*f
, void *pv
, size_t size
)
651 static void put_int8(QEMUFile
*f
, const void *pv
, size_t size
)
653 const int8_t *v
= pv
;
657 const VMStateInfo vmstate_info_int8
= {
665 static int get_int16(QEMUFile
*f
, void *pv
, size_t size
)
668 qemu_get_sbe16s(f
, v
);
672 static void put_int16(QEMUFile
*f
, const void *pv
, size_t size
)
674 const int16_t *v
= pv
;
675 qemu_put_sbe16s(f
, v
);
678 const VMStateInfo vmstate_info_int16
= {
686 static int get_int32(QEMUFile
*f
, void *pv
, size_t size
)
689 qemu_get_sbe32s(f
, v
);
693 static void put_int32(QEMUFile
*f
, const void *pv
, size_t size
)
695 const int32_t *v
= pv
;
696 qemu_put_sbe32s(f
, v
);
699 const VMStateInfo vmstate_info_int32
= {
705 /* 32 bit int. See that the received value is the same than the one
708 static int get_int32_equal(QEMUFile
*f
, void *pv
, size_t size
)
712 qemu_get_sbe32s(f
, &v2
);
719 const VMStateInfo vmstate_info_int32_equal
= {
720 .name
= "int32 equal",
721 .get
= get_int32_equal
,
725 /* 32 bit int. See that the received value is the less or the same
726 than the one in the field */
728 static int get_int32_le(QEMUFile
*f
, void *pv
, size_t size
)
732 qemu_get_sbe32s(f
, &new);
739 const VMStateInfo vmstate_info_int32_le
= {
740 .name
= "int32 equal",
747 static int get_int64(QEMUFile
*f
, void *pv
, size_t size
)
750 qemu_get_sbe64s(f
, v
);
754 static void put_int64(QEMUFile
*f
, const void *pv
, size_t size
)
756 const int64_t *v
= pv
;
757 qemu_put_sbe64s(f
, v
);
760 const VMStateInfo vmstate_info_int64
= {
766 /* 8 bit unsigned int */
768 static int get_uint8(QEMUFile
*f
, void *pv
, size_t size
)
775 static void put_uint8(QEMUFile
*f
, const void *pv
, size_t size
)
777 const uint8_t *v
= pv
;
781 const VMStateInfo vmstate_info_uint8
= {
787 /* 16 bit unsigned int */
789 static int get_uint16(QEMUFile
*f
, void *pv
, size_t size
)
792 qemu_get_be16s(f
, v
);
796 static void put_uint16(QEMUFile
*f
, const void *pv
, size_t size
)
798 const uint16_t *v
= pv
;
799 qemu_put_be16s(f
, v
);
802 const VMStateInfo vmstate_info_uint16
= {
808 /* 32 bit unsigned int */
810 static int get_uint32(QEMUFile
*f
, void *pv
, size_t size
)
813 qemu_get_be32s(f
, v
);
817 static void put_uint32(QEMUFile
*f
, const void *pv
, size_t size
)
819 const uint32_t *v
= pv
;
820 qemu_put_be32s(f
, v
);
823 const VMStateInfo vmstate_info_uint32
= {
829 /* 64 bit unsigned int */
831 static int get_uint64(QEMUFile
*f
, void *pv
, size_t size
)
834 qemu_get_be64s(f
, v
);
838 static void put_uint64(QEMUFile
*f
, const void *pv
, size_t size
)
840 const uint64_t *v
= pv
;
841 qemu_put_be64s(f
, v
);
844 const VMStateInfo vmstate_info_uint64
= {
852 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
)
855 qemu_get_timer(f
, v
);
859 static void put_timer(QEMUFile
*f
, const void *pv
, size_t size
)
861 QEMUTimer
*v
= (void *)pv
;
862 qemu_put_timer(f
, v
);
865 const VMStateInfo vmstate_info_timer
= {
871 /* uint8_t buffers */
873 static int get_buffer(QEMUFile
*f
, void *pv
, size_t size
)
876 qemu_get_buffer(f
, v
, size
);
880 static void put_buffer(QEMUFile
*f
, const void *pv
, size_t size
)
882 uint8_t *v
= (void *)pv
;
883 qemu_put_buffer(f
, v
, size
);
886 const VMStateInfo vmstate_info_buffer
= {
892 typedef struct SaveStateEntry
{
897 SaveLiveStateHandler
*save_live_state
;
898 SaveStateHandler
*save_state
;
899 LoadStateHandler
*load_state
;
900 const VMStateDescription
*vmsd
;
902 struct SaveStateEntry
*next
;
905 static SaveStateEntry
*first_se
;
906 static int global_section_id
;
908 /* TODO: Individual devices generally have very little idea about the rest
909 of the system, so instance_id should be removed/replaced.
910 Meanwhile pass -1 as instance_id if you do not already have a clearly
911 distinguishing id for all instances of your device class. */
912 int register_savevm_live(const char *idstr
,
915 SaveLiveStateHandler
*save_live_state
,
916 SaveStateHandler
*save_state
,
917 LoadStateHandler
*load_state
,
920 SaveStateEntry
*se
, **pse
;
922 se
= qemu_malloc(sizeof(SaveStateEntry
));
923 pstrcpy(se
->idstr
, sizeof(se
->idstr
), idstr
);
924 se
->instance_id
= (instance_id
== -1) ? 0 : instance_id
;
925 se
->version_id
= version_id
;
926 se
->section_id
= global_section_id
++;
927 se
->save_live_state
= save_live_state
;
928 se
->save_state
= save_state
;
929 se
->load_state
= load_state
;
934 /* add at the end of list */
936 while (*pse
!= NULL
) {
937 if (instance_id
== -1
938 && strcmp(se
->idstr
, (*pse
)->idstr
) == 0
939 && se
->instance_id
<= (*pse
)->instance_id
)
940 se
->instance_id
= (*pse
)->instance_id
+ 1;
947 int register_savevm(const char *idstr
,
950 SaveStateHandler
*save_state
,
951 LoadStateHandler
*load_state
,
954 return register_savevm_live(idstr
, instance_id
, version_id
,
955 NULL
, save_state
, load_state
, opaque
);
958 void unregister_savevm(const char *idstr
, void *opaque
)
960 SaveStateEntry
**pse
;
963 while (*pse
!= NULL
) {
964 if (strcmp((*pse
)->idstr
, idstr
) == 0 && (*pse
)->opaque
== opaque
) {
965 SaveStateEntry
*next
= (*pse
)->next
;
974 int vmstate_register(int instance_id
, const VMStateDescription
*vmsd
,
977 SaveStateEntry
*se
, **pse
;
979 se
= qemu_malloc(sizeof(SaveStateEntry
));
980 pstrcpy(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
981 se
->instance_id
= (instance_id
== -1) ? 0 : instance_id
;
982 se
->version_id
= vmsd
->version_id
;
983 se
->section_id
= global_section_id
++;
984 se
->save_live_state
= NULL
;
985 se
->save_state
= NULL
;
986 se
->load_state
= NULL
;
991 /* add at the end of list */
993 while (*pse
!= NULL
) {
994 if (instance_id
== -1
995 && strcmp(se
->idstr
, (*pse
)->idstr
) == 0
996 && se
->instance_id
<= (*pse
)->instance_id
)
997 se
->instance_id
= (*pse
)->instance_id
+ 1;
1004 void vmstate_unregister(const char *idstr
, void *opaque
)
1006 SaveStateEntry
**pse
;
1009 while (*pse
!= NULL
) {
1010 if (strcmp((*pse
)->idstr
, idstr
) == 0 && (*pse
)->opaque
== opaque
) {
1011 SaveStateEntry
*next
= (*pse
)->next
;
1016 pse
= &(*pse
)->next
;
1020 int vmstate_load_state(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1021 void *opaque
, int version_id
)
1023 VMStateField
*field
= vmsd
->fields
;
1025 if (version_id
> vmsd
->version_id
) {
1028 if (version_id
< vmsd
->minimum_version_id_old
) {
1031 if (version_id
< vmsd
->minimum_version_id
) {
1032 return vmsd
->load_state_old(f
, opaque
, version_id
);
1034 while(field
->name
) {
1035 if (field
->version_id
<= version_id
) {
1036 void *base_addr
= opaque
+ field
->offset
;
1037 int ret
, i
, n_elems
= 1;
1039 if (field
->flags
& VMS_ARRAY
) {
1040 n_elems
= field
->num
;
1041 } else if (field
->flags
& VMS_VARRAY
) {
1042 n_elems
= *(size_t *)(opaque
+field
->num_offset
);
1044 if (field
->flags
& VMS_POINTER
) {
1045 base_addr
= *(void **)base_addr
;
1047 for (i
= 0; i
< n_elems
; i
++) {
1048 void *addr
= base_addr
+ field
->size
* i
;
1050 if (field
->flags
& VMS_STRUCT
) {
1051 ret
= vmstate_load_state(f
, field
->vmsd
, addr
, field
->vmsd
->version_id
);
1053 ret
= field
->info
->get(f
, addr
, field
->size
);
1063 if (vmsd
->run_after_load
)
1064 return vmsd
->run_after_load(opaque
);
1068 void vmstate_save_state(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1071 VMStateField
*field
= vmsd
->fields
;
1073 while(field
->name
) {
1074 const void *base_addr
= opaque
+ field
->offset
;
1077 if (field
->flags
& VMS_ARRAY
) {
1078 n_elems
= field
->num
;
1079 } else if (field
->flags
& VMS_VARRAY
) {
1080 n_elems
= *(size_t *)(opaque
+field
->num_offset
);
1082 if (field
->flags
& VMS_POINTER
) {
1083 base_addr
= *(void **)base_addr
;
1085 for (i
= 0; i
< n_elems
; i
++) {
1086 const void *addr
= base_addr
+ field
->size
* i
;
1088 if (field
->flags
& VMS_STRUCT
) {
1089 vmstate_save_state(f
, field
->vmsd
, addr
);
1091 field
->info
->put(f
, addr
, field
->size
);
1098 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
, int version_id
)
1100 if (!se
->vmsd
) { /* Old style */
1101 return se
->load_state(f
, se
->opaque
, version_id
);
1103 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, version_id
);
1106 static void vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
)
1108 if (!se
->vmsd
) { /* Old style */
1109 se
->save_state(f
, se
->opaque
);
1112 vmstate_save_state(f
,se
->vmsd
, se
->opaque
);
1115 #define QEMU_VM_FILE_MAGIC 0x5145564d
1116 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1117 #define QEMU_VM_FILE_VERSION 0x00000003
1119 #define QEMU_VM_EOF 0x00
1120 #define QEMU_VM_SECTION_START 0x01
1121 #define QEMU_VM_SECTION_PART 0x02
1122 #define QEMU_VM_SECTION_END 0x03
1123 #define QEMU_VM_SECTION_FULL 0x04
1125 int qemu_savevm_state_begin(QEMUFile
*f
)
1129 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1130 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1132 for (se
= first_se
; se
!= NULL
; se
= se
->next
) {
1135 if (se
->save_live_state
== NULL
)
1139 qemu_put_byte(f
, QEMU_VM_SECTION_START
);
1140 qemu_put_be32(f
, se
->section_id
);
1143 len
= strlen(se
->idstr
);
1144 qemu_put_byte(f
, len
);
1145 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
1147 qemu_put_be32(f
, se
->instance_id
);
1148 qemu_put_be32(f
, se
->version_id
);
1150 se
->save_live_state(f
, QEMU_VM_SECTION_START
, se
->opaque
);
1153 if (qemu_file_has_error(f
))
1159 int qemu_savevm_state_iterate(QEMUFile
*f
)
1164 for (se
= first_se
; se
!= NULL
; se
= se
->next
) {
1165 if (se
->save_live_state
== NULL
)
1169 qemu_put_byte(f
, QEMU_VM_SECTION_PART
);
1170 qemu_put_be32(f
, se
->section_id
);
1172 ret
&= !!se
->save_live_state(f
, QEMU_VM_SECTION_PART
, se
->opaque
);
1178 if (qemu_file_has_error(f
))
1184 int qemu_savevm_state_complete(QEMUFile
*f
)
1188 for (se
= first_se
; se
!= NULL
; se
= se
->next
) {
1189 if (se
->save_live_state
== NULL
)
1193 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1194 qemu_put_be32(f
, se
->section_id
);
1196 se
->save_live_state(f
, QEMU_VM_SECTION_END
, se
->opaque
);
1199 for(se
= first_se
; se
!= NULL
; se
= se
->next
) {
1202 if (se
->save_state
== NULL
&& se
->vmsd
== NULL
)
1206 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
1207 qemu_put_be32(f
, se
->section_id
);
1210 len
= strlen(se
->idstr
);
1211 qemu_put_byte(f
, len
);
1212 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
1214 qemu_put_be32(f
, se
->instance_id
);
1215 qemu_put_be32(f
, se
->version_id
);
1217 vmstate_save(f
, se
);
1220 qemu_put_byte(f
, QEMU_VM_EOF
);
1222 if (qemu_file_has_error(f
))
1228 int qemu_savevm_state(QEMUFile
*f
)
1230 int saved_vm_running
;
1233 saved_vm_running
= vm_running
;
1238 ret
= qemu_savevm_state_begin(f
);
1243 ret
= qemu_savevm_state_iterate(f
);
1248 ret
= qemu_savevm_state_complete(f
);
1251 if (qemu_file_has_error(f
))
1254 if (!ret
&& saved_vm_running
)
1260 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
1264 for(se
= first_se
; se
!= NULL
; se
= se
->next
) {
1265 if (!strcmp(se
->idstr
, idstr
) &&
1266 instance_id
== se
->instance_id
)
1272 typedef struct LoadStateEntry
{
1276 struct LoadStateEntry
*next
;
1279 static int qemu_loadvm_state_v2(QEMUFile
*f
)
1282 int len
, ret
, instance_id
, record_len
, version_id
;
1283 int64_t total_len
, end_pos
, cur_pos
;
1286 total_len
= qemu_get_be64(f
);
1287 end_pos
= total_len
+ qemu_ftell(f
);
1289 if (qemu_ftell(f
) >= end_pos
)
1291 len
= qemu_get_byte(f
);
1292 qemu_get_buffer(f
, (uint8_t *)idstr
, len
);
1294 instance_id
= qemu_get_be32(f
);
1295 version_id
= qemu_get_be32(f
);
1296 record_len
= qemu_get_be32(f
);
1297 cur_pos
= qemu_ftell(f
);
1298 se
= find_se(idstr
, instance_id
);
1300 fprintf(stderr
, "qemu: warning: instance 0x%x of device '%s' not present in current VM\n",
1301 instance_id
, idstr
);
1303 ret
= vmstate_load(f
, se
, version_id
);
1305 fprintf(stderr
, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1306 instance_id
, idstr
);
1310 /* always seek to exact end of record */
1311 qemu_fseek(f
, cur_pos
+ record_len
, SEEK_SET
);
1314 if (qemu_file_has_error(f
))
1320 int qemu_loadvm_state(QEMUFile
*f
)
1322 LoadStateEntry
*first_le
= NULL
;
1323 uint8_t section_type
;
1327 v
= qemu_get_be32(f
);
1328 if (v
!= QEMU_VM_FILE_MAGIC
)
1331 v
= qemu_get_be32(f
);
1332 if (v
== QEMU_VM_FILE_VERSION_COMPAT
)
1333 return qemu_loadvm_state_v2(f
);
1334 if (v
!= QEMU_VM_FILE_VERSION
)
1337 while ((section_type
= qemu_get_byte(f
)) != QEMU_VM_EOF
) {
1338 uint32_t instance_id
, version_id
, section_id
;
1344 switch (section_type
) {
1345 case QEMU_VM_SECTION_START
:
1346 case QEMU_VM_SECTION_FULL
:
1347 /* Read section start */
1348 section_id
= qemu_get_be32(f
);
1349 len
= qemu_get_byte(f
);
1350 qemu_get_buffer(f
, (uint8_t *)idstr
, len
);
1352 instance_id
= qemu_get_be32(f
);
1353 version_id
= qemu_get_be32(f
);
1355 /* Find savevm section */
1356 se
= find_se(idstr
, instance_id
);
1358 fprintf(stderr
, "Unknown savevm section or instance '%s' %d\n", idstr
, instance_id
);
1363 /* Validate version */
1364 if (version_id
> se
->version_id
) {
1365 fprintf(stderr
, "savevm: unsupported version %d for '%s' v%d\n",
1366 version_id
, idstr
, se
->version_id
);
1372 le
= qemu_mallocz(sizeof(*le
));
1375 le
->section_id
= section_id
;
1376 le
->version_id
= version_id
;
1377 le
->next
= first_le
;
1380 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
1382 fprintf(stderr
, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1383 instance_id
, idstr
);
1387 case QEMU_VM_SECTION_PART
:
1388 case QEMU_VM_SECTION_END
:
1389 section_id
= qemu_get_be32(f
);
1391 for (le
= first_le
; le
&& le
->section_id
!= section_id
; le
= le
->next
);
1393 fprintf(stderr
, "Unknown savevm section %d\n", section_id
);
1398 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
1400 fprintf(stderr
, "qemu: warning: error while loading state section id %d\n",
1406 fprintf(stderr
, "Unknown savevm section type %d\n", section_type
);
1416 LoadStateEntry
*le
= first_le
;
1417 first_le
= first_le
->next
;
1421 if (qemu_file_has_error(f
))
1427 /* device can contain snapshots */
1428 static int bdrv_can_snapshot(BlockDriverState
*bs
)
1431 !bdrv_is_removable(bs
) &&
1432 !bdrv_is_read_only(bs
));
1435 /* device must be snapshots in order to have a reliable snapshot */
1436 static int bdrv_has_snapshot(BlockDriverState
*bs
)
1439 !bdrv_is_removable(bs
) &&
1440 !bdrv_is_read_only(bs
));
1443 static BlockDriverState
*get_bs_snapshots(void)
1445 BlockDriverState
*bs
;
1449 return bs_snapshots
;
1450 TAILQ_FOREACH(dinfo
, &drives
, next
) {
1452 if (bdrv_can_snapshot(bs
))
1461 static int bdrv_snapshot_find(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
,
1464 QEMUSnapshotInfo
*sn_tab
, *sn
;
1468 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1471 for(i
= 0; i
< nb_sns
; i
++) {
1473 if (!strcmp(sn
->id_str
, name
) || !strcmp(sn
->name
, name
)) {
1483 void do_savevm(Monitor
*mon
, const QDict
*qdict
)
1486 BlockDriverState
*bs
, *bs1
;
1487 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
1488 int must_delete
, ret
;
1490 int saved_vm_running
;
1491 uint32_t vm_state_size
;
1497 const char *name
= qdict_get_try_str(qdict
, "name");
1499 bs
= get_bs_snapshots();
1501 monitor_printf(mon
, "No block device can accept snapshots\n");
1505 /* ??? Should this occur after vm_stop? */
1508 saved_vm_running
= vm_running
;
1513 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
1518 memset(sn
, 0, sizeof(*sn
));
1520 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
1521 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
1524 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
1527 /* fill auxiliary fields */
1530 sn
->date_sec
= tb
.time
;
1531 sn
->date_nsec
= tb
.millitm
* 1000000;
1533 gettimeofday(&tv
, NULL
);
1534 sn
->date_sec
= tv
.tv_sec
;
1535 sn
->date_nsec
= tv
.tv_usec
* 1000;
1537 sn
->vm_clock_nsec
= qemu_get_clock(vm_clock
);
1539 /* save the VM state */
1540 f
= qemu_fopen_bdrv(bs
, 1);
1542 monitor_printf(mon
, "Could not open VM state file\n");
1545 ret
= qemu_savevm_state(f
);
1546 vm_state_size
= qemu_ftell(f
);
1549 monitor_printf(mon
, "Error %d while writing VM\n", ret
);
1553 /* create the snapshots */
1555 TAILQ_FOREACH(dinfo
, &drives
, next
) {
1557 if (bdrv_has_snapshot(bs1
)) {
1559 ret
= bdrv_snapshot_delete(bs1
, old_sn
->id_str
);
1562 "Error while deleting snapshot on '%s'\n",
1563 bdrv_get_device_name(bs1
));
1566 /* Write VM state size only to the image that contains the state */
1567 sn
->vm_state_size
= (bs
== bs1
? vm_state_size
: 0);
1568 ret
= bdrv_snapshot_create(bs1
, sn
);
1570 monitor_printf(mon
, "Error while creating snapshot on '%s'\n",
1571 bdrv_get_device_name(bs1
));
1577 if (saved_vm_running
)
1581 int load_vmstate(Monitor
*mon
, const char *name
)
1584 BlockDriverState
*bs
, *bs1
;
1585 QEMUSnapshotInfo sn
;
1589 bs
= get_bs_snapshots();
1591 monitor_printf(mon
, "No block device supports snapshots\n");
1595 /* Flush all IO requests so they don't interfere with the new state. */
1598 TAILQ_FOREACH(dinfo
, &drives
, next
) {
1600 if (bdrv_has_snapshot(bs1
)) {
1601 ret
= bdrv_snapshot_goto(bs1
, name
);
1604 monitor_printf(mon
, "Warning: ");
1608 "Snapshots not supported on device '%s'\n",
1609 bdrv_get_device_name(bs1
));
1612 monitor_printf(mon
, "Could not find snapshot '%s' on "
1614 name
, bdrv_get_device_name(bs1
));
1617 monitor_printf(mon
, "Error %d while activating snapshot on"
1618 " '%s'\n", ret
, bdrv_get_device_name(bs1
));
1621 /* fatal on snapshot block device */
1628 /* Don't even try to load empty VM states */
1629 ret
= bdrv_snapshot_find(bs
, &sn
, name
);
1630 if ((ret
>= 0) && (sn
.vm_state_size
== 0))
1633 /* restore the VM state */
1634 f
= qemu_fopen_bdrv(bs
, 0);
1636 monitor_printf(mon
, "Could not open VM state file\n");
1639 ret
= qemu_loadvm_state(f
);
1642 monitor_printf(mon
, "Error %d while loading VM state\n", ret
);
1648 void do_delvm(Monitor
*mon
, const QDict
*qdict
)
1651 BlockDriverState
*bs
, *bs1
;
1653 const char *name
= qdict_get_str(qdict
, "name");
1655 bs
= get_bs_snapshots();
1657 monitor_printf(mon
, "No block device supports snapshots\n");
1661 TAILQ_FOREACH(dinfo
, &drives
, next
) {
1663 if (bdrv_has_snapshot(bs1
)) {
1664 ret
= bdrv_snapshot_delete(bs1
, name
);
1666 if (ret
== -ENOTSUP
)
1668 "Snapshots not supported on device '%s'\n",
1669 bdrv_get_device_name(bs1
));
1671 monitor_printf(mon
, "Error %d while deleting snapshot on "
1672 "'%s'\n", ret
, bdrv_get_device_name(bs1
));
1678 void do_info_snapshots(Monitor
*mon
)
1681 BlockDriverState
*bs
, *bs1
;
1682 QEMUSnapshotInfo
*sn_tab
, *sn
;
1686 bs
= get_bs_snapshots();
1688 monitor_printf(mon
, "No available block device supports snapshots\n");
1691 monitor_printf(mon
, "Snapshot devices:");
1692 TAILQ_FOREACH(dinfo
, &drives
, next
) {
1694 if (bdrv_has_snapshot(bs1
)) {
1696 monitor_printf(mon
, " %s", bdrv_get_device_name(bs1
));
1699 monitor_printf(mon
, "\n");
1701 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1703 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
1706 monitor_printf(mon
, "Snapshot list (from %s):\n",
1707 bdrv_get_device_name(bs
));
1708 monitor_printf(mon
, "%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), NULL
));
1709 for(i
= 0; i
< nb_sns
; i
++) {
1711 monitor_printf(mon
, "%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), sn
));