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 #include <arpa/inet.h>
48 #include <sys/select.h>
51 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
59 #include <linux/rtc.h>
67 #include <sys/timeb.h>
69 #define getopt_long_only getopt_long
70 #define memalign(align, size) malloc(size)
73 #include "qemu-common.h"
78 #include "qemu-timer.h"
79 #include "qemu-char.h"
81 #include "audio/audio.h"
82 #include "migration.h"
83 #include "qemu_socket.h"
84 #include "qemu-queue.h"
86 /* point to the block driver where the snapshots are managed */
87 static BlockDriverState *bs_snapshots;
89 #define SELF_ANNOUNCE_ROUNDS 5
92 #define ETH_P_RARP 0x0835
94 #define ARP_HTYPE_ETH 0x0001
95 #define ARP_PTYPE_IP 0x0800
96 #define ARP_OP_REQUEST_REV 0x3
98 static int announce_self_create(uint8_t *buf,
101 /* Ethernet header. */
102 memset(buf, 0xff, 6); /* destination MAC addr */
103 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
104 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
107 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
108 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
109 *(buf + 18) = 6; /* hardware addr length (ethernet) */
110 *(buf + 19) = 4; /* protocol addr length (IPv4) */
111 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
112 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
113 memset(buf + 28, 0x00, 4); /* source protocol addr */
114 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
115 memset(buf + 38, 0x00, 4); /* target protocol addr */
117 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
118 memset(buf + 42, 0x00, 18);
120 return 60; /* len (FCS will be added by hardware) */
123 static void qemu_announce_self_iter(NICState *nic, void *opaque)
128 len = announce_self_create(buf, nic->conf->macaddr.a);
130 qemu_send_packet_raw(&nic->nc, buf, len);
134 static void qemu_announce_self_once(void *opaque)
136 static int count = SELF_ANNOUNCE_ROUNDS;
137 QEMUTimer *timer = *(QEMUTimer **)opaque;
139 qemu_foreach_nic(qemu_announce_self_iter, NULL);
142 /* delay 50ms, 150ms, 250ms, ... */
143 qemu_mod_timer(timer, qemu_get_clock(rt_clock) +
144 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
146 qemu_del_timer(timer);
147 qemu_free_timer(timer);
151 void qemu_announce_self(void)
153 static QEMUTimer *timer;
154 timer = qemu_new_timer(rt_clock, qemu_announce_self_once, &timer);
155 qemu_announce_self_once(&timer);
158 /***********************************************************/
159 /* savevm/loadvm support */
161 #define IO_BUF_SIZE 32768
164 QEMUFilePutBufferFunc *put_buffer;
165 QEMUFileGetBufferFunc *get_buffer;
166 QEMUFileCloseFunc *close;
167 QEMUFileRateLimit *rate_limit;
168 QEMUFileSetRateLimit *set_rate_limit;
169 QEMUFileGetRateLimit *get_rate_limit;
173 int64_t buf_offset; /* start of buffer when writing, end of buffer
176 int buf_size; /* 0 when writing */
177 uint8_t buf[IO_BUF_SIZE];
182 typedef struct QEMUFileStdio
188 typedef struct QEMUFileSocket
194 static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
196 QEMUFileSocket *s = opaque;
200 len = recv(s->fd, (void *)buf, size, 0);
201 } while (len == -1 && socket_error() == EINTR);
204 len = -socket_error();
209 static int socket_close(void *opaque)
211 QEMUFileSocket *s = opaque;
216 static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
218 QEMUFileStdio *s = opaque;
219 return fwrite(buf, 1, size, s->stdio_file);
222 static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
224 QEMUFileStdio *s = opaque;
225 FILE *fp = s->stdio_file;
230 bytes = fread(buf, 1, size, fp);
231 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
235 static int stdio_pclose(void *opaque)
237 QEMUFileStdio *s = opaque;
238 pclose(s->stdio_file);
243 static int stdio_fclose(void *opaque)
245 QEMUFileStdio *s = opaque;
246 fclose(s->stdio_file);
251 QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
255 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
256 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
260 s = qemu_mallocz(sizeof(QEMUFileStdio));
262 s->stdio_file = stdio_file;
265 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_pclose,
268 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_pclose,
274 QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
278 popen_file = popen(command, mode);
279 if(popen_file == NULL) {
283 return qemu_popen(popen_file, mode);
286 int qemu_stdio_fd(QEMUFile *f)
291 p = (QEMUFileStdio *)f->opaque;
292 fd = fileno(p->stdio_file);
297 QEMUFile *qemu_fdopen(int fd, const char *mode)
302 (mode[0] != 'r' && mode[0] != 'w') ||
303 mode[1] != 'b' || mode[2] != 0) {
304 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
308 s = qemu_mallocz(sizeof(QEMUFileStdio));
309 s->stdio_file = fdopen(fd, mode);
314 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_fclose,
317 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_fclose,
327 QEMUFile *qemu_fopen_socket(int fd)
329 QEMUFileSocket *s = qemu_mallocz(sizeof(QEMUFileSocket));
332 s->file = qemu_fopen_ops(s, NULL, socket_get_buffer, socket_close,
337 static int file_put_buffer(void *opaque, const uint8_t *buf,
338 int64_t pos, int size)
340 QEMUFileStdio *s = opaque;
341 fseek(s->stdio_file, pos, SEEK_SET);
342 fwrite(buf, 1, size, s->stdio_file);
346 static int file_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
348 QEMUFileStdio *s = opaque;
349 fseek(s->stdio_file, pos, SEEK_SET);
350 return fread(buf, 1, size, s->stdio_file);
353 QEMUFile *qemu_fopen(const char *filename, const char *mode)
358 (mode[0] != 'r' && mode[0] != 'w') ||
359 mode[1] != 'b' || mode[2] != 0) {
360 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
364 s = qemu_mallocz(sizeof(QEMUFileStdio));
366 s->stdio_file = fopen(filename, mode);
371 s->file = qemu_fopen_ops(s, file_put_buffer, NULL, stdio_fclose,
374 s->file = qemu_fopen_ops(s, NULL, file_get_buffer, stdio_fclose,
383 static int block_put_buffer(void *opaque, const uint8_t *buf,
384 int64_t pos, int size)
386 bdrv_save_vmstate(opaque, buf, pos, size);
390 static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
392 return bdrv_load_vmstate(opaque, buf, pos, size);
395 static int bdrv_fclose(void *opaque)
400 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
403 return qemu_fopen_ops(bs, block_put_buffer, NULL, bdrv_fclose,
405 return qemu_fopen_ops(bs, NULL, block_get_buffer, bdrv_fclose, NULL, NULL, NULL);
408 QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
409 QEMUFileGetBufferFunc *get_buffer,
410 QEMUFileCloseFunc *close,
411 QEMUFileRateLimit *rate_limit,
412 QEMUFileSetRateLimit *set_rate_limit,
413 QEMUFileGetRateLimit *get_rate_limit)
417 f = qemu_mallocz(sizeof(QEMUFile));
420 f->put_buffer = put_buffer;
421 f->get_buffer = get_buffer;
423 f->rate_limit = rate_limit;
424 f->set_rate_limit = set_rate_limit;
425 f->get_rate_limit = get_rate_limit;
431 int qemu_file_has_error(QEMUFile *f)
436 void qemu_file_set_error(QEMUFile *f)
441 void qemu_fflush(QEMUFile *f)
446 if (f->is_write && f->buf_index > 0) {
449 len = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
451 f->buf_offset += f->buf_index;
458 static void qemu_fill_buffer(QEMUFile *f)
468 len = f->get_buffer(f->opaque, f->buf, f->buf_offset, IO_BUF_SIZE);
472 f->buf_offset += len;
473 } else if (len != -EAGAIN)
477 int qemu_fclose(QEMUFile *f)
482 ret = f->close(f->opaque);
487 void qemu_file_put_notify(QEMUFile *f)
489 f->put_buffer(f->opaque, NULL, 0, 0);
492 void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
496 if (!f->has_error && f->is_write == 0 && f->buf_index > 0) {
498 "Attempted to write to buffer while read buffer is not empty\n");
502 while (!f->has_error && size > 0) {
503 l = IO_BUF_SIZE - f->buf_index;
506 memcpy(f->buf + f->buf_index, buf, l);
511 if (f->buf_index >= IO_BUF_SIZE)
516 void qemu_put_byte(QEMUFile *f, int v)
518 if (!f->has_error && f->is_write == 0 && f->buf_index > 0) {
520 "Attempted to write to buffer while read buffer is not empty\n");
524 f->buf[f->buf_index++] = v;
526 if (f->buf_index >= IO_BUF_SIZE)
530 int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)
539 l = f->buf_size - f->buf_index;
542 l = f->buf_size - f->buf_index;
548 memcpy(buf, f->buf + f->buf_index, l);
556 int qemu_get_byte(QEMUFile *f)
561 if (f->buf_index >= f->buf_size) {
563 if (f->buf_index >= f->buf_size)
566 return f->buf[f->buf_index++];
569 int64_t qemu_ftell(QEMUFile *f)
571 return f->buf_offset - f->buf_size + f->buf_index;
574 int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
576 if (whence == SEEK_SET) {
578 } else if (whence == SEEK_CUR) {
579 pos += qemu_ftell(f);
581 /* SEEK_END not supported */
595 int qemu_file_rate_limit(QEMUFile *f)
598 return f->rate_limit(f->opaque);
603 size_t qemu_file_get_rate_limit(QEMUFile *f)
605 if (f->get_rate_limit)
606 return f->get_rate_limit(f->opaque);
611 size_t qemu_file_set_rate_limit(QEMUFile *f, size_t new_rate)
613 /* any failed or completed migration keeps its state to allow probing of
614 * migration data, but has no associated file anymore */
615 if (f && f->set_rate_limit)
616 return f->set_rate_limit(f->opaque, new_rate);
621 void qemu_put_be16(QEMUFile *f, unsigned int v)
623 qemu_put_byte(f, v >> 8);
627 void qemu_put_be32(QEMUFile *f, unsigned int v)
629 qemu_put_byte(f, v >> 24);
630 qemu_put_byte(f, v >> 16);
631 qemu_put_byte(f, v >> 8);
635 void qemu_put_be64(QEMUFile *f, uint64_t v)
637 qemu_put_be32(f, v >> 32);
641 unsigned int qemu_get_be16(QEMUFile *f)
644 v = qemu_get_byte(f) << 8;
645 v |= qemu_get_byte(f);
649 unsigned int qemu_get_be32(QEMUFile *f)
652 v = qemu_get_byte(f) << 24;
653 v |= qemu_get_byte(f) << 16;
654 v |= qemu_get_byte(f) << 8;
655 v |= qemu_get_byte(f);
659 uint64_t qemu_get_be64(QEMUFile *f)
662 v = (uint64_t)qemu_get_be32(f) << 32;
663 v |= qemu_get_be32(f);
669 static int get_int8(QEMUFile *f, void *pv, size_t size)
676 static void put_int8(QEMUFile *f, void *pv, size_t size)
682 const VMStateInfo vmstate_info_int8 = {
690 static int get_int16(QEMUFile *f, void *pv, size_t size)
693 qemu_get_sbe16s(f, v);
697 static void put_int16(QEMUFile *f, void *pv, size_t size)
700 qemu_put_sbe16s(f, v);
703 const VMStateInfo vmstate_info_int16 = {
711 static int get_int32(QEMUFile *f, void *pv, size_t size)
714 qemu_get_sbe32s(f, v);
718 static void put_int32(QEMUFile *f, void *pv, size_t size)
721 qemu_put_sbe32s(f, v);
724 const VMStateInfo vmstate_info_int32 = {
730 /* 32 bit int. See that the received value is the same than the one
733 static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
737 qemu_get_sbe32s(f, &v2);
744 const VMStateInfo vmstate_info_int32_equal = {
745 .name = "int32 equal",
746 .get = get_int32_equal,
750 /* 32 bit int. See that the received value is the less or the same
751 than the one in the field */
753 static int get_int32_le(QEMUFile *f, void *pv, size_t size)
757 qemu_get_sbe32s(f, &new);
764 const VMStateInfo vmstate_info_int32_le = {
765 .name = "int32 equal",
772 static int get_int64(QEMUFile *f, void *pv, size_t size)
775 qemu_get_sbe64s(f, v);
779 static void put_int64(QEMUFile *f, void *pv, size_t size)
782 qemu_put_sbe64s(f, v);
785 const VMStateInfo vmstate_info_int64 = {
791 /* 8 bit unsigned int */
793 static int get_uint8(QEMUFile *f, void *pv, size_t size)
800 static void put_uint8(QEMUFile *f, void *pv, size_t size)
806 const VMStateInfo vmstate_info_uint8 = {
812 /* 16 bit unsigned int */
814 static int get_uint16(QEMUFile *f, void *pv, size_t size)
817 qemu_get_be16s(f, v);
821 static void put_uint16(QEMUFile *f, void *pv, size_t size)
824 qemu_put_be16s(f, v);
827 const VMStateInfo vmstate_info_uint16 = {
833 /* 32 bit unsigned int */
835 static int get_uint32(QEMUFile *f, void *pv, size_t size)
838 qemu_get_be32s(f, v);
842 static void put_uint32(QEMUFile *f, void *pv, size_t size)
845 qemu_put_be32s(f, v);
848 const VMStateInfo vmstate_info_uint32 = {
854 /* 64 bit unsigned int */
856 static int get_uint64(QEMUFile *f, void *pv, size_t size)
859 qemu_get_be64s(f, v);
863 static void put_uint64(QEMUFile *f, void *pv, size_t size)
866 qemu_put_be64s(f, v);
869 const VMStateInfo vmstate_info_uint64 = {
875 /* 8 bit int. See that the received value is the same than the one
878 static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
889 const VMStateInfo vmstate_info_uint8_equal = {
890 .name = "uint8 equal",
891 .get = get_uint8_equal,
895 /* 16 bit unsigned int int. See that the received value is the same than the one
898 static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
902 qemu_get_be16s(f, &v2);
909 const VMStateInfo vmstate_info_uint16_equal = {
910 .name = "uint16 equal",
911 .get = get_uint16_equal,
917 static int get_timer(QEMUFile *f, void *pv, size_t size)
920 qemu_get_timer(f, v);
924 static void put_timer(QEMUFile *f, void *pv, size_t size)
927 qemu_put_timer(f, v);
930 const VMStateInfo vmstate_info_timer = {
936 /* uint8_t buffers */
938 static int get_buffer(QEMUFile *f, void *pv, size_t size)
941 qemu_get_buffer(f, v, size);
945 static void put_buffer(QEMUFile *f, void *pv, size_t size)
948 qemu_put_buffer(f, v, size);
951 const VMStateInfo vmstate_info_buffer = {
957 /* unused buffers: space that was used for some fields that are
958 not usefull anymore */
960 static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
966 block_len = MIN(sizeof(buf), size);
968 qemu_get_buffer(f, buf, block_len);
973 static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
975 static const uint8_t buf[1024];
979 block_len = MIN(sizeof(buf), size);
981 qemu_put_buffer(f, buf, block_len);
985 const VMStateInfo vmstate_info_unused_buffer = {
986 .name = "unused_buffer",
987 .get = get_unused_buffer,
988 .put = put_unused_buffer,
991 typedef struct SaveStateEntry {
992 QTAILQ_ENTRY(SaveStateEntry) entry;
997 SaveSetParamsHandler *set_params;
998 SaveLiveStateHandler *save_live_state;
999 SaveStateHandler *save_state;
1000 LoadStateHandler *load_state;
1001 const VMStateDescription *vmsd;
1006 static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1007 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
1008 static int global_section_id;
1010 static int calculate_new_instance_id(const char *idstr)
1013 int instance_id = 0;
1015 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1016 if (strcmp(idstr, se->idstr) == 0
1017 && instance_id <= se->instance_id) {
1018 instance_id = se->instance_id + 1;
1024 /* TODO: Individual devices generally have very little idea about the rest
1025 of the system, so instance_id should be removed/replaced.
1026 Meanwhile pass -1 as instance_id if you do not already have a clearly
1027 distinguishing id for all instances of your device class. */
1028 int register_savevm_live(const char *idstr,
1031 SaveSetParamsHandler *set_params,
1032 SaveLiveStateHandler *save_live_state,
1033 SaveStateHandler *save_state,
1034 LoadStateHandler *load_state,
1039 se = qemu_mallocz(sizeof(SaveStateEntry));
1040 pstrcpy(se->idstr, sizeof(se->idstr), idstr);
1041 se->version_id = version_id;
1042 se->section_id = global_section_id++;
1043 se->set_params = set_params;
1044 se->save_live_state = save_live_state;
1045 se->save_state = save_state;
1046 se->load_state = load_state;
1047 se->opaque = opaque;
1050 if (instance_id == -1) {
1051 se->instance_id = calculate_new_instance_id(idstr);
1053 se->instance_id = instance_id;
1055 /* add at the end of list */
1056 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
1060 int register_savevm(const char *idstr,
1063 SaveStateHandler *save_state,
1064 LoadStateHandler *load_state,
1067 return register_savevm_live(idstr, instance_id, version_id,
1068 NULL, NULL, save_state, load_state, opaque);
1071 void unregister_savevm(const char *idstr, void *opaque)
1073 SaveStateEntry *se, *new_se;
1075 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1076 if (strcmp(se->idstr, idstr) == 0 && se->opaque == opaque) {
1077 QTAILQ_REMOVE(&savevm_handlers, se, entry);
1083 int vmstate_register(int instance_id, const VMStateDescription *vmsd,
1088 se = qemu_mallocz(sizeof(SaveStateEntry));
1089 pstrcpy(se->idstr, sizeof(se->idstr), vmsd->name);
1090 se->version_id = vmsd->version_id;
1091 se->section_id = global_section_id++;
1092 se->save_live_state = NULL;
1093 se->save_state = NULL;
1094 se->load_state = NULL;
1095 se->opaque = opaque;
1098 if (instance_id == -1) {
1099 se->instance_id = calculate_new_instance_id(vmsd->name);
1101 se->instance_id = instance_id;
1103 /* add at the end of list */
1104 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
1108 void vmstate_unregister(const VMStateDescription *vmsd, void *opaque)
1110 SaveStateEntry *se, *new_se;
1112 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1113 if (se->vmsd == vmsd && se->opaque == opaque) {
1114 QTAILQ_REMOVE(&savevm_handlers, se, entry);
1120 int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1121 void *opaque, int version_id)
1123 VMStateField *field = vmsd->fields;
1125 if (version_id > vmsd->version_id) {
1128 if (version_id < vmsd->minimum_version_id_old) {
1131 if (version_id < vmsd->minimum_version_id) {
1132 return vmsd->load_state_old(f, opaque, version_id);
1134 if (vmsd->pre_load) {
1135 int ret = vmsd->pre_load(opaque);
1139 while(field->name) {
1140 if ((field->field_exists &&
1141 field->field_exists(opaque, version_id)) ||
1142 (!field->field_exists &&
1143 field->version_id <= version_id)) {
1144 void *base_addr = opaque + field->offset;
1145 int ret, i, n_elems = 1;
1146 int size = field->size;
1148 if (field->flags & VMS_VBUFFER) {
1149 size = *(int32_t *)(opaque+field->size_offset);
1150 if (field->flags & VMS_MULTIPLY) {
1151 size *= field->size;
1154 if (field->flags & VMS_ARRAY) {
1155 n_elems = field->num;
1156 } else if (field->flags & VMS_VARRAY_INT32) {
1157 n_elems = *(int32_t *)(opaque+field->num_offset);
1158 } else if (field->flags & VMS_VARRAY_UINT16) {
1159 n_elems = *(uint16_t *)(opaque+field->num_offset);
1161 if (field->flags & VMS_POINTER) {
1162 base_addr = *(void **)base_addr + field->start;
1164 for (i = 0; i < n_elems; i++) {
1165 void *addr = base_addr + size * i;
1167 if (field->flags & VMS_ARRAY_OF_POINTER) {
1168 addr = *(void **)addr;
1170 if (field->flags & VMS_STRUCT) {
1171 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
1173 ret = field->info->get(f, addr, size);
1183 if (vmsd->post_load) {
1184 return vmsd->post_load(opaque, version_id);
1189 void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
1192 VMStateField *field = vmsd->fields;
1194 if (vmsd->pre_save) {
1195 vmsd->pre_save(opaque);
1197 while(field->name) {
1198 if (!field->field_exists ||
1199 field->field_exists(opaque, vmsd->version_id)) {
1200 void *base_addr = opaque + field->offset;
1202 int size = field->size;
1204 if (field->flags & VMS_VBUFFER) {
1205 size = *(int32_t *)(opaque+field->size_offset);
1206 if (field->flags & VMS_MULTIPLY) {
1207 size *= field->size;
1210 if (field->flags & VMS_ARRAY) {
1211 n_elems = field->num;
1212 } else if (field->flags & VMS_VARRAY_INT32) {
1213 n_elems = *(int32_t *)(opaque+field->num_offset);
1214 } else if (field->flags & VMS_VARRAY_UINT16) {
1215 n_elems = *(uint16_t *)(opaque+field->num_offset);
1217 if (field->flags & VMS_POINTER) {
1218 base_addr = *(void **)base_addr + field->start;
1220 for (i = 0; i < n_elems; i++) {
1221 void *addr = base_addr + size * i;
1223 if (field->flags & VMS_ARRAY_OF_POINTER) {
1224 addr = *(void **)addr;
1226 if (field->flags & VMS_STRUCT) {
1227 vmstate_save_state(f, field->vmsd, addr);
1229 field->info->put(f, addr, size);
1235 if (vmsd->post_save) {
1236 vmsd->post_save(opaque);
1240 static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1242 if (!se->vmsd) { /* Old style */
1243 return se->load_state(f, se->opaque, version_id);
1245 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
1248 static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
1250 if (!se->vmsd) { /* Old style */
1251 se->save_state(f, se->opaque);
1254 vmstate_save_state(f,se->vmsd, se->opaque);
1257 #define QEMU_VM_FILE_MAGIC 0x5145564d
1258 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1259 #define QEMU_VM_FILE_VERSION 0x00000003
1261 #define QEMU_VM_EOF 0x00
1262 #define QEMU_VM_SECTION_START 0x01
1263 #define QEMU_VM_SECTION_PART 0x02
1264 #define QEMU_VM_SECTION_END 0x03
1265 #define QEMU_VM_SECTION_FULL 0x04
1267 int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
1272 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1273 if(se->set_params == NULL) {
1276 se->set_params(blk_enable, shared, se->opaque);
1279 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1280 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1282 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1285 if (se->save_live_state == NULL)
1289 qemu_put_byte(f, QEMU_VM_SECTION_START);
1290 qemu_put_be32(f, se->section_id);
1293 len = strlen(se->idstr);
1294 qemu_put_byte(f, len);
1295 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1297 qemu_put_be32(f, se->instance_id);
1298 qemu_put_be32(f, se->version_id);
1300 se->save_live_state(mon, f, QEMU_VM_SECTION_START, se->opaque);
1303 if (qemu_file_has_error(f)) {
1304 qemu_savevm_state_cancel(mon, f);
1311 int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f)
1316 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1317 if (se->save_live_state == NULL)
1321 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1322 qemu_put_be32(f, se->section_id);
1324 ret = se->save_live_state(mon, f, QEMU_VM_SECTION_PART, se->opaque);
1326 /* Do not proceed to the next vmstate before this one reported
1327 completion of the current stage. This serializes the migration
1328 and reduces the probability that a faster changing state is
1329 synchronized over and over again. */
1337 if (qemu_file_has_error(f)) {
1338 qemu_savevm_state_cancel(mon, f);
1345 int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f)
1349 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1350 if (se->save_live_state == NULL)
1354 qemu_put_byte(f, QEMU_VM_SECTION_END);
1355 qemu_put_be32(f, se->section_id);
1357 se->save_live_state(mon, f, QEMU_VM_SECTION_END, se->opaque);
1360 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1363 if (se->save_state == NULL && se->vmsd == NULL)
1367 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1368 qemu_put_be32(f, se->section_id);
1371 len = strlen(se->idstr);
1372 qemu_put_byte(f, len);
1373 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1375 qemu_put_be32(f, se->instance_id);
1376 qemu_put_be32(f, se->version_id);
1378 vmstate_save(f, se);
1381 qemu_put_byte(f, QEMU_VM_EOF);
1383 if (qemu_file_has_error(f))
1389 void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f)
1393 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1394 if (se->save_live_state) {
1395 se->save_live_state(mon, f, -1, se->opaque);
1400 static int qemu_savevm_state(Monitor *mon, QEMUFile *f)
1402 int saved_vm_running;
1405 saved_vm_running = vm_running;
1410 ret = qemu_savevm_state_begin(mon, f, 0, 0);
1415 ret = qemu_savevm_state_iterate(mon, f);
1420 ret = qemu_savevm_state_complete(mon, f);
1423 if (qemu_file_has_error(f))
1426 if (!ret && saved_vm_running)
1432 static SaveStateEntry *find_se(const char *idstr, int instance_id)
1436 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1437 if (!strcmp(se->idstr, idstr) &&
1438 instance_id == se->instance_id)
1444 typedef struct LoadStateEntry {
1445 QLIST_ENTRY(LoadStateEntry) entry;
1451 int qemu_loadvm_state(QEMUFile *f)
1453 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1454 QLIST_HEAD_INITIALIZER(loadvm_handlers);
1455 LoadStateEntry *le, *new_le;
1456 uint8_t section_type;
1460 v = qemu_get_be32(f);
1461 if (v != QEMU_VM_FILE_MAGIC)
1464 v = qemu_get_be32(f);
1465 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1466 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1469 if (v != QEMU_VM_FILE_VERSION)
1472 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1473 uint32_t instance_id, version_id, section_id;
1478 switch (section_type) {
1479 case QEMU_VM_SECTION_START:
1480 case QEMU_VM_SECTION_FULL:
1481 /* Read section start */
1482 section_id = qemu_get_be32(f);
1483 len = qemu_get_byte(f);
1484 qemu_get_buffer(f, (uint8_t *)idstr, len);
1486 instance_id = qemu_get_be32(f);
1487 version_id = qemu_get_be32(f);
1489 /* Find savevm section */
1490 se = find_se(idstr, instance_id);
1492 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1497 /* Validate version */
1498 if (version_id > se->version_id) {
1499 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1500 version_id, idstr, se->version_id);
1506 le = qemu_mallocz(sizeof(*le));
1509 le->section_id = section_id;
1510 le->version_id = version_id;
1511 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
1513 ret = vmstate_load(f, le->se, le->version_id);
1515 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1516 instance_id, idstr);
1520 case QEMU_VM_SECTION_PART:
1521 case QEMU_VM_SECTION_END:
1522 section_id = qemu_get_be32(f);
1524 QLIST_FOREACH(le, &loadvm_handlers, entry) {
1525 if (le->section_id == section_id) {
1530 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1535 ret = vmstate_load(f, le->se, le->version_id);
1537 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1543 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1552 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1553 QLIST_REMOVE(le, entry);
1557 if (qemu_file_has_error(f))
1563 /* device can contain snapshots */
1564 static int bdrv_can_snapshot(BlockDriverState *bs)
1567 !bdrv_is_removable(bs) &&
1568 !bdrv_is_read_only(bs));
1571 /* device must be snapshots in order to have a reliable snapshot */
1572 static int bdrv_has_snapshot(BlockDriverState *bs)
1575 !bdrv_is_removable(bs) &&
1576 !bdrv_is_read_only(bs));
1579 static BlockDriverState *get_bs_snapshots(void)
1581 BlockDriverState *bs;
1585 return bs_snapshots;
1586 QTAILQ_FOREACH(dinfo, &drives, next) {
1588 if (bdrv_can_snapshot(bs))
1597 static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1600 QEMUSnapshotInfo *sn_tab, *sn;
1604 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1607 for(i = 0; i < nb_sns; i++) {
1609 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1620 * Deletes snapshots of a given name in all opened images.
1622 static int del_existing_snapshots(Monitor *mon, const char *name)
1624 BlockDriverState *bs;
1626 QEMUSnapshotInfo sn1, *snapshot = &sn1;
1629 QTAILQ_FOREACH(dinfo, &drives, next) {
1631 if (bdrv_can_snapshot(bs) &&
1632 bdrv_snapshot_find(bs, snapshot, name) >= 0)
1634 ret = bdrv_snapshot_delete(bs, name);
1637 "Error while deleting snapshot on '%s'\n",
1638 bdrv_get_device_name(bs));
1647 void do_savevm(Monitor *mon, const QDict *qdict)
1650 BlockDriverState *bs, *bs1;
1651 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
1654 int saved_vm_running;
1655 uint32_t vm_state_size;
1661 const char *name = qdict_get_try_str(qdict, "name");
1663 bs = get_bs_snapshots();
1665 monitor_printf(mon, "No block device can accept snapshots\n");
1669 /* ??? Should this occur after vm_stop? */
1672 saved_vm_running = vm_running;
1675 memset(sn, 0, sizeof(*sn));
1677 ret = bdrv_snapshot_find(bs, old_sn, name);
1679 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1680 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1682 pstrcpy(sn->name, sizeof(sn->name), name);
1686 /* fill auxiliary fields */
1689 sn->date_sec = tb.time;
1690 sn->date_nsec = tb.millitm * 1000000;
1692 gettimeofday(&tv, NULL);
1693 sn->date_sec = tv.tv_sec;
1694 sn->date_nsec = tv.tv_usec * 1000;
1696 sn->vm_clock_nsec = qemu_get_clock(vm_clock);
1698 /* Delete old snapshots of the same name */
1699 if (del_existing_snapshots(mon, name) < 0) {
1703 /* save the VM state */
1704 f = qemu_fopen_bdrv(bs, 1);
1706 monitor_printf(mon, "Could not open VM state file\n");
1709 ret = qemu_savevm_state(mon, f);
1710 vm_state_size = qemu_ftell(f);
1713 monitor_printf(mon, "Error %d while writing VM\n", ret);
1717 /* create the snapshots */
1719 QTAILQ_FOREACH(dinfo, &drives, next) {
1721 if (bdrv_has_snapshot(bs1)) {
1722 /* Write VM state size only to the image that contains the state */
1723 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
1724 ret = bdrv_snapshot_create(bs1, sn);
1726 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1727 bdrv_get_device_name(bs1));
1733 if (saved_vm_running)
1737 int load_vmstate(Monitor *mon, const char *name)
1740 BlockDriverState *bs, *bs1;
1741 QEMUSnapshotInfo sn;
1745 bs = get_bs_snapshots();
1747 monitor_printf(mon, "No block device supports snapshots\n");
1751 /* Flush all IO requests so they don't interfere with the new state. */
1754 QTAILQ_FOREACH(dinfo, &drives, next) {
1756 if (bdrv_has_snapshot(bs1)) {
1757 ret = bdrv_snapshot_goto(bs1, name);
1760 monitor_printf(mon, "Warning: ");
1764 "Snapshots not supported on device '%s'\n",
1765 bdrv_get_device_name(bs1));
1768 monitor_printf(mon, "Could not find snapshot '%s' on "
1770 name, bdrv_get_device_name(bs1));
1773 monitor_printf(mon, "Error %d while activating snapshot on"
1774 " '%s'\n", ret, bdrv_get_device_name(bs1));
1777 /* fatal on snapshot block device */
1784 /* Don't even try to load empty VM states */
1785 ret = bdrv_snapshot_find(bs, &sn, name);
1786 if ((ret >= 0) && (sn.vm_state_size == 0))
1789 /* restore the VM state */
1790 f = qemu_fopen_bdrv(bs, 0);
1792 monitor_printf(mon, "Could not open VM state file\n");
1795 ret = qemu_loadvm_state(f);
1798 monitor_printf(mon, "Error %d while loading VM state\n", ret);
1804 void do_delvm(Monitor *mon, const QDict *qdict)
1807 BlockDriverState *bs, *bs1;
1809 const char *name = qdict_get_str(qdict, "name");
1811 bs = get_bs_snapshots();
1813 monitor_printf(mon, "No block device supports snapshots\n");
1817 QTAILQ_FOREACH(dinfo, &drives, next) {
1819 if (bdrv_has_snapshot(bs1)) {
1820 ret = bdrv_snapshot_delete(bs1, name);
1822 if (ret == -ENOTSUP)
1824 "Snapshots not supported on device '%s'\n",
1825 bdrv_get_device_name(bs1));
1827 monitor_printf(mon, "Error %d while deleting snapshot on "
1828 "'%s'\n", ret, bdrv_get_device_name(bs1));
1834 void do_info_snapshots(Monitor *mon)
1837 BlockDriverState *bs, *bs1;
1838 QEMUSnapshotInfo *sn_tab, *sn;
1842 bs = get_bs_snapshots();
1844 monitor_printf(mon, "No available block device supports snapshots\n");
1847 monitor_printf(mon, "Snapshot devices:");
1848 QTAILQ_FOREACH(dinfo, &drives, next) {
1850 if (bdrv_has_snapshot(bs1)) {
1852 monitor_printf(mon, " %s", bdrv_get_device_name(bs1));
1855 monitor_printf(mon, "\n");
1857 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1859 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
1862 monitor_printf(mon, "Snapshot list (from %s):\n",
1863 bdrv_get_device_name(bs));
1864 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
1865 for(i = 0; i < nb_sns; i++) {
1867 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));