blob: ee279895cdb46a4615e6b0c53b4c879b7063d87f [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
554int qemu_get_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
567int64_t qemu_ftell(QEMUFile *f)
568{
569 return f->buf_offset - f->buf_size + f->buf_index;
570}
571
572int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
573{
574 if (whence == SEEK_SET) {
575 /* nothing to do */
576 } else if (whence == SEEK_CUR) {
577 pos += qemu_ftell(f);
578 } else {
579 /* SEEK_END not supported */
580 return -1;
581 }
582 if (f->put_buffer) {
583 qemu_fflush(f);
584 f->buf_offset = pos;
585 } else {
586 f->buf_offset = pos;
587 f->buf_index = 0;
588 f->buf_size = 0;
589 }
590 return pos;
591}
592
593int qemu_file_rate_limit(QEMUFile *f)
594{
595 if (f->rate_limit)
596 return f->rate_limit(f->opaque);
597
598 return 0;
599}
600
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200601size_t qemu_file_get_rate_limit(QEMUFile *f)
602{
603 if (f->get_rate_limit)
604 return f->get_rate_limit(f->opaque);
605
606 return 0;
607}
608
Glauber Costa19629532009-05-20 18:26:57 -0400609size_t qemu_file_set_rate_limit(QEMUFile *f, size_t new_rate)
610{
Glauber Costa0bb05ea2009-07-14 18:26:51 -0400611 /* any failed or completed migration keeps its state to allow probing of
612 * migration data, but has no associated file anymore */
613 if (f && f->set_rate_limit)
Glauber Costa19629532009-05-20 18:26:57 -0400614 return f->set_rate_limit(f->opaque, new_rate);
615
616 return 0;
617}
618
aliguoria672b462008-11-11 21:33:36 +0000619void qemu_put_be16(QEMUFile *f, unsigned int v)
620{
621 qemu_put_byte(f, v >> 8);
622 qemu_put_byte(f, v);
623}
624
625void qemu_put_be32(QEMUFile *f, unsigned int v)
626{
627 qemu_put_byte(f, v >> 24);
628 qemu_put_byte(f, v >> 16);
629 qemu_put_byte(f, v >> 8);
630 qemu_put_byte(f, v);
631}
632
633void qemu_put_be64(QEMUFile *f, uint64_t v)
634{
635 qemu_put_be32(f, v >> 32);
636 qemu_put_be32(f, v);
637}
638
639unsigned int qemu_get_be16(QEMUFile *f)
640{
641 unsigned int v;
642 v = qemu_get_byte(f) << 8;
643 v |= qemu_get_byte(f);
644 return v;
645}
646
647unsigned int qemu_get_be32(QEMUFile *f)
648{
649 unsigned int v;
650 v = qemu_get_byte(f) << 24;
651 v |= qemu_get_byte(f) << 16;
652 v |= qemu_get_byte(f) << 8;
653 v |= qemu_get_byte(f);
654 return v;
655}
656
657uint64_t qemu_get_be64(QEMUFile *f)
658{
659 uint64_t v;
660 v = (uint64_t)qemu_get_be32(f) << 32;
661 v |= qemu_get_be32(f);
662 return v;
663}
664
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200665/* 8 bit int */
666
667static int get_int8(QEMUFile *f, void *pv, size_t size)
668{
669 int8_t *v = pv;
670 qemu_get_s8s(f, v);
671 return 0;
672}
673
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200674static void put_int8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200675{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200676 int8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200677 qemu_put_s8s(f, v);
678}
679
680const VMStateInfo vmstate_info_int8 = {
681 .name = "int8",
682 .get = get_int8,
683 .put = put_int8,
684};
685
686/* 16 bit int */
687
688static int get_int16(QEMUFile *f, void *pv, size_t size)
689{
690 int16_t *v = pv;
691 qemu_get_sbe16s(f, v);
692 return 0;
693}
694
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200695static void put_int16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200696{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200697 int16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200698 qemu_put_sbe16s(f, v);
699}
700
701const VMStateInfo vmstate_info_int16 = {
702 .name = "int16",
703 .get = get_int16,
704 .put = put_int16,
705};
706
707/* 32 bit int */
708
709static int get_int32(QEMUFile *f, void *pv, size_t size)
710{
711 int32_t *v = pv;
712 qemu_get_sbe32s(f, v);
713 return 0;
714}
715
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200716static void put_int32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200717{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200718 int32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200719 qemu_put_sbe32s(f, v);
720}
721
722const VMStateInfo vmstate_info_int32 = {
723 .name = "int32",
724 .get = get_int32,
725 .put = put_int32,
726};
727
Juan Quintela82501662009-08-20 19:42:32 +0200728/* 32 bit int. See that the received value is the same than the one
729 in the field */
730
731static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
732{
733 int32_t *v = pv;
734 int32_t v2;
735 qemu_get_sbe32s(f, &v2);
736
737 if (*v == v2)
738 return 0;
739 return -EINVAL;
740}
741
742const VMStateInfo vmstate_info_int32_equal = {
743 .name = "int32 equal",
744 .get = get_int32_equal,
745 .put = put_int32,
746};
747
Juan Quintela0a031e02009-08-20 19:42:37 +0200748/* 32 bit int. See that the received value is the less or the same
749 than the one in the field */
750
751static int get_int32_le(QEMUFile *f, void *pv, size_t size)
752{
753 int32_t *old = pv;
754 int32_t new;
755 qemu_get_sbe32s(f, &new);
756
757 if (*old <= new)
758 return 0;
759 return -EINVAL;
760}
761
762const VMStateInfo vmstate_info_int32_le = {
763 .name = "int32 equal",
764 .get = get_int32_le,
765 .put = put_int32,
766};
767
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200768/* 64 bit int */
769
770static int get_int64(QEMUFile *f, void *pv, size_t size)
771{
772 int64_t *v = pv;
773 qemu_get_sbe64s(f, v);
774 return 0;
775}
776
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200777static void put_int64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200778{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200779 int64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200780 qemu_put_sbe64s(f, v);
781}
782
783const VMStateInfo vmstate_info_int64 = {
784 .name = "int64",
785 .get = get_int64,
786 .put = put_int64,
787};
788
789/* 8 bit unsigned int */
790
791static int get_uint8(QEMUFile *f, void *pv, size_t size)
792{
793 uint8_t *v = pv;
794 qemu_get_8s(f, v);
795 return 0;
796}
797
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200798static void put_uint8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200799{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200800 uint8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200801 qemu_put_8s(f, v);
802}
803
804const VMStateInfo vmstate_info_uint8 = {
805 .name = "uint8",
806 .get = get_uint8,
807 .put = put_uint8,
808};
809
810/* 16 bit unsigned int */
811
812static int get_uint16(QEMUFile *f, void *pv, size_t size)
813{
814 uint16_t *v = pv;
815 qemu_get_be16s(f, v);
816 return 0;
817}
818
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200819static void put_uint16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200820{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200821 uint16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200822 qemu_put_be16s(f, v);
823}
824
825const VMStateInfo vmstate_info_uint16 = {
826 .name = "uint16",
827 .get = get_uint16,
828 .put = put_uint16,
829};
830
831/* 32 bit unsigned int */
832
833static int get_uint32(QEMUFile *f, void *pv, size_t size)
834{
835 uint32_t *v = pv;
836 qemu_get_be32s(f, v);
837 return 0;
838}
839
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200840static void put_uint32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200841{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200842 uint32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200843 qemu_put_be32s(f, v);
844}
845
846const VMStateInfo vmstate_info_uint32 = {
847 .name = "uint32",
848 .get = get_uint32,
849 .put = put_uint32,
850};
851
852/* 64 bit unsigned int */
853
854static int get_uint64(QEMUFile *f, void *pv, size_t size)
855{
856 uint64_t *v = pv;
857 qemu_get_be64s(f, v);
858 return 0;
859}
860
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200861static void put_uint64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200862{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200863 uint64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200864 qemu_put_be64s(f, v);
865}
866
867const VMStateInfo vmstate_info_uint64 = {
868 .name = "uint64",
869 .get = get_uint64,
870 .put = put_uint64,
871};
872
Juan Quintela80cd83e2009-09-10 03:04:36 +0200873/* 8 bit int. See that the received value is the same than the one
874 in the field */
875
876static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
877{
878 uint8_t *v = pv;
879 uint8_t v2;
880 qemu_get_8s(f, &v2);
881
882 if (*v == v2)
883 return 0;
884 return -EINVAL;
885}
886
887const VMStateInfo vmstate_info_uint8_equal = {
Juan Quintelaaa1cce62009-10-15 19:16:06 +0200888 .name = "uint8 equal",
Juan Quintela80cd83e2009-09-10 03:04:36 +0200889 .get = get_uint8_equal,
890 .put = put_uint8,
891};
892
Juan Quinteladc3b83a2009-10-15 23:16:13 +0200893/* 16 bit unsigned int int. See that the received value is the same than the one
894 in the field */
895
896static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
897{
898 uint16_t *v = pv;
899 uint16_t v2;
900 qemu_get_be16s(f, &v2);
901
902 if (*v == v2)
903 return 0;
904 return -EINVAL;
905}
906
907const VMStateInfo vmstate_info_uint16_equal = {
908 .name = "uint16 equal",
909 .get = get_uint16_equal,
910 .put = put_uint16,
911};
912
Juan Quinteladde04632009-08-20 19:42:26 +0200913/* timers */
914
915static int get_timer(QEMUFile *f, void *pv, size_t size)
916{
917 QEMUTimer *v = pv;
918 qemu_get_timer(f, v);
919 return 0;
920}
921
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200922static void put_timer(QEMUFile *f, void *pv, size_t size)
Juan Quinteladde04632009-08-20 19:42:26 +0200923{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200924 QEMUTimer *v = pv;
Juan Quinteladde04632009-08-20 19:42:26 +0200925 qemu_put_timer(f, v);
926}
927
928const VMStateInfo vmstate_info_timer = {
929 .name = "timer",
930 .get = get_timer,
931 .put = put_timer,
932};
933
Juan Quintela6f67c502009-08-20 19:42:35 +0200934/* uint8_t buffers */
935
936static int get_buffer(QEMUFile *f, void *pv, size_t size)
937{
938 uint8_t *v = pv;
939 qemu_get_buffer(f, v, size);
940 return 0;
941}
942
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200943static void put_buffer(QEMUFile *f, void *pv, size_t size)
Juan Quintela6f67c502009-08-20 19:42:35 +0200944{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200945 uint8_t *v = pv;
Juan Quintela6f67c502009-08-20 19:42:35 +0200946 qemu_put_buffer(f, v, size);
947}
948
949const VMStateInfo vmstate_info_buffer = {
950 .name = "buffer",
951 .get = get_buffer,
952 .put = put_buffer,
953};
954
Juan Quintela76507c72009-10-19 15:46:28 +0200955/* unused buffers: space that was used for some fields that are
956 not usefull anymore */
957
958static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
959{
Jan Kiszka21174c32009-12-02 12:36:35 +0100960 uint8_t buf[1024];
961 int block_len;
962
963 while (size > 0) {
964 block_len = MIN(sizeof(buf), size);
965 size -= block_len;
966 qemu_get_buffer(f, buf, block_len);
967 }
968 return 0;
Juan Quintela76507c72009-10-19 15:46:28 +0200969}
970
971static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
972{
Jan Kiszka21174c32009-12-02 12:36:35 +0100973 static const 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_put_buffer(f, buf, block_len);
980 }
Juan Quintela76507c72009-10-19 15:46:28 +0200981}
982
983const VMStateInfo vmstate_info_unused_buffer = {
984 .name = "unused_buffer",
985 .get = get_unused_buffer,
986 .put = put_unused_buffer,
987};
988
Alex Williamson7685ee62010-06-25 11:09:14 -0600989typedef struct CompatEntry {
990 char idstr[256];
991 int instance_id;
992} CompatEntry;
993
aliguoria672b462008-11-11 21:33:36 +0000994typedef struct SaveStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000995 QTAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +0000996 char idstr[256];
997 int instance_id;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +0200998 int alias_id;
aliguoria672b462008-11-11 21:33:36 +0000999 int version_id;
1000 int section_id;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001001 SaveSetParamsHandler *set_params;
aliguoria672b462008-11-11 21:33:36 +00001002 SaveLiveStateHandler *save_live_state;
1003 SaveStateHandler *save_state;
1004 LoadStateHandler *load_state;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001005 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +00001006 void *opaque;
Alex Williamson7685ee62010-06-25 11:09:14 -06001007 CompatEntry *compat;
aliguoria672b462008-11-11 21:33:36 +00001008} SaveStateEntry;
1009
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001010
Blue Swirl72cf2d42009-09-12 07:36:22 +00001011static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1012 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001013static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +00001014
Juan Quintela8718e992009-09-01 02:12:31 +02001015static int calculate_new_instance_id(const char *idstr)
1016{
1017 SaveStateEntry *se;
1018 int instance_id = 0;
1019
Blue Swirl72cf2d42009-09-12 07:36:22 +00001020 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +02001021 if (strcmp(idstr, se->idstr) == 0
1022 && instance_id <= se->instance_id) {
1023 instance_id = se->instance_id + 1;
1024 }
1025 }
1026 return instance_id;
1027}
1028
Alex Williamson7685ee62010-06-25 11:09:14 -06001029static int calculate_compat_instance_id(const char *idstr)
1030{
1031 SaveStateEntry *se;
1032 int instance_id = 0;
1033
1034 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1035 if (!se->compat)
1036 continue;
1037
1038 if (strcmp(idstr, se->compat->idstr) == 0
1039 && instance_id <= se->compat->instance_id) {
1040 instance_id = se->compat->instance_id + 1;
1041 }
1042 }
1043 return instance_id;
1044}
1045
aliguoria672b462008-11-11 21:33:36 +00001046/* TODO: Individual devices generally have very little idea about the rest
1047 of the system, so instance_id should be removed/replaced.
1048 Meanwhile pass -1 as instance_id if you do not already have a clearly
1049 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -06001050int register_savevm_live(DeviceState *dev,
1051 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001052 int instance_id,
1053 int version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001054 SaveSetParamsHandler *set_params,
aliguoria672b462008-11-11 21:33:36 +00001055 SaveLiveStateHandler *save_live_state,
1056 SaveStateHandler *save_state,
1057 LoadStateHandler *load_state,
1058 void *opaque)
1059{
Juan Quintela8718e992009-09-01 02:12:31 +02001060 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +00001061
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001062 se = qemu_mallocz(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +00001063 se->version_id = version_id;
1064 se->section_id = global_section_id++;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001065 se->set_params = set_params;
aliguoria672b462008-11-11 21:33:36 +00001066 se->save_live_state = save_live_state;
1067 se->save_state = save_state;
1068 se->load_state = load_state;
1069 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001070 se->vmsd = NULL;
aliguoria672b462008-11-11 21:33:36 +00001071
Alex Williamson7685ee62010-06-25 11:09:14 -06001072 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1073 char *id = dev->parent_bus->info->get_dev_path(dev);
1074 if (id) {
1075 pstrcpy(se->idstr, sizeof(se->idstr), id);
1076 pstrcat(se->idstr, sizeof(se->idstr), "/");
1077 qemu_free(id);
1078
1079 se->compat = qemu_mallocz(sizeof(CompatEntry));
1080 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1081 se->compat->instance_id = instance_id == -1 ?
1082 calculate_compat_instance_id(idstr) : instance_id;
1083 instance_id = -1;
1084 }
1085 }
1086 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1087
Juan Quintela8718e992009-09-01 02:12:31 +02001088 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001089 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001090 } else {
1091 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +00001092 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001093 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001094 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001095 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +00001096 return 0;
1097}
1098
Alex Williamson0be71e32010-06-25 11:09:07 -06001099int register_savevm(DeviceState *dev,
1100 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001101 int instance_id,
1102 int version_id,
1103 SaveStateHandler *save_state,
1104 LoadStateHandler *load_state,
1105 void *opaque)
1106{
Alex Williamson0be71e32010-06-25 11:09:07 -06001107 return register_savevm_live(dev, idstr, instance_id, version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001108 NULL, NULL, save_state, load_state, opaque);
aliguoria672b462008-11-11 21:33:36 +00001109}
1110
Alex Williamson0be71e32010-06-25 11:09:07 -06001111void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +00001112{
Juan Quintela8718e992009-09-01 02:12:31 +02001113 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001114 char id[256] = "";
1115
1116 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1117 char *path = dev->parent_bus->info->get_dev_path(dev);
1118 if (path) {
1119 pstrcpy(id, sizeof(id), path);
1120 pstrcat(id, sizeof(id), "/");
1121 qemu_free(path);
1122 }
1123 }
1124 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +00001125
Blue Swirl72cf2d42009-09-12 07:36:22 +00001126 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001127 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001128 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Juan Quintela8718e992009-09-01 02:12:31 +02001129 qemu_free(se);
aliguori41bd13a2009-04-17 17:10:59 +00001130 }
aliguori41bd13a2009-04-17 17:10:59 +00001131 }
1132}
1133
Alex Williamson0be71e32010-06-25 11:09:07 -06001134int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001135 const VMStateDescription *vmsd,
1136 void *opaque, int alias_id,
1137 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001138{
Juan Quintela8718e992009-09-01 02:12:31 +02001139 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001140
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001141 /* If this triggers, alias support can be dropped for the vmsd. */
1142 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1143
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001144 se = qemu_mallocz(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001145 se->version_id = vmsd->version_id;
1146 se->section_id = global_section_id++;
1147 se->save_live_state = NULL;
1148 se->save_state = NULL;
1149 se->load_state = NULL;
1150 se->opaque = opaque;
1151 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001152 se->alias_id = alias_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001153
Alex Williamson7685ee62010-06-25 11:09:14 -06001154 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1155 char *id = dev->parent_bus->info->get_dev_path(dev);
1156 if (id) {
1157 pstrcpy(se->idstr, sizeof(se->idstr), id);
1158 pstrcat(se->idstr, sizeof(se->idstr), "/");
1159 qemu_free(id);
1160
1161 se->compat = qemu_mallocz(sizeof(CompatEntry));
1162 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1163 se->compat->instance_id = instance_id == -1 ?
1164 calculate_compat_instance_id(vmsd->name) : instance_id;
1165 instance_id = -1;
1166 }
1167 }
1168 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1169
Juan Quintela8718e992009-09-01 02:12:31 +02001170 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001171 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001172 } else {
1173 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001174 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001175 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001176 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001177 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001178 return 0;
1179}
1180
Alex Williamson0be71e32010-06-25 11:09:07 -06001181int vmstate_register(DeviceState *dev, int instance_id,
1182 const VMStateDescription *vmsd, void *opaque)
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001183{
Alex Williamson0be71e32010-06-25 11:09:07 -06001184 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1185 opaque, -1, 0);
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001186}
1187
Alex Williamson0be71e32010-06-25 11:09:07 -06001188void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1189 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001190{
Juan Quintela1eb75382009-09-10 03:04:29 +02001191 SaveStateEntry *se, *new_se;
1192
Blue Swirl72cf2d42009-09-12 07:36:22 +00001193 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +02001194 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001195 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Juan Quintela1eb75382009-09-10 03:04:29 +02001196 qemu_free(se);
1197 }
1198 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001199}
1200
1201int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1202 void *opaque, int version_id)
1203{
1204 VMStateField *field = vmsd->fields;
1205
1206 if (version_id > vmsd->version_id) {
1207 return -EINVAL;
1208 }
1209 if (version_id < vmsd->minimum_version_id_old) {
1210 return -EINVAL;
1211 }
1212 if (version_id < vmsd->minimum_version_id) {
1213 return vmsd->load_state_old(f, opaque, version_id);
1214 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001215 if (vmsd->pre_load) {
1216 int ret = vmsd->pre_load(opaque);
1217 if (ret)
1218 return ret;
1219 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001220 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001221 if ((field->field_exists &&
1222 field->field_exists(opaque, version_id)) ||
1223 (!field->field_exists &&
1224 field->version_id <= version_id)) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001225 void *base_addr = opaque + field->offset;
1226 int ret, i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001227 int size = field->size;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001228
Juan Quintelae61a1e02009-12-02 12:36:38 +01001229 if (field->flags & VMS_VBUFFER) {
1230 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001231 if (field->flags & VMS_MULTIPLY) {
1232 size *= field->size;
1233 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001234 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001235 if (field->flags & VMS_ARRAY) {
1236 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001237 } else if (field->flags & VMS_VARRAY_INT32) {
1238 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001239 } else if (field->flags & VMS_VARRAY_UINT16) {
1240 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001241 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001242 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001243 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001244 }
1245 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001246 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001247
Juan Quintela19df4382009-09-29 22:48:41 +02001248 if (field->flags & VMS_ARRAY_OF_POINTER) {
1249 addr = *(void **)addr;
1250 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001251 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001252 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001253 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001254 ret = field->info->get(f, addr, size);
Juan Quintelaec245e22009-08-20 19:42:29 +02001255
1256 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001257 if (ret < 0) {
1258 return ret;
1259 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001260 }
1261 }
1262 field++;
1263 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001264 if (vmsd->post_load) {
Juan Quintelae59fb372009-09-29 22:48:21 +02001265 return vmsd->post_load(opaque, version_id);
Juan Quintela752ff2f2009-09-10 03:04:30 +02001266 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001267 return 0;
1268}
1269
1270void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001271 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001272{
1273 VMStateField *field = vmsd->fields;
1274
Juan Quintela8fb07912009-09-10 03:04:32 +02001275 if (vmsd->pre_save) {
1276 vmsd->pre_save(opaque);
1277 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001278 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001279 if (!field->field_exists ||
1280 field->field_exists(opaque, vmsd->version_id)) {
1281 void *base_addr = opaque + field->offset;
1282 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001283 int size = field->size;
Juan Quinteladde04632009-08-20 19:42:26 +02001284
Juan Quintelae61a1e02009-12-02 12:36:38 +01001285 if (field->flags & VMS_VBUFFER) {
1286 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001287 if (field->flags & VMS_MULTIPLY) {
1288 size *= field->size;
1289 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001290 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001291 if (field->flags & VMS_ARRAY) {
1292 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001293 } else if (field->flags & VMS_VARRAY_INT32) {
1294 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001295 } else if (field->flags & VMS_VARRAY_UINT16) {
1296 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001297 }
1298 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001299 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001300 }
1301 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001302 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001303
Juan Quintela85953872009-12-02 12:36:37 +01001304 if (field->flags & VMS_ARRAY_OF_POINTER) {
1305 addr = *(void **)addr;
1306 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001307 if (field->flags & VMS_STRUCT) {
1308 vmstate_save_state(f, field->vmsd, addr);
1309 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001310 field->info->put(f, addr, size);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001311 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001312 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001313 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001314 field++;
1315 }
1316}
1317
Juan Quintela4082be42009-08-20 19:42:24 +02001318static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1319{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001320 if (!se->vmsd) { /* Old style */
1321 return se->load_state(f, se->opaque, version_id);
1322 }
1323 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001324}
1325
1326static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
1327{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001328 if (!se->vmsd) { /* Old style */
1329 se->save_state(f, se->opaque);
1330 return;
1331 }
1332 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +02001333}
1334
aliguoria672b462008-11-11 21:33:36 +00001335#define QEMU_VM_FILE_MAGIC 0x5145564d
1336#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1337#define QEMU_VM_FILE_VERSION 0x00000003
1338
1339#define QEMU_VM_EOF 0x00
1340#define QEMU_VM_SECTION_START 0x01
1341#define QEMU_VM_SECTION_PART 0x02
1342#define QEMU_VM_SECTION_END 0x03
1343#define QEMU_VM_SECTION_FULL 0x04
1344
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001345int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
1346 int shared)
aliguoria672b462008-11-11 21:33:36 +00001347{
1348 SaveStateEntry *se;
1349
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001350 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1351 if(se->set_params == NULL) {
1352 continue;
1353 }
1354 se->set_params(blk_enable, shared, se->opaque);
1355 }
1356
aliguoria672b462008-11-11 21:33:36 +00001357 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1358 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1359
Blue Swirl72cf2d42009-09-12 07:36:22 +00001360 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001361 int len;
1362
1363 if (se->save_live_state == NULL)
1364 continue;
1365
1366 /* Section type */
1367 qemu_put_byte(f, QEMU_VM_SECTION_START);
1368 qemu_put_be32(f, se->section_id);
1369
1370 /* ID string */
1371 len = strlen(se->idstr);
1372 qemu_put_byte(f, len);
1373 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1374
1375 qemu_put_be32(f, se->instance_id);
1376 qemu_put_be32(f, se->version_id);
1377
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001378 se->save_live_state(mon, f, QEMU_VM_SECTION_START, se->opaque);
aliguoria672b462008-11-11 21:33:36 +00001379 }
1380
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001381 if (qemu_file_has_error(f)) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001382 qemu_savevm_state_cancel(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001383 return -EIO;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001384 }
aliguoria672b462008-11-11 21:33:36 +00001385
1386 return 0;
1387}
1388
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001389int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001390{
1391 SaveStateEntry *se;
1392 int ret = 1;
1393
Blue Swirl72cf2d42009-09-12 07:36:22 +00001394 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001395 if (se->save_live_state == NULL)
1396 continue;
1397
1398 /* Section type */
1399 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1400 qemu_put_be32(f, se->section_id);
1401
Jan Kiszka90697be2009-12-01 15:19:55 +01001402 ret = se->save_live_state(mon, f, QEMU_VM_SECTION_PART, se->opaque);
1403 if (!ret) {
1404 /* Do not proceed to the next vmstate before this one reported
1405 completion of the current stage. This serializes the migration
1406 and reduces the probability that a faster changing state is
1407 synchronized over and over again. */
1408 break;
1409 }
aliguoria672b462008-11-11 21:33:36 +00001410 }
1411
1412 if (ret)
1413 return 1;
1414
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001415 if (qemu_file_has_error(f)) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001416 qemu_savevm_state_cancel(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001417 return -EIO;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001418 }
aliguoria672b462008-11-11 21:33:36 +00001419
1420 return 0;
1421}
1422
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001423int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001424{
1425 SaveStateEntry *se;
1426
Jan Kiszkaea375f92010-03-01 19:10:30 +01001427 cpu_synchronize_all_states();
1428
Blue Swirl72cf2d42009-09-12 07:36:22 +00001429 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001430 if (se->save_live_state == NULL)
1431 continue;
1432
1433 /* Section type */
1434 qemu_put_byte(f, QEMU_VM_SECTION_END);
1435 qemu_put_be32(f, se->section_id);
1436
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001437 se->save_live_state(mon, f, QEMU_VM_SECTION_END, se->opaque);
aliguoria672b462008-11-11 21:33:36 +00001438 }
1439
Blue Swirl72cf2d42009-09-12 07:36:22 +00001440 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001441 int len;
1442
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001443 if (se->save_state == NULL && se->vmsd == NULL)
aliguoria672b462008-11-11 21:33:36 +00001444 continue;
1445
1446 /* Section type */
1447 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1448 qemu_put_be32(f, se->section_id);
1449
1450 /* ID string */
1451 len = strlen(se->idstr);
1452 qemu_put_byte(f, len);
1453 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1454
1455 qemu_put_be32(f, se->instance_id);
1456 qemu_put_be32(f, se->version_id);
1457
Juan Quintela4082be42009-08-20 19:42:24 +02001458 vmstate_save(f, se);
aliguoria672b462008-11-11 21:33:36 +00001459 }
1460
1461 qemu_put_byte(f, QEMU_VM_EOF);
1462
1463 if (qemu_file_has_error(f))
1464 return -EIO;
1465
1466 return 0;
1467}
1468
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001469void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001470{
1471 SaveStateEntry *se;
1472
1473 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1474 if (se->save_live_state) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001475 se->save_live_state(mon, f, -1, se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001476 }
1477 }
1478}
1479
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001480static int qemu_savevm_state(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001481{
1482 int saved_vm_running;
1483 int ret;
1484
1485 saved_vm_running = vm_running;
1486 vm_stop(0);
1487
1488 bdrv_flush_all();
1489
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001490 ret = qemu_savevm_state_begin(mon, f, 0, 0);
aliguoria672b462008-11-11 21:33:36 +00001491 if (ret < 0)
1492 goto out;
1493
1494 do {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001495 ret = qemu_savevm_state_iterate(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001496 if (ret < 0)
1497 goto out;
1498 } while (ret == 0);
1499
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001500 ret = qemu_savevm_state_complete(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001501
1502out:
1503 if (qemu_file_has_error(f))
1504 ret = -EIO;
1505
1506 if (!ret && saved_vm_running)
1507 vm_start();
1508
1509 return ret;
1510}
1511
1512static SaveStateEntry *find_se(const char *idstr, int instance_id)
1513{
1514 SaveStateEntry *se;
1515
Blue Swirl72cf2d42009-09-12 07:36:22 +00001516 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001517 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001518 (instance_id == se->instance_id ||
1519 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +00001520 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001521 /* Migrating from an older version? */
1522 if (strstr(se->idstr, idstr) && se->compat) {
1523 if (!strcmp(se->compat->idstr, idstr) &&
1524 (instance_id == se->compat->instance_id ||
1525 instance_id == se->alias_id))
1526 return se;
1527 }
aliguoria672b462008-11-11 21:33:36 +00001528 }
1529 return NULL;
1530}
1531
1532typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001533 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001534 SaveStateEntry *se;
1535 int section_id;
1536 int version_id;
aliguoria672b462008-11-11 21:33:36 +00001537} LoadStateEntry;
1538
aliguoria672b462008-11-11 21:33:36 +00001539int qemu_loadvm_state(QEMUFile *f)
1540{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001541 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1542 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001543 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00001544 uint8_t section_type;
1545 unsigned int v;
1546 int ret;
1547
1548 v = qemu_get_be32(f);
1549 if (v != QEMU_VM_FILE_MAGIC)
1550 return -EINVAL;
1551
1552 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02001553 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1554 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1555 return -ENOTSUP;
1556 }
aliguoria672b462008-11-11 21:33:36 +00001557 if (v != QEMU_VM_FILE_VERSION)
1558 return -ENOTSUP;
1559
1560 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1561 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00001562 SaveStateEntry *se;
1563 char idstr[257];
1564 int len;
1565
1566 switch (section_type) {
1567 case QEMU_VM_SECTION_START:
1568 case QEMU_VM_SECTION_FULL:
1569 /* Read section start */
1570 section_id = qemu_get_be32(f);
1571 len = qemu_get_byte(f);
1572 qemu_get_buffer(f, (uint8_t *)idstr, len);
1573 idstr[len] = 0;
1574 instance_id = qemu_get_be32(f);
1575 version_id = qemu_get_be32(f);
1576
1577 /* Find savevm section */
1578 se = find_se(idstr, instance_id);
1579 if (se == NULL) {
1580 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1581 ret = -EINVAL;
1582 goto out;
1583 }
1584
1585 /* Validate version */
1586 if (version_id > se->version_id) {
1587 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1588 version_id, idstr, se->version_id);
1589 ret = -EINVAL;
1590 goto out;
1591 }
1592
1593 /* Add entry */
1594 le = qemu_mallocz(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001595
1596 le->se = se;
1597 le->section_id = section_id;
1598 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001599 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00001600
Juan Quintela4082be42009-08-20 19:42:24 +02001601 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001602 if (ret < 0) {
1603 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1604 instance_id, idstr);
1605 goto out;
1606 }
aliguoria672b462008-11-11 21:33:36 +00001607 break;
1608 case QEMU_VM_SECTION_PART:
1609 case QEMU_VM_SECTION_END:
1610 section_id = qemu_get_be32(f);
1611
Blue Swirl72cf2d42009-09-12 07:36:22 +00001612 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001613 if (le->section_id == section_id) {
1614 break;
1615 }
1616 }
aliguoria672b462008-11-11 21:33:36 +00001617 if (le == NULL) {
1618 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1619 ret = -EINVAL;
1620 goto out;
1621 }
1622
Juan Quintela4082be42009-08-20 19:42:24 +02001623 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001624 if (ret < 0) {
1625 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1626 section_id);
1627 goto out;
1628 }
aliguoria672b462008-11-11 21:33:36 +00001629 break;
1630 default:
1631 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1632 ret = -EINVAL;
1633 goto out;
1634 }
1635 }
1636
Jan Kiszkaea375f92010-03-01 19:10:30 +01001637 cpu_synchronize_all_post_init();
1638
aliguoria672b462008-11-11 21:33:36 +00001639 ret = 0;
1640
1641out:
Blue Swirl72cf2d42009-09-12 07:36:22 +00001642 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1643 QLIST_REMOVE(le, entry);
aliguoria672b462008-11-11 21:33:36 +00001644 qemu_free(le);
1645 }
1646
1647 if (qemu_file_has_error(f))
1648 ret = -EIO;
1649
1650 return ret;
1651}
1652
aliguoria672b462008-11-11 21:33:36 +00001653static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1654 const char *name)
1655{
1656 QEMUSnapshotInfo *sn_tab, *sn;
1657 int nb_sns, i, ret;
1658
1659 ret = -ENOENT;
1660 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1661 if (nb_sns < 0)
1662 return ret;
1663 for(i = 0; i < nb_sns; i++) {
1664 sn = &sn_tab[i];
1665 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1666 *sn_info = *sn;
1667 ret = 0;
1668 break;
1669 }
1670 }
1671 qemu_free(sn_tab);
1672 return ret;
1673}
1674
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001675/*
1676 * Deletes snapshots of a given name in all opened images.
1677 */
1678static int del_existing_snapshots(Monitor *mon, const char *name)
1679{
1680 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001681 QEMUSnapshotInfo sn1, *snapshot = &sn1;
1682 int ret;
1683
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001684 bs = NULL;
1685 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001686 if (bdrv_can_snapshot(bs) &&
1687 bdrv_snapshot_find(bs, snapshot, name) >= 0)
1688 {
1689 ret = bdrv_snapshot_delete(bs, name);
1690 if (ret < 0) {
1691 monitor_printf(mon,
1692 "Error while deleting snapshot on '%s'\n",
1693 bdrv_get_device_name(bs));
1694 return -1;
1695 }
1696 }
1697 }
1698
1699 return 0;
1700}
1701
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001702void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001703{
1704 BlockDriverState *bs, *bs1;
1705 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001706 int ret;
aliguoria672b462008-11-11 21:33:36 +00001707 QEMUFile *f;
1708 int saved_vm_running;
aliguori2d22b182008-12-11 21:06:49 +00001709 uint32_t vm_state_size;
aliguoria672b462008-11-11 21:33:36 +00001710#ifdef _WIN32
1711 struct _timeb tb;
1712#else
1713 struct timeval tv;
1714#endif
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001715 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001716
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001717 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001718 bs = NULL;
1719 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001720
1721 if (bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1722 continue;
1723 }
1724
1725 if (!bdrv_can_snapshot(bs)) {
1726 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
1727 bdrv_get_device_name(bs));
1728 return;
1729 }
1730 }
1731
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001732 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00001733 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001734 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001735 return;
1736 }
aliguoria672b462008-11-11 21:33:36 +00001737 /* ??? Should this occur after vm_stop? */
1738 qemu_aio_flush();
1739
1740 saved_vm_running = vm_running;
1741 vm_stop(0);
1742
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001743 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +00001744 if (name) {
1745 ret = bdrv_snapshot_find(bs, old_sn, name);
1746 if (ret >= 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001747 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1748 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1749 } else {
aliguoria672b462008-11-11 21:33:36 +00001750 pstrcpy(sn->name, sizeof(sn->name), name);
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001751 }
aliguoria672b462008-11-11 21:33:36 +00001752 }
1753
1754 /* fill auxiliary fields */
1755#ifdef _WIN32
1756 _ftime(&tb);
1757 sn->date_sec = tb.time;
1758 sn->date_nsec = tb.millitm * 1000000;
1759#else
1760 gettimeofday(&tv, NULL);
1761 sn->date_sec = tv.tv_sec;
1762 sn->date_nsec = tv.tv_usec * 1000;
1763#endif
1764 sn->vm_clock_nsec = qemu_get_clock(vm_clock);
1765
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001766 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -02001767 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001768 goto the_end;
1769 }
1770
aliguoria672b462008-11-11 21:33:36 +00001771 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001772 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00001773 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001774 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00001775 goto the_end;
1776 }
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001777 ret = qemu_savevm_state(mon, f);
aliguori2d22b182008-12-11 21:06:49 +00001778 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00001779 qemu_fclose(f);
1780 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001781 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00001782 goto the_end;
1783 }
1784
1785 /* create the snapshots */
1786
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001787 bs1 = NULL;
1788 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001789 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +00001790 /* Write VM state size only to the image that contains the state */
1791 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00001792 ret = bdrv_snapshot_create(bs1, sn);
1793 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001794 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1795 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001796 }
1797 }
1798 }
1799
1800 the_end:
1801 if (saved_vm_running)
1802 vm_start();
1803}
1804
Markus Armbruster03cd4652010-02-17 16:24:10 +01001805int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00001806{
1807 BlockDriverState *bs, *bs1;
aliguori2d22b182008-12-11 21:06:49 +00001808 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00001809 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001810 int ret;
aliguoria672b462008-11-11 21:33:36 +00001811
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001812 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001813 bs = NULL;
1814 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001815
1816 if (bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1817 continue;
1818 }
1819
1820 if (!bdrv_can_snapshot(bs)) {
1821 error_report("Device '%s' is writable but does not support snapshots.",
1822 bdrv_get_device_name(bs));
1823 return -ENOTSUP;
1824 }
1825 }
1826
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001827 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00001828 if (!bs) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001829 error_report("No block device supports snapshots");
Juan Quintela05f24012009-08-20 19:42:22 +02001830 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001831 }
1832
1833 /* Flush all IO requests so they don't interfere with the new state. */
1834 qemu_aio_flush();
1835
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001836 bs1 = NULL;
1837 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001838 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00001839 ret = bdrv_snapshot_goto(bs1, name);
1840 if (ret < 0) {
aliguoria672b462008-11-11 21:33:36 +00001841 switch(ret) {
1842 case -ENOTSUP:
Markus Armbruster1ecda022010-02-18 17:25:24 +01001843 error_report("%sSnapshots not supported on device '%s'",
1844 bs != bs1 ? "Warning: " : "",
1845 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001846 break;
1847 case -ENOENT:
Markus Armbruster1ecda022010-02-18 17:25:24 +01001848 error_report("%sCould not find snapshot '%s' on device '%s'",
1849 bs != bs1 ? "Warning: " : "",
1850 name, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001851 break;
1852 default:
Markus Armbruster1ecda022010-02-18 17:25:24 +01001853 error_report("%sError %d while activating snapshot on '%s'",
1854 bs != bs1 ? "Warning: " : "",
1855 ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001856 break;
1857 }
1858 /* fatal on snapshot block device */
1859 if (bs == bs1)
Juan Quintela05f24012009-08-20 19:42:22 +02001860 return 0;
aliguoria672b462008-11-11 21:33:36 +00001861 }
1862 }
1863 }
1864
aliguori2d22b182008-12-11 21:06:49 +00001865 /* Don't even try to load empty VM states */
1866 ret = bdrv_snapshot_find(bs, &sn, name);
1867 if ((ret >= 0) && (sn.vm_state_size == 0))
Juan Quintela05f24012009-08-20 19:42:22 +02001868 return -EINVAL;
aliguori2d22b182008-12-11 21:06:49 +00001869
aliguoria672b462008-11-11 21:33:36 +00001870 /* restore the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001871 f = qemu_fopen_bdrv(bs, 0);
aliguoria672b462008-11-11 21:33:36 +00001872 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001873 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02001874 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001875 }
1876 ret = qemu_loadvm_state(f);
1877 qemu_fclose(f);
1878 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001879 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02001880 return ret;
aliguoria672b462008-11-11 21:33:36 +00001881 }
Juan Quintela05f24012009-08-20 19:42:22 +02001882 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02001883}
1884
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001885void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001886{
1887 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001888 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001889 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001890
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001891 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00001892 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001893 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001894 return;
1895 }
1896
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001897 bs1 = NULL;
1898 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001899 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00001900 ret = bdrv_snapshot_delete(bs1, name);
1901 if (ret < 0) {
1902 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00001903 monitor_printf(mon,
1904 "Snapshots not supported on device '%s'\n",
1905 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001906 else
aliguori376253e2009-03-05 23:01:23 +00001907 monitor_printf(mon, "Error %d while deleting snapshot on "
1908 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001909 }
1910 }
1911 }
1912}
1913
aliguori376253e2009-03-05 23:01:23 +00001914void do_info_snapshots(Monitor *mon)
aliguoria672b462008-11-11 21:33:36 +00001915{
1916 BlockDriverState *bs, *bs1;
1917 QEMUSnapshotInfo *sn_tab, *sn;
1918 int nb_sns, i;
1919 char buf[256];
1920
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001921 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00001922 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001923 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001924 return;
1925 }
aliguori376253e2009-03-05 23:01:23 +00001926 monitor_printf(mon, "Snapshot devices:");
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)) {
aliguoria672b462008-11-11 21:33:36 +00001930 if (bs == bs1)
aliguori376253e2009-03-05 23:01:23 +00001931 monitor_printf(mon, " %s", bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001932 }
1933 }
aliguori376253e2009-03-05 23:01:23 +00001934 monitor_printf(mon, "\n");
aliguoria672b462008-11-11 21:33:36 +00001935
1936 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1937 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00001938 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00001939 return;
1940 }
aliguori376253e2009-03-05 23:01:23 +00001941 monitor_printf(mon, "Snapshot list (from %s):\n",
1942 bdrv_get_device_name(bs));
1943 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
aliguoria672b462008-11-11 21:33:36 +00001944 for(i = 0; i < nb_sns; i++) {
1945 sn = &sn_tab[i];
aliguori376253e2009-03-05 23:01:23 +00001946 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
aliguoria672b462008-11-11 21:33:36 +00001947 }
1948 qemu_free(sn_tab);
1949}