blob: 7c7774e932d4b331573131ee7a430312da47a830 [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
blueswir1d40cdb12009-03-07 16:52:02 +000025#include "config-host.h"
blueswir1511d2b12009-03-07 15:32:56 +000026#include "qemu-common.h"
27#include "hw/hw.h"
Alex Williamson7685ee62010-06-25 11:09:14 -060028#include "hw/qdev.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +020029#include "net/net.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010030#include "monitor/monitor.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010031#include "sysemu/sysemu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010032#include "qemu/timer.h"
blueswir1511d2b12009-03-07 15:32:56 +000033#include "audio/audio.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +010034#include "migration/migration.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010035#include "qemu/sockets.h"
36#include "qemu/queue.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010037#include "sysemu/cpus.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010038#include "exec/memory.h"
Stefano Stabellinia7ae8352012-01-25 12:24:51 +000039#include "qmp-commands.h"
Juan Quintela517a13c2012-05-21 23:46:44 +020040#include "trace.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010041#include "qemu/bitops.h"
blueswir1511d2b12009-03-07 15:32:56 +000042
aliguoria672b462008-11-11 21:33:36 +000043#define SELF_ANNOUNCE_ROUNDS 5
aliguoria672b462008-11-11 21:33:36 +000044
Nolan18995b92009-10-15 16:53:55 -070045#ifndef ETH_P_RARP
Stefan Bergerf8778a72010-04-24 08:54:07 -040046#define ETH_P_RARP 0x8035
Nolan18995b92009-10-15 16:53:55 -070047#endif
48#define ARP_HTYPE_ETH 0x0001
49#define ARP_PTYPE_IP 0x0800
50#define ARP_OP_REQUEST_REV 0x3
51
52static int announce_self_create(uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +000053 uint8_t *mac_addr)
54{
Nolan18995b92009-10-15 16:53:55 -070055 /* Ethernet header. */
56 memset(buf, 0xff, 6); /* destination MAC addr */
57 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
58 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
aliguoria672b462008-11-11 21:33:36 +000059
Nolan18995b92009-10-15 16:53:55 -070060 /* RARP header. */
61 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
62 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
63 *(buf + 18) = 6; /* hardware addr length (ethernet) */
64 *(buf + 19) = 4; /* protocol addr length (IPv4) */
65 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
66 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
67 memset(buf + 28, 0x00, 4); /* source protocol addr */
68 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
69 memset(buf + 38, 0x00, 4); /* target protocol addr */
aliguoria672b462008-11-11 21:33:36 +000070
Nolan18995b92009-10-15 16:53:55 -070071 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
72 memset(buf + 42, 0x00, 18);
aliguoria672b462008-11-11 21:33:36 +000073
Nolan18995b92009-10-15 16:53:55 -070074 return 60; /* len (FCS will be added by hardware) */
aliguoria672b462008-11-11 21:33:36 +000075}
76
Mark McLoughlinf401ca22009-11-25 18:49:32 +000077static void qemu_announce_self_iter(NICState *nic, void *opaque)
78{
79 uint8_t buf[60];
80 int len;
81
82 len = announce_self_create(buf, nic->conf->macaddr.a);
83
Jason Wangb356f762013-01-30 19:12:22 +080084 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
Mark McLoughlinf401ca22009-11-25 18:49:32 +000085}
86
87
Gleb Natapoved8b3302009-05-21 17:17:44 +030088static void qemu_announce_self_once(void *opaque)
aliguoria672b462008-11-11 21:33:36 +000089{
Gleb Natapoved8b3302009-05-21 17:17:44 +030090 static int count = SELF_ANNOUNCE_ROUNDS;
91 QEMUTimer *timer = *(QEMUTimer **)opaque;
aliguoria672b462008-11-11 21:33:36 +000092
Mark McLoughlinf401ca22009-11-25 18:49:32 +000093 qemu_foreach_nic(qemu_announce_self_iter, NULL);
94
Nolan18995b92009-10-15 16:53:55 -070095 if (--count) {
96 /* delay 50ms, 150ms, 250ms, ... */
Paolo Bonzini7bd427d2011-03-11 16:47:48 +010097 qemu_mod_timer(timer, qemu_get_clock_ms(rt_clock) +
Nolan18995b92009-10-15 16:53:55 -070098 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
Gleb Natapoved8b3302009-05-21 17:17:44 +030099 } else {
100 qemu_del_timer(timer);
101 qemu_free_timer(timer);
102 }
103}
104
105void qemu_announce_self(void)
106{
107 static QEMUTimer *timer;
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100108 timer = qemu_new_timer_ms(rt_clock, qemu_announce_self_once, &timer);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300109 qemu_announce_self_once(&timer);
aliguoria672b462008-11-11 21:33:36 +0000110}
111
112/***********************************************************/
113/* savevm/loadvm support */
114
115#define IO_BUF_SIZE 32768
116
117struct QEMUFile {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200118 const QEMUFileOps *ops;
aliguoria672b462008-11-11 21:33:36 +0000119 void *opaque;
120 int is_write;
121
122 int64_t buf_offset; /* start of buffer when writing, end of buffer
123 when reading */
124 int buf_index;
125 int buf_size; /* 0 when writing */
126 uint8_t buf[IO_BUF_SIZE];
127
Juan Quintela3961b4d2011-10-05 01:05:21 +0200128 int last_error;
aliguoria672b462008-11-11 21:33:36 +0000129};
130
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200131typedef struct QEMUFileStdio
aliguoria672b462008-11-11 21:33:36 +0000132{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200133 FILE *stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000134 QEMUFile *file;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200135} QEMUFileStdio;
aliguoria672b462008-11-11 21:33:36 +0000136
137typedef struct QEMUFileSocket
138{
139 int fd;
140 QEMUFile *file;
141} QEMUFileSocket;
142
Stefan Hajnoczid7cd3692013-02-11 17:01:45 +0100143typedef struct {
144 Coroutine *co;
145 int fd;
146} FDYieldUntilData;
147
148static void fd_coroutine_enter(void *opaque)
149{
150 FDYieldUntilData *data = opaque;
151 qemu_set_fd_handler(data->fd, NULL, NULL, NULL);
152 qemu_coroutine_enter(data->co, NULL);
153}
154
155/**
156 * Yield until a file descriptor becomes readable
157 *
158 * Note that this function clobbers the handlers for the file descriptor.
159 */
160static void coroutine_fn yield_until_fd_readable(int fd)
161{
162 FDYieldUntilData data;
163
164 assert(qemu_in_coroutine());
165 data.co = qemu_coroutine_self();
166 data.fd = fd;
167 qemu_set_fd_handler(fd, fd_coroutine_enter, NULL, &data);
168 qemu_coroutine_yield();
169}
170
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200171static int socket_get_fd(void *opaque)
172{
173 QEMUFileSocket *s = opaque;
174
175 return s->fd;
176}
177
aliguoria672b462008-11-11 21:33:36 +0000178static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
179{
180 QEMUFileSocket *s = opaque;
181 ssize_t len;
182
Paolo Bonzini595ab642012-08-07 11:07:59 +0200183 for (;;) {
Blue Swirl00aa0042011-07-23 20:04:29 +0000184 len = qemu_recv(s->fd, buf, size, 0);
Paolo Bonzini595ab642012-08-07 11:07:59 +0200185 if (len != -1) {
186 break;
187 }
188 if (socket_error() == EAGAIN) {
Stefan Hajnoczid7cd3692013-02-11 17:01:45 +0100189 yield_until_fd_readable(s->fd);
Paolo Bonzini595ab642012-08-07 11:07:59 +0200190 } else if (socket_error() != EINTR) {
191 break;
192 }
193 }
aliguoria672b462008-11-11 21:33:36 +0000194
Paolo Bonzini595ab642012-08-07 11:07:59 +0200195 if (len == -1) {
aliguoria672b462008-11-11 21:33:36 +0000196 len = -socket_error();
Paolo Bonzini595ab642012-08-07 11:07:59 +0200197 }
aliguoria672b462008-11-11 21:33:36 +0000198 return len;
199}
200
201static int socket_close(void *opaque)
202{
203 QEMUFileSocket *s = opaque;
Paolo Bonziniab52a822012-08-07 10:50:26 +0200204 closesocket(s->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -0500205 g_free(s);
aliguoria672b462008-11-11 21:33:36 +0000206 return 0;
207}
208
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200209static int stdio_get_fd(void *opaque)
210{
211 QEMUFileStdio *s = opaque;
212
213 return fileno(s->stdio_file);
214}
215
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200216static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000217{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200218 QEMUFileStdio *s = opaque;
219 return fwrite(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000220}
221
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200222static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000223{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200224 QEMUFileStdio *s = opaque;
225 FILE *fp = s->stdio_file;
Uri Lublin8a67ec42009-06-08 19:27:21 +0300226 int bytes;
227
Paolo Bonzini595ab642012-08-07 11:07:59 +0200228 for (;;) {
Uri Lublin8a67ec42009-06-08 19:27:21 +0300229 clearerr(fp);
230 bytes = fread(buf, 1, size, fp);
Paolo Bonzini595ab642012-08-07 11:07:59 +0200231 if (bytes != 0 || !ferror(fp)) {
232 break;
233 }
234 if (errno == EAGAIN) {
Stefan Hajnoczid7cd3692013-02-11 17:01:45 +0100235 yield_until_fd_readable(fileno(fp));
Paolo Bonzini595ab642012-08-07 11:07:59 +0200236 } else if (errno != EINTR) {
237 break;
238 }
239 }
Uri Lublin8a67ec42009-06-08 19:27:21 +0300240 return bytes;
aliguoria672b462008-11-11 21:33:36 +0000241}
242
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200243static int stdio_pclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000244{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200245 QEMUFileStdio *s = opaque;
Anthony Liguori41ef56e2010-06-02 14:55:25 -0500246 int ret;
247 ret = pclose(s->stdio_file);
Eduardo Habkost26f1af02011-11-10 10:41:44 -0200248 if (ret == -1) {
249 ret = -errno;
250 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500251 g_free(s);
Anthony Liguori41ef56e2010-06-02 14:55:25 -0500252 return ret;
aliguoria672b462008-11-11 21:33:36 +0000253}
254
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200255static int stdio_fclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000256{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200257 QEMUFileStdio *s = opaque;
Eduardo Habkost0e286702011-11-10 10:41:45 -0200258 int ret = 0;
259 if (fclose(s->stdio_file) == EOF) {
260 ret = -errno;
261 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500262 g_free(s);
Eduardo Habkost0e286702011-11-10 10:41:45 -0200263 return ret;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200264}
aliguoria672b462008-11-11 21:33:36 +0000265
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200266static const QEMUFileOps stdio_pipe_read_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200267 .get_fd = stdio_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200268 .get_buffer = stdio_get_buffer,
269 .close = stdio_pclose
270};
271
272static const QEMUFileOps stdio_pipe_write_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200273 .get_fd = stdio_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200274 .put_buffer = stdio_put_buffer,
275 .close = stdio_pclose
276};
277
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200278QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
279{
280 QEMUFileStdio *s;
281
282 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
aliguoria672b462008-11-11 21:33:36 +0000283 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
284 return NULL;
285 }
286
Anthony Liguori7267c092011-08-20 22:09:37 -0500287 s = g_malloc0(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000288
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200289 s->stdio_file = stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000290
291 if(mode[0] == 'r') {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200292 s->file = qemu_fopen_ops(s, &stdio_pipe_read_ops);
aliguoria672b462008-11-11 21:33:36 +0000293 } else {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200294 s->file = qemu_fopen_ops(s, &stdio_pipe_write_ops);
aliguoria672b462008-11-11 21:33:36 +0000295 }
aliguoria672b462008-11-11 21:33:36 +0000296 return s->file;
297}
298
299QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
300{
301 FILE *popen_file;
302
303 popen_file = popen(command, mode);
304 if(popen_file == NULL) {
305 return NULL;
306 }
307
308 return qemu_popen(popen_file, mode);
309}
310
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200311static const QEMUFileOps stdio_file_read_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200312 .get_fd = stdio_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200313 .get_buffer = stdio_get_buffer,
314 .close = stdio_fclose
315};
316
317static const QEMUFileOps stdio_file_write_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200318 .get_fd = stdio_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200319 .put_buffer = stdio_put_buffer,
320 .close = stdio_fclose
321};
322
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200323QEMUFile *qemu_fdopen(int fd, const char *mode)
324{
325 QEMUFileStdio *s;
326
327 if (mode == NULL ||
328 (mode[0] != 'r' && mode[0] != 'w') ||
329 mode[1] != 'b' || mode[2] != 0) {
330 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
331 return NULL;
332 }
333
Anthony Liguori7267c092011-08-20 22:09:37 -0500334 s = g_malloc0(sizeof(QEMUFileStdio));
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200335 s->stdio_file = fdopen(fd, mode);
336 if (!s->stdio_file)
337 goto fail;
338
339 if(mode[0] == 'r') {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200340 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200341 } else {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200342 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200343 }
344 return s->file;
345
346fail:
Anthony Liguori7267c092011-08-20 22:09:37 -0500347 g_free(s);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200348 return NULL;
349}
350
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200351static const QEMUFileOps socket_read_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200352 .get_fd = socket_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200353 .get_buffer = socket_get_buffer,
354 .close = socket_close
355};
356
aliguoria672b462008-11-11 21:33:36 +0000357QEMUFile *qemu_fopen_socket(int fd)
358{
Anthony Liguori7267c092011-08-20 22:09:37 -0500359 QEMUFileSocket *s = g_malloc0(sizeof(QEMUFileSocket));
aliguoria672b462008-11-11 21:33:36 +0000360
aliguoria672b462008-11-11 21:33:36 +0000361 s->fd = fd;
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200362 s->file = qemu_fopen_ops(s, &socket_read_ops);
aliguoria672b462008-11-11 21:33:36 +0000363 return s->file;
364}
365
aliguoria672b462008-11-11 21:33:36 +0000366QEMUFile *qemu_fopen(const char *filename, const char *mode)
367{
368 QEMUFileStdio *s;
369
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200370 if (mode == NULL ||
371 (mode[0] != 'r' && mode[0] != 'w') ||
372 mode[1] != 'b' || mode[2] != 0) {
Blue Swirl090414a2010-03-13 11:36:09 +0000373 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200374 return NULL;
375 }
376
Anthony Liguori7267c092011-08-20 22:09:37 -0500377 s = g_malloc0(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000378
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200379 s->stdio_file = fopen(filename, mode);
380 if (!s->stdio_file)
aliguoria672b462008-11-11 21:33:36 +0000381 goto fail;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200382
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200383 if(mode[0] == 'w') {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200384 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200385 } else {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200386 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200387 }
388 return s->file;
aliguoria672b462008-11-11 21:33:36 +0000389fail:
Anthony Liguori7267c092011-08-20 22:09:37 -0500390 g_free(s);
aliguoria672b462008-11-11 21:33:36 +0000391 return NULL;
392}
393
aliguori178e08a2009-04-05 19:10:55 +0000394static int block_put_buffer(void *opaque, const uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +0000395 int64_t pos, int size)
396{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200397 bdrv_save_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000398 return size;
399}
400
aliguori178e08a2009-04-05 19:10:55 +0000401static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000402{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200403 return bdrv_load_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000404}
405
406static int bdrv_fclose(void *opaque)
407{
Paolo Bonziniad492c92012-06-06 00:04:50 +0200408 return bdrv_flush(opaque);
aliguoria672b462008-11-11 21:33:36 +0000409}
410
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200411static const QEMUFileOps bdrv_read_ops = {
412 .get_buffer = block_get_buffer,
413 .close = bdrv_fclose
414};
415
416static const QEMUFileOps bdrv_write_ops = {
417 .put_buffer = block_put_buffer,
418 .close = bdrv_fclose
419};
420
Christoph Hellwig45566e92009-07-10 23:11:57 +0200421static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
aliguoria672b462008-11-11 21:33:36 +0000422{
aliguoria672b462008-11-11 21:33:36 +0000423 if (is_writable)
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200424 return qemu_fopen_ops(bs, &bdrv_write_ops);
425 return qemu_fopen_ops(bs, &bdrv_read_ops);
aliguoria672b462008-11-11 21:33:36 +0000426}
427
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200428QEMUFile *qemu_fopen_ops(void *opaque, const QEMUFileOps *ops)
aliguoria672b462008-11-11 21:33:36 +0000429{
430 QEMUFile *f;
431
Anthony Liguori7267c092011-08-20 22:09:37 -0500432 f = g_malloc0(sizeof(QEMUFile));
aliguoria672b462008-11-11 21:33:36 +0000433
434 f->opaque = opaque;
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200435 f->ops = ops;
aliguoria672b462008-11-11 21:33:36 +0000436 f->is_write = 0;
437
438 return f;
439}
440
Juan Quintela624b9cc2011-10-05 01:02:52 +0200441int qemu_file_get_error(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000442{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200443 return f->last_error;
aliguoria672b462008-11-11 21:33:36 +0000444}
445
Paolo Bonzini4eb93812013-02-22 17:36:14 +0100446void qemu_file_set_error(QEMUFile *f, int ret)
aliguori4dabe242009-04-05 19:30:51 +0000447{
Juan Quintelaafe41932013-01-14 13:36:28 +0100448 if (f->last_error == 0) {
449 f->last_error = ret;
450 }
aliguori4dabe242009-04-05 19:30:51 +0000451}
452
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200453/** Flushes QEMUFile buffer
454 *
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200455 */
Paolo Bonzini4eb93812013-02-22 17:36:14 +0100456void qemu_fflush(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000457{
Juan Quintela7311bea2012-08-29 19:08:59 +0200458 int ret = 0;
459
Paolo Bonzini93bf2102013-02-22 17:36:12 +0100460 if (!f->ops->put_buffer) {
461 return;
462 }
aliguoria672b462008-11-11 21:33:36 +0000463 if (f->is_write && f->buf_index > 0) {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200464 ret = f->ops->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
Juan Quintela7311bea2012-08-29 19:08:59 +0200465 if (ret >= 0) {
aliguoria672b462008-11-11 21:33:36 +0000466 f->buf_offset += f->buf_index;
Juan Quintela7311bea2012-08-29 19:08:59 +0200467 }
aliguoria672b462008-11-11 21:33:36 +0000468 f->buf_index = 0;
469 }
Paolo Bonzini93bf2102013-02-22 17:36:12 +0100470 if (ret < 0) {
471 qemu_file_set_error(f, ret);
472 }
aliguoria672b462008-11-11 21:33:36 +0000473}
474
475static void qemu_fill_buffer(QEMUFile *f)
476{
477 int len;
Juan Quintela0046c452011-09-30 19:28:45 +0200478 int pending;
aliguoria672b462008-11-11 21:33:36 +0000479
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200480 if (!f->ops->get_buffer)
aliguoria672b462008-11-11 21:33:36 +0000481 return;
482
483 if (f->is_write)
484 abort();
485
Juan Quintela0046c452011-09-30 19:28:45 +0200486 pending = f->buf_size - f->buf_index;
487 if (pending > 0) {
488 memmove(f->buf, f->buf + f->buf_index, pending);
489 }
490 f->buf_index = 0;
491 f->buf_size = pending;
492
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200493 len = f->ops->get_buffer(f->opaque, f->buf + pending, f->buf_offset,
Juan Quintela0046c452011-09-30 19:28:45 +0200494 IO_BUF_SIZE - pending);
aliguoria672b462008-11-11 21:33:36 +0000495 if (len > 0) {
Juan Quintela0046c452011-09-30 19:28:45 +0200496 f->buf_size += len;
aliguoria672b462008-11-11 21:33:36 +0000497 f->buf_offset += len;
Juan Quintelafa39a302011-10-25 19:18:58 +0200498 } else if (len == 0) {
Juan Quintela02c4a052012-08-29 19:36:26 +0200499 qemu_file_set_error(f, -EIO);
aliguoria672b462008-11-11 21:33:36 +0000500 } else if (len != -EAGAIN)
Eduardo Habkostc29110d2011-11-10 10:41:39 -0200501 qemu_file_set_error(f, len);
aliguoria672b462008-11-11 21:33:36 +0000502}
503
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200504int qemu_get_fd(QEMUFile *f)
505{
506 if (f->ops->get_fd) {
507 return f->ops->get_fd(f->opaque);
508 }
509 return -1;
510}
511
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200512/** Closes the file
513 *
514 * Returns negative error value if any error happened on previous operations or
515 * while closing the file. Returns 0 or positive number on success.
516 *
517 * The meaning of return value on success depends on the specific backend
518 * being used.
519 */
520int qemu_fclose(QEMUFile *f)
521{
Juan Quintela29eee862012-08-29 19:14:54 +0200522 int ret;
Paolo Bonzini93bf2102013-02-22 17:36:12 +0100523 qemu_fflush(f);
524 ret = qemu_file_get_error(f);
Juan Quintela7311bea2012-08-29 19:08:59 +0200525
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200526 if (f->ops->close) {
527 int ret2 = f->ops->close(f->opaque);
Juan Quintela29eee862012-08-29 19:14:54 +0200528 if (ret >= 0) {
529 ret = ret2;
530 }
Juan Quintela7311bea2012-08-29 19:08:59 +0200531 }
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200532 /* If any error was spotted before closing, we should report it
533 * instead of the close() return value.
534 */
535 if (f->last_error) {
536 ret = f->last_error;
537 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500538 g_free(f);
aliguoria672b462008-11-11 21:33:36 +0000539 return ret;
540}
541
aliguoria672b462008-11-11 21:33:36 +0000542void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
543{
544 int l;
545
Juan Quintelac10682c2012-08-29 19:43:39 +0200546 if (f->last_error) {
547 return;
548 }
549
550 if (f->is_write == 0 && f->buf_index > 0) {
aliguoria672b462008-11-11 21:33:36 +0000551 fprintf(stderr,
552 "Attempted to write to buffer while read buffer is not empty\n");
553 abort();
554 }
555
Juan Quintelac10682c2012-08-29 19:43:39 +0200556 while (size > 0) {
aliguoria672b462008-11-11 21:33:36 +0000557 l = IO_BUF_SIZE - f->buf_index;
558 if (l > size)
559 l = size;
560 memcpy(f->buf + f->buf_index, buf, l);
561 f->is_write = 1;
562 f->buf_index += l;
563 buf += l;
564 size -= l;
Juan Quintela7311bea2012-08-29 19:08:59 +0200565 if (f->buf_index >= IO_BUF_SIZE) {
Paolo Bonzini93bf2102013-02-22 17:36:12 +0100566 qemu_fflush(f);
567 if (qemu_file_get_error(f)) {
Juan Quintelac10682c2012-08-29 19:43:39 +0200568 break;
569 }
Juan Quintela7311bea2012-08-29 19:08:59 +0200570 }
aliguoria672b462008-11-11 21:33:36 +0000571 }
572}
573
574void qemu_put_byte(QEMUFile *f, int v)
575{
Juan Quintelac10682c2012-08-29 19:43:39 +0200576 if (f->last_error) {
577 return;
578 }
579
580 if (f->is_write == 0 && f->buf_index > 0) {
aliguoria672b462008-11-11 21:33:36 +0000581 fprintf(stderr,
582 "Attempted to write to buffer while read buffer is not empty\n");
583 abort();
584 }
585
586 f->buf[f->buf_index++] = v;
587 f->is_write = 1;
Juan Quintela7311bea2012-08-29 19:08:59 +0200588 if (f->buf_index >= IO_BUF_SIZE) {
Paolo Bonzini93bf2102013-02-22 17:36:12 +0100589 qemu_fflush(f);
Juan Quintela7311bea2012-08-29 19:08:59 +0200590 }
aliguoria672b462008-11-11 21:33:36 +0000591}
592
Juan Quintelac6380722011-10-04 15:28:31 +0200593static void qemu_file_skip(QEMUFile *f, int size)
aliguoria672b462008-11-11 21:33:36 +0000594{
Juan Quintelac6380722011-10-04 15:28:31 +0200595 if (f->buf_index + size <= f->buf_size) {
596 f->buf_index += size;
aliguoria672b462008-11-11 21:33:36 +0000597 }
aliguoria672b462008-11-11 21:33:36 +0000598}
599
Juan Quintelac6380722011-10-04 15:28:31 +0200600static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
Juan Quintela811814b2010-07-26 21:38:43 +0200601{
Juan Quintelac6380722011-10-04 15:28:31 +0200602 int pending;
603 int index;
Juan Quintela811814b2010-07-26 21:38:43 +0200604
Juan Quintelab9ce1452011-10-04 13:55:32 +0200605 if (f->is_write) {
Juan Quintela811814b2010-07-26 21:38:43 +0200606 abort();
Juan Quintela811814b2010-07-26 21:38:43 +0200607 }
Juan Quintela811814b2010-07-26 21:38:43 +0200608
Juan Quintelac6380722011-10-04 15:28:31 +0200609 index = f->buf_index + offset;
610 pending = f->buf_size - index;
611 if (pending < size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200612 qemu_fill_buffer(f);
Juan Quintelac6380722011-10-04 15:28:31 +0200613 index = f->buf_index + offset;
614 pending = f->buf_size - index;
615 }
616
617 if (pending <= 0) {
618 return 0;
619 }
620 if (size > pending) {
621 size = pending;
622 }
623
624 memcpy(buf, f->buf + index, size);
625 return size;
626}
627
628int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
629{
630 int pending = size;
631 int done = 0;
632
633 while (pending > 0) {
634 int res;
635
636 res = qemu_peek_buffer(f, buf, pending, 0);
637 if (res == 0) {
638 return done;
639 }
640 qemu_file_skip(f, res);
641 buf += res;
642 pending -= res;
643 done += res;
644 }
645 return done;
646}
647
648static int qemu_peek_byte(QEMUFile *f, int offset)
649{
650 int index = f->buf_index + offset;
651
652 if (f->is_write) {
653 abort();
654 }
655
656 if (index >= f->buf_size) {
657 qemu_fill_buffer(f);
658 index = f->buf_index + offset;
659 if (index >= f->buf_size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200660 return 0;
Juan Quintelab9ce1452011-10-04 13:55:32 +0200661 }
Juan Quintela811814b2010-07-26 21:38:43 +0200662 }
Juan Quintelac6380722011-10-04 15:28:31 +0200663 return f->buf[index];
Juan Quintela811814b2010-07-26 21:38:43 +0200664}
665
aliguoria672b462008-11-11 21:33:36 +0000666int qemu_get_byte(QEMUFile *f)
667{
Juan Quintela65f3bb32011-10-06 14:29:32 +0200668 int result;
aliguoria672b462008-11-11 21:33:36 +0000669
Juan Quintelac6380722011-10-04 15:28:31 +0200670 result = qemu_peek_byte(f, 0);
671 qemu_file_skip(f, 1);
Juan Quintela65f3bb32011-10-06 14:29:32 +0200672 return result;
aliguoria672b462008-11-11 21:33:36 +0000673}
674
Stefan Hajnocziad55ab42013-02-12 10:37:14 +0100675int64_t qemu_ftell(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000676{
Stefan Hajnocziad55ab42013-02-12 10:37:14 +0100677 /* buf_offset excludes buffer for writing but includes it for reading */
678 if (f->is_write) {
679 return f->buf_offset + f->buf_index;
680 } else {
681 return f->buf_offset - f->buf_size + f->buf_index;
682 }
aliguoria672b462008-11-11 21:33:36 +0000683}
684
aliguoria672b462008-11-11 21:33:36 +0000685int qemu_file_rate_limit(QEMUFile *f)
686{
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200687 if (f->ops->rate_limit)
688 return f->ops->rate_limit(f->opaque);
aliguoria672b462008-11-11 21:33:36 +0000689
690 return 0;
691}
692
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200693int64_t qemu_file_get_rate_limit(QEMUFile *f)
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200694{
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200695 if (f->ops->get_rate_limit)
696 return f->ops->get_rate_limit(f->opaque);
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200697
698 return 0;
699}
700
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200701int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
Glauber Costa19629532009-05-20 18:26:57 -0400702{
Glauber Costa0bb05ea2009-07-14 18:26:51 -0400703 /* any failed or completed migration keeps its state to allow probing of
704 * migration data, but has no associated file anymore */
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200705 if (f && f->ops->set_rate_limit)
706 return f->ops->set_rate_limit(f->opaque, new_rate);
Glauber Costa19629532009-05-20 18:26:57 -0400707
708 return 0;
709}
710
aliguoria672b462008-11-11 21:33:36 +0000711void qemu_put_be16(QEMUFile *f, unsigned int v)
712{
713 qemu_put_byte(f, v >> 8);
714 qemu_put_byte(f, v);
715}
716
717void qemu_put_be32(QEMUFile *f, unsigned int v)
718{
719 qemu_put_byte(f, v >> 24);
720 qemu_put_byte(f, v >> 16);
721 qemu_put_byte(f, v >> 8);
722 qemu_put_byte(f, v);
723}
724
725void qemu_put_be64(QEMUFile *f, uint64_t v)
726{
727 qemu_put_be32(f, v >> 32);
728 qemu_put_be32(f, v);
729}
730
731unsigned int qemu_get_be16(QEMUFile *f)
732{
733 unsigned int v;
734 v = qemu_get_byte(f) << 8;
735 v |= qemu_get_byte(f);
736 return v;
737}
738
739unsigned int qemu_get_be32(QEMUFile *f)
740{
741 unsigned int v;
742 v = qemu_get_byte(f) << 24;
743 v |= qemu_get_byte(f) << 16;
744 v |= qemu_get_byte(f) << 8;
745 v |= qemu_get_byte(f);
746 return v;
747}
748
749uint64_t qemu_get_be64(QEMUFile *f)
750{
751 uint64_t v;
752 v = (uint64_t)qemu_get_be32(f) << 32;
753 v |= qemu_get_be32(f);
754 return v;
755}
756
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200757
758/* timer */
759
760void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
761{
762 uint64_t expire_time;
763
764 expire_time = qemu_timer_expire_time_ns(ts);
765 qemu_put_be64(f, expire_time);
766}
767
768void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
769{
770 uint64_t expire_time;
771
772 expire_time = qemu_get_be64(f);
773 if (expire_time != -1) {
774 qemu_mod_timer_ns(ts, expire_time);
775 } else {
776 qemu_del_timer(ts);
777 }
778}
779
780
Gerd Hoffmanncdae5cf2010-11-01 15:51:54 +0100781/* bool */
782
783static int get_bool(QEMUFile *f, void *pv, size_t size)
784{
785 bool *v = pv;
786 *v = qemu_get_byte(f);
787 return 0;
788}
789
790static void put_bool(QEMUFile *f, void *pv, size_t size)
791{
792 bool *v = pv;
793 qemu_put_byte(f, *v);
794}
795
796const VMStateInfo vmstate_info_bool = {
797 .name = "bool",
798 .get = get_bool,
799 .put = put_bool,
800};
801
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200802/* 8 bit int */
803
804static int get_int8(QEMUFile *f, void *pv, size_t size)
805{
806 int8_t *v = pv;
807 qemu_get_s8s(f, v);
808 return 0;
809}
810
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200811static void put_int8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200812{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200813 int8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200814 qemu_put_s8s(f, v);
815}
816
817const VMStateInfo vmstate_info_int8 = {
818 .name = "int8",
819 .get = get_int8,
820 .put = put_int8,
821};
822
823/* 16 bit int */
824
825static int get_int16(QEMUFile *f, void *pv, size_t size)
826{
827 int16_t *v = pv;
828 qemu_get_sbe16s(f, v);
829 return 0;
830}
831
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200832static void put_int16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200833{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200834 int16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200835 qemu_put_sbe16s(f, v);
836}
837
838const VMStateInfo vmstate_info_int16 = {
839 .name = "int16",
840 .get = get_int16,
841 .put = put_int16,
842};
843
844/* 32 bit int */
845
846static int get_int32(QEMUFile *f, void *pv, size_t size)
847{
848 int32_t *v = pv;
849 qemu_get_sbe32s(f, v);
850 return 0;
851}
852
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200853static void put_int32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200854{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200855 int32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200856 qemu_put_sbe32s(f, v);
857}
858
859const VMStateInfo vmstate_info_int32 = {
860 .name = "int32",
861 .get = get_int32,
862 .put = put_int32,
863};
864
Juan Quintela82501662009-08-20 19:42:32 +0200865/* 32 bit int. See that the received value is the same than the one
866 in the field */
867
868static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
869{
870 int32_t *v = pv;
871 int32_t v2;
872 qemu_get_sbe32s(f, &v2);
873
874 if (*v == v2)
875 return 0;
876 return -EINVAL;
877}
878
879const VMStateInfo vmstate_info_int32_equal = {
880 .name = "int32 equal",
881 .get = get_int32_equal,
882 .put = put_int32,
883};
884
Juan Quintela0a031e02009-08-20 19:42:37 +0200885/* 32 bit int. See that the received value is the less or the same
886 than the one in the field */
887
888static int get_int32_le(QEMUFile *f, void *pv, size_t size)
889{
890 int32_t *old = pv;
891 int32_t new;
892 qemu_get_sbe32s(f, &new);
893
894 if (*old <= new)
895 return 0;
896 return -EINVAL;
897}
898
899const VMStateInfo vmstate_info_int32_le = {
900 .name = "int32 equal",
901 .get = get_int32_le,
902 .put = put_int32,
903};
904
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200905/* 64 bit int */
906
907static int get_int64(QEMUFile *f, void *pv, size_t size)
908{
909 int64_t *v = pv;
910 qemu_get_sbe64s(f, v);
911 return 0;
912}
913
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200914static void put_int64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200915{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200916 int64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200917 qemu_put_sbe64s(f, v);
918}
919
920const VMStateInfo vmstate_info_int64 = {
921 .name = "int64",
922 .get = get_int64,
923 .put = put_int64,
924};
925
926/* 8 bit unsigned int */
927
928static int get_uint8(QEMUFile *f, void *pv, size_t size)
929{
930 uint8_t *v = pv;
931 qemu_get_8s(f, v);
932 return 0;
933}
934
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200935static void put_uint8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200936{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200937 uint8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200938 qemu_put_8s(f, v);
939}
940
941const VMStateInfo vmstate_info_uint8 = {
942 .name = "uint8",
943 .get = get_uint8,
944 .put = put_uint8,
945};
946
947/* 16 bit unsigned int */
948
949static int get_uint16(QEMUFile *f, void *pv, size_t size)
950{
951 uint16_t *v = pv;
952 qemu_get_be16s(f, v);
953 return 0;
954}
955
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200956static void put_uint16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200957{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200958 uint16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200959 qemu_put_be16s(f, v);
960}
961
962const VMStateInfo vmstate_info_uint16 = {
963 .name = "uint16",
964 .get = get_uint16,
965 .put = put_uint16,
966};
967
968/* 32 bit unsigned int */
969
970static int get_uint32(QEMUFile *f, void *pv, size_t size)
971{
972 uint32_t *v = pv;
973 qemu_get_be32s(f, v);
974 return 0;
975}
976
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200977static void put_uint32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200978{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200979 uint32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200980 qemu_put_be32s(f, v);
981}
982
983const VMStateInfo vmstate_info_uint32 = {
984 .name = "uint32",
985 .get = get_uint32,
986 .put = put_uint32,
987};
988
Juan Quintela9122a8f2011-03-10 12:33:48 +0100989/* 32 bit uint. See that the received value is the same than the one
990 in the field */
991
992static int get_uint32_equal(QEMUFile *f, void *pv, size_t size)
993{
994 uint32_t *v = pv;
995 uint32_t v2;
996 qemu_get_be32s(f, &v2);
997
998 if (*v == v2) {
999 return 0;
1000 }
1001 return -EINVAL;
1002}
1003
1004const VMStateInfo vmstate_info_uint32_equal = {
1005 .name = "uint32 equal",
1006 .get = get_uint32_equal,
1007 .put = put_uint32,
1008};
1009
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001010/* 64 bit unsigned int */
1011
1012static int get_uint64(QEMUFile *f, void *pv, size_t size)
1013{
1014 uint64_t *v = pv;
1015 qemu_get_be64s(f, v);
1016 return 0;
1017}
1018
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001019static void put_uint64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001020{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001021 uint64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001022 qemu_put_be64s(f, v);
1023}
1024
1025const VMStateInfo vmstate_info_uint64 = {
1026 .name = "uint64",
1027 .get = get_uint64,
1028 .put = put_uint64,
1029};
1030
Juan Quintela80cd83e2009-09-10 03:04:36 +02001031/* 8 bit int. See that the received value is the same than the one
1032 in the field */
1033
1034static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
1035{
1036 uint8_t *v = pv;
1037 uint8_t v2;
1038 qemu_get_8s(f, &v2);
1039
1040 if (*v == v2)
1041 return 0;
1042 return -EINVAL;
1043}
1044
1045const VMStateInfo vmstate_info_uint8_equal = {
Juan Quintelaaa1cce62009-10-15 19:16:06 +02001046 .name = "uint8 equal",
Juan Quintela80cd83e2009-09-10 03:04:36 +02001047 .get = get_uint8_equal,
1048 .put = put_uint8,
1049};
1050
Juan Quinteladc3b83a2009-10-15 23:16:13 +02001051/* 16 bit unsigned int int. See that the received value is the same than the one
1052 in the field */
1053
1054static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
1055{
1056 uint16_t *v = pv;
1057 uint16_t v2;
1058 qemu_get_be16s(f, &v2);
1059
1060 if (*v == v2)
1061 return 0;
1062 return -EINVAL;
1063}
1064
1065const VMStateInfo vmstate_info_uint16_equal = {
1066 .name = "uint16 equal",
1067 .get = get_uint16_equal,
1068 .put = put_uint16,
1069};
1070
Juan Quinteladde04632009-08-20 19:42:26 +02001071/* timers */
1072
1073static int get_timer(QEMUFile *f, void *pv, size_t size)
1074{
1075 QEMUTimer *v = pv;
1076 qemu_get_timer(f, v);
1077 return 0;
1078}
1079
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001080static void put_timer(QEMUFile *f, void *pv, size_t size)
Juan Quinteladde04632009-08-20 19:42:26 +02001081{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001082 QEMUTimer *v = pv;
Juan Quinteladde04632009-08-20 19:42:26 +02001083 qemu_put_timer(f, v);
1084}
1085
1086const VMStateInfo vmstate_info_timer = {
1087 .name = "timer",
1088 .get = get_timer,
1089 .put = put_timer,
1090};
1091
Juan Quintela6f67c502009-08-20 19:42:35 +02001092/* uint8_t buffers */
1093
1094static int get_buffer(QEMUFile *f, void *pv, size_t size)
1095{
1096 uint8_t *v = pv;
1097 qemu_get_buffer(f, v, size);
1098 return 0;
1099}
1100
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001101static void put_buffer(QEMUFile *f, void *pv, size_t size)
Juan Quintela6f67c502009-08-20 19:42:35 +02001102{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001103 uint8_t *v = pv;
Juan Quintela6f67c502009-08-20 19:42:35 +02001104 qemu_put_buffer(f, v, size);
1105}
1106
1107const VMStateInfo vmstate_info_buffer = {
1108 .name = "buffer",
1109 .get = get_buffer,
1110 .put = put_buffer,
1111};
1112
Juan Quintela76507c72009-10-19 15:46:28 +02001113/* unused buffers: space that was used for some fields that are
Stefan Weil61cc8702011-04-13 22:45:22 +02001114 not useful anymore */
Juan Quintela76507c72009-10-19 15:46:28 +02001115
1116static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
1117{
Jan Kiszka21174c32009-12-02 12:36:35 +01001118 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_get_buffer(f, buf, block_len);
1125 }
1126 return 0;
Juan Quintela76507c72009-10-19 15:46:28 +02001127}
1128
1129static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
1130{
Jan Kiszka21174c32009-12-02 12:36:35 +01001131 static const uint8_t buf[1024];
1132 int block_len;
1133
1134 while (size > 0) {
1135 block_len = MIN(sizeof(buf), size);
1136 size -= block_len;
1137 qemu_put_buffer(f, buf, block_len);
1138 }
Juan Quintela76507c72009-10-19 15:46:28 +02001139}
1140
1141const VMStateInfo vmstate_info_unused_buffer = {
1142 .name = "unused_buffer",
1143 .get = get_unused_buffer,
1144 .put = put_unused_buffer,
1145};
1146
Peter Maydell08e99e22012-10-30 07:45:12 +00001147/* bitmaps (as defined by bitmap.h). Note that size here is the size
1148 * of the bitmap in bits. The on-the-wire format of a bitmap is 64
1149 * bit words with the bits in big endian order. The in-memory format
1150 * is an array of 'unsigned long', which may be either 32 or 64 bits.
1151 */
1152/* This is the number of 64 bit words sent over the wire */
1153#define BITS_TO_U64S(nr) DIV_ROUND_UP(nr, 64)
1154static int get_bitmap(QEMUFile *f, void *pv, size_t size)
1155{
1156 unsigned long *bmp = pv;
1157 int i, idx = 0;
1158 for (i = 0; i < BITS_TO_U64S(size); i++) {
1159 uint64_t w = qemu_get_be64(f);
1160 bmp[idx++] = w;
1161 if (sizeof(unsigned long) == 4 && idx < BITS_TO_LONGS(size)) {
1162 bmp[idx++] = w >> 32;
1163 }
1164 }
1165 return 0;
1166}
1167
1168static void put_bitmap(QEMUFile *f, void *pv, size_t size)
1169{
1170 unsigned long *bmp = pv;
1171 int i, idx = 0;
1172 for (i = 0; i < BITS_TO_U64S(size); i++) {
1173 uint64_t w = bmp[idx++];
1174 if (sizeof(unsigned long) == 4 && idx < BITS_TO_LONGS(size)) {
1175 w |= ((uint64_t)bmp[idx++]) << 32;
1176 }
1177 qemu_put_be64(f, w);
1178 }
1179}
1180
1181const VMStateInfo vmstate_info_bitmap = {
1182 .name = "bitmap",
1183 .get = get_bitmap,
1184 .put = put_bitmap,
1185};
1186
Alex Williamson7685ee62010-06-25 11:09:14 -06001187typedef struct CompatEntry {
1188 char idstr[256];
1189 int instance_id;
1190} CompatEntry;
1191
aliguoria672b462008-11-11 21:33:36 +00001192typedef struct SaveStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001193 QTAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001194 char idstr[256];
1195 int instance_id;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001196 int alias_id;
aliguoria672b462008-11-11 21:33:36 +00001197 int version_id;
1198 int section_id;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001199 SaveVMHandlers *ops;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001200 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +00001201 void *opaque;
Alex Williamson7685ee62010-06-25 11:09:14 -06001202 CompatEntry *compat;
Cam Macdonell24312962010-07-26 18:11:00 -06001203 int no_migrate;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001204 int is_ram;
aliguoria672b462008-11-11 21:33:36 +00001205} SaveStateEntry;
1206
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001207
Blue Swirl72cf2d42009-09-12 07:36:22 +00001208static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1209 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001210static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +00001211
Juan Quintela8718e992009-09-01 02:12:31 +02001212static int calculate_new_instance_id(const char *idstr)
1213{
1214 SaveStateEntry *se;
1215 int instance_id = 0;
1216
Blue Swirl72cf2d42009-09-12 07:36:22 +00001217 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +02001218 if (strcmp(idstr, se->idstr) == 0
1219 && instance_id <= se->instance_id) {
1220 instance_id = se->instance_id + 1;
1221 }
1222 }
1223 return instance_id;
1224}
1225
Alex Williamson7685ee62010-06-25 11:09:14 -06001226static int calculate_compat_instance_id(const char *idstr)
1227{
1228 SaveStateEntry *se;
1229 int instance_id = 0;
1230
1231 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1232 if (!se->compat)
1233 continue;
1234
1235 if (strcmp(idstr, se->compat->idstr) == 0
1236 && instance_id <= se->compat->instance_id) {
1237 instance_id = se->compat->instance_id + 1;
1238 }
1239 }
1240 return instance_id;
1241}
1242
aliguoria672b462008-11-11 21:33:36 +00001243/* TODO: Individual devices generally have very little idea about the rest
1244 of the system, so instance_id should be removed/replaced.
1245 Meanwhile pass -1 as instance_id if you do not already have a clearly
1246 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -06001247int register_savevm_live(DeviceState *dev,
1248 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001249 int instance_id,
1250 int version_id,
Juan Quintela7908c782012-06-26 18:46:10 +02001251 SaveVMHandlers *ops,
aliguoria672b462008-11-11 21:33:36 +00001252 void *opaque)
1253{
Juan Quintela8718e992009-09-01 02:12:31 +02001254 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +00001255
Anthony Liguori7267c092011-08-20 22:09:37 -05001256 se = g_malloc0(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +00001257 se->version_id = version_id;
1258 se->section_id = global_section_id++;
Juan Quintela7908c782012-06-26 18:46:10 +02001259 se->ops = ops;
aliguoria672b462008-11-11 21:33:36 +00001260 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001261 se->vmsd = NULL;
Cam Macdonell24312962010-07-26 18:11:00 -06001262 se->no_migrate = 0;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001263 /* if this is a live_savem then set is_ram */
Juan Quintela16310a32012-06-28 15:31:37 +02001264 if (ops->save_live_setup != NULL) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001265 se->is_ram = 1;
1266 }
aliguoria672b462008-11-11 21:33:36 +00001267
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001268 if (dev) {
1269 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001270 if (id) {
1271 pstrcpy(se->idstr, sizeof(se->idstr), id);
1272 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001273 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001274
Anthony Liguori7267c092011-08-20 22:09:37 -05001275 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001276 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1277 se->compat->instance_id = instance_id == -1 ?
1278 calculate_compat_instance_id(idstr) : instance_id;
1279 instance_id = -1;
1280 }
1281 }
1282 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1283
Juan Quintela8718e992009-09-01 02:12:31 +02001284 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001285 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001286 } else {
1287 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +00001288 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001289 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001290 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001291 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +00001292 return 0;
1293}
1294
Alex Williamson0be71e32010-06-25 11:09:07 -06001295int register_savevm(DeviceState *dev,
1296 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001297 int instance_id,
1298 int version_id,
1299 SaveStateHandler *save_state,
1300 LoadStateHandler *load_state,
1301 void *opaque)
1302{
Juan Quintela7908c782012-06-26 18:46:10 +02001303 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
1304 ops->save_state = save_state;
1305 ops->load_state = load_state;
Alex Williamson0be71e32010-06-25 11:09:07 -06001306 return register_savevm_live(dev, idstr, instance_id, version_id,
Juan Quintela7908c782012-06-26 18:46:10 +02001307 ops, opaque);
aliguoria672b462008-11-11 21:33:36 +00001308}
1309
Alex Williamson0be71e32010-06-25 11:09:07 -06001310void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +00001311{
Juan Quintela8718e992009-09-01 02:12:31 +02001312 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001313 char id[256] = "";
1314
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001315 if (dev) {
1316 char *path = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001317 if (path) {
1318 pstrcpy(id, sizeof(id), path);
1319 pstrcat(id, sizeof(id), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001320 g_free(path);
Alex Williamson7685ee62010-06-25 11:09:14 -06001321 }
1322 }
1323 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +00001324
Blue Swirl72cf2d42009-09-12 07:36:22 +00001325 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001326 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001327 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001328 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001329 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001330 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02001331 g_free(se->ops);
Anthony Liguori7267c092011-08-20 22:09:37 -05001332 g_free(se);
aliguori41bd13a2009-04-17 17:10:59 +00001333 }
aliguori41bd13a2009-04-17 17:10:59 +00001334 }
1335}
1336
Alex Williamson0be71e32010-06-25 11:09:07 -06001337int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001338 const VMStateDescription *vmsd,
1339 void *opaque, int alias_id,
1340 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001341{
Juan Quintela8718e992009-09-01 02:12:31 +02001342 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001343
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001344 /* If this triggers, alias support can be dropped for the vmsd. */
1345 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1346
Anthony Liguori7267c092011-08-20 22:09:37 -05001347 se = g_malloc0(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001348 se->version_id = vmsd->version_id;
1349 se->section_id = global_section_id++;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001350 se->opaque = opaque;
1351 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001352 se->alias_id = alias_id;
Gerd Hoffmann2837c8e2011-07-08 10:44:35 +02001353 se->no_migrate = vmsd->unmigratable;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001354
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001355 if (dev) {
1356 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001357 if (id) {
1358 pstrcpy(se->idstr, sizeof(se->idstr), id);
1359 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001360 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001361
Anthony Liguori7267c092011-08-20 22:09:37 -05001362 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001363 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1364 se->compat->instance_id = instance_id == -1 ?
1365 calculate_compat_instance_id(vmsd->name) : instance_id;
1366 instance_id = -1;
1367 }
1368 }
1369 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1370
Juan Quintela8718e992009-09-01 02:12:31 +02001371 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001372 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001373 } else {
1374 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001375 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001376 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001377 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001378 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001379 return 0;
1380}
1381
Alex Williamson0be71e32010-06-25 11:09:07 -06001382int vmstate_register(DeviceState *dev, int instance_id,
1383 const VMStateDescription *vmsd, void *opaque)
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001384{
Alex Williamson0be71e32010-06-25 11:09:07 -06001385 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1386 opaque, -1, 0);
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001387}
1388
Alex Williamson0be71e32010-06-25 11:09:07 -06001389void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1390 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001391{
Juan Quintela1eb75382009-09-10 03:04:29 +02001392 SaveStateEntry *se, *new_se;
1393
Blue Swirl72cf2d42009-09-12 07:36:22 +00001394 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +02001395 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001396 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001397 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001398 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001399 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001400 g_free(se);
Juan Quintela1eb75382009-09-10 03:04:29 +02001401 }
1402 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001403}
1404
Juan Quintela811814b2010-07-26 21:38:43 +02001405static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1406 void *opaque);
1407static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1408 void *opaque);
1409
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001410int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1411 void *opaque, int version_id)
1412{
1413 VMStateField *field = vmsd->fields;
Juan Quintela811814b2010-07-26 21:38:43 +02001414 int ret;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001415
1416 if (version_id > vmsd->version_id) {
1417 return -EINVAL;
1418 }
1419 if (version_id < vmsd->minimum_version_id_old) {
1420 return -EINVAL;
1421 }
1422 if (version_id < vmsd->minimum_version_id) {
1423 return vmsd->load_state_old(f, opaque, version_id);
1424 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001425 if (vmsd->pre_load) {
1426 int ret = vmsd->pre_load(opaque);
1427 if (ret)
1428 return ret;
1429 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001430 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001431 if ((field->field_exists &&
1432 field->field_exists(opaque, version_id)) ||
1433 (!field->field_exists &&
1434 field->version_id <= version_id)) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001435 void *base_addr = opaque + field->offset;
Juan Quintela811814b2010-07-26 21:38:43 +02001436 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001437 int size = field->size;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001438
Juan Quintelae61a1e02009-12-02 12:36:38 +01001439 if (field->flags & VMS_VBUFFER) {
1440 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001441 if (field->flags & VMS_MULTIPLY) {
1442 size *= field->size;
1443 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001444 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001445 if (field->flags & VMS_ARRAY) {
1446 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001447 } else if (field->flags & VMS_VARRAY_INT32) {
1448 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelaa624b082011-03-10 12:33:50 +01001449 } else if (field->flags & VMS_VARRAY_UINT32) {
1450 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001451 } else if (field->flags & VMS_VARRAY_UINT16) {
1452 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintela82fa39b2011-03-10 12:33:49 +01001453 } else if (field->flags & VMS_VARRAY_UINT8) {
1454 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001455 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001456 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001457 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001458 }
1459 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001460 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001461
Juan Quintela19df4382009-09-29 22:48:41 +02001462 if (field->flags & VMS_ARRAY_OF_POINTER) {
1463 addr = *(void **)addr;
1464 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001465 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001466 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001467 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001468 ret = field->info->get(f, addr, size);
Juan Quintelaec245e22009-08-20 19:42:29 +02001469
1470 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001471 if (ret < 0) {
1472 return ret;
1473 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001474 }
1475 }
1476 field++;
1477 }
Juan Quintela811814b2010-07-26 21:38:43 +02001478 ret = vmstate_subsection_load(f, vmsd, opaque);
1479 if (ret != 0) {
1480 return ret;
1481 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001482 if (vmsd->post_load) {
Juan Quintelae59fb372009-09-29 22:48:21 +02001483 return vmsd->post_load(opaque, version_id);
Juan Quintela752ff2f2009-09-10 03:04:30 +02001484 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001485 return 0;
1486}
1487
1488void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001489 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001490{
1491 VMStateField *field = vmsd->fields;
1492
Juan Quintela8fb07912009-09-10 03:04:32 +02001493 if (vmsd->pre_save) {
1494 vmsd->pre_save(opaque);
1495 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001496 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001497 if (!field->field_exists ||
1498 field->field_exists(opaque, vmsd->version_id)) {
1499 void *base_addr = opaque + field->offset;
1500 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001501 int size = field->size;
Juan Quinteladde04632009-08-20 19:42:26 +02001502
Juan Quintelae61a1e02009-12-02 12:36:38 +01001503 if (field->flags & VMS_VBUFFER) {
1504 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001505 if (field->flags & VMS_MULTIPLY) {
1506 size *= field->size;
1507 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001508 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001509 if (field->flags & VMS_ARRAY) {
1510 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001511 } else if (field->flags & VMS_VARRAY_INT32) {
1512 n_elems = *(int32_t *)(opaque+field->num_offset);
Amos Kong1329d182012-03-13 14:05:36 +08001513 } else if (field->flags & VMS_VARRAY_UINT32) {
1514 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001515 } else if (field->flags & VMS_VARRAY_UINT16) {
1516 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintelab7844212011-03-15 15:53:25 +01001517 } else if (field->flags & VMS_VARRAY_UINT8) {
1518 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001519 }
1520 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001521 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001522 }
1523 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001524 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001525
Juan Quintela85953872009-12-02 12:36:37 +01001526 if (field->flags & VMS_ARRAY_OF_POINTER) {
1527 addr = *(void **)addr;
1528 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001529 if (field->flags & VMS_STRUCT) {
1530 vmstate_save_state(f, field->vmsd, addr);
1531 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001532 field->info->put(f, addr, size);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001533 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001534 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001535 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001536 field++;
1537 }
Juan Quintela811814b2010-07-26 21:38:43 +02001538 vmstate_subsection_save(f, vmsd, opaque);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001539}
1540
Juan Quintela4082be42009-08-20 19:42:24 +02001541static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1542{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001543 if (!se->vmsd) { /* Old style */
Juan Quintela22ea40f2012-06-26 17:19:10 +02001544 return se->ops->load_state(f, se->opaque, version_id);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001545 }
1546 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001547}
1548
Alex Williamsondc912122011-01-11 14:39:43 -07001549static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
Juan Quintela4082be42009-08-20 19:42:24 +02001550{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001551 if (!se->vmsd) { /* Old style */
Juan Quintela22ea40f2012-06-26 17:19:10 +02001552 se->ops->save_state(f, se->opaque);
Alex Williamsondc912122011-01-11 14:39:43 -07001553 return;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001554 }
1555 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +02001556}
1557
aliguoria672b462008-11-11 21:33:36 +00001558#define QEMU_VM_FILE_MAGIC 0x5145564d
1559#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1560#define QEMU_VM_FILE_VERSION 0x00000003
1561
1562#define QEMU_VM_EOF 0x00
1563#define QEMU_VM_SECTION_START 0x01
1564#define QEMU_VM_SECTION_PART 0x02
1565#define QEMU_VM_SECTION_END 0x03
1566#define QEMU_VM_SECTION_FULL 0x04
Juan Quintela811814b2010-07-26 21:38:43 +02001567#define QEMU_VM_SUBSECTION 0x05
aliguoria672b462008-11-11 21:33:36 +00001568
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001569bool qemu_savevm_state_blocked(Error **errp)
Alex Williamsondc912122011-01-11 14:39:43 -07001570{
1571 SaveStateEntry *se;
1572
1573 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1574 if (se->no_migrate) {
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001575 error_set(errp, QERR_MIGRATION_NOT_SUPPORTED, se->idstr);
Alex Williamsondc912122011-01-11 14:39:43 -07001576 return true;
1577 }
1578 }
1579 return false;
1580}
1581
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001582void qemu_savevm_state_begin(QEMUFile *f,
1583 const MigrationParams *params)
aliguoria672b462008-11-11 21:33:36 +00001584{
1585 SaveStateEntry *se;
Juan Quintela39346382011-09-22 11:02:14 +02001586 int ret;
aliguoria672b462008-11-11 21:33:36 +00001587
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001588 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela22ea40f2012-06-26 17:19:10 +02001589 if (!se->ops || !se->ops->set_params) {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001590 continue;
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001591 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02001592 se->ops->set_params(params, se->opaque);
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001593 }
1594
aliguoria672b462008-11-11 21:33:36 +00001595 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1596 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1597
Blue Swirl72cf2d42009-09-12 07:36:22 +00001598 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001599 int len;
1600
Juan Quintelad1315aa2012-06-28 15:11:57 +02001601 if (!se->ops || !se->ops->save_live_setup) {
aliguoria672b462008-11-11 21:33:36 +00001602 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001603 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001604 if (se->ops && se->ops->is_active) {
1605 if (!se->ops->is_active(se->opaque)) {
1606 continue;
1607 }
1608 }
aliguoria672b462008-11-11 21:33:36 +00001609 /* Section type */
1610 qemu_put_byte(f, QEMU_VM_SECTION_START);
1611 qemu_put_be32(f, se->section_id);
1612
1613 /* ID string */
1614 len = strlen(se->idstr);
1615 qemu_put_byte(f, len);
1616 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1617
1618 qemu_put_be32(f, se->instance_id);
1619 qemu_put_be32(f, se->version_id);
1620
Juan Quintelad1315aa2012-06-28 15:11:57 +02001621 ret = se->ops->save_live_setup(f, se->opaque);
Juan Quintela29757252011-10-19 15:22:18 +02001622 if (ret < 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001623 qemu_file_set_error(f, ret);
1624 break;
Juan Quintela29757252011-10-19 15:22:18 +02001625 }
aliguoria672b462008-11-11 21:33:36 +00001626 }
aliguoria672b462008-11-11 21:33:36 +00001627}
1628
Juan Quintela39346382011-09-22 11:02:14 +02001629/*
Dong Xu Wang07f35072011-11-22 18:06:26 +08001630 * this function has three return values:
Juan Quintela39346382011-09-22 11:02:14 +02001631 * negative: there was one error, and we have -errno.
1632 * 0 : We haven't finished, caller have to go again
1633 * 1 : We have finished, we can go to complete phase
1634 */
Luiz Capitulino539de122011-12-05 14:06:56 -02001635int qemu_savevm_state_iterate(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001636{
1637 SaveStateEntry *se;
1638 int ret = 1;
1639
Blue Swirl72cf2d42009-09-12 07:36:22 +00001640 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela16310a32012-06-28 15:31:37 +02001641 if (!se->ops || !se->ops->save_live_iterate) {
aliguoria672b462008-11-11 21:33:36 +00001642 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001643 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001644 if (se->ops && se->ops->is_active) {
1645 if (!se->ops->is_active(se->opaque)) {
1646 continue;
1647 }
1648 }
Juan Quintelaaac844e2012-05-22 00:38:26 +02001649 if (qemu_file_rate_limit(f)) {
1650 return 0;
1651 }
Juan Quintela517a13c2012-05-21 23:46:44 +02001652 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001653 /* Section type */
1654 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1655 qemu_put_be32(f, se->section_id);
1656
Juan Quintela16310a32012-06-28 15:31:37 +02001657 ret = se->ops->save_live_iterate(f, se->opaque);
Juan Quintela517a13c2012-05-21 23:46:44 +02001658 trace_savevm_section_end(se->section_id);
1659
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001660 if (ret < 0) {
1661 qemu_file_set_error(f, ret);
1662 }
Juan Quintela29757252011-10-19 15:22:18 +02001663 if (ret <= 0) {
Jan Kiszka90697be2009-12-01 15:19:55 +01001664 /* Do not proceed to the next vmstate before this one reported
1665 completion of the current stage. This serializes the migration
1666 and reduces the probability that a faster changing state is
1667 synchronized over and over again. */
1668 break;
1669 }
aliguoria672b462008-11-11 21:33:36 +00001670 }
Juan Quintela39346382011-09-22 11:02:14 +02001671 return ret;
aliguoria672b462008-11-11 21:33:36 +00001672}
1673
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001674void qemu_savevm_state_complete(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001675{
1676 SaveStateEntry *se;
Juan Quintela29757252011-10-19 15:22:18 +02001677 int ret;
aliguoria672b462008-11-11 21:33:36 +00001678
Jan Kiszkaea375f92010-03-01 19:10:30 +01001679 cpu_synchronize_all_states();
1680
Blue Swirl72cf2d42009-09-12 07:36:22 +00001681 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela16310a32012-06-28 15:31:37 +02001682 if (!se->ops || !se->ops->save_live_complete) {
aliguoria672b462008-11-11 21:33:36 +00001683 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001684 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001685 if (se->ops && se->ops->is_active) {
1686 if (!se->ops->is_active(se->opaque)) {
1687 continue;
1688 }
1689 }
Juan Quintela517a13c2012-05-21 23:46:44 +02001690 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001691 /* Section type */
1692 qemu_put_byte(f, QEMU_VM_SECTION_END);
1693 qemu_put_be32(f, se->section_id);
1694
Juan Quintela16310a32012-06-28 15:31:37 +02001695 ret = se->ops->save_live_complete(f, se->opaque);
Juan Quintela517a13c2012-05-21 23:46:44 +02001696 trace_savevm_section_end(se->section_id);
Juan Quintela29757252011-10-19 15:22:18 +02001697 if (ret < 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001698 qemu_file_set_error(f, ret);
1699 return;
Juan Quintela29757252011-10-19 15:22:18 +02001700 }
aliguoria672b462008-11-11 21:33:36 +00001701 }
1702
Blue Swirl72cf2d42009-09-12 07:36:22 +00001703 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001704 int len;
1705
Juan Quintela22ea40f2012-06-26 17:19:10 +02001706 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
aliguoria672b462008-11-11 21:33:36 +00001707 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001708 }
Juan Quintela517a13c2012-05-21 23:46:44 +02001709 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001710 /* Section type */
1711 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1712 qemu_put_be32(f, se->section_id);
1713
1714 /* ID string */
1715 len = strlen(se->idstr);
1716 qemu_put_byte(f, len);
1717 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1718
1719 qemu_put_be32(f, se->instance_id);
1720 qemu_put_be32(f, se->version_id);
1721
Alex Williamsondc912122011-01-11 14:39:43 -07001722 vmstate_save(f, se);
Juan Quintela517a13c2012-05-21 23:46:44 +02001723 trace_savevm_section_end(se->section_id);
aliguoria672b462008-11-11 21:33:36 +00001724 }
1725
1726 qemu_put_byte(f, QEMU_VM_EOF);
aliguoria672b462008-11-11 21:33:36 +00001727}
1728
Juan Quintelae4ed1542012-09-21 11:18:18 +02001729uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size)
1730{
1731 SaveStateEntry *se;
1732 uint64_t ret = 0;
1733
1734 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1735 if (!se->ops || !se->ops->save_live_pending) {
1736 continue;
1737 }
1738 if (se->ops && se->ops->is_active) {
1739 if (!se->ops->is_active(se->opaque)) {
1740 continue;
1741 }
1742 }
1743 ret += se->ops->save_live_pending(f, se->opaque, max_size);
1744 }
1745 return ret;
1746}
1747
Juan Quintela65227732013-01-14 14:14:42 +01001748void qemu_savevm_state_cancel(void)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001749{
1750 SaveStateEntry *se;
1751
1752 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela9b5bfab2012-06-26 19:26:41 +02001753 if (se->ops && se->ops->cancel) {
1754 se->ops->cancel(se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001755 }
1756 }
1757}
1758
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001759static int qemu_savevm_state(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001760{
aliguoria672b462008-11-11 21:33:36 +00001761 int ret;
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001762 MigrationParams params = {
1763 .blk = 0,
1764 .shared = 0
1765 };
aliguoria672b462008-11-11 21:33:36 +00001766
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001767 if (qemu_savevm_state_blocked(NULL)) {
Paolo Bonzini04943eb2013-02-22 17:36:10 +01001768 return -EINVAL;
Alex Williamsondc912122011-01-11 14:39:43 -07001769 }
1770
Paolo Bonzini9b095032013-02-22 17:36:28 +01001771 qemu_mutex_unlock_iothread();
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001772 qemu_savevm_state_begin(f, &params);
Paolo Bonzini9b095032013-02-22 17:36:28 +01001773 qemu_mutex_lock_iothread();
1774
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001775 while (qemu_file_get_error(f) == 0) {
1776 if (qemu_savevm_state_iterate(f) > 0) {
1777 break;
1778 }
1779 }
aliguoria672b462008-11-11 21:33:36 +00001780
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001781 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001782 if (ret == 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001783 qemu_savevm_state_complete(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +02001784 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001785 }
Paolo Bonzini04943eb2013-02-22 17:36:10 +01001786 if (ret != 0) {
1787 qemu_savevm_state_cancel();
1788 }
aliguoria672b462008-11-11 21:33:36 +00001789 return ret;
1790}
1791
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001792static int qemu_save_device_state(QEMUFile *f)
1793{
1794 SaveStateEntry *se;
1795
1796 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1797 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1798
1799 cpu_synchronize_all_states();
1800
1801 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1802 int len;
1803
1804 if (se->is_ram) {
1805 continue;
1806 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02001807 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001808 continue;
1809 }
1810
1811 /* Section type */
1812 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1813 qemu_put_be32(f, se->section_id);
1814
1815 /* ID string */
1816 len = strlen(se->idstr);
1817 qemu_put_byte(f, len);
1818 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1819
1820 qemu_put_be32(f, se->instance_id);
1821 qemu_put_be32(f, se->version_id);
1822
1823 vmstate_save(f, se);
1824 }
1825
1826 qemu_put_byte(f, QEMU_VM_EOF);
1827
1828 return qemu_file_get_error(f);
1829}
1830
aliguoria672b462008-11-11 21:33:36 +00001831static SaveStateEntry *find_se(const char *idstr, int instance_id)
1832{
1833 SaveStateEntry *se;
1834
Blue Swirl72cf2d42009-09-12 07:36:22 +00001835 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001836 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001837 (instance_id == se->instance_id ||
1838 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +00001839 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001840 /* Migrating from an older version? */
1841 if (strstr(se->idstr, idstr) && se->compat) {
1842 if (!strcmp(se->compat->idstr, idstr) &&
1843 (instance_id == se->compat->instance_id ||
1844 instance_id == se->alias_id))
1845 return se;
1846 }
aliguoria672b462008-11-11 21:33:36 +00001847 }
1848 return NULL;
1849}
1850
Juan Quintela811814b2010-07-26 21:38:43 +02001851static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1852{
1853 while(sub && sub->needed) {
1854 if (strcmp(idstr, sub->vmsd->name) == 0) {
1855 return sub->vmsd;
1856 }
1857 sub++;
1858 }
1859 return NULL;
1860}
1861
1862static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1863 void *opaque)
1864{
Juan Quintelac6380722011-10-04 15:28:31 +02001865 while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
Juan Quintela811814b2010-07-26 21:38:43 +02001866 char idstr[256];
1867 int ret;
Juan Quintelac6380722011-10-04 15:28:31 +02001868 uint8_t version_id, len, size;
Juan Quintela811814b2010-07-26 21:38:43 +02001869 const VMStateDescription *sub_vmsd;
1870
Juan Quintelac6380722011-10-04 15:28:31 +02001871 len = qemu_peek_byte(f, 1);
1872 if (len < strlen(vmsd->name) + 1) {
1873 /* subsection name has be be "section_name/a" */
1874 return 0;
1875 }
1876 size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
1877 if (size != len) {
1878 return 0;
1879 }
1880 idstr[size] = 0;
Juan Quintela811814b2010-07-26 21:38:43 +02001881
Juan Quintelac6380722011-10-04 15:28:31 +02001882 if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
1883 /* it don't have a valid subsection name */
1884 return 0;
1885 }
Juan Quintela3da9eeb2011-09-30 19:46:43 +02001886 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
Juan Quintela811814b2010-07-26 21:38:43 +02001887 if (sub_vmsd == NULL) {
1888 return -ENOENT;
1889 }
Juan Quintelac6380722011-10-04 15:28:31 +02001890 qemu_file_skip(f, 1); /* subsection */
1891 qemu_file_skip(f, 1); /* len */
1892 qemu_file_skip(f, len); /* idstr */
1893 version_id = qemu_get_be32(f);
1894
Juan Quintela811814b2010-07-26 21:38:43 +02001895 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1896 if (ret) {
1897 return ret;
1898 }
1899 }
1900 return 0;
1901}
1902
1903static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1904 void *opaque)
1905{
1906 const VMStateSubsection *sub = vmsd->subsections;
1907
1908 while (sub && sub->needed) {
1909 if (sub->needed(opaque)) {
1910 const VMStateDescription *vmsd = sub->vmsd;
1911 uint8_t len;
1912
1913 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1914 len = strlen(vmsd->name);
1915 qemu_put_byte(f, len);
1916 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1917 qemu_put_be32(f, vmsd->version_id);
1918 vmstate_save_state(f, vmsd, opaque);
1919 }
1920 sub++;
1921 }
1922}
1923
aliguoria672b462008-11-11 21:33:36 +00001924typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001925 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001926 SaveStateEntry *se;
1927 int section_id;
1928 int version_id;
aliguoria672b462008-11-11 21:33:36 +00001929} LoadStateEntry;
1930
aliguoria672b462008-11-11 21:33:36 +00001931int qemu_loadvm_state(QEMUFile *f)
1932{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001933 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1934 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001935 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00001936 uint8_t section_type;
1937 unsigned int v;
1938 int ret;
1939
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001940 if (qemu_savevm_state_blocked(NULL)) {
Alex Williamsondc912122011-01-11 14:39:43 -07001941 return -EINVAL;
1942 }
1943
aliguoria672b462008-11-11 21:33:36 +00001944 v = qemu_get_be32(f);
1945 if (v != QEMU_VM_FILE_MAGIC)
1946 return -EINVAL;
1947
1948 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02001949 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1950 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1951 return -ENOTSUP;
1952 }
aliguoria672b462008-11-11 21:33:36 +00001953 if (v != QEMU_VM_FILE_VERSION)
1954 return -ENOTSUP;
1955
1956 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1957 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00001958 SaveStateEntry *se;
1959 char idstr[257];
1960 int len;
1961
1962 switch (section_type) {
1963 case QEMU_VM_SECTION_START:
1964 case QEMU_VM_SECTION_FULL:
1965 /* Read section start */
1966 section_id = qemu_get_be32(f);
1967 len = qemu_get_byte(f);
1968 qemu_get_buffer(f, (uint8_t *)idstr, len);
1969 idstr[len] = 0;
1970 instance_id = qemu_get_be32(f);
1971 version_id = qemu_get_be32(f);
1972
1973 /* Find savevm section */
1974 se = find_se(idstr, instance_id);
1975 if (se == NULL) {
1976 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1977 ret = -EINVAL;
1978 goto out;
1979 }
1980
1981 /* Validate version */
1982 if (version_id > se->version_id) {
1983 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1984 version_id, idstr, se->version_id);
1985 ret = -EINVAL;
1986 goto out;
1987 }
1988
1989 /* Add entry */
Anthony Liguori7267c092011-08-20 22:09:37 -05001990 le = g_malloc0(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001991
1992 le->se = se;
1993 le->section_id = section_id;
1994 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001995 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00001996
Juan Quintela4082be42009-08-20 19:42:24 +02001997 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001998 if (ret < 0) {
1999 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
2000 instance_id, idstr);
2001 goto out;
2002 }
aliguoria672b462008-11-11 21:33:36 +00002003 break;
2004 case QEMU_VM_SECTION_PART:
2005 case QEMU_VM_SECTION_END:
2006 section_id = qemu_get_be32(f);
2007
Blue Swirl72cf2d42009-09-12 07:36:22 +00002008 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02002009 if (le->section_id == section_id) {
2010 break;
2011 }
2012 }
aliguoria672b462008-11-11 21:33:36 +00002013 if (le == NULL) {
2014 fprintf(stderr, "Unknown savevm section %d\n", section_id);
2015 ret = -EINVAL;
2016 goto out;
2017 }
2018
Juan Quintela4082be42009-08-20 19:42:24 +02002019 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02002020 if (ret < 0) {
2021 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
2022 section_id);
2023 goto out;
2024 }
aliguoria672b462008-11-11 21:33:36 +00002025 break;
2026 default:
2027 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
2028 ret = -EINVAL;
2029 goto out;
2030 }
2031 }
2032
Jan Kiszkaea375f92010-03-01 19:10:30 +01002033 cpu_synchronize_all_post_init();
2034
aliguoria672b462008-11-11 21:33:36 +00002035 ret = 0;
2036
2037out:
Blue Swirl72cf2d42009-09-12 07:36:22 +00002038 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
2039 QLIST_REMOVE(le, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05002040 g_free(le);
aliguoria672b462008-11-11 21:33:36 +00002041 }
2042
Juan Quintela42802d42011-10-05 01:14:46 +02002043 if (ret == 0) {
2044 ret = qemu_file_get_error(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +02002045 }
aliguoria672b462008-11-11 21:33:36 +00002046
2047 return ret;
2048}
2049
aliguoria672b462008-11-11 21:33:36 +00002050static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
2051 const char *name)
2052{
2053 QEMUSnapshotInfo *sn_tab, *sn;
2054 int nb_sns, i, ret;
2055
2056 ret = -ENOENT;
2057 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2058 if (nb_sns < 0)
2059 return ret;
2060 for(i = 0; i < nb_sns; i++) {
2061 sn = &sn_tab[i];
2062 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
2063 *sn_info = *sn;
2064 ret = 0;
2065 break;
2066 }
2067 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002068 g_free(sn_tab);
aliguoria672b462008-11-11 21:33:36 +00002069 return ret;
2070}
2071
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002072/*
2073 * Deletes snapshots of a given name in all opened images.
2074 */
2075static int del_existing_snapshots(Monitor *mon, const char *name)
2076{
2077 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002078 QEMUSnapshotInfo sn1, *snapshot = &sn1;
2079 int ret;
2080
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002081 bs = NULL;
2082 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002083 if (bdrv_can_snapshot(bs) &&
2084 bdrv_snapshot_find(bs, snapshot, name) >= 0)
2085 {
2086 ret = bdrv_snapshot_delete(bs, name);
2087 if (ret < 0) {
2088 monitor_printf(mon,
2089 "Error while deleting snapshot on '%s'\n",
2090 bdrv_get_device_name(bs));
2091 return -1;
2092 }
2093 }
2094 }
2095
2096 return 0;
2097}
2098
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002099void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002100{
2101 BlockDriverState *bs, *bs1;
2102 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002103 int ret;
aliguoria672b462008-11-11 21:33:36 +00002104 QEMUFile *f;
2105 int saved_vm_running;
Kevin Wolfc2c9a462011-11-16 11:35:54 +01002106 uint64_t vm_state_size;
Stefan Weil68b891e2013-01-07 22:20:27 +01002107 qemu_timeval tv;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002108 struct tm tm;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002109 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002110
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002111 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002112 bs = NULL;
2113 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002114
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002115 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002116 continue;
2117 }
2118
2119 if (!bdrv_can_snapshot(bs)) {
2120 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
2121 bdrv_get_device_name(bs));
2122 return;
2123 }
2124 }
2125
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002126 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002127 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002128 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002129 return;
2130 }
aliguoria672b462008-11-11 21:33:36 +00002131
Luiz Capitulino13548692011-07-29 15:36:43 -03002132 saved_vm_running = runstate_is_running();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002133 vm_stop(RUN_STATE_SAVE_VM);
aliguoria672b462008-11-11 21:33:36 +00002134
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002135 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +00002136
2137 /* fill auxiliary fields */
Stefan Weil68b891e2013-01-07 22:20:27 +01002138 qemu_gettimeofday(&tv);
aliguoria672b462008-11-11 21:33:36 +00002139 sn->date_sec = tv.tv_sec;
2140 sn->date_nsec = tv.tv_usec * 1000;
Paolo Bonzini74475452011-03-11 16:47:48 +01002141 sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
aliguoria672b462008-11-11 21:33:36 +00002142
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002143 if (name) {
2144 ret = bdrv_snapshot_find(bs, old_sn, name);
2145 if (ret >= 0) {
2146 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2147 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2148 } else {
2149 pstrcpy(sn->name, sizeof(sn->name), name);
2150 }
2151 } else {
Blue Swirld7d9b522010-09-09 19:13:04 +00002152 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2153 localtime_r((const time_t *)&tv.tv_sec, &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002154 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002155 }
2156
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002157 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -02002158 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002159 goto the_end;
2160 }
2161
aliguoria672b462008-11-11 21:33:36 +00002162 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02002163 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00002164 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00002165 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00002166 goto the_end;
2167 }
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02002168 ret = qemu_savevm_state(f);
aliguori2d22b182008-12-11 21:06:49 +00002169 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00002170 qemu_fclose(f);
2171 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002172 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00002173 goto the_end;
2174 }
2175
2176 /* create the snapshots */
2177
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002178 bs1 = NULL;
2179 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002180 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +00002181 /* Write VM state size only to the image that contains the state */
2182 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00002183 ret = bdrv_snapshot_create(bs1, sn);
2184 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002185 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
2186 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002187 }
2188 }
2189 }
2190
2191 the_end:
2192 if (saved_vm_running)
2193 vm_start();
2194}
2195
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002196void qmp_xen_save_devices_state(const char *filename, Error **errp)
2197{
2198 QEMUFile *f;
2199 int saved_vm_running;
2200 int ret;
2201
2202 saved_vm_running = runstate_is_running();
2203 vm_stop(RUN_STATE_SAVE_VM);
2204
2205 f = qemu_fopen(filename, "wb");
2206 if (!f) {
2207 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
2208 goto the_end;
2209 }
2210 ret = qemu_save_device_state(f);
2211 qemu_fclose(f);
2212 if (ret < 0) {
2213 error_set(errp, QERR_IO_ERROR);
2214 }
2215
2216 the_end:
2217 if (saved_vm_running)
2218 vm_start();
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002219}
2220
Markus Armbruster03cd4652010-02-17 16:24:10 +01002221int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00002222{
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002223 BlockDriverState *bs, *bs_vm_state;
aliguori2d22b182008-12-11 21:06:49 +00002224 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00002225 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002226 int ret;
aliguoria672b462008-11-11 21:33:36 +00002227
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002228 bs_vm_state = bdrv_snapshots();
2229 if (!bs_vm_state) {
2230 error_report("No block device supports snapshots");
2231 return -ENOTSUP;
2232 }
2233
2234 /* Don't even try to load empty VM states */
2235 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2236 if (ret < 0) {
2237 return ret;
2238 } else if (sn.vm_state_size == 0) {
Kevin Wolfe11480d2011-03-01 10:48:12 +01002239 error_report("This is a disk-only snapshot. Revert to it offline "
2240 "using qemu-img.");
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002241 return -EINVAL;
2242 }
2243
2244 /* Verify if there is any device that doesn't support snapshots and is
2245 writable and check if the requested snapshot is available too. */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002246 bs = NULL;
2247 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002248
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002249 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002250 continue;
2251 }
2252
2253 if (!bdrv_can_snapshot(bs)) {
2254 error_report("Device '%s' is writable but does not support snapshots.",
2255 bdrv_get_device_name(bs));
2256 return -ENOTSUP;
2257 }
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002258
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002259 ret = bdrv_snapshot_find(bs, &sn, name);
2260 if (ret < 0) {
2261 error_report("Device '%s' does not have the requested snapshot '%s'",
2262 bdrv_get_device_name(bs), name);
2263 return ret;
2264 }
aliguoria672b462008-11-11 21:33:36 +00002265 }
2266
2267 /* Flush all IO requests so they don't interfere with the new state. */
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00002268 bdrv_drain_all();
aliguoria672b462008-11-11 21:33:36 +00002269
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002270 bs = NULL;
2271 while ((bs = bdrv_next(bs))) {
2272 if (bdrv_can_snapshot(bs)) {
2273 ret = bdrv_snapshot_goto(bs, name);
aliguoria672b462008-11-11 21:33:36 +00002274 if (ret < 0) {
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002275 error_report("Error %d while activating snapshot '%s' on '%s'",
2276 ret, name, bdrv_get_device_name(bs));
2277 return ret;
aliguoria672b462008-11-11 21:33:36 +00002278 }
2279 }
2280 }
2281
aliguoria672b462008-11-11 21:33:36 +00002282 /* restore the VM state */
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002283 f = qemu_fopen_bdrv(bs_vm_state, 0);
aliguoria672b462008-11-11 21:33:36 +00002284 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002285 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02002286 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00002287 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002288
Jan Kiszka5a8a49d2011-06-14 18:29:45 +02002289 qemu_system_reset(VMRESET_SILENT);
aliguoria672b462008-11-11 21:33:36 +00002290 ret = qemu_loadvm_state(f);
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002291
aliguoria672b462008-11-11 21:33:36 +00002292 qemu_fclose(f);
2293 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002294 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02002295 return ret;
aliguoria672b462008-11-11 21:33:36 +00002296 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002297
Juan Quintela05f24012009-08-20 19:42:22 +02002298 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02002299}
2300
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002301void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002302{
2303 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002304 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002305 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002306
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002307 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002308 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002309 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002310 return;
2311 }
2312
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002313 bs1 = NULL;
2314 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002315 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00002316 ret = bdrv_snapshot_delete(bs1, name);
2317 if (ret < 0) {
2318 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00002319 monitor_printf(mon,
2320 "Snapshots not supported on device '%s'\n",
2321 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002322 else
aliguori376253e2009-03-05 23:01:23 +00002323 monitor_printf(mon, "Error %d while deleting snapshot on "
2324 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002325 }
2326 }
2327 }
2328}
2329
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002330void do_info_snapshots(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002331{
2332 BlockDriverState *bs, *bs1;
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002333 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2334 int nb_sns, i, ret, available;
2335 int total;
2336 int *available_snapshots;
aliguoria672b462008-11-11 21:33:36 +00002337 char buf[256];
2338
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002339 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002340 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002341 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002342 return;
2343 }
aliguoria672b462008-11-11 21:33:36 +00002344
2345 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2346 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00002347 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00002348 return;
2349 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002350
2351 if (nb_sns == 0) {
2352 monitor_printf(mon, "There is no snapshot available.\n");
2353 return;
aliguoria672b462008-11-11 21:33:36 +00002354 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002355
Anthony Liguori7267c092011-08-20 22:09:37 -05002356 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002357 total = 0;
2358 for (i = 0; i < nb_sns; i++) {
2359 sn = &sn_tab[i];
2360 available = 1;
2361 bs1 = NULL;
2362
2363 while ((bs1 = bdrv_next(bs1))) {
2364 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2365 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2366 if (ret < 0) {
2367 available = 0;
2368 break;
2369 }
2370 }
2371 }
2372
2373 if (available) {
2374 available_snapshots[total] = i;
2375 total++;
2376 }
2377 }
2378
2379 if (total > 0) {
2380 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
2381 for (i = 0; i < total; i++) {
2382 sn = &sn_tab[available_snapshots[i]];
2383 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
2384 }
2385 } else {
2386 monitor_printf(mon, "There is no suitable snapshot available\n");
2387 }
2388
Anthony Liguori7267c092011-08-20 22:09:37 -05002389 g_free(sn_tab);
2390 g_free(available_snapshots);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002391
aliguoria672b462008-11-11 21:33:36 +00002392}
Avi Kivityc5705a72011-12-20 15:59:12 +02002393
2394void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2395{
Avi Kivity1ddde082012-01-08 13:18:19 +02002396 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
Avi Kivityc5705a72011-12-20 15:59:12 +02002397 memory_region_name(mr), dev);
2398}
2399
2400void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2401{
2402 /* Nothing do to while the implementation is in RAMBlock */
2403}
2404
2405void vmstate_register_ram_global(MemoryRegion *mr)
2406{
2407 vmstate_register_ram(mr, NULL);
2408}