]> git.proxmox.com Git - mirror_qemu.git/blame - migration/savevm.c
Disable section footers on older machine types
[mirror_qemu.git] / migration / savevm.c
CommitLineData
a672b469
AL
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
76cc7b58
JQ
5 * Copyright (c) 2009-2015 Red Hat Inc
6 *
7 * Authors:
8 * Juan Quintela <quintela@redhat.com>
a672b469
AL
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
27 */
a672b469 28
d40cdb10 29#include "config-host.h"
511d2b14 30#include "qemu-common.h"
abfd9ce3 31#include "hw/boards.h"
511d2b14 32#include "hw/hw.h"
7685ee6a 33#include "hw/qdev.h"
1422e32d 34#include "net/net.h"
83c9089e 35#include "monitor/monitor.h"
9c17d615 36#include "sysemu/sysemu.h"
1de7afc9 37#include "qemu/timer.h"
511d2b14 38#include "audio/audio.h"
caf71f86 39#include "migration/migration.h"
1de7afc9
PB
40#include "qemu/sockets.h"
41#include "qemu/queue.h"
9c17d615 42#include "sysemu/cpus.h"
022c62cb 43#include "exec/memory.h"
a7ae8355 44#include "qmp-commands.h"
517a13c9 45#include "trace.h"
28085f7b 46#include "qemu/iov.h"
de08c606 47#include "block/snapshot.h"
f364ec65 48#include "block/qapi.h"
511d2b14 49
a672b469 50
18995b98 51#ifndef ETH_P_RARP
f8778a77 52#define ETH_P_RARP 0x8035
18995b98
N
53#endif
54#define ARP_HTYPE_ETH 0x0001
55#define ARP_PTYPE_IP 0x0800
56#define ARP_OP_REQUEST_REV 0x3
57
37fb569c
DDAG
58static bool skip_section_footers;
59
18995b98 60static int announce_self_create(uint8_t *buf,
5cecf414 61 uint8_t *mac_addr)
a672b469 62{
18995b98
N
63 /* Ethernet header. */
64 memset(buf, 0xff, 6); /* destination MAC addr */
65 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
66 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
67
68 /* RARP header. */
69 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
70 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
71 *(buf + 18) = 6; /* hardware addr length (ethernet) */
72 *(buf + 19) = 4; /* protocol addr length (IPv4) */
73 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
74 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
75 memset(buf + 28, 0x00, 4); /* source protocol addr */
76 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
77 memset(buf + 38, 0x00, 4); /* target protocol addr */
78
79 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
80 memset(buf + 42, 0x00, 18);
81
82 return 60; /* len (FCS will be added by hardware) */
a672b469
AL
83}
84
f401ca22 85static void qemu_announce_self_iter(NICState *nic, void *opaque)
a672b469 86{
18995b98 87 uint8_t buf[60];
f401ca22
MM
88 int len;
89
9013dca5 90 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
f401ca22
MM
91 len = announce_self_create(buf, nic->conf->macaddr.a);
92
b356f76d 93 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
f401ca22
MM
94}
95
96
97static void qemu_announce_self_once(void *opaque)
98{
ed8b330b
GN
99 static int count = SELF_ANNOUNCE_ROUNDS;
100 QEMUTimer *timer = *(QEMUTimer **)opaque;
a672b469 101
f401ca22
MM
102 qemu_foreach_nic(qemu_announce_self_iter, NULL);
103
18995b98
N
104 if (--count) {
105 /* delay 50ms, 150ms, 250ms, ... */
bc72ad67 106 timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
508e1180 107 self_announce_delay(count));
ed8b330b 108 } else {
5cecf414
EH
109 timer_del(timer);
110 timer_free(timer);
ed8b330b
GN
111 }
112}
113
114void qemu_announce_self(void)
115{
5cecf414
EH
116 static QEMUTimer *timer;
117 timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
118 qemu_announce_self_once(&timer);
a672b469
AL
119}
120
121/***********************************************************/
122/* savevm/loadvm support */
123
05fcc848
KW
124static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
125 int64_t pos)
126{
127 int ret;
128 QEMUIOVector qiov;
129
130 qemu_iovec_init_external(&qiov, iov, iovcnt);
131 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
132 if (ret < 0) {
133 return ret;
134 }
135
136 return qiov.size;
137}
138
178e08a5 139static int block_put_buffer(void *opaque, const uint8_t *buf,
a672b469
AL
140 int64_t pos, int size)
141{
45566e9c 142 bdrv_save_vmstate(opaque, buf, pos, size);
a672b469
AL
143 return size;
144}
145
178e08a5 146static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
a672b469 147{
45566e9c 148 return bdrv_load_vmstate(opaque, buf, pos, size);
a672b469
AL
149}
150
151static int bdrv_fclose(void *opaque)
152{
ad492c92 153 return bdrv_flush(opaque);
a672b469
AL
154}
155
9229bf3c
PB
156static const QEMUFileOps bdrv_read_ops = {
157 .get_buffer = block_get_buffer,
158 .close = bdrv_fclose
159};
160
161static const QEMUFileOps bdrv_write_ops = {
05fcc848
KW
162 .put_buffer = block_put_buffer,
163 .writev_buffer = block_writev_buffer,
164 .close = bdrv_fclose
9229bf3c
PB
165};
166
45566e9c 167static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
a672b469 168{
38ff78d3 169 if (is_writable) {
9229bf3c 170 return qemu_fopen_ops(bs, &bdrv_write_ops);
38ff78d3 171 }
9229bf3c 172 return qemu_fopen_ops(bs, &bdrv_read_ops);
a672b469
AL
173}
174
2ff68d07 175
bb1a6d8c
EH
176/* QEMUFile timer support.
177 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
178 */
2ff68d07 179
40daca54 180void timer_put(QEMUFile *f, QEMUTimer *ts)
2ff68d07
PB
181{
182 uint64_t expire_time;
183
e93379b0 184 expire_time = timer_expire_time_ns(ts);
2ff68d07
PB
185 qemu_put_be64(f, expire_time);
186}
187
40daca54 188void timer_get(QEMUFile *f, QEMUTimer *ts)
2ff68d07
PB
189{
190 uint64_t expire_time;
191
192 expire_time = qemu_get_be64(f);
193 if (expire_time != -1) {
bc72ad67 194 timer_mod_ns(ts, expire_time);
2ff68d07 195 } else {
bc72ad67 196 timer_del(ts);
2ff68d07
PB
197 }
198}
199
200
bb1a6d8c
EH
201/* VMState timer support.
202 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
203 */
dde0463b
JQ
204
205static int get_timer(QEMUFile *f, void *pv, size_t size)
206{
207 QEMUTimer *v = pv;
40daca54 208 timer_get(f, v);
dde0463b
JQ
209 return 0;
210}
211
84e2e3eb 212static void put_timer(QEMUFile *f, void *pv, size_t size)
dde0463b 213{
84e2e3eb 214 QEMUTimer *v = pv;
40daca54 215 timer_put(f, v);
dde0463b
JQ
216}
217
218const VMStateInfo vmstate_info_timer = {
219 .name = "timer",
220 .get = get_timer,
221 .put = put_timer,
222};
223
08e99e29 224
7685ee6a
AW
225typedef struct CompatEntry {
226 char idstr[256];
227 int instance_id;
228} CompatEntry;
229
a672b469 230typedef struct SaveStateEntry {
72cf2d4f 231 QTAILQ_ENTRY(SaveStateEntry) entry;
a672b469
AL
232 char idstr[256];
233 int instance_id;
4d2ffa08 234 int alias_id;
a672b469
AL
235 int version_id;
236 int section_id;
22ea40f4 237 SaveVMHandlers *ops;
9ed7d6ae 238 const VMStateDescription *vmsd;
a672b469 239 void *opaque;
7685ee6a 240 CompatEntry *compat;
a7ae8355 241 int is_ram;
a672b469
AL
242} SaveStateEntry;
243
0163a2e0
JQ
244typedef struct SaveState {
245 QTAILQ_HEAD(, SaveStateEntry) handlers;
246 int global_section_id;
247} SaveState;
248
249static SaveState savevm_state = {
250 .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
251 .global_section_id = 0,
252};
a672b469 253
abfd9ce3
AS
254static void dump_vmstate_vmsd(FILE *out_file,
255 const VMStateDescription *vmsd, int indent,
256 bool is_subsection);
257
258static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
259 int indent)
260{
261 fprintf(out_file, "%*s{\n", indent, "");
262 indent += 2;
263 fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
264 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
265 field->version_id);
266 fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
267 field->field_exists ? "true" : "false");
268 fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
269 if (field->vmsd != NULL) {
270 fprintf(out_file, ",\n");
271 dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
272 }
273 fprintf(out_file, "\n%*s}", indent - 2, "");
274}
275
276static void dump_vmstate_vmss(FILE *out_file,
5cd8cada 277 const VMStateDescription **subsection,
abfd9ce3
AS
278 int indent)
279{
5cd8cada
JQ
280 if (*subsection != NULL) {
281 dump_vmstate_vmsd(out_file, *subsection, indent, true);
abfd9ce3
AS
282 }
283}
284
285static void dump_vmstate_vmsd(FILE *out_file,
286 const VMStateDescription *vmsd, int indent,
287 bool is_subsection)
288{
289 if (is_subsection) {
290 fprintf(out_file, "%*s{\n", indent, "");
291 } else {
292 fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
293 }
294 indent += 2;
295 fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
296 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
297 vmsd->version_id);
298 fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
299 vmsd->minimum_version_id);
300 if (vmsd->fields != NULL) {
301 const VMStateField *field = vmsd->fields;
302 bool first;
303
304 fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
305 first = true;
306 while (field->name != NULL) {
307 if (field->flags & VMS_MUST_EXIST) {
308 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
309 field++;
310 continue;
311 }
312 if (!first) {
313 fprintf(out_file, ",\n");
314 }
315 dump_vmstate_vmsf(out_file, field, indent + 2);
316 field++;
317 first = false;
318 }
319 fprintf(out_file, "\n%*s]", indent, "");
320 }
321 if (vmsd->subsections != NULL) {
5cd8cada 322 const VMStateDescription **subsection = vmsd->subsections;
abfd9ce3
AS
323 bool first;
324
325 fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
326 first = true;
5cd8cada 327 while (*subsection != NULL) {
abfd9ce3
AS
328 if (!first) {
329 fprintf(out_file, ",\n");
330 }
331 dump_vmstate_vmss(out_file, subsection, indent + 2);
332 subsection++;
333 first = false;
334 }
335 fprintf(out_file, "\n%*s]", indent, "");
336 }
337 fprintf(out_file, "\n%*s}", indent - 2, "");
338}
339
340static void dump_machine_type(FILE *out_file)
341{
342 MachineClass *mc;
343
344 mc = MACHINE_GET_CLASS(current_machine);
345
346 fprintf(out_file, " \"vmschkmachine\": {\n");
347 fprintf(out_file, " \"Name\": \"%s\"\n", mc->name);
348 fprintf(out_file, " },\n");
349}
350
351void dump_vmstate_json_to_file(FILE *out_file)
352{
353 GSList *list, *elt;
354 bool first;
355
356 fprintf(out_file, "{\n");
357 dump_machine_type(out_file);
358
359 first = true;
360 list = object_class_get_list(TYPE_DEVICE, true);
361 for (elt = list; elt; elt = elt->next) {
362 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
363 TYPE_DEVICE);
364 const char *name;
365 int indent = 2;
366
367 if (!dc->vmsd) {
368 continue;
369 }
370
371 if (!first) {
372 fprintf(out_file, ",\n");
373 }
374 name = object_class_get_name(OBJECT_CLASS(dc));
375 fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
376 indent += 2;
377 fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
378 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
379 dc->vmsd->version_id);
380 fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
381 dc->vmsd->minimum_version_id);
382
383 dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
384
385 fprintf(out_file, "\n%*s}", indent - 2, "");
386 first = false;
387 }
388 fprintf(out_file, "\n}\n");
389 fclose(out_file);
390}
391
8718e999
JQ
392static int calculate_new_instance_id(const char *idstr)
393{
394 SaveStateEntry *se;
395 int instance_id = 0;
396
0163a2e0 397 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
8718e999
JQ
398 if (strcmp(idstr, se->idstr) == 0
399 && instance_id <= se->instance_id) {
400 instance_id = se->instance_id + 1;
401 }
402 }
403 return instance_id;
404}
405
7685ee6a
AW
406static int calculate_compat_instance_id(const char *idstr)
407{
408 SaveStateEntry *se;
409 int instance_id = 0;
410
0163a2e0 411 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
38ff78d3 412 if (!se->compat) {
7685ee6a 413 continue;
38ff78d3 414 }
7685ee6a
AW
415
416 if (strcmp(idstr, se->compat->idstr) == 0
417 && instance_id <= se->compat->instance_id) {
418 instance_id = se->compat->instance_id + 1;
419 }
420 }
421 return instance_id;
422}
423
a672b469
AL
424/* TODO: Individual devices generally have very little idea about the rest
425 of the system, so instance_id should be removed/replaced.
426 Meanwhile pass -1 as instance_id if you do not already have a clearly
427 distinguishing id for all instances of your device class. */
0be71e32
AW
428int register_savevm_live(DeviceState *dev,
429 const char *idstr,
a672b469
AL
430 int instance_id,
431 int version_id,
7908c78d 432 SaveVMHandlers *ops,
a672b469
AL
433 void *opaque)
434{
8718e999 435 SaveStateEntry *se;
a672b469 436
7267c094 437 se = g_malloc0(sizeof(SaveStateEntry));
a672b469 438 se->version_id = version_id;
0163a2e0 439 se->section_id = savevm_state.global_section_id++;
7908c78d 440 se->ops = ops;
a672b469 441 se->opaque = opaque;
9ed7d6ae 442 se->vmsd = NULL;
a7ae8355 443 /* if this is a live_savem then set is_ram */
16310a3c 444 if (ops->save_live_setup != NULL) {
a7ae8355
SS
445 se->is_ram = 1;
446 }
a672b469 447
09e5ab63
AL
448 if (dev) {
449 char *id = qdev_get_dev_path(dev);
7685ee6a
AW
450 if (id) {
451 pstrcpy(se->idstr, sizeof(se->idstr), id);
452 pstrcat(se->idstr, sizeof(se->idstr), "/");
7267c094 453 g_free(id);
7685ee6a 454
7267c094 455 se->compat = g_malloc0(sizeof(CompatEntry));
7685ee6a
AW
456 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
457 se->compat->instance_id = instance_id == -1 ?
458 calculate_compat_instance_id(idstr) : instance_id;
459 instance_id = -1;
460 }
461 }
462 pstrcat(se->idstr, sizeof(se->idstr), idstr);
463
8718e999 464 if (instance_id == -1) {
7685ee6a 465 se->instance_id = calculate_new_instance_id(se->idstr);
8718e999
JQ
466 } else {
467 se->instance_id = instance_id;
a672b469 468 }
7685ee6a 469 assert(!se->compat || se->instance_id == 0);
8718e999 470 /* add at the end of list */
0163a2e0 471 QTAILQ_INSERT_TAIL(&savevm_state.handlers, se, entry);
a672b469
AL
472 return 0;
473}
474
0be71e32
AW
475int register_savevm(DeviceState *dev,
476 const char *idstr,
a672b469
AL
477 int instance_id,
478 int version_id,
479 SaveStateHandler *save_state,
480 LoadStateHandler *load_state,
481 void *opaque)
482{
7908c78d
JQ
483 SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
484 ops->save_state = save_state;
485 ops->load_state = load_state;
0be71e32 486 return register_savevm_live(dev, idstr, instance_id, version_id,
7908c78d 487 ops, opaque);
a672b469
AL
488}
489
0be71e32 490void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
41bd13af 491{
8718e999 492 SaveStateEntry *se, *new_se;
7685ee6a
AW
493 char id[256] = "";
494
09e5ab63
AL
495 if (dev) {
496 char *path = qdev_get_dev_path(dev);
7685ee6a
AW
497 if (path) {
498 pstrcpy(id, sizeof(id), path);
499 pstrcat(id, sizeof(id), "/");
7267c094 500 g_free(path);
7685ee6a
AW
501 }
502 }
503 pstrcat(id, sizeof(id), idstr);
41bd13af 504
0163a2e0 505 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
7685ee6a 506 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
0163a2e0 507 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
69e58af9 508 if (se->compat) {
7267c094 509 g_free(se->compat);
69e58af9 510 }
22ea40f4 511 g_free(se->ops);
7267c094 512 g_free(se);
41bd13af 513 }
41bd13af
AL
514 }
515}
516
0be71e32 517int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
4d2ffa08
JK
518 const VMStateDescription *vmsd,
519 void *opaque, int alias_id,
520 int required_for_version)
9ed7d6ae 521{
8718e999 522 SaveStateEntry *se;
9ed7d6ae 523
4d2ffa08
JK
524 /* If this triggers, alias support can be dropped for the vmsd. */
525 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
526
7267c094 527 se = g_malloc0(sizeof(SaveStateEntry));
9ed7d6ae 528 se->version_id = vmsd->version_id;
0163a2e0 529 se->section_id = savevm_state.global_section_id++;
9ed7d6ae
JQ
530 se->opaque = opaque;
531 se->vmsd = vmsd;
4d2ffa08 532 se->alias_id = alias_id;
9ed7d6ae 533
09e5ab63
AL
534 if (dev) {
535 char *id = qdev_get_dev_path(dev);
7685ee6a
AW
536 if (id) {
537 pstrcpy(se->idstr, sizeof(se->idstr), id);
538 pstrcat(se->idstr, sizeof(se->idstr), "/");
7267c094 539 g_free(id);
7685ee6a 540
7267c094 541 se->compat = g_malloc0(sizeof(CompatEntry));
7685ee6a
AW
542 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
543 se->compat->instance_id = instance_id == -1 ?
544 calculate_compat_instance_id(vmsd->name) : instance_id;
545 instance_id = -1;
546 }
547 }
548 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
549
8718e999 550 if (instance_id == -1) {
7685ee6a 551 se->instance_id = calculate_new_instance_id(se->idstr);
8718e999
JQ
552 } else {
553 se->instance_id = instance_id;
9ed7d6ae 554 }
7685ee6a 555 assert(!se->compat || se->instance_id == 0);
8718e999 556 /* add at the end of list */
0163a2e0 557 QTAILQ_INSERT_TAIL(&savevm_state.handlers, se, entry);
9ed7d6ae
JQ
558 return 0;
559}
560
0be71e32
AW
561void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
562 void *opaque)
9ed7d6ae 563{
1eb7538b
JQ
564 SaveStateEntry *se, *new_se;
565
0163a2e0 566 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
1eb7538b 567 if (se->vmsd == vmsd && se->opaque == opaque) {
0163a2e0 568 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
69e58af9 569 if (se->compat) {
7267c094 570 g_free(se->compat);
69e58af9 571 }
7267c094 572 g_free(se);
1eb7538b
JQ
573 }
574 }
9ed7d6ae
JQ
575}
576
4082be4d
JQ
577static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
578{
9013dca5 579 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
9ed7d6ae 580 if (!se->vmsd) { /* Old style */
22ea40f4 581 return se->ops->load_state(f, se->opaque, version_id);
9ed7d6ae
JQ
582 }
583 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
4082be4d
JQ
584}
585
8118f095
AG
586static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
587{
588 int64_t old_offset, size;
589
590 old_offset = qemu_ftell_fast(f);
591 se->ops->save_state(f, se->opaque);
592 size = qemu_ftell_fast(f) - old_offset;
593
594 if (vmdesc) {
595 json_prop_int(vmdesc, "size", size);
596 json_start_array(vmdesc, "fields");
597 json_start_object(vmdesc, NULL);
598 json_prop_str(vmdesc, "name", "data");
599 json_prop_int(vmdesc, "size", size);
600 json_prop_str(vmdesc, "type", "buffer");
601 json_end_object(vmdesc);
602 json_end_array(vmdesc);
603 }
604}
605
606static void vmstate_save(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
4082be4d 607{
9013dca5 608 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
8118f095
AG
609 if (!se->vmsd) {
610 vmstate_save_old_style(f, se, vmdesc);
dc912121 611 return;
9ed7d6ae 612 }
8118f095 613 vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
4082be4d
JQ
614}
615
37fb569c
DDAG
616void savevm_skip_section_footers(void)
617{
618 skip_section_footers = true;
619}
620
ce39bfc9
DDAG
621/*
622 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
623 */
624static void save_section_header(QEMUFile *f, SaveStateEntry *se,
625 uint8_t section_type)
626{
627 qemu_put_byte(f, section_type);
628 qemu_put_be32(f, se->section_id);
629
630 if (section_type == QEMU_VM_SECTION_FULL ||
631 section_type == QEMU_VM_SECTION_START) {
632 /* ID string */
633 size_t len = strlen(se->idstr);
634 qemu_put_byte(f, len);
635 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
636
637 qemu_put_be32(f, se->instance_id);
638 qemu_put_be32(f, se->version_id);
639 }
640}
641
e1c37d0e 642bool qemu_savevm_state_blocked(Error **errp)
dc912121
AW
643{
644 SaveStateEntry *se;
645
0163a2e0 646 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
7d854c47 647 if (se->vmsd && se->vmsd->unmigratable) {
f231b88d
CR
648 error_setg(errp, "State blocked by non-migratable device '%s'",
649 se->idstr);
dc912121
AW
650 return true;
651 }
652 }
653 return false;
654}
655
f796baa1
DDAG
656void qemu_savevm_state_header(QEMUFile *f)
657{
658 trace_savevm_state_header();
659 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
660 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
661}
662
47c8c17a
PB
663void qemu_savevm_state_begin(QEMUFile *f,
664 const MigrationParams *params)
a672b469
AL
665{
666 SaveStateEntry *se;
39346385 667 int ret;
a672b469 668
9013dca5 669 trace_savevm_state_begin();
0163a2e0 670 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
22ea40f4 671 if (!se->ops || !se->ops->set_params) {
c163b5ca 672 continue;
6607ae23 673 }
22ea40f4 674 se->ops->set_params(params, se->opaque);
c163b5ca 675 }
38ff78d3 676
0163a2e0 677 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
d1315aac 678 if (!se->ops || !se->ops->save_live_setup) {
a672b469 679 continue;
22ea40f4 680 }
6bd68781
JQ
681 if (se->ops && se->ops->is_active) {
682 if (!se->ops->is_active(se->opaque)) {
683 continue;
684 }
685 }
ce39bfc9 686 save_section_header(f, se, QEMU_VM_SECTION_START);
a672b469 687
d1315aac 688 ret = se->ops->save_live_setup(f, se->opaque);
2975725f 689 if (ret < 0) {
47c8c17a
PB
690 qemu_file_set_error(f, ret);
691 break;
2975725f 692 }
a672b469 693 }
a672b469
AL
694}
695
39346385 696/*
07f35073 697 * this function has three return values:
39346385
JQ
698 * negative: there was one error, and we have -errno.
699 * 0 : We haven't finished, caller have to go again
700 * 1 : We have finished, we can go to complete phase
701 */
539de124 702int qemu_savevm_state_iterate(QEMUFile *f)
a672b469
AL
703{
704 SaveStateEntry *se;
705 int ret = 1;
706
9013dca5 707 trace_savevm_state_iterate();
0163a2e0 708 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
16310a3c 709 if (!se->ops || !se->ops->save_live_iterate) {
a672b469 710 continue;
22ea40f4 711 }
6bd68781
JQ
712 if (se->ops && se->ops->is_active) {
713 if (!se->ops->is_active(se->opaque)) {
714 continue;
715 }
716 }
aac844ed
JQ
717 if (qemu_file_rate_limit(f)) {
718 return 0;
719 }
464400f6 720 trace_savevm_section_start(se->idstr, se->section_id);
ce39bfc9
DDAG
721
722 save_section_header(f, se, QEMU_VM_SECTION_PART);
a672b469 723
16310a3c 724 ret = se->ops->save_live_iterate(f, se->opaque);
a5df2a02 725 trace_savevm_section_end(se->idstr, se->section_id, ret);
517a13c9 726
47c8c17a
PB
727 if (ret < 0) {
728 qemu_file_set_error(f, ret);
729 }
2975725f 730 if (ret <= 0) {
90697be8
JK
731 /* Do not proceed to the next vmstate before this one reported
732 completion of the current stage. This serializes the migration
733 and reduces the probability that a faster changing state is
734 synchronized over and over again. */
735 break;
736 }
a672b469 737 }
39346385 738 return ret;
a672b469
AL
739}
740
9850c604
AG
741static bool should_send_vmdesc(void)
742{
743 MachineState *machine = MACHINE(qdev_get_machine());
744 return !machine->suppress_vmdesc;
745}
746
47c8c17a 747void qemu_savevm_state_complete(QEMUFile *f)
a672b469 748{
8118f095
AG
749 QJSON *vmdesc;
750 int vmdesc_len;
a672b469 751 SaveStateEntry *se;
2975725f 752 int ret;
a672b469 753
9013dca5
AK
754 trace_savevm_state_complete();
755
ea375f9a
JK
756 cpu_synchronize_all_states();
757
0163a2e0 758 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
16310a3c 759 if (!se->ops || !se->ops->save_live_complete) {
a672b469 760 continue;
22ea40f4 761 }
6bd68781
JQ
762 if (se->ops && se->ops->is_active) {
763 if (!se->ops->is_active(se->opaque)) {
764 continue;
765 }
766 }
464400f6 767 trace_savevm_section_start(se->idstr, se->section_id);
ce39bfc9
DDAG
768
769 save_section_header(f, se, QEMU_VM_SECTION_END);
a672b469 770
16310a3c 771 ret = se->ops->save_live_complete(f, se->opaque);
a5df2a02 772 trace_savevm_section_end(se->idstr, se->section_id, ret);
2975725f 773 if (ret < 0) {
47c8c17a
PB
774 qemu_file_set_error(f, ret);
775 return;
2975725f 776 }
a672b469
AL
777 }
778
8118f095
AG
779 vmdesc = qjson_new();
780 json_prop_int(vmdesc, "page_size", TARGET_PAGE_SIZE);
781 json_start_array(vmdesc, "devices");
0163a2e0 782 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
a672b469 783
22ea40f4 784 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
5cecf414 785 continue;
22ea40f4 786 }
464400f6 787 trace_savevm_section_start(se->idstr, se->section_id);
8118f095
AG
788
789 json_start_object(vmdesc, NULL);
790 json_prop_str(vmdesc, "name", se->idstr);
791 json_prop_int(vmdesc, "instance_id", se->instance_id);
792
ce39bfc9 793 save_section_header(f, se, QEMU_VM_SECTION_FULL);
a672b469 794
8118f095
AG
795 vmstate_save(f, se, vmdesc);
796
797 json_end_object(vmdesc);
a5df2a02 798 trace_savevm_section_end(se->idstr, se->section_id, 0);
a672b469
AL
799 }
800
801 qemu_put_byte(f, QEMU_VM_EOF);
8118f095
AG
802
803 json_end_array(vmdesc);
804 qjson_finish(vmdesc);
805 vmdesc_len = strlen(qjson_get_str(vmdesc));
806
9850c604
AG
807 if (should_send_vmdesc()) {
808 qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
809 qemu_put_be32(f, vmdesc_len);
810 qemu_put_buffer(f, (uint8_t *)qjson_get_str(vmdesc), vmdesc_len);
811 }
8118f095
AG
812 object_unref(OBJECT(vmdesc));
813
edaae611 814 qemu_fflush(f);
a672b469
AL
815}
816
e4ed1541
JQ
817uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size)
818{
819 SaveStateEntry *se;
820 uint64_t ret = 0;
821
0163a2e0 822 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
e4ed1541
JQ
823 if (!se->ops || !se->ops->save_live_pending) {
824 continue;
825 }
826 if (se->ops && se->ops->is_active) {
827 if (!se->ops->is_active(se->opaque)) {
828 continue;
829 }
830 }
831 ret += se->ops->save_live_pending(f, se->opaque, max_size);
832 }
833 return ret;
834}
835
6522773f 836void qemu_savevm_state_cancel(void)
4ec7fcc7
JK
837{
838 SaveStateEntry *se;
839
9013dca5 840 trace_savevm_state_cancel();
0163a2e0 841 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
9b5bfab0
JQ
842 if (se->ops && se->ops->cancel) {
843 se->ops->cancel(se->opaque);
4ec7fcc7
JK
844 }
845 }
846}
847
5d80448c 848static int qemu_savevm_state(QEMUFile *f, Error **errp)
a672b469 849{
a672b469 850 int ret;
6607ae23
IY
851 MigrationParams params = {
852 .blk = 0,
853 .shared = 0
854 };
a672b469 855
5d80448c 856 if (qemu_savevm_state_blocked(errp)) {
04943eba 857 return -EINVAL;
dc912121
AW
858 }
859
9b095037 860 qemu_mutex_unlock_iothread();
f796baa1 861 qemu_savevm_state_header(f);
47c8c17a 862 qemu_savevm_state_begin(f, &params);
9b095037
PB
863 qemu_mutex_lock_iothread();
864
47c8c17a
PB
865 while (qemu_file_get_error(f) == 0) {
866 if (qemu_savevm_state_iterate(f) > 0) {
867 break;
868 }
869 }
a672b469 870
47c8c17a 871 ret = qemu_file_get_error(f);
39346385 872 if (ret == 0) {
47c8c17a 873 qemu_savevm_state_complete(f);
624b9cc2 874 ret = qemu_file_get_error(f);
39346385 875 }
04943eba
PB
876 if (ret != 0) {
877 qemu_savevm_state_cancel();
5d80448c 878 error_setg_errno(errp, -ret, "Error while writing VM state");
04943eba 879 }
a672b469
AL
880 return ret;
881}
882
a7ae8355
SS
883static int qemu_save_device_state(QEMUFile *f)
884{
885 SaveStateEntry *se;
886
887 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
888 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
889
890 cpu_synchronize_all_states();
891
0163a2e0 892 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
a7ae8355
SS
893 if (se->is_ram) {
894 continue;
895 }
22ea40f4 896 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
a7ae8355
SS
897 continue;
898 }
899
ce39bfc9 900 save_section_header(f, se, QEMU_VM_SECTION_FULL);
a7ae8355 901
8118f095 902 vmstate_save(f, se, NULL);
a7ae8355
SS
903 }
904
905 qemu_put_byte(f, QEMU_VM_EOF);
906
907 return qemu_file_get_error(f);
908}
909
a672b469
AL
910static SaveStateEntry *find_se(const char *idstr, int instance_id)
911{
912 SaveStateEntry *se;
913
0163a2e0 914 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
a672b469 915 if (!strcmp(se->idstr, idstr) &&
4d2ffa08
JK
916 (instance_id == se->instance_id ||
917 instance_id == se->alias_id))
a672b469 918 return se;
7685ee6a
AW
919 /* Migrating from an older version? */
920 if (strstr(se->idstr, idstr) && se->compat) {
921 if (!strcmp(se->compat->idstr, idstr) &&
922 (instance_id == se->compat->instance_id ||
923 instance_id == se->alias_id))
924 return se;
925 }
a672b469
AL
926 }
927 return NULL;
928}
929
1a8f46f8 930struct LoadStateEntry {
72cf2d4f 931 QLIST_ENTRY(LoadStateEntry) entry;
a672b469
AL
932 SaveStateEntry *se;
933 int section_id;
934 int version_id;
1a8f46f8 935};
a672b469 936
1a8f46f8 937void loadvm_free_handlers(MigrationIncomingState *mis)
a672b469 938{
f4dbb8dd 939 LoadStateEntry *le, *new_le;
1a8f46f8
DDAG
940
941 QLIST_FOREACH_SAFE(le, &mis->loadvm_handlers, entry, new_le) {
942 QLIST_REMOVE(le, entry);
943 g_free(le);
944 }
945}
946
947int qemu_loadvm_state(QEMUFile *f)
948{
949 MigrationIncomingState *mis = migration_incoming_get_current();
0457d073 950 Error *local_err = NULL;
a672b469
AL
951 uint8_t section_type;
952 unsigned int v;
953 int ret;
1925cebc 954 int file_error_after_eof = -1;
a672b469 955
0457d073 956 if (qemu_savevm_state_blocked(&local_err)) {
19867549 957 error_report_err(local_err);
dc912121
AW
958 return -EINVAL;
959 }
960
a672b469 961 v = qemu_get_be32(f);
38ff78d3 962 if (v != QEMU_VM_FILE_MAGIC) {
0457d073 963 error_report("Not a migration stream");
a672b469 964 return -EINVAL;
38ff78d3 965 }
a672b469
AL
966
967 v = qemu_get_be32(f);
bbfe1408 968 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
6a64b644 969 error_report("SaveVM v2 format is obsolete and don't work anymore");
bbfe1408
JQ
970 return -ENOTSUP;
971 }
38ff78d3 972 if (v != QEMU_VM_FILE_VERSION) {
0457d073 973 error_report("Unsupported migration stream version");
a672b469 974 return -ENOTSUP;
38ff78d3 975 }
a672b469
AL
976
977 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
978 uint32_t instance_id, version_id, section_id;
a672b469 979 SaveStateEntry *se;
1a8f46f8 980 LoadStateEntry *le;
b3af1bc9 981 char idstr[256];
a672b469 982
a5df2a02 983 trace_qemu_loadvm_state_section(section_type);
a672b469
AL
984 switch (section_type) {
985 case QEMU_VM_SECTION_START:
986 case QEMU_VM_SECTION_FULL:
987 /* Read section start */
988 section_id = qemu_get_be32(f);
b3af1bc9
DDAG
989 if (!qemu_get_counted_string(f, idstr)) {
990 error_report("Unable to read ID string for section %u",
991 section_id);
992 return -EINVAL;
993 }
a672b469
AL
994 instance_id = qemu_get_be32(f);
995 version_id = qemu_get_be32(f);
996
a5df2a02
DDAG
997 trace_qemu_loadvm_state_section_startfull(section_id, idstr,
998 instance_id, version_id);
a672b469
AL
999 /* Find savevm section */
1000 se = find_se(idstr, instance_id);
1001 if (se == NULL) {
6a64b644
DDAG
1002 error_report("Unknown savevm section or instance '%s' %d",
1003 idstr, instance_id);
a672b469
AL
1004 ret = -EINVAL;
1005 goto out;
1006 }
1007
1008 /* Validate version */
1009 if (version_id > se->version_id) {
6a64b644
DDAG
1010 error_report("savevm: unsupported version %d for '%s' v%d",
1011 version_id, idstr, se->version_id);
a672b469
AL
1012 ret = -EINVAL;
1013 goto out;
1014 }
1015
1016 /* Add entry */
7267c094 1017 le = g_malloc0(sizeof(*le));
a672b469
AL
1018
1019 le->se = se;
1020 le->section_id = section_id;
1021 le->version_id = version_id;
1a8f46f8 1022 QLIST_INSERT_HEAD(&mis->loadvm_handlers, le, entry);
a672b469 1023
4082be4d 1024 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a 1025 if (ret < 0) {
6a64b644
DDAG
1026 error_report("error while loading state for instance 0x%x of"
1027 " device '%s'", instance_id, idstr);
b5a22e4a
JQ
1028 goto out;
1029 }
a672b469
AL
1030 break;
1031 case QEMU_VM_SECTION_PART:
1032 case QEMU_VM_SECTION_END:
1033 section_id = qemu_get_be32(f);
1034
a5df2a02 1035 trace_qemu_loadvm_state_section_partend(section_id);
1a8f46f8 1036 QLIST_FOREACH(le, &mis->loadvm_handlers, entry) {
f4dbb8dd
JQ
1037 if (le->section_id == section_id) {
1038 break;
1039 }
1040 }
a672b469 1041 if (le == NULL) {
6a64b644 1042 error_report("Unknown savevm section %d", section_id);
a672b469
AL
1043 ret = -EINVAL;
1044 goto out;
1045 }
1046
4082be4d 1047 ret = vmstate_load(f, le->se, le->version_id);
b5a22e4a 1048 if (ret < 0) {
6a64b644
DDAG
1049 error_report("error while loading state section id %d(%s)",
1050 section_id, le->se->idstr);
b5a22e4a
JQ
1051 goto out;
1052 }
a672b469
AL
1053 break;
1054 default:
6a64b644 1055 error_report("Unknown savevm section type %d", section_type);
a672b469
AL
1056 ret = -EINVAL;
1057 goto out;
1058 }
1059 }
1060
1925cebc
AG
1061 file_error_after_eof = qemu_file_get_error(f);
1062
1063 /*
1064 * Try to read in the VMDESC section as well, so that dumping tools that
1065 * intercept our migration stream have the chance to see it.
1066 */
1067 if (qemu_get_byte(f) == QEMU_VM_VMDESCRIPTION) {
1068 uint32_t size = qemu_get_be32(f);
1069 uint8_t *buf = g_malloc(0x1000);
1070
1071 while (size > 0) {
1072 uint32_t read_chunk = MIN(size, 0x1000);
1073 qemu_get_buffer(f, buf, read_chunk);
1074 size -= read_chunk;
1075 }
1076 g_free(buf);
1077 }
1078
ea375f9a
JK
1079 cpu_synchronize_all_post_init();
1080
a672b469
AL
1081 ret = 0;
1082
1083out:
42802d47 1084 if (ret == 0) {
1925cebc
AG
1085 /* We may not have a VMDESC section, so ignore relative errors */
1086 ret = file_error_after_eof;
624b9cc2 1087 }
a672b469
AL
1088
1089 return ret;
1090}
1091
29d78271
SH
1092static BlockDriverState *find_vmstate_bs(void)
1093{
1094 BlockDriverState *bs = NULL;
1095 while ((bs = bdrv_next(bs))) {
1096 if (bdrv_can_snapshot(bs)) {
1097 return bs;
1098 }
1099 }
1100 return NULL;
1101}
1102
cb499fb2
KW
1103/*
1104 * Deletes snapshots of a given name in all opened images.
1105 */
1106static int del_existing_snapshots(Monitor *mon, const char *name)
1107{
1108 BlockDriverState *bs;
cb499fb2 1109 QEMUSnapshotInfo sn1, *snapshot = &sn1;
a89d89d3 1110 Error *err = NULL;
cb499fb2 1111
dbc13590
MA
1112 bs = NULL;
1113 while ((bs = bdrv_next(bs))) {
cb499fb2 1114 if (bdrv_can_snapshot(bs) &&
38ff78d3 1115 bdrv_snapshot_find(bs, snapshot, name) >= 0) {
a89d89d3 1116 bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
84d18f06 1117 if (err) {
cb499fb2 1118 monitor_printf(mon,
a89d89d3
WX
1119 "Error while deleting snapshot on device '%s':"
1120 " %s\n",
1121 bdrv_get_device_name(bs),
1122 error_get_pretty(err));
1123 error_free(err);
cb499fb2
KW
1124 return -1;
1125 }
1126 }
1127 }
1128
1129 return 0;
1130}
1131
3e5a50d6 1132void hmp_savevm(Monitor *mon, const QDict *qdict)
a672b469
AL
1133{
1134 BlockDriverState *bs, *bs1;
1135 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
cb499fb2 1136 int ret;
a672b469
AL
1137 QEMUFile *f;
1138 int saved_vm_running;
c2c9a466 1139 uint64_t vm_state_size;
68b891ec 1140 qemu_timeval tv;
7d631a11 1141 struct tm tm;
d54908a5 1142 const char *name = qdict_get_try_str(qdict, "name");
5d80448c 1143 Error *local_err = NULL;
a672b469 1144
feeee5ac 1145 /* Verify if there is a device that doesn't support snapshots and is writable */
dbc13590
MA
1146 bs = NULL;
1147 while ((bs = bdrv_next(bs))) {
feeee5ac 1148
07b70bfb 1149 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
feeee5ac
MDCF
1150 continue;
1151 }
1152
1153 if (!bdrv_can_snapshot(bs)) {
1154 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
1155 bdrv_get_device_name(bs));
1156 return;
1157 }
1158 }
1159
29d78271 1160 bs = find_vmstate_bs();
a672b469 1161 if (!bs) {
376253ec 1162 monitor_printf(mon, "No block device can accept snapshots\n");
a672b469
AL
1163 return;
1164 }
a672b469 1165
1354869c 1166 saved_vm_running = runstate_is_running();
0461d5a6 1167 vm_stop(RUN_STATE_SAVE_VM);
a672b469 1168
cb499fb2 1169 memset(sn, 0, sizeof(*sn));
a672b469
AL
1170
1171 /* fill auxiliary fields */
68b891ec 1172 qemu_gettimeofday(&tv);
a672b469
AL
1173 sn->date_sec = tv.tv_sec;
1174 sn->date_nsec = tv.tv_usec * 1000;
bc72ad67 1175 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
a672b469 1176
7d631a11
MDCF
1177 if (name) {
1178 ret = bdrv_snapshot_find(bs, old_sn, name);
1179 if (ret >= 0) {
1180 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1181 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1182 } else {
1183 pstrcpy(sn->name, sizeof(sn->name), name);
1184 }
1185 } else {
d7d9b528
BS
1186 /* cast below needed for OpenBSD where tv_sec is still 'long' */
1187 localtime_r((const time_t *)&tv.tv_sec, &tm);
7d631a11 1188 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
7d631a11
MDCF
1189 }
1190
cb499fb2 1191 /* Delete old snapshots of the same name */
f139a412 1192 if (name && del_existing_snapshots(mon, name) < 0) {
cb499fb2
KW
1193 goto the_end;
1194 }
1195
a672b469 1196 /* save the VM state */
45566e9c 1197 f = qemu_fopen_bdrv(bs, 1);
a672b469 1198 if (!f) {
376253ec 1199 monitor_printf(mon, "Could not open VM state file\n");
a672b469
AL
1200 goto the_end;
1201 }
5d80448c 1202 ret = qemu_savevm_state(f, &local_err);
2d22b18f 1203 vm_state_size = qemu_ftell(f);
a672b469
AL
1204 qemu_fclose(f);
1205 if (ret < 0) {
5d80448c
KW
1206 monitor_printf(mon, "%s\n", error_get_pretty(local_err));
1207 error_free(local_err);
a672b469
AL
1208 goto the_end;
1209 }
1210
1211 /* create the snapshots */
1212
dbc13590
MA
1213 bs1 = NULL;
1214 while ((bs1 = bdrv_next(bs1))) {
feeee5ac 1215 if (bdrv_can_snapshot(bs1)) {
2d22b18f
AL
1216 /* Write VM state size only to the image that contains the state */
1217 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
a672b469
AL
1218 ret = bdrv_snapshot_create(bs1, sn);
1219 if (ret < 0) {
376253ec
AL
1220 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1221 bdrv_get_device_name(bs1));
a672b469
AL
1222 }
1223 }
1224 }
1225
1226 the_end:
38ff78d3 1227 if (saved_vm_running) {
a672b469 1228 vm_start();
38ff78d3 1229 }
a672b469
AL
1230}
1231
a7ae8355
SS
1232void qmp_xen_save_devices_state(const char *filename, Error **errp)
1233{
1234 QEMUFile *f;
1235 int saved_vm_running;
1236 int ret;
1237
1238 saved_vm_running = runstate_is_running();
1239 vm_stop(RUN_STATE_SAVE_VM);
1240
1241 f = qemu_fopen(filename, "wb");
1242 if (!f) {
1befce96 1243 error_setg_file_open(errp, errno, filename);
a7ae8355
SS
1244 goto the_end;
1245 }
1246 ret = qemu_save_device_state(f);
1247 qemu_fclose(f);
1248 if (ret < 0) {
1249 error_set(errp, QERR_IO_ERROR);
1250 }
1251
1252 the_end:
38ff78d3 1253 if (saved_vm_running) {
a7ae8355 1254 vm_start();
38ff78d3 1255 }
a7ae8355
SS
1256}
1257
03cd4655 1258int load_vmstate(const char *name)
a672b469 1259{
f0aa7a8b 1260 BlockDriverState *bs, *bs_vm_state;
2d22b18f 1261 QEMUSnapshotInfo sn;
a672b469 1262 QEMUFile *f;
751c6a17 1263 int ret;
a672b469 1264
29d78271 1265 bs_vm_state = find_vmstate_bs();
f0aa7a8b
MDCF
1266 if (!bs_vm_state) {
1267 error_report("No block device supports snapshots");
1268 return -ENOTSUP;
1269 }
1270
1271 /* Don't even try to load empty VM states */
1272 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
1273 if (ret < 0) {
1274 return ret;
1275 } else if (sn.vm_state_size == 0) {
e11480db
KW
1276 error_report("This is a disk-only snapshot. Revert to it offline "
1277 "using qemu-img.");
f0aa7a8b
MDCF
1278 return -EINVAL;
1279 }
1280
1281 /* Verify if there is any device that doesn't support snapshots and is
1282 writable and check if the requested snapshot is available too. */
dbc13590
MA
1283 bs = NULL;
1284 while ((bs = bdrv_next(bs))) {
feeee5ac 1285
07b70bfb 1286 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
feeee5ac
MDCF
1287 continue;
1288 }
1289
1290 if (!bdrv_can_snapshot(bs)) {
1291 error_report("Device '%s' is writable but does not support snapshots.",
1292 bdrv_get_device_name(bs));
1293 return -ENOTSUP;
1294 }
feeee5ac 1295
f0aa7a8b
MDCF
1296 ret = bdrv_snapshot_find(bs, &sn, name);
1297 if (ret < 0) {
1298 error_report("Device '%s' does not have the requested snapshot '%s'",
1299 bdrv_get_device_name(bs), name);
1300 return ret;
1301 }
a672b469
AL
1302 }
1303
1304 /* Flush all IO requests so they don't interfere with the new state. */
922453bc 1305 bdrv_drain_all();
a672b469 1306
f0aa7a8b
MDCF
1307 bs = NULL;
1308 while ((bs = bdrv_next(bs))) {
1309 if (bdrv_can_snapshot(bs)) {
1310 ret = bdrv_snapshot_goto(bs, name);
a672b469 1311 if (ret < 0) {
f0aa7a8b
MDCF
1312 error_report("Error %d while activating snapshot '%s' on '%s'",
1313 ret, name, bdrv_get_device_name(bs));
1314 return ret;
a672b469
AL
1315 }
1316 }
1317 }
1318
a672b469 1319 /* restore the VM state */
f0aa7a8b 1320 f = qemu_fopen_bdrv(bs_vm_state, 0);
a672b469 1321 if (!f) {
1ecda02b 1322 error_report("Could not open VM state file");
05f2401e 1323 return -EINVAL;
a672b469 1324 }
f0aa7a8b 1325
5a8a49d7 1326 qemu_system_reset(VMRESET_SILENT);
bca7856a 1327 migration_incoming_state_new(f);
a672b469 1328 ret = qemu_loadvm_state(f);
f0aa7a8b 1329
a672b469 1330 qemu_fclose(f);
bca7856a 1331 migration_incoming_state_destroy();
a672b469 1332 if (ret < 0) {
1ecda02b 1333 error_report("Error %d while loading VM state", ret);
05f2401e 1334 return ret;
a672b469 1335 }
f0aa7a8b 1336
05f2401e 1337 return 0;
7b630349
JQ
1338}
1339
3e5a50d6 1340void hmp_delvm(Monitor *mon, const QDict *qdict)
a672b469 1341{
af957387 1342 BlockDriverState *bs;
ba2b2288 1343 Error *err;
d54908a5 1344 const char *name = qdict_get_str(qdict, "name");
a672b469 1345
af957387 1346 if (!find_vmstate_bs()) {
376253ec 1347 monitor_printf(mon, "No block device supports snapshots\n");
a672b469
AL
1348 return;
1349 }
1350
af957387
ZH
1351 bs = NULL;
1352 while ((bs = bdrv_next(bs))) {
1353 if (bdrv_can_snapshot(bs)) {
ba2b2288 1354 err = NULL;
a89d89d3 1355 bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
84d18f06 1356 if (err) {
a89d89d3
WX
1357 monitor_printf(mon,
1358 "Error while deleting snapshot on device '%s':"
1359 " %s\n",
1360 bdrv_get_device_name(bs),
1361 error_get_pretty(err));
1362 error_free(err);
a672b469
AL
1363 }
1364 }
1365 }
1366}
1367
1ce6be24 1368void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
a672b469
AL
1369{
1370 BlockDriverState *bs, *bs1;
f9209915
MDCF
1371 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
1372 int nb_sns, i, ret, available;
1373 int total;
1374 int *available_snapshots;
a672b469 1375
29d78271 1376 bs = find_vmstate_bs();
a672b469 1377 if (!bs) {
376253ec 1378 monitor_printf(mon, "No available block device supports snapshots\n");
a672b469
AL
1379 return;
1380 }
a672b469
AL
1381
1382 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1383 if (nb_sns < 0) {
376253ec 1384 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
a672b469
AL
1385 return;
1386 }
f9209915
MDCF
1387
1388 if (nb_sns == 0) {
1389 monitor_printf(mon, "There is no snapshot available.\n");
1390 return;
1391 }
1392
7267c094 1393 available_snapshots = g_malloc0(sizeof(int) * nb_sns);
f9209915
MDCF
1394 total = 0;
1395 for (i = 0; i < nb_sns; i++) {
a672b469 1396 sn = &sn_tab[i];
f9209915
MDCF
1397 available = 1;
1398 bs1 = NULL;
1399
1400 while ((bs1 = bdrv_next(bs1))) {
1401 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
1402 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
1403 if (ret < 0) {
1404 available = 0;
1405 break;
1406 }
1407 }
1408 }
1409
1410 if (available) {
1411 available_snapshots[total] = i;
1412 total++;
1413 }
a672b469 1414 }
f9209915
MDCF
1415
1416 if (total > 0) {
5b917044
WX
1417 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
1418 monitor_printf(mon, "\n");
f9209915
MDCF
1419 for (i = 0; i < total; i++) {
1420 sn = &sn_tab[available_snapshots[i]];
5b917044
WX
1421 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
1422 monitor_printf(mon, "\n");
f9209915
MDCF
1423 }
1424 } else {
1425 monitor_printf(mon, "There is no suitable snapshot available\n");
1426 }
1427
7267c094
AL
1428 g_free(sn_tab);
1429 g_free(available_snapshots);
f9209915 1430
a672b469 1431}
c5705a77
AK
1432
1433void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
1434{
1ddde087 1435 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
c5705a77
AK
1436 memory_region_name(mr), dev);
1437}
1438
1439void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
1440{
b0e56e0b 1441 qemu_ram_unset_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK);
c5705a77
AK
1442}
1443
1444void vmstate_register_ram_global(MemoryRegion *mr)
1445{
1446 vmstate_register_ram(mr, NULL);
1447}