]> git.proxmox.com Git - mirror_qemu.git/blame - savevm.c
rdma: bug fixes
[mirror_qemu.git] / savevm.c
CommitLineData
a672b469
AL
1/*
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 */
a672b469 24
d40cdb10 25#include "config-host.h"
511d2b14
BS
26#include "qemu-common.h"
27#include "hw/hw.h"
7685ee6a 28#include "hw/qdev.h"
1422e32d 29#include "net/net.h"
83c9089e 30#include "monitor/monitor.h"
9c17d615 31#include "sysemu/sysemu.h"
1de7afc9 32#include "qemu/timer.h"
511d2b14 33#include "audio/audio.h"
caf71f86 34#include "migration/migration.h"
1de7afc9
PB
35#include "qemu/sockets.h"
36#include "qemu/queue.h"
9c17d615 37#include "sysemu/cpus.h"
022c62cb 38#include "exec/memory.h"
a7ae8355 39#include "qmp-commands.h"
517a13c9 40#include "trace.h"
28085f7b 41#include "qemu/iov.h"
de08c606 42#include "block/snapshot.h"
f364ec65 43#include "block/qapi.h"
511d2b14 44
a672b469 45
18995b98 46#ifndef ETH_P_RARP
f8778a77 47#define ETH_P_RARP 0x8035
18995b98
N
48#endif
49#define ARP_HTYPE_ETH 0x0001
50#define ARP_PTYPE_IP 0x0800
51#define ARP_OP_REQUEST_REV 0x3
52
53static int announce_self_create(uint8_t *buf,
5cecf414 54 uint8_t *mac_addr)
a672b469 55{
18995b98
N
56 /* Ethernet header. */
57 memset(buf, 0xff, 6); /* destination MAC addr */
58 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
59 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
60
61 /* RARP header. */
62 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
63 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
64 *(buf + 18) = 6; /* hardware addr length (ethernet) */
65 *(buf + 19) = 4; /* protocol addr length (IPv4) */
66 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
67 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
68 memset(buf + 28, 0x00, 4); /* source protocol addr */
69 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
70 memset(buf + 38, 0x00, 4); /* target protocol addr */
71
72 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
73 memset(buf + 42, 0x00, 18);
74
75 return 60; /* len (FCS will be added by hardware) */
a672b469
AL
76}
77
f401ca22 78static void qemu_announce_self_iter(NICState *nic, void *opaque)
a672b469 79{
18995b98 80 uint8_t buf[60];
f401ca22
MM
81 int len;
82
9013dca5 83 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
f401ca22
MM
84 len = announce_self_create(buf, nic->conf->macaddr.a);
85
b356f76d 86 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
f401ca22
MM
87}
88
89
90static void qemu_announce_self_once(void *opaque)
91{
ed8b330b
GN
92 static int count = SELF_ANNOUNCE_ROUNDS;
93 QEMUTimer *timer = *(QEMUTimer **)opaque;
a672b469 94
f401ca22
MM
95 qemu_foreach_nic(qemu_announce_self_iter, NULL);
96
18995b98
N
97 if (--count) {
98 /* delay 50ms, 150ms, 250ms, ... */
bc72ad67 99 timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
508e1180 100 self_announce_delay(count));
ed8b330b 101 } else {
5cecf414
EH
102 timer_del(timer);
103 timer_free(timer);
ed8b330b
GN
104 }
105}
106
107void qemu_announce_self(void)
108{
5cecf414
EH
109 static QEMUTimer *timer;
110 timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
111 qemu_announce_self_once(&timer);
a672b469
AL
112}
113
114/***********************************************************/
115/* savevm/loadvm support */
116
05fcc848
KW
117static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
118 int64_t pos)
119{
120 int ret;
121 QEMUIOVector qiov;
122
123 qemu_iovec_init_external(&qiov, iov, iovcnt);
124 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
125 if (ret < 0) {
126 return ret;
127 }
128
129 return qiov.size;
130}
131
178e08a5 132static int block_put_buffer(void *opaque, const uint8_t *buf,
a672b469
AL
133 int64_t pos, int size)
134{
45566e9c 135 bdrv_save_vmstate(opaque, buf, pos, size);
a672b469
AL
136 return size;
137}
138
178e08a5 139static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
a672b469 140{
45566e9c 141 return bdrv_load_vmstate(opaque, buf, pos, size);
a672b469
AL
142}
143
144static int bdrv_fclose(void *opaque)
145{
ad492c92 146 return bdrv_flush(opaque);
a672b469
AL
147}
148
9229bf3c
PB
149static const QEMUFileOps bdrv_read_ops = {
150 .get_buffer = block_get_buffer,
151 .close = bdrv_fclose
152};
153
154static const QEMUFileOps bdrv_write_ops = {
05fcc848
KW
155 .put_buffer = block_put_buffer,
156 .writev_buffer = block_writev_buffer,
157 .close = bdrv_fclose
9229bf3c
PB
158};
159
45566e9c 160static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
a672b469 161{
38ff78d3 162 if (is_writable) {
9229bf3c 163 return qemu_fopen_ops(bs, &bdrv_write_ops);
38ff78d3 164 }
9229bf3c 165 return qemu_fopen_ops(bs, &bdrv_read_ops);
a672b469
AL
166}
167
2ff68d07 168
bb1a6d8c
EH
169/* QEMUFile timer support.
170 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
171 */
2ff68d07 172
40daca54 173void timer_put(QEMUFile *f, QEMUTimer *ts)
2ff68d07
PB
174{
175 uint64_t expire_time;
176
e93379b0 177 expire_time = timer_expire_time_ns(ts);
2ff68d07
PB
178 qemu_put_be64(f, expire_time);
179}
180
40daca54 181void timer_get(QEMUFile *f, QEMUTimer *ts)
2ff68d07
PB
182{
183 uint64_t expire_time;
184
185 expire_time = qemu_get_be64(f);
186 if (expire_time != -1) {
bc72ad67 187 timer_mod_ns(ts, expire_time);
2ff68d07 188 } else {
bc72ad67 189 timer_del(ts);
2ff68d07
PB
190 }
191}
192
193
bb1a6d8c
EH
194/* VMState timer support.
195 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
196 */
dde0463b
JQ
197
198static int get_timer(QEMUFile *f, void *pv, size_t size)
199{
200 QEMUTimer *v = pv;
40daca54 201 timer_get(f, v);
dde0463b
JQ
202 return 0;
203}
204
84e2e3eb 205static void put_timer(QEMUFile *f, void *pv, size_t size)
dde0463b 206{
84e2e3eb 207 QEMUTimer *v = pv;
40daca54 208 timer_put(f, v);
dde0463b
JQ
209}
210
211const VMStateInfo vmstate_info_timer = {
212 .name = "timer",
213 .get = get_timer,
214 .put = put_timer,
215};
216
08e99e29 217
7685ee6a
AW
218typedef struct CompatEntry {
219 char idstr[256];
220 int instance_id;
221} CompatEntry;
222
a672b469 223typedef struct SaveStateEntry {
72cf2d4f 224 QTAILQ_ENTRY(SaveStateEntry) entry;
a672b469
AL
225 char idstr[256];
226 int instance_id;
4d2ffa08 227 int alias_id;
a672b469
AL
228 int version_id;
229 int section_id;
22ea40f4 230 SaveVMHandlers *ops;
9ed7d6ae 231 const VMStateDescription *vmsd;
a672b469 232 void *opaque;
7685ee6a 233 CompatEntry *compat;
24312968 234 int no_migrate;
a7ae8355 235 int is_ram;
a672b469
AL
236} SaveStateEntry;
237
c163b5ca 238
72cf2d4f
BS
239static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
240 QTAILQ_HEAD_INITIALIZER(savevm_handlers);
9ed7d6ae 241static int global_section_id;
a672b469 242
8718e999
JQ
243static int calculate_new_instance_id(const char *idstr)
244{
245 SaveStateEntry *se;
246 int instance_id = 0;
247
72cf2d4f 248 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
8718e999
JQ
249 if (strcmp(idstr, se->idstr) == 0
250 && instance_id <= se->instance_id) {
251 instance_id = se->instance_id + 1;
252 }
253 }
254 return instance_id;
255}
256
7685ee6a
AW
257static int calculate_compat_instance_id(const char *idstr)
258{
259 SaveStateEntry *se;
260 int instance_id = 0;
261
262 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
38ff78d3 263 if (!se->compat) {
7685ee6a 264 continue;
38ff78d3 265 }
7685ee6a
AW
266
267 if (strcmp(idstr, se->compat->idstr) == 0
268 && instance_id <= se->compat->instance_id) {
269 instance_id = se->compat->instance_id + 1;
270 }
271 }
272 return instance_id;
273}
274
a672b469
AL
275/* TODO: Individual devices generally have very little idea about the rest
276 of the system, so instance_id should be removed/replaced.
277 Meanwhile pass -1 as instance_id if you do not already have a clearly
278 distinguishing id for all instances of your device class. */
0be71e32
AW
279int register_savevm_live(DeviceState *dev,
280 const char *idstr,
a672b469
AL
281 int instance_id,
282 int version_id,
7908c78d 283 SaveVMHandlers *ops,
a672b469
AL
284 void *opaque)
285{
8718e999 286 SaveStateEntry *se;
a672b469 287
7267c094 288 se = g_malloc0(sizeof(SaveStateEntry));
a672b469
AL
289 se->version_id = version_id;
290 se->section_id = global_section_id++;
7908c78d 291 se->ops = ops;
a672b469 292 se->opaque = opaque;
9ed7d6ae 293 se->vmsd = NULL;
24312968 294 se->no_migrate = 0;
a7ae8355 295 /* if this is a live_savem then set is_ram */
16310a3c 296 if (ops->save_live_setup != NULL) {
a7ae8355
SS
297 se->is_ram = 1;
298 }
a672b469 299
09e5ab63
AL
300 if (dev) {
301 char *id = qdev_get_dev_path(dev);
7685ee6a
AW
302 if (id) {
303 pstrcpy(se->idstr, sizeof(se->idstr), id);
304 pstrcat(se->idstr, sizeof(se->idstr), "/");
7267c094 305 g_free(id);
7685ee6a 306
7267c094 307 se->compat = g_malloc0(sizeof(CompatEntry));
7685ee6a
AW
308 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
309 se->compat->instance_id = instance_id == -1 ?
310 calculate_compat_instance_id(idstr) : instance_id;
311 instance_id = -1;
312 }
313 }
314 pstrcat(se->idstr, sizeof(se->idstr), idstr);
315
8718e999 316 if (instance_id == -1) {
7685ee6a 317 se->instance_id = calculate_new_instance_id(se->idstr);
8718e999
JQ
318 } else {
319 se->instance_id = instance_id;
a672b469 320 }
7685ee6a 321 assert(!se->compat || se->instance_id == 0);
8718e999 322 /* add at the end of list */
72cf2d4f 323 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
a672b469
AL
324 return 0;
325}
326
0be71e32
AW
327int register_savevm(DeviceState *dev,
328 const char *idstr,
a672b469
AL
329 int instance_id,
330 int version_id,
331 SaveStateHandler *save_state,
332 LoadStateHandler *load_state,
333 void *opaque)
334{
7908c78d
JQ
335 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
336 ops->save_state = save_state;
337 ops->load_state = load_state;
0be71e32 338 return register_savevm_live(dev, idstr, instance_id, version_id,
7908c78d 339 ops, opaque);
a672b469
AL
340}
341
0be71e32 342void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
41bd13af 343{
8718e999 344 SaveStateEntry *se, *new_se;
7685ee6a
AW
345 char id[256] = "";
346
09e5ab63
AL
347 if (dev) {
348 char *path = qdev_get_dev_path(dev);
7685ee6a
AW
349 if (path) {
350 pstrcpy(id, sizeof(id), path);
351 pstrcat(id, sizeof(id), "/");
7267c094 352 g_free(path);
7685ee6a
AW
353 }
354 }
355 pstrcat(id, sizeof(id), idstr);
41bd13af 356
72cf2d4f 357 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
7685ee6a 358 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
72cf2d4f 359 QTAILQ_REMOVE(&savevm_handlers, se, entry);
69e58af9 360 if (se->compat) {
7267c094 361 g_free(se->compat);
69e58af9 362 }
22ea40f4 363 g_free(se->ops);
7267c094 364 g_free(se);
41bd13af 365 }
41bd13af
AL
366 }
367}
368
0be71e32 369int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
4d2ffa08
JK
370 const VMStateDescription *vmsd,
371 void *opaque, int alias_id,
372 int required_for_version)
9ed7d6ae 373{
8718e999 374 SaveStateEntry *se;
9ed7d6ae 375
4d2ffa08
JK
376 /* If this triggers, alias support can be dropped for the vmsd. */
377 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
378
7267c094 379 se = g_malloc0(sizeof(SaveStateEntry));
9ed7d6ae
JQ
380 se->version_id = vmsd->version_id;
381 se->section_id = global_section_id++;
9ed7d6ae
JQ
382 se->opaque = opaque;
383 se->vmsd = vmsd;
4d2ffa08 384 se->alias_id = alias_id;
2837c8ea 385 se->no_migrate = vmsd->unmigratable;
9ed7d6ae 386
09e5ab63
AL
387 if (dev) {
388 char *id = qdev_get_dev_path(dev);
7685ee6a
AW
389 if (id) {
390 pstrcpy(se->idstr, sizeof(se->idstr), id);
391 pstrcat(se->idstr, sizeof(se->idstr), "/");
7267c094 392 g_free(id);
7685ee6a 393
7267c094 394 se->compat = g_malloc0(sizeof(CompatEntry));
7685ee6a
AW
395 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
396 se->compat->instance_id = instance_id == -1 ?
397 calculate_compat_instance_id(vmsd->name) : instance_id;
398 instance_id = -1;
399 }
400 }
401 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
402
8718e999 403 if (instance_id == -1) {
7685ee6a 404 se->instance_id = calculate_new_instance_id(se->idstr);
8718e999
JQ
405 } else {
406 se->instance_id = instance_id;
9ed7d6ae 407 }
7685ee6a 408 assert(!se->compat || se->instance_id == 0);
8718e999 409 /* add at the end of list */
72cf2d4f 410 QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
9ed7d6ae
JQ
411 return 0;
412}
413
0be71e32
AW
414void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
415 void *opaque)
9ed7d6ae 416{
1eb7538b
JQ
417 SaveStateEntry *se, *new_se;
418
72cf2d4f 419 QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
1eb7538b 420 if (se->vmsd == vmsd && se->opaque == opaque) {
72cf2d4f 421 QTAILQ_REMOVE(&savevm_handlers, se, entry);
69e58af9 422 if (se->compat) {
7267c094 423 g_free(se->compat);
69e58af9 424 }
7267c094 425 g_free(se);
1eb7538b
JQ
426 }
427 }
9ed7d6ae
JQ
428}
429
4082be4d
JQ
430static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
431{
9013dca5 432 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
9ed7d6ae 433 if (!se->vmsd) { /* Old style */
22ea40f4 434 return se->ops->load_state(f, se->opaque, version_id);
9ed7d6ae
JQ
435 }
436 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
4082be4d
JQ
437}
438
dc912121 439static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
4082be4d 440{
9013dca5 441 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
9ed7d6ae 442 if (!se->vmsd) { /* Old style */
22ea40f4 443 se->ops->save_state(f, se->opaque);
dc912121 444 return;
9ed7d6ae 445 }
38ff78d3 446 vmstate_save_state(f, se->vmsd, se->opaque);
4082be4d
JQ
447}
448
e1c37d0e 449bool qemu_savevm_state_blocked(Error **errp)
dc912121
AW
450{
451 SaveStateEntry *se;
452
453 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
454 if (se->no_migrate) {
f231b88d
CR
455 error_setg(errp, "State blocked by non-migratable device '%s'",
456 se->idstr);
dc912121
AW
457 return true;
458 }
459 }
460 return false;
461}
462
47c8c17a
PB
463void qemu_savevm_state_begin(QEMUFile *f,
464 const MigrationParams *params)
a672b469
AL
465{
466 SaveStateEntry *se;
39346385 467 int ret;
a672b469 468
9013dca5 469 trace_savevm_state_begin();
c163b5ca 470 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
22ea40f4 471 if (!se->ops || !se->ops->set_params) {
c163b5ca 472 continue;
6607ae23 473 }
22ea40f4 474 se->ops->set_params(params, se->opaque);
c163b5ca 475 }
38ff78d3 476
a672b469
AL
477 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
478 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
479
72cf2d4f 480 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
481 int len;
482
d1315aac 483 if (!se->ops || !se->ops->save_live_setup) {
a672b469 484 continue;
22ea40f4 485 }
6bd68781
JQ
486 if (se->ops && se->ops->is_active) {
487 if (!se->ops->is_active(se->opaque)) {
488 continue;
489 }
490 }
a672b469
AL
491 /* Section type */
492 qemu_put_byte(f, QEMU_VM_SECTION_START);
493 qemu_put_be32(f, se->section_id);
494
495 /* ID string */
496 len = strlen(se->idstr);
497 qemu_put_byte(f, len);
498 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
499
500 qemu_put_be32(f, se->instance_id);
501 qemu_put_be32(f, se->version_id);
502
d1315aac 503 ret = se->ops->save_live_setup(f, se->opaque);
2975725f 504 if (ret < 0) {
47c8c17a
PB
505 qemu_file_set_error(f, ret);
506 break;
2975725f 507 }
a672b469 508 }
a672b469
AL
509}
510
39346385 511/*
07f35073 512 * this function has three return values:
39346385
JQ
513 * negative: there was one error, and we have -errno.
514 * 0 : We haven't finished, caller have to go again
515 * 1 : We have finished, we can go to complete phase
516 */
539de124 517int qemu_savevm_state_iterate(QEMUFile *f)
a672b469
AL
518{
519 SaveStateEntry *se;
520 int ret = 1;
521
9013dca5 522 trace_savevm_state_iterate();
72cf2d4f 523 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
16310a3c 524 if (!se->ops || !se->ops->save_live_iterate) {
a672b469 525 continue;
22ea40f4 526 }
6bd68781
JQ
527 if (se->ops && se->ops->is_active) {
528 if (!se->ops->is_active(se->opaque)) {
529 continue;
530 }
531 }
aac844ed
JQ
532 if (qemu_file_rate_limit(f)) {
533 return 0;
534 }
464400f6 535 trace_savevm_section_start(se->idstr, se->section_id);
a672b469
AL
536 /* Section type */
537 qemu_put_byte(f, QEMU_VM_SECTION_PART);
538 qemu_put_be32(f, se->section_id);
539
16310a3c 540 ret = se->ops->save_live_iterate(f, se->opaque);
464400f6 541 trace_savevm_section_end(se->idstr, se->section_id);
517a13c9 542
47c8c17a
PB
543 if (ret < 0) {
544 qemu_file_set_error(f, ret);
545 }
2975725f 546 if (ret <= 0) {
90697be8
JK
547 /* Do not proceed to the next vmstate before this one reported
548 completion of the current stage. This serializes the migration
549 and reduces the probability that a faster changing state is
550 synchronized over and over again. */
551 break;
552 }
a672b469 553 }
39346385 554 return ret;
a672b469
AL
555}
556
47c8c17a 557void qemu_savevm_state_complete(QEMUFile *f)
a672b469
AL
558{
559 SaveStateEntry *se;
2975725f 560 int ret;
a672b469 561
9013dca5
AK
562 trace_savevm_state_complete();
563
ea375f9a
JK
564 cpu_synchronize_all_states();
565
72cf2d4f 566 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
16310a3c 567 if (!se->ops || !se->ops->save_live_complete) {
a672b469 568 continue;
22ea40f4 569 }
6bd68781
JQ
570 if (se->ops && se->ops->is_active) {
571 if (!se->ops->is_active(se->opaque)) {
572 continue;
573 }
574 }
464400f6 575 trace_savevm_section_start(se->idstr, se->section_id);
a672b469
AL
576 /* Section type */
577 qemu_put_byte(f, QEMU_VM_SECTION_END);
578 qemu_put_be32(f, se->section_id);
579
16310a3c 580 ret = se->ops->save_live_complete(f, se->opaque);
464400f6 581 trace_savevm_section_end(se->idstr, se->section_id);
2975725f 582 if (ret < 0) {
47c8c17a
PB
583 qemu_file_set_error(f, ret);
584 return;
2975725f 585 }
a672b469
AL
586 }
587
72cf2d4f 588 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469
AL
589 int len;
590
22ea40f4 591 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
5cecf414 592 continue;
22ea40f4 593 }
464400f6 594 trace_savevm_section_start(se->idstr, se->section_id);
a672b469
AL
595 /* Section type */
596 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
597 qemu_put_be32(f, se->section_id);
598
599 /* ID string */
600 len = strlen(se->idstr);
601 qemu_put_byte(f, len);
602 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
603
604 qemu_put_be32(f, se->instance_id);
605 qemu_put_be32(f, se->version_id);
606
dc912121 607 vmstate_save(f, se);
464400f6 608 trace_savevm_section_end(se->idstr, se->section_id);
a672b469
AL
609 }
610
611 qemu_put_byte(f, QEMU_VM_EOF);
edaae611 612 qemu_fflush(f);
a672b469
AL
613}
614
e4ed1541
JQ
615uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size)
616{
617 SaveStateEntry *se;
618 uint64_t ret = 0;
619
620 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
621 if (!se->ops || !se->ops->save_live_pending) {
622 continue;
623 }
624 if (se->ops && se->ops->is_active) {
625 if (!se->ops->is_active(se->opaque)) {
626 continue;
627 }
628 }
629 ret += se->ops->save_live_pending(f, se->opaque, max_size);
630 }
631 return ret;
632}
633
6522773f 634void qemu_savevm_state_cancel(void)
4ec7fcc7
JK
635{
636 SaveStateEntry *se;
637
9013dca5 638 trace_savevm_state_cancel();
4ec7fcc7 639 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
9b5bfab0
JQ
640 if (se->ops && se->ops->cancel) {
641 se->ops->cancel(se->opaque);
4ec7fcc7
JK
642 }
643 }
644}
645
e1c37d0e 646static int qemu_savevm_state(QEMUFile *f)
a672b469 647{
a672b469 648 int ret;
6607ae23
IY
649 MigrationParams params = {
650 .blk = 0,
651 .shared = 0
652 };
a672b469 653
e1c37d0e 654 if (qemu_savevm_state_blocked(NULL)) {
04943eba 655 return -EINVAL;
dc912121
AW
656 }
657
9b095037 658 qemu_mutex_unlock_iothread();
47c8c17a 659 qemu_savevm_state_begin(f, &params);
9b095037
PB
660 qemu_mutex_lock_iothread();
661
47c8c17a
PB
662 while (qemu_file_get_error(f) == 0) {
663 if (qemu_savevm_state_iterate(f) > 0) {
664 break;
665 }
666 }
a672b469 667
47c8c17a 668 ret = qemu_file_get_error(f);
39346385 669 if (ret == 0) {
47c8c17a 670 qemu_savevm_state_complete(f);
624b9cc2 671 ret = qemu_file_get_error(f);
39346385 672 }
04943eba
PB
673 if (ret != 0) {
674 qemu_savevm_state_cancel();
675 }
a672b469
AL
676 return ret;
677}
678
a7ae8355
SS
679static int qemu_save_device_state(QEMUFile *f)
680{
681 SaveStateEntry *se;
682
683 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
684 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
685
686 cpu_synchronize_all_states();
687
688 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
689 int len;
690
691 if (se->is_ram) {
692 continue;
693 }
22ea40f4 694 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
a7ae8355
SS
695 continue;
696 }
697
698 /* Section type */
699 qemu_put_byte(f, QEMU_VM_SECTION_FULL);
700 qemu_put_be32(f, se->section_id);
701
702 /* ID string */
703 len = strlen(se->idstr);
704 qemu_put_byte(f, len);
705 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
706
707 qemu_put_be32(f, se->instance_id);
708 qemu_put_be32(f, se->version_id);
709
710 vmstate_save(f, se);
711 }
712
713 qemu_put_byte(f, QEMU_VM_EOF);
714
715 return qemu_file_get_error(f);
716}
717
a672b469
AL
718static SaveStateEntry *find_se(const char *idstr, int instance_id)
719{
720 SaveStateEntry *se;
721
72cf2d4f 722 QTAILQ_FOREACH(se, &savevm_handlers, entry) {
a672b469 723 if (!strcmp(se->idstr, idstr) &&
4d2ffa08
JK
724 (instance_id == se->instance_id ||
725 instance_id == se->alias_id))
a672b469 726 return se;
7685ee6a
AW
727 /* Migrating from an older version? */
728 if (strstr(se->idstr, idstr) && se->compat) {
729 if (!strcmp(se->compat->idstr, idstr) &&
730 (instance_id == se->compat->instance_id ||
731 instance_id == se->alias_id))
732 return se;
733 }
a672b469
AL
734 }
735 return NULL;
736}
737
738typedef struct LoadStateEntry {
72cf2d4f 739 QLIST_ENTRY(LoadStateEntry) entry;
a672b469
AL
740 SaveStateEntry *se;
741 int section_id;
742 int version_id;
a672b469
AL
743} LoadStateEntry;
744
a672b469
AL
745int qemu_loadvm_state(QEMUFile *f)
746{
72cf2d4f
BS
747 QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
748 QLIST_HEAD_INITIALIZER(loadvm_handlers);
f4dbb8dd 749 LoadStateEntry *le, *new_le;
a672b469
AL
750 uint8_t section_type;
751 unsigned int v;
752 int ret;
753
e1c37d0e 754 if (qemu_savevm_state_blocked(NULL)) {
dc912121
AW
755 return -EINVAL;
756 }
757
a672b469 758 v = qemu_get_be32(f);
38ff78d3 759 if (v != QEMU_VM_FILE_MAGIC) {
a672b469 760 return -EINVAL;
38ff78d3 761 }
a672b469
AL
762
763 v = qemu_get_be32(f);
bbfe1408
JQ
764 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
765 fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
766 return -ENOTSUP;
767 }
38ff78d3 768 if (v != QEMU_VM_FILE_VERSION) {
a672b469 769 return -ENOTSUP;
38ff78d3 770 }
a672b469
AL
771
772 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
773 uint32_t instance_id, version_id, section_id;
a672b469
AL
774 SaveStateEntry *se;
775 char idstr[257];
776 int len;
777
778 switch (section_type) {
779 case QEMU_VM_SECTION_START:
780 case QEMU_VM_SECTION_FULL:
781 /* Read section start */
782 section_id = qemu_get_be32(f);
783 len = qemu_get_byte(f);
784 qemu_get_buffer(f, (uint8_t *)idstr, len);
785 idstr[len] = 0;
786 instance_id = qemu_get_be32(f);
787 version_id = qemu_get_be32(f);
788
789 /* Find savevm section */
790 se = find_se(idstr, instance_id);
791 if (se == NULL) {
792 fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
793 ret = -EINVAL;
794 goto out;
795 }
796
797 /* Validate version */
798 if (version_id > se->version_id) {
799 fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
800 version_id, idstr, se->version_id);
801 ret = -EINVAL;
802 goto out;
803 }
804
805 /* Add entry */
7267c094 806 le = g_malloc0(sizeof(*le));
a672b469
AL
807
808 le->se = se;
809 le->section_id = section_id;
810 le->version_id = version_id;
72cf2d4f 811 QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
a672b469 812
4082be4d 813 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a
JQ
814 if (ret < 0) {
815 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
816 instance_id, idstr);
817 goto out;
818 }
a672b469
AL
819 break;
820 case QEMU_VM_SECTION_PART:
821 case QEMU_VM_SECTION_END:
822 section_id = qemu_get_be32(f);
823
72cf2d4f 824 QLIST_FOREACH(le, &loadvm_handlers, entry) {
f4dbb8dd
JQ
825 if (le->section_id == section_id) {
826 break;
827 }
828 }
a672b469
AL
829 if (le == NULL) {
830 fprintf(stderr, "Unknown savevm section %d\n", section_id);
831 ret = -EINVAL;
832 goto out;
833 }
834
4082be4d 835 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a
JQ
836 if (ret < 0) {
837 fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
838 section_id);
839 goto out;
840 }
a672b469
AL
841 break;
842 default:
843 fprintf(stderr, "Unknown savevm section type %d\n", section_type);
844 ret = -EINVAL;
845 goto out;
846 }
847 }
848
ea375f9a
JK
849 cpu_synchronize_all_post_init();
850
a672b469
AL
851 ret = 0;
852
853out:
72cf2d4f
BS
854 QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
855 QLIST_REMOVE(le, entry);
7267c094 856 g_free(le);
a672b469
AL
857 }
858
42802d47
JQ
859 if (ret == 0) {
860 ret = qemu_file_get_error(f);
624b9cc2 861 }
a672b469
AL
862
863 return ret;
864}
865
29d78271
SH
866static BlockDriverState *find_vmstate_bs(void)
867{
868 BlockDriverState *bs = NULL;
869 while ((bs = bdrv_next(bs))) {
870 if (bdrv_can_snapshot(bs)) {
871 return bs;
872 }
873 }
874 return NULL;
875}
876
cb499fb2
KW
877/*
878 * Deletes snapshots of a given name in all opened images.
879 */
880static int del_existing_snapshots(Monitor *mon, const char *name)
881{
882 BlockDriverState *bs;
cb499fb2 883 QEMUSnapshotInfo sn1, *snapshot = &sn1;
a89d89d3 884 Error *err = NULL;
cb499fb2 885
dbc13590
MA
886 bs = NULL;
887 while ((bs = bdrv_next(bs))) {
cb499fb2 888 if (bdrv_can_snapshot(bs) &&
38ff78d3 889 bdrv_snapshot_find(bs, snapshot, name) >= 0) {
a89d89d3 890 bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
84d18f06 891 if (err) {
cb499fb2 892 monitor_printf(mon,
a89d89d3
WX
893 "Error while deleting snapshot on device '%s':"
894 " %s\n",
895 bdrv_get_device_name(bs),
896 error_get_pretty(err));
897 error_free(err);
cb499fb2
KW
898 return -1;
899 }
900 }
901 }
902
903 return 0;
904}
905
d54908a5 906void do_savevm(Monitor *mon, const QDict *qdict)
a672b469
AL
907{
908 BlockDriverState *bs, *bs1;
909 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
cb499fb2 910 int ret;
a672b469
AL
911 QEMUFile *f;
912 int saved_vm_running;
c2c9a466 913 uint64_t vm_state_size;
68b891ec 914 qemu_timeval tv;
7d631a11 915 struct tm tm;
d54908a5 916 const char *name = qdict_get_try_str(qdict, "name");
a672b469 917
feeee5ac 918 /* Verify if there is a device that doesn't support snapshots and is writable */
dbc13590
MA
919 bs = NULL;
920 while ((bs = bdrv_next(bs))) {
feeee5ac 921
07b70bfb 922 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
feeee5ac
MDCF
923 continue;
924 }
925
926 if (!bdrv_can_snapshot(bs)) {
927 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
928 bdrv_get_device_name(bs));
929 return;
930 }
931 }
932
29d78271 933 bs = find_vmstate_bs();
a672b469 934 if (!bs) {
376253ec 935 monitor_printf(mon, "No block device can accept snapshots\n");
a672b469
AL
936 return;
937 }
a672b469 938
1354869c 939 saved_vm_running = runstate_is_running();
0461d5a6 940 vm_stop(RUN_STATE_SAVE_VM);
a672b469 941
cb499fb2 942 memset(sn, 0, sizeof(*sn));
a672b469
AL
943
944 /* fill auxiliary fields */
68b891ec 945 qemu_gettimeofday(&tv);
a672b469
AL
946 sn->date_sec = tv.tv_sec;
947 sn->date_nsec = tv.tv_usec * 1000;
bc72ad67 948 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
a672b469 949
7d631a11
MDCF
950 if (name) {
951 ret = bdrv_snapshot_find(bs, old_sn, name);
952 if (ret >= 0) {
953 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
954 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
955 } else {
956 pstrcpy(sn->name, sizeof(sn->name), name);
957 }
958 } else {
d7d9b528
BS
959 /* cast below needed for OpenBSD where tv_sec is still 'long' */
960 localtime_r((const time_t *)&tv.tv_sec, &tm);
7d631a11 961 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
7d631a11
MDCF
962 }
963
cb499fb2 964 /* Delete old snapshots of the same name */
f139a412 965 if (name && del_existing_snapshots(mon, name) < 0) {
cb499fb2
KW
966 goto the_end;
967 }
968
a672b469 969 /* save the VM state */
45566e9c 970 f = qemu_fopen_bdrv(bs, 1);
a672b469 971 if (!f) {
376253ec 972 monitor_printf(mon, "Could not open VM state file\n");
a672b469
AL
973 goto the_end;
974 }
e1c37d0e 975 ret = qemu_savevm_state(f);
2d22b18f 976 vm_state_size = qemu_ftell(f);
a672b469
AL
977 qemu_fclose(f);
978 if (ret < 0) {
376253ec 979 monitor_printf(mon, "Error %d while writing VM\n", ret);
a672b469
AL
980 goto the_end;
981 }
982
983 /* create the snapshots */
984
dbc13590
MA
985 bs1 = NULL;
986 while ((bs1 = bdrv_next(bs1))) {
feeee5ac 987 if (bdrv_can_snapshot(bs1)) {
2d22b18f
AL
988 /* Write VM state size only to the image that contains the state */
989 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
a672b469
AL
990 ret = bdrv_snapshot_create(bs1, sn);
991 if (ret < 0) {
376253ec
AL
992 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
993 bdrv_get_device_name(bs1));
a672b469
AL
994 }
995 }
996 }
997
998 the_end:
38ff78d3 999 if (saved_vm_running) {
a672b469 1000 vm_start();
38ff78d3 1001 }
a672b469
AL
1002}
1003
a7ae8355
SS
1004void qmp_xen_save_devices_state(const char *filename, Error **errp)
1005{
1006 QEMUFile *f;
1007 int saved_vm_running;
1008 int ret;
1009
1010 saved_vm_running = runstate_is_running();
1011 vm_stop(RUN_STATE_SAVE_VM);
1012
1013 f = qemu_fopen(filename, "wb");
1014 if (!f) {
1befce96 1015 error_setg_file_open(errp, errno, filename);
a7ae8355
SS
1016 goto the_end;
1017 }
1018 ret = qemu_save_device_state(f);
1019 qemu_fclose(f);
1020 if (ret < 0) {
1021 error_set(errp, QERR_IO_ERROR);
1022 }
1023
1024 the_end:
38ff78d3 1025 if (saved_vm_running) {
a7ae8355 1026 vm_start();
38ff78d3 1027 }
a7ae8355
SS
1028}
1029
03cd4655 1030int load_vmstate(const char *name)
a672b469 1031{
f0aa7a8b 1032 BlockDriverState *bs, *bs_vm_state;
2d22b18f 1033 QEMUSnapshotInfo sn;
a672b469 1034 QEMUFile *f;
751c6a17 1035 int ret;
a672b469 1036
29d78271 1037 bs_vm_state = find_vmstate_bs();
f0aa7a8b
MDCF
1038 if (!bs_vm_state) {
1039 error_report("No block device supports snapshots");
1040 return -ENOTSUP;
1041 }
1042
1043 /* Don't even try to load empty VM states */
1044 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
1045 if (ret < 0) {
1046 return ret;
1047 } else if (sn.vm_state_size == 0) {
e11480db
KW
1048 error_report("This is a disk-only snapshot. Revert to it offline "
1049 "using qemu-img.");
f0aa7a8b
MDCF
1050 return -EINVAL;
1051 }
1052
1053 /* Verify if there is any device that doesn't support snapshots and is
1054 writable and check if the requested snapshot is available too. */
dbc13590
MA
1055 bs = NULL;
1056 while ((bs = bdrv_next(bs))) {
feeee5ac 1057
07b70bfb 1058 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
feeee5ac
MDCF
1059 continue;
1060 }
1061
1062 if (!bdrv_can_snapshot(bs)) {
1063 error_report("Device '%s' is writable but does not support snapshots.",
1064 bdrv_get_device_name(bs));
1065 return -ENOTSUP;
1066 }
feeee5ac 1067
f0aa7a8b
MDCF
1068 ret = bdrv_snapshot_find(bs, &sn, name);
1069 if (ret < 0) {
1070 error_report("Device '%s' does not have the requested snapshot '%s'",
1071 bdrv_get_device_name(bs), name);
1072 return ret;
1073 }
a672b469
AL
1074 }
1075
1076 /* Flush all IO requests so they don't interfere with the new state. */
922453bc 1077 bdrv_drain_all();
a672b469 1078
f0aa7a8b
MDCF
1079 bs = NULL;
1080 while ((bs = bdrv_next(bs))) {
1081 if (bdrv_can_snapshot(bs)) {
1082 ret = bdrv_snapshot_goto(bs, name);
a672b469 1083 if (ret < 0) {
f0aa7a8b
MDCF
1084 error_report("Error %d while activating snapshot '%s' on '%s'",
1085 ret, name, bdrv_get_device_name(bs));
1086 return ret;
a672b469
AL
1087 }
1088 }
1089 }
1090
a672b469 1091 /* restore the VM state */
f0aa7a8b 1092 f = qemu_fopen_bdrv(bs_vm_state, 0);
a672b469 1093 if (!f) {
1ecda02b 1094 error_report("Could not open VM state file");
05f2401e 1095 return -EINVAL;
a672b469 1096 }
f0aa7a8b 1097
5a8a49d7 1098 qemu_system_reset(VMRESET_SILENT);
a672b469 1099 ret = qemu_loadvm_state(f);
f0aa7a8b 1100
a672b469
AL
1101 qemu_fclose(f);
1102 if (ret < 0) {
1ecda02b 1103 error_report("Error %d while loading VM state", ret);
05f2401e 1104 return ret;
a672b469 1105 }
f0aa7a8b 1106
05f2401e 1107 return 0;
7b630349
JQ
1108}
1109
d54908a5 1110void do_delvm(Monitor *mon, const QDict *qdict)
a672b469
AL
1111{
1112 BlockDriverState *bs, *bs1;
a89d89d3 1113 Error *err = NULL;
d54908a5 1114 const char *name = qdict_get_str(qdict, "name");
a672b469 1115
29d78271 1116 bs = find_vmstate_bs();
a672b469 1117 if (!bs) {
376253ec 1118 monitor_printf(mon, "No block device supports snapshots\n");
a672b469
AL
1119 return;
1120 }
1121
dbc13590
MA
1122 bs1 = NULL;
1123 while ((bs1 = bdrv_next(bs1))) {
feeee5ac 1124 if (bdrv_can_snapshot(bs1)) {
a89d89d3 1125 bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
84d18f06 1126 if (err) {
a89d89d3
WX
1127 monitor_printf(mon,
1128 "Error while deleting snapshot on device '%s':"
1129 " %s\n",
1130 bdrv_get_device_name(bs),
1131 error_get_pretty(err));
1132 error_free(err);
a672b469
AL
1133 }
1134 }
1135 }
1136}
1137
84f2d0ea 1138void do_info_snapshots(Monitor *mon, const QDict *qdict)
a672b469
AL
1139{
1140 BlockDriverState *bs, *bs1;
f9209915
MDCF
1141 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
1142 int nb_sns, i, ret, available;
1143 int total;
1144 int *available_snapshots;
a672b469 1145
29d78271 1146 bs = find_vmstate_bs();
a672b469 1147 if (!bs) {
376253ec 1148 monitor_printf(mon, "No available block device supports snapshots\n");
a672b469
AL
1149 return;
1150 }
a672b469
AL
1151
1152 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1153 if (nb_sns < 0) {
376253ec 1154 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
a672b469
AL
1155 return;
1156 }
f9209915
MDCF
1157
1158 if (nb_sns == 0) {
1159 monitor_printf(mon, "There is no snapshot available.\n");
1160 return;
1161 }
1162
7267c094 1163 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
f9209915
MDCF
1164 total = 0;
1165 for (i = 0; i < nb_sns; i++) {
a672b469 1166 sn = &sn_tab[i];
f9209915
MDCF
1167 available = 1;
1168 bs1 = NULL;
1169
1170 while ((bs1 = bdrv_next(bs1))) {
1171 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
1172 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
1173 if (ret < 0) {
1174 available = 0;
1175 break;
1176 }
1177 }
1178 }
1179
1180 if (available) {
1181 available_snapshots[total] = i;
1182 total++;
1183 }
a672b469 1184 }
f9209915
MDCF
1185
1186 if (total > 0) {
5b917044
WX
1187 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
1188 monitor_printf(mon, "\n");
f9209915
MDCF
1189 for (i = 0; i < total; i++) {
1190 sn = &sn_tab[available_snapshots[i]];
5b917044
WX
1191 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
1192 monitor_printf(mon, "\n");
f9209915
MDCF
1193 }
1194 } else {
1195 monitor_printf(mon, "There is no suitable snapshot available\n");
1196 }
1197
7267c094
AL
1198 g_free(sn_tab);
1199 g_free(available_snapshots);
f9209915 1200
a672b469 1201}
c5705a77
AK
1202
1203void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
1204{
1ddde087 1205 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
c5705a77
AK
1206 memory_region_name(mr), dev);
1207}
1208
1209void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
1210{
b0e56e0b 1211 qemu_ram_unset_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK);
c5705a77
AK
1212}
1213
1214void vmstate_register_ram_global(MemoryRegion *mr)
1215{
1216 vmstate_register_ram(mr, NULL);
1217}