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