]> git.proxmox.com Git - qemu.git/blame - savevm.c
migration: move qemu_fclose to process_incoming_migration
[qemu.git] / savevm.c
CommitLineData
a672b469
AL
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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.
23 */
a672b469
AL
24#include <unistd.h>
25#include <fcntl.h>
a672b469
AL
26#include <time.h>
27#include <errno.h>
28#include <sys/time.h>
29#include <zlib.h>
30
71e72a19 31/* Needed early for CONFIG_BSD etc. */
d40cdb10
BS
32#include "config-host.h"
33
a672b469
AL
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>
a672b469
AL
44#include <arpa/inet.h>
45#include <dirent.h>
46#include <netdb.h>
47#include <sys/select.h>
71e72a19 48#ifdef CONFIG_BSD
a672b469 49#include <sys/stat.h>
a167ba50 50#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
a672b469
AL
51#include <libutil.h>
52#else
53#include <util.h>
54#endif
a672b469
AL
55#ifdef __linux__
56#include <pty.h>
57#include <malloc.h>
58#include <linux/rtc.h>
59#endif
60#endif
61#endif
62
63#ifdef _WIN32
49dc768d 64#include <windows.h>
a672b469
AL
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
71
511d2b14
BS
72#include "qemu-common.h"
73#include "hw/hw.h"
7685ee6a 74#include "hw/qdev.h"
511d2b14
BS
75#include "net.h"
76#include "monitor.h"
77#include "sysemu.h"
78#include "qemu-timer.h"
79#include "qemu-char.h"
511d2b14
BS
80#include "audio/audio.h"
81#include "migration.h"
82#include "qemu_socket.h"
72cf2d4f 83#include "qemu-queue.h"
2ff68d07 84#include "qemu-timer.h"
17a4663e 85#include "cpus.h"
c5705a77 86#include "memory.h"
a7ae8355 87#include "qmp-commands.h"
517a13c9 88#include "trace.h"
08e99e29 89#include "bitops.h"
511d2b14 90
a672b469 91#define SELF_ANNOUNCE_ROUNDS 5
a672b469 92
18995b98 93#ifndef ETH_P_RARP
f8778a77 94#define ETH_P_RARP 0x8035
18995b98
N
95#endif
96#define ARP_HTYPE_ETH 0x0001
97#define ARP_PTYPE_IP 0x0800
98#define ARP_OP_REQUEST_REV 0x3
99
100static int announce_self_create(uint8_t *buf,
a672b469
AL
101 uint8_t *mac_addr)
102{
18995b98
N
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 */
107
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 */
118
119 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
120 memset(buf + 42, 0x00, 18);
121
122 return 60; /* len (FCS will be added by hardware) */
a672b469
AL
123}
124
f401ca22 125static void qemu_announce_self_iter(NICState *nic, void *opaque)
a672b469 126{
18995b98 127 uint8_t buf[60];
f401ca22
MM
128 int len;
129
130 len = announce_self_create(buf, nic->conf->macaddr.a);
131
132 qemu_send_packet_raw(&nic->nc, buf, len);
133}
134
135
136static void qemu_announce_self_once(void *opaque)
137{
ed8b330b
GN
138 static int count = SELF_ANNOUNCE_ROUNDS;
139 QEMUTimer *timer = *(QEMUTimer **)opaque;
a672b469 140
f401ca22
MM
141 qemu_foreach_nic(qemu_announce_self_iter, NULL);
142
18995b98
N
143 if (--count) {
144 /* delay 50ms, 150ms, 250ms, ... */
7bd427d8 145 qemu_mod_timer(timer, qemu_get_clock_ms(rt_clock) +
18995b98 146 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
ed8b330b
GN
147 } else {
148 qemu_del_timer(timer);
149 qemu_free_timer(timer);
150 }
151}
152
153void qemu_announce_self(void)
154{
155 static QEMUTimer *timer;
7bd427d8 156 timer = qemu_new_timer_ms(rt_clock, qemu_announce_self_once, &timer);
ed8b330b 157 qemu_announce_self_once(&timer);
a672b469
AL
158}
159
160/***********************************************************/
161/* savevm/loadvm support */
162
163#define IO_BUF_SIZE 32768
164
165struct QEMUFile {
9229bf3c 166 const QEMUFileOps *ops;
a672b469
AL
167 void *opaque;
168 int is_write;
169
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];
175
3961b4dd 176 int last_error;
a672b469
AL
177};
178
7f79dd28 179typedef struct QEMUFileStdio
a672b469 180{
7f79dd28 181 FILE *stdio_file;
a672b469 182 QEMUFile *file;
7f79dd28 183} QEMUFileStdio;
a672b469
AL
184
185typedef struct QEMUFileSocket
186{
187 int fd;
188 QEMUFile *file;
189} QEMUFileSocket;
190
70eb6330
PB
191static int socket_get_fd(void *opaque)
192{
193 QEMUFileSocket *s = opaque;
194
195 return s->fd;
196}
197
a672b469
AL
198static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
199{
200 QEMUFileSocket *s = opaque;
201 ssize_t len;
202
203 do {
00aa0040 204 len = qemu_recv(s->fd, buf, size, 0);
a672b469
AL
205 } while (len == -1 && socket_error() == EINTR);
206
207 if (len == -1)
208 len = -socket_error();
209
210 return len;
211}
212
213static int socket_close(void *opaque)
214{
215 QEMUFileSocket *s = opaque;
ab52a824 216 closesocket(s->fd);
7267c094 217 g_free(s);
a672b469
AL
218 return 0;
219}
220
70eb6330
PB
221static int stdio_get_fd(void *opaque)
222{
223 QEMUFileStdio *s = opaque;
224
225 return fileno(s->stdio_file);
226}
227
7f79dd28 228static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
a672b469 229{
7f79dd28
PB
230 QEMUFileStdio *s = opaque;
231 return fwrite(buf, 1, size, s->stdio_file);
a672b469
AL
232}
233
7f79dd28 234static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
a672b469 235{
7f79dd28
PB
236 QEMUFileStdio *s = opaque;
237 FILE *fp = s->stdio_file;
8a67ec4d
UL
238 int bytes;
239
240 do {
241 clearerr(fp);
242 bytes = fread(buf, 1, size, fp);
243 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
244 return bytes;
a672b469
AL
245}
246
7f79dd28
PB
247static int stdio_pclose(void *opaque)
248{
249 QEMUFileStdio *s = opaque;
41ef56e6
AL
250 int ret;
251 ret = pclose(s->stdio_file);
26f1af0a
EH
252 if (ret == -1) {
253 ret = -errno;
254 }
7267c094 255 g_free(s);
41ef56e6 256 return ret;
7f79dd28
PB
257}
258
259static int stdio_fclose(void *opaque)
a672b469 260{
7f79dd28 261 QEMUFileStdio *s = opaque;
0e286705
EH
262 int ret = 0;
263 if (fclose(s->stdio_file) == EOF) {
264 ret = -errno;
265 }
7267c094 266 g_free(s);
0e286705 267 return ret;
a672b469
AL
268}
269
9229bf3c 270static const QEMUFileOps stdio_pipe_read_ops = {
70eb6330 271 .get_fd = stdio_get_fd,
9229bf3c
PB
272 .get_buffer = stdio_get_buffer,
273 .close = stdio_pclose
274};
275
276static const QEMUFileOps stdio_pipe_write_ops = {
70eb6330 277 .get_fd = stdio_get_fd,
9229bf3c
PB
278 .put_buffer = stdio_put_buffer,
279 .close = stdio_pclose
280};
281
7f79dd28 282QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
a672b469 283{
7f79dd28 284 QEMUFileStdio *s;
a672b469 285
7f79dd28 286 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
a672b469
AL
287 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
288 return NULL;
289 }
290
7267c094 291 s = g_malloc0(sizeof(QEMUFileStdio));
a672b469 292
7f79dd28 293 s->stdio_file = stdio_file;
a672b469
AL
294
295 if(mode[0] == 'r') {
9229bf3c 296 s->file = qemu_fopen_ops(s, &stdio_pipe_read_ops);
a672b469 297 } else {
9229bf3c 298 s->file = qemu_fopen_ops(s, &stdio_pipe_write_ops);
a672b469 299 }
a672b469
AL
300 return s->file;
301}
302
303QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
304{
305 FILE *popen_file;
306
307 popen_file = popen(command, mode);
308 if(popen_file == NULL) {
309 return NULL;
310 }
311
312 return qemu_popen(popen_file, mode);
313}
314
9229bf3c 315static const QEMUFileOps stdio_file_read_ops = {
70eb6330 316 .get_fd = stdio_get_fd,
9229bf3c
PB
317 .get_buffer = stdio_get_buffer,
318 .close = stdio_fclose
319};
320
321static const QEMUFileOps stdio_file_write_ops = {
70eb6330 322 .get_fd = stdio_get_fd,
9229bf3c
PB
323 .put_buffer = stdio_put_buffer,
324 .close = stdio_fclose
325};
326
5ac1fad3
PB
327QEMUFile *qemu_fdopen(int fd, const char *mode)
328{
329 QEMUFileStdio *s;
330
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;
336 }
337
7267c094 338 s = g_malloc0(sizeof(QEMUFileStdio));
5ac1fad3
PB
339 s->stdio_file = fdopen(fd, mode);
340 if (!s->stdio_file)
341 goto fail;
342
343 if(mode[0] == 'r') {
9229bf3c 344 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
5ac1fad3 345 } else {
9229bf3c 346 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
5ac1fad3
PB
347 }
348 return s->file;
349
350fail:
7267c094 351 g_free(s);
5ac1fad3
PB
352 return NULL;
353}
354
9229bf3c 355static const QEMUFileOps socket_read_ops = {
70eb6330 356 .get_fd = socket_get_fd,
9229bf3c
PB
357 .get_buffer = socket_get_buffer,
358 .close = socket_close
359};
360
a672b469
AL
361QEMUFile *qemu_fopen_socket(int fd)
362{
7267c094 363 QEMUFileSocket *s = g_malloc0(sizeof(QEMUFileSocket));
a672b469 364
a672b469 365 s->fd = fd;
9229bf3c 366 s->file = qemu_fopen_ops(s, &socket_read_ops);
a672b469
AL
367 return s->file;
368}
369
a672b469
AL
370QEMUFile *qemu_fopen(const char *filename, const char *mode)
371{
372 QEMUFileStdio *s;
373
7f79dd28
PB
374 if (mode == NULL ||
375 (mode[0] != 'r' && mode[0] != 'w') ||
376 mode[1] != 'b' || mode[2] != 0) {
090414a3 377 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
7f79dd28
PB
378 return NULL;
379 }
380
7267c094 381 s = g_malloc0(sizeof(QEMUFileStdio));
a672b469 382
7f79dd28
PB
383 s->stdio_file = fopen(filename, mode);
384 if (!s->stdio_file)
a672b469 385 goto fail;
c163b5ca 386
7f79dd28 387 if(mode[0] == 'w') {
9229bf3c 388 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
7f79dd28 389 } else {
9229bf3c 390 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
7f79dd28
PB
391 }
392 return s->file;
a672b469 393fail:
7267c094 394 g_free(s);
a672b469
AL
395 return NULL;
396}
397
178e08a5 398static int block_put_buffer(void *opaque, const uint8_t *buf,
a672b469
AL
399 int64_t pos, int size)
400{
45566e9c 401 bdrv_save_vmstate(opaque, buf, pos, size);
a672b469
AL
402 return size;
403}
404
178e08a5 405static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
a672b469 406{
45566e9c 407 return bdrv_load_vmstate(opaque, buf, pos, size);
a672b469
AL
408}
409
410static int bdrv_fclose(void *opaque)
411{
ad492c92 412 return bdrv_flush(opaque);
a672b469
AL
413}
414
9229bf3c
PB
415static const QEMUFileOps bdrv_read_ops = {
416 .get_buffer = block_get_buffer,
417 .close = bdrv_fclose
418};
419
420static const QEMUFileOps bdrv_write_ops = {
421 .put_buffer = block_put_buffer,
422 .close = bdrv_fclose
423};
424
45566e9c 425static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
a672b469 426{
a672b469 427 if (is_writable)
9229bf3c
PB
428 return qemu_fopen_ops(bs, &bdrv_write_ops);
429 return qemu_fopen_ops(bs, &bdrv_read_ops);
a672b469
AL
430}
431
9229bf3c 432QEMUFile *qemu_fopen_ops(void *opaque, const QEMUFileOps *ops)
a672b469
AL
433{
434 QEMUFile *f;
435
7267c094 436 f = g_malloc0(sizeof(QEMUFile));
a672b469
AL
437
438 f->opaque = opaque;
9229bf3c 439 f->ops = ops;
a672b469
AL
440 f->is_write = 0;
441
442 return f;
443}
444
624b9cc2 445int qemu_file_get_error(QEMUFile *f)
a672b469 446{
3961b4dd 447 return f->last_error;
a672b469
AL
448}
449
6f121ff5 450static void qemu_file_set_error(QEMUFile *f, int ret)
4dabe248 451{
3961b4dd 452 f->last_error = ret;
4dabe248
AL
453}
454
d82ca915
EH
455/** Flushes QEMUFile buffer
456 *
d82ca915 457 */
7311bea3 458static int qemu_fflush(QEMUFile *f)
a672b469 459{
7311bea3
JQ
460 int ret = 0;
461
9229bf3c 462 if (!f->ops->put_buffer)
7311bea3 463 return 0;
a672b469
AL
464
465 if (f->is_write && f->buf_index > 0) {
9229bf3c 466 ret = f->ops->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
7311bea3 467 if (ret >= 0) {
a672b469 468 f->buf_offset += f->buf_index;
7311bea3 469 }
a672b469
AL
470 f->buf_index = 0;
471 }
7311bea3 472 return ret;
a672b469
AL
473}
474
475static void qemu_fill_buffer(QEMUFile *f)
476{
477 int len;
0046c45b 478 int pending;
a672b469 479
9229bf3c 480 if (!f->ops->get_buffer)
a672b469
AL
481 return;
482
483 if (f->is_write)
484 abort();
485
0046c45b
JQ
486 pending = f->buf_size - f->buf_index;
487 if (pending > 0) {
488 memmove(f->buf, f->buf + f->buf_index, pending);
489 }
490 f->buf_index = 0;
491 f->buf_size = pending;
492
9229bf3c 493 len = f->ops->get_buffer(f->opaque, f->buf + pending, f->buf_offset,
0046c45b 494 IO_BUF_SIZE - pending);
a672b469 495 if (len > 0) {
0046c45b 496 f->buf_size += len;
a672b469 497 f->buf_offset += len;
fa39a30f 498 } else if (len == 0) {
02c4a051 499 qemu_file_set_error(f, -EIO);
a672b469 500 } else if (len != -EAGAIN)
c29110d5 501 qemu_file_set_error(f, len);
a672b469
AL
502}
503
70eb6330
PB
504int qemu_get_fd(QEMUFile *f)
505{
506 if (f->ops->get_fd) {
507 return f->ops->get_fd(f->opaque);
508 }
509 return -1;
510}
511
d82ca915
EH
512/** Closes the file
513 *
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.
516 *
517 * The meaning of return value on success depends on the specific backend
518 * being used.
519 */
520int qemu_fclose(QEMUFile *f)
521{
29eee86f 522 int ret;
7311bea3 523 ret = qemu_fflush(f);
7311bea3 524
9229bf3c
PB
525 if (f->ops->close) {
526 int ret2 = f->ops->close(f->opaque);
29eee86f
JQ
527 if (ret >= 0) {
528 ret = ret2;
529 }
7311bea3 530 }
d82ca915
EH
531 /* If any error was spotted before closing, we should report it
532 * instead of the close() return value.
533 */
534 if (f->last_error) {
535 ret = f->last_error;
536 }
7267c094 537 g_free(f);
a672b469
AL
538 return ret;
539}
540
a2b41351 541int qemu_file_put_notify(QEMUFile *f)
a672b469 542{
9229bf3c 543 return f->ops->put_buffer(f->opaque, NULL, 0, 0);
a672b469
AL
544}
545
546void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
547{
548 int l;
549
c10682cb
JQ
550 if (f->last_error) {
551 return;
552 }
553
554 if (f->is_write == 0 && f->buf_index > 0) {
a672b469
AL
555 fprintf(stderr,
556 "Attempted to write to buffer while read buffer is not empty\n");
557 abort();
558 }
559
c10682cb 560 while (size > 0) {
a672b469
AL
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;
7311bea3
JQ
569 if (f->buf_index >= IO_BUF_SIZE) {
570 int ret = qemu_fflush(f);
c10682cb
JQ
571 if (ret < 0) {
572 qemu_file_set_error(f, ret);
573 break;
574 }
7311bea3 575 }
a672b469
AL
576 }
577}
578
579void qemu_put_byte(QEMUFile *f, int v)
580{
c10682cb
JQ
581 if (f->last_error) {
582 return;
583 }
584
585 if (f->is_write == 0 && f->buf_index > 0) {
a672b469
AL
586 fprintf(stderr,
587 "Attempted to write to buffer while read buffer is not empty\n");
588 abort();
589 }
590
591 f->buf[f->buf_index++] = v;
592 f->is_write = 1;
7311bea3
JQ
593 if (f->buf_index >= IO_BUF_SIZE) {
594 int ret = qemu_fflush(f);
c10682cb
JQ
595 if (ret < 0) {
596 qemu_file_set_error(f, ret);
597 }
7311bea3 598 }
a672b469
AL
599}
600
c6380724 601static void qemu_file_skip(QEMUFile *f, int size)
a672b469 602{
c6380724
JQ
603 if (f->buf_index + size <= f->buf_size) {
604 f->buf_index += size;
605 }
606}
607
608static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
a672b469 609{
c6380724
JQ
610 int pending;
611 int index;
a672b469 612
b9ce1454 613 if (f->is_write) {
a672b469 614 abort();
b9ce1454 615 }
a672b469 616
c6380724
JQ
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;
623 }
624
625 if (pending <= 0) {
626 return 0;
627 }
628 if (size > pending) {
629 size = pending;
630 }
631
632 memcpy(buf, f->buf + index, size);
633 return size;
634}
635
636int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
637{
638 int pending = size;
639 int done = 0;
640
641 while (pending > 0) {
642 int res;
643
644 res = qemu_peek_buffer(f, buf, pending, 0);
645 if (res == 0) {
646 return done;
a672b469 647 }
c6380724
JQ
648 qemu_file_skip(f, res);
649 buf += res;
650 pending -= res;
651 done += res;
a672b469 652 }
c6380724 653 return done;
a672b469
AL
654}
655
c6380724 656static int qemu_peek_byte(QEMUFile *f, int offset)
811814bd 657{
c6380724
JQ
658 int index = f->buf_index + offset;
659
b9ce1454 660 if (f->is_write) {
811814bd 661 abort();
b9ce1454 662 }
811814bd 663
c6380724 664 if (index >= f->buf_size) {
811814bd 665 qemu_fill_buffer(f);
c6380724
JQ
666 index = f->buf_index + offset;
667 if (index >= f->buf_size) {
811814bd 668 return 0;
b9ce1454 669 }
811814bd 670 }
c6380724 671 return f->buf[index];
811814bd
JQ
672}
673
a672b469
AL
674int qemu_get_byte(QEMUFile *f)
675{
65f3bb3d 676 int result;
a672b469 677
c6380724
JQ
678 result = qemu_peek_byte(f, 0);
679 qemu_file_skip(f, 1);
65f3bb3d 680 return result;
a672b469
AL
681}
682
3aee4be1 683static int64_t qemu_ftell(QEMUFile *f)
a672b469
AL
684{
685 return f->buf_offset - f->buf_size + f->buf_index;
686}
687
a672b469
AL
688int qemu_file_rate_limit(QEMUFile *f)
689{
9229bf3c
PB
690 if (f->ops->rate_limit)
691 return f->ops->rate_limit(f->opaque);
a672b469
AL
692
693 return 0;
694}
695
3d002df3 696int64_t qemu_file_get_rate_limit(QEMUFile *f)
c163b5ca 697{
9229bf3c
PB
698 if (f->ops->get_rate_limit)
699 return f->ops->get_rate_limit(f->opaque);
c163b5ca 700
701 return 0;
702}
703
3d002df3 704int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
19629537 705{
0bb05eaf
GC
706 /* any failed or completed migration keeps its state to allow probing of
707 * migration data, but has no associated file anymore */
9229bf3c
PB
708 if (f && f->ops->set_rate_limit)
709 return f->ops->set_rate_limit(f->opaque, new_rate);
19629537
GC
710
711 return 0;
712}
713
a672b469
AL
714void qemu_put_be16(QEMUFile *f, unsigned int v)
715{
716 qemu_put_byte(f, v >> 8);
717 qemu_put_byte(f, v);
718}
719
720void qemu_put_be32(QEMUFile *f, unsigned int v)
721{
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);
726}
727
728void qemu_put_be64(QEMUFile *f, uint64_t v)
729{
730 qemu_put_be32(f, v >> 32);
731 qemu_put_be32(f, v);
732}
733
734unsigned int qemu_get_be16(QEMUFile *f)
735{
736 unsigned int v;
737 v = qemu_get_byte(f) << 8;
738 v |= qemu_get_byte(f);
739 return v;
740}
741
742unsigned int qemu_get_be32(QEMUFile *f)
743{
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;
750}
751
752uint64_t qemu_get_be64(QEMUFile *f)
753{
754 uint64_t v;
755 v = (uint64_t)qemu_get_be32(f) << 32;
756 v |= qemu_get_be32(f);
757 return v;
758}
759
2ff68d07
PB
760
761/* timer */
762
763void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
764{
765 uint64_t expire_time;
766
767 expire_time = qemu_timer_expire_time_ns(ts);
768 qemu_put_be64(f, expire_time);
769}
770
771void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
772{
773 uint64_t expire_time;
774
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);
780 }
781}
782
783
cdae5cfb
GH
784/* bool */
785
786static int get_bool(QEMUFile *f, void *pv, size_t size)
787{
788 bool *v = pv;
789 *v = qemu_get_byte(f);
790 return 0;
791}
792
793static void put_bool(QEMUFile *f, void *pv, size_t size)
794{
795 bool *v = pv;
796 qemu_put_byte(f, *v);
797}
798
799const VMStateInfo vmstate_info_bool = {
800 .name = "bool",
801 .get = get_bool,
802 .put = put_bool,
803};
804
9ed7d6ae
JQ
805/* 8 bit int */
806
807static int get_int8(QEMUFile *f, void *pv, size_t size)
808{
809 int8_t *v = pv;
810 qemu_get_s8s(f, v);
811 return 0;
812}
813
84e2e3eb 814static void put_int8(QEMUFile *f, void *pv, size_t size)
9ed7d6ae 815{
84e2e3eb 816 int8_t *v = pv;
9ed7d6ae
JQ
817 qemu_put_s8s(f, v);
818}
819
820const VMStateInfo vmstate_info_int8 = {
821 .name = "int8",
822 .get = get_int8,
823 .put = put_int8,
824};
825
826/* 16 bit int */
827
828static int get_int16(QEMUFile *f, void *pv, size_t size)
829{
830 int16_t *v = pv;
831 qemu_get_sbe16s(f, v);
832 return 0;
833}
834
84e2e3eb 835static void put_int16(QEMUFile *f, void *pv, size_t size)
9ed7d6ae 836{
84e2e3eb 837 int16_t *v = pv;
9ed7d6ae
JQ
838 qemu_put_sbe16s(f, v);
839}
840
841const VMStateInfo vmstate_info_int16 = {
842 .name = "int16",
843 .get = get_int16,
844 .put = put_int16,
845};
846
847/* 32 bit int */
848
849static int get_int32(QEMUFile *f, void *pv, size_t size)
850{
851 int32_t *v = pv;
852 qemu_get_sbe32s(f, v);
853 return 0;
854}
855
84e2e3eb 856static void put_int32(QEMUFile *f, void *pv, size_t size)
9ed7d6ae 857{
84e2e3eb 858 int32_t *v = pv;
9ed7d6ae
JQ
859 qemu_put_sbe32s(f, v);
860}
861
862const VMStateInfo vmstate_info_int32 = {
863 .name = "int32",
864 .get = get_int32,
865 .put = put_int32,
866};
867
82501660
JQ
868/* 32 bit int. See that the received value is the same than the one
869 in the field */
870
871static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
872{
873 int32_t *v = pv;
874 int32_t v2;
875 qemu_get_sbe32s(f, &v2);
876
877 if (*v == v2)
878 return 0;
879 return -EINVAL;
880}
881
882const VMStateInfo vmstate_info_int32_equal = {
883 .name = "int32 equal",
884 .get = get_int32_equal,
885 .put = put_int32,
886};
887
0a031e0a
JQ
888/* 32 bit int. See that the received value is the less or the same
889 than the one in the field */
890
891static int get_int32_le(QEMUFile *f, void *pv, size_t size)
892{
893 int32_t *old = pv;
894 int32_t new;
895 qemu_get_sbe32s(f, &new);
896
897 if (*old <= new)
898 return 0;
899 return -EINVAL;
900}
901
902const VMStateInfo vmstate_info_int32_le = {
903 .name = "int32 equal",
904 .get = get_int32_le,
905 .put = put_int32,
906};
907
9ed7d6ae
JQ
908/* 64 bit int */
909
910static int get_int64(QEMUFile *f, void *pv, size_t size)
911{
912 int64_t *v = pv;
913 qemu_get_sbe64s(f, v);
914 return 0;
915}
916
84e2e3eb 917static void put_int64(QEMUFile *f, void *pv, size_t size)
9ed7d6ae 918{
84e2e3eb 919 int64_t *v = pv;
9ed7d6ae
JQ
920 qemu_put_sbe64s(f, v);
921}
922
923const VMStateInfo vmstate_info_int64 = {
924 .name = "int64",
925 .get = get_int64,
926 .put = put_int64,
927};
928
929/* 8 bit unsigned int */
930
931static int get_uint8(QEMUFile *f, void *pv, size_t size)
932{
933 uint8_t *v = pv;
934 qemu_get_8s(f, v);
935 return 0;
936}
937
84e2e3eb 938static void put_uint8(QEMUFile *f, void *pv, size_t size)
9ed7d6ae 939{
84e2e3eb 940 uint8_t *v = pv;
9ed7d6ae
JQ
941 qemu_put_8s(f, v);
942}
943
944const VMStateInfo vmstate_info_uint8 = {
945 .name = "uint8",
946 .get = get_uint8,
947 .put = put_uint8,
948};
949
950/* 16 bit unsigned int */
951
952static int get_uint16(QEMUFile *f, void *pv, size_t size)
953{
954 uint16_t *v = pv;
955 qemu_get_be16s(f, v);
956 return 0;
957}
958
84e2e3eb 959static void put_uint16(QEMUFile *f, void *pv, size_t size)
9ed7d6ae 960{
84e2e3eb 961 uint16_t *v = pv;
9ed7d6ae
JQ
962 qemu_put_be16s(f, v);
963}
964
965const VMStateInfo vmstate_info_uint16 = {
966 .name = "uint16",
967 .get = get_uint16,
968 .put = put_uint16,
969};
970
971/* 32 bit unsigned int */
972
973static int get_uint32(QEMUFile *f, void *pv, size_t size)
974{
975 uint32_t *v = pv;
976 qemu_get_be32s(f, v);
977 return 0;
978}
979
84e2e3eb 980static void put_uint32(QEMUFile *f, void *pv, size_t size)
9ed7d6ae 981{
84e2e3eb 982 uint32_t *v = pv;
9ed7d6ae
JQ
983 qemu_put_be32s(f, v);
984}
985
986const VMStateInfo vmstate_info_uint32 = {
987 .name = "uint32",
988 .get = get_uint32,
989 .put = put_uint32,
990};
991
9122a8fe
JQ
992/* 32 bit uint. See that the received value is the same than the one
993 in the field */
994
995static int get_uint32_equal(QEMUFile *f, void *pv, size_t size)
996{
997 uint32_t *v = pv;
998 uint32_t v2;
999 qemu_get_be32s(f, &v2);
1000
1001 if (*v == v2) {
1002 return 0;
1003 }
1004 return -EINVAL;
1005}
1006
1007const VMStateInfo vmstate_info_uint32_equal = {
1008 .name = "uint32 equal",
1009 .get = get_uint32_equal,
1010 .put = put_uint32,
1011};
1012
9ed7d6ae
JQ
1013/* 64 bit unsigned int */
1014
1015static int get_uint64(QEMUFile *f, void *pv, size_t size)
1016{
1017 uint64_t *v = pv;
1018 qemu_get_be64s(f, v);
1019 return 0;
1020}
1021
84e2e3eb 1022static void put_uint64(QEMUFile *f, void *pv, size_t size)
9ed7d6ae 1023{
84e2e3eb 1024 uint64_t *v = pv;
9ed7d6ae
JQ
1025 qemu_put_be64s(f, v);
1026}
1027
1028const VMStateInfo vmstate_info_uint64 = {
1029 .name = "uint64",
1030 .get = get_uint64,
1031 .put = put_uint64,
1032};
1033
80cd83e7
JQ
1034/* 8 bit int. See that the received value is the same than the one
1035 in the field */
1036
1037static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
1038{
1039 uint8_t *v = pv;
1040 uint8_t v2;
1041 qemu_get_8s(f, &v2);
1042
1043 if (*v == v2)
1044 return 0;
1045 return -EINVAL;
1046}
1047
1048const VMStateInfo vmstate_info_uint8_equal = {
aa1cce69 1049 .name = "uint8 equal",
80cd83e7
JQ
1050 .get = get_uint8_equal,
1051 .put = put_uint8,
1052};
1053
dc3b83a0
JQ
1054/* 16 bit unsigned int int. See that the received value is the same than the one
1055 in the field */
1056
1057static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
1058{
1059 uint16_t *v = pv;
1060 uint16_t v2;
1061 qemu_get_be16s(f, &v2);
1062
1063 if (*v == v2)
1064 return 0;
1065 return -EINVAL;
1066}
1067
1068const VMStateInfo vmstate_info_uint16_equal = {
1069 .name = "uint16 equal",
1070 .get = get_uint16_equal,
1071 .put = put_uint16,
1072};
1073
dde0463b
JQ
1074/* timers */
1075
1076static int get_timer(QEMUFile *f, void *pv, size_t size)
1077{
1078 QEMUTimer *v = pv;
1079 qemu_get_timer(f, v);
1080 return 0;
1081}
1082
84e2e3eb 1083static void put_timer(QEMUFile *f, void *pv, size_t size)
dde0463b 1084{
84e2e3eb 1085 QEMUTimer *v = pv;
dde0463b
JQ
1086 qemu_put_timer(f, v);
1087}
1088
1089const VMStateInfo vmstate_info_timer = {
1090 .name = "timer",
1091 .get = get_timer,
1092 .put = put_timer,
1093};
1094
6f67c50f
JQ
1095/* uint8_t buffers */
1096
1097static int get_buffer(QEMUFile *f, void *pv, size_t size)
1098{
1099 uint8_t *v = pv;
1100 qemu_get_buffer(f, v, size);
1101 return 0;
1102}
1103
84e2e3eb 1104static void put_buffer(QEMUFile *f, void *pv, size_t size)
6f67c50f 1105{
84e2e3eb 1106 uint8_t *v = pv;
6f67c50f
JQ
1107 qemu_put_buffer(f, v, size);
1108}
1109
1110const VMStateInfo vmstate_info_buffer = {
1111 .name = "buffer",
1112 .get = get_buffer,
1113 .put = put_buffer,
1114};
1115
76507c75 1116/* unused buffers: space that was used for some fields that are
61cc8701 1117 not useful anymore */
76507c75
JQ
1118
1119static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
1120{
21174c34
JK
1121 uint8_t buf[1024];
1122 int block_len;
1123
1124 while (size > 0) {
1125 block_len = MIN(sizeof(buf), size);
1126 size -= block_len;
1127 qemu_get_buffer(f, buf, block_len);
1128 }
1129 return 0;
76507c75
JQ
1130}
1131
1132static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
1133{
21174c34
JK
1134 static const uint8_t buf[1024];
1135 int block_len;
1136
1137 while (size > 0) {
1138 block_len = MIN(sizeof(buf), size);
1139 size -= block_len;
1140 qemu_put_buffer(f, buf, block_len);
1141 }
76507c75
JQ
1142}
1143
1144const VMStateInfo vmstate_info_unused_buffer = {
1145 .name = "unused_buffer",
1146 .get = get_unused_buffer,
1147 .put = put_unused_buffer,
1148};
1149
08e99e29
PM
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.
1154 */
1155/* This is the number of 64 bit words sent over the wire */
1156#define BITS_TO_U64S(nr) DIV_ROUND_UP(nr, 64)
1157static int get_bitmap(QEMUFile *f, void *pv, size_t size)
1158{
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;
1166 }
1167 }
1168 return 0;
1169}
1170
1171static void put_bitmap(QEMUFile *f, void *pv, size_t size)
1172{
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;
1179 }
1180 qemu_put_be64(f, w);
1181 }
1182}
1183
1184const VMStateInfo vmstate_info_bitmap = {
1185 .name = "bitmap",
1186 .get = get_bitmap,
1187 .put = put_bitmap,
1188};
1189
7685ee6a
AW
1190typedef struct CompatEntry {
1191 char idstr[256];
1192 int instance_id;
1193} CompatEntry;
1194
a672b469 1195typedef struct SaveStateEntry {
72cf2d4f 1196 QTAILQ_ENTRY(SaveStateEntry) entry;
a672b469
AL
1197 char idstr[256];
1198 int instance_id;
4d2ffa08 1199 int alias_id;
a672b469
AL
1200 int version_id;
1201 int section_id;
22ea40f4 1202 SaveVMHandlers *ops;
9ed7d6ae 1203 const VMStateDescription *vmsd;
a672b469 1204 void *opaque;
7685ee6a 1205 CompatEntry *compat;
24312968 1206 int no_migrate;
a7ae8355 1207 int is_ram;
a672b469
AL
1208} SaveStateEntry;
1209
c163b5ca 1210
72cf2d4f
BS
1211static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1212 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
9ed7d6ae 1213static int global_section_id;
a672b469 1214
8718e999
JQ
1215static int calculate_new_instance_id(const char *idstr)
1216{
1217 SaveStateEntry *se;
1218 int instance_id = 0;
1219
72cf2d4f 1220 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
8718e999
JQ
1221 if (strcmp(idstr, se->idstr) == 0
1222 && instance_id <= se->instance_id) {
1223 instance_id = se->instance_id + 1;
1224 }
1225 }
1226 return instance_id;
1227}
1228
7685ee6a
AW
1229static int calculate_compat_instance_id(const char *idstr)
1230{
1231 SaveStateEntry *se;
1232 int instance_id = 0;
1233
1234 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1235 if (!se->compat)
1236 continue;
1237
1238 if (strcmp(idstr, se->compat->idstr) == 0
1239 && instance_id <= se->compat->instance_id) {
1240 instance_id = se->compat->instance_id + 1;
1241 }
1242 }
1243 return instance_id;
1244}
1245
a672b469
AL
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. */
0be71e32
AW
1250int register_savevm_live(DeviceState *dev,
1251 const char *idstr,
a672b469
AL
1252 int instance_id,
1253 int version_id,
7908c78d 1254 SaveVMHandlers *ops,
a672b469
AL
1255 void *opaque)
1256{
8718e999 1257 SaveStateEntry *se;
a672b469 1258
7267c094 1259 se = g_malloc0(sizeof(SaveStateEntry));
a672b469
AL
1260 se->version_id = version_id;
1261 se->section_id = global_section_id++;
7908c78d 1262 se->ops = ops;
a672b469 1263 se->opaque = opaque;
9ed7d6ae 1264 se->vmsd = NULL;
24312968 1265 se->no_migrate = 0;
a7ae8355 1266 /* if this is a live_savem then set is_ram */
16310a3c 1267 if (ops->save_live_setup != NULL) {
a7ae8355
SS
1268 se->is_ram = 1;
1269 }
a672b469 1270
09e5ab63
AL
1271 if (dev) {
1272 char *id = qdev_get_dev_path(dev);
7685ee6a
AW
1273 if (id) {
1274 pstrcpy(se->idstr, sizeof(se->idstr), id);
1275 pstrcat(se->idstr, sizeof(se->idstr), "/");
7267c094 1276 g_free(id);
7685ee6a 1277
7267c094 1278 se->compat = g_malloc0(sizeof(CompatEntry));
7685ee6a
AW
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;
1283 }
1284 }
1285 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1286
8718e999 1287 if (instance_id == -1) {
7685ee6a 1288 se->instance_id = calculate_new_instance_id(se->idstr);
8718e999
JQ
1289 } else {
1290 se->instance_id = instance_id;
a672b469 1291 }
7685ee6a 1292 assert(!se->compat || se->instance_id == 0);
8718e999 1293 /* add at the end of list */
72cf2d4f 1294 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
a672b469
AL
1295 return 0;
1296}
1297
0be71e32
AW
1298int register_savevm(DeviceState *dev,
1299 const char *idstr,
a672b469
AL
1300 int instance_id,
1301 int version_id,
1302 SaveStateHandler *save_state,
1303 LoadStateHandler *load_state,
1304 void *opaque)
1305{
7908c78d
JQ
1306 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
1307 ops->save_state = save_state;
1308 ops->load_state = load_state;
0be71e32 1309 return register_savevm_live(dev, idstr, instance_id, version_id,
7908c78d 1310 ops, opaque);
a672b469
AL
1311}
1312
0be71e32 1313void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
41bd13af 1314{
8718e999 1315 SaveStateEntry *se, *new_se;
7685ee6a
AW
1316 char id[256] = "";
1317
09e5ab63
AL
1318 if (dev) {
1319 char *path = qdev_get_dev_path(dev);
7685ee6a
AW
1320 if (path) {
1321 pstrcpy(id, sizeof(id), path);
1322 pstrcat(id, sizeof(id), "/");
7267c094 1323 g_free(path);
7685ee6a
AW
1324 }
1325 }
1326 pstrcat(id, sizeof(id), idstr);
41bd13af 1327
72cf2d4f 1328 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
7685ee6a 1329 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
72cf2d4f 1330 QTAILQ_REMOVE(&savevm_handlers, se, entry);
69e58af9 1331 if (se->compat) {
7267c094 1332 g_free(se->compat);
69e58af9 1333 }
22ea40f4 1334 g_free(se->ops);
7267c094 1335 g_free(se);
41bd13af 1336 }
41bd13af
AL
1337 }
1338}
1339
0be71e32 1340int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
4d2ffa08
JK
1341 const VMStateDescription *vmsd,
1342 void *opaque, int alias_id,
1343 int required_for_version)
9ed7d6ae 1344{
8718e999 1345 SaveStateEntry *se;
9ed7d6ae 1346
4d2ffa08
JK
1347 /* If this triggers, alias support can be dropped for the vmsd. */
1348 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1349
7267c094 1350 se = g_malloc0(sizeof(SaveStateEntry));
9ed7d6ae
JQ
1351 se->version_id = vmsd->version_id;
1352 se->section_id = global_section_id++;
9ed7d6ae
JQ
1353 se->opaque = opaque;
1354 se->vmsd = vmsd;
4d2ffa08 1355 se->alias_id = alias_id;
2837c8ea 1356 se->no_migrate = vmsd->unmigratable;
9ed7d6ae 1357
09e5ab63
AL
1358 if (dev) {
1359 char *id = qdev_get_dev_path(dev);
7685ee6a
AW
1360 if (id) {
1361 pstrcpy(se->idstr, sizeof(se->idstr), id);
1362 pstrcat(se->idstr, sizeof(se->idstr), "/");
7267c094 1363 g_free(id);
7685ee6a 1364
7267c094 1365 se->compat = g_malloc0(sizeof(CompatEntry));
7685ee6a
AW
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;
1370 }
1371 }
1372 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1373
8718e999 1374 if (instance_id == -1) {
7685ee6a 1375 se->instance_id = calculate_new_instance_id(se->idstr);
8718e999
JQ
1376 } else {
1377 se->instance_id = instance_id;
9ed7d6ae 1378 }
7685ee6a 1379 assert(!se->compat || se->instance_id == 0);
8718e999 1380 /* add at the end of list */
72cf2d4f 1381 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
9ed7d6ae
JQ
1382 return 0;
1383}
1384
0be71e32
AW
1385int vmstate_register(DeviceState *dev, int instance_id,
1386 const VMStateDescription *vmsd, void *opaque)
4d2ffa08 1387{
0be71e32
AW
1388 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1389 opaque, -1, 0);
4d2ffa08
JK
1390}
1391
0be71e32
AW
1392void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1393 void *opaque)
9ed7d6ae 1394{
1eb7538b
JQ
1395 SaveStateEntry *se, *new_se;
1396
72cf2d4f 1397 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1eb7538b 1398 if (se->vmsd == vmsd && se->opaque == opaque) {
72cf2d4f 1399 QTAILQ_REMOVE(&savevm_handlers, se, entry);
69e58af9 1400 if (se->compat) {
7267c094 1401 g_free(se->compat);
69e58af9 1402 }
7267c094 1403 g_free(se);
1eb7538b
JQ
1404 }
1405 }
9ed7d6ae
JQ
1406}
1407
811814bd
JQ
1408static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1409 void *opaque);
1410static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1411 void *opaque);
1412
9ed7d6ae
JQ
1413int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1414 void *opaque, int version_id)
1415{
1416 VMStateField *field = vmsd->fields;
811814bd 1417 int ret;
9ed7d6ae
JQ
1418
1419 if (version_id > vmsd->version_id) {
1420 return -EINVAL;
1421 }
1422 if (version_id < vmsd->minimum_version_id_old) {
1423 return -EINVAL;
1424 }
1425 if (version_id < vmsd->minimum_version_id) {
1426 return vmsd->load_state_old(f, opaque, version_id);
1427 }
fd4d52de
JQ
1428 if (vmsd->pre_load) {
1429 int ret = vmsd->pre_load(opaque);
1430 if (ret)
1431 return ret;
1432 }
9ed7d6ae 1433 while(field->name) {
f11f6a5f
JQ
1434 if ((field->field_exists &&
1435 field->field_exists(opaque, version_id)) ||
1436 (!field->field_exists &&
1437 field->version_id <= version_id)) {
f752a6aa 1438 void *base_addr = opaque + field->offset;
811814bd 1439 int i, n_elems = 1;
e61a1e0a 1440 int size = field->size;
9ed7d6ae 1441
e61a1e0a
JQ
1442 if (field->flags & VMS_VBUFFER) {
1443 size = *(int32_t *)(opaque+field->size_offset);
33599e2a
JQ
1444 if (field->flags & VMS_MULTIPLY) {
1445 size *= field->size;
1446 }
e61a1e0a 1447 }
f752a6aa
JQ
1448 if (field->flags & VMS_ARRAY) {
1449 n_elems = field->num;
d6698281
JQ
1450 } else if (field->flags & VMS_VARRAY_INT32) {
1451 n_elems = *(int32_t *)(opaque+field->num_offset);
a624b086
JQ
1452 } else if (field->flags & VMS_VARRAY_UINT32) {
1453 n_elems = *(uint32_t *)(opaque+field->num_offset);
bdb4941d
JQ
1454 } else if (field->flags & VMS_VARRAY_UINT16) {
1455 n_elems = *(uint16_t *)(opaque+field->num_offset);
82fa39b7
JQ
1456 } else if (field->flags & VMS_VARRAY_UINT8) {
1457 n_elems = *(uint8_t *)(opaque+field->num_offset);
f752a6aa 1458 }
dde0463b 1459 if (field->flags & VMS_POINTER) {
e61a1e0a 1460 base_addr = *(void **)base_addr + field->start;
dde0463b 1461 }
f752a6aa 1462 for (i = 0; i < n_elems; i++) {
e61a1e0a 1463 void *addr = base_addr + size * i;
ec245e21 1464
19df438b
JQ
1465 if (field->flags & VMS_ARRAY_OF_POINTER) {
1466 addr = *(void **)addr;
1467 }
ec245e21 1468 if (field->flags & VMS_STRUCT) {
fa3aad24 1469 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
ec245e21 1470 } else {
e61a1e0a 1471 ret = field->info->get(f, addr, size);
ec245e21
JQ
1472
1473 }
f752a6aa
JQ
1474 if (ret < 0) {
1475 return ret;
1476 }
9ed7d6ae
JQ
1477 }
1478 }
1479 field++;
1480 }
811814bd
JQ
1481 ret = vmstate_subsection_load(f, vmsd, opaque);
1482 if (ret != 0) {
1483 return ret;
1484 }
752ff2fa 1485 if (vmsd->post_load) {
e59fb374 1486 return vmsd->post_load(opaque, version_id);
752ff2fa 1487 }
9ed7d6ae
JQ
1488 return 0;
1489}
1490
1491void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
84e2e3eb 1492 void *opaque)
9ed7d6ae
JQ
1493{
1494 VMStateField *field = vmsd->fields;
1495
8fb0791d
JQ
1496 if (vmsd->pre_save) {
1497 vmsd->pre_save(opaque);
1498 }
9ed7d6ae 1499 while(field->name) {
f11f6a5f
JQ
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;
e61a1e0a 1504 int size = field->size;
dde0463b 1505
e61a1e0a
JQ
1506 if (field->flags & VMS_VBUFFER) {
1507 size = *(int32_t *)(opaque+field->size_offset);
33599e2a
JQ
1508 if (field->flags & VMS_MULTIPLY) {
1509 size *= field->size;
1510 }
e61a1e0a 1511 }
f11f6a5f
JQ
1512 if (field->flags & VMS_ARRAY) {
1513 n_elems = field->num;
d6698281
JQ
1514 } else if (field->flags & VMS_VARRAY_INT32) {
1515 n_elems = *(int32_t *)(opaque+field->num_offset);
1329d189
AK
1516 } else if (field->flags & VMS_VARRAY_UINT32) {
1517 n_elems = *(uint32_t *)(opaque+field->num_offset);
bdb4941d
JQ
1518 } else if (field->flags & VMS_VARRAY_UINT16) {
1519 n_elems = *(uint16_t *)(opaque+field->num_offset);
b784421c
JQ
1520 } else if (field->flags & VMS_VARRAY_UINT8) {
1521 n_elems = *(uint8_t *)(opaque+field->num_offset);
f11f6a5f
JQ
1522 }
1523 if (field->flags & VMS_POINTER) {
e61a1e0a 1524 base_addr = *(void **)base_addr + field->start;
f11f6a5f
JQ
1525 }
1526 for (i = 0; i < n_elems; i++) {
e61a1e0a 1527 void *addr = base_addr + size * i;
ec245e21 1528
8595387e
JQ
1529 if (field->flags & VMS_ARRAY_OF_POINTER) {
1530 addr = *(void **)addr;
1531 }
f11f6a5f
JQ
1532 if (field->flags & VMS_STRUCT) {
1533 vmstate_save_state(f, field->vmsd, addr);
1534 } else {
e61a1e0a 1535 field->info->put(f, addr, size);
f11f6a5f 1536 }
ec245e21 1537 }
dde0463b 1538 }
9ed7d6ae
JQ
1539 field++;
1540 }
811814bd 1541 vmstate_subsection_save(f, vmsd, opaque);
9ed7d6ae
JQ
1542}
1543
4082be4d
JQ
1544static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1545{
9ed7d6ae 1546 if (!se->vmsd) { /* Old style */
22ea40f4 1547 return se->ops->load_state(f, se->opaque, version_id);
9ed7d6ae
JQ
1548 }
1549 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
4082be4d
JQ
1550}
1551
dc912121 1552static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
4082be4d 1553{
9ed7d6ae 1554 if (!se->vmsd) { /* Old style */
22ea40f4 1555 se->ops->save_state(f, se->opaque);
dc912121 1556 return;
9ed7d6ae
JQ
1557 }
1558 vmstate_save_state(f,se->vmsd, se->opaque);
4082be4d
JQ
1559}
1560
a672b469
AL
1561#define QEMU_VM_FILE_MAGIC 0x5145564d
1562#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1563#define QEMU_VM_FILE_VERSION 0x00000003
1564
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
811814bd 1570#define QEMU_VM_SUBSECTION 0x05
a672b469 1571
e1c37d0e 1572bool qemu_savevm_state_blocked(Error **errp)
dc912121
AW
1573{
1574 SaveStateEntry *se;
1575
1576 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1577 if (se->no_migrate) {
e1c37d0e 1578 error_set(errp, QERR_MIGRATION_NOT_SUPPORTED, se->idstr);
dc912121
AW
1579 return true;
1580 }
1581 }
1582 return false;
1583}
1584
6607ae23
IY
1585int qemu_savevm_state_begin(QEMUFile *f,
1586 const MigrationParams *params)
a672b469
AL
1587{
1588 SaveStateEntry *se;
39346385 1589 int ret;
a672b469 1590
c163b5ca 1591 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
22ea40f4 1592 if (!se->ops || !se->ops->set_params) {
c163b5ca 1593 continue;
6607ae23 1594 }
22ea40f4 1595 se->ops->set_params(params, se->opaque);
c163b5ca 1596 }
1597
a672b469
AL
1598 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1599 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1600
72cf2d4f 1601 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1602 int len;
1603
d1315aac 1604 if (!se->ops || !se->ops->save_live_setup) {
a672b469 1605 continue;
22ea40f4 1606 }
6bd68781
JQ
1607 if (se->ops && se->ops->is_active) {
1608 if (!se->ops->is_active(se->opaque)) {
1609 continue;
1610 }
1611 }
a672b469
AL
1612 /* Section type */
1613 qemu_put_byte(f, QEMU_VM_SECTION_START);
1614 qemu_put_be32(f, se->section_id);
1615
1616 /* ID string */
1617 len = strlen(se->idstr);
1618 qemu_put_byte(f, len);
1619 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1620
1621 qemu_put_be32(f, se->instance_id);
1622 qemu_put_be32(f, se->version_id);
1623
d1315aac 1624 ret = se->ops->save_live_setup(f, se->opaque);
2975725f 1625 if (ret < 0) {
539de124 1626 qemu_savevm_state_cancel(f);
2975725f
JQ
1627 return ret;
1628 }
a672b469 1629 }
624b9cc2 1630 ret = qemu_file_get_error(f);
39346385 1631 if (ret != 0) {
539de124 1632 qemu_savevm_state_cancel(f);
4ec7fcc7 1633 }
a672b469 1634
39346385
JQ
1635 return ret;
1636
a672b469
AL
1637}
1638
39346385 1639/*
07f35073 1640 * this function has three return values:
39346385
JQ
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
1644 */
539de124 1645int qemu_savevm_state_iterate(QEMUFile *f)
a672b469
AL
1646{
1647 SaveStateEntry *se;
1648 int ret = 1;
1649
72cf2d4f 1650 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
16310a3c 1651 if (!se->ops || !se->ops->save_live_iterate) {
a672b469 1652 continue;
22ea40f4 1653 }
6bd68781
JQ
1654 if (se->ops && se->ops->is_active) {
1655 if (!se->ops->is_active(se->opaque)) {
1656 continue;
1657 }
1658 }
aac844ed
JQ
1659 if (qemu_file_rate_limit(f)) {
1660 return 0;
1661 }
517a13c9 1662 trace_savevm_section_start();
a672b469
AL
1663 /* Section type */
1664 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1665 qemu_put_be32(f, se->section_id);
1666
16310a3c 1667 ret = se->ops->save_live_iterate(f, se->opaque);
517a13c9
JQ
1668 trace_savevm_section_end(se->section_id);
1669
2975725f 1670 if (ret <= 0) {
90697be8
JK
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;
1676 }
a672b469 1677 }
39346385
JQ
1678 if (ret != 0) {
1679 return ret;
1680 }
624b9cc2 1681 ret = qemu_file_get_error(f);
39346385 1682 if (ret != 0) {
539de124 1683 qemu_savevm_state_cancel(f);
4ec7fcc7 1684 }
39346385 1685 return ret;
a672b469
AL
1686}
1687
539de124 1688int qemu_savevm_state_complete(QEMUFile *f)
a672b469
AL
1689{
1690 SaveStateEntry *se;
2975725f 1691 int ret;
a672b469 1692
ea375f9a
JK
1693 cpu_synchronize_all_states();
1694
72cf2d4f 1695 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
16310a3c 1696 if (!se->ops || !se->ops->save_live_complete) {
a672b469 1697 continue;
22ea40f4 1698 }
6bd68781
JQ
1699 if (se->ops && se->ops->is_active) {
1700 if (!se->ops->is_active(se->opaque)) {
1701 continue;
1702 }
1703 }
517a13c9 1704 trace_savevm_section_start();
a672b469
AL
1705 /* Section type */
1706 qemu_put_byte(f, QEMU_VM_SECTION_END);
1707 qemu_put_be32(f, se->section_id);
1708
16310a3c 1709 ret = se->ops->save_live_complete(f, se->opaque);
517a13c9 1710 trace_savevm_section_end(se->section_id);
2975725f
JQ
1711 if (ret < 0) {
1712 return ret;
1713 }
a672b469
AL
1714 }
1715
72cf2d4f 1716 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1717 int len;
1718
22ea40f4 1719 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
a672b469 1720 continue;
22ea40f4 1721 }
517a13c9 1722 trace_savevm_section_start();
a672b469
AL
1723 /* Section type */
1724 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1725 qemu_put_be32(f, se->section_id);
1726
1727 /* ID string */
1728 len = strlen(se->idstr);
1729 qemu_put_byte(f, len);
1730 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1731
1732 qemu_put_be32(f, se->instance_id);
1733 qemu_put_be32(f, se->version_id);
1734
dc912121 1735 vmstate_save(f, se);
517a13c9 1736 trace_savevm_section_end(se->section_id);
a672b469
AL
1737 }
1738
1739 qemu_put_byte(f, QEMU_VM_EOF);
1740
624b9cc2 1741 return qemu_file_get_error(f);
a672b469
AL
1742}
1743
539de124 1744void qemu_savevm_state_cancel(QEMUFile *f)
4ec7fcc7
JK
1745{
1746 SaveStateEntry *se;
1747
1748 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
9b5bfab0
JQ
1749 if (se->ops && se->ops->cancel) {
1750 se->ops->cancel(se->opaque);
4ec7fcc7
JK
1751 }
1752 }
1753}
1754
e1c37d0e 1755static int qemu_savevm_state(QEMUFile *f)
a672b469 1756{
a672b469 1757 int ret;
6607ae23
IY
1758 MigrationParams params = {
1759 .blk = 0,
1760 .shared = 0
1761 };
a672b469 1762
e1c37d0e 1763 if (qemu_savevm_state_blocked(NULL)) {
dc912121
AW
1764 ret = -EINVAL;
1765 goto out;
1766 }
1767
6607ae23 1768 ret = qemu_savevm_state_begin(f, &params);
a672b469
AL
1769 if (ret < 0)
1770 goto out;
1771
1772 do {
539de124 1773 ret = qemu_savevm_state_iterate(f);
a672b469
AL
1774 if (ret < 0)
1775 goto out;
1776 } while (ret == 0);
1777
539de124 1778 ret = qemu_savevm_state_complete(f);
a672b469
AL
1779
1780out:
39346385 1781 if (ret == 0) {
624b9cc2 1782 ret = qemu_file_get_error(f);
39346385 1783 }
a672b469 1784
a672b469
AL
1785 return ret;
1786}
1787
a7ae8355
SS
1788static int qemu_save_device_state(QEMUFile *f)
1789{
1790 SaveStateEntry *se;
1791
1792 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1793 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1794
1795 cpu_synchronize_all_states();
1796
1797 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1798 int len;
1799
1800 if (se->is_ram) {
1801 continue;
1802 }
22ea40f4 1803 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
a7ae8355
SS
1804 continue;
1805 }
1806
1807 /* Section type */
1808 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1809 qemu_put_be32(f, se->section_id);
1810
1811 /* ID string */
1812 len = strlen(se->idstr);
1813 qemu_put_byte(f, len);
1814 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1815
1816 qemu_put_be32(f, se->instance_id);
1817 qemu_put_be32(f, se->version_id);
1818
1819 vmstate_save(f, se);
1820 }
1821
1822 qemu_put_byte(f, QEMU_VM_EOF);
1823
1824 return qemu_file_get_error(f);
1825}
1826
a672b469
AL
1827static SaveStateEntry *find_se(const char *idstr, int instance_id)
1828{
1829 SaveStateEntry *se;
1830
72cf2d4f 1831 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469 1832 if (!strcmp(se->idstr, idstr) &&
4d2ffa08
JK
1833 (instance_id == se->instance_id ||
1834 instance_id == se->alias_id))
a672b469 1835 return se;
7685ee6a
AW
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;
1842 }
a672b469
AL
1843 }
1844 return NULL;
1845}
1846
811814bd
JQ
1847static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1848{
1849 while(sub && sub->needed) {
1850 if (strcmp(idstr, sub->vmsd->name) == 0) {
1851 return sub->vmsd;
1852 }
1853 sub++;
1854 }
1855 return NULL;
1856}
1857
1858static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1859 void *opaque)
1860{
c6380724 1861 while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
811814bd
JQ
1862 char idstr[256];
1863 int ret;
c6380724 1864 uint8_t version_id, len, size;
811814bd
JQ
1865 const VMStateDescription *sub_vmsd;
1866
c6380724
JQ
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;
1871 }
1872 size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
1873 if (size != len) {
1874 return 0;
1875 }
1876 idstr[size] = 0;
811814bd 1877
c6380724
JQ
1878 if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
1879 /* it don't have a valid subsection name */
1880 return 0;
1881 }
3da9eebd 1882 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
811814bd
JQ
1883 if (sub_vmsd == NULL) {
1884 return -ENOENT;
1885 }
c6380724
JQ
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);
1890
811814bd
JQ
1891 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1892 if (ret) {
1893 return ret;
1894 }
1895 }
1896 return 0;
1897}
1898
1899static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1900 void *opaque)
1901{
1902 const VMStateSubsection *sub = vmsd->subsections;
1903
1904 while (sub && sub->needed) {
1905 if (sub->needed(opaque)) {
1906 const VMStateDescription *vmsd = sub->vmsd;
1907 uint8_t len;
1908
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);
1915 }
1916 sub++;
1917 }
1918}
1919
a672b469 1920typedef struct LoadStateEntry {
72cf2d4f 1921 QLIST_ENTRY(LoadStateEntry) entry;
a672b469
AL
1922 SaveStateEntry *se;
1923 int section_id;
1924 int version_id;
a672b469
AL
1925} LoadStateEntry;
1926
a672b469
AL
1927int qemu_loadvm_state(QEMUFile *f)
1928{
72cf2d4f
BS
1929 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1930 QLIST_HEAD_INITIALIZER(loadvm_handlers);
f4dbb8dd 1931 LoadStateEntry *le, *new_le;
a672b469
AL
1932 uint8_t section_type;
1933 unsigned int v;
1934 int ret;
1935
e1c37d0e 1936 if (qemu_savevm_state_blocked(NULL)) {
dc912121
AW
1937 return -EINVAL;
1938 }
1939
a672b469
AL
1940 v = qemu_get_be32(f);
1941 if (v != QEMU_VM_FILE_MAGIC)
1942 return -EINVAL;
1943
1944 v = qemu_get_be32(f);
bbfe1408
JQ
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;
1948 }
a672b469
AL
1949 if (v != QEMU_VM_FILE_VERSION)
1950 return -ENOTSUP;
1951
1952 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1953 uint32_t instance_id, version_id, section_id;
a672b469
AL
1954 SaveStateEntry *se;
1955 char idstr[257];
1956 int len;
1957
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);
1968
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;
1975 }
1976
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;
1983 }
1984
1985 /* Add entry */
7267c094 1986 le = g_malloc0(sizeof(*le));
a672b469
AL
1987
1988 le->se = se;
1989 le->section_id = section_id;
1990 le->version_id = version_id;
72cf2d4f 1991 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
a672b469 1992
4082be4d 1993 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a
JQ
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;
1998 }
a672b469
AL
1999 break;
2000 case QEMU_VM_SECTION_PART:
2001 case QEMU_VM_SECTION_END:
2002 section_id = qemu_get_be32(f);
2003
72cf2d4f 2004 QLIST_FOREACH(le, &loadvm_handlers, entry) {
f4dbb8dd
JQ
2005 if (le->section_id == section_id) {
2006 break;
2007 }
2008 }
a672b469
AL
2009 if (le == NULL) {
2010 fprintf(stderr, "Unknown savevm section %d\n", section_id);
2011 ret = -EINVAL;
2012 goto out;
2013 }
2014
4082be4d 2015 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a
JQ
2016 if (ret < 0) {
2017 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
2018 section_id);
2019 goto out;
2020 }
a672b469
AL
2021 break;
2022 default:
2023 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
2024 ret = -EINVAL;
2025 goto out;
2026 }
2027 }
2028
ea375f9a
JK
2029 cpu_synchronize_all_post_init();
2030
a672b469
AL
2031 ret = 0;
2032
2033out:
72cf2d4f
BS
2034 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
2035 QLIST_REMOVE(le, entry);
7267c094 2036 g_free(le);
a672b469
AL
2037 }
2038
42802d47
JQ
2039 if (ret == 0) {
2040 ret = qemu_file_get_error(f);
624b9cc2 2041 }
a672b469
AL
2042
2043 return ret;
2044}
2045
a672b469
AL
2046static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
2047 const char *name)
2048{
2049 QEMUSnapshotInfo *sn_tab, *sn;
2050 int nb_sns, i, ret;
2051
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;
2062 }
2063 }
7267c094 2064 g_free(sn_tab);
a672b469
AL
2065 return ret;
2066}
2067
cb499fb2
KW
2068/*
2069 * Deletes snapshots of a given name in all opened images.
2070 */
2071static int del_existing_snapshots(Monitor *mon, const char *name)
2072{
2073 BlockDriverState *bs;
cb499fb2
KW
2074 QEMUSnapshotInfo sn1, *snapshot = &sn1;
2075 int ret;
2076
dbc13590
MA
2077 bs = NULL;
2078 while ((bs = bdrv_next(bs))) {
cb499fb2
KW
2079 if (bdrv_can_snapshot(bs) &&
2080 bdrv_snapshot_find(bs, snapshot, name) >= 0)
2081 {
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;
2088 }
2089 }
2090 }
2091
2092 return 0;
2093}
2094
d54908a5 2095void do_savevm(Monitor *mon, const QDict *qdict)
a672b469
AL
2096{
2097 BlockDriverState *bs, *bs1;
2098 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
cb499fb2 2099 int ret;
a672b469
AL
2100 QEMUFile *f;
2101 int saved_vm_running;
c2c9a466 2102 uint64_t vm_state_size;
a672b469
AL
2103#ifdef _WIN32
2104 struct _timeb tb;
7d631a11 2105 struct tm *ptm;
a672b469
AL
2106#else
2107 struct timeval tv;
7d631a11 2108 struct tm tm;
a672b469 2109#endif
d54908a5 2110 const char *name = qdict_get_try_str(qdict, "name");
a672b469 2111
feeee5ac 2112 /* Verify if there is a device that doesn't support snapshots and is writable */
dbc13590
MA
2113 bs = NULL;
2114 while ((bs = bdrv_next(bs))) {
feeee5ac 2115
07b70bfb 2116 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
feeee5ac
MDCF
2117 continue;
2118 }
2119
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;
2124 }
2125 }
2126
f9092b10 2127 bs = bdrv_snapshots();
a672b469 2128 if (!bs) {
376253ec 2129 monitor_printf(mon, "No block device can accept snapshots\n");
a672b469
AL
2130 return;
2131 }
a672b469 2132
1354869c 2133 saved_vm_running = runstate_is_running();
0461d5a6 2134 vm_stop(RUN_STATE_SAVE_VM);
a672b469 2135
cb499fb2 2136 memset(sn, 0, sizeof(*sn));
a672b469
AL
2137
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
74475455 2148 sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
a672b469 2149
7d631a11
MDCF
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);
2157 }
2158 } else {
2159#ifdef _WIN32
55dd9ffa
SW
2160 time_t t = tb.time;
2161 ptm = localtime(&t);
7d631a11
MDCF
2162 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
2163#else
d7d9b528
BS
2164 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2165 localtime_r((const time_t *)&tv.tv_sec, &tm);
7d631a11
MDCF
2166 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2167#endif
2168 }
2169
cb499fb2 2170 /* Delete old snapshots of the same name */
f139a412 2171 if (name && del_existing_snapshots(mon, name) < 0) {
cb499fb2
KW
2172 goto the_end;
2173 }
2174
a672b469 2175 /* save the VM state */
45566e9c 2176 f = qemu_fopen_bdrv(bs, 1);
a672b469 2177 if (!f) {
376253ec 2178 monitor_printf(mon, "Could not open VM state file\n");
a672b469
AL
2179 goto the_end;
2180 }
e1c37d0e 2181 ret = qemu_savevm_state(f);
2d22b18f 2182 vm_state_size = qemu_ftell(f);
a672b469
AL
2183 qemu_fclose(f);
2184 if (ret < 0) {
376253ec 2185 monitor_printf(mon, "Error %d while writing VM\n", ret);
a672b469
AL
2186 goto the_end;
2187 }
2188
2189 /* create the snapshots */
2190
dbc13590
MA
2191 bs1 = NULL;
2192 while ((bs1 = bdrv_next(bs1))) {
feeee5ac 2193 if (bdrv_can_snapshot(bs1)) {
2d22b18f
AL
2194 /* Write VM state size only to the image that contains the state */
2195 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
a672b469
AL
2196 ret = bdrv_snapshot_create(bs1, sn);
2197 if (ret < 0) {
376253ec
AL
2198 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
2199 bdrv_get_device_name(bs1));
a672b469
AL
2200 }
2201 }
2202 }
2203
2204 the_end:
2205 if (saved_vm_running)
2206 vm_start();
2207}
2208
a7ae8355
SS
2209void qmp_xen_save_devices_state(const char *filename, Error **errp)
2210{
2211 QEMUFile *f;
2212 int saved_vm_running;
2213 int ret;
2214
2215 saved_vm_running = runstate_is_running();
2216 vm_stop(RUN_STATE_SAVE_VM);
2217
2218 f = qemu_fopen(filename, "wb");
2219 if (!f) {
2220 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
2221 goto the_end;
2222 }
2223 ret = qemu_save_device_state(f);
2224 qemu_fclose(f);
2225 if (ret < 0) {
2226 error_set(errp, QERR_IO_ERROR);
2227 }
2228
2229 the_end:
2230 if (saved_vm_running)
2231 vm_start();
a7ae8355
SS
2232}
2233
03cd4655 2234int load_vmstate(const char *name)
a672b469 2235{
f0aa7a8b 2236 BlockDriverState *bs, *bs_vm_state;
2d22b18f 2237 QEMUSnapshotInfo sn;
a672b469 2238 QEMUFile *f;
751c6a17 2239 int ret;
a672b469 2240
f0aa7a8b
MDCF
2241 bs_vm_state = bdrv_snapshots();
2242 if (!bs_vm_state) {
2243 error_report("No block device supports snapshots");
2244 return -ENOTSUP;
2245 }
2246
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) {
e11480db
KW
2252 error_report("This is a disk-only snapshot. Revert to it offline "
2253 "using qemu-img.");
f0aa7a8b
MDCF
2254 return -EINVAL;
2255 }
2256
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. */
dbc13590
MA
2259 bs = NULL;
2260 while ((bs = bdrv_next(bs))) {
feeee5ac 2261
07b70bfb 2262 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
feeee5ac
MDCF
2263 continue;
2264 }
2265
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;
2270 }
feeee5ac 2271
f0aa7a8b
MDCF
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;
2277 }
a672b469
AL
2278 }
2279
2280 /* Flush all IO requests so they don't interfere with the new state. */
922453bc 2281 bdrv_drain_all();
a672b469 2282
f0aa7a8b
MDCF
2283 bs = NULL;
2284 while ((bs = bdrv_next(bs))) {
2285 if (bdrv_can_snapshot(bs)) {
2286 ret = bdrv_snapshot_goto(bs, name);
a672b469 2287 if (ret < 0) {
f0aa7a8b
MDCF
2288 error_report("Error %d while activating snapshot '%s' on '%s'",
2289 ret, name, bdrv_get_device_name(bs));
2290 return ret;
a672b469
AL
2291 }
2292 }
2293 }
2294
a672b469 2295 /* restore the VM state */
f0aa7a8b 2296 f = qemu_fopen_bdrv(bs_vm_state, 0);
a672b469 2297 if (!f) {
1ecda02b 2298 error_report("Could not open VM state file");
05f2401e 2299 return -EINVAL;
a672b469 2300 }
f0aa7a8b 2301
5a8a49d7 2302 qemu_system_reset(VMRESET_SILENT);
a672b469 2303 ret = qemu_loadvm_state(f);
f0aa7a8b 2304
a672b469
AL
2305 qemu_fclose(f);
2306 if (ret < 0) {
1ecda02b 2307 error_report("Error %d while loading VM state", ret);
05f2401e 2308 return ret;
a672b469 2309 }
f0aa7a8b 2310
05f2401e 2311 return 0;
7b630349
JQ
2312}
2313
d54908a5 2314void do_delvm(Monitor *mon, const QDict *qdict)
a672b469
AL
2315{
2316 BlockDriverState *bs, *bs1;
751c6a17 2317 int ret;
d54908a5 2318 const char *name = qdict_get_str(qdict, "name");
a672b469 2319
f9092b10 2320 bs = bdrv_snapshots();
a672b469 2321 if (!bs) {
376253ec 2322 monitor_printf(mon, "No block device supports snapshots\n");
a672b469
AL
2323 return;
2324 }
2325
dbc13590
MA
2326 bs1 = NULL;
2327 while ((bs1 = bdrv_next(bs1))) {
feeee5ac 2328 if (bdrv_can_snapshot(bs1)) {
a672b469
AL
2329 ret = bdrv_snapshot_delete(bs1, name);
2330 if (ret < 0) {
2331 if (ret == -ENOTSUP)
376253ec
AL
2332 monitor_printf(mon,
2333 "Snapshots not supported on device '%s'\n",
2334 bdrv_get_device_name(bs1));
a672b469 2335 else
376253ec
AL
2336 monitor_printf(mon, "Error %d while deleting snapshot on "
2337 "'%s'\n", ret, bdrv_get_device_name(bs1));
a672b469
AL
2338 }
2339 }
2340 }
2341}
2342
376253ec 2343void do_info_snapshots(Monitor *mon)
a672b469
AL
2344{
2345 BlockDriverState *bs, *bs1;
f9209915
MDCF
2346 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2347 int nb_sns, i, ret, available;
2348 int total;
2349 int *available_snapshots;
a672b469
AL
2350 char buf[256];
2351
f9092b10 2352 bs = bdrv_snapshots();
a672b469 2353 if (!bs) {
376253ec 2354 monitor_printf(mon, "No available block device supports snapshots\n");
a672b469
AL
2355 return;
2356 }
a672b469
AL
2357
2358 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2359 if (nb_sns < 0) {
376253ec 2360 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
a672b469
AL
2361 return;
2362 }
f9209915
MDCF
2363
2364 if (nb_sns == 0) {
2365 monitor_printf(mon, "There is no snapshot available.\n");
2366 return;
2367 }
2368
7267c094 2369 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
f9209915
MDCF
2370 total = 0;
2371 for (i = 0; i < nb_sns; i++) {
a672b469 2372 sn = &sn_tab[i];
f9209915
MDCF
2373 available = 1;
2374 bs1 = NULL;
2375
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;
2382 }
2383 }
2384 }
2385
2386 if (available) {
2387 available_snapshots[total] = i;
2388 total++;
2389 }
a672b469 2390 }
f9209915
MDCF
2391
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));
2397 }
2398 } else {
2399 monitor_printf(mon, "There is no suitable snapshot available\n");
2400 }
2401
7267c094
AL
2402 g_free(sn_tab);
2403 g_free(available_snapshots);
f9209915 2404
a672b469 2405}
c5705a77
AK
2406
2407void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2408{
1ddde087 2409 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
c5705a77
AK
2410 memory_region_name(mr), dev);
2411}
2412
2413void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2414{
2415 /* Nothing do to while the implementation is in RAMBlock */
2416}
2417
2418void vmstate_register_ram_global(MemoryRegion *mr)
2419{
2420 vmstate_register_ram(mr, NULL);
2421}
302dfbeb
OW
2422
2423/*
2424 page = zrun nzrun
2425 | zrun nzrun page
2426
2427 zrun = length
2428
2429 nzrun = length byte...
2430
2431 length = uleb128 encoded integer
2432 */
2433int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
2434 uint8_t *dst, int dlen)
2435{
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;
2440
2441 g_assert(!(((uintptr_t)old_buf | (uintptr_t)new_buf | slen) %
2442 sizeof(long)));
2443
2444 while (i < slen) {
2445 /* overflow */
2446 if (d + 2 > dlen) {
2447 return -1;
2448 }
2449
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--;
2456 }
2457
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);
2464 }
2465
2466 /* go over the rest */
2467 while (i < slen && old_buf[i] == new_buf[i]) {
2468 zrun_len++;
2469 i++;
2470 }
2471 }
2472
2473 /* buffer unchanged */
2474 if (zrun_len == slen) {
2475 return 0;
2476 }
2477
2478 /* skip last zero run */
2479 if (i == slen) {
2480 return d;
2481 }
2482
2483 d += uleb128_encode_small(dst + d, zrun_len);
2484
2485 zrun_len = 0;
2486 nzrun_start = new_buf + i;
2487
2488 /* overflow */
2489 if (d + 2 > dlen) {
2490 return -1;
2491 }
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--;
2498 }
2499
2500 /* word at a time for speed, use of 32-bit long okay */
2501 if (!res) {
2502 /* truncation to 32-bit long okay */
a5b71725 2503 long mask = (long)0x0101010101010101ULL;
302dfbeb
OW
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++;
2511 }
2512 break;
2513 } else {
2514 i += sizeof(long);
2515 nzrun_len += sizeof(long);
2516 }
2517 }
2518 }
2519
2520 d += uleb128_encode_small(dst + d, nzrun_len);
2521 /* overflow */
2522 if (d + nzrun_len > dlen) {
2523 return -1;
2524 }
2525 memcpy(dst + d, nzrun_start, nzrun_len);
2526 d += nzrun_len;
2527 nzrun_len = 0;
2528 }
2529
2530 return d;
2531}
2532
2533int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen)
2534{
2535 int i = 0, d = 0;
2536 int ret;
2537 uint32_t count = 0;
2538
2539 while (i < slen) {
2540
2541 /* zrun */
2542 if ((slen - i) < 2) {
2543 return -1;
2544 }
2545
2546 ret = uleb128_decode_small(src + i, &count);
2547 if (ret < 0 || (i && !count)) {
2548 return -1;
2549 }
2550 i += ret;
2551 d += count;
2552
2553 /* overflow */
2554 if (d > dlen) {
2555 return -1;
2556 }
2557
2558 /* nzrun */
2559 if ((slen - i) < 2) {
2560 return -1;
2561 }
2562
2563 ret = uleb128_decode_small(src + i, &count);
2564 if (ret < 0 || !count) {
2565 return -1;
2566 }
2567 i += ret;
2568
2569 /* overflow */
2570 if (d + count > dlen || i + count > slen) {
2571 return -1;
2572 }
2573
2574 memcpy(dst + d, src + i, count);
2575 d += count;
2576 i += count;
2577 }
2578
2579 return d;
2580}