migration: close socket QEMUFile from socket_close
[qemu/ar7.git] / savevm.c
blobcdad3ad8e4c1a8b1f6cc1c01438c62d92a4a0908
1 /*
2 * QEMU System Emulator
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
22 * THE SOFTWARE.
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <time.h>
27 #include <errno.h>
28 #include <sys/time.h>
29 #include <zlib.h>
31 /* Needed early for CONFIG_BSD etc. */
32 #include "config-host.h"
34 #ifndef _WIN32
35 #include <sys/times.h>
36 #include <sys/wait.h>
37 #include <termios.h>
38 #include <sys/mman.h>
39 #include <sys/ioctl.h>
40 #include <sys/resource.h>
41 #include <sys/socket.h>
42 #include <netinet/in.h>
43 #include <net/if.h>
44 #include <arpa/inet.h>
45 #include <dirent.h>
46 #include <netdb.h>
47 #include <sys/select.h>
48 #ifdef CONFIG_BSD
49 #include <sys/stat.h>
50 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
51 #include <libutil.h>
52 #else
53 #include <util.h>
54 #endif
55 #ifdef __linux__
56 #include <pty.h>
57 #include <malloc.h>
58 #include <linux/rtc.h>
59 #endif
60 #endif
61 #endif
63 #ifdef _WIN32
64 #include <windows.h>
65 #include <malloc.h>
66 #include <sys/timeb.h>
67 #include <mmsystem.h>
68 #define getopt_long_only getopt_long
69 #define memalign(align, size) malloc(size)
70 #endif
72 #include "qemu-common.h"
73 #include "hw/hw.h"
74 #include "hw/qdev.h"
75 #include "net.h"
76 #include "monitor.h"
77 #include "sysemu.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"
85 #include "cpus.h"
86 #include "memory.h"
87 #include "qmp-commands.h"
88 #include "trace.h"
89 #include "bitops.h"
91 #define SELF_ANNOUNCE_ROUNDS 5
93 #ifndef ETH_P_RARP
94 #define ETH_P_RARP 0x8035
95 #endif
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,
101 uint8_t *mac_addr)
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 */
108 /* RARP header. */
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)
127 uint8_t buf[60];
128 int len;
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);
143 if (--count) {
144 /* delay 50ms, 150ms, 250ms, ... */
145 qemu_mod_timer(timer, qemu_get_clock_ms(rt_clock) +
146 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
147 } else {
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
165 struct QEMUFile {
166 const QEMUFileOps *ops;
167 void *opaque;
168 int is_write;
170 int64_t buf_offset; /* start of buffer when writing, end of buffer
171 when reading */
172 int buf_index;
173 int buf_size; /* 0 when writing */
174 uint8_t buf[IO_BUF_SIZE];
176 int last_error;
179 typedef struct QEMUFileStdio
181 FILE *stdio_file;
182 QEMUFile *file;
183 } QEMUFileStdio;
185 typedef struct QEMUFileSocket
187 int fd;
188 QEMUFile *file;
189 } QEMUFileSocket;
191 static int socket_get_fd(void *opaque)
193 QEMUFileSocket *s = opaque;
195 return s->fd;
198 static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
200 QEMUFileSocket *s = opaque;
201 ssize_t len;
203 do {
204 len = qemu_recv(s->fd, buf, size, 0);
205 } while (len == -1 && socket_error() == EINTR);
207 if (len == -1)
208 len = -socket_error();
210 return len;
213 static int socket_close(void *opaque)
215 QEMUFileSocket *s = opaque;
216 closesocket(s->fd);
217 g_free(s);
218 return 0;
221 static int stdio_get_fd(void *opaque)
223 QEMUFileStdio *s = opaque;
225 return fileno(s->stdio_file);
228 static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
230 QEMUFileStdio *s = opaque;
231 return fwrite(buf, 1, size, s->stdio_file);
234 static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
236 QEMUFileStdio *s = opaque;
237 FILE *fp = s->stdio_file;
238 int bytes;
240 do {
241 clearerr(fp);
242 bytes = fread(buf, 1, size, fp);
243 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
244 return bytes;
247 static int stdio_pclose(void *opaque)
249 QEMUFileStdio *s = opaque;
250 int ret;
251 ret = pclose(s->stdio_file);
252 if (ret == -1) {
253 ret = -errno;
255 g_free(s);
256 return ret;
259 static int stdio_fclose(void *opaque)
261 QEMUFileStdio *s = opaque;
262 int ret = 0;
263 if (fclose(s->stdio_file) == EOF) {
264 ret = -errno;
266 g_free(s);
267 return ret;
270 static const QEMUFileOps stdio_pipe_read_ops = {
271 .get_fd = stdio_get_fd,
272 .get_buffer = stdio_get_buffer,
273 .close = stdio_pclose
276 static const QEMUFileOps stdio_pipe_write_ops = {
277 .get_fd = stdio_get_fd,
278 .put_buffer = stdio_put_buffer,
279 .close = stdio_pclose
282 QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
284 QEMUFileStdio *s;
286 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
287 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
288 return NULL;
291 s = g_malloc0(sizeof(QEMUFileStdio));
293 s->stdio_file = stdio_file;
295 if(mode[0] == 'r') {
296 s->file = qemu_fopen_ops(s, &stdio_pipe_read_ops);
297 } else {
298 s->file = qemu_fopen_ops(s, &stdio_pipe_write_ops);
300 return s->file;
303 QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
305 FILE *popen_file;
307 popen_file = popen(command, mode);
308 if(popen_file == NULL) {
309 return NULL;
312 return qemu_popen(popen_file, mode);
315 static const QEMUFileOps stdio_file_read_ops = {
316 .get_fd = stdio_get_fd,
317 .get_buffer = stdio_get_buffer,
318 .close = stdio_fclose
321 static const QEMUFileOps stdio_file_write_ops = {
322 .get_fd = stdio_get_fd,
323 .put_buffer = stdio_put_buffer,
324 .close = stdio_fclose
327 QEMUFile *qemu_fdopen(int fd, const char *mode)
329 QEMUFileStdio *s;
331 if (mode == NULL ||
332 (mode[0] != 'r' && mode[0] != 'w') ||
333 mode[1] != 'b' || mode[2] != 0) {
334 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
335 return NULL;
338 s = g_malloc0(sizeof(QEMUFileStdio));
339 s->stdio_file = fdopen(fd, mode);
340 if (!s->stdio_file)
341 goto fail;
343 if(mode[0] == 'r') {
344 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
345 } else {
346 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
348 return s->file;
350 fail:
351 g_free(s);
352 return NULL;
355 static const QEMUFileOps socket_read_ops = {
356 .get_fd = socket_get_fd,
357 .get_buffer = socket_get_buffer,
358 .close = socket_close
361 QEMUFile *qemu_fopen_socket(int fd)
363 QEMUFileSocket *s = g_malloc0(sizeof(QEMUFileSocket));
365 s->fd = fd;
366 s->file = qemu_fopen_ops(s, &socket_read_ops);
367 return s->file;
370 QEMUFile *qemu_fopen(const char *filename, const char *mode)
372 QEMUFileStdio *s;
374 if (mode == NULL ||
375 (mode[0] != 'r' && mode[0] != 'w') ||
376 mode[1] != 'b' || mode[2] != 0) {
377 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
378 return NULL;
381 s = g_malloc0(sizeof(QEMUFileStdio));
383 s->stdio_file = fopen(filename, mode);
384 if (!s->stdio_file)
385 goto fail;
387 if(mode[0] == 'w') {
388 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
389 } else {
390 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
392 return s->file;
393 fail:
394 g_free(s);
395 return NULL;
398 static int block_put_buffer(void *opaque, const uint8_t *buf,
399 int64_t pos, int size)
401 bdrv_save_vmstate(opaque, buf, pos, size);
402 return size;
405 static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
407 return bdrv_load_vmstate(opaque, buf, pos, size);
410 static int bdrv_fclose(void *opaque)
412 return bdrv_flush(opaque);
415 static const QEMUFileOps bdrv_read_ops = {
416 .get_buffer = block_get_buffer,
417 .close = bdrv_fclose
420 static const QEMUFileOps bdrv_write_ops = {
421 .put_buffer = block_put_buffer,
422 .close = bdrv_fclose
425 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
427 if (is_writable)
428 return qemu_fopen_ops(bs, &bdrv_write_ops);
429 return qemu_fopen_ops(bs, &bdrv_read_ops);
432 QEMUFile *qemu_fopen_ops(void *opaque, const QEMUFileOps *ops)
434 QEMUFile *f;
436 f = g_malloc0(sizeof(QEMUFile));
438 f->opaque = opaque;
439 f->ops = ops;
440 f->is_write = 0;
442 return f;
445 int qemu_file_get_error(QEMUFile *f)
447 return f->last_error;
450 static void qemu_file_set_error(QEMUFile *f, int ret)
452 f->last_error = ret;
455 /** Flushes QEMUFile buffer
458 static int qemu_fflush(QEMUFile *f)
460 int ret = 0;
462 if (!f->ops->put_buffer)
463 return 0;
465 if (f->is_write && f->buf_index > 0) {
466 ret = f->ops->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
467 if (ret >= 0) {
468 f->buf_offset += f->buf_index;
470 f->buf_index = 0;
472 return ret;
475 static void qemu_fill_buffer(QEMUFile *f)
477 int len;
478 int pending;
480 if (!f->ops->get_buffer)
481 return;
483 if (f->is_write)
484 abort();
486 pending = f->buf_size - f->buf_index;
487 if (pending > 0) {
488 memmove(f->buf, f->buf + f->buf_index, pending);
490 f->buf_index = 0;
491 f->buf_size = pending;
493 len = f->ops->get_buffer(f->opaque, f->buf + pending, f->buf_offset,
494 IO_BUF_SIZE - pending);
495 if (len > 0) {
496 f->buf_size += len;
497 f->buf_offset += len;
498 } else if (len == 0) {
499 qemu_file_set_error(f, -EIO);
500 } else if (len != -EAGAIN)
501 qemu_file_set_error(f, len);
504 int qemu_get_fd(QEMUFile *f)
506 if (f->ops->get_fd) {
507 return f->ops->get_fd(f->opaque);
509 return -1;
512 /** Closes the file
514 * Returns negative error value if any error happened on previous operations or
515 * while closing the file. Returns 0 or positive number on success.
517 * The meaning of return value on success depends on the specific backend
518 * being used.
520 int qemu_fclose(QEMUFile *f)
522 int ret;
523 ret = qemu_fflush(f);
525 if (f->ops->close) {
526 int ret2 = f->ops->close(f->opaque);
527 if (ret >= 0) {
528 ret = ret2;
531 /* If any error was spotted before closing, we should report it
532 * instead of the close() return value.
534 if (f->last_error) {
535 ret = f->last_error;
537 g_free(f);
538 return ret;
541 int qemu_file_put_notify(QEMUFile *f)
543 return f->ops->put_buffer(f->opaque, NULL, 0, 0);
546 void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
548 int l;
550 if (f->last_error) {
551 return;
554 if (f->is_write == 0 && f->buf_index > 0) {
555 fprintf(stderr,
556 "Attempted to write to buffer while read buffer is not empty\n");
557 abort();
560 while (size > 0) {
561 l = IO_BUF_SIZE - f->buf_index;
562 if (l > size)
563 l = size;
564 memcpy(f->buf + f->buf_index, buf, l);
565 f->is_write = 1;
566 f->buf_index += l;
567 buf += l;
568 size -= l;
569 if (f->buf_index >= IO_BUF_SIZE) {
570 int ret = qemu_fflush(f);
571 if (ret < 0) {
572 qemu_file_set_error(f, ret);
573 break;
579 void qemu_put_byte(QEMUFile *f, int v)
581 if (f->last_error) {
582 return;
585 if (f->is_write == 0 && f->buf_index > 0) {
586 fprintf(stderr,
587 "Attempted to write to buffer while read buffer is not empty\n");
588 abort();
591 f->buf[f->buf_index++] = v;
592 f->is_write = 1;
593 if (f->buf_index >= IO_BUF_SIZE) {
594 int ret = qemu_fflush(f);
595 if (ret < 0) {
596 qemu_file_set_error(f, ret);
601 static void qemu_file_skip(QEMUFile *f, int size)
603 if (f->buf_index + size <= f->buf_size) {
604 f->buf_index += size;
608 static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
610 int pending;
611 int index;
613 if (f->is_write) {
614 abort();
617 index = f->buf_index + offset;
618 pending = f->buf_size - index;
619 if (pending < size) {
620 qemu_fill_buffer(f);
621 index = f->buf_index + offset;
622 pending = f->buf_size - index;
625 if (pending <= 0) {
626 return 0;
628 if (size > pending) {
629 size = pending;
632 memcpy(buf, f->buf + index, size);
633 return size;
636 int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
638 int pending = size;
639 int done = 0;
641 while (pending > 0) {
642 int res;
644 res = qemu_peek_buffer(f, buf, pending, 0);
645 if (res == 0) {
646 return done;
648 qemu_file_skip(f, res);
649 buf += res;
650 pending -= res;
651 done += res;
653 return done;
656 static int qemu_peek_byte(QEMUFile *f, int offset)
658 int index = f->buf_index + offset;
660 if (f->is_write) {
661 abort();
664 if (index >= f->buf_size) {
665 qemu_fill_buffer(f);
666 index = f->buf_index + offset;
667 if (index >= f->buf_size) {
668 return 0;
671 return f->buf[index];
674 int qemu_get_byte(QEMUFile *f)
676 int result;
678 result = qemu_peek_byte(f, 0);
679 qemu_file_skip(f, 1);
680 return result;
683 static int64_t qemu_ftell(QEMUFile *f)
685 return f->buf_offset - f->buf_size + f->buf_index;
688 int qemu_file_rate_limit(QEMUFile *f)
690 if (f->ops->rate_limit)
691 return f->ops->rate_limit(f->opaque);
693 return 0;
696 int64_t qemu_file_get_rate_limit(QEMUFile *f)
698 if (f->ops->get_rate_limit)
699 return f->ops->get_rate_limit(f->opaque);
701 return 0;
704 int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
706 /* any failed or completed migration keeps its state to allow probing of
707 * migration data, but has no associated file anymore */
708 if (f && f->ops->set_rate_limit)
709 return f->ops->set_rate_limit(f->opaque, new_rate);
711 return 0;
714 void qemu_put_be16(QEMUFile *f, unsigned int v)
716 qemu_put_byte(f, v >> 8);
717 qemu_put_byte(f, v);
720 void qemu_put_be32(QEMUFile *f, unsigned int v)
722 qemu_put_byte(f, v >> 24);
723 qemu_put_byte(f, v >> 16);
724 qemu_put_byte(f, v >> 8);
725 qemu_put_byte(f, v);
728 void qemu_put_be64(QEMUFile *f, uint64_t v)
730 qemu_put_be32(f, v >> 32);
731 qemu_put_be32(f, v);
734 unsigned int qemu_get_be16(QEMUFile *f)
736 unsigned int v;
737 v = qemu_get_byte(f) << 8;
738 v |= qemu_get_byte(f);
739 return v;
742 unsigned int qemu_get_be32(QEMUFile *f)
744 unsigned int v;
745 v = qemu_get_byte(f) << 24;
746 v |= qemu_get_byte(f) << 16;
747 v |= qemu_get_byte(f) << 8;
748 v |= qemu_get_byte(f);
749 return v;
752 uint64_t qemu_get_be64(QEMUFile *f)
754 uint64_t v;
755 v = (uint64_t)qemu_get_be32(f) << 32;
756 v |= qemu_get_be32(f);
757 return v;
761 /* timer */
763 void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
765 uint64_t expire_time;
767 expire_time = qemu_timer_expire_time_ns(ts);
768 qemu_put_be64(f, expire_time);
771 void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
773 uint64_t expire_time;
775 expire_time = qemu_get_be64(f);
776 if (expire_time != -1) {
777 qemu_mod_timer_ns(ts, expire_time);
778 } else {
779 qemu_del_timer(ts);
784 /* bool */
786 static int get_bool(QEMUFile *f, void *pv, size_t size)
788 bool *v = pv;
789 *v = qemu_get_byte(f);
790 return 0;
793 static void put_bool(QEMUFile *f, void *pv, size_t size)
795 bool *v = pv;
796 qemu_put_byte(f, *v);
799 const VMStateInfo vmstate_info_bool = {
800 .name = "bool",
801 .get = get_bool,
802 .put = put_bool,
805 /* 8 bit int */
807 static int get_int8(QEMUFile *f, void *pv, size_t size)
809 int8_t *v = pv;
810 qemu_get_s8s(f, v);
811 return 0;
814 static void put_int8(QEMUFile *f, void *pv, size_t size)
816 int8_t *v = pv;
817 qemu_put_s8s(f, v);
820 const VMStateInfo vmstate_info_int8 = {
821 .name = "int8",
822 .get = get_int8,
823 .put = put_int8,
826 /* 16 bit int */
828 static int get_int16(QEMUFile *f, void *pv, size_t size)
830 int16_t *v = pv;
831 qemu_get_sbe16s(f, v);
832 return 0;
835 static void put_int16(QEMUFile *f, void *pv, size_t size)
837 int16_t *v = pv;
838 qemu_put_sbe16s(f, v);
841 const VMStateInfo vmstate_info_int16 = {
842 .name = "int16",
843 .get = get_int16,
844 .put = put_int16,
847 /* 32 bit int */
849 static int get_int32(QEMUFile *f, void *pv, size_t size)
851 int32_t *v = pv;
852 qemu_get_sbe32s(f, v);
853 return 0;
856 static void put_int32(QEMUFile *f, void *pv, size_t size)
858 int32_t *v = pv;
859 qemu_put_sbe32s(f, v);
862 const VMStateInfo vmstate_info_int32 = {
863 .name = "int32",
864 .get = get_int32,
865 .put = put_int32,
868 /* 32 bit int. See that the received value is the same than the one
869 in the field */
871 static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
873 int32_t *v = pv;
874 int32_t v2;
875 qemu_get_sbe32s(f, &v2);
877 if (*v == v2)
878 return 0;
879 return -EINVAL;
882 const VMStateInfo vmstate_info_int32_equal = {
883 .name = "int32 equal",
884 .get = get_int32_equal,
885 .put = put_int32,
888 /* 32 bit int. See that the received value is the less or the same
889 than the one in the field */
891 static int get_int32_le(QEMUFile *f, void *pv, size_t size)
893 int32_t *old = pv;
894 int32_t new;
895 qemu_get_sbe32s(f, &new);
897 if (*old <= new)
898 return 0;
899 return -EINVAL;
902 const VMStateInfo vmstate_info_int32_le = {
903 .name = "int32 equal",
904 .get = get_int32_le,
905 .put = put_int32,
908 /* 64 bit int */
910 static int get_int64(QEMUFile *f, void *pv, size_t size)
912 int64_t *v = pv;
913 qemu_get_sbe64s(f, v);
914 return 0;
917 static void put_int64(QEMUFile *f, void *pv, size_t size)
919 int64_t *v = pv;
920 qemu_put_sbe64s(f, v);
923 const VMStateInfo vmstate_info_int64 = {
924 .name = "int64",
925 .get = get_int64,
926 .put = put_int64,
929 /* 8 bit unsigned int */
931 static int get_uint8(QEMUFile *f, void *pv, size_t size)
933 uint8_t *v = pv;
934 qemu_get_8s(f, v);
935 return 0;
938 static void put_uint8(QEMUFile *f, void *pv, size_t size)
940 uint8_t *v = pv;
941 qemu_put_8s(f, v);
944 const VMStateInfo vmstate_info_uint8 = {
945 .name = "uint8",
946 .get = get_uint8,
947 .put = put_uint8,
950 /* 16 bit unsigned int */
952 static int get_uint16(QEMUFile *f, void *pv, size_t size)
954 uint16_t *v = pv;
955 qemu_get_be16s(f, v);
956 return 0;
959 static void put_uint16(QEMUFile *f, void *pv, size_t size)
961 uint16_t *v = pv;
962 qemu_put_be16s(f, v);
965 const VMStateInfo vmstate_info_uint16 = {
966 .name = "uint16",
967 .get = get_uint16,
968 .put = put_uint16,
971 /* 32 bit unsigned int */
973 static int get_uint32(QEMUFile *f, void *pv, size_t size)
975 uint32_t *v = pv;
976 qemu_get_be32s(f, v);
977 return 0;
980 static void put_uint32(QEMUFile *f, void *pv, size_t size)
982 uint32_t *v = pv;
983 qemu_put_be32s(f, v);
986 const VMStateInfo vmstate_info_uint32 = {
987 .name = "uint32",
988 .get = get_uint32,
989 .put = put_uint32,
992 /* 32 bit uint. See that the received value is the same than the one
993 in the field */
995 static int get_uint32_equal(QEMUFile *f, void *pv, size_t size)
997 uint32_t *v = pv;
998 uint32_t v2;
999 qemu_get_be32s(f, &v2);
1001 if (*v == v2) {
1002 return 0;
1004 return -EINVAL;
1007 const VMStateInfo vmstate_info_uint32_equal = {
1008 .name = "uint32 equal",
1009 .get = get_uint32_equal,
1010 .put = put_uint32,
1013 /* 64 bit unsigned int */
1015 static int get_uint64(QEMUFile *f, void *pv, size_t size)
1017 uint64_t *v = pv;
1018 qemu_get_be64s(f, v);
1019 return 0;
1022 static void put_uint64(QEMUFile *f, void *pv, size_t size)
1024 uint64_t *v = pv;
1025 qemu_put_be64s(f, v);
1028 const VMStateInfo vmstate_info_uint64 = {
1029 .name = "uint64",
1030 .get = get_uint64,
1031 .put = put_uint64,
1034 /* 8 bit int. See that the received value is the same than the one
1035 in the field */
1037 static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
1039 uint8_t *v = pv;
1040 uint8_t v2;
1041 qemu_get_8s(f, &v2);
1043 if (*v == v2)
1044 return 0;
1045 return -EINVAL;
1048 const VMStateInfo vmstate_info_uint8_equal = {
1049 .name = "uint8 equal",
1050 .get = get_uint8_equal,
1051 .put = put_uint8,
1054 /* 16 bit unsigned int int. See that the received value is the same than the one
1055 in the field */
1057 static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
1059 uint16_t *v = pv;
1060 uint16_t v2;
1061 qemu_get_be16s(f, &v2);
1063 if (*v == v2)
1064 return 0;
1065 return -EINVAL;
1068 const VMStateInfo vmstate_info_uint16_equal = {
1069 .name = "uint16 equal",
1070 .get = get_uint16_equal,
1071 .put = put_uint16,
1074 /* timers */
1076 static int get_timer(QEMUFile *f, void *pv, size_t size)
1078 QEMUTimer *v = pv;
1079 qemu_get_timer(f, v);
1080 return 0;
1083 static void put_timer(QEMUFile *f, void *pv, size_t size)
1085 QEMUTimer *v = pv;
1086 qemu_put_timer(f, v);
1089 const VMStateInfo vmstate_info_timer = {
1090 .name = "timer",
1091 .get = get_timer,
1092 .put = put_timer,
1095 /* uint8_t buffers */
1097 static int get_buffer(QEMUFile *f, void *pv, size_t size)
1099 uint8_t *v = pv;
1100 qemu_get_buffer(f, v, size);
1101 return 0;
1104 static void put_buffer(QEMUFile *f, void *pv, size_t size)
1106 uint8_t *v = pv;
1107 qemu_put_buffer(f, v, size);
1110 const VMStateInfo vmstate_info_buffer = {
1111 .name = "buffer",
1112 .get = get_buffer,
1113 .put = put_buffer,
1116 /* unused buffers: space that was used for some fields that are
1117 not useful anymore */
1119 static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
1121 uint8_t buf[1024];
1122 int block_len;
1124 while (size > 0) {
1125 block_len = MIN(sizeof(buf), size);
1126 size -= block_len;
1127 qemu_get_buffer(f, buf, block_len);
1129 return 0;
1132 static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
1134 static const uint8_t buf[1024];
1135 int block_len;
1137 while (size > 0) {
1138 block_len = MIN(sizeof(buf), size);
1139 size -= block_len;
1140 qemu_put_buffer(f, buf, block_len);
1144 const VMStateInfo vmstate_info_unused_buffer = {
1145 .name = "unused_buffer",
1146 .get = get_unused_buffer,
1147 .put = put_unused_buffer,
1150 /* bitmaps (as defined by bitmap.h). Note that size here is the size
1151 * of the bitmap in bits. The on-the-wire format of a bitmap is 64
1152 * bit words with the bits in big endian order. The in-memory format
1153 * is an array of 'unsigned long', which may be either 32 or 64 bits.
1155 /* This is the number of 64 bit words sent over the wire */
1156 #define BITS_TO_U64S(nr) DIV_ROUND_UP(nr, 64)
1157 static int get_bitmap(QEMUFile *f, void *pv, size_t size)
1159 unsigned long *bmp = pv;
1160 int i, idx = 0;
1161 for (i = 0; i < BITS_TO_U64S(size); i++) {
1162 uint64_t w = qemu_get_be64(f);
1163 bmp[idx++] = w;
1164 if (sizeof(unsigned long) == 4 && idx < BITS_TO_LONGS(size)) {
1165 bmp[idx++] = w >> 32;
1168 return 0;
1171 static void put_bitmap(QEMUFile *f, void *pv, size_t size)
1173 unsigned long *bmp = pv;
1174 int i, idx = 0;
1175 for (i = 0; i < BITS_TO_U64S(size); i++) {
1176 uint64_t w = bmp[idx++];
1177 if (sizeof(unsigned long) == 4 && idx < BITS_TO_LONGS(size)) {
1178 w |= ((uint64_t)bmp[idx++]) << 32;
1180 qemu_put_be64(f, w);
1184 const VMStateInfo vmstate_info_bitmap = {
1185 .name = "bitmap",
1186 .get = get_bitmap,
1187 .put = put_bitmap,
1190 typedef struct CompatEntry {
1191 char idstr[256];
1192 int instance_id;
1193 } CompatEntry;
1195 typedef struct SaveStateEntry {
1196 QTAILQ_ENTRY(SaveStateEntry) entry;
1197 char idstr[256];
1198 int instance_id;
1199 int alias_id;
1200 int version_id;
1201 int section_id;
1202 SaveVMHandlers *ops;
1203 const VMStateDescription *vmsd;
1204 void *opaque;
1205 CompatEntry *compat;
1206 int no_migrate;
1207 int is_ram;
1208 } SaveStateEntry;
1211 static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1212 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
1213 static int global_section_id;
1215 static int calculate_new_instance_id(const char *idstr)
1217 SaveStateEntry *se;
1218 int instance_id = 0;
1220 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1221 if (strcmp(idstr, se->idstr) == 0
1222 && instance_id <= se->instance_id) {
1223 instance_id = se->instance_id + 1;
1226 return instance_id;
1229 static int calculate_compat_instance_id(const char *idstr)
1231 SaveStateEntry *se;
1232 int instance_id = 0;
1234 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1235 if (!se->compat)
1236 continue;
1238 if (strcmp(idstr, se->compat->idstr) == 0
1239 && instance_id <= se->compat->instance_id) {
1240 instance_id = se->compat->instance_id + 1;
1243 return instance_id;
1246 /* TODO: Individual devices generally have very little idea about the rest
1247 of the system, so instance_id should be removed/replaced.
1248 Meanwhile pass -1 as instance_id if you do not already have a clearly
1249 distinguishing id for all instances of your device class. */
1250 int register_savevm_live(DeviceState *dev,
1251 const char *idstr,
1252 int instance_id,
1253 int version_id,
1254 SaveVMHandlers *ops,
1255 void *opaque)
1257 SaveStateEntry *se;
1259 se = g_malloc0(sizeof(SaveStateEntry));
1260 se->version_id = version_id;
1261 se->section_id = global_section_id++;
1262 se->ops = ops;
1263 se->opaque = opaque;
1264 se->vmsd = NULL;
1265 se->no_migrate = 0;
1266 /* if this is a live_savem then set is_ram */
1267 if (ops->save_live_setup != NULL) {
1268 se->is_ram = 1;
1271 if (dev) {
1272 char *id = qdev_get_dev_path(dev);
1273 if (id) {
1274 pstrcpy(se->idstr, sizeof(se->idstr), id);
1275 pstrcat(se->idstr, sizeof(se->idstr), "/");
1276 g_free(id);
1278 se->compat = g_malloc0(sizeof(CompatEntry));
1279 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1280 se->compat->instance_id = instance_id == -1 ?
1281 calculate_compat_instance_id(idstr) : instance_id;
1282 instance_id = -1;
1285 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1287 if (instance_id == -1) {
1288 se->instance_id = calculate_new_instance_id(se->idstr);
1289 } else {
1290 se->instance_id = instance_id;
1292 assert(!se->compat || se->instance_id == 0);
1293 /* add at the end of list */
1294 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
1295 return 0;
1298 int register_savevm(DeviceState *dev,
1299 const char *idstr,
1300 int instance_id,
1301 int version_id,
1302 SaveStateHandler *save_state,
1303 LoadStateHandler *load_state,
1304 void *opaque)
1306 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
1307 ops->save_state = save_state;
1308 ops->load_state = load_state;
1309 return register_savevm_live(dev, idstr, instance_id, version_id,
1310 ops, opaque);
1313 void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
1315 SaveStateEntry *se, *new_se;
1316 char id[256] = "";
1318 if (dev) {
1319 char *path = qdev_get_dev_path(dev);
1320 if (path) {
1321 pstrcpy(id, sizeof(id), path);
1322 pstrcat(id, sizeof(id), "/");
1323 g_free(path);
1326 pstrcat(id, sizeof(id), idstr);
1328 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1329 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
1330 QTAILQ_REMOVE(&savevm_handlers, se, entry);
1331 if (se->compat) {
1332 g_free(se->compat);
1334 g_free(se->ops);
1335 g_free(se);
1340 int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
1341 const VMStateDescription *vmsd,
1342 void *opaque, int alias_id,
1343 int required_for_version)
1345 SaveStateEntry *se;
1347 /* If this triggers, alias support can be dropped for the vmsd. */
1348 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1350 se = g_malloc0(sizeof(SaveStateEntry));
1351 se->version_id = vmsd->version_id;
1352 se->section_id = global_section_id++;
1353 se->opaque = opaque;
1354 se->vmsd = vmsd;
1355 se->alias_id = alias_id;
1356 se->no_migrate = vmsd->unmigratable;
1358 if (dev) {
1359 char *id = qdev_get_dev_path(dev);
1360 if (id) {
1361 pstrcpy(se->idstr, sizeof(se->idstr), id);
1362 pstrcat(se->idstr, sizeof(se->idstr), "/");
1363 g_free(id);
1365 se->compat = g_malloc0(sizeof(CompatEntry));
1366 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1367 se->compat->instance_id = instance_id == -1 ?
1368 calculate_compat_instance_id(vmsd->name) : instance_id;
1369 instance_id = -1;
1372 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1374 if (instance_id == -1) {
1375 se->instance_id = calculate_new_instance_id(se->idstr);
1376 } else {
1377 se->instance_id = instance_id;
1379 assert(!se->compat || se->instance_id == 0);
1380 /* add at the end of list */
1381 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
1382 return 0;
1385 int vmstate_register(DeviceState *dev, int instance_id,
1386 const VMStateDescription *vmsd, void *opaque)
1388 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1389 opaque, -1, 0);
1392 void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1393 void *opaque)
1395 SaveStateEntry *se, *new_se;
1397 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1398 if (se->vmsd == vmsd && se->opaque == opaque) {
1399 QTAILQ_REMOVE(&savevm_handlers, se, entry);
1400 if (se->compat) {
1401 g_free(se->compat);
1403 g_free(se);
1408 static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1409 void *opaque);
1410 static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1411 void *opaque);
1413 int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1414 void *opaque, int version_id)
1416 VMStateField *field = vmsd->fields;
1417 int ret;
1419 if (version_id > vmsd->version_id) {
1420 return -EINVAL;
1422 if (version_id < vmsd->minimum_version_id_old) {
1423 return -EINVAL;
1425 if (version_id < vmsd->minimum_version_id) {
1426 return vmsd->load_state_old(f, opaque, version_id);
1428 if (vmsd->pre_load) {
1429 int ret = vmsd->pre_load(opaque);
1430 if (ret)
1431 return ret;
1433 while(field->name) {
1434 if ((field->field_exists &&
1435 field->field_exists(opaque, version_id)) ||
1436 (!field->field_exists &&
1437 field->version_id <= version_id)) {
1438 void *base_addr = opaque + field->offset;
1439 int i, n_elems = 1;
1440 int size = field->size;
1442 if (field->flags & VMS_VBUFFER) {
1443 size = *(int32_t *)(opaque+field->size_offset);
1444 if (field->flags & VMS_MULTIPLY) {
1445 size *= field->size;
1448 if (field->flags & VMS_ARRAY) {
1449 n_elems = field->num;
1450 } else if (field->flags & VMS_VARRAY_INT32) {
1451 n_elems = *(int32_t *)(opaque+field->num_offset);
1452 } else if (field->flags & VMS_VARRAY_UINT32) {
1453 n_elems = *(uint32_t *)(opaque+field->num_offset);
1454 } else if (field->flags & VMS_VARRAY_UINT16) {
1455 n_elems = *(uint16_t *)(opaque+field->num_offset);
1456 } else if (field->flags & VMS_VARRAY_UINT8) {
1457 n_elems = *(uint8_t *)(opaque+field->num_offset);
1459 if (field->flags & VMS_POINTER) {
1460 base_addr = *(void **)base_addr + field->start;
1462 for (i = 0; i < n_elems; i++) {
1463 void *addr = base_addr + size * i;
1465 if (field->flags & VMS_ARRAY_OF_POINTER) {
1466 addr = *(void **)addr;
1468 if (field->flags & VMS_STRUCT) {
1469 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
1470 } else {
1471 ret = field->info->get(f, addr, size);
1474 if (ret < 0) {
1475 return ret;
1479 field++;
1481 ret = vmstate_subsection_load(f, vmsd, opaque);
1482 if (ret != 0) {
1483 return ret;
1485 if (vmsd->post_load) {
1486 return vmsd->post_load(opaque, version_id);
1488 return 0;
1491 void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
1492 void *opaque)
1494 VMStateField *field = vmsd->fields;
1496 if (vmsd->pre_save) {
1497 vmsd->pre_save(opaque);
1499 while(field->name) {
1500 if (!field->field_exists ||
1501 field->field_exists(opaque, vmsd->version_id)) {
1502 void *base_addr = opaque + field->offset;
1503 int i, n_elems = 1;
1504 int size = field->size;
1506 if (field->flags & VMS_VBUFFER) {
1507 size = *(int32_t *)(opaque+field->size_offset);
1508 if (field->flags & VMS_MULTIPLY) {
1509 size *= field->size;
1512 if (field->flags & VMS_ARRAY) {
1513 n_elems = field->num;
1514 } else if (field->flags & VMS_VARRAY_INT32) {
1515 n_elems = *(int32_t *)(opaque+field->num_offset);
1516 } else if (field->flags & VMS_VARRAY_UINT32) {
1517 n_elems = *(uint32_t *)(opaque+field->num_offset);
1518 } else if (field->flags & VMS_VARRAY_UINT16) {
1519 n_elems = *(uint16_t *)(opaque+field->num_offset);
1520 } else if (field->flags & VMS_VARRAY_UINT8) {
1521 n_elems = *(uint8_t *)(opaque+field->num_offset);
1523 if (field->flags & VMS_POINTER) {
1524 base_addr = *(void **)base_addr + field->start;
1526 for (i = 0; i < n_elems; i++) {
1527 void *addr = base_addr + size * i;
1529 if (field->flags & VMS_ARRAY_OF_POINTER) {
1530 addr = *(void **)addr;
1532 if (field->flags & VMS_STRUCT) {
1533 vmstate_save_state(f, field->vmsd, addr);
1534 } else {
1535 field->info->put(f, addr, size);
1539 field++;
1541 vmstate_subsection_save(f, vmsd, opaque);
1544 static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1546 if (!se->vmsd) { /* Old style */
1547 return se->ops->load_state(f, se->opaque, version_id);
1549 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
1552 static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
1554 if (!se->vmsd) { /* Old style */
1555 se->ops->save_state(f, se->opaque);
1556 return;
1558 vmstate_save_state(f,se->vmsd, se->opaque);
1561 #define QEMU_VM_FILE_MAGIC 0x5145564d
1562 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1563 #define QEMU_VM_FILE_VERSION 0x00000003
1565 #define QEMU_VM_EOF 0x00
1566 #define QEMU_VM_SECTION_START 0x01
1567 #define QEMU_VM_SECTION_PART 0x02
1568 #define QEMU_VM_SECTION_END 0x03
1569 #define QEMU_VM_SECTION_FULL 0x04
1570 #define QEMU_VM_SUBSECTION 0x05
1572 bool qemu_savevm_state_blocked(Error **errp)
1574 SaveStateEntry *se;
1576 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1577 if (se->no_migrate) {
1578 error_set(errp, QERR_MIGRATION_NOT_SUPPORTED, se->idstr);
1579 return true;
1582 return false;
1585 int qemu_savevm_state_begin(QEMUFile *f,
1586 const MigrationParams *params)
1588 SaveStateEntry *se;
1589 int ret;
1591 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1592 if (!se->ops || !se->ops->set_params) {
1593 continue;
1595 se->ops->set_params(params, se->opaque);
1598 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1599 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1601 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1602 int len;
1604 if (!se->ops || !se->ops->save_live_setup) {
1605 continue;
1607 if (se->ops && se->ops->is_active) {
1608 if (!se->ops->is_active(se->opaque)) {
1609 continue;
1612 /* Section type */
1613 qemu_put_byte(f, QEMU_VM_SECTION_START);
1614 qemu_put_be32(f, se->section_id);
1616 /* ID string */
1617 len = strlen(se->idstr);
1618 qemu_put_byte(f, len);
1619 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1621 qemu_put_be32(f, se->instance_id);
1622 qemu_put_be32(f, se->version_id);
1624 ret = se->ops->save_live_setup(f, se->opaque);
1625 if (ret < 0) {
1626 qemu_savevm_state_cancel(f);
1627 return ret;
1630 ret = qemu_file_get_error(f);
1631 if (ret != 0) {
1632 qemu_savevm_state_cancel(f);
1635 return ret;
1640 * this function has three return values:
1641 * negative: there was one error, and we have -errno.
1642 * 0 : We haven't finished, caller have to go again
1643 * 1 : We have finished, we can go to complete phase
1645 int qemu_savevm_state_iterate(QEMUFile *f)
1647 SaveStateEntry *se;
1648 int ret = 1;
1650 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1651 if (!se->ops || !se->ops->save_live_iterate) {
1652 continue;
1654 if (se->ops && se->ops->is_active) {
1655 if (!se->ops->is_active(se->opaque)) {
1656 continue;
1659 if (qemu_file_rate_limit(f)) {
1660 return 0;
1662 trace_savevm_section_start();
1663 /* Section type */
1664 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1665 qemu_put_be32(f, se->section_id);
1667 ret = se->ops->save_live_iterate(f, se->opaque);
1668 trace_savevm_section_end(se->section_id);
1670 if (ret <= 0) {
1671 /* Do not proceed to the next vmstate before this one reported
1672 completion of the current stage. This serializes the migration
1673 and reduces the probability that a faster changing state is
1674 synchronized over and over again. */
1675 break;
1678 if (ret != 0) {
1679 return ret;
1681 ret = qemu_file_get_error(f);
1682 if (ret != 0) {
1683 qemu_savevm_state_cancel(f);
1685 return ret;
1688 int qemu_savevm_state_complete(QEMUFile *f)
1690 SaveStateEntry *se;
1691 int ret;
1693 cpu_synchronize_all_states();
1695 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1696 if (!se->ops || !se->ops->save_live_complete) {
1697 continue;
1699 if (se->ops && se->ops->is_active) {
1700 if (!se->ops->is_active(se->opaque)) {
1701 continue;
1704 trace_savevm_section_start();
1705 /* Section type */
1706 qemu_put_byte(f, QEMU_VM_SECTION_END);
1707 qemu_put_be32(f, se->section_id);
1709 ret = se->ops->save_live_complete(f, se->opaque);
1710 trace_savevm_section_end(se->section_id);
1711 if (ret < 0) {
1712 return ret;
1716 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1717 int len;
1719 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1720 continue;
1722 trace_savevm_section_start();
1723 /* Section type */
1724 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1725 qemu_put_be32(f, se->section_id);
1727 /* ID string */
1728 len = strlen(se->idstr);
1729 qemu_put_byte(f, len);
1730 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1732 qemu_put_be32(f, se->instance_id);
1733 qemu_put_be32(f, se->version_id);
1735 vmstate_save(f, se);
1736 trace_savevm_section_end(se->section_id);
1739 qemu_put_byte(f, QEMU_VM_EOF);
1741 return qemu_file_get_error(f);
1744 void qemu_savevm_state_cancel(QEMUFile *f)
1746 SaveStateEntry *se;
1748 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1749 if (se->ops && se->ops->cancel) {
1750 se->ops->cancel(se->opaque);
1755 static int qemu_savevm_state(QEMUFile *f)
1757 int ret;
1758 MigrationParams params = {
1759 .blk = 0,
1760 .shared = 0
1763 if (qemu_savevm_state_blocked(NULL)) {
1764 ret = -EINVAL;
1765 goto out;
1768 ret = qemu_savevm_state_begin(f, &params);
1769 if (ret < 0)
1770 goto out;
1772 do {
1773 ret = qemu_savevm_state_iterate(f);
1774 if (ret < 0)
1775 goto out;
1776 } while (ret == 0);
1778 ret = qemu_savevm_state_complete(f);
1780 out:
1781 if (ret == 0) {
1782 ret = qemu_file_get_error(f);
1785 return ret;
1788 static int qemu_save_device_state(QEMUFile *f)
1790 SaveStateEntry *se;
1792 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1793 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1795 cpu_synchronize_all_states();
1797 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1798 int len;
1800 if (se->is_ram) {
1801 continue;
1803 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1804 continue;
1807 /* Section type */
1808 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1809 qemu_put_be32(f, se->section_id);
1811 /* ID string */
1812 len = strlen(se->idstr);
1813 qemu_put_byte(f, len);
1814 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1816 qemu_put_be32(f, se->instance_id);
1817 qemu_put_be32(f, se->version_id);
1819 vmstate_save(f, se);
1822 qemu_put_byte(f, QEMU_VM_EOF);
1824 return qemu_file_get_error(f);
1827 static SaveStateEntry *find_se(const char *idstr, int instance_id)
1829 SaveStateEntry *se;
1831 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1832 if (!strcmp(se->idstr, idstr) &&
1833 (instance_id == se->instance_id ||
1834 instance_id == se->alias_id))
1835 return se;
1836 /* Migrating from an older version? */
1837 if (strstr(se->idstr, idstr) && se->compat) {
1838 if (!strcmp(se->compat->idstr, idstr) &&
1839 (instance_id == se->compat->instance_id ||
1840 instance_id == se->alias_id))
1841 return se;
1844 return NULL;
1847 static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1849 while(sub && sub->needed) {
1850 if (strcmp(idstr, sub->vmsd->name) == 0) {
1851 return sub->vmsd;
1853 sub++;
1855 return NULL;
1858 static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1859 void *opaque)
1861 while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
1862 char idstr[256];
1863 int ret;
1864 uint8_t version_id, len, size;
1865 const VMStateDescription *sub_vmsd;
1867 len = qemu_peek_byte(f, 1);
1868 if (len < strlen(vmsd->name) + 1) {
1869 /* subsection name has be be "section_name/a" */
1870 return 0;
1872 size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
1873 if (size != len) {
1874 return 0;
1876 idstr[size] = 0;
1878 if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
1879 /* it don't have a valid subsection name */
1880 return 0;
1882 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
1883 if (sub_vmsd == NULL) {
1884 return -ENOENT;
1886 qemu_file_skip(f, 1); /* subsection */
1887 qemu_file_skip(f, 1); /* len */
1888 qemu_file_skip(f, len); /* idstr */
1889 version_id = qemu_get_be32(f);
1891 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1892 if (ret) {
1893 return ret;
1896 return 0;
1899 static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1900 void *opaque)
1902 const VMStateSubsection *sub = vmsd->subsections;
1904 while (sub && sub->needed) {
1905 if (sub->needed(opaque)) {
1906 const VMStateDescription *vmsd = sub->vmsd;
1907 uint8_t len;
1909 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1910 len = strlen(vmsd->name);
1911 qemu_put_byte(f, len);
1912 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1913 qemu_put_be32(f, vmsd->version_id);
1914 vmstate_save_state(f, vmsd, opaque);
1916 sub++;
1920 typedef struct LoadStateEntry {
1921 QLIST_ENTRY(LoadStateEntry) entry;
1922 SaveStateEntry *se;
1923 int section_id;
1924 int version_id;
1925 } LoadStateEntry;
1927 int qemu_loadvm_state(QEMUFile *f)
1929 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1930 QLIST_HEAD_INITIALIZER(loadvm_handlers);
1931 LoadStateEntry *le, *new_le;
1932 uint8_t section_type;
1933 unsigned int v;
1934 int ret;
1936 if (qemu_savevm_state_blocked(NULL)) {
1937 return -EINVAL;
1940 v = qemu_get_be32(f);
1941 if (v != QEMU_VM_FILE_MAGIC)
1942 return -EINVAL;
1944 v = qemu_get_be32(f);
1945 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1946 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1947 return -ENOTSUP;
1949 if (v != QEMU_VM_FILE_VERSION)
1950 return -ENOTSUP;
1952 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1953 uint32_t instance_id, version_id, section_id;
1954 SaveStateEntry *se;
1955 char idstr[257];
1956 int len;
1958 switch (section_type) {
1959 case QEMU_VM_SECTION_START:
1960 case QEMU_VM_SECTION_FULL:
1961 /* Read section start */
1962 section_id = qemu_get_be32(f);
1963 len = qemu_get_byte(f);
1964 qemu_get_buffer(f, (uint8_t *)idstr, len);
1965 idstr[len] = 0;
1966 instance_id = qemu_get_be32(f);
1967 version_id = qemu_get_be32(f);
1969 /* Find savevm section */
1970 se = find_se(idstr, instance_id);
1971 if (se == NULL) {
1972 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1973 ret = -EINVAL;
1974 goto out;
1977 /* Validate version */
1978 if (version_id > se->version_id) {
1979 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1980 version_id, idstr, se->version_id);
1981 ret = -EINVAL;
1982 goto out;
1985 /* Add entry */
1986 le = g_malloc0(sizeof(*le));
1988 le->se = se;
1989 le->section_id = section_id;
1990 le->version_id = version_id;
1991 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
1993 ret = vmstate_load(f, le->se, le->version_id);
1994 if (ret < 0) {
1995 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1996 instance_id, idstr);
1997 goto out;
1999 break;
2000 case QEMU_VM_SECTION_PART:
2001 case QEMU_VM_SECTION_END:
2002 section_id = qemu_get_be32(f);
2004 QLIST_FOREACH(le, &loadvm_handlers, entry) {
2005 if (le->section_id == section_id) {
2006 break;
2009 if (le == NULL) {
2010 fprintf(stderr, "Unknown savevm section %d\n", section_id);
2011 ret = -EINVAL;
2012 goto out;
2015 ret = vmstate_load(f, le->se, le->version_id);
2016 if (ret < 0) {
2017 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
2018 section_id);
2019 goto out;
2021 break;
2022 default:
2023 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
2024 ret = -EINVAL;
2025 goto out;
2029 cpu_synchronize_all_post_init();
2031 ret = 0;
2033 out:
2034 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
2035 QLIST_REMOVE(le, entry);
2036 g_free(le);
2039 if (ret == 0) {
2040 ret = qemu_file_get_error(f);
2043 return ret;
2046 static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
2047 const char *name)
2049 QEMUSnapshotInfo *sn_tab, *sn;
2050 int nb_sns, i, ret;
2052 ret = -ENOENT;
2053 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2054 if (nb_sns < 0)
2055 return ret;
2056 for(i = 0; i < nb_sns; i++) {
2057 sn = &sn_tab[i];
2058 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
2059 *sn_info = *sn;
2060 ret = 0;
2061 break;
2064 g_free(sn_tab);
2065 return ret;
2069 * Deletes snapshots of a given name in all opened images.
2071 static int del_existing_snapshots(Monitor *mon, const char *name)
2073 BlockDriverState *bs;
2074 QEMUSnapshotInfo sn1, *snapshot = &sn1;
2075 int ret;
2077 bs = NULL;
2078 while ((bs = bdrv_next(bs))) {
2079 if (bdrv_can_snapshot(bs) &&
2080 bdrv_snapshot_find(bs, snapshot, name) >= 0)
2082 ret = bdrv_snapshot_delete(bs, name);
2083 if (ret < 0) {
2084 monitor_printf(mon,
2085 "Error while deleting snapshot on '%s'\n",
2086 bdrv_get_device_name(bs));
2087 return -1;
2092 return 0;
2095 void do_savevm(Monitor *mon, const QDict *qdict)
2097 BlockDriverState *bs, *bs1;
2098 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
2099 int ret;
2100 QEMUFile *f;
2101 int saved_vm_running;
2102 uint64_t vm_state_size;
2103 #ifdef _WIN32
2104 struct _timeb tb;
2105 struct tm *ptm;
2106 #else
2107 struct timeval tv;
2108 struct tm tm;
2109 #endif
2110 const char *name = qdict_get_try_str(qdict, "name");
2112 /* Verify if there is a device that doesn't support snapshots and is writable */
2113 bs = NULL;
2114 while ((bs = bdrv_next(bs))) {
2116 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
2117 continue;
2120 if (!bdrv_can_snapshot(bs)) {
2121 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
2122 bdrv_get_device_name(bs));
2123 return;
2127 bs = bdrv_snapshots();
2128 if (!bs) {
2129 monitor_printf(mon, "No block device can accept snapshots\n");
2130 return;
2133 saved_vm_running = runstate_is_running();
2134 vm_stop(RUN_STATE_SAVE_VM);
2136 memset(sn, 0, sizeof(*sn));
2138 /* fill auxiliary fields */
2139 #ifdef _WIN32
2140 _ftime(&tb);
2141 sn->date_sec = tb.time;
2142 sn->date_nsec = tb.millitm * 1000000;
2143 #else
2144 gettimeofday(&tv, NULL);
2145 sn->date_sec = tv.tv_sec;
2146 sn->date_nsec = tv.tv_usec * 1000;
2147 #endif
2148 sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
2150 if (name) {
2151 ret = bdrv_snapshot_find(bs, old_sn, name);
2152 if (ret >= 0) {
2153 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2154 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2155 } else {
2156 pstrcpy(sn->name, sizeof(sn->name), name);
2158 } else {
2159 #ifdef _WIN32
2160 time_t t = tb.time;
2161 ptm = localtime(&t);
2162 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
2163 #else
2164 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2165 localtime_r((const time_t *)&tv.tv_sec, &tm);
2166 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2167 #endif
2170 /* Delete old snapshots of the same name */
2171 if (name && del_existing_snapshots(mon, name) < 0) {
2172 goto the_end;
2175 /* save the VM state */
2176 f = qemu_fopen_bdrv(bs, 1);
2177 if (!f) {
2178 monitor_printf(mon, "Could not open VM state file\n");
2179 goto the_end;
2181 ret = qemu_savevm_state(f);
2182 vm_state_size = qemu_ftell(f);
2183 qemu_fclose(f);
2184 if (ret < 0) {
2185 monitor_printf(mon, "Error %d while writing VM\n", ret);
2186 goto the_end;
2189 /* create the snapshots */
2191 bs1 = NULL;
2192 while ((bs1 = bdrv_next(bs1))) {
2193 if (bdrv_can_snapshot(bs1)) {
2194 /* Write VM state size only to the image that contains the state */
2195 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
2196 ret = bdrv_snapshot_create(bs1, sn);
2197 if (ret < 0) {
2198 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
2199 bdrv_get_device_name(bs1));
2204 the_end:
2205 if (saved_vm_running)
2206 vm_start();
2209 void qmp_xen_save_devices_state(const char *filename, Error **errp)
2211 QEMUFile *f;
2212 int saved_vm_running;
2213 int ret;
2215 saved_vm_running = runstate_is_running();
2216 vm_stop(RUN_STATE_SAVE_VM);
2218 f = qemu_fopen(filename, "wb");
2219 if (!f) {
2220 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
2221 goto the_end;
2223 ret = qemu_save_device_state(f);
2224 qemu_fclose(f);
2225 if (ret < 0) {
2226 error_set(errp, QERR_IO_ERROR);
2229 the_end:
2230 if (saved_vm_running)
2231 vm_start();
2234 int load_vmstate(const char *name)
2236 BlockDriverState *bs, *bs_vm_state;
2237 QEMUSnapshotInfo sn;
2238 QEMUFile *f;
2239 int ret;
2241 bs_vm_state = bdrv_snapshots();
2242 if (!bs_vm_state) {
2243 error_report("No block device supports snapshots");
2244 return -ENOTSUP;
2247 /* Don't even try to load empty VM states */
2248 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2249 if (ret < 0) {
2250 return ret;
2251 } else if (sn.vm_state_size == 0) {
2252 error_report("This is a disk-only snapshot. Revert to it offline "
2253 "using qemu-img.");
2254 return -EINVAL;
2257 /* Verify if there is any device that doesn't support snapshots and is
2258 writable and check if the requested snapshot is available too. */
2259 bs = NULL;
2260 while ((bs = bdrv_next(bs))) {
2262 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
2263 continue;
2266 if (!bdrv_can_snapshot(bs)) {
2267 error_report("Device '%s' is writable but does not support snapshots.",
2268 bdrv_get_device_name(bs));
2269 return -ENOTSUP;
2272 ret = bdrv_snapshot_find(bs, &sn, name);
2273 if (ret < 0) {
2274 error_report("Device '%s' does not have the requested snapshot '%s'",
2275 bdrv_get_device_name(bs), name);
2276 return ret;
2280 /* Flush all IO requests so they don't interfere with the new state. */
2281 bdrv_drain_all();
2283 bs = NULL;
2284 while ((bs = bdrv_next(bs))) {
2285 if (bdrv_can_snapshot(bs)) {
2286 ret = bdrv_snapshot_goto(bs, name);
2287 if (ret < 0) {
2288 error_report("Error %d while activating snapshot '%s' on '%s'",
2289 ret, name, bdrv_get_device_name(bs));
2290 return ret;
2295 /* restore the VM state */
2296 f = qemu_fopen_bdrv(bs_vm_state, 0);
2297 if (!f) {
2298 error_report("Could not open VM state file");
2299 return -EINVAL;
2302 qemu_system_reset(VMRESET_SILENT);
2303 ret = qemu_loadvm_state(f);
2305 qemu_fclose(f);
2306 if (ret < 0) {
2307 error_report("Error %d while loading VM state", ret);
2308 return ret;
2311 return 0;
2314 void do_delvm(Monitor *mon, const QDict *qdict)
2316 BlockDriverState *bs, *bs1;
2317 int ret;
2318 const char *name = qdict_get_str(qdict, "name");
2320 bs = bdrv_snapshots();
2321 if (!bs) {
2322 monitor_printf(mon, "No block device supports snapshots\n");
2323 return;
2326 bs1 = NULL;
2327 while ((bs1 = bdrv_next(bs1))) {
2328 if (bdrv_can_snapshot(bs1)) {
2329 ret = bdrv_snapshot_delete(bs1, name);
2330 if (ret < 0) {
2331 if (ret == -ENOTSUP)
2332 monitor_printf(mon,
2333 "Snapshots not supported on device '%s'\n",
2334 bdrv_get_device_name(bs1));
2335 else
2336 monitor_printf(mon, "Error %d while deleting snapshot on "
2337 "'%s'\n", ret, bdrv_get_device_name(bs1));
2343 void do_info_snapshots(Monitor *mon)
2345 BlockDriverState *bs, *bs1;
2346 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2347 int nb_sns, i, ret, available;
2348 int total;
2349 int *available_snapshots;
2350 char buf[256];
2352 bs = bdrv_snapshots();
2353 if (!bs) {
2354 monitor_printf(mon, "No available block device supports snapshots\n");
2355 return;
2358 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2359 if (nb_sns < 0) {
2360 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
2361 return;
2364 if (nb_sns == 0) {
2365 monitor_printf(mon, "There is no snapshot available.\n");
2366 return;
2369 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
2370 total = 0;
2371 for (i = 0; i < nb_sns; i++) {
2372 sn = &sn_tab[i];
2373 available = 1;
2374 bs1 = NULL;
2376 while ((bs1 = bdrv_next(bs1))) {
2377 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2378 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2379 if (ret < 0) {
2380 available = 0;
2381 break;
2386 if (available) {
2387 available_snapshots[total] = i;
2388 total++;
2392 if (total > 0) {
2393 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
2394 for (i = 0; i < total; i++) {
2395 sn = &sn_tab[available_snapshots[i]];
2396 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
2398 } else {
2399 monitor_printf(mon, "There is no suitable snapshot available\n");
2402 g_free(sn_tab);
2403 g_free(available_snapshots);
2407 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2409 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
2410 memory_region_name(mr), dev);
2413 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2415 /* Nothing do to while the implementation is in RAMBlock */
2418 void vmstate_register_ram_global(MemoryRegion *mr)
2420 vmstate_register_ram(mr, NULL);
2424 page = zrun nzrun
2425 | zrun nzrun page
2427 zrun = length
2429 nzrun = length byte...
2431 length = uleb128 encoded integer
2433 int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
2434 uint8_t *dst, int dlen)
2436 uint32_t zrun_len = 0, nzrun_len = 0;
2437 int d = 0, i = 0;
2438 long res, xor;
2439 uint8_t *nzrun_start = NULL;
2441 g_assert(!(((uintptr_t)old_buf | (uintptr_t)new_buf | slen) %
2442 sizeof(long)));
2444 while (i < slen) {
2445 /* overflow */
2446 if (d + 2 > dlen) {
2447 return -1;
2450 /* not aligned to sizeof(long) */
2451 res = (slen - i) % sizeof(long);
2452 while (res && old_buf[i] == new_buf[i]) {
2453 zrun_len++;
2454 i++;
2455 res--;
2458 /* word at a time for speed */
2459 if (!res) {
2460 while (i < slen &&
2461 (*(long *)(old_buf + i)) == (*(long *)(new_buf + i))) {
2462 i += sizeof(long);
2463 zrun_len += sizeof(long);
2466 /* go over the rest */
2467 while (i < slen && old_buf[i] == new_buf[i]) {
2468 zrun_len++;
2469 i++;
2473 /* buffer unchanged */
2474 if (zrun_len == slen) {
2475 return 0;
2478 /* skip last zero run */
2479 if (i == slen) {
2480 return d;
2483 d += uleb128_encode_small(dst + d, zrun_len);
2485 zrun_len = 0;
2486 nzrun_start = new_buf + i;
2488 /* overflow */
2489 if (d + 2 > dlen) {
2490 return -1;
2492 /* not aligned to sizeof(long) */
2493 res = (slen - i) % sizeof(long);
2494 while (res && old_buf[i] != new_buf[i]) {
2495 i++;
2496 nzrun_len++;
2497 res--;
2500 /* word at a time for speed, use of 32-bit long okay */
2501 if (!res) {
2502 /* truncation to 32-bit long okay */
2503 long mask = (long)0x0101010101010101ULL;
2504 while (i < slen) {
2505 xor = *(long *)(old_buf + i) ^ *(long *)(new_buf + i);
2506 if ((xor - mask) & ~xor & (mask << 7)) {
2507 /* found the end of an nzrun within the current long */
2508 while (old_buf[i] != new_buf[i]) {
2509 nzrun_len++;
2510 i++;
2512 break;
2513 } else {
2514 i += sizeof(long);
2515 nzrun_len += sizeof(long);
2520 d += uleb128_encode_small(dst + d, nzrun_len);
2521 /* overflow */
2522 if (d + nzrun_len > dlen) {
2523 return -1;
2525 memcpy(dst + d, nzrun_start, nzrun_len);
2526 d += nzrun_len;
2527 nzrun_len = 0;
2530 return d;
2533 int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen)
2535 int i = 0, d = 0;
2536 int ret;
2537 uint32_t count = 0;
2539 while (i < slen) {
2541 /* zrun */
2542 if ((slen - i) < 2) {
2543 return -1;
2546 ret = uleb128_decode_small(src + i, &count);
2547 if (ret < 0 || (i && !count)) {
2548 return -1;
2550 i += ret;
2551 d += count;
2553 /* overflow */
2554 if (d > dlen) {
2555 return -1;
2558 /* nzrun */
2559 if ((slen - i) < 2) {
2560 return -1;
2563 ret = uleb128_decode_small(src + i, &count);
2564 if (ret < 0 || !count) {
2565 return -1;
2567 i += ret;
2569 /* overflow */
2570 if (d + count > dlen || i + count > slen) {
2571 return -1;
2574 memcpy(dst + d, src + i, count);
2575 d += count;
2576 i += count;
2579 return d;