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