blob: da8aa2428d480ad49cdd5184500d98ba1d1c3f5d [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
blueswir1d40cdb12009-03-07 16:52:02 +000025#include "config-host.h"
blueswir1511d2b12009-03-07 15:32:56 +000026#include "qemu-common.h"
27#include "hw/hw.h"
Alex Williamson7685ee62010-06-25 11:09:14 -060028#include "hw/qdev.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +020029#include "net/net.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010030#include "monitor/monitor.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010031#include "sysemu/sysemu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010032#include "qemu/timer.h"
blueswir1511d2b12009-03-07 15:32:56 +000033#include "audio/audio.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +010034#include "migration/migration.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010035#include "qemu/sockets.h"
36#include "qemu/queue.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010037#include "sysemu/cpus.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010038#include "exec/memory.h"
Stefano Stabellinia7ae8352012-01-25 12:24:51 +000039#include "qmp-commands.h"
Juan Quintela517a13c2012-05-21 23:46:44 +020040#include "trace.h"
Orit Wasserman28085f72013-03-22 16:47:58 +020041#include "qemu/iov.h"
Wenchao Xiade08c602013-05-25 11:09:43 +080042#include "block/snapshot.h"
Wenchao Xiaf364ec62013-05-25 11:09:44 +080043#include "block/qapi.h"
blueswir1511d2b12009-03-07 15:32:56 +000044
aliguoria672b462008-11-11 21:33:36 +000045#define SELF_ANNOUNCE_ROUNDS 5
aliguoria672b462008-11-11 21:33:36 +000046
Nolan18995b92009-10-15 16:53:55 -070047#ifndef ETH_P_RARP
Stefan Bergerf8778a72010-04-24 08:54:07 -040048#define ETH_P_RARP 0x8035
Nolan18995b92009-10-15 16:53:55 -070049#endif
50#define ARP_HTYPE_ETH 0x0001
51#define ARP_PTYPE_IP 0x0800
52#define ARP_OP_REQUEST_REV 0x3
53
54static int announce_self_create(uint8_t *buf,
Eduardo Habkost5cecf412013-11-28 12:01:12 -020055 uint8_t *mac_addr)
aliguoria672b462008-11-11 21:33:36 +000056{
Nolan18995b92009-10-15 16:53:55 -070057 /* Ethernet header. */
58 memset(buf, 0xff, 6); /* destination MAC addr */
59 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
60 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
aliguoria672b462008-11-11 21:33:36 +000061
Nolan18995b92009-10-15 16:53:55 -070062 /* RARP header. */
63 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
64 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
65 *(buf + 18) = 6; /* hardware addr length (ethernet) */
66 *(buf + 19) = 4; /* protocol addr length (IPv4) */
67 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
68 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
69 memset(buf + 28, 0x00, 4); /* source protocol addr */
70 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
71 memset(buf + 38, 0x00, 4); /* target protocol addr */
aliguoria672b462008-11-11 21:33:36 +000072
Nolan18995b92009-10-15 16:53:55 -070073 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
74 memset(buf + 42, 0x00, 18);
aliguoria672b462008-11-11 21:33:36 +000075
Nolan18995b92009-10-15 16:53:55 -070076 return 60; /* len (FCS will be added by hardware) */
aliguoria672b462008-11-11 21:33:36 +000077}
78
Mark McLoughlinf401ca22009-11-25 18:49:32 +000079static void qemu_announce_self_iter(NICState *nic, void *opaque)
80{
81 uint8_t buf[60];
82 int len;
83
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +110084 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
Mark McLoughlinf401ca22009-11-25 18:49:32 +000085 len = announce_self_create(buf, nic->conf->macaddr.a);
86
Jason Wangb356f762013-01-30 19:12:22 +080087 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
Mark McLoughlinf401ca22009-11-25 18:49:32 +000088}
89
90
Gleb Natapoved8b3302009-05-21 17:17:44 +030091static void qemu_announce_self_once(void *opaque)
aliguoria672b462008-11-11 21:33:36 +000092{
Gleb Natapoved8b3302009-05-21 17:17:44 +030093 static int count = SELF_ANNOUNCE_ROUNDS;
94 QEMUTimer *timer = *(QEMUTimer **)opaque;
aliguoria672b462008-11-11 21:33:36 +000095
Mark McLoughlinf401ca22009-11-25 18:49:32 +000096 qemu_foreach_nic(qemu_announce_self_iter, NULL);
97
Nolan18995b92009-10-15 16:53:55 -070098 if (--count) {
99 /* delay 50ms, 150ms, 250ms, ... */
Alex Blighbc72ad62013-08-21 16:03:08 +0100100 timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
Nolan18995b92009-10-15 16:53:55 -0700101 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300102 } else {
Eduardo Habkost5cecf412013-11-28 12:01:12 -0200103 timer_del(timer);
104 timer_free(timer);
Gleb Natapoved8b3302009-05-21 17:17:44 +0300105 }
106}
107
108void qemu_announce_self(void)
109{
Eduardo Habkost5cecf412013-11-28 12:01:12 -0200110 static QEMUTimer *timer;
111 timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
112 qemu_announce_self_once(&timer);
aliguoria672b462008-11-11 21:33:36 +0000113}
114
115/***********************************************************/
116/* savevm/loadvm support */
117
Kevin Wolf05fcc842013-04-05 21:27:54 +0200118static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
119 int64_t pos)
120{
121 int ret;
122 QEMUIOVector qiov;
123
124 qemu_iovec_init_external(&qiov, iov, iovcnt);
125 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
126 if (ret < 0) {
127 return ret;
128 }
129
130 return qiov.size;
131}
132
aliguori178e08a2009-04-05 19:10:55 +0000133static int block_put_buffer(void *opaque, const uint8_t *buf,
aliguoria672b462008-11-11 21:33:36 +0000134 int64_t pos, int size)
135{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200136 bdrv_save_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000137 return size;
138}
139
aliguori178e08a2009-04-05 19:10:55 +0000140static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
aliguoria672b462008-11-11 21:33:36 +0000141{
Christoph Hellwig45566e92009-07-10 23:11:57 +0200142 return bdrv_load_vmstate(opaque, buf, pos, size);
aliguoria672b462008-11-11 21:33:36 +0000143}
144
145static int bdrv_fclose(void *opaque)
146{
Paolo Bonziniad492c92012-06-06 00:04:50 +0200147 return bdrv_flush(opaque);
aliguoria672b462008-11-11 21:33:36 +0000148}
149
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200150static const QEMUFileOps bdrv_read_ops = {
151 .get_buffer = block_get_buffer,
152 .close = bdrv_fclose
153};
154
155static const QEMUFileOps bdrv_write_ops = {
Kevin Wolf05fcc842013-04-05 21:27:54 +0200156 .put_buffer = block_put_buffer,
157 .writev_buffer = block_writev_buffer,
158 .close = bdrv_fclose
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200159};
160
Christoph Hellwig45566e92009-07-10 23:11:57 +0200161static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
aliguoria672b462008-11-11 21:33:36 +0000162{
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200163 if (is_writable) {
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200164 return qemu_fopen_ops(bs, &bdrv_write_ops);
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200165 }
Paolo Bonzini9229bf32012-08-08 10:15:15 +0200166 return qemu_fopen_ops(bs, &bdrv_read_ops);
aliguoria672b462008-11-11 21:33:36 +0000167}
168
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200169
Eduardo Habkostbb1a6d82013-11-29 12:26:02 -0200170/* QEMUFile timer support.
171 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
172 */
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200173
Alex Bligh40daca52013-08-21 16:03:02 +0100174void timer_put(QEMUFile *f, QEMUTimer *ts)
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200175{
176 uint64_t expire_time;
177
Alex Blighe93379b2013-08-21 16:02:39 +0100178 expire_time = timer_expire_time_ns(ts);
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200179 qemu_put_be64(f, expire_time);
180}
181
Alex Bligh40daca52013-08-21 16:03:02 +0100182void timer_get(QEMUFile *f, QEMUTimer *ts)
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200183{
184 uint64_t expire_time;
185
186 expire_time = qemu_get_be64(f);
187 if (expire_time != -1) {
Alex Blighbc72ad62013-08-21 16:03:08 +0100188 timer_mod_ns(ts, expire_time);
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200189 } else {
Alex Blighbc72ad62013-08-21 16:03:08 +0100190 timer_del(ts);
Paolo Bonzini2ff68d02011-09-12 16:21:44 +0200191 }
192}
193
194
Eduardo Habkostbb1a6d82013-11-29 12:26:02 -0200195/* VMState timer support.
196 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
197 */
Juan Quinteladde04632009-08-20 19:42:26 +0200198
199static int get_timer(QEMUFile *f, void *pv, size_t size)
200{
201 QEMUTimer *v = pv;
Alex Bligh40daca52013-08-21 16:03:02 +0100202 timer_get(f, v);
Juan Quinteladde04632009-08-20 19:42:26 +0200203 return 0;
204}
205
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200206static void put_timer(QEMUFile *f, void *pv, size_t size)
Juan Quinteladde04632009-08-20 19:42:26 +0200207{
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200208 QEMUTimer *v = pv;
Alex Bligh40daca52013-08-21 16:03:02 +0100209 timer_put(f, v);
Juan Quinteladde04632009-08-20 19:42:26 +0200210}
211
212const VMStateInfo vmstate_info_timer = {
213 .name = "timer",
214 .get = get_timer,
215 .put = put_timer,
216};
217
Peter Maydell08e99e22012-10-30 07:45:12 +0000218
Alex Williamson7685ee62010-06-25 11:09:14 -0600219typedef struct CompatEntry {
220 char idstr[256];
221 int instance_id;
222} CompatEntry;
223
aliguoria672b462008-11-11 21:33:36 +0000224typedef struct SaveStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000225 QTAILQ_ENTRY(SaveStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +0000226 char idstr[256];
227 int instance_id;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +0200228 int alias_id;
aliguoria672b462008-11-11 21:33:36 +0000229 int version_id;
230 int section_id;
Juan Quintela22ea40f2012-06-26 17:19:10 +0200231 SaveVMHandlers *ops;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200232 const VMStateDescription *vmsd;
aliguoria672b462008-11-11 21:33:36 +0000233 void *opaque;
Alex Williamson7685ee62010-06-25 11:09:14 -0600234 CompatEntry *compat;
Cam Macdonell24312962010-07-26 18:11:00 -0600235 int no_migrate;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +0000236 int is_ram;
aliguoria672b462008-11-11 21:33:36 +0000237} SaveStateEntry;
238
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200239
Blue Swirl72cf2d42009-09-12 07:36:22 +0000240static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
241 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200242static int global_section_id;
aliguoria672b462008-11-11 21:33:36 +0000243
Juan Quintela8718e992009-09-01 02:12:31 +0200244static int calculate_new_instance_id(const char *idstr)
245{
246 SaveStateEntry *se;
247 int instance_id = 0;
248
Blue Swirl72cf2d42009-09-12 07:36:22 +0000249 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela8718e992009-09-01 02:12:31 +0200250 if (strcmp(idstr, se->idstr) == 0
251 && instance_id <= se->instance_id) {
252 instance_id = se->instance_id + 1;
253 }
254 }
255 return instance_id;
256}
257
Alex Williamson7685ee62010-06-25 11:09:14 -0600258static int calculate_compat_instance_id(const char *idstr)
259{
260 SaveStateEntry *se;
261 int instance_id = 0;
262
263 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200264 if (!se->compat) {
Alex Williamson7685ee62010-06-25 11:09:14 -0600265 continue;
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200266 }
Alex Williamson7685ee62010-06-25 11:09:14 -0600267
268 if (strcmp(idstr, se->compat->idstr) == 0
269 && instance_id <= se->compat->instance_id) {
270 instance_id = se->compat->instance_id + 1;
271 }
272 }
273 return instance_id;
274}
275
aliguoria672b462008-11-11 21:33:36 +0000276/* TODO: Individual devices generally have very little idea about the rest
277 of the system, so instance_id should be removed/replaced.
278 Meanwhile pass -1 as instance_id if you do not already have a clearly
279 distinguishing id for all instances of your device class. */
Alex Williamson0be71e32010-06-25 11:09:07 -0600280int register_savevm_live(DeviceState *dev,
281 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +0000282 int instance_id,
283 int version_id,
Juan Quintela7908c782012-06-26 18:46:10 +0200284 SaveVMHandlers *ops,
aliguoria672b462008-11-11 21:33:36 +0000285 void *opaque)
286{
Juan Quintela8718e992009-09-01 02:12:31 +0200287 SaveStateEntry *se;
aliguoria672b462008-11-11 21:33:36 +0000288
Anthony Liguori7267c092011-08-20 22:09:37 -0500289 se = g_malloc0(sizeof(SaveStateEntry));
aliguoria672b462008-11-11 21:33:36 +0000290 se->version_id = version_id;
291 se->section_id = global_section_id++;
Juan Quintela7908c782012-06-26 18:46:10 +0200292 se->ops = ops;
aliguoria672b462008-11-11 21:33:36 +0000293 se->opaque = opaque;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200294 se->vmsd = NULL;
Cam Macdonell24312962010-07-26 18:11:00 -0600295 se->no_migrate = 0;
Stefano Stabellinia7ae8352012-01-25 12:24:51 +0000296 /* if this is a live_savem then set is_ram */
Juan Quintela16310a32012-06-28 15:31:37 +0200297 if (ops->save_live_setup != NULL) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +0000298 se->is_ram = 1;
299 }
aliguoria672b462008-11-11 21:33:36 +0000300
Anthony Liguori09e5ab62012-02-03 12:28:43 -0600301 if (dev) {
302 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -0600303 if (id) {
304 pstrcpy(se->idstr, sizeof(se->idstr), id);
305 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -0500306 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -0600307
Anthony Liguori7267c092011-08-20 22:09:37 -0500308 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -0600309 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
310 se->compat->instance_id = instance_id == -1 ?
311 calculate_compat_instance_id(idstr) : instance_id;
312 instance_id = -1;
313 }
314 }
315 pstrcat(se->idstr, sizeof(se->idstr), idstr);
316
Juan Quintela8718e992009-09-01 02:12:31 +0200317 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -0600318 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +0200319 } else {
320 se->instance_id = instance_id;
aliguoria672b462008-11-11 21:33:36 +0000321 }
Alex Williamson7685ee62010-06-25 11:09:14 -0600322 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +0200323 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +0000324 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
aliguoria672b462008-11-11 21:33:36 +0000325 return 0;
326}
327
Alex Williamson0be71e32010-06-25 11:09:07 -0600328int register_savevm(DeviceState *dev,
329 const char *idstr,
aliguoria672b462008-11-11 21:33:36 +0000330 int instance_id,
331 int version_id,
332 SaveStateHandler *save_state,
333 LoadStateHandler *load_state,
334 void *opaque)
335{
Juan Quintela7908c782012-06-26 18:46:10 +0200336 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
337 ops->save_state = save_state;
338 ops->load_state = load_state;
Alex Williamson0be71e32010-06-25 11:09:07 -0600339 return register_savevm_live(dev, idstr, instance_id, version_id,
Juan Quintela7908c782012-06-26 18:46:10 +0200340 ops, opaque);
aliguoria672b462008-11-11 21:33:36 +0000341}
342
Alex Williamson0be71e32010-06-25 11:09:07 -0600343void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
aliguori41bd13a2009-04-17 17:10:59 +0000344{
Juan Quintela8718e992009-09-01 02:12:31 +0200345 SaveStateEntry *se, *new_se;
Alex Williamson7685ee62010-06-25 11:09:14 -0600346 char id[256] = "";
347
Anthony Liguori09e5ab62012-02-03 12:28:43 -0600348 if (dev) {
349 char *path = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -0600350 if (path) {
351 pstrcpy(id, sizeof(id), path);
352 pstrcat(id, sizeof(id), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -0500353 g_free(path);
Alex Williamson7685ee62010-06-25 11:09:14 -0600354 }
355 }
356 pstrcat(id, sizeof(id), idstr);
aliguori41bd13a2009-04-17 17:10:59 +0000357
Blue Swirl72cf2d42009-09-12 07:36:22 +0000358 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Alex Williamson7685ee62010-06-25 11:09:14 -0600359 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000360 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -0600361 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500362 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -0600363 }
Juan Quintela22ea40f2012-06-26 17:19:10 +0200364 g_free(se->ops);
Anthony Liguori7267c092011-08-20 22:09:37 -0500365 g_free(se);
aliguori41bd13a2009-04-17 17:10:59 +0000366 }
aliguori41bd13a2009-04-17 17:10:59 +0000367 }
368}
369
Alex Williamson0be71e32010-06-25 11:09:07 -0600370int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +0200371 const VMStateDescription *vmsd,
372 void *opaque, int alias_id,
373 int required_for_version)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200374{
Juan Quintela8718e992009-09-01 02:12:31 +0200375 SaveStateEntry *se;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200376
Jan Kiszka4d2ffa02010-05-15 13:32:40 +0200377 /* If this triggers, alias support can be dropped for the vmsd. */
378 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
379
Anthony Liguori7267c092011-08-20 22:09:37 -0500380 se = g_malloc0(sizeof(SaveStateEntry));
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200381 se->version_id = vmsd->version_id;
382 se->section_id = global_section_id++;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200383 se->opaque = opaque;
384 se->vmsd = vmsd;
Jan Kiszka4d2ffa02010-05-15 13:32:40 +0200385 se->alias_id = alias_id;
Gerd Hoffmann2837c8e2011-07-08 10:44:35 +0200386 se->no_migrate = vmsd->unmigratable;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200387
Anthony Liguori09e5ab62012-02-03 12:28:43 -0600388 if (dev) {
389 char *id = qdev_get_dev_path(dev);
Alex Williamson7685ee62010-06-25 11:09:14 -0600390 if (id) {
391 pstrcpy(se->idstr, sizeof(se->idstr), id);
392 pstrcat(se->idstr, sizeof(se->idstr), "/");
Anthony Liguori7267c092011-08-20 22:09:37 -0500393 g_free(id);
Alex Williamson7685ee62010-06-25 11:09:14 -0600394
Anthony Liguori7267c092011-08-20 22:09:37 -0500395 se->compat = g_malloc0(sizeof(CompatEntry));
Alex Williamson7685ee62010-06-25 11:09:14 -0600396 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
397 se->compat->instance_id = instance_id == -1 ?
398 calculate_compat_instance_id(vmsd->name) : instance_id;
399 instance_id = -1;
400 }
401 }
402 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
403
Juan Quintela8718e992009-09-01 02:12:31 +0200404 if (instance_id == -1) {
Alex Williamson7685ee62010-06-25 11:09:14 -0600405 se->instance_id = calculate_new_instance_id(se->idstr);
Juan Quintela8718e992009-09-01 02:12:31 +0200406 } else {
407 se->instance_id = instance_id;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200408 }
Alex Williamson7685ee62010-06-25 11:09:14 -0600409 assert(!se->compat || se->instance_id == 0);
Juan Quintela8718e992009-09-01 02:12:31 +0200410 /* add at the end of list */
Blue Swirl72cf2d42009-09-12 07:36:22 +0000411 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200412 return 0;
413}
414
Alex Williamson0be71e32010-06-25 11:09:07 -0600415void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
416 void *opaque)
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200417{
Juan Quintela1eb75382009-09-10 03:04:29 +0200418 SaveStateEntry *se, *new_se;
419
Blue Swirl72cf2d42009-09-12 07:36:22 +0000420 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
Juan Quintela1eb75382009-09-10 03:04:29 +0200421 if (se->vmsd == vmsd && se->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000422 QTAILQ_REMOVE(&savevm_handlers, se, entry);
Alex Williamson69e58af2010-07-21 08:35:31 -0600423 if (se->compat) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500424 g_free(se->compat);
Alex Williamson69e58af2010-07-21 08:35:31 -0600425 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500426 g_free(se);
Juan Quintela1eb75382009-09-10 03:04:29 +0200427 }
428 }
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200429}
430
Juan Quintela4082be42009-08-20 19:42:24 +0200431static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
432{
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +1100433 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200434 if (!se->vmsd) { /* Old style */
Juan Quintela22ea40f2012-06-26 17:19:10 +0200435 return se->ops->load_state(f, se->opaque, version_id);
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200436 }
437 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
Juan Quintela4082be42009-08-20 19:42:24 +0200438}
439
Alex Williamsondc912122011-01-11 14:39:43 -0700440static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
Juan Quintela4082be42009-08-20 19:42:24 +0200441{
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +1100442 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200443 if (!se->vmsd) { /* Old style */
Juan Quintela22ea40f2012-06-26 17:19:10 +0200444 se->ops->save_state(f, se->opaque);
Alex Williamsondc912122011-01-11 14:39:43 -0700445 return;
Juan Quintela9ed7d6a2009-08-20 19:42:25 +0200446 }
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200447 vmstate_save_state(f, se->vmsd, se->opaque);
Juan Quintela4082be42009-08-20 19:42:24 +0200448}
449
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200450bool qemu_savevm_state_blocked(Error **errp)
Alex Williamsondc912122011-01-11 14:39:43 -0700451{
452 SaveStateEntry *se;
453
454 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
455 if (se->no_migrate) {
Cole Robinsonf231b882014-03-21 19:42:26 -0400456 error_setg(errp, "State blocked by non-migratable device '%s'",
457 se->idstr);
Alex Williamsondc912122011-01-11 14:39:43 -0700458 return true;
459 }
460 }
461 return false;
462}
463
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100464void qemu_savevm_state_begin(QEMUFile *f,
465 const MigrationParams *params)
aliguoria672b462008-11-11 21:33:36 +0000466{
467 SaveStateEntry *se;
Juan Quintela39346382011-09-22 11:02:14 +0200468 int ret;
aliguoria672b462008-11-11 21:33:36 +0000469
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +1100470 trace_savevm_state_begin();
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200471 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela22ea40f2012-06-26 17:19:10 +0200472 if (!se->ops || !se->ops->set_params) {
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200473 continue;
Isaku Yamahata6607ae22012-06-19 18:43:09 +0300474 }
Juan Quintela22ea40f2012-06-26 17:19:10 +0200475 se->ops->set_params(params, se->opaque);
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200476 }
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200477
aliguoria672b462008-11-11 21:33:36 +0000478 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
479 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
480
Blue Swirl72cf2d42009-09-12 07:36:22 +0000481 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +0000482 int len;
483
Juan Quintelad1315aa2012-06-28 15:11:57 +0200484 if (!se->ops || !se->ops->save_live_setup) {
aliguoria672b462008-11-11 21:33:36 +0000485 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +0200486 }
Juan Quintela6bd68782012-06-27 10:59:15 +0200487 if (se->ops && se->ops->is_active) {
488 if (!se->ops->is_active(se->opaque)) {
489 continue;
490 }
491 }
aliguoria672b462008-11-11 21:33:36 +0000492 /* Section type */
493 qemu_put_byte(f, QEMU_VM_SECTION_START);
494 qemu_put_be32(f, se->section_id);
495
496 /* ID string */
497 len = strlen(se->idstr);
498 qemu_put_byte(f, len);
499 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
500
501 qemu_put_be32(f, se->instance_id);
502 qemu_put_be32(f, se->version_id);
503
Juan Quintelad1315aa2012-06-28 15:11:57 +0200504 ret = se->ops->save_live_setup(f, se->opaque);
Juan Quintela29757252011-10-19 15:22:18 +0200505 if (ret < 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100506 qemu_file_set_error(f, ret);
507 break;
Juan Quintela29757252011-10-19 15:22:18 +0200508 }
aliguoria672b462008-11-11 21:33:36 +0000509 }
aliguoria672b462008-11-11 21:33:36 +0000510}
511
Juan Quintela39346382011-09-22 11:02:14 +0200512/*
Dong Xu Wang07f35072011-11-22 18:06:26 +0800513 * this function has three return values:
Juan Quintela39346382011-09-22 11:02:14 +0200514 * negative: there was one error, and we have -errno.
515 * 0 : We haven't finished, caller have to go again
516 * 1 : We have finished, we can go to complete phase
517 */
Luiz Capitulino539de122011-12-05 14:06:56 -0200518int qemu_savevm_state_iterate(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000519{
520 SaveStateEntry *se;
521 int ret = 1;
522
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +1100523 trace_savevm_state_iterate();
Blue Swirl72cf2d42009-09-12 07:36:22 +0000524 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela16310a32012-06-28 15:31:37 +0200525 if (!se->ops || !se->ops->save_live_iterate) {
aliguoria672b462008-11-11 21:33:36 +0000526 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +0200527 }
Juan Quintela6bd68782012-06-27 10:59:15 +0200528 if (se->ops && se->ops->is_active) {
529 if (!se->ops->is_active(se->opaque)) {
530 continue;
531 }
532 }
Juan Quintelaaac844e2012-05-22 00:38:26 +0200533 if (qemu_file_rate_limit(f)) {
534 return 0;
535 }
Alexey Kardashevskiy464400f2014-03-07 01:33:37 +0530536 trace_savevm_section_start(se->idstr, se->section_id);
aliguoria672b462008-11-11 21:33:36 +0000537 /* Section type */
538 qemu_put_byte(f, QEMU_VM_SECTION_PART);
539 qemu_put_be32(f, se->section_id);
540
Juan Quintela16310a32012-06-28 15:31:37 +0200541 ret = se->ops->save_live_iterate(f, se->opaque);
Alexey Kardashevskiy464400f2014-03-07 01:33:37 +0530542 trace_savevm_section_end(se->idstr, se->section_id);
Juan Quintela517a13c2012-05-21 23:46:44 +0200543
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100544 if (ret < 0) {
545 qemu_file_set_error(f, ret);
546 }
Juan Quintela29757252011-10-19 15:22:18 +0200547 if (ret <= 0) {
Jan Kiszka90697be2009-12-01 15:19:55 +0100548 /* Do not proceed to the next vmstate before this one reported
549 completion of the current stage. This serializes the migration
550 and reduces the probability that a faster changing state is
551 synchronized over and over again. */
552 break;
553 }
aliguoria672b462008-11-11 21:33:36 +0000554 }
Juan Quintela39346382011-09-22 11:02:14 +0200555 return ret;
aliguoria672b462008-11-11 21:33:36 +0000556}
557
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100558void qemu_savevm_state_complete(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000559{
560 SaveStateEntry *se;
Juan Quintela29757252011-10-19 15:22:18 +0200561 int ret;
aliguoria672b462008-11-11 21:33:36 +0000562
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +1100563 trace_savevm_state_complete();
564
Jan Kiszkaea375f92010-03-01 19:10:30 +0100565 cpu_synchronize_all_states();
566
Blue Swirl72cf2d42009-09-12 07:36:22 +0000567 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela16310a32012-06-28 15:31:37 +0200568 if (!se->ops || !se->ops->save_live_complete) {
aliguoria672b462008-11-11 21:33:36 +0000569 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +0200570 }
Juan Quintela6bd68782012-06-27 10:59:15 +0200571 if (se->ops && se->ops->is_active) {
572 if (!se->ops->is_active(se->opaque)) {
573 continue;
574 }
575 }
Alexey Kardashevskiy464400f2014-03-07 01:33:37 +0530576 trace_savevm_section_start(se->idstr, se->section_id);
aliguoria672b462008-11-11 21:33:36 +0000577 /* Section type */
578 qemu_put_byte(f, QEMU_VM_SECTION_END);
579 qemu_put_be32(f, se->section_id);
580
Juan Quintela16310a32012-06-28 15:31:37 +0200581 ret = se->ops->save_live_complete(f, se->opaque);
Alexey Kardashevskiy464400f2014-03-07 01:33:37 +0530582 trace_savevm_section_end(se->idstr, se->section_id);
Juan Quintela29757252011-10-19 15:22:18 +0200583 if (ret < 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100584 qemu_file_set_error(f, ret);
585 return;
Juan Quintela29757252011-10-19 15:22:18 +0200586 }
aliguoria672b462008-11-11 21:33:36 +0000587 }
588
Blue Swirl72cf2d42009-09-12 07:36:22 +0000589 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +0000590 int len;
591
Juan Quintela22ea40f2012-06-26 17:19:10 +0200592 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
Eduardo Habkost5cecf412013-11-28 12:01:12 -0200593 continue;
Juan Quintela22ea40f2012-06-26 17:19:10 +0200594 }
Alexey Kardashevskiy464400f2014-03-07 01:33:37 +0530595 trace_savevm_section_start(se->idstr, se->section_id);
aliguoria672b462008-11-11 21:33:36 +0000596 /* Section type */
597 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
598 qemu_put_be32(f, se->section_id);
599
600 /* ID string */
601 len = strlen(se->idstr);
602 qemu_put_byte(f, len);
603 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
604
605 qemu_put_be32(f, se->instance_id);
606 qemu_put_be32(f, se->version_id);
607
Alex Williamsondc912122011-01-11 14:39:43 -0700608 vmstate_save(f, se);
Alexey Kardashevskiy464400f2014-03-07 01:33:37 +0530609 trace_savevm_section_end(se->idstr, se->section_id);
aliguoria672b462008-11-11 21:33:36 +0000610 }
611
612 qemu_put_byte(f, QEMU_VM_EOF);
Paolo Bonziniedaae612013-02-22 17:36:29 +0100613 qemu_fflush(f);
aliguoria672b462008-11-11 21:33:36 +0000614}
615
Juan Quintelae4ed1542012-09-21 11:18:18 +0200616uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size)
617{
618 SaveStateEntry *se;
619 uint64_t ret = 0;
620
621 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
622 if (!se->ops || !se->ops->save_live_pending) {
623 continue;
624 }
625 if (se->ops && se->ops->is_active) {
626 if (!se->ops->is_active(se->opaque)) {
627 continue;
628 }
629 }
630 ret += se->ops->save_live_pending(f, se->opaque, max_size);
631 }
632 return ret;
633}
634
Juan Quintela65227732013-01-14 14:14:42 +0100635void qemu_savevm_state_cancel(void)
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +0100636{
637 SaveStateEntry *se;
638
Alexey Kardashevskiy9013dca2014-03-11 10:42:29 +1100639 trace_savevm_state_cancel();
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +0100640 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
Juan Quintela9b5bfab2012-06-26 19:26:41 +0200641 if (se->ops && se->ops->cancel) {
642 se->ops->cancel(se->opaque);
Jan Kiszka4ec7fcc2009-11-30 18:21:21 +0100643 }
644 }
645}
646
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200647static int qemu_savevm_state(QEMUFile *f)
aliguoria672b462008-11-11 21:33:36 +0000648{
aliguoria672b462008-11-11 21:33:36 +0000649 int ret;
Isaku Yamahata6607ae22012-06-19 18:43:09 +0300650 MigrationParams params = {
651 .blk = 0,
652 .shared = 0
653 };
aliguoria672b462008-11-11 21:33:36 +0000654
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200655 if (qemu_savevm_state_blocked(NULL)) {
Paolo Bonzini04943eb2013-02-22 17:36:10 +0100656 return -EINVAL;
Alex Williamsondc912122011-01-11 14:39:43 -0700657 }
658
Paolo Bonzini9b095032013-02-22 17:36:28 +0100659 qemu_mutex_unlock_iothread();
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100660 qemu_savevm_state_begin(f, &params);
Paolo Bonzini9b095032013-02-22 17:36:28 +0100661 qemu_mutex_lock_iothread();
662
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100663 while (qemu_file_get_error(f) == 0) {
664 if (qemu_savevm_state_iterate(f) > 0) {
665 break;
666 }
667 }
aliguoria672b462008-11-11 21:33:36 +0000668
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100669 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +0200670 if (ret == 0) {
Paolo Bonzini47c8c172013-02-22 17:36:13 +0100671 qemu_savevm_state_complete(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +0200672 ret = qemu_file_get_error(f);
Juan Quintela39346382011-09-22 11:02:14 +0200673 }
Paolo Bonzini04943eb2013-02-22 17:36:10 +0100674 if (ret != 0) {
675 qemu_savevm_state_cancel();
676 }
aliguoria672b462008-11-11 21:33:36 +0000677 return ret;
678}
679
Stefano Stabellinia7ae8352012-01-25 12:24:51 +0000680static int qemu_save_device_state(QEMUFile *f)
681{
682 SaveStateEntry *se;
683
684 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
685 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
686
687 cpu_synchronize_all_states();
688
689 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
690 int len;
691
692 if (se->is_ram) {
693 continue;
694 }
Juan Quintela22ea40f2012-06-26 17:19:10 +0200695 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +0000696 continue;
697 }
698
699 /* Section type */
700 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
701 qemu_put_be32(f, se->section_id);
702
703 /* ID string */
704 len = strlen(se->idstr);
705 qemu_put_byte(f, len);
706 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
707
708 qemu_put_be32(f, se->instance_id);
709 qemu_put_be32(f, se->version_id);
710
711 vmstate_save(f, se);
712 }
713
714 qemu_put_byte(f, QEMU_VM_EOF);
715
716 return qemu_file_get_error(f);
717}
718
aliguoria672b462008-11-11 21:33:36 +0000719static SaveStateEntry *find_se(const char *idstr, int instance_id)
720{
721 SaveStateEntry *se;
722
Blue Swirl72cf2d42009-09-12 07:36:22 +0000723 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
aliguoria672b462008-11-11 21:33:36 +0000724 if (!strcmp(se->idstr, idstr) &&
Jan Kiszka4d2ffa02010-05-15 13:32:40 +0200725 (instance_id == se->instance_id ||
726 instance_id == se->alias_id))
aliguoria672b462008-11-11 21:33:36 +0000727 return se;
Alex Williamson7685ee62010-06-25 11:09:14 -0600728 /* Migrating from an older version? */
729 if (strstr(se->idstr, idstr) && se->compat) {
730 if (!strcmp(se->compat->idstr, idstr) &&
731 (instance_id == se->compat->instance_id ||
732 instance_id == se->alias_id))
733 return se;
734 }
aliguoria672b462008-11-11 21:33:36 +0000735 }
736 return NULL;
737}
738
739typedef struct LoadStateEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +0000740 QLIST_ENTRY(LoadStateEntry) entry;
aliguoria672b462008-11-11 21:33:36 +0000741 SaveStateEntry *se;
742 int section_id;
743 int version_id;
aliguoria672b462008-11-11 21:33:36 +0000744} LoadStateEntry;
745
aliguoria672b462008-11-11 21:33:36 +0000746int qemu_loadvm_state(QEMUFile *f)
747{
Blue Swirl72cf2d42009-09-12 07:36:22 +0000748 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
749 QLIST_HEAD_INITIALIZER(loadvm_handlers);
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +0200750 LoadStateEntry *le, *new_le;
aliguoria672b462008-11-11 21:33:36 +0000751 uint8_t section_type;
752 unsigned int v;
753 int ret;
754
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200755 if (qemu_savevm_state_blocked(NULL)) {
Alex Williamsondc912122011-01-11 14:39:43 -0700756 return -EINVAL;
757 }
758
aliguoria672b462008-11-11 21:33:36 +0000759 v = qemu_get_be32(f);
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200760 if (v != QEMU_VM_FILE_MAGIC) {
aliguoria672b462008-11-11 21:33:36 +0000761 return -EINVAL;
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200762 }
aliguoria672b462008-11-11 21:33:36 +0000763
764 v = qemu_get_be32(f);
Juan Quintelabbfe1402009-09-10 03:04:24 +0200765 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
766 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
767 return -ENOTSUP;
768 }
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200769 if (v != QEMU_VM_FILE_VERSION) {
aliguoria672b462008-11-11 21:33:36 +0000770 return -ENOTSUP;
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200771 }
aliguoria672b462008-11-11 21:33:36 +0000772
773 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
774 uint32_t instance_id, version_id, section_id;
aliguoria672b462008-11-11 21:33:36 +0000775 SaveStateEntry *se;
776 char idstr[257];
777 int len;
778
779 switch (section_type) {
780 case QEMU_VM_SECTION_START:
781 case QEMU_VM_SECTION_FULL:
782 /* Read section start */
783 section_id = qemu_get_be32(f);
784 len = qemu_get_byte(f);
785 qemu_get_buffer(f, (uint8_t *)idstr, len);
786 idstr[len] = 0;
787 instance_id = qemu_get_be32(f);
788 version_id = qemu_get_be32(f);
789
790 /* Find savevm section */
791 se = find_se(idstr, instance_id);
792 if (se == NULL) {
793 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
794 ret = -EINVAL;
795 goto out;
796 }
797
798 /* Validate version */
799 if (version_id > se->version_id) {
800 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
801 version_id, idstr, se->version_id);
802 ret = -EINVAL;
803 goto out;
804 }
805
806 /* Add entry */
Anthony Liguori7267c092011-08-20 22:09:37 -0500807 le = g_malloc0(sizeof(*le));
aliguoria672b462008-11-11 21:33:36 +0000808
809 le->se = se;
810 le->section_id = section_id;
811 le->version_id = version_id;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000812 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
aliguoria672b462008-11-11 21:33:36 +0000813
Juan Quintela4082be42009-08-20 19:42:24 +0200814 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +0200815 if (ret < 0) {
816 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
817 instance_id, idstr);
818 goto out;
819 }
aliguoria672b462008-11-11 21:33:36 +0000820 break;
821 case QEMU_VM_SECTION_PART:
822 case QEMU_VM_SECTION_END:
823 section_id = qemu_get_be32(f);
824
Blue Swirl72cf2d42009-09-12 07:36:22 +0000825 QLIST_FOREACH(le, &loadvm_handlers, entry) {
Juan Quintelaf4dbb8d2009-09-01 02:12:33 +0200826 if (le->section_id == section_id) {
827 break;
828 }
829 }
aliguoria672b462008-11-11 21:33:36 +0000830 if (le == NULL) {
831 fprintf(stderr, "Unknown savevm section %d\n", section_id);
832 ret = -EINVAL;
833 goto out;
834 }
835
Juan Quintela4082be42009-08-20 19:42:24 +0200836 ret = vmstate_load(f, le->se, le->version_id);
Juan Quintelab5a22e42009-08-20 19:42:23 +0200837 if (ret < 0) {
838 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
839 section_id);
840 goto out;
841 }
aliguoria672b462008-11-11 21:33:36 +0000842 break;
843 default:
844 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
845 ret = -EINVAL;
846 goto out;
847 }
848 }
849
Jan Kiszkaea375f92010-03-01 19:10:30 +0100850 cpu_synchronize_all_post_init();
851
aliguoria672b462008-11-11 21:33:36 +0000852 ret = 0;
853
854out:
Blue Swirl72cf2d42009-09-12 07:36:22 +0000855 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
856 QLIST_REMOVE(le, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -0500857 g_free(le);
aliguoria672b462008-11-11 21:33:36 +0000858 }
859
Juan Quintela42802d42011-10-05 01:14:46 +0200860 if (ret == 0) {
861 ret = qemu_file_get_error(f);
Juan Quintela624b9cc2011-10-05 01:02:52 +0200862 }
aliguoria672b462008-11-11 21:33:36 +0000863
864 return ret;
865}
866
Stefan Hajnoczi29d78272013-05-25 11:09:42 +0800867static BlockDriverState *find_vmstate_bs(void)
868{
869 BlockDriverState *bs = NULL;
870 while ((bs = bdrv_next(bs))) {
871 if (bdrv_can_snapshot(bs)) {
872 return bs;
873 }
874 }
875 return NULL;
876}
877
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100878/*
879 * Deletes snapshots of a given name in all opened images.
880 */
881static int del_existing_snapshots(Monitor *mon, const char *name)
882{
883 BlockDriverState *bs;
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100884 QEMUSnapshotInfo sn1, *snapshot = &sn1;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +0800885 Error *err = NULL;
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100886
Markus Armbrusterdbc13592010-06-02 18:55:21 +0200887 bs = NULL;
888 while ((bs = bdrv_next(bs))) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100889 if (bdrv_can_snapshot(bs) &&
Eduardo Habkost38ff78d2013-11-28 12:01:13 -0200890 bdrv_snapshot_find(bs, snapshot, name) >= 0) {
Wenchao Xiaa89d89d2013-09-11 14:04:33 +0800891 bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100892 if (err) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100893 monitor_printf(mon,
Wenchao Xiaa89d89d2013-09-11 14:04:33 +0800894 "Error while deleting snapshot on device '%s':"
895 " %s\n",
896 bdrv_get_device_name(bs),
897 error_get_pretty(err));
898 error_free(err);
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100899 return -1;
900 }
901 }
902 }
903
904 return 0;
905}
906
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300907void do_savevm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +0000908{
909 BlockDriverState *bs, *bs1;
910 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100911 int ret;
aliguoria672b462008-11-11 21:33:36 +0000912 QEMUFile *f;
913 int saved_vm_running;
Kevin Wolfc2c9a462011-11-16 11:35:54 +0100914 uint64_t vm_state_size;
Stefan Weil68b891e2013-01-07 22:20:27 +0100915 qemu_timeval tv;
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -0300916 struct tm tm;
Luiz Capitulinod54908a2009-08-28 15:27:13 -0300917 const char *name = qdict_get_try_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +0000918
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -0300919 /* Verify if there is a device that doesn't support snapshots and is writable */
Markus Armbrusterdbc13592010-06-02 18:55:21 +0200920 bs = NULL;
921 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -0300922
Markus Armbruster07b70bf2011-08-03 15:08:11 +0200923 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -0300924 continue;
925 }
926
927 if (!bdrv_can_snapshot(bs)) {
928 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
929 bdrv_get_device_name(bs));
930 return;
931 }
932 }
933
Stefan Hajnoczi29d78272013-05-25 11:09:42 +0800934 bs = find_vmstate_bs();
aliguoria672b462008-11-11 21:33:36 +0000935 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +0000936 monitor_printf(mon, "No block device can accept snapshots\n");
aliguoria672b462008-11-11 21:33:36 +0000937 return;
938 }
aliguoria672b462008-11-11 21:33:36 +0000939
Luiz Capitulino13548692011-07-29 15:36:43 -0300940 saved_vm_running = runstate_is_running();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300941 vm_stop(RUN_STATE_SAVE_VM);
aliguoria672b462008-11-11 21:33:36 +0000942
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100943 memset(sn, 0, sizeof(*sn));
aliguoria672b462008-11-11 21:33:36 +0000944
945 /* fill auxiliary fields */
Stefan Weil68b891e2013-01-07 22:20:27 +0100946 qemu_gettimeofday(&tv);
aliguoria672b462008-11-11 21:33:36 +0000947 sn->date_sec = tv.tv_sec;
948 sn->date_nsec = tv.tv_usec * 1000;
Alex Blighbc72ad62013-08-21 16:03:08 +0100949 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
aliguoria672b462008-11-11 21:33:36 +0000950
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -0300951 if (name) {
952 ret = bdrv_snapshot_find(bs, old_sn, name);
953 if (ret >= 0) {
954 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
955 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
956 } else {
957 pstrcpy(sn->name, sizeof(sn->name), name);
958 }
959 } else {
Blue Swirld7d9b522010-09-09 19:13:04 +0000960 /* cast below needed for OpenBSD where tv_sec is still 'long' */
961 localtime_r((const time_t *)&tv.tv_sec, &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -0300962 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
Miguel Di Ciurcio Filho7d631a12010-08-04 14:55:49 -0300963 }
964
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100965 /* Delete old snapshots of the same name */
Marcelo Tosattif139a412010-01-20 14:26:34 -0200966 if (name && del_existing_snapshots(mon, name) < 0) {
Kevin Wolfcb499fb2009-11-03 17:34:37 +0100967 goto the_end;
968 }
969
aliguoria672b462008-11-11 21:33:36 +0000970 /* save the VM state */
Christoph Hellwig45566e92009-07-10 23:11:57 +0200971 f = qemu_fopen_bdrv(bs, 1);
aliguoria672b462008-11-11 21:33:36 +0000972 if (!f) {
aliguori376253e2009-03-05 23:01:23 +0000973 monitor_printf(mon, "Could not open VM state file\n");
aliguoria672b462008-11-11 21:33:36 +0000974 goto the_end;
975 }
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200976 ret = qemu_savevm_state(f);
aliguori2d22b182008-12-11 21:06:49 +0000977 vm_state_size = qemu_ftell(f);
aliguoria672b462008-11-11 21:33:36 +0000978 qemu_fclose(f);
979 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +0000980 monitor_printf(mon, "Error %d while writing VM\n", ret);
aliguoria672b462008-11-11 21:33:36 +0000981 goto the_end;
982 }
983
984 /* create the snapshots */
985
Markus Armbrusterdbc13592010-06-02 18:55:21 +0200986 bs1 = NULL;
987 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -0300988 if (bdrv_can_snapshot(bs1)) {
aliguori2d22b182008-12-11 21:06:49 +0000989 /* Write VM state size only to the image that contains the state */
990 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
aliguoria672b462008-11-11 21:33:36 +0000991 ret = bdrv_snapshot_create(bs1, sn);
992 if (ret < 0) {
aliguori376253e2009-03-05 23:01:23 +0000993 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
994 bdrv_get_device_name(bs1));
aliguoria672b462008-11-11 21:33:36 +0000995 }
996 }
997 }
998
999 the_end:
Eduardo Habkost38ff78d2013-11-28 12:01:13 -02001000 if (saved_vm_running) {
aliguoria672b462008-11-11 21:33:36 +00001001 vm_start();
Eduardo Habkost38ff78d2013-11-28 12:01:13 -02001002 }
aliguoria672b462008-11-11 21:33:36 +00001003}
1004
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001005void qmp_xen_save_devices_state(const char *filename, Error **errp)
1006{
1007 QEMUFile *f;
1008 int saved_vm_running;
1009 int ret;
1010
1011 saved_vm_running = runstate_is_running();
1012 vm_stop(RUN_STATE_SAVE_VM);
1013
1014 f = qemu_fopen(filename, "wb");
1015 if (!f) {
Luiz Capitulino1befce92013-06-07 14:36:58 -04001016 error_setg_file_open(errp, errno, filename);
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001017 goto the_end;
1018 }
1019 ret = qemu_save_device_state(f);
1020 qemu_fclose(f);
1021 if (ret < 0) {
1022 error_set(errp, QERR_IO_ERROR);
1023 }
1024
1025 the_end:
Eduardo Habkost38ff78d2013-11-28 12:01:13 -02001026 if (saved_vm_running) {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001027 vm_start();
Eduardo Habkost38ff78d2013-11-28 12:01:13 -02001028 }
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001029}
1030
Markus Armbruster03cd4652010-02-17 16:24:10 +01001031int load_vmstate(const char *name)
aliguoria672b462008-11-11 21:33:36 +00001032{
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001033 BlockDriverState *bs, *bs_vm_state;
aliguori2d22b182008-12-11 21:06:49 +00001034 QEMUSnapshotInfo sn;
aliguoria672b462008-11-11 21:33:36 +00001035 QEMUFile *f;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001036 int ret;
aliguoria672b462008-11-11 21:33:36 +00001037
Stefan Hajnoczi29d78272013-05-25 11:09:42 +08001038 bs_vm_state = find_vmstate_bs();
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001039 if (!bs_vm_state) {
1040 error_report("No block device supports snapshots");
1041 return -ENOTSUP;
1042 }
1043
1044 /* Don't even try to load empty VM states */
1045 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
1046 if (ret < 0) {
1047 return ret;
1048 } else if (sn.vm_state_size == 0) {
Kevin Wolfe11480d2011-03-01 10:48:12 +01001049 error_report("This is a disk-only snapshot. Revert to it offline "
1050 "using qemu-img.");
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001051 return -EINVAL;
1052 }
1053
1054 /* Verify if there is any device that doesn't support snapshots and is
1055 writable and check if the requested snapshot is available too. */
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001056 bs = NULL;
1057 while ((bs = bdrv_next(bs))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001058
Markus Armbruster07b70bf2011-08-03 15:08:11 +02001059 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001060 continue;
1061 }
1062
1063 if (!bdrv_can_snapshot(bs)) {
1064 error_report("Device '%s' is writable but does not support snapshots.",
1065 bdrv_get_device_name(bs));
1066 return -ENOTSUP;
1067 }
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001068
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001069 ret = bdrv_snapshot_find(bs, &sn, name);
1070 if (ret < 0) {
1071 error_report("Device '%s' does not have the requested snapshot '%s'",
1072 bdrv_get_device_name(bs), name);
1073 return ret;
1074 }
aliguoria672b462008-11-11 21:33:36 +00001075 }
1076
1077 /* Flush all IO requests so they don't interfere with the new state. */
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001078 bdrv_drain_all();
aliguoria672b462008-11-11 21:33:36 +00001079
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001080 bs = NULL;
1081 while ((bs = bdrv_next(bs))) {
1082 if (bdrv_can_snapshot(bs)) {
1083 ret = bdrv_snapshot_goto(bs, name);
aliguoria672b462008-11-11 21:33:36 +00001084 if (ret < 0) {
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001085 error_report("Error %d while activating snapshot '%s' on '%s'",
1086 ret, name, bdrv_get_device_name(bs));
1087 return ret;
aliguoria672b462008-11-11 21:33:36 +00001088 }
1089 }
1090 }
1091
aliguoria672b462008-11-11 21:33:36 +00001092 /* restore the VM state */
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001093 f = qemu_fopen_bdrv(bs_vm_state, 0);
aliguoria672b462008-11-11 21:33:36 +00001094 if (!f) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001095 error_report("Could not open VM state file");
Juan Quintela05f24012009-08-20 19:42:22 +02001096 return -EINVAL;
aliguoria672b462008-11-11 21:33:36 +00001097 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001098
Jan Kiszka5a8a49d2011-06-14 18:29:45 +02001099 qemu_system_reset(VMRESET_SILENT);
aliguoria672b462008-11-11 21:33:36 +00001100 ret = qemu_loadvm_state(f);
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001101
aliguoria672b462008-11-11 21:33:36 +00001102 qemu_fclose(f);
1103 if (ret < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001104 error_report("Error %d while loading VM state", ret);
Juan Quintela05f24012009-08-20 19:42:22 +02001105 return ret;
aliguoria672b462008-11-11 21:33:36 +00001106 }
Miguel Di Ciurcio Filhof0aa7a82010-07-19 15:25:01 -03001107
Juan Quintela05f24012009-08-20 19:42:22 +02001108 return 0;
Juan Quintela7b630342009-08-20 19:42:20 +02001109}
1110
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001111void do_delvm(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001112{
1113 BlockDriverState *bs, *bs1;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08001114 Error *err = NULL;
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001115 const char *name = qdict_get_str(qdict, "name");
aliguoria672b462008-11-11 21:33:36 +00001116
Stefan Hajnoczi29d78272013-05-25 11:09:42 +08001117 bs = find_vmstate_bs();
aliguoria672b462008-11-11 21:33:36 +00001118 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001119 monitor_printf(mon, "No block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001120 return;
1121 }
1122
Markus Armbrusterdbc13592010-06-02 18:55:21 +02001123 bs1 = NULL;
1124 while ((bs1 = bdrv_next(bs1))) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001125 if (bdrv_can_snapshot(bs1)) {
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08001126 bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001127 if (err) {
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08001128 monitor_printf(mon,
1129 "Error while deleting snapshot on device '%s':"
1130 " %s\n",
1131 bdrv_get_device_name(bs),
1132 error_get_pretty(err));
1133 error_free(err);
aliguoria672b462008-11-11 21:33:36 +00001134 }
1135 }
1136 }
1137}
1138
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001139void do_info_snapshots(Monitor *mon, const QDict *qdict)
aliguoria672b462008-11-11 21:33:36 +00001140{
1141 BlockDriverState *bs, *bs1;
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03001142 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
1143 int nb_sns, i, ret, available;
1144 int total;
1145 int *available_snapshots;
aliguoria672b462008-11-11 21:33:36 +00001146
Stefan Hajnoczi29d78272013-05-25 11:09:42 +08001147 bs = find_vmstate_bs();
aliguoria672b462008-11-11 21:33:36 +00001148 if (!bs) {
aliguori376253e2009-03-05 23:01:23 +00001149 monitor_printf(mon, "No available block device supports snapshots\n");
aliguoria672b462008-11-11 21:33:36 +00001150 return;
1151 }
aliguoria672b462008-11-11 21:33:36 +00001152
1153 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1154 if (nb_sns < 0) {
aliguori376253e2009-03-05 23:01:23 +00001155 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
aliguoria672b462008-11-11 21:33:36 +00001156 return;
1157 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03001158
1159 if (nb_sns == 0) {
1160 monitor_printf(mon, "There is no snapshot available.\n");
1161 return;
aliguoria672b462008-11-11 21:33:36 +00001162 }
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03001163
Anthony Liguori7267c092011-08-20 22:09:37 -05001164 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03001165 total = 0;
1166 for (i = 0; i < nb_sns; i++) {
1167 sn = &sn_tab[i];
1168 available = 1;
1169 bs1 = NULL;
1170
1171 while ((bs1 = bdrv_next(bs1))) {
1172 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
1173 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
1174 if (ret < 0) {
1175 available = 0;
1176 break;
1177 }
1178 }
1179 }
1180
1181 if (available) {
1182 available_snapshots[total] = i;
1183 total++;
1184 }
1185 }
1186
1187 if (total > 0) {
Wenchao Xia5b917042013-05-25 11:09:45 +08001188 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
1189 monitor_printf(mon, "\n");
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03001190 for (i = 0; i < total; i++) {
1191 sn = &sn_tab[available_snapshots[i]];
Wenchao Xia5b917042013-05-25 11:09:45 +08001192 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
1193 monitor_printf(mon, "\n");
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03001194 }
1195 } else {
1196 monitor_printf(mon, "There is no suitable snapshot available\n");
1197 }
1198
Anthony Liguori7267c092011-08-20 22:09:37 -05001199 g_free(sn_tab);
1200 g_free(available_snapshots);
Miguel Di Ciurcio Filhof9209912010-08-04 14:55:48 -03001201
aliguoria672b462008-11-11 21:33:36 +00001202}
Avi Kivityc5705a72011-12-20 15:59:12 +02001203
1204void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
1205{
Avi Kivity1ddde082012-01-08 13:18:19 +02001206 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
Avi Kivityc5705a72011-12-20 15:59:12 +02001207 memory_region_name(mr), dev);
1208}
1209
1210void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
1211{
1212 /* Nothing do to while the implementation is in RAMBlock */
1213}
1214
1215void vmstate_register_ram_global(MemoryRegion *mr)
1216{
1217 vmstate_register_ram(mr, NULL);
1218}