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
31 /* Needed early for CONFIG_BSD etc. */
32 #include "config-host.h"
35 #include <sys/times.h>
39 #include <sys/ioctl.h>
40 #include <sys/resource.h>
41 #include <sys/socket.h>
42 #include <netinet/in.h>
44 #include <arpa/inet.h>
47 #include <sys/select.h>
50 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
58 #include <linux/rtc.h>
66 #include <sys/timeb.h>
68 #define getopt_long_only getopt_long
69 #define memalign(align, size) malloc(size)
72 #include "qemu-common.h"
78 #include "qemu-timer.h"
79 #include "qemu-char.h"
80 #include "audio/audio.h"
81 #include "migration.h"
82 #include "qemu_socket.h"
83 #include "qemu-queue.h"
84 #include "qemu-timer.h"
87 #include "qmp-commands.h"
91 #define SELF_ANNOUNCE_ROUNDS 5
94 #define ETH_P_RARP 0x8035
96 #define ARP_HTYPE_ETH 0x0001
97 #define ARP_PTYPE_IP 0x0800
98 #define ARP_OP_REQUEST_REV 0x3
100 static int announce_self_create(uint8_t *buf
,
103 /* Ethernet header. */
104 memset(buf
, 0xff, 6); /* destination MAC addr */
105 memcpy(buf
+ 6, mac_addr
, 6); /* source MAC addr */
106 *(uint16_t *)(buf
+ 12) = htons(ETH_P_RARP
); /* ethertype */
109 *(uint16_t *)(buf
+ 14) = htons(ARP_HTYPE_ETH
); /* hardware addr space */
110 *(uint16_t *)(buf
+ 16) = htons(ARP_PTYPE_IP
); /* protocol addr space */
111 *(buf
+ 18) = 6; /* hardware addr length (ethernet) */
112 *(buf
+ 19) = 4; /* protocol addr length (IPv4) */
113 *(uint16_t *)(buf
+ 20) = htons(ARP_OP_REQUEST_REV
); /* opcode */
114 memcpy(buf
+ 22, mac_addr
, 6); /* source hw addr */
115 memset(buf
+ 28, 0x00, 4); /* source protocol addr */
116 memcpy(buf
+ 32, mac_addr
, 6); /* target hw addr */
117 memset(buf
+ 38, 0x00, 4); /* target protocol addr */
119 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
120 memset(buf
+ 42, 0x00, 18);
122 return 60; /* len (FCS will be added by hardware) */
125 static void qemu_announce_self_iter(NICState
*nic
, void *opaque
)
130 len
= announce_self_create(buf
, nic
->conf
->macaddr
.a
);
132 qemu_send_packet_raw(&nic
->nc
, buf
, len
);
136 static void qemu_announce_self_once(void *opaque
)
138 static int count
= SELF_ANNOUNCE_ROUNDS
;
139 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
141 qemu_foreach_nic(qemu_announce_self_iter
, NULL
);
144 /* delay 50ms, 150ms, 250ms, ... */
145 qemu_mod_timer(timer
, qemu_get_clock_ms(rt_clock
) +
146 50 + (SELF_ANNOUNCE_ROUNDS
- count
- 1) * 100);
148 qemu_del_timer(timer
);
149 qemu_free_timer(timer
);
153 void qemu_announce_self(void)
155 static QEMUTimer
*timer
;
156 timer
= qemu_new_timer_ms(rt_clock
, qemu_announce_self_once
, &timer
);
157 qemu_announce_self_once(&timer
);
160 /***********************************************************/
161 /* savevm/loadvm support */
163 #define IO_BUF_SIZE 32768
166 QEMUFilePutBufferFunc
*put_buffer
;
167 QEMUFileGetBufferFunc
*get_buffer
;
168 QEMUFileCloseFunc
*close
;
169 QEMUFileRateLimit
*rate_limit
;
170 QEMUFileSetRateLimit
*set_rate_limit
;
171 QEMUFileGetRateLimit
*get_rate_limit
;
175 int64_t buf_offset
; /* start of buffer when writing, end of buffer
178 int buf_size
; /* 0 when writing */
179 uint8_t buf
[IO_BUF_SIZE
];
184 typedef struct QEMUFileStdio
190 typedef struct QEMUFileSocket
196 static int socket_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
198 QEMUFileSocket
*s
= opaque
;
202 len
= qemu_recv(s
->fd
, buf
, size
, 0);
203 } while (len
== -1 && socket_error() == EINTR
);
206 len
= -socket_error();
211 static int socket_close(void *opaque
)
213 QEMUFileSocket
*s
= opaque
;
218 static int stdio_put_buffer(void *opaque
, const uint8_t *buf
, int64_t pos
, int size
)
220 QEMUFileStdio
*s
= opaque
;
221 return fwrite(buf
, 1, size
, s
->stdio_file
);
224 static int stdio_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
226 QEMUFileStdio
*s
= opaque
;
227 FILE *fp
= s
->stdio_file
;
232 bytes
= fread(buf
, 1, size
, fp
);
233 } while ((bytes
== 0) && ferror(fp
) && (errno
== EINTR
));
237 static int stdio_pclose(void *opaque
)
239 QEMUFileStdio
*s
= opaque
;
241 ret
= pclose(s
->stdio_file
);
249 static int stdio_fclose(void *opaque
)
251 QEMUFileStdio
*s
= opaque
;
253 if (fclose(s
->stdio_file
) == EOF
) {
260 QEMUFile
*qemu_popen(FILE *stdio_file
, const char *mode
)
264 if (stdio_file
== NULL
|| mode
== NULL
|| (mode
[0] != 'r' && mode
[0] != 'w') || mode
[1] != 0) {
265 fprintf(stderr
, "qemu_popen: Argument validity check failed\n");
269 s
= g_malloc0(sizeof(QEMUFileStdio
));
271 s
->stdio_file
= stdio_file
;
274 s
->file
= qemu_fopen_ops(s
, NULL
, stdio_get_buffer
, stdio_pclose
,
277 s
->file
= qemu_fopen_ops(s
, stdio_put_buffer
, NULL
, stdio_pclose
,
283 QEMUFile
*qemu_popen_cmd(const char *command
, const char *mode
)
287 popen_file
= popen(command
, mode
);
288 if(popen_file
== NULL
) {
292 return qemu_popen(popen_file
, mode
);
295 int qemu_stdio_fd(QEMUFile
*f
)
300 p
= (QEMUFileStdio
*)f
->opaque
;
301 fd
= fileno(p
->stdio_file
);
306 QEMUFile
*qemu_fdopen(int fd
, const char *mode
)
311 (mode
[0] != 'r' && mode
[0] != 'w') ||
312 mode
[1] != 'b' || mode
[2] != 0) {
313 fprintf(stderr
, "qemu_fdopen: Argument validity check failed\n");
317 s
= g_malloc0(sizeof(QEMUFileStdio
));
318 s
->stdio_file
= fdopen(fd
, mode
);
323 s
->file
= qemu_fopen_ops(s
, NULL
, stdio_get_buffer
, stdio_fclose
,
326 s
->file
= qemu_fopen_ops(s
, stdio_put_buffer
, NULL
, stdio_fclose
,
336 QEMUFile
*qemu_fopen_socket(int fd
)
338 QEMUFileSocket
*s
= g_malloc0(sizeof(QEMUFileSocket
));
341 s
->file
= qemu_fopen_ops(s
, NULL
, socket_get_buffer
, socket_close
,
346 static int file_put_buffer(void *opaque
, const uint8_t *buf
,
347 int64_t pos
, int size
)
349 QEMUFileStdio
*s
= opaque
;
350 fseek(s
->stdio_file
, pos
, SEEK_SET
);
351 return fwrite(buf
, 1, size
, s
->stdio_file
);
354 static int file_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
356 QEMUFileStdio
*s
= opaque
;
357 fseek(s
->stdio_file
, pos
, SEEK_SET
);
358 return fread(buf
, 1, size
, s
->stdio_file
);
361 QEMUFile
*qemu_fopen(const char *filename
, const char *mode
)
366 (mode
[0] != 'r' && mode
[0] != 'w') ||
367 mode
[1] != 'b' || mode
[2] != 0) {
368 fprintf(stderr
, "qemu_fopen: Argument validity check failed\n");
372 s
= g_malloc0(sizeof(QEMUFileStdio
));
374 s
->stdio_file
= fopen(filename
, mode
);
379 s
->file
= qemu_fopen_ops(s
, file_put_buffer
, NULL
, stdio_fclose
,
382 s
->file
= qemu_fopen_ops(s
, NULL
, file_get_buffer
, stdio_fclose
,
391 static int block_put_buffer(void *opaque
, const uint8_t *buf
,
392 int64_t pos
, int size
)
394 bdrv_save_vmstate(opaque
, buf
, pos
, size
);
398 static int block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
400 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
403 static int bdrv_fclose(void *opaque
)
405 return bdrv_flush(opaque
);
408 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
411 return qemu_fopen_ops(bs
, block_put_buffer
, NULL
, bdrv_fclose
,
413 return qemu_fopen_ops(bs
, NULL
, block_get_buffer
, bdrv_fclose
, NULL
, NULL
, NULL
);
416 QEMUFile
*qemu_fopen_ops(void *opaque
, QEMUFilePutBufferFunc
*put_buffer
,
417 QEMUFileGetBufferFunc
*get_buffer
,
418 QEMUFileCloseFunc
*close
,
419 QEMUFileRateLimit
*rate_limit
,
420 QEMUFileSetRateLimit
*set_rate_limit
,
421 QEMUFileGetRateLimit
*get_rate_limit
)
425 f
= g_malloc0(sizeof(QEMUFile
));
428 f
->put_buffer
= put_buffer
;
429 f
->get_buffer
= get_buffer
;
431 f
->rate_limit
= rate_limit
;
432 f
->set_rate_limit
= set_rate_limit
;
433 f
->get_rate_limit
= get_rate_limit
;
439 int qemu_file_get_error(QEMUFile
*f
)
441 return f
->last_error
;
444 static void qemu_file_set_error(QEMUFile
*f
, int ret
)
449 /** Flushes QEMUFile buffer
452 static int qemu_fflush(QEMUFile
*f
)
459 if (f
->is_write
&& f
->buf_index
> 0) {
460 ret
= f
->put_buffer(f
->opaque
, f
->buf
, f
->buf_offset
, f
->buf_index
);
462 f
->buf_offset
+= f
->buf_index
;
469 static void qemu_fill_buffer(QEMUFile
*f
)
480 pending
= f
->buf_size
- f
->buf_index
;
482 memmove(f
->buf
, f
->buf
+ f
->buf_index
, pending
);
485 f
->buf_size
= pending
;
487 len
= f
->get_buffer(f
->opaque
, f
->buf
+ pending
, f
->buf_offset
,
488 IO_BUF_SIZE
- pending
);
491 f
->buf_offset
+= len
;
492 } else if (len
== 0) {
493 qemu_file_set_error(f
, -EIO
);
494 } else if (len
!= -EAGAIN
)
495 qemu_file_set_error(f
, len
);
500 * Returns negative error value if any error happened on previous operations or
501 * while closing the file. Returns 0 or positive number on success.
503 * The meaning of return value on success depends on the specific backend
506 int qemu_fclose(QEMUFile
*f
)
509 ret
= qemu_fflush(f
);
512 int ret2
= f
->close(f
->opaque
);
517 /* If any error was spotted before closing, we should report it
518 * instead of the close() return value.
527 int qemu_file_put_notify(QEMUFile
*f
)
529 return f
->put_buffer(f
->opaque
, NULL
, 0, 0);
532 void qemu_put_buffer(QEMUFile
*f
, const uint8_t *buf
, int size
)
540 if (f
->is_write
== 0 && f
->buf_index
> 0) {
542 "Attempted to write to buffer while read buffer is not empty\n");
547 l
= IO_BUF_SIZE
- f
->buf_index
;
550 memcpy(f
->buf
+ f
->buf_index
, buf
, l
);
555 if (f
->buf_index
>= IO_BUF_SIZE
) {
556 int ret
= qemu_fflush(f
);
558 qemu_file_set_error(f
, ret
);
565 void qemu_put_byte(QEMUFile
*f
, int v
)
571 if (f
->is_write
== 0 && f
->buf_index
> 0) {
573 "Attempted to write to buffer while read buffer is not empty\n");
577 f
->buf
[f
->buf_index
++] = v
;
579 if (f
->buf_index
>= IO_BUF_SIZE
) {
580 int ret
= qemu_fflush(f
);
582 qemu_file_set_error(f
, ret
);
587 static void qemu_file_skip(QEMUFile
*f
, int size
)
589 if (f
->buf_index
+ size
<= f
->buf_size
) {
590 f
->buf_index
+= size
;
594 static int qemu_peek_buffer(QEMUFile
*f
, uint8_t *buf
, int size
, size_t offset
)
603 index
= f
->buf_index
+ offset
;
604 pending
= f
->buf_size
- index
;
605 if (pending
< size
) {
607 index
= f
->buf_index
+ offset
;
608 pending
= f
->buf_size
- index
;
614 if (size
> pending
) {
618 memcpy(buf
, f
->buf
+ index
, size
);
622 int qemu_get_buffer(QEMUFile
*f
, uint8_t *buf
, int size
)
627 while (pending
> 0) {
630 res
= qemu_peek_buffer(f
, buf
, pending
, 0);
634 qemu_file_skip(f
, res
);
642 static int qemu_peek_byte(QEMUFile
*f
, int offset
)
644 int index
= f
->buf_index
+ offset
;
650 if (index
>= f
->buf_size
) {
652 index
= f
->buf_index
+ offset
;
653 if (index
>= f
->buf_size
) {
657 return f
->buf
[index
];
660 int qemu_get_byte(QEMUFile
*f
)
664 result
= qemu_peek_byte(f
, 0);
665 qemu_file_skip(f
, 1);
669 static int64_t qemu_ftell(QEMUFile
*f
)
671 return f
->buf_offset
- f
->buf_size
+ f
->buf_index
;
674 int qemu_file_rate_limit(QEMUFile
*f
)
677 return f
->rate_limit(f
->opaque
);
682 int64_t qemu_file_get_rate_limit(QEMUFile
*f
)
684 if (f
->get_rate_limit
)
685 return f
->get_rate_limit(f
->opaque
);
690 int64_t qemu_file_set_rate_limit(QEMUFile
*f
, int64_t new_rate
)
692 /* any failed or completed migration keeps its state to allow probing of
693 * migration data, but has no associated file anymore */
694 if (f
&& f
->set_rate_limit
)
695 return f
->set_rate_limit(f
->opaque
, new_rate
);
700 void qemu_put_be16(QEMUFile
*f
, unsigned int v
)
702 qemu_put_byte(f
, v
>> 8);
706 void qemu_put_be32(QEMUFile
*f
, unsigned int v
)
708 qemu_put_byte(f
, v
>> 24);
709 qemu_put_byte(f
, v
>> 16);
710 qemu_put_byte(f
, v
>> 8);
714 void qemu_put_be64(QEMUFile
*f
, uint64_t v
)
716 qemu_put_be32(f
, v
>> 32);
720 unsigned int qemu_get_be16(QEMUFile
*f
)
723 v
= qemu_get_byte(f
) << 8;
724 v
|= qemu_get_byte(f
);
728 unsigned int qemu_get_be32(QEMUFile
*f
)
731 v
= qemu_get_byte(f
) << 24;
732 v
|= qemu_get_byte(f
) << 16;
733 v
|= qemu_get_byte(f
) << 8;
734 v
|= qemu_get_byte(f
);
738 uint64_t qemu_get_be64(QEMUFile
*f
)
741 v
= (uint64_t)qemu_get_be32(f
) << 32;
742 v
|= qemu_get_be32(f
);
749 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
751 uint64_t expire_time
;
753 expire_time
= qemu_timer_expire_time_ns(ts
);
754 qemu_put_be64(f
, expire_time
);
757 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
759 uint64_t expire_time
;
761 expire_time
= qemu_get_be64(f
);
762 if (expire_time
!= -1) {
763 qemu_mod_timer_ns(ts
, expire_time
);
772 static int get_bool(QEMUFile
*f
, void *pv
, size_t size
)
775 *v
= qemu_get_byte(f
);
779 static void put_bool(QEMUFile
*f
, void *pv
, size_t size
)
782 qemu_put_byte(f
, *v
);
785 const VMStateInfo vmstate_info_bool
= {
793 static int get_int8(QEMUFile
*f
, void *pv
, size_t size
)
800 static void put_int8(QEMUFile
*f
, void *pv
, size_t size
)
806 const VMStateInfo vmstate_info_int8
= {
814 static int get_int16(QEMUFile
*f
, void *pv
, size_t size
)
817 qemu_get_sbe16s(f
, v
);
821 static void put_int16(QEMUFile
*f
, void *pv
, size_t size
)
824 qemu_put_sbe16s(f
, v
);
827 const VMStateInfo vmstate_info_int16
= {
835 static int get_int32(QEMUFile
*f
, void *pv
, size_t size
)
838 qemu_get_sbe32s(f
, v
);
842 static void put_int32(QEMUFile
*f
, void *pv
, size_t size
)
845 qemu_put_sbe32s(f
, v
);
848 const VMStateInfo vmstate_info_int32
= {
854 /* 32 bit int. See that the received value is the same than the one
857 static int get_int32_equal(QEMUFile
*f
, void *pv
, size_t size
)
861 qemu_get_sbe32s(f
, &v2
);
868 const VMStateInfo vmstate_info_int32_equal
= {
869 .name
= "int32 equal",
870 .get
= get_int32_equal
,
874 /* 32 bit int. See that the received value is the less or the same
875 than the one in the field */
877 static int get_int32_le(QEMUFile
*f
, void *pv
, size_t size
)
881 qemu_get_sbe32s(f
, &new);
888 const VMStateInfo vmstate_info_int32_le
= {
889 .name
= "int32 equal",
896 static int get_int64(QEMUFile
*f
, void *pv
, size_t size
)
899 qemu_get_sbe64s(f
, v
);
903 static void put_int64(QEMUFile
*f
, void *pv
, size_t size
)
906 qemu_put_sbe64s(f
, v
);
909 const VMStateInfo vmstate_info_int64
= {
915 /* 8 bit unsigned int */
917 static int get_uint8(QEMUFile
*f
, void *pv
, size_t size
)
924 static void put_uint8(QEMUFile
*f
, void *pv
, size_t size
)
930 const VMStateInfo vmstate_info_uint8
= {
936 /* 16 bit unsigned int */
938 static int get_uint16(QEMUFile
*f
, void *pv
, size_t size
)
941 qemu_get_be16s(f
, v
);
945 static void put_uint16(QEMUFile
*f
, void *pv
, size_t size
)
948 qemu_put_be16s(f
, v
);
951 const VMStateInfo vmstate_info_uint16
= {
957 /* 32 bit unsigned int */
959 static int get_uint32(QEMUFile
*f
, void *pv
, size_t size
)
962 qemu_get_be32s(f
, v
);
966 static void put_uint32(QEMUFile
*f
, void *pv
, size_t size
)
969 qemu_put_be32s(f
, v
);
972 const VMStateInfo vmstate_info_uint32
= {
978 /* 32 bit uint. See that the received value is the same than the one
981 static int get_uint32_equal(QEMUFile
*f
, void *pv
, size_t size
)
985 qemu_get_be32s(f
, &v2
);
993 const VMStateInfo vmstate_info_uint32_equal
= {
994 .name
= "uint32 equal",
995 .get
= get_uint32_equal
,
999 /* 64 bit unsigned int */
1001 static int get_uint64(QEMUFile
*f
, void *pv
, size_t size
)
1004 qemu_get_be64s(f
, v
);
1008 static void put_uint64(QEMUFile
*f
, void *pv
, size_t size
)
1011 qemu_put_be64s(f
, v
);
1014 const VMStateInfo vmstate_info_uint64
= {
1020 /* 8 bit int. See that the received value is the same than the one
1023 static int get_uint8_equal(QEMUFile
*f
, void *pv
, size_t size
)
1027 qemu_get_8s(f
, &v2
);
1034 const VMStateInfo vmstate_info_uint8_equal
= {
1035 .name
= "uint8 equal",
1036 .get
= get_uint8_equal
,
1040 /* 16 bit unsigned int int. See that the received value is the same than the one
1043 static int get_uint16_equal(QEMUFile
*f
, void *pv
, size_t size
)
1047 qemu_get_be16s(f
, &v2
);
1054 const VMStateInfo vmstate_info_uint16_equal
= {
1055 .name
= "uint16 equal",
1056 .get
= get_uint16_equal
,
1062 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
)
1065 qemu_get_timer(f
, v
);
1069 static void put_timer(QEMUFile
*f
, void *pv
, size_t size
)
1072 qemu_put_timer(f
, v
);
1075 const VMStateInfo vmstate_info_timer
= {
1081 /* uint8_t buffers */
1083 static int get_buffer(QEMUFile
*f
, void *pv
, size_t size
)
1086 qemu_get_buffer(f
, v
, size
);
1090 static void put_buffer(QEMUFile
*f
, void *pv
, size_t size
)
1093 qemu_put_buffer(f
, v
, size
);
1096 const VMStateInfo vmstate_info_buffer
= {
1102 /* unused buffers: space that was used for some fields that are
1103 not useful anymore */
1105 static int get_unused_buffer(QEMUFile
*f
, void *pv
, size_t size
)
1111 block_len
= MIN(sizeof(buf
), size
);
1113 qemu_get_buffer(f
, buf
, block_len
);
1118 static void put_unused_buffer(QEMUFile
*f
, void *pv
, size_t size
)
1120 static const uint8_t buf
[1024];
1124 block_len
= MIN(sizeof(buf
), size
);
1126 qemu_put_buffer(f
, buf
, block_len
);
1130 const VMStateInfo vmstate_info_unused_buffer
= {
1131 .name
= "unused_buffer",
1132 .get
= get_unused_buffer
,
1133 .put
= put_unused_buffer
,
1136 /* bitmaps (as defined by bitmap.h). Note that size here is the size
1137 * of the bitmap in bits. The on-the-wire format of a bitmap is 64
1138 * bit words with the bits in big endian order. The in-memory format
1139 * is an array of 'unsigned long', which may be either 32 or 64 bits.
1141 /* This is the number of 64 bit words sent over the wire */
1142 #define BITS_TO_U64S(nr) DIV_ROUND_UP(nr, 64)
1143 static int get_bitmap(QEMUFile
*f
, void *pv
, size_t size
)
1145 unsigned long *bmp
= pv
;
1147 for (i
= 0; i
< BITS_TO_U64S(size
); i
++) {
1148 uint64_t w
= qemu_get_be64(f
);
1150 if (sizeof(unsigned long) == 4 && idx
< BITS_TO_LONGS(size
)) {
1151 bmp
[idx
++] = w
>> 32;
1157 static void put_bitmap(QEMUFile
*f
, void *pv
, size_t size
)
1159 unsigned long *bmp
= pv
;
1161 for (i
= 0; i
< BITS_TO_U64S(size
); i
++) {
1162 uint64_t w
= bmp
[idx
++];
1163 if (sizeof(unsigned long) == 4 && idx
< BITS_TO_LONGS(size
)) {
1164 w
|= ((uint64_t)bmp
[idx
++]) << 32;
1166 qemu_put_be64(f
, w
);
1170 const VMStateInfo vmstate_info_bitmap
= {
1176 typedef struct CompatEntry
{
1181 typedef struct SaveStateEntry
{
1182 QTAILQ_ENTRY(SaveStateEntry
) entry
;
1188 SaveVMHandlers
*ops
;
1189 const VMStateDescription
*vmsd
;
1191 CompatEntry
*compat
;
1197 static QTAILQ_HEAD(savevm_handlers
, SaveStateEntry
) savevm_handlers
=
1198 QTAILQ_HEAD_INITIALIZER(savevm_handlers
);
1199 static int global_section_id
;
1201 static int calculate_new_instance_id(const char *idstr
)
1204 int instance_id
= 0;
1206 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1207 if (strcmp(idstr
, se
->idstr
) == 0
1208 && instance_id
<= se
->instance_id
) {
1209 instance_id
= se
->instance_id
+ 1;
1215 static int calculate_compat_instance_id(const char *idstr
)
1218 int instance_id
= 0;
1220 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1224 if (strcmp(idstr
, se
->compat
->idstr
) == 0
1225 && instance_id
<= se
->compat
->instance_id
) {
1226 instance_id
= se
->compat
->instance_id
+ 1;
1232 /* TODO: Individual devices generally have very little idea about the rest
1233 of the system, so instance_id should be removed/replaced.
1234 Meanwhile pass -1 as instance_id if you do not already have a clearly
1235 distinguishing id for all instances of your device class. */
1236 int register_savevm_live(DeviceState
*dev
,
1240 SaveVMHandlers
*ops
,
1245 se
= g_malloc0(sizeof(SaveStateEntry
));
1246 se
->version_id
= version_id
;
1247 se
->section_id
= global_section_id
++;
1249 se
->opaque
= opaque
;
1252 /* if this is a live_savem then set is_ram */
1253 if (ops
->save_live_setup
!= NULL
) {
1258 char *id
= qdev_get_dev_path(dev
);
1260 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
1261 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
1264 se
->compat
= g_malloc0(sizeof(CompatEntry
));
1265 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), idstr
);
1266 se
->compat
->instance_id
= instance_id
== -1 ?
1267 calculate_compat_instance_id(idstr
) : instance_id
;
1271 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
1273 if (instance_id
== -1) {
1274 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
1276 se
->instance_id
= instance_id
;
1278 assert(!se
->compat
|| se
->instance_id
== 0);
1279 /* add at the end of list */
1280 QTAILQ_INSERT_TAIL(&savevm_handlers
, se
, entry
);
1284 int register_savevm(DeviceState
*dev
,
1288 SaveStateHandler
*save_state
,
1289 LoadStateHandler
*load_state
,
1292 SaveVMHandlers
*ops
= g_malloc0(sizeof(SaveVMHandlers
));
1293 ops
->save_state
= save_state
;
1294 ops
->load_state
= load_state
;
1295 return register_savevm_live(dev
, idstr
, instance_id
, version_id
,
1299 void unregister_savevm(DeviceState
*dev
, const char *idstr
, void *opaque
)
1301 SaveStateEntry
*se
, *new_se
;
1305 char *path
= qdev_get_dev_path(dev
);
1307 pstrcpy(id
, sizeof(id
), path
);
1308 pstrcat(id
, sizeof(id
), "/");
1312 pstrcat(id
, sizeof(id
), idstr
);
1314 QTAILQ_FOREACH_SAFE(se
, &savevm_handlers
, entry
, new_se
) {
1315 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
1316 QTAILQ_REMOVE(&savevm_handlers
, se
, entry
);
1326 int vmstate_register_with_alias_id(DeviceState
*dev
, int instance_id
,
1327 const VMStateDescription
*vmsd
,
1328 void *opaque
, int alias_id
,
1329 int required_for_version
)
1333 /* If this triggers, alias support can be dropped for the vmsd. */
1334 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
1336 se
= g_malloc0(sizeof(SaveStateEntry
));
1337 se
->version_id
= vmsd
->version_id
;
1338 se
->section_id
= global_section_id
++;
1339 se
->opaque
= opaque
;
1341 se
->alias_id
= alias_id
;
1342 se
->no_migrate
= vmsd
->unmigratable
;
1345 char *id
= qdev_get_dev_path(dev
);
1347 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
1348 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
1351 se
->compat
= g_malloc0(sizeof(CompatEntry
));
1352 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
1353 se
->compat
->instance_id
= instance_id
== -1 ?
1354 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
1358 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
1360 if (instance_id
== -1) {
1361 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
1363 se
->instance_id
= instance_id
;
1365 assert(!se
->compat
|| se
->instance_id
== 0);
1366 /* add at the end of list */
1367 QTAILQ_INSERT_TAIL(&savevm_handlers
, se
, entry
);
1371 int vmstate_register(DeviceState
*dev
, int instance_id
,
1372 const VMStateDescription
*vmsd
, void *opaque
)
1374 return vmstate_register_with_alias_id(dev
, instance_id
, vmsd
,
1378 void vmstate_unregister(DeviceState
*dev
, const VMStateDescription
*vmsd
,
1381 SaveStateEntry
*se
, *new_se
;
1383 QTAILQ_FOREACH_SAFE(se
, &savevm_handlers
, entry
, new_se
) {
1384 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
1385 QTAILQ_REMOVE(&savevm_handlers
, se
, entry
);
1394 static void vmstate_subsection_save(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1396 static int vmstate_subsection_load(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1399 int vmstate_load_state(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1400 void *opaque
, int version_id
)
1402 VMStateField
*field
= vmsd
->fields
;
1405 if (version_id
> vmsd
->version_id
) {
1408 if (version_id
< vmsd
->minimum_version_id_old
) {
1411 if (version_id
< vmsd
->minimum_version_id
) {
1412 return vmsd
->load_state_old(f
, opaque
, version_id
);
1414 if (vmsd
->pre_load
) {
1415 int ret
= vmsd
->pre_load(opaque
);
1419 while(field
->name
) {
1420 if ((field
->field_exists
&&
1421 field
->field_exists(opaque
, version_id
)) ||
1422 (!field
->field_exists
&&
1423 field
->version_id
<= version_id
)) {
1424 void *base_addr
= opaque
+ field
->offset
;
1426 int size
= field
->size
;
1428 if (field
->flags
& VMS_VBUFFER
) {
1429 size
= *(int32_t *)(opaque
+field
->size_offset
);
1430 if (field
->flags
& VMS_MULTIPLY
) {
1431 size
*= field
->size
;
1434 if (field
->flags
& VMS_ARRAY
) {
1435 n_elems
= field
->num
;
1436 } else if (field
->flags
& VMS_VARRAY_INT32
) {
1437 n_elems
= *(int32_t *)(opaque
+field
->num_offset
);
1438 } else if (field
->flags
& VMS_VARRAY_UINT32
) {
1439 n_elems
= *(uint32_t *)(opaque
+field
->num_offset
);
1440 } else if (field
->flags
& VMS_VARRAY_UINT16
) {
1441 n_elems
= *(uint16_t *)(opaque
+field
->num_offset
);
1442 } else if (field
->flags
& VMS_VARRAY_UINT8
) {
1443 n_elems
= *(uint8_t *)(opaque
+field
->num_offset
);
1445 if (field
->flags
& VMS_POINTER
) {
1446 base_addr
= *(void **)base_addr
+ field
->start
;
1448 for (i
= 0; i
< n_elems
; i
++) {
1449 void *addr
= base_addr
+ size
* i
;
1451 if (field
->flags
& VMS_ARRAY_OF_POINTER
) {
1452 addr
= *(void **)addr
;
1454 if (field
->flags
& VMS_STRUCT
) {
1455 ret
= vmstate_load_state(f
, field
->vmsd
, addr
, field
->vmsd
->version_id
);
1457 ret
= field
->info
->get(f
, addr
, size
);
1467 ret
= vmstate_subsection_load(f
, vmsd
, opaque
);
1471 if (vmsd
->post_load
) {
1472 return vmsd
->post_load(opaque
, version_id
);
1477 void vmstate_save_state(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1480 VMStateField
*field
= vmsd
->fields
;
1482 if (vmsd
->pre_save
) {
1483 vmsd
->pre_save(opaque
);
1485 while(field
->name
) {
1486 if (!field
->field_exists
||
1487 field
->field_exists(opaque
, vmsd
->version_id
)) {
1488 void *base_addr
= opaque
+ field
->offset
;
1490 int size
= field
->size
;
1492 if (field
->flags
& VMS_VBUFFER
) {
1493 size
= *(int32_t *)(opaque
+field
->size_offset
);
1494 if (field
->flags
& VMS_MULTIPLY
) {
1495 size
*= field
->size
;
1498 if (field
->flags
& VMS_ARRAY
) {
1499 n_elems
= field
->num
;
1500 } else if (field
->flags
& VMS_VARRAY_INT32
) {
1501 n_elems
= *(int32_t *)(opaque
+field
->num_offset
);
1502 } else if (field
->flags
& VMS_VARRAY_UINT32
) {
1503 n_elems
= *(uint32_t *)(opaque
+field
->num_offset
);
1504 } else if (field
->flags
& VMS_VARRAY_UINT16
) {
1505 n_elems
= *(uint16_t *)(opaque
+field
->num_offset
);
1506 } else if (field
->flags
& VMS_VARRAY_UINT8
) {
1507 n_elems
= *(uint8_t *)(opaque
+field
->num_offset
);
1509 if (field
->flags
& VMS_POINTER
) {
1510 base_addr
= *(void **)base_addr
+ field
->start
;
1512 for (i
= 0; i
< n_elems
; i
++) {
1513 void *addr
= base_addr
+ size
* i
;
1515 if (field
->flags
& VMS_ARRAY_OF_POINTER
) {
1516 addr
= *(void **)addr
;
1518 if (field
->flags
& VMS_STRUCT
) {
1519 vmstate_save_state(f
, field
->vmsd
, addr
);
1521 field
->info
->put(f
, addr
, size
);
1527 vmstate_subsection_save(f
, vmsd
, opaque
);
1530 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
, int version_id
)
1532 if (!se
->vmsd
) { /* Old style */
1533 return se
->ops
->load_state(f
, se
->opaque
, version_id
);
1535 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, version_id
);
1538 static void vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
)
1540 if (!se
->vmsd
) { /* Old style */
1541 se
->ops
->save_state(f
, se
->opaque
);
1544 vmstate_save_state(f
,se
->vmsd
, se
->opaque
);
1547 #define QEMU_VM_FILE_MAGIC 0x5145564d
1548 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1549 #define QEMU_VM_FILE_VERSION 0x00000003
1551 #define QEMU_VM_EOF 0x00
1552 #define QEMU_VM_SECTION_START 0x01
1553 #define QEMU_VM_SECTION_PART 0x02
1554 #define QEMU_VM_SECTION_END 0x03
1555 #define QEMU_VM_SECTION_FULL 0x04
1556 #define QEMU_VM_SUBSECTION 0x05
1558 bool qemu_savevm_state_blocked(Error
**errp
)
1562 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1563 if (se
->no_migrate
) {
1564 error_set(errp
, QERR_MIGRATION_NOT_SUPPORTED
, se
->idstr
);
1571 int qemu_savevm_state_begin(QEMUFile
*f
,
1572 const MigrationParams
*params
)
1577 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1578 if (!se
->ops
|| !se
->ops
->set_params
) {
1581 se
->ops
->set_params(params
, se
->opaque
);
1584 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1585 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1587 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1590 if (!se
->ops
|| !se
->ops
->save_live_setup
) {
1593 if (se
->ops
&& se
->ops
->is_active
) {
1594 if (!se
->ops
->is_active(se
->opaque
)) {
1599 qemu_put_byte(f
, QEMU_VM_SECTION_START
);
1600 qemu_put_be32(f
, se
->section_id
);
1603 len
= strlen(se
->idstr
);
1604 qemu_put_byte(f
, len
);
1605 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
1607 qemu_put_be32(f
, se
->instance_id
);
1608 qemu_put_be32(f
, se
->version_id
);
1610 ret
= se
->ops
->save_live_setup(f
, se
->opaque
);
1612 qemu_savevm_state_cancel(f
);
1616 ret
= qemu_file_get_error(f
);
1618 qemu_savevm_state_cancel(f
);
1626 * this function has three return values:
1627 * negative: there was one error, and we have -errno.
1628 * 0 : We haven't finished, caller have to go again
1629 * 1 : We have finished, we can go to complete phase
1631 int qemu_savevm_state_iterate(QEMUFile
*f
)
1636 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1637 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
1640 if (se
->ops
&& se
->ops
->is_active
) {
1641 if (!se
->ops
->is_active(se
->opaque
)) {
1645 if (qemu_file_rate_limit(f
)) {
1648 trace_savevm_section_start();
1650 qemu_put_byte(f
, QEMU_VM_SECTION_PART
);
1651 qemu_put_be32(f
, se
->section_id
);
1653 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
1654 trace_savevm_section_end(se
->section_id
);
1657 /* Do not proceed to the next vmstate before this one reported
1658 completion of the current stage. This serializes the migration
1659 and reduces the probability that a faster changing state is
1660 synchronized over and over again. */
1667 ret
= qemu_file_get_error(f
);
1669 qemu_savevm_state_cancel(f
);
1674 int qemu_savevm_state_complete(QEMUFile
*f
)
1679 cpu_synchronize_all_states();
1681 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1682 if (!se
->ops
|| !se
->ops
->save_live_complete
) {
1685 if (se
->ops
&& se
->ops
->is_active
) {
1686 if (!se
->ops
->is_active(se
->opaque
)) {
1690 trace_savevm_section_start();
1692 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1693 qemu_put_be32(f
, se
->section_id
);
1695 ret
= se
->ops
->save_live_complete(f
, se
->opaque
);
1696 trace_savevm_section_end(se
->section_id
);
1702 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1705 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1708 trace_savevm_section_start();
1710 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
1711 qemu_put_be32(f
, se
->section_id
);
1714 len
= strlen(se
->idstr
);
1715 qemu_put_byte(f
, len
);
1716 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
1718 qemu_put_be32(f
, se
->instance_id
);
1719 qemu_put_be32(f
, se
->version_id
);
1721 vmstate_save(f
, se
);
1722 trace_savevm_section_end(se
->section_id
);
1725 qemu_put_byte(f
, QEMU_VM_EOF
);
1727 return qemu_file_get_error(f
);
1730 void qemu_savevm_state_cancel(QEMUFile
*f
)
1734 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1735 if (se
->ops
&& se
->ops
->cancel
) {
1736 se
->ops
->cancel(se
->opaque
);
1741 static int qemu_savevm_state(QEMUFile
*f
)
1744 MigrationParams params
= {
1749 if (qemu_savevm_state_blocked(NULL
)) {
1754 ret
= qemu_savevm_state_begin(f
, ¶ms
);
1759 ret
= qemu_savevm_state_iterate(f
);
1764 ret
= qemu_savevm_state_complete(f
);
1768 ret
= qemu_file_get_error(f
);
1774 static int qemu_save_device_state(QEMUFile
*f
)
1778 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1779 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1781 cpu_synchronize_all_states();
1783 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1789 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1794 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
1795 qemu_put_be32(f
, se
->section_id
);
1798 len
= strlen(se
->idstr
);
1799 qemu_put_byte(f
, len
);
1800 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
1802 qemu_put_be32(f
, se
->instance_id
);
1803 qemu_put_be32(f
, se
->version_id
);
1805 vmstate_save(f
, se
);
1808 qemu_put_byte(f
, QEMU_VM_EOF
);
1810 return qemu_file_get_error(f
);
1813 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
1817 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1818 if (!strcmp(se
->idstr
, idstr
) &&
1819 (instance_id
== se
->instance_id
||
1820 instance_id
== se
->alias_id
))
1822 /* Migrating from an older version? */
1823 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
1824 if (!strcmp(se
->compat
->idstr
, idstr
) &&
1825 (instance_id
== se
->compat
->instance_id
||
1826 instance_id
== se
->alias_id
))
1833 static const VMStateDescription
*vmstate_get_subsection(const VMStateSubsection
*sub
, char *idstr
)
1835 while(sub
&& sub
->needed
) {
1836 if (strcmp(idstr
, sub
->vmsd
->name
) == 0) {
1844 static int vmstate_subsection_load(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1847 while (qemu_peek_byte(f
, 0) == QEMU_VM_SUBSECTION
) {
1850 uint8_t version_id
, len
, size
;
1851 const VMStateDescription
*sub_vmsd
;
1853 len
= qemu_peek_byte(f
, 1);
1854 if (len
< strlen(vmsd
->name
) + 1) {
1855 /* subsection name has be be "section_name/a" */
1858 size
= qemu_peek_buffer(f
, (uint8_t *)idstr
, len
, 2);
1864 if (strncmp(vmsd
->name
, idstr
, strlen(vmsd
->name
)) != 0) {
1865 /* it don't have a valid subsection name */
1868 sub_vmsd
= vmstate_get_subsection(vmsd
->subsections
, idstr
);
1869 if (sub_vmsd
== NULL
) {
1872 qemu_file_skip(f
, 1); /* subsection */
1873 qemu_file_skip(f
, 1); /* len */
1874 qemu_file_skip(f
, len
); /* idstr */
1875 version_id
= qemu_get_be32(f
);
1877 ret
= vmstate_load_state(f
, sub_vmsd
, opaque
, version_id
);
1885 static void vmstate_subsection_save(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1888 const VMStateSubsection
*sub
= vmsd
->subsections
;
1890 while (sub
&& sub
->needed
) {
1891 if (sub
->needed(opaque
)) {
1892 const VMStateDescription
*vmsd
= sub
->vmsd
;
1895 qemu_put_byte(f
, QEMU_VM_SUBSECTION
);
1896 len
= strlen(vmsd
->name
);
1897 qemu_put_byte(f
, len
);
1898 qemu_put_buffer(f
, (uint8_t *)vmsd
->name
, len
);
1899 qemu_put_be32(f
, vmsd
->version_id
);
1900 vmstate_save_state(f
, vmsd
, opaque
);
1906 typedef struct LoadStateEntry
{
1907 QLIST_ENTRY(LoadStateEntry
) entry
;
1913 int qemu_loadvm_state(QEMUFile
*f
)
1915 QLIST_HEAD(, LoadStateEntry
) loadvm_handlers
=
1916 QLIST_HEAD_INITIALIZER(loadvm_handlers
);
1917 LoadStateEntry
*le
, *new_le
;
1918 uint8_t section_type
;
1922 if (qemu_savevm_state_blocked(NULL
)) {
1926 v
= qemu_get_be32(f
);
1927 if (v
!= QEMU_VM_FILE_MAGIC
)
1930 v
= qemu_get_be32(f
);
1931 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
1932 fprintf(stderr
, "SaveVM v2 format is obsolete and don't work anymore\n");
1935 if (v
!= QEMU_VM_FILE_VERSION
)
1938 while ((section_type
= qemu_get_byte(f
)) != QEMU_VM_EOF
) {
1939 uint32_t instance_id
, version_id
, section_id
;
1944 switch (section_type
) {
1945 case QEMU_VM_SECTION_START
:
1946 case QEMU_VM_SECTION_FULL
:
1947 /* Read section start */
1948 section_id
= qemu_get_be32(f
);
1949 len
= qemu_get_byte(f
);
1950 qemu_get_buffer(f
, (uint8_t *)idstr
, len
);
1952 instance_id
= qemu_get_be32(f
);
1953 version_id
= qemu_get_be32(f
);
1955 /* Find savevm section */
1956 se
= find_se(idstr
, instance_id
);
1958 fprintf(stderr
, "Unknown savevm section or instance '%s' %d\n", idstr
, instance_id
);
1963 /* Validate version */
1964 if (version_id
> se
->version_id
) {
1965 fprintf(stderr
, "savevm: unsupported version %d for '%s' v%d\n",
1966 version_id
, idstr
, se
->version_id
);
1972 le
= g_malloc0(sizeof(*le
));
1975 le
->section_id
= section_id
;
1976 le
->version_id
= version_id
;
1977 QLIST_INSERT_HEAD(&loadvm_handlers
, le
, entry
);
1979 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
1981 fprintf(stderr
, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1982 instance_id
, idstr
);
1986 case QEMU_VM_SECTION_PART
:
1987 case QEMU_VM_SECTION_END
:
1988 section_id
= qemu_get_be32(f
);
1990 QLIST_FOREACH(le
, &loadvm_handlers
, entry
) {
1991 if (le
->section_id
== section_id
) {
1996 fprintf(stderr
, "Unknown savevm section %d\n", section_id
);
2001 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
2003 fprintf(stderr
, "qemu: warning: error while loading state section id %d\n",
2009 fprintf(stderr
, "Unknown savevm section type %d\n", section_type
);
2015 cpu_synchronize_all_post_init();
2020 QLIST_FOREACH_SAFE(le
, &loadvm_handlers
, entry
, new_le
) {
2021 QLIST_REMOVE(le
, entry
);
2026 ret
= qemu_file_get_error(f
);
2032 static int bdrv_snapshot_find(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
,
2035 QEMUSnapshotInfo
*sn_tab
, *sn
;
2039 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
2042 for(i
= 0; i
< nb_sns
; i
++) {
2044 if (!strcmp(sn
->id_str
, name
) || !strcmp(sn
->name
, name
)) {
2055 * Deletes snapshots of a given name in all opened images.
2057 static int del_existing_snapshots(Monitor
*mon
, const char *name
)
2059 BlockDriverState
*bs
;
2060 QEMUSnapshotInfo sn1
, *snapshot
= &sn1
;
2064 while ((bs
= bdrv_next(bs
))) {
2065 if (bdrv_can_snapshot(bs
) &&
2066 bdrv_snapshot_find(bs
, snapshot
, name
) >= 0)
2068 ret
= bdrv_snapshot_delete(bs
, name
);
2071 "Error while deleting snapshot on '%s'\n",
2072 bdrv_get_device_name(bs
));
2081 void do_savevm(Monitor
*mon
, const QDict
*qdict
)
2083 BlockDriverState
*bs
, *bs1
;
2084 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
2087 int saved_vm_running
;
2088 uint64_t vm_state_size
;
2096 const char *name
= qdict_get_try_str(qdict
, "name");
2098 /* Verify if there is a device that doesn't support snapshots and is writable */
2100 while ((bs
= bdrv_next(bs
))) {
2102 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
2106 if (!bdrv_can_snapshot(bs
)) {
2107 monitor_printf(mon
, "Device '%s' is writable but does not support snapshots.\n",
2108 bdrv_get_device_name(bs
));
2113 bs
= bdrv_snapshots();
2115 monitor_printf(mon
, "No block device can accept snapshots\n");
2119 saved_vm_running
= runstate_is_running();
2120 vm_stop(RUN_STATE_SAVE_VM
);
2122 memset(sn
, 0, sizeof(*sn
));
2124 /* fill auxiliary fields */
2127 sn
->date_sec
= tb
.time
;
2128 sn
->date_nsec
= tb
.millitm
* 1000000;
2130 gettimeofday(&tv
, NULL
);
2131 sn
->date_sec
= tv
.tv_sec
;
2132 sn
->date_nsec
= tv
.tv_usec
* 1000;
2134 sn
->vm_clock_nsec
= qemu_get_clock_ns(vm_clock
);
2137 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
2139 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
2140 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
2142 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
2147 ptm
= localtime(&t
);
2148 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", ptm
);
2150 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2151 localtime_r((const time_t *)&tv
.tv_sec
, &tm
);
2152 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", &tm
);
2156 /* Delete old snapshots of the same name */
2157 if (name
&& del_existing_snapshots(mon
, name
) < 0) {
2161 /* save the VM state */
2162 f
= qemu_fopen_bdrv(bs
, 1);
2164 monitor_printf(mon
, "Could not open VM state file\n");
2167 ret
= qemu_savevm_state(f
);
2168 vm_state_size
= qemu_ftell(f
);
2171 monitor_printf(mon
, "Error %d while writing VM\n", ret
);
2175 /* create the snapshots */
2178 while ((bs1
= bdrv_next(bs1
))) {
2179 if (bdrv_can_snapshot(bs1
)) {
2180 /* Write VM state size only to the image that contains the state */
2181 sn
->vm_state_size
= (bs
== bs1
? vm_state_size
: 0);
2182 ret
= bdrv_snapshot_create(bs1
, sn
);
2184 monitor_printf(mon
, "Error while creating snapshot on '%s'\n",
2185 bdrv_get_device_name(bs1
));
2191 if (saved_vm_running
)
2195 void qmp_xen_save_devices_state(const char *filename
, Error
**errp
)
2198 int saved_vm_running
;
2201 saved_vm_running
= runstate_is_running();
2202 vm_stop(RUN_STATE_SAVE_VM
);
2204 f
= qemu_fopen(filename
, "wb");
2206 error_set(errp
, QERR_OPEN_FILE_FAILED
, filename
);
2209 ret
= qemu_save_device_state(f
);
2212 error_set(errp
, QERR_IO_ERROR
);
2216 if (saved_vm_running
)
2220 int load_vmstate(const char *name
)
2222 BlockDriverState
*bs
, *bs_vm_state
;
2223 QEMUSnapshotInfo sn
;
2227 bs_vm_state
= bdrv_snapshots();
2229 error_report("No block device supports snapshots");
2233 /* Don't even try to load empty VM states */
2234 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
2237 } else if (sn
.vm_state_size
== 0) {
2238 error_report("This is a disk-only snapshot. Revert to it offline "
2243 /* Verify if there is any device that doesn't support snapshots and is
2244 writable and check if the requested snapshot is available too. */
2246 while ((bs
= bdrv_next(bs
))) {
2248 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
2252 if (!bdrv_can_snapshot(bs
)) {
2253 error_report("Device '%s' is writable but does not support snapshots.",
2254 bdrv_get_device_name(bs
));
2258 ret
= bdrv_snapshot_find(bs
, &sn
, name
);
2260 error_report("Device '%s' does not have the requested snapshot '%s'",
2261 bdrv_get_device_name(bs
), name
);
2266 /* Flush all IO requests so they don't interfere with the new state. */
2270 while ((bs
= bdrv_next(bs
))) {
2271 if (bdrv_can_snapshot(bs
)) {
2272 ret
= bdrv_snapshot_goto(bs
, name
);
2274 error_report("Error %d while activating snapshot '%s' on '%s'",
2275 ret
, name
, bdrv_get_device_name(bs
));
2281 /* restore the VM state */
2282 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
2284 error_report("Could not open VM state file");
2288 qemu_system_reset(VMRESET_SILENT
);
2289 ret
= qemu_loadvm_state(f
);
2293 error_report("Error %d while loading VM state", ret
);
2300 void do_delvm(Monitor
*mon
, const QDict
*qdict
)
2302 BlockDriverState
*bs
, *bs1
;
2304 const char *name
= qdict_get_str(qdict
, "name");
2306 bs
= bdrv_snapshots();
2308 monitor_printf(mon
, "No block device supports snapshots\n");
2313 while ((bs1
= bdrv_next(bs1
))) {
2314 if (bdrv_can_snapshot(bs1
)) {
2315 ret
= bdrv_snapshot_delete(bs1
, name
);
2317 if (ret
== -ENOTSUP
)
2319 "Snapshots not supported on device '%s'\n",
2320 bdrv_get_device_name(bs1
));
2322 monitor_printf(mon
, "Error %d while deleting snapshot on "
2323 "'%s'\n", ret
, bdrv_get_device_name(bs1
));
2329 void do_info_snapshots(Monitor
*mon
)
2331 BlockDriverState
*bs
, *bs1
;
2332 QEMUSnapshotInfo
*sn_tab
, *sn
, s
, *sn_info
= &s
;
2333 int nb_sns
, i
, ret
, available
;
2335 int *available_snapshots
;
2338 bs
= bdrv_snapshots();
2340 monitor_printf(mon
, "No available block device supports snapshots\n");
2344 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
2346 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
2351 monitor_printf(mon
, "There is no snapshot available.\n");
2355 available_snapshots
= g_malloc0(sizeof(int) * nb_sns
);
2357 for (i
= 0; i
< nb_sns
; i
++) {
2362 while ((bs1
= bdrv_next(bs1
))) {
2363 if (bdrv_can_snapshot(bs1
) && bs1
!= bs
) {
2364 ret
= bdrv_snapshot_find(bs1
, sn_info
, sn
->id_str
);
2373 available_snapshots
[total
] = i
;
2379 monitor_printf(mon
, "%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), NULL
));
2380 for (i
= 0; i
< total
; i
++) {
2381 sn
= &sn_tab
[available_snapshots
[i
]];
2382 monitor_printf(mon
, "%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), sn
));
2385 monitor_printf(mon
, "There is no suitable snapshot available\n");
2389 g_free(available_snapshots
);
2393 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2395 qemu_ram_set_idstr(memory_region_get_ram_addr(mr
) & TARGET_PAGE_MASK
,
2396 memory_region_name(mr
), dev
);
2399 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2401 /* Nothing do to while the implementation is in RAMBlock */
2404 void vmstate_register_ram_global(MemoryRegion
*mr
)
2406 vmstate_register_ram(mr
, NULL
);
2415 nzrun = length byte...
2417 length = uleb128 encoded integer
2419 int xbzrle_encode_buffer(uint8_t *old_buf
, uint8_t *new_buf
, int slen
,
2420 uint8_t *dst
, int dlen
)
2422 uint32_t zrun_len
= 0, nzrun_len
= 0;
2425 uint8_t *nzrun_start
= NULL
;
2427 g_assert(!(((uintptr_t)old_buf
| (uintptr_t)new_buf
| slen
) %
2436 /* not aligned to sizeof(long) */
2437 res
= (slen
- i
) % sizeof(long);
2438 while (res
&& old_buf
[i
] == new_buf
[i
]) {
2444 /* word at a time for speed */
2447 (*(long *)(old_buf
+ i
)) == (*(long *)(new_buf
+ i
))) {
2449 zrun_len
+= sizeof(long);
2452 /* go over the rest */
2453 while (i
< slen
&& old_buf
[i
] == new_buf
[i
]) {
2459 /* buffer unchanged */
2460 if (zrun_len
== slen
) {
2464 /* skip last zero run */
2469 d
+= uleb128_encode_small(dst
+ d
, zrun_len
);
2472 nzrun_start
= new_buf
+ i
;
2478 /* not aligned to sizeof(long) */
2479 res
= (slen
- i
) % sizeof(long);
2480 while (res
&& old_buf
[i
] != new_buf
[i
]) {
2486 /* word at a time for speed, use of 32-bit long okay */
2488 /* truncation to 32-bit long okay */
2489 long mask
= (long)0x0101010101010101ULL
;
2491 xor = *(long *)(old_buf
+ i
) ^ *(long *)(new_buf
+ i
);
2492 if ((xor - mask
) & ~xor & (mask
<< 7)) {
2493 /* found the end of an nzrun within the current long */
2494 while (old_buf
[i
] != new_buf
[i
]) {
2501 nzrun_len
+= sizeof(long);
2506 d
+= uleb128_encode_small(dst
+ d
, nzrun_len
);
2508 if (d
+ nzrun_len
> dlen
) {
2511 memcpy(dst
+ d
, nzrun_start
, nzrun_len
);
2519 int xbzrle_decode_buffer(uint8_t *src
, int slen
, uint8_t *dst
, int dlen
)
2528 if ((slen
- i
) < 2) {
2532 ret
= uleb128_decode_small(src
+ i
, &count
);
2533 if (ret
< 0 || (i
&& !count
)) {
2545 if ((slen
- i
) < 2) {
2549 ret
= uleb128_decode_small(src
+ i
, &count
);
2550 if (ret
< 0 || !count
) {
2556 if (d
+ count
> dlen
|| i
+ count
> slen
) {
2560 memcpy(dst
+ d
, src
+ i
, count
);