]> git.proxmox.com Git - qemu.git/blame - savevm.c
Add LIST_FOREACH_SAFE() definition
[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>
45#if defined(__NetBSD__)
46#include <net/if_tap.h>
47#endif
48#ifdef __linux__
49#include <linux/if_tun.h>
50#endif
51#include <arpa/inet.h>
52#include <dirent.h>
53#include <netdb.h>
54#include <sys/select.h>
71e72a19 55#ifdef CONFIG_BSD
a672b469 56#include <sys/stat.h>
c5e97233 57#if defined(__FreeBSD__) || defined(__DragonFly__)
a672b469
AL
58#include <libutil.h>
59#else
60#include <util.h>
61#endif
62#elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63#include <freebsd/stdlib.h>
64#else
65#ifdef __linux__
66#include <pty.h>
67#include <malloc.h>
68#include <linux/rtc.h>
69#endif
70#endif
71#endif
72
73#ifdef _WIN32
49dc768d 74#include <windows.h>
a672b469
AL
75#include <malloc.h>
76#include <sys/timeb.h>
77#include <mmsystem.h>
78#define getopt_long_only getopt_long
79#define memalign(align, size) malloc(size)
80#endif
81
511d2b14
BS
82#include "qemu-common.h"
83#include "hw/hw.h"
84#include "net.h"
85#include "monitor.h"
86#include "sysemu.h"
87#include "qemu-timer.h"
88#include "qemu-char.h"
89#include "block.h"
90#include "audio/audio.h"
91#include "migration.h"
92#include "qemu_socket.h"
93
a672b469
AL
94/* point to the block driver where the snapshots are managed */
95static BlockDriverState *bs_snapshots;
96
97#define SELF_ANNOUNCE_ROUNDS 5
98#define ETH_P_EXPERIMENTAL 0x01F1 /* just a number */
99//#define ETH_P_EXPERIMENTAL 0x0012 /* make it the size of the packet */
100#define EXPERIMENTAL_MAGIC 0xf1f23f4f
101
102static int announce_self_create(uint8_t *buf,
103 uint8_t *mac_addr)
104{
105 uint32_t magic = EXPERIMENTAL_MAGIC;
106 uint16_t proto = htons(ETH_P_EXPERIMENTAL);
107
108 /* FIXME: should we send a different packet (arp/rarp/ping)? */
109
976305b7 110 memset(buf, 0, 64);
a672b469
AL
111 memset(buf, 0xff, 6); /* h_dst */
112 memcpy(buf + 6, mac_addr, 6); /* h_src */
113 memcpy(buf + 12, &proto, 2); /* h_proto */
114 memcpy(buf + 14, &magic, 4); /* magic */
115
976305b7 116 return 64; /* len */
a672b469
AL
117}
118
ed8b330b 119static void qemu_announce_self_once(void *opaque)
a672b469 120{
ed8b330b 121 int i, len;
a672b469
AL
122 VLANState *vlan;
123 VLANClientState *vc;
124 uint8_t buf[256];
ed8b330b
GN
125 static int count = SELF_ANNOUNCE_ROUNDS;
126 QEMUTimer *timer = *(QEMUTimer **)opaque;
a672b469 127
3450df30
AL
128 for (i = 0; i < MAX_NICS; i++) {
129 if (!nd_table[i].used)
130 continue;
a672b469
AL
131 len = announce_self_create(buf, nd_table[i].macaddr);
132 vlan = nd_table[i].vlan;
ed8b330b 133 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
e3f5ec2b 134 vc->receive(vc, buf, len);
a672b469
AL
135 }
136 }
ed8b330b
GN
137 if (count--) {
138 qemu_mod_timer(timer, qemu_get_clock(rt_clock) + 100);
139 } else {
140 qemu_del_timer(timer);
141 qemu_free_timer(timer);
142 }
143}
144
145void qemu_announce_self(void)
146{
147 static QEMUTimer *timer;
148 timer = qemu_new_timer(rt_clock, qemu_announce_self_once, &timer);
149 qemu_announce_self_once(&timer);
a672b469
AL
150}
151
152/***********************************************************/
153/* savevm/loadvm support */
154
155#define IO_BUF_SIZE 32768
156
157struct QEMUFile {
158 QEMUFilePutBufferFunc *put_buffer;
159 QEMUFileGetBufferFunc *get_buffer;
160 QEMUFileCloseFunc *close;
161 QEMUFileRateLimit *rate_limit;
19629537 162 QEMUFileSetRateLimit *set_rate_limit;
a672b469
AL
163 void *opaque;
164 int is_write;
165
166 int64_t buf_offset; /* start of buffer when writing, end of buffer
167 when reading */
168 int buf_index;
169 int buf_size; /* 0 when writing */
170 uint8_t buf[IO_BUF_SIZE];
171
172 int has_error;
173};
174
7f79dd28 175typedef struct QEMUFileStdio
a672b469 176{
7f79dd28 177 FILE *stdio_file;
a672b469 178 QEMUFile *file;
7f79dd28 179} QEMUFileStdio;
a672b469
AL
180
181typedef struct QEMUFileSocket
182{
183 int fd;
184 QEMUFile *file;
185} QEMUFileSocket;
186
187static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
188{
189 QEMUFileSocket *s = opaque;
190 ssize_t len;
191
192 do {
c5b76b38 193 len = recv(s->fd, (void *)buf, size, 0);
a672b469
AL
194 } while (len == -1 && socket_error() == EINTR);
195
196 if (len == -1)
197 len = -socket_error();
198
199 return len;
200}
201
202static int socket_close(void *opaque)
203{
204 QEMUFileSocket *s = opaque;
205 qemu_free(s);
206 return 0;
207}
208
7f79dd28 209static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
a672b469 210{
7f79dd28
PB
211 QEMUFileStdio *s = opaque;
212 return fwrite(buf, 1, size, s->stdio_file);
a672b469
AL
213}
214
7f79dd28 215static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
a672b469 216{
7f79dd28
PB
217 QEMUFileStdio *s = opaque;
218 FILE *fp = s->stdio_file;
8a67ec4d
UL
219 int bytes;
220
221 do {
222 clearerr(fp);
223 bytes = fread(buf, 1, size, fp);
224 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
225 return bytes;
a672b469
AL
226}
227
7f79dd28
PB
228static int stdio_pclose(void *opaque)
229{
230 QEMUFileStdio *s = opaque;
231 pclose(s->stdio_file);
232 qemu_free(s);
233 return 0;
234}
235
236static int stdio_fclose(void *opaque)
a672b469 237{
7f79dd28
PB
238 QEMUFileStdio *s = opaque;
239 fclose(s->stdio_file);
a672b469
AL
240 qemu_free(s);
241 return 0;
242}
243
7f79dd28 244QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
a672b469 245{
7f79dd28 246 QEMUFileStdio *s;
a672b469 247
7f79dd28 248 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
a672b469
AL
249 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
250 return NULL;
251 }
252
7f79dd28 253 s = qemu_mallocz(sizeof(QEMUFileStdio));
a672b469 254
7f79dd28 255 s->stdio_file = stdio_file;
a672b469
AL
256
257 if(mode[0] == 'r') {
7f79dd28 258 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_pclose, NULL, NULL);
a672b469 259 } else {
7f79dd28 260 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_pclose, NULL, NULL);
a672b469 261 }
a672b469
AL
262 return s->file;
263}
264
265QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
266{
267 FILE *popen_file;
268
269 popen_file = popen(command, mode);
270 if(popen_file == NULL) {
271 return NULL;
272 }
273
274 return qemu_popen(popen_file, mode);
275}
276
7f79dd28 277int qemu_stdio_fd(QEMUFile *f)
8a43b1ea 278{
7f79dd28 279 QEMUFileStdio *p;
8a43b1ea
CL
280 int fd;
281
7f79dd28
PB
282 p = (QEMUFileStdio *)f->opaque;
283 fd = fileno(p->stdio_file);
8a43b1ea
CL
284
285 return fd;
286}
287
5ac1fad3
PB
288QEMUFile *qemu_fdopen(int fd, const char *mode)
289{
290 QEMUFileStdio *s;
291
292 if (mode == NULL ||
293 (mode[0] != 'r' && mode[0] != 'w') ||
294 mode[1] != 'b' || mode[2] != 0) {
295 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
296 return NULL;
297 }
298
299 s = qemu_mallocz(sizeof(QEMUFileStdio));
300 s->stdio_file = fdopen(fd, mode);
301 if (!s->stdio_file)
302 goto fail;
303
304 if(mode[0] == 'r') {
305 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_fclose, NULL, NULL);
306 } else {
307 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_fclose, NULL, NULL);
308 }
309 return s->file;
310
311fail:
312 qemu_free(s);
313 return NULL;
314}
315
a672b469
AL
316QEMUFile *qemu_fopen_socket(int fd)
317{
318 QEMUFileSocket *s = qemu_mallocz(sizeof(QEMUFileSocket));
319
a672b469 320 s->fd = fd;
19629537 321 s->file = qemu_fopen_ops(s, NULL, socket_get_buffer, socket_close, NULL, NULL);
a672b469
AL
322 return s->file;
323}
324
a672b469
AL
325static int file_put_buffer(void *opaque, const uint8_t *buf,
326 int64_t pos, int size)
327{
328 QEMUFileStdio *s = opaque;
7f79dd28
PB
329 fseek(s->stdio_file, pos, SEEK_SET);
330 fwrite(buf, 1, size, s->stdio_file);
a672b469
AL
331 return size;
332}
333
334static int file_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
335{
336 QEMUFileStdio *s = opaque;
7f79dd28
PB
337 fseek(s->stdio_file, pos, SEEK_SET);
338 return fread(buf, 1, size, s->stdio_file);
a672b469
AL
339}
340
341QEMUFile *qemu_fopen(const char *filename, const char *mode)
342{
343 QEMUFileStdio *s;
344
7f79dd28
PB
345 if (mode == NULL ||
346 (mode[0] != 'r' && mode[0] != 'w') ||
347 mode[1] != 'b' || mode[2] != 0) {
348 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
349 return NULL;
350 }
351
a672b469 352 s = qemu_mallocz(sizeof(QEMUFileStdio));
a672b469 353
7f79dd28
PB
354 s->stdio_file = fopen(filename, mode);
355 if (!s->stdio_file)
a672b469
AL
356 goto fail;
357
7f79dd28
PB
358 if(mode[0] == 'w') {
359 s->file = qemu_fopen_ops(s, file_put_buffer, NULL, stdio_fclose, NULL, NULL);
360 } else {
361 s->file = qemu_fopen_ops(s, NULL, file_get_buffer, stdio_fclose, NULL, NULL);
362 }
363 return s->file;
a672b469 364fail:
a672b469
AL
365 qemu_free(s);
366 return NULL;
367}
368
178e08a5 369static int block_put_buffer(void *opaque, const uint8_t *buf,
a672b469
AL
370 int64_t pos, int size)
371{
45566e9c 372 bdrv_save_vmstate(opaque, buf, pos, size);
a672b469
AL
373 return size;
374}
375
178e08a5 376static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
a672b469 377{
45566e9c 378 return bdrv_load_vmstate(opaque, buf, pos, size);
a672b469
AL
379}
380
381static int bdrv_fclose(void *opaque)
382{
a672b469
AL
383 return 0;
384}
385
45566e9c 386static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
a672b469 387{
a672b469 388 if (is_writable)
45566e9c
CH
389 return qemu_fopen_ops(bs, block_put_buffer, NULL, bdrv_fclose, NULL, NULL);
390 return qemu_fopen_ops(bs, NULL, block_get_buffer, bdrv_fclose, NULL, NULL);
a672b469
AL
391}
392
393QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
394 QEMUFileGetBufferFunc *get_buffer,
395 QEMUFileCloseFunc *close,
19629537
GC
396 QEMUFileRateLimit *rate_limit,
397 QEMUFileSetRateLimit *set_rate_limit)
a672b469
AL
398{
399 QEMUFile *f;
400
401 f = qemu_mallocz(sizeof(QEMUFile));
a672b469
AL
402
403 f->opaque = opaque;
404 f->put_buffer = put_buffer;
405 f->get_buffer = get_buffer;
406 f->close = close;
407 f->rate_limit = rate_limit;
19629537 408 f->set_rate_limit = set_rate_limit;
a672b469
AL
409 f->is_write = 0;
410
411 return f;
412}
413
414int qemu_file_has_error(QEMUFile *f)
415{
416 return f->has_error;
417}
418
4dabe248
AL
419void qemu_file_set_error(QEMUFile *f)
420{
421 f->has_error = 1;
422}
423
a672b469
AL
424void qemu_fflush(QEMUFile *f)
425{
426 if (!f->put_buffer)
427 return;
428
429 if (f->is_write && f->buf_index > 0) {
430 int len;
431
432 len = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
433 if (len > 0)
434 f->buf_offset += f->buf_index;
435 else
436 f->has_error = 1;
437 f->buf_index = 0;
438 }
439}
440
441static void qemu_fill_buffer(QEMUFile *f)
442{
443 int len;
444
445 if (!f->get_buffer)
446 return;
447
448 if (f->is_write)
449 abort();
450
451 len = f->get_buffer(f->opaque, f->buf, f->buf_offset, IO_BUF_SIZE);
452 if (len > 0) {
453 f->buf_index = 0;
454 f->buf_size = len;
455 f->buf_offset += len;
456 } else if (len != -EAGAIN)
457 f->has_error = 1;
458}
459
460int qemu_fclose(QEMUFile *f)
461{
462 int ret = 0;
463 qemu_fflush(f);
464 if (f->close)
465 ret = f->close(f->opaque);
466 qemu_free(f);
467 return ret;
468}
469
470void qemu_file_put_notify(QEMUFile *f)
471{
472 f->put_buffer(f->opaque, NULL, 0, 0);
473}
474
475void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
476{
477 int l;
478
479 if (!f->has_error && f->is_write == 0 && f->buf_index > 0) {
480 fprintf(stderr,
481 "Attempted to write to buffer while read buffer is not empty\n");
482 abort();
483 }
484
485 while (!f->has_error && size > 0) {
486 l = IO_BUF_SIZE - f->buf_index;
487 if (l > size)
488 l = size;
489 memcpy(f->buf + f->buf_index, buf, l);
490 f->is_write = 1;
491 f->buf_index += l;
492 buf += l;
493 size -= l;
494 if (f->buf_index >= IO_BUF_SIZE)
495 qemu_fflush(f);
496 }
497}
498
499void qemu_put_byte(QEMUFile *f, int v)
500{
501 if (!f->has_error && f->is_write == 0 && f->buf_index > 0) {
502 fprintf(stderr,
503 "Attempted to write to buffer while read buffer is not empty\n");
504 abort();
505 }
506
507 f->buf[f->buf_index++] = v;
508 f->is_write = 1;
509 if (f->buf_index >= IO_BUF_SIZE)
510 qemu_fflush(f);
511}
512
513int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)
514{
515 int size, l;
516
517 if (f->is_write)
518 abort();
519
520 size = size1;
521 while (size > 0) {
522 l = f->buf_size - f->buf_index;
523 if (l == 0) {
524 qemu_fill_buffer(f);
525 l = f->buf_size - f->buf_index;
526 if (l == 0)
527 break;
528 }
529 if (l > size)
530 l = size;
531 memcpy(buf, f->buf + f->buf_index, l);
532 f->buf_index += l;
533 buf += l;
534 size -= l;
535 }
536 return size1 - size;
537}
538
539int qemu_get_byte(QEMUFile *f)
540{
541 if (f->is_write)
542 abort();
543
544 if (f->buf_index >= f->buf_size) {
545 qemu_fill_buffer(f);
546 if (f->buf_index >= f->buf_size)
547 return 0;
548 }
549 return f->buf[f->buf_index++];
550}
551
552int64_t qemu_ftell(QEMUFile *f)
553{
554 return f->buf_offset - f->buf_size + f->buf_index;
555}
556
557int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
558{
559 if (whence == SEEK_SET) {
560 /* nothing to do */
561 } else if (whence == SEEK_CUR) {
562 pos += qemu_ftell(f);
563 } else {
564 /* SEEK_END not supported */
565 return -1;
566 }
567 if (f->put_buffer) {
568 qemu_fflush(f);
569 f->buf_offset = pos;
570 } else {
571 f->buf_offset = pos;
572 f->buf_index = 0;
573 f->buf_size = 0;
574 }
575 return pos;
576}
577
578int qemu_file_rate_limit(QEMUFile *f)
579{
580 if (f->rate_limit)
581 return f->rate_limit(f->opaque);
582
583 return 0;
584}
585
19629537
GC
586size_t qemu_file_set_rate_limit(QEMUFile *f, size_t new_rate)
587{
0bb05eaf
GC
588 /* any failed or completed migration keeps its state to allow probing of
589 * migration data, but has no associated file anymore */
590 if (f && f->set_rate_limit)
19629537
GC
591 return f->set_rate_limit(f->opaque, new_rate);
592
593 return 0;
594}
595
a672b469
AL
596void qemu_put_be16(QEMUFile *f, unsigned int v)
597{
598 qemu_put_byte(f, v >> 8);
599 qemu_put_byte(f, v);
600}
601
602void qemu_put_be32(QEMUFile *f, unsigned int v)
603{
604 qemu_put_byte(f, v >> 24);
605 qemu_put_byte(f, v >> 16);
606 qemu_put_byte(f, v >> 8);
607 qemu_put_byte(f, v);
608}
609
610void qemu_put_be64(QEMUFile *f, uint64_t v)
611{
612 qemu_put_be32(f, v >> 32);
613 qemu_put_be32(f, v);
614}
615
616unsigned int qemu_get_be16(QEMUFile *f)
617{
618 unsigned int v;
619 v = qemu_get_byte(f) << 8;
620 v |= qemu_get_byte(f);
621 return v;
622}
623
624unsigned int qemu_get_be32(QEMUFile *f)
625{
626 unsigned int v;
627 v = qemu_get_byte(f) << 24;
628 v |= qemu_get_byte(f) << 16;
629 v |= qemu_get_byte(f) << 8;
630 v |= qemu_get_byte(f);
631 return v;
632}
633
634uint64_t qemu_get_be64(QEMUFile *f)
635{
636 uint64_t v;
637 v = (uint64_t)qemu_get_be32(f) << 32;
638 v |= qemu_get_be32(f);
639 return v;
640}
641
9ed7d6ae
JQ
642/* 8 bit int */
643
644static int get_int8(QEMUFile *f, void *pv, size_t size)
645{
646 int8_t *v = pv;
647 qemu_get_s8s(f, v);
648 return 0;
649}
650
651static void put_int8(QEMUFile *f, const void *pv, size_t size)
652{
653 const int8_t *v = pv;
654 qemu_put_s8s(f, v);
655}
656
657const VMStateInfo vmstate_info_int8 = {
658 .name = "int8",
659 .get = get_int8,
660 .put = put_int8,
661};
662
663/* 16 bit int */
664
665static int get_int16(QEMUFile *f, void *pv, size_t size)
666{
667 int16_t *v = pv;
668 qemu_get_sbe16s(f, v);
669 return 0;
670}
671
672static void put_int16(QEMUFile *f, const void *pv, size_t size)
673{
674 const int16_t *v = pv;
675 qemu_put_sbe16s(f, v);
676}
677
678const VMStateInfo vmstate_info_int16 = {
679 .name = "int16",
680 .get = get_int16,
681 .put = put_int16,
682};
683
684/* 32 bit int */
685
686static int get_int32(QEMUFile *f, void *pv, size_t size)
687{
688 int32_t *v = pv;
689 qemu_get_sbe32s(f, v);
690 return 0;
691}
692
693static void put_int32(QEMUFile *f, const void *pv, size_t size)
694{
695 const int32_t *v = pv;
696 qemu_put_sbe32s(f, v);
697}
698
699const VMStateInfo vmstate_info_int32 = {
700 .name = "int32",
701 .get = get_int32,
702 .put = put_int32,
703};
704
82501660
JQ
705/* 32 bit int. See that the received value is the same than the one
706 in the field */
707
708static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
709{
710 int32_t *v = pv;
711 int32_t v2;
712 qemu_get_sbe32s(f, &v2);
713
714 if (*v == v2)
715 return 0;
716 return -EINVAL;
717}
718
719const VMStateInfo vmstate_info_int32_equal = {
720 .name = "int32 equal",
721 .get = get_int32_equal,
722 .put = put_int32,
723};
724
0a031e0a
JQ
725/* 32 bit int. See that the received value is the less or the same
726 than the one in the field */
727
728static int get_int32_le(QEMUFile *f, void *pv, size_t size)
729{
730 int32_t *old = pv;
731 int32_t new;
732 qemu_get_sbe32s(f, &new);
733
734 if (*old <= new)
735 return 0;
736 return -EINVAL;
737}
738
739const VMStateInfo vmstate_info_int32_le = {
740 .name = "int32 equal",
741 .get = get_int32_le,
742 .put = put_int32,
743};
744
9ed7d6ae
JQ
745/* 64 bit int */
746
747static int get_int64(QEMUFile *f, void *pv, size_t size)
748{
749 int64_t *v = pv;
750 qemu_get_sbe64s(f, v);
751 return 0;
752}
753
754static void put_int64(QEMUFile *f, const void *pv, size_t size)
755{
756 const int64_t *v = pv;
757 qemu_put_sbe64s(f, v);
758}
759
760const VMStateInfo vmstate_info_int64 = {
761 .name = "int64",
762 .get = get_int64,
763 .put = put_int64,
764};
765
766/* 8 bit unsigned int */
767
768static int get_uint8(QEMUFile *f, void *pv, size_t size)
769{
770 uint8_t *v = pv;
771 qemu_get_8s(f, v);
772 return 0;
773}
774
775static void put_uint8(QEMUFile *f, const void *pv, size_t size)
776{
777 const uint8_t *v = pv;
778 qemu_put_8s(f, v);
779}
780
781const VMStateInfo vmstate_info_uint8 = {
782 .name = "uint8",
783 .get = get_uint8,
784 .put = put_uint8,
785};
786
787/* 16 bit unsigned int */
788
789static int get_uint16(QEMUFile *f, void *pv, size_t size)
790{
791 uint16_t *v = pv;
792 qemu_get_be16s(f, v);
793 return 0;
794}
795
796static void put_uint16(QEMUFile *f, const void *pv, size_t size)
797{
798 const uint16_t *v = pv;
799 qemu_put_be16s(f, v);
800}
801
802const VMStateInfo vmstate_info_uint16 = {
803 .name = "uint16",
804 .get = get_uint16,
805 .put = put_uint16,
806};
807
808/* 32 bit unsigned int */
809
810static int get_uint32(QEMUFile *f, void *pv, size_t size)
811{
812 uint32_t *v = pv;
813 qemu_get_be32s(f, v);
814 return 0;
815}
816
817static void put_uint32(QEMUFile *f, const void *pv, size_t size)
818{
819 const uint32_t *v = pv;
820 qemu_put_be32s(f, v);
821}
822
823const VMStateInfo vmstate_info_uint32 = {
824 .name = "uint32",
825 .get = get_uint32,
826 .put = put_uint32,
827};
828
829/* 64 bit unsigned int */
830
831static int get_uint64(QEMUFile *f, void *pv, size_t size)
832{
833 uint64_t *v = pv;
834 qemu_get_be64s(f, v);
835 return 0;
836}
837
838static void put_uint64(QEMUFile *f, const void *pv, size_t size)
839{
840 const uint64_t *v = pv;
841 qemu_put_be64s(f, v);
842}
843
844const VMStateInfo vmstate_info_uint64 = {
845 .name = "uint64",
846 .get = get_uint64,
847 .put = put_uint64,
848};
849
dde0463b
JQ
850/* timers */
851
852static int get_timer(QEMUFile *f, void *pv, size_t size)
853{
854 QEMUTimer *v = pv;
855 qemu_get_timer(f, v);
856 return 0;
857}
858
859static void put_timer(QEMUFile *f, const void *pv, size_t size)
860{
861 QEMUTimer *v = (void *)pv;
862 qemu_put_timer(f, v);
863}
864
865const VMStateInfo vmstate_info_timer = {
866 .name = "timer",
867 .get = get_timer,
868 .put = put_timer,
869};
870
6f67c50f
JQ
871/* uint8_t buffers */
872
873static int get_buffer(QEMUFile *f, void *pv, size_t size)
874{
875 uint8_t *v = pv;
876 qemu_get_buffer(f, v, size);
877 return 0;
878}
879
880static void put_buffer(QEMUFile *f, const void *pv, size_t size)
881{
882 uint8_t *v = (void *)pv;
883 qemu_put_buffer(f, v, size);
884}
885
886const VMStateInfo vmstate_info_buffer = {
887 .name = "buffer",
888 .get = get_buffer,
889 .put = put_buffer,
890};
891
a672b469 892typedef struct SaveStateEntry {
8718e999 893 TAILQ_ENTRY(SaveStateEntry) entry;
a672b469
AL
894 char idstr[256];
895 int instance_id;
896 int version_id;
897 int section_id;
898 SaveLiveStateHandler *save_live_state;
899 SaveStateHandler *save_state;
900 LoadStateHandler *load_state;
9ed7d6ae 901 const VMStateDescription *vmsd;
a672b469 902 void *opaque;
a672b469
AL
903} SaveStateEntry;
904
8718e999
JQ
905static TAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
906 TAILQ_HEAD_INITIALIZER(savevm_handlers);
9ed7d6ae 907static int global_section_id;
a672b469 908
8718e999
JQ
909static int calculate_new_instance_id(const char *idstr)
910{
911 SaveStateEntry *se;
912 int instance_id = 0;
913
914 TAILQ_FOREACH(se, &savevm_handlers, entry) {
915 if (strcmp(idstr, se->idstr) == 0
916 && instance_id <= se->instance_id) {
917 instance_id = se->instance_id + 1;
918 }
919 }
920 return instance_id;
921}
922
a672b469
AL
923/* TODO: Individual devices generally have very little idea about the rest
924 of the system, so instance_id should be removed/replaced.
925 Meanwhile pass -1 as instance_id if you do not already have a clearly
926 distinguishing id for all instances of your device class. */
927int register_savevm_live(const char *idstr,
928 int instance_id,
929 int version_id,
930 SaveLiveStateHandler *save_live_state,
931 SaveStateHandler *save_state,
932 LoadStateHandler *load_state,
933 void *opaque)
934{
8718e999 935 SaveStateEntry *se;
a672b469
AL
936
937 se = qemu_malloc(sizeof(SaveStateEntry));
a672b469 938 pstrcpy(se->idstr, sizeof(se->idstr), idstr);
a672b469
AL
939 se->version_id = version_id;
940 se->section_id = global_section_id++;
941 se->save_live_state = save_live_state;
942 se->save_state = save_state;
943 se->load_state = load_state;
944 se->opaque = opaque;
9ed7d6ae 945 se->vmsd = NULL;
a672b469 946
8718e999
JQ
947 if (instance_id == -1) {
948 se->instance_id = calculate_new_instance_id(idstr);
949 } else {
950 se->instance_id = instance_id;
a672b469 951 }
8718e999
JQ
952 /* add at the end of list */
953 TAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
a672b469
AL
954 return 0;
955}
956
957int register_savevm(const char *idstr,
958 int instance_id,
959 int version_id,
960 SaveStateHandler *save_state,
961 LoadStateHandler *load_state,
962 void *opaque)
963{
964 return register_savevm_live(idstr, instance_id, version_id,
965 NULL, save_state, load_state, opaque);
966}
967
41bd13af
AL
968void unregister_savevm(const char *idstr, void *opaque)
969{
8718e999 970 SaveStateEntry *se, *new_se;
41bd13af 971
8718e999
JQ
972 TAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
973 if (strcmp(se->idstr, idstr) == 0 && se->opaque == opaque) {
974 TAILQ_REMOVE(&savevm_handlers, se, entry);
975 qemu_free(se);
41bd13af 976 }
41bd13af
AL
977 }
978}
979
9ed7d6ae
JQ
980int vmstate_register(int instance_id, const VMStateDescription *vmsd,
981 void *opaque)
982{
8718e999 983 SaveStateEntry *se;
9ed7d6ae
JQ
984
985 se = qemu_malloc(sizeof(SaveStateEntry));
986 pstrcpy(se->idstr, sizeof(se->idstr), vmsd->name);
9ed7d6ae
JQ
987 se->version_id = vmsd->version_id;
988 se->section_id = global_section_id++;
989 se->save_live_state = NULL;
990 se->save_state = NULL;
991 se->load_state = NULL;
992 se->opaque = opaque;
993 se->vmsd = vmsd;
9ed7d6ae 994
8718e999
JQ
995 if (instance_id == -1) {
996 se->instance_id = calculate_new_instance_id(vmsd->name);
997 } else {
998 se->instance_id = instance_id;
9ed7d6ae 999 }
8718e999
JQ
1000 /* add at the end of list */
1001 TAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
9ed7d6ae
JQ
1002 return 0;
1003}
1004
1005void vmstate_unregister(const char *idstr, void *opaque)
1006{
8718e999 1007 unregister_savevm(idstr, opaque);
9ed7d6ae
JQ
1008}
1009
1010int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1011 void *opaque, int version_id)
1012{
1013 VMStateField *field = vmsd->fields;
1014
1015 if (version_id > vmsd->version_id) {
1016 return -EINVAL;
1017 }
1018 if (version_id < vmsd->minimum_version_id_old) {
1019 return -EINVAL;
1020 }
1021 if (version_id < vmsd->minimum_version_id) {
1022 return vmsd->load_state_old(f, opaque, version_id);
1023 }
1024 while(field->name) {
1025 if (field->version_id <= version_id) {
f752a6aa
JQ
1026 void *base_addr = opaque + field->offset;
1027 int ret, i, n_elems = 1;
9ed7d6ae 1028
f752a6aa
JQ
1029 if (field->flags & VMS_ARRAY) {
1030 n_elems = field->num;
b00319a9
JQ
1031 } else if (field->flags & VMS_VARRAY) {
1032 n_elems = *(size_t *)(opaque+field->num_offset);
f752a6aa 1033 }
dde0463b 1034 if (field->flags & VMS_POINTER) {
f752a6aa 1035 base_addr = *(void **)base_addr;
dde0463b 1036 }
f752a6aa
JQ
1037 for (i = 0; i < n_elems; i++) {
1038 void *addr = base_addr + field->size * i;
ec245e21
JQ
1039
1040 if (field->flags & VMS_STRUCT) {
fa3aad24 1041 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
ec245e21
JQ
1042 } else {
1043 ret = field->info->get(f, addr, field->size);
1044
1045 }
f752a6aa
JQ
1046 if (ret < 0) {
1047 return ret;
1048 }
9ed7d6ae
JQ
1049 }
1050 }
1051 field++;
1052 }
cff09e92
JQ
1053 if (vmsd->run_after_load)
1054 return vmsd->run_after_load(opaque);
9ed7d6ae
JQ
1055 return 0;
1056}
1057
1058void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
1059 const void *opaque)
1060{
1061 VMStateField *field = vmsd->fields;
1062
1063 while(field->name) {
f752a6aa
JQ
1064 const void *base_addr = opaque + field->offset;
1065 int i, n_elems = 1;
dde0463b 1066
f752a6aa
JQ
1067 if (field->flags & VMS_ARRAY) {
1068 n_elems = field->num;
b00319a9
JQ
1069 } else if (field->flags & VMS_VARRAY) {
1070 n_elems = *(size_t *)(opaque+field->num_offset);
f752a6aa 1071 }
dde0463b 1072 if (field->flags & VMS_POINTER) {
f752a6aa
JQ
1073 base_addr = *(void **)base_addr;
1074 }
1075 for (i = 0; i < n_elems; i++) {
1076 const void *addr = base_addr + field->size * i;
ec245e21
JQ
1077
1078 if (field->flags & VMS_STRUCT) {
1079 vmstate_save_state(f, field->vmsd, addr);
1080 } else {
1081 field->info->put(f, addr, field->size);
1082 }
dde0463b 1083 }
9ed7d6ae
JQ
1084 field++;
1085 }
1086}
1087
4082be4d
JQ
1088static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1089{
9ed7d6ae
JQ
1090 if (!se->vmsd) { /* Old style */
1091 return se->load_state(f, se->opaque, version_id);
1092 }
1093 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
4082be4d
JQ
1094}
1095
1096static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
1097{
9ed7d6ae
JQ
1098 if (!se->vmsd) { /* Old style */
1099 se->save_state(f, se->opaque);
1100 return;
1101 }
1102 vmstate_save_state(f,se->vmsd, se->opaque);
4082be4d
JQ
1103}
1104
a672b469
AL
1105#define QEMU_VM_FILE_MAGIC 0x5145564d
1106#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1107#define QEMU_VM_FILE_VERSION 0x00000003
1108
1109#define QEMU_VM_EOF 0x00
1110#define QEMU_VM_SECTION_START 0x01
1111#define QEMU_VM_SECTION_PART 0x02
1112#define QEMU_VM_SECTION_END 0x03
1113#define QEMU_VM_SECTION_FULL 0x04
1114
1115int qemu_savevm_state_begin(QEMUFile *f)
1116{
1117 SaveStateEntry *se;
1118
1119 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1120 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1121
8718e999 1122 TAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1123 int len;
1124
1125 if (se->save_live_state == NULL)
1126 continue;
1127
1128 /* Section type */
1129 qemu_put_byte(f, QEMU_VM_SECTION_START);
1130 qemu_put_be32(f, se->section_id);
1131
1132 /* ID string */
1133 len = strlen(se->idstr);
1134 qemu_put_byte(f, len);
1135 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1136
1137 qemu_put_be32(f, se->instance_id);
1138 qemu_put_be32(f, se->version_id);
1139
1140 se->save_live_state(f, QEMU_VM_SECTION_START, se->opaque);
1141 }
1142
1143 if (qemu_file_has_error(f))
1144 return -EIO;
1145
1146 return 0;
1147}
1148
1149int qemu_savevm_state_iterate(QEMUFile *f)
1150{
1151 SaveStateEntry *se;
1152 int ret = 1;
1153
8718e999 1154 TAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1155 if (se->save_live_state == NULL)
1156 continue;
1157
1158 /* Section type */
1159 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1160 qemu_put_be32(f, se->section_id);
1161
1162 ret &= !!se->save_live_state(f, QEMU_VM_SECTION_PART, se->opaque);
1163 }
1164
1165 if (ret)
1166 return 1;
1167
1168 if (qemu_file_has_error(f))
1169 return -EIO;
1170
1171 return 0;
1172}
1173
1174int qemu_savevm_state_complete(QEMUFile *f)
1175{
1176 SaveStateEntry *se;
1177
8718e999 1178 TAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1179 if (se->save_live_state == NULL)
1180 continue;
1181
1182 /* Section type */
1183 qemu_put_byte(f, QEMU_VM_SECTION_END);
1184 qemu_put_be32(f, se->section_id);
1185
1186 se->save_live_state(f, QEMU_VM_SECTION_END, se->opaque);
1187 }
1188
8718e999 1189 TAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1190 int len;
1191
9ed7d6ae 1192 if (se->save_state == NULL && se->vmsd == NULL)
a672b469
AL
1193 continue;
1194
1195 /* Section type */
1196 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1197 qemu_put_be32(f, se->section_id);
1198
1199 /* ID string */
1200 len = strlen(se->idstr);
1201 qemu_put_byte(f, len);
1202 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1203
1204 qemu_put_be32(f, se->instance_id);
1205 qemu_put_be32(f, se->version_id);
1206
4082be4d 1207 vmstate_save(f, se);
a672b469
AL
1208 }
1209
1210 qemu_put_byte(f, QEMU_VM_EOF);
1211
1212 if (qemu_file_has_error(f))
1213 return -EIO;
1214
1215 return 0;
1216}
1217
1218int qemu_savevm_state(QEMUFile *f)
1219{
1220 int saved_vm_running;
1221 int ret;
1222
1223 saved_vm_running = vm_running;
1224 vm_stop(0);
1225
1226 bdrv_flush_all();
1227
1228 ret = qemu_savevm_state_begin(f);
1229 if (ret < 0)
1230 goto out;
1231
1232 do {
1233 ret = qemu_savevm_state_iterate(f);
1234 if (ret < 0)
1235 goto out;
1236 } while (ret == 0);
1237
1238 ret = qemu_savevm_state_complete(f);
1239
1240out:
1241 if (qemu_file_has_error(f))
1242 ret = -EIO;
1243
1244 if (!ret && saved_vm_running)
1245 vm_start();
1246
1247 return ret;
1248}
1249
1250static SaveStateEntry *find_se(const char *idstr, int instance_id)
1251{
1252 SaveStateEntry *se;
1253
8718e999 1254 TAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
1255 if (!strcmp(se->idstr, idstr) &&
1256 instance_id == se->instance_id)
1257 return se;
1258 }
1259 return NULL;
1260}
1261
1262typedef struct LoadStateEntry {
1263 SaveStateEntry *se;
1264 int section_id;
1265 int version_id;
1266 struct LoadStateEntry *next;
1267} LoadStateEntry;
1268
1269static int qemu_loadvm_state_v2(QEMUFile *f)
1270{
1271 SaveStateEntry *se;
1272 int len, ret, instance_id, record_len, version_id;
1273 int64_t total_len, end_pos, cur_pos;
1274 char idstr[256];
1275
1276 total_len = qemu_get_be64(f);
1277 end_pos = total_len + qemu_ftell(f);
1278 for(;;) {
1279 if (qemu_ftell(f) >= end_pos)
1280 break;
1281 len = qemu_get_byte(f);
1282 qemu_get_buffer(f, (uint8_t *)idstr, len);
1283 idstr[len] = '\0';
1284 instance_id = qemu_get_be32(f);
1285 version_id = qemu_get_be32(f);
1286 record_len = qemu_get_be32(f);
1287 cur_pos = qemu_ftell(f);
1288 se = find_se(idstr, instance_id);
1289 if (!se) {
1290 fprintf(stderr, "qemu: warning: instance 0x%x of device '%s' not present in current VM\n",
1291 instance_id, idstr);
1292 } else {
4082be4d 1293 ret = vmstate_load(f, se, version_id);
a672b469
AL
1294 if (ret < 0) {
1295 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1296 instance_id, idstr);
d02f7094 1297 return ret;
a672b469
AL
1298 }
1299 }
1300 /* always seek to exact end of record */
1301 qemu_fseek(f, cur_pos + record_len, SEEK_SET);
1302 }
1303
1304 if (qemu_file_has_error(f))
1305 return -EIO;
1306
1307 return 0;
1308}
1309
1310int qemu_loadvm_state(QEMUFile *f)
1311{
1312 LoadStateEntry *first_le = NULL;
1313 uint8_t section_type;
1314 unsigned int v;
1315 int ret;
1316
1317 v = qemu_get_be32(f);
1318 if (v != QEMU_VM_FILE_MAGIC)
1319 return -EINVAL;
1320
1321 v = qemu_get_be32(f);
1322 if (v == QEMU_VM_FILE_VERSION_COMPAT)
1323 return qemu_loadvm_state_v2(f);
1324 if (v != QEMU_VM_FILE_VERSION)
1325 return -ENOTSUP;
1326
1327 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1328 uint32_t instance_id, version_id, section_id;
1329 LoadStateEntry *le;
1330 SaveStateEntry *se;
1331 char idstr[257];
1332 int len;
1333
1334 switch (section_type) {
1335 case QEMU_VM_SECTION_START:
1336 case QEMU_VM_SECTION_FULL:
1337 /* Read section start */
1338 section_id = qemu_get_be32(f);
1339 len = qemu_get_byte(f);
1340 qemu_get_buffer(f, (uint8_t *)idstr, len);
1341 idstr[len] = 0;
1342 instance_id = qemu_get_be32(f);
1343 version_id = qemu_get_be32(f);
1344
1345 /* Find savevm section */
1346 se = find_se(idstr, instance_id);
1347 if (se == NULL) {
1348 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1349 ret = -EINVAL;
1350 goto out;
1351 }
1352
1353 /* Validate version */
1354 if (version_id > se->version_id) {
1355 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1356 version_id, idstr, se->version_id);
1357 ret = -EINVAL;
1358 goto out;
1359 }
1360
1361 /* Add entry */
1362 le = qemu_mallocz(sizeof(*le));
a672b469
AL
1363
1364 le->se = se;
1365 le->section_id = section_id;
1366 le->version_id = version_id;
1367 le->next = first_le;
1368 first_le = le;
1369
4082be4d 1370 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a
JQ
1371 if (ret < 0) {
1372 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1373 instance_id, idstr);
1374 goto out;
1375 }
a672b469
AL
1376 break;
1377 case QEMU_VM_SECTION_PART:
1378 case QEMU_VM_SECTION_END:
1379 section_id = qemu_get_be32(f);
1380
1381 for (le = first_le; le && le->section_id != section_id; le = le->next);
1382 if (le == NULL) {
1383 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1384 ret = -EINVAL;
1385 goto out;
1386 }
1387
4082be4d 1388 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a
JQ
1389 if (ret < 0) {
1390 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1391 section_id);
1392 goto out;
1393 }
a672b469
AL
1394 break;
1395 default:
1396 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1397 ret = -EINVAL;
1398 goto out;
1399 }
1400 }
1401
1402 ret = 0;
1403
1404out:
1405 while (first_le) {
1406 LoadStateEntry *le = first_le;
1407 first_le = first_le->next;
1408 qemu_free(le);
1409 }
1410
1411 if (qemu_file_has_error(f))
1412 ret = -EIO;
1413
1414 return ret;
1415}
1416
1417/* device can contain snapshots */
1418static int bdrv_can_snapshot(BlockDriverState *bs)
1419{
1420 return (bs &&
1421 !bdrv_is_removable(bs) &&
1422 !bdrv_is_read_only(bs));
1423}
1424
1425/* device must be snapshots in order to have a reliable snapshot */
1426static int bdrv_has_snapshot(BlockDriverState *bs)
1427{
1428 return (bs &&
1429 !bdrv_is_removable(bs) &&
1430 !bdrv_is_read_only(bs));
1431}
1432
1433static BlockDriverState *get_bs_snapshots(void)
1434{
1435 BlockDriverState *bs;
751c6a17 1436 DriveInfo *dinfo;
a672b469
AL
1437
1438 if (bs_snapshots)
1439 return bs_snapshots;
751c6a17
GH
1440 TAILQ_FOREACH(dinfo, &drives, next) {
1441 bs = dinfo->bdrv;
a672b469
AL
1442 if (bdrv_can_snapshot(bs))
1443 goto ok;
1444 }
1445 return NULL;
1446 ok:
1447 bs_snapshots = bs;
1448 return bs;
1449}
1450
1451static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1452 const char *name)
1453{
1454 QEMUSnapshotInfo *sn_tab, *sn;
1455 int nb_sns, i, ret;
1456
1457 ret = -ENOENT;
1458 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1459 if (nb_sns < 0)
1460 return ret;
1461 for(i = 0; i < nb_sns; i++) {
1462 sn = &sn_tab[i];
1463 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1464 *sn_info = *sn;
1465 ret = 0;
1466 break;
1467 }
1468 }
1469 qemu_free(sn_tab);
1470 return ret;
1471}
1472
d54908a5 1473void do_savevm(Monitor *mon, const QDict *qdict)
a672b469 1474{
751c6a17 1475 DriveInfo *dinfo;
a672b469
AL
1476 BlockDriverState *bs, *bs1;
1477 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
751c6a17 1478 int must_delete, ret;
a672b469
AL
1479 QEMUFile *f;
1480 int saved_vm_running;
2d22b18f 1481 uint32_t vm_state_size;
a672b469
AL
1482#ifdef _WIN32
1483 struct _timeb tb;
1484#else
1485 struct timeval tv;
1486#endif
d54908a5 1487 const char *name = qdict_get_try_str(qdict, "name");
a672b469
AL
1488
1489 bs = get_bs_snapshots();
1490 if (!bs) {
376253ec 1491 monitor_printf(mon, "No block device can accept snapshots\n");
a672b469
AL
1492 return;
1493 }
1494
1495 /* ??? Should this occur after vm_stop? */
1496 qemu_aio_flush();
1497
1498 saved_vm_running = vm_running;
1499 vm_stop(0);
1500
1501 must_delete = 0;
1502 if (name) {
1503 ret = bdrv_snapshot_find(bs, old_sn, name);
1504 if (ret >= 0) {
1505 must_delete = 1;
1506 }
1507 }
1508 memset(sn, 0, sizeof(*sn));
1509 if (must_delete) {
1510 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1511 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1512 } else {
1513 if (name)
1514 pstrcpy(sn->name, sizeof(sn->name), name);
1515 }
1516
1517 /* fill auxiliary fields */
1518#ifdef _WIN32
1519 _ftime(&tb);
1520 sn->date_sec = tb.time;
1521 sn->date_nsec = tb.millitm * 1000000;
1522#else
1523 gettimeofday(&tv, NULL);
1524 sn->date_sec = tv.tv_sec;
1525 sn->date_nsec = tv.tv_usec * 1000;
1526#endif
1527 sn->vm_clock_nsec = qemu_get_clock(vm_clock);
1528
a672b469 1529 /* save the VM state */
45566e9c 1530 f = qemu_fopen_bdrv(bs, 1);
a672b469 1531 if (!f) {
376253ec 1532 monitor_printf(mon, "Could not open VM state file\n");
a672b469
AL
1533 goto the_end;
1534 }
1535 ret = qemu_savevm_state(f);
2d22b18f 1536 vm_state_size = qemu_ftell(f);
a672b469
AL
1537 qemu_fclose(f);
1538 if (ret < 0) {
376253ec 1539 monitor_printf(mon, "Error %d while writing VM\n", ret);
a672b469
AL
1540 goto the_end;
1541 }
1542
1543 /* create the snapshots */
1544
751c6a17
GH
1545 TAILQ_FOREACH(dinfo, &drives, next) {
1546 bs1 = dinfo->bdrv;
a672b469
AL
1547 if (bdrv_has_snapshot(bs1)) {
1548 if (must_delete) {
1549 ret = bdrv_snapshot_delete(bs1, old_sn->id_str);
1550 if (ret < 0) {
376253ec
AL
1551 monitor_printf(mon,
1552 "Error while deleting snapshot on '%s'\n",
1553 bdrv_get_device_name(bs1));
a672b469
AL
1554 }
1555 }
2d22b18f
AL
1556 /* Write VM state size only to the image that contains the state */
1557 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
a672b469
AL
1558 ret = bdrv_snapshot_create(bs1, sn);
1559 if (ret < 0) {
376253ec
AL
1560 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1561 bdrv_get_device_name(bs1));
a672b469
AL
1562 }
1563 }
1564 }
1565
1566 the_end:
1567 if (saved_vm_running)
1568 vm_start();
1569}
1570
05f2401e 1571int load_vmstate(Monitor *mon, const char *name)
a672b469 1572{
751c6a17 1573 DriveInfo *dinfo;
a672b469 1574 BlockDriverState *bs, *bs1;
2d22b18f 1575 QEMUSnapshotInfo sn;
a672b469 1576 QEMUFile *f;
751c6a17 1577 int ret;
a672b469
AL
1578
1579 bs = get_bs_snapshots();
1580 if (!bs) {
376253ec 1581 monitor_printf(mon, "No block device supports snapshots\n");
05f2401e 1582 return -EINVAL;
a672b469
AL
1583 }
1584
1585 /* Flush all IO requests so they don't interfere with the new state. */
1586 qemu_aio_flush();
1587
751c6a17
GH
1588 TAILQ_FOREACH(dinfo, &drives, next) {
1589 bs1 = dinfo->bdrv;
a672b469
AL
1590 if (bdrv_has_snapshot(bs1)) {
1591 ret = bdrv_snapshot_goto(bs1, name);
1592 if (ret < 0) {
1593 if (bs != bs1)
376253ec 1594 monitor_printf(mon, "Warning: ");
a672b469
AL
1595 switch(ret) {
1596 case -ENOTSUP:
376253ec
AL
1597 monitor_printf(mon,
1598 "Snapshots not supported on device '%s'\n",
1599 bdrv_get_device_name(bs1));
a672b469
AL
1600 break;
1601 case -ENOENT:
376253ec
AL
1602 monitor_printf(mon, "Could not find snapshot '%s' on "
1603 "device '%s'\n",
1604 name, bdrv_get_device_name(bs1));
a672b469
AL
1605 break;
1606 default:
376253ec
AL
1607 monitor_printf(mon, "Error %d while activating snapshot on"
1608 " '%s'\n", ret, bdrv_get_device_name(bs1));
a672b469
AL
1609 break;
1610 }
1611 /* fatal on snapshot block device */
1612 if (bs == bs1)
05f2401e 1613 return 0;
a672b469
AL
1614 }
1615 }
1616 }
1617
2d22b18f
AL
1618 /* Don't even try to load empty VM states */
1619 ret = bdrv_snapshot_find(bs, &sn, name);
1620 if ((ret >= 0) && (sn.vm_state_size == 0))
05f2401e 1621 return -EINVAL;
2d22b18f 1622
a672b469 1623 /* restore the VM state */
45566e9c 1624 f = qemu_fopen_bdrv(bs, 0);
a672b469 1625 if (!f) {
376253ec 1626 monitor_printf(mon, "Could not open VM state file\n");
05f2401e 1627 return -EINVAL;
a672b469
AL
1628 }
1629 ret = qemu_loadvm_state(f);
1630 qemu_fclose(f);
1631 if (ret < 0) {
376253ec 1632 monitor_printf(mon, "Error %d while loading VM state\n", ret);
05f2401e 1633 return ret;
a672b469 1634 }
05f2401e 1635 return 0;
7b630349
JQ
1636}
1637
d54908a5 1638void do_delvm(Monitor *mon, const QDict *qdict)
a672b469 1639{
751c6a17 1640 DriveInfo *dinfo;
a672b469 1641 BlockDriverState *bs, *bs1;
751c6a17 1642 int ret;
d54908a5 1643 const char *name = qdict_get_str(qdict, "name");
a672b469
AL
1644
1645 bs = get_bs_snapshots();
1646 if (!bs) {
376253ec 1647 monitor_printf(mon, "No block device supports snapshots\n");
a672b469
AL
1648 return;
1649 }
1650
751c6a17
GH
1651 TAILQ_FOREACH(dinfo, &drives, next) {
1652 bs1 = dinfo->bdrv;
a672b469
AL
1653 if (bdrv_has_snapshot(bs1)) {
1654 ret = bdrv_snapshot_delete(bs1, name);
1655 if (ret < 0) {
1656 if (ret == -ENOTSUP)
376253ec
AL
1657 monitor_printf(mon,
1658 "Snapshots not supported on device '%s'\n",
1659 bdrv_get_device_name(bs1));
a672b469 1660 else
376253ec
AL
1661 monitor_printf(mon, "Error %d while deleting snapshot on "
1662 "'%s'\n", ret, bdrv_get_device_name(bs1));
a672b469
AL
1663 }
1664 }
1665 }
1666}
1667
376253ec 1668void do_info_snapshots(Monitor *mon)
a672b469 1669{
751c6a17 1670 DriveInfo *dinfo;
a672b469
AL
1671 BlockDriverState *bs, *bs1;
1672 QEMUSnapshotInfo *sn_tab, *sn;
1673 int nb_sns, i;
1674 char buf[256];
1675
1676 bs = get_bs_snapshots();
1677 if (!bs) {
376253ec 1678 monitor_printf(mon, "No available block device supports snapshots\n");
a672b469
AL
1679 return;
1680 }
376253ec 1681 monitor_printf(mon, "Snapshot devices:");
751c6a17
GH
1682 TAILQ_FOREACH(dinfo, &drives, next) {
1683 bs1 = dinfo->bdrv;
a672b469
AL
1684 if (bdrv_has_snapshot(bs1)) {
1685 if (bs == bs1)
376253ec 1686 monitor_printf(mon, " %s", bdrv_get_device_name(bs1));
a672b469
AL
1687 }
1688 }
376253ec 1689 monitor_printf(mon, "\n");
a672b469
AL
1690
1691 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1692 if (nb_sns < 0) {
376253ec 1693 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
a672b469
AL
1694 return;
1695 }
376253ec
AL
1696 monitor_printf(mon, "Snapshot list (from %s):\n",
1697 bdrv_get_device_name(bs));
1698 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
a672b469
AL
1699 for(i = 0; i < nb_sns; i++) {
1700 sn = &sn_tab[i];
376253ec 1701 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
a672b469
AL
1702 }
1703 qemu_free(sn_tab);
1704}