blob: bee16c0b7b5ad88d3784b019d4eb7e62df95d933 [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>
aliguoria672b462008-11-11 21:33:36 +000026#include <time.h>
27#include <errno.h>
28#include <sys/time.h>
29#include <zlib.h>
30
Juan Quintela71e72a12009-07-27 16:12:56 +020031/* Needed early for CONFIG_BSD etc. */
blueswir1d40cdb12009-03-07 16:52:02 +000032#include "config-host.h"
33
aliguoria672b462008-11-11 21:33:36 +000034#ifndef _WIN32
35#include <sys/times.h>
36#include <sys/wait.h>
37#include <termios.h>
38#include <sys/mman.h>
39#include <sys/ioctl.h>
40#include <sys/resource.h>
41#include <sys/socket.h>
42#include <netinet/in.h>
43#include <net/if.h>
aliguoria672b462008-11-11 21:33:36 +000044#include <arpa/inet.h>
45#include <dirent.h>
46#include <netdb.h>
47#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020048#ifdef CONFIG_BSD
aliguoria672b462008-11-11 21:33:36 +000049#include <sys/stat.h>
Aurelien Jarnoa167ba52009-11-29 18:00:41 +010050#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
aliguoria672b462008-11-11 21:33:36 +000051#include <libutil.h>
52#else
53#include <util.h>
54#endif
aliguoria672b462008-11-11 21:33:36 +000055#ifdef __linux__
56#include <pty.h>
57#include <malloc.h>
58#include <linux/rtc.h>
59#endif
60#endif
61#endif
62
63#ifdef _WIN32
aliguori49dc7682009-03-08 16:26:59 +000064#include <windows.h>
aliguoria672b462008-11-11 21:33:36 +000065#include <malloc.h>
66#include <sys/timeb.h>
67#include <mmsystem.h>
68#define getopt_long_only getopt_long
69#define memalign(align, size) malloc(size)
70#endif
71
blueswir1511d2b12009-03-07 15:32:56 +000072#include "qemu-common.h"
73#include "hw/hw.h"
Alex Williamson7685ee62010-06-25 11:09:14 -060074#include "hw/qdev.h"
blueswir1511d2b12009-03-07 15:32:56 +000075#include "net.h"
76#include "monitor.h"
77#include "sysemu.h"
78#include "qemu-timer.h"
79#include "qemu-char.h"
blueswir1511d2b12009-03-07 15:32:56 +000080#include "audio/audio.h"
81#include "migration.h"
82#include "qemu_socket.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +000083#include "qemu-queue.h"
Paolo Bonzini2ff68d02011-09-12 16:21:44 +020084#include "qemu-timer.h"
Blue Swirl17a46632011-03-27 16:05:08 +000085#include "cpus.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, ... */
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100141 qemu_mod_timer(timer, qemu_get_clock_ms(rt_clock) +
Nolan18995b92009-10-15 16:53:55 -0700142 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;
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100152 timer = qemu_new_timer_ms(rt_clock, qemu_announce_self_once, &timer);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300153 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
Juan Quintela3961b4d2011-10-05 01:05:21 +0200177 int last_error;
aliguoria672b462008-11-11 21:33:36 +0000178};
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 Swirl00aa0042011-07-23 20:04:29 +0000198 len = qemu_recv(s->fd, 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;
Anthony Liguori7267c092011-08-20 22:09:37 -0500210 g_free(s);
aliguoria672b462008-11-11 21:33:36 +0000211 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);
Anthony Liguori7267c092011-08-20 22:09:37 -0500238 g_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);
Anthony Liguori7267c092011-08-20 22:09:37 -0500246 g_free(s);
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200247 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
Anthony Liguori7267c092011-08-20 22:09:37 -0500259 s = g_malloc0(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
Anthony Liguori7267c092011-08-20 22:09:37 -0500307 s = g_malloc0(sizeof(QEMUFileStdio));
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200308 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:
Anthony Liguori7267c092011-08-20 22:09:37 -0500322 g_free(s);
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200323 return NULL;
324}
325
aliguoria672b462008-11-11 21:33:36 +0000326QEMUFile *qemu_fopen_socket(int fd)
327{
Anthony Liguori7267c092011-08-20 22:09:37 -0500328 QEMUFileSocket *s = g_malloc0(sizeof(QEMUFileSocket));
aliguoria672b462008-11-11 21:33:36 +0000329
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
Anthony Liguori7267c092011-08-20 22:09:37 -0500362 s = g_malloc0(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:
Anthony Liguori7267c092011-08-20 22:09:37 -0500377 g_free(s);
aliguoria672b462008-11-11 21:33:36 +0000378 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
Anthony Liguori7267c092011-08-20 22:09:37 -0500415 f = g_malloc0(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
Juan Quintela624b9cc2011-10-05 01:02:52 +0200429int qemu_file_get_error(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000430{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200431 return f->last_error;
aliguoria672b462008-11-11 21:33:36 +0000432}
433
Juan Quinteladcd1d222011-09-21 23:01:54 +0200434void qemu_file_set_error(QEMUFile *f, int ret)
aliguori4dabe242009-04-05 19:30:51 +0000435{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200436 f->last_error = ret;
aliguori4dabe242009-04-05 19:30:51 +0000437}
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
Juan Quintela3961b4d2011-10-05 01:05:21 +0200451 f->last_error = -EINVAL;
aliguoria672b462008-11-11 21:33:36 +0000452 f->buf_index = 0;
453 }
454}
455
456static void qemu_fill_buffer(QEMUFile *f)
457{
458 int len;
Juan Quintela0046c452011-09-30 19:28:45 +0200459 int pending;
aliguoria672b462008-11-11 21:33:36 +0000460
461 if (!f->get_buffer)
462 return;
463
464 if (f->is_write)
465 abort();
466
Juan Quintela0046c452011-09-30 19:28:45 +0200467 pending = f->buf_size - f->buf_index;
468 if (pending > 0) {
469 memmove(f->buf, f->buf + f->buf_index, pending);
470 }
471 f->buf_index = 0;
472 f->buf_size = pending;
473
474 len = f->get_buffer(f->opaque, f->buf + pending, f->buf_offset,
475 IO_BUF_SIZE - pending);
aliguoria672b462008-11-11 21:33:36 +0000476 if (len > 0) {
Juan Quintela0046c452011-09-30 19:28:45 +0200477 f->buf_size += len;
aliguoria672b462008-11-11 21:33:36 +0000478 f->buf_offset += len;
Juan Quintelafa39a302011-10-25 19:18:58 +0200479 } else if (len == 0) {
480 f->last_error = -EIO;
aliguoria672b462008-11-11 21:33:36 +0000481 } else if (len != -EAGAIN)
Juan Quintela3961b4d2011-10-05 01:05:21 +0200482 f->last_error = len;
aliguoria672b462008-11-11 21:33:36 +0000483}
484
485int qemu_fclose(QEMUFile *f)
486{
487 int ret = 0;
488 qemu_fflush(f);
489 if (f->close)
490 ret = f->close(f->opaque);
Anthony Liguori7267c092011-08-20 22:09:37 -0500491 g_free(f);
aliguoria672b462008-11-11 21:33:36 +0000492 return ret;
493}
494
495void qemu_file_put_notify(QEMUFile *f)
496{
497 f->put_buffer(f->opaque, NULL, 0, 0);
498}
499
500void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
501{
502 int l;
503
Juan Quintela3961b4d2011-10-05 01:05:21 +0200504 if (!f->last_error && f->is_write == 0 && f->buf_index > 0) {
aliguoria672b462008-11-11 21:33:36 +0000505 fprintf(stderr,
506 "Attempted to write to buffer while read buffer is not empty\n");
507 abort();
508 }
509
Juan Quintela3961b4d2011-10-05 01:05:21 +0200510 while (!f->last_error && size > 0) {
aliguoria672b462008-11-11 21:33:36 +0000511 l = IO_BUF_SIZE - f->buf_index;
512 if (l > size)
513 l = size;
514 memcpy(f->buf + f->buf_index, buf, l);
515 f->is_write = 1;
516 f->buf_index += l;
517 buf += l;
518 size -= l;
519 if (f->buf_index >= IO_BUF_SIZE)
520 qemu_fflush(f);
521 }
522}
523
524void qemu_put_byte(QEMUFile *f, int v)
525{
Juan Quintela3961b4d2011-10-05 01:05:21 +0200526 if (!f->last_error && f->is_write == 0 && f->buf_index > 0) {
aliguoria672b462008-11-11 21:33:36 +0000527 fprintf(stderr,
528 "Attempted to write to buffer while read buffer is not empty\n");
529 abort();
530 }
531
532 f->buf[f->buf_index++] = v;
533 f->is_write = 1;
534 if (f->buf_index >= IO_BUF_SIZE)
535 qemu_fflush(f);
536}
537
Juan Quintelac6380722011-10-04 15:28:31 +0200538static void qemu_file_skip(QEMUFile *f, int size)
aliguoria672b462008-11-11 21:33:36 +0000539{
Juan Quintelac6380722011-10-04 15:28:31 +0200540 if (f->buf_index + size <= f->buf_size) {
541 f->buf_index += size;
aliguoria672b462008-11-11 21:33:36 +0000542 }
aliguoria672b462008-11-11 21:33:36 +0000543}
544
Juan Quintelac6380722011-10-04 15:28:31 +0200545static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
Juan Quintela811814b2010-07-26 21:38:43 +0200546{
Juan Quintelac6380722011-10-04 15:28:31 +0200547 int pending;
548 int index;
Juan Quintela811814b2010-07-26 21:38:43 +0200549
Juan Quintelab9ce1452011-10-04 13:55:32 +0200550 if (f->is_write) {
Juan Quintela811814b2010-07-26 21:38:43 +0200551 abort();
Juan Quintela811814b2010-07-26 21:38:43 +0200552 }
Juan Quintela811814b2010-07-26 21:38:43 +0200553
Juan Quintelac6380722011-10-04 15:28:31 +0200554 index = f->buf_index + offset;
555 pending = f->buf_size - index;
556 if (pending < size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200557 qemu_fill_buffer(f);
Juan Quintelac6380722011-10-04 15:28:31 +0200558 index = f->buf_index + offset;
559 pending = f->buf_size - index;
560 }
561
562 if (pending <= 0) {
563 return 0;
564 }
565 if (size > pending) {
566 size = pending;
567 }
568
569 memcpy(buf, f->buf + index, size);
570 return size;
571}
572
573int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
574{
575 int pending = size;
576 int done = 0;
577
578 while (pending > 0) {
579 int res;
580
581 res = qemu_peek_buffer(f, buf, pending, 0);
582 if (res == 0) {
583 return done;
584 }
585 qemu_file_skip(f, res);
586 buf += res;
587 pending -= res;
588 done += res;
589 }
590 return done;
591}
592
593static int qemu_peek_byte(QEMUFile *f, int offset)
594{
595 int index = f->buf_index + offset;
596
597 if (f->is_write) {
598 abort();
599 }
600
601 if (index >= f->buf_size) {
602 qemu_fill_buffer(f);
603 index = f->buf_index + offset;
604 if (index >= f->buf_size) {
Juan Quintela811814b2010-07-26 21:38:43 +0200605 return 0;
Juan Quintelab9ce1452011-10-04 13:55:32 +0200606 }
Juan Quintela811814b2010-07-26 21:38:43 +0200607 }
Juan Quintelac6380722011-10-04 15:28:31 +0200608 return f->buf[index];
Juan Quintela811814b2010-07-26 21:38:43 +0200609}
610
aliguoria672b462008-11-11 21:33:36 +0000611int qemu_get_byte(QEMUFile *f)
612{
Juan Quintela65f3bb32011-10-06 14:29:32 +0200613 int result;
aliguoria672b462008-11-11 21:33:36 +0000614
Juan Quintelac6380722011-10-04 15:28:31 +0200615 result = qemu_peek_byte(f, 0);
616 qemu_file_skip(f, 1);
Juan Quintela65f3bb32011-10-06 14:29:32 +0200617 return result;
aliguoria672b462008-11-11 21:33:36 +0000618}
619
620int64_t qemu_ftell(QEMUFile *f)
621{
622 return f->buf_offset - f->buf_size + f->buf_index;
623}
624
625int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
626{
627 if (whence == SEEK_SET) {
628 /* nothing to do */
629 } else if (whence == SEEK_CUR) {
630 pos += qemu_ftell(f);
631 } else {
632 /* SEEK_END not supported */
633 return -1;
634 }
635 if (f->put_buffer) {
636 qemu_fflush(f);
637 f->buf_offset = pos;
638 } else {
639 f->buf_offset = pos;
640 f->buf_index = 0;
641 f->buf_size = 0;
642 }
643 return pos;
644}
645
646int qemu_file_rate_limit(QEMUFile *f)
647{
648 if (f->rate_limit)
649 return f->rate_limit(f->opaque);
650
651 return 0;
652}
653
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200654int64_t qemu_file_get_rate_limit(QEMUFile *f)
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200655{
656 if (f->get_rate_limit)
657 return f->get_rate_limit(f->opaque);
658
659 return 0;
660}
661
Michael S. Tsirkin3d002df2010-11-23 19:05:54 +0200662int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
Glauber Costa19629532009-05-20 18:26:57 -0400663{
Glauber Costa0bb05ea2009-07-14 18:26:51 -0400664 /* any failed or completed migration keeps its state to allow probing of
665 * migration data, but has no associated file anymore */
666 if (f && f->set_rate_limit)
Glauber Costa19629532009-05-20 18:26:57 -0400667 return f->set_rate_limit(f->opaque, new_rate);
668
669 return 0;
670}
671
aliguoria672b462008-11-11 21:33:36 +0000672void qemu_put_be16(QEMUFile *f, unsigned int v)
673{
674 qemu_put_byte(f, v >> 8);
675 qemu_put_byte(f, v);
676}
677
678void qemu_put_be32(QEMUFile *f, unsigned int v)
679{
680 qemu_put_byte(f, v >> 24);
681 qemu_put_byte(f, v >> 16);
682 qemu_put_byte(f, v >> 8);
683 qemu_put_byte(f, v);
684}
685
686void qemu_put_be64(QEMUFile *f, uint64_t v)
687{
688 qemu_put_be32(f, v >> 32);
689 qemu_put_be32(f, v);
690}
691
692unsigned int qemu_get_be16(QEMUFile *f)
693{
694 unsigned int v;
695 v = qemu_get_byte(f) << 8;
696 v |= qemu_get_byte(f);
697 return v;
698}
699
700unsigned int qemu_get_be32(QEMUFile *f)
701{
702 unsigned int v;
703 v = qemu_get_byte(f) << 24;
704 v |= qemu_get_byte(f) << 16;
705 v |= qemu_get_byte(f) << 8;
706 v |= qemu_get_byte(f);
707 return v;
708}
709
710uint64_t qemu_get_be64(QEMUFile *f)
711{
712 uint64_t v;
713 v = (uint64_t)qemu_get_be32(f) << 32;
714 v |= qemu_get_be32(f);
715 return v;
716}
717
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200718
719/* timer */
720
721void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
722{
723 uint64_t expire_time;
724
725 expire_time = qemu_timer_expire_time_ns(ts);
726 qemu_put_be64(f, expire_time);
727}
728
729void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
730{
731 uint64_t expire_time;
732
733 expire_time = qemu_get_be64(f);
734 if (expire_time != -1) {
735 qemu_mod_timer_ns(ts, expire_time);
736 } else {
737 qemu_del_timer(ts);
738 }
739}
740
741
Gerd Hoffmanncdae5cf2010-11-01 15:51:54 +0100742/* bool */
743
744static int get_bool(QEMUFile *f, void *pv, size_t size)
745{
746 bool *v = pv;
747 *v = qemu_get_byte(f);
748 return 0;
749}
750
751static void put_bool(QEMUFile *f, void *pv, size_t size)
752{
753 bool *v = pv;
754 qemu_put_byte(f, *v);
755}
756
757const VMStateInfo vmstate_info_bool = {
758 .name = "bool",
759 .get = get_bool,
760 .put = put_bool,
761};
762
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200763/* 8 bit int */
764
765static int get_int8(QEMUFile *f, void *pv, size_t size)
766{
767 int8_t *v = pv;
768 qemu_get_s8s(f, v);
769 return 0;
770}
771
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200772static void put_int8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200773{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200774 int8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200775 qemu_put_s8s(f, v);
776}
777
778const VMStateInfo vmstate_info_int8 = {
779 .name = "int8",
780 .get = get_int8,
781 .put = put_int8,
782};
783
784/* 16 bit int */
785
786static int get_int16(QEMUFile *f, void *pv, size_t size)
787{
788 int16_t *v = pv;
789 qemu_get_sbe16s(f, v);
790 return 0;
791}
792
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200793static void put_int16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200794{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200795 int16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200796 qemu_put_sbe16s(f, v);
797}
798
799const VMStateInfo vmstate_info_int16 = {
800 .name = "int16",
801 .get = get_int16,
802 .put = put_int16,
803};
804
805/* 32 bit int */
806
807static int get_int32(QEMUFile *f, void *pv, size_t size)
808{
809 int32_t *v = pv;
810 qemu_get_sbe32s(f, v);
811 return 0;
812}
813
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200814static void put_int32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200815{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200816 int32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200817 qemu_put_sbe32s(f, v);
818}
819
820const VMStateInfo vmstate_info_int32 = {
821 .name = "int32",
822 .get = get_int32,
823 .put = put_int32,
824};
825
Juan Quintela82501662009-08-20 19:42:32 +0200826/* 32 bit int. See that the received value is the same than the one
827 in the field */
828
829static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
830{
831 int32_t *v = pv;
832 int32_t v2;
833 qemu_get_sbe32s(f, &v2);
834
835 if (*v == v2)
836 return 0;
837 return -EINVAL;
838}
839
840const VMStateInfo vmstate_info_int32_equal = {
841 .name = "int32 equal",
842 .get = get_int32_equal,
843 .put = put_int32,
844};
845
Juan Quintela0a031e02009-08-20 19:42:37 +0200846/* 32 bit int. See that the received value is the less or the same
847 than the one in the field */
848
849static int get_int32_le(QEMUFile *f, void *pv, size_t size)
850{
851 int32_t *old = pv;
852 int32_t new;
853 qemu_get_sbe32s(f, &new);
854
855 if (*old <= new)
856 return 0;
857 return -EINVAL;
858}
859
860const VMStateInfo vmstate_info_int32_le = {
861 .name = "int32 equal",
862 .get = get_int32_le,
863 .put = put_int32,
864};
865
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200866/* 64 bit int */
867
868static int get_int64(QEMUFile *f, void *pv, size_t size)
869{
870 int64_t *v = pv;
871 qemu_get_sbe64s(f, v);
872 return 0;
873}
874
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200875static void put_int64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200876{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200877 int64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200878 qemu_put_sbe64s(f, v);
879}
880
881const VMStateInfo vmstate_info_int64 = {
882 .name = "int64",
883 .get = get_int64,
884 .put = put_int64,
885};
886
887/* 8 bit unsigned int */
888
889static int get_uint8(QEMUFile *f, void *pv, size_t size)
890{
891 uint8_t *v = pv;
892 qemu_get_8s(f, v);
893 return 0;
894}
895
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200896static void put_uint8(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200897{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200898 uint8_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200899 qemu_put_8s(f, v);
900}
901
902const VMStateInfo vmstate_info_uint8 = {
903 .name = "uint8",
904 .get = get_uint8,
905 .put = put_uint8,
906};
907
908/* 16 bit unsigned int */
909
910static int get_uint16(QEMUFile *f, void *pv, size_t size)
911{
912 uint16_t *v = pv;
913 qemu_get_be16s(f, v);
914 return 0;
915}
916
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200917static void put_uint16(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200918{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200919 uint16_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200920 qemu_put_be16s(f, v);
921}
922
923const VMStateInfo vmstate_info_uint16 = {
924 .name = "uint16",
925 .get = get_uint16,
926 .put = put_uint16,
927};
928
929/* 32 bit unsigned int */
930
931static int get_uint32(QEMUFile *f, void *pv, size_t size)
932{
933 uint32_t *v = pv;
934 qemu_get_be32s(f, v);
935 return 0;
936}
937
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200938static void put_uint32(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200939{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200940 uint32_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200941 qemu_put_be32s(f, v);
942}
943
944const VMStateInfo vmstate_info_uint32 = {
945 .name = "uint32",
946 .get = get_uint32,
947 .put = put_uint32,
948};
949
Juan Quintela9122a8f2011-03-10 12:33:48 +0100950/* 32 bit uint. See that the received value is the same than the one
951 in the field */
952
953static int get_uint32_equal(QEMUFile *f, void *pv, size_t size)
954{
955 uint32_t *v = pv;
956 uint32_t v2;
957 qemu_get_be32s(f, &v2);
958
959 if (*v == v2) {
960 return 0;
961 }
962 return -EINVAL;
963}
964
965const VMStateInfo vmstate_info_uint32_equal = {
966 .name = "uint32 equal",
967 .get = get_uint32_equal,
968 .put = put_uint32,
969};
970
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200971/* 64 bit unsigned int */
972
973static int get_uint64(QEMUFile *f, void *pv, size_t size)
974{
975 uint64_t *v = pv;
976 qemu_get_be64s(f, v);
977 return 0;
978}
979
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200980static void put_uint64(QEMUFile *f, void *pv, size_t size)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200981{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200982 uint64_t *v = pv;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200983 qemu_put_be64s(f, v);
984}
985
986const VMStateInfo vmstate_info_uint64 = {
987 .name = "uint64",
988 .get = get_uint64,
989 .put = put_uint64,
990};
991
Juan Quintela80cd83e2009-09-10 03:04:36 +0200992/* 8 bit int. See that the received value is the same than the one
993 in the field */
994
995static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
996{
997 uint8_t *v = pv;
998 uint8_t v2;
999 qemu_get_8s(f, &v2);
1000
1001 if (*v == v2)
1002 return 0;
1003 return -EINVAL;
1004}
1005
1006const VMStateInfo vmstate_info_uint8_equal = {
Juan Quintelaaa1cce62009-10-15 19:16:06 +02001007 .name = "uint8 equal",
Juan Quintela80cd83e2009-09-10 03:04:36 +02001008 .get = get_uint8_equal,
1009 .put = put_uint8,
1010};
1011
Juan Quinteladc3b83a2009-10-15 23:16:13 +02001012/* 16 bit unsigned int int. See that the received value is the same than the one
1013 in the field */
1014
1015static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
1016{
1017 uint16_t *v = pv;
1018 uint16_t v2;
1019 qemu_get_be16s(f, &v2);
1020
1021 if (*v == v2)
1022 return 0;
1023 return -EINVAL;
1024}
1025
1026const VMStateInfo vmstate_info_uint16_equal = {
1027 .name = "uint16 equal",
1028 .get = get_uint16_equal,
1029 .put = put_uint16,
1030};
1031
Juan Quinteladde04632009-08-20 19:42:26 +02001032/* timers */
1033
1034static int get_timer(QEMUFile *f, void *pv, size_t size)
1035{
1036 QEMUTimer *v = pv;
1037 qemu_get_timer(f, v);
1038 return 0;
1039}
1040
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001041static void put_timer(QEMUFile *f, void *pv, size_t size)
Juan Quinteladde04632009-08-20 19:42:26 +02001042{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001043 QEMUTimer *v = pv;
Juan Quinteladde04632009-08-20 19:42:26 +02001044 qemu_put_timer(f, v);
1045}
1046
1047const VMStateInfo vmstate_info_timer = {
1048 .name = "timer",
1049 .get = get_timer,
1050 .put = put_timer,
1051};
1052
Juan Quintela6f67c502009-08-20 19:42:35 +02001053/* uint8_t buffers */
1054
1055static int get_buffer(QEMUFile *f, void *pv, size_t size)
1056{
1057 uint8_t *v = pv;
1058 qemu_get_buffer(f, v, size);
1059 return 0;
1060}
1061
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001062static void put_buffer(QEMUFile *f, void *pv, size_t size)
Juan Quintela6f67c502009-08-20 19:42:35 +02001063{
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001064 uint8_t *v = pv;
Juan Quintela6f67c502009-08-20 19:42:35 +02001065 qemu_put_buffer(f, v, size);
1066}
1067
1068const VMStateInfo vmstate_info_buffer = {
1069 .name = "buffer",
1070 .get = get_buffer,
1071 .put = put_buffer,
1072};
1073
Juan Quintela76507c72009-10-19 15:46:28 +02001074/* unused buffers: space that was used for some fields that are
Stefan Weil61cc8702011-04-13 22:45:22 +02001075 not useful anymore */
Juan Quintela76507c72009-10-19 15:46:28 +02001076
1077static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
1078{
Jan Kiszka21174c32009-12-02 12:36:35 +01001079 uint8_t buf[1024];
1080 int block_len;
1081
1082 while (size > 0) {
1083 block_len = MIN(sizeof(buf), size);
1084 size -= block_len;
1085 qemu_get_buffer(f, buf, block_len);
1086 }
1087 return 0;
Juan Quintela76507c72009-10-19 15:46:28 +02001088}
1089
1090static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
1091{
Jan Kiszka21174c32009-12-02 12:36:35 +01001092 static const uint8_t buf[1024];
1093 int block_len;
1094
1095 while (size > 0) {
1096 block_len = MIN(sizeof(buf), size);
1097 size -= block_len;
1098 qemu_put_buffer(f, buf, block_len);
1099 }
Juan Quintela76507c72009-10-19 15:46:28 +02001100}
1101
1102const VMStateInfo vmstate_info_unused_buffer = {
1103 .name = "unused_buffer",
1104 .get = get_unused_buffer,
1105 .put = put_unused_buffer,
1106};
1107
Alex Williamson7685ee62010-06-25 11:09:14 -06001108typedef struct CompatEntry {
1109 char idstr[256];
1110 int instance_id;
1111} CompatEntry;
1112
aliguoria672b462008-11-11 21:33:36 +00001113typedef struct SaveStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001114 QTAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001115 char idstr[256];
1116 int instance_id;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001117 int alias_id;
aliguoria672b462008-11-11 21:33:36 +00001118 int version_id;
1119 int section_id;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001120 SaveSetParamsHandler *set_params;
aliguoria672b462008-11-11 21:33:36 +00001121 SaveLiveStateHandler *save_live_state;
1122 SaveStateHandler *save_state;
1123 LoadStateHandler *load_state;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001124 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +00001125 void *opaque;
Alex Williamson7685ee62010-06-25 11:09:14 -06001126 CompatEntry *compat;
Cam Macdonell24312962010-07-26 18:11:00 -06001127 int no_migrate;
aliguoria672b462008-11-11 21:33:36 +00001128} SaveStateEntry;
1129
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001130
Blue Swirl72cf2d42009-09-12 07:36:22 +00001131static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
1132 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001133static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +00001134
Juan Quintela8718e992009-09-01 02:12:31 +02001135static int calculate_new_instance_id(const char *idstr)
1136{
1137 SaveStateEntry *se;
1138 int instance_id = 0;
1139
Blue Swirl72cf2d42009-09-12 07:36:22 +00001140 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +02001141 if (strcmp(idstr, se->idstr) == 0
1142 && instance_id <= se->instance_id) {
1143 instance_id = se->instance_id + 1;
1144 }
1145 }
1146 return instance_id;
1147}
1148
Alex Williamson7685ee62010-06-25 11:09:14 -06001149static int calculate_compat_instance_id(const char *idstr)
1150{
1151 SaveStateEntry *se;
1152 int instance_id = 0;
1153
1154 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1155 if (!se->compat)
1156 continue;
1157
1158 if (strcmp(idstr, se->compat->idstr) == 0
1159 && instance_id <= se->compat->instance_id) {
1160 instance_id = se->compat->instance_id + 1;
1161 }
1162 }
1163 return instance_id;
1164}
1165
aliguoria672b462008-11-11 21:33:36 +00001166/* TODO: Individual devices generally have very little idea about the rest
1167 of the system, so instance_id should be removed/replaced.
1168 Meanwhile pass -1 as instance_id if you do not already have a clearly
1169 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -06001170int register_savevm_live(DeviceState *dev,
1171 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001172 int instance_id,
1173 int version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001174 SaveSetParamsHandler *set_params,
aliguoria672b462008-11-11 21:33:36 +00001175 SaveLiveStateHandler *save_live_state,
1176 SaveStateHandler *save_state,
1177 LoadStateHandler *load_state,
1178 void *opaque)
1179{
Juan Quintela8718e992009-09-01 02:12:31 +02001180 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +00001181
Anthony Liguori7267c092011-08-20 22:09:37 -05001182 se = g_malloc0(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +00001183 se->version_id = version_id;
1184 se->section_id = global_section_id++;
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001185 se->set_params = set_params;
aliguoria672b462008-11-11 21:33:36 +00001186 se->save_live_state = save_live_state;
1187 se->save_state = save_state;
1188 se->load_state = load_state;
1189 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001190 se->vmsd = NULL;
Cam Macdonell24312962010-07-26 18:11:00 -06001191 se->no_migrate = 0;
aliguoria672b462008-11-11 21:33:36 +00001192
Alex Williamson7685ee62010-06-25 11:09:14 -06001193 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1194 char *id = dev->parent_bus->info->get_dev_path(dev);
1195 if (id) {
1196 pstrcpy(se->idstr, sizeof(se->idstr), id);
1197 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001198 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001199
Anthony Liguori7267c092011-08-20 22:09:37 -05001200 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001201 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
1202 se->compat->instance_id = instance_id == -1 ?
1203 calculate_compat_instance_id(idstr) : instance_id;
1204 instance_id = -1;
1205 }
1206 }
1207 pstrcat(se->idstr, sizeof(se->idstr), idstr);
1208
Juan Quintela8718e992009-09-01 02:12:31 +02001209 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001210 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001211 } else {
1212 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +00001213 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001214 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001215 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001216 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +00001217 return 0;
1218}
1219
Alex Williamson0be71e32010-06-25 11:09:07 -06001220int register_savevm(DeviceState *dev,
1221 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +00001222 int instance_id,
1223 int version_id,
1224 SaveStateHandler *save_state,
1225 LoadStateHandler *load_state,
1226 void *opaque)
1227{
Alex Williamson0be71e32010-06-25 11:09:07 -06001228 return register_savevm_live(dev, idstr, instance_id, version_id,
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001229 NULL, NULL, save_state, load_state, opaque);
aliguoria672b462008-11-11 21:33:36 +00001230}
1231
Alex Williamson0be71e32010-06-25 11:09:07 -06001232void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +00001233{
Juan Quintela8718e992009-09-01 02:12:31 +02001234 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001235 char id[256] = "";
1236
1237 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1238 char *path = dev->parent_bus->info->get_dev_path(dev);
1239 if (path) {
1240 pstrcpy(id, sizeof(id), path);
1241 pstrcat(id, sizeof(id), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001242 g_free(path);
Alex Williamson7685ee62010-06-25 11:09:14 -06001243 }
1244 }
1245 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +00001246
Blue Swirl72cf2d42009-09-12 07:36:22 +00001247 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001248 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001249 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001250 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001251 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001252 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001253 g_free(se);
aliguori41bd13a2009-04-17 17:10:59 +00001254 }
aliguori41bd13a2009-04-17 17:10:59 +00001255 }
1256}
1257
Cam Macdonell24312962010-07-26 18:11:00 -06001258/* mark a device as not to be migrated, that is the device should be
1259 unplugged before migration */
1260void register_device_unmigratable(DeviceState *dev, const char *idstr,
1261 void *opaque)
1262{
1263 SaveStateEntry *se;
1264 char id[256] = "";
1265
1266 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1267 char *path = dev->parent_bus->info->get_dev_path(dev);
1268 if (path) {
1269 pstrcpy(id, sizeof(id), path);
1270 pstrcat(id, sizeof(id), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001271 g_free(path);
Cam Macdonell24312962010-07-26 18:11:00 -06001272 }
1273 }
1274 pstrcat(id, sizeof(id), idstr);
1275
1276 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1277 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
1278 se->no_migrate = 1;
1279 }
1280 }
1281}
1282
Alex Williamson0be71e32010-06-25 11:09:07 -06001283int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001284 const VMStateDescription *vmsd,
1285 void *opaque, int alias_id,
1286 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001287{
Juan Quintela8718e992009-09-01 02:12:31 +02001288 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001289
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001290 /* If this triggers, alias support can be dropped for the vmsd. */
1291 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
1292
Anthony Liguori7267c092011-08-20 22:09:37 -05001293 se = g_malloc0(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001294 se->version_id = vmsd->version_id;
1295 se->section_id = global_section_id++;
1296 se->save_live_state = NULL;
1297 se->save_state = NULL;
1298 se->load_state = NULL;
1299 se->opaque = opaque;
1300 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001301 se->alias_id = alias_id;
Gerd Hoffmann2837c8e2011-07-08 10:44:35 +02001302 se->no_migrate = vmsd->unmigratable;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001303
Alex Williamson7685ee62010-06-25 11:09:14 -06001304 if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) {
1305 char *id = dev->parent_bus->info->get_dev_path(dev);
1306 if (id) {
1307 pstrcpy(se->idstr, sizeof(se->idstr), id);
1308 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -05001309 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -06001310
Anthony Liguori7267c092011-08-20 22:09:37 -05001311 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -06001312 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1313 se->compat->instance_id = instance_id == -1 ?
1314 calculate_compat_instance_id(vmsd->name) : instance_id;
1315 instance_id = -1;
1316 }
1317 }
1318 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
1319
Juan Quintela8718e992009-09-01 02:12:31 +02001320 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -06001321 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +02001322 } else {
1323 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001324 }
Alex Williamson7685ee62010-06-25 11:09:14 -06001325 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +02001326 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001327 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001328 return 0;
1329}
1330
Alex Williamson0be71e32010-06-25 11:09:07 -06001331int vmstate_register(DeviceState *dev, int instance_id,
1332 const VMStateDescription *vmsd, void *opaque)
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001333{
Alex Williamson0be71e32010-06-25 11:09:07 -06001334 return vmstate_register_with_alias_id(dev, instance_id, vmsd,
1335 opaque, -1, 0);
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001336}
1337
Alex Williamson0be71e32010-06-25 11:09:07 -06001338void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
1339 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001340{
Juan Quintela1eb75382009-09-10 03:04:29 +02001341 SaveStateEntry *se, *new_se;
1342
Blue Swirl72cf2d42009-09-12 07:36:22 +00001343 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +02001344 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001345 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -06001346 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001347 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -06001348 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001349 g_free(se);
Juan Quintela1eb75382009-09-10 03:04:29 +02001350 }
1351 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001352}
1353
Juan Quintela811814b2010-07-26 21:38:43 +02001354static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1355 void *opaque);
1356static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1357 void *opaque);
1358
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001359int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1360 void *opaque, int version_id)
1361{
1362 VMStateField *field = vmsd->fields;
Juan Quintela811814b2010-07-26 21:38:43 +02001363 int ret;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001364
1365 if (version_id > vmsd->version_id) {
1366 return -EINVAL;
1367 }
1368 if (version_id < vmsd->minimum_version_id_old) {
1369 return -EINVAL;
1370 }
1371 if (version_id < vmsd->minimum_version_id) {
1372 return vmsd->load_state_old(f, opaque, version_id);
1373 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001374 if (vmsd->pre_load) {
1375 int ret = vmsd->pre_load(opaque);
1376 if (ret)
1377 return ret;
1378 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001379 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001380 if ((field->field_exists &&
1381 field->field_exists(opaque, version_id)) ||
1382 (!field->field_exists &&
1383 field->version_id <= version_id)) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001384 void *base_addr = opaque + field->offset;
Juan Quintela811814b2010-07-26 21:38:43 +02001385 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001386 int size = field->size;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001387
Juan Quintelae61a1e02009-12-02 12:36:38 +01001388 if (field->flags & VMS_VBUFFER) {
1389 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001390 if (field->flags & VMS_MULTIPLY) {
1391 size *= field->size;
1392 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001393 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001394 if (field->flags & VMS_ARRAY) {
1395 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001396 } else if (field->flags & VMS_VARRAY_INT32) {
1397 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelaa624b082011-03-10 12:33:50 +01001398 } else if (field->flags & VMS_VARRAY_UINT32) {
1399 n_elems = *(uint32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001400 } else if (field->flags & VMS_VARRAY_UINT16) {
1401 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintela82fa39b2011-03-10 12:33:49 +01001402 } else if (field->flags & VMS_VARRAY_UINT8) {
1403 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001404 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001405 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001406 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001407 }
1408 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001409 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001410
Juan Quintela19df4382009-09-29 22:48:41 +02001411 if (field->flags & VMS_ARRAY_OF_POINTER) {
1412 addr = *(void **)addr;
1413 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001414 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001415 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001416 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001417 ret = field->info->get(f, addr, size);
Juan Quintelaec245e22009-08-20 19:42:29 +02001418
1419 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001420 if (ret < 0) {
1421 return ret;
1422 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001423 }
1424 }
1425 field++;
1426 }
Juan Quintela811814b2010-07-26 21:38:43 +02001427 ret = vmstate_subsection_load(f, vmsd, opaque);
1428 if (ret != 0) {
1429 return ret;
1430 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001431 if (vmsd->post_load) {
Juan Quintelae59fb372009-09-29 22:48:21 +02001432 return vmsd->post_load(opaque, version_id);
Juan Quintela752ff2f2009-09-10 03:04:30 +02001433 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001434 return 0;
1435}
1436
1437void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
Juan Quintela84e2e3e2009-09-29 22:48:20 +02001438 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001439{
1440 VMStateField *field = vmsd->fields;
1441
Juan Quintela8fb07912009-09-10 03:04:32 +02001442 if (vmsd->pre_save) {
1443 vmsd->pre_save(opaque);
1444 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001445 while(field->name) {
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001446 if (!field->field_exists ||
1447 field->field_exists(opaque, vmsd->version_id)) {
1448 void *base_addr = opaque + field->offset;
1449 int i, n_elems = 1;
Juan Quintelae61a1e02009-12-02 12:36:38 +01001450 int size = field->size;
Juan Quinteladde04632009-08-20 19:42:26 +02001451
Juan Quintelae61a1e02009-12-02 12:36:38 +01001452 if (field->flags & VMS_VBUFFER) {
1453 size = *(int32_t *)(opaque+field->size_offset);
Juan Quintela33599e22009-12-02 12:36:43 +01001454 if (field->flags & VMS_MULTIPLY) {
1455 size *= field->size;
1456 }
Juan Quintelae61a1e02009-12-02 12:36:38 +01001457 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001458 if (field->flags & VMS_ARRAY) {
1459 n_elems = field->num;
Juan Quintelad6698282009-10-16 11:27:17 +02001460 } else if (field->flags & VMS_VARRAY_INT32) {
1461 n_elems = *(int32_t *)(opaque+field->num_offset);
Juan Quintelabdb49412009-10-16 11:35:18 +02001462 } else if (field->flags & VMS_VARRAY_UINT16) {
1463 n_elems = *(uint16_t *)(opaque+field->num_offset);
Juan Quintelab7844212011-03-15 15:53:25 +01001464 } else if (field->flags & VMS_VARRAY_UINT8) {
1465 n_elems = *(uint8_t *)(opaque+field->num_offset);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001466 }
1467 if (field->flags & VMS_POINTER) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001468 base_addr = *(void **)base_addr + field->start;
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001469 }
1470 for (i = 0; i < n_elems; i++) {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001471 void *addr = base_addr + size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001472
Juan Quintela85953872009-12-02 12:36:37 +01001473 if (field->flags & VMS_ARRAY_OF_POINTER) {
1474 addr = *(void **)addr;
1475 }
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001476 if (field->flags & VMS_STRUCT) {
1477 vmstate_save_state(f, field->vmsd, addr);
1478 } else {
Juan Quintelae61a1e02009-12-02 12:36:38 +01001479 field->info->put(f, addr, size);
Juan Quintelaf11f6a52009-09-29 22:49:07 +02001480 }
Juan Quintelaec245e22009-08-20 19:42:29 +02001481 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001482 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001483 field++;
1484 }
Juan Quintela811814b2010-07-26 21:38:43 +02001485 vmstate_subsection_save(f, vmsd, opaque);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001486}
1487
Juan Quintela4082be42009-08-20 19:42:24 +02001488static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1489{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001490 if (!se->vmsd) { /* Old style */
1491 return se->load_state(f, se->opaque, version_id);
1492 }
1493 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001494}
1495
Alex Williamsondc912122011-01-11 14:39:43 -07001496static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
Juan Quintela4082be42009-08-20 19:42:24 +02001497{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001498 if (!se->vmsd) { /* Old style */
1499 se->save_state(f, se->opaque);
Alex Williamsondc912122011-01-11 14:39:43 -07001500 return;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001501 }
1502 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +02001503}
1504
aliguoria672b462008-11-11 21:33:36 +00001505#define QEMU_VM_FILE_MAGIC 0x5145564d
1506#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1507#define QEMU_VM_FILE_VERSION 0x00000003
1508
1509#define QEMU_VM_EOF 0x00
1510#define QEMU_VM_SECTION_START 0x01
1511#define QEMU_VM_SECTION_PART 0x02
1512#define QEMU_VM_SECTION_END 0x03
1513#define QEMU_VM_SECTION_FULL 0x04
Juan Quintela811814b2010-07-26 21:38:43 +02001514#define QEMU_VM_SUBSECTION 0x05
aliguoria672b462008-11-11 21:33:36 +00001515
Alex Williamsondc912122011-01-11 14:39:43 -07001516bool qemu_savevm_state_blocked(Monitor *mon)
1517{
1518 SaveStateEntry *se;
1519
1520 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1521 if (se->no_migrate) {
1522 monitor_printf(mon, "state blocked by non-migratable device '%s'\n",
1523 se->idstr);
1524 return true;
1525 }
1526 }
1527 return false;
1528}
1529
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001530int qemu_savevm_state_begin(Monitor *mon, QEMUFile *f, int blk_enable,
1531 int shared)
aliguoria672b462008-11-11 21:33:36 +00001532{
1533 SaveStateEntry *se;
Juan Quintela39346382011-09-22 11:02:14 +02001534 int ret;
aliguoria672b462008-11-11 21:33:36 +00001535
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02001536 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1537 if(se->set_params == NULL) {
1538 continue;
1539 }
1540 se->set_params(blk_enable, shared, se->opaque);
1541 }
1542
aliguoria672b462008-11-11 21:33:36 +00001543 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1544 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1545
Blue Swirl72cf2d42009-09-12 07:36:22 +00001546 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001547 int len;
1548
1549 if (se->save_live_state == NULL)
1550 continue;
1551
1552 /* Section type */
1553 qemu_put_byte(f, QEMU_VM_SECTION_START);
1554 qemu_put_be32(f, se->section_id);
1555
1556 /* ID string */
1557 len = strlen(se->idstr);
1558 qemu_put_byte(f, len);
1559 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1560
1561 qemu_put_be32(f, se->instance_id);
1562 qemu_put_be32(f, se->version_id);
1563
Juan Quintela29757252011-10-19 15:22:18 +02001564 ret = se->save_live_state(mon, f, QEMU_VM_SECTION_START, se->opaque);
1565 if (ret < 0) {
1566 qemu_savevm_state_cancel(mon, f);
1567 return ret;
1568 }
aliguoria672b462008-11-11 21:33:36 +00001569 }
Juan Quintela624b9cc2011-10-05 01:02:52 +02001570 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001571 if (ret != 0) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001572 qemu_savevm_state_cancel(mon, f);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001573 }
aliguoria672b462008-11-11 21:33:36 +00001574
Juan Quintela39346382011-09-22 11:02:14 +02001575 return ret;
1576
aliguoria672b462008-11-11 21:33:36 +00001577}
1578
Juan Quintela39346382011-09-22 11:02:14 +02001579/*
1580 * this funtion has three return values:
1581 * negative: there was one error, and we have -errno.
1582 * 0 : We haven't finished, caller have to go again
1583 * 1 : We have finished, we can go to complete phase
1584 */
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001585int qemu_savevm_state_iterate(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001586{
1587 SaveStateEntry *se;
1588 int ret = 1;
1589
Blue Swirl72cf2d42009-09-12 07:36:22 +00001590 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001591 if (se->save_live_state == NULL)
1592 continue;
1593
1594 /* Section type */
1595 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1596 qemu_put_be32(f, se->section_id);
1597
Jan Kiszka90697be2009-12-01 15:19:55 +01001598 ret = se->save_live_state(mon, f, QEMU_VM_SECTION_PART, se->opaque);
Juan Quintela29757252011-10-19 15:22:18 +02001599 if (ret <= 0) {
Jan Kiszka90697be2009-12-01 15:19:55 +01001600 /* Do not proceed to the next vmstate before this one reported
1601 completion of the current stage. This serializes the migration
1602 and reduces the probability that a faster changing state is
1603 synchronized over and over again. */
1604 break;
1605 }
aliguoria672b462008-11-11 21:33:36 +00001606 }
Juan Quintela39346382011-09-22 11:02:14 +02001607 if (ret != 0) {
1608 return ret;
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001609 }
Juan Quintela624b9cc2011-10-05 01:02:52 +02001610 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001611 if (ret != 0) {
1612 qemu_savevm_state_cancel(mon, f);
1613 }
1614 return ret;
aliguoria672b462008-11-11 21:33:36 +00001615}
1616
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001617int qemu_savevm_state_complete(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001618{
1619 SaveStateEntry *se;
Juan Quintela29757252011-10-19 15:22:18 +02001620 int ret;
aliguoria672b462008-11-11 21:33:36 +00001621
Jan Kiszkaea375f92010-03-01 19:10:30 +01001622 cpu_synchronize_all_states();
1623
Blue Swirl72cf2d42009-09-12 07:36:22 +00001624 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001625 if (se->save_live_state == NULL)
1626 continue;
1627
1628 /* Section type */
1629 qemu_put_byte(f, QEMU_VM_SECTION_END);
1630 qemu_put_be32(f, se->section_id);
1631
Juan Quintela29757252011-10-19 15:22:18 +02001632 ret = se->save_live_state(mon, f, QEMU_VM_SECTION_END, se->opaque);
1633 if (ret < 0) {
1634 return ret;
1635 }
aliguoria672b462008-11-11 21:33:36 +00001636 }
1637
Blue Swirl72cf2d42009-09-12 07:36:22 +00001638 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001639 int len;
1640
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001641 if (se->save_state == NULL && se->vmsd == NULL)
aliguoria672b462008-11-11 21:33:36 +00001642 continue;
1643
1644 /* Section type */
1645 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1646 qemu_put_be32(f, se->section_id);
1647
1648 /* ID string */
1649 len = strlen(se->idstr);
1650 qemu_put_byte(f, len);
1651 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1652
1653 qemu_put_be32(f, se->instance_id);
1654 qemu_put_be32(f, se->version_id);
1655
Alex Williamsondc912122011-01-11 14:39:43 -07001656 vmstate_save(f, se);
aliguoria672b462008-11-11 21:33:36 +00001657 }
1658
1659 qemu_put_byte(f, QEMU_VM_EOF);
1660
Juan Quintela624b9cc2011-10-05 01:02:52 +02001661 return qemu_file_get_error(f);
aliguoria672b462008-11-11 21:33:36 +00001662}
1663
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001664void qemu_savevm_state_cancel(Monitor *mon, QEMUFile *f)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001665{
1666 SaveStateEntry *se;
1667
1668 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
1669 if (se->save_live_state) {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001670 se->save_live_state(mon, f, -1, se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +01001671 }
1672 }
1673}
1674
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001675static int qemu_savevm_state(Monitor *mon, QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +00001676{
aliguoria672b462008-11-11 21:33:36 +00001677 int ret;
1678
Alex Williamsondc912122011-01-11 14:39:43 -07001679 if (qemu_savevm_state_blocked(mon)) {
1680 ret = -EINVAL;
1681 goto out;
1682 }
1683
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001684 ret = qemu_savevm_state_begin(mon, f, 0, 0);
aliguoria672b462008-11-11 21:33:36 +00001685 if (ret < 0)
1686 goto out;
1687
1688 do {
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001689 ret = qemu_savevm_state_iterate(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001690 if (ret < 0)
1691 goto out;
1692 } while (ret == 0);
1693
Jan Kiszkaf327aa02009-11-30 18:21:21 +01001694 ret = qemu_savevm_state_complete(mon, f);
aliguoria672b462008-11-11 21:33:36 +00001695
1696out:
Juan Quintela39346382011-09-22 11:02:14 +02001697 if (ret == 0) {
Juan Quintela624b9cc2011-10-05 01:02:52 +02001698 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +02001699 }
aliguoria672b462008-11-11 21:33:36 +00001700
aliguoria672b462008-11-11 21:33:36 +00001701 return ret;
1702}
1703
1704static SaveStateEntry *find_se(const char *idstr, int instance_id)
1705{
1706 SaveStateEntry *se;
1707
Blue Swirl72cf2d42009-09-12 07:36:22 +00001708 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001709 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +02001710 (instance_id == se->instance_id ||
1711 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +00001712 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -06001713 /* Migrating from an older version? */
1714 if (strstr(se->idstr, idstr) && se->compat) {
1715 if (!strcmp(se->compat->idstr, idstr) &&
1716 (instance_id == se->compat->instance_id ||
1717 instance_id == se->alias_id))
1718 return se;
1719 }
aliguoria672b462008-11-11 21:33:36 +00001720 }
1721 return NULL;
1722}
1723
Juan Quintela811814b2010-07-26 21:38:43 +02001724static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
1725{
1726 while(sub && sub->needed) {
1727 if (strcmp(idstr, sub->vmsd->name) == 0) {
1728 return sub->vmsd;
1729 }
1730 sub++;
1731 }
1732 return NULL;
1733}
1734
1735static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
1736 void *opaque)
1737{
Juan Quintelac6380722011-10-04 15:28:31 +02001738 while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
Juan Quintela811814b2010-07-26 21:38:43 +02001739 char idstr[256];
1740 int ret;
Juan Quintelac6380722011-10-04 15:28:31 +02001741 uint8_t version_id, len, size;
Juan Quintela811814b2010-07-26 21:38:43 +02001742 const VMStateDescription *sub_vmsd;
1743
Juan Quintelac6380722011-10-04 15:28:31 +02001744 len = qemu_peek_byte(f, 1);
1745 if (len < strlen(vmsd->name) + 1) {
1746 /* subsection name has be be "section_name/a" */
1747 return 0;
1748 }
1749 size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
1750 if (size != len) {
1751 return 0;
1752 }
1753 idstr[size] = 0;
Juan Quintela811814b2010-07-26 21:38:43 +02001754
Juan Quintelac6380722011-10-04 15:28:31 +02001755 if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
1756 /* it don't have a valid subsection name */
1757 return 0;
1758 }
Juan Quintela3da9eeb2011-09-30 19:46:43 +02001759 sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
Juan Quintela811814b2010-07-26 21:38:43 +02001760 if (sub_vmsd == NULL) {
1761 return -ENOENT;
1762 }
Juan Quintelac6380722011-10-04 15:28:31 +02001763 qemu_file_skip(f, 1); /* subsection */
1764 qemu_file_skip(f, 1); /* len */
1765 qemu_file_skip(f, len); /* idstr */
1766 version_id = qemu_get_be32(f);
1767
Juan Quintela811814b2010-07-26 21:38:43 +02001768 ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
1769 if (ret) {
1770 return ret;
1771 }
1772 }
1773 return 0;
1774}
1775
1776static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
1777 void *opaque)
1778{
1779 const VMStateSubsection *sub = vmsd->subsections;
1780
1781 while (sub && sub->needed) {
1782 if (sub->needed(opaque)) {
1783 const VMStateDescription *vmsd = sub->vmsd;
1784 uint8_t len;
1785
1786 qemu_put_byte(f, QEMU_VM_SUBSECTION);
1787 len = strlen(vmsd->name);
1788 qemu_put_byte(f, len);
1789 qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
1790 qemu_put_be32(f, vmsd->version_id);
1791 vmstate_save_state(f, vmsd, opaque);
1792 }
1793 sub++;
1794 }
1795}
1796
aliguoria672b462008-11-11 21:33:36 +00001797typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001798 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001799 SaveStateEntry *se;
1800 int section_id;
1801 int version_id;
aliguoria672b462008-11-11 21:33:36 +00001802} LoadStateEntry;
1803
aliguoria672b462008-11-11 21:33:36 +00001804int qemu_loadvm_state(QEMUFile *f)
1805{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001806 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
1807 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001808 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00001809 uint8_t section_type;
1810 unsigned int v;
1811 int ret;
1812
Alex Williamsondc912122011-01-11 14:39:43 -07001813 if (qemu_savevm_state_blocked(default_mon)) {
1814 return -EINVAL;
1815 }
1816
aliguoria672b462008-11-11 21:33:36 +00001817 v = qemu_get_be32(f);
1818 if (v != QEMU_VM_FILE_MAGIC)
1819 return -EINVAL;
1820
1821 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02001822 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1823 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1824 return -ENOTSUP;
1825 }
aliguoria672b462008-11-11 21:33:36 +00001826 if (v != QEMU_VM_FILE_VERSION)
1827 return -ENOTSUP;
1828
1829 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1830 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00001831 SaveStateEntry *se;
1832 char idstr[257];
1833 int len;
1834
1835 switch (section_type) {
1836 case QEMU_VM_SECTION_START:
1837 case QEMU_VM_SECTION_FULL:
1838 /* Read section start */
1839 section_id = qemu_get_be32(f);
1840 len = qemu_get_byte(f);
1841 qemu_get_buffer(f, (uint8_t *)idstr, len);
1842 idstr[len] = 0;
1843 instance_id = qemu_get_be32(f);
1844 version_id = qemu_get_be32(f);
1845
1846 /* Find savevm section */
1847 se = find_se(idstr, instance_id);
1848 if (se == NULL) {
1849 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1850 ret = -EINVAL;
1851 goto out;
1852 }
1853
1854 /* Validate version */
1855 if (version_id > se->version_id) {
1856 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1857 version_id, idstr, se->version_id);
1858 ret = -EINVAL;
1859 goto out;
1860 }
1861
1862 /* Add entry */
Anthony Liguori7267c092011-08-20 22:09:37 -05001863 le = g_malloc0(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001864
1865 le->se = se;
1866 le->section_id = section_id;
1867 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001868 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00001869
Juan Quintela4082be42009-08-20 19:42:24 +02001870 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001871 if (ret < 0) {
1872 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1873 instance_id, idstr);
1874 goto out;
1875 }
aliguoria672b462008-11-11 21:33:36 +00001876 break;
1877 case QEMU_VM_SECTION_PART:
1878 case QEMU_VM_SECTION_END:
1879 section_id = qemu_get_be32(f);
1880
Blue Swirl72cf2d42009-09-12 07:36:22 +00001881 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001882 if (le->section_id == section_id) {
1883 break;
1884 }
1885 }
aliguoria672b462008-11-11 21:33:36 +00001886 if (le == NULL) {
1887 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1888 ret = -EINVAL;
1889 goto out;
1890 }
1891
Juan Quintela4082be42009-08-20 19:42:24 +02001892 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001893 if (ret < 0) {
1894 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1895 section_id);
1896 goto out;
1897 }
aliguoria672b462008-11-11 21:33:36 +00001898 break;
1899 default:
1900 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1901 ret = -EINVAL;
1902 goto out;
1903 }
1904 }
1905
Jan Kiszkaea375f92010-03-01 19:10:30 +01001906 cpu_synchronize_all_post_init();
1907
aliguoria672b462008-11-11 21:33:36 +00001908 ret = 0;
1909
1910out:
Blue Swirl72cf2d42009-09-12 07:36:22 +00001911 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1912 QLIST_REMOVE(le, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05001913 g_free(le);
aliguoria672b462008-11-11 21:33:36 +00001914 }
1915
Juan Quintela42802d42011-10-05 01:14:46 +02001916 if (ret == 0) {
1917 ret = qemu_file_get_error(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +02001918 }
aliguoria672b462008-11-11 21:33:36 +00001919
1920 return ret;
1921}
1922
aliguoria672b462008-11-11 21:33:36 +00001923static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1924 const char *name)
1925{
1926 QEMUSnapshotInfo *sn_tab, *sn;
1927 int nb_sns, i, ret;
1928
1929 ret = -ENOENT;
1930 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1931 if (nb_sns < 0)
1932 return ret;
1933 for(i = 0; i < nb_sns; i++) {
1934 sn = &sn_tab[i];
1935 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1936 *sn_info = *sn;
1937 ret = 0;
1938 break;
1939 }
1940 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001941 g_free(sn_tab);
aliguoria672b462008-11-11 21:33:36 +00001942 return ret;
1943}
1944
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001945/*
1946 * Deletes snapshots of a given name in all opened images.
1947 */
1948static int del_existing_snapshots(Monitor *mon, const char *name)
1949{
1950 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001951 QEMUSnapshotInfo sn1, *snapshot = &sn1;
1952 int ret;
1953
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001954 bs = NULL;
1955 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001956 if (bdrv_can_snapshot(bs) &&
1957 bdrv_snapshot_find(bs, snapshot, name) >= 0)
1958 {
1959 ret = bdrv_snapshot_delete(bs, name);
1960 if (ret < 0) {
1961 monitor_printf(mon,
1962 "Error while deleting snapshot on '%s'\n",
1963 bdrv_get_device_name(bs));
1964 return -1;
1965 }
1966 }
1967 }
1968
1969 return 0;
1970}
1971
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001972void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001973{
1974 BlockDriverState *bs, *bs1;
1975 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +01001976 int ret;
aliguoria672b462008-11-11 21:33:36 +00001977 QEMUFile *f;
1978 int saved_vm_running;
aliguori2d22b182008-12-11 21:06:49 +00001979 uint32_t vm_state_size;
aliguoria672b462008-11-11 21:33:36 +00001980#ifdef _WIN32
1981 struct _timeb tb;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03001982 struct tm *ptm;
aliguoria672b462008-11-11 21:33:36 +00001983#else
1984 struct timeval tv;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03001985 struct tm tm;
aliguoria672b462008-11-11 21:33:36 +00001986#endif
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001987 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001988
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001989 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001990 bs = NULL;
1991 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001992
Markus Armbruster07b70bf2011-08-03 15:08:11 +02001993 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001994 continue;
1995 }
1996
1997 if (!bdrv_can_snapshot(bs)) {
1998 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
1999 bdrv_get_device_name(bs));
2000 return;
2001 }
2002 }
2003
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002004 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002005 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002006 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002007 return;
2008 }
aliguoria672b462008-11-11 21:33:36 +00002009
Luiz Capitulino13548692011-07-29 15:36:43 -03002010 saved_vm_running = runstate_is_running();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03002011 vm_stop(RUN_STATE_SAVE_VM);
aliguoria672b462008-11-11 21:33:36 +00002012
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002013 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +00002014
2015 /* fill auxiliary fields */
2016#ifdef _WIN32
2017 _ftime(&tb);
2018 sn->date_sec = tb.time;
2019 sn->date_nsec = tb.millitm * 1000000;
2020#else
2021 gettimeofday(&tv, NULL);
2022 sn->date_sec = tv.tv_sec;
2023 sn->date_nsec = tv.tv_usec * 1000;
2024#endif
Paolo Bonzini74475452011-03-11 16:47:48 +01002025 sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
aliguoria672b462008-11-11 21:33:36 +00002026
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002027 if (name) {
2028 ret = bdrv_snapshot_find(bs, old_sn, name);
2029 if (ret >= 0) {
2030 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2031 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2032 } else {
2033 pstrcpy(sn->name, sizeof(sn->name), name);
2034 }
2035 } else {
2036#ifdef _WIN32
2037 ptm = localtime(&tb.time);
2038 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
2039#else
Blue Swirld7d9b522010-09-09 19:13:04 +00002040 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2041 localtime_r((const time_t *)&tv.tv_sec, &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -03002042 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2043#endif
2044 }
2045
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002046 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -02002047 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +01002048 goto the_end;
2049 }
2050
aliguoria672b462008-11-11 21:33:36 +00002051 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02002052 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00002053 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00002054 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00002055 goto the_end;
2056 }
Jan Kiszkaf327aa02009-11-30 18:21:21 +01002057 ret = qemu_savevm_state(mon, f);
aliguori2d22b182008-12-11 21:06:49 +00002058 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00002059 qemu_fclose(f);
2060 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002061 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00002062 goto the_end;
2063 }
2064
2065 /* create the snapshots */
2066
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002067 bs1 = NULL;
2068 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002069 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +00002070 /* Write VM state size only to the image that contains the state */
2071 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00002072 ret = bdrv_snapshot_create(bs1, sn);
2073 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00002074 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
2075 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002076 }
2077 }
2078 }
2079
2080 the_end:
2081 if (saved_vm_running)
2082 vm_start();
2083}
2084
Markus Armbruster03cd4652010-02-17 16:24:10 +01002085int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00002086{
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002087 BlockDriverState *bs, *bs_vm_state;
aliguori2d22b182008-12-11 21:06:49 +00002088 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00002089 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002090 int ret;
aliguoria672b462008-11-11 21:33:36 +00002091
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002092 bs_vm_state = bdrv_snapshots();
2093 if (!bs_vm_state) {
2094 error_report("No block device supports snapshots");
2095 return -ENOTSUP;
2096 }
2097
2098 /* Don't even try to load empty VM states */
2099 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2100 if (ret < 0) {
2101 return ret;
2102 } else if (sn.vm_state_size == 0) {
Kevin Wolfe11480d2011-03-01 10:48:12 +01002103 error_report("This is a disk-only snapshot. Revert to it offline "
2104 "using qemu-img.");
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002105 return -EINVAL;
2106 }
2107
2108 /* Verify if there is any device that doesn't support snapshots and is
2109 writable and check if the requested snapshot is available too. */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002110 bs = NULL;
2111 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002112
Markus Armbruster07b70bf2011-08-03 15:08:11 +02002113 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002114 continue;
2115 }
2116
2117 if (!bdrv_can_snapshot(bs)) {
2118 error_report("Device '%s' is writable but does not support snapshots.",
2119 bdrv_get_device_name(bs));
2120 return -ENOTSUP;
2121 }
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002122
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002123 ret = bdrv_snapshot_find(bs, &sn, name);
2124 if (ret < 0) {
2125 error_report("Device '%s' does not have the requested snapshot '%s'",
2126 bdrv_get_device_name(bs), name);
2127 return ret;
2128 }
aliguoria672b462008-11-11 21:33:36 +00002129 }
2130
2131 /* Flush all IO requests so they don't interfere with the new state. */
2132 qemu_aio_flush();
2133
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002134 bs = NULL;
2135 while ((bs = bdrv_next(bs))) {
2136 if (bdrv_can_snapshot(bs)) {
2137 ret = bdrv_snapshot_goto(bs, name);
aliguoria672b462008-11-11 21:33:36 +00002138 if (ret < 0) {
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002139 error_report("Error %d while activating snapshot '%s' on '%s'",
2140 ret, name, bdrv_get_device_name(bs));
2141 return ret;
aliguoria672b462008-11-11 21:33:36 +00002142 }
2143 }
2144 }
2145
aliguoria672b462008-11-11 21:33:36 +00002146 /* restore the VM state */
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002147 f = qemu_fopen_bdrv(bs_vm_state, 0);
aliguoria672b462008-11-11 21:33:36 +00002148 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002149 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02002150 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00002151 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002152
Jan Kiszka5a8a49d2011-06-14 18:29:45 +02002153 qemu_system_reset(VMRESET_SILENT);
aliguoria672b462008-11-11 21:33:36 +00002154 ret = qemu_loadvm_state(f);
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002155
aliguoria672b462008-11-11 21:33:36 +00002156 qemu_fclose(f);
2157 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01002158 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02002159 return ret;
aliguoria672b462008-11-11 21:33:36 +00002160 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03002161
Juan Quintela05f24012009-08-20 19:42:22 +02002162 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02002163}
2164
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002165void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00002166{
2167 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02002168 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03002169 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00002170
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002171 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002172 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002173 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002174 return;
2175 }
2176
Markus Armbrusterdbc13592010-06-02 18:55:21 +02002177 bs1 = NULL;
2178 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03002179 if (bdrv_can_snapshot(bs1)) {
aliguoria672b462008-11-11 21:33:36 +00002180 ret = bdrv_snapshot_delete(bs1, name);
2181 if (ret < 0) {
2182 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00002183 monitor_printf(mon,
2184 "Snapshots not supported on device '%s'\n",
2185 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002186 else
aliguori376253e2009-03-05 23:01:23 +00002187 monitor_printf(mon, "Error %d while deleting snapshot on "
2188 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00002189 }
2190 }
2191 }
2192}
2193
aliguori376253e2009-03-05 23:01:23 +00002194void do_info_snapshots(Monitor *mon)
aliguoria672b462008-11-11 21:33:36 +00002195{
2196 BlockDriverState *bs, *bs1;
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002197 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2198 int nb_sns, i, ret, available;
2199 int total;
2200 int *available_snapshots;
aliguoria672b462008-11-11 21:33:36 +00002201 char buf[256];
2202
Markus Armbrusterf9092b12010-06-25 10:33:39 +02002203 bs = bdrv_snapshots();
aliguoria672b462008-11-11 21:33:36 +00002204 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00002205 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00002206 return;
2207 }
aliguoria672b462008-11-11 21:33:36 +00002208
2209 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2210 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00002211 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00002212 return;
2213 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002214
2215 if (nb_sns == 0) {
2216 monitor_printf(mon, "There is no snapshot available.\n");
2217 return;
aliguoria672b462008-11-11 21:33:36 +00002218 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002219
Anthony Liguori7267c092011-08-20 22:09:37 -05002220 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002221 total = 0;
2222 for (i = 0; i < nb_sns; i++) {
2223 sn = &sn_tab[i];
2224 available = 1;
2225 bs1 = NULL;
2226
2227 while ((bs1 = bdrv_next(bs1))) {
2228 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2229 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2230 if (ret < 0) {
2231 available = 0;
2232 break;
2233 }
2234 }
2235 }
2236
2237 if (available) {
2238 available_snapshots[total] = i;
2239 total++;
2240 }
2241 }
2242
2243 if (total > 0) {
2244 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
2245 for (i = 0; i < total; i++) {
2246 sn = &sn_tab[available_snapshots[i]];
2247 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
2248 }
2249 } else {
2250 monitor_printf(mon, "There is no suitable snapshot available\n");
2251 }
2252
Anthony Liguori7267c092011-08-20 22:09:37 -05002253 g_free(sn_tab);
2254 g_free(available_snapshots);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03002255
aliguoria672b462008-11-11 21:33:36 +00002256}