blob: 987c6c0cd0b65f239ddf7052985bba62f4ac7f70 [file] [log] [blame]
aliguoria672b462008-11-11 21:33:36 +00001/*
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 */
aliguoria672b462008-11-11 21:33:36 +000024#include <unistd.h>
25#include <fcntl.h>
aliguoria672b462008-11-11 21:33:36 +000026#include <time.h>
27#include <errno.h>
28#include <sys/time.h>
29#include <zlib.h>
30
Juan Quintela71e72a12009-07-27 16:12:56 +020031/* Needed early for CONFIG_BSD etc. */
blueswir1d40cdb12009-03-07 16:52:02 +000032#include "config-host.h"
33
aliguoria672b462008-11-11 21:33:36 +000034#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>
aliguoria672b462008-11-11 21:33:36 +000044#include <arpa/inet.h>
45#include <dirent.h>
46#include <netdb.h>
47#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020048#ifdef CONFIG_BSD
aliguoria672b462008-11-11 21:33:36 +000049#include <sys/stat.h>
Aurelien Jarnoa167ba52009-11-29 18:00:41 +010050#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
aliguoria672b462008-11-11 21:33:36 +000051#include <libutil.h>
52#else
53#include <util.h>
54#endif
aliguoria672b462008-11-11 21:33:36 +000055#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
aliguori49dc7682009-03-08 16:26:59 +000064#include <windows.h>
aliguoria672b462008-11-11 21:33:36 +000065#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
blueswir1511d2b12009-03-07 15:32:56 +000072#include "qemu-common.h"
73#include "hw/hw.h"
Alex Williamson7685ee62010-06-25 11:09:14 -060074#include "hw/qdev.h"
blueswir1511d2b12009-03-07 15:32:56 +000075#include "net.h"
76#include "monitor.h"
77#include "sysemu.h"
78#include "qemu-timer.h"
79#include "qemu-char.h"
blueswir1511d2b12009-03-07 15:32:56 +000080#include "audio/audio.h"
81#include "migration.h"
82#include "qemu_socket.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +000083#include "qemu-queue.h"
Paolo Bonzini2ff68d02011-09-12 16:21:44 +020084#include "qemu-timer.h"
Blue Swirl17a46632011-03-27 16:05:08 +000085#include "cpus.h"
Avi Kivityc5705a72011-12-20 15:59:12 +020086#include "memory.h"
Stefano Stabellinia7ae8352012-01-25 12:24:51 +000087#include "qmp-commands.h"
Juan Quintela517a13c2012-05-21 23:46:44 +020088#include "trace.h"
blueswir1511d2b12009-03-07 15:32:56 +000089
aliguoria672b462008-11-11 21:33:36 +000090#define SELF_ANNOUNCE_ROUNDS 5
aliguoria672b462008-11-11 21:33:36 +000091
Nolan18995b92009-10-15 16:53:55 -070092#ifndef ETH_P_RARP
Stefan Bergerf8778a72010-04-24 08:54:07 -040093#define ETH_P_RARP 0x8035
Nolan18995b92009-10-15 16:53:55 -070094#endif
95#define ARP_HTYPE_ETH 0x0001
96#define ARP_PTYPE_IP 0x0800
97#define ARP_OP_REQUEST_REV 0x3
98
99static int announce_self_create(uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +0000100 uint8_t *mac_addr)
101{
Nolan18995b92009-10-15 16:53:55 -0700102 /* Ethernet header. */
103 memset(buf, 0xff, 6); /* destination MAC addr */
104 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
105 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
aliguoria672b462008-11-11 21:33:36 +0000106
Nolan18995b92009-10-15 16:53:55 -0700107 /* RARP header. */
108 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
109 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
110 *(buf + 18) = 6; /* hardware addr length (ethernet) */
111 *(buf + 19) = 4; /* protocol addr length (IPv4) */
112 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
113 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
114 memset(buf + 28, 0x00, 4); /* source protocol addr */
115 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
116 memset(buf + 38, 0x00, 4); /* target protocol addr */
aliguoria672b462008-11-11 21:33:36 +0000117
Nolan18995b92009-10-15 16:53:55 -0700118 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
119 memset(buf + 42, 0x00, 18);
aliguoria672b462008-11-11 21:33:36 +0000120
Nolan18995b92009-10-15 16:53:55 -0700121 return 60; /* len (FCS will be added by hardware) */
aliguoria672b462008-11-11 21:33:36 +0000122}
123
Mark McLoughlinf401ca22009-11-25 18:49:32 +0000124static void qemu_announce_self_iter(NICState *nic, void *opaque)
125{
126 uint8_t buf[60];
127 int len;
128
129 len = announce_self_create(buf, nic->conf->macaddr.a);
130
131 qemu_send_packet_raw(&nic->nc, buf, len);
132}
133
134
Gleb Natapoved8b3302009-05-21 17:17:44 +0300135static void qemu_announce_self_once(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000136{
Gleb Natapoved8b3302009-05-21 17:17:44 +0300137 static int count = SELF_ANNOUNCE_ROUNDS;
138 QEMUTimer *timer = *(QEMUTimer **)opaque;
aliguoria672b462008-11-11 21:33:36 +0000139
Mark McLoughlinf401ca22009-11-25 18:49:32 +0000140 qemu_foreach_nic(qemu_announce_self_iter, NULL);
141
Nolan18995b92009-10-15 16:53:55 -0700142 if (--count) {
143 /* delay 50ms, 150ms, 250ms, ... */
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100144 qemu_mod_timer(timer, qemu_get_clock_ms(rt_clock) +
Nolan18995b92009-10-15 16:53:55 -0700145 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300146 } else {
147 qemu_del_timer(timer);
148 qemu_free_timer(timer);
149 }
150}
151
152void qemu_announce_self(void)
153{
154 static QEMUTimer *timer;
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100155 timer = qemu_new_timer_ms(rt_clock, qemu_announce_self_once, &timer);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300156 qemu_announce_self_once(&timer);
aliguoria672b462008-11-11 21:33:36 +0000157}
158
159/***********************************************************/
160/* savevm/loadvm support */
161
162#define IO_BUF_SIZE 32768
163
164struct QEMUFile {
165 QEMUFilePutBufferFunc *put_buffer;
166 QEMUFileGetBufferFunc *get_buffer;
167 QEMUFileCloseFunc *close;
168 QEMUFileRateLimit *rate_limit;
Glauber Costa19629532009-05-20 18:26:57 -0400169 QEMUFileSetRateLimit *set_rate_limit;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200170 QEMUFileGetRateLimit *get_rate_limit;
aliguoria672b462008-11-11 21:33:36 +0000171 void *opaque;
172 int is_write;
173
174 int64_t buf_offset; /* start of buffer when writing, end of buffer
175 when reading */
176 int buf_index;
177 int buf_size; /* 0 when writing */
178 uint8_t buf[IO_BUF_SIZE];
179
Juan Quintela3961b4d2011-10-05 01:05:21 +0200180 int last_error;
aliguoria672b462008-11-11 21:33:36 +0000181};
182
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200183typedef struct QEMUFileStdio
aliguoria672b462008-11-11 21:33:36 +0000184{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200185 FILE *stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000186 QEMUFile *file;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200187} QEMUFileStdio;
aliguoria672b462008-11-11 21:33:36 +0000188
189typedef struct QEMUFileSocket
190{
191 int fd;
192 QEMUFile *file;
193} QEMUFileSocket;
194
195static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
196{
197 QEMUFileSocket *s = opaque;
198 ssize_t len;
199
200 do {
Blue Swirl00aa0042011-07-23 20:04:29 +0000201 len = qemu_recv(s->fd, buf, size, 0);
aliguoria672b462008-11-11 21:33:36 +0000202 } while (len == -1 && socket_error() == EINTR);
203
204 if (len == -1)
205 len = -socket_error();
206
207 return len;
208}
209
210static int socket_close(void *opaque)
211{
212 QEMUFileSocket *s = opaque;
Anthony Liguori7267c092011-08-20 22:09:37 -0500213 g_free(s);
aliguoria672b462008-11-11 21:33:36 +0000214 return 0;
215}
216
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200217static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000218{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200219 QEMUFileStdio *s = opaque;
220 return fwrite(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000221}
222
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200223static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000224{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200225 QEMUFileStdio *s = opaque;
226 FILE *fp = s->stdio_file;
Uri Lublin8a67ec42009-06-08 19:27:21 +0300227 int bytes;
228
229 do {
230 clearerr(fp);
231 bytes = fread(buf, 1, size, fp);
232 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
233 return bytes;
aliguoria672b462008-11-11 21:33:36 +0000234}
235
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200236static int stdio_pclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000237{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200238 QEMUFileStdio *s = opaque;
Anthony Liguori41ef56e2010-06-02 14:55:25 -0500239 int ret;
240 ret = pclose(s->stdio_file);
Eduardo Habkost26f1af02011-11-10 10:41:44 -0200241 if (ret == -1) {
242 ret = -errno;
243 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500244 g_free(s);
Anthony Liguori41ef56e2010-06-02 14:55:25 -0500245 return ret;
aliguoria672b462008-11-11 21:33:36 +0000246}
247
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200248static int stdio_fclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000249{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200250 QEMUFileStdio *s = opaque;
Eduardo Habkost0e286702011-11-10 10:41:45 -0200251 int ret = 0;
252 if (fclose(s->stdio_file) == EOF) {
253 ret = -errno;
254 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500255 g_free(s);
Eduardo Habkost0e286702011-11-10 10:41:45 -0200256 return ret;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200257}
aliguoria672b462008-11-11 21:33:36 +0000258
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200259QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
260{
261 QEMUFileStdio *s;
262
263 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
aliguoria672b462008-11-11 21:33:36 +0000264 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
265 return NULL;
266 }
267
Anthony Liguori7267c092011-08-20 22:09:37 -0500268 s = g_malloc0(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000269
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200270 s->stdio_file = stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000271
272 if(mode[0] == 'r') {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200273 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_pclose,
274 NULL, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000275 } else {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200276 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_pclose,
277 NULL, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000278 }
aliguoria672b462008-11-11 21:33:36 +0000279 return s->file;
280}
281
282QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
283{
284 FILE *popen_file;
285
286 popen_file = popen(command, mode);
287 if(popen_file == NULL) {
288 return NULL;
289 }
290
291 return qemu_popen(popen_file, mode);
292}
293
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200294int qemu_stdio_fd(QEMUFile *f)
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200295{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200296 QEMUFileStdio *p;
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200297 int fd;
298
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200299 p = (QEMUFileStdio *)f->opaque;
300 fd = fileno(p->stdio_file);
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200301
302 return fd;
303}
304
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200305QEMUFile *qemu_fdopen(int fd, const char *mode)
306{
307 QEMUFileStdio *s;
308
309 if (mode == NULL ||
310 (mode[0] != 'r' && mode[0] != 'w') ||
311 mode[1] != 'b' || mode[2] != 0) {
312 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
313 return NULL;
314 }
315
Anthony Liguori7267c092011-08-20 22:09:37 -0500316 s = g_malloc0(sizeof(QEMUFileStdio));
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200317 s->stdio_file = fdopen(fd, mode);
318 if (!s->stdio_file)
319 goto fail;
320
321 if(mode[0] == 'r') {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200322 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_fclose,
323 NULL, NULL, NULL);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200324 } else {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200325 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_fclose,
326 NULL, NULL, NULL);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200327 }
328 return s->file;
329
330fail:
Anthony Liguori7267c092011-08-20 22:09:37 -0500331 g_free(s);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200332 return NULL;
333}
334
aliguoria672b462008-11-11 21:33:36 +0000335QEMUFile *qemu_fopen_socket(int fd)
336{
Anthony Liguori7267c092011-08-20 22:09:37 -0500337 QEMUFileSocket *s = g_malloc0(sizeof(QEMUFileSocket));
aliguoria672b462008-11-11 21:33:36 +0000338
aliguoria672b462008-11-11 21:33:36 +0000339 s->fd = fd;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200340 s->file = qemu_fopen_ops(s, NULL, socket_get_buffer, socket_close,
341 NULL, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000342 return s->file;
343}
344
aliguoria672b462008-11-11 21:33:36 +0000345static int file_put_buffer(void *opaque, const uint8_t *buf,
346 int64_t pos, int size)
347{
348 QEMUFileStdio *s = opaque;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200349 fseek(s->stdio_file, pos, SEEK_SET);
Kirill A. Shutemov5fdb3aa2009-12-25 18:19:19 +0000350 return fwrite(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000351}
352
353static int file_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
354{
355 QEMUFileStdio *s = opaque;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200356 fseek(s->stdio_file, pos, SEEK_SET);
357 return fread(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000358}
359
360QEMUFile *qemu_fopen(const char *filename, const char *mode)
361{
362 QEMUFileStdio *s;
363
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200364 if (mode == NULL ||
365 (mode[0] != 'r' && mode[0] != 'w') ||
366 mode[1] != 'b' || mode[2] != 0) {
Blue Swirl090414a2010-03-13 11:36:09 +0000367 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200368 return NULL;
369 }
370
Anthony Liguori7267c092011-08-20 22:09:37 -0500371 s = g_malloc0(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000372
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200373 s->stdio_file = fopen(filename, mode);
374 if (!s->stdio_file)
aliguoria672b462008-11-11 21:33:36 +0000375 goto fail;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200376
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200377 if(mode[0] == 'w') {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200378 s->file = qemu_fopen_ops(s, file_put_buffer, NULL, stdio_fclose,
379 NULL, NULL, NULL);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200380 } else {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200381 s->file = qemu_fopen_ops(s, NULL, file_get_buffer, stdio_fclose,
382 NULL, NULL, NULL);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200383 }
384 return s->file;
aliguoria672b462008-11-11 21:33:36 +0000385fail:
Anthony Liguori7267c092011-08-20 22:09:37 -0500386 g_free(s);
aliguoria672b462008-11-11 21:33:36 +0000387 return NULL;
388}
389
aliguori178e08a2009-04-05 19:10:55 +0000390static int block_put_buffer(void *opaque, const uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +0000391 int64_t pos, int size)
392{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200393 bdrv_save_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000394 return size;
395}
396
aliguori178e08a2009-04-05 19:10:55 +0000397static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000398{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200399 return bdrv_load_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000400}
401
402static int bdrv_fclose(void *opaque)
403{
Paolo Bonziniad492c92012-06-06 00:04:50 +0200404 return bdrv_flush(opaque);
aliguoria672b462008-11-11 21:33:36 +0000405}
406
Christoph Hellwig45566e92009-07-10 23:11:57 +0200407static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
aliguoria672b462008-11-11 21:33:36 +0000408{
aliguoria672b462008-11-11 21:33:36 +0000409 if (is_writable)
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200410 return qemu_fopen_ops(bs, block_put_buffer, NULL, bdrv_fclose,
411 NULL, NULL, NULL);
412 return qemu_fopen_ops(bs, NULL, block_get_buffer, bdrv_fclose, NULL, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000413}
414
415QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
416 QEMUFileGetBufferFunc *get_buffer,
417 QEMUFileCloseFunc *close,
Glauber Costa19629532009-05-20 18:26:57 -0400418 QEMUFileRateLimit *rate_limit,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200419 QEMUFileSetRateLimit *set_rate_limit,
420 QEMUFileGetRateLimit *get_rate_limit)
aliguoria672b462008-11-11 21:33:36 +0000421{
422 QEMUFile *f;
423
Anthony Liguori7267c092011-08-20 22:09:37 -0500424 f = g_malloc0(sizeof(QEMUFile));
aliguoria672b462008-11-11 21:33:36 +0000425
426 f->opaque = opaque;
427 f->put_buffer = put_buffer;
428 f->get_buffer = get_buffer;
429 f->close = close;
430 f->rate_limit = rate_limit;
Glauber Costa19629532009-05-20 18:26:57 -0400431 f->set_rate_limit = set_rate_limit;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200432 f->get_rate_limit = get_rate_limit;
aliguoria672b462008-11-11 21:33:36 +0000433 f->is_write = 0;
434
435 return f;
436}
437
Juan Quintela624b9cc2011-10-05 01:02:52 +0200438int qemu_file_get_error(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000439{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200440 return f->last_error;
aliguoria672b462008-11-11 21:33:36 +0000441}
442
Juan Quinteladcd1d222011-09-21 23:01:54 +0200443void qemu_file_set_error(QEMUFile *f, int ret)
aliguori4dabe242009-04-05 19:30:51 +0000444{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200445 f->last_error = ret;
aliguori4dabe242009-04-05 19:30:51 +0000446}
447
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200448/** Sets last_error conditionally
449 *
450 * Sets last_error only if ret is negative _and_ no error
451 * was set before.
452 */
453static void qemu_file_set_if_error(QEMUFile *f, int ret)
454{
455 if (ret < 0 && !f->last_error) {
456 qemu_file_set_error(f, ret);
457 }
458}
459
460/** Flushes QEMUFile buffer
461 *
462 * In case of error, last_error is set.
463 */
aliguoria672b462008-11-11 21:33:36 +0000464void qemu_fflush(QEMUFile *f)
465{
466 if (!f->put_buffer)
467 return;
468
469 if (f->is_write && f->buf_index > 0) {
470 int len;
471
472 len = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
473 if (len > 0)
474 f->buf_offset += f->buf_index;
475 else
Eduardo Habkostc29110d2011-11-10 10:41:39 -0200476 qemu_file_set_error(f, -EINVAL);
aliguoria672b462008-11-11 21:33:36 +0000477 f->buf_index = 0;
478 }
479}
480
481static void qemu_fill_buffer(QEMUFile *f)
482{
483 int len;
Juan Quintela0046c452011-09-30 19:28:45 +0200484 int pending;
aliguoria672b462008-11-11 21:33:36 +0000485
486 if (!f->get_buffer)
487 return;
488
489 if (f->is_write)
490 abort();
491
Juan Quintela0046c452011-09-30 19:28:45 +0200492 pending = f->buf_size - f->buf_index;
493 if (pending > 0) {
494 memmove(f->buf, f->buf + f->buf_index, pending);
495 }
496 f->buf_index = 0;
497 f->buf_size = pending;
498
499 len = f->get_buffer(f->opaque, f->buf + pending, f->buf_offset,
500 IO_BUF_SIZE - pending);
aliguoria672b462008-11-11 21:33:36 +0000501 if (len > 0) {
Juan Quintela0046c452011-09-30 19:28:45 +0200502 f->buf_size += len;
aliguoria672b462008-11-11 21:33:36 +0000503 f->buf_offset += len;
Juan Quintelafa39a302011-10-25 19:18:58 +0200504 } else if (len == 0) {
505 f->last_error = -EIO;
aliguoria672b462008-11-11 21:33:36 +0000506 } else if (len != -EAGAIN)
Eduardo Habkostc29110d2011-11-10 10:41:39 -0200507 qemu_file_set_error(f, len);
aliguoria672b462008-11-11 21:33:36 +0000508}
509
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200510/** Calls close function and set last_error if needed
511 *
512 * Internal function. qemu_fflush() must be called before this.
513 *
514 * Returns f->close() return value, or 0 if close function is not set.
515 */
516static int qemu_close(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000517{
518 int ret = 0;
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200519 if (f->close) {
aliguoria672b462008-11-11 21:33:36 +0000520 ret = f->close(f->opaque);
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200521 qemu_file_set_if_error(f, ret);
522 }
523 return ret;
524}
525
526/** Closes the file
527 *
528 * Returns negative error value if any error happened on previous operations or
529 * while closing the file. Returns 0 or positive number on success.
530 *
531 * The meaning of return value on success depends on the specific backend
532 * being used.
533 */
534int qemu_fclose(QEMUFile *f)
535{
536 int ret;
537 qemu_fflush(f);
538 ret = qemu_close(f);
539 /* If any error was spotted before closing, we should report it
540 * instead of the close() return value.
541 */
542 if (f->last_error) {
543 ret = f->last_error;
544 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500545 g_free(f);
aliguoria672b462008-11-11 21:33:36 +0000546 return ret;
547}
548
549void qemu_file_put_notify(QEMUFile *f)
550{
551 f->put_buffer(f->opaque, NULL, 0, 0);
552}
553
554void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
555{
556 int l;
557
Juan Quintela3961b4d2011-10-05 01:05:21 +0200558 if (!f->last_error && f->is_write == 0 && f->buf_index > 0) {
aliguoria672b462008-11-11 21:33:36 +0000559 fprintf(stderr,
560 "Attempted to write to buffer while read buffer is not empty\n");
561 abort();
562 }
563
Juan Quintela3961b4d2011-10-05 01:05:21 +0200564 while (!f->last_error && size > 0) {
aliguoria672b462008-11-11 21:33:36 +0000565 l = IO_BUF_SIZE - f->buf_index;
566 if (l > size)
567 l = size;
568 memcpy(f->buf + f->buf_index, buf, l);
569 f->is_write = 1;
570 f->buf_index += l;
571 buf += l;
572 size -= l;
573 if (f->buf_index >= IO_BUF_SIZE)
574 qemu_fflush(f);
575 }
576}
577
578void qemu_put_byte(QEMUFile *f, int v)
579{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200580 if (!f->last_error && f->is_write == 0 && f->buf_index > 0) {
aliguoria672b462008-11-11 21:33:36 +0000581 fprintf(stderr,
582 "Attempted to write to buffer while read buffer is not empty\n");
583 abort();
584 }
585
586 f->buf[f->buf_index++] = v;
587 f->is_write = 1;
588 if (f->buf_index >= IO_BUF_SIZE)
589 qemu_fflush(f);
590}
591
Juan Quintelac6380722011-10-04 15:28:31 +0200592static void qemu_file_skip(QEMUFile *f, int size)
aliguoria672b462008-11-11 21:33:36 +0000593{
Juan Quintelac6380722011-10-04 15:28:31 +0200594 if (f->buf_index + size <= f->buf_size) {
595 f->buf_index += size;
aliguoria672b462008-11-11 21:33:36 +0000596 }
aliguoria672b462008-11-11 21:33:36 +0000597}
598
Juan Quintelac6380722011-10-04 15:28:31 +0200599static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
Juan Quintela811814b2010-07-26 21:38:43 +0200600{
Juan Quintelac6380722011-10-04 15:28:31 +0200601 int pending;
602 int index;
Juan Quintela811814b2010-07-26 21:38:43 +0200603
Juan Quintelab9ce1452011-10-04 13:55:32 +0200604 if (f->is_write) {
Juan Quintela811814b2010-07-26 21:38:43 +0200605 abort();
Juan Quintela811814b2010-07-26 21:38:43 +0200606 }
Juan Quintela811814b2010-07-26 21:38:43 +0200607
Juan Quintelac6380722011-10-04 15:28:31 +0200608 index = f->buf_index + offset;
609 pending = f->buf_size - index;
610 if (pending < size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200611 qemu_fill_buffer(f);
Juan Quintelac6380722011-10-04 15:28:31 +0200612 index = f->buf_index + offset;
613 pending = f->buf_size - index;
614 }
615
616 if (pending <= 0) {
617 return 0;
618 }
619 if (size > pending) {
620 size = pending;
621 }
622
623 memcpy(buf, f->buf + index, size);
624 return size;
625}
626
627int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
628{
629 int pending = size;
630 int done = 0;
631
632 while (pending > 0) {
633 int res;
634
635 res = qemu_peek_buffer(f, buf, pending, 0);
636 if (res == 0) {
637 return done;
638 }
639 qemu_file_skip(f, res);
640 buf += res;
641 pending -= res;
642 done += res;
643 }
644 return done;
645}
646
647static int qemu_peek_byte(QEMUFile *f, int offset)
648{
649 int index = f->buf_index + offset;
650
651 if (f->is_write) {
652 abort();
653 }
654
655 if (index >= f->buf_size) {
656 qemu_fill_buffer(f);
657 index = f->buf_index + offset;
658 if (index >= f->buf_size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200659 return 0;
Juan Quintelab9ce1452011-10-04 13:55:32 +0200660 }
Juan Quintela811814b2010-07-26 21:38:43 +0200661 }
Juan Quintelac6380722011-10-04 15:28:31 +0200662 return f->buf[index];
Juan Quintela811814b2010-07-26 21:38:43 +0200663}
664
aliguoria672b462008-11-11 21:33:36 +0000665int qemu_get_byte(QEMUFile *f)
666{
Juan Quintela65f3bb32011-10-06 14:29:32 +0200667 int result;
aliguoria672b462008-11-11 21:33:36 +0000668
Juan Quintelac6380722011-10-04 15:28:31 +0200669 result = qemu_peek_byte(f, 0);
670 qemu_file_skip(f, 1);
Juan Quintela65f3bb32011-10-06 14:29:32 +0200671 return result;
aliguoria672b462008-11-11 21:33:36 +0000672}
673
674int64_t qemu_ftell(QEMUFile *f)
675{
676 return f->buf_offset - f->buf_size + f->buf_index;
677}
678
679int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
680{
681 if (whence == SEEK_SET) {
682 /* nothing to do */
683 } else if (whence == SEEK_CUR) {
684 pos += qemu_ftell(f);
685 } else {
686 /* SEEK_END not supported */
687 return -1;
688 }
689 if (f->put_buffer) {
690 qemu_fflush(f);
691 f->buf_offset = pos;
692 } else {
693 f->buf_offset = pos;
694 f->buf_index = 0;
695 f->buf_size = 0;
696 }
697 return pos;
698}
699
700int qemu_file_rate_limit(QEMUFile *f)
701{
702 if (f->rate_limit)
703 return f->rate_limit(f->opaque);
704
705 return 0;
706}
707
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200708int64_t qemu_file_get_rate_limit(QEMUFile *f)
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200709{
710 if (f->get_rate_limit)
711 return f->get_rate_limit(f->opaque);
712
713 return 0;
714}
715
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200716int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
Glauber Costa19629532009-05-20 18:26:57 -0400717{
Glauber Costa0bb05ea2009-07-14 18:26:51 -0400718 /* any failed or completed migration keeps its state to allow probing of
719 * migration data, but has no associated file anymore */
720 if (f && f->set_rate_limit)
Glauber Costa19629532009-05-20 18:26:57 -0400721 return f->set_rate_limit(f->opaque, new_rate);
722
723 return 0;
724}
725
aliguoria672b462008-11-11 21:33:36 +0000726void qemu_put_be16(QEMUFile *f, unsigned int v)
727{
728 qemu_put_byte(f, v >> 8);
729 qemu_put_byte(f, v);
730}
731
732void qemu_put_be32(QEMUFile *f, unsigned int v)
733{
734 qemu_put_byte(f, v >> 24);
735 qemu_put_byte(f, v >> 16);
736 qemu_put_byte(f, v >> 8);
737 qemu_put_byte(f, v);
738}
739
740void qemu_put_be64(QEMUFile *f, uint64_t v)
741{
742 qemu_put_be32(f, v >> 32);
743 qemu_put_be32(f, v);
744}
745
746unsigned int qemu_get_be16(QEMUFile *f)
747{
748 unsigned int v;
749 v = qemu_get_byte(f) << 8;
750 v |= qemu_get_byte(f);
751 return v;
752}
753
754unsigned int qemu_get_be32(QEMUFile *f)
755{
756 unsigned int v;
757 v = qemu_get_byte(f) << 24;
758 v |= qemu_get_byte(f) << 16;
759 v |= qemu_get_byte(f) << 8;
760 v |= qemu_get_byte(f);
761 return v;
762}
763
764uint64_t qemu_get_be64(QEMUFile *f)
765{
766 uint64_t v;
767 v = (uint64_t)qemu_get_be32(f) << 32;
768 v |= qemu_get_be32(f);
769 return v;
770}
771
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200772
773/* timer */
774
775void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
776{
777 uint64_t expire_time;
778
779 expire_time = qemu_timer_expire_time_ns(ts);
780 qemu_put_be64(f, expire_time);
781}
782
783void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
784{
785 uint64_t expire_time;
786
787 expire_time = qemu_get_be64(f);
788 if (expire_time != -1) {
789 qemu_mod_timer_ns(ts, expire_time);
790 } else {
791 qemu_del_timer(ts);
792 }
793}
794
795
Gerd Hoffmanncdae5cf2010-11-01 15:51:54 +0100796/* bool */
797
798static int get_bool(QEMUFile *f, void *pv, size_t size)
799{
800 bool *v = pv;
801 *v = qemu_get_byte(f);
802 return 0;
803}
804
805static void put_bool(QEMUFile *f, void *pv, size_t size)
806{
807 bool *v = pv;
808 qemu_put_byte(f, *v);
809}
810
811const VMStateInfo vmstate_info_bool = {
812 .name = "bool",
813 .get = get_bool,
814 .put = put_bool,
815};
816
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200817/* 8 bit int */
818
819static int get_int8(QEMUFile *f, void *pv, size_t size)
820{
821 int8_t *v = pv;
822 qemu_get_s8s(f, v);
823 return 0;
824}
825
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200826static void put_int8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200827{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200828 int8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200829 qemu_put_s8s(f, v);
830}
831
832const VMStateInfo vmstate_info_int8 = {
833 .name = "int8",
834 .get = get_int8,
835 .put = put_int8,
836};
837
838/* 16 bit int */
839
840static int get_int16(QEMUFile *f, void *pv, size_t size)
841{
842 int16_t *v = pv;
843 qemu_get_sbe16s(f, v);
844 return 0;
845}
846
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200847static void put_int16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200848{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200849 int16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200850 qemu_put_sbe16s(f, v);
851}
852
853const VMStateInfo vmstate_info_int16 = {
854 .name = "int16",
855 .get = get_int16,
856 .put = put_int16,
857};
858
859/* 32 bit int */
860
861static int get_int32(QEMUFile *f, void *pv, size_t size)
862{
863 int32_t *v = pv;
864 qemu_get_sbe32s(f, v);
865 return 0;
866}
867
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200868static void put_int32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200869{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200870 int32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200871 qemu_put_sbe32s(f, v);
872}
873
874const VMStateInfo vmstate_info_int32 = {
875 .name = "int32",
876 .get = get_int32,
877 .put = put_int32,
878};
879
Juan Quintela82501662009-08-20 19:42:32 +0200880/* 32 bit int. See that the received value is the same than the one
881 in the field */
882
883static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
884{
885 int32_t *v = pv;
886 int32_t v2;
887 qemu_get_sbe32s(f, &v2);
888
889 if (*v == v2)
890 return 0;
891 return -EINVAL;
892}
893
894const VMStateInfo vmstate_info_int32_equal = {
895 .name = "int32 equal",
896 .get = get_int32_equal,
897 .put = put_int32,
898};
899
Juan Quintela0a031e02009-08-20 19:42:37 +0200900/* 32 bit int. See that the received value is the less or the same
901 than the one in the field */
902
903static int get_int32_le(QEMUFile *f, void *pv, size_t size)
904{
905 int32_t *old = pv;
906 int32_t new;
907 qemu_get_sbe32s(f, &new);
908
909 if (*old <= new)
910 return 0;
911 return -EINVAL;
912}
913
914const VMStateInfo vmstate_info_int32_le = {
915 .name = "int32 equal",
916 .get = get_int32_le,
917 .put = put_int32,
918};
919
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200920/* 64 bit int */
921
922static int get_int64(QEMUFile *f, void *pv, size_t size)
923{
924 int64_t *v = pv;
925 qemu_get_sbe64s(f, v);
926 return 0;
927}
928
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200929static void put_int64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200930{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200931 int64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200932 qemu_put_sbe64s(f, v);
933}
934
935const VMStateInfo vmstate_info_int64 = {
936 .name = "int64",
937 .get = get_int64,
938 .put = put_int64,
939};
940
941/* 8 bit unsigned int */
942
943static int get_uint8(QEMUFile *f, void *pv, size_t size)
944{
945 uint8_t *v = pv;
946 qemu_get_8s(f, v);
947 return 0;
948}
949
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200950static void put_uint8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200951{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200952 uint8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200953 qemu_put_8s(f, v);
954}
955
956const VMStateInfo vmstate_info_uint8 = {
957 .name = "uint8",
958 .get = get_uint8,
959 .put = put_uint8,
960};
961
962/* 16 bit unsigned int */
963
964static int get_uint16(QEMUFile *f, void *pv, size_t size)
965{
966 uint16_t *v = pv;
967 qemu_get_be16s(f, v);
968 return 0;
969}
970
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200971static void put_uint16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200972{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200973 uint16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200974 qemu_put_be16s(f, v);
975}
976
977const VMStateInfo vmstate_info_uint16 = {
978 .name = "uint16",
979 .get = get_uint16,
980 .put = put_uint16,
981};
982
983/* 32 bit unsigned int */
984
985static int get_uint32(QEMUFile *f, void *pv, size_t size)
986{
987 uint32_t *v = pv;
988 qemu_get_be32s(f, v);
989 return 0;
990}
991
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200992static void put_uint32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200993{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200994 uint32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200995 qemu_put_be32s(f, v);
996}
997
998const VMStateInfo vmstate_info_uint32 = {
999 .name = "uint32",
1000 .get = get_uint32,
1001 .put = put_uint32,
1002};
1003
Juan Quintela9122a8f2011-03-10 12:33:48 +01001004/* 32 bit uint. See that the received value is the same than the one
1005 in the field */
1006
1007static int get_uint32_equal(QEMUFile *f, void *pv, size_t size)
1008{
1009 uint32_t *v = pv;
1010 uint32_t v2;
1011 qemu_get_be32s(f, &v2);
1012
1013 if (*v == v2) {
1014 return 0;
1015 }
1016 return -EINVAL;
1017}
1018
1019const VMStateInfo vmstate_info_uint32_equal = {
1020 .name = "uint32 equal",
1021 .get = get_uint32_equal,
1022 .put = put_uint32,
1023};
1024
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001025/* 64 bit unsigned int */
1026
1027static int get_uint64(QEMUFile *f, void *pv, size_t size)
1028{
1029 uint64_t *v = pv;
1030 qemu_get_be64s(f, v);
1031 return 0;
1032}
1033
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001034static void put_uint64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001035{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001036 uint64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001037 qemu_put_be64s(f, v);
1038}
1039
1040const VMStateInfo vmstate_info_uint64 = {
1041 .name = "uint64",
1042 .get = get_uint64,
1043 .put = put_uint64,
1044};
1045
Juan Quintela80cd83e2009-09-10 03:04:36 +02001046/* 8 bit int. See that the received value is the same than the one
1047 in the field */
1048
1049static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
1050{
1051 uint8_t *v = pv;
1052 uint8_t v2;
1053 qemu_get_8s(f, &v2);
1054
1055 if (*v == v2)
1056 return 0;
1057 return -EINVAL;
1058}
1059
1060const VMStateInfo vmstate_info_uint8_equal = {
Juan Quintelaaa1cce62009-10-15 19:16:06 +02001061 .name = "uint8 equal",
Juan Quintela80cd83e2009-09-10 03:04:36 +02001062 .get = get_uint8_equal,
1063 .put = put_uint8,
1064};
1065
Juan Quinteladc3b83a2009-10-15 23:16:13 +02001066/* 16 bit unsigned int int. See that the received value is the same than the one
1067 in the field */
1068
1069static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
1070{
1071 uint16_t *v = pv;
1072 uint16_t v2;
1073 qemu_get_be16s(f, &v2);
1074
1075 if (*v == v2)
1076 return 0;
1077 return -EINVAL;
1078}
1079
1080const VMStateInfo vmstate_info_uint16_equal = {
1081 .name = "uint16 equal",
1082 .get = get_uint16_equal,
1083 .put = put_uint16,
1084};
1085
Juan Quinteladde04632009-08-20 19:42:26 +02001086/* timers */
1087
1088static int get_timer(QEMUFile *f, void *pv, size_t size)
1089{
1090 QEMUTimer *v = pv;
1091 qemu_get_timer(f, v);
1092 return 0;
1093}
1094
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001095static void put_timer(QEMUFile *f, void *pv, size_t size)
Juan Quinteladde04632009-08-20 19:42:26 +02001096{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001097 QEMUTimer *v = pv;
Juan Quinteladde04632009-08-20 19:42:26 +02001098 qemu_put_timer(f, v);
1099}
1100
1101const VMStateInfo vmstate_info_timer = {
1102 .name = "timer",
1103 .get = get_timer,
1104 .put = put_timer,
1105};
1106
Juan Quintela6f67c502009-08-20 19:42:35 +02001107/* uint8_t buffers */
1108
1109static int get_buffer(QEMUFile *f, void *pv, size_t size)
1110{
1111 uint8_t *v = pv;
1112 qemu_get_buffer(f, v, size);
1113 return 0;
1114}
1115
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001116static void put_buffer(QEMUFile *f, void *pv, size_t size)
Juan Quintela6f67c502009-08-20 19:42:35 +02001117{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001118 uint8_t *v = pv;
Juan Quintela6f67c502009-08-20 19:42:35 +02001119 qemu_put_buffer(f, v, size);
1120}
1121
1122const VMStateInfo vmstate_info_buffer = {
1123 .name = "buffer",
1124 .get = get_buffer,
1125 .put = put_buffer,
1126};
1127
Juan Quintela76507c72009-10-19 15:46:28 +02001128/* unused buffers: space that was used for some fields that are
Stefan Weil61cc8702011-04-13 22:45:22 +02001129 not useful anymore */
Juan Quintela76507c72009-10-19 15:46:28 +02001130
1131static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
1132{
Jan Kiszka21174c32009-12-02 12:36:35 +01001133 uint8_t buf[1024];
1134 int block_len;
1135
1136 while (size > 0) {
1137 block_len = MIN(sizeof(buf), size);
1138 size -= block_len;
1139 qemu_get_buffer(f, buf, block_len);
1140 }
1141 return 0;
Juan Quintela76507c72009-10-19 15:46:28 +02001142}
1143
1144static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
1145{
Jan Kiszka21174c32009-12-02 12:36:35 +01001146 static const uint8_t buf[1024];
1147 int block_len;
1148
1149 while (size > 0) {
1150 block_len = MIN(sizeof(buf), size);
1151 size -= block_len;
1152 qemu_put_buffer(f, buf, block_len);
1153 }
Juan Quintela76507c72009-10-19 15:46:28 +02001154}
1155
1156const VMStateInfo vmstate_info_unused_buffer = {
1157 .name = "unused_buffer",
1158 .get = get_unused_buffer,
1159 .put = put_unused_buffer,
1160};
1161
Alex Williamson7685ee62010-06-25 11:09:14 -06001162typedef struct CompatEntry {
1163 char idstr[256];
1164 int instance_id;
1165} CompatEntry;
1166
aliguoria672b462008-11-11 21:33:36 +00001167typedef struct SaveStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001168 QTAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001169 char idstr[256];
1170 int instance_id;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001171 int alias_id;
aliguoria672b462008-11-11 21:33:36 +00001172 int version_id;
1173 int section_id;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001174 SaveSetParamsHandler *set_params;
aliguoria672b462008-11-11 21:33:36 +00001175 SaveLiveStateHandler *save_live_state;
1176 SaveStateHandler *save_state;
1177 LoadStateHandler *load_state;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001178 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +00001179 void *opaque;
Alex Williamson7685ee62010-06-25 11:09:14 -06001180 CompatEntry *compat;
Cam Macdonell24312962010-07-26 18:11:00 -06001181 int no_migrate;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001182 int is_ram;
aliguoria672b462008-11-11 21:33:36 +00001183} SaveStateEntry;
1184
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001185
Blue Swirl72cf2d42009-09-12 07:36:22 +00001186static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1187 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001188static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +00001189
Juan Quintela8718e992009-09-01 02:12:31 +02001190static int calculate_new_instance_id(const char *idstr)
1191{
1192 SaveStateEntry *se;
1193 int instance_id = 0;
1194
Blue Swirl72cf2d42009-09-12 07:36:22 +00001195 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +02001196 if (strcmp(idstr, se->idstr) == 0
1197 && instance_id <= se->instance_id) {
1198 instance_id = se->instance_id + 1;
1199 }
1200 }
1201 return instance_id;
1202}
1203
Alex Williamson7685ee62010-06-25 11:09:14 -06001204static int calculate_compat_instance_id(const char *idstr)
1205{
1206 SaveStateEntry *se;
1207 int instance_id = 0;
1208
1209 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1210 if (!se->compat)
1211 continue;
1212
1213 if (strcmp(idstr, se->compat->idstr) == 0
1214 && instance_id <= se->compat->instance_id) {
1215 instance_id = se->compat->instance_id + 1;
1216 }
1217 }
1218 return instance_id;
1219}
1220
aliguoria672b462008-11-11 21:33:36 +00001221/* TODO: Individual devices generally have very little idea about the rest
1222 of the system, so instance_id should be removed/replaced.
1223 Meanwhile pass -1 as instance_id if you do not already have a clearly
1224 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -06001225int register_savevm_live(DeviceState *dev,
1226 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001227 int instance_id,
1228 int version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001229 SaveSetParamsHandler *set_params,
aliguoria672b462008-11-11 21:33:36 +00001230 SaveLiveStateHandler *save_live_state,
1231 SaveStateHandler *save_state,
1232 LoadStateHandler *load_state,
1233 void *opaque)
1234{
Juan Quintela8718e992009-09-01 02:12:31 +02001235 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +00001236
Anthony Liguori7267c092011-08-20 22:09:37 -05001237 se = g_malloc0(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +00001238 se->version_id = version_id;
1239 se->section_id = global_section_id++;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001240 se->set_params = set_params;
aliguoria672b462008-11-11 21:33:36 +00001241 se->save_live_state = save_live_state;
1242 se->save_state = save_state;
1243 se->load_state = load_state;
1244 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001245 se->vmsd = NULL;
Cam Macdonell24312962010-07-26 18:11:00 -06001246 se->no_migrate = 0;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001247 /* if this is a live_savem then set is_ram */
1248 if (save_live_state != NULL) {
1249 se->is_ram = 1;
1250 }
aliguoria672b462008-11-11 21:33:36 +00001251
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001252 if (dev) {
1253 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001254 if (id) {
1255 pstrcpy(se->idstr, sizeof(se->idstr), id);
1256 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001257 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001258
Anthony Liguori7267c092011-08-20 22:09:37 -05001259 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001260 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1261 se->compat->instance_id = instance_id == -1 ?
1262 calculate_compat_instance_id(idstr) : instance_id;
1263 instance_id = -1;
1264 }
1265 }
1266 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1267
Juan Quintela8718e992009-09-01 02:12:31 +02001268 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001269 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001270 } else {
1271 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +00001272 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001273 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001274 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001275 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +00001276 return 0;
1277}
1278
Alex Williamson0be71e32010-06-25 11:09:07 -06001279int register_savevm(DeviceState *dev,
1280 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001281 int instance_id,
1282 int version_id,
1283 SaveStateHandler *save_state,
1284 LoadStateHandler *load_state,
1285 void *opaque)
1286{
Alex Williamson0be71e32010-06-25 11:09:07 -06001287 return register_savevm_live(dev, idstr, instance_id, version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001288 NULL, NULL, save_state, load_state, opaque);
aliguoria672b462008-11-11 21:33:36 +00001289}
1290
Alex Williamson0be71e32010-06-25 11:09:07 -06001291void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +00001292{
Juan Quintela8718e992009-09-01 02:12:31 +02001293 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001294 char id[256] = "";
1295
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001296 if (dev) {
1297 char *path = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001298 if (path) {
1299 pstrcpy(id, sizeof(id), path);
1300 pstrcat(id, sizeof(id), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001301 g_free(path);
Alex Williamson7685ee62010-06-25 11:09:14 -06001302 }
1303 }
1304 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +00001305
Blue Swirl72cf2d42009-09-12 07:36:22 +00001306 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001307 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001308 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001309 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001310 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001311 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001312 g_free(se);
aliguori41bd13a2009-04-17 17:10:59 +00001313 }
aliguori41bd13a2009-04-17 17:10:59 +00001314 }
1315}
1316
Alex Williamson0be71e32010-06-25 11:09:07 -06001317int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001318 const VMStateDescription *vmsd,
1319 void *opaque, int alias_id,
1320 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001321{
Juan Quintela8718e992009-09-01 02:12:31 +02001322 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001323
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001324 /* If this triggers, alias support can be dropped for the vmsd. */
1325 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1326
Anthony Liguori7267c092011-08-20 22:09:37 -05001327 se = g_malloc0(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001328 se->version_id = vmsd->version_id;
1329 se->section_id = global_section_id++;
1330 se->save_live_state = NULL;
1331 se->save_state = NULL;
1332 se->load_state = NULL;
1333 se->opaque = opaque;
1334 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001335 se->alias_id = alias_id;
Gerd Hoffmann2837c8e2011-07-08 10:44:35 +02001336 se->no_migrate = vmsd->unmigratable;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001337
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001338 if (dev) {
1339 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001340 if (id) {
1341 pstrcpy(se->idstr, sizeof(se->idstr), id);
1342 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001343 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001344
Anthony Liguori7267c092011-08-20 22:09:37 -05001345 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001346 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1347 se->compat->instance_id = instance_id == -1 ?
1348 calculate_compat_instance_id(vmsd->name) : instance_id;
1349 instance_id = -1;
1350 }
1351 }
1352 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1353
Juan Quintela8718e992009-09-01 02:12:31 +02001354 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001355 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001356 } else {
1357 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001358 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001359 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001360 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001361 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001362 return 0;
1363}
1364
Alex Williamson0be71e32010-06-25 11:09:07 -06001365int vmstate_register(DeviceState *dev, int instance_id,
1366 const VMStateDescription *vmsd, void *opaque)
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001367{
Alex Williamson0be71e32010-06-25 11:09:07 -06001368 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1369 opaque, -1, 0);
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001370}
1371
Alex Williamson0be71e32010-06-25 11:09:07 -06001372void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1373 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001374{
Juan Quintela1eb75382009-09-10 03:04:29 +02001375 SaveStateEntry *se, *new_se;
1376
Blue Swirl72cf2d42009-09-12 07:36:22 +00001377 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +02001378 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001379 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001380 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001381 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001382 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001383 g_free(se);
Juan Quintela1eb75382009-09-10 03:04:29 +02001384 }
1385 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001386}
1387
Juan Quintela811814b2010-07-26 21:38:43 +02001388static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1389 void *opaque);
1390static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1391 void *opaque);
1392
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001393int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1394 void *opaque, int version_id)
1395{
1396 VMStateField *field = vmsd->fields;
Juan Quintela811814b2010-07-26 21:38:43 +02001397 int ret;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001398
1399 if (version_id > vmsd->version_id) {
1400 return -EINVAL;
1401 }
1402 if (version_id < vmsd->minimum_version_id_old) {
1403 return -EINVAL;
1404 }
1405 if (version_id < vmsd->minimum_version_id) {
1406 return vmsd->load_state_old(f, opaque, version_id);
1407 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001408 if (vmsd->pre_load) {
1409 int ret = vmsd->pre_load(opaque);
1410 if (ret)
1411 return ret;
1412 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001413 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001414 if ((field->field_exists &&
1415 field->field_exists(opaque, version_id)) ||
1416 (!field->field_exists &&
1417 field->version_id <= version_id)) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001418 void *base_addr = opaque + field->offset;
Juan Quintela811814b2010-07-26 21:38:43 +02001419 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001420 int size = field->size;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001421
Juan Quintelae61a1e02009-12-02 12:36:38 +01001422 if (field->flags & VMS_VBUFFER) {
1423 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001424 if (field->flags & VMS_MULTIPLY) {
1425 size *= field->size;
1426 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001427 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001428 if (field->flags & VMS_ARRAY) {
1429 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001430 } else if (field->flags & VMS_VARRAY_INT32) {
1431 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelaa624b082011-03-10 12:33:50 +01001432 } else if (field->flags & VMS_VARRAY_UINT32) {
1433 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001434 } else if (field->flags & VMS_VARRAY_UINT16) {
1435 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintela82fa39b2011-03-10 12:33:49 +01001436 } else if (field->flags & VMS_VARRAY_UINT8) {
1437 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001438 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001439 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001440 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001441 }
1442 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001443 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001444
Juan Quintela19df4382009-09-29 22:48:41 +02001445 if (field->flags & VMS_ARRAY_OF_POINTER) {
1446 addr = *(void **)addr;
1447 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001448 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001449 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001450 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001451 ret = field->info->get(f, addr, size);
Juan Quintelaec245e22009-08-20 19:42:29 +02001452
1453 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001454 if (ret < 0) {
1455 return ret;
1456 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001457 }
1458 }
1459 field++;
1460 }
Juan Quintela811814b2010-07-26 21:38:43 +02001461 ret = vmstate_subsection_load(f, vmsd, opaque);
1462 if (ret != 0) {
1463 return ret;
1464 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001465 if (vmsd->post_load) {
Juan Quintelae59fb372009-09-29 22:48:21 +02001466 return vmsd->post_load(opaque, version_id);
Juan Quintela752ff2f2009-09-10 03:04:30 +02001467 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001468 return 0;
1469}
1470
1471void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001472 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001473{
1474 VMStateField *field = vmsd->fields;
1475
Juan Quintela8fb07912009-09-10 03:04:32 +02001476 if (vmsd->pre_save) {
1477 vmsd->pre_save(opaque);
1478 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001479 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001480 if (!field->field_exists ||
1481 field->field_exists(opaque, vmsd->version_id)) {
1482 void *base_addr = opaque + field->offset;
1483 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001484 int size = field->size;
Juan Quinteladde04632009-08-20 19:42:26 +02001485
Juan Quintelae61a1e02009-12-02 12:36:38 +01001486 if (field->flags & VMS_VBUFFER) {
1487 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001488 if (field->flags & VMS_MULTIPLY) {
1489 size *= field->size;
1490 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001491 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001492 if (field->flags & VMS_ARRAY) {
1493 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001494 } else if (field->flags & VMS_VARRAY_INT32) {
1495 n_elems = *(int32_t *)(opaque+field->num_offset);
Amos Kong1329d182012-03-13 14:05:36 +08001496 } else if (field->flags & VMS_VARRAY_UINT32) {
1497 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001498 } else if (field->flags & VMS_VARRAY_UINT16) {
1499 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintelab7844212011-03-15 15:53:25 +01001500 } else if (field->flags & VMS_VARRAY_UINT8) {
1501 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001502 }
1503 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001504 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001505 }
1506 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001507 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001508
Juan Quintela85953872009-12-02 12:36:37 +01001509 if (field->flags & VMS_ARRAY_OF_POINTER) {
1510 addr = *(void **)addr;
1511 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001512 if (field->flags & VMS_STRUCT) {
1513 vmstate_save_state(f, field->vmsd, addr);
1514 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001515 field->info->put(f, addr, size);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001516 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001517 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001518 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001519 field++;
1520 }
Juan Quintela811814b2010-07-26 21:38:43 +02001521 vmstate_subsection_save(f, vmsd, opaque);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001522}
1523
Juan Quintela4082be42009-08-20 19:42:24 +02001524static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1525{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001526 if (!se->vmsd) { /* Old style */
1527 return se->load_state(f, se->opaque, version_id);
1528 }
1529 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001530}
1531
Alex Williamsondc912122011-01-11 14:39:43 -07001532static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
Juan Quintela4082be42009-08-20 19:42:24 +02001533{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001534 if (!se->vmsd) { /* Old style */
1535 se->save_state(f, se->opaque);
Alex Williamsondc912122011-01-11 14:39:43 -07001536 return;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001537 }
1538 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +02001539}
1540
aliguoria672b462008-11-11 21:33:36 +00001541#define QEMU_VM_FILE_MAGIC 0x5145564d
1542#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1543#define QEMU_VM_FILE_VERSION 0x00000003
1544
1545#define QEMU_VM_EOF 0x00
1546#define QEMU_VM_SECTION_START 0x01
1547#define QEMU_VM_SECTION_PART 0x02
1548#define QEMU_VM_SECTION_END 0x03
1549#define QEMU_VM_SECTION_FULL 0x04
Juan Quintela811814b2010-07-26 21:38:43 +02001550#define QEMU_VM_SUBSECTION 0x05
aliguoria672b462008-11-11 21:33:36 +00001551
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001552bool qemu_savevm_state_blocked(Error **errp)
Alex Williamsondc912122011-01-11 14:39:43 -07001553{
1554 SaveStateEntry *se;
1555
1556 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1557 if (se->no_migrate) {
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001558 error_set(errp, QERR_MIGRATION_NOT_SUPPORTED, se->idstr);
Alex Williamsondc912122011-01-11 14:39:43 -07001559 return true;
1560 }
1561 }
1562 return false;
1563}
1564
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001565int qemu_savevm_state_begin(QEMUFile *f,
1566 const MigrationParams *params)
aliguoria672b462008-11-11 21:33:36 +00001567{
1568 SaveStateEntry *se;
Juan Quintela39346382011-09-22 11:02:14 +02001569 int ret;
aliguoria672b462008-11-11 21:33:36 +00001570
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001571 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1572 if(se->set_params == NULL) {
1573 continue;
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001574 }
1575 se->set_params(params, se->opaque);
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001576 }
1577
aliguoria672b462008-11-11 21:33:36 +00001578 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1579 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1580
Blue Swirl72cf2d42009-09-12 07:36:22 +00001581 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001582 int len;
1583
1584 if (se->save_live_state == NULL)
1585 continue;
1586
1587 /* Section type */
1588 qemu_put_byte(f, QEMU_VM_SECTION_START);
1589 qemu_put_be32(f, se->section_id);
1590
1591 /* ID string */
1592 len = strlen(se->idstr);
1593 qemu_put_byte(f, len);
1594 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1595
1596 qemu_put_be32(f, se->instance_id);
1597 qemu_put_be32(f, se->version_id);
1598
Luiz Capitulino539de122011-12-05 14:06:56 -02001599 ret = se->save_live_state(f, QEMU_VM_SECTION_START, se->opaque);
Juan Quintela29757252011-10-19 15:22:18 +02001600 if (ret < 0) {
Luiz Capitulino539de122011-12-05 14:06:56 -02001601 qemu_savevm_state_cancel(f);
Juan Quintela29757252011-10-19 15:22:18 +02001602 return ret;
1603 }
aliguoria672b462008-11-11 21:33:36 +00001604 }
Juan Quintela624b9cc2011-10-05 01:02:52 +02001605 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001606 if (ret != 0) {
Luiz Capitulino539de122011-12-05 14:06:56 -02001607 qemu_savevm_state_cancel(f);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001608 }
aliguoria672b462008-11-11 21:33:36 +00001609
Juan Quintela39346382011-09-22 11:02:14 +02001610 return ret;
1611
aliguoria672b462008-11-11 21:33:36 +00001612}
1613
Juan Quintela39346382011-09-22 11:02:14 +02001614/*
Dong Xu Wang07f35072011-11-22 18:06:26 +08001615 * this function has three return values:
Juan Quintela39346382011-09-22 11:02:14 +02001616 * negative: there was one error, and we have -errno.
1617 * 0 : We haven't finished, caller have to go again
1618 * 1 : We have finished, we can go to complete phase
1619 */
Luiz Capitulino539de122011-12-05 14:06:56 -02001620int qemu_savevm_state_iterate(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001621{
1622 SaveStateEntry *se;
1623 int ret = 1;
1624
Blue Swirl72cf2d42009-09-12 07:36:22 +00001625 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001626 if (se->save_live_state == NULL)
1627 continue;
1628
Juan Quintela517a13c2012-05-21 23:46:44 +02001629 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001630 /* Section type */
1631 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1632 qemu_put_be32(f, se->section_id);
1633
Luiz Capitulino539de122011-12-05 14:06:56 -02001634 ret = se->save_live_state(f, QEMU_VM_SECTION_PART, se->opaque);
Juan Quintela517a13c2012-05-21 23:46:44 +02001635 trace_savevm_section_end(se->section_id);
1636
Juan Quintela29757252011-10-19 15:22:18 +02001637 if (ret <= 0) {
Jan Kiszka90697be2009-12-01 15:19:55 +01001638 /* Do not proceed to the next vmstate before this one reported
1639 completion of the current stage. This serializes the migration
1640 and reduces the probability that a faster changing state is
1641 synchronized over and over again. */
1642 break;
1643 }
aliguoria672b462008-11-11 21:33:36 +00001644 }
Juan Quintela39346382011-09-22 11:02:14 +02001645 if (ret != 0) {
1646 return ret;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001647 }
Juan Quintela624b9cc2011-10-05 01:02:52 +02001648 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001649 if (ret != 0) {
Luiz Capitulino539de122011-12-05 14:06:56 -02001650 qemu_savevm_state_cancel(f);
Juan Quintela39346382011-09-22 11:02:14 +02001651 }
1652 return ret;
aliguoria672b462008-11-11 21:33:36 +00001653}
1654
Luiz Capitulino539de122011-12-05 14:06:56 -02001655int qemu_savevm_state_complete(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001656{
1657 SaveStateEntry *se;
Juan Quintela29757252011-10-19 15:22:18 +02001658 int ret;
aliguoria672b462008-11-11 21:33:36 +00001659
Jan Kiszkaea375f92010-03-01 19:10:30 +01001660 cpu_synchronize_all_states();
1661
Blue Swirl72cf2d42009-09-12 07:36:22 +00001662 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001663 if (se->save_live_state == NULL)
1664 continue;
1665
Juan Quintela517a13c2012-05-21 23:46:44 +02001666 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001667 /* Section type */
1668 qemu_put_byte(f, QEMU_VM_SECTION_END);
1669 qemu_put_be32(f, se->section_id);
1670
Luiz Capitulino539de122011-12-05 14:06:56 -02001671 ret = se->save_live_state(f, QEMU_VM_SECTION_END, se->opaque);
Juan Quintela517a13c2012-05-21 23:46:44 +02001672 trace_savevm_section_end(se->section_id);
Juan Quintela29757252011-10-19 15:22:18 +02001673 if (ret < 0) {
1674 return ret;
1675 }
aliguoria672b462008-11-11 21:33:36 +00001676 }
1677
Blue Swirl72cf2d42009-09-12 07:36:22 +00001678 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001679 int len;
1680
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001681 if (se->save_state == NULL && se->vmsd == NULL)
aliguoria672b462008-11-11 21:33:36 +00001682 continue;
1683
Juan Quintela517a13c2012-05-21 23:46:44 +02001684 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001685 /* Section type */
1686 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1687 qemu_put_be32(f, se->section_id);
1688
1689 /* ID string */
1690 len = strlen(se->idstr);
1691 qemu_put_byte(f, len);
1692 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1693
1694 qemu_put_be32(f, se->instance_id);
1695 qemu_put_be32(f, se->version_id);
1696
Alex Williamsondc912122011-01-11 14:39:43 -07001697 vmstate_save(f, se);
Juan Quintela517a13c2012-05-21 23:46:44 +02001698 trace_savevm_section_end(se->section_id);
aliguoria672b462008-11-11 21:33:36 +00001699 }
1700
1701 qemu_put_byte(f, QEMU_VM_EOF);
1702
Juan Quintela624b9cc2011-10-05 01:02:52 +02001703 return qemu_file_get_error(f);
aliguoria672b462008-11-11 21:33:36 +00001704}
1705
Luiz Capitulino539de122011-12-05 14:06:56 -02001706void qemu_savevm_state_cancel(QEMUFile *f)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001707{
1708 SaveStateEntry *se;
1709
1710 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1711 if (se->save_live_state) {
Luiz Capitulino539de122011-12-05 14:06:56 -02001712 se->save_live_state(f, -1, se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001713 }
1714 }
1715}
1716
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001717static int qemu_savevm_state(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001718{
aliguoria672b462008-11-11 21:33:36 +00001719 int ret;
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001720 MigrationParams params = {
1721 .blk = 0,
1722 .shared = 0
1723 };
aliguoria672b462008-11-11 21:33:36 +00001724
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001725 if (qemu_savevm_state_blocked(NULL)) {
Alex Williamsondc912122011-01-11 14:39:43 -07001726 ret = -EINVAL;
1727 goto out;
1728 }
1729
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001730 ret = qemu_savevm_state_begin(f, &params);
aliguoria672b462008-11-11 21:33:36 +00001731 if (ret < 0)
1732 goto out;
1733
1734 do {
Luiz Capitulino539de122011-12-05 14:06:56 -02001735 ret = qemu_savevm_state_iterate(f);
aliguoria672b462008-11-11 21:33:36 +00001736 if (ret < 0)
1737 goto out;
1738 } while (ret == 0);
1739
Luiz Capitulino539de122011-12-05 14:06:56 -02001740 ret = qemu_savevm_state_complete(f);
aliguoria672b462008-11-11 21:33:36 +00001741
1742out:
Juan Quintela39346382011-09-22 11:02:14 +02001743 if (ret == 0) {
Juan Quintela624b9cc2011-10-05 01:02:52 +02001744 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001745 }
aliguoria672b462008-11-11 21:33:36 +00001746
aliguoria672b462008-11-11 21:33:36 +00001747 return ret;
1748}
1749
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001750static int qemu_save_device_state(QEMUFile *f)
1751{
1752 SaveStateEntry *se;
1753
1754 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1755 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1756
1757 cpu_synchronize_all_states();
1758
1759 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1760 int len;
1761
1762 if (se->is_ram) {
1763 continue;
1764 }
1765 if (se->save_state == NULL && se->vmsd == NULL) {
1766 continue;
1767 }
1768
1769 /* Section type */
1770 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1771 qemu_put_be32(f, se->section_id);
1772
1773 /* ID string */
1774 len = strlen(se->idstr);
1775 qemu_put_byte(f, len);
1776 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1777
1778 qemu_put_be32(f, se->instance_id);
1779 qemu_put_be32(f, se->version_id);
1780
1781 vmstate_save(f, se);
1782 }
1783
1784 qemu_put_byte(f, QEMU_VM_EOF);
1785
1786 return qemu_file_get_error(f);
1787}
1788
aliguoria672b462008-11-11 21:33:36 +00001789static SaveStateEntry *find_se(const char *idstr, int instance_id)
1790{
1791 SaveStateEntry *se;
1792
Blue Swirl72cf2d42009-09-12 07:36:22 +00001793 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001794 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001795 (instance_id == se->instance_id ||
1796 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +00001797 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001798 /* Migrating from an older version? */
1799 if (strstr(se->idstr, idstr) && se->compat) {
1800 if (!strcmp(se->compat->idstr, idstr) &&
1801 (instance_id == se->compat->instance_id ||
1802 instance_id == se->alias_id))
1803 return se;
1804 }
aliguoria672b462008-11-11 21:33:36 +00001805 }
1806 return NULL;
1807}
1808
Juan Quintela811814b2010-07-26 21:38:43 +02001809static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1810{
1811 while(sub && sub->needed) {
1812 if (strcmp(idstr, sub->vmsd->name) == 0) {
1813 return sub->vmsd;
1814 }
1815 sub++;
1816 }
1817 return NULL;
1818}
1819
1820static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1821 void *opaque)
1822{
Juan Quintelac6380722011-10-04 15:28:31 +02001823 while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
Juan Quintela811814b2010-07-26 21:38:43 +02001824 char idstr[256];
1825 int ret;
Juan Quintelac6380722011-10-04 15:28:31 +02001826 uint8_t version_id, len, size;
Juan Quintela811814b2010-07-26 21:38:43 +02001827 const VMStateDescription *sub_vmsd;
1828
Juan Quintelac6380722011-10-04 15:28:31 +02001829 len = qemu_peek_byte(f, 1);
1830 if (len < strlen(vmsd->name) + 1) {
1831 /* subsection name has be be "section_name/a" */
1832 return 0;
1833 }
1834 size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
1835 if (size != len) {
1836 return 0;
1837 }
1838 idstr[size] = 0;
Juan Quintela811814b2010-07-26 21:38:43 +02001839
Juan Quintelac6380722011-10-04 15:28:31 +02001840 if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
1841 /* it don't have a valid subsection name */
1842 return 0;
1843 }
Juan Quintela3da9eeb2011-09-30 19:46:43 +02001844 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
Juan Quintela811814b2010-07-26 21:38:43 +02001845 if (sub_vmsd == NULL) {
1846 return -ENOENT;
1847 }
Juan Quintelac6380722011-10-04 15:28:31 +02001848 qemu_file_skip(f, 1); /* subsection */
1849 qemu_file_skip(f, 1); /* len */
1850 qemu_file_skip(f, len); /* idstr */
1851 version_id = qemu_get_be32(f);
1852
Juan Quintela811814b2010-07-26 21:38:43 +02001853 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1854 if (ret) {
1855 return ret;
1856 }
1857 }
1858 return 0;
1859}
1860
1861static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1862 void *opaque)
1863{
1864 const VMStateSubsection *sub = vmsd->subsections;
1865
1866 while (sub && sub->needed) {
1867 if (sub->needed(opaque)) {
1868 const VMStateDescription *vmsd = sub->vmsd;
1869 uint8_t len;
1870
1871 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1872 len = strlen(vmsd->name);
1873 qemu_put_byte(f, len);
1874 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1875 qemu_put_be32(f, vmsd->version_id);
1876 vmstate_save_state(f, vmsd, opaque);
1877 }
1878 sub++;
1879 }
1880}
1881
aliguoria672b462008-11-11 21:33:36 +00001882typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001883 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001884 SaveStateEntry *se;
1885 int section_id;
1886 int version_id;
aliguoria672b462008-11-11 21:33:36 +00001887} LoadStateEntry;
1888
aliguoria672b462008-11-11 21:33:36 +00001889int qemu_loadvm_state(QEMUFile *f)
1890{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001891 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1892 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001893 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00001894 uint8_t section_type;
1895 unsigned int v;
1896 int ret;
1897
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001898 if (qemu_savevm_state_blocked(NULL)) {
Alex Williamsondc912122011-01-11 14:39:43 -07001899 return -EINVAL;
1900 }
1901
aliguoria672b462008-11-11 21:33:36 +00001902 v = qemu_get_be32(f);
1903 if (v != QEMU_VM_FILE_MAGIC)
1904 return -EINVAL;
1905
1906 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02001907 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1908 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1909 return -ENOTSUP;
1910 }
aliguoria672b462008-11-11 21:33:36 +00001911 if (v != QEMU_VM_FILE_VERSION)
1912 return -ENOTSUP;
1913
1914 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1915 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00001916 SaveStateEntry *se;
1917 char idstr[257];
1918 int len;
1919
1920 switch (section_type) {
1921 case QEMU_VM_SECTION_START:
1922 case QEMU_VM_SECTION_FULL:
1923 /* Read section start */
1924 section_id = qemu_get_be32(f);
1925 len = qemu_get_byte(f);
1926 qemu_get_buffer(f, (uint8_t *)idstr, len);
1927 idstr[len] = 0;
1928 instance_id = qemu_get_be32(f);
1929 version_id = qemu_get_be32(f);
1930
1931 /* Find savevm section */
1932 se = find_se(idstr, instance_id);
1933 if (se == NULL) {
1934 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1935 ret = -EINVAL;
1936 goto out;
1937 }
1938
1939 /* Validate version */
1940 if (version_id > se->version_id) {
1941 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1942 version_id, idstr, se->version_id);
1943 ret = -EINVAL;
1944 goto out;
1945 }
1946
1947 /* Add entry */
Anthony Liguori7267c092011-08-20 22:09:37 -05001948 le = g_malloc0(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001949
1950 le->se = se;
1951 le->section_id = section_id;
1952 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001953 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00001954
Juan Quintela4082be42009-08-20 19:42:24 +02001955 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001956 if (ret < 0) {
1957 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1958 instance_id, idstr);
1959 goto out;
1960 }
aliguoria672b462008-11-11 21:33:36 +00001961 break;
1962 case QEMU_VM_SECTION_PART:
1963 case QEMU_VM_SECTION_END:
1964 section_id = qemu_get_be32(f);
1965
Blue Swirl72cf2d42009-09-12 07:36:22 +00001966 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001967 if (le->section_id == section_id) {
1968 break;
1969 }
1970 }
aliguoria672b462008-11-11 21:33:36 +00001971 if (le == NULL) {
1972 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1973 ret = -EINVAL;
1974 goto out;
1975 }
1976
Juan Quintela4082be42009-08-20 19:42:24 +02001977 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001978 if (ret < 0) {
1979 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1980 section_id);
1981 goto out;
1982 }
aliguoria672b462008-11-11 21:33:36 +00001983 break;
1984 default:
1985 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1986 ret = -EINVAL;
1987 goto out;
1988 }
1989 }
1990
Jan Kiszkaea375f92010-03-01 19:10:30 +01001991 cpu_synchronize_all_post_init();
1992
aliguoria672b462008-11-11 21:33:36 +00001993 ret = 0;
1994
1995out:
Blue Swirl72cf2d42009-09-12 07:36:22 +00001996 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1997 QLIST_REMOVE(le, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05001998 g_free(le);
aliguoria672b462008-11-11 21:33:36 +00001999 }
2000
Juan Quintela42802d42011-10-05 01:14:46 +02002001 if (ret == 0) {
2002 ret = qemu_file_get_error(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +02002003 }
aliguoria672b462008-11-11 21:33:36 +00002004
2005 return ret;
2006}
2007
aliguoria672b462008-11-11 21:33:36 +00002008static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
2009 const char *name)
2010{
2011 QEMUSnapshotInfo *sn_tab, *sn;
2012 int nb_sns, i, ret;
2013
2014 ret = -ENOENT;
2015 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2016 if (nb_sns < 0)
2017 return ret;
2018 for(i = 0; i < nb_sns; i++) {
2019 sn = &sn_tab[i];
2020 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
2021 *sn_info = *sn;
2022 ret = 0;
2023 break;
2024 }
2025 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002026 g_free(sn_tab);
aliguoria672b462008-11-11 21:33:36 +00002027 return ret;
2028}
2029
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002030/*
2031 * Deletes snapshots of a given name in all opened images.
2032 */
2033static int del_existing_snapshots(Monitor *mon, const char *name)
2034{
2035 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002036 QEMUSnapshotInfo sn1, *snapshot = &sn1;
2037 int ret;
2038
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002039 bs = NULL;
2040 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002041 if (bdrv_can_snapshot(bs) &&
2042 bdrv_snapshot_find(bs, snapshot, name) >= 0)
2043 {
2044 ret = bdrv_snapshot_delete(bs, name);
2045 if (ret < 0) {
2046 monitor_printf(mon,
2047 "Error while deleting snapshot on '%s'\n",
2048 bdrv_get_device_name(bs));
2049 return -1;
2050 }
2051 }
2052 }
2053
2054 return 0;
2055}
2056
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002057void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002058{
2059 BlockDriverState *bs, *bs1;
2060 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002061 int ret;
aliguoria672b462008-11-11 21:33:36 +00002062 QEMUFile *f;
2063 int saved_vm_running;
Kevin Wolfc2c9a462011-11-16 11:35:54 +01002064 uint64_t vm_state_size;
aliguoria672b462008-11-11 21:33:36 +00002065#ifdef _WIN32
2066 struct _timeb tb;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002067 struct tm *ptm;
aliguoria672b462008-11-11 21:33:36 +00002068#else
2069 struct timeval tv;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002070 struct tm tm;
aliguoria672b462008-11-11 21:33:36 +00002071#endif
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002072 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002073
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002074 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002075 bs = NULL;
2076 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002077
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002078 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002079 continue;
2080 }
2081
2082 if (!bdrv_can_snapshot(bs)) {
2083 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
2084 bdrv_get_device_name(bs));
2085 return;
2086 }
2087 }
2088
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002089 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002090 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002091 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002092 return;
2093 }
aliguoria672b462008-11-11 21:33:36 +00002094
Luiz Capitulino13548692011-07-29 15:36:43 -03002095 saved_vm_running = runstate_is_running();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002096 vm_stop(RUN_STATE_SAVE_VM);
aliguoria672b462008-11-11 21:33:36 +00002097
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002098 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +00002099
2100 /* fill auxiliary fields */
2101#ifdef _WIN32
2102 _ftime(&tb);
2103 sn->date_sec = tb.time;
2104 sn->date_nsec = tb.millitm * 1000000;
2105#else
2106 gettimeofday(&tv, NULL);
2107 sn->date_sec = tv.tv_sec;
2108 sn->date_nsec = tv.tv_usec * 1000;
2109#endif
Paolo Bonzini74475452011-03-11 16:47:48 +01002110 sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
aliguoria672b462008-11-11 21:33:36 +00002111
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002112 if (name) {
2113 ret = bdrv_snapshot_find(bs, old_sn, name);
2114 if (ret >= 0) {
2115 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2116 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2117 } else {
2118 pstrcpy(sn->name, sizeof(sn->name), name);
2119 }
2120 } else {
2121#ifdef _WIN32
Stefan Weil55dd9ff2012-04-12 22:33:12 +02002122 time_t t = tb.time;
2123 ptm = localtime(&t);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002124 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
2125#else
Blue Swirld7d9b522010-09-09 19:13:04 +00002126 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2127 localtime_r((const time_t *)&tv.tv_sec, &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002128 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2129#endif
2130 }
2131
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002132 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -02002133 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002134 goto the_end;
2135 }
2136
aliguoria672b462008-11-11 21:33:36 +00002137 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02002138 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00002139 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00002140 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00002141 goto the_end;
2142 }
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02002143 ret = qemu_savevm_state(f);
aliguori2d22b182008-12-11 21:06:49 +00002144 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00002145 qemu_fclose(f);
2146 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002147 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00002148 goto the_end;
2149 }
2150
2151 /* create the snapshots */
2152
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002153 bs1 = NULL;
2154 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002155 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +00002156 /* Write VM state size only to the image that contains the state */
2157 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00002158 ret = bdrv_snapshot_create(bs1, sn);
2159 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002160 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
2161 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002162 }
2163 }
2164 }
2165
2166 the_end:
2167 if (saved_vm_running)
2168 vm_start();
2169}
2170
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002171void qmp_xen_save_devices_state(const char *filename, Error **errp)
2172{
2173 QEMUFile *f;
2174 int saved_vm_running;
2175 int ret;
2176
2177 saved_vm_running = runstate_is_running();
2178 vm_stop(RUN_STATE_SAVE_VM);
2179
2180 f = qemu_fopen(filename, "wb");
2181 if (!f) {
2182 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
2183 goto the_end;
2184 }
2185 ret = qemu_save_device_state(f);
2186 qemu_fclose(f);
2187 if (ret < 0) {
2188 error_set(errp, QERR_IO_ERROR);
2189 }
2190
2191 the_end:
2192 if (saved_vm_running)
2193 vm_start();
2194 return;
2195}
2196
Markus Armbruster03cd4652010-02-17 16:24:10 +01002197int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00002198{
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002199 BlockDriverState *bs, *bs_vm_state;
aliguori2d22b182008-12-11 21:06:49 +00002200 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00002201 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002202 int ret;
aliguoria672b462008-11-11 21:33:36 +00002203
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002204 bs_vm_state = bdrv_snapshots();
2205 if (!bs_vm_state) {
2206 error_report("No block device supports snapshots");
2207 return -ENOTSUP;
2208 }
2209
2210 /* Don't even try to load empty VM states */
2211 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2212 if (ret < 0) {
2213 return ret;
2214 } else if (sn.vm_state_size == 0) {
Kevin Wolfe11480d2011-03-01 10:48:12 +01002215 error_report("This is a disk-only snapshot. Revert to it offline "
2216 "using qemu-img.");
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002217 return -EINVAL;
2218 }
2219
2220 /* Verify if there is any device that doesn't support snapshots and is
2221 writable and check if the requested snapshot is available too. */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002222 bs = NULL;
2223 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002224
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002225 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002226 continue;
2227 }
2228
2229 if (!bdrv_can_snapshot(bs)) {
2230 error_report("Device '%s' is writable but does not support snapshots.",
2231 bdrv_get_device_name(bs));
2232 return -ENOTSUP;
2233 }
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002234
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002235 ret = bdrv_snapshot_find(bs, &sn, name);
2236 if (ret < 0) {
2237 error_report("Device '%s' does not have the requested snapshot '%s'",
2238 bdrv_get_device_name(bs), name);
2239 return ret;
2240 }
aliguoria672b462008-11-11 21:33:36 +00002241 }
2242
2243 /* Flush all IO requests so they don't interfere with the new state. */
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00002244 bdrv_drain_all();
aliguoria672b462008-11-11 21:33:36 +00002245
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002246 bs = NULL;
2247 while ((bs = bdrv_next(bs))) {
2248 if (bdrv_can_snapshot(bs)) {
2249 ret = bdrv_snapshot_goto(bs, name);
aliguoria672b462008-11-11 21:33:36 +00002250 if (ret < 0) {
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002251 error_report("Error %d while activating snapshot '%s' on '%s'",
2252 ret, name, bdrv_get_device_name(bs));
2253 return ret;
aliguoria672b462008-11-11 21:33:36 +00002254 }
2255 }
2256 }
2257
aliguoria672b462008-11-11 21:33:36 +00002258 /* restore the VM state */
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002259 f = qemu_fopen_bdrv(bs_vm_state, 0);
aliguoria672b462008-11-11 21:33:36 +00002260 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002261 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02002262 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00002263 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002264
Jan Kiszka5a8a49d2011-06-14 18:29:45 +02002265 qemu_system_reset(VMRESET_SILENT);
aliguoria672b462008-11-11 21:33:36 +00002266 ret = qemu_loadvm_state(f);
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002267
aliguoria672b462008-11-11 21:33:36 +00002268 qemu_fclose(f);
2269 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002270 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02002271 return ret;
aliguoria672b462008-11-11 21:33:36 +00002272 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002273
Juan Quintela05f24012009-08-20 19:42:22 +02002274 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02002275}
2276
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002277void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002278{
2279 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002280 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002281 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002282
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002283 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002284 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002285 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002286 return;
2287 }
2288
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002289 bs1 = NULL;
2290 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002291 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00002292 ret = bdrv_snapshot_delete(bs1, name);
2293 if (ret < 0) {
2294 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00002295 monitor_printf(mon,
2296 "Snapshots not supported on device '%s'\n",
2297 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002298 else
aliguori376253e2009-03-05 23:01:23 +00002299 monitor_printf(mon, "Error %d while deleting snapshot on "
2300 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002301 }
2302 }
2303 }
2304}
2305
aliguori376253e2009-03-05 23:01:23 +00002306void do_info_snapshots(Monitor *mon)
aliguoria672b462008-11-11 21:33:36 +00002307{
2308 BlockDriverState *bs, *bs1;
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002309 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2310 int nb_sns, i, ret, available;
2311 int total;
2312 int *available_snapshots;
aliguoria672b462008-11-11 21:33:36 +00002313 char buf[256];
2314
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002315 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002316 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002317 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002318 return;
2319 }
aliguoria672b462008-11-11 21:33:36 +00002320
2321 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2322 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00002323 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00002324 return;
2325 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002326
2327 if (nb_sns == 0) {
2328 monitor_printf(mon, "There is no snapshot available.\n");
2329 return;
aliguoria672b462008-11-11 21:33:36 +00002330 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002331
Anthony Liguori7267c092011-08-20 22:09:37 -05002332 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002333 total = 0;
2334 for (i = 0; i < nb_sns; i++) {
2335 sn = &sn_tab[i];
2336 available = 1;
2337 bs1 = NULL;
2338
2339 while ((bs1 = bdrv_next(bs1))) {
2340 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2341 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2342 if (ret < 0) {
2343 available = 0;
2344 break;
2345 }
2346 }
2347 }
2348
2349 if (available) {
2350 available_snapshots[total] = i;
2351 total++;
2352 }
2353 }
2354
2355 if (total > 0) {
2356 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
2357 for (i = 0; i < total; i++) {
2358 sn = &sn_tab[available_snapshots[i]];
2359 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
2360 }
2361 } else {
2362 monitor_printf(mon, "There is no suitable snapshot available\n");
2363 }
2364
Anthony Liguori7267c092011-08-20 22:09:37 -05002365 g_free(sn_tab);
2366 g_free(available_snapshots);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002367
aliguoria672b462008-11-11 21:33:36 +00002368}
Avi Kivityc5705a72011-12-20 15:59:12 +02002369
2370void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2371{
Avi Kivity1ddde082012-01-08 13:18:19 +02002372 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
Avi Kivityc5705a72011-12-20 15:59:12 +02002373 memory_region_name(mr), dev);
2374}
2375
2376void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2377{
2378 /* Nothing do to while the implementation is in RAMBlock */
2379}
2380
2381void vmstate_register_ram_global(MemoryRegion *mr)
2382{
2383 vmstate_register_ram(mr, NULL);
2384}