blob: 8ae8d1627d62032d69a591330a8f7d9f0fbd22d9 [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>
45#if defined(__NetBSD__)
46#include <net/if_tap.h>
47#endif
48#ifdef __linux__
49#include <linux/if_tun.h>
50#endif
51#include <arpa/inet.h>
52#include <dirent.h>
53#include <netdb.h>
54#include <sys/select.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020055#ifdef CONFIG_BSD
aliguoria672b462008-11-11 21:33:36 +000056#include <sys/stat.h>
blueswir1c5e97232009-03-07 20:06:23 +000057#if defined(__FreeBSD__) || defined(__DragonFly__)
aliguoria672b462008-11-11 21:33:36 +000058#include <libutil.h>
59#else
60#include <util.h>
61#endif
62#elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63#include <freebsd/stdlib.h>
64#else
65#ifdef __linux__
66#include <pty.h>
67#include <malloc.h>
68#include <linux/rtc.h>
69#endif
70#endif
71#endif
72
73#ifdef _WIN32
aliguori49dc7682009-03-08 16:26:59 +000074#include <windows.h>
aliguoria672b462008-11-11 21:33:36 +000075#include <malloc.h>
76#include <sys/timeb.h>
77#include <mmsystem.h>
78#define getopt_long_only getopt_long
79#define memalign(align, size) malloc(size)
80#endif
81
blueswir1511d2b12009-03-07 15:32:56 +000082#include "qemu-common.h"
83#include "hw/hw.h"
84#include "net.h"
85#include "monitor.h"
86#include "sysemu.h"
87#include "qemu-timer.h"
88#include "qemu-char.h"
89#include "block.h"
90#include "audio/audio.h"
91#include "migration.h"
92#include "qemu_socket.h"
93
aliguoria672b462008-11-11 21:33:36 +000094/* point to the block driver where the snapshots are managed */
95static BlockDriverState *bs_snapshots;
96
97#define SELF_ANNOUNCE_ROUNDS 5
98#define ETH_P_EXPERIMENTAL 0x01F1 /* just a number */
99//#define ETH_P_EXPERIMENTAL 0x0012 /* make it the size of the packet */
100#define EXPERIMENTAL_MAGIC 0xf1f23f4f
101
102static int announce_self_create(uint8_t *buf,
103 uint8_t *mac_addr)
104{
105 uint32_t magic = EXPERIMENTAL_MAGIC;
106 uint16_t proto = htons(ETH_P_EXPERIMENTAL);
107
108 /* FIXME: should we send a different packet (arp/rarp/ping)? */
109
Gleb Natapov976305b2009-05-21 17:17:43 +0300110 memset(buf, 0, 64);
aliguoria672b462008-11-11 21:33:36 +0000111 memset(buf, 0xff, 6); /* h_dst */
112 memcpy(buf + 6, mac_addr, 6); /* h_src */
113 memcpy(buf + 12, &proto, 2); /* h_proto */
114 memcpy(buf + 14, &magic, 4); /* magic */
115
Gleb Natapov976305b2009-05-21 17:17:43 +0300116 return 64; /* len */
aliguoria672b462008-11-11 21:33:36 +0000117}
118
Gleb Natapoved8b3302009-05-21 17:17:44 +0300119static void qemu_announce_self_once(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000120{
Gleb Natapoved8b3302009-05-21 17:17:44 +0300121 int i, len;
aliguoria672b462008-11-11 21:33:36 +0000122 VLANState *vlan;
123 VLANClientState *vc;
124 uint8_t buf[256];
Gleb Natapoved8b3302009-05-21 17:17:44 +0300125 static int count = SELF_ANNOUNCE_ROUNDS;
126 QEMUTimer *timer = *(QEMUTimer **)opaque;
aliguoria672b462008-11-11 21:33:36 +0000127
aliguori3450df32009-03-13 15:03:58 +0000128 for (i = 0; i < MAX_NICS; i++) {
129 if (!nd_table[i].used)
130 continue;
aliguoria672b462008-11-11 21:33:36 +0000131 len = announce_self_create(buf, nd_table[i].macaddr);
132 vlan = nd_table[i].vlan;
Gleb Natapoved8b3302009-05-21 17:17:44 +0300133 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
Mark McLoughline3f5ec22009-05-18 13:33:03 +0100134 vc->receive(vc, buf, len);
aliguoria672b462008-11-11 21:33:36 +0000135 }
136 }
Gleb Natapoved8b3302009-05-21 17:17:44 +0300137 if (count--) {
138 qemu_mod_timer(timer, qemu_get_clock(rt_clock) + 100);
139 } else {
140 qemu_del_timer(timer);
141 qemu_free_timer(timer);
142 }
143}
144
145void qemu_announce_self(void)
146{
147 static QEMUTimer *timer;
148 timer = qemu_new_timer(rt_clock, qemu_announce_self_once, &timer);
149 qemu_announce_self_once(&timer);
aliguoria672b462008-11-11 21:33:36 +0000150}
151
152/***********************************************************/
153/* savevm/loadvm support */
154
155#define IO_BUF_SIZE 32768
156
157struct QEMUFile {
158 QEMUFilePutBufferFunc *put_buffer;
159 QEMUFileGetBufferFunc *get_buffer;
160 QEMUFileCloseFunc *close;
161 QEMUFileRateLimit *rate_limit;
Glauber Costa19629532009-05-20 18:26:57 -0400162 QEMUFileSetRateLimit *set_rate_limit;
aliguoria672b462008-11-11 21:33:36 +0000163 void *opaque;
164 int is_write;
165
166 int64_t buf_offset; /* start of buffer when writing, end of buffer
167 when reading */
168 int buf_index;
169 int buf_size; /* 0 when writing */
170 uint8_t buf[IO_BUF_SIZE];
171
172 int has_error;
173};
174
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200175typedef struct QEMUFileStdio
aliguoria672b462008-11-11 21:33:36 +0000176{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200177 FILE *stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000178 QEMUFile *file;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200179} QEMUFileStdio;
aliguoria672b462008-11-11 21:33:36 +0000180
181typedef struct QEMUFileSocket
182{
183 int fd;
184 QEMUFile *file;
185} QEMUFileSocket;
186
187static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
188{
189 QEMUFileSocket *s = opaque;
190 ssize_t len;
191
192 do {
Blue Swirlc5b76b32009-06-13 08:44:31 +0000193 len = recv(s->fd, (void *)buf, size, 0);
aliguoria672b462008-11-11 21:33:36 +0000194 } while (len == -1 && socket_error() == EINTR);
195
196 if (len == -1)
197 len = -socket_error();
198
199 return len;
200}
201
202static int socket_close(void *opaque)
203{
204 QEMUFileSocket *s = opaque;
205 qemu_free(s);
206 return 0;
207}
208
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200209static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000210{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200211 QEMUFileStdio *s = opaque;
212 return fwrite(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000213}
214
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200215static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000216{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200217 QEMUFileStdio *s = opaque;
218 FILE *fp = s->stdio_file;
Uri Lublin8a67ec42009-06-08 19:27:21 +0300219 int bytes;
220
221 do {
222 clearerr(fp);
223 bytes = fread(buf, 1, size, fp);
224 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
225 return bytes;
aliguoria672b462008-11-11 21:33:36 +0000226}
227
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200228static int stdio_pclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000229{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200230 QEMUFileStdio *s = opaque;
231 pclose(s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000232 qemu_free(s);
233 return 0;
234}
235
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200236static int stdio_fclose(void *opaque)
aliguoria672b462008-11-11 21:33:36 +0000237{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200238 QEMUFileStdio *s = opaque;
239 fclose(s->stdio_file);
240 qemu_free(s);
241 return 0;
242}
aliguoria672b462008-11-11 21:33:36 +0000243
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200244QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
245{
246 QEMUFileStdio *s;
247
248 if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
aliguoria672b462008-11-11 21:33:36 +0000249 fprintf(stderr, "qemu_popen: Argument validity check failed\n");
250 return NULL;
251 }
252
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200253 s = qemu_mallocz(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000254
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200255 s->stdio_file = stdio_file;
aliguoria672b462008-11-11 21:33:36 +0000256
257 if(mode[0] == 'r') {
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200258 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_pclose, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000259 } else {
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200260 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_pclose, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000261 }
aliguoria672b462008-11-11 21:33:36 +0000262 return s->file;
263}
264
265QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
266{
267 FILE *popen_file;
268
269 popen_file = popen(command, mode);
270 if(popen_file == NULL) {
271 return NULL;
272 }
273
274 return qemu_popen(popen_file, mode);
275}
276
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200277int qemu_stdio_fd(QEMUFile *f)
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200278{
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200279 QEMUFileStdio *p;
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200280 int fd;
281
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200282 p = (QEMUFileStdio *)f->opaque;
283 fd = fileno(p->stdio_file);
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200284
285 return fd;
286}
287
Paolo Bonzini5ac1fad2009-08-18 15:56:25 +0200288QEMUFile *qemu_fdopen(int fd, const char *mode)
289{
290 QEMUFileStdio *s;
291
292 if (mode == NULL ||
293 (mode[0] != 'r' && mode[0] != 'w') ||
294 mode[1] != 'b' || mode[2] != 0) {
295 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
296 return NULL;
297 }
298
299 s = qemu_mallocz(sizeof(QEMUFileStdio));
300 s->stdio_file = fdopen(fd, mode);
301 if (!s->stdio_file)
302 goto fail;
303
304 if(mode[0] == 'r') {
305 s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_fclose, NULL, NULL);
306 } else {
307 s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_fclose, NULL, NULL);
308 }
309 return s->file;
310
311fail:
312 qemu_free(s);
313 return NULL;
314}
315
aliguoria672b462008-11-11 21:33:36 +0000316QEMUFile *qemu_fopen_socket(int fd)
317{
318 QEMUFileSocket *s = qemu_mallocz(sizeof(QEMUFileSocket));
319
aliguoria672b462008-11-11 21:33:36 +0000320 s->fd = fd;
Glauber Costa19629532009-05-20 18:26:57 -0400321 s->file = qemu_fopen_ops(s, NULL, socket_get_buffer, socket_close, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000322 return s->file;
323}
324
aliguoria672b462008-11-11 21:33:36 +0000325static int file_put_buffer(void *opaque, const uint8_t *buf,
326 int64_t pos, int size)
327{
328 QEMUFileStdio *s = opaque;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200329 fseek(s->stdio_file, pos, SEEK_SET);
330 fwrite(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000331 return size;
332}
333
334static int file_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
335{
336 QEMUFileStdio *s = opaque;
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200337 fseek(s->stdio_file, pos, SEEK_SET);
338 return fread(buf, 1, size, s->stdio_file);
aliguoria672b462008-11-11 21:33:36 +0000339}
340
341QEMUFile *qemu_fopen(const char *filename, const char *mode)
342{
343 QEMUFileStdio *s;
344
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200345 if (mode == NULL ||
346 (mode[0] != 'r' && mode[0] != 'w') ||
347 mode[1] != 'b' || mode[2] != 0) {
348 fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
349 return NULL;
350 }
351
aliguoria672b462008-11-11 21:33:36 +0000352 s = qemu_mallocz(sizeof(QEMUFileStdio));
aliguoria672b462008-11-11 21:33:36 +0000353
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200354 s->stdio_file = fopen(filename, mode);
355 if (!s->stdio_file)
aliguoria672b462008-11-11 21:33:36 +0000356 goto fail;
357
Paolo Bonzini7f79dd22009-08-12 14:17:35 +0200358 if(mode[0] == 'w') {
359 s->file = qemu_fopen_ops(s, file_put_buffer, NULL, stdio_fclose, NULL, NULL);
360 } else {
361 s->file = qemu_fopen_ops(s, NULL, file_get_buffer, stdio_fclose, NULL, NULL);
362 }
363 return s->file;
aliguoria672b462008-11-11 21:33:36 +0000364fail:
aliguoria672b462008-11-11 21:33:36 +0000365 qemu_free(s);
366 return NULL;
367}
368
aliguori178e08a2009-04-05 19:10:55 +0000369static int block_put_buffer(void *opaque, const uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +0000370 int64_t pos, int size)
371{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200372 bdrv_save_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000373 return size;
374}
375
aliguori178e08a2009-04-05 19:10:55 +0000376static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000377{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200378 return bdrv_load_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000379}
380
381static int bdrv_fclose(void *opaque)
382{
aliguoria672b462008-11-11 21:33:36 +0000383 return 0;
384}
385
Christoph Hellwig45566e92009-07-10 23:11:57 +0200386static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
aliguoria672b462008-11-11 21:33:36 +0000387{
aliguoria672b462008-11-11 21:33:36 +0000388 if (is_writable)
Christoph Hellwig45566e92009-07-10 23:11:57 +0200389 return qemu_fopen_ops(bs, block_put_buffer, NULL, bdrv_fclose, NULL, NULL);
390 return qemu_fopen_ops(bs, NULL, block_get_buffer, bdrv_fclose, NULL, NULL);
aliguoria672b462008-11-11 21:33:36 +0000391}
392
393QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
394 QEMUFileGetBufferFunc *get_buffer,
395 QEMUFileCloseFunc *close,
Glauber Costa19629532009-05-20 18:26:57 -0400396 QEMUFileRateLimit *rate_limit,
397 QEMUFileSetRateLimit *set_rate_limit)
aliguoria672b462008-11-11 21:33:36 +0000398{
399 QEMUFile *f;
400
401 f = qemu_mallocz(sizeof(QEMUFile));
aliguoria672b462008-11-11 21:33:36 +0000402
403 f->opaque = opaque;
404 f->put_buffer = put_buffer;
405 f->get_buffer = get_buffer;
406 f->close = close;
407 f->rate_limit = rate_limit;
Glauber Costa19629532009-05-20 18:26:57 -0400408 f->set_rate_limit = set_rate_limit;
aliguoria672b462008-11-11 21:33:36 +0000409 f->is_write = 0;
410
411 return f;
412}
413
414int qemu_file_has_error(QEMUFile *f)
415{
416 return f->has_error;
417}
418
aliguori4dabe242009-04-05 19:30:51 +0000419void qemu_file_set_error(QEMUFile *f)
420{
421 f->has_error = 1;
422}
423
aliguoria672b462008-11-11 21:33:36 +0000424void qemu_fflush(QEMUFile *f)
425{
426 if (!f->put_buffer)
427 return;
428
429 if (f->is_write && f->buf_index > 0) {
430 int len;
431
432 len = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
433 if (len > 0)
434 f->buf_offset += f->buf_index;
435 else
436 f->has_error = 1;
437 f->buf_index = 0;
438 }
439}
440
441static void qemu_fill_buffer(QEMUFile *f)
442{
443 int len;
444
445 if (!f->get_buffer)
446 return;
447
448 if (f->is_write)
449 abort();
450
451 len = f->get_buffer(f->opaque, f->buf, f->buf_offset, IO_BUF_SIZE);
452 if (len > 0) {
453 f->buf_index = 0;
454 f->buf_size = len;
455 f->buf_offset += len;
456 } else if (len != -EAGAIN)
457 f->has_error = 1;
458}
459
460int qemu_fclose(QEMUFile *f)
461{
462 int ret = 0;
463 qemu_fflush(f);
464 if (f->close)
465 ret = f->close(f->opaque);
466 qemu_free(f);
467 return ret;
468}
469
470void qemu_file_put_notify(QEMUFile *f)
471{
472 f->put_buffer(f->opaque, NULL, 0, 0);
473}
474
475void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
476{
477 int l;
478
479 if (!f->has_error && f->is_write == 0 && f->buf_index > 0) {
480 fprintf(stderr,
481 "Attempted to write to buffer while read buffer is not empty\n");
482 abort();
483 }
484
485 while (!f->has_error && size > 0) {
486 l = IO_BUF_SIZE - f->buf_index;
487 if (l > size)
488 l = size;
489 memcpy(f->buf + f->buf_index, buf, l);
490 f->is_write = 1;
491 f->buf_index += l;
492 buf += l;
493 size -= l;
494 if (f->buf_index >= IO_BUF_SIZE)
495 qemu_fflush(f);
496 }
497}
498
499void qemu_put_byte(QEMUFile *f, int v)
500{
501 if (!f->has_error && f->is_write == 0 && f->buf_index > 0) {
502 fprintf(stderr,
503 "Attempted to write to buffer while read buffer is not empty\n");
504 abort();
505 }
506
507 f->buf[f->buf_index++] = v;
508 f->is_write = 1;
509 if (f->buf_index >= IO_BUF_SIZE)
510 qemu_fflush(f);
511}
512
513int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)
514{
515 int size, l;
516
517 if (f->is_write)
518 abort();
519
520 size = size1;
521 while (size > 0) {
522 l = f->buf_size - f->buf_index;
523 if (l == 0) {
524 qemu_fill_buffer(f);
525 l = f->buf_size - f->buf_index;
526 if (l == 0)
527 break;
528 }
529 if (l > size)
530 l = size;
531 memcpy(buf, f->buf + f->buf_index, l);
532 f->buf_index += l;
533 buf += l;
534 size -= l;
535 }
536 return size1 - size;
537}
538
539int qemu_get_byte(QEMUFile *f)
540{
541 if (f->is_write)
542 abort();
543
544 if (f->buf_index >= f->buf_size) {
545 qemu_fill_buffer(f);
546 if (f->buf_index >= f->buf_size)
547 return 0;
548 }
549 return f->buf[f->buf_index++];
550}
551
552int64_t qemu_ftell(QEMUFile *f)
553{
554 return f->buf_offset - f->buf_size + f->buf_index;
555}
556
557int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
558{
559 if (whence == SEEK_SET) {
560 /* nothing to do */
561 } else if (whence == SEEK_CUR) {
562 pos += qemu_ftell(f);
563 } else {
564 /* SEEK_END not supported */
565 return -1;
566 }
567 if (f->put_buffer) {
568 qemu_fflush(f);
569 f->buf_offset = pos;
570 } else {
571 f->buf_offset = pos;
572 f->buf_index = 0;
573 f->buf_size = 0;
574 }
575 return pos;
576}
577
578int qemu_file_rate_limit(QEMUFile *f)
579{
580 if (f->rate_limit)
581 return f->rate_limit(f->opaque);
582
583 return 0;
584}
585
Glauber Costa19629532009-05-20 18:26:57 -0400586size_t qemu_file_set_rate_limit(QEMUFile *f, size_t new_rate)
587{
Glauber Costa0bb05ea2009-07-14 18:26:51 -0400588 /* any failed or completed migration keeps its state to allow probing of
589 * migration data, but has no associated file anymore */
590 if (f && f->set_rate_limit)
Glauber Costa19629532009-05-20 18:26:57 -0400591 return f->set_rate_limit(f->opaque, new_rate);
592
593 return 0;
594}
595
aliguoria672b462008-11-11 21:33:36 +0000596void qemu_put_be16(QEMUFile *f, unsigned int v)
597{
598 qemu_put_byte(f, v >> 8);
599 qemu_put_byte(f, v);
600}
601
602void qemu_put_be32(QEMUFile *f, unsigned int v)
603{
604 qemu_put_byte(f, v >> 24);
605 qemu_put_byte(f, v >> 16);
606 qemu_put_byte(f, v >> 8);
607 qemu_put_byte(f, v);
608}
609
610void qemu_put_be64(QEMUFile *f, uint64_t v)
611{
612 qemu_put_be32(f, v >> 32);
613 qemu_put_be32(f, v);
614}
615
616unsigned int qemu_get_be16(QEMUFile *f)
617{
618 unsigned int v;
619 v = qemu_get_byte(f) << 8;
620 v |= qemu_get_byte(f);
621 return v;
622}
623
624unsigned int qemu_get_be32(QEMUFile *f)
625{
626 unsigned int v;
627 v = qemu_get_byte(f) << 24;
628 v |= qemu_get_byte(f) << 16;
629 v |= qemu_get_byte(f) << 8;
630 v |= qemu_get_byte(f);
631 return v;
632}
633
634uint64_t qemu_get_be64(QEMUFile *f)
635{
636 uint64_t v;
637 v = (uint64_t)qemu_get_be32(f) << 32;
638 v |= qemu_get_be32(f);
639 return v;
640}
641
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200642/* 8 bit int */
643
644static int get_int8(QEMUFile *f, void *pv, size_t size)
645{
646 int8_t *v = pv;
647 qemu_get_s8s(f, v);
648 return 0;
649}
650
651static void put_int8(QEMUFile *f, const void *pv, size_t size)
652{
653 const int8_t *v = pv;
654 qemu_put_s8s(f, v);
655}
656
657const VMStateInfo vmstate_info_int8 = {
658 .name = "int8",
659 .get = get_int8,
660 .put = put_int8,
661};
662
663/* 16 bit int */
664
665static int get_int16(QEMUFile *f, void *pv, size_t size)
666{
667 int16_t *v = pv;
668 qemu_get_sbe16s(f, v);
669 return 0;
670}
671
672static void put_int16(QEMUFile *f, const void *pv, size_t size)
673{
674 const int16_t *v = pv;
675 qemu_put_sbe16s(f, v);
676}
677
678const VMStateInfo vmstate_info_int16 = {
679 .name = "int16",
680 .get = get_int16,
681 .put = put_int16,
682};
683
684/* 32 bit int */
685
686static int get_int32(QEMUFile *f, void *pv, size_t size)
687{
688 int32_t *v = pv;
689 qemu_get_sbe32s(f, v);
690 return 0;
691}
692
693static void put_int32(QEMUFile *f, const void *pv, size_t size)
694{
695 const int32_t *v = pv;
696 qemu_put_sbe32s(f, v);
697}
698
699const VMStateInfo vmstate_info_int32 = {
700 .name = "int32",
701 .get = get_int32,
702 .put = put_int32,
703};
704
Juan Quintela82501662009-08-20 19:42:32 +0200705/* 32 bit int. See that the received value is the same than the one
706 in the field */
707
708static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
709{
710 int32_t *v = pv;
711 int32_t v2;
712 qemu_get_sbe32s(f, &v2);
713
714 if (*v == v2)
715 return 0;
716 return -EINVAL;
717}
718
719const VMStateInfo vmstate_info_int32_equal = {
720 .name = "int32 equal",
721 .get = get_int32_equal,
722 .put = put_int32,
723};
724
Juan Quintela0a031e02009-08-20 19:42:37 +0200725/* 32 bit int. See that the received value is the less or the same
726 than the one in the field */
727
728static int get_int32_le(QEMUFile *f, void *pv, size_t size)
729{
730 int32_t *old = pv;
731 int32_t new;
732 qemu_get_sbe32s(f, &new);
733
734 if (*old <= new)
735 return 0;
736 return -EINVAL;
737}
738
739const VMStateInfo vmstate_info_int32_le = {
740 .name = "int32 equal",
741 .get = get_int32_le,
742 .put = put_int32,
743};
744
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200745/* 64 bit int */
746
747static int get_int64(QEMUFile *f, void *pv, size_t size)
748{
749 int64_t *v = pv;
750 qemu_get_sbe64s(f, v);
751 return 0;
752}
753
754static void put_int64(QEMUFile *f, const void *pv, size_t size)
755{
756 const int64_t *v = pv;
757 qemu_put_sbe64s(f, v);
758}
759
760const VMStateInfo vmstate_info_int64 = {
761 .name = "int64",
762 .get = get_int64,
763 .put = put_int64,
764};
765
766/* 8 bit unsigned int */
767
768static int get_uint8(QEMUFile *f, void *pv, size_t size)
769{
770 uint8_t *v = pv;
771 qemu_get_8s(f, v);
772 return 0;
773}
774
775static void put_uint8(QEMUFile *f, const void *pv, size_t size)
776{
777 const uint8_t *v = pv;
778 qemu_put_8s(f, v);
779}
780
781const VMStateInfo vmstate_info_uint8 = {
782 .name = "uint8",
783 .get = get_uint8,
784 .put = put_uint8,
785};
786
787/* 16 bit unsigned int */
788
789static int get_uint16(QEMUFile *f, void *pv, size_t size)
790{
791 uint16_t *v = pv;
792 qemu_get_be16s(f, v);
793 return 0;
794}
795
796static void put_uint16(QEMUFile *f, const void *pv, size_t size)
797{
798 const uint16_t *v = pv;
799 qemu_put_be16s(f, v);
800}
801
802const VMStateInfo vmstate_info_uint16 = {
803 .name = "uint16",
804 .get = get_uint16,
805 .put = put_uint16,
806};
807
808/* 32 bit unsigned int */
809
810static int get_uint32(QEMUFile *f, void *pv, size_t size)
811{
812 uint32_t *v = pv;
813 qemu_get_be32s(f, v);
814 return 0;
815}
816
817static void put_uint32(QEMUFile *f, const void *pv, size_t size)
818{
819 const uint32_t *v = pv;
820 qemu_put_be32s(f, v);
821}
822
823const VMStateInfo vmstate_info_uint32 = {
824 .name = "uint32",
825 .get = get_uint32,
826 .put = put_uint32,
827};
828
829/* 64 bit unsigned int */
830
831static int get_uint64(QEMUFile *f, void *pv, size_t size)
832{
833 uint64_t *v = pv;
834 qemu_get_be64s(f, v);
835 return 0;
836}
837
838static void put_uint64(QEMUFile *f, const void *pv, size_t size)
839{
840 const uint64_t *v = pv;
841 qemu_put_be64s(f, v);
842}
843
844const VMStateInfo vmstate_info_uint64 = {
845 .name = "uint64",
846 .get = get_uint64,
847 .put = put_uint64,
848};
849
Juan Quinteladde04632009-08-20 19:42:26 +0200850/* timers */
851
852static int get_timer(QEMUFile *f, void *pv, size_t size)
853{
854 QEMUTimer *v = pv;
855 qemu_get_timer(f, v);
856 return 0;
857}
858
859static void put_timer(QEMUFile *f, const void *pv, size_t size)
860{
861 QEMUTimer *v = (void *)pv;
862 qemu_put_timer(f, v);
863}
864
865const VMStateInfo vmstate_info_timer = {
866 .name = "timer",
867 .get = get_timer,
868 .put = put_timer,
869};
870
Juan Quintela6f67c502009-08-20 19:42:35 +0200871/* uint8_t buffers */
872
873static int get_buffer(QEMUFile *f, void *pv, size_t size)
874{
875 uint8_t *v = pv;
876 qemu_get_buffer(f, v, size);
877 return 0;
878}
879
880static void put_buffer(QEMUFile *f, const void *pv, size_t size)
881{
882 uint8_t *v = (void *)pv;
883 qemu_put_buffer(f, v, size);
884}
885
886const VMStateInfo vmstate_info_buffer = {
887 .name = "buffer",
888 .get = get_buffer,
889 .put = put_buffer,
890};
891
aliguoria672b462008-11-11 21:33:36 +0000892typedef struct SaveStateEntry {
Juan Quintela8718e992009-09-01 02:12:31 +0200893 TAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +0000894 char idstr[256];
895 int instance_id;
896 int version_id;
897 int section_id;
898 SaveLiveStateHandler *save_live_state;
899 SaveStateHandler *save_state;
900 LoadStateHandler *load_state;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200901 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +0000902 void *opaque;
aliguoria672b462008-11-11 21:33:36 +0000903} SaveStateEntry;
904
Juan Quintela8718e992009-09-01 02:12:31 +0200905static TAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
906 TAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200907static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +0000908
Juan Quintela8718e992009-09-01 02:12:31 +0200909static int calculate_new_instance_id(const char *idstr)
910{
911 SaveStateEntry *se;
912 int instance_id = 0;
913
914 TAILQ_FOREACH(se, &savevm_handlers, entry) {
915 if (strcmp(idstr, se->idstr) == 0
916 && instance_id <= se->instance_id) {
917 instance_id = se->instance_id + 1;
918 }
919 }
920 return instance_id;
921}
922
aliguoria672b462008-11-11 21:33:36 +0000923/* TODO: Individual devices generally have very little idea about the rest
924 of the system, so instance_id should be removed/replaced.
925 Meanwhile pass -1 as instance_id if you do not already have a clearly
926 distinguishing id for all instances of your device class. */
927int register_savevm_live(const char *idstr,
928 int instance_id,
929 int version_id,
930 SaveLiveStateHandler *save_live_state,
931 SaveStateHandler *save_state,
932 LoadStateHandler *load_state,
933 void *opaque)
934{
Juan Quintela8718e992009-09-01 02:12:31 +0200935 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +0000936
937 se = qemu_malloc(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +0000938 pstrcpy(se->idstr, sizeof(se->idstr), idstr);
aliguoria672b462008-11-11 21:33:36 +0000939 se->version_id = version_id;
940 se->section_id = global_section_id++;
941 se->save_live_state = save_live_state;
942 se->save_state = save_state;
943 se->load_state = load_state;
944 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200945 se->vmsd = NULL;
aliguoria672b462008-11-11 21:33:36 +0000946
Juan Quintela8718e992009-09-01 02:12:31 +0200947 if (instance_id == -1) {
948 se->instance_id = calculate_new_instance_id(idstr);
949 } else {
950 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +0000951 }
Juan Quintela8718e992009-09-01 02:12:31 +0200952 /* add at the end of list */
953 TAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +0000954 return 0;
955}
956
957int register_savevm(const char *idstr,
958 int instance_id,
959 int version_id,
960 SaveStateHandler *save_state,
961 LoadStateHandler *load_state,
962 void *opaque)
963{
964 return register_savevm_live(idstr, instance_id, version_id,
965 NULL, save_state, load_state, opaque);
966}
967
aliguori41bd13a2009-04-17 17:10:59 +0000968void unregister_savevm(const char *idstr, void *opaque)
969{
Juan Quintela8718e992009-09-01 02:12:31 +0200970 SaveStateEntry *se, *new_se;
aliguori41bd13a2009-04-17 17:10:59 +0000971
Juan Quintela8718e992009-09-01 02:12:31 +0200972 TAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
973 if (strcmp(se->idstr, idstr) == 0 && se->opaque == opaque) {
974 TAILQ_REMOVE(&savevm_handlers, se, entry);
975 qemu_free(se);
aliguori41bd13a2009-04-17 17:10:59 +0000976 }
aliguori41bd13a2009-04-17 17:10:59 +0000977 }
978}
979
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200980int vmstate_register(int instance_id, const VMStateDescription *vmsd,
981 void *opaque)
982{
Juan Quintela8718e992009-09-01 02:12:31 +0200983 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200984
985 se = qemu_malloc(sizeof(SaveStateEntry));
986 pstrcpy(se->idstr, sizeof(se->idstr), vmsd->name);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200987 se->version_id = vmsd->version_id;
988 se->section_id = global_section_id++;
989 se->save_live_state = NULL;
990 se->save_state = NULL;
991 se->load_state = NULL;
992 se->opaque = opaque;
993 se->vmsd = vmsd;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200994
Juan Quintela8718e992009-09-01 02:12:31 +0200995 if (instance_id == -1) {
996 se->instance_id = calculate_new_instance_id(vmsd->name);
997 } else {
998 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200999 }
Juan Quintela8718e992009-09-01 02:12:31 +02001000 /* add at the end of list */
1001 TAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001002 return 0;
1003}
1004
Juan Quintela1eb75382009-09-10 03:04:29 +02001005void vmstate_unregister(const VMStateDescription *vmsd, void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001006{
Juan Quintela1eb75382009-09-10 03:04:29 +02001007 SaveStateEntry *se, *new_se;
1008
1009 TAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1010 if (se->vmsd == vmsd && se->opaque == opaque) {
1011 TAILQ_REMOVE(&savevm_handlers, se, entry);
1012 qemu_free(se);
1013 }
1014 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001015}
1016
1017int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
1018 void *opaque, int version_id)
1019{
1020 VMStateField *field = vmsd->fields;
1021
1022 if (version_id > vmsd->version_id) {
1023 return -EINVAL;
1024 }
1025 if (version_id < vmsd->minimum_version_id_old) {
1026 return -EINVAL;
1027 }
1028 if (version_id < vmsd->minimum_version_id) {
1029 return vmsd->load_state_old(f, opaque, version_id);
1030 }
Juan Quintelafd4d52d2009-09-10 03:04:31 +02001031 if (vmsd->pre_load) {
1032 int ret = vmsd->pre_load(opaque);
1033 if (ret)
1034 return ret;
1035 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001036 while(field->name) {
1037 if (field->version_id <= version_id) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001038 void *base_addr = opaque + field->offset;
1039 int ret, i, n_elems = 1;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001040
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001041 if (field->flags & VMS_ARRAY) {
1042 n_elems = field->num;
Juan Quintelab00319a2009-08-20 19:42:33 +02001043 } else if (field->flags & VMS_VARRAY) {
1044 n_elems = *(size_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001045 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001046 if (field->flags & VMS_POINTER) {
1047 base_addr = *(void **)base_addr;
1048 }
1049 for (i = 0; i < n_elems; i++) {
1050 void *addr = base_addr + field->size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001051
1052 if (field->flags & VMS_STRUCT) {
Juan Quintelafa3aad22009-08-28 15:28:25 +02001053 ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
Juan Quintelaec245e22009-08-20 19:42:29 +02001054 } else {
1055 ret = field->info->get(f, addr, field->size);
1056
1057 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001058 if (ret < 0) {
1059 return ret;
1060 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001061 }
1062 }
1063 field++;
1064 }
Juan Quintela752ff2f2009-09-10 03:04:30 +02001065 if (vmsd->post_load) {
1066 return vmsd->post_load(opaque);
1067 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001068 return 0;
1069}
1070
1071void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
1072 const void *opaque)
1073{
1074 VMStateField *field = vmsd->fields;
1075
1076 while(field->name) {
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001077 const void *base_addr = opaque + field->offset;
1078 int i, n_elems = 1;
Juan Quinteladde04632009-08-20 19:42:26 +02001079
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001080 if (field->flags & VMS_ARRAY) {
1081 n_elems = field->num;
Juan Quintelab00319a2009-08-20 19:42:33 +02001082 } else if (field->flags & VMS_VARRAY) {
1083 n_elems = *(size_t *)(opaque+field->num_offset);
Juan Quinteladde04632009-08-20 19:42:26 +02001084 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001085 if (field->flags & VMS_POINTER) {
1086 base_addr = *(void **)base_addr;
1087 }
1088 for (i = 0; i < n_elems; i++) {
1089 const void *addr = base_addr + field->size * i;
Juan Quintelaec245e22009-08-20 19:42:29 +02001090
1091 if (field->flags & VMS_STRUCT) {
1092 vmstate_save_state(f, field->vmsd, addr);
1093 } else {
1094 field->info->put(f, addr, field->size);
1095 }
Juan Quintelaf752a6a2009-08-20 19:42:27 +02001096 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001097 field++;
1098 }
1099}
1100
Juan Quintela4082be42009-08-20 19:42:24 +02001101static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
1102{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001103 if (!se->vmsd) { /* Old style */
1104 return se->load_state(f, se->opaque, version_id);
1105 }
1106 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +02001107}
1108
1109static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
1110{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001111 if (!se->vmsd) { /* Old style */
1112 se->save_state(f, se->opaque);
1113 return;
1114 }
1115 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +02001116}
1117
aliguoria672b462008-11-11 21:33:36 +00001118#define QEMU_VM_FILE_MAGIC 0x5145564d
1119#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
1120#define QEMU_VM_FILE_VERSION 0x00000003
1121
1122#define QEMU_VM_EOF 0x00
1123#define QEMU_VM_SECTION_START 0x01
1124#define QEMU_VM_SECTION_PART 0x02
1125#define QEMU_VM_SECTION_END 0x03
1126#define QEMU_VM_SECTION_FULL 0x04
1127
1128int qemu_savevm_state_begin(QEMUFile *f)
1129{
1130 SaveStateEntry *se;
1131
1132 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1133 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1134
Juan Quintela8718e992009-09-01 02:12:31 +02001135 TAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001136 int len;
1137
1138 if (se->save_live_state == NULL)
1139 continue;
1140
1141 /* Section type */
1142 qemu_put_byte(f, QEMU_VM_SECTION_START);
1143 qemu_put_be32(f, se->section_id);
1144
1145 /* ID string */
1146 len = strlen(se->idstr);
1147 qemu_put_byte(f, len);
1148 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1149
1150 qemu_put_be32(f, se->instance_id);
1151 qemu_put_be32(f, se->version_id);
1152
1153 se->save_live_state(f, QEMU_VM_SECTION_START, se->opaque);
1154 }
1155
1156 if (qemu_file_has_error(f))
1157 return -EIO;
1158
1159 return 0;
1160}
1161
1162int qemu_savevm_state_iterate(QEMUFile *f)
1163{
1164 SaveStateEntry *se;
1165 int ret = 1;
1166
Juan Quintela8718e992009-09-01 02:12:31 +02001167 TAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001168 if (se->save_live_state == NULL)
1169 continue;
1170
1171 /* Section type */
1172 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1173 qemu_put_be32(f, se->section_id);
1174
1175 ret &= !!se->save_live_state(f, QEMU_VM_SECTION_PART, se->opaque);
1176 }
1177
1178 if (ret)
1179 return 1;
1180
1181 if (qemu_file_has_error(f))
1182 return -EIO;
1183
1184 return 0;
1185}
1186
1187int qemu_savevm_state_complete(QEMUFile *f)
1188{
1189 SaveStateEntry *se;
1190
Juan Quintela8718e992009-09-01 02:12:31 +02001191 TAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001192 if (se->save_live_state == NULL)
1193 continue;
1194
1195 /* Section type */
1196 qemu_put_byte(f, QEMU_VM_SECTION_END);
1197 qemu_put_be32(f, se->section_id);
1198
1199 se->save_live_state(f, QEMU_VM_SECTION_END, se->opaque);
1200 }
1201
Juan Quintela8718e992009-09-01 02:12:31 +02001202 TAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001203 int len;
1204
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001205 if (se->save_state == NULL && se->vmsd == NULL)
aliguoria672b462008-11-11 21:33:36 +00001206 continue;
1207
1208 /* Section type */
1209 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1210 qemu_put_be32(f, se->section_id);
1211
1212 /* ID string */
1213 len = strlen(se->idstr);
1214 qemu_put_byte(f, len);
1215 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1216
1217 qemu_put_be32(f, se->instance_id);
1218 qemu_put_be32(f, se->version_id);
1219
Juan Quintela4082be42009-08-20 19:42:24 +02001220 vmstate_save(f, se);
aliguoria672b462008-11-11 21:33:36 +00001221 }
1222
1223 qemu_put_byte(f, QEMU_VM_EOF);
1224
1225 if (qemu_file_has_error(f))
1226 return -EIO;
1227
1228 return 0;
1229}
1230
1231int qemu_savevm_state(QEMUFile *f)
1232{
1233 int saved_vm_running;
1234 int ret;
1235
1236 saved_vm_running = vm_running;
1237 vm_stop(0);
1238
1239 bdrv_flush_all();
1240
1241 ret = qemu_savevm_state_begin(f);
1242 if (ret < 0)
1243 goto out;
1244
1245 do {
1246 ret = qemu_savevm_state_iterate(f);
1247 if (ret < 0)
1248 goto out;
1249 } while (ret == 0);
1250
1251 ret = qemu_savevm_state_complete(f);
1252
1253out:
1254 if (qemu_file_has_error(f))
1255 ret = -EIO;
1256
1257 if (!ret && saved_vm_running)
1258 vm_start();
1259
1260 return ret;
1261}
1262
1263static SaveStateEntry *find_se(const char *idstr, int instance_id)
1264{
1265 SaveStateEntry *se;
1266
Juan Quintela8718e992009-09-01 02:12:31 +02001267 TAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +00001268 if (!strcmp(se->idstr, idstr) &&
1269 instance_id == se->instance_id)
1270 return se;
1271 }
1272 return NULL;
1273}
1274
1275typedef struct LoadStateEntry {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001276 LIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +00001277 SaveStateEntry *se;
1278 int section_id;
1279 int version_id;
aliguoria672b462008-11-11 21:33:36 +00001280} LoadStateEntry;
1281
aliguoria672b462008-11-11 21:33:36 +00001282int qemu_loadvm_state(QEMUFile *f)
1283{
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001284 LIST_HEAD(, LoadStateEntry) loadvm_handlers =
1285 LIST_HEAD_INITIALIZER(loadvm_handlers);
1286 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +00001287 uint8_t section_type;
1288 unsigned int v;
1289 int ret;
1290
1291 v = qemu_get_be32(f);
1292 if (v != QEMU_VM_FILE_MAGIC)
1293 return -EINVAL;
1294
1295 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +02001296 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1297 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
1298 return -ENOTSUP;
1299 }
aliguoria672b462008-11-11 21:33:36 +00001300 if (v != QEMU_VM_FILE_VERSION)
1301 return -ENOTSUP;
1302
1303 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1304 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +00001305 SaveStateEntry *se;
1306 char idstr[257];
1307 int len;
1308
1309 switch (section_type) {
1310 case QEMU_VM_SECTION_START:
1311 case QEMU_VM_SECTION_FULL:
1312 /* Read section start */
1313 section_id = qemu_get_be32(f);
1314 len = qemu_get_byte(f);
1315 qemu_get_buffer(f, (uint8_t *)idstr, len);
1316 idstr[len] = 0;
1317 instance_id = qemu_get_be32(f);
1318 version_id = qemu_get_be32(f);
1319
1320 /* Find savevm section */
1321 se = find_se(idstr, instance_id);
1322 if (se == NULL) {
1323 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1324 ret = -EINVAL;
1325 goto out;
1326 }
1327
1328 /* Validate version */
1329 if (version_id > se->version_id) {
1330 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1331 version_id, idstr, se->version_id);
1332 ret = -EINVAL;
1333 goto out;
1334 }
1335
1336 /* Add entry */
1337 le = qemu_mallocz(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001338
1339 le->se = se;
1340 le->section_id = section_id;
1341 le->version_id = version_id;
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001342 LIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +00001343
Juan Quintela4082be42009-08-20 19:42:24 +02001344 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001345 if (ret < 0) {
1346 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1347 instance_id, idstr);
1348 goto out;
1349 }
aliguoria672b462008-11-11 21:33:36 +00001350 break;
1351 case QEMU_VM_SECTION_PART:
1352 case QEMU_VM_SECTION_END:
1353 section_id = qemu_get_be32(f);
1354
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001355 LIST_FOREACH(le, &loadvm_handlers, entry) {
1356 if (le->section_id == section_id) {
1357 break;
1358 }
1359 }
aliguoria672b462008-11-11 21:33:36 +00001360 if (le == NULL) {
1361 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1362 ret = -EINVAL;
1363 goto out;
1364 }
1365
Juan Quintela4082be42009-08-20 19:42:24 +02001366 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001367 if (ret < 0) {
1368 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1369 section_id);
1370 goto out;
1371 }
aliguoria672b462008-11-11 21:33:36 +00001372 break;
1373 default:
1374 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1375 ret = -EINVAL;
1376 goto out;
1377 }
1378 }
1379
1380 ret = 0;
1381
1382out:
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +02001383 LIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
1384 LIST_REMOVE(le, entry);
aliguoria672b462008-11-11 21:33:36 +00001385 qemu_free(le);
1386 }
1387
1388 if (qemu_file_has_error(f))
1389 ret = -EIO;
1390
1391 return ret;
1392}
1393
1394/* device can contain snapshots */
1395static int bdrv_can_snapshot(BlockDriverState *bs)
1396{
1397 return (bs &&
1398 !bdrv_is_removable(bs) &&
1399 !bdrv_is_read_only(bs));
1400}
1401
1402/* device must be snapshots in order to have a reliable snapshot */
1403static int bdrv_has_snapshot(BlockDriverState *bs)
1404{
1405 return (bs &&
1406 !bdrv_is_removable(bs) &&
1407 !bdrv_is_read_only(bs));
1408}
1409
1410static BlockDriverState *get_bs_snapshots(void)
1411{
1412 BlockDriverState *bs;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001413 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001414
1415 if (bs_snapshots)
1416 return bs_snapshots;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001417 TAILQ_FOREACH(dinfo, &drives, next) {
1418 bs = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001419 if (bdrv_can_snapshot(bs))
1420 goto ok;
1421 }
1422 return NULL;
1423 ok:
1424 bs_snapshots = bs;
1425 return bs;
1426}
1427
1428static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1429 const char *name)
1430{
1431 QEMUSnapshotInfo *sn_tab, *sn;
1432 int nb_sns, i, ret;
1433
1434 ret = -ENOENT;
1435 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1436 if (nb_sns < 0)
1437 return ret;
1438 for(i = 0; i < nb_sns; i++) {
1439 sn = &sn_tab[i];
1440 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1441 *sn_info = *sn;
1442 ret = 0;
1443 break;
1444 }
1445 }
1446 qemu_free(sn_tab);
1447 return ret;
1448}
1449
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001450void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001451{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001452 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001453 BlockDriverState *bs, *bs1;
1454 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001455 int must_delete, ret;
aliguoria672b462008-11-11 21:33:36 +00001456 QEMUFile *f;
1457 int saved_vm_running;
aliguori2d22b182008-12-11 21:06:49 +00001458 uint32_t vm_state_size;
aliguoria672b462008-11-11 21:33:36 +00001459#ifdef _WIN32
1460 struct _timeb tb;
1461#else
1462 struct timeval tv;
1463#endif
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001464 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001465
1466 bs = get_bs_snapshots();
1467 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001468 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001469 return;
1470 }
1471
1472 /* ??? Should this occur after vm_stop? */
1473 qemu_aio_flush();
1474
1475 saved_vm_running = vm_running;
1476 vm_stop(0);
1477
1478 must_delete = 0;
1479 if (name) {
1480 ret = bdrv_snapshot_find(bs, old_sn, name);
1481 if (ret >= 0) {
1482 must_delete = 1;
1483 }
1484 }
1485 memset(sn, 0, sizeof(*sn));
1486 if (must_delete) {
1487 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1488 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1489 } else {
1490 if (name)
1491 pstrcpy(sn->name, sizeof(sn->name), name);
1492 }
1493
1494 /* fill auxiliary fields */
1495#ifdef _WIN32
1496 _ftime(&tb);
1497 sn->date_sec = tb.time;
1498 sn->date_nsec = tb.millitm * 1000000;
1499#else
1500 gettimeofday(&tv, NULL);
1501 sn->date_sec = tv.tv_sec;
1502 sn->date_nsec = tv.tv_usec * 1000;
1503#endif
1504 sn->vm_clock_nsec = qemu_get_clock(vm_clock);
1505
aliguoria672b462008-11-11 21:33:36 +00001506 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001507 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00001508 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001509 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00001510 goto the_end;
1511 }
1512 ret = qemu_savevm_state(f);
aliguori2d22b182008-12-11 21:06:49 +00001513 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00001514 qemu_fclose(f);
1515 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001516 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00001517 goto the_end;
1518 }
1519
1520 /* create the snapshots */
1521
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001522 TAILQ_FOREACH(dinfo, &drives, next) {
1523 bs1 = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001524 if (bdrv_has_snapshot(bs1)) {
1525 if (must_delete) {
1526 ret = bdrv_snapshot_delete(bs1, old_sn->id_str);
1527 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001528 monitor_printf(mon,
1529 "Error while deleting snapshot on '%s'\n",
1530 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001531 }
1532 }
aliguori2d22b182008-12-11 21:06:49 +00001533 /* Write VM state size only to the image that contains the state */
1534 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00001535 ret = bdrv_snapshot_create(bs1, sn);
1536 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001537 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1538 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001539 }
1540 }
1541 }
1542
1543 the_end:
1544 if (saved_vm_running)
1545 vm_start();
1546}
1547
Juan Quintela05f24012009-08-20 19:42:22 +02001548int load_vmstate(Monitor *mon, const char *name)
aliguoria672b462008-11-11 21:33:36 +00001549{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001550 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001551 BlockDriverState *bs, *bs1;
aliguori2d22b182008-12-11 21:06:49 +00001552 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00001553 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001554 int ret;
aliguoria672b462008-11-11 21:33:36 +00001555
1556 bs = get_bs_snapshots();
1557 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001558 monitor_printf(mon, "No block device supports snapshots\n");
Juan Quintela05f24012009-08-20 19:42:22 +02001559 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001560 }
1561
1562 /* Flush all IO requests so they don't interfere with the new state. */
1563 qemu_aio_flush();
1564
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001565 TAILQ_FOREACH(dinfo, &drives, next) {
1566 bs1 = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001567 if (bdrv_has_snapshot(bs1)) {
1568 ret = bdrv_snapshot_goto(bs1, name);
1569 if (ret < 0) {
1570 if (bs != bs1)
aliguori376253e2009-03-05 23:01:23 +00001571 monitor_printf(mon, "Warning: ");
aliguoria672b462008-11-11 21:33:36 +00001572 switch(ret) {
1573 case -ENOTSUP:
aliguori376253e2009-03-05 23:01:23 +00001574 monitor_printf(mon,
1575 "Snapshots not supported on device '%s'\n",
1576 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001577 break;
1578 case -ENOENT:
aliguori376253e2009-03-05 23:01:23 +00001579 monitor_printf(mon, "Could not find snapshot '%s' on "
1580 "device '%s'\n",
1581 name, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001582 break;
1583 default:
aliguori376253e2009-03-05 23:01:23 +00001584 monitor_printf(mon, "Error %d while activating snapshot on"
1585 " '%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001586 break;
1587 }
1588 /* fatal on snapshot block device */
1589 if (bs == bs1)
Juan Quintela05f24012009-08-20 19:42:22 +02001590 return 0;
aliguoria672b462008-11-11 21:33:36 +00001591 }
1592 }
1593 }
1594
aliguori2d22b182008-12-11 21:06:49 +00001595 /* Don't even try to load empty VM states */
1596 ret = bdrv_snapshot_find(bs, &sn, name);
1597 if ((ret >= 0) && (sn.vm_state_size == 0))
Juan Quintela05f24012009-08-20 19:42:22 +02001598 return -EINVAL;
aliguori2d22b182008-12-11 21:06:49 +00001599
aliguoria672b462008-11-11 21:33:36 +00001600 /* restore the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001601 f = qemu_fopen_bdrv(bs, 0);
aliguoria672b462008-11-11 21:33:36 +00001602 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001603 monitor_printf(mon, "Could not open VM state file\n");
Juan Quintela05f24012009-08-20 19:42:22 +02001604 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001605 }
1606 ret = qemu_loadvm_state(f);
1607 qemu_fclose(f);
1608 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001609 monitor_printf(mon, "Error %d while loading VM state\n", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02001610 return ret;
aliguoria672b462008-11-11 21:33:36 +00001611 }
Juan Quintela05f24012009-08-20 19:42:22 +02001612 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02001613}
1614
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001615void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001616{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001617 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001618 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001619 int ret;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001620 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001621
1622 bs = get_bs_snapshots();
1623 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001624 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001625 return;
1626 }
1627
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001628 TAILQ_FOREACH(dinfo, &drives, next) {
1629 bs1 = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001630 if (bdrv_has_snapshot(bs1)) {
1631 ret = bdrv_snapshot_delete(bs1, name);
1632 if (ret < 0) {
1633 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00001634 monitor_printf(mon,
1635 "Snapshots not supported on device '%s'\n",
1636 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001637 else
aliguori376253e2009-03-05 23:01:23 +00001638 monitor_printf(mon, "Error %d while deleting snapshot on "
1639 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001640 }
1641 }
1642 }
1643}
1644
aliguori376253e2009-03-05 23:01:23 +00001645void do_info_snapshots(Monitor *mon)
aliguoria672b462008-11-11 21:33:36 +00001646{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001647 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001648 BlockDriverState *bs, *bs1;
1649 QEMUSnapshotInfo *sn_tab, *sn;
1650 int nb_sns, i;
1651 char buf[256];
1652
1653 bs = get_bs_snapshots();
1654 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001655 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001656 return;
1657 }
aliguori376253e2009-03-05 23:01:23 +00001658 monitor_printf(mon, "Snapshot devices:");
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001659 TAILQ_FOREACH(dinfo, &drives, next) {
1660 bs1 = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001661 if (bdrv_has_snapshot(bs1)) {
1662 if (bs == bs1)
aliguori376253e2009-03-05 23:01:23 +00001663 monitor_printf(mon, " %s", bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001664 }
1665 }
aliguori376253e2009-03-05 23:01:23 +00001666 monitor_printf(mon, "\n");
aliguoria672b462008-11-11 21:33:36 +00001667
1668 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1669 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00001670 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00001671 return;
1672 }
aliguori376253e2009-03-05 23:01:23 +00001673 monitor_printf(mon, "Snapshot list (from %s):\n",
1674 bdrv_get_device_name(bs));
1675 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
aliguoria672b462008-11-11 21:33:36 +00001676 for(i = 0; i < nb_sns; i++) {
1677 sn = &sn_tab[i];
aliguori376253e2009-03-05 23:01:23 +00001678 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
aliguoria672b462008-11-11 21:33:36 +00001679 }
1680 qemu_free(sn_tab);
1681}