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