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