blob: 4c0e5d3b102fbe59533040b5c664f54083da7fb7 [file] [log] [blame]
aliguoria672b462008-11-11 21:33:36 +00001/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
aliguoria672b462008-11-11 21:33:36 +000024#include <unistd.h>
25#include <fcntl.h>
26#include <signal.h>
27#include <time.h>
28#include <errno.h>
29#include <sys/time.h>
30#include <zlib.h>
31
Juan Quintela71e72a12009-07-27 16:12:56 +020032/* Needed early for CONFIG_BSD etc. */
blueswir1d40cdb12009-03-07 16:52:02 +000033#include "config-host.h"
34
aliguoria672b462008-11-11 21:33:36 +000035#ifndef _WIN32
36#include <sys/times.h>
37#include <sys/wait.h>
38#include <termios.h>
39#include <sys/mman.h>
40#include <sys/ioctl.h>
41#include <sys/resource.h>
42#include <sys/socket.h>
43#include <netinet/in.h>
44#include <net/if.h>
aliguoria672b462008-11-11 21:33:36 +000045#include <arpa/inet.h>
46#include <dirent.h>
47#include <netdb.h>
48#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020049#ifdef CONFIG_BSD
aliguoria672b462008-11-11 21:33:36 +000050#include <sys/stat.h>
Aurelien Jarnoa167ba52009-11-29 18:00:41 +010051#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
aliguoria672b462008-11-11 21:33:36 +000052#include <libutil.h>
53#else
54#include <util.h>
55#endif
aliguoria672b462008-11-11 21:33:36 +000056#ifdef __linux__
57#include <pty.h>
58#include <malloc.h>
59#include <linux/rtc.h>
60#endif
61#endif
62#endif
63
64#ifdef _WIN32
aliguori49dc7682009-03-08 16:26:59 +000065#include <windows.h>
aliguoria672b462008-11-11 21:33:36 +000066#include <malloc.h>
67#include <sys/timeb.h>
68#include <mmsystem.h>
69#define getopt_long_only getopt_long
70#define memalign(align, size) malloc(size)
71#endif
72
blueswir1511d2b12009-03-07 15:32:56 +000073#include "qemu-common.h"
74#include "hw/hw.h"
Alex Williamson7685ee62010-06-25 11:09:14 -060075#include "hw/qdev.h"
blueswir1511d2b12009-03-07 15:32:56 +000076#include "net.h"
77#include "monitor.h"
78#include "sysemu.h"
79#include "qemu-timer.h"
80#include "qemu-char.h"
Markus Armbruster666daa62010-06-02 18:48:27 +020081#include "blockdev.h"
blueswir1511d2b12009-03-07 15:32:56 +000082#include "audio/audio.h"
83#include "migration.h"
84#include "qemu_socket.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +000085#include "qemu-queue.h"
blueswir1511d2b12009-03-07 15:32:56 +000086
aliguoria672b462008-11-11 21:33:36 +000087#define SELF_ANNOUNCE_ROUNDS 5
aliguoria672b462008-11-11 21:33:36 +000088
Nolan18995b92009-10-15 16:53:55 -070089#ifndef ETH_P_RARP
Stefan Bergerf8778a72010-04-24 08:54:07 -040090#define ETH_P_RARP 0x8035
Nolan18995b92009-10-15 16:53:55 -070091#endif
92#define ARP_HTYPE_ETH 0x0001
93#define ARP_PTYPE_IP 0x0800
94#define ARP_OP_REQUEST_REV 0x3
95
96static int announce_self_create(uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +000097 uint8_t *mac_addr)
98{
Nolan18995b92009-10-15 16:53:55 -070099 /* Ethernet header. */
100 memset(buf, 0xff, 6); /* destination MAC addr */
101 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
102 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
aliguoria672b462008-11-11 21:33:36 +0000103
Nolan18995b92009-10-15 16:53:55 -0700104 /* RARP header. */
105 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
106 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
107 *(buf + 18) = 6; /* hardware addr length (ethernet) */
108 *(buf + 19) = 4; /* protocol addr length (IPv4) */
109 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
110 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
111 memset(buf + 28, 0x00, 4); /* source protocol addr */
112 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
113 memset(buf + 38, 0x00, 4); /* target protocol addr */
aliguoria672b462008-11-11 21:33:36 +0000114
Nolan18995b92009-10-15 16:53:55 -0700115 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
116 memset(buf + 42, 0x00, 18);
aliguoria672b462008-11-11 21:33:36 +0000117
Nolan18995b92009-10-15 16:53:55 -0700118 return 60; /* len (FCS will be added by hardware) */
aliguoria672b462008-11-11 21:33:36 +0000119}
120
Mark McLoughlinf401ca22009-11-25 18:49:32 +0000121static void qemu_announce_self_iter(NICState *nic, void *opaque)
122{
123 uint8_t buf[60];
124 int len;
125
126 len = announce_self_create(buf, nic->conf->macaddr.a);
127
128 qemu_send_packet_raw(&nic->nc, buf, len);
129}
130
131
Gleb Natapoved8b3302009-05-21 17:17:44 +0300132static void qemu_announce_self_once(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000133{
Gleb Natapoved8b3302009-05-21 17:17:44 +0300134 static int count = SELF_ANNOUNCE_ROUNDS;
135 QEMUTimer *timer = *(QEMUTimer **)opaque;
aliguoria672b462008-11-11 21:33:36 +0000136
Mark McLoughlinf401ca22009-11-25 18:49:32 +0000137 qemu_foreach_nic(qemu_announce_self_iter, NULL);
138
Nolan18995b92009-10-15 16:53:55 -0700139 if (--count) {
140 /* delay 50ms, 150ms, 250ms, ... */
141 qemu_mod_timer(timer, qemu_get_clock(rt_clock) +
142 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300143 } else {
144 qemu_del_timer(timer);
145 qemu_free_timer(timer);
146 }
147}
148
149void qemu_announce_self(void)
150{
151 static QEMUTimer *timer;
152 timer = qemu_new_timer(rt_clock, qemu_announce_self_once, &timer);
153 qemu_announce_self_once(&timer);
aliguoria672b462008-11-11 21:33:36 +0000154}
155
156/***********************************************************/
157/* savevm/loadvm support */
158
159#define IO_BUF_SIZE 32768
160
161struct QEMUFile {
162 QEMUFilePutBufferFunc *put_buffer;
163 QEMUFileGetBufferFunc *get_buffer;
164 QEMUFileCloseFunc *close;
165 QEMUFileRateLimit *rate_limit;
Glauber Costa19629532009-05-20 18:26:57 -0400166 QEMUFileSetRateLimit *set_rate_limit;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200167 QEMUFileGetRateLimit *get_rate_limit;
aliguoria672b462008-11-11 21:33:36 +0000168 void *opaque;
169 int is_write;
170
171 int64_t buf_offset; /* start of buffer when writing, end of buffer
172 when reading */
173 int buf_index;
174 int buf_size; /* 0 when writing */
175 uint8_t buf[IO_BUF_SIZE];
176
177 int has_error;
178};
179
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200180typedef struct QEMUFileStdio
aliguoria672b462008-11-11 21:33:36 +0000181{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200182 FILE *stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000183 QEMUFile *file;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200184} QEMUFileStdio;
aliguoria672b462008-11-11 21:33:36 +0000185
186typedef struct QEMUFileSocket
187{
188 int fd;
189 QEMUFile *file;
190} QEMUFileSocket;
191
192static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
193{
194 QEMUFileSocket *s = opaque;
195 ssize_t len;
196
197 do {
Blue Swirlc5b76b32009-06-13 08:44:31 +0000198 len = recv(s->fd, (void *)buf, size, 0);
aliguoria672b462008-11-11 21:33:36 +0000199 } while (len == -1 && socket_error() == EINTR);
200
201 if (len == -1)
202 len = -socket_error();
203
204 return len;
205}
206
207static int socket_close(void *opaque)
208{
209 QEMUFileSocket *s = opaque;
210 qemu_free(s);
211 return 0;
212}
213
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200214static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000215{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200216 QEMUFileStdio *s = opaque;
217 return fwrite(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000218}
219
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200220static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000221{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200222 QEMUFileStdio *s = opaque;
223 FILE *fp = s->stdio_file;
Uri Lublin8a67ec42009-06-08 19:27:21 +0300224 int bytes;
225
226 do {
227 clearerr(fp);
228 bytes = fread(buf, 1, size, fp);
229 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
230 return bytes;
aliguoria672b462008-11-11 21:33:36 +0000231}
232
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200233static int stdio_pclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000234{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200235 QEMUFileStdio *s = opaque;
Anthony Liguori41ef56e2010-06-02 14:55:25 -0500236 int ret;
237 ret = pclose(s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000238 qemu_free(s);
Anthony Liguori41ef56e2010-06-02 14:55:25 -0500239 return ret;
aliguoria672b462008-11-11 21:33:36 +0000240}
241
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200242static int stdio_fclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000243{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200244 QEMUFileStdio *s = opaque;
245 fclose(s->stdio_file);
246 qemu_free(s);
247 return 0;
248}
aliguoria672b462008-11-11 21:33:36 +0000249
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200250QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
251{
252 QEMUFileStdio *s;
253
254 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
aliguoria672b462008-11-11 21:33:36 +0000255 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
256 return NULL;
257 }
258
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200259 s = qemu_mallocz(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000260
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200261 s->stdio_file = stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000262
263 if(mode[0] == 'r') {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200264 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_pclose,
265 NULL, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000266 } else {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200267 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_pclose,
268 NULL, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000269 }
aliguoria672b462008-11-11 21:33:36 +0000270 return s->file;
271}
272
273QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
274{
275 FILE *popen_file;
276
277 popen_file = popen(command, mode);
278 if(popen_file == NULL) {
279 return NULL;
280 }
281
282 return qemu_popen(popen_file, mode);
283}
284
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200285int qemu_stdio_fd(QEMUFile *f)
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200286{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200287 QEMUFileStdio *p;
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200288 int fd;
289
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200290 p = (QEMUFileStdio *)f->opaque;
291 fd = fileno(p->stdio_file);
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200292
293 return fd;
294}
295
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200296QEMUFile *qemu_fdopen(int fd, const char *mode)
297{
298 QEMUFileStdio *s;
299
300 if (mode == NULL ||
301 (mode[0] != 'r' && mode[0] != 'w') ||
302 mode[1] != 'b' || mode[2] != 0) {
303 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
304 return NULL;
305 }
306
307 s = qemu_mallocz(sizeof(QEMUFileStdio));
308 s->stdio_file = fdopen(fd, mode);
309 if (!s->stdio_file)
310 goto fail;
311
312 if(mode[0] == 'r') {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200313 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_fclose,
314 NULL, NULL, NULL);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200315 } else {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200316 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_fclose,
317 NULL, NULL, NULL);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200318 }
319 return s->file;
320
321fail:
322 qemu_free(s);
323 return NULL;
324}
325
aliguoria672b462008-11-11 21:33:36 +0000326QEMUFile *qemu_fopen_socket(int fd)
327{
328 QEMUFileSocket *s = qemu_mallocz(sizeof(QEMUFileSocket));
329
aliguoria672b462008-11-11 21:33:36 +0000330 s->fd = fd;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200331 s->file = qemu_fopen_ops(s, NULL, socket_get_buffer, socket_close,
332 NULL, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000333 return s->file;
334}
335
aliguoria672b462008-11-11 21:33:36 +0000336static int file_put_buffer(void *opaque, const uint8_t *buf,
337 int64_t pos, int size)
338{
339 QEMUFileStdio *s = opaque;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200340 fseek(s->stdio_file, pos, SEEK_SET);
Kirill A. Shutemov5fdb3aa2009-12-25 18:19:19 +0000341 return fwrite(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000342}
343
344static int file_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
345{
346 QEMUFileStdio *s = opaque;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200347 fseek(s->stdio_file, pos, SEEK_SET);
348 return fread(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000349}
350
351QEMUFile *qemu_fopen(const char *filename, const char *mode)
352{
353 QEMUFileStdio *s;
354
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200355 if (mode == NULL ||
356 (mode[0] != 'r' && mode[0] != 'w') ||
357 mode[1] != 'b' || mode[2] != 0) {
Blue Swirl090414a2010-03-13 11:36:09 +0000358 fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200359 return NULL;
360 }
361
aliguoria672b462008-11-11 21:33:36 +0000362 s = qemu_mallocz(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000363
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200364 s->stdio_file = fopen(filename, mode);
365 if (!s->stdio_file)
aliguoria672b462008-11-11 21:33:36 +0000366 goto fail;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200367
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200368 if(mode[0] == 'w') {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200369 s->file = qemu_fopen_ops(s, file_put_buffer, NULL, stdio_fclose,
370 NULL, NULL, NULL);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200371 } else {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200372 s->file = qemu_fopen_ops(s, NULL, file_get_buffer, stdio_fclose,
373 NULL, NULL, NULL);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200374 }
375 return s->file;
aliguoria672b462008-11-11 21:33:36 +0000376fail:
aliguoria672b462008-11-11 21:33:36 +0000377 qemu_free(s);
378 return NULL;
379}
380
aliguori178e08a2009-04-05 19:10:55 +0000381static int block_put_buffer(void *opaque, const uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +0000382 int64_t pos, int size)
383{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200384 bdrv_save_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000385 return size;
386}
387
aliguori178e08a2009-04-05 19:10:55 +0000388static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000389{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200390 return bdrv_load_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000391}
392
393static int bdrv_fclose(void *opaque)
394{
aliguoria672b462008-11-11 21:33:36 +0000395 return 0;
396}
397
Christoph Hellwig45566e92009-07-10 23:11:57 +0200398static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
aliguoria672b462008-11-11 21:33:36 +0000399{
aliguoria672b462008-11-11 21:33:36 +0000400 if (is_writable)
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200401 return qemu_fopen_ops(bs, block_put_buffer, NULL, bdrv_fclose,
402 NULL, NULL, NULL);
403 return qemu_fopen_ops(bs, NULL, block_get_buffer, bdrv_fclose, NULL, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000404}
405
406QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
407 QEMUFileGetBufferFunc *get_buffer,
408 QEMUFileCloseFunc *close,
Glauber Costa19629532009-05-20 18:26:57 -0400409 QEMUFileRateLimit *rate_limit,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200410 QEMUFileSetRateLimit *set_rate_limit,
411 QEMUFileGetRateLimit *get_rate_limit)
aliguoria672b462008-11-11 21:33:36 +0000412{
413 QEMUFile *f;
414
415 f = qemu_mallocz(sizeof(QEMUFile));
aliguoria672b462008-11-11 21:33:36 +0000416
417 f->opaque = opaque;
418 f->put_buffer = put_buffer;
419 f->get_buffer = get_buffer;
420 f->close = close;
421 f->rate_limit = rate_limit;
Glauber Costa19629532009-05-20 18:26:57 -0400422 f->set_rate_limit = set_rate_limit;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200423 f->get_rate_limit = get_rate_limit;
aliguoria672b462008-11-11 21:33:36 +0000424 f->is_write = 0;
425
426 return f;
427}
428
429int qemu_file_has_error(QEMUFile *f)
430{
431 return f->has_error;
432}
433
aliguori4dabe242009-04-05 19:30:51 +0000434void qemu_file_set_error(QEMUFile *f)
435{
436 f->has_error = 1;
437}
438
aliguoria672b462008-11-11 21:33:36 +0000439void qemu_fflush(QEMUFile *f)
440{
441 if (!f->put_buffer)
442 return;
443
444 if (f->is_write && f->buf_index > 0) {
445 int len;
446
447 len = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
448 if (len > 0)
449 f->buf_offset += f->buf_index;
450 else
451 f->has_error = 1;
452 f->buf_index = 0;
453 }
454}
455
456static void qemu_fill_buffer(QEMUFile *f)
457{
458 int len;
459
460 if (!f->get_buffer)
461 return;
462
463 if (f->is_write)
464 abort();
465
466 len = f->get_buffer(f->opaque, f->buf, f->buf_offset, IO_BUF_SIZE);
467 if (len > 0) {
468 f->buf_index = 0;
469 f->buf_size = len;
470 f->buf_offset += len;
471 } else if (len != -EAGAIN)
472 f->has_error = 1;
473}
474
475int qemu_fclose(QEMUFile *f)
476{
477 int ret = 0;
478 qemu_fflush(f);
479 if (f->close)
480 ret = f->close(f->opaque);
481 qemu_free(f);
482 return ret;
483}
484
485void qemu_file_put_notify(QEMUFile *f)
486{
487 f->put_buffer(f->opaque, NULL, 0, 0);
488}
489
490void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
491{
492 int l;
493
494 if (!f->has_error && f->is_write == 0 && f->buf_index > 0) {
495 fprintf(stderr,
496 "Attempted to write to buffer while read buffer is not empty\n");
497 abort();
498 }
499
500 while (!f->has_error && size > 0) {
501 l = IO_BUF_SIZE - f->buf_index;
502 if (l > size)
503 l = size;
504 memcpy(f->buf + f->buf_index, buf, l);
505 f->is_write = 1;
506 f->buf_index += l;
507 buf += l;
508 size -= l;
509 if (f->buf_index >= IO_BUF_SIZE)
510 qemu_fflush(f);
511 }
512}
513
514void qemu_put_byte(QEMUFile *f, int v)
515{
516 if (!f->has_error && f->is_write == 0 && f->buf_index > 0) {
517 fprintf(stderr,
518 "Attempted to write to buffer while read buffer is not empty\n");
519 abort();
520 }
521
522 f->buf[f->buf_index++] = v;
523 f->is_write = 1;
524 if (f->buf_index >= IO_BUF_SIZE)
525 qemu_fflush(f);
526}
527
528int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)
529{
530 int size, l;
531
532 if (f->is_write)
533 abort();
534
535 size = size1;
536 while (size > 0) {
537 l = f->buf_size - f->buf_index;
538 if (l == 0) {
539 qemu_fill_buffer(f);
540 l = f->buf_size - f->buf_index;
541 if (l == 0)
542 break;
543 }
544 if (l > size)
545 l = size;
546 memcpy(buf, f->buf + f->buf_index, l);
547 f->buf_index += l;
548 buf += l;
549 size -= l;
550 }
551 return size1 - size;
552}
553
Juan Quintela811814b2010-07-26 21:38:43 +0200554static int qemu_peek_byte(QEMUFile *f)
555{
556 if (f->is_write)
557 abort();
558
559 if (f->buf_index >= f->buf_size) {
560 qemu_fill_buffer(f);
561 if (f->buf_index >= f->buf_size)
562 return 0;
563 }
564 return f->buf[f->buf_index];
565}
566
aliguoria672b462008-11-11 21:33:36 +0000567int qemu_get_byte(QEMUFile *f)
568{
569 if (f->is_write)
570 abort();
571
572 if (f->buf_index >= f->buf_size) {
573 qemu_fill_buffer(f);
574 if (f->buf_index >= f->buf_size)
575 return 0;
576 }
577 return f->buf[f->buf_index++];
578}
579
580int64_t qemu_ftell(QEMUFile *f)
581{
582 return f->buf_offset - f->buf_size + f->buf_index;
583}
584
585int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
586{
587 if (whence == SEEK_SET) {
588 /* nothing to do */
589 } else if (whence == SEEK_CUR) {
590 pos += qemu_ftell(f);
591 } else {
592 /* SEEK_END not supported */
593 return -1;
594 }
595 if (f->put_buffer) {
596 qemu_fflush(f);
597 f->buf_offset = pos;
598 } else {
599 f->buf_offset = pos;
600 f->buf_index = 0;
601 f->buf_size = 0;
602 }
603 return pos;
604}
605
606int qemu_file_rate_limit(QEMUFile *f)
607{
608 if (f->rate_limit)
609 return f->rate_limit(f->opaque);
610
611 return 0;
612}
613
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200614size_t qemu_file_get_rate_limit(QEMUFile *f)
615{
616 if (f->get_rate_limit)
617 return f->get_rate_limit(f->opaque);
618
619 return 0;
620}
621
Glauber Costa19629532009-05-20 18:26:57 -0400622size_t qemu_file_set_rate_limit(QEMUFile *f, size_t new_rate)
623{
Glauber Costa0bb05ea2009-07-14 18:26:51 -0400624 /* any failed or completed migration keeps its state to allow probing of
625 * migration data, but has no associated file anymore */
626 if (f && f->set_rate_limit)
Glauber Costa19629532009-05-20 18:26:57 -0400627 return f->set_rate_limit(f->opaque, new_rate);
628
629 return 0;
630}
631
aliguoria672b462008-11-11 21:33:36 +0000632void qemu_put_be16(QEMUFile *f, unsigned int v)
633{
634 qemu_put_byte(f, v >> 8);
635 qemu_put_byte(f, v);
636}
637
638void qemu_put_be32(QEMUFile *f, unsigned int v)
639{
640 qemu_put_byte(f, v >> 24);
641 qemu_put_byte(f, v >> 16);
642 qemu_put_byte(f, v >> 8);
643 qemu_put_byte(f, v);
644}
645
646void qemu_put_be64(QEMUFile *f, uint64_t v)
647{
648 qemu_put_be32(f, v >> 32);
649 qemu_put_be32(f, v);
650}
651
652unsigned int qemu_get_be16(QEMUFile *f)
653{
654 unsigned int v;
655 v = qemu_get_byte(f) << 8;
656 v |= qemu_get_byte(f);
657 return v;
658}
659
660unsigned int qemu_get_be32(QEMUFile *f)
661{
662 unsigned int v;
663 v = qemu_get_byte(f) << 24;
664 v |= qemu_get_byte(f) << 16;
665 v |= qemu_get_byte(f) << 8;
666 v |= qemu_get_byte(f);
667 return v;
668}
669
670uint64_t qemu_get_be64(QEMUFile *f)
671{
672 uint64_t v;
673 v = (uint64_t)qemu_get_be32(f) << 32;
674 v |= qemu_get_be32(f);
675 return v;
676}
677
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200678/* 8 bit int */
679
680static int get_int8(QEMUFile *f, void *pv, size_t size)
681{
682 int8_t *v = pv;
683 qemu_get_s8s(f, v);
684 return 0;
685}
686
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200687static void put_int8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200688{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200689 int8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200690 qemu_put_s8s(f, v);
691}
692
693const VMStateInfo vmstate_info_int8 = {
694 .name = "int8",
695 .get = get_int8,
696 .put = put_int8,
697};
698
699/* 16 bit int */
700
701static int get_int16(QEMUFile *f, void *pv, size_t size)
702{
703 int16_t *v = pv;
704 qemu_get_sbe16s(f, v);
705 return 0;
706}
707
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200708static void put_int16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200709{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200710 int16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200711 qemu_put_sbe16s(f, v);
712}
713
714const VMStateInfo vmstate_info_int16 = {
715 .name = "int16",
716 .get = get_int16,
717 .put = put_int16,
718};
719
720/* 32 bit int */
721
722static int get_int32(QEMUFile *f, void *pv, size_t size)
723{
724 int32_t *v = pv;
725 qemu_get_sbe32s(f, v);
726 return 0;
727}
728
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200729static void put_int32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200730{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200731 int32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200732 qemu_put_sbe32s(f, v);
733}
734
735const VMStateInfo vmstate_info_int32 = {
736 .name = "int32",
737 .get = get_int32,
738 .put = put_int32,
739};
740
Juan Quintela82501662009-08-20 19:42:32 +0200741/* 32 bit int. See that the received value is the same than the one
742 in the field */
743
744static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
745{
746 int32_t *v = pv;
747 int32_t v2;
748 qemu_get_sbe32s(f, &v2);
749
750 if (*v == v2)
751 return 0;
752 return -EINVAL;
753}
754
755const VMStateInfo vmstate_info_int32_equal = {
756 .name = "int32 equal",
757 .get = get_int32_equal,
758 .put = put_int32,
759};
760
Juan Quintela0a031e02009-08-20 19:42:37 +0200761/* 32 bit int. See that the received value is the less or the same
762 than the one in the field */
763
764static int get_int32_le(QEMUFile *f, void *pv, size_t size)
765{
766 int32_t *old = pv;
767 int32_t new;
768 qemu_get_sbe32s(f, &new);
769
770 if (*old <= new)
771 return 0;
772 return -EINVAL;
773}
774
775const VMStateInfo vmstate_info_int32_le = {
776 .name = "int32 equal",
777 .get = get_int32_le,
778 .put = put_int32,
779};
780
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200781/* 64 bit int */
782
783static int get_int64(QEMUFile *f, void *pv, size_t size)
784{
785 int64_t *v = pv;
786 qemu_get_sbe64s(f, v);
787 return 0;
788}
789
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200790static void put_int64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200791{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200792 int64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200793 qemu_put_sbe64s(f, v);
794}
795
796const VMStateInfo vmstate_info_int64 = {
797 .name = "int64",
798 .get = get_int64,
799 .put = put_int64,
800};
801
802/* 8 bit unsigned int */
803
804static int get_uint8(QEMUFile *f, void *pv, size_t size)
805{
806 uint8_t *v = pv;
807 qemu_get_8s(f, v);
808 return 0;
809}
810
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200811static void put_uint8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200812{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200813 uint8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200814 qemu_put_8s(f, v);
815}
816
817const VMStateInfo vmstate_info_uint8 = {
818 .name = "uint8",
819 .get = get_uint8,
820 .put = put_uint8,
821};
822
823/* 16 bit unsigned int */
824
825static int get_uint16(QEMUFile *f, void *pv, size_t size)
826{
827 uint16_t *v = pv;
828 qemu_get_be16s(f, v);
829 return 0;
830}
831
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200832static void put_uint16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200833{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200834 uint16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200835 qemu_put_be16s(f, v);
836}
837
838const VMStateInfo vmstate_info_uint16 = {
839 .name = "uint16",
840 .get = get_uint16,
841 .put = put_uint16,
842};
843
844/* 32 bit unsigned int */
845
846static int get_uint32(QEMUFile *f, void *pv, size_t size)
847{
848 uint32_t *v = pv;
849 qemu_get_be32s(f, v);
850 return 0;
851}
852
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200853static void put_uint32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200854{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200855 uint32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200856 qemu_put_be32s(f, v);
857}
858
859const VMStateInfo vmstate_info_uint32 = {
860 .name = "uint32",
861 .get = get_uint32,
862 .put = put_uint32,
863};
864
865/* 64 bit unsigned int */
866
867static int get_uint64(QEMUFile *f, void *pv, size_t size)
868{
869 uint64_t *v = pv;
870 qemu_get_be64s(f, v);
871 return 0;
872}
873
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200874static void put_uint64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200875{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200876 uint64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200877 qemu_put_be64s(f, v);
878}
879
880const VMStateInfo vmstate_info_uint64 = {
881 .name = "uint64",
882 .get = get_uint64,
883 .put = put_uint64,
884};
885
Juan Quintela80cd83e2009-09-10 03:04:36 +0200886/* 8 bit int. See that the received value is the same than the one
887 in the field */
888
889static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
890{
891 uint8_t *v = pv;
892 uint8_t v2;
893 qemu_get_8s(f, &v2);
894
895 if (*v == v2)
896 return 0;
897 return -EINVAL;
898}
899
900const VMStateInfo vmstate_info_uint8_equal = {
Juan Quintelaaa1cce62009-10-15 19:16:06 +0200901 .name = "uint8 equal",
Juan Quintela80cd83e2009-09-10 03:04:36 +0200902 .get = get_uint8_equal,
903 .put = put_uint8,
904};
905
Juan Quinteladc3b83a2009-10-15 23:16:13 +0200906/* 16 bit unsigned int int. See that the received value is the same than the one
907 in the field */
908
909static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
910{
911 uint16_t *v = pv;
912 uint16_t v2;
913 qemu_get_be16s(f, &v2);
914
915 if (*v == v2)
916 return 0;
917 return -EINVAL;
918}
919
920const VMStateInfo vmstate_info_uint16_equal = {
921 .name = "uint16 equal",
922 .get = get_uint16_equal,
923 .put = put_uint16,
924};
925
Juan Quinteladde04632009-08-20 19:42:26 +0200926/* timers */
927
928static int get_timer(QEMUFile *f, void *pv, size_t size)
929{
930 QEMUTimer *v = pv;
931 qemu_get_timer(f, v);
932 return 0;
933}
934
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200935static void put_timer(QEMUFile *f, void *pv, size_t size)
Juan Quinteladde04632009-08-20 19:42:26 +0200936{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200937 QEMUTimer *v = pv;
Juan Quinteladde04632009-08-20 19:42:26 +0200938 qemu_put_timer(f, v);
939}
940
941const VMStateInfo vmstate_info_timer = {
942 .name = "timer",
943 .get = get_timer,
944 .put = put_timer,
945};
946
Juan Quintela6f67c502009-08-20 19:42:35 +0200947/* uint8_t buffers */
948
949static int get_buffer(QEMUFile *f, void *pv, size_t size)
950{
951 uint8_t *v = pv;
952 qemu_get_buffer(f, v, size);
953 return 0;
954}
955
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200956static void put_buffer(QEMUFile *f, void *pv, size_t size)
Juan Quintela6f67c502009-08-20 19:42:35 +0200957{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200958 uint8_t *v = pv;
Juan Quintela6f67c502009-08-20 19:42:35 +0200959 qemu_put_buffer(f, v, size);
960}
961
962const VMStateInfo vmstate_info_buffer = {
963 .name = "buffer",
964 .get = get_buffer,
965 .put = put_buffer,
966};
967
Juan Quintela76507c72009-10-19 15:46:28 +0200968/* unused buffers: space that was used for some fields that are
969 not usefull anymore */
970
971static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
972{
Jan Kiszka21174c32009-12-02 12:36:35 +0100973 uint8_t buf[1024];
974 int block_len;
975
976 while (size > 0) {
977 block_len = MIN(sizeof(buf), size);
978 size -= block_len;
979 qemu_get_buffer(f, buf, block_len);
980 }
981 return 0;
Juan Quintela76507c72009-10-19 15:46:28 +0200982}
983
984static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
985{
Jan Kiszka21174c32009-12-02 12:36:35 +0100986 static const uint8_t buf[1024];
987 int block_len;
988
989 while (size > 0) {
990 block_len = MIN(sizeof(buf), size);
991 size -= block_len;
992 qemu_put_buffer(f, buf, block_len);
993 }
Juan Quintela76507c72009-10-19 15:46:28 +0200994}
995
996const VMStateInfo vmstate_info_unused_buffer = {
997 .name = "unused_buffer",
998 .get = get_unused_buffer,
999 .put = put_unused_buffer,
1000};
1001
Alex Williamson7685ee62010-06-25 11:09:14 -06001002typedef struct CompatEntry {
1003 char idstr[256];
1004 int instance_id;
1005} CompatEntry;
1006
aliguoria672b462008-11-11 21:33:36 +00001007typedef struct SaveStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001008 QTAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001009 char idstr[256];
1010 int instance_id;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001011 int alias_id;
aliguoria672b462008-11-11 21:33:36 +00001012 int version_id;
1013 int section_id;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001014 SaveSetParamsHandler *set_params;
aliguoria672b462008-11-11 21:33:36 +00001015 SaveLiveStateHandler *save_live_state;
1016 SaveStateHandler *save_state;
1017 LoadStateHandler *load_state;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001018 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +00001019 void *opaque;
Alex Williamson7685ee62010-06-25 11:09:14 -06001020 CompatEntry *compat;
aliguoria672b462008-11-11 21:33:36 +00001021} SaveStateEntry;
1022
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001023
Blue Swirl72cf2d42009-09-12 07:36:22 +00001024static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1025 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001026static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +00001027
Juan Quintela8718e992009-09-01 02:12:31 +02001028static int calculate_new_instance_id(const char *idstr)
1029{
1030 SaveStateEntry *se;
1031 int instance_id = 0;
1032
Blue Swirl72cf2d42009-09-12 07:36:22 +00001033 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +02001034 if (strcmp(idstr, se->idstr) == 0
1035 && instance_id <= se->instance_id) {
1036 instance_id = se->instance_id + 1;
1037 }
1038 }
1039 return instance_id;
1040}
1041
Alex Williamson7685ee62010-06-25 11:09:14 -06001042static int calculate_compat_instance_id(const char *idstr)
1043{
1044 SaveStateEntry *se;
1045 int instance_id = 0;
1046
1047 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1048 if (!se->compat)
1049 continue;
1050
1051 if (strcmp(idstr, se->compat->idstr) == 0
1052 && instance_id <= se->compat->instance_id) {
1053 instance_id = se->compat->instance_id + 1;
1054 }
1055 }
1056 return instance_id;
1057}
1058
aliguoria672b462008-11-11 21:33:36 +00001059/* TODO: Individual devices generally have very little idea about the rest
1060 of the system, so instance_id should be removed/replaced.
1061 Meanwhile pass -1 as instance_id if you do not already have a clearly
1062 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -06001063int register_savevm_live(DeviceState *dev,
1064 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001065 int instance_id,
1066 int version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001067 SaveSetParamsHandler *set_params,
aliguoria672b462008-11-11 21:33:36 +00001068 SaveLiveStateHandler *save_live_state,
1069 SaveStateHandler *save_state,
1070 LoadStateHandler *load_state,
1071 void *opaque)
1072{
Juan Quintela8718e992009-09-01 02:12:31 +02001073 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +00001074
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001075 se = qemu_mallocz(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +00001076 se->version_id = version_id;
1077 se->section_id = global_section_id++;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001078 se->set_params = set_params;
aliguoria672b462008-11-11 21:33:36 +00001079 se->save_live_state = save_live_state;
1080 se->save_state = save_state;
1081 se->load_state = load_state;
1082 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001083 se->vmsd = NULL;
aliguoria672b462008-11-11 21:33:36 +00001084
Alex Williamson7685ee62010-06-25 11:09:14 -06001085 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1086 char *id = dev->parent_bus->info->get_dev_path(dev);
1087 if (id) {
1088 pstrcpy(se->idstr, sizeof(se->idstr), id);
1089 pstrcat(se->idstr, sizeof(se->idstr), "/");
1090 qemu_free(id);
1091
1092 se->compat = qemu_mallocz(sizeof(CompatEntry));
1093 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1094 se->compat->instance_id = instance_id == -1 ?
1095 calculate_compat_instance_id(idstr) : instance_id;
1096 instance_id = -1;
1097 }
1098 }
1099 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1100
Juan Quintela8718e992009-09-01 02:12:31 +02001101 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001102 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001103 } else {
1104 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +00001105 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001106 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001107 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001108 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +00001109 return 0;
1110}
1111
Alex Williamson0be71e32010-06-25 11:09:07 -06001112int register_savevm(DeviceState *dev,
1113 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001114 int instance_id,
1115 int version_id,
1116 SaveStateHandler *save_state,
1117 LoadStateHandler *load_state,
1118 void *opaque)
1119{
Alex Williamson0be71e32010-06-25 11:09:07 -06001120 return register_savevm_live(dev, idstr, instance_id, version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001121 NULL, NULL, save_state, load_state, opaque);
aliguoria672b462008-11-11 21:33:36 +00001122}
1123
Alex Williamson0be71e32010-06-25 11:09:07 -06001124void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +00001125{
Juan Quintela8718e992009-09-01 02:12:31 +02001126 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001127 char id[256] = "";
1128
1129 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1130 char *path = dev->parent_bus->info->get_dev_path(dev);
1131 if (path) {
1132 pstrcpy(id, sizeof(id), path);
1133 pstrcat(id, sizeof(id), "/");
1134 qemu_free(path);
1135 }
1136 }
1137 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +00001138
Blue Swirl72cf2d42009-09-12 07:36:22 +00001139 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001140 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001141 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001142 if (se->compat) {
1143 qemu_free(se->compat);
1144 }
Juan Quintela8718e992009-09-01 02:12:31 +02001145 qemu_free(se);
aliguori41bd13a2009-04-17 17:10:59 +00001146 }
aliguori41bd13a2009-04-17 17:10:59 +00001147 }
1148}
1149
Alex Williamson0be71e32010-06-25 11:09:07 -06001150int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001151 const VMStateDescription *vmsd,
1152 void *opaque, int alias_id,
1153 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001154{
Juan Quintela8718e992009-09-01 02:12:31 +02001155 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001156
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001157 /* If this triggers, alias support can be dropped for the vmsd. */
1158 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1159
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001160 se = qemu_mallocz(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001161 se->version_id = vmsd->version_id;
1162 se->section_id = global_section_id++;
1163 se->save_live_state = NULL;
1164 se->save_state = NULL;
1165 se->load_state = NULL;
1166 se->opaque = opaque;
1167 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001168 se->alias_id = alias_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001169
Alex Williamson7685ee62010-06-25 11:09:14 -06001170 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1171 char *id = dev->parent_bus->info->get_dev_path(dev);
1172 if (id) {
1173 pstrcpy(se->idstr, sizeof(se->idstr), id);
1174 pstrcat(se->idstr, sizeof(se->idstr), "/");
1175 qemu_free(id);
1176
1177 se->compat = qemu_mallocz(sizeof(CompatEntry));
1178 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1179 se->compat->instance_id = instance_id == -1 ?
1180 calculate_compat_instance_id(vmsd->name) : instance_id;
1181 instance_id = -1;
1182 }
1183 }
1184 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1185
Juan Quintela8718e992009-09-01 02:12:31 +02001186 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001187 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001188 } else {
1189 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001190 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001191 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001192 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001193 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001194 return 0;
1195}
1196
Alex Williamson0be71e32010-06-25 11:09:07 -06001197int vmstate_register(DeviceState *dev, int instance_id,
1198 const VMStateDescription *vmsd, void *opaque)
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001199{
Alex Williamson0be71e32010-06-25 11:09:07 -06001200 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1201 opaque, -1, 0);
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001202}
1203
Alex Williamson0be71e32010-06-25 11:09:07 -06001204void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1205 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001206{
Juan Quintela1eb75382009-09-10 03:04:29 +02001207 SaveStateEntry *se, *new_se;
1208
Blue Swirl72cf2d42009-09-12 07:36:22 +00001209 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +02001210 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001211 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001212 if (se->compat) {
1213 qemu_free(se->compat);
1214 }
Juan Quintela1eb75382009-09-10 03:04:29 +02001215 qemu_free(se);
1216 }
1217 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001218}
1219
Juan Quintela811814b2010-07-26 21:38:43 +02001220static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1221 void *opaque);
1222static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1223 void *opaque);
1224
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001225int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1226 void *opaque, int version_id)
1227{
1228 VMStateField *field = vmsd->fields;
Juan Quintela811814b2010-07-26 21:38:43 +02001229 int ret;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001230
1231 if (version_id > vmsd->version_id) {
1232 return -EINVAL;
1233 }
1234 if (version_id < vmsd->minimum_version_id_old) {
1235 return -EINVAL;
1236 }
1237 if (version_id < vmsd->minimum_version_id) {
1238 return vmsd->load_state_old(f, opaque, version_id);
1239 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001240 if (vmsd->pre_load) {
1241 int ret = vmsd->pre_load(opaque);
1242 if (ret)
1243 return ret;
1244 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001245 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001246 if ((field->field_exists &&
1247 field->field_exists(opaque, version_id)) ||
1248 (!field->field_exists &&
1249 field->version_id <= version_id)) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001250 void *base_addr = opaque + field->offset;
Juan Quintela811814b2010-07-26 21:38:43 +02001251 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001252 int size = field->size;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001253
Juan Quintelae61a1e02009-12-02 12:36:38 +01001254 if (field->flags & VMS_VBUFFER) {
1255 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001256 if (field->flags & VMS_MULTIPLY) {
1257 size *= field->size;
1258 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001259 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001260 if (field->flags & VMS_ARRAY) {
1261 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001262 } else if (field->flags & VMS_VARRAY_INT32) {
1263 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001264 } else if (field->flags & VMS_VARRAY_UINT16) {
1265 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001266 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001267 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001268 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001269 }
1270 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001271 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001272
Juan Quintela19df4382009-09-29 22:48:41 +02001273 if (field->flags & VMS_ARRAY_OF_POINTER) {
1274 addr = *(void **)addr;
1275 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001276 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001277 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001278 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001279 ret = field->info->get(f, addr, size);
Juan Quintelaec245e22009-08-20 19:42:29 +02001280
1281 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001282 if (ret < 0) {
1283 return ret;
1284 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001285 }
1286 }
1287 field++;
1288 }
Juan Quintela811814b2010-07-26 21:38:43 +02001289 ret = vmstate_subsection_load(f, vmsd, opaque);
1290 if (ret != 0) {
1291 return ret;
1292 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001293 if (vmsd->post_load) {
Juan Quintelae59fb372009-09-29 22:48:21 +02001294 return vmsd->post_load(opaque, version_id);
Juan Quintela752ff2f2009-09-10 03:04:30 +02001295 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001296 return 0;
1297}
1298
1299void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001300 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001301{
1302 VMStateField *field = vmsd->fields;
1303
Juan Quintela8fb07912009-09-10 03:04:32 +02001304 if (vmsd->pre_save) {
1305 vmsd->pre_save(opaque);
1306 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001307 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001308 if (!field->field_exists ||
1309 field->field_exists(opaque, vmsd->version_id)) {
1310 void *base_addr = opaque + field->offset;
1311 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001312 int size = field->size;
Juan Quinteladde04632009-08-20 19:42:26 +02001313
Juan Quintelae61a1e02009-12-02 12:36:38 +01001314 if (field->flags & VMS_VBUFFER) {
1315 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001316 if (field->flags & VMS_MULTIPLY) {
1317 size *= field->size;
1318 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001319 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001320 if (field->flags & VMS_ARRAY) {
1321 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001322 } else if (field->flags & VMS_VARRAY_INT32) {
1323 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001324 } else if (field->flags & VMS_VARRAY_UINT16) {
1325 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001326 }
1327 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001328 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001329 }
1330 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001331 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001332
Juan Quintela85953872009-12-02 12:36:37 +01001333 if (field->flags & VMS_ARRAY_OF_POINTER) {
1334 addr = *(void **)addr;
1335 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001336 if (field->flags & VMS_STRUCT) {
1337 vmstate_save_state(f, field->vmsd, addr);
1338 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001339 field->info->put(f, addr, size);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001340 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001341 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001342 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001343 field++;
1344 }
Juan Quintela811814b2010-07-26 21:38:43 +02001345 vmstate_subsection_save(f, vmsd, opaque);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001346}
1347
Juan Quintela4082be42009-08-20 19:42:24 +02001348static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1349{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001350 if (!se->vmsd) { /* Old style */
1351 return se->load_state(f, se->opaque, version_id);
1352 }
1353 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001354}
1355
1356static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
1357{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001358 if (!se->vmsd) { /* Old style */
1359 se->save_state(f, se->opaque);
1360 return;
1361 }
1362 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +02001363}
1364
aliguoria672b462008-11-11 21:33:36 +00001365#define QEMU_VM_FILE_MAGIC 0x5145564d
1366#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1367#define QEMU_VM_FILE_VERSION 0x00000003
1368
1369#define QEMU_VM_EOF 0x00
1370#define QEMU_VM_SECTION_START 0x01
1371#define QEMU_VM_SECTION_PART 0x02
1372#define QEMU_VM_SECTION_END 0x03
1373#define QEMU_VM_SECTION_FULL 0x04
Juan Quintela811814b2010-07-26 21:38:43 +02001374#define QEMU_VM_SUBSECTION 0x05
aliguoria672b462008-11-11 21:33:36 +00001375
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001376int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
1377 int shared)
aliguoria672b462008-11-11 21:33:36 +00001378{
1379 SaveStateEntry *se;
1380
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001381 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1382 if(se->set_params == NULL) {
1383 continue;
1384 }
1385 se->set_params(blk_enable, shared, se->opaque);
1386 }
1387
aliguoria672b462008-11-11 21:33:36 +00001388 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1389 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1390
Blue Swirl72cf2d42009-09-12 07:36:22 +00001391 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001392 int len;
1393
1394 if (se->save_live_state == NULL)
1395 continue;
1396
1397 /* Section type */
1398 qemu_put_byte(f, QEMU_VM_SECTION_START);
1399 qemu_put_be32(f, se->section_id);
1400
1401 /* ID string */
1402 len = strlen(se->idstr);
1403 qemu_put_byte(f, len);
1404 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1405
1406 qemu_put_be32(f, se->instance_id);
1407 qemu_put_be32(f, se->version_id);
1408
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001409 se->save_live_state(mon, f, QEMU_VM_SECTION_START, se->opaque);
aliguoria672b462008-11-11 21:33:36 +00001410 }
1411
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001412 if (qemu_file_has_error(f)) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001413 qemu_savevm_state_cancel(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001414 return -EIO;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001415 }
aliguoria672b462008-11-11 21:33:36 +00001416
1417 return 0;
1418}
1419
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001420int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001421{
1422 SaveStateEntry *se;
1423 int ret = 1;
1424
Blue Swirl72cf2d42009-09-12 07:36:22 +00001425 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001426 if (se->save_live_state == NULL)
1427 continue;
1428
1429 /* Section type */
1430 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1431 qemu_put_be32(f, se->section_id);
1432
Jan Kiszka90697be2009-12-01 15:19:55 +01001433 ret = se->save_live_state(mon, f, QEMU_VM_SECTION_PART, se->opaque);
1434 if (!ret) {
1435 /* Do not proceed to the next vmstate before this one reported
1436 completion of the current stage. This serializes the migration
1437 and reduces the probability that a faster changing state is
1438 synchronized over and over again. */
1439 break;
1440 }
aliguoria672b462008-11-11 21:33:36 +00001441 }
1442
1443 if (ret)
1444 return 1;
1445
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001446 if (qemu_file_has_error(f)) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001447 qemu_savevm_state_cancel(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001448 return -EIO;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001449 }
aliguoria672b462008-11-11 21:33:36 +00001450
1451 return 0;
1452}
1453
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001454int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001455{
1456 SaveStateEntry *se;
1457
Jan Kiszkaea375f92010-03-01 19:10:30 +01001458 cpu_synchronize_all_states();
1459
Blue Swirl72cf2d42009-09-12 07:36:22 +00001460 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001461 if (se->save_live_state == NULL)
1462 continue;
1463
1464 /* Section type */
1465 qemu_put_byte(f, QEMU_VM_SECTION_END);
1466 qemu_put_be32(f, se->section_id);
1467
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001468 se->save_live_state(mon, f, QEMU_VM_SECTION_END, se->opaque);
aliguoria672b462008-11-11 21:33:36 +00001469 }
1470
Blue Swirl72cf2d42009-09-12 07:36:22 +00001471 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001472 int len;
1473
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001474 if (se->save_state == NULL && se->vmsd == NULL)
aliguoria672b462008-11-11 21:33:36 +00001475 continue;
1476
1477 /* Section type */
1478 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1479 qemu_put_be32(f, se->section_id);
1480
1481 /* ID string */
1482 len = strlen(se->idstr);
1483 qemu_put_byte(f, len);
1484 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1485
1486 qemu_put_be32(f, se->instance_id);
1487 qemu_put_be32(f, se->version_id);
1488
Juan Quintela4082be42009-08-20 19:42:24 +02001489 vmstate_save(f, se);
aliguoria672b462008-11-11 21:33:36 +00001490 }
1491
1492 qemu_put_byte(f, QEMU_VM_EOF);
1493
1494 if (qemu_file_has_error(f))
1495 return -EIO;
1496
1497 return 0;
1498}
1499
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001500void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001501{
1502 SaveStateEntry *se;
1503
1504 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1505 if (se->save_live_state) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001506 se->save_live_state(mon, f, -1, se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001507 }
1508 }
1509}
1510
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001511static int qemu_savevm_state(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001512{
1513 int saved_vm_running;
1514 int ret;
1515
1516 saved_vm_running = vm_running;
1517 vm_stop(0);
1518
1519 bdrv_flush_all();
1520
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001521 ret = qemu_savevm_state_begin(mon, f, 0, 0);
aliguoria672b462008-11-11 21:33:36 +00001522 if (ret < 0)
1523 goto out;
1524
1525 do {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001526 ret = qemu_savevm_state_iterate(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001527 if (ret < 0)
1528 goto out;
1529 } while (ret == 0);
1530
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001531 ret = qemu_savevm_state_complete(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001532
1533out:
1534 if (qemu_file_has_error(f))
1535 ret = -EIO;
1536
1537 if (!ret && saved_vm_running)
1538 vm_start();
1539
1540 return ret;
1541}
1542
1543static SaveStateEntry *find_se(const char *idstr, int instance_id)
1544{
1545 SaveStateEntry *se;
1546
Blue Swirl72cf2d42009-09-12 07:36:22 +00001547 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001548 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001549 (instance_id == se->instance_id ||
1550 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +00001551 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001552 /* Migrating from an older version? */
1553 if (strstr(se->idstr, idstr) && se->compat) {
1554 if (!strcmp(se->compat->idstr, idstr) &&
1555 (instance_id == se->compat->instance_id ||
1556 instance_id == se->alias_id))
1557 return se;
1558 }
aliguoria672b462008-11-11 21:33:36 +00001559 }
1560 return NULL;
1561}
1562
Juan Quintela811814b2010-07-26 21:38:43 +02001563static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1564{
1565 while(sub && sub->needed) {
1566 if (strcmp(idstr, sub->vmsd->name) == 0) {
1567 return sub->vmsd;
1568 }
1569 sub++;
1570 }
1571 return NULL;
1572}
1573
1574static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1575 void *opaque)
1576{
1577 while (qemu_peek_byte(f) == QEMU_VM_SUBSECTION) {
1578 char idstr[256];
1579 int ret;
1580 uint8_t version_id, subsection, len;
1581 const VMStateDescription *sub_vmsd;
1582
1583 subsection = qemu_get_byte(f);
1584 len = qemu_get_byte(f);
1585 qemu_get_buffer(f, (uint8_t *)idstr, len);
1586 idstr[len] = 0;
1587 version_id = qemu_get_be32(f);
1588
1589 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
1590 if (sub_vmsd == NULL) {
1591 return -ENOENT;
1592 }
1593 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1594 if (ret) {
1595 return ret;
1596 }
1597 }
1598 return 0;
1599}
1600
1601static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1602 void *opaque)
1603{
1604 const VMStateSubsection *sub = vmsd->subsections;
1605
1606 while (sub && sub->needed) {
1607 if (sub->needed(opaque)) {
1608 const VMStateDescription *vmsd = sub->vmsd;
1609 uint8_t len;
1610
1611 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1612 len = strlen(vmsd->name);
1613 qemu_put_byte(f, len);
1614 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1615 qemu_put_be32(f, vmsd->version_id);
1616 vmstate_save_state(f, vmsd, opaque);
1617 }
1618 sub++;
1619 }
1620}
1621
aliguoria672b462008-11-11 21:33:36 +00001622typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001623 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001624 SaveStateEntry *se;
1625 int section_id;
1626 int version_id;
aliguoria672b462008-11-11 21:33:36 +00001627} LoadStateEntry;
1628
aliguoria672b462008-11-11 21:33:36 +00001629int qemu_loadvm_state(QEMUFile *f)
1630{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001631 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1632 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001633 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00001634 uint8_t section_type;
1635 unsigned int v;
1636 int ret;
1637
1638 v = qemu_get_be32(f);
1639 if (v != QEMU_VM_FILE_MAGIC)
1640 return -EINVAL;
1641
1642 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02001643 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1644 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1645 return -ENOTSUP;
1646 }
aliguoria672b462008-11-11 21:33:36 +00001647 if (v != QEMU_VM_FILE_VERSION)
1648 return -ENOTSUP;
1649
1650 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1651 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00001652 SaveStateEntry *se;
1653 char idstr[257];
1654 int len;
1655
1656 switch (section_type) {
1657 case QEMU_VM_SECTION_START:
1658 case QEMU_VM_SECTION_FULL:
1659 /* Read section start */
1660 section_id = qemu_get_be32(f);
1661 len = qemu_get_byte(f);
1662 qemu_get_buffer(f, (uint8_t *)idstr, len);
1663 idstr[len] = 0;
1664 instance_id = qemu_get_be32(f);
1665 version_id = qemu_get_be32(f);
1666
1667 /* Find savevm section */
1668 se = find_se(idstr, instance_id);
1669 if (se == NULL) {
1670 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1671 ret = -EINVAL;
1672 goto out;
1673 }
1674
1675 /* Validate version */
1676 if (version_id > se->version_id) {
1677 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1678 version_id, idstr, se->version_id);
1679 ret = -EINVAL;
1680 goto out;
1681 }
1682
1683 /* Add entry */
1684 le = qemu_mallocz(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001685
1686 le->se = se;
1687 le->section_id = section_id;
1688 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001689 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00001690
Juan Quintela4082be42009-08-20 19:42:24 +02001691 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001692 if (ret < 0) {
1693 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1694 instance_id, idstr);
1695 goto out;
1696 }
aliguoria672b462008-11-11 21:33:36 +00001697 break;
1698 case QEMU_VM_SECTION_PART:
1699 case QEMU_VM_SECTION_END:
1700 section_id = qemu_get_be32(f);
1701
Blue Swirl72cf2d42009-09-12 07:36:22 +00001702 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001703 if (le->section_id == section_id) {
1704 break;
1705 }
1706 }
aliguoria672b462008-11-11 21:33:36 +00001707 if (le == NULL) {
1708 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1709 ret = -EINVAL;
1710 goto out;
1711 }
1712
Juan Quintela4082be42009-08-20 19:42:24 +02001713 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001714 if (ret < 0) {
1715 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1716 section_id);
1717 goto out;
1718 }
aliguoria672b462008-11-11 21:33:36 +00001719 break;
1720 default:
1721 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1722 ret = -EINVAL;
1723 goto out;
1724 }
1725 }
1726
Jan Kiszkaea375f92010-03-01 19:10:30 +01001727 cpu_synchronize_all_post_init();
1728
aliguoria672b462008-11-11 21:33:36 +00001729 ret = 0;
1730
1731out:
Blue Swirl72cf2d42009-09-12 07:36:22 +00001732 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1733 QLIST_REMOVE(le, entry);
aliguoria672b462008-11-11 21:33:36 +00001734 qemu_free(le);
1735 }
1736
1737 if (qemu_file_has_error(f))
1738 ret = -EIO;
1739
1740 return ret;
1741}
1742
aliguoria672b462008-11-11 21:33:36 +00001743static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1744 const char *name)
1745{
1746 QEMUSnapshotInfo *sn_tab, *sn;
1747 int nb_sns, i, ret;
1748
1749 ret = -ENOENT;
1750 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1751 if (nb_sns < 0)
1752 return ret;
1753 for(i = 0; i < nb_sns; i++) {
1754 sn = &sn_tab[i];
1755 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1756 *sn_info = *sn;
1757 ret = 0;
1758 break;
1759 }
1760 }
1761 qemu_free(sn_tab);
1762 return ret;
1763}
1764
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001765/*
1766 * Deletes snapshots of a given name in all opened images.
1767 */
1768static int del_existing_snapshots(Monitor *mon, const char *name)
1769{
1770 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001771 QEMUSnapshotInfo sn1, *snapshot = &sn1;
1772 int ret;
1773
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001774 bs = NULL;
1775 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001776 if (bdrv_can_snapshot(bs) &&
1777 bdrv_snapshot_find(bs, snapshot, name) >= 0)
1778 {
1779 ret = bdrv_snapshot_delete(bs, name);
1780 if (ret < 0) {
1781 monitor_printf(mon,
1782 "Error while deleting snapshot on '%s'\n",
1783 bdrv_get_device_name(bs));
1784 return -1;
1785 }
1786 }
1787 }
1788
1789 return 0;
1790}
1791
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001792void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001793{
1794 BlockDriverState *bs, *bs1;
1795 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001796 int ret;
aliguoria672b462008-11-11 21:33:36 +00001797 QEMUFile *f;
1798 int saved_vm_running;
aliguori2d22b182008-12-11 21:06:49 +00001799 uint32_t vm_state_size;
aliguoria672b462008-11-11 21:33:36 +00001800#ifdef _WIN32
1801 struct _timeb tb;
1802#else
1803 struct timeval tv;
1804#endif
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001805 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001806
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001807 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001808 bs = NULL;
1809 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001810
1811 if (bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1812 continue;
1813 }
1814
1815 if (!bdrv_can_snapshot(bs)) {
1816 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
1817 bdrv_get_device_name(bs));
1818 return;
1819 }
1820 }
1821
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001822 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00001823 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001824 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001825 return;
1826 }
aliguoria672b462008-11-11 21:33:36 +00001827 /* ??? Should this occur after vm_stop? */
1828 qemu_aio_flush();
1829
1830 saved_vm_running = vm_running;
1831 vm_stop(0);
1832
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001833 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +00001834 if (name) {
1835 ret = bdrv_snapshot_find(bs, old_sn, name);
1836 if (ret >= 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001837 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1838 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1839 } else {
aliguoria672b462008-11-11 21:33:36 +00001840 pstrcpy(sn->name, sizeof(sn->name), name);
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001841 }
aliguoria672b462008-11-11 21:33:36 +00001842 }
1843
1844 /* fill auxiliary fields */
1845#ifdef _WIN32
1846 _ftime(&tb);
1847 sn->date_sec = tb.time;
1848 sn->date_nsec = tb.millitm * 1000000;
1849#else
1850 gettimeofday(&tv, NULL);
1851 sn->date_sec = tv.tv_sec;
1852 sn->date_nsec = tv.tv_usec * 1000;
1853#endif
1854 sn->vm_clock_nsec = qemu_get_clock(vm_clock);
1855
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001856 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -02001857 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001858 goto the_end;
1859 }
1860
aliguoria672b462008-11-11 21:33:36 +00001861 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001862 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00001863 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001864 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00001865 goto the_end;
1866 }
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001867 ret = qemu_savevm_state(mon, f);
aliguori2d22b182008-12-11 21:06:49 +00001868 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00001869 qemu_fclose(f);
1870 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001871 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00001872 goto the_end;
1873 }
1874
1875 /* create the snapshots */
1876
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001877 bs1 = NULL;
1878 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001879 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +00001880 /* Write VM state size only to the image that contains the state */
1881 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00001882 ret = bdrv_snapshot_create(bs1, sn);
1883 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001884 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1885 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001886 }
1887 }
1888 }
1889
1890 the_end:
1891 if (saved_vm_running)
1892 vm_start();
1893}
1894
Markus Armbruster03cd4652010-02-17 16:24:10 +01001895int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00001896{
1897 BlockDriverState *bs, *bs1;
aliguori2d22b182008-12-11 21:06:49 +00001898 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00001899 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001900 int ret;
aliguoria672b462008-11-11 21:33:36 +00001901
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001902 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001903 bs = NULL;
1904 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001905
1906 if (bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1907 continue;
1908 }
1909
1910 if (!bdrv_can_snapshot(bs)) {
1911 error_report("Device '%s' is writable but does not support snapshots.",
1912 bdrv_get_device_name(bs));
1913 return -ENOTSUP;
1914 }
1915 }
1916
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001917 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00001918 if (!bs) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001919 error_report("No block device supports snapshots");
Juan Quintela05f24012009-08-20 19:42:22 +02001920 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001921 }
1922
1923 /* Flush all IO requests so they don't interfere with the new state. */
1924 qemu_aio_flush();
1925
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001926 bs1 = NULL;
1927 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001928 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00001929 ret = bdrv_snapshot_goto(bs1, name);
1930 if (ret < 0) {
aliguoria672b462008-11-11 21:33:36 +00001931 switch(ret) {
1932 case -ENOTSUP:
Markus Armbruster1ecda022010-02-18 17:25:24 +01001933 error_report("%sSnapshots not supported on device '%s'",
1934 bs != bs1 ? "Warning: " : "",
1935 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001936 break;
1937 case -ENOENT:
Markus Armbruster1ecda022010-02-18 17:25:24 +01001938 error_report("%sCould not find snapshot '%s' on device '%s'",
1939 bs != bs1 ? "Warning: " : "",
1940 name, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001941 break;
1942 default:
Markus Armbruster1ecda022010-02-18 17:25:24 +01001943 error_report("%sError %d while activating snapshot on '%s'",
1944 bs != bs1 ? "Warning: " : "",
1945 ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001946 break;
1947 }
1948 /* fatal on snapshot block device */
1949 if (bs == bs1)
Juan Quintela05f24012009-08-20 19:42:22 +02001950 return 0;
aliguoria672b462008-11-11 21:33:36 +00001951 }
1952 }
1953 }
1954
aliguori2d22b182008-12-11 21:06:49 +00001955 /* Don't even try to load empty VM states */
1956 ret = bdrv_snapshot_find(bs, &sn, name);
1957 if ((ret >= 0) && (sn.vm_state_size == 0))
Juan Quintela05f24012009-08-20 19:42:22 +02001958 return -EINVAL;
aliguori2d22b182008-12-11 21:06:49 +00001959
aliguoria672b462008-11-11 21:33:36 +00001960 /* restore the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001961 f = qemu_fopen_bdrv(bs, 0);
aliguoria672b462008-11-11 21:33:36 +00001962 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001963 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02001964 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001965 }
1966 ret = qemu_loadvm_state(f);
1967 qemu_fclose(f);
1968 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001969 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02001970 return ret;
aliguoria672b462008-11-11 21:33:36 +00001971 }
Juan Quintela05f24012009-08-20 19:42:22 +02001972 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02001973}
1974
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001975void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001976{
1977 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001978 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001979 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001980
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001981 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00001982 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001983 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001984 return;
1985 }
1986
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001987 bs1 = NULL;
1988 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001989 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00001990 ret = bdrv_snapshot_delete(bs1, name);
1991 if (ret < 0) {
1992 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00001993 monitor_printf(mon,
1994 "Snapshots not supported on device '%s'\n",
1995 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001996 else
aliguori376253e2009-03-05 23:01:23 +00001997 monitor_printf(mon, "Error %d while deleting snapshot on "
1998 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001999 }
2000 }
2001 }
2002}
2003
aliguori376253e2009-03-05 23:01:23 +00002004void do_info_snapshots(Monitor *mon)
aliguoria672b462008-11-11 21:33:36 +00002005{
2006 BlockDriverState *bs, *bs1;
2007 QEMUSnapshotInfo *sn_tab, *sn;
2008 int nb_sns, i;
2009 char buf[256];
2010
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002011 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002012 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002013 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002014 return;
2015 }
aliguori376253e2009-03-05 23:01:23 +00002016 monitor_printf(mon, "Snapshot devices:");
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002017 bs1 = NULL;
2018 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002019 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00002020 if (bs == bs1)
aliguori376253e2009-03-05 23:01:23 +00002021 monitor_printf(mon, " %s", bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002022 }
2023 }
aliguori376253e2009-03-05 23:01:23 +00002024 monitor_printf(mon, "\n");
aliguoria672b462008-11-11 21:33:36 +00002025
2026 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2027 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00002028 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00002029 return;
2030 }
aliguori376253e2009-03-05 23:01:23 +00002031 monitor_printf(mon, "Snapshot list (from %s):\n",
2032 bdrv_get_device_name(bs));
2033 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
aliguoria672b462008-11-11 21:33:36 +00002034 for(i = 0; i < nb_sns; i++) {
2035 sn = &sn_tab[i];
aliguori376253e2009-03-05 23:01:23 +00002036 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
aliguoria672b462008-11-11 21:33:36 +00002037 }
2038 qemu_free(sn_tab);
2039}