blob: 32fe7a20675310204fe23978529cf7c7761ab550 [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 *
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200462 */
Juan Quintela7311bea2012-08-29 19:08:59 +0200463static int qemu_fflush(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000464{
Juan Quintela7311bea2012-08-29 19:08:59 +0200465 int ret = 0;
466
aliguoria672b462008-11-11 21:33:36 +0000467 if (!f->put_buffer)
Juan Quintela7311bea2012-08-29 19:08:59 +0200468 return 0;
aliguoria672b462008-11-11 21:33:36 +0000469
470 if (f->is_write && f->buf_index > 0) {
Juan Quintela7311bea2012-08-29 19:08:59 +0200471 ret = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
472 if (ret >= 0) {
aliguoria672b462008-11-11 21:33:36 +0000473 f->buf_offset += f->buf_index;
Juan Quintela7311bea2012-08-29 19:08:59 +0200474 }
aliguoria672b462008-11-11 21:33:36 +0000475 f->buf_index = 0;
476 }
Juan Quintela7311bea2012-08-29 19:08:59 +0200477 return ret;
aliguoria672b462008-11-11 21:33:36 +0000478}
479
480static void qemu_fill_buffer(QEMUFile *f)
481{
482 int len;
Juan Quintela0046c452011-09-30 19:28:45 +0200483 int pending;
aliguoria672b462008-11-11 21:33:36 +0000484
485 if (!f->get_buffer)
486 return;
487
488 if (f->is_write)
489 abort();
490
Juan Quintela0046c452011-09-30 19:28:45 +0200491 pending = f->buf_size - f->buf_index;
492 if (pending > 0) {
493 memmove(f->buf, f->buf + f->buf_index, pending);
494 }
495 f->buf_index = 0;
496 f->buf_size = pending;
497
498 len = f->get_buffer(f->opaque, f->buf + pending, f->buf_offset,
499 IO_BUF_SIZE - pending);
aliguoria672b462008-11-11 21:33:36 +0000500 if (len > 0) {
Juan Quintela0046c452011-09-30 19:28:45 +0200501 f->buf_size += len;
aliguoria672b462008-11-11 21:33:36 +0000502 f->buf_offset += len;
Juan Quintelafa39a302011-10-25 19:18:58 +0200503 } else if (len == 0) {
504 f->last_error = -EIO;
aliguoria672b462008-11-11 21:33:36 +0000505 } else if (len != -EAGAIN)
Eduardo Habkostc29110d2011-11-10 10:41:39 -0200506 qemu_file_set_error(f, len);
aliguoria672b462008-11-11 21:33:36 +0000507}
508
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200509/** Closes the file
510 *
511 * Returns negative error value if any error happened on previous operations or
512 * while closing the file. Returns 0 or positive number on success.
513 *
514 * The meaning of return value on success depends on the specific backend
515 * being used.
516 */
517int qemu_fclose(QEMUFile *f)
518{
Juan Quintela29eee862012-08-29 19:14:54 +0200519 int ret;
Juan Quintela7311bea2012-08-29 19:08:59 +0200520 ret = qemu_fflush(f);
Juan Quintela7311bea2012-08-29 19:08:59 +0200521
Juan Quintela29eee862012-08-29 19:14:54 +0200522 if (f->close) {
523 int ret2 = f->close(f->opaque);
524 if (ret >= 0) {
525 ret = ret2;
526 }
Juan Quintela7311bea2012-08-29 19:08:59 +0200527 }
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200528 /* If any error was spotted before closing, we should report it
529 * instead of the close() return value.
530 */
531 if (f->last_error) {
532 ret = f->last_error;
533 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500534 g_free(f);
aliguoria672b462008-11-11 21:33:36 +0000535 return ret;
536}
537
538void qemu_file_put_notify(QEMUFile *f)
539{
540 f->put_buffer(f->opaque, NULL, 0, 0);
541}
542
543void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
544{
545 int l;
546
Juan Quintela3961b4d2011-10-05 01:05:21 +0200547 if (!f->last_error && f->is_write == 0 && f->buf_index > 0) {
aliguoria672b462008-11-11 21:33:36 +0000548 fprintf(stderr,
549 "Attempted to write to buffer while read buffer is not empty\n");
550 abort();
551 }
552
Juan Quintela3961b4d2011-10-05 01:05:21 +0200553 while (!f->last_error && size > 0) {
aliguoria672b462008-11-11 21:33:36 +0000554 l = IO_BUF_SIZE - f->buf_index;
555 if (l > size)
556 l = size;
557 memcpy(f->buf + f->buf_index, buf, l);
558 f->is_write = 1;
559 f->buf_index += l;
560 buf += l;
561 size -= l;
Juan Quintela7311bea2012-08-29 19:08:59 +0200562 if (f->buf_index >= IO_BUF_SIZE) {
563 int ret = qemu_fflush(f);
564 qemu_file_set_if_error(f, ret);
565 }
aliguoria672b462008-11-11 21:33:36 +0000566 }
567}
568
569void qemu_put_byte(QEMUFile *f, int v)
570{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200571 if (!f->last_error && f->is_write == 0 && f->buf_index > 0) {
aliguoria672b462008-11-11 21:33:36 +0000572 fprintf(stderr,
573 "Attempted to write to buffer while read buffer is not empty\n");
574 abort();
575 }
576
577 f->buf[f->buf_index++] = v;
578 f->is_write = 1;
Juan Quintela7311bea2012-08-29 19:08:59 +0200579 if (f->buf_index >= IO_BUF_SIZE) {
580 int ret = qemu_fflush(f);
581 qemu_file_set_if_error(f, ret);
582 }
aliguoria672b462008-11-11 21:33:36 +0000583}
584
Juan Quintelac6380722011-10-04 15:28:31 +0200585static void qemu_file_skip(QEMUFile *f, int size)
aliguoria672b462008-11-11 21:33:36 +0000586{
Juan Quintelac6380722011-10-04 15:28:31 +0200587 if (f->buf_index + size <= f->buf_size) {
588 f->buf_index += size;
aliguoria672b462008-11-11 21:33:36 +0000589 }
aliguoria672b462008-11-11 21:33:36 +0000590}
591
Juan Quintelac6380722011-10-04 15:28:31 +0200592static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
Juan Quintela811814b2010-07-26 21:38:43 +0200593{
Juan Quintelac6380722011-10-04 15:28:31 +0200594 int pending;
595 int index;
Juan Quintela811814b2010-07-26 21:38:43 +0200596
Juan Quintelab9ce1452011-10-04 13:55:32 +0200597 if (f->is_write) {
Juan Quintela811814b2010-07-26 21:38:43 +0200598 abort();
Juan Quintela811814b2010-07-26 21:38:43 +0200599 }
Juan Quintela811814b2010-07-26 21:38:43 +0200600
Juan Quintelac6380722011-10-04 15:28:31 +0200601 index = f->buf_index + offset;
602 pending = f->buf_size - index;
603 if (pending < size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200604 qemu_fill_buffer(f);
Juan Quintelac6380722011-10-04 15:28:31 +0200605 index = f->buf_index + offset;
606 pending = f->buf_size - index;
607 }
608
609 if (pending <= 0) {
610 return 0;
611 }
612 if (size > pending) {
613 size = pending;
614 }
615
616 memcpy(buf, f->buf + index, size);
617 return size;
618}
619
620int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
621{
622 int pending = size;
623 int done = 0;
624
625 while (pending > 0) {
626 int res;
627
628 res = qemu_peek_buffer(f, buf, pending, 0);
629 if (res == 0) {
630 return done;
631 }
632 qemu_file_skip(f, res);
633 buf += res;
634 pending -= res;
635 done += res;
636 }
637 return done;
638}
639
640static int qemu_peek_byte(QEMUFile *f, int offset)
641{
642 int index = f->buf_index + offset;
643
644 if (f->is_write) {
645 abort();
646 }
647
648 if (index >= f->buf_size) {
649 qemu_fill_buffer(f);
650 index = f->buf_index + offset;
651 if (index >= f->buf_size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200652 return 0;
Juan Quintelab9ce1452011-10-04 13:55:32 +0200653 }
Juan Quintela811814b2010-07-26 21:38:43 +0200654 }
Juan Quintelac6380722011-10-04 15:28:31 +0200655 return f->buf[index];
Juan Quintela811814b2010-07-26 21:38:43 +0200656}
657
aliguoria672b462008-11-11 21:33:36 +0000658int qemu_get_byte(QEMUFile *f)
659{
Juan Quintela65f3bb32011-10-06 14:29:32 +0200660 int result;
aliguoria672b462008-11-11 21:33:36 +0000661
Juan Quintelac6380722011-10-04 15:28:31 +0200662 result = qemu_peek_byte(f, 0);
663 qemu_file_skip(f, 1);
Juan Quintela65f3bb32011-10-06 14:29:32 +0200664 return result;
aliguoria672b462008-11-11 21:33:36 +0000665}
666
Juan Quintela3aee4be2012-08-29 19:16:56 +0200667static int64_t qemu_ftell(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000668{
669 return f->buf_offset - f->buf_size + f->buf_index;
670}
671
aliguoria672b462008-11-11 21:33:36 +0000672int qemu_file_rate_limit(QEMUFile *f)
673{
674 if (f->rate_limit)
675 return f->rate_limit(f->opaque);
676
677 return 0;
678}
679
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200680int64_t qemu_file_get_rate_limit(QEMUFile *f)
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200681{
682 if (f->get_rate_limit)
683 return f->get_rate_limit(f->opaque);
684
685 return 0;
686}
687
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200688int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
Glauber Costa19629532009-05-20 18:26:57 -0400689{
Glauber Costa0bb05ea2009-07-14 18:26:51 -0400690 /* any failed or completed migration keeps its state to allow probing of
691 * migration data, but has no associated file anymore */
692 if (f && f->set_rate_limit)
Glauber Costa19629532009-05-20 18:26:57 -0400693 return f->set_rate_limit(f->opaque, new_rate);
694
695 return 0;
696}
697
aliguoria672b462008-11-11 21:33:36 +0000698void qemu_put_be16(QEMUFile *f, unsigned int v)
699{
700 qemu_put_byte(f, v >> 8);
701 qemu_put_byte(f, v);
702}
703
704void qemu_put_be32(QEMUFile *f, unsigned int v)
705{
706 qemu_put_byte(f, v >> 24);
707 qemu_put_byte(f, v >> 16);
708 qemu_put_byte(f, v >> 8);
709 qemu_put_byte(f, v);
710}
711
712void qemu_put_be64(QEMUFile *f, uint64_t v)
713{
714 qemu_put_be32(f, v >> 32);
715 qemu_put_be32(f, v);
716}
717
718unsigned int qemu_get_be16(QEMUFile *f)
719{
720 unsigned int v;
721 v = qemu_get_byte(f) << 8;
722 v |= qemu_get_byte(f);
723 return v;
724}
725
726unsigned int qemu_get_be32(QEMUFile *f)
727{
728 unsigned int v;
729 v = qemu_get_byte(f) << 24;
730 v |= qemu_get_byte(f) << 16;
731 v |= qemu_get_byte(f) << 8;
732 v |= qemu_get_byte(f);
733 return v;
734}
735
736uint64_t qemu_get_be64(QEMUFile *f)
737{
738 uint64_t v;
739 v = (uint64_t)qemu_get_be32(f) << 32;
740 v |= qemu_get_be32(f);
741 return v;
742}
743
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200744
745/* timer */
746
747void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
748{
749 uint64_t expire_time;
750
751 expire_time = qemu_timer_expire_time_ns(ts);
752 qemu_put_be64(f, expire_time);
753}
754
755void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
756{
757 uint64_t expire_time;
758
759 expire_time = qemu_get_be64(f);
760 if (expire_time != -1) {
761 qemu_mod_timer_ns(ts, expire_time);
762 } else {
763 qemu_del_timer(ts);
764 }
765}
766
767
Gerd Hoffmanncdae5cf2010-11-01 15:51:54 +0100768/* bool */
769
770static int get_bool(QEMUFile *f, void *pv, size_t size)
771{
772 bool *v = pv;
773 *v = qemu_get_byte(f);
774 return 0;
775}
776
777static void put_bool(QEMUFile *f, void *pv, size_t size)
778{
779 bool *v = pv;
780 qemu_put_byte(f, *v);
781}
782
783const VMStateInfo vmstate_info_bool = {
784 .name = "bool",
785 .get = get_bool,
786 .put = put_bool,
787};
788
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200789/* 8 bit int */
790
791static int get_int8(QEMUFile *f, void *pv, size_t size)
792{
793 int8_t *v = pv;
794 qemu_get_s8s(f, v);
795 return 0;
796}
797
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200798static void put_int8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200799{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200800 int8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200801 qemu_put_s8s(f, v);
802}
803
804const VMStateInfo vmstate_info_int8 = {
805 .name = "int8",
806 .get = get_int8,
807 .put = put_int8,
808};
809
810/* 16 bit int */
811
812static int get_int16(QEMUFile *f, void *pv, size_t size)
813{
814 int16_t *v = pv;
815 qemu_get_sbe16s(f, v);
816 return 0;
817}
818
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200819static void put_int16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200820{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200821 int16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200822 qemu_put_sbe16s(f, v);
823}
824
825const VMStateInfo vmstate_info_int16 = {
826 .name = "int16",
827 .get = get_int16,
828 .put = put_int16,
829};
830
831/* 32 bit int */
832
833static int get_int32(QEMUFile *f, void *pv, size_t size)
834{
835 int32_t *v = pv;
836 qemu_get_sbe32s(f, v);
837 return 0;
838}
839
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200840static void put_int32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200841{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200842 int32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200843 qemu_put_sbe32s(f, v);
844}
845
846const VMStateInfo vmstate_info_int32 = {
847 .name = "int32",
848 .get = get_int32,
849 .put = put_int32,
850};
851
Juan Quintela82501662009-08-20 19:42:32 +0200852/* 32 bit int. See that the received value is the same than the one
853 in the field */
854
855static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
856{
857 int32_t *v = pv;
858 int32_t v2;
859 qemu_get_sbe32s(f, &v2);
860
861 if (*v == v2)
862 return 0;
863 return -EINVAL;
864}
865
866const VMStateInfo vmstate_info_int32_equal = {
867 .name = "int32 equal",
868 .get = get_int32_equal,
869 .put = put_int32,
870};
871
Juan Quintela0a031e02009-08-20 19:42:37 +0200872/* 32 bit int. See that the received value is the less or the same
873 than the one in the field */
874
875static int get_int32_le(QEMUFile *f, void *pv, size_t size)
876{
877 int32_t *old = pv;
878 int32_t new;
879 qemu_get_sbe32s(f, &new);
880
881 if (*old <= new)
882 return 0;
883 return -EINVAL;
884}
885
886const VMStateInfo vmstate_info_int32_le = {
887 .name = "int32 equal",
888 .get = get_int32_le,
889 .put = put_int32,
890};
891
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200892/* 64 bit int */
893
894static int get_int64(QEMUFile *f, void *pv, size_t size)
895{
896 int64_t *v = pv;
897 qemu_get_sbe64s(f, v);
898 return 0;
899}
900
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200901static void put_int64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200902{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200903 int64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200904 qemu_put_sbe64s(f, v);
905}
906
907const VMStateInfo vmstate_info_int64 = {
908 .name = "int64",
909 .get = get_int64,
910 .put = put_int64,
911};
912
913/* 8 bit unsigned int */
914
915static int get_uint8(QEMUFile *f, void *pv, size_t size)
916{
917 uint8_t *v = pv;
918 qemu_get_8s(f, v);
919 return 0;
920}
921
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200922static void put_uint8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200923{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200924 uint8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200925 qemu_put_8s(f, v);
926}
927
928const VMStateInfo vmstate_info_uint8 = {
929 .name = "uint8",
930 .get = get_uint8,
931 .put = put_uint8,
932};
933
934/* 16 bit unsigned int */
935
936static int get_uint16(QEMUFile *f, void *pv, size_t size)
937{
938 uint16_t *v = pv;
939 qemu_get_be16s(f, v);
940 return 0;
941}
942
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200943static void put_uint16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200944{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200945 uint16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200946 qemu_put_be16s(f, v);
947}
948
949const VMStateInfo vmstate_info_uint16 = {
950 .name = "uint16",
951 .get = get_uint16,
952 .put = put_uint16,
953};
954
955/* 32 bit unsigned int */
956
957static int get_uint32(QEMUFile *f, void *pv, size_t size)
958{
959 uint32_t *v = pv;
960 qemu_get_be32s(f, v);
961 return 0;
962}
963
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200964static void put_uint32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200965{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200966 uint32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200967 qemu_put_be32s(f, v);
968}
969
970const VMStateInfo vmstate_info_uint32 = {
971 .name = "uint32",
972 .get = get_uint32,
973 .put = put_uint32,
974};
975
Juan Quintela9122a8f2011-03-10 12:33:48 +0100976/* 32 bit uint. See that the received value is the same than the one
977 in the field */
978
979static int get_uint32_equal(QEMUFile *f, void *pv, size_t size)
980{
981 uint32_t *v = pv;
982 uint32_t v2;
983 qemu_get_be32s(f, &v2);
984
985 if (*v == v2) {
986 return 0;
987 }
988 return -EINVAL;
989}
990
991const VMStateInfo vmstate_info_uint32_equal = {
992 .name = "uint32 equal",
993 .get = get_uint32_equal,
994 .put = put_uint32,
995};
996
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200997/* 64 bit unsigned int */
998
999static int get_uint64(QEMUFile *f, void *pv, size_t size)
1000{
1001 uint64_t *v = pv;
1002 qemu_get_be64s(f, v);
1003 return 0;
1004}
1005
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001006static void put_uint64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001007{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001008 uint64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001009 qemu_put_be64s(f, v);
1010}
1011
1012const VMStateInfo vmstate_info_uint64 = {
1013 .name = "uint64",
1014 .get = get_uint64,
1015 .put = put_uint64,
1016};
1017
Juan Quintela80cd83e2009-09-10 03:04:36 +02001018/* 8 bit int. See that the received value is the same than the one
1019 in the field */
1020
1021static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
1022{
1023 uint8_t *v = pv;
1024 uint8_t v2;
1025 qemu_get_8s(f, &v2);
1026
1027 if (*v == v2)
1028 return 0;
1029 return -EINVAL;
1030}
1031
1032const VMStateInfo vmstate_info_uint8_equal = {
Juan Quintelaaa1cce62009-10-15 19:16:06 +02001033 .name = "uint8 equal",
Juan Quintela80cd83e2009-09-10 03:04:36 +02001034 .get = get_uint8_equal,
1035 .put = put_uint8,
1036};
1037
Juan Quinteladc3b83a2009-10-15 23:16:13 +02001038/* 16 bit unsigned int int. See that the received value is the same than the one
1039 in the field */
1040
1041static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
1042{
1043 uint16_t *v = pv;
1044 uint16_t v2;
1045 qemu_get_be16s(f, &v2);
1046
1047 if (*v == v2)
1048 return 0;
1049 return -EINVAL;
1050}
1051
1052const VMStateInfo vmstate_info_uint16_equal = {
1053 .name = "uint16 equal",
1054 .get = get_uint16_equal,
1055 .put = put_uint16,
1056};
1057
Juan Quinteladde04632009-08-20 19:42:26 +02001058/* timers */
1059
1060static int get_timer(QEMUFile *f, void *pv, size_t size)
1061{
1062 QEMUTimer *v = pv;
1063 qemu_get_timer(f, v);
1064 return 0;
1065}
1066
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001067static void put_timer(QEMUFile *f, void *pv, size_t size)
Juan Quinteladde04632009-08-20 19:42:26 +02001068{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001069 QEMUTimer *v = pv;
Juan Quinteladde04632009-08-20 19:42:26 +02001070 qemu_put_timer(f, v);
1071}
1072
1073const VMStateInfo vmstate_info_timer = {
1074 .name = "timer",
1075 .get = get_timer,
1076 .put = put_timer,
1077};
1078
Juan Quintela6f67c502009-08-20 19:42:35 +02001079/* uint8_t buffers */
1080
1081static int get_buffer(QEMUFile *f, void *pv, size_t size)
1082{
1083 uint8_t *v = pv;
1084 qemu_get_buffer(f, v, size);
1085 return 0;
1086}
1087
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001088static void put_buffer(QEMUFile *f, void *pv, size_t size)
Juan Quintela6f67c502009-08-20 19:42:35 +02001089{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001090 uint8_t *v = pv;
Juan Quintela6f67c502009-08-20 19:42:35 +02001091 qemu_put_buffer(f, v, size);
1092}
1093
1094const VMStateInfo vmstate_info_buffer = {
1095 .name = "buffer",
1096 .get = get_buffer,
1097 .put = put_buffer,
1098};
1099
Juan Quintela76507c72009-10-19 15:46:28 +02001100/* unused buffers: space that was used for some fields that are
Stefan Weil61cc8702011-04-13 22:45:22 +02001101 not useful anymore */
Juan Quintela76507c72009-10-19 15:46:28 +02001102
1103static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
1104{
Jan Kiszka21174c32009-12-02 12:36:35 +01001105 uint8_t buf[1024];
1106 int block_len;
1107
1108 while (size > 0) {
1109 block_len = MIN(sizeof(buf), size);
1110 size -= block_len;
1111 qemu_get_buffer(f, buf, block_len);
1112 }
1113 return 0;
Juan Quintela76507c72009-10-19 15:46:28 +02001114}
1115
1116static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
1117{
Jan Kiszka21174c32009-12-02 12:36:35 +01001118 static const uint8_t buf[1024];
1119 int block_len;
1120
1121 while (size > 0) {
1122 block_len = MIN(sizeof(buf), size);
1123 size -= block_len;
1124 qemu_put_buffer(f, buf, block_len);
1125 }
Juan Quintela76507c72009-10-19 15:46:28 +02001126}
1127
1128const VMStateInfo vmstate_info_unused_buffer = {
1129 .name = "unused_buffer",
1130 .get = get_unused_buffer,
1131 .put = put_unused_buffer,
1132};
1133
Alex Williamson7685ee62010-06-25 11:09:14 -06001134typedef struct CompatEntry {
1135 char idstr[256];
1136 int instance_id;
1137} CompatEntry;
1138
aliguoria672b462008-11-11 21:33:36 +00001139typedef struct SaveStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001140 QTAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001141 char idstr[256];
1142 int instance_id;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001143 int alias_id;
aliguoria672b462008-11-11 21:33:36 +00001144 int version_id;
1145 int section_id;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001146 SaveVMHandlers *ops;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001147 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +00001148 void *opaque;
Alex Williamson7685ee62010-06-25 11:09:14 -06001149 CompatEntry *compat;
Cam Macdonell24312962010-07-26 18:11:00 -06001150 int no_migrate;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001151 int is_ram;
aliguoria672b462008-11-11 21:33:36 +00001152} SaveStateEntry;
1153
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001154
Blue Swirl72cf2d42009-09-12 07:36:22 +00001155static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1156 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001157static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +00001158
Juan Quintela8718e992009-09-01 02:12:31 +02001159static int calculate_new_instance_id(const char *idstr)
1160{
1161 SaveStateEntry *se;
1162 int instance_id = 0;
1163
Blue Swirl72cf2d42009-09-12 07:36:22 +00001164 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +02001165 if (strcmp(idstr, se->idstr) == 0
1166 && instance_id <= se->instance_id) {
1167 instance_id = se->instance_id + 1;
1168 }
1169 }
1170 return instance_id;
1171}
1172
Alex Williamson7685ee62010-06-25 11:09:14 -06001173static int calculate_compat_instance_id(const char *idstr)
1174{
1175 SaveStateEntry *se;
1176 int instance_id = 0;
1177
1178 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1179 if (!se->compat)
1180 continue;
1181
1182 if (strcmp(idstr, se->compat->idstr) == 0
1183 && instance_id <= se->compat->instance_id) {
1184 instance_id = se->compat->instance_id + 1;
1185 }
1186 }
1187 return instance_id;
1188}
1189
aliguoria672b462008-11-11 21:33:36 +00001190/* TODO: Individual devices generally have very little idea about the rest
1191 of the system, so instance_id should be removed/replaced.
1192 Meanwhile pass -1 as instance_id if you do not already have a clearly
1193 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -06001194int register_savevm_live(DeviceState *dev,
1195 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001196 int instance_id,
1197 int version_id,
Juan Quintela7908c782012-06-26 18:46:10 +02001198 SaveVMHandlers *ops,
aliguoria672b462008-11-11 21:33:36 +00001199 void *opaque)
1200{
Juan Quintela8718e992009-09-01 02:12:31 +02001201 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +00001202
Anthony Liguori7267c092011-08-20 22:09:37 -05001203 se = g_malloc0(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +00001204 se->version_id = version_id;
1205 se->section_id = global_section_id++;
Juan Quintela7908c782012-06-26 18:46:10 +02001206 se->ops = ops;
aliguoria672b462008-11-11 21:33:36 +00001207 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001208 se->vmsd = NULL;
Cam Macdonell24312962010-07-26 18:11:00 -06001209 se->no_migrate = 0;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001210 /* if this is a live_savem then set is_ram */
Juan Quintela16310a32012-06-28 15:31:37 +02001211 if (ops->save_live_setup != NULL) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001212 se->is_ram = 1;
1213 }
aliguoria672b462008-11-11 21:33:36 +00001214
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001215 if (dev) {
1216 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001217 if (id) {
1218 pstrcpy(se->idstr, sizeof(se->idstr), id);
1219 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001220 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001221
Anthony Liguori7267c092011-08-20 22:09:37 -05001222 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001223 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1224 se->compat->instance_id = instance_id == -1 ?
1225 calculate_compat_instance_id(idstr) : instance_id;
1226 instance_id = -1;
1227 }
1228 }
1229 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1230
Juan Quintela8718e992009-09-01 02:12:31 +02001231 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001232 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001233 } else {
1234 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +00001235 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001236 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001237 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001238 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +00001239 return 0;
1240}
1241
Alex Williamson0be71e32010-06-25 11:09:07 -06001242int register_savevm(DeviceState *dev,
1243 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001244 int instance_id,
1245 int version_id,
1246 SaveStateHandler *save_state,
1247 LoadStateHandler *load_state,
1248 void *opaque)
1249{
Juan Quintela7908c782012-06-26 18:46:10 +02001250 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
1251 ops->save_state = save_state;
1252 ops->load_state = load_state;
Alex Williamson0be71e32010-06-25 11:09:07 -06001253 return register_savevm_live(dev, idstr, instance_id, version_id,
Juan Quintela7908c782012-06-26 18:46:10 +02001254 ops, opaque);
aliguoria672b462008-11-11 21:33:36 +00001255}
1256
Alex Williamson0be71e32010-06-25 11:09:07 -06001257void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +00001258{
Juan Quintela8718e992009-09-01 02:12:31 +02001259 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001260 char id[256] = "";
1261
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001262 if (dev) {
1263 char *path = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001264 if (path) {
1265 pstrcpy(id, sizeof(id), path);
1266 pstrcat(id, sizeof(id), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001267 g_free(path);
Alex Williamson7685ee62010-06-25 11:09:14 -06001268 }
1269 }
1270 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +00001271
Blue Swirl72cf2d42009-09-12 07:36:22 +00001272 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001273 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001274 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001275 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001276 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001277 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02001278 g_free(se->ops);
Anthony Liguori7267c092011-08-20 22:09:37 -05001279 g_free(se);
aliguori41bd13a2009-04-17 17:10:59 +00001280 }
aliguori41bd13a2009-04-17 17:10:59 +00001281 }
1282}
1283
Alex Williamson0be71e32010-06-25 11:09:07 -06001284int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001285 const VMStateDescription *vmsd,
1286 void *opaque, int alias_id,
1287 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001288{
Juan Quintela8718e992009-09-01 02:12:31 +02001289 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001290
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001291 /* If this triggers, alias support can be dropped for the vmsd. */
1292 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1293
Anthony Liguori7267c092011-08-20 22:09:37 -05001294 se = g_malloc0(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001295 se->version_id = vmsd->version_id;
1296 se->section_id = global_section_id++;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001297 se->opaque = opaque;
1298 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001299 se->alias_id = alias_id;
Gerd Hoffmann2837c8e2011-07-08 10:44:35 +02001300 se->no_migrate = vmsd->unmigratable;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001301
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001302 if (dev) {
1303 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001304 if (id) {
1305 pstrcpy(se->idstr, sizeof(se->idstr), id);
1306 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001307 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001308
Anthony Liguori7267c092011-08-20 22:09:37 -05001309 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001310 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1311 se->compat->instance_id = instance_id == -1 ?
1312 calculate_compat_instance_id(vmsd->name) : instance_id;
1313 instance_id = -1;
1314 }
1315 }
1316 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1317
Juan Quintela8718e992009-09-01 02:12:31 +02001318 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001319 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001320 } else {
1321 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001322 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001323 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001324 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001325 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001326 return 0;
1327}
1328
Alex Williamson0be71e32010-06-25 11:09:07 -06001329int vmstate_register(DeviceState *dev, int instance_id,
1330 const VMStateDescription *vmsd, void *opaque)
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001331{
Alex Williamson0be71e32010-06-25 11:09:07 -06001332 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1333 opaque, -1, 0);
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001334}
1335
Alex Williamson0be71e32010-06-25 11:09:07 -06001336void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1337 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001338{
Juan Quintela1eb75382009-09-10 03:04:29 +02001339 SaveStateEntry *se, *new_se;
1340
Blue Swirl72cf2d42009-09-12 07:36:22 +00001341 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +02001342 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001343 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001344 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001345 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001346 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001347 g_free(se);
Juan Quintela1eb75382009-09-10 03:04:29 +02001348 }
1349 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001350}
1351
Juan Quintela811814b2010-07-26 21:38:43 +02001352static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1353 void *opaque);
1354static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1355 void *opaque);
1356
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001357int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1358 void *opaque, int version_id)
1359{
1360 VMStateField *field = vmsd->fields;
Juan Quintela811814b2010-07-26 21:38:43 +02001361 int ret;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001362
1363 if (version_id > vmsd->version_id) {
1364 return -EINVAL;
1365 }
1366 if (version_id < vmsd->minimum_version_id_old) {
1367 return -EINVAL;
1368 }
1369 if (version_id < vmsd->minimum_version_id) {
1370 return vmsd->load_state_old(f, opaque, version_id);
1371 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001372 if (vmsd->pre_load) {
1373 int ret = vmsd->pre_load(opaque);
1374 if (ret)
1375 return ret;
1376 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001377 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001378 if ((field->field_exists &&
1379 field->field_exists(opaque, version_id)) ||
1380 (!field->field_exists &&
1381 field->version_id <= version_id)) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001382 void *base_addr = opaque + field->offset;
Juan Quintela811814b2010-07-26 21:38:43 +02001383 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001384 int size = field->size;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001385
Juan Quintelae61a1e02009-12-02 12:36:38 +01001386 if (field->flags & VMS_VBUFFER) {
1387 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001388 if (field->flags & VMS_MULTIPLY) {
1389 size *= field->size;
1390 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001391 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001392 if (field->flags & VMS_ARRAY) {
1393 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001394 } else if (field->flags & VMS_VARRAY_INT32) {
1395 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelaa624b082011-03-10 12:33:50 +01001396 } else if (field->flags & VMS_VARRAY_UINT32) {
1397 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001398 } else if (field->flags & VMS_VARRAY_UINT16) {
1399 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintela82fa39b2011-03-10 12:33:49 +01001400 } else if (field->flags & VMS_VARRAY_UINT8) {
1401 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001402 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001403 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001404 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001405 }
1406 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001407 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001408
Juan Quintela19df4382009-09-29 22:48:41 +02001409 if (field->flags & VMS_ARRAY_OF_POINTER) {
1410 addr = *(void **)addr;
1411 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001412 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001413 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001414 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001415 ret = field->info->get(f, addr, size);
Juan Quintelaec245e22009-08-20 19:42:29 +02001416
1417 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001418 if (ret < 0) {
1419 return ret;
1420 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001421 }
1422 }
1423 field++;
1424 }
Juan Quintela811814b2010-07-26 21:38:43 +02001425 ret = vmstate_subsection_load(f, vmsd, opaque);
1426 if (ret != 0) {
1427 return ret;
1428 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001429 if (vmsd->post_load) {
Juan Quintelae59fb372009-09-29 22:48:21 +02001430 return vmsd->post_load(opaque, version_id);
Juan Quintela752ff2f2009-09-10 03:04:30 +02001431 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001432 return 0;
1433}
1434
1435void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001436 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001437{
1438 VMStateField *field = vmsd->fields;
1439
Juan Quintela8fb07912009-09-10 03:04:32 +02001440 if (vmsd->pre_save) {
1441 vmsd->pre_save(opaque);
1442 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001443 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001444 if (!field->field_exists ||
1445 field->field_exists(opaque, vmsd->version_id)) {
1446 void *base_addr = opaque + field->offset;
1447 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001448 int size = field->size;
Juan Quinteladde04632009-08-20 19:42:26 +02001449
Juan Quintelae61a1e02009-12-02 12:36:38 +01001450 if (field->flags & VMS_VBUFFER) {
1451 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001452 if (field->flags & VMS_MULTIPLY) {
1453 size *= field->size;
1454 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001455 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001456 if (field->flags & VMS_ARRAY) {
1457 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001458 } else if (field->flags & VMS_VARRAY_INT32) {
1459 n_elems = *(int32_t *)(opaque+field->num_offset);
Amos Kong1329d182012-03-13 14:05:36 +08001460 } else if (field->flags & VMS_VARRAY_UINT32) {
1461 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001462 } else if (field->flags & VMS_VARRAY_UINT16) {
1463 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintelab7844212011-03-15 15:53:25 +01001464 } else if (field->flags & VMS_VARRAY_UINT8) {
1465 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001466 }
1467 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001468 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001469 }
1470 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001471 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001472
Juan Quintela85953872009-12-02 12:36:37 +01001473 if (field->flags & VMS_ARRAY_OF_POINTER) {
1474 addr = *(void **)addr;
1475 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001476 if (field->flags & VMS_STRUCT) {
1477 vmstate_save_state(f, field->vmsd, addr);
1478 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001479 field->info->put(f, addr, size);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001480 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001481 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001482 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001483 field++;
1484 }
Juan Quintela811814b2010-07-26 21:38:43 +02001485 vmstate_subsection_save(f, vmsd, opaque);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001486}
1487
Juan Quintela4082be42009-08-20 19:42:24 +02001488static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1489{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001490 if (!se->vmsd) { /* Old style */
Juan Quintela22ea40f2012-06-26 17:19:10 +02001491 return se->ops->load_state(f, se->opaque, version_id);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001492 }
1493 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001494}
1495
Alex Williamsondc912122011-01-11 14:39:43 -07001496static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
Juan Quintela4082be42009-08-20 19:42:24 +02001497{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001498 if (!se->vmsd) { /* Old style */
Juan Quintela22ea40f2012-06-26 17:19:10 +02001499 se->ops->save_state(f, se->opaque);
Alex Williamsondc912122011-01-11 14:39:43 -07001500 return;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001501 }
1502 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +02001503}
1504
aliguoria672b462008-11-11 21:33:36 +00001505#define QEMU_VM_FILE_MAGIC 0x5145564d
1506#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1507#define QEMU_VM_FILE_VERSION 0x00000003
1508
1509#define QEMU_VM_EOF 0x00
1510#define QEMU_VM_SECTION_START 0x01
1511#define QEMU_VM_SECTION_PART 0x02
1512#define QEMU_VM_SECTION_END 0x03
1513#define QEMU_VM_SECTION_FULL 0x04
Juan Quintela811814b2010-07-26 21:38:43 +02001514#define QEMU_VM_SUBSECTION 0x05
aliguoria672b462008-11-11 21:33:36 +00001515
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001516bool qemu_savevm_state_blocked(Error **errp)
Alex Williamsondc912122011-01-11 14:39:43 -07001517{
1518 SaveStateEntry *se;
1519
1520 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1521 if (se->no_migrate) {
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001522 error_set(errp, QERR_MIGRATION_NOT_SUPPORTED, se->idstr);
Alex Williamsondc912122011-01-11 14:39:43 -07001523 return true;
1524 }
1525 }
1526 return false;
1527}
1528
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001529int qemu_savevm_state_begin(QEMUFile *f,
1530 const MigrationParams *params)
aliguoria672b462008-11-11 21:33:36 +00001531{
1532 SaveStateEntry *se;
Juan Quintela39346382011-09-22 11:02:14 +02001533 int ret;
aliguoria672b462008-11-11 21:33:36 +00001534
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001535 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela22ea40f2012-06-26 17:19:10 +02001536 if (!se->ops || !se->ops->set_params) {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001537 continue;
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001538 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02001539 se->ops->set_params(params, se->opaque);
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001540 }
1541
aliguoria672b462008-11-11 21:33:36 +00001542 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1543 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1544
Blue Swirl72cf2d42009-09-12 07:36:22 +00001545 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001546 int len;
1547
Juan Quintelad1315aa2012-06-28 15:11:57 +02001548 if (!se->ops || !se->ops->save_live_setup) {
aliguoria672b462008-11-11 21:33:36 +00001549 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001550 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001551 if (se->ops && se->ops->is_active) {
1552 if (!se->ops->is_active(se->opaque)) {
1553 continue;
1554 }
1555 }
aliguoria672b462008-11-11 21:33:36 +00001556 /* Section type */
1557 qemu_put_byte(f, QEMU_VM_SECTION_START);
1558 qemu_put_be32(f, se->section_id);
1559
1560 /* ID string */
1561 len = strlen(se->idstr);
1562 qemu_put_byte(f, len);
1563 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1564
1565 qemu_put_be32(f, se->instance_id);
1566 qemu_put_be32(f, se->version_id);
1567
Juan Quintelad1315aa2012-06-28 15:11:57 +02001568 ret = se->ops->save_live_setup(f, se->opaque);
Juan Quintela29757252011-10-19 15:22:18 +02001569 if (ret < 0) {
Luiz Capitulino539de122011-12-05 14:06:56 -02001570 qemu_savevm_state_cancel(f);
Juan Quintela29757252011-10-19 15:22:18 +02001571 return ret;
1572 }
aliguoria672b462008-11-11 21:33:36 +00001573 }
Juan Quintela624b9cc2011-10-05 01:02:52 +02001574 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001575 if (ret != 0) {
Luiz Capitulino539de122011-12-05 14:06:56 -02001576 qemu_savevm_state_cancel(f);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001577 }
aliguoria672b462008-11-11 21:33:36 +00001578
Juan Quintela39346382011-09-22 11:02:14 +02001579 return ret;
1580
aliguoria672b462008-11-11 21:33:36 +00001581}
1582
Juan Quintela39346382011-09-22 11:02:14 +02001583/*
Dong Xu Wang07f35072011-11-22 18:06:26 +08001584 * this function has three return values:
Juan Quintela39346382011-09-22 11:02:14 +02001585 * negative: there was one error, and we have -errno.
1586 * 0 : We haven't finished, caller have to go again
1587 * 1 : We have finished, we can go to complete phase
1588 */
Luiz Capitulino539de122011-12-05 14:06:56 -02001589int qemu_savevm_state_iterate(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001590{
1591 SaveStateEntry *se;
1592 int ret = 1;
1593
Blue Swirl72cf2d42009-09-12 07:36:22 +00001594 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela16310a32012-06-28 15:31:37 +02001595 if (!se->ops || !se->ops->save_live_iterate) {
aliguoria672b462008-11-11 21:33:36 +00001596 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001597 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001598 if (se->ops && se->ops->is_active) {
1599 if (!se->ops->is_active(se->opaque)) {
1600 continue;
1601 }
1602 }
Juan Quintelaaac844e2012-05-22 00:38:26 +02001603 if (qemu_file_rate_limit(f)) {
1604 return 0;
1605 }
Juan Quintela517a13c2012-05-21 23:46:44 +02001606 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001607 /* Section type */
1608 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1609 qemu_put_be32(f, se->section_id);
1610
Juan Quintela16310a32012-06-28 15:31:37 +02001611 ret = se->ops->save_live_iterate(f, se->opaque);
Juan Quintela517a13c2012-05-21 23:46:44 +02001612 trace_savevm_section_end(se->section_id);
1613
Juan Quintela29757252011-10-19 15:22:18 +02001614 if (ret <= 0) {
Jan Kiszka90697be2009-12-01 15:19:55 +01001615 /* Do not proceed to the next vmstate before this one reported
1616 completion of the current stage. This serializes the migration
1617 and reduces the probability that a faster changing state is
1618 synchronized over and over again. */
1619 break;
1620 }
aliguoria672b462008-11-11 21:33:36 +00001621 }
Juan Quintela39346382011-09-22 11:02:14 +02001622 if (ret != 0) {
1623 return ret;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001624 }
Juan Quintela624b9cc2011-10-05 01:02:52 +02001625 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001626 if (ret != 0) {
Luiz Capitulino539de122011-12-05 14:06:56 -02001627 qemu_savevm_state_cancel(f);
Juan Quintela39346382011-09-22 11:02:14 +02001628 }
1629 return ret;
aliguoria672b462008-11-11 21:33:36 +00001630}
1631
Luiz Capitulino539de122011-12-05 14:06:56 -02001632int qemu_savevm_state_complete(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001633{
1634 SaveStateEntry *se;
Juan Quintela29757252011-10-19 15:22:18 +02001635 int ret;
aliguoria672b462008-11-11 21:33:36 +00001636
Jan Kiszkaea375f92010-03-01 19:10:30 +01001637 cpu_synchronize_all_states();
1638
Blue Swirl72cf2d42009-09-12 07:36:22 +00001639 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela16310a32012-06-28 15:31:37 +02001640 if (!se->ops || !se->ops->save_live_complete) {
aliguoria672b462008-11-11 21:33:36 +00001641 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001642 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001643 if (se->ops && se->ops->is_active) {
1644 if (!se->ops->is_active(se->opaque)) {
1645 continue;
1646 }
1647 }
Juan Quintela517a13c2012-05-21 23:46:44 +02001648 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001649 /* Section type */
1650 qemu_put_byte(f, QEMU_VM_SECTION_END);
1651 qemu_put_be32(f, se->section_id);
1652
Juan Quintela16310a32012-06-28 15:31:37 +02001653 ret = se->ops->save_live_complete(f, se->opaque);
Juan Quintela517a13c2012-05-21 23:46:44 +02001654 trace_savevm_section_end(se->section_id);
Juan Quintela29757252011-10-19 15:22:18 +02001655 if (ret < 0) {
1656 return ret;
1657 }
aliguoria672b462008-11-11 21:33:36 +00001658 }
1659
Blue Swirl72cf2d42009-09-12 07:36:22 +00001660 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001661 int len;
1662
Juan Quintela22ea40f2012-06-26 17:19:10 +02001663 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
aliguoria672b462008-11-11 21:33:36 +00001664 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001665 }
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_FULL);
1669 qemu_put_be32(f, se->section_id);
1670
1671 /* ID string */
1672 len = strlen(se->idstr);
1673 qemu_put_byte(f, len);
1674 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1675
1676 qemu_put_be32(f, se->instance_id);
1677 qemu_put_be32(f, se->version_id);
1678
Alex Williamsondc912122011-01-11 14:39:43 -07001679 vmstate_save(f, se);
Juan Quintela517a13c2012-05-21 23:46:44 +02001680 trace_savevm_section_end(se->section_id);
aliguoria672b462008-11-11 21:33:36 +00001681 }
1682
1683 qemu_put_byte(f, QEMU_VM_EOF);
1684
Juan Quintela624b9cc2011-10-05 01:02:52 +02001685 return qemu_file_get_error(f);
aliguoria672b462008-11-11 21:33:36 +00001686}
1687
Luiz Capitulino539de122011-12-05 14:06:56 -02001688void qemu_savevm_state_cancel(QEMUFile *f)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001689{
1690 SaveStateEntry *se;
1691
1692 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela9b5bfab2012-06-26 19:26:41 +02001693 if (se->ops && se->ops->cancel) {
1694 se->ops->cancel(se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001695 }
1696 }
1697}
1698
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001699static int qemu_savevm_state(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001700{
aliguoria672b462008-11-11 21:33:36 +00001701 int ret;
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001702 MigrationParams params = {
1703 .blk = 0,
1704 .shared = 0
1705 };
aliguoria672b462008-11-11 21:33:36 +00001706
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001707 if (qemu_savevm_state_blocked(NULL)) {
Alex Williamsondc912122011-01-11 14:39:43 -07001708 ret = -EINVAL;
1709 goto out;
1710 }
1711
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001712 ret = qemu_savevm_state_begin(f, &params);
aliguoria672b462008-11-11 21:33:36 +00001713 if (ret < 0)
1714 goto out;
1715
1716 do {
Luiz Capitulino539de122011-12-05 14:06:56 -02001717 ret = qemu_savevm_state_iterate(f);
aliguoria672b462008-11-11 21:33:36 +00001718 if (ret < 0)
1719 goto out;
1720 } while (ret == 0);
1721
Luiz Capitulino539de122011-12-05 14:06:56 -02001722 ret = qemu_savevm_state_complete(f);
aliguoria672b462008-11-11 21:33:36 +00001723
1724out:
Juan Quintela39346382011-09-22 11:02:14 +02001725 if (ret == 0) {
Juan Quintela624b9cc2011-10-05 01:02:52 +02001726 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001727 }
aliguoria672b462008-11-11 21:33:36 +00001728
aliguoria672b462008-11-11 21:33:36 +00001729 return ret;
1730}
1731
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001732static int qemu_save_device_state(QEMUFile *f)
1733{
1734 SaveStateEntry *se;
1735
1736 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1737 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1738
1739 cpu_synchronize_all_states();
1740
1741 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1742 int len;
1743
1744 if (se->is_ram) {
1745 continue;
1746 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02001747 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001748 continue;
1749 }
1750
1751 /* Section type */
1752 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1753 qemu_put_be32(f, se->section_id);
1754
1755 /* ID string */
1756 len = strlen(se->idstr);
1757 qemu_put_byte(f, len);
1758 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1759
1760 qemu_put_be32(f, se->instance_id);
1761 qemu_put_be32(f, se->version_id);
1762
1763 vmstate_save(f, se);
1764 }
1765
1766 qemu_put_byte(f, QEMU_VM_EOF);
1767
1768 return qemu_file_get_error(f);
1769}
1770
aliguoria672b462008-11-11 21:33:36 +00001771static SaveStateEntry *find_se(const char *idstr, int instance_id)
1772{
1773 SaveStateEntry *se;
1774
Blue Swirl72cf2d42009-09-12 07:36:22 +00001775 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001776 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001777 (instance_id == se->instance_id ||
1778 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +00001779 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001780 /* Migrating from an older version? */
1781 if (strstr(se->idstr, idstr) && se->compat) {
1782 if (!strcmp(se->compat->idstr, idstr) &&
1783 (instance_id == se->compat->instance_id ||
1784 instance_id == se->alias_id))
1785 return se;
1786 }
aliguoria672b462008-11-11 21:33:36 +00001787 }
1788 return NULL;
1789}
1790
Juan Quintela811814b2010-07-26 21:38:43 +02001791static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1792{
1793 while(sub && sub->needed) {
1794 if (strcmp(idstr, sub->vmsd->name) == 0) {
1795 return sub->vmsd;
1796 }
1797 sub++;
1798 }
1799 return NULL;
1800}
1801
1802static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1803 void *opaque)
1804{
Juan Quintelac6380722011-10-04 15:28:31 +02001805 while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
Juan Quintela811814b2010-07-26 21:38:43 +02001806 char idstr[256];
1807 int ret;
Juan Quintelac6380722011-10-04 15:28:31 +02001808 uint8_t version_id, len, size;
Juan Quintela811814b2010-07-26 21:38:43 +02001809 const VMStateDescription *sub_vmsd;
1810
Juan Quintelac6380722011-10-04 15:28:31 +02001811 len = qemu_peek_byte(f, 1);
1812 if (len < strlen(vmsd->name) + 1) {
1813 /* subsection name has be be "section_name/a" */
1814 return 0;
1815 }
1816 size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
1817 if (size != len) {
1818 return 0;
1819 }
1820 idstr[size] = 0;
Juan Quintela811814b2010-07-26 21:38:43 +02001821
Juan Quintelac6380722011-10-04 15:28:31 +02001822 if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
1823 /* it don't have a valid subsection name */
1824 return 0;
1825 }
Juan Quintela3da9eeb2011-09-30 19:46:43 +02001826 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
Juan Quintela811814b2010-07-26 21:38:43 +02001827 if (sub_vmsd == NULL) {
1828 return -ENOENT;
1829 }
Juan Quintelac6380722011-10-04 15:28:31 +02001830 qemu_file_skip(f, 1); /* subsection */
1831 qemu_file_skip(f, 1); /* len */
1832 qemu_file_skip(f, len); /* idstr */
1833 version_id = qemu_get_be32(f);
1834
Juan Quintela811814b2010-07-26 21:38:43 +02001835 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1836 if (ret) {
1837 return ret;
1838 }
1839 }
1840 return 0;
1841}
1842
1843static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1844 void *opaque)
1845{
1846 const VMStateSubsection *sub = vmsd->subsections;
1847
1848 while (sub && sub->needed) {
1849 if (sub->needed(opaque)) {
1850 const VMStateDescription *vmsd = sub->vmsd;
1851 uint8_t len;
1852
1853 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1854 len = strlen(vmsd->name);
1855 qemu_put_byte(f, len);
1856 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1857 qemu_put_be32(f, vmsd->version_id);
1858 vmstate_save_state(f, vmsd, opaque);
1859 }
1860 sub++;
1861 }
1862}
1863
aliguoria672b462008-11-11 21:33:36 +00001864typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001865 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001866 SaveStateEntry *se;
1867 int section_id;
1868 int version_id;
aliguoria672b462008-11-11 21:33:36 +00001869} LoadStateEntry;
1870
aliguoria672b462008-11-11 21:33:36 +00001871int qemu_loadvm_state(QEMUFile *f)
1872{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001873 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1874 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001875 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00001876 uint8_t section_type;
1877 unsigned int v;
1878 int ret;
1879
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001880 if (qemu_savevm_state_blocked(NULL)) {
Alex Williamsondc912122011-01-11 14:39:43 -07001881 return -EINVAL;
1882 }
1883
aliguoria672b462008-11-11 21:33:36 +00001884 v = qemu_get_be32(f);
1885 if (v != QEMU_VM_FILE_MAGIC)
1886 return -EINVAL;
1887
1888 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02001889 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1890 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1891 return -ENOTSUP;
1892 }
aliguoria672b462008-11-11 21:33:36 +00001893 if (v != QEMU_VM_FILE_VERSION)
1894 return -ENOTSUP;
1895
1896 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1897 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00001898 SaveStateEntry *se;
1899 char idstr[257];
1900 int len;
1901
1902 switch (section_type) {
1903 case QEMU_VM_SECTION_START:
1904 case QEMU_VM_SECTION_FULL:
1905 /* Read section start */
1906 section_id = qemu_get_be32(f);
1907 len = qemu_get_byte(f);
1908 qemu_get_buffer(f, (uint8_t *)idstr, len);
1909 idstr[len] = 0;
1910 instance_id = qemu_get_be32(f);
1911 version_id = qemu_get_be32(f);
1912
1913 /* Find savevm section */
1914 se = find_se(idstr, instance_id);
1915 if (se == NULL) {
1916 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1917 ret = -EINVAL;
1918 goto out;
1919 }
1920
1921 /* Validate version */
1922 if (version_id > se->version_id) {
1923 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1924 version_id, idstr, se->version_id);
1925 ret = -EINVAL;
1926 goto out;
1927 }
1928
1929 /* Add entry */
Anthony Liguori7267c092011-08-20 22:09:37 -05001930 le = g_malloc0(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001931
1932 le->se = se;
1933 le->section_id = section_id;
1934 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001935 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00001936
Juan Quintela4082be42009-08-20 19:42:24 +02001937 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001938 if (ret < 0) {
1939 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1940 instance_id, idstr);
1941 goto out;
1942 }
aliguoria672b462008-11-11 21:33:36 +00001943 break;
1944 case QEMU_VM_SECTION_PART:
1945 case QEMU_VM_SECTION_END:
1946 section_id = qemu_get_be32(f);
1947
Blue Swirl72cf2d42009-09-12 07:36:22 +00001948 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001949 if (le->section_id == section_id) {
1950 break;
1951 }
1952 }
aliguoria672b462008-11-11 21:33:36 +00001953 if (le == NULL) {
1954 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1955 ret = -EINVAL;
1956 goto out;
1957 }
1958
Juan Quintela4082be42009-08-20 19:42:24 +02001959 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001960 if (ret < 0) {
1961 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1962 section_id);
1963 goto out;
1964 }
aliguoria672b462008-11-11 21:33:36 +00001965 break;
1966 default:
1967 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1968 ret = -EINVAL;
1969 goto out;
1970 }
1971 }
1972
Jan Kiszkaea375f92010-03-01 19:10:30 +01001973 cpu_synchronize_all_post_init();
1974
aliguoria672b462008-11-11 21:33:36 +00001975 ret = 0;
1976
1977out:
Blue Swirl72cf2d42009-09-12 07:36:22 +00001978 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1979 QLIST_REMOVE(le, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05001980 g_free(le);
aliguoria672b462008-11-11 21:33:36 +00001981 }
1982
Juan Quintela42802d42011-10-05 01:14:46 +02001983 if (ret == 0) {
1984 ret = qemu_file_get_error(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +02001985 }
aliguoria672b462008-11-11 21:33:36 +00001986
1987 return ret;
1988}
1989
aliguoria672b462008-11-11 21:33:36 +00001990static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1991 const char *name)
1992{
1993 QEMUSnapshotInfo *sn_tab, *sn;
1994 int nb_sns, i, ret;
1995
1996 ret = -ENOENT;
1997 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1998 if (nb_sns < 0)
1999 return ret;
2000 for(i = 0; i < nb_sns; i++) {
2001 sn = &sn_tab[i];
2002 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
2003 *sn_info = *sn;
2004 ret = 0;
2005 break;
2006 }
2007 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002008 g_free(sn_tab);
aliguoria672b462008-11-11 21:33:36 +00002009 return ret;
2010}
2011
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002012/*
2013 * Deletes snapshots of a given name in all opened images.
2014 */
2015static int del_existing_snapshots(Monitor *mon, const char *name)
2016{
2017 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002018 QEMUSnapshotInfo sn1, *snapshot = &sn1;
2019 int ret;
2020
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002021 bs = NULL;
2022 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002023 if (bdrv_can_snapshot(bs) &&
2024 bdrv_snapshot_find(bs, snapshot, name) >= 0)
2025 {
2026 ret = bdrv_snapshot_delete(bs, name);
2027 if (ret < 0) {
2028 monitor_printf(mon,
2029 "Error while deleting snapshot on '%s'\n",
2030 bdrv_get_device_name(bs));
2031 return -1;
2032 }
2033 }
2034 }
2035
2036 return 0;
2037}
2038
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002039void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002040{
2041 BlockDriverState *bs, *bs1;
2042 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002043 int ret;
aliguoria672b462008-11-11 21:33:36 +00002044 QEMUFile *f;
2045 int saved_vm_running;
Kevin Wolfc2c9a462011-11-16 11:35:54 +01002046 uint64_t vm_state_size;
aliguoria672b462008-11-11 21:33:36 +00002047#ifdef _WIN32
2048 struct _timeb tb;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002049 struct tm *ptm;
aliguoria672b462008-11-11 21:33:36 +00002050#else
2051 struct timeval tv;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002052 struct tm tm;
aliguoria672b462008-11-11 21:33:36 +00002053#endif
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002054 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002055
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002056 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002057 bs = NULL;
2058 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002059
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002060 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002061 continue;
2062 }
2063
2064 if (!bdrv_can_snapshot(bs)) {
2065 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
2066 bdrv_get_device_name(bs));
2067 return;
2068 }
2069 }
2070
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002071 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002072 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002073 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002074 return;
2075 }
aliguoria672b462008-11-11 21:33:36 +00002076
Luiz Capitulino13548692011-07-29 15:36:43 -03002077 saved_vm_running = runstate_is_running();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002078 vm_stop(RUN_STATE_SAVE_VM);
aliguoria672b462008-11-11 21:33:36 +00002079
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002080 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +00002081
2082 /* fill auxiliary fields */
2083#ifdef _WIN32
2084 _ftime(&tb);
2085 sn->date_sec = tb.time;
2086 sn->date_nsec = tb.millitm * 1000000;
2087#else
2088 gettimeofday(&tv, NULL);
2089 sn->date_sec = tv.tv_sec;
2090 sn->date_nsec = tv.tv_usec * 1000;
2091#endif
Paolo Bonzini74475452011-03-11 16:47:48 +01002092 sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
aliguoria672b462008-11-11 21:33:36 +00002093
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002094 if (name) {
2095 ret = bdrv_snapshot_find(bs, old_sn, name);
2096 if (ret >= 0) {
2097 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2098 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2099 } else {
2100 pstrcpy(sn->name, sizeof(sn->name), name);
2101 }
2102 } else {
2103#ifdef _WIN32
Stefan Weil55dd9ff2012-04-12 22:33:12 +02002104 time_t t = tb.time;
2105 ptm = localtime(&t);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002106 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
2107#else
Blue Swirld7d9b522010-09-09 19:13:04 +00002108 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2109 localtime_r((const time_t *)&tv.tv_sec, &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002110 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2111#endif
2112 }
2113
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002114 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -02002115 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002116 goto the_end;
2117 }
2118
aliguoria672b462008-11-11 21:33:36 +00002119 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02002120 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00002121 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00002122 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00002123 goto the_end;
2124 }
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02002125 ret = qemu_savevm_state(f);
aliguori2d22b182008-12-11 21:06:49 +00002126 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00002127 qemu_fclose(f);
2128 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002129 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00002130 goto the_end;
2131 }
2132
2133 /* create the snapshots */
2134
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002135 bs1 = NULL;
2136 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002137 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +00002138 /* Write VM state size only to the image that contains the state */
2139 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00002140 ret = bdrv_snapshot_create(bs1, sn);
2141 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002142 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
2143 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002144 }
2145 }
2146 }
2147
2148 the_end:
2149 if (saved_vm_running)
2150 vm_start();
2151}
2152
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002153void qmp_xen_save_devices_state(const char *filename, Error **errp)
2154{
2155 QEMUFile *f;
2156 int saved_vm_running;
2157 int ret;
2158
2159 saved_vm_running = runstate_is_running();
2160 vm_stop(RUN_STATE_SAVE_VM);
2161
2162 f = qemu_fopen(filename, "wb");
2163 if (!f) {
2164 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
2165 goto the_end;
2166 }
2167 ret = qemu_save_device_state(f);
2168 qemu_fclose(f);
2169 if (ret < 0) {
2170 error_set(errp, QERR_IO_ERROR);
2171 }
2172
2173 the_end:
2174 if (saved_vm_running)
2175 vm_start();
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002176}
2177
Markus Armbruster03cd4652010-02-17 16:24:10 +01002178int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00002179{
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002180 BlockDriverState *bs, *bs_vm_state;
aliguori2d22b182008-12-11 21:06:49 +00002181 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00002182 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002183 int ret;
aliguoria672b462008-11-11 21:33:36 +00002184
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002185 bs_vm_state = bdrv_snapshots();
2186 if (!bs_vm_state) {
2187 error_report("No block device supports snapshots");
2188 return -ENOTSUP;
2189 }
2190
2191 /* Don't even try to load empty VM states */
2192 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2193 if (ret < 0) {
2194 return ret;
2195 } else if (sn.vm_state_size == 0) {
Kevin Wolfe11480d2011-03-01 10:48:12 +01002196 error_report("This is a disk-only snapshot. Revert to it offline "
2197 "using qemu-img.");
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002198 return -EINVAL;
2199 }
2200
2201 /* Verify if there is any device that doesn't support snapshots and is
2202 writable and check if the requested snapshot is available too. */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002203 bs = NULL;
2204 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002205
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002206 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002207 continue;
2208 }
2209
2210 if (!bdrv_can_snapshot(bs)) {
2211 error_report("Device '%s' is writable but does not support snapshots.",
2212 bdrv_get_device_name(bs));
2213 return -ENOTSUP;
2214 }
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002215
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002216 ret = bdrv_snapshot_find(bs, &sn, name);
2217 if (ret < 0) {
2218 error_report("Device '%s' does not have the requested snapshot '%s'",
2219 bdrv_get_device_name(bs), name);
2220 return ret;
2221 }
aliguoria672b462008-11-11 21:33:36 +00002222 }
2223
2224 /* Flush all IO requests so they don't interfere with the new state. */
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00002225 bdrv_drain_all();
aliguoria672b462008-11-11 21:33:36 +00002226
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002227 bs = NULL;
2228 while ((bs = bdrv_next(bs))) {
2229 if (bdrv_can_snapshot(bs)) {
2230 ret = bdrv_snapshot_goto(bs, name);
aliguoria672b462008-11-11 21:33:36 +00002231 if (ret < 0) {
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002232 error_report("Error %d while activating snapshot '%s' on '%s'",
2233 ret, name, bdrv_get_device_name(bs));
2234 return ret;
aliguoria672b462008-11-11 21:33:36 +00002235 }
2236 }
2237 }
2238
aliguoria672b462008-11-11 21:33:36 +00002239 /* restore the VM state */
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002240 f = qemu_fopen_bdrv(bs_vm_state, 0);
aliguoria672b462008-11-11 21:33:36 +00002241 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002242 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02002243 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00002244 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002245
Jan Kiszka5a8a49d2011-06-14 18:29:45 +02002246 qemu_system_reset(VMRESET_SILENT);
aliguoria672b462008-11-11 21:33:36 +00002247 ret = qemu_loadvm_state(f);
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002248
aliguoria672b462008-11-11 21:33:36 +00002249 qemu_fclose(f);
2250 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002251 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02002252 return ret;
aliguoria672b462008-11-11 21:33:36 +00002253 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002254
Juan Quintela05f24012009-08-20 19:42:22 +02002255 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02002256}
2257
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002258void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002259{
2260 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002261 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002262 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002263
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002264 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002265 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002266 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002267 return;
2268 }
2269
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002270 bs1 = NULL;
2271 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002272 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00002273 ret = bdrv_snapshot_delete(bs1, name);
2274 if (ret < 0) {
2275 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00002276 monitor_printf(mon,
2277 "Snapshots not supported on device '%s'\n",
2278 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002279 else
aliguori376253e2009-03-05 23:01:23 +00002280 monitor_printf(mon, "Error %d while deleting snapshot on "
2281 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002282 }
2283 }
2284 }
2285}
2286
aliguori376253e2009-03-05 23:01:23 +00002287void do_info_snapshots(Monitor *mon)
aliguoria672b462008-11-11 21:33:36 +00002288{
2289 BlockDriverState *bs, *bs1;
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002290 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2291 int nb_sns, i, ret, available;
2292 int total;
2293 int *available_snapshots;
aliguoria672b462008-11-11 21:33:36 +00002294 char buf[256];
2295
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002296 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002297 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002298 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002299 return;
2300 }
aliguoria672b462008-11-11 21:33:36 +00002301
2302 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2303 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00002304 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00002305 return;
2306 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002307
2308 if (nb_sns == 0) {
2309 monitor_printf(mon, "There is no snapshot available.\n");
2310 return;
aliguoria672b462008-11-11 21:33:36 +00002311 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002312
Anthony Liguori7267c092011-08-20 22:09:37 -05002313 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002314 total = 0;
2315 for (i = 0; i < nb_sns; i++) {
2316 sn = &sn_tab[i];
2317 available = 1;
2318 bs1 = NULL;
2319
2320 while ((bs1 = bdrv_next(bs1))) {
2321 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2322 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2323 if (ret < 0) {
2324 available = 0;
2325 break;
2326 }
2327 }
2328 }
2329
2330 if (available) {
2331 available_snapshots[total] = i;
2332 total++;
2333 }
2334 }
2335
2336 if (total > 0) {
2337 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
2338 for (i = 0; i < total; i++) {
2339 sn = &sn_tab[available_snapshots[i]];
2340 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
2341 }
2342 } else {
2343 monitor_printf(mon, "There is no suitable snapshot available\n");
2344 }
2345
Anthony Liguori7267c092011-08-20 22:09:37 -05002346 g_free(sn_tab);
2347 g_free(available_snapshots);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002348
aliguoria672b462008-11-11 21:33:36 +00002349}
Avi Kivityc5705a72011-12-20 15:59:12 +02002350
2351void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2352{
Avi Kivity1ddde082012-01-08 13:18:19 +02002353 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
Avi Kivityc5705a72011-12-20 15:59:12 +02002354 memory_region_name(mr), dev);
2355}
2356
2357void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2358{
2359 /* Nothing do to while the implementation is in RAMBlock */
2360}
2361
2362void vmstate_register_ram_global(MemoryRegion *mr)
2363{
2364 vmstate_register_ram(mr, NULL);
2365}
Orit Wasserman302dfbe2012-08-06 21:42:52 +03002366
2367/*
2368 page = zrun nzrun
2369 | zrun nzrun page
2370
2371 zrun = length
2372
2373 nzrun = length byte...
2374
2375 length = uleb128 encoded integer
2376 */
2377int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
2378 uint8_t *dst, int dlen)
2379{
2380 uint32_t zrun_len = 0, nzrun_len = 0;
2381 int d = 0, i = 0;
2382 long res, xor;
2383 uint8_t *nzrun_start = NULL;
2384
2385 g_assert(!(((uintptr_t)old_buf | (uintptr_t)new_buf | slen) %
2386 sizeof(long)));
2387
2388 while (i < slen) {
2389 /* overflow */
2390 if (d + 2 > dlen) {
2391 return -1;
2392 }
2393
2394 /* not aligned to sizeof(long) */
2395 res = (slen - i) % sizeof(long);
2396 while (res && old_buf[i] == new_buf[i]) {
2397 zrun_len++;
2398 i++;
2399 res--;
2400 }
2401
2402 /* word at a time for speed */
2403 if (!res) {
2404 while (i < slen &&
2405 (*(long *)(old_buf + i)) == (*(long *)(new_buf + i))) {
2406 i += sizeof(long);
2407 zrun_len += sizeof(long);
2408 }
2409
2410 /* go over the rest */
2411 while (i < slen && old_buf[i] == new_buf[i]) {
2412 zrun_len++;
2413 i++;
2414 }
2415 }
2416
2417 /* buffer unchanged */
2418 if (zrun_len == slen) {
2419 return 0;
2420 }
2421
2422 /* skip last zero run */
2423 if (i == slen) {
2424 return d;
2425 }
2426
2427 d += uleb128_encode_small(dst + d, zrun_len);
2428
2429 zrun_len = 0;
2430 nzrun_start = new_buf + i;
2431
2432 /* overflow */
2433 if (d + 2 > dlen) {
2434 return -1;
2435 }
2436 /* not aligned to sizeof(long) */
2437 res = (slen - i) % sizeof(long);
2438 while (res && old_buf[i] != new_buf[i]) {
2439 i++;
2440 nzrun_len++;
2441 res--;
2442 }
2443
2444 /* word at a time for speed, use of 32-bit long okay */
2445 if (!res) {
2446 /* truncation to 32-bit long okay */
Alexander Grafa5b71722012-08-14 12:53:18 +02002447 long mask = (long)0x0101010101010101ULL;
Orit Wasserman302dfbe2012-08-06 21:42:52 +03002448 while (i < slen) {
2449 xor = *(long *)(old_buf + i) ^ *(long *)(new_buf + i);
2450 if ((xor - mask) & ~xor & (mask << 7)) {
2451 /* found the end of an nzrun within the current long */
2452 while (old_buf[i] != new_buf[i]) {
2453 nzrun_len++;
2454 i++;
2455 }
2456 break;
2457 } else {
2458 i += sizeof(long);
2459 nzrun_len += sizeof(long);
2460 }
2461 }
2462 }
2463
2464 d += uleb128_encode_small(dst + d, nzrun_len);
2465 /* overflow */
2466 if (d + nzrun_len > dlen) {
2467 return -1;
2468 }
2469 memcpy(dst + d, nzrun_start, nzrun_len);
2470 d += nzrun_len;
2471 nzrun_len = 0;
2472 }
2473
2474 return d;
2475}
2476
2477int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen)
2478{
2479 int i = 0, d = 0;
2480 int ret;
2481 uint32_t count = 0;
2482
2483 while (i < slen) {
2484
2485 /* zrun */
2486 if ((slen - i) < 2) {
2487 return -1;
2488 }
2489
2490 ret = uleb128_decode_small(src + i, &count);
2491 if (ret < 0 || (i && !count)) {
2492 return -1;
2493 }
2494 i += ret;
2495 d += count;
2496
2497 /* overflow */
2498 if (d > dlen) {
2499 return -1;
2500 }
2501
2502 /* nzrun */
2503 if ((slen - i) < 2) {
2504 return -1;
2505 }
2506
2507 ret = uleb128_decode_small(src + i, &count);
2508 if (ret < 0 || !count) {
2509 return -1;
2510 }
2511 i += ret;
2512
2513 /* overflow */
2514 if (d + count > dlen || i + count > slen) {
2515 return -1;
2516 }
2517
2518 memcpy(dst + d, src + i, count);
2519 d += count;
2520 i += count;
2521 }
2522
2523 return d;
2524}