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"
90 #define SELF_ANNOUNCE_ROUNDS 5
93 #define ETH_P_RARP 0x8035
95 #define ARP_HTYPE_ETH 0x0001
96 #define ARP_PTYPE_IP 0x0800
97 #define ARP_OP_REQUEST_REV 0x3
99 static int announce_self_create(uint8_t *buf
,
102 /* Ethernet header. */
103 memset(buf
, 0xff, 6); /* destination MAC addr */
104 memcpy(buf
+ 6, mac_addr
, 6); /* source MAC addr */
105 *(uint16_t *)(buf
+ 12) = htons(ETH_P_RARP
); /* ethertype */
108 *(uint16_t *)(buf
+ 14) = htons(ARP_HTYPE_ETH
); /* hardware addr space */
109 *(uint16_t *)(buf
+ 16) = htons(ARP_PTYPE_IP
); /* protocol addr space */
110 *(buf
+ 18) = 6; /* hardware addr length (ethernet) */
111 *(buf
+ 19) = 4; /* protocol addr length (IPv4) */
112 *(uint16_t *)(buf
+ 20) = htons(ARP_OP_REQUEST_REV
); /* opcode */
113 memcpy(buf
+ 22, mac_addr
, 6); /* source hw addr */
114 memset(buf
+ 28, 0x00, 4); /* source protocol addr */
115 memcpy(buf
+ 32, mac_addr
, 6); /* target hw addr */
116 memset(buf
+ 38, 0x00, 4); /* target protocol addr */
118 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
119 memset(buf
+ 42, 0x00, 18);
121 return 60; /* len (FCS will be added by hardware) */
124 static void qemu_announce_self_iter(NICState
*nic
, void *opaque
)
129 len
= announce_self_create(buf
, nic
->conf
->macaddr
.a
);
131 qemu_send_packet_raw(&nic
->nc
, buf
, len
);
135 static void qemu_announce_self_once(void *opaque
)
137 static int count
= SELF_ANNOUNCE_ROUNDS
;
138 QEMUTimer
*timer
= *(QEMUTimer
**)opaque
;
140 qemu_foreach_nic(qemu_announce_self_iter
, NULL
);
143 /* delay 50ms, 150ms, 250ms, ... */
144 qemu_mod_timer(timer
, qemu_get_clock_ms(rt_clock
) +
145 50 + (SELF_ANNOUNCE_ROUNDS
- count
- 1) * 100);
147 qemu_del_timer(timer
);
148 qemu_free_timer(timer
);
152 void qemu_announce_self(void)
154 static QEMUTimer
*timer
;
155 timer
= qemu_new_timer_ms(rt_clock
, qemu_announce_self_once
, &timer
);
156 qemu_announce_self_once(&timer
);
159 /***********************************************************/
160 /* savevm/loadvm support */
162 #define IO_BUF_SIZE 32768
165 QEMUFilePutBufferFunc
*put_buffer
;
166 QEMUFileGetBufferFunc
*get_buffer
;
167 QEMUFileCloseFunc
*close
;
168 QEMUFileRateLimit
*rate_limit
;
169 QEMUFileSetRateLimit
*set_rate_limit
;
170 QEMUFileGetRateLimit
*get_rate_limit
;
174 int64_t buf_offset
; /* start of buffer when writing, end of buffer
177 int buf_size
; /* 0 when writing */
178 uint8_t buf
[IO_BUF_SIZE
];
183 typedef struct QEMUFileStdio
189 typedef struct QEMUFileSocket
195 static int socket_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
197 QEMUFileSocket
*s
= opaque
;
201 len
= qemu_recv(s
->fd
, buf
, size
, 0);
202 } while (len
== -1 && socket_error() == EINTR
);
205 len
= -socket_error();
210 static int socket_close(void *opaque
)
212 QEMUFileSocket
*s
= opaque
;
217 static int stdio_put_buffer(void *opaque
, const uint8_t *buf
, int64_t pos
, int size
)
219 QEMUFileStdio
*s
= opaque
;
220 return fwrite(buf
, 1, size
, s
->stdio_file
);
223 static int stdio_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
225 QEMUFileStdio
*s
= opaque
;
226 FILE *fp
= s
->stdio_file
;
231 bytes
= fread(buf
, 1, size
, fp
);
232 } while ((bytes
== 0) && ferror(fp
) && (errno
== EINTR
));
236 static int stdio_pclose(void *opaque
)
238 QEMUFileStdio
*s
= opaque
;
240 ret
= pclose(s
->stdio_file
);
248 static int stdio_fclose(void *opaque
)
250 QEMUFileStdio
*s
= opaque
;
252 if (fclose(s
->stdio_file
) == EOF
) {
259 QEMUFile
*qemu_popen(FILE *stdio_file
, const char *mode
)
263 if (stdio_file
== NULL
|| mode
== NULL
|| (mode
[0] != 'r' && mode
[0] != 'w') || mode
[1] != 0) {
264 fprintf(stderr
, "qemu_popen: Argument validity check failed\n");
268 s
= g_malloc0(sizeof(QEMUFileStdio
));
270 s
->stdio_file
= stdio_file
;
273 s
->file
= qemu_fopen_ops(s
, NULL
, stdio_get_buffer
, stdio_pclose
,
276 s
->file
= qemu_fopen_ops(s
, stdio_put_buffer
, NULL
, stdio_pclose
,
282 QEMUFile
*qemu_popen_cmd(const char *command
, const char *mode
)
286 popen_file
= popen(command
, mode
);
287 if(popen_file
== NULL
) {
291 return qemu_popen(popen_file
, mode
);
294 int qemu_stdio_fd(QEMUFile
*f
)
299 p
= (QEMUFileStdio
*)f
->opaque
;
300 fd
= fileno(p
->stdio_file
);
305 QEMUFile
*qemu_fdopen(int fd
, const char *mode
)
310 (mode
[0] != 'r' && mode
[0] != 'w') ||
311 mode
[1] != 'b' || mode
[2] != 0) {
312 fprintf(stderr
, "qemu_fdopen: Argument validity check failed\n");
316 s
= g_malloc0(sizeof(QEMUFileStdio
));
317 s
->stdio_file
= fdopen(fd
, mode
);
322 s
->file
= qemu_fopen_ops(s
, NULL
, stdio_get_buffer
, stdio_fclose
,
325 s
->file
= qemu_fopen_ops(s
, stdio_put_buffer
, NULL
, stdio_fclose
,
335 QEMUFile
*qemu_fopen_socket(int fd
)
337 QEMUFileSocket
*s
= g_malloc0(sizeof(QEMUFileSocket
));
340 s
->file
= qemu_fopen_ops(s
, NULL
, socket_get_buffer
, socket_close
,
345 static int file_put_buffer(void *opaque
, const uint8_t *buf
,
346 int64_t pos
, int size
)
348 QEMUFileStdio
*s
= opaque
;
349 fseek(s
->stdio_file
, pos
, SEEK_SET
);
350 return fwrite(buf
, 1, size
, s
->stdio_file
);
353 static int file_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
355 QEMUFileStdio
*s
= opaque
;
356 fseek(s
->stdio_file
, pos
, SEEK_SET
);
357 return fread(buf
, 1, size
, s
->stdio_file
);
360 QEMUFile
*qemu_fopen(const char *filename
, const char *mode
)
365 (mode
[0] != 'r' && mode
[0] != 'w') ||
366 mode
[1] != 'b' || mode
[2] != 0) {
367 fprintf(stderr
, "qemu_fopen: Argument validity check failed\n");
371 s
= g_malloc0(sizeof(QEMUFileStdio
));
373 s
->stdio_file
= fopen(filename
, mode
);
378 s
->file
= qemu_fopen_ops(s
, file_put_buffer
, NULL
, stdio_fclose
,
381 s
->file
= qemu_fopen_ops(s
, NULL
, file_get_buffer
, stdio_fclose
,
390 static int block_put_buffer(void *opaque
, const uint8_t *buf
,
391 int64_t pos
, int size
)
393 bdrv_save_vmstate(opaque
, buf
, pos
, size
);
397 static int block_get_buffer(void *opaque
, uint8_t *buf
, int64_t pos
, int size
)
399 return bdrv_load_vmstate(opaque
, buf
, pos
, size
);
402 static int bdrv_fclose(void *opaque
)
404 return bdrv_flush(opaque
);
407 static QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int is_writable
)
410 return qemu_fopen_ops(bs
, block_put_buffer
, NULL
, bdrv_fclose
,
412 return qemu_fopen_ops(bs
, NULL
, block_get_buffer
, bdrv_fclose
, NULL
, NULL
, NULL
);
415 QEMUFile
*qemu_fopen_ops(void *opaque
, QEMUFilePutBufferFunc
*put_buffer
,
416 QEMUFileGetBufferFunc
*get_buffer
,
417 QEMUFileCloseFunc
*close
,
418 QEMUFileRateLimit
*rate_limit
,
419 QEMUFileSetRateLimit
*set_rate_limit
,
420 QEMUFileGetRateLimit
*get_rate_limit
)
424 f
= g_malloc0(sizeof(QEMUFile
));
427 f
->put_buffer
= put_buffer
;
428 f
->get_buffer
= get_buffer
;
430 f
->rate_limit
= rate_limit
;
431 f
->set_rate_limit
= set_rate_limit
;
432 f
->get_rate_limit
= get_rate_limit
;
438 int qemu_file_get_error(QEMUFile
*f
)
440 return f
->last_error
;
443 static void qemu_file_set_error(QEMUFile
*f
, int ret
)
448 /** Flushes QEMUFile buffer
451 static int qemu_fflush(QEMUFile
*f
)
458 if (f
->is_write
&& f
->buf_index
> 0) {
459 ret
= f
->put_buffer(f
->opaque
, f
->buf
, f
->buf_offset
, f
->buf_index
);
461 f
->buf_offset
+= f
->buf_index
;
468 static void qemu_fill_buffer(QEMUFile
*f
)
479 pending
= f
->buf_size
- f
->buf_index
;
481 memmove(f
->buf
, f
->buf
+ f
->buf_index
, pending
);
484 f
->buf_size
= pending
;
486 len
= f
->get_buffer(f
->opaque
, f
->buf
+ pending
, f
->buf_offset
,
487 IO_BUF_SIZE
- pending
);
490 f
->buf_offset
+= len
;
491 } else if (len
== 0) {
492 qemu_file_set_error(f
, -EIO
);
493 } else if (len
!= -EAGAIN
)
494 qemu_file_set_error(f
, len
);
499 * Returns negative error value if any error happened on previous operations or
500 * while closing the file. Returns 0 or positive number on success.
502 * The meaning of return value on success depends on the specific backend
505 int qemu_fclose(QEMUFile
*f
)
508 ret
= qemu_fflush(f
);
511 int ret2
= f
->close(f
->opaque
);
516 /* If any error was spotted before closing, we should report it
517 * instead of the close() return value.
526 int qemu_file_put_notify(QEMUFile
*f
)
528 return f
->put_buffer(f
->opaque
, NULL
, 0, 0);
531 void qemu_put_buffer(QEMUFile
*f
, const uint8_t *buf
, int size
)
539 if (f
->is_write
== 0 && f
->buf_index
> 0) {
541 "Attempted to write to buffer while read buffer is not empty\n");
546 l
= IO_BUF_SIZE
- f
->buf_index
;
549 memcpy(f
->buf
+ f
->buf_index
, buf
, l
);
554 if (f
->buf_index
>= IO_BUF_SIZE
) {
555 int ret
= qemu_fflush(f
);
557 qemu_file_set_error(f
, ret
);
564 void qemu_put_byte(QEMUFile
*f
, int v
)
570 if (f
->is_write
== 0 && f
->buf_index
> 0) {
572 "Attempted to write to buffer while read buffer is not empty\n");
576 f
->buf
[f
->buf_index
++] = v
;
578 if (f
->buf_index
>= IO_BUF_SIZE
) {
579 int ret
= qemu_fflush(f
);
581 qemu_file_set_error(f
, ret
);
586 static void qemu_file_skip(QEMUFile
*f
, int size
)
588 if (f
->buf_index
+ size
<= f
->buf_size
) {
589 f
->buf_index
+= size
;
593 static int qemu_peek_buffer(QEMUFile
*f
, uint8_t *buf
, int size
, size_t offset
)
602 index
= f
->buf_index
+ offset
;
603 pending
= f
->buf_size
- index
;
604 if (pending
< size
) {
606 index
= f
->buf_index
+ offset
;
607 pending
= f
->buf_size
- index
;
613 if (size
> pending
) {
617 memcpy(buf
, f
->buf
+ index
, size
);
621 int qemu_get_buffer(QEMUFile
*f
, uint8_t *buf
, int size
)
626 while (pending
> 0) {
629 res
= qemu_peek_buffer(f
, buf
, pending
, 0);
633 qemu_file_skip(f
, res
);
641 static int qemu_peek_byte(QEMUFile
*f
, int offset
)
643 int index
= f
->buf_index
+ offset
;
649 if (index
>= f
->buf_size
) {
651 index
= f
->buf_index
+ offset
;
652 if (index
>= f
->buf_size
) {
656 return f
->buf
[index
];
659 int qemu_get_byte(QEMUFile
*f
)
663 result
= qemu_peek_byte(f
, 0);
664 qemu_file_skip(f
, 1);
668 static int64_t qemu_ftell(QEMUFile
*f
)
670 return f
->buf_offset
- f
->buf_size
+ f
->buf_index
;
673 int qemu_file_rate_limit(QEMUFile
*f
)
676 return f
->rate_limit(f
->opaque
);
681 int64_t qemu_file_get_rate_limit(QEMUFile
*f
)
683 if (f
->get_rate_limit
)
684 return f
->get_rate_limit(f
->opaque
);
689 int64_t qemu_file_set_rate_limit(QEMUFile
*f
, int64_t new_rate
)
691 /* any failed or completed migration keeps its state to allow probing of
692 * migration data, but has no associated file anymore */
693 if (f
&& f
->set_rate_limit
)
694 return f
->set_rate_limit(f
->opaque
, new_rate
);
699 void qemu_put_be16(QEMUFile
*f
, unsigned int v
)
701 qemu_put_byte(f
, v
>> 8);
705 void qemu_put_be32(QEMUFile
*f
, unsigned int v
)
707 qemu_put_byte(f
, v
>> 24);
708 qemu_put_byte(f
, v
>> 16);
709 qemu_put_byte(f
, v
>> 8);
713 void qemu_put_be64(QEMUFile
*f
, uint64_t v
)
715 qemu_put_be32(f
, v
>> 32);
719 unsigned int qemu_get_be16(QEMUFile
*f
)
722 v
= qemu_get_byte(f
) << 8;
723 v
|= qemu_get_byte(f
);
727 unsigned int qemu_get_be32(QEMUFile
*f
)
730 v
= qemu_get_byte(f
) << 24;
731 v
|= qemu_get_byte(f
) << 16;
732 v
|= qemu_get_byte(f
) << 8;
733 v
|= qemu_get_byte(f
);
737 uint64_t qemu_get_be64(QEMUFile
*f
)
740 v
= (uint64_t)qemu_get_be32(f
) << 32;
741 v
|= qemu_get_be32(f
);
748 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
750 uint64_t expire_time
;
752 expire_time
= qemu_timer_expire_time_ns(ts
);
753 qemu_put_be64(f
, expire_time
);
756 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
758 uint64_t expire_time
;
760 expire_time
= qemu_get_be64(f
);
761 if (expire_time
!= -1) {
762 qemu_mod_timer_ns(ts
, expire_time
);
771 static int get_bool(QEMUFile
*f
, void *pv
, size_t size
)
774 *v
= qemu_get_byte(f
);
778 static void put_bool(QEMUFile
*f
, void *pv
, size_t size
)
781 qemu_put_byte(f
, *v
);
784 const VMStateInfo vmstate_info_bool
= {
792 static int get_int8(QEMUFile
*f
, void *pv
, size_t size
)
799 static void put_int8(QEMUFile
*f
, void *pv
, size_t size
)
805 const VMStateInfo vmstate_info_int8
= {
813 static int get_int16(QEMUFile
*f
, void *pv
, size_t size
)
816 qemu_get_sbe16s(f
, v
);
820 static void put_int16(QEMUFile
*f
, void *pv
, size_t size
)
823 qemu_put_sbe16s(f
, v
);
826 const VMStateInfo vmstate_info_int16
= {
834 static int get_int32(QEMUFile
*f
, void *pv
, size_t size
)
837 qemu_get_sbe32s(f
, v
);
841 static void put_int32(QEMUFile
*f
, void *pv
, size_t size
)
844 qemu_put_sbe32s(f
, v
);
847 const VMStateInfo vmstate_info_int32
= {
853 /* 32 bit int. See that the received value is the same than the one
856 static int get_int32_equal(QEMUFile
*f
, void *pv
, size_t size
)
860 qemu_get_sbe32s(f
, &v2
);
867 const VMStateInfo vmstate_info_int32_equal
= {
868 .name
= "int32 equal",
869 .get
= get_int32_equal
,
873 /* 32 bit int. See that the received value is the less or the same
874 than the one in the field */
876 static int get_int32_le(QEMUFile
*f
, void *pv
, size_t size
)
880 qemu_get_sbe32s(f
, &new);
887 const VMStateInfo vmstate_info_int32_le
= {
888 .name
= "int32 equal",
895 static int get_int64(QEMUFile
*f
, void *pv
, size_t size
)
898 qemu_get_sbe64s(f
, v
);
902 static void put_int64(QEMUFile
*f
, void *pv
, size_t size
)
905 qemu_put_sbe64s(f
, v
);
908 const VMStateInfo vmstate_info_int64
= {
914 /* 8 bit unsigned int */
916 static int get_uint8(QEMUFile
*f
, void *pv
, size_t size
)
923 static void put_uint8(QEMUFile
*f
, void *pv
, size_t size
)
929 const VMStateInfo vmstate_info_uint8
= {
935 /* 16 bit unsigned int */
937 static int get_uint16(QEMUFile
*f
, void *pv
, size_t size
)
940 qemu_get_be16s(f
, v
);
944 static void put_uint16(QEMUFile
*f
, void *pv
, size_t size
)
947 qemu_put_be16s(f
, v
);
950 const VMStateInfo vmstate_info_uint16
= {
956 /* 32 bit unsigned int */
958 static int get_uint32(QEMUFile
*f
, void *pv
, size_t size
)
961 qemu_get_be32s(f
, v
);
965 static void put_uint32(QEMUFile
*f
, void *pv
, size_t size
)
968 qemu_put_be32s(f
, v
);
971 const VMStateInfo vmstate_info_uint32
= {
977 /* 32 bit uint. See that the received value is the same than the one
980 static int get_uint32_equal(QEMUFile
*f
, void *pv
, size_t size
)
984 qemu_get_be32s(f
, &v2
);
992 const VMStateInfo vmstate_info_uint32_equal
= {
993 .name
= "uint32 equal",
994 .get
= get_uint32_equal
,
998 /* 64 bit unsigned int */
1000 static int get_uint64(QEMUFile
*f
, void *pv
, size_t size
)
1003 qemu_get_be64s(f
, v
);
1007 static void put_uint64(QEMUFile
*f
, void *pv
, size_t size
)
1010 qemu_put_be64s(f
, v
);
1013 const VMStateInfo vmstate_info_uint64
= {
1019 /* 8 bit int. See that the received value is the same than the one
1022 static int get_uint8_equal(QEMUFile
*f
, void *pv
, size_t size
)
1026 qemu_get_8s(f
, &v2
);
1033 const VMStateInfo vmstate_info_uint8_equal
= {
1034 .name
= "uint8 equal",
1035 .get
= get_uint8_equal
,
1039 /* 16 bit unsigned int int. See that the received value is the same than the one
1042 static int get_uint16_equal(QEMUFile
*f
, void *pv
, size_t size
)
1046 qemu_get_be16s(f
, &v2
);
1053 const VMStateInfo vmstate_info_uint16_equal
= {
1054 .name
= "uint16 equal",
1055 .get
= get_uint16_equal
,
1061 static int get_timer(QEMUFile
*f
, void *pv
, size_t size
)
1064 qemu_get_timer(f
, v
);
1068 static void put_timer(QEMUFile
*f
, void *pv
, size_t size
)
1071 qemu_put_timer(f
, v
);
1074 const VMStateInfo vmstate_info_timer
= {
1080 /* uint8_t buffers */
1082 static int get_buffer(QEMUFile
*f
, void *pv
, size_t size
)
1085 qemu_get_buffer(f
, v
, size
);
1089 static void put_buffer(QEMUFile
*f
, void *pv
, size_t size
)
1092 qemu_put_buffer(f
, v
, size
);
1095 const VMStateInfo vmstate_info_buffer
= {
1101 /* unused buffers: space that was used for some fields that are
1102 not useful anymore */
1104 static int get_unused_buffer(QEMUFile
*f
, void *pv
, size_t size
)
1110 block_len
= MIN(sizeof(buf
), size
);
1112 qemu_get_buffer(f
, buf
, block_len
);
1117 static void put_unused_buffer(QEMUFile
*f
, void *pv
, size_t size
)
1119 static const uint8_t buf
[1024];
1123 block_len
= MIN(sizeof(buf
), size
);
1125 qemu_put_buffer(f
, buf
, block_len
);
1129 const VMStateInfo vmstate_info_unused_buffer
= {
1130 .name
= "unused_buffer",
1131 .get
= get_unused_buffer
,
1132 .put
= put_unused_buffer
,
1135 typedef struct CompatEntry
{
1140 typedef struct SaveStateEntry
{
1141 QTAILQ_ENTRY(SaveStateEntry
) entry
;
1147 SaveVMHandlers
*ops
;
1148 const VMStateDescription
*vmsd
;
1150 CompatEntry
*compat
;
1156 static QTAILQ_HEAD(savevm_handlers
, SaveStateEntry
) savevm_handlers
=
1157 QTAILQ_HEAD_INITIALIZER(savevm_handlers
);
1158 static int global_section_id
;
1160 static int calculate_new_instance_id(const char *idstr
)
1163 int instance_id
= 0;
1165 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1166 if (strcmp(idstr
, se
->idstr
) == 0
1167 && instance_id
<= se
->instance_id
) {
1168 instance_id
= se
->instance_id
+ 1;
1174 static int calculate_compat_instance_id(const char *idstr
)
1177 int instance_id
= 0;
1179 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1183 if (strcmp(idstr
, se
->compat
->idstr
) == 0
1184 && instance_id
<= se
->compat
->instance_id
) {
1185 instance_id
= se
->compat
->instance_id
+ 1;
1191 /* TODO: Individual devices generally have very little idea about the rest
1192 of the system, so instance_id should be removed/replaced.
1193 Meanwhile pass -1 as instance_id if you do not already have a clearly
1194 distinguishing id for all instances of your device class. */
1195 int register_savevm_live(DeviceState
*dev
,
1199 SaveVMHandlers
*ops
,
1204 se
= g_malloc0(sizeof(SaveStateEntry
));
1205 se
->version_id
= version_id
;
1206 se
->section_id
= global_section_id
++;
1208 se
->opaque
= opaque
;
1211 /* if this is a live_savem then set is_ram */
1212 if (ops
->save_live_setup
!= NULL
) {
1217 char *id
= qdev_get_dev_path(dev
);
1219 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
1220 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
1223 se
->compat
= g_malloc0(sizeof(CompatEntry
));
1224 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), idstr
);
1225 se
->compat
->instance_id
= instance_id
== -1 ?
1226 calculate_compat_instance_id(idstr
) : instance_id
;
1230 pstrcat(se
->idstr
, sizeof(se
->idstr
), idstr
);
1232 if (instance_id
== -1) {
1233 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
1235 se
->instance_id
= instance_id
;
1237 assert(!se
->compat
|| se
->instance_id
== 0);
1238 /* add at the end of list */
1239 QTAILQ_INSERT_TAIL(&savevm_handlers
, se
, entry
);
1243 int register_savevm(DeviceState
*dev
,
1247 SaveStateHandler
*save_state
,
1248 LoadStateHandler
*load_state
,
1251 SaveVMHandlers
*ops
= g_malloc0(sizeof(SaveVMHandlers
));
1252 ops
->save_state
= save_state
;
1253 ops
->load_state
= load_state
;
1254 return register_savevm_live(dev
, idstr
, instance_id
, version_id
,
1258 void unregister_savevm(DeviceState
*dev
, const char *idstr
, void *opaque
)
1260 SaveStateEntry
*se
, *new_se
;
1264 char *path
= qdev_get_dev_path(dev
);
1266 pstrcpy(id
, sizeof(id
), path
);
1267 pstrcat(id
, sizeof(id
), "/");
1271 pstrcat(id
, sizeof(id
), idstr
);
1273 QTAILQ_FOREACH_SAFE(se
, &savevm_handlers
, entry
, new_se
) {
1274 if (strcmp(se
->idstr
, id
) == 0 && se
->opaque
== opaque
) {
1275 QTAILQ_REMOVE(&savevm_handlers
, se
, entry
);
1285 int vmstate_register_with_alias_id(DeviceState
*dev
, int instance_id
,
1286 const VMStateDescription
*vmsd
,
1287 void *opaque
, int alias_id
,
1288 int required_for_version
)
1292 /* If this triggers, alias support can be dropped for the vmsd. */
1293 assert(alias_id
== -1 || required_for_version
>= vmsd
->minimum_version_id
);
1295 se
= g_malloc0(sizeof(SaveStateEntry
));
1296 se
->version_id
= vmsd
->version_id
;
1297 se
->section_id
= global_section_id
++;
1298 se
->opaque
= opaque
;
1300 se
->alias_id
= alias_id
;
1301 se
->no_migrate
= vmsd
->unmigratable
;
1304 char *id
= qdev_get_dev_path(dev
);
1306 pstrcpy(se
->idstr
, sizeof(se
->idstr
), id
);
1307 pstrcat(se
->idstr
, sizeof(se
->idstr
), "/");
1310 se
->compat
= g_malloc0(sizeof(CompatEntry
));
1311 pstrcpy(se
->compat
->idstr
, sizeof(se
->compat
->idstr
), vmsd
->name
);
1312 se
->compat
->instance_id
= instance_id
== -1 ?
1313 calculate_compat_instance_id(vmsd
->name
) : instance_id
;
1317 pstrcat(se
->idstr
, sizeof(se
->idstr
), vmsd
->name
);
1319 if (instance_id
== -1) {
1320 se
->instance_id
= calculate_new_instance_id(se
->idstr
);
1322 se
->instance_id
= instance_id
;
1324 assert(!se
->compat
|| se
->instance_id
== 0);
1325 /* add at the end of list */
1326 QTAILQ_INSERT_TAIL(&savevm_handlers
, se
, entry
);
1330 int vmstate_register(DeviceState
*dev
, int instance_id
,
1331 const VMStateDescription
*vmsd
, void *opaque
)
1333 return vmstate_register_with_alias_id(dev
, instance_id
, vmsd
,
1337 void vmstate_unregister(DeviceState
*dev
, const VMStateDescription
*vmsd
,
1340 SaveStateEntry
*se
, *new_se
;
1342 QTAILQ_FOREACH_SAFE(se
, &savevm_handlers
, entry
, new_se
) {
1343 if (se
->vmsd
== vmsd
&& se
->opaque
== opaque
) {
1344 QTAILQ_REMOVE(&savevm_handlers
, se
, entry
);
1353 static void vmstate_subsection_save(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1355 static int vmstate_subsection_load(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1358 int vmstate_load_state(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1359 void *opaque
, int version_id
)
1361 VMStateField
*field
= vmsd
->fields
;
1364 if (version_id
> vmsd
->version_id
) {
1367 if (version_id
< vmsd
->minimum_version_id_old
) {
1370 if (version_id
< vmsd
->minimum_version_id
) {
1371 return vmsd
->load_state_old(f
, opaque
, version_id
);
1373 if (vmsd
->pre_load
) {
1374 int ret
= vmsd
->pre_load(opaque
);
1378 while(field
->name
) {
1379 if ((field
->field_exists
&&
1380 field
->field_exists(opaque
, version_id
)) ||
1381 (!field
->field_exists
&&
1382 field
->version_id
<= version_id
)) {
1383 void *base_addr
= opaque
+ field
->offset
;
1385 int size
= field
->size
;
1387 if (field
->flags
& VMS_VBUFFER
) {
1388 size
= *(int32_t *)(opaque
+field
->size_offset
);
1389 if (field
->flags
& VMS_MULTIPLY
) {
1390 size
*= field
->size
;
1393 if (field
->flags
& VMS_ARRAY
) {
1394 n_elems
= field
->num
;
1395 } else if (field
->flags
& VMS_VARRAY_INT32
) {
1396 n_elems
= *(int32_t *)(opaque
+field
->num_offset
);
1397 } else if (field
->flags
& VMS_VARRAY_UINT32
) {
1398 n_elems
= *(uint32_t *)(opaque
+field
->num_offset
);
1399 } else if (field
->flags
& VMS_VARRAY_UINT16
) {
1400 n_elems
= *(uint16_t *)(opaque
+field
->num_offset
);
1401 } else if (field
->flags
& VMS_VARRAY_UINT8
) {
1402 n_elems
= *(uint8_t *)(opaque
+field
->num_offset
);
1404 if (field
->flags
& VMS_POINTER
) {
1405 base_addr
= *(void **)base_addr
+ field
->start
;
1407 for (i
= 0; i
< n_elems
; i
++) {
1408 void *addr
= base_addr
+ size
* i
;
1410 if (field
->flags
& VMS_ARRAY_OF_POINTER
) {
1411 addr
= *(void **)addr
;
1413 if (field
->flags
& VMS_STRUCT
) {
1414 ret
= vmstate_load_state(f
, field
->vmsd
, addr
, field
->vmsd
->version_id
);
1416 ret
= field
->info
->get(f
, addr
, size
);
1426 ret
= vmstate_subsection_load(f
, vmsd
, opaque
);
1430 if (vmsd
->post_load
) {
1431 return vmsd
->post_load(opaque
, version_id
);
1436 void vmstate_save_state(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1439 VMStateField
*field
= vmsd
->fields
;
1441 if (vmsd
->pre_save
) {
1442 vmsd
->pre_save(opaque
);
1444 while(field
->name
) {
1445 if (!field
->field_exists
||
1446 field
->field_exists(opaque
, vmsd
->version_id
)) {
1447 void *base_addr
= opaque
+ field
->offset
;
1449 int size
= field
->size
;
1451 if (field
->flags
& VMS_VBUFFER
) {
1452 size
= *(int32_t *)(opaque
+field
->size_offset
);
1453 if (field
->flags
& VMS_MULTIPLY
) {
1454 size
*= field
->size
;
1457 if (field
->flags
& VMS_ARRAY
) {
1458 n_elems
= field
->num
;
1459 } else if (field
->flags
& VMS_VARRAY_INT32
) {
1460 n_elems
= *(int32_t *)(opaque
+field
->num_offset
);
1461 } else if (field
->flags
& VMS_VARRAY_UINT32
) {
1462 n_elems
= *(uint32_t *)(opaque
+field
->num_offset
);
1463 } else if (field
->flags
& VMS_VARRAY_UINT16
) {
1464 n_elems
= *(uint16_t *)(opaque
+field
->num_offset
);
1465 } else if (field
->flags
& VMS_VARRAY_UINT8
) {
1466 n_elems
= *(uint8_t *)(opaque
+field
->num_offset
);
1468 if (field
->flags
& VMS_POINTER
) {
1469 base_addr
= *(void **)base_addr
+ field
->start
;
1471 for (i
= 0; i
< n_elems
; i
++) {
1472 void *addr
= base_addr
+ size
* i
;
1474 if (field
->flags
& VMS_ARRAY_OF_POINTER
) {
1475 addr
= *(void **)addr
;
1477 if (field
->flags
& VMS_STRUCT
) {
1478 vmstate_save_state(f
, field
->vmsd
, addr
);
1480 field
->info
->put(f
, addr
, size
);
1486 vmstate_subsection_save(f
, vmsd
, opaque
);
1489 static int vmstate_load(QEMUFile
*f
, SaveStateEntry
*se
, int version_id
)
1491 if (!se
->vmsd
) { /* Old style */
1492 return se
->ops
->load_state(f
, se
->opaque
, version_id
);
1494 return vmstate_load_state(f
, se
->vmsd
, se
->opaque
, version_id
);
1497 static void vmstate_save(QEMUFile
*f
, SaveStateEntry
*se
)
1499 if (!se
->vmsd
) { /* Old style */
1500 se
->ops
->save_state(f
, se
->opaque
);
1503 vmstate_save_state(f
,se
->vmsd
, se
->opaque
);
1506 #define QEMU_VM_FILE_MAGIC 0x5145564d
1507 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1508 #define QEMU_VM_FILE_VERSION 0x00000003
1510 #define QEMU_VM_EOF 0x00
1511 #define QEMU_VM_SECTION_START 0x01
1512 #define QEMU_VM_SECTION_PART 0x02
1513 #define QEMU_VM_SECTION_END 0x03
1514 #define QEMU_VM_SECTION_FULL 0x04
1515 #define QEMU_VM_SUBSECTION 0x05
1517 bool qemu_savevm_state_blocked(Error
**errp
)
1521 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1522 if (se
->no_migrate
) {
1523 error_set(errp
, QERR_MIGRATION_NOT_SUPPORTED
, se
->idstr
);
1530 int qemu_savevm_state_begin(QEMUFile
*f
,
1531 const MigrationParams
*params
)
1536 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1537 if (!se
->ops
|| !se
->ops
->set_params
) {
1540 se
->ops
->set_params(params
, se
->opaque
);
1543 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1544 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1546 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1549 if (!se
->ops
|| !se
->ops
->save_live_setup
) {
1552 if (se
->ops
&& se
->ops
->is_active
) {
1553 if (!se
->ops
->is_active(se
->opaque
)) {
1558 qemu_put_byte(f
, QEMU_VM_SECTION_START
);
1559 qemu_put_be32(f
, se
->section_id
);
1562 len
= strlen(se
->idstr
);
1563 qemu_put_byte(f
, len
);
1564 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
1566 qemu_put_be32(f
, se
->instance_id
);
1567 qemu_put_be32(f
, se
->version_id
);
1569 ret
= se
->ops
->save_live_setup(f
, se
->opaque
);
1571 qemu_savevm_state_cancel(f
);
1575 ret
= qemu_file_get_error(f
);
1577 qemu_savevm_state_cancel(f
);
1585 * this function has three return values:
1586 * negative: there was one error, and we have -errno.
1587 * 0 : We haven't finished, caller have to go again
1588 * 1 : We have finished, we can go to complete phase
1590 int qemu_savevm_state_iterate(QEMUFile
*f
)
1595 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1596 if (!se
->ops
|| !se
->ops
->save_live_iterate
) {
1599 if (se
->ops
&& se
->ops
->is_active
) {
1600 if (!se
->ops
->is_active(se
->opaque
)) {
1604 if (qemu_file_rate_limit(f
)) {
1607 trace_savevm_section_start();
1609 qemu_put_byte(f
, QEMU_VM_SECTION_PART
);
1610 qemu_put_be32(f
, se
->section_id
);
1612 ret
= se
->ops
->save_live_iterate(f
, se
->opaque
);
1613 trace_savevm_section_end(se
->section_id
);
1616 /* Do not proceed to the next vmstate before this one reported
1617 completion of the current stage. This serializes the migration
1618 and reduces the probability that a faster changing state is
1619 synchronized over and over again. */
1626 ret
= qemu_file_get_error(f
);
1628 qemu_savevm_state_cancel(f
);
1633 int qemu_savevm_state_complete(QEMUFile
*f
)
1638 cpu_synchronize_all_states();
1640 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1641 if (!se
->ops
|| !se
->ops
->save_live_complete
) {
1644 if (se
->ops
&& se
->ops
->is_active
) {
1645 if (!se
->ops
->is_active(se
->opaque
)) {
1649 trace_savevm_section_start();
1651 qemu_put_byte(f
, QEMU_VM_SECTION_END
);
1652 qemu_put_be32(f
, se
->section_id
);
1654 ret
= se
->ops
->save_live_complete(f
, se
->opaque
);
1655 trace_savevm_section_end(se
->section_id
);
1661 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1664 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1667 trace_savevm_section_start();
1669 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
1670 qemu_put_be32(f
, se
->section_id
);
1673 len
= strlen(se
->idstr
);
1674 qemu_put_byte(f
, len
);
1675 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
1677 qemu_put_be32(f
, se
->instance_id
);
1678 qemu_put_be32(f
, se
->version_id
);
1680 vmstate_save(f
, se
);
1681 trace_savevm_section_end(se
->section_id
);
1684 qemu_put_byte(f
, QEMU_VM_EOF
);
1686 return qemu_file_get_error(f
);
1689 void qemu_savevm_state_cancel(QEMUFile
*f
)
1693 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1694 if (se
->ops
&& se
->ops
->cancel
) {
1695 se
->ops
->cancel(se
->opaque
);
1700 static int qemu_savevm_state(QEMUFile
*f
)
1703 MigrationParams params
= {
1708 if (qemu_savevm_state_blocked(NULL
)) {
1713 ret
= qemu_savevm_state_begin(f
, ¶ms
);
1718 ret
= qemu_savevm_state_iterate(f
);
1723 ret
= qemu_savevm_state_complete(f
);
1727 ret
= qemu_file_get_error(f
);
1733 static int qemu_save_device_state(QEMUFile
*f
)
1737 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
1738 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
1740 cpu_synchronize_all_states();
1742 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1748 if ((!se
->ops
|| !se
->ops
->save_state
) && !se
->vmsd
) {
1753 qemu_put_byte(f
, QEMU_VM_SECTION_FULL
);
1754 qemu_put_be32(f
, se
->section_id
);
1757 len
= strlen(se
->idstr
);
1758 qemu_put_byte(f
, len
);
1759 qemu_put_buffer(f
, (uint8_t *)se
->idstr
, len
);
1761 qemu_put_be32(f
, se
->instance_id
);
1762 qemu_put_be32(f
, se
->version_id
);
1764 vmstate_save(f
, se
);
1767 qemu_put_byte(f
, QEMU_VM_EOF
);
1769 return qemu_file_get_error(f
);
1772 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
1776 QTAILQ_FOREACH(se
, &savevm_handlers
, entry
) {
1777 if (!strcmp(se
->idstr
, idstr
) &&
1778 (instance_id
== se
->instance_id
||
1779 instance_id
== se
->alias_id
))
1781 /* Migrating from an older version? */
1782 if (strstr(se
->idstr
, idstr
) && se
->compat
) {
1783 if (!strcmp(se
->compat
->idstr
, idstr
) &&
1784 (instance_id
== se
->compat
->instance_id
||
1785 instance_id
== se
->alias_id
))
1792 static const VMStateDescription
*vmstate_get_subsection(const VMStateSubsection
*sub
, char *idstr
)
1794 while(sub
&& sub
->needed
) {
1795 if (strcmp(idstr
, sub
->vmsd
->name
) == 0) {
1803 static int vmstate_subsection_load(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1806 while (qemu_peek_byte(f
, 0) == QEMU_VM_SUBSECTION
) {
1809 uint8_t version_id
, len
, size
;
1810 const VMStateDescription
*sub_vmsd
;
1812 len
= qemu_peek_byte(f
, 1);
1813 if (len
< strlen(vmsd
->name
) + 1) {
1814 /* subsection name has be be "section_name/a" */
1817 size
= qemu_peek_buffer(f
, (uint8_t *)idstr
, len
, 2);
1823 if (strncmp(vmsd
->name
, idstr
, strlen(vmsd
->name
)) != 0) {
1824 /* it don't have a valid subsection name */
1827 sub_vmsd
= vmstate_get_subsection(vmsd
->subsections
, idstr
);
1828 if (sub_vmsd
== NULL
) {
1831 qemu_file_skip(f
, 1); /* subsection */
1832 qemu_file_skip(f
, 1); /* len */
1833 qemu_file_skip(f
, len
); /* idstr */
1834 version_id
= qemu_get_be32(f
);
1836 ret
= vmstate_load_state(f
, sub_vmsd
, opaque
, version_id
);
1844 static void vmstate_subsection_save(QEMUFile
*f
, const VMStateDescription
*vmsd
,
1847 const VMStateSubsection
*sub
= vmsd
->subsections
;
1849 while (sub
&& sub
->needed
) {
1850 if (sub
->needed(opaque
)) {
1851 const VMStateDescription
*vmsd
= sub
->vmsd
;
1854 qemu_put_byte(f
, QEMU_VM_SUBSECTION
);
1855 len
= strlen(vmsd
->name
);
1856 qemu_put_byte(f
, len
);
1857 qemu_put_buffer(f
, (uint8_t *)vmsd
->name
, len
);
1858 qemu_put_be32(f
, vmsd
->version_id
);
1859 vmstate_save_state(f
, vmsd
, opaque
);
1865 typedef struct LoadStateEntry
{
1866 QLIST_ENTRY(LoadStateEntry
) entry
;
1872 int qemu_loadvm_state(QEMUFile
*f
)
1874 QLIST_HEAD(, LoadStateEntry
) loadvm_handlers
=
1875 QLIST_HEAD_INITIALIZER(loadvm_handlers
);
1876 LoadStateEntry
*le
, *new_le
;
1877 uint8_t section_type
;
1881 if (qemu_savevm_state_blocked(NULL
)) {
1885 v
= qemu_get_be32(f
);
1886 if (v
!= QEMU_VM_FILE_MAGIC
)
1889 v
= qemu_get_be32(f
);
1890 if (v
== QEMU_VM_FILE_VERSION_COMPAT
) {
1891 fprintf(stderr
, "SaveVM v2 format is obsolete and don't work anymore\n");
1894 if (v
!= QEMU_VM_FILE_VERSION
)
1897 while ((section_type
= qemu_get_byte(f
)) != QEMU_VM_EOF
) {
1898 uint32_t instance_id
, version_id
, section_id
;
1903 switch (section_type
) {
1904 case QEMU_VM_SECTION_START
:
1905 case QEMU_VM_SECTION_FULL
:
1906 /* Read section start */
1907 section_id
= qemu_get_be32(f
);
1908 len
= qemu_get_byte(f
);
1909 qemu_get_buffer(f
, (uint8_t *)idstr
, len
);
1911 instance_id
= qemu_get_be32(f
);
1912 version_id
= qemu_get_be32(f
);
1914 /* Find savevm section */
1915 se
= find_se(idstr
, instance_id
);
1917 fprintf(stderr
, "Unknown savevm section or instance '%s' %d\n", idstr
, instance_id
);
1922 /* Validate version */
1923 if (version_id
> se
->version_id
) {
1924 fprintf(stderr
, "savevm: unsupported version %d for '%s' v%d\n",
1925 version_id
, idstr
, se
->version_id
);
1931 le
= g_malloc0(sizeof(*le
));
1934 le
->section_id
= section_id
;
1935 le
->version_id
= version_id
;
1936 QLIST_INSERT_HEAD(&loadvm_handlers
, le
, entry
);
1938 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
1940 fprintf(stderr
, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1941 instance_id
, idstr
);
1945 case QEMU_VM_SECTION_PART
:
1946 case QEMU_VM_SECTION_END
:
1947 section_id
= qemu_get_be32(f
);
1949 QLIST_FOREACH(le
, &loadvm_handlers
, entry
) {
1950 if (le
->section_id
== section_id
) {
1955 fprintf(stderr
, "Unknown savevm section %d\n", section_id
);
1960 ret
= vmstate_load(f
, le
->se
, le
->version_id
);
1962 fprintf(stderr
, "qemu: warning: error while loading state section id %d\n",
1968 fprintf(stderr
, "Unknown savevm section type %d\n", section_type
);
1974 cpu_synchronize_all_post_init();
1979 QLIST_FOREACH_SAFE(le
, &loadvm_handlers
, entry
, new_le
) {
1980 QLIST_REMOVE(le
, entry
);
1985 ret
= qemu_file_get_error(f
);
1991 static int bdrv_snapshot_find(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
,
1994 QEMUSnapshotInfo
*sn_tab
, *sn
;
1998 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
2001 for(i
= 0; i
< nb_sns
; i
++) {
2003 if (!strcmp(sn
->id_str
, name
) || !strcmp(sn
->name
, name
)) {
2014 * Deletes snapshots of a given name in all opened images.
2016 static int del_existing_snapshots(Monitor
*mon
, const char *name
)
2018 BlockDriverState
*bs
;
2019 QEMUSnapshotInfo sn1
, *snapshot
= &sn1
;
2023 while ((bs
= bdrv_next(bs
))) {
2024 if (bdrv_can_snapshot(bs
) &&
2025 bdrv_snapshot_find(bs
, snapshot
, name
) >= 0)
2027 ret
= bdrv_snapshot_delete(bs
, name
);
2030 "Error while deleting snapshot on '%s'\n",
2031 bdrv_get_device_name(bs
));
2040 void do_savevm(Monitor
*mon
, const QDict
*qdict
)
2042 BlockDriverState
*bs
, *bs1
;
2043 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
2046 int saved_vm_running
;
2047 uint64_t vm_state_size
;
2055 const char *name
= qdict_get_try_str(qdict
, "name");
2057 /* Verify if there is a device that doesn't support snapshots and is writable */
2059 while ((bs
= bdrv_next(bs
))) {
2061 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
2065 if (!bdrv_can_snapshot(bs
)) {
2066 monitor_printf(mon
, "Device '%s' is writable but does not support snapshots.\n",
2067 bdrv_get_device_name(bs
));
2072 bs
= bdrv_snapshots();
2074 monitor_printf(mon
, "No block device can accept snapshots\n");
2078 saved_vm_running
= runstate_is_running();
2079 vm_stop(RUN_STATE_SAVE_VM
);
2081 memset(sn
, 0, sizeof(*sn
));
2083 /* fill auxiliary fields */
2086 sn
->date_sec
= tb
.time
;
2087 sn
->date_nsec
= tb
.millitm
* 1000000;
2089 gettimeofday(&tv
, NULL
);
2090 sn
->date_sec
= tv
.tv_sec
;
2091 sn
->date_nsec
= tv
.tv_usec
* 1000;
2093 sn
->vm_clock_nsec
= qemu_get_clock_ns(vm_clock
);
2096 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
2098 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
2099 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
2101 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
2106 ptm
= localtime(&t
);
2107 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", ptm
);
2109 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2110 localtime_r((const time_t *)&tv
.tv_sec
, &tm
);
2111 strftime(sn
->name
, sizeof(sn
->name
), "vm-%Y%m%d%H%M%S", &tm
);
2115 /* Delete old snapshots of the same name */
2116 if (name
&& del_existing_snapshots(mon
, name
) < 0) {
2120 /* save the VM state */
2121 f
= qemu_fopen_bdrv(bs
, 1);
2123 monitor_printf(mon
, "Could not open VM state file\n");
2126 ret
= qemu_savevm_state(f
);
2127 vm_state_size
= qemu_ftell(f
);
2130 monitor_printf(mon
, "Error %d while writing VM\n", ret
);
2134 /* create the snapshots */
2137 while ((bs1
= bdrv_next(bs1
))) {
2138 if (bdrv_can_snapshot(bs1
)) {
2139 /* Write VM state size only to the image that contains the state */
2140 sn
->vm_state_size
= (bs
== bs1
? vm_state_size
: 0);
2141 ret
= bdrv_snapshot_create(bs1
, sn
);
2143 monitor_printf(mon
, "Error while creating snapshot on '%s'\n",
2144 bdrv_get_device_name(bs1
));
2150 if (saved_vm_running
)
2154 void qmp_xen_save_devices_state(const char *filename
, Error
**errp
)
2157 int saved_vm_running
;
2160 saved_vm_running
= runstate_is_running();
2161 vm_stop(RUN_STATE_SAVE_VM
);
2163 f
= qemu_fopen(filename
, "wb");
2165 error_set(errp
, QERR_OPEN_FILE_FAILED
, filename
);
2168 ret
= qemu_save_device_state(f
);
2171 error_set(errp
, QERR_IO_ERROR
);
2175 if (saved_vm_running
)
2179 int load_vmstate(const char *name
)
2181 BlockDriverState
*bs
, *bs_vm_state
;
2182 QEMUSnapshotInfo sn
;
2186 bs_vm_state
= bdrv_snapshots();
2188 error_report("No block device supports snapshots");
2192 /* Don't even try to load empty VM states */
2193 ret
= bdrv_snapshot_find(bs_vm_state
, &sn
, name
);
2196 } else if (sn
.vm_state_size
== 0) {
2197 error_report("This is a disk-only snapshot. Revert to it offline "
2202 /* Verify if there is any device that doesn't support snapshots and is
2203 writable and check if the requested snapshot is available too. */
2205 while ((bs
= bdrv_next(bs
))) {
2207 if (!bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
2211 if (!bdrv_can_snapshot(bs
)) {
2212 error_report("Device '%s' is writable but does not support snapshots.",
2213 bdrv_get_device_name(bs
));
2217 ret
= bdrv_snapshot_find(bs
, &sn
, name
);
2219 error_report("Device '%s' does not have the requested snapshot '%s'",
2220 bdrv_get_device_name(bs
), name
);
2225 /* Flush all IO requests so they don't interfere with the new state. */
2229 while ((bs
= bdrv_next(bs
))) {
2230 if (bdrv_can_snapshot(bs
)) {
2231 ret
= bdrv_snapshot_goto(bs
, name
);
2233 error_report("Error %d while activating snapshot '%s' on '%s'",
2234 ret
, name
, bdrv_get_device_name(bs
));
2240 /* restore the VM state */
2241 f
= qemu_fopen_bdrv(bs_vm_state
, 0);
2243 error_report("Could not open VM state file");
2247 qemu_system_reset(VMRESET_SILENT
);
2248 ret
= qemu_loadvm_state(f
);
2252 error_report("Error %d while loading VM state", ret
);
2259 void do_delvm(Monitor
*mon
, const QDict
*qdict
)
2261 BlockDriverState
*bs
, *bs1
;
2263 const char *name
= qdict_get_str(qdict
, "name");
2265 bs
= bdrv_snapshots();
2267 monitor_printf(mon
, "No block device supports snapshots\n");
2272 while ((bs1
= bdrv_next(bs1
))) {
2273 if (bdrv_can_snapshot(bs1
)) {
2274 ret
= bdrv_snapshot_delete(bs1
, name
);
2276 if (ret
== -ENOTSUP
)
2278 "Snapshots not supported on device '%s'\n",
2279 bdrv_get_device_name(bs1
));
2281 monitor_printf(mon
, "Error %d while deleting snapshot on "
2282 "'%s'\n", ret
, bdrv_get_device_name(bs1
));
2288 void do_info_snapshots(Monitor
*mon
)
2290 BlockDriverState
*bs
, *bs1
;
2291 QEMUSnapshotInfo
*sn_tab
, *sn
, s
, *sn_info
= &s
;
2292 int nb_sns
, i
, ret
, available
;
2294 int *available_snapshots
;
2297 bs
= bdrv_snapshots();
2299 monitor_printf(mon
, "No available block device supports snapshots\n");
2303 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
2305 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
2310 monitor_printf(mon
, "There is no snapshot available.\n");
2314 available_snapshots
= g_malloc0(sizeof(int) * nb_sns
);
2316 for (i
= 0; i
< nb_sns
; i
++) {
2321 while ((bs1
= bdrv_next(bs1
))) {
2322 if (bdrv_can_snapshot(bs1
) && bs1
!= bs
) {
2323 ret
= bdrv_snapshot_find(bs1
, sn_info
, sn
->id_str
);
2332 available_snapshots
[total
] = i
;
2338 monitor_printf(mon
, "%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), NULL
));
2339 for (i
= 0; i
< total
; i
++) {
2340 sn
= &sn_tab
[available_snapshots
[i
]];
2341 monitor_printf(mon
, "%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), sn
));
2344 monitor_printf(mon
, "There is no suitable snapshot available\n");
2348 g_free(available_snapshots
);
2352 void vmstate_register_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2354 qemu_ram_set_idstr(memory_region_get_ram_addr(mr
) & TARGET_PAGE_MASK
,
2355 memory_region_name(mr
), dev
);
2358 void vmstate_unregister_ram(MemoryRegion
*mr
, DeviceState
*dev
)
2360 /* Nothing do to while the implementation is in RAMBlock */
2363 void vmstate_register_ram_global(MemoryRegion
*mr
)
2365 vmstate_register_ram(mr
, NULL
);
2374 nzrun = length byte...
2376 length = uleb128 encoded integer
2378 int xbzrle_encode_buffer(uint8_t *old_buf
, uint8_t *new_buf
, int slen
,
2379 uint8_t *dst
, int dlen
)
2381 uint32_t zrun_len
= 0, nzrun_len
= 0;
2384 uint8_t *nzrun_start
= NULL
;
2386 g_assert(!(((uintptr_t)old_buf
| (uintptr_t)new_buf
| slen
) %
2395 /* not aligned to sizeof(long) */
2396 res
= (slen
- i
) % sizeof(long);
2397 while (res
&& old_buf
[i
] == new_buf
[i
]) {
2403 /* word at a time for speed */
2406 (*(long *)(old_buf
+ i
)) == (*(long *)(new_buf
+ i
))) {
2408 zrun_len
+= sizeof(long);
2411 /* go over the rest */
2412 while (i
< slen
&& old_buf
[i
] == new_buf
[i
]) {
2418 /* buffer unchanged */
2419 if (zrun_len
== slen
) {
2423 /* skip last zero run */
2428 d
+= uleb128_encode_small(dst
+ d
, zrun_len
);
2431 nzrun_start
= new_buf
+ i
;
2437 /* not aligned to sizeof(long) */
2438 res
= (slen
- i
) % sizeof(long);
2439 while (res
&& old_buf
[i
] != new_buf
[i
]) {
2445 /* word at a time for speed, use of 32-bit long okay */
2447 /* truncation to 32-bit long okay */
2448 long mask
= (long)0x0101010101010101ULL
;
2450 xor = *(long *)(old_buf
+ i
) ^ *(long *)(new_buf
+ i
);
2451 if ((xor - mask
) & ~xor & (mask
<< 7)) {
2452 /* found the end of an nzrun within the current long */
2453 while (old_buf
[i
] != new_buf
[i
]) {
2460 nzrun_len
+= sizeof(long);
2465 d
+= uleb128_encode_small(dst
+ d
, nzrun_len
);
2467 if (d
+ nzrun_len
> dlen
) {
2470 memcpy(dst
+ d
, nzrun_start
, nzrun_len
);
2478 int xbzrle_decode_buffer(uint8_t *src
, int slen
, uint8_t *dst
, int dlen
)
2487 if ((slen
- i
) < 2) {
2491 ret
= uleb128_decode_small(src
+ i
, &count
);
2492 if (ret
< 0 || (i
&& !count
)) {
2504 if ((slen
- i
) < 2) {
2508 ret
= uleb128_decode_small(src
+ i
, &count
);
2509 if (ret
< 0 || !count
) {
2515 if (d
+ count
> dlen
|| i
+ count
> slen
) {
2519 memcpy(dst
+ d
, src
+ i
, count
);