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