blob: 616637a39344501321c5835ace5a449c09b9251a [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
705/* 64 bit int */
706
707static int get_int64(QEMUFile *f, void *pv, size_t size)
708{
709 int64_t *v = pv;
710 qemu_get_sbe64s(f, v);
711 return 0;
712}
713
714static void put_int64(QEMUFile *f, const void *pv, size_t size)
715{
716 const int64_t *v = pv;
717 qemu_put_sbe64s(f, v);
718}
719
720const VMStateInfo vmstate_info_int64 = {
721 .name = "int64",
722 .get = get_int64,
723 .put = put_int64,
724};
725
726/* 8 bit unsigned int */
727
728static int get_uint8(QEMUFile *f, void *pv, size_t size)
729{
730 uint8_t *v = pv;
731 qemu_get_8s(f, v);
732 return 0;
733}
734
735static void put_uint8(QEMUFile *f, const void *pv, size_t size)
736{
737 const uint8_t *v = pv;
738 qemu_put_8s(f, v);
739}
740
741const VMStateInfo vmstate_info_uint8 = {
742 .name = "uint8",
743 .get = get_uint8,
744 .put = put_uint8,
745};
746
747/* 16 bit unsigned int */
748
749static int get_uint16(QEMUFile *f, void *pv, size_t size)
750{
751 uint16_t *v = pv;
752 qemu_get_be16s(f, v);
753 return 0;
754}
755
756static void put_uint16(QEMUFile *f, const void *pv, size_t size)
757{
758 const uint16_t *v = pv;
759 qemu_put_be16s(f, v);
760}
761
762const VMStateInfo vmstate_info_uint16 = {
763 .name = "uint16",
764 .get = get_uint16,
765 .put = put_uint16,
766};
767
768/* 32 bit unsigned int */
769
770static int get_uint32(QEMUFile *f, void *pv, size_t size)
771{
772 uint32_t *v = pv;
773 qemu_get_be32s(f, v);
774 return 0;
775}
776
777static void put_uint32(QEMUFile *f, const void *pv, size_t size)
778{
779 const uint32_t *v = pv;
780 qemu_put_be32s(f, v);
781}
782
783const VMStateInfo vmstate_info_uint32 = {
784 .name = "uint32",
785 .get = get_uint32,
786 .put = put_uint32,
787};
788
789/* 64 bit unsigned int */
790
791static int get_uint64(QEMUFile *f, void *pv, size_t size)
792{
793 uint64_t *v = pv;
794 qemu_get_be64s(f, v);
795 return 0;
796}
797
798static void put_uint64(QEMUFile *f, const void *pv, size_t size)
799{
800 const uint64_t *v = pv;
801 qemu_put_be64s(f, v);
802}
803
804const VMStateInfo vmstate_info_uint64 = {
805 .name = "uint64",
806 .get = get_uint64,
807 .put = put_uint64,
808};
809
aliguoria672b462008-11-11 21:33:36 +0000810typedef struct SaveStateEntry {
811 char idstr[256];
812 int instance_id;
813 int version_id;
814 int section_id;
815 SaveLiveStateHandler *save_live_state;
816 SaveStateHandler *save_state;
817 LoadStateHandler *load_state;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200818 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +0000819 void *opaque;
820 struct SaveStateEntry *next;
821} SaveStateEntry;
822
823static SaveStateEntry *first_se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200824static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +0000825
826/* TODO: Individual devices generally have very little idea about the rest
827 of the system, so instance_id should be removed/replaced.
828 Meanwhile pass -1 as instance_id if you do not already have a clearly
829 distinguishing id for all instances of your device class. */
830int register_savevm_live(const char *idstr,
831 int instance_id,
832 int version_id,
833 SaveLiveStateHandler *save_live_state,
834 SaveStateHandler *save_state,
835 LoadStateHandler *load_state,
836 void *opaque)
837{
838 SaveStateEntry *se, **pse;
aliguoria672b462008-11-11 21:33:36 +0000839
840 se = qemu_malloc(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +0000841 pstrcpy(se->idstr, sizeof(se->idstr), idstr);
842 se->instance_id = (instance_id == -1) ? 0 : instance_id;
843 se->version_id = version_id;
844 se->section_id = global_section_id++;
845 se->save_live_state = save_live_state;
846 se->save_state = save_state;
847 se->load_state = load_state;
848 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200849 se->vmsd = NULL;
aliguoria672b462008-11-11 21:33:36 +0000850 se->next = NULL;
851
852 /* add at the end of list */
853 pse = &first_se;
854 while (*pse != NULL) {
855 if (instance_id == -1
856 && strcmp(se->idstr, (*pse)->idstr) == 0
857 && se->instance_id <= (*pse)->instance_id)
858 se->instance_id = (*pse)->instance_id + 1;
859 pse = &(*pse)->next;
860 }
861 *pse = se;
862 return 0;
863}
864
865int register_savevm(const char *idstr,
866 int instance_id,
867 int version_id,
868 SaveStateHandler *save_state,
869 LoadStateHandler *load_state,
870 void *opaque)
871{
872 return register_savevm_live(idstr, instance_id, version_id,
873 NULL, save_state, load_state, opaque);
874}
875
aliguori41bd13a2009-04-17 17:10:59 +0000876void unregister_savevm(const char *idstr, void *opaque)
877{
878 SaveStateEntry **pse;
879
880 pse = &first_se;
881 while (*pse != NULL) {
882 if (strcmp((*pse)->idstr, idstr) == 0 && (*pse)->opaque == opaque) {
883 SaveStateEntry *next = (*pse)->next;
884 qemu_free(*pse);
885 *pse = next;
886 continue;
887 }
888 pse = &(*pse)->next;
889 }
890}
891
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200892int vmstate_register(int instance_id, const VMStateDescription *vmsd,
893 void *opaque)
894{
895 SaveStateEntry *se, **pse;
896
897 se = qemu_malloc(sizeof(SaveStateEntry));
898 pstrcpy(se->idstr, sizeof(se->idstr), vmsd->name);
899 se->instance_id = (instance_id == -1) ? 0 : instance_id;
900 se->version_id = vmsd->version_id;
901 se->section_id = global_section_id++;
902 se->save_live_state = NULL;
903 se->save_state = NULL;
904 se->load_state = NULL;
905 se->opaque = opaque;
906 se->vmsd = vmsd;
907 se->next = NULL;
908
909 /* add at the end of list */
910 pse = &first_se;
911 while (*pse != NULL) {
912 if (instance_id == -1
913 && strcmp(se->idstr, (*pse)->idstr) == 0
914 && se->instance_id <= (*pse)->instance_id)
915 se->instance_id = (*pse)->instance_id + 1;
916 pse = &(*pse)->next;
917 }
918 *pse = se;
919 return 0;
920}
921
922void vmstate_unregister(const char *idstr, void *opaque)
923{
924 SaveStateEntry **pse;
925
926 pse = &first_se;
927 while (*pse != NULL) {
928 if (strcmp((*pse)->idstr, idstr) == 0 && (*pse)->opaque == opaque) {
929 SaveStateEntry *next = (*pse)->next;
930 qemu_free(*pse);
931 *pse = next;
932 continue;
933 }
934 pse = &(*pse)->next;
935 }
936}
937
938int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
939 void *opaque, int version_id)
940{
941 VMStateField *field = vmsd->fields;
942
943 if (version_id > vmsd->version_id) {
944 return -EINVAL;
945 }
946 if (version_id < vmsd->minimum_version_id_old) {
947 return -EINVAL;
948 }
949 if (version_id < vmsd->minimum_version_id) {
950 return vmsd->load_state_old(f, opaque, version_id);
951 }
952 while(field->name) {
953 if (field->version_id <= version_id) {
954 void *addr = opaque + field->offset;
955 int ret;
956
957 ret = field->info->get(f, addr, field->size);
958 if (ret < 0) {
959 return ret;
960 }
961 }
962 field++;
963 }
964 return 0;
965}
966
967void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
968 const void *opaque)
969{
970 VMStateField *field = vmsd->fields;
971
972 while(field->name) {
973 const void *addr = opaque + field->offset;
974 field->info->put(f, addr, field->size);
975 field++;
976 }
977}
978
Juan Quintela4082be42009-08-20 19:42:24 +0200979static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
980{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200981 if (!se->vmsd) { /* Old style */
982 return se->load_state(f, se->opaque, version_id);
983 }
984 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +0200985}
986
987static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
988{
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200989 if (!se->vmsd) { /* Old style */
990 se->save_state(f, se->opaque);
991 return;
992 }
993 vmstate_save_state(f,se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +0200994}
995
aliguoria672b462008-11-11 21:33:36 +0000996#define QEMU_VM_FILE_MAGIC 0x5145564d
997#define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
998#define QEMU_VM_FILE_VERSION 0x00000003
999
1000#define QEMU_VM_EOF 0x00
1001#define QEMU_VM_SECTION_START 0x01
1002#define QEMU_VM_SECTION_PART 0x02
1003#define QEMU_VM_SECTION_END 0x03
1004#define QEMU_VM_SECTION_FULL 0x04
1005
1006int qemu_savevm_state_begin(QEMUFile *f)
1007{
1008 SaveStateEntry *se;
1009
1010 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1011 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1012
1013 for (se = first_se; se != NULL; se = se->next) {
1014 int len;
1015
1016 if (se->save_live_state == NULL)
1017 continue;
1018
1019 /* Section type */
1020 qemu_put_byte(f, QEMU_VM_SECTION_START);
1021 qemu_put_be32(f, se->section_id);
1022
1023 /* ID string */
1024 len = strlen(se->idstr);
1025 qemu_put_byte(f, len);
1026 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1027
1028 qemu_put_be32(f, se->instance_id);
1029 qemu_put_be32(f, se->version_id);
1030
1031 se->save_live_state(f, QEMU_VM_SECTION_START, se->opaque);
1032 }
1033
1034 if (qemu_file_has_error(f))
1035 return -EIO;
1036
1037 return 0;
1038}
1039
1040int qemu_savevm_state_iterate(QEMUFile *f)
1041{
1042 SaveStateEntry *se;
1043 int ret = 1;
1044
1045 for (se = first_se; se != NULL; se = se->next) {
1046 if (se->save_live_state == NULL)
1047 continue;
1048
1049 /* Section type */
1050 qemu_put_byte(f, QEMU_VM_SECTION_PART);
1051 qemu_put_be32(f, se->section_id);
1052
1053 ret &= !!se->save_live_state(f, QEMU_VM_SECTION_PART, se->opaque);
1054 }
1055
1056 if (ret)
1057 return 1;
1058
1059 if (qemu_file_has_error(f))
1060 return -EIO;
1061
1062 return 0;
1063}
1064
1065int qemu_savevm_state_complete(QEMUFile *f)
1066{
1067 SaveStateEntry *se;
1068
1069 for (se = first_se; se != NULL; se = se->next) {
1070 if (se->save_live_state == NULL)
1071 continue;
1072
1073 /* Section type */
1074 qemu_put_byte(f, QEMU_VM_SECTION_END);
1075 qemu_put_be32(f, se->section_id);
1076
1077 se->save_live_state(f, QEMU_VM_SECTION_END, se->opaque);
1078 }
1079
1080 for(se = first_se; se != NULL; se = se->next) {
1081 int len;
1082
Juan Quintela9ed7d6a2009-08-20 19:42:25 +02001083 if (se->save_state == NULL && se->vmsd == NULL)
aliguoria672b462008-11-11 21:33:36 +00001084 continue;
1085
1086 /* Section type */
1087 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
1088 qemu_put_be32(f, se->section_id);
1089
1090 /* ID string */
1091 len = strlen(se->idstr);
1092 qemu_put_byte(f, len);
1093 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
1094
1095 qemu_put_be32(f, se->instance_id);
1096 qemu_put_be32(f, se->version_id);
1097
Juan Quintela4082be42009-08-20 19:42:24 +02001098 vmstate_save(f, se);
aliguoria672b462008-11-11 21:33:36 +00001099 }
1100
1101 qemu_put_byte(f, QEMU_VM_EOF);
1102
1103 if (qemu_file_has_error(f))
1104 return -EIO;
1105
1106 return 0;
1107}
1108
1109int qemu_savevm_state(QEMUFile *f)
1110{
1111 int saved_vm_running;
1112 int ret;
1113
1114 saved_vm_running = vm_running;
1115 vm_stop(0);
1116
1117 bdrv_flush_all();
1118
1119 ret = qemu_savevm_state_begin(f);
1120 if (ret < 0)
1121 goto out;
1122
1123 do {
1124 ret = qemu_savevm_state_iterate(f);
1125 if (ret < 0)
1126 goto out;
1127 } while (ret == 0);
1128
1129 ret = qemu_savevm_state_complete(f);
1130
1131out:
1132 if (qemu_file_has_error(f))
1133 ret = -EIO;
1134
1135 if (!ret && saved_vm_running)
1136 vm_start();
1137
1138 return ret;
1139}
1140
1141static SaveStateEntry *find_se(const char *idstr, int instance_id)
1142{
1143 SaveStateEntry *se;
1144
1145 for(se = first_se; se != NULL; se = se->next) {
1146 if (!strcmp(se->idstr, idstr) &&
1147 instance_id == se->instance_id)
1148 return se;
1149 }
1150 return NULL;
1151}
1152
1153typedef struct LoadStateEntry {
1154 SaveStateEntry *se;
1155 int section_id;
1156 int version_id;
1157 struct LoadStateEntry *next;
1158} LoadStateEntry;
1159
1160static int qemu_loadvm_state_v2(QEMUFile *f)
1161{
1162 SaveStateEntry *se;
1163 int len, ret, instance_id, record_len, version_id;
1164 int64_t total_len, end_pos, cur_pos;
1165 char idstr[256];
1166
1167 total_len = qemu_get_be64(f);
1168 end_pos = total_len + qemu_ftell(f);
1169 for(;;) {
1170 if (qemu_ftell(f) >= end_pos)
1171 break;
1172 len = qemu_get_byte(f);
1173 qemu_get_buffer(f, (uint8_t *)idstr, len);
1174 idstr[len] = '\0';
1175 instance_id = qemu_get_be32(f);
1176 version_id = qemu_get_be32(f);
1177 record_len = qemu_get_be32(f);
1178 cur_pos = qemu_ftell(f);
1179 se = find_se(idstr, instance_id);
1180 if (!se) {
1181 fprintf(stderr, "qemu: warning: instance 0x%x of device '%s' not present in current VM\n",
1182 instance_id, idstr);
1183 } else {
Juan Quintela4082be42009-08-20 19:42:24 +02001184 ret = vmstate_load(f, se, version_id);
aliguoria672b462008-11-11 21:33:36 +00001185 if (ret < 0) {
1186 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1187 instance_id, idstr);
Anthony Liguorid02f7092009-05-01 09:36:03 -05001188 return ret;
aliguoria672b462008-11-11 21:33:36 +00001189 }
1190 }
1191 /* always seek to exact end of record */
1192 qemu_fseek(f, cur_pos + record_len, SEEK_SET);
1193 }
1194
1195 if (qemu_file_has_error(f))
1196 return -EIO;
1197
1198 return 0;
1199}
1200
1201int qemu_loadvm_state(QEMUFile *f)
1202{
1203 LoadStateEntry *first_le = NULL;
1204 uint8_t section_type;
1205 unsigned int v;
1206 int ret;
1207
1208 v = qemu_get_be32(f);
1209 if (v != QEMU_VM_FILE_MAGIC)
1210 return -EINVAL;
1211
1212 v = qemu_get_be32(f);
1213 if (v == QEMU_VM_FILE_VERSION_COMPAT)
1214 return qemu_loadvm_state_v2(f);
1215 if (v != QEMU_VM_FILE_VERSION)
1216 return -ENOTSUP;
1217
1218 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1219 uint32_t instance_id, version_id, section_id;
1220 LoadStateEntry *le;
1221 SaveStateEntry *se;
1222 char idstr[257];
1223 int len;
1224
1225 switch (section_type) {
1226 case QEMU_VM_SECTION_START:
1227 case QEMU_VM_SECTION_FULL:
1228 /* Read section start */
1229 section_id = qemu_get_be32(f);
1230 len = qemu_get_byte(f);
1231 qemu_get_buffer(f, (uint8_t *)idstr, len);
1232 idstr[len] = 0;
1233 instance_id = qemu_get_be32(f);
1234 version_id = qemu_get_be32(f);
1235
1236 /* Find savevm section */
1237 se = find_se(idstr, instance_id);
1238 if (se == NULL) {
1239 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
1240 ret = -EINVAL;
1241 goto out;
1242 }
1243
1244 /* Validate version */
1245 if (version_id > se->version_id) {
1246 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
1247 version_id, idstr, se->version_id);
1248 ret = -EINVAL;
1249 goto out;
1250 }
1251
1252 /* Add entry */
1253 le = qemu_mallocz(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +00001254
1255 le->se = se;
1256 le->section_id = section_id;
1257 le->version_id = version_id;
1258 le->next = first_le;
1259 first_le = le;
1260
Juan Quintela4082be42009-08-20 19:42:24 +02001261 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001262 if (ret < 0) {
1263 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
1264 instance_id, idstr);
1265 goto out;
1266 }
aliguoria672b462008-11-11 21:33:36 +00001267 break;
1268 case QEMU_VM_SECTION_PART:
1269 case QEMU_VM_SECTION_END:
1270 section_id = qemu_get_be32(f);
1271
1272 for (le = first_le; le && le->section_id != section_id; le = le->next);
1273 if (le == NULL) {
1274 fprintf(stderr, "Unknown savevm section %d\n", section_id);
1275 ret = -EINVAL;
1276 goto out;
1277 }
1278
Juan Quintela4082be42009-08-20 19:42:24 +02001279 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +02001280 if (ret < 0) {
1281 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
1282 section_id);
1283 goto out;
1284 }
aliguoria672b462008-11-11 21:33:36 +00001285 break;
1286 default:
1287 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
1288 ret = -EINVAL;
1289 goto out;
1290 }
1291 }
1292
1293 ret = 0;
1294
1295out:
1296 while (first_le) {
1297 LoadStateEntry *le = first_le;
1298 first_le = first_le->next;
1299 qemu_free(le);
1300 }
1301
1302 if (qemu_file_has_error(f))
1303 ret = -EIO;
1304
1305 return ret;
1306}
1307
1308/* device can contain snapshots */
1309static int bdrv_can_snapshot(BlockDriverState *bs)
1310{
1311 return (bs &&
1312 !bdrv_is_removable(bs) &&
1313 !bdrv_is_read_only(bs));
1314}
1315
1316/* device must be snapshots in order to have a reliable snapshot */
1317static int bdrv_has_snapshot(BlockDriverState *bs)
1318{
1319 return (bs &&
1320 !bdrv_is_removable(bs) &&
1321 !bdrv_is_read_only(bs));
1322}
1323
1324static BlockDriverState *get_bs_snapshots(void)
1325{
1326 BlockDriverState *bs;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001327 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001328
1329 if (bs_snapshots)
1330 return bs_snapshots;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001331 TAILQ_FOREACH(dinfo, &drives, next) {
1332 bs = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001333 if (bdrv_can_snapshot(bs))
1334 goto ok;
1335 }
1336 return NULL;
1337 ok:
1338 bs_snapshots = bs;
1339 return bs;
1340}
1341
1342static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
1343 const char *name)
1344{
1345 QEMUSnapshotInfo *sn_tab, *sn;
1346 int nb_sns, i, ret;
1347
1348 ret = -ENOENT;
1349 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1350 if (nb_sns < 0)
1351 return ret;
1352 for(i = 0; i < nb_sns; i++) {
1353 sn = &sn_tab[i];
1354 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
1355 *sn_info = *sn;
1356 ret = 0;
1357 break;
1358 }
1359 }
1360 qemu_free(sn_tab);
1361 return ret;
1362}
1363
aliguori376253e2009-03-05 23:01:23 +00001364void do_savevm(Monitor *mon, const char *name)
aliguoria672b462008-11-11 21:33:36 +00001365{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001366 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001367 BlockDriverState *bs, *bs1;
1368 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001369 int must_delete, ret;
aliguoria672b462008-11-11 21:33:36 +00001370 QEMUFile *f;
1371 int saved_vm_running;
aliguori2d22b182008-12-11 21:06:49 +00001372 uint32_t vm_state_size;
aliguoria672b462008-11-11 21:33:36 +00001373#ifdef _WIN32
1374 struct _timeb tb;
1375#else
1376 struct timeval tv;
1377#endif
1378
1379 bs = get_bs_snapshots();
1380 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001381 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001382 return;
1383 }
1384
1385 /* ??? Should this occur after vm_stop? */
1386 qemu_aio_flush();
1387
1388 saved_vm_running = vm_running;
1389 vm_stop(0);
1390
1391 must_delete = 0;
1392 if (name) {
1393 ret = bdrv_snapshot_find(bs, old_sn, name);
1394 if (ret >= 0) {
1395 must_delete = 1;
1396 }
1397 }
1398 memset(sn, 0, sizeof(*sn));
1399 if (must_delete) {
1400 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1401 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1402 } else {
1403 if (name)
1404 pstrcpy(sn->name, sizeof(sn->name), name);
1405 }
1406
1407 /* fill auxiliary fields */
1408#ifdef _WIN32
1409 _ftime(&tb);
1410 sn->date_sec = tb.time;
1411 sn->date_nsec = tb.millitm * 1000000;
1412#else
1413 gettimeofday(&tv, NULL);
1414 sn->date_sec = tv.tv_sec;
1415 sn->date_nsec = tv.tv_usec * 1000;
1416#endif
1417 sn->vm_clock_nsec = qemu_get_clock(vm_clock);
1418
aliguoria672b462008-11-11 21:33:36 +00001419 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001420 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +00001421 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001422 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +00001423 goto the_end;
1424 }
1425 ret = qemu_savevm_state(f);
aliguori2d22b182008-12-11 21:06:49 +00001426 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +00001427 qemu_fclose(f);
1428 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001429 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +00001430 goto the_end;
1431 }
1432
1433 /* create the snapshots */
1434
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001435 TAILQ_FOREACH(dinfo, &drives, next) {
1436 bs1 = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001437 if (bdrv_has_snapshot(bs1)) {
1438 if (must_delete) {
1439 ret = bdrv_snapshot_delete(bs1, old_sn->id_str);
1440 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001441 monitor_printf(mon,
1442 "Error while deleting snapshot on '%s'\n",
1443 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001444 }
1445 }
aliguori2d22b182008-12-11 21:06:49 +00001446 /* Write VM state size only to the image that contains the state */
1447 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +00001448 ret = bdrv_snapshot_create(bs1, sn);
1449 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001450 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1451 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001452 }
1453 }
1454 }
1455
1456 the_end:
1457 if (saved_vm_running)
1458 vm_start();
1459}
1460
Juan Quintela05f24012009-08-20 19:42:22 +02001461int load_vmstate(Monitor *mon, const char *name)
aliguoria672b462008-11-11 21:33:36 +00001462{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001463 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001464 BlockDriverState *bs, *bs1;
aliguori2d22b182008-12-11 21:06:49 +00001465 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00001466 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001467 int ret;
aliguoria672b462008-11-11 21:33:36 +00001468
1469 bs = get_bs_snapshots();
1470 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001471 monitor_printf(mon, "No block device supports snapshots\n");
Juan Quintela05f24012009-08-20 19:42:22 +02001472 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001473 }
1474
1475 /* Flush all IO requests so they don't interfere with the new state. */
1476 qemu_aio_flush();
1477
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001478 TAILQ_FOREACH(dinfo, &drives, next) {
1479 bs1 = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001480 if (bdrv_has_snapshot(bs1)) {
1481 ret = bdrv_snapshot_goto(bs1, name);
1482 if (ret < 0) {
1483 if (bs != bs1)
aliguori376253e2009-03-05 23:01:23 +00001484 monitor_printf(mon, "Warning: ");
aliguoria672b462008-11-11 21:33:36 +00001485 switch(ret) {
1486 case -ENOTSUP:
aliguori376253e2009-03-05 23:01:23 +00001487 monitor_printf(mon,
1488 "Snapshots not supported on device '%s'\n",
1489 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001490 break;
1491 case -ENOENT:
aliguori376253e2009-03-05 23:01:23 +00001492 monitor_printf(mon, "Could not find snapshot '%s' on "
1493 "device '%s'\n",
1494 name, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001495 break;
1496 default:
aliguori376253e2009-03-05 23:01:23 +00001497 monitor_printf(mon, "Error %d while activating snapshot on"
1498 " '%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001499 break;
1500 }
1501 /* fatal on snapshot block device */
1502 if (bs == bs1)
Juan Quintela05f24012009-08-20 19:42:22 +02001503 return 0;
aliguoria672b462008-11-11 21:33:36 +00001504 }
1505 }
1506 }
1507
aliguori2d22b182008-12-11 21:06:49 +00001508 /* Don't even try to load empty VM states */
1509 ret = bdrv_snapshot_find(bs, &sn, name);
1510 if ((ret >= 0) && (sn.vm_state_size == 0))
Juan Quintela05f24012009-08-20 19:42:22 +02001511 return -EINVAL;
aliguori2d22b182008-12-11 21:06:49 +00001512
aliguoria672b462008-11-11 21:33:36 +00001513 /* restore the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +02001514 f = qemu_fopen_bdrv(bs, 0);
aliguoria672b462008-11-11 21:33:36 +00001515 if (!f) {
aliguori376253e2009-03-05 23:01:23 +00001516 monitor_printf(mon, "Could not open VM state file\n");
Juan Quintela05f24012009-08-20 19:42:22 +02001517 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001518 }
1519 ret = qemu_loadvm_state(f);
1520 qemu_fclose(f);
1521 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +00001522 monitor_printf(mon, "Error %d while loading VM state\n", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02001523 return ret;
aliguoria672b462008-11-11 21:33:36 +00001524 }
Juan Quintela05f24012009-08-20 19:42:22 +02001525 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02001526}
1527
aliguori376253e2009-03-05 23:01:23 +00001528void do_delvm(Monitor *mon, const char *name)
aliguoria672b462008-11-11 21:33:36 +00001529{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001530 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001531 BlockDriverState *bs, *bs1;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001532 int ret;
aliguoria672b462008-11-11 21:33:36 +00001533
1534 bs = get_bs_snapshots();
1535 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001536 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001537 return;
1538 }
1539
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001540 TAILQ_FOREACH(dinfo, &drives, next) {
1541 bs1 = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001542 if (bdrv_has_snapshot(bs1)) {
1543 ret = bdrv_snapshot_delete(bs1, name);
1544 if (ret < 0) {
1545 if (ret == -ENOTSUP)
aliguori376253e2009-03-05 23:01:23 +00001546 monitor_printf(mon,
1547 "Snapshots not supported on device '%s'\n",
1548 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001549 else
aliguori376253e2009-03-05 23:01:23 +00001550 monitor_printf(mon, "Error %d while deleting snapshot on "
1551 "'%s'\n", ret, bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001552 }
1553 }
1554 }
1555}
1556
aliguori376253e2009-03-05 23:01:23 +00001557void do_info_snapshots(Monitor *mon)
aliguoria672b462008-11-11 21:33:36 +00001558{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001559 DriveInfo *dinfo;
aliguoria672b462008-11-11 21:33:36 +00001560 BlockDriverState *bs, *bs1;
1561 QEMUSnapshotInfo *sn_tab, *sn;
1562 int nb_sns, i;
1563 char buf[256];
1564
1565 bs = get_bs_snapshots();
1566 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001567 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001568 return;
1569 }
aliguori376253e2009-03-05 23:01:23 +00001570 monitor_printf(mon, "Snapshot devices:");
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001571 TAILQ_FOREACH(dinfo, &drives, next) {
1572 bs1 = dinfo->bdrv;
aliguoria672b462008-11-11 21:33:36 +00001573 if (bdrv_has_snapshot(bs1)) {
1574 if (bs == bs1)
aliguori376253e2009-03-05 23:01:23 +00001575 monitor_printf(mon, " %s", bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +00001576 }
1577 }
aliguori376253e2009-03-05 23:01:23 +00001578 monitor_printf(mon, "\n");
aliguoria672b462008-11-11 21:33:36 +00001579
1580 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1581 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00001582 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00001583 return;
1584 }
aliguori376253e2009-03-05 23:01:23 +00001585 monitor_printf(mon, "Snapshot list (from %s):\n",
1586 bdrv_get_device_name(bs));
1587 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
aliguoria672b462008-11-11 21:33:36 +00001588 for(i = 0; i < nb_sns; i++) {
1589 sn = &sn_tab[i];
aliguori376253e2009-03-05 23:01:23 +00001590 monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
aliguoria672b462008-11-11 21:33:36 +00001591 }
1592 qemu_free(sn_tab);
1593}