]> git.proxmox.com Git - qemu.git/blame - savevm.c
qcow2: Use QcowCache
[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
3d002df3 614int64_t qemu_file_get_rate_limit(QEMUFile *f)
c163b5ca 615{
616 if (f->get_rate_limit)
617 return f->get_rate_limit(f->opaque);
618
619 return 0;
620}
621
3d002df3 622int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
19629537 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
dc912121 1404static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
4082be4d 1405{
9ed7d6ae
JQ
1406 if (!se->vmsd) { /* Old style */
1407 se->save_state(f, se->opaque);
dc912121 1408 return;
9ed7d6ae
JQ
1409 }
1410 vmstate_save_state(f,se->vmsd, se->opaque);
4082be4d
JQ
1411}
1412
a672b469
AL
1413#define QEMU_VM_FILE_MAGIC 0x5145564d
1414#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1415#define QEMU_VM_FILE_VERSION 0x00000003
1416
1417#define QEMU_VM_EOF 0x00
1418#define QEMU_VM_SECTION_START 0x01
1419#define QEMU_VM_SECTION_PART 0x02
1420#define QEMU_VM_SECTION_END 0x03
1421#define QEMU_VM_SECTION_FULL 0x04
811814bd 1422#define QEMU_VM_SUBSECTION 0x05
a672b469 1423
dc912121
AW
1424bool qemu_savevm_state_blocked(Monitor *mon)
1425{
1426 SaveStateEntry *se;
1427
1428 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1429 if (se->no_migrate) {
1430 monitor_printf(mon, "state blocked by non-migratable device '%s'\n",
1431 se->idstr);
1432 return true;
1433 }
1434 }
1435 return false;
1436}
1437
f327aa0c
JK
1438int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
1439 int shared)
a672b469
AL
1440{
1441 SaveStateEntry *se;
1442
c163b5ca 1443 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1444 if(se->set_params == NULL) {
1445 continue;
1446 }
1447 se->set_params(blk_enable, shared, se->opaque);
1448 }
1449
a672b469
AL
1450 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1451 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1452
72cf2d4f 1453 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1454 int len;
1455
1456 if (se->save_live_state == NULL)
1457 continue;
1458
1459 /* Section type */
1460 qemu_put_byte(f, QEMU_VM_SECTION_START);
1461 qemu_put_be32(f, se->section_id);
1462
1463 /* ID string */
1464 len = strlen(se->idstr);
1465 qemu_put_byte(f, len);
1466 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1467
1468 qemu_put_be32(f, se->instance_id);
1469 qemu_put_be32(f, se->version_id);
1470
f327aa0c 1471 se->save_live_state(mon, f, QEMU_VM_SECTION_START, se->opaque);
a672b469
AL
1472 }
1473
4ec7fcc7 1474 if (qemu_file_has_error(f)) {
f327aa0c 1475 qemu_savevm_state_cancel(mon, f);
a672b469 1476 return -EIO;
4ec7fcc7 1477 }
a672b469
AL
1478
1479 return 0;
1480}
1481
f327aa0c 1482int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f)
a672b469
AL
1483{
1484 SaveStateEntry *se;
1485 int ret = 1;
1486
72cf2d4f 1487 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1488 if (se->save_live_state == NULL)
1489 continue;
1490
1491 /* Section type */
1492 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1493 qemu_put_be32(f, se->section_id);
1494
90697be8
JK
1495 ret = se->save_live_state(mon, f, QEMU_VM_SECTION_PART, se->opaque);
1496 if (!ret) {
1497 /* Do not proceed to the next vmstate before this one reported
1498 completion of the current stage. This serializes the migration
1499 and reduces the probability that a faster changing state is
1500 synchronized over and over again. */
1501 break;
1502 }
a672b469
AL
1503 }
1504
1505 if (ret)
1506 return 1;
1507
4ec7fcc7 1508 if (qemu_file_has_error(f)) {
f327aa0c 1509 qemu_savevm_state_cancel(mon, f);
a672b469 1510 return -EIO;
4ec7fcc7 1511 }
a672b469
AL
1512
1513 return 0;
1514}
1515
f327aa0c 1516int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f)
a672b469
AL
1517{
1518 SaveStateEntry *se;
1519
ea375f9a
JK
1520 cpu_synchronize_all_states();
1521
72cf2d4f 1522 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1523 if (se->save_live_state == NULL)
1524 continue;
1525
1526 /* Section type */
1527 qemu_put_byte(f, QEMU_VM_SECTION_END);
1528 qemu_put_be32(f, se->section_id);
1529
f327aa0c 1530 se->save_live_state(mon, f, QEMU_VM_SECTION_END, se->opaque);
a672b469
AL
1531 }
1532
72cf2d4f 1533 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1534 int len;
1535
9ed7d6ae 1536 if (se->save_state == NULL && se->vmsd == NULL)
a672b469
AL
1537 continue;
1538
1539 /* Section type */
1540 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1541 qemu_put_be32(f, se->section_id);
1542
1543 /* ID string */
1544 len = strlen(se->idstr);
1545 qemu_put_byte(f, len);
1546 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1547
1548 qemu_put_be32(f, se->instance_id);
1549 qemu_put_be32(f, se->version_id);
1550
dc912121 1551 vmstate_save(f, se);
a672b469
AL
1552 }
1553
1554 qemu_put_byte(f, QEMU_VM_EOF);
1555
1556 if (qemu_file_has_error(f))
1557 return -EIO;
1558
1559 return 0;
1560}
1561
f327aa0c 1562void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f)
4ec7fcc7
JK
1563{
1564 SaveStateEntry *se;
1565
1566 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1567 if (se->save_live_state) {
f327aa0c 1568 se->save_live_state(mon, f, -1, se->opaque);
4ec7fcc7
JK
1569 }
1570 }
1571}
1572
f327aa0c 1573static int qemu_savevm_state(Monitor *mon, QEMUFile *f)
a672b469
AL
1574{
1575 int saved_vm_running;
1576 int ret;
1577
1578 saved_vm_running = vm_running;
1579 vm_stop(0);
1580
dc912121
AW
1581 if (qemu_savevm_state_blocked(mon)) {
1582 ret = -EINVAL;
1583 goto out;
1584 }
1585
f327aa0c 1586 ret = qemu_savevm_state_begin(mon, f, 0, 0);
a672b469
AL
1587 if (ret < 0)
1588 goto out;
1589
1590 do {
f327aa0c 1591 ret = qemu_savevm_state_iterate(mon, f);
a672b469
AL
1592 if (ret < 0)
1593 goto out;
1594 } while (ret == 0);
1595
f327aa0c 1596 ret = qemu_savevm_state_complete(mon, f);
a672b469
AL
1597
1598out:
1599 if (qemu_file_has_error(f))
1600 ret = -EIO;
1601
1602 if (!ret && saved_vm_running)
1603 vm_start();
1604
1605 return ret;
1606}
1607
1608static SaveStateEntry *find_se(const char *idstr, int instance_id)
1609{
1610 SaveStateEntry *se;
1611
72cf2d4f 1612 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469 1613 if (!strcmp(se->idstr, idstr) &&
4d2ffa08
JK
1614 (instance_id == se->instance_id ||
1615 instance_id == se->alias_id))
a672b469 1616 return se;
7685ee6a
AW
1617 /* Migrating from an older version? */
1618 if (strstr(se->idstr, idstr) && se->compat) {
1619 if (!strcmp(se->compat->idstr, idstr) &&
1620 (instance_id == se->compat->instance_id ||
1621 instance_id == se->alias_id))
1622 return se;
1623 }
a672b469
AL
1624 }
1625 return NULL;
1626}
1627
811814bd
JQ
1628static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1629{
1630 while(sub && sub->needed) {
1631 if (strcmp(idstr, sub->vmsd->name) == 0) {
1632 return sub->vmsd;
1633 }
1634 sub++;
1635 }
1636 return NULL;
1637}
1638
1639static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1640 void *opaque)
1641{
1642 while (qemu_peek_byte(f) == QEMU_VM_SUBSECTION) {
1643 char idstr[256];
1644 int ret;
49a2942d 1645 uint8_t version_id, len;
811814bd
JQ
1646 const VMStateDescription *sub_vmsd;
1647
49a2942d 1648 qemu_get_byte(f); /* subsection */
811814bd
JQ
1649 len = qemu_get_byte(f);
1650 qemu_get_buffer(f, (uint8_t *)idstr, len);
1651 idstr[len] = 0;
1652 version_id = qemu_get_be32(f);
1653
1654 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
1655 if (sub_vmsd == NULL) {
1656 return -ENOENT;
1657 }
1658 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1659 if (ret) {
1660 return ret;
1661 }
1662 }
1663 return 0;
1664}
1665
1666static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1667 void *opaque)
1668{
1669 const VMStateSubsection *sub = vmsd->subsections;
1670
1671 while (sub && sub->needed) {
1672 if (sub->needed(opaque)) {
1673 const VMStateDescription *vmsd = sub->vmsd;
1674 uint8_t len;
1675
1676 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1677 len = strlen(vmsd->name);
1678 qemu_put_byte(f, len);
1679 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1680 qemu_put_be32(f, vmsd->version_id);
1681 vmstate_save_state(f, vmsd, opaque);
1682 }
1683 sub++;
1684 }
1685}
1686
a672b469 1687typedef struct LoadStateEntry {
72cf2d4f 1688 QLIST_ENTRY(LoadStateEntry) entry;
a672b469
AL
1689 SaveStateEntry *se;
1690 int section_id;
1691 int version_id;
a672b469
AL
1692} LoadStateEntry;
1693
a672b469
AL
1694int qemu_loadvm_state(QEMUFile *f)
1695{
72cf2d4f
BS
1696 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1697 QLIST_HEAD_INITIALIZER(loadvm_handlers);
f4dbb8dd 1698 LoadStateEntry *le, *new_le;
a672b469
AL
1699 uint8_t section_type;
1700 unsigned int v;
1701 int ret;
1702
dc912121
AW
1703 if (qemu_savevm_state_blocked(default_mon)) {
1704 return -EINVAL;
1705 }
1706
a672b469
AL
1707 v = qemu_get_be32(f);
1708 if (v != QEMU_VM_FILE_MAGIC)
1709 return -EINVAL;
1710
1711 v = qemu_get_be32(f);
bbfe1408
JQ
1712 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1713 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1714 return -ENOTSUP;
1715 }
a672b469
AL
1716 if (v != QEMU_VM_FILE_VERSION)
1717 return -ENOTSUP;
1718
1719 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1720 uint32_t instance_id, version_id, section_id;
a672b469
AL
1721 SaveStateEntry *se;
1722 char idstr[257];
1723 int len;
1724
1725 switch (section_type) {
1726 case QEMU_VM_SECTION_START:
1727 case QEMU_VM_SECTION_FULL:
1728 /* Read section start */
1729 section_id = qemu_get_be32(f);
1730 len = qemu_get_byte(f);
1731 qemu_get_buffer(f, (uint8_t *)idstr, len);
1732 idstr[len] = 0;
1733 instance_id = qemu_get_be32(f);
1734 version_id = qemu_get_be32(f);
1735
1736 /* Find savevm section */
1737 se = find_se(idstr, instance_id);
1738 if (se == NULL) {
1739 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1740 ret = -EINVAL;
1741 goto out;
1742 }
1743
1744 /* Validate version */
1745 if (version_id > se->version_id) {
1746 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1747 version_id, idstr, se->version_id);
1748 ret = -EINVAL;
1749 goto out;
1750 }
1751
1752 /* Add entry */
1753 le = qemu_mallocz(sizeof(*le));
a672b469
AL
1754
1755 le->se = se;
1756 le->section_id = section_id;
1757 le->version_id = version_id;
72cf2d4f 1758 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
a672b469 1759
4082be4d 1760 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a
JQ
1761 if (ret < 0) {
1762 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1763 instance_id, idstr);
1764 goto out;
1765 }
a672b469
AL
1766 break;
1767 case QEMU_VM_SECTION_PART:
1768 case QEMU_VM_SECTION_END:
1769 section_id = qemu_get_be32(f);
1770
72cf2d4f 1771 QLIST_FOREACH(le, &loadvm_handlers, entry) {
f4dbb8dd
JQ
1772 if (le->section_id == section_id) {
1773 break;
1774 }
1775 }
a672b469
AL
1776 if (le == NULL) {
1777 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1778 ret = -EINVAL;
1779 goto out;
1780 }
1781
4082be4d 1782 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a
JQ
1783 if (ret < 0) {
1784 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1785 section_id);
1786 goto out;
1787 }
a672b469
AL
1788 break;
1789 default:
1790 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1791 ret = -EINVAL;
1792 goto out;
1793 }
1794 }
1795
ea375f9a
JK
1796 cpu_synchronize_all_post_init();
1797
a672b469
AL
1798 ret = 0;
1799
1800out:
72cf2d4f
BS
1801 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1802 QLIST_REMOVE(le, entry);
a672b469
AL
1803 qemu_free(le);
1804 }
1805
1806 if (qemu_file_has_error(f))
1807 ret = -EIO;
1808
1809 return ret;
1810}
1811
a672b469
AL
1812static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1813 const char *name)
1814{
1815 QEMUSnapshotInfo *sn_tab, *sn;
1816 int nb_sns, i, ret;
1817
1818 ret = -ENOENT;
1819 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1820 if (nb_sns < 0)
1821 return ret;
1822 for(i = 0; i < nb_sns; i++) {
1823 sn = &sn_tab[i];
1824 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1825 *sn_info = *sn;
1826 ret = 0;
1827 break;
1828 }
1829 }
1830 qemu_free(sn_tab);
1831 return ret;
1832}
1833
cb499fb2
KW
1834/*
1835 * Deletes snapshots of a given name in all opened images.
1836 */
1837static int del_existing_snapshots(Monitor *mon, const char *name)
1838{
1839 BlockDriverState *bs;
cb499fb2
KW
1840 QEMUSnapshotInfo sn1, *snapshot = &sn1;
1841 int ret;
1842
dbc13590
MA
1843 bs = NULL;
1844 while ((bs = bdrv_next(bs))) {
cb499fb2
KW
1845 if (bdrv_can_snapshot(bs) &&
1846 bdrv_snapshot_find(bs, snapshot, name) >= 0)
1847 {
1848 ret = bdrv_snapshot_delete(bs, name);
1849 if (ret < 0) {
1850 monitor_printf(mon,
1851 "Error while deleting snapshot on '%s'\n",
1852 bdrv_get_device_name(bs));
1853 return -1;
1854 }
1855 }
1856 }
1857
1858 return 0;
1859}
1860
d54908a5 1861void do_savevm(Monitor *mon, const QDict *qdict)
a672b469
AL
1862{
1863 BlockDriverState *bs, *bs1;
1864 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
cb499fb2 1865 int ret;
a672b469
AL
1866 QEMUFile *f;
1867 int saved_vm_running;
2d22b18f 1868 uint32_t vm_state_size;
a672b469
AL
1869#ifdef _WIN32
1870 struct _timeb tb;
7d631a11 1871 struct tm *ptm;
a672b469
AL
1872#else
1873 struct timeval tv;
7d631a11 1874 struct tm tm;
a672b469 1875#endif
d54908a5 1876 const char *name = qdict_get_try_str(qdict, "name");
a672b469 1877
feeee5ac 1878 /* Verify if there is a device that doesn't support snapshots and is writable */
dbc13590
MA
1879 bs = NULL;
1880 while ((bs = bdrv_next(bs))) {
feeee5ac
MDCF
1881
1882 if (bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1883 continue;
1884 }
1885
1886 if (!bdrv_can_snapshot(bs)) {
1887 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
1888 bdrv_get_device_name(bs));
1889 return;
1890 }
1891 }
1892
f9092b10 1893 bs = bdrv_snapshots();
a672b469 1894 if (!bs) {
376253ec 1895 monitor_printf(mon, "No block device can accept snapshots\n");
a672b469
AL
1896 return;
1897 }
a672b469
AL
1898
1899 saved_vm_running = vm_running;
1900 vm_stop(0);
1901
cb499fb2 1902 memset(sn, 0, sizeof(*sn));
a672b469
AL
1903
1904 /* fill auxiliary fields */
1905#ifdef _WIN32
1906 _ftime(&tb);
1907 sn->date_sec = tb.time;
1908 sn->date_nsec = tb.millitm * 1000000;
1909#else
1910 gettimeofday(&tv, NULL);
1911 sn->date_sec = tv.tv_sec;
1912 sn->date_nsec = tv.tv_usec * 1000;
1913#endif
1914 sn->vm_clock_nsec = qemu_get_clock(vm_clock);
1915
7d631a11
MDCF
1916 if (name) {
1917 ret = bdrv_snapshot_find(bs, old_sn, name);
1918 if (ret >= 0) {
1919 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1920 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1921 } else {
1922 pstrcpy(sn->name, sizeof(sn->name), name);
1923 }
1924 } else {
1925#ifdef _WIN32
1926 ptm = localtime(&tb.time);
1927 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
1928#else
d7d9b528
BS
1929 /* cast below needed for OpenBSD where tv_sec is still 'long' */
1930 localtime_r((const time_t *)&tv.tv_sec, &tm);
7d631a11
MDCF
1931 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
1932#endif
1933 }
1934
cb499fb2 1935 /* Delete old snapshots of the same name */
f139a412 1936 if (name && del_existing_snapshots(mon, name) < 0) {
cb499fb2
KW
1937 goto the_end;
1938 }
1939
a672b469 1940 /* save the VM state */
45566e9c 1941 f = qemu_fopen_bdrv(bs, 1);
a672b469 1942 if (!f) {
376253ec 1943 monitor_printf(mon, "Could not open VM state file\n");
a672b469
AL
1944 goto the_end;
1945 }
f327aa0c 1946 ret = qemu_savevm_state(mon, f);
2d22b18f 1947 vm_state_size = qemu_ftell(f);
a672b469
AL
1948 qemu_fclose(f);
1949 if (ret < 0) {
376253ec 1950 monitor_printf(mon, "Error %d while writing VM\n", ret);
a672b469
AL
1951 goto the_end;
1952 }
1953
1954 /* create the snapshots */
1955
dbc13590
MA
1956 bs1 = NULL;
1957 while ((bs1 = bdrv_next(bs1))) {
feeee5ac 1958 if (bdrv_can_snapshot(bs1)) {
2d22b18f
AL
1959 /* Write VM state size only to the image that contains the state */
1960 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
a672b469
AL
1961 ret = bdrv_snapshot_create(bs1, sn);
1962 if (ret < 0) {
376253ec
AL
1963 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1964 bdrv_get_device_name(bs1));
a672b469
AL
1965 }
1966 }
1967 }
1968
1969 the_end:
1970 if (saved_vm_running)
1971 vm_start();
1972}
1973
03cd4655 1974int load_vmstate(const char *name)
a672b469 1975{
f0aa7a8b 1976 BlockDriverState *bs, *bs_vm_state;
2d22b18f 1977 QEMUSnapshotInfo sn;
a672b469 1978 QEMUFile *f;
751c6a17 1979 int ret;
a672b469 1980
f0aa7a8b
MDCF
1981 bs_vm_state = bdrv_snapshots();
1982 if (!bs_vm_state) {
1983 error_report("No block device supports snapshots");
1984 return -ENOTSUP;
1985 }
1986
1987 /* Don't even try to load empty VM states */
1988 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
1989 if (ret < 0) {
1990 return ret;
1991 } else if (sn.vm_state_size == 0) {
1992 return -EINVAL;
1993 }
1994
1995 /* Verify if there is any device that doesn't support snapshots and is
1996 writable and check if the requested snapshot is available too. */
dbc13590
MA
1997 bs = NULL;
1998 while ((bs = bdrv_next(bs))) {
feeee5ac
MDCF
1999
2000 if (bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
2001 continue;
2002 }
2003
2004 if (!bdrv_can_snapshot(bs)) {
2005 error_report("Device '%s' is writable but does not support snapshots.",
2006 bdrv_get_device_name(bs));
2007 return -ENOTSUP;
2008 }
feeee5ac 2009
f0aa7a8b
MDCF
2010 ret = bdrv_snapshot_find(bs, &sn, name);
2011 if (ret < 0) {
2012 error_report("Device '%s' does not have the requested snapshot '%s'",
2013 bdrv_get_device_name(bs), name);
2014 return ret;
2015 }
a672b469
AL
2016 }
2017
2018 /* Flush all IO requests so they don't interfere with the new state. */
2019 qemu_aio_flush();
2020
f0aa7a8b
MDCF
2021 bs = NULL;
2022 while ((bs = bdrv_next(bs))) {
2023 if (bdrv_can_snapshot(bs)) {
2024 ret = bdrv_snapshot_goto(bs, name);
a672b469 2025 if (ret < 0) {
f0aa7a8b
MDCF
2026 error_report("Error %d while activating snapshot '%s' on '%s'",
2027 ret, name, bdrv_get_device_name(bs));
2028 return ret;
a672b469
AL
2029 }
2030 }
2031 }
2032
a672b469 2033 /* restore the VM state */
f0aa7a8b 2034 f = qemu_fopen_bdrv(bs_vm_state, 0);
a672b469 2035 if (!f) {
1ecda02b 2036 error_report("Could not open VM state file");
05f2401e 2037 return -EINVAL;
a672b469 2038 }
f0aa7a8b 2039
a672b469 2040 ret = qemu_loadvm_state(f);
f0aa7a8b 2041
a672b469
AL
2042 qemu_fclose(f);
2043 if (ret < 0) {
1ecda02b 2044 error_report("Error %d while loading VM state", ret);
05f2401e 2045 return ret;
a672b469 2046 }
f0aa7a8b 2047
05f2401e 2048 return 0;
7b630349
JQ
2049}
2050
d54908a5 2051void do_delvm(Monitor *mon, const QDict *qdict)
a672b469
AL
2052{
2053 BlockDriverState *bs, *bs1;
751c6a17 2054 int ret;
d54908a5 2055 const char *name = qdict_get_str(qdict, "name");
a672b469 2056
f9092b10 2057 bs = bdrv_snapshots();
a672b469 2058 if (!bs) {
376253ec 2059 monitor_printf(mon, "No block device supports snapshots\n");
a672b469
AL
2060 return;
2061 }
2062
dbc13590
MA
2063 bs1 = NULL;
2064 while ((bs1 = bdrv_next(bs1))) {
feeee5ac 2065 if (bdrv_can_snapshot(bs1)) {
a672b469
AL
2066 ret = bdrv_snapshot_delete(bs1, name);
2067 if (ret < 0) {
2068 if (ret == -ENOTSUP)
376253ec
AL
2069 monitor_printf(mon,
2070 "Snapshots not supported on device '%s'\n",
2071 bdrv_get_device_name(bs1));
a672b469 2072 else
376253ec
AL
2073 monitor_printf(mon, "Error %d while deleting snapshot on "
2074 "'%s'\n", ret, bdrv_get_device_name(bs1));
a672b469
AL
2075 }
2076 }
2077 }
2078}
2079
376253ec 2080void do_info_snapshots(Monitor *mon)
a672b469
AL
2081{
2082 BlockDriverState *bs, *bs1;
f9209915
MDCF
2083 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2084 int nb_sns, i, ret, available;
2085 int total;
2086 int *available_snapshots;
a672b469
AL
2087 char buf[256];
2088
f9092b10 2089 bs = bdrv_snapshots();
a672b469 2090 if (!bs) {
376253ec 2091 monitor_printf(mon, "No available block device supports snapshots\n");
a672b469
AL
2092 return;
2093 }
a672b469
AL
2094
2095 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2096 if (nb_sns < 0) {
376253ec 2097 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
a672b469
AL
2098 return;
2099 }
f9209915
MDCF
2100
2101 if (nb_sns == 0) {
2102 monitor_printf(mon, "There is no snapshot available.\n");
2103 return;
2104 }
2105
2106 available_snapshots = qemu_mallocz(sizeof(int) * nb_sns);
2107 total = 0;
2108 for (i = 0; i < nb_sns; i++) {
a672b469 2109 sn = &sn_tab[i];
f9209915
MDCF
2110 available = 1;
2111 bs1 = NULL;
2112
2113 while ((bs1 = bdrv_next(bs1))) {
2114 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2115 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2116 if (ret < 0) {
2117 available = 0;
2118 break;
2119 }
2120 }
2121 }
2122
2123 if (available) {
2124 available_snapshots[total] = i;
2125 total++;
2126 }
a672b469 2127 }
f9209915
MDCF
2128
2129 if (total > 0) {
2130 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
2131 for (i = 0; i < total; i++) {
2132 sn = &sn_tab[available_snapshots[i]];
2133 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
2134 }
2135 } else {
2136 monitor_printf(mon, "There is no suitable snapshot available\n");
2137 }
2138
a672b469 2139 qemu_free(sn_tab);
f9209915
MDCF
2140 qemu_free(available_snapshots);
2141
a672b469 2142}