blob: 6fa7a5fe8e41ae1039754287c059ddb66d06c3f2 [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;
Cam Macdonell24312962010-07-26 18:11:00 -06001021 int no_migrate;
aliguoria672b462008-11-11 21:33:36 +00001022} SaveStateEntry;
1023
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001024
Blue Swirl72cf2d42009-09-12 07:36:22 +00001025static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1026 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001027static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +00001028
Juan Quintela8718e992009-09-01 02:12:31 +02001029static int calculate_new_instance_id(const char *idstr)
1030{
1031 SaveStateEntry *se;
1032 int instance_id = 0;
1033
Blue Swirl72cf2d42009-09-12 07:36:22 +00001034 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +02001035 if (strcmp(idstr, se->idstr) == 0
1036 && instance_id <= se->instance_id) {
1037 instance_id = se->instance_id + 1;
1038 }
1039 }
1040 return instance_id;
1041}
1042
Alex Williamson7685ee62010-06-25 11:09:14 -06001043static int calculate_compat_instance_id(const char *idstr)
1044{
1045 SaveStateEntry *se;
1046 int instance_id = 0;
1047
1048 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1049 if (!se->compat)
1050 continue;
1051
1052 if (strcmp(idstr, se->compat->idstr) == 0
1053 && instance_id <= se->compat->instance_id) {
1054 instance_id = se->compat->instance_id + 1;
1055 }
1056 }
1057 return instance_id;
1058}
1059
aliguoria672b462008-11-11 21:33:36 +00001060/* TODO: Individual devices generally have very little idea about the rest
1061 of the system, so instance_id should be removed/replaced.
1062 Meanwhile pass -1 as instance_id if you do not already have a clearly
1063 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -06001064int register_savevm_live(DeviceState *dev,
1065 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001066 int instance_id,
1067 int version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001068 SaveSetParamsHandler *set_params,
aliguoria672b462008-11-11 21:33:36 +00001069 SaveLiveStateHandler *save_live_state,
1070 SaveStateHandler *save_state,
1071 LoadStateHandler *load_state,
1072 void *opaque)
1073{
Juan Quintela8718e992009-09-01 02:12:31 +02001074 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +00001075
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001076 se = qemu_mallocz(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +00001077 se->version_id = version_id;
1078 se->section_id = global_section_id++;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001079 se->set_params = set_params;
aliguoria672b462008-11-11 21:33:36 +00001080 se->save_live_state = save_live_state;
1081 se->save_state = save_state;
1082 se->load_state = load_state;
1083 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001084 se->vmsd = NULL;
Cam Macdonell24312962010-07-26 18:11:00 -06001085 se->no_migrate = 0;
aliguoria672b462008-11-11 21:33:36 +00001086
Alex Williamson7685ee62010-06-25 11:09:14 -06001087 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1088 char *id = dev->parent_bus->info->get_dev_path(dev);
1089 if (id) {
1090 pstrcpy(se->idstr, sizeof(se->idstr), id);
1091 pstrcat(se->idstr, sizeof(se->idstr), "/");
1092 qemu_free(id);
1093
1094 se->compat = qemu_mallocz(sizeof(CompatEntry));
1095 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1096 se->compat->instance_id = instance_id == -1 ?
1097 calculate_compat_instance_id(idstr) : instance_id;
1098 instance_id = -1;
1099 }
1100 }
1101 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1102
Juan Quintela8718e992009-09-01 02:12:31 +02001103 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001104 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001105 } else {
1106 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +00001107 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001108 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001109 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001110 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +00001111 return 0;
1112}
1113
Alex Williamson0be71e32010-06-25 11:09:07 -06001114int register_savevm(DeviceState *dev,
1115 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001116 int instance_id,
1117 int version_id,
1118 SaveStateHandler *save_state,
1119 LoadStateHandler *load_state,
1120 void *opaque)
1121{
Alex Williamson0be71e32010-06-25 11:09:07 -06001122 return register_savevm_live(dev, idstr, instance_id, version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001123 NULL, NULL, save_state, load_state, opaque);
aliguoria672b462008-11-11 21:33:36 +00001124}
1125
Alex Williamson0be71e32010-06-25 11:09:07 -06001126void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +00001127{
Juan Quintela8718e992009-09-01 02:12:31 +02001128 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001129 char id[256] = "";
1130
1131 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1132 char *path = dev->parent_bus->info->get_dev_path(dev);
1133 if (path) {
1134 pstrcpy(id, sizeof(id), path);
1135 pstrcat(id, sizeof(id), "/");
1136 qemu_free(path);
1137 }
1138 }
1139 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +00001140
Blue Swirl72cf2d42009-09-12 07:36:22 +00001141 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001142 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001143 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001144 if (se->compat) {
1145 qemu_free(se->compat);
1146 }
Juan Quintela8718e992009-09-01 02:12:31 +02001147 qemu_free(se);
aliguori41bd13a2009-04-17 17:10:59 +00001148 }
aliguori41bd13a2009-04-17 17:10:59 +00001149 }
1150}
1151
Cam Macdonell24312962010-07-26 18:11:00 -06001152/* mark a device as not to be migrated, that is the device should be
1153 unplugged before migration */
1154void register_device_unmigratable(DeviceState *dev, const char *idstr,
1155 void *opaque)
1156{
1157 SaveStateEntry *se;
1158 char id[256] = "";
1159
1160 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1161 char *path = dev->parent_bus->info->get_dev_path(dev);
1162 if (path) {
1163 pstrcpy(id, sizeof(id), path);
1164 pstrcat(id, sizeof(id), "/");
1165 qemu_free(path);
1166 }
1167 }
1168 pstrcat(id, sizeof(id), idstr);
1169
1170 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1171 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
1172 se->no_migrate = 1;
1173 }
1174 }
1175}
1176
Alex Williamson0be71e32010-06-25 11:09:07 -06001177int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001178 const VMStateDescription *vmsd,
1179 void *opaque, int alias_id,
1180 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001181{
Juan Quintela8718e992009-09-01 02:12:31 +02001182 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001183
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001184 /* If this triggers, alias support can be dropped for the vmsd. */
1185 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1186
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001187 se = qemu_mallocz(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001188 se->version_id = vmsd->version_id;
1189 se->section_id = global_section_id++;
1190 se->save_live_state = NULL;
1191 se->save_state = NULL;
1192 se->load_state = NULL;
1193 se->opaque = opaque;
1194 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001195 se->alias_id = alias_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001196
Alex Williamson7685ee62010-06-25 11:09:14 -06001197 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1198 char *id = dev->parent_bus->info->get_dev_path(dev);
1199 if (id) {
1200 pstrcpy(se->idstr, sizeof(se->idstr), id);
1201 pstrcat(se->idstr, sizeof(se->idstr), "/");
1202 qemu_free(id);
1203
1204 se->compat = qemu_mallocz(sizeof(CompatEntry));
1205 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1206 se->compat->instance_id = instance_id == -1 ?
1207 calculate_compat_instance_id(vmsd->name) : instance_id;
1208 instance_id = -1;
1209 }
1210 }
1211 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1212
Juan Quintela8718e992009-09-01 02:12:31 +02001213 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001214 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001215 } else {
1216 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001217 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001218 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001219 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001220 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001221 return 0;
1222}
1223
Alex Williamson0be71e32010-06-25 11:09:07 -06001224int vmstate_register(DeviceState *dev, int instance_id,
1225 const VMStateDescription *vmsd, void *opaque)
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001226{
Alex Williamson0be71e32010-06-25 11:09:07 -06001227 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1228 opaque, -1, 0);
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001229}
1230
Alex Williamson0be71e32010-06-25 11:09:07 -06001231void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1232 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001233{
Juan Quintela1eb75382009-09-10 03:04:29 +02001234 SaveStateEntry *se, *new_se;
1235
Blue Swirl72cf2d42009-09-12 07:36:22 +00001236 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +02001237 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001238 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001239 if (se->compat) {
1240 qemu_free(se->compat);
1241 }
Juan Quintela1eb75382009-09-10 03:04:29 +02001242 qemu_free(se);
1243 }
1244 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001245}
1246
Juan Quintela811814b2010-07-26 21:38:43 +02001247static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1248 void *opaque);
1249static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1250 void *opaque);
1251
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001252int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1253 void *opaque, int version_id)
1254{
1255 VMStateField *field = vmsd->fields;
Juan Quintela811814b2010-07-26 21:38:43 +02001256 int ret;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001257
1258 if (version_id > vmsd->version_id) {
1259 return -EINVAL;
1260 }
1261 if (version_id < vmsd->minimum_version_id_old) {
1262 return -EINVAL;
1263 }
1264 if (version_id < vmsd->minimum_version_id) {
1265 return vmsd->load_state_old(f, opaque, version_id);
1266 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001267 if (vmsd->pre_load) {
1268 int ret = vmsd->pre_load(opaque);
1269 if (ret)
1270 return ret;
1271 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001272 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001273 if ((field->field_exists &&
1274 field->field_exists(opaque, version_id)) ||
1275 (!field->field_exists &&
1276 field->version_id <= version_id)) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001277 void *base_addr = opaque + field->offset;
Juan Quintela811814b2010-07-26 21:38:43 +02001278 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001279 int size = field->size;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001280
Juan Quintelae61a1e02009-12-02 12:36:38 +01001281 if (field->flags & VMS_VBUFFER) {
1282 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001283 if (field->flags & VMS_MULTIPLY) {
1284 size *= field->size;
1285 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001286 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001287 if (field->flags & VMS_ARRAY) {
1288 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001289 } else if (field->flags & VMS_VARRAY_INT32) {
1290 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001291 } else if (field->flags & VMS_VARRAY_UINT16) {
1292 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001293 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001294 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001295 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001296 }
1297 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001298 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001299
Juan Quintela19df4382009-09-29 22:48:41 +02001300 if (field->flags & VMS_ARRAY_OF_POINTER) {
1301 addr = *(void **)addr;
1302 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001303 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001304 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001305 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001306 ret = field->info->get(f, addr, size);
Juan Quintelaec245e22009-08-20 19:42:29 +02001307
1308 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001309 if (ret < 0) {
1310 return ret;
1311 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001312 }
1313 }
1314 field++;
1315 }
Juan Quintela811814b2010-07-26 21:38:43 +02001316 ret = vmstate_subsection_load(f, vmsd, opaque);
1317 if (ret != 0) {
1318 return ret;
1319 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001320 if (vmsd->post_load) {
Juan Quintelae59fb372009-09-29 22:48:21 +02001321 return vmsd->post_load(opaque, version_id);
Juan Quintela752ff2f2009-09-10 03:04:30 +02001322 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001323 return 0;
1324}
1325
1326void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001327 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001328{
1329 VMStateField *field = vmsd->fields;
1330
Juan Quintela8fb07912009-09-10 03:04:32 +02001331 if (vmsd->pre_save) {
1332 vmsd->pre_save(opaque);
1333 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001334 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001335 if (!field->field_exists ||
1336 field->field_exists(opaque, vmsd->version_id)) {
1337 void *base_addr = opaque + field->offset;
1338 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001339 int size = field->size;
Juan Quinteladde04632009-08-20 19:42:26 +02001340
Juan Quintelae61a1e02009-12-02 12:36:38 +01001341 if (field->flags & VMS_VBUFFER) {
1342 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001343 if (field->flags & VMS_MULTIPLY) {
1344 size *= field->size;
1345 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001346 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001347 if (field->flags & VMS_ARRAY) {
1348 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001349 } else if (field->flags & VMS_VARRAY_INT32) {
1350 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001351 } else if (field->flags & VMS_VARRAY_UINT16) {
1352 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001353 }
1354 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001355 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001356 }
1357 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001358 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001359
Juan Quintela85953872009-12-02 12:36:37 +01001360 if (field->flags & VMS_ARRAY_OF_POINTER) {
1361 addr = *(void **)addr;
1362 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001363 if (field->flags & VMS_STRUCT) {
1364 vmstate_save_state(f, field->vmsd, addr);
1365 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001366 field->info->put(f, addr, size);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001367 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001368 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001369 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001370 field++;
1371 }
Juan Quintela811814b2010-07-26 21:38:43 +02001372 vmstate_subsection_save(f, vmsd, opaque);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001373}
1374
Juan Quintela4082be42009-08-20 19:42:24 +02001375static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1376{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001377 if (!se->vmsd) { /* Old style */
1378 return se->load_state(f, se->opaque, version_id);
1379 }
1380 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001381}
1382
Cam Macdonell24312962010-07-26 18:11:00 -06001383static int vmstate_save(QEMUFile *f, SaveStateEntry *se)
Juan Quintela4082be42009-08-20 19:42:24 +02001384{
Cam Macdonell24312962010-07-26 18:11:00 -06001385 if (se->no_migrate) {
1386 return -1;
1387 }
1388
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001389 if (!se->vmsd) { /* Old style */
1390 se->save_state(f, se->opaque);
Cam Macdonell24312962010-07-26 18:11:00 -06001391 return 0;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001392 }
1393 vmstate_save_state(f,se->vmsd, se->opaque);
Cam Macdonell24312962010-07-26 18:11:00 -06001394
1395 return 0;
Juan Quintela4082be42009-08-20 19:42:24 +02001396}
1397
aliguoria672b462008-11-11 21:33:36 +00001398#define QEMU_VM_FILE_MAGIC 0x5145564d
1399#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1400#define QEMU_VM_FILE_VERSION 0x00000003
1401
1402#define QEMU_VM_EOF 0x00
1403#define QEMU_VM_SECTION_START 0x01
1404#define QEMU_VM_SECTION_PART 0x02
1405#define QEMU_VM_SECTION_END 0x03
1406#define QEMU_VM_SECTION_FULL 0x04
Juan Quintela811814b2010-07-26 21:38:43 +02001407#define QEMU_VM_SUBSECTION 0x05
aliguoria672b462008-11-11 21:33:36 +00001408
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001409int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
1410 int shared)
aliguoria672b462008-11-11 21:33:36 +00001411{
1412 SaveStateEntry *se;
1413
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001414 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1415 if(se->set_params == NULL) {
1416 continue;
1417 }
1418 se->set_params(blk_enable, shared, se->opaque);
1419 }
1420
aliguoria672b462008-11-11 21:33:36 +00001421 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1422 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1423
Blue Swirl72cf2d42009-09-12 07:36:22 +00001424 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001425 int len;
1426
1427 if (se->save_live_state == NULL)
1428 continue;
1429
1430 /* Section type */
1431 qemu_put_byte(f, QEMU_VM_SECTION_START);
1432 qemu_put_be32(f, se->section_id);
1433
1434 /* ID string */
1435 len = strlen(se->idstr);
1436 qemu_put_byte(f, len);
1437 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1438
1439 qemu_put_be32(f, se->instance_id);
1440 qemu_put_be32(f, se->version_id);
1441
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001442 se->save_live_state(mon, f, QEMU_VM_SECTION_START, se->opaque);
aliguoria672b462008-11-11 21:33:36 +00001443 }
1444
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001445 if (qemu_file_has_error(f)) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001446 qemu_savevm_state_cancel(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001447 return -EIO;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001448 }
aliguoria672b462008-11-11 21:33:36 +00001449
1450 return 0;
1451}
1452
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001453int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001454{
1455 SaveStateEntry *se;
1456 int ret = 1;
1457
Blue Swirl72cf2d42009-09-12 07:36:22 +00001458 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001459 if (se->save_live_state == NULL)
1460 continue;
1461
1462 /* Section type */
1463 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1464 qemu_put_be32(f, se->section_id);
1465
Jan Kiszka90697be2009-12-01 15:19:55 +01001466 ret = se->save_live_state(mon, f, QEMU_VM_SECTION_PART, se->opaque);
1467 if (!ret) {
1468 /* Do not proceed to the next vmstate before this one reported
1469 completion of the current stage. This serializes the migration
1470 and reduces the probability that a faster changing state is
1471 synchronized over and over again. */
1472 break;
1473 }
aliguoria672b462008-11-11 21:33:36 +00001474 }
1475
1476 if (ret)
1477 return 1;
1478
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001479 if (qemu_file_has_error(f)) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001480 qemu_savevm_state_cancel(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001481 return -EIO;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001482 }
aliguoria672b462008-11-11 21:33:36 +00001483
1484 return 0;
1485}
1486
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001487int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001488{
1489 SaveStateEntry *se;
Cam Macdonell24312962010-07-26 18:11:00 -06001490 int r;
aliguoria672b462008-11-11 21:33:36 +00001491
Jan Kiszkaea375f92010-03-01 19:10:30 +01001492 cpu_synchronize_all_states();
1493
Blue Swirl72cf2d42009-09-12 07:36:22 +00001494 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001495 if (se->save_live_state == NULL)
1496 continue;
1497
1498 /* Section type */
1499 qemu_put_byte(f, QEMU_VM_SECTION_END);
1500 qemu_put_be32(f, se->section_id);
1501
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001502 se->save_live_state(mon, f, QEMU_VM_SECTION_END, se->opaque);
aliguoria672b462008-11-11 21:33:36 +00001503 }
1504
Blue Swirl72cf2d42009-09-12 07:36:22 +00001505 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001506 int len;
1507
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001508 if (se->save_state == NULL && se->vmsd == NULL)
aliguoria672b462008-11-11 21:33:36 +00001509 continue;
1510
1511 /* Section type */
1512 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1513 qemu_put_be32(f, se->section_id);
1514
1515 /* ID string */
1516 len = strlen(se->idstr);
1517 qemu_put_byte(f, len);
1518 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1519
1520 qemu_put_be32(f, se->instance_id);
1521 qemu_put_be32(f, se->version_id);
1522
Cam Macdonell24312962010-07-26 18:11:00 -06001523 r = vmstate_save(f, se);
1524 if (r < 0) {
1525 monitor_printf(mon, "cannot migrate with device '%s'\n", se->idstr);
1526 return r;
1527 }
aliguoria672b462008-11-11 21:33:36 +00001528 }
1529
1530 qemu_put_byte(f, QEMU_VM_EOF);
1531
1532 if (qemu_file_has_error(f))
1533 return -EIO;
1534
1535 return 0;
1536}
1537
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001538void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001539{
1540 SaveStateEntry *se;
1541
1542 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1543 if (se->save_live_state) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001544 se->save_live_state(mon, f, -1, se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001545 }
1546 }
1547}
1548
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001549static int qemu_savevm_state(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001550{
1551 int saved_vm_running;
1552 int ret;
1553
1554 saved_vm_running = vm_running;
1555 vm_stop(0);
1556
1557 bdrv_flush_all();
1558
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001559 ret = qemu_savevm_state_begin(mon, f, 0, 0);
aliguoria672b462008-11-11 21:33:36 +00001560 if (ret < 0)
1561 goto out;
1562
1563 do {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001564 ret = qemu_savevm_state_iterate(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001565 if (ret < 0)
1566 goto out;
1567 } while (ret == 0);
1568
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001569 ret = qemu_savevm_state_complete(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001570
1571out:
1572 if (qemu_file_has_error(f))
1573 ret = -EIO;
1574
1575 if (!ret && saved_vm_running)
1576 vm_start();
1577
1578 return ret;
1579}
1580
1581static SaveStateEntry *find_se(const char *idstr, int instance_id)
1582{
1583 SaveStateEntry *se;
1584
Blue Swirl72cf2d42009-09-12 07:36:22 +00001585 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001586 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001587 (instance_id == se->instance_id ||
1588 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +00001589 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001590 /* Migrating from an older version? */
1591 if (strstr(se->idstr, idstr) && se->compat) {
1592 if (!strcmp(se->compat->idstr, idstr) &&
1593 (instance_id == se->compat->instance_id ||
1594 instance_id == se->alias_id))
1595 return se;
1596 }
aliguoria672b462008-11-11 21:33:36 +00001597 }
1598 return NULL;
1599}
1600
Juan Quintela811814b2010-07-26 21:38:43 +02001601static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1602{
1603 while(sub && sub->needed) {
1604 if (strcmp(idstr, sub->vmsd->name) == 0) {
1605 return sub->vmsd;
1606 }
1607 sub++;
1608 }
1609 return NULL;
1610}
1611
1612static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1613 void *opaque)
1614{
1615 while (qemu_peek_byte(f) == QEMU_VM_SUBSECTION) {
1616 char idstr[256];
1617 int ret;
1618 uint8_t version_id, subsection, len;
1619 const VMStateDescription *sub_vmsd;
1620
1621 subsection = qemu_get_byte(f);
1622 len = qemu_get_byte(f);
1623 qemu_get_buffer(f, (uint8_t *)idstr, len);
1624 idstr[len] = 0;
1625 version_id = qemu_get_be32(f);
1626
1627 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
1628 if (sub_vmsd == NULL) {
1629 return -ENOENT;
1630 }
1631 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1632 if (ret) {
1633 return ret;
1634 }
1635 }
1636 return 0;
1637}
1638
1639static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1640 void *opaque)
1641{
1642 const VMStateSubsection *sub = vmsd->subsections;
1643
1644 while (sub && sub->needed) {
1645 if (sub->needed(opaque)) {
1646 const VMStateDescription *vmsd = sub->vmsd;
1647 uint8_t len;
1648
1649 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1650 len = strlen(vmsd->name);
1651 qemu_put_byte(f, len);
1652 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1653 qemu_put_be32(f, vmsd->version_id);
1654 vmstate_save_state(f, vmsd, opaque);
1655 }
1656 sub++;
1657 }
1658}
1659
aliguoria672b462008-11-11 21:33:36 +00001660typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001661 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001662 SaveStateEntry *se;
1663 int section_id;
1664 int version_id;
aliguoria672b462008-11-11 21:33:36 +00001665} LoadStateEntry;
1666
aliguoria672b462008-11-11 21:33:36 +00001667int qemu_loadvm_state(QEMUFile *f)
1668{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001669 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1670 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001671 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00001672 uint8_t section_type;
1673 unsigned int v;
1674 int ret;
1675
1676 v = qemu_get_be32(f);
1677 if (v != QEMU_VM_FILE_MAGIC)
1678 return -EINVAL;
1679
1680 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02001681 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1682 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1683 return -ENOTSUP;
1684 }
aliguoria672b462008-11-11 21:33:36 +00001685 if (v != QEMU_VM_FILE_VERSION)
1686 return -ENOTSUP;
1687
1688 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1689 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00001690 SaveStateEntry *se;
1691 char idstr[257];
1692 int len;
1693
1694 switch (section_type) {
1695 case QEMU_VM_SECTION_START:
1696 case QEMU_VM_SECTION_FULL:
1697 /* Read section start */
1698 section_id = qemu_get_be32(f);
1699 len = qemu_get_byte(f);
1700 qemu_get_buffer(f, (uint8_t *)idstr, len);
1701 idstr[len] = 0;
1702 instance_id = qemu_get_be32(f);
1703 version_id = qemu_get_be32(f);
1704
1705 /* Find savevm section */
1706 se = find_se(idstr, instance_id);
1707 if (se == NULL) {
1708 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1709 ret = -EINVAL;
1710 goto out;
1711 }
1712
1713 /* Validate version */
1714 if (version_id > se->version_id) {
1715 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1716 version_id, idstr, se->version_id);
1717 ret = -EINVAL;
1718 goto out;
1719 }
1720
1721 /* Add entry */
1722 le = qemu_mallocz(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001723
1724 le->se = se;
1725 le->section_id = section_id;
1726 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001727 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00001728
Juan Quintela4082be42009-08-20 19:42:24 +02001729 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001730 if (ret < 0) {
1731 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1732 instance_id, idstr);
1733 goto out;
1734 }
aliguoria672b462008-11-11 21:33:36 +00001735 break;
1736 case QEMU_VM_SECTION_PART:
1737 case QEMU_VM_SECTION_END:
1738 section_id = qemu_get_be32(f);
1739
Blue Swirl72cf2d42009-09-12 07:36:22 +00001740 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001741 if (le->section_id == section_id) {
1742 break;
1743 }
1744 }
aliguoria672b462008-11-11 21:33:36 +00001745 if (le == NULL) {
1746 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1747 ret = -EINVAL;
1748 goto out;
1749 }
1750
Juan Quintela4082be42009-08-20 19:42:24 +02001751 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001752 if (ret < 0) {
1753 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1754 section_id);
1755 goto out;
1756 }
aliguoria672b462008-11-11 21:33:36 +00001757 break;
1758 default:
1759 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1760 ret = -EINVAL;
1761 goto out;
1762 }
1763 }
1764
Jan Kiszkaea375f92010-03-01 19:10:30 +01001765 cpu_synchronize_all_post_init();
1766
aliguoria672b462008-11-11 21:33:36 +00001767 ret = 0;
1768
1769out:
Blue Swirl72cf2d42009-09-12 07:36:22 +00001770 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1771 QLIST_REMOVE(le, entry);
aliguoria672b462008-11-11 21:33:36 +00001772 qemu_free(le);
1773 }
1774
1775 if (qemu_file_has_error(f))
1776 ret = -EIO;
1777
1778 return ret;
1779}
1780
aliguoria672b462008-11-11 21:33:36 +00001781static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1782 const char *name)
1783{
1784 QEMUSnapshotInfo *sn_tab, *sn;
1785 int nb_sns, i, ret;
1786
1787 ret = -ENOENT;
1788 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1789 if (nb_sns < 0)
1790 return ret;
1791 for(i = 0; i < nb_sns; i++) {
1792 sn = &sn_tab[i];
1793 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1794 *sn_info = *sn;
1795 ret = 0;
1796 break;
1797 }
1798 }
1799 qemu_free(sn_tab);
1800 return ret;
1801}
1802
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001803/*
1804 * Deletes snapshots of a given name in all opened images.
1805 */
1806static int del_existing_snapshots(Monitor *mon, const char *name)
1807{
1808 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001809 QEMUSnapshotInfo sn1, *snapshot = &sn1;
1810 int ret;
1811
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001812 bs = NULL;
1813 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001814 if (bdrv_can_snapshot(bs) &&
1815 bdrv_snapshot_find(bs, snapshot, name) >= 0)
1816 {
1817 ret = bdrv_snapshot_delete(bs, name);
1818 if (ret < 0) {
1819 monitor_printf(mon,
1820 "Error while deleting snapshot on '%s'\n",
1821 bdrv_get_device_name(bs));
1822 return -1;
1823 }
1824 }
1825 }
1826
1827 return 0;
1828}
1829
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001830void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001831{
1832 BlockDriverState *bs, *bs1;
1833 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001834 int ret;
aliguoria672b462008-11-11 21:33:36 +00001835 QEMUFile *f;
1836 int saved_vm_running;
aliguori2d22b182008-12-11 21:06:49 +00001837 uint32_t vm_state_size;
aliguoria672b462008-11-11 21:33:36 +00001838#ifdef _WIN32
1839 struct _timeb tb;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03001840 struct tm *ptm;
aliguoria672b462008-11-11 21:33:36 +00001841#else
1842 struct timeval tv;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03001843 struct tm tm;
aliguoria672b462008-11-11 21:33:36 +00001844#endif
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001845 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001846
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001847 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001848 bs = NULL;
1849 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001850
1851 if (bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1852 continue;
1853 }
1854
1855 if (!bdrv_can_snapshot(bs)) {
1856 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
1857 bdrv_get_device_name(bs));
1858 return;
1859 }
1860 }
1861
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001862 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00001863 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001864 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001865 return;
1866 }
aliguoria672b462008-11-11 21:33:36 +00001867 /* ??? Should this occur after vm_stop? */
1868 qemu_aio_flush();
1869
1870 saved_vm_running = vm_running;
1871 vm_stop(0);
1872
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001873 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +00001874
1875 /* fill auxiliary fields */
1876#ifdef _WIN32
1877 _ftime(&tb);
1878 sn->date_sec = tb.time;
1879 sn->date_nsec = tb.millitm * 1000000;
1880#else
1881 gettimeofday(&tv, NULL);
1882 sn->date_sec = tv.tv_sec;
1883 sn->date_nsec = tv.tv_usec * 1000;
1884#endif
1885 sn->vm_clock_nsec = qemu_get_clock(vm_clock);
1886
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03001887 if (name) {
1888 ret = bdrv_snapshot_find(bs, old_sn, name);
1889 if (ret >= 0) {
1890 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1891 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1892 } else {
1893 pstrcpy(sn->name, sizeof(sn->name), name);
1894 }
1895 } else {
1896#ifdef _WIN32
1897 ptm = localtime(&tb.time);
1898 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
1899#else
Blue Swirld7d9b522010-09-09 19:13:04 +00001900 /* cast below needed for OpenBSD where tv_sec is still 'long' */
1901 localtime_r((const time_t *)&tv.tv_sec, &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03001902 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
1903#endif
1904 }
1905
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001906 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -02001907 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001908 goto the_end;
1909 }
1910
aliguoria672b462008-11-11 21:33:36 +00001911 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001912 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00001913 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001914 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00001915 goto the_end;
1916 }
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001917 ret = qemu_savevm_state(mon, f);
aliguori2d22b182008-12-11 21:06:49 +00001918 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00001919 qemu_fclose(f);
1920 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001921 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00001922 goto the_end;
1923 }
1924
1925 /* create the snapshots */
1926
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001927 bs1 = NULL;
1928 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001929 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +00001930 /* Write VM state size only to the image that contains the state */
1931 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00001932 ret = bdrv_snapshot_create(bs1, sn);
1933 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001934 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1935 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001936 }
1937 }
1938 }
1939
1940 the_end:
1941 if (saved_vm_running)
1942 vm_start();
1943}
1944
Markus Armbruster03cd4652010-02-17 16:24:10 +01001945int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00001946{
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001947 BlockDriverState *bs, *bs_vm_state;
aliguori2d22b182008-12-11 21:06:49 +00001948 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00001949 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001950 int ret;
aliguoria672b462008-11-11 21:33:36 +00001951
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001952 bs_vm_state = bdrv_snapshots();
1953 if (!bs_vm_state) {
1954 error_report("No block device supports snapshots");
1955 return -ENOTSUP;
1956 }
1957
1958 /* Don't even try to load empty VM states */
1959 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
1960 if (ret < 0) {
1961 return ret;
1962 } else if (sn.vm_state_size == 0) {
1963 return -EINVAL;
1964 }
1965
1966 /* Verify if there is any device that doesn't support snapshots and is
1967 writable and check if the requested snapshot is available too. */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001968 bs = NULL;
1969 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001970
1971 if (bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1972 continue;
1973 }
1974
1975 if (!bdrv_can_snapshot(bs)) {
1976 error_report("Device '%s' is writable but does not support snapshots.",
1977 bdrv_get_device_name(bs));
1978 return -ENOTSUP;
1979 }
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001980
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001981 ret = bdrv_snapshot_find(bs, &sn, name);
1982 if (ret < 0) {
1983 error_report("Device '%s' does not have the requested snapshot '%s'",
1984 bdrv_get_device_name(bs), name);
1985 return ret;
1986 }
aliguoria672b462008-11-11 21:33:36 +00001987 }
1988
1989 /* Flush all IO requests so they don't interfere with the new state. */
1990 qemu_aio_flush();
1991
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001992 bs = NULL;
1993 while ((bs = bdrv_next(bs))) {
1994 if (bdrv_can_snapshot(bs)) {
1995 ret = bdrv_snapshot_goto(bs, name);
aliguoria672b462008-11-11 21:33:36 +00001996 if (ret < 0) {
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001997 error_report("Error %d while activating snapshot '%s' on '%s'",
1998 ret, name, bdrv_get_device_name(bs));
1999 return ret;
aliguoria672b462008-11-11 21:33:36 +00002000 }
2001 }
2002 }
2003
aliguoria672b462008-11-11 21:33:36 +00002004 /* restore the VM state */
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002005 f = qemu_fopen_bdrv(bs_vm_state, 0);
aliguoria672b462008-11-11 21:33:36 +00002006 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002007 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02002008 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00002009 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002010
aliguoria672b462008-11-11 21:33:36 +00002011 ret = qemu_loadvm_state(f);
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002012
aliguoria672b462008-11-11 21:33:36 +00002013 qemu_fclose(f);
2014 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002015 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02002016 return ret;
aliguoria672b462008-11-11 21:33:36 +00002017 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002018
Juan Quintela05f24012009-08-20 19:42:22 +02002019 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02002020}
2021
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002022void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002023{
2024 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002025 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002026 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002027
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002028 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002029 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002030 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002031 return;
2032 }
2033
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002034 bs1 = NULL;
2035 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002036 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00002037 ret = bdrv_snapshot_delete(bs1, name);
2038 if (ret < 0) {
2039 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00002040 monitor_printf(mon,
2041 "Snapshots not supported on device '%s'\n",
2042 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002043 else
aliguori376253e2009-03-05 23:01:23 +00002044 monitor_printf(mon, "Error %d while deleting snapshot on "
2045 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002046 }
2047 }
2048 }
2049}
2050
aliguori376253e2009-03-05 23:01:23 +00002051void do_info_snapshots(Monitor *mon)
aliguoria672b462008-11-11 21:33:36 +00002052{
2053 BlockDriverState *bs, *bs1;
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002054 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2055 int nb_sns, i, ret, available;
2056 int total;
2057 int *available_snapshots;
aliguoria672b462008-11-11 21:33:36 +00002058 char buf[256];
2059
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002060 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002061 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002062 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002063 return;
2064 }
aliguoria672b462008-11-11 21:33:36 +00002065
2066 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2067 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00002068 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00002069 return;
2070 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002071
2072 if (nb_sns == 0) {
2073 monitor_printf(mon, "There is no snapshot available.\n");
2074 return;
aliguoria672b462008-11-11 21:33:36 +00002075 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002076
2077 available_snapshots = qemu_mallocz(sizeof(int) * nb_sns);
2078 total = 0;
2079 for (i = 0; i < nb_sns; i++) {
2080 sn = &sn_tab[i];
2081 available = 1;
2082 bs1 = NULL;
2083
2084 while ((bs1 = bdrv_next(bs1))) {
2085 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2086 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2087 if (ret < 0) {
2088 available = 0;
2089 break;
2090 }
2091 }
2092 }
2093
2094 if (available) {
2095 available_snapshots[total] = i;
2096 total++;
2097 }
2098 }
2099
2100 if (total > 0) {
2101 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
2102 for (i = 0; i < total; i++) {
2103 sn = &sn_tab[available_snapshots[i]];
2104 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
2105 }
2106 } else {
2107 monitor_printf(mon, "There is no suitable snapshot available\n");
2108 }
2109
aliguoria672b462008-11-11 21:33:36 +00002110 qemu_free(sn_tab);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002111 qemu_free(available_snapshots);
2112
aliguoria672b462008-11-11 21:33:36 +00002113}