blob: e0491e75801cc0f1f64cf3b649535afa93b51c5e [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"
Orit Wasserman28085f72013-03-22 16:47:58 +020042#include "qemu/iov.h"
Wenchao Xiade08c602013-05-25 11:09:43 +080043#include "block/snapshot.h"
Wenchao Xiaf364ec62013-05-25 11:09:44 +080044#include "block/qapi.h"
blueswir1511d2b12009-03-07 15:32:56 +000045
aliguoria672b462008-11-11 21:33:36 +000046#define SELF_ANNOUNCE_ROUNDS 5
aliguoria672b462008-11-11 21:33:36 +000047
Nolan18995b92009-10-15 16:53:55 -070048#ifndef ETH_P_RARP
Stefan Bergerf8778a72010-04-24 08:54:07 -040049#define ETH_P_RARP 0x8035
Nolan18995b92009-10-15 16:53:55 -070050#endif
51#define ARP_HTYPE_ETH 0x0001
52#define ARP_PTYPE_IP 0x0800
53#define ARP_OP_REQUEST_REV 0x3
54
55static int announce_self_create(uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +000056 uint8_t *mac_addr)
57{
Nolan18995b92009-10-15 16:53:55 -070058 /* Ethernet header. */
59 memset(buf, 0xff, 6); /* destination MAC addr */
60 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
61 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
aliguoria672b462008-11-11 21:33:36 +000062
Nolan18995b92009-10-15 16:53:55 -070063 /* RARP header. */
64 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
65 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
66 *(buf + 18) = 6; /* hardware addr length (ethernet) */
67 *(buf + 19) = 4; /* protocol addr length (IPv4) */
68 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
69 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
70 memset(buf + 28, 0x00, 4); /* source protocol addr */
71 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
72 memset(buf + 38, 0x00, 4); /* target protocol addr */
aliguoria672b462008-11-11 21:33:36 +000073
Nolan18995b92009-10-15 16:53:55 -070074 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
75 memset(buf + 42, 0x00, 18);
aliguoria672b462008-11-11 21:33:36 +000076
Nolan18995b92009-10-15 16:53:55 -070077 return 60; /* len (FCS will be added by hardware) */
aliguoria672b462008-11-11 21:33:36 +000078}
79
Mark McLoughlinf401ca22009-11-25 18:49:32 +000080static void qemu_announce_self_iter(NICState *nic, void *opaque)
81{
82 uint8_t buf[60];
83 int len;
84
85 len = announce_self_create(buf, nic->conf->macaddr.a);
86
Jason Wangb356f762013-01-30 19:12:22 +080087 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
Mark McLoughlinf401ca22009-11-25 18:49:32 +000088}
89
90
Gleb Natapoved8b3302009-05-21 17:17:44 +030091static void qemu_announce_self_once(void *opaque)
aliguoria672b462008-11-11 21:33:36 +000092{
Gleb Natapoved8b3302009-05-21 17:17:44 +030093 static int count = SELF_ANNOUNCE_ROUNDS;
94 QEMUTimer *timer = *(QEMUTimer **)opaque;
aliguoria672b462008-11-11 21:33:36 +000095
Mark McLoughlinf401ca22009-11-25 18:49:32 +000096 qemu_foreach_nic(qemu_announce_self_iter, NULL);
97
Nolan18995b92009-10-15 16:53:55 -070098 if (--count) {
99 /* delay 50ms, 150ms, 250ms, ... */
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100100 qemu_mod_timer(timer, qemu_get_clock_ms(rt_clock) +
Nolan18995b92009-10-15 16:53:55 -0700101 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300102 } else {
103 qemu_del_timer(timer);
104 qemu_free_timer(timer);
105 }
106}
107
108void qemu_announce_self(void)
109{
110 static QEMUTimer *timer;
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100111 timer = qemu_new_timer_ms(rt_clock, qemu_announce_self_once, &timer);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300112 qemu_announce_self_once(&timer);
aliguoria672b462008-11-11 21:33:36 +0000113}
114
115/***********************************************************/
116/* savevm/loadvm support */
117
118#define IO_BUF_SIZE 32768
Orit Wassermanb3ea2bd2013-03-22 16:48:00 +0200119#define MAX_IOV_SIZE MIN(IOV_MAX, 64)
aliguoria672b462008-11-11 21:33:36 +0000120
121struct QEMUFile {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200122 const QEMUFileOps *ops;
aliguoria672b462008-11-11 21:33:36 +0000123 void *opaque;
aliguoria672b462008-11-11 21:33:36 +0000124
Paolo Bonzini1964a392013-02-22 17:36:45 +0100125 int64_t bytes_xfer;
126 int64_t xfer_limit;
127
Paolo Bonzini3f2d38f2013-02-22 17:36:40 +0100128 int64_t pos; /* start of buffer when writing, end of buffer
129 when reading */
aliguoria672b462008-11-11 21:33:36 +0000130 int buf_index;
131 int buf_size; /* 0 when writing */
132 uint8_t buf[IO_BUF_SIZE];
133
Orit Wassermanb3ea2bd2013-03-22 16:48:00 +0200134 struct iovec iov[MAX_IOV_SIZE];
135 unsigned int iovcnt;
136
Juan Quintela3961b4d2011-10-05 01:05:21 +0200137 int last_error;
aliguoria672b462008-11-11 21:33:36 +0000138};
139
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200140typedef struct QEMUFileStdio
aliguoria672b462008-11-11 21:33:36 +0000141{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200142 FILE *stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000143 QEMUFile *file;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200144} QEMUFileStdio;
aliguoria672b462008-11-11 21:33:36 +0000145
146typedef struct QEMUFileSocket
147{
148 int fd;
149 QEMUFile *file;
150} QEMUFileSocket;
151
Kevin Wolf05fcc842013-04-05 21:27:54 +0200152static ssize_t socket_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
153 int64_t pos)
Orit Wasserman28085f72013-03-22 16:47:58 +0200154{
155 QEMUFileSocket *s = opaque;
156 ssize_t len;
157 ssize_t size = iov_size(iov, iovcnt);
158
159 len = iov_send(s->fd, iov, iovcnt, 0, size);
160 if (len < size) {
161 len = -socket_error();
162 }
163 return len;
164}
165
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200166static int socket_get_fd(void *opaque)
167{
168 QEMUFileSocket *s = opaque;
169
170 return s->fd;
171}
172
aliguoria672b462008-11-11 21:33:36 +0000173static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
174{
175 QEMUFileSocket *s = opaque;
176 ssize_t len;
177
Paolo Bonzini595ab642012-08-07 11:07:59 +0200178 for (;;) {
Blue Swirl00aa0042011-07-23 20:04:29 +0000179 len = qemu_recv(s->fd, buf, size, 0);
Paolo Bonzini595ab642012-08-07 11:07:59 +0200180 if (len != -1) {
181 break;
182 }
183 if (socket_error() == EAGAIN) {
Stefan Hajnoczid7cd3692013-02-11 17:01:45 +0100184 yield_until_fd_readable(s->fd);
Paolo Bonzini595ab642012-08-07 11:07:59 +0200185 } else if (socket_error() != EINTR) {
186 break;
187 }
188 }
aliguoria672b462008-11-11 21:33:36 +0000189
Paolo Bonzini595ab642012-08-07 11:07:59 +0200190 if (len == -1) {
aliguoria672b462008-11-11 21:33:36 +0000191 len = -socket_error();
Paolo Bonzini595ab642012-08-07 11:07:59 +0200192 }
aliguoria672b462008-11-11 21:33:36 +0000193 return len;
194}
195
196static int socket_close(void *opaque)
197{
198 QEMUFileSocket *s = opaque;
Paolo Bonziniab52a822012-08-07 10:50:26 +0200199 closesocket(s->fd);
Anthony Liguori7267c092011-08-20 22:09:37 -0500200 g_free(s);
aliguoria672b462008-11-11 21:33:36 +0000201 return 0;
202}
203
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200204static int stdio_get_fd(void *opaque)
205{
206 QEMUFileStdio *s = opaque;
207
208 return fileno(s->stdio_file);
209}
210
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200211static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000212{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200213 QEMUFileStdio *s = opaque;
214 return fwrite(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000215}
216
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200217static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000218{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200219 QEMUFileStdio *s = opaque;
220 FILE *fp = s->stdio_file;
Uri Lublin8a67ec42009-06-08 19:27:21 +0300221 int bytes;
222
Paolo Bonzini595ab642012-08-07 11:07:59 +0200223 for (;;) {
Uri Lublin8a67ec42009-06-08 19:27:21 +0300224 clearerr(fp);
225 bytes = fread(buf, 1, size, fp);
Paolo Bonzini595ab642012-08-07 11:07:59 +0200226 if (bytes != 0 || !ferror(fp)) {
227 break;
228 }
229 if (errno == EAGAIN) {
Stefan Hajnoczid7cd3692013-02-11 17:01:45 +0100230 yield_until_fd_readable(fileno(fp));
Paolo Bonzini595ab642012-08-07 11:07:59 +0200231 } else if (errno != EINTR) {
232 break;
233 }
234 }
Uri Lublin8a67ec42009-06-08 19:27:21 +0300235 return bytes;
aliguoria672b462008-11-11 21:33:36 +0000236}
237
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200238static int stdio_pclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000239{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200240 QEMUFileStdio *s = opaque;
Anthony Liguori41ef56e2010-06-02 14:55:25 -0500241 int ret;
242 ret = pclose(s->stdio_file);
Eduardo Habkost26f1af02011-11-10 10:41:44 -0200243 if (ret == -1) {
244 ret = -errno;
Paolo Bonzini13c7b2d2013-02-22 17:36:38 +0100245 } else if (!WIFEXITED(ret) || WEXITSTATUS(ret) != 0) {
246 /* close succeeded, but non-zero exit code: */
247 ret = -EIO; /* fake errno value */
Eduardo Habkost26f1af02011-11-10 10:41:44 -0200248 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500249 g_free(s);
Anthony Liguori41ef56e2010-06-02 14:55:25 -0500250 return ret;
aliguoria672b462008-11-11 21:33:36 +0000251}
252
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200253static int stdio_fclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000254{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200255 QEMUFileStdio *s = opaque;
Eduardo Habkost0e286702011-11-10 10:41:45 -0200256 int ret = 0;
Paolo Bonzinice39ee32013-02-22 17:36:37 +0100257
Orit Wassermancb88aa82013-03-22 16:48:01 +0200258 if (s->file->ops->put_buffer || s->file->ops->writev_buffer) {
Paolo Bonzinice39ee32013-02-22 17:36:37 +0100259 int fd = fileno(s->stdio_file);
260 struct stat st;
261
262 ret = fstat(fd, &st);
263 if (ret == 0 && S_ISREG(st.st_mode)) {
264 /*
265 * If the file handle is a regular file make sure the
266 * data is flushed to disk before signaling success.
267 */
268 ret = fsync(fd);
269 if (ret != 0) {
270 ret = -errno;
271 return ret;
272 }
273 }
274 }
Eduardo Habkost0e286702011-11-10 10:41:45 -0200275 if (fclose(s->stdio_file) == EOF) {
276 ret = -errno;
277 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500278 g_free(s);
Eduardo Habkost0e286702011-11-10 10:41:45 -0200279 return ret;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200280}
aliguoria672b462008-11-11 21:33:36 +0000281
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200282static const QEMUFileOps stdio_pipe_read_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200283 .get_fd = stdio_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200284 .get_buffer = stdio_get_buffer,
285 .close = stdio_pclose
286};
287
288static const QEMUFileOps stdio_pipe_write_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200289 .get_fd = stdio_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200290 .put_buffer = stdio_put_buffer,
291 .close = stdio_pclose
292};
293
Paolo Bonzini817b9ed2013-02-22 17:36:36 +0100294QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200295{
Paolo Bonzini817b9ed2013-02-22 17:36:36 +0100296 FILE *stdio_file;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200297 QEMUFileStdio *s;
298
Paolo Bonzinia4cc73d2013-05-31 14:00:27 +0200299 if (mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
300 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
Paolo Bonzini817b9ed2013-02-22 17:36:36 +0100301 return NULL;
302 }
303
Paolo Bonzinia4cc73d2013-05-31 14:00:27 +0200304 stdio_file = popen(command, mode);
305 if (stdio_file == NULL) {
aliguoria672b462008-11-11 21:33:36 +0000306 return NULL;
307 }
308
Anthony Liguori7267c092011-08-20 22:09:37 -0500309 s = g_malloc0(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000310
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200311 s->stdio_file = stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000312
313 if(mode[0] == 'r') {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200314 s->file = qemu_fopen_ops(s, &stdio_pipe_read_ops);
aliguoria672b462008-11-11 21:33:36 +0000315 } else {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200316 s->file = qemu_fopen_ops(s, &stdio_pipe_write_ops);
aliguoria672b462008-11-11 21:33:36 +0000317 }
aliguoria672b462008-11-11 21:33:36 +0000318 return s->file;
319}
320
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200321static const QEMUFileOps stdio_file_read_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200322 .get_fd = stdio_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200323 .get_buffer = stdio_get_buffer,
324 .close = stdio_fclose
325};
326
327static const QEMUFileOps stdio_file_write_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200328 .get_fd = stdio_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200329 .put_buffer = stdio_put_buffer,
330 .close = stdio_fclose
331};
332
Paolo Bonzinie9d8fbf2013-03-27 17:36:32 +0100333static ssize_t unix_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
334 int64_t pos)
335{
336 QEMUFileSocket *s = opaque;
337 ssize_t len, offset;
338 ssize_t size = iov_size(iov, iovcnt);
339 ssize_t total = 0;
340
341 assert(iovcnt > 0);
342 offset = 0;
343 while (size > 0) {
344 /* Find the next start position; skip all full-sized vector elements */
345 while (offset >= iov[0].iov_len) {
346 offset -= iov[0].iov_len;
347 iov++, iovcnt--;
348 }
349
350 /* skip `offset' bytes from the (now) first element, undo it on exit */
351 assert(iovcnt > 0);
352 iov[0].iov_base += offset;
353 iov[0].iov_len -= offset;
354
355 do {
356 len = writev(s->fd, iov, iovcnt);
357 } while (len == -1 && errno == EINTR);
358 if (len == -1) {
359 return -errno;
360 }
361
362 /* Undo the changes above */
363 iov[0].iov_base -= offset;
364 iov[0].iov_len += offset;
365
366 /* Prepare for the next iteration */
367 offset += len;
368 total += len;
369 size -= len;
370 }
371
372 return total;
373}
374
375static int unix_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
376{
377 QEMUFileSocket *s = opaque;
378 ssize_t len;
379
380 for (;;) {
381 len = read(s->fd, buf, size);
382 if (len != -1) {
383 break;
384 }
385 if (errno == EAGAIN) {
386 yield_until_fd_readable(s->fd);
387 } else if (errno != EINTR) {
388 break;
389 }
390 }
391
392 if (len == -1) {
393 len = -errno;
394 }
395 return len;
396}
397
398static int unix_close(void *opaque)
399{
400 QEMUFileSocket *s = opaque;
401 close(s->fd);
402 g_free(s);
403 return 0;
404}
405
406static const QEMUFileOps unix_read_ops = {
407 .get_fd = socket_get_fd,
408 .get_buffer = unix_get_buffer,
409 .close = unix_close
410};
411
412static const QEMUFileOps unix_write_ops = {
413 .get_fd = socket_get_fd,
414 .writev_buffer = unix_writev_buffer,
415 .close = unix_close
416};
417
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200418QEMUFile *qemu_fdopen(int fd, const char *mode)
419{
Paolo Bonzinie9d8fbf2013-03-27 17:36:32 +0100420 QEMUFileSocket *s;
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200421
422 if (mode == NULL ||
423 (mode[0] != 'r' && mode[0] != 'w') ||
424 mode[1] != 'b' || mode[2] != 0) {
425 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
426 return NULL;
427 }
428
Paolo Bonzinie9d8fbf2013-03-27 17:36:32 +0100429 s = g_malloc0(sizeof(QEMUFileSocket));
430 s->fd = fd;
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200431
432 if(mode[0] == 'r') {
Paolo Bonzinie9d8fbf2013-03-27 17:36:32 +0100433 s->file = qemu_fopen_ops(s, &unix_read_ops);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200434 } else {
Paolo Bonzinie9d8fbf2013-03-27 17:36:32 +0100435 s->file = qemu_fopen_ops(s, &unix_write_ops);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200436 }
437 return s->file;
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200438}
439
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200440static const QEMUFileOps socket_read_ops = {
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200441 .get_fd = socket_get_fd,
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200442 .get_buffer = socket_get_buffer,
443 .close = socket_close
444};
445
Paolo Bonzini0cc3f3c2013-02-22 17:36:39 +0100446static const QEMUFileOps socket_write_ops = {
447 .get_fd = socket_get_fd,
Orit Wasserman28085f72013-03-22 16:47:58 +0200448 .writev_buffer = socket_writev_buffer,
Paolo Bonzini0cc3f3c2013-02-22 17:36:39 +0100449 .close = socket_close
450};
451
Michael R. Hinesbc1256f2013-06-25 21:35:31 -0400452bool qemu_file_mode_is_not_valid(const char *mode)
aliguoria672b462008-11-11 21:33:36 +0000453{
Paolo Bonzini0cc3f3c2013-02-22 17:36:39 +0100454 if (mode == NULL ||
455 (mode[0] != 'r' && mode[0] != 'w') ||
456 mode[1] != 'b' || mode[2] != 0) {
457 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
Michael R. Hinesbc1256f2013-06-25 21:35:31 -0400458 return true;
459 }
460
461 return false;
462}
463
464QEMUFile *qemu_fopen_socket(int fd, const char *mode)
465{
466 QEMUFileSocket *s;
467
468 if (qemu_file_mode_is_not_valid(mode)) {
Paolo Bonzini0cc3f3c2013-02-22 17:36:39 +0100469 return NULL;
470 }
471
Stefan Weil4f080052013-06-16 13:33:05 +0200472 s = g_malloc0(sizeof(QEMUFileSocket));
aliguoria672b462008-11-11 21:33:36 +0000473 s->fd = fd;
Paolo Bonzini0cc3f3c2013-02-22 17:36:39 +0100474 if (mode[0] == 'w') {
Stefan Hajnoczif9e8cac2013-03-27 10:10:43 +0100475 qemu_set_block(s->fd);
Paolo Bonzini0cc3f3c2013-02-22 17:36:39 +0100476 s->file = qemu_fopen_ops(s, &socket_write_ops);
477 } else {
478 s->file = qemu_fopen_ops(s, &socket_read_ops);
479 }
aliguoria672b462008-11-11 21:33:36 +0000480 return s->file;
481}
482
aliguoria672b462008-11-11 21:33:36 +0000483QEMUFile *qemu_fopen(const char *filename, const char *mode)
484{
485 QEMUFileStdio *s;
486
Michael R. Hinesbc1256f2013-06-25 21:35:31 -0400487 if (qemu_file_mode_is_not_valid(mode)) {
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200488 return NULL;
489 }
490
Anthony Liguori7267c092011-08-20 22:09:37 -0500491 s = g_malloc0(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000492
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200493 s->stdio_file = fopen(filename, mode);
494 if (!s->stdio_file)
aliguoria672b462008-11-11 21:33:36 +0000495 goto fail;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200496
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200497 if(mode[0] == 'w') {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200498 s->file = qemu_fopen_ops(s, &stdio_file_write_ops);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200499 } else {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200500 s->file = qemu_fopen_ops(s, &stdio_file_read_ops);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200501 }
502 return s->file;
aliguoria672b462008-11-11 21:33:36 +0000503fail:
Anthony Liguori7267c092011-08-20 22:09:37 -0500504 g_free(s);
aliguoria672b462008-11-11 21:33:36 +0000505 return NULL;
506}
507
Kevin Wolf05fcc842013-04-05 21:27:54 +0200508static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
509 int64_t pos)
510{
511 int ret;
512 QEMUIOVector qiov;
513
514 qemu_iovec_init_external(&qiov, iov, iovcnt);
515 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
516 if (ret < 0) {
517 return ret;
518 }
519
520 return qiov.size;
521}
522
aliguori178e08a2009-04-05 19:10:55 +0000523static int block_put_buffer(void *opaque, const uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +0000524 int64_t pos, int size)
525{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200526 bdrv_save_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000527 return size;
528}
529
aliguori178e08a2009-04-05 19:10:55 +0000530static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000531{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200532 return bdrv_load_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000533}
534
535static int bdrv_fclose(void *opaque)
536{
Paolo Bonziniad492c92012-06-06 00:04:50 +0200537 return bdrv_flush(opaque);
aliguoria672b462008-11-11 21:33:36 +0000538}
539
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200540static const QEMUFileOps bdrv_read_ops = {
541 .get_buffer = block_get_buffer,
542 .close = bdrv_fclose
543};
544
545static const QEMUFileOps bdrv_write_ops = {
Kevin Wolf05fcc842013-04-05 21:27:54 +0200546 .put_buffer = block_put_buffer,
547 .writev_buffer = block_writev_buffer,
548 .close = bdrv_fclose
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200549};
550
Christoph Hellwig45566e92009-07-10 23:11:57 +0200551static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
aliguoria672b462008-11-11 21:33:36 +0000552{
aliguoria672b462008-11-11 21:33:36 +0000553 if (is_writable)
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200554 return qemu_fopen_ops(bs, &bdrv_write_ops);
555 return qemu_fopen_ops(bs, &bdrv_read_ops);
aliguoria672b462008-11-11 21:33:36 +0000556}
557
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200558QEMUFile *qemu_fopen_ops(void *opaque, const QEMUFileOps *ops)
aliguoria672b462008-11-11 21:33:36 +0000559{
560 QEMUFile *f;
561
Anthony Liguori7267c092011-08-20 22:09:37 -0500562 f = g_malloc0(sizeof(QEMUFile));
aliguoria672b462008-11-11 21:33:36 +0000563
564 f->opaque = opaque;
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200565 f->ops = ops;
aliguoria672b462008-11-11 21:33:36 +0000566 return f;
567}
568
Juan Quintela624b9cc2011-10-05 01:02:52 +0200569int qemu_file_get_error(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000570{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200571 return f->last_error;
aliguoria672b462008-11-11 21:33:36 +0000572}
573
Paolo Bonzini05f28b82013-02-22 17:36:31 +0100574static void qemu_file_set_error(QEMUFile *f, int ret)
aliguori4dabe242009-04-05 19:30:51 +0000575{
Juan Quintelaafe41932013-01-14 13:36:28 +0100576 if (f->last_error == 0) {
577 f->last_error = ret;
578 }
aliguori4dabe242009-04-05 19:30:51 +0000579}
580
Paolo Bonzinid9658c42013-04-08 13:29:56 +0200581static inline bool qemu_file_is_writable(QEMUFile *f)
582{
583 return f->ops->writev_buffer || f->ops->put_buffer;
584}
585
Orit Wassermancb88aa82013-03-22 16:48:01 +0200586/**
587 * Flushes QEMUFile buffer
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200588 *
Orit Wassermancb88aa82013-03-22 16:48:01 +0200589 * If there is writev_buffer QEMUFileOps it uses it otherwise uses
590 * put_buffer ops.
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200591 */
Michael R. Hinesbe903b22013-06-25 21:35:32 -0400592void qemu_fflush(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000593{
Orit Wassermancb88aa82013-03-22 16:48:01 +0200594 ssize_t ret = 0;
Juan Quintela7311bea2012-08-29 19:08:59 +0200595
Paolo Bonzinid9658c42013-04-08 13:29:56 +0200596 if (!qemu_file_is_writable(f)) {
Paolo Bonzini93bf2102013-02-22 17:36:12 +0100597 return;
598 }
Orit Wassermancb88aa82013-03-22 16:48:01 +0200599
Paolo Bonzinid9658c42013-04-08 13:29:56 +0200600 if (f->ops->writev_buffer) {
601 if (f->iovcnt > 0) {
Kevin Wolf05fcc842013-04-05 21:27:54 +0200602 ret = f->ops->writev_buffer(f->opaque, f->iov, f->iovcnt, f->pos);
Juan Quintela7311bea2012-08-29 19:08:59 +0200603 }
Paolo Bonzinid9658c42013-04-08 13:29:56 +0200604 } else {
605 if (f->buf_index > 0) {
606 ret = f->ops->put_buffer(f->opaque, f->buf, f->pos, f->buf_index);
Paolo Bonzini7ce51f12013-04-08 13:29:55 +0200607 }
aliguoria672b462008-11-11 21:33:36 +0000608 }
Paolo Bonzinid9658c42013-04-08 13:29:56 +0200609 if (ret >= 0) {
610 f->pos += ret;
611 }
612 f->buf_index = 0;
613 f->iovcnt = 0;
Paolo Bonzini93bf2102013-02-22 17:36:12 +0100614 if (ret < 0) {
615 qemu_file_set_error(f, ret);
616 }
aliguoria672b462008-11-11 21:33:36 +0000617}
618
Michael R. Hines43487c62013-06-25 21:35:35 -0400619void ram_control_before_iterate(QEMUFile *f, uint64_t flags)
620{
621 int ret = 0;
622
623 if (f->ops->before_ram_iterate) {
624 ret = f->ops->before_ram_iterate(f, f->opaque, flags);
625 if (ret < 0) {
626 qemu_file_set_error(f, ret);
627 }
628 }
629}
630
631void ram_control_after_iterate(QEMUFile *f, uint64_t flags)
632{
633 int ret = 0;
634
635 if (f->ops->after_ram_iterate) {
636 ret = f->ops->after_ram_iterate(f, f->opaque, flags);
637 if (ret < 0) {
638 qemu_file_set_error(f, ret);
639 }
640 }
641}
642
643void ram_control_load_hook(QEMUFile *f, uint64_t flags)
644{
645 int ret = 0;
646
647 if (f->ops->hook_ram_load) {
648 ret = f->ops->hook_ram_load(f, f->opaque, flags);
649 if (ret < 0) {
650 qemu_file_set_error(f, ret);
651 }
652 } else {
653 qemu_file_set_error(f, ret);
654 }
655}
656
657size_t ram_control_save_page(QEMUFile *f, ram_addr_t block_offset,
658 ram_addr_t offset, size_t size, int *bytes_sent)
659{
660 if (f->ops->save_page) {
661 int ret = f->ops->save_page(f, f->opaque, block_offset,
662 offset, size, bytes_sent);
663
664 if (ret != RAM_SAVE_CONTROL_DELAYED) {
665 if (*bytes_sent > 0) {
666 qemu_update_position(f, *bytes_sent);
667 } else if (ret < 0) {
668 qemu_file_set_error(f, ret);
669 }
670 }
671
672 return ret;
673 }
674
675 return RAM_SAVE_CONTROL_NOT_SUPP;
676}
677
aliguoria672b462008-11-11 21:33:36 +0000678static void qemu_fill_buffer(QEMUFile *f)
679{
680 int len;
Juan Quintela0046c452011-09-30 19:28:45 +0200681 int pending;
aliguoria672b462008-11-11 21:33:36 +0000682
Paolo Bonzinid9658c42013-04-08 13:29:56 +0200683 assert(!qemu_file_is_writable(f));
aliguoria672b462008-11-11 21:33:36 +0000684
Juan Quintela0046c452011-09-30 19:28:45 +0200685 pending = f->buf_size - f->buf_index;
686 if (pending > 0) {
687 memmove(f->buf, f->buf + f->buf_index, pending);
688 }
689 f->buf_index = 0;
690 f->buf_size = pending;
691
Paolo Bonzini3f2d38f2013-02-22 17:36:40 +0100692 len = f->ops->get_buffer(f->opaque, f->buf + pending, f->pos,
Juan Quintela0046c452011-09-30 19:28:45 +0200693 IO_BUF_SIZE - pending);
aliguoria672b462008-11-11 21:33:36 +0000694 if (len > 0) {
Juan Quintela0046c452011-09-30 19:28:45 +0200695 f->buf_size += len;
Paolo Bonzini3f2d38f2013-02-22 17:36:40 +0100696 f->pos += len;
Juan Quintelafa39a302011-10-25 19:18:58 +0200697 } else if (len == 0) {
Juan Quintela02c4a052012-08-29 19:36:26 +0200698 qemu_file_set_error(f, -EIO);
aliguoria672b462008-11-11 21:33:36 +0000699 } else if (len != -EAGAIN)
Eduardo Habkostc29110d2011-11-10 10:41:39 -0200700 qemu_file_set_error(f, len);
aliguoria672b462008-11-11 21:33:36 +0000701}
702
Paolo Bonzini70eb6332012-08-08 10:20:18 +0200703int qemu_get_fd(QEMUFile *f)
704{
705 if (f->ops->get_fd) {
706 return f->ops->get_fd(f->opaque);
707 }
708 return -1;
709}
710
Michael R. Hines2b0ce072013-06-25 21:35:28 -0400711void qemu_update_position(QEMUFile *f, size_t size)
712{
713 f->pos += size;
714}
715
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200716/** Closes the file
717 *
718 * Returns negative error value if any error happened on previous operations or
719 * while closing the file. Returns 0 or positive number on success.
720 *
721 * The meaning of return value on success depends on the specific backend
722 * being used.
723 */
724int qemu_fclose(QEMUFile *f)
725{
Juan Quintela29eee862012-08-29 19:14:54 +0200726 int ret;
Paolo Bonzini93bf2102013-02-22 17:36:12 +0100727 qemu_fflush(f);
728 ret = qemu_file_get_error(f);
Juan Quintela7311bea2012-08-29 19:08:59 +0200729
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200730 if (f->ops->close) {
731 int ret2 = f->ops->close(f->opaque);
Juan Quintela29eee862012-08-29 19:14:54 +0200732 if (ret >= 0) {
733 ret = ret2;
734 }
Juan Quintela7311bea2012-08-29 19:08:59 +0200735 }
Eduardo Habkostd82ca912011-11-10 10:41:43 -0200736 /* If any error was spotted before closing, we should report it
737 * instead of the close() return value.
738 */
739 if (f->last_error) {
740 ret = f->last_error;
741 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500742 g_free(f);
aliguoria672b462008-11-11 21:33:36 +0000743 return ret;
744}
745
Orit Wassermanb3ea2bd2013-03-22 16:48:00 +0200746static void add_to_iovec(QEMUFile *f, const uint8_t *buf, int size)
747{
748 /* check for adjacent buffer and coalesce them */
749 if (f->iovcnt > 0 && buf == f->iov[f->iovcnt - 1].iov_base +
750 f->iov[f->iovcnt - 1].iov_len) {
751 f->iov[f->iovcnt - 1].iov_len += size;
752 } else {
753 f->iov[f->iovcnt].iov_base = (uint8_t *)buf;
754 f->iov[f->iovcnt++].iov_len = size;
755 }
Paolo Bonziniaf74db72013-04-08 13:29:54 +0200756
Paolo Bonzini4d117242013-04-08 13:29:57 +0200757 if (f->iovcnt >= MAX_IOV_SIZE) {
Paolo Bonziniaf74db72013-04-08 13:29:54 +0200758 qemu_fflush(f);
759 }
Orit Wassermanb3ea2bd2013-03-22 16:48:00 +0200760}
761
Orit Wasserman6181ec22013-03-22 16:48:02 +0200762void qemu_put_buffer_async(QEMUFile *f, const uint8_t *buf, int size)
763{
Paolo Bonzini7ce51f12013-04-08 13:29:55 +0200764 if (!f->ops->writev_buffer) {
765 qemu_put_buffer(f, buf, size);
766 return;
767 }
768
Orit Wasserman6181ec22013-03-22 16:48:02 +0200769 if (f->last_error) {
770 return;
771 }
772
Orit Wasserman6181ec22013-03-22 16:48:02 +0200773 f->bytes_xfer += size;
Paolo Bonziniaf74db72013-04-08 13:29:54 +0200774 add_to_iovec(f, buf, size);
Orit Wasserman6181ec22013-03-22 16:48:02 +0200775}
776
aliguoria672b462008-11-11 21:33:36 +0000777void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
778{
779 int l;
780
Juan Quintelac10682c2012-08-29 19:43:39 +0200781 if (f->last_error) {
782 return;
783 }
784
Juan Quintelac10682c2012-08-29 19:43:39 +0200785 while (size > 0) {
aliguoria672b462008-11-11 21:33:36 +0000786 l = IO_BUF_SIZE - f->buf_index;
787 if (l > size)
788 l = size;
789 memcpy(f->buf + f->buf_index, buf, l);
Paolo Bonzini7ce51f12013-04-08 13:29:55 +0200790 f->bytes_xfer += size;
791 if (f->ops->writev_buffer) {
792 add_to_iovec(f, f->buf + f->buf_index, l);
Paolo Bonzini4d117242013-04-08 13:29:57 +0200793 }
794 f->buf_index += l;
795 if (f->buf_index == IO_BUF_SIZE) {
796 qemu_fflush(f);
Paolo Bonzini7ce51f12013-04-08 13:29:55 +0200797 }
Orit Wasserman6181ec22013-03-22 16:48:02 +0200798 if (qemu_file_get_error(f)) {
799 break;
800 }
aliguoria672b462008-11-11 21:33:36 +0000801 buf += l;
802 size -= l;
aliguoria672b462008-11-11 21:33:36 +0000803 }
804}
805
806void qemu_put_byte(QEMUFile *f, int v)
807{
Juan Quintelac10682c2012-08-29 19:43:39 +0200808 if (f->last_error) {
809 return;
810 }
811
Paolo Bonziniaf74db72013-04-08 13:29:54 +0200812 f->buf[f->buf_index] = v;
Orit Wasserman7d8a30b2013-03-22 16:47:59 +0200813 f->bytes_xfer++;
Paolo Bonzini7ce51f12013-04-08 13:29:55 +0200814 if (f->ops->writev_buffer) {
815 add_to_iovec(f, f->buf + f->buf_index, 1);
Paolo Bonzini4d117242013-04-08 13:29:57 +0200816 }
817 f->buf_index++;
818 if (f->buf_index == IO_BUF_SIZE) {
819 qemu_fflush(f);
Paolo Bonzini7ce51f12013-04-08 13:29:55 +0200820 }
aliguoria672b462008-11-11 21:33:36 +0000821}
822
Juan Quintelac6380722011-10-04 15:28:31 +0200823static void qemu_file_skip(QEMUFile *f, int size)
aliguoria672b462008-11-11 21:33:36 +0000824{
Juan Quintelac6380722011-10-04 15:28:31 +0200825 if (f->buf_index + size <= f->buf_size) {
826 f->buf_index += size;
aliguoria672b462008-11-11 21:33:36 +0000827 }
aliguoria672b462008-11-11 21:33:36 +0000828}
829
Juan Quintelac6380722011-10-04 15:28:31 +0200830static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
Juan Quintela811814b2010-07-26 21:38:43 +0200831{
Juan Quintelac6380722011-10-04 15:28:31 +0200832 int pending;
833 int index;
Juan Quintela811814b2010-07-26 21:38:43 +0200834
Paolo Bonzinid9658c42013-04-08 13:29:56 +0200835 assert(!qemu_file_is_writable(f));
Juan Quintela811814b2010-07-26 21:38:43 +0200836
Juan Quintelac6380722011-10-04 15:28:31 +0200837 index = f->buf_index + offset;
838 pending = f->buf_size - index;
839 if (pending < size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200840 qemu_fill_buffer(f);
Juan Quintelac6380722011-10-04 15:28:31 +0200841 index = f->buf_index + offset;
842 pending = f->buf_size - index;
843 }
844
845 if (pending <= 0) {
846 return 0;
847 }
848 if (size > pending) {
849 size = pending;
850 }
851
852 memcpy(buf, f->buf + index, size);
853 return size;
854}
855
856int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
857{
858 int pending = size;
859 int done = 0;
860
861 while (pending > 0) {
862 int res;
863
864 res = qemu_peek_buffer(f, buf, pending, 0);
865 if (res == 0) {
866 return done;
867 }
868 qemu_file_skip(f, res);
869 buf += res;
870 pending -= res;
871 done += res;
872 }
873 return done;
874}
875
876static int qemu_peek_byte(QEMUFile *f, int offset)
877{
878 int index = f->buf_index + offset;
879
Paolo Bonzinid9658c42013-04-08 13:29:56 +0200880 assert(!qemu_file_is_writable(f));
Juan Quintelac6380722011-10-04 15:28:31 +0200881
882 if (index >= f->buf_size) {
883 qemu_fill_buffer(f);
884 index = f->buf_index + offset;
885 if (index >= f->buf_size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200886 return 0;
Juan Quintelab9ce1452011-10-04 13:55:32 +0200887 }
Juan Quintela811814b2010-07-26 21:38:43 +0200888 }
Juan Quintelac6380722011-10-04 15:28:31 +0200889 return f->buf[index];
Juan Quintela811814b2010-07-26 21:38:43 +0200890}
891
aliguoria672b462008-11-11 21:33:36 +0000892int qemu_get_byte(QEMUFile *f)
893{
Juan Quintela65f3bb32011-10-06 14:29:32 +0200894 int result;
aliguoria672b462008-11-11 21:33:36 +0000895
Juan Quintelac6380722011-10-04 15:28:31 +0200896 result = qemu_peek_byte(f, 0);
897 qemu_file_skip(f, 1);
Juan Quintela65f3bb32011-10-06 14:29:32 +0200898 return result;
aliguoria672b462008-11-11 21:33:36 +0000899}
900
Stefan Hajnocziad55ab42013-02-12 10:37:14 +0100901int64_t qemu_ftell(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000902{
Paolo Bonzini3f2d38f2013-02-22 17:36:40 +0100903 qemu_fflush(f);
904 return f->pos;
aliguoria672b462008-11-11 21:33:36 +0000905}
906
aliguoria672b462008-11-11 21:33:36 +0000907int qemu_file_rate_limit(QEMUFile *f)
908{
Paolo Bonzini1964a392013-02-22 17:36:45 +0100909 if (qemu_file_get_error(f)) {
910 return 1;
911 }
912 if (f->xfer_limit > 0 && f->bytes_xfer > f->xfer_limit) {
913 return 1;
914 }
aliguoria672b462008-11-11 21:33:36 +0000915 return 0;
916}
917
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200918int64_t qemu_file_get_rate_limit(QEMUFile *f)
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200919{
Paolo Bonzini1964a392013-02-22 17:36:45 +0100920 return f->xfer_limit;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200921}
922
Paolo Bonzini1964a392013-02-22 17:36:45 +0100923void qemu_file_set_rate_limit(QEMUFile *f, int64_t limit)
Glauber Costa19629532009-05-20 18:26:57 -0400924{
Paolo Bonzini1964a392013-02-22 17:36:45 +0100925 f->xfer_limit = limit;
926}
Glauber Costa19629532009-05-20 18:26:57 -0400927
Paolo Bonzini1964a392013-02-22 17:36:45 +0100928void qemu_file_reset_rate_limit(QEMUFile *f)
929{
930 f->bytes_xfer = 0;
Glauber Costa19629532009-05-20 18:26:57 -0400931}
932
aliguoria672b462008-11-11 21:33:36 +0000933void qemu_put_be16(QEMUFile *f, unsigned int v)
934{
935 qemu_put_byte(f, v >> 8);
936 qemu_put_byte(f, v);
937}
938
939void qemu_put_be32(QEMUFile *f, unsigned int v)
940{
941 qemu_put_byte(f, v >> 24);
942 qemu_put_byte(f, v >> 16);
943 qemu_put_byte(f, v >> 8);
944 qemu_put_byte(f, v);
945}
946
947void qemu_put_be64(QEMUFile *f, uint64_t v)
948{
949 qemu_put_be32(f, v >> 32);
950 qemu_put_be32(f, v);
951}
952
953unsigned int qemu_get_be16(QEMUFile *f)
954{
955 unsigned int v;
956 v = qemu_get_byte(f) << 8;
957 v |= qemu_get_byte(f);
958 return v;
959}
960
961unsigned int qemu_get_be32(QEMUFile *f)
962{
963 unsigned int v;
964 v = qemu_get_byte(f) << 24;
965 v |= qemu_get_byte(f) << 16;
966 v |= qemu_get_byte(f) << 8;
967 v |= qemu_get_byte(f);
968 return v;
969}
970
971uint64_t qemu_get_be64(QEMUFile *f)
972{
973 uint64_t v;
974 v = (uint64_t)qemu_get_be32(f) << 32;
975 v |= qemu_get_be32(f);
976 return v;
977}
978
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200979
980/* timer */
981
982void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
983{
984 uint64_t expire_time;
985
986 expire_time = qemu_timer_expire_time_ns(ts);
987 qemu_put_be64(f, expire_time);
988}
989
990void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
991{
992 uint64_t expire_time;
993
994 expire_time = qemu_get_be64(f);
995 if (expire_time != -1) {
996 qemu_mod_timer_ns(ts, expire_time);
997 } else {
998 qemu_del_timer(ts);
999 }
1000}
1001
1002
Gerd Hoffmanncdae5cf2010-11-01 15:51:54 +01001003/* bool */
1004
1005static int get_bool(QEMUFile *f, void *pv, size_t size)
1006{
1007 bool *v = pv;
1008 *v = qemu_get_byte(f);
1009 return 0;
1010}
1011
1012static void put_bool(QEMUFile *f, void *pv, size_t size)
1013{
1014 bool *v = pv;
1015 qemu_put_byte(f, *v);
1016}
1017
1018const VMStateInfo vmstate_info_bool = {
1019 .name = "bool",
1020 .get = get_bool,
1021 .put = put_bool,
1022};
1023
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001024/* 8 bit int */
1025
1026static int get_int8(QEMUFile *f, void *pv, size_t size)
1027{
1028 int8_t *v = pv;
1029 qemu_get_s8s(f, v);
1030 return 0;
1031}
1032
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001033static void put_int8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001034{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001035 int8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001036 qemu_put_s8s(f, v);
1037}
1038
1039const VMStateInfo vmstate_info_int8 = {
1040 .name = "int8",
1041 .get = get_int8,
1042 .put = put_int8,
1043};
1044
1045/* 16 bit int */
1046
1047static int get_int16(QEMUFile *f, void *pv, size_t size)
1048{
1049 int16_t *v = pv;
1050 qemu_get_sbe16s(f, v);
1051 return 0;
1052}
1053
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001054static void put_int16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001055{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001056 int16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001057 qemu_put_sbe16s(f, v);
1058}
1059
1060const VMStateInfo vmstate_info_int16 = {
1061 .name = "int16",
1062 .get = get_int16,
1063 .put = put_int16,
1064};
1065
1066/* 32 bit int */
1067
1068static int get_int32(QEMUFile *f, void *pv, size_t size)
1069{
1070 int32_t *v = pv;
1071 qemu_get_sbe32s(f, v);
1072 return 0;
1073}
1074
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001075static void put_int32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001076{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001077 int32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001078 qemu_put_sbe32s(f, v);
1079}
1080
1081const VMStateInfo vmstate_info_int32 = {
1082 .name = "int32",
1083 .get = get_int32,
1084 .put = put_int32,
1085};
1086
Juan Quintela82501662009-08-20 19:42:32 +02001087/* 32 bit int. See that the received value is the same than the one
1088 in the field */
1089
1090static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
1091{
1092 int32_t *v = pv;
1093 int32_t v2;
1094 qemu_get_sbe32s(f, &v2);
1095
1096 if (*v == v2)
1097 return 0;
1098 return -EINVAL;
1099}
1100
1101const VMStateInfo vmstate_info_int32_equal = {
1102 .name = "int32 equal",
1103 .get = get_int32_equal,
1104 .put = put_int32,
1105};
1106
Juan Quintela0a031e02009-08-20 19:42:37 +02001107/* 32 bit int. See that the received value is the less or the same
1108 than the one in the field */
1109
1110static int get_int32_le(QEMUFile *f, void *pv, size_t size)
1111{
1112 int32_t *old = pv;
1113 int32_t new;
1114 qemu_get_sbe32s(f, &new);
1115
1116 if (*old <= new)
1117 return 0;
1118 return -EINVAL;
1119}
1120
1121const VMStateInfo vmstate_info_int32_le = {
1122 .name = "int32 equal",
1123 .get = get_int32_le,
1124 .put = put_int32,
1125};
1126
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001127/* 64 bit int */
1128
1129static int get_int64(QEMUFile *f, void *pv, size_t size)
1130{
1131 int64_t *v = pv;
1132 qemu_get_sbe64s(f, v);
1133 return 0;
1134}
1135
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001136static void put_int64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001137{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001138 int64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001139 qemu_put_sbe64s(f, v);
1140}
1141
1142const VMStateInfo vmstate_info_int64 = {
1143 .name = "int64",
1144 .get = get_int64,
1145 .put = put_int64,
1146};
1147
1148/* 8 bit unsigned int */
1149
1150static int get_uint8(QEMUFile *f, void *pv, size_t size)
1151{
1152 uint8_t *v = pv;
1153 qemu_get_8s(f, v);
1154 return 0;
1155}
1156
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001157static void put_uint8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001158{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001159 uint8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001160 qemu_put_8s(f, v);
1161}
1162
1163const VMStateInfo vmstate_info_uint8 = {
1164 .name = "uint8",
1165 .get = get_uint8,
1166 .put = put_uint8,
1167};
1168
1169/* 16 bit unsigned int */
1170
1171static int get_uint16(QEMUFile *f, void *pv, size_t size)
1172{
1173 uint16_t *v = pv;
1174 qemu_get_be16s(f, v);
1175 return 0;
1176}
1177
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001178static void put_uint16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001179{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001180 uint16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001181 qemu_put_be16s(f, v);
1182}
1183
1184const VMStateInfo vmstate_info_uint16 = {
1185 .name = "uint16",
1186 .get = get_uint16,
1187 .put = put_uint16,
1188};
1189
1190/* 32 bit unsigned int */
1191
1192static int get_uint32(QEMUFile *f, void *pv, size_t size)
1193{
1194 uint32_t *v = pv;
1195 qemu_get_be32s(f, v);
1196 return 0;
1197}
1198
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001199static void put_uint32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001200{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001201 uint32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001202 qemu_put_be32s(f, v);
1203}
1204
1205const VMStateInfo vmstate_info_uint32 = {
1206 .name = "uint32",
1207 .get = get_uint32,
1208 .put = put_uint32,
1209};
1210
Juan Quintela9122a8f2011-03-10 12:33:48 +01001211/* 32 bit uint. See that the received value is the same than the one
1212 in the field */
1213
1214static int get_uint32_equal(QEMUFile *f, void *pv, size_t size)
1215{
1216 uint32_t *v = pv;
1217 uint32_t v2;
1218 qemu_get_be32s(f, &v2);
1219
1220 if (*v == v2) {
1221 return 0;
1222 }
1223 return -EINVAL;
1224}
1225
1226const VMStateInfo vmstate_info_uint32_equal = {
1227 .name = "uint32 equal",
1228 .get = get_uint32_equal,
1229 .put = put_uint32,
1230};
1231
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001232/* 64 bit unsigned int */
1233
1234static int get_uint64(QEMUFile *f, void *pv, size_t size)
1235{
1236 uint64_t *v = pv;
1237 qemu_get_be64s(f, v);
1238 return 0;
1239}
1240
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001241static void put_uint64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001242{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001243 uint64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001244 qemu_put_be64s(f, v);
1245}
1246
1247const VMStateInfo vmstate_info_uint64 = {
1248 .name = "uint64",
1249 .get = get_uint64,
1250 .put = put_uint64,
1251};
1252
David Gibsone344b8a2013-03-12 14:06:00 +11001253/* 64 bit unsigned int. See that the received value is the same than the one
1254 in the field */
1255
1256static int get_uint64_equal(QEMUFile *f, void *pv, size_t size)
1257{
1258 uint64_t *v = pv;
1259 uint64_t v2;
1260 qemu_get_be64s(f, &v2);
1261
1262 if (*v == v2) {
1263 return 0;
1264 }
1265 return -EINVAL;
1266}
1267
1268const VMStateInfo vmstate_info_uint64_equal = {
1269 .name = "int64 equal",
1270 .get = get_uint64_equal,
1271 .put = put_uint64,
1272};
1273
Juan Quintela80cd83e2009-09-10 03:04:36 +02001274/* 8 bit int. See that the received value is the same than the one
1275 in the field */
1276
1277static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
1278{
1279 uint8_t *v = pv;
1280 uint8_t v2;
1281 qemu_get_8s(f, &v2);
1282
1283 if (*v == v2)
1284 return 0;
1285 return -EINVAL;
1286}
1287
1288const VMStateInfo vmstate_info_uint8_equal = {
Juan Quintelaaa1cce62009-10-15 19:16:06 +02001289 .name = "uint8 equal",
Juan Quintela80cd83e2009-09-10 03:04:36 +02001290 .get = get_uint8_equal,
1291 .put = put_uint8,
1292};
1293
Juan Quinteladc3b83a2009-10-15 23:16:13 +02001294/* 16 bit unsigned int int. See that the received value is the same than the one
1295 in the field */
1296
1297static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
1298{
1299 uint16_t *v = pv;
1300 uint16_t v2;
1301 qemu_get_be16s(f, &v2);
1302
1303 if (*v == v2)
1304 return 0;
1305 return -EINVAL;
1306}
1307
1308const VMStateInfo vmstate_info_uint16_equal = {
1309 .name = "uint16 equal",
1310 .get = get_uint16_equal,
1311 .put = put_uint16,
1312};
1313
David Gibson213945e2013-03-12 14:06:02 +11001314/* floating point */
1315
1316static int get_float64(QEMUFile *f, void *pv, size_t size)
1317{
1318 float64 *v = pv;
1319
1320 *v = make_float64(qemu_get_be64(f));
1321 return 0;
1322}
1323
1324static void put_float64(QEMUFile *f, void *pv, size_t size)
1325{
1326 uint64_t *v = pv;
1327
1328 qemu_put_be64(f, float64_val(*v));
1329}
1330
1331const VMStateInfo vmstate_info_float64 = {
1332 .name = "float64",
1333 .get = get_float64,
1334 .put = put_float64,
1335};
1336
Juan Quinteladde04632009-08-20 19:42:26 +02001337/* timers */
1338
1339static int get_timer(QEMUFile *f, void *pv, size_t size)
1340{
1341 QEMUTimer *v = pv;
1342 qemu_get_timer(f, v);
1343 return 0;
1344}
1345
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001346static void put_timer(QEMUFile *f, void *pv, size_t size)
Juan Quinteladde04632009-08-20 19:42:26 +02001347{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001348 QEMUTimer *v = pv;
Juan Quinteladde04632009-08-20 19:42:26 +02001349 qemu_put_timer(f, v);
1350}
1351
1352const VMStateInfo vmstate_info_timer = {
1353 .name = "timer",
1354 .get = get_timer,
1355 .put = put_timer,
1356};
1357
Juan Quintela6f67c502009-08-20 19:42:35 +02001358/* uint8_t buffers */
1359
1360static int get_buffer(QEMUFile *f, void *pv, size_t size)
1361{
1362 uint8_t *v = pv;
1363 qemu_get_buffer(f, v, size);
1364 return 0;
1365}
1366
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001367static void put_buffer(QEMUFile *f, void *pv, size_t size)
Juan Quintela6f67c502009-08-20 19:42:35 +02001368{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001369 uint8_t *v = pv;
Juan Quintela6f67c502009-08-20 19:42:35 +02001370 qemu_put_buffer(f, v, size);
1371}
1372
1373const VMStateInfo vmstate_info_buffer = {
1374 .name = "buffer",
1375 .get = get_buffer,
1376 .put = put_buffer,
1377};
1378
Juan Quintela76507c72009-10-19 15:46:28 +02001379/* unused buffers: space that was used for some fields that are
Stefan Weil61cc8702011-04-13 22:45:22 +02001380 not useful anymore */
Juan Quintela76507c72009-10-19 15:46:28 +02001381
1382static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
1383{
Jan Kiszka21174c32009-12-02 12:36:35 +01001384 uint8_t buf[1024];
1385 int block_len;
1386
1387 while (size > 0) {
1388 block_len = MIN(sizeof(buf), size);
1389 size -= block_len;
1390 qemu_get_buffer(f, buf, block_len);
1391 }
1392 return 0;
Juan Quintela76507c72009-10-19 15:46:28 +02001393}
1394
1395static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
1396{
Jan Kiszka21174c32009-12-02 12:36:35 +01001397 static const uint8_t buf[1024];
1398 int block_len;
1399
1400 while (size > 0) {
1401 block_len = MIN(sizeof(buf), size);
1402 size -= block_len;
1403 qemu_put_buffer(f, buf, block_len);
1404 }
Juan Quintela76507c72009-10-19 15:46:28 +02001405}
1406
1407const VMStateInfo vmstate_info_unused_buffer = {
1408 .name = "unused_buffer",
1409 .get = get_unused_buffer,
1410 .put = put_unused_buffer,
1411};
1412
Peter Maydell08e99e22012-10-30 07:45:12 +00001413/* bitmaps (as defined by bitmap.h). Note that size here is the size
1414 * of the bitmap in bits. The on-the-wire format of a bitmap is 64
1415 * bit words with the bits in big endian order. The in-memory format
1416 * is an array of 'unsigned long', which may be either 32 or 64 bits.
1417 */
1418/* This is the number of 64 bit words sent over the wire */
1419#define BITS_TO_U64S(nr) DIV_ROUND_UP(nr, 64)
1420static int get_bitmap(QEMUFile *f, void *pv, size_t size)
1421{
1422 unsigned long *bmp = pv;
1423 int i, idx = 0;
1424 for (i = 0; i < BITS_TO_U64S(size); i++) {
1425 uint64_t w = qemu_get_be64(f);
1426 bmp[idx++] = w;
1427 if (sizeof(unsigned long) == 4 && idx < BITS_TO_LONGS(size)) {
1428 bmp[idx++] = w >> 32;
1429 }
1430 }
1431 return 0;
1432}
1433
1434static void put_bitmap(QEMUFile *f, void *pv, size_t size)
1435{
1436 unsigned long *bmp = pv;
1437 int i, idx = 0;
1438 for (i = 0; i < BITS_TO_U64S(size); i++) {
1439 uint64_t w = bmp[idx++];
1440 if (sizeof(unsigned long) == 4 && idx < BITS_TO_LONGS(size)) {
1441 w |= ((uint64_t)bmp[idx++]) << 32;
1442 }
1443 qemu_put_be64(f, w);
1444 }
1445}
1446
1447const VMStateInfo vmstate_info_bitmap = {
1448 .name = "bitmap",
1449 .get = get_bitmap,
1450 .put = put_bitmap,
1451};
1452
Alex Williamson7685ee62010-06-25 11:09:14 -06001453typedef struct CompatEntry {
1454 char idstr[256];
1455 int instance_id;
1456} CompatEntry;
1457
aliguoria672b462008-11-11 21:33:36 +00001458typedef struct SaveStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001459 QTAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001460 char idstr[256];
1461 int instance_id;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001462 int alias_id;
aliguoria672b462008-11-11 21:33:36 +00001463 int version_id;
1464 int section_id;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001465 SaveVMHandlers *ops;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001466 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +00001467 void *opaque;
Alex Williamson7685ee62010-06-25 11:09:14 -06001468 CompatEntry *compat;
Cam Macdonell24312962010-07-26 18:11:00 -06001469 int no_migrate;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001470 int is_ram;
aliguoria672b462008-11-11 21:33:36 +00001471} SaveStateEntry;
1472
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001473
Blue Swirl72cf2d42009-09-12 07:36:22 +00001474static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1475 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001476static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +00001477
Juan Quintela8718e992009-09-01 02:12:31 +02001478static int calculate_new_instance_id(const char *idstr)
1479{
1480 SaveStateEntry *se;
1481 int instance_id = 0;
1482
Blue Swirl72cf2d42009-09-12 07:36:22 +00001483 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +02001484 if (strcmp(idstr, se->idstr) == 0
1485 && instance_id <= se->instance_id) {
1486 instance_id = se->instance_id + 1;
1487 }
1488 }
1489 return instance_id;
1490}
1491
Alex Williamson7685ee62010-06-25 11:09:14 -06001492static int calculate_compat_instance_id(const char *idstr)
1493{
1494 SaveStateEntry *se;
1495 int instance_id = 0;
1496
1497 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1498 if (!se->compat)
1499 continue;
1500
1501 if (strcmp(idstr, se->compat->idstr) == 0
1502 && instance_id <= se->compat->instance_id) {
1503 instance_id = se->compat->instance_id + 1;
1504 }
1505 }
1506 return instance_id;
1507}
1508
aliguoria672b462008-11-11 21:33:36 +00001509/* TODO: Individual devices generally have very little idea about the rest
1510 of the system, so instance_id should be removed/replaced.
1511 Meanwhile pass -1 as instance_id if you do not already have a clearly
1512 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -06001513int register_savevm_live(DeviceState *dev,
1514 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001515 int instance_id,
1516 int version_id,
Juan Quintela7908c782012-06-26 18:46:10 +02001517 SaveVMHandlers *ops,
aliguoria672b462008-11-11 21:33:36 +00001518 void *opaque)
1519{
Juan Quintela8718e992009-09-01 02:12:31 +02001520 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +00001521
Anthony Liguori7267c092011-08-20 22:09:37 -05001522 se = g_malloc0(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +00001523 se->version_id = version_id;
1524 se->section_id = global_section_id++;
Juan Quintela7908c782012-06-26 18:46:10 +02001525 se->ops = ops;
aliguoria672b462008-11-11 21:33:36 +00001526 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001527 se->vmsd = NULL;
Cam Macdonell24312962010-07-26 18:11:00 -06001528 se->no_migrate = 0;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001529 /* if this is a live_savem then set is_ram */
Juan Quintela16310a32012-06-28 15:31:37 +02001530 if (ops->save_live_setup != NULL) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001531 se->is_ram = 1;
1532 }
aliguoria672b462008-11-11 21:33:36 +00001533
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001534 if (dev) {
1535 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001536 if (id) {
1537 pstrcpy(se->idstr, sizeof(se->idstr), id);
1538 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001539 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001540
Anthony Liguori7267c092011-08-20 22:09:37 -05001541 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001542 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1543 se->compat->instance_id = instance_id == -1 ?
1544 calculate_compat_instance_id(idstr) : instance_id;
1545 instance_id = -1;
1546 }
1547 }
1548 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1549
Juan Quintela8718e992009-09-01 02:12:31 +02001550 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001551 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001552 } else {
1553 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +00001554 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001555 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001556 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001557 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +00001558 return 0;
1559}
1560
Alex Williamson0be71e32010-06-25 11:09:07 -06001561int register_savevm(DeviceState *dev,
1562 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001563 int instance_id,
1564 int version_id,
1565 SaveStateHandler *save_state,
1566 LoadStateHandler *load_state,
1567 void *opaque)
1568{
Juan Quintela7908c782012-06-26 18:46:10 +02001569 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
1570 ops->save_state = save_state;
1571 ops->load_state = load_state;
Alex Williamson0be71e32010-06-25 11:09:07 -06001572 return register_savevm_live(dev, idstr, instance_id, version_id,
Juan Quintela7908c782012-06-26 18:46:10 +02001573 ops, opaque);
aliguoria672b462008-11-11 21:33:36 +00001574}
1575
Alex Williamson0be71e32010-06-25 11:09:07 -06001576void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +00001577{
Juan Quintela8718e992009-09-01 02:12:31 +02001578 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001579 char id[256] = "";
1580
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001581 if (dev) {
1582 char *path = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001583 if (path) {
1584 pstrcpy(id, sizeof(id), path);
1585 pstrcat(id, sizeof(id), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001586 g_free(path);
Alex Williamson7685ee62010-06-25 11:09:14 -06001587 }
1588 }
1589 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +00001590
Blue Swirl72cf2d42009-09-12 07:36:22 +00001591 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001592 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001593 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001594 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001595 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001596 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02001597 g_free(se->ops);
Anthony Liguori7267c092011-08-20 22:09:37 -05001598 g_free(se);
aliguori41bd13a2009-04-17 17:10:59 +00001599 }
aliguori41bd13a2009-04-17 17:10:59 +00001600 }
1601}
1602
Alex Williamson0be71e32010-06-25 11:09:07 -06001603int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001604 const VMStateDescription *vmsd,
1605 void *opaque, int alias_id,
1606 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001607{
Juan Quintela8718e992009-09-01 02:12:31 +02001608 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001609
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001610 /* If this triggers, alias support can be dropped for the vmsd. */
1611 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1612
Anthony Liguori7267c092011-08-20 22:09:37 -05001613 se = g_malloc0(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001614 se->version_id = vmsd->version_id;
1615 se->section_id = global_section_id++;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001616 se->opaque = opaque;
1617 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001618 se->alias_id = alias_id;
Gerd Hoffmann2837c8e2011-07-08 10:44:35 +02001619 se->no_migrate = vmsd->unmigratable;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001620
Anthony Liguori09e5ab62012-02-03 12:28:43 -06001621 if (dev) {
1622 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -06001623 if (id) {
1624 pstrcpy(se->idstr, sizeof(se->idstr), id);
1625 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001626 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001627
Anthony Liguori7267c092011-08-20 22:09:37 -05001628 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001629 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1630 se->compat->instance_id = instance_id == -1 ?
1631 calculate_compat_instance_id(vmsd->name) : instance_id;
1632 instance_id = -1;
1633 }
1634 }
1635 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1636
Juan Quintela8718e992009-09-01 02:12:31 +02001637 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001638 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001639 } else {
1640 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001641 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001642 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001643 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001644 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001645 return 0;
1646}
1647
Alex Williamson0be71e32010-06-25 11:09:07 -06001648void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1649 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001650{
Juan Quintela1eb75382009-09-10 03:04:29 +02001651 SaveStateEntry *se, *new_se;
1652
Blue Swirl72cf2d42009-09-12 07:36:22 +00001653 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +02001654 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001655 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001656 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001657 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001658 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001659 g_free(se);
Juan Quintela1eb75382009-09-10 03:04:29 +02001660 }
1661 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001662}
1663
Juan Quintela811814b2010-07-26 21:38:43 +02001664static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1665 void *opaque);
1666static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1667 void *opaque);
1668
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001669int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1670 void *opaque, int version_id)
1671{
1672 VMStateField *field = vmsd->fields;
Juan Quintela811814b2010-07-26 21:38:43 +02001673 int ret;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001674
1675 if (version_id > vmsd->version_id) {
1676 return -EINVAL;
1677 }
1678 if (version_id < vmsd->minimum_version_id_old) {
1679 return -EINVAL;
1680 }
1681 if (version_id < vmsd->minimum_version_id) {
1682 return vmsd->load_state_old(f, opaque, version_id);
1683 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001684 if (vmsd->pre_load) {
1685 int ret = vmsd->pre_load(opaque);
1686 if (ret)
1687 return ret;
1688 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001689 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001690 if ((field->field_exists &&
1691 field->field_exists(opaque, version_id)) ||
1692 (!field->field_exists &&
1693 field->version_id <= version_id)) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001694 void *base_addr = opaque + field->offset;
Juan Quintela811814b2010-07-26 21:38:43 +02001695 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001696 int size = field->size;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001697
Juan Quintelae61a1e02009-12-02 12:36:38 +01001698 if (field->flags & VMS_VBUFFER) {
1699 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001700 if (field->flags & VMS_MULTIPLY) {
1701 size *= field->size;
1702 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001703 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001704 if (field->flags & VMS_ARRAY) {
1705 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001706 } else if (field->flags & VMS_VARRAY_INT32) {
1707 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelaa624b082011-03-10 12:33:50 +01001708 } else if (field->flags & VMS_VARRAY_UINT32) {
1709 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001710 } else if (field->flags & VMS_VARRAY_UINT16) {
1711 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintela82fa39b2011-03-10 12:33:49 +01001712 } else if (field->flags & VMS_VARRAY_UINT8) {
1713 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001714 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001715 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001716 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001717 }
1718 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001719 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001720
Juan Quintela19df4382009-09-29 22:48:41 +02001721 if (field->flags & VMS_ARRAY_OF_POINTER) {
1722 addr = *(void **)addr;
1723 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001724 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001725 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001726 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001727 ret = field->info->get(f, addr, size);
Juan Quintelaec245e22009-08-20 19:42:29 +02001728
1729 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001730 if (ret < 0) {
1731 return ret;
1732 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001733 }
1734 }
1735 field++;
1736 }
Juan Quintela811814b2010-07-26 21:38:43 +02001737 ret = vmstate_subsection_load(f, vmsd, opaque);
1738 if (ret != 0) {
1739 return ret;
1740 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001741 if (vmsd->post_load) {
Juan Quintelae59fb372009-09-29 22:48:21 +02001742 return vmsd->post_load(opaque, version_id);
Juan Quintela752ff2f2009-09-10 03:04:30 +02001743 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001744 return 0;
1745}
1746
1747void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001748 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001749{
1750 VMStateField *field = vmsd->fields;
1751
Juan Quintela8fb07912009-09-10 03:04:32 +02001752 if (vmsd->pre_save) {
1753 vmsd->pre_save(opaque);
1754 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001755 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001756 if (!field->field_exists ||
1757 field->field_exists(opaque, vmsd->version_id)) {
1758 void *base_addr = opaque + field->offset;
1759 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001760 int size = field->size;
Juan Quinteladde04632009-08-20 19:42:26 +02001761
Juan Quintelae61a1e02009-12-02 12:36:38 +01001762 if (field->flags & VMS_VBUFFER) {
1763 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001764 if (field->flags & VMS_MULTIPLY) {
1765 size *= field->size;
1766 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001767 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001768 if (field->flags & VMS_ARRAY) {
1769 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001770 } else if (field->flags & VMS_VARRAY_INT32) {
1771 n_elems = *(int32_t *)(opaque+field->num_offset);
Amos Kong1329d182012-03-13 14:05:36 +08001772 } else if (field->flags & VMS_VARRAY_UINT32) {
1773 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001774 } else if (field->flags & VMS_VARRAY_UINT16) {
1775 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintelab7844212011-03-15 15:53:25 +01001776 } else if (field->flags & VMS_VARRAY_UINT8) {
1777 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001778 }
1779 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001780 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001781 }
1782 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001783 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001784
Juan Quintela85953872009-12-02 12:36:37 +01001785 if (field->flags & VMS_ARRAY_OF_POINTER) {
1786 addr = *(void **)addr;
1787 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001788 if (field->flags & VMS_STRUCT) {
1789 vmstate_save_state(f, field->vmsd, addr);
1790 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001791 field->info->put(f, addr, size);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001792 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001793 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001794 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001795 field++;
1796 }
Juan Quintela811814b2010-07-26 21:38:43 +02001797 vmstate_subsection_save(f, vmsd, opaque);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001798}
1799
Juan Quintela4082be42009-08-20 19:42:24 +02001800static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1801{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001802 if (!se->vmsd) { /* Old style */
Juan Quintela22ea40f2012-06-26 17:19:10 +02001803 return se->ops->load_state(f, se->opaque, version_id);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001804 }
1805 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001806}
1807
Alex Williamsondc912122011-01-11 14:39:43 -07001808static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
Juan Quintela4082be42009-08-20 19:42:24 +02001809{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001810 if (!se->vmsd) { /* Old style */
Juan Quintela22ea40f2012-06-26 17:19:10 +02001811 se->ops->save_state(f, se->opaque);
Alex Williamsondc912122011-01-11 14:39:43 -07001812 return;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001813 }
1814 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +02001815}
1816
aliguoria672b462008-11-11 21:33:36 +00001817#define QEMU_VM_FILE_MAGIC 0x5145564d
1818#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1819#define QEMU_VM_FILE_VERSION 0x00000003
1820
1821#define QEMU_VM_EOF 0x00
1822#define QEMU_VM_SECTION_START 0x01
1823#define QEMU_VM_SECTION_PART 0x02
1824#define QEMU_VM_SECTION_END 0x03
1825#define QEMU_VM_SECTION_FULL 0x04
Juan Quintela811814b2010-07-26 21:38:43 +02001826#define QEMU_VM_SUBSECTION 0x05
aliguoria672b462008-11-11 21:33:36 +00001827
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001828bool qemu_savevm_state_blocked(Error **errp)
Alex Williamsondc912122011-01-11 14:39:43 -07001829{
1830 SaveStateEntry *se;
1831
1832 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1833 if (se->no_migrate) {
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001834 error_set(errp, QERR_MIGRATION_NOT_SUPPORTED, se->idstr);
Alex Williamsondc912122011-01-11 14:39:43 -07001835 return true;
1836 }
1837 }
1838 return false;
1839}
1840
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001841void qemu_savevm_state_begin(QEMUFile *f,
1842 const MigrationParams *params)
aliguoria672b462008-11-11 21:33:36 +00001843{
1844 SaveStateEntry *se;
Juan Quintela39346382011-09-22 11:02:14 +02001845 int ret;
aliguoria672b462008-11-11 21:33:36 +00001846
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001847 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela22ea40f2012-06-26 17:19:10 +02001848 if (!se->ops || !se->ops->set_params) {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001849 continue;
Isaku Yamahata6607ae22012-06-19 18:43:09 +03001850 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02001851 se->ops->set_params(params, se->opaque);
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001852 }
1853
aliguoria672b462008-11-11 21:33:36 +00001854 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1855 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1856
Blue Swirl72cf2d42009-09-12 07:36:22 +00001857 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001858 int len;
1859
Juan Quintelad1315aa2012-06-28 15:11:57 +02001860 if (!se->ops || !se->ops->save_live_setup) {
aliguoria672b462008-11-11 21:33:36 +00001861 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001862 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001863 if (se->ops && se->ops->is_active) {
1864 if (!se->ops->is_active(se->opaque)) {
1865 continue;
1866 }
1867 }
aliguoria672b462008-11-11 21:33:36 +00001868 /* Section type */
1869 qemu_put_byte(f, QEMU_VM_SECTION_START);
1870 qemu_put_be32(f, se->section_id);
1871
1872 /* ID string */
1873 len = strlen(se->idstr);
1874 qemu_put_byte(f, len);
1875 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1876
1877 qemu_put_be32(f, se->instance_id);
1878 qemu_put_be32(f, se->version_id);
1879
Juan Quintelad1315aa2012-06-28 15:11:57 +02001880 ret = se->ops->save_live_setup(f, se->opaque);
Juan Quintela29757252011-10-19 15:22:18 +02001881 if (ret < 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001882 qemu_file_set_error(f, ret);
1883 break;
Juan Quintela29757252011-10-19 15:22:18 +02001884 }
aliguoria672b462008-11-11 21:33:36 +00001885 }
aliguoria672b462008-11-11 21:33:36 +00001886}
1887
Juan Quintela39346382011-09-22 11:02:14 +02001888/*
Dong Xu Wang07f35072011-11-22 18:06:26 +08001889 * this function has three return values:
Juan Quintela39346382011-09-22 11:02:14 +02001890 * negative: there was one error, and we have -errno.
1891 * 0 : We haven't finished, caller have to go again
1892 * 1 : We have finished, we can go to complete phase
1893 */
Luiz Capitulino539de122011-12-05 14:06:56 -02001894int qemu_savevm_state_iterate(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001895{
1896 SaveStateEntry *se;
1897 int ret = 1;
1898
Blue Swirl72cf2d42009-09-12 07:36:22 +00001899 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela16310a32012-06-28 15:31:37 +02001900 if (!se->ops || !se->ops->save_live_iterate) {
aliguoria672b462008-11-11 21:33:36 +00001901 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001902 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001903 if (se->ops && se->ops->is_active) {
1904 if (!se->ops->is_active(se->opaque)) {
1905 continue;
1906 }
1907 }
Juan Quintelaaac844e2012-05-22 00:38:26 +02001908 if (qemu_file_rate_limit(f)) {
1909 return 0;
1910 }
Juan Quintela517a13c2012-05-21 23:46:44 +02001911 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001912 /* Section type */
1913 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1914 qemu_put_be32(f, se->section_id);
1915
Juan Quintela16310a32012-06-28 15:31:37 +02001916 ret = se->ops->save_live_iterate(f, se->opaque);
Juan Quintela517a13c2012-05-21 23:46:44 +02001917 trace_savevm_section_end(se->section_id);
1918
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001919 if (ret < 0) {
1920 qemu_file_set_error(f, ret);
1921 }
Juan Quintela29757252011-10-19 15:22:18 +02001922 if (ret <= 0) {
Jan Kiszka90697be2009-12-01 15:19:55 +01001923 /* Do not proceed to the next vmstate before this one reported
1924 completion of the current stage. This serializes the migration
1925 and reduces the probability that a faster changing state is
1926 synchronized over and over again. */
1927 break;
1928 }
aliguoria672b462008-11-11 21:33:36 +00001929 }
Juan Quintela39346382011-09-22 11:02:14 +02001930 return ret;
aliguoria672b462008-11-11 21:33:36 +00001931}
1932
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001933void qemu_savevm_state_complete(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001934{
1935 SaveStateEntry *se;
Juan Quintela29757252011-10-19 15:22:18 +02001936 int ret;
aliguoria672b462008-11-11 21:33:36 +00001937
Jan Kiszkaea375f92010-03-01 19:10:30 +01001938 cpu_synchronize_all_states();
1939
Blue Swirl72cf2d42009-09-12 07:36:22 +00001940 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela16310a32012-06-28 15:31:37 +02001941 if (!se->ops || !se->ops->save_live_complete) {
aliguoria672b462008-11-11 21:33:36 +00001942 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001943 }
Juan Quintela6bd68782012-06-27 10:59:15 +02001944 if (se->ops && se->ops->is_active) {
1945 if (!se->ops->is_active(se->opaque)) {
1946 continue;
1947 }
1948 }
Juan Quintela517a13c2012-05-21 23:46:44 +02001949 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001950 /* Section type */
1951 qemu_put_byte(f, QEMU_VM_SECTION_END);
1952 qemu_put_be32(f, se->section_id);
1953
Juan Quintela16310a32012-06-28 15:31:37 +02001954 ret = se->ops->save_live_complete(f, se->opaque);
Juan Quintela517a13c2012-05-21 23:46:44 +02001955 trace_savevm_section_end(se->section_id);
Juan Quintela29757252011-10-19 15:22:18 +02001956 if (ret < 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +01001957 qemu_file_set_error(f, ret);
1958 return;
Juan Quintela29757252011-10-19 15:22:18 +02001959 }
aliguoria672b462008-11-11 21:33:36 +00001960 }
1961
Blue Swirl72cf2d42009-09-12 07:36:22 +00001962 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001963 int len;
1964
Juan Quintela22ea40f2012-06-26 17:19:10 +02001965 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
aliguoria672b462008-11-11 21:33:36 +00001966 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +02001967 }
Juan Quintela517a13c2012-05-21 23:46:44 +02001968 trace_savevm_section_start();
aliguoria672b462008-11-11 21:33:36 +00001969 /* Section type */
1970 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1971 qemu_put_be32(f, se->section_id);
1972
1973 /* ID string */
1974 len = strlen(se->idstr);
1975 qemu_put_byte(f, len);
1976 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1977
1978 qemu_put_be32(f, se->instance_id);
1979 qemu_put_be32(f, se->version_id);
1980
Alex Williamsondc912122011-01-11 14:39:43 -07001981 vmstate_save(f, se);
Juan Quintela517a13c2012-05-21 23:46:44 +02001982 trace_savevm_section_end(se->section_id);
aliguoria672b462008-11-11 21:33:36 +00001983 }
1984
1985 qemu_put_byte(f, QEMU_VM_EOF);
Paolo Bonziniedaae612013-02-22 17:36:29 +01001986 qemu_fflush(f);
aliguoria672b462008-11-11 21:33:36 +00001987}
1988
Juan Quintelae4ed1542012-09-21 11:18:18 +02001989uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size)
1990{
1991 SaveStateEntry *se;
1992 uint64_t ret = 0;
1993
1994 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1995 if (!se->ops || !se->ops->save_live_pending) {
1996 continue;
1997 }
1998 if (se->ops && se->ops->is_active) {
1999 if (!se->ops->is_active(se->opaque)) {
2000 continue;
2001 }
2002 }
2003 ret += se->ops->save_live_pending(f, se->opaque, max_size);
2004 }
2005 return ret;
2006}
2007
Juan Quintela65227732013-01-14 14:14:42 +01002008void qemu_savevm_state_cancel(void)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01002009{
2010 SaveStateEntry *se;
2011
2012 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela9b5bfab2012-06-26 19:26:41 +02002013 if (se->ops && se->ops->cancel) {
2014 se->ops->cancel(se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01002015 }
2016 }
2017}
2018
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02002019static int qemu_savevm_state(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00002020{
aliguoria672b462008-11-11 21:33:36 +00002021 int ret;
Isaku Yamahata6607ae22012-06-19 18:43:09 +03002022 MigrationParams params = {
2023 .blk = 0,
2024 .shared = 0
2025 };
aliguoria672b462008-11-11 21:33:36 +00002026
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02002027 if (qemu_savevm_state_blocked(NULL)) {
Paolo Bonzini04943eb2013-02-22 17:36:10 +01002028 return -EINVAL;
Alex Williamsondc912122011-01-11 14:39:43 -07002029 }
2030
Paolo Bonzini9b095032013-02-22 17:36:28 +01002031 qemu_mutex_unlock_iothread();
Paolo Bonzini47c8c172013-02-22 17:36:13 +01002032 qemu_savevm_state_begin(f, &params);
Paolo Bonzini9b095032013-02-22 17:36:28 +01002033 qemu_mutex_lock_iothread();
2034
Paolo Bonzini47c8c172013-02-22 17:36:13 +01002035 while (qemu_file_get_error(f) == 0) {
2036 if (qemu_savevm_state_iterate(f) > 0) {
2037 break;
2038 }
2039 }
aliguoria672b462008-11-11 21:33:36 +00002040
Paolo Bonzini47c8c172013-02-22 17:36:13 +01002041 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02002042 if (ret == 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +01002043 qemu_savevm_state_complete(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +02002044 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02002045 }
Paolo Bonzini04943eb2013-02-22 17:36:10 +01002046 if (ret != 0) {
2047 qemu_savevm_state_cancel();
2048 }
aliguoria672b462008-11-11 21:33:36 +00002049 return ret;
2050}
2051
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002052static int qemu_save_device_state(QEMUFile *f)
2053{
2054 SaveStateEntry *se;
2055
2056 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
2057 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
2058
2059 cpu_synchronize_all_states();
2060
2061 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
2062 int len;
2063
2064 if (se->is_ram) {
2065 continue;
2066 }
Juan Quintela22ea40f2012-06-26 17:19:10 +02002067 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002068 continue;
2069 }
2070
2071 /* Section type */
2072 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
2073 qemu_put_be32(f, se->section_id);
2074
2075 /* ID string */
2076 len = strlen(se->idstr);
2077 qemu_put_byte(f, len);
2078 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
2079
2080 qemu_put_be32(f, se->instance_id);
2081 qemu_put_be32(f, se->version_id);
2082
2083 vmstate_save(f, se);
2084 }
2085
2086 qemu_put_byte(f, QEMU_VM_EOF);
2087
2088 return qemu_file_get_error(f);
2089}
2090
aliguoria672b462008-11-11 21:33:36 +00002091static SaveStateEntry *find_se(const char *idstr, int instance_id)
2092{
2093 SaveStateEntry *se;
2094
Blue Swirl72cf2d42009-09-12 07:36:22 +00002095 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00002096 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02002097 (instance_id == se->instance_id ||
2098 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +00002099 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -06002100 /* Migrating from an older version? */
2101 if (strstr(se->idstr, idstr) && se->compat) {
2102 if (!strcmp(se->compat->idstr, idstr) &&
2103 (instance_id == se->compat->instance_id ||
2104 instance_id == se->alias_id))
2105 return se;
2106 }
aliguoria672b462008-11-11 21:33:36 +00002107 }
2108 return NULL;
2109}
2110
Juan Quintela811814b2010-07-26 21:38:43 +02002111static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
2112{
2113 while(sub && sub->needed) {
2114 if (strcmp(idstr, sub->vmsd->name) == 0) {
2115 return sub->vmsd;
2116 }
2117 sub++;
2118 }
2119 return NULL;
2120}
2121
2122static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
2123 void *opaque)
2124{
Juan Quintelac6380722011-10-04 15:28:31 +02002125 while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
Juan Quintela811814b2010-07-26 21:38:43 +02002126 char idstr[256];
2127 int ret;
Juan Quintelac6380722011-10-04 15:28:31 +02002128 uint8_t version_id, len, size;
Juan Quintela811814b2010-07-26 21:38:43 +02002129 const VMStateDescription *sub_vmsd;
2130
Juan Quintelac6380722011-10-04 15:28:31 +02002131 len = qemu_peek_byte(f, 1);
2132 if (len < strlen(vmsd->name) + 1) {
2133 /* subsection name has be be "section_name/a" */
2134 return 0;
2135 }
2136 size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
2137 if (size != len) {
2138 return 0;
2139 }
2140 idstr[size] = 0;
Juan Quintela811814b2010-07-26 21:38:43 +02002141
Juan Quintelac6380722011-10-04 15:28:31 +02002142 if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
2143 /* it don't have a valid subsection name */
2144 return 0;
2145 }
Juan Quintela3da9eeb2011-09-30 19:46:43 +02002146 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
Juan Quintela811814b2010-07-26 21:38:43 +02002147 if (sub_vmsd == NULL) {
2148 return -ENOENT;
2149 }
Juan Quintelac6380722011-10-04 15:28:31 +02002150 qemu_file_skip(f, 1); /* subsection */
2151 qemu_file_skip(f, 1); /* len */
2152 qemu_file_skip(f, len); /* idstr */
2153 version_id = qemu_get_be32(f);
2154
Juan Quintela811814b2010-07-26 21:38:43 +02002155 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
2156 if (ret) {
2157 return ret;
2158 }
2159 }
2160 return 0;
2161}
2162
2163static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
2164 void *opaque)
2165{
2166 const VMStateSubsection *sub = vmsd->subsections;
2167
2168 while (sub && sub->needed) {
2169 if (sub->needed(opaque)) {
2170 const VMStateDescription *vmsd = sub->vmsd;
2171 uint8_t len;
2172
2173 qemu_put_byte(f, QEMU_VM_SUBSECTION);
2174 len = strlen(vmsd->name);
2175 qemu_put_byte(f, len);
2176 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
2177 qemu_put_be32(f, vmsd->version_id);
2178 vmstate_save_state(f, vmsd, opaque);
2179 }
2180 sub++;
2181 }
2182}
2183
aliguoria672b462008-11-11 21:33:36 +00002184typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00002185 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00002186 SaveStateEntry *se;
2187 int section_id;
2188 int version_id;
aliguoria672b462008-11-11 21:33:36 +00002189} LoadStateEntry;
2190
aliguoria672b462008-11-11 21:33:36 +00002191int qemu_loadvm_state(QEMUFile *f)
2192{
Blue Swirl72cf2d42009-09-12 07:36:22 +00002193 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
2194 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02002195 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00002196 uint8_t section_type;
2197 unsigned int v;
2198 int ret;
2199
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02002200 if (qemu_savevm_state_blocked(NULL)) {
Alex Williamsondc912122011-01-11 14:39:43 -07002201 return -EINVAL;
2202 }
2203
aliguoria672b462008-11-11 21:33:36 +00002204 v = qemu_get_be32(f);
2205 if (v != QEMU_VM_FILE_MAGIC)
2206 return -EINVAL;
2207
2208 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02002209 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
2210 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
2211 return -ENOTSUP;
2212 }
aliguoria672b462008-11-11 21:33:36 +00002213 if (v != QEMU_VM_FILE_VERSION)
2214 return -ENOTSUP;
2215
2216 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
2217 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00002218 SaveStateEntry *se;
2219 char idstr[257];
2220 int len;
2221
2222 switch (section_type) {
2223 case QEMU_VM_SECTION_START:
2224 case QEMU_VM_SECTION_FULL:
2225 /* Read section start */
2226 section_id = qemu_get_be32(f);
2227 len = qemu_get_byte(f);
2228 qemu_get_buffer(f, (uint8_t *)idstr, len);
2229 idstr[len] = 0;
2230 instance_id = qemu_get_be32(f);
2231 version_id = qemu_get_be32(f);
2232
2233 /* Find savevm section */
2234 se = find_se(idstr, instance_id);
2235 if (se == NULL) {
2236 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
2237 ret = -EINVAL;
2238 goto out;
2239 }
2240
2241 /* Validate version */
2242 if (version_id > se->version_id) {
2243 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
2244 version_id, idstr, se->version_id);
2245 ret = -EINVAL;
2246 goto out;
2247 }
2248
2249 /* Add entry */
Anthony Liguori7267c092011-08-20 22:09:37 -05002250 le = g_malloc0(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00002251
2252 le->se = se;
2253 le->section_id = section_id;
2254 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002255 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00002256
Juan Quintela4082be42009-08-20 19:42:24 +02002257 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02002258 if (ret < 0) {
2259 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
2260 instance_id, idstr);
2261 goto out;
2262 }
aliguoria672b462008-11-11 21:33:36 +00002263 break;
2264 case QEMU_VM_SECTION_PART:
2265 case QEMU_VM_SECTION_END:
2266 section_id = qemu_get_be32(f);
2267
Blue Swirl72cf2d42009-09-12 07:36:22 +00002268 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02002269 if (le->section_id == section_id) {
2270 break;
2271 }
2272 }
aliguoria672b462008-11-11 21:33:36 +00002273 if (le == NULL) {
2274 fprintf(stderr, "Unknown savevm section %d\n", section_id);
2275 ret = -EINVAL;
2276 goto out;
2277 }
2278
Juan Quintela4082be42009-08-20 19:42:24 +02002279 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02002280 if (ret < 0) {
2281 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
2282 section_id);
2283 goto out;
2284 }
aliguoria672b462008-11-11 21:33:36 +00002285 break;
2286 default:
2287 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
2288 ret = -EINVAL;
2289 goto out;
2290 }
2291 }
2292
Jan Kiszkaea375f92010-03-01 19:10:30 +01002293 cpu_synchronize_all_post_init();
2294
aliguoria672b462008-11-11 21:33:36 +00002295 ret = 0;
2296
2297out:
Blue Swirl72cf2d42009-09-12 07:36:22 +00002298 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
2299 QLIST_REMOVE(le, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05002300 g_free(le);
aliguoria672b462008-11-11 21:33:36 +00002301 }
2302
Juan Quintela42802d42011-10-05 01:14:46 +02002303 if (ret == 0) {
2304 ret = qemu_file_get_error(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +02002305 }
aliguoria672b462008-11-11 21:33:36 +00002306
2307 return ret;
2308}
2309
Stefan Hajnoczi29d78272013-05-25 11:09:42 +08002310static BlockDriverState *find_vmstate_bs(void)
2311{
2312 BlockDriverState *bs = NULL;
2313 while ((bs = bdrv_next(bs))) {
2314 if (bdrv_can_snapshot(bs)) {
2315 return bs;
2316 }
2317 }
2318 return NULL;
2319}
2320
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002321/*
2322 * Deletes snapshots of a given name in all opened images.
2323 */
2324static int del_existing_snapshots(Monitor *mon, const char *name)
2325{
2326 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002327 QEMUSnapshotInfo sn1, *snapshot = &sn1;
2328 int ret;
2329
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002330 bs = NULL;
2331 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002332 if (bdrv_can_snapshot(bs) &&
2333 bdrv_snapshot_find(bs, snapshot, name) >= 0)
2334 {
2335 ret = bdrv_snapshot_delete(bs, name);
2336 if (ret < 0) {
2337 monitor_printf(mon,
2338 "Error while deleting snapshot on '%s'\n",
2339 bdrv_get_device_name(bs));
2340 return -1;
2341 }
2342 }
2343 }
2344
2345 return 0;
2346}
2347
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002348void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002349{
2350 BlockDriverState *bs, *bs1;
2351 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002352 int ret;
aliguoria672b462008-11-11 21:33:36 +00002353 QEMUFile *f;
2354 int saved_vm_running;
Kevin Wolfc2c9a462011-11-16 11:35:54 +01002355 uint64_t vm_state_size;
Stefan Weil68b891e2013-01-07 22:20:27 +01002356 qemu_timeval tv;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002357 struct tm tm;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002358 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002359
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002360 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002361 bs = NULL;
2362 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002363
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002364 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002365 continue;
2366 }
2367
2368 if (!bdrv_can_snapshot(bs)) {
2369 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
2370 bdrv_get_device_name(bs));
2371 return;
2372 }
2373 }
2374
Stefan Hajnoczi29d78272013-05-25 11:09:42 +08002375 bs = find_vmstate_bs();
aliguoria672b462008-11-11 21:33:36 +00002376 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002377 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002378 return;
2379 }
aliguoria672b462008-11-11 21:33:36 +00002380
Luiz Capitulino13548692011-07-29 15:36:43 -03002381 saved_vm_running = runstate_is_running();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002382 vm_stop(RUN_STATE_SAVE_VM);
aliguoria672b462008-11-11 21:33:36 +00002383
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002384 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +00002385
2386 /* fill auxiliary fields */
Stefan Weil68b891e2013-01-07 22:20:27 +01002387 qemu_gettimeofday(&tv);
aliguoria672b462008-11-11 21:33:36 +00002388 sn->date_sec = tv.tv_sec;
2389 sn->date_nsec = tv.tv_usec * 1000;
Paolo Bonzini74475452011-03-11 16:47:48 +01002390 sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
aliguoria672b462008-11-11 21:33:36 +00002391
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002392 if (name) {
2393 ret = bdrv_snapshot_find(bs, old_sn, name);
2394 if (ret >= 0) {
2395 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2396 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2397 } else {
2398 pstrcpy(sn->name, sizeof(sn->name), name);
2399 }
2400 } else {
Blue Swirld7d9b522010-09-09 19:13:04 +00002401 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2402 localtime_r((const time_t *)&tv.tv_sec, &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002403 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002404 }
2405
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002406 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -02002407 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002408 goto the_end;
2409 }
2410
aliguoria672b462008-11-11 21:33:36 +00002411 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02002412 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00002413 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00002414 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00002415 goto the_end;
2416 }
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02002417 ret = qemu_savevm_state(f);
aliguori2d22b182008-12-11 21:06:49 +00002418 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00002419 qemu_fclose(f);
2420 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002421 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00002422 goto the_end;
2423 }
2424
2425 /* create the snapshots */
2426
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002427 bs1 = NULL;
2428 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002429 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +00002430 /* Write VM state size only to the image that contains the state */
2431 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00002432 ret = bdrv_snapshot_create(bs1, sn);
2433 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002434 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
2435 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002436 }
2437 }
2438 }
2439
2440 the_end:
2441 if (saved_vm_running)
2442 vm_start();
2443}
2444
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002445void qmp_xen_save_devices_state(const char *filename, Error **errp)
2446{
2447 QEMUFile *f;
2448 int saved_vm_running;
2449 int ret;
2450
2451 saved_vm_running = runstate_is_running();
2452 vm_stop(RUN_STATE_SAVE_VM);
2453
2454 f = qemu_fopen(filename, "wb");
2455 if (!f) {
Luiz Capitulino1befce92013-06-07 14:36:58 -04002456 error_setg_file_open(errp, errno, filename);
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002457 goto the_end;
2458 }
2459 ret = qemu_save_device_state(f);
2460 qemu_fclose(f);
2461 if (ret < 0) {
2462 error_set(errp, QERR_IO_ERROR);
2463 }
2464
2465 the_end:
2466 if (saved_vm_running)
2467 vm_start();
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00002468}
2469
Markus Armbruster03cd4652010-02-17 16:24:10 +01002470int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00002471{
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002472 BlockDriverState *bs, *bs_vm_state;
aliguori2d22b182008-12-11 21:06:49 +00002473 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00002474 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002475 int ret;
aliguoria672b462008-11-11 21:33:36 +00002476
Stefan Hajnoczi29d78272013-05-25 11:09:42 +08002477 bs_vm_state = find_vmstate_bs();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002478 if (!bs_vm_state) {
2479 error_report("No block device supports snapshots");
2480 return -ENOTSUP;
2481 }
2482
2483 /* Don't even try to load empty VM states */
2484 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2485 if (ret < 0) {
2486 return ret;
2487 } else if (sn.vm_state_size == 0) {
Kevin Wolfe11480d2011-03-01 10:48:12 +01002488 error_report("This is a disk-only snapshot. Revert to it offline "
2489 "using qemu-img.");
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002490 return -EINVAL;
2491 }
2492
2493 /* Verify if there is any device that doesn't support snapshots and is
2494 writable and check if the requested snapshot is available too. */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002495 bs = NULL;
2496 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002497
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002498 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002499 continue;
2500 }
2501
2502 if (!bdrv_can_snapshot(bs)) {
2503 error_report("Device '%s' is writable but does not support snapshots.",
2504 bdrv_get_device_name(bs));
2505 return -ENOTSUP;
2506 }
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002507
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002508 ret = bdrv_snapshot_find(bs, &sn, name);
2509 if (ret < 0) {
2510 error_report("Device '%s' does not have the requested snapshot '%s'",
2511 bdrv_get_device_name(bs), name);
2512 return ret;
2513 }
aliguoria672b462008-11-11 21:33:36 +00002514 }
2515
2516 /* Flush all IO requests so they don't interfere with the new state. */
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00002517 bdrv_drain_all();
aliguoria672b462008-11-11 21:33:36 +00002518
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002519 bs = NULL;
2520 while ((bs = bdrv_next(bs))) {
2521 if (bdrv_can_snapshot(bs)) {
2522 ret = bdrv_snapshot_goto(bs, name);
aliguoria672b462008-11-11 21:33:36 +00002523 if (ret < 0) {
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002524 error_report("Error %d while activating snapshot '%s' on '%s'",
2525 ret, name, bdrv_get_device_name(bs));
2526 return ret;
aliguoria672b462008-11-11 21:33:36 +00002527 }
2528 }
2529 }
2530
aliguoria672b462008-11-11 21:33:36 +00002531 /* restore the VM state */
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002532 f = qemu_fopen_bdrv(bs_vm_state, 0);
aliguoria672b462008-11-11 21:33:36 +00002533 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002534 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02002535 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00002536 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002537
Jan Kiszka5a8a49d2011-06-14 18:29:45 +02002538 qemu_system_reset(VMRESET_SILENT);
aliguoria672b462008-11-11 21:33:36 +00002539 ret = qemu_loadvm_state(f);
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002540
aliguoria672b462008-11-11 21:33:36 +00002541 qemu_fclose(f);
2542 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002543 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02002544 return ret;
aliguoria672b462008-11-11 21:33:36 +00002545 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002546
Juan Quintela05f24012009-08-20 19:42:22 +02002547 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02002548}
2549
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002550void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002551{
2552 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002553 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002554 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002555
Stefan Hajnoczi29d78272013-05-25 11:09:42 +08002556 bs = find_vmstate_bs();
aliguoria672b462008-11-11 21:33:36 +00002557 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002558 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002559 return;
2560 }
2561
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002562 bs1 = NULL;
2563 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002564 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00002565 ret = bdrv_snapshot_delete(bs1, name);
2566 if (ret < 0) {
2567 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00002568 monitor_printf(mon,
2569 "Snapshots not supported on device '%s'\n",
2570 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002571 else
aliguori376253e2009-03-05 23:01:23 +00002572 monitor_printf(mon, "Error %d while deleting snapshot on "
2573 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002574 }
2575 }
2576 }
2577}
2578
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08002579void do_info_snapshots(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002580{
2581 BlockDriverState *bs, *bs1;
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002582 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2583 int nb_sns, i, ret, available;
2584 int total;
2585 int *available_snapshots;
aliguoria672b462008-11-11 21:33:36 +00002586
Stefan Hajnoczi29d78272013-05-25 11:09:42 +08002587 bs = find_vmstate_bs();
aliguoria672b462008-11-11 21:33:36 +00002588 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002589 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002590 return;
2591 }
aliguoria672b462008-11-11 21:33:36 +00002592
2593 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2594 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00002595 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00002596 return;
2597 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002598
2599 if (nb_sns == 0) {
2600 monitor_printf(mon, "There is no snapshot available.\n");
2601 return;
aliguoria672b462008-11-11 21:33:36 +00002602 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002603
Anthony Liguori7267c092011-08-20 22:09:37 -05002604 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002605 total = 0;
2606 for (i = 0; i < nb_sns; i++) {
2607 sn = &sn_tab[i];
2608 available = 1;
2609 bs1 = NULL;
2610
2611 while ((bs1 = bdrv_next(bs1))) {
2612 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2613 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2614 if (ret < 0) {
2615 available = 0;
2616 break;
2617 }
2618 }
2619 }
2620
2621 if (available) {
2622 available_snapshots[total] = i;
2623 total++;
2624 }
2625 }
2626
2627 if (total > 0) {
Wenchao Xia5b917042013-05-25 11:09:45 +08002628 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
2629 monitor_printf(mon, "\n");
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002630 for (i = 0; i < total; i++) {
2631 sn = &sn_tab[available_snapshots[i]];
Wenchao Xia5b917042013-05-25 11:09:45 +08002632 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
2633 monitor_printf(mon, "\n");
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002634 }
2635 } else {
2636 monitor_printf(mon, "There is no suitable snapshot available\n");
2637 }
2638
Anthony Liguori7267c092011-08-20 22:09:37 -05002639 g_free(sn_tab);
2640 g_free(available_snapshots);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002641
aliguoria672b462008-11-11 21:33:36 +00002642}
Avi Kivityc5705a72011-12-20 15:59:12 +02002643
2644void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2645{
Avi Kivity1ddde082012-01-08 13:18:19 +02002646 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
Avi Kivityc5705a72011-12-20 15:59:12 +02002647 memory_region_name(mr), dev);
2648}
2649
2650void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2651{
2652 /* Nothing do to while the implementation is in RAMBlock */
2653}
2654
2655void vmstate_register_ram_global(MemoryRegion *mr)
2656{
2657 vmstate_register_ram(mr, NULL);
2658}