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