]> git.proxmox.com Git - qemu.git/blob - savevm.c
a58fe9ac495560bfd33b9b1860b2e70ef27c26ba
[qemu.git] / savevm.c
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 */
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <time.h>
27 #include <errno.h>
28 #include <sys/time.h>
29 #include <zlib.h>
30
31 /* Needed early for CONFIG_BSD etc. */
32 #include "config-host.h"
33
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>
44 #include <arpa/inet.h>
45 #include <dirent.h>
46 #include <netdb.h>
47 #include <sys/select.h>
48 #ifdef CONFIG_BSD
49 #include <sys/stat.h>
50 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
51 #include <libutil.h>
52 #else
53 #include <util.h>
54 #endif
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
64 #include <windows.h>
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
72 #include "qemu-common.h"
73 #include "hw/hw.h"
74 #include "hw/qdev.h"
75 #include "net.h"
76 #include "monitor.h"
77 #include "sysemu.h"
78 #include "qemu-timer.h"
79 #include "qemu-char.h"
80 #include "audio/audio.h"
81 #include "migration.h"
82 #include "qemu_socket.h"
83 #include "qemu-queue.h"
84 #include "qemu-timer.h"
85 #include "cpus.h"
86 #include "memory.h"
87 #include "qmp-commands.h"
88 #include "trace.h"
89 #include "bitops.h"
90
91 #define SELF_ANNOUNCE_ROUNDS 5
92
93 #ifndef ETH_P_RARP
94 #define ETH_P_RARP 0x8035
95 #endif
96 #define ARP_HTYPE_ETH 0x0001
97 #define ARP_PTYPE_IP 0x0800
98 #define ARP_OP_REQUEST_REV 0x3
99
100 static int announce_self_create(uint8_t *buf,
101 uint8_t *mac_addr)
102 {
103 /* Ethernet header. */
104 memset(buf, 0xff, 6); /* destination MAC addr */
105 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
106 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
107
108 /* RARP header. */
109 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
110 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
111 *(buf + 18) = 6; /* hardware addr length (ethernet) */
112 *(buf + 19) = 4; /* protocol addr length (IPv4) */
113 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
114 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
115 memset(buf + 28, 0x00, 4); /* source protocol addr */
116 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
117 memset(buf + 38, 0x00, 4); /* target protocol addr */
118
119 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
120 memset(buf + 42, 0x00, 18);
121
122 return 60; /* len (FCS will be added by hardware) */
123 }
124
125 static void qemu_announce_self_iter(NICState *nic, void *opaque)
126 {
127 uint8_t buf[60];
128 int len;
129
130 len = announce_self_create(buf, nic->conf->macaddr.a);
131
132 qemu_send_packet_raw(&nic->nc, buf, len);
133 }
134
135
136 static void qemu_announce_self_once(void *opaque)
137 {
138 static int count = SELF_ANNOUNCE_ROUNDS;
139 QEMUTimer *timer = *(QEMUTimer **)opaque;
140
141 qemu_foreach_nic(qemu_announce_self_iter, NULL);
142
143 if (--count) {
144 /* delay 50ms, 150ms, 250ms, ... */
145 qemu_mod_timer(timer, qemu_get_clock_ms(rt_clock) +
146 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
147 } else {
148 qemu_del_timer(timer);
149 qemu_free_timer(timer);
150 }
151 }
152
153 void qemu_announce_self(void)
154 {
155 static QEMUTimer *timer;
156 timer = qemu_new_timer_ms(rt_clock, qemu_announce_self_once, &timer);
157 qemu_announce_self_once(&timer);
158 }
159
160 /***********************************************************/
161 /* savevm/loadvm support */
162
163 #define IO_BUF_SIZE 32768
164
165 struct QEMUFile {
166 const QEMUFileOps *ops;
167 void *opaque;
168 int is_write;
169
170 int64_t buf_offset; /* start of buffer when writing, end of buffer
171 when reading */
172 int buf_index;
173 int buf_size; /* 0 when writing */
174 uint8_t buf[IO_BUF_SIZE];
175
176 int last_error;
177 };
178
179 typedef struct QEMUFileStdio
180 {
181 FILE *stdio_file;
182 QEMUFile *file;
183 } QEMUFileStdio;
184
185 typedef struct QEMUFileSocket
186 {
187 int fd;
188 QEMUFile *file;
189 } QEMUFileSocket;
190
191 static int socket_get_fd(void *opaque)
192 {
193 QEMUFileSocket *s = opaque;
194
195 return s->fd;
196 }
197
198 static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
199 {
200 QEMUFileSocket *s = opaque;
201 ssize_t len;
202
203 do {
204 len = qemu_recv(s->fd, buf, size, 0);
205 } while (len == -1 && socket_error() == EINTR);
206
207 if (len == -1)
208 len = -socket_error();
209
210 return len;
211 }
212
213 static int socket_close(void *opaque)
214 {
215 QEMUFileSocket *s = opaque;
216 g_free(s);
217 return 0;
218 }
219
220 static int stdio_get_fd(void *opaque)
221 {
222 QEMUFileStdio *s = opaque;
223
224 return fileno(s->stdio_file);
225 }
226
227 static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
228 {
229 QEMUFileStdio *s = opaque;
230 return fwrite(buf, 1, size, s->stdio_file);
231 }
232
233 static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
234 {
235 QEMUFileStdio *s = opaque;
236 FILE *fp = s->stdio_file;
237 int bytes;
238
239 do {
240 clearerr(fp);
241 bytes = fread(buf, 1, size, fp);
242 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
243 return bytes;
244 }
245
246 static int stdio_pclose(void *opaque)
247 {
248 QEMUFileStdio *s = opaque;
249 int ret;
250 ret = pclose(s->stdio_file);
251 if (ret == -1) {
252 ret = -errno;
253 }
254 g_free(s);
255 return ret;
256 }
257
258 static int stdio_fclose(void *opaque)
259 {
260 QEMUFileStdio *s = opaque;
261 int ret = 0;
262 if (fclose(s->stdio_file) == EOF) {
263 ret = -errno;
264 }
265 g_free(s);
266 return ret;
267 }
268
269 static const QEMUFileOps stdio_pipe_read_ops = {
270 .get_fd = stdio_get_fd,
271 .get_buffer = stdio_get_buffer,
272 .close = stdio_pclose
273 };
274
275 static const QEMUFileOps stdio_pipe_write_ops = {
276 .get_fd = stdio_get_fd,
277 .put_buffer = stdio_put_buffer,
278 .close = stdio_pclose
279 };
280
281 QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
282 {
283 QEMUFileStdio *s;
284
285 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
286 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
287 return NULL;
288 }
289
290 s = g_malloc0(sizeof(QEMUFileStdio));
291
292 s->stdio_file = stdio_file;
293
294 if(mode[0] == 'r') {
295 s->file = qemu_fopen_ops(s, &stdio_pipe_read_ops);
296 } else {
297 s->file = qemu_fopen_ops(s, &stdio_pipe_write_ops);
298 }
299 return s->file;
300 }
301
302 QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
303 {
304 FILE *popen_file;
305
306 popen_file = popen(command, mode);
307 if(popen_file == NULL) {
308 return NULL;
309 }
310
311 return qemu_popen(popen_file, mode);
312 }
313
314 int qemu_stdio_fd(QEMUFile *f)
315 {
316 QEMUFileStdio *p;
317 int fd;
318
319 p = (QEMUFileStdio *)f->opaque;
320 fd = fileno(p->stdio_file);
321
322 return fd;
323 }
324
325 static const QEMUFileOps stdio_file_read_ops = {
326 .get_fd = stdio_get_fd,
327 .get_buffer = stdio_get_buffer,
328 .close = stdio_fclose
329 };
330
331 static const QEMUFileOps stdio_file_write_ops = {
332 .get_fd = stdio_get_fd,
333 .put_buffer = stdio_put_buffer,
334 .close = stdio_fclose
335 };
336
337 QEMUFile *qemu_fdopen(int fd, const char *mode)
338 {
339 QEMUFileStdio *s;
340
341 if (mode == NULL ||
342 (mode[0] != 'r' && mode[0] != 'w') ||
343 mode[1] != 'b' || mode[2] != 0) {
344 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
345 return NULL;
346 }
347
348 s = g_malloc0(sizeof(QEMUFileStdio));
349 s->stdio_file = fdopen(fd, mode);
350 if (!s->stdio_file)
351 goto fail;
352
353 if(mode[0] == 'r') {
354 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
355 } else {
356 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
357 }
358 return s->file;
359
360 fail:
361 g_free(s);
362 return NULL;
363 }
364
365 static const QEMUFileOps socket_read_ops = {
366 .get_fd = socket_get_fd,
367 .get_buffer = socket_get_buffer,
368 .close = socket_close
369 };
370
371 QEMUFile *qemu_fopen_socket(int fd)
372 {
373 QEMUFileSocket *s = g_malloc0(sizeof(QEMUFileSocket));
374
375 s->fd = fd;
376 s->file = qemu_fopen_ops(s, &socket_read_ops);
377 return s->file;
378 }
379
380 QEMUFile *qemu_fopen(const char *filename, const char *mode)
381 {
382 QEMUFileStdio *s;
383
384 if (mode == NULL ||
385 (mode[0] != 'r' && mode[0] != 'w') ||
386 mode[1] != 'b' || mode[2] != 0) {
387 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
388 return NULL;
389 }
390
391 s = g_malloc0(sizeof(QEMUFileStdio));
392
393 s->stdio_file = fopen(filename, mode);
394 if (!s->stdio_file)
395 goto fail;
396
397 if(mode[0] == 'w') {
398 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
399 } else {
400 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
401 }
402 return s->file;
403 fail:
404 g_free(s);
405 return NULL;
406 }
407
408 static int block_put_buffer(void *opaque, const uint8_t *buf,
409 int64_t pos, int size)
410 {
411 bdrv_save_vmstate(opaque, buf, pos, size);
412 return size;
413 }
414
415 static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
416 {
417 return bdrv_load_vmstate(opaque, buf, pos, size);
418 }
419
420 static int bdrv_fclose(void *opaque)
421 {
422 return bdrv_flush(opaque);
423 }
424
425 static const QEMUFileOps bdrv_read_ops = {
426 .get_buffer = block_get_buffer,
427 .close = bdrv_fclose
428 };
429
430 static const QEMUFileOps bdrv_write_ops = {
431 .put_buffer = block_put_buffer,
432 .close = bdrv_fclose
433 };
434
435 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
436 {
437 if (is_writable)
438 return qemu_fopen_ops(bs, &bdrv_write_ops);
439 return qemu_fopen_ops(bs, &bdrv_read_ops);
440 }
441
442 QEMUFile *qemu_fopen_ops(void *opaque, const QEMUFileOps *ops)
443 {
444 QEMUFile *f;
445
446 f = g_malloc0(sizeof(QEMUFile));
447
448 f->opaque = opaque;
449 f->ops = ops;
450 f->is_write = 0;
451
452 return f;
453 }
454
455 int qemu_file_get_error(QEMUFile *f)
456 {
457 return f->last_error;
458 }
459
460 static void qemu_file_set_error(QEMUFile *f, int ret)
461 {
462 f->last_error = ret;
463 }
464
465 /** Flushes QEMUFile buffer
466 *
467 */
468 static int qemu_fflush(QEMUFile *f)
469 {
470 int ret = 0;
471
472 if (!f->ops->put_buffer)
473 return 0;
474
475 if (f->is_write && f->buf_index > 0) {
476 ret = f->ops->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
477 if (ret >= 0) {
478 f->buf_offset += f->buf_index;
479 }
480 f->buf_index = 0;
481 }
482 return ret;
483 }
484
485 static void qemu_fill_buffer(QEMUFile *f)
486 {
487 int len;
488 int pending;
489
490 if (!f->ops->get_buffer)
491 return;
492
493 if (f->is_write)
494 abort();
495
496 pending = f->buf_size - f->buf_index;
497 if (pending > 0) {
498 memmove(f->buf, f->buf + f->buf_index, pending);
499 }
500 f->buf_index = 0;
501 f->buf_size = pending;
502
503 len = f->ops->get_buffer(f->opaque, f->buf + pending, f->buf_offset,
504 IO_BUF_SIZE - pending);
505 if (len > 0) {
506 f->buf_size += len;
507 f->buf_offset += len;
508 } else if (len == 0) {
509 qemu_file_set_error(f, -EIO);
510 } else if (len != -EAGAIN)
511 qemu_file_set_error(f, len);
512 }
513
514 int qemu_get_fd(QEMUFile *f)
515 {
516 if (f->ops->get_fd) {
517 return f->ops->get_fd(f->opaque);
518 }
519 return -1;
520 }
521
522 /** Closes the file
523 *
524 * Returns negative error value if any error happened on previous operations or
525 * while closing the file. Returns 0 or positive number on success.
526 *
527 * The meaning of return value on success depends on the specific backend
528 * being used.
529 */
530 int qemu_fclose(QEMUFile *f)
531 {
532 int ret;
533 ret = qemu_fflush(f);
534
535 if (f->ops->close) {
536 int ret2 = f->ops->close(f->opaque);
537 if (ret >= 0) {
538 ret = ret2;
539 }
540 }
541 /* If any error was spotted before closing, we should report it
542 * instead of the close() return value.
543 */
544 if (f->last_error) {
545 ret = f->last_error;
546 }
547 g_free(f);
548 return ret;
549 }
550
551 int qemu_file_put_notify(QEMUFile *f)
552 {
553 return f->ops->put_buffer(f->opaque, NULL, 0, 0);
554 }
555
556 void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
557 {
558 int l;
559
560 if (f->last_error) {
561 return;
562 }
563
564 if (f->is_write == 0 && f->buf_index > 0) {
565 fprintf(stderr,
566 "Attempted to write to buffer while read buffer is not empty\n");
567 abort();
568 }
569
570 while (size > 0) {
571 l = IO_BUF_SIZE - f->buf_index;
572 if (l > size)
573 l = size;
574 memcpy(f->buf + f->buf_index, buf, l);
575 f->is_write = 1;
576 f->buf_index += l;
577 buf += l;
578 size -= l;
579 if (f->buf_index >= IO_BUF_SIZE) {
580 int ret = qemu_fflush(f);
581 if (ret < 0) {
582 qemu_file_set_error(f, ret);
583 break;
584 }
585 }
586 }
587 }
588
589 void qemu_put_byte(QEMUFile *f, int v)
590 {
591 if (f->last_error) {
592 return;
593 }
594
595 if (f->is_write == 0 && f->buf_index > 0) {
596 fprintf(stderr,
597 "Attempted to write to buffer while read buffer is not empty\n");
598 abort();
599 }
600
601 f->buf[f->buf_index++] = v;
602 f->is_write = 1;
603 if (f->buf_index >= IO_BUF_SIZE) {
604 int ret = qemu_fflush(f);
605 if (ret < 0) {
606 qemu_file_set_error(f, ret);
607 }
608 }
609 }
610
611 static void qemu_file_skip(QEMUFile *f, int size)
612 {
613 if (f->buf_index + size <= f->buf_size) {
614 f->buf_index += size;
615 }
616 }
617
618 static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
619 {
620 int pending;
621 int index;
622
623 if (f->is_write) {
624 abort();
625 }
626
627 index = f->buf_index + offset;
628 pending = f->buf_size - index;
629 if (pending < size) {
630 qemu_fill_buffer(f);
631 index = f->buf_index + offset;
632 pending = f->buf_size - index;
633 }
634
635 if (pending <= 0) {
636 return 0;
637 }
638 if (size > pending) {
639 size = pending;
640 }
641
642 memcpy(buf, f->buf + index, size);
643 return size;
644 }
645
646 int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
647 {
648 int pending = size;
649 int done = 0;
650
651 while (pending > 0) {
652 int res;
653
654 res = qemu_peek_buffer(f, buf, pending, 0);
655 if (res == 0) {
656 return done;
657 }
658 qemu_file_skip(f, res);
659 buf += res;
660 pending -= res;
661 done += res;
662 }
663 return done;
664 }
665
666 static int qemu_peek_byte(QEMUFile *f, int offset)
667 {
668 int index = f->buf_index + offset;
669
670 if (f->is_write) {
671 abort();
672 }
673
674 if (index >= f->buf_size) {
675 qemu_fill_buffer(f);
676 index = f->buf_index + offset;
677 if (index >= f->buf_size) {
678 return 0;
679 }
680 }
681 return f->buf[index];
682 }
683
684 int qemu_get_byte(QEMUFile *f)
685 {
686 int result;
687
688 result = qemu_peek_byte(f, 0);
689 qemu_file_skip(f, 1);
690 return result;
691 }
692
693 static int64_t qemu_ftell(QEMUFile *f)
694 {
695 return f->buf_offset - f->buf_size + f->buf_index;
696 }
697
698 int qemu_file_rate_limit(QEMUFile *f)
699 {
700 if (f->ops->rate_limit)
701 return f->ops->rate_limit(f->opaque);
702
703 return 0;
704 }
705
706 int64_t qemu_file_get_rate_limit(QEMUFile *f)
707 {
708 if (f->ops->get_rate_limit)
709 return f->ops->get_rate_limit(f->opaque);
710
711 return 0;
712 }
713
714 int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
715 {
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->ops->set_rate_limit)
719 return f->ops->set_rate_limit(f->opaque, new_rate);
720
721 return 0;
722 }
723
724 void qemu_put_be16(QEMUFile *f, unsigned int v)
725 {
726 qemu_put_byte(f, v >> 8);
727 qemu_put_byte(f, v);
728 }
729
730 void 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
738 void qemu_put_be64(QEMUFile *f, uint64_t v)
739 {
740 qemu_put_be32(f, v >> 32);
741 qemu_put_be32(f, v);
742 }
743
744 unsigned 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
752 unsigned 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
762 uint64_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
770
771 /* timer */
772
773 void 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
781 void 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
794 /* bool */
795
796 static 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
803 static void put_bool(QEMUFile *f, void *pv, size_t size)
804 {
805 bool *v = pv;
806 qemu_put_byte(f, *v);
807 }
808
809 const VMStateInfo vmstate_info_bool = {
810 .name = "bool",
811 .get = get_bool,
812 .put = put_bool,
813 };
814
815 /* 8 bit int */
816
817 static 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
824 static void put_int8(QEMUFile *f, void *pv, size_t size)
825 {
826 int8_t *v = pv;
827 qemu_put_s8s(f, v);
828 }
829
830 const VMStateInfo vmstate_info_int8 = {
831 .name = "int8",
832 .get = get_int8,
833 .put = put_int8,
834 };
835
836 /* 16 bit int */
837
838 static 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
845 static void put_int16(QEMUFile *f, void *pv, size_t size)
846 {
847 int16_t *v = pv;
848 qemu_put_sbe16s(f, v);
849 }
850
851 const VMStateInfo vmstate_info_int16 = {
852 .name = "int16",
853 .get = get_int16,
854 .put = put_int16,
855 };
856
857 /* 32 bit int */
858
859 static 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
866 static void put_int32(QEMUFile *f, void *pv, size_t size)
867 {
868 int32_t *v = pv;
869 qemu_put_sbe32s(f, v);
870 }
871
872 const VMStateInfo vmstate_info_int32 = {
873 .name = "int32",
874 .get = get_int32,
875 .put = put_int32,
876 };
877
878 /* 32 bit int. See that the received value is the same than the one
879 in the field */
880
881 static 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
892 const VMStateInfo vmstate_info_int32_equal = {
893 .name = "int32 equal",
894 .get = get_int32_equal,
895 .put = put_int32,
896 };
897
898 /* 32 bit int. See that the received value is the less or the same
899 than the one in the field */
900
901 static 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
912 const VMStateInfo vmstate_info_int32_le = {
913 .name = "int32 equal",
914 .get = get_int32_le,
915 .put = put_int32,
916 };
917
918 /* 64 bit int */
919
920 static 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
927 static void put_int64(QEMUFile *f, void *pv, size_t size)
928 {
929 int64_t *v = pv;
930 qemu_put_sbe64s(f, v);
931 }
932
933 const VMStateInfo vmstate_info_int64 = {
934 .name = "int64",
935 .get = get_int64,
936 .put = put_int64,
937 };
938
939 /* 8 bit unsigned int */
940
941 static 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
948 static void put_uint8(QEMUFile *f, void *pv, size_t size)
949 {
950 uint8_t *v = pv;
951 qemu_put_8s(f, v);
952 }
953
954 const VMStateInfo vmstate_info_uint8 = {
955 .name = "uint8",
956 .get = get_uint8,
957 .put = put_uint8,
958 };
959
960 /* 16 bit unsigned int */
961
962 static 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
969 static void put_uint16(QEMUFile *f, void *pv, size_t size)
970 {
971 uint16_t *v = pv;
972 qemu_put_be16s(f, v);
973 }
974
975 const VMStateInfo vmstate_info_uint16 = {
976 .name = "uint16",
977 .get = get_uint16,
978 .put = put_uint16,
979 };
980
981 /* 32 bit unsigned int */
982
983 static 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
990 static void put_uint32(QEMUFile *f, void *pv, size_t size)
991 {
992 uint32_t *v = pv;
993 qemu_put_be32s(f, v);
994 }
995
996 const VMStateInfo vmstate_info_uint32 = {
997 .name = "uint32",
998 .get = get_uint32,
999 .put = put_uint32,
1000 };
1001
1002 /* 32 bit uint. See that the received value is the same than the one
1003 in the field */
1004
1005 static 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
1017 const VMStateInfo vmstate_info_uint32_equal = {
1018 .name = "uint32 equal",
1019 .get = get_uint32_equal,
1020 .put = put_uint32,
1021 };
1022
1023 /* 64 bit unsigned int */
1024
1025 static 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
1032 static void put_uint64(QEMUFile *f, void *pv, size_t size)
1033 {
1034 uint64_t *v = pv;
1035 qemu_put_be64s(f, v);
1036 }
1037
1038 const VMStateInfo vmstate_info_uint64 = {
1039 .name = "uint64",
1040 .get = get_uint64,
1041 .put = put_uint64,
1042 };
1043
1044 /* 8 bit int. See that the received value is the same than the one
1045 in the field */
1046
1047 static 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
1058 const VMStateInfo vmstate_info_uint8_equal = {
1059 .name = "uint8 equal",
1060 .get = get_uint8_equal,
1061 .put = put_uint8,
1062 };
1063
1064 /* 16 bit unsigned int int. See that the received value is the same than the one
1065 in the field */
1066
1067 static 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
1078 const VMStateInfo vmstate_info_uint16_equal = {
1079 .name = "uint16 equal",
1080 .get = get_uint16_equal,
1081 .put = put_uint16,
1082 };
1083
1084 /* timers */
1085
1086 static 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
1093 static void put_timer(QEMUFile *f, void *pv, size_t size)
1094 {
1095 QEMUTimer *v = pv;
1096 qemu_put_timer(f, v);
1097 }
1098
1099 const VMStateInfo vmstate_info_timer = {
1100 .name = "timer",
1101 .get = get_timer,
1102 .put = put_timer,
1103 };
1104
1105 /* uint8_t buffers */
1106
1107 static 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
1114 static void put_buffer(QEMUFile *f, void *pv, size_t size)
1115 {
1116 uint8_t *v = pv;
1117 qemu_put_buffer(f, v, size);
1118 }
1119
1120 const VMStateInfo vmstate_info_buffer = {
1121 .name = "buffer",
1122 .get = get_buffer,
1123 .put = put_buffer,
1124 };
1125
1126 /* unused buffers: space that was used for some fields that are
1127 not useful anymore */
1128
1129 static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
1130 {
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;
1140 }
1141
1142 static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
1143 {
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 }
1152 }
1153
1154 const VMStateInfo vmstate_info_unused_buffer = {
1155 .name = "unused_buffer",
1156 .get = get_unused_buffer,
1157 .put = put_unused_buffer,
1158 };
1159
1160 /* bitmaps (as defined by bitmap.h). Note that size here is the size
1161 * of the bitmap in bits. The on-the-wire format of a bitmap is 64
1162 * bit words with the bits in big endian order. The in-memory format
1163 * is an array of 'unsigned long', which may be either 32 or 64 bits.
1164 */
1165 /* This is the number of 64 bit words sent over the wire */
1166 #define BITS_TO_U64S(nr) DIV_ROUND_UP(nr, 64)
1167 static int get_bitmap(QEMUFile *f, void *pv, size_t size)
1168 {
1169 unsigned long *bmp = pv;
1170 int i, idx = 0;
1171 for (i = 0; i < BITS_TO_U64S(size); i++) {
1172 uint64_t w = qemu_get_be64(f);
1173 bmp[idx++] = w;
1174 if (sizeof(unsigned long) == 4 && idx < BITS_TO_LONGS(size)) {
1175 bmp[idx++] = w >> 32;
1176 }
1177 }
1178 return 0;
1179 }
1180
1181 static void put_bitmap(QEMUFile *f, void *pv, size_t size)
1182 {
1183 unsigned long *bmp = pv;
1184 int i, idx = 0;
1185 for (i = 0; i < BITS_TO_U64S(size); i++) {
1186 uint64_t w = bmp[idx++];
1187 if (sizeof(unsigned long) == 4 && idx < BITS_TO_LONGS(size)) {
1188 w |= ((uint64_t)bmp[idx++]) << 32;
1189 }
1190 qemu_put_be64(f, w);
1191 }
1192 }
1193
1194 const VMStateInfo vmstate_info_bitmap = {
1195 .name = "bitmap",
1196 .get = get_bitmap,
1197 .put = put_bitmap,
1198 };
1199
1200 typedef struct CompatEntry {
1201 char idstr[256];
1202 int instance_id;
1203 } CompatEntry;
1204
1205 typedef struct SaveStateEntry {
1206 QTAILQ_ENTRY(SaveStateEntry) entry;
1207 char idstr[256];
1208 int instance_id;
1209 int alias_id;
1210 int version_id;
1211 int section_id;
1212 SaveVMHandlers *ops;
1213 const VMStateDescription *vmsd;
1214 void *opaque;
1215 CompatEntry *compat;
1216 int no_migrate;
1217 int is_ram;
1218 } SaveStateEntry;
1219
1220
1221 static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1222 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
1223 static int global_section_id;
1224
1225 static int calculate_new_instance_id(const char *idstr)
1226 {
1227 SaveStateEntry *se;
1228 int instance_id = 0;
1229
1230 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1231 if (strcmp(idstr, se->idstr) == 0
1232 && instance_id <= se->instance_id) {
1233 instance_id = se->instance_id + 1;
1234 }
1235 }
1236 return instance_id;
1237 }
1238
1239 static int calculate_compat_instance_id(const char *idstr)
1240 {
1241 SaveStateEntry *se;
1242 int instance_id = 0;
1243
1244 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1245 if (!se->compat)
1246 continue;
1247
1248 if (strcmp(idstr, se->compat->idstr) == 0
1249 && instance_id <= se->compat->instance_id) {
1250 instance_id = se->compat->instance_id + 1;
1251 }
1252 }
1253 return instance_id;
1254 }
1255
1256 /* TODO: Individual devices generally have very little idea about the rest
1257 of the system, so instance_id should be removed/replaced.
1258 Meanwhile pass -1 as instance_id if you do not already have a clearly
1259 distinguishing id for all instances of your device class. */
1260 int register_savevm_live(DeviceState *dev,
1261 const char *idstr,
1262 int instance_id,
1263 int version_id,
1264 SaveVMHandlers *ops,
1265 void *opaque)
1266 {
1267 SaveStateEntry *se;
1268
1269 se = g_malloc0(sizeof(SaveStateEntry));
1270 se->version_id = version_id;
1271 se->section_id = global_section_id++;
1272 se->ops = ops;
1273 se->opaque = opaque;
1274 se->vmsd = NULL;
1275 se->no_migrate = 0;
1276 /* if this is a live_savem then set is_ram */
1277 if (ops->save_live_setup != NULL) {
1278 se->is_ram = 1;
1279 }
1280
1281 if (dev) {
1282 char *id = qdev_get_dev_path(dev);
1283 if (id) {
1284 pstrcpy(se->idstr, sizeof(se->idstr), id);
1285 pstrcat(se->idstr, sizeof(se->idstr), "/");
1286 g_free(id);
1287
1288 se->compat = g_malloc0(sizeof(CompatEntry));
1289 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1290 se->compat->instance_id = instance_id == -1 ?
1291 calculate_compat_instance_id(idstr) : instance_id;
1292 instance_id = -1;
1293 }
1294 }
1295 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1296
1297 if (instance_id == -1) {
1298 se->instance_id = calculate_new_instance_id(se->idstr);
1299 } else {
1300 se->instance_id = instance_id;
1301 }
1302 assert(!se->compat || se->instance_id == 0);
1303 /* add at the end of list */
1304 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
1305 return 0;
1306 }
1307
1308 int register_savevm(DeviceState *dev,
1309 const char *idstr,
1310 int instance_id,
1311 int version_id,
1312 SaveStateHandler *save_state,
1313 LoadStateHandler *load_state,
1314 void *opaque)
1315 {
1316 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
1317 ops->save_state = save_state;
1318 ops->load_state = load_state;
1319 return register_savevm_live(dev, idstr, instance_id, version_id,
1320 ops, opaque);
1321 }
1322
1323 void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
1324 {
1325 SaveStateEntry *se, *new_se;
1326 char id[256] = "";
1327
1328 if (dev) {
1329 char *path = qdev_get_dev_path(dev);
1330 if (path) {
1331 pstrcpy(id, sizeof(id), path);
1332 pstrcat(id, sizeof(id), "/");
1333 g_free(path);
1334 }
1335 }
1336 pstrcat(id, sizeof(id), idstr);
1337
1338 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1339 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
1340 QTAILQ_REMOVE(&savevm_handlers, se, entry);
1341 if (se->compat) {
1342 g_free(se->compat);
1343 }
1344 g_free(se->ops);
1345 g_free(se);
1346 }
1347 }
1348 }
1349
1350 int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
1351 const VMStateDescription *vmsd,
1352 void *opaque, int alias_id,
1353 int required_for_version)
1354 {
1355 SaveStateEntry *se;
1356
1357 /* If this triggers, alias support can be dropped for the vmsd. */
1358 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1359
1360 se = g_malloc0(sizeof(SaveStateEntry));
1361 se->version_id = vmsd->version_id;
1362 se->section_id = global_section_id++;
1363 se->opaque = opaque;
1364 se->vmsd = vmsd;
1365 se->alias_id = alias_id;
1366 se->no_migrate = vmsd->unmigratable;
1367
1368 if (dev) {
1369 char *id = qdev_get_dev_path(dev);
1370 if (id) {
1371 pstrcpy(se->idstr, sizeof(se->idstr), id);
1372 pstrcat(se->idstr, sizeof(se->idstr), "/");
1373 g_free(id);
1374
1375 se->compat = g_malloc0(sizeof(CompatEntry));
1376 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1377 se->compat->instance_id = instance_id == -1 ?
1378 calculate_compat_instance_id(vmsd->name) : instance_id;
1379 instance_id = -1;
1380 }
1381 }
1382 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1383
1384 if (instance_id == -1) {
1385 se->instance_id = calculate_new_instance_id(se->idstr);
1386 } else {
1387 se->instance_id = instance_id;
1388 }
1389 assert(!se->compat || se->instance_id == 0);
1390 /* add at the end of list */
1391 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
1392 return 0;
1393 }
1394
1395 int vmstate_register(DeviceState *dev, int instance_id,
1396 const VMStateDescription *vmsd, void *opaque)
1397 {
1398 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1399 opaque, -1, 0);
1400 }
1401
1402 void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1403 void *opaque)
1404 {
1405 SaveStateEntry *se, *new_se;
1406
1407 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1408 if (se->vmsd == vmsd && se->opaque == opaque) {
1409 QTAILQ_REMOVE(&savevm_handlers, se, entry);
1410 if (se->compat) {
1411 g_free(se->compat);
1412 }
1413 g_free(se);
1414 }
1415 }
1416 }
1417
1418 static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1419 void *opaque);
1420 static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1421 void *opaque);
1422
1423 int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1424 void *opaque, int version_id)
1425 {
1426 VMStateField *field = vmsd->fields;
1427 int ret;
1428
1429 if (version_id > vmsd->version_id) {
1430 return -EINVAL;
1431 }
1432 if (version_id < vmsd->minimum_version_id_old) {
1433 return -EINVAL;
1434 }
1435 if (version_id < vmsd->minimum_version_id) {
1436 return vmsd->load_state_old(f, opaque, version_id);
1437 }
1438 if (vmsd->pre_load) {
1439 int ret = vmsd->pre_load(opaque);
1440 if (ret)
1441 return ret;
1442 }
1443 while(field->name) {
1444 if ((field->field_exists &&
1445 field->field_exists(opaque, version_id)) ||
1446 (!field->field_exists &&
1447 field->version_id <= version_id)) {
1448 void *base_addr = opaque + field->offset;
1449 int i, n_elems = 1;
1450 int size = field->size;
1451
1452 if (field->flags & VMS_VBUFFER) {
1453 size = *(int32_t *)(opaque+field->size_offset);
1454 if (field->flags & VMS_MULTIPLY) {
1455 size *= field->size;
1456 }
1457 }
1458 if (field->flags & VMS_ARRAY) {
1459 n_elems = field->num;
1460 } else if (field->flags & VMS_VARRAY_INT32) {
1461 n_elems = *(int32_t *)(opaque+field->num_offset);
1462 } else if (field->flags & VMS_VARRAY_UINT32) {
1463 n_elems = *(uint32_t *)(opaque+field->num_offset);
1464 } else if (field->flags & VMS_VARRAY_UINT16) {
1465 n_elems = *(uint16_t *)(opaque+field->num_offset);
1466 } else if (field->flags & VMS_VARRAY_UINT8) {
1467 n_elems = *(uint8_t *)(opaque+field->num_offset);
1468 }
1469 if (field->flags & VMS_POINTER) {
1470 base_addr = *(void **)base_addr + field->start;
1471 }
1472 for (i = 0; i < n_elems; i++) {
1473 void *addr = base_addr + size * i;
1474
1475 if (field->flags & VMS_ARRAY_OF_POINTER) {
1476 addr = *(void **)addr;
1477 }
1478 if (field->flags & VMS_STRUCT) {
1479 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
1480 } else {
1481 ret = field->info->get(f, addr, size);
1482
1483 }
1484 if (ret < 0) {
1485 return ret;
1486 }
1487 }
1488 }
1489 field++;
1490 }
1491 ret = vmstate_subsection_load(f, vmsd, opaque);
1492 if (ret != 0) {
1493 return ret;
1494 }
1495 if (vmsd->post_load) {
1496 return vmsd->post_load(opaque, version_id);
1497 }
1498 return 0;
1499 }
1500
1501 void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
1502 void *opaque)
1503 {
1504 VMStateField *field = vmsd->fields;
1505
1506 if (vmsd->pre_save) {
1507 vmsd->pre_save(opaque);
1508 }
1509 while(field->name) {
1510 if (!field->field_exists ||
1511 field->field_exists(opaque, vmsd->version_id)) {
1512 void *base_addr = opaque + field->offset;
1513 int i, n_elems = 1;
1514 int size = field->size;
1515
1516 if (field->flags & VMS_VBUFFER) {
1517 size = *(int32_t *)(opaque+field->size_offset);
1518 if (field->flags & VMS_MULTIPLY) {
1519 size *= field->size;
1520 }
1521 }
1522 if (field->flags & VMS_ARRAY) {
1523 n_elems = field->num;
1524 } else if (field->flags & VMS_VARRAY_INT32) {
1525 n_elems = *(int32_t *)(opaque+field->num_offset);
1526 } else if (field->flags & VMS_VARRAY_UINT32) {
1527 n_elems = *(uint32_t *)(opaque+field->num_offset);
1528 } else if (field->flags & VMS_VARRAY_UINT16) {
1529 n_elems = *(uint16_t *)(opaque+field->num_offset);
1530 } else if (field->flags & VMS_VARRAY_UINT8) {
1531 n_elems = *(uint8_t *)(opaque+field->num_offset);
1532 }
1533 if (field->flags & VMS_POINTER) {
1534 base_addr = *(void **)base_addr + field->start;
1535 }
1536 for (i = 0; i < n_elems; i++) {
1537 void *addr = base_addr + size * i;
1538
1539 if (field->flags & VMS_ARRAY_OF_POINTER) {
1540 addr = *(void **)addr;
1541 }
1542 if (field->flags & VMS_STRUCT) {
1543 vmstate_save_state(f, field->vmsd, addr);
1544 } else {
1545 field->info->put(f, addr, size);
1546 }
1547 }
1548 }
1549 field++;
1550 }
1551 vmstate_subsection_save(f, vmsd, opaque);
1552 }
1553
1554 static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1555 {
1556 if (!se->vmsd) { /* Old style */
1557 return se->ops->load_state(f, se->opaque, version_id);
1558 }
1559 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
1560 }
1561
1562 static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
1563 {
1564 if (!se->vmsd) { /* Old style */
1565 se->ops->save_state(f, se->opaque);
1566 return;
1567 }
1568 vmstate_save_state(f,se->vmsd, se->opaque);
1569 }
1570
1571 #define QEMU_VM_FILE_MAGIC 0x5145564d
1572 #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1573 #define QEMU_VM_FILE_VERSION 0x00000003
1574
1575 #define QEMU_VM_EOF 0x00
1576 #define QEMU_VM_SECTION_START 0x01
1577 #define QEMU_VM_SECTION_PART 0x02
1578 #define QEMU_VM_SECTION_END 0x03
1579 #define QEMU_VM_SECTION_FULL 0x04
1580 #define QEMU_VM_SUBSECTION 0x05
1581
1582 bool qemu_savevm_state_blocked(Error **errp)
1583 {
1584 SaveStateEntry *se;
1585
1586 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1587 if (se->no_migrate) {
1588 error_set(errp, QERR_MIGRATION_NOT_SUPPORTED, se->idstr);
1589 return true;
1590 }
1591 }
1592 return false;
1593 }
1594
1595 int qemu_savevm_state_begin(QEMUFile *f,
1596 const MigrationParams *params)
1597 {
1598 SaveStateEntry *se;
1599 int ret;
1600
1601 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1602 if (!se->ops || !se->ops->set_params) {
1603 continue;
1604 }
1605 se->ops->set_params(params, se->opaque);
1606 }
1607
1608 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1609 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1610
1611 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1612 int len;
1613
1614 if (!se->ops || !se->ops->save_live_setup) {
1615 continue;
1616 }
1617 if (se->ops && se->ops->is_active) {
1618 if (!se->ops->is_active(se->opaque)) {
1619 continue;
1620 }
1621 }
1622 /* Section type */
1623 qemu_put_byte(f, QEMU_VM_SECTION_START);
1624 qemu_put_be32(f, se->section_id);
1625
1626 /* ID string */
1627 len = strlen(se->idstr);
1628 qemu_put_byte(f, len);
1629 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1630
1631 qemu_put_be32(f, se->instance_id);
1632 qemu_put_be32(f, se->version_id);
1633
1634 ret = se->ops->save_live_setup(f, se->opaque);
1635 if (ret < 0) {
1636 qemu_savevm_state_cancel(f);
1637 return ret;
1638 }
1639 }
1640 ret = qemu_file_get_error(f);
1641 if (ret != 0) {
1642 qemu_savevm_state_cancel(f);
1643 }
1644
1645 return ret;
1646
1647 }
1648
1649 /*
1650 * this function has three return values:
1651 * negative: there was one error, and we have -errno.
1652 * 0 : We haven't finished, caller have to go again
1653 * 1 : We have finished, we can go to complete phase
1654 */
1655 int qemu_savevm_state_iterate(QEMUFile *f)
1656 {
1657 SaveStateEntry *se;
1658 int ret = 1;
1659
1660 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1661 if (!se->ops || !se->ops->save_live_iterate) {
1662 continue;
1663 }
1664 if (se->ops && se->ops->is_active) {
1665 if (!se->ops->is_active(se->opaque)) {
1666 continue;
1667 }
1668 }
1669 if (qemu_file_rate_limit(f)) {
1670 return 0;
1671 }
1672 trace_savevm_section_start();
1673 /* Section type */
1674 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1675 qemu_put_be32(f, se->section_id);
1676
1677 ret = se->ops->save_live_iterate(f, se->opaque);
1678 trace_savevm_section_end(se->section_id);
1679
1680 if (ret <= 0) {
1681 /* Do not proceed to the next vmstate before this one reported
1682 completion of the current stage. This serializes the migration
1683 and reduces the probability that a faster changing state is
1684 synchronized over and over again. */
1685 break;
1686 }
1687 }
1688 if (ret != 0) {
1689 return ret;
1690 }
1691 ret = qemu_file_get_error(f);
1692 if (ret != 0) {
1693 qemu_savevm_state_cancel(f);
1694 }
1695 return ret;
1696 }
1697
1698 int qemu_savevm_state_complete(QEMUFile *f)
1699 {
1700 SaveStateEntry *se;
1701 int ret;
1702
1703 cpu_synchronize_all_states();
1704
1705 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1706 if (!se->ops || !se->ops->save_live_complete) {
1707 continue;
1708 }
1709 if (se->ops && se->ops->is_active) {
1710 if (!se->ops->is_active(se->opaque)) {
1711 continue;
1712 }
1713 }
1714 trace_savevm_section_start();
1715 /* Section type */
1716 qemu_put_byte(f, QEMU_VM_SECTION_END);
1717 qemu_put_be32(f, se->section_id);
1718
1719 ret = se->ops->save_live_complete(f, se->opaque);
1720 trace_savevm_section_end(se->section_id);
1721 if (ret < 0) {
1722 return ret;
1723 }
1724 }
1725
1726 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1727 int len;
1728
1729 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1730 continue;
1731 }
1732 trace_savevm_section_start();
1733 /* Section type */
1734 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1735 qemu_put_be32(f, se->section_id);
1736
1737 /* ID string */
1738 len = strlen(se->idstr);
1739 qemu_put_byte(f, len);
1740 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1741
1742 qemu_put_be32(f, se->instance_id);
1743 qemu_put_be32(f, se->version_id);
1744
1745 vmstate_save(f, se);
1746 trace_savevm_section_end(se->section_id);
1747 }
1748
1749 qemu_put_byte(f, QEMU_VM_EOF);
1750
1751 return qemu_file_get_error(f);
1752 }
1753
1754 void qemu_savevm_state_cancel(QEMUFile *f)
1755 {
1756 SaveStateEntry *se;
1757
1758 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1759 if (se->ops && se->ops->cancel) {
1760 se->ops->cancel(se->opaque);
1761 }
1762 }
1763 }
1764
1765 static int qemu_savevm_state(QEMUFile *f)
1766 {
1767 int ret;
1768 MigrationParams params = {
1769 .blk = 0,
1770 .shared = 0
1771 };
1772
1773 if (qemu_savevm_state_blocked(NULL)) {
1774 ret = -EINVAL;
1775 goto out;
1776 }
1777
1778 ret = qemu_savevm_state_begin(f, &params);
1779 if (ret < 0)
1780 goto out;
1781
1782 do {
1783 ret = qemu_savevm_state_iterate(f);
1784 if (ret < 0)
1785 goto out;
1786 } while (ret == 0);
1787
1788 ret = qemu_savevm_state_complete(f);
1789
1790 out:
1791 if (ret == 0) {
1792 ret = qemu_file_get_error(f);
1793 }
1794
1795 return ret;
1796 }
1797
1798 static int qemu_save_device_state(QEMUFile *f)
1799 {
1800 SaveStateEntry *se;
1801
1802 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1803 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1804
1805 cpu_synchronize_all_states();
1806
1807 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1808 int len;
1809
1810 if (se->is_ram) {
1811 continue;
1812 }
1813 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1814 continue;
1815 }
1816
1817 /* Section type */
1818 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1819 qemu_put_be32(f, se->section_id);
1820
1821 /* ID string */
1822 len = strlen(se->idstr);
1823 qemu_put_byte(f, len);
1824 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1825
1826 qemu_put_be32(f, se->instance_id);
1827 qemu_put_be32(f, se->version_id);
1828
1829 vmstate_save(f, se);
1830 }
1831
1832 qemu_put_byte(f, QEMU_VM_EOF);
1833
1834 return qemu_file_get_error(f);
1835 }
1836
1837 static SaveStateEntry *find_se(const char *idstr, int instance_id)
1838 {
1839 SaveStateEntry *se;
1840
1841 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1842 if (!strcmp(se->idstr, idstr) &&
1843 (instance_id == se->instance_id ||
1844 instance_id == se->alias_id))
1845 return se;
1846 /* Migrating from an older version? */
1847 if (strstr(se->idstr, idstr) && se->compat) {
1848 if (!strcmp(se->compat->idstr, idstr) &&
1849 (instance_id == se->compat->instance_id ||
1850 instance_id == se->alias_id))
1851 return se;
1852 }
1853 }
1854 return NULL;
1855 }
1856
1857 static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1858 {
1859 while(sub && sub->needed) {
1860 if (strcmp(idstr, sub->vmsd->name) == 0) {
1861 return sub->vmsd;
1862 }
1863 sub++;
1864 }
1865 return NULL;
1866 }
1867
1868 static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1869 void *opaque)
1870 {
1871 while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
1872 char idstr[256];
1873 int ret;
1874 uint8_t version_id, len, size;
1875 const VMStateDescription *sub_vmsd;
1876
1877 len = qemu_peek_byte(f, 1);
1878 if (len < strlen(vmsd->name) + 1) {
1879 /* subsection name has be be "section_name/a" */
1880 return 0;
1881 }
1882 size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
1883 if (size != len) {
1884 return 0;
1885 }
1886 idstr[size] = 0;
1887
1888 if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
1889 /* it don't have a valid subsection name */
1890 return 0;
1891 }
1892 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
1893 if (sub_vmsd == NULL) {
1894 return -ENOENT;
1895 }
1896 qemu_file_skip(f, 1); /* subsection */
1897 qemu_file_skip(f, 1); /* len */
1898 qemu_file_skip(f, len); /* idstr */
1899 version_id = qemu_get_be32(f);
1900
1901 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1902 if (ret) {
1903 return ret;
1904 }
1905 }
1906 return 0;
1907 }
1908
1909 static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1910 void *opaque)
1911 {
1912 const VMStateSubsection *sub = vmsd->subsections;
1913
1914 while (sub && sub->needed) {
1915 if (sub->needed(opaque)) {
1916 const VMStateDescription *vmsd = sub->vmsd;
1917 uint8_t len;
1918
1919 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1920 len = strlen(vmsd->name);
1921 qemu_put_byte(f, len);
1922 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1923 qemu_put_be32(f, vmsd->version_id);
1924 vmstate_save_state(f, vmsd, opaque);
1925 }
1926 sub++;
1927 }
1928 }
1929
1930 typedef struct LoadStateEntry {
1931 QLIST_ENTRY(LoadStateEntry) entry;
1932 SaveStateEntry *se;
1933 int section_id;
1934 int version_id;
1935 } LoadStateEntry;
1936
1937 int qemu_loadvm_state(QEMUFile *f)
1938 {
1939 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1940 QLIST_HEAD_INITIALIZER(loadvm_handlers);
1941 LoadStateEntry *le, *new_le;
1942 uint8_t section_type;
1943 unsigned int v;
1944 int ret;
1945
1946 if (qemu_savevm_state_blocked(NULL)) {
1947 return -EINVAL;
1948 }
1949
1950 v = qemu_get_be32(f);
1951 if (v != QEMU_VM_FILE_MAGIC)
1952 return -EINVAL;
1953
1954 v = qemu_get_be32(f);
1955 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1956 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1957 return -ENOTSUP;
1958 }
1959 if (v != QEMU_VM_FILE_VERSION)
1960 return -ENOTSUP;
1961
1962 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1963 uint32_t instance_id, version_id, section_id;
1964 SaveStateEntry *se;
1965 char idstr[257];
1966 int len;
1967
1968 switch (section_type) {
1969 case QEMU_VM_SECTION_START:
1970 case QEMU_VM_SECTION_FULL:
1971 /* Read section start */
1972 section_id = qemu_get_be32(f);
1973 len = qemu_get_byte(f);
1974 qemu_get_buffer(f, (uint8_t *)idstr, len);
1975 idstr[len] = 0;
1976 instance_id = qemu_get_be32(f);
1977 version_id = qemu_get_be32(f);
1978
1979 /* Find savevm section */
1980 se = find_se(idstr, instance_id);
1981 if (se == NULL) {
1982 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1983 ret = -EINVAL;
1984 goto out;
1985 }
1986
1987 /* Validate version */
1988 if (version_id > se->version_id) {
1989 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1990 version_id, idstr, se->version_id);
1991 ret = -EINVAL;
1992 goto out;
1993 }
1994
1995 /* Add entry */
1996 le = g_malloc0(sizeof(*le));
1997
1998 le->se = se;
1999 le->section_id = section_id;
2000 le->version_id = version_id;
2001 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
2002
2003 ret = vmstate_load(f, le->se, le->version_id);
2004 if (ret < 0) {
2005 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
2006 instance_id, idstr);
2007 goto out;
2008 }
2009 break;
2010 case QEMU_VM_SECTION_PART:
2011 case QEMU_VM_SECTION_END:
2012 section_id = qemu_get_be32(f);
2013
2014 QLIST_FOREACH(le, &loadvm_handlers, entry) {
2015 if (le->section_id == section_id) {
2016 break;
2017 }
2018 }
2019 if (le == NULL) {
2020 fprintf(stderr, "Unknown savevm section %d\n", section_id);
2021 ret = -EINVAL;
2022 goto out;
2023 }
2024
2025 ret = vmstate_load(f, le->se, le->version_id);
2026 if (ret < 0) {
2027 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
2028 section_id);
2029 goto out;
2030 }
2031 break;
2032 default:
2033 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
2034 ret = -EINVAL;
2035 goto out;
2036 }
2037 }
2038
2039 cpu_synchronize_all_post_init();
2040
2041 ret = 0;
2042
2043 out:
2044 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
2045 QLIST_REMOVE(le, entry);
2046 g_free(le);
2047 }
2048
2049 if (ret == 0) {
2050 ret = qemu_file_get_error(f);
2051 }
2052
2053 return ret;
2054 }
2055
2056 static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
2057 const char *name)
2058 {
2059 QEMUSnapshotInfo *sn_tab, *sn;
2060 int nb_sns, i, ret;
2061
2062 ret = -ENOENT;
2063 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2064 if (nb_sns < 0)
2065 return ret;
2066 for(i = 0; i < nb_sns; i++) {
2067 sn = &sn_tab[i];
2068 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
2069 *sn_info = *sn;
2070 ret = 0;
2071 break;
2072 }
2073 }
2074 g_free(sn_tab);
2075 return ret;
2076 }
2077
2078 /*
2079 * Deletes snapshots of a given name in all opened images.
2080 */
2081 static int del_existing_snapshots(Monitor *mon, const char *name)
2082 {
2083 BlockDriverState *bs;
2084 QEMUSnapshotInfo sn1, *snapshot = &sn1;
2085 int ret;
2086
2087 bs = NULL;
2088 while ((bs = bdrv_next(bs))) {
2089 if (bdrv_can_snapshot(bs) &&
2090 bdrv_snapshot_find(bs, snapshot, name) >= 0)
2091 {
2092 ret = bdrv_snapshot_delete(bs, name);
2093 if (ret < 0) {
2094 monitor_printf(mon,
2095 "Error while deleting snapshot on '%s'\n",
2096 bdrv_get_device_name(bs));
2097 return -1;
2098 }
2099 }
2100 }
2101
2102 return 0;
2103 }
2104
2105 void do_savevm(Monitor *mon, const QDict *qdict)
2106 {
2107 BlockDriverState *bs, *bs1;
2108 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
2109 int ret;
2110 QEMUFile *f;
2111 int saved_vm_running;
2112 uint64_t vm_state_size;
2113 #ifdef _WIN32
2114 struct _timeb tb;
2115 struct tm *ptm;
2116 #else
2117 struct timeval tv;
2118 struct tm tm;
2119 #endif
2120 const char *name = qdict_get_try_str(qdict, "name");
2121
2122 /* Verify if there is a device that doesn't support snapshots and is writable */
2123 bs = NULL;
2124 while ((bs = bdrv_next(bs))) {
2125
2126 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
2127 continue;
2128 }
2129
2130 if (!bdrv_can_snapshot(bs)) {
2131 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
2132 bdrv_get_device_name(bs));
2133 return;
2134 }
2135 }
2136
2137 bs = bdrv_snapshots();
2138 if (!bs) {
2139 monitor_printf(mon, "No block device can accept snapshots\n");
2140 return;
2141 }
2142
2143 saved_vm_running = runstate_is_running();
2144 vm_stop(RUN_STATE_SAVE_VM);
2145
2146 memset(sn, 0, sizeof(*sn));
2147
2148 /* fill auxiliary fields */
2149 #ifdef _WIN32
2150 _ftime(&tb);
2151 sn->date_sec = tb.time;
2152 sn->date_nsec = tb.millitm * 1000000;
2153 #else
2154 gettimeofday(&tv, NULL);
2155 sn->date_sec = tv.tv_sec;
2156 sn->date_nsec = tv.tv_usec * 1000;
2157 #endif
2158 sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
2159
2160 if (name) {
2161 ret = bdrv_snapshot_find(bs, old_sn, name);
2162 if (ret >= 0) {
2163 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2164 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2165 } else {
2166 pstrcpy(sn->name, sizeof(sn->name), name);
2167 }
2168 } else {
2169 #ifdef _WIN32
2170 time_t t = tb.time;
2171 ptm = localtime(&t);
2172 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
2173 #else
2174 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2175 localtime_r((const time_t *)&tv.tv_sec, &tm);
2176 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2177 #endif
2178 }
2179
2180 /* Delete old snapshots of the same name */
2181 if (name && del_existing_snapshots(mon, name) < 0) {
2182 goto the_end;
2183 }
2184
2185 /* save the VM state */
2186 f = qemu_fopen_bdrv(bs, 1);
2187 if (!f) {
2188 monitor_printf(mon, "Could not open VM state file\n");
2189 goto the_end;
2190 }
2191 ret = qemu_savevm_state(f);
2192 vm_state_size = qemu_ftell(f);
2193 qemu_fclose(f);
2194 if (ret < 0) {
2195 monitor_printf(mon, "Error %d while writing VM\n", ret);
2196 goto the_end;
2197 }
2198
2199 /* create the snapshots */
2200
2201 bs1 = NULL;
2202 while ((bs1 = bdrv_next(bs1))) {
2203 if (bdrv_can_snapshot(bs1)) {
2204 /* Write VM state size only to the image that contains the state */
2205 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
2206 ret = bdrv_snapshot_create(bs1, sn);
2207 if (ret < 0) {
2208 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
2209 bdrv_get_device_name(bs1));
2210 }
2211 }
2212 }
2213
2214 the_end:
2215 if (saved_vm_running)
2216 vm_start();
2217 }
2218
2219 void qmp_xen_save_devices_state(const char *filename, Error **errp)
2220 {
2221 QEMUFile *f;
2222 int saved_vm_running;
2223 int ret;
2224
2225 saved_vm_running = runstate_is_running();
2226 vm_stop(RUN_STATE_SAVE_VM);
2227
2228 f = qemu_fopen(filename, "wb");
2229 if (!f) {
2230 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
2231 goto the_end;
2232 }
2233 ret = qemu_save_device_state(f);
2234 qemu_fclose(f);
2235 if (ret < 0) {
2236 error_set(errp, QERR_IO_ERROR);
2237 }
2238
2239 the_end:
2240 if (saved_vm_running)
2241 vm_start();
2242 }
2243
2244 int load_vmstate(const char *name)
2245 {
2246 BlockDriverState *bs, *bs_vm_state;
2247 QEMUSnapshotInfo sn;
2248 QEMUFile *f;
2249 int ret;
2250
2251 bs_vm_state = bdrv_snapshots();
2252 if (!bs_vm_state) {
2253 error_report("No block device supports snapshots");
2254 return -ENOTSUP;
2255 }
2256
2257 /* Don't even try to load empty VM states */
2258 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2259 if (ret < 0) {
2260 return ret;
2261 } else if (sn.vm_state_size == 0) {
2262 error_report("This is a disk-only snapshot. Revert to it offline "
2263 "using qemu-img.");
2264 return -EINVAL;
2265 }
2266
2267 /* Verify if there is any device that doesn't support snapshots and is
2268 writable and check if the requested snapshot is available too. */
2269 bs = NULL;
2270 while ((bs = bdrv_next(bs))) {
2271
2272 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
2273 continue;
2274 }
2275
2276 if (!bdrv_can_snapshot(bs)) {
2277 error_report("Device '%s' is writable but does not support snapshots.",
2278 bdrv_get_device_name(bs));
2279 return -ENOTSUP;
2280 }
2281
2282 ret = bdrv_snapshot_find(bs, &sn, name);
2283 if (ret < 0) {
2284 error_report("Device '%s' does not have the requested snapshot '%s'",
2285 bdrv_get_device_name(bs), name);
2286 return ret;
2287 }
2288 }
2289
2290 /* Flush all IO requests so they don't interfere with the new state. */
2291 bdrv_drain_all();
2292
2293 bs = NULL;
2294 while ((bs = bdrv_next(bs))) {
2295 if (bdrv_can_snapshot(bs)) {
2296 ret = bdrv_snapshot_goto(bs, name);
2297 if (ret < 0) {
2298 error_report("Error %d while activating snapshot '%s' on '%s'",
2299 ret, name, bdrv_get_device_name(bs));
2300 return ret;
2301 }
2302 }
2303 }
2304
2305 /* restore the VM state */
2306 f = qemu_fopen_bdrv(bs_vm_state, 0);
2307 if (!f) {
2308 error_report("Could not open VM state file");
2309 return -EINVAL;
2310 }
2311
2312 qemu_system_reset(VMRESET_SILENT);
2313 ret = qemu_loadvm_state(f);
2314
2315 qemu_fclose(f);
2316 if (ret < 0) {
2317 error_report("Error %d while loading VM state", ret);
2318 return ret;
2319 }
2320
2321 return 0;
2322 }
2323
2324 void do_delvm(Monitor *mon, const QDict *qdict)
2325 {
2326 BlockDriverState *bs, *bs1;
2327 int ret;
2328 const char *name = qdict_get_str(qdict, "name");
2329
2330 bs = bdrv_snapshots();
2331 if (!bs) {
2332 monitor_printf(mon, "No block device supports snapshots\n");
2333 return;
2334 }
2335
2336 bs1 = NULL;
2337 while ((bs1 = bdrv_next(bs1))) {
2338 if (bdrv_can_snapshot(bs1)) {
2339 ret = bdrv_snapshot_delete(bs1, name);
2340 if (ret < 0) {
2341 if (ret == -ENOTSUP)
2342 monitor_printf(mon,
2343 "Snapshots not supported on device '%s'\n",
2344 bdrv_get_device_name(bs1));
2345 else
2346 monitor_printf(mon, "Error %d while deleting snapshot on "
2347 "'%s'\n", ret, bdrv_get_device_name(bs1));
2348 }
2349 }
2350 }
2351 }
2352
2353 void do_info_snapshots(Monitor *mon)
2354 {
2355 BlockDriverState *bs, *bs1;
2356 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2357 int nb_sns, i, ret, available;
2358 int total;
2359 int *available_snapshots;
2360 char buf[256];
2361
2362 bs = bdrv_snapshots();
2363 if (!bs) {
2364 monitor_printf(mon, "No available block device supports snapshots\n");
2365 return;
2366 }
2367
2368 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2369 if (nb_sns < 0) {
2370 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
2371 return;
2372 }
2373
2374 if (nb_sns == 0) {
2375 monitor_printf(mon, "There is no snapshot available.\n");
2376 return;
2377 }
2378
2379 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
2380 total = 0;
2381 for (i = 0; i < nb_sns; i++) {
2382 sn = &sn_tab[i];
2383 available = 1;
2384 bs1 = NULL;
2385
2386 while ((bs1 = bdrv_next(bs1))) {
2387 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2388 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2389 if (ret < 0) {
2390 available = 0;
2391 break;
2392 }
2393 }
2394 }
2395
2396 if (available) {
2397 available_snapshots[total] = i;
2398 total++;
2399 }
2400 }
2401
2402 if (total > 0) {
2403 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
2404 for (i = 0; i < total; i++) {
2405 sn = &sn_tab[available_snapshots[i]];
2406 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
2407 }
2408 } else {
2409 monitor_printf(mon, "There is no suitable snapshot available\n");
2410 }
2411
2412 g_free(sn_tab);
2413 g_free(available_snapshots);
2414
2415 }
2416
2417 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2418 {
2419 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
2420 memory_region_name(mr), dev);
2421 }
2422
2423 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2424 {
2425 /* Nothing do to while the implementation is in RAMBlock */
2426 }
2427
2428 void vmstate_register_ram_global(MemoryRegion *mr)
2429 {
2430 vmstate_register_ram(mr, NULL);
2431 }
2432
2433 /*
2434 page = zrun nzrun
2435 | zrun nzrun page
2436
2437 zrun = length
2438
2439 nzrun = length byte...
2440
2441 length = uleb128 encoded integer
2442 */
2443 int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
2444 uint8_t *dst, int dlen)
2445 {
2446 uint32_t zrun_len = 0, nzrun_len = 0;
2447 int d = 0, i = 0;
2448 long res, xor;
2449 uint8_t *nzrun_start = NULL;
2450
2451 g_assert(!(((uintptr_t)old_buf | (uintptr_t)new_buf | slen) %
2452 sizeof(long)));
2453
2454 while (i < slen) {
2455 /* overflow */
2456 if (d + 2 > dlen) {
2457 return -1;
2458 }
2459
2460 /* not aligned to sizeof(long) */
2461 res = (slen - i) % sizeof(long);
2462 while (res && old_buf[i] == new_buf[i]) {
2463 zrun_len++;
2464 i++;
2465 res--;
2466 }
2467
2468 /* word at a time for speed */
2469 if (!res) {
2470 while (i < slen &&
2471 (*(long *)(old_buf + i)) == (*(long *)(new_buf + i))) {
2472 i += sizeof(long);
2473 zrun_len += sizeof(long);
2474 }
2475
2476 /* go over the rest */
2477 while (i < slen && old_buf[i] == new_buf[i]) {
2478 zrun_len++;
2479 i++;
2480 }
2481 }
2482
2483 /* buffer unchanged */
2484 if (zrun_len == slen) {
2485 return 0;
2486 }
2487
2488 /* skip last zero run */
2489 if (i == slen) {
2490 return d;
2491 }
2492
2493 d += uleb128_encode_small(dst + d, zrun_len);
2494
2495 zrun_len = 0;
2496 nzrun_start = new_buf + i;
2497
2498 /* overflow */
2499 if (d + 2 > dlen) {
2500 return -1;
2501 }
2502 /* not aligned to sizeof(long) */
2503 res = (slen - i) % sizeof(long);
2504 while (res && old_buf[i] != new_buf[i]) {
2505 i++;
2506 nzrun_len++;
2507 res--;
2508 }
2509
2510 /* word at a time for speed, use of 32-bit long okay */
2511 if (!res) {
2512 /* truncation to 32-bit long okay */
2513 long mask = (long)0x0101010101010101ULL;
2514 while (i < slen) {
2515 xor = *(long *)(old_buf + i) ^ *(long *)(new_buf + i);
2516 if ((xor - mask) & ~xor & (mask << 7)) {
2517 /* found the end of an nzrun within the current long */
2518 while (old_buf[i] != new_buf[i]) {
2519 nzrun_len++;
2520 i++;
2521 }
2522 break;
2523 } else {
2524 i += sizeof(long);
2525 nzrun_len += sizeof(long);
2526 }
2527 }
2528 }
2529
2530 d += uleb128_encode_small(dst + d, nzrun_len);
2531 /* overflow */
2532 if (d + nzrun_len > dlen) {
2533 return -1;
2534 }
2535 memcpy(dst + d, nzrun_start, nzrun_len);
2536 d += nzrun_len;
2537 nzrun_len = 0;
2538 }
2539
2540 return d;
2541 }
2542
2543 int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen)
2544 {
2545 int i = 0, d = 0;
2546 int ret;
2547 uint32_t count = 0;
2548
2549 while (i < slen) {
2550
2551 /* zrun */
2552 if ((slen - i) < 2) {
2553 return -1;
2554 }
2555
2556 ret = uleb128_decode_small(src + i, &count);
2557 if (ret < 0 || (i && !count)) {
2558 return -1;
2559 }
2560 i += ret;
2561 d += count;
2562
2563 /* overflow */
2564 if (d > dlen) {
2565 return -1;
2566 }
2567
2568 /* nzrun */
2569 if ((slen - i) < 2) {
2570 return -1;
2571 }
2572
2573 ret = uleb128_decode_small(src + i, &count);
2574 if (ret < 0 || !count) {
2575 return -1;
2576 }
2577 i += ret;
2578
2579 /* overflow */
2580 if (d + count > dlen || i + count > slen) {
2581 return -1;
2582 }
2583
2584 memcpy(dst + d, src + i, count);
2585 d += count;
2586 i += count;
2587 }
2588
2589 return d;
2590 }