migration: Create include for migration snapshots
[qemu/ar7.git] / migration / savevm.c
blobf2664f37a09ae1b004fa4697536a6565483a11a4
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2009-2015 Red Hat Inc
7 * Authors:
8 * Juan Quintela <quintela@redhat.com>
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:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
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.
29 #include "qemu/osdep.h"
30 #include "hw/boards.h"
31 #include "hw/hw.h"
32 #include "hw/qdev.h"
33 #include "hw/xen/xen.h"
34 #include "net/net.h"
35 #include "sysemu/sysemu.h"
36 #include "qemu/timer.h"
37 #include "migration/migration.h"
38 #include "migration/snapshot.h"
39 #include "qemu-file-channel.h"
40 #include "qemu-file.h"
41 #include "savevm.h"
42 #include "postcopy-ram.h"
43 #include "qapi/qmp/qerror.h"
44 #include "qemu/error-report.h"
45 #include "qemu/queue.h"
46 #include "sysemu/cpus.h"
47 #include "exec/memory.h"
48 #include "exec/target_page.h"
49 #include "qmp-commands.h"
50 #include "trace.h"
51 #include "qemu/bitops.h"
52 #include "qemu/iov.h"
53 #include "block/snapshot.h"
54 #include "qemu/cutils.h"
55 #include "io/channel-buffer.h"
56 #include "io/channel-file.h"
58 #ifndef ETH_P_RARP
59 #define ETH_P_RARP 0x8035
60 #endif
61 #define ARP_HTYPE_ETH 0x0001
62 #define ARP_PTYPE_IP 0x0800
63 #define ARP_OP_REQUEST_REV 0x3
65 const unsigned int postcopy_ram_discard_version = 0;
67 static bool skip_section_footers;
69 /* Subcommands for QEMU_VM_COMMAND */
70 enum qemu_vm_cmd {
71 MIG_CMD_INVALID = 0, /* Must be 0 */
72 MIG_CMD_OPEN_RETURN_PATH, /* Tell the dest to open the Return path */
73 MIG_CMD_PING, /* Request a PONG on the RP */
75 MIG_CMD_POSTCOPY_ADVISE, /* Prior to any page transfers, just
76 warn we might want to do PC */
77 MIG_CMD_POSTCOPY_LISTEN, /* Start listening for incoming
78 pages as it's running. */
79 MIG_CMD_POSTCOPY_RUN, /* Start execution */
81 MIG_CMD_POSTCOPY_RAM_DISCARD, /* A list of pages to discard that
82 were previously sent during
83 precopy but are dirty. */
84 MIG_CMD_PACKAGED, /* Send a wrapped stream within this stream */
85 MIG_CMD_MAX
88 #define MAX_VM_CMD_PACKAGED_SIZE (1ul << 24)
89 static struct mig_cmd_args {
90 ssize_t len; /* -1 = variable */
91 const char *name;
92 } mig_cmd_args[] = {
93 [MIG_CMD_INVALID] = { .len = -1, .name = "INVALID" },
94 [MIG_CMD_OPEN_RETURN_PATH] = { .len = 0, .name = "OPEN_RETURN_PATH" },
95 [MIG_CMD_PING] = { .len = sizeof(uint32_t), .name = "PING" },
96 [MIG_CMD_POSTCOPY_ADVISE] = { .len = 16, .name = "POSTCOPY_ADVISE" },
97 [MIG_CMD_POSTCOPY_LISTEN] = { .len = 0, .name = "POSTCOPY_LISTEN" },
98 [MIG_CMD_POSTCOPY_RUN] = { .len = 0, .name = "POSTCOPY_RUN" },
99 [MIG_CMD_POSTCOPY_RAM_DISCARD] = {
100 .len = -1, .name = "POSTCOPY_RAM_DISCARD" },
101 [MIG_CMD_PACKAGED] = { .len = 4, .name = "PACKAGED" },
102 [MIG_CMD_MAX] = { .len = -1, .name = "MAX" },
105 static int announce_self_create(uint8_t *buf,
106 uint8_t *mac_addr)
108 /* Ethernet header. */
109 memset(buf, 0xff, 6); /* destination MAC addr */
110 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
111 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
113 /* RARP header. */
114 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
115 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
116 *(buf + 18) = 6; /* hardware addr length (ethernet) */
117 *(buf + 19) = 4; /* protocol addr length (IPv4) */
118 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
119 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
120 memset(buf + 28, 0x00, 4); /* source protocol addr */
121 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
122 memset(buf + 38, 0x00, 4); /* target protocol addr */
124 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
125 memset(buf + 42, 0x00, 18);
127 return 60; /* len (FCS will be added by hardware) */
130 static void qemu_announce_self_iter(NICState *nic, void *opaque)
132 uint8_t buf[60];
133 int len;
135 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
136 len = announce_self_create(buf, nic->conf->macaddr.a);
138 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
142 static void qemu_announce_self_once(void *opaque)
144 static int count = SELF_ANNOUNCE_ROUNDS;
145 QEMUTimer *timer = *(QEMUTimer **)opaque;
147 qemu_foreach_nic(qemu_announce_self_iter, NULL);
149 if (--count) {
150 /* delay 50ms, 150ms, 250ms, ... */
151 timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
152 self_announce_delay(count));
153 } else {
154 timer_del(timer);
155 timer_free(timer);
159 void qemu_announce_self(void)
161 static QEMUTimer *timer;
162 timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
163 qemu_announce_self_once(&timer);
166 /***********************************************************/
167 /* savevm/loadvm support */
169 static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
170 int64_t pos)
172 int ret;
173 QEMUIOVector qiov;
175 qemu_iovec_init_external(&qiov, iov, iovcnt);
176 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
177 if (ret < 0) {
178 return ret;
181 return qiov.size;
184 static ssize_t block_get_buffer(void *opaque, uint8_t *buf, int64_t pos,
185 size_t size)
187 return bdrv_load_vmstate(opaque, buf, pos, size);
190 static int bdrv_fclose(void *opaque)
192 return bdrv_flush(opaque);
195 static const QEMUFileOps bdrv_read_ops = {
196 .get_buffer = block_get_buffer,
197 .close = bdrv_fclose
200 static const QEMUFileOps bdrv_write_ops = {
201 .writev_buffer = block_writev_buffer,
202 .close = bdrv_fclose
205 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
207 if (is_writable) {
208 return qemu_fopen_ops(bs, &bdrv_write_ops);
210 return qemu_fopen_ops(bs, &bdrv_read_ops);
214 /* QEMUFile timer support.
215 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
218 void timer_put(QEMUFile *f, QEMUTimer *ts)
220 uint64_t expire_time;
222 expire_time = timer_expire_time_ns(ts);
223 qemu_put_be64(f, expire_time);
226 void timer_get(QEMUFile *f, QEMUTimer *ts)
228 uint64_t expire_time;
230 expire_time = qemu_get_be64(f);
231 if (expire_time != -1) {
232 timer_mod_ns(ts, expire_time);
233 } else {
234 timer_del(ts);
239 /* VMState timer support.
240 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
243 static int get_timer(QEMUFile *f, void *pv, size_t size, VMStateField *field)
245 QEMUTimer *v = pv;
246 timer_get(f, v);
247 return 0;
250 static int put_timer(QEMUFile *f, void *pv, size_t size, VMStateField *field,
251 QJSON *vmdesc)
253 QEMUTimer *v = pv;
254 timer_put(f, v);
256 return 0;
259 const VMStateInfo vmstate_info_timer = {
260 .name = "timer",
261 .get = get_timer,
262 .put = put_timer,
266 typedef struct CompatEntry {
267 char idstr[256];
268 int instance_id;
269 } CompatEntry;
271 typedef struct SaveStateEntry {
272 QTAILQ_ENTRY(SaveStateEntry) entry;
273 char idstr[256];
274 int instance_id;
275 int alias_id;
276 int version_id;
277 /* version id read from the stream */
278 int load_version_id;
279 int section_id;
280 /* section id read from the stream */
281 int load_section_id;
282 SaveVMHandlers *ops;
283 const VMStateDescription *vmsd;
284 void *opaque;
285 CompatEntry *compat;
286 int is_ram;
287 } SaveStateEntry;
289 typedef struct SaveState {
290 QTAILQ_HEAD(, SaveStateEntry) handlers;
291 int global_section_id;
292 bool skip_configuration;
293 uint32_t len;
294 const char *name;
295 uint32_t target_page_bits;
296 } SaveState;
298 static SaveState savevm_state = {
299 .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
300 .global_section_id = 0,
301 .skip_configuration = false,
304 void savevm_skip_configuration(void)
306 savevm_state.skip_configuration = true;
310 static void configuration_pre_save(void *opaque)
312 SaveState *state = opaque;
313 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
315 state->len = strlen(current_name);
316 state->name = current_name;
317 state->target_page_bits = qemu_target_page_bits();
320 static int configuration_pre_load(void *opaque)
322 SaveState *state = opaque;
324 /* If there is no target-page-bits subsection it means the source
325 * predates the variable-target-page-bits support and is using the
326 * minimum possible value for this CPU.
328 state->target_page_bits = qemu_target_page_bits_min();
329 return 0;
332 static int configuration_post_load(void *opaque, int version_id)
334 SaveState *state = opaque;
335 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
337 if (strncmp(state->name, current_name, state->len) != 0) {
338 error_report("Machine type received is '%.*s' and local is '%s'",
339 (int) state->len, state->name, current_name);
340 return -EINVAL;
343 if (state->target_page_bits != qemu_target_page_bits()) {
344 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
345 state->target_page_bits, qemu_target_page_bits());
346 return -EINVAL;
349 return 0;
352 /* The target-page-bits subsection is present only if the
353 * target page size is not the same as the default (ie the
354 * minimum page size for a variable-page-size guest CPU).
355 * If it is present then it contains the actual target page
356 * bits for the machine, and migration will fail if the
357 * two ends don't agree about it.
359 static bool vmstate_target_page_bits_needed(void *opaque)
361 return qemu_target_page_bits()
362 > qemu_target_page_bits_min();
365 static const VMStateDescription vmstate_target_page_bits = {
366 .name = "configuration/target-page-bits",
367 .version_id = 1,
368 .minimum_version_id = 1,
369 .needed = vmstate_target_page_bits_needed,
370 .fields = (VMStateField[]) {
371 VMSTATE_UINT32(target_page_bits, SaveState),
372 VMSTATE_END_OF_LIST()
376 static const VMStateDescription vmstate_configuration = {
377 .name = "configuration",
378 .version_id = 1,
379 .pre_load = configuration_pre_load,
380 .post_load = configuration_post_load,
381 .pre_save = configuration_pre_save,
382 .fields = (VMStateField[]) {
383 VMSTATE_UINT32(len, SaveState),
384 VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, len),
385 VMSTATE_END_OF_LIST()
387 .subsections = (const VMStateDescription*[]) {
388 &vmstate_target_page_bits,
389 NULL
393 static void dump_vmstate_vmsd(FILE *out_file,
394 const VMStateDescription *vmsd, int indent,
395 bool is_subsection);
397 static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
398 int indent)
400 fprintf(out_file, "%*s{\n", indent, "");
401 indent += 2;
402 fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
403 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
404 field->version_id);
405 fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
406 field->field_exists ? "true" : "false");
407 fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
408 if (field->vmsd != NULL) {
409 fprintf(out_file, ",\n");
410 dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
412 fprintf(out_file, "\n%*s}", indent - 2, "");
415 static void dump_vmstate_vmss(FILE *out_file,
416 const VMStateDescription **subsection,
417 int indent)
419 if (*subsection != NULL) {
420 dump_vmstate_vmsd(out_file, *subsection, indent, true);
424 static void dump_vmstate_vmsd(FILE *out_file,
425 const VMStateDescription *vmsd, int indent,
426 bool is_subsection)
428 if (is_subsection) {
429 fprintf(out_file, "%*s{\n", indent, "");
430 } else {
431 fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
433 indent += 2;
434 fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
435 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
436 vmsd->version_id);
437 fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
438 vmsd->minimum_version_id);
439 if (vmsd->fields != NULL) {
440 const VMStateField *field = vmsd->fields;
441 bool first;
443 fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
444 first = true;
445 while (field->name != NULL) {
446 if (field->flags & VMS_MUST_EXIST) {
447 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
448 field++;
449 continue;
451 if (!first) {
452 fprintf(out_file, ",\n");
454 dump_vmstate_vmsf(out_file, field, indent + 2);
455 field++;
456 first = false;
458 fprintf(out_file, "\n%*s]", indent, "");
460 if (vmsd->subsections != NULL) {
461 const VMStateDescription **subsection = vmsd->subsections;
462 bool first;
464 fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
465 first = true;
466 while (*subsection != NULL) {
467 if (!first) {
468 fprintf(out_file, ",\n");
470 dump_vmstate_vmss(out_file, subsection, indent + 2);
471 subsection++;
472 first = false;
474 fprintf(out_file, "\n%*s]", indent, "");
476 fprintf(out_file, "\n%*s}", indent - 2, "");
479 static void dump_machine_type(FILE *out_file)
481 MachineClass *mc;
483 mc = MACHINE_GET_CLASS(current_machine);
485 fprintf(out_file, " \"vmschkmachine\": {\n");
486 fprintf(out_file, " \"Name\": \"%s\"\n", mc->name);
487 fprintf(out_file, " },\n");
490 void dump_vmstate_json_to_file(FILE *out_file)
492 GSList *list, *elt;
493 bool first;
495 fprintf(out_file, "{\n");
496 dump_machine_type(out_file);
498 first = true;
499 list = object_class_get_list(TYPE_DEVICE, true);
500 for (elt = list; elt; elt = elt->next) {
501 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
502 TYPE_DEVICE);
503 const char *name;
504 int indent = 2;
506 if (!dc->vmsd) {
507 continue;
510 if (!first) {
511 fprintf(out_file, ",\n");
513 name = object_class_get_name(OBJECT_CLASS(dc));
514 fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
515 indent += 2;
516 fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
517 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
518 dc->vmsd->version_id);
519 fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
520 dc->vmsd->minimum_version_id);
522 dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
524 fprintf(out_file, "\n%*s}", indent - 2, "");
525 first = false;
527 fprintf(out_file, "\n}\n");
528 fclose(out_file);
531 static int calculate_new_instance_id(const char *idstr)
533 SaveStateEntry *se;
534 int instance_id = 0;
536 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
537 if (strcmp(idstr, se->idstr) == 0
538 && instance_id <= se->instance_id) {
539 instance_id = se->instance_id + 1;
542 return instance_id;
545 static int calculate_compat_instance_id(const char *idstr)
547 SaveStateEntry *se;
548 int instance_id = 0;
550 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
551 if (!se->compat) {
552 continue;
555 if (strcmp(idstr, se->compat->idstr) == 0
556 && instance_id <= se->compat->instance_id) {
557 instance_id = se->compat->instance_id + 1;
560 return instance_id;
563 static inline MigrationPriority save_state_priority(SaveStateEntry *se)
565 if (se->vmsd) {
566 return se->vmsd->priority;
568 return MIG_PRI_DEFAULT;
571 static void savevm_state_handler_insert(SaveStateEntry *nse)
573 MigrationPriority priority = save_state_priority(nse);
574 SaveStateEntry *se;
576 assert(priority <= MIG_PRI_MAX);
578 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
579 if (save_state_priority(se) < priority) {
580 break;
584 if (se) {
585 QTAILQ_INSERT_BEFORE(se, nse, entry);
586 } else {
587 QTAILQ_INSERT_TAIL(&savevm_state.handlers, nse, entry);
591 /* TODO: Individual devices generally have very little idea about the rest
592 of the system, so instance_id should be removed/replaced.
593 Meanwhile pass -1 as instance_id if you do not already have a clearly
594 distinguishing id for all instances of your device class. */
595 int register_savevm_live(DeviceState *dev,
596 const char *idstr,
597 int instance_id,
598 int version_id,
599 SaveVMHandlers *ops,
600 void *opaque)
602 SaveStateEntry *se;
604 se = g_new0(SaveStateEntry, 1);
605 se->version_id = version_id;
606 se->section_id = savevm_state.global_section_id++;
607 se->ops = ops;
608 se->opaque = opaque;
609 se->vmsd = NULL;
610 /* if this is a live_savem then set is_ram */
611 if (ops->save_live_setup != NULL) {
612 se->is_ram = 1;
615 if (dev) {
616 char *id = qdev_get_dev_path(dev);
617 if (id) {
618 if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
619 sizeof(se->idstr)) {
620 error_report("Path too long for VMState (%s)", id);
621 g_free(id);
622 g_free(se);
624 return -1;
626 g_free(id);
628 se->compat = g_new0(CompatEntry, 1);
629 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
630 se->compat->instance_id = instance_id == -1 ?
631 calculate_compat_instance_id(idstr) : instance_id;
632 instance_id = -1;
635 pstrcat(se->idstr, sizeof(se->idstr), idstr);
637 if (instance_id == -1) {
638 se->instance_id = calculate_new_instance_id(se->idstr);
639 } else {
640 se->instance_id = instance_id;
642 assert(!se->compat || se->instance_id == 0);
643 savevm_state_handler_insert(se);
644 return 0;
647 int register_savevm(DeviceState *dev,
648 const char *idstr,
649 int instance_id,
650 int version_id,
651 SaveStateHandler *save_state,
652 LoadStateHandler *load_state,
653 void *opaque)
655 SaveVMHandlers *ops = g_new0(SaveVMHandlers, 1);
656 ops->save_state = save_state;
657 ops->load_state = load_state;
658 return register_savevm_live(dev, idstr, instance_id, version_id,
659 ops, opaque);
662 void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
664 SaveStateEntry *se, *new_se;
665 char id[256] = "";
667 if (dev) {
668 char *path = qdev_get_dev_path(dev);
669 if (path) {
670 pstrcpy(id, sizeof(id), path);
671 pstrcat(id, sizeof(id), "/");
672 g_free(path);
675 pstrcat(id, sizeof(id), idstr);
677 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
678 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
679 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
680 g_free(se->compat);
681 g_free(se->ops);
682 g_free(se);
687 int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
688 const VMStateDescription *vmsd,
689 void *opaque, int alias_id,
690 int required_for_version,
691 Error **errp)
693 SaveStateEntry *se;
695 /* If this triggers, alias support can be dropped for the vmsd. */
696 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
698 se = g_new0(SaveStateEntry, 1);
699 se->version_id = vmsd->version_id;
700 se->section_id = savevm_state.global_section_id++;
701 se->opaque = opaque;
702 se->vmsd = vmsd;
703 se->alias_id = alias_id;
705 if (dev) {
706 char *id = qdev_get_dev_path(dev);
707 if (id) {
708 if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
709 sizeof(se->idstr)) {
710 error_setg(errp, "Path too long for VMState (%s)", id);
711 g_free(id);
712 g_free(se);
714 return -1;
716 g_free(id);
718 se->compat = g_new0(CompatEntry, 1);
719 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
720 se->compat->instance_id = instance_id == -1 ?
721 calculate_compat_instance_id(vmsd->name) : instance_id;
722 instance_id = -1;
725 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
727 if (instance_id == -1) {
728 se->instance_id = calculate_new_instance_id(se->idstr);
729 } else {
730 se->instance_id = instance_id;
732 assert(!se->compat || se->instance_id == 0);
733 savevm_state_handler_insert(se);
734 return 0;
737 void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
738 void *opaque)
740 SaveStateEntry *se, *new_se;
742 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
743 if (se->vmsd == vmsd && se->opaque == opaque) {
744 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
745 g_free(se->compat);
746 g_free(se);
751 static int vmstate_load(QEMUFile *f, SaveStateEntry *se)
753 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
754 if (!se->vmsd) { /* Old style */
755 return se->ops->load_state(f, se->opaque, se->load_version_id);
757 return vmstate_load_state(f, se->vmsd, se->opaque, se->load_version_id);
760 static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
762 int64_t old_offset, size;
764 old_offset = qemu_ftell_fast(f);
765 se->ops->save_state(f, se->opaque);
766 size = qemu_ftell_fast(f) - old_offset;
768 if (vmdesc) {
769 json_prop_int(vmdesc, "size", size);
770 json_start_array(vmdesc, "fields");
771 json_start_object(vmdesc, NULL);
772 json_prop_str(vmdesc, "name", "data");
773 json_prop_int(vmdesc, "size", size);
774 json_prop_str(vmdesc, "type", "buffer");
775 json_end_object(vmdesc);
776 json_end_array(vmdesc);
780 static void vmstate_save(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
782 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
783 if (!se->vmsd) {
784 vmstate_save_old_style(f, se, vmdesc);
785 return;
787 vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
790 void savevm_skip_section_footers(void)
792 skip_section_footers = true;
796 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
798 static void save_section_header(QEMUFile *f, SaveStateEntry *se,
799 uint8_t section_type)
801 qemu_put_byte(f, section_type);
802 qemu_put_be32(f, se->section_id);
804 if (section_type == QEMU_VM_SECTION_FULL ||
805 section_type == QEMU_VM_SECTION_START) {
806 /* ID string */
807 size_t len = strlen(se->idstr);
808 qemu_put_byte(f, len);
809 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
811 qemu_put_be32(f, se->instance_id);
812 qemu_put_be32(f, se->version_id);
817 * Write a footer onto device sections that catches cases misformatted device
818 * sections.
820 static void save_section_footer(QEMUFile *f, SaveStateEntry *se)
822 if (!skip_section_footers) {
823 qemu_put_byte(f, QEMU_VM_SECTION_FOOTER);
824 qemu_put_be32(f, se->section_id);
829 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
830 * command and associated data.
832 * @f: File to send command on
833 * @command: Command type to send
834 * @len: Length of associated data
835 * @data: Data associated with command.
837 static void qemu_savevm_command_send(QEMUFile *f,
838 enum qemu_vm_cmd command,
839 uint16_t len,
840 uint8_t *data)
842 trace_savevm_command_send(command, len);
843 qemu_put_byte(f, QEMU_VM_COMMAND);
844 qemu_put_be16(f, (uint16_t)command);
845 qemu_put_be16(f, len);
846 qemu_put_buffer(f, data, len);
847 qemu_fflush(f);
850 void qemu_savevm_send_ping(QEMUFile *f, uint32_t value)
852 uint32_t buf;
854 trace_savevm_send_ping(value);
855 buf = cpu_to_be32(value);
856 qemu_savevm_command_send(f, MIG_CMD_PING, sizeof(value), (uint8_t *)&buf);
859 void qemu_savevm_send_open_return_path(QEMUFile *f)
861 trace_savevm_send_open_return_path();
862 qemu_savevm_command_send(f, MIG_CMD_OPEN_RETURN_PATH, 0, NULL);
865 /* We have a buffer of data to send; we don't want that all to be loaded
866 * by the command itself, so the command contains just the length of the
867 * extra buffer that we then send straight after it.
868 * TODO: Must be a better way to organise that
870 * Returns:
871 * 0 on success
872 * -ve on error
874 int qemu_savevm_send_packaged(QEMUFile *f, const uint8_t *buf, size_t len)
876 uint32_t tmp;
878 if (len > MAX_VM_CMD_PACKAGED_SIZE) {
879 error_report("%s: Unreasonably large packaged state: %zu",
880 __func__, len);
881 return -1;
884 tmp = cpu_to_be32(len);
886 trace_qemu_savevm_send_packaged();
887 qemu_savevm_command_send(f, MIG_CMD_PACKAGED, 4, (uint8_t *)&tmp);
889 qemu_put_buffer(f, buf, len);
891 return 0;
894 /* Send prior to any postcopy transfer */
895 void qemu_savevm_send_postcopy_advise(QEMUFile *f)
897 uint64_t tmp[2];
898 tmp[0] = cpu_to_be64(ram_pagesize_summary());
899 tmp[1] = cpu_to_be64(qemu_target_page_size());
901 trace_qemu_savevm_send_postcopy_advise();
902 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE, 16, (uint8_t *)tmp);
905 /* Sent prior to starting the destination running in postcopy, discard pages
906 * that have already been sent but redirtied on the source.
907 * CMD_POSTCOPY_RAM_DISCARD consist of:
908 * byte version (0)
909 * byte Length of name field (not including 0)
910 * n x byte RAM block name
911 * byte 0 terminator (just for safety)
912 * n x Byte ranges within the named RAMBlock
913 * be64 Start of the range
914 * be64 Length
916 * name: RAMBlock name that these entries are part of
917 * len: Number of page entries
918 * start_list: 'len' addresses
919 * length_list: 'len' addresses
922 void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name,
923 uint16_t len,
924 uint64_t *start_list,
925 uint64_t *length_list)
927 uint8_t *buf;
928 uint16_t tmplen;
929 uint16_t t;
930 size_t name_len = strlen(name);
932 trace_qemu_savevm_send_postcopy_ram_discard(name, len);
933 assert(name_len < 256);
934 buf = g_malloc0(1 + 1 + name_len + 1 + (8 + 8) * len);
935 buf[0] = postcopy_ram_discard_version;
936 buf[1] = name_len;
937 memcpy(buf + 2, name, name_len);
938 tmplen = 2 + name_len;
939 buf[tmplen++] = '\0';
941 for (t = 0; t < len; t++) {
942 stq_be_p(buf + tmplen, start_list[t]);
943 tmplen += 8;
944 stq_be_p(buf + tmplen, length_list[t]);
945 tmplen += 8;
947 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RAM_DISCARD, tmplen, buf);
948 g_free(buf);
951 /* Get the destination into a state where it can receive postcopy data. */
952 void qemu_savevm_send_postcopy_listen(QEMUFile *f)
954 trace_savevm_send_postcopy_listen();
955 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_LISTEN, 0, NULL);
958 /* Kick the destination into running */
959 void qemu_savevm_send_postcopy_run(QEMUFile *f)
961 trace_savevm_send_postcopy_run();
962 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RUN, 0, NULL);
965 bool qemu_savevm_state_blocked(Error **errp)
967 SaveStateEntry *se;
969 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
970 if (se->vmsd && se->vmsd->unmigratable) {
971 error_setg(errp, "State blocked by non-migratable device '%s'",
972 se->idstr);
973 return true;
976 return false;
979 static bool enforce_config_section(void)
981 MachineState *machine = MACHINE(qdev_get_machine());
982 return machine->enforce_config_section;
985 void qemu_savevm_state_header(QEMUFile *f)
987 trace_savevm_state_header();
988 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
989 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
991 if (!savevm_state.skip_configuration || enforce_config_section()) {
992 qemu_put_byte(f, QEMU_VM_CONFIGURATION);
993 vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0);
998 void qemu_savevm_state_begin(QEMUFile *f)
1000 SaveStateEntry *se;
1001 int ret;
1003 trace_savevm_state_begin();
1004 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1005 if (!se->ops || !se->ops->save_live_setup) {
1006 continue;
1008 if (se->ops && se->ops->is_active) {
1009 if (!se->ops->is_active(se->opaque)) {
1010 continue;
1013 save_section_header(f, se, QEMU_VM_SECTION_START);
1015 ret = se->ops->save_live_setup(f, se->opaque);
1016 save_section_footer(f, se);
1017 if (ret < 0) {
1018 qemu_file_set_error(f, ret);
1019 break;
1025 * this function has three return values:
1026 * negative: there was one error, and we have -errno.
1027 * 0 : We haven't finished, caller have to go again
1028 * 1 : We have finished, we can go to complete phase
1030 int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy)
1032 SaveStateEntry *se;
1033 int ret = 1;
1035 trace_savevm_state_iterate();
1036 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1037 if (!se->ops || !se->ops->save_live_iterate) {
1038 continue;
1040 if (se->ops && se->ops->is_active) {
1041 if (!se->ops->is_active(se->opaque)) {
1042 continue;
1046 * In the postcopy phase, any device that doesn't know how to
1047 * do postcopy should have saved it's state in the _complete
1048 * call that's already run, it might get confused if we call
1049 * iterate afterwards.
1051 if (postcopy && !se->ops->save_live_complete_postcopy) {
1052 continue;
1054 if (qemu_file_rate_limit(f)) {
1055 return 0;
1057 trace_savevm_section_start(se->idstr, se->section_id);
1059 save_section_header(f, se, QEMU_VM_SECTION_PART);
1061 ret = se->ops->save_live_iterate(f, se->opaque);
1062 trace_savevm_section_end(se->idstr, se->section_id, ret);
1063 save_section_footer(f, se);
1065 if (ret < 0) {
1066 qemu_file_set_error(f, ret);
1068 if (ret <= 0) {
1069 /* Do not proceed to the next vmstate before this one reported
1070 completion of the current stage. This serializes the migration
1071 and reduces the probability that a faster changing state is
1072 synchronized over and over again. */
1073 break;
1076 return ret;
1079 static bool should_send_vmdesc(void)
1081 MachineState *machine = MACHINE(qdev_get_machine());
1082 bool in_postcopy = migration_in_postcopy();
1083 return !machine->suppress_vmdesc && !in_postcopy;
1087 * Calls the save_live_complete_postcopy methods
1088 * causing the last few pages to be sent immediately and doing any associated
1089 * cleanup.
1090 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1091 * all the other devices, but that happens at the point we switch to postcopy.
1093 void qemu_savevm_state_complete_postcopy(QEMUFile *f)
1095 SaveStateEntry *se;
1096 int ret;
1098 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1099 if (!se->ops || !se->ops->save_live_complete_postcopy) {
1100 continue;
1102 if (se->ops && se->ops->is_active) {
1103 if (!se->ops->is_active(se->opaque)) {
1104 continue;
1107 trace_savevm_section_start(se->idstr, se->section_id);
1108 /* Section type */
1109 qemu_put_byte(f, QEMU_VM_SECTION_END);
1110 qemu_put_be32(f, se->section_id);
1112 ret = se->ops->save_live_complete_postcopy(f, se->opaque);
1113 trace_savevm_section_end(se->idstr, se->section_id, ret);
1114 save_section_footer(f, se);
1115 if (ret < 0) {
1116 qemu_file_set_error(f, ret);
1117 return;
1121 qemu_put_byte(f, QEMU_VM_EOF);
1122 qemu_fflush(f);
1125 void qemu_savevm_state_complete_precopy(QEMUFile *f, bool iterable_only)
1127 QJSON *vmdesc;
1128 int vmdesc_len;
1129 SaveStateEntry *se;
1130 int ret;
1131 bool in_postcopy = migration_in_postcopy();
1133 trace_savevm_state_complete_precopy();
1135 cpu_synchronize_all_states();
1137 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1138 if (!se->ops ||
1139 (in_postcopy && se->ops->save_live_complete_postcopy) ||
1140 (in_postcopy && !iterable_only) ||
1141 !se->ops->save_live_complete_precopy) {
1142 continue;
1145 if (se->ops && se->ops->is_active) {
1146 if (!se->ops->is_active(se->opaque)) {
1147 continue;
1150 trace_savevm_section_start(se->idstr, se->section_id);
1152 save_section_header(f, se, QEMU_VM_SECTION_END);
1154 ret = se->ops->save_live_complete_precopy(f, se->opaque);
1155 trace_savevm_section_end(se->idstr, se->section_id, ret);
1156 save_section_footer(f, se);
1157 if (ret < 0) {
1158 qemu_file_set_error(f, ret);
1159 return;
1163 if (iterable_only) {
1164 return;
1167 vmdesc = qjson_new();
1168 json_prop_int(vmdesc, "page_size", qemu_target_page_size());
1169 json_start_array(vmdesc, "devices");
1170 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1172 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1173 continue;
1175 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1176 trace_savevm_section_skip(se->idstr, se->section_id);
1177 continue;
1180 trace_savevm_section_start(se->idstr, se->section_id);
1182 json_start_object(vmdesc, NULL);
1183 json_prop_str(vmdesc, "name", se->idstr);
1184 json_prop_int(vmdesc, "instance_id", se->instance_id);
1186 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1187 vmstate_save(f, se, vmdesc);
1188 trace_savevm_section_end(se->idstr, se->section_id, 0);
1189 save_section_footer(f, se);
1191 json_end_object(vmdesc);
1194 if (!in_postcopy) {
1195 /* Postcopy stream will still be going */
1196 qemu_put_byte(f, QEMU_VM_EOF);
1199 json_end_array(vmdesc);
1200 qjson_finish(vmdesc);
1201 vmdesc_len = strlen(qjson_get_str(vmdesc));
1203 if (should_send_vmdesc()) {
1204 qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
1205 qemu_put_be32(f, vmdesc_len);
1206 qemu_put_buffer(f, (uint8_t *)qjson_get_str(vmdesc), vmdesc_len);
1208 qjson_destroy(vmdesc);
1210 qemu_fflush(f);
1213 /* Give an estimate of the amount left to be transferred,
1214 * the result is split into the amount for units that can and
1215 * for units that can't do postcopy.
1217 void qemu_savevm_state_pending(QEMUFile *f, uint64_t threshold_size,
1218 uint64_t *res_non_postcopiable,
1219 uint64_t *res_postcopiable)
1221 SaveStateEntry *se;
1223 *res_non_postcopiable = 0;
1224 *res_postcopiable = 0;
1227 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1228 if (!se->ops || !se->ops->save_live_pending) {
1229 continue;
1231 if (se->ops && se->ops->is_active) {
1232 if (!se->ops->is_active(se->opaque)) {
1233 continue;
1236 se->ops->save_live_pending(f, se->opaque, threshold_size,
1237 res_non_postcopiable, res_postcopiable);
1241 void qemu_savevm_state_cleanup(void)
1243 SaveStateEntry *se;
1245 trace_savevm_state_cleanup();
1246 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1247 if (se->ops && se->ops->cleanup) {
1248 se->ops->cleanup(se->opaque);
1253 static int qemu_savevm_state(QEMUFile *f, Error **errp)
1255 int ret;
1256 MigrationState *ms = migrate_init();
1257 MigrationStatus status;
1258 ms->to_dst_file = f;
1260 if (migration_is_blocked(errp)) {
1261 ret = -EINVAL;
1262 goto done;
1265 if (migrate_use_block()) {
1266 error_setg(errp, "Block migration and snapshots are incompatible");
1267 ret = -EINVAL;
1268 goto done;
1271 qemu_mutex_unlock_iothread();
1272 qemu_savevm_state_header(f);
1273 qemu_savevm_state_begin(f);
1274 qemu_mutex_lock_iothread();
1276 while (qemu_file_get_error(f) == 0) {
1277 if (qemu_savevm_state_iterate(f, false) > 0) {
1278 break;
1282 ret = qemu_file_get_error(f);
1283 if (ret == 0) {
1284 qemu_savevm_state_complete_precopy(f, false);
1285 ret = qemu_file_get_error(f);
1287 qemu_savevm_state_cleanup();
1288 if (ret != 0) {
1289 error_setg_errno(errp, -ret, "Error while writing VM state");
1292 done:
1293 if (ret != 0) {
1294 status = MIGRATION_STATUS_FAILED;
1295 } else {
1296 status = MIGRATION_STATUS_COMPLETED;
1298 migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
1300 /* f is outer parameter, it should not stay in global migration state after
1301 * this function finished */
1302 ms->to_dst_file = NULL;
1304 return ret;
1307 static int qemu_save_device_state(QEMUFile *f)
1309 SaveStateEntry *se;
1311 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1312 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1314 cpu_synchronize_all_states();
1316 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1317 if (se->is_ram) {
1318 continue;
1320 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1321 continue;
1323 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1324 continue;
1327 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1329 vmstate_save(f, se, NULL);
1331 save_section_footer(f, se);
1334 qemu_put_byte(f, QEMU_VM_EOF);
1336 return qemu_file_get_error(f);
1339 static SaveStateEntry *find_se(const char *idstr, int instance_id)
1341 SaveStateEntry *se;
1343 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1344 if (!strcmp(se->idstr, idstr) &&
1345 (instance_id == se->instance_id ||
1346 instance_id == se->alias_id))
1347 return se;
1348 /* Migrating from an older version? */
1349 if (strstr(se->idstr, idstr) && se->compat) {
1350 if (!strcmp(se->compat->idstr, idstr) &&
1351 (instance_id == se->compat->instance_id ||
1352 instance_id == se->alias_id))
1353 return se;
1356 return NULL;
1359 enum LoadVMExitCodes {
1360 /* Allow a command to quit all layers of nested loadvm loops */
1361 LOADVM_QUIT = 1,
1364 static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis);
1366 /* ------ incoming postcopy messages ------ */
1367 /* 'advise' arrives before any transfers just to tell us that a postcopy
1368 * *might* happen - it might be skipped if precopy transferred everything
1369 * quickly.
1371 static int loadvm_postcopy_handle_advise(MigrationIncomingState *mis)
1373 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1374 uint64_t remote_pagesize_summary, local_pagesize_summary, remote_tps;
1376 trace_loadvm_postcopy_handle_advise();
1377 if (ps != POSTCOPY_INCOMING_NONE) {
1378 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps);
1379 return -1;
1382 if (!postcopy_ram_supported_by_host()) {
1383 postcopy_state_set(POSTCOPY_INCOMING_NONE);
1384 return -1;
1387 remote_pagesize_summary = qemu_get_be64(mis->from_src_file);
1388 local_pagesize_summary = ram_pagesize_summary();
1390 if (remote_pagesize_summary != local_pagesize_summary) {
1392 * This detects two potential causes of mismatch:
1393 * a) A mismatch in host page sizes
1394 * Some combinations of mismatch are probably possible but it gets
1395 * a bit more complicated. In particular we need to place whole
1396 * host pages on the dest at once, and we need to ensure that we
1397 * handle dirtying to make sure we never end up sending part of
1398 * a hostpage on it's own.
1399 * b) The use of different huge page sizes on source/destination
1400 * a more fine grain test is performed during RAM block migration
1401 * but this test here causes a nice early clear failure, and
1402 * also fails when passed to an older qemu that doesn't
1403 * do huge pages.
1405 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1406 " d=%" PRIx64 ")",
1407 remote_pagesize_summary, local_pagesize_summary);
1408 return -1;
1411 remote_tps = qemu_get_be64(mis->from_src_file);
1412 if (remote_tps != qemu_target_page_size()) {
1414 * Again, some differences could be dealt with, but for now keep it
1415 * simple.
1417 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1418 (int)remote_tps, qemu_target_page_size());
1419 return -1;
1422 if (ram_postcopy_incoming_init(mis)) {
1423 return -1;
1426 postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1428 return 0;
1431 /* After postcopy we will be told to throw some pages away since they're
1432 * dirty and will have to be demand fetched. Must happen before CPU is
1433 * started.
1434 * There can be 0..many of these messages, each encoding multiple pages.
1436 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
1437 uint16_t len)
1439 int tmp;
1440 char ramid[256];
1441 PostcopyState ps = postcopy_state_get();
1443 trace_loadvm_postcopy_ram_handle_discard();
1445 switch (ps) {
1446 case POSTCOPY_INCOMING_ADVISE:
1447 /* 1st discard */
1448 tmp = postcopy_ram_prepare_discard(mis);
1449 if (tmp) {
1450 return tmp;
1452 break;
1454 case POSTCOPY_INCOMING_DISCARD:
1455 /* Expected state */
1456 break;
1458 default:
1459 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1460 ps);
1461 return -1;
1463 /* We're expecting a
1464 * Version (0)
1465 * a RAM ID string (length byte, name, 0 term)
1466 * then at least 1 16 byte chunk
1468 if (len < (1 + 1 + 1 + 1 + 2 * 8)) {
1469 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1470 return -1;
1473 tmp = qemu_get_byte(mis->from_src_file);
1474 if (tmp != postcopy_ram_discard_version) {
1475 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp);
1476 return -1;
1479 if (!qemu_get_counted_string(mis->from_src_file, ramid)) {
1480 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1481 return -1;
1483 tmp = qemu_get_byte(mis->from_src_file);
1484 if (tmp != 0) {
1485 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp);
1486 return -1;
1489 len -= 3 + strlen(ramid);
1490 if (len % 16) {
1491 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1492 return -1;
1494 trace_loadvm_postcopy_ram_handle_discard_header(ramid, len);
1495 while (len) {
1496 uint64_t start_addr, block_length;
1497 start_addr = qemu_get_be64(mis->from_src_file);
1498 block_length = qemu_get_be64(mis->from_src_file);
1500 len -= 16;
1501 int ret = ram_discard_range(ramid, start_addr, block_length);
1502 if (ret) {
1503 return ret;
1506 trace_loadvm_postcopy_ram_handle_discard_end();
1508 return 0;
1512 * Triggered by a postcopy_listen command; this thread takes over reading
1513 * the input stream, leaving the main thread free to carry on loading the rest
1514 * of the device state (from RAM).
1515 * (TODO:This could do with being in a postcopy file - but there again it's
1516 * just another input loop, not that postcopy specific)
1518 static void *postcopy_ram_listen_thread(void *opaque)
1520 QEMUFile *f = opaque;
1521 MigrationIncomingState *mis = migration_incoming_get_current();
1522 int load_res;
1524 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
1525 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1526 qemu_sem_post(&mis->listen_thread_sem);
1527 trace_postcopy_ram_listen_thread_start();
1530 * Because we're a thread and not a coroutine we can't yield
1531 * in qemu_file, and thus we must be blocking now.
1533 qemu_file_set_blocking(f, true);
1534 load_res = qemu_loadvm_state_main(f, mis);
1535 /* And non-blocking again so we don't block in any cleanup */
1536 qemu_file_set_blocking(f, false);
1538 trace_postcopy_ram_listen_thread_exit();
1539 if (load_res < 0) {
1540 error_report("%s: loadvm failed: %d", __func__, load_res);
1541 qemu_file_set_error(f, load_res);
1542 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1543 MIGRATION_STATUS_FAILED);
1544 } else {
1546 * This looks good, but it's possible that the device loading in the
1547 * main thread hasn't finished yet, and so we might not be in 'RUN'
1548 * state yet; wait for the end of the main thread.
1550 qemu_event_wait(&mis->main_thread_load_event);
1552 postcopy_ram_incoming_cleanup(mis);
1554 if (load_res < 0) {
1556 * If something went wrong then we have a bad state so exit;
1557 * depending how far we got it might be possible at this point
1558 * to leave the guest running and fire MCEs for pages that never
1559 * arrived as a desperate recovery step.
1561 exit(EXIT_FAILURE);
1564 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1565 MIGRATION_STATUS_COMPLETED);
1567 * If everything has worked fine, then the main thread has waited
1568 * for us to start, and we're the last use of the mis.
1569 * (If something broke then qemu will have to exit anyway since it's
1570 * got a bad migration state).
1572 migration_incoming_state_destroy();
1575 return NULL;
1578 /* After this message we must be able to immediately receive postcopy data */
1579 static int loadvm_postcopy_handle_listen(MigrationIncomingState *mis)
1581 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_LISTENING);
1582 trace_loadvm_postcopy_handle_listen();
1583 if (ps != POSTCOPY_INCOMING_ADVISE && ps != POSTCOPY_INCOMING_DISCARD) {
1584 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps);
1585 return -1;
1587 if (ps == POSTCOPY_INCOMING_ADVISE) {
1589 * A rare case, we entered listen without having to do any discards,
1590 * so do the setup that's normally done at the time of the 1st discard.
1592 postcopy_ram_prepare_discard(mis);
1596 * Sensitise RAM - can now generate requests for blocks that don't exist
1597 * However, at this point the CPU shouldn't be running, and the IO
1598 * shouldn't be doing anything yet so don't actually expect requests
1600 if (postcopy_ram_enable_notify(mis)) {
1601 return -1;
1604 if (mis->have_listen_thread) {
1605 error_report("CMD_POSTCOPY_RAM_LISTEN already has a listen thread");
1606 return -1;
1609 mis->have_listen_thread = true;
1610 /* Start up the listening thread and wait for it to signal ready */
1611 qemu_sem_init(&mis->listen_thread_sem, 0);
1612 qemu_thread_create(&mis->listen_thread, "postcopy/listen",
1613 postcopy_ram_listen_thread, mis->from_src_file,
1614 QEMU_THREAD_DETACHED);
1615 qemu_sem_wait(&mis->listen_thread_sem);
1616 qemu_sem_destroy(&mis->listen_thread_sem);
1618 return 0;
1622 typedef struct {
1623 QEMUBH *bh;
1624 } HandleRunBhData;
1626 static void loadvm_postcopy_handle_run_bh(void *opaque)
1628 Error *local_err = NULL;
1629 HandleRunBhData *data = opaque;
1631 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
1632 * in migration.c
1634 cpu_synchronize_all_post_init();
1636 qemu_announce_self();
1638 /* Make sure all file formats flush their mutable metadata.
1639 * If we get an error here, just don't restart the VM yet. */
1640 bdrv_invalidate_cache_all(&local_err);
1641 if (local_err) {
1642 error_report_err(local_err);
1643 local_err = NULL;
1644 autostart = false;
1647 trace_loadvm_postcopy_handle_run_cpu_sync();
1648 cpu_synchronize_all_post_init();
1650 trace_loadvm_postcopy_handle_run_vmstart();
1652 if (autostart) {
1653 /* Hold onto your hats, starting the CPU */
1654 vm_start();
1655 } else {
1656 /* leave it paused and let management decide when to start the CPU */
1657 runstate_set(RUN_STATE_PAUSED);
1660 qemu_bh_delete(data->bh);
1661 g_free(data);
1664 /* After all discards we can start running and asking for pages */
1665 static int loadvm_postcopy_handle_run(MigrationIncomingState *mis)
1667 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_RUNNING);
1668 HandleRunBhData *data;
1670 trace_loadvm_postcopy_handle_run();
1671 if (ps != POSTCOPY_INCOMING_LISTENING) {
1672 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps);
1673 return -1;
1676 data = g_new(HandleRunBhData, 1);
1677 data->bh = qemu_bh_new(loadvm_postcopy_handle_run_bh, data);
1678 qemu_bh_schedule(data->bh);
1680 /* We need to finish reading the stream from the package
1681 * and also stop reading anything more from the stream that loaded the
1682 * package (since it's now being read by the listener thread).
1683 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
1685 return LOADVM_QUIT;
1689 * Immediately following this command is a blob of data containing an embedded
1690 * chunk of migration stream; read it and load it.
1692 * @mis: Incoming state
1693 * @length: Length of packaged data to read
1695 * Returns: Negative values on error
1698 static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
1700 int ret;
1701 size_t length;
1702 QIOChannelBuffer *bioc;
1704 length = qemu_get_be32(mis->from_src_file);
1705 trace_loadvm_handle_cmd_packaged(length);
1707 if (length > MAX_VM_CMD_PACKAGED_SIZE) {
1708 error_report("Unreasonably large packaged state: %zu", length);
1709 return -1;
1712 bioc = qio_channel_buffer_new(length);
1713 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-loadvm-buffer");
1714 ret = qemu_get_buffer(mis->from_src_file,
1715 bioc->data,
1716 length);
1717 if (ret != length) {
1718 object_unref(OBJECT(bioc));
1719 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
1720 ret, length);
1721 return (ret < 0) ? ret : -EAGAIN;
1723 bioc->usage += length;
1724 trace_loadvm_handle_cmd_packaged_received(ret);
1726 QEMUFile *packf = qemu_fopen_channel_input(QIO_CHANNEL(bioc));
1728 ret = qemu_loadvm_state_main(packf, mis);
1729 trace_loadvm_handle_cmd_packaged_main(ret);
1730 qemu_fclose(packf);
1731 object_unref(OBJECT(bioc));
1733 return ret;
1737 * Process an incoming 'QEMU_VM_COMMAND'
1738 * 0 just a normal return
1739 * LOADVM_QUIT All good, but exit the loop
1740 * <0 Error
1742 static int loadvm_process_command(QEMUFile *f)
1744 MigrationIncomingState *mis = migration_incoming_get_current();
1745 uint16_t cmd;
1746 uint16_t len;
1747 uint32_t tmp32;
1749 cmd = qemu_get_be16(f);
1750 len = qemu_get_be16(f);
1752 trace_loadvm_process_command(cmd, len);
1753 if (cmd >= MIG_CMD_MAX || cmd == MIG_CMD_INVALID) {
1754 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd, len);
1755 return -EINVAL;
1758 if (mig_cmd_args[cmd].len != -1 && mig_cmd_args[cmd].len != len) {
1759 error_report("%s received with bad length - expecting %zu, got %d",
1760 mig_cmd_args[cmd].name,
1761 (size_t)mig_cmd_args[cmd].len, len);
1762 return -ERANGE;
1765 switch (cmd) {
1766 case MIG_CMD_OPEN_RETURN_PATH:
1767 if (mis->to_src_file) {
1768 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
1769 /* Not really a problem, so don't give up */
1770 return 0;
1772 mis->to_src_file = qemu_file_get_return_path(f);
1773 if (!mis->to_src_file) {
1774 error_report("CMD_OPEN_RETURN_PATH failed");
1775 return -1;
1777 break;
1779 case MIG_CMD_PING:
1780 tmp32 = qemu_get_be32(f);
1781 trace_loadvm_process_command_ping(tmp32);
1782 if (!mis->to_src_file) {
1783 error_report("CMD_PING (0x%x) received with no return path",
1784 tmp32);
1785 return -1;
1787 migrate_send_rp_pong(mis, tmp32);
1788 break;
1790 case MIG_CMD_PACKAGED:
1791 return loadvm_handle_cmd_packaged(mis);
1793 case MIG_CMD_POSTCOPY_ADVISE:
1794 return loadvm_postcopy_handle_advise(mis);
1796 case MIG_CMD_POSTCOPY_LISTEN:
1797 return loadvm_postcopy_handle_listen(mis);
1799 case MIG_CMD_POSTCOPY_RUN:
1800 return loadvm_postcopy_handle_run(mis);
1802 case MIG_CMD_POSTCOPY_RAM_DISCARD:
1803 return loadvm_postcopy_ram_handle_discard(mis, len);
1806 return 0;
1810 * Read a footer off the wire and check that it matches the expected section
1812 * Returns: true if the footer was good
1813 * false if there is a problem (and calls error_report to say why)
1815 static bool check_section_footer(QEMUFile *f, SaveStateEntry *se)
1817 uint8_t read_mark;
1818 uint32_t read_section_id;
1820 if (skip_section_footers) {
1821 /* No footer to check */
1822 return true;
1825 read_mark = qemu_get_byte(f);
1827 if (read_mark != QEMU_VM_SECTION_FOOTER) {
1828 error_report("Missing section footer for %s", se->idstr);
1829 return false;
1832 read_section_id = qemu_get_be32(f);
1833 if (read_section_id != se->load_section_id) {
1834 error_report("Mismatched section id in footer for %s -"
1835 " read 0x%x expected 0x%x",
1836 se->idstr, read_section_id, se->load_section_id);
1837 return false;
1840 /* All good */
1841 return true;
1844 static int
1845 qemu_loadvm_section_start_full(QEMUFile *f, MigrationIncomingState *mis)
1847 uint32_t instance_id, version_id, section_id;
1848 SaveStateEntry *se;
1849 char idstr[256];
1850 int ret;
1852 /* Read section start */
1853 section_id = qemu_get_be32(f);
1854 if (!qemu_get_counted_string(f, idstr)) {
1855 error_report("Unable to read ID string for section %u",
1856 section_id);
1857 return -EINVAL;
1859 instance_id = qemu_get_be32(f);
1860 version_id = qemu_get_be32(f);
1862 trace_qemu_loadvm_state_section_startfull(section_id, idstr,
1863 instance_id, version_id);
1864 /* Find savevm section */
1865 se = find_se(idstr, instance_id);
1866 if (se == NULL) {
1867 error_report("Unknown savevm section or instance '%s' %d",
1868 idstr, instance_id);
1869 return -EINVAL;
1872 /* Validate version */
1873 if (version_id > se->version_id) {
1874 error_report("savevm: unsupported version %d for '%s' v%d",
1875 version_id, idstr, se->version_id);
1876 return -EINVAL;
1878 se->load_version_id = version_id;
1879 se->load_section_id = section_id;
1881 /* Validate if it is a device's state */
1882 if (xen_enabled() && se->is_ram) {
1883 error_report("loadvm: %s RAM loading not allowed on Xen", idstr);
1884 return -EINVAL;
1887 ret = vmstate_load(f, se);
1888 if (ret < 0) {
1889 error_report("error while loading state for instance 0x%x of"
1890 " device '%s'", instance_id, idstr);
1891 return ret;
1893 if (!check_section_footer(f, se)) {
1894 return -EINVAL;
1897 return 0;
1900 static int
1901 qemu_loadvm_section_part_end(QEMUFile *f, MigrationIncomingState *mis)
1903 uint32_t section_id;
1904 SaveStateEntry *se;
1905 int ret;
1907 section_id = qemu_get_be32(f);
1909 trace_qemu_loadvm_state_section_partend(section_id);
1910 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1911 if (se->load_section_id == section_id) {
1912 break;
1915 if (se == NULL) {
1916 error_report("Unknown savevm section %d", section_id);
1917 return -EINVAL;
1920 ret = vmstate_load(f, se);
1921 if (ret < 0) {
1922 error_report("error while loading state section id %d(%s)",
1923 section_id, se->idstr);
1924 return ret;
1926 if (!check_section_footer(f, se)) {
1927 return -EINVAL;
1930 return 0;
1933 static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
1935 uint8_t section_type;
1936 int ret = 0;
1938 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1939 ret = 0;
1940 trace_qemu_loadvm_state_section(section_type);
1941 switch (section_type) {
1942 case QEMU_VM_SECTION_START:
1943 case QEMU_VM_SECTION_FULL:
1944 ret = qemu_loadvm_section_start_full(f, mis);
1945 if (ret < 0) {
1946 goto out;
1948 break;
1949 case QEMU_VM_SECTION_PART:
1950 case QEMU_VM_SECTION_END:
1951 ret = qemu_loadvm_section_part_end(f, mis);
1952 if (ret < 0) {
1953 goto out;
1955 break;
1956 case QEMU_VM_COMMAND:
1957 ret = loadvm_process_command(f);
1958 trace_qemu_loadvm_state_section_command(ret);
1959 if ((ret < 0) || (ret & LOADVM_QUIT)) {
1960 goto out;
1962 break;
1963 default:
1964 error_report("Unknown savevm section type %d", section_type);
1965 ret = -EINVAL;
1966 goto out;
1970 out:
1971 if (ret < 0) {
1972 qemu_file_set_error(f, ret);
1974 return ret;
1977 int qemu_loadvm_state(QEMUFile *f)
1979 MigrationIncomingState *mis = migration_incoming_get_current();
1980 Error *local_err = NULL;
1981 unsigned int v;
1982 int ret;
1984 if (qemu_savevm_state_blocked(&local_err)) {
1985 error_report_err(local_err);
1986 return -EINVAL;
1989 v = qemu_get_be32(f);
1990 if (v != QEMU_VM_FILE_MAGIC) {
1991 error_report("Not a migration stream");
1992 return -EINVAL;
1995 v = qemu_get_be32(f);
1996 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1997 error_report("SaveVM v2 format is obsolete and don't work anymore");
1998 return -ENOTSUP;
2000 if (v != QEMU_VM_FILE_VERSION) {
2001 error_report("Unsupported migration stream version");
2002 return -ENOTSUP;
2005 if (!savevm_state.skip_configuration || enforce_config_section()) {
2006 if (qemu_get_byte(f) != QEMU_VM_CONFIGURATION) {
2007 error_report("Configuration section missing");
2008 return -EINVAL;
2010 ret = vmstate_load_state(f, &vmstate_configuration, &savevm_state, 0);
2012 if (ret) {
2013 return ret;
2017 ret = qemu_loadvm_state_main(f, mis);
2018 qemu_event_set(&mis->main_thread_load_event);
2020 trace_qemu_loadvm_state_post_main(ret);
2022 if (mis->have_listen_thread) {
2023 /* Listen thread still going, can't clean up yet */
2024 return ret;
2027 if (ret == 0) {
2028 ret = qemu_file_get_error(f);
2032 * Try to read in the VMDESC section as well, so that dumping tools that
2033 * intercept our migration stream have the chance to see it.
2036 /* We've got to be careful; if we don't read the data and just shut the fd
2037 * then the sender can error if we close while it's still sending.
2038 * We also mustn't read data that isn't there; some transports (RDMA)
2039 * will stall waiting for that data when the source has already closed.
2041 if (ret == 0 && should_send_vmdesc()) {
2042 uint8_t *buf;
2043 uint32_t size;
2044 uint8_t section_type = qemu_get_byte(f);
2046 if (section_type != QEMU_VM_VMDESCRIPTION) {
2047 error_report("Expected vmdescription section, but got %d",
2048 section_type);
2050 * It doesn't seem worth failing at this point since
2051 * we apparently have an otherwise valid VM state
2053 } else {
2054 buf = g_malloc(0x1000);
2055 size = qemu_get_be32(f);
2057 while (size > 0) {
2058 uint32_t read_chunk = MIN(size, 0x1000);
2059 qemu_get_buffer(f, buf, read_chunk);
2060 size -= read_chunk;
2062 g_free(buf);
2066 cpu_synchronize_all_post_init();
2068 return ret;
2071 int save_snapshot(const char *name, Error **errp)
2073 BlockDriverState *bs, *bs1;
2074 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
2075 int ret = -1;
2076 QEMUFile *f;
2077 int saved_vm_running;
2078 uint64_t vm_state_size;
2079 qemu_timeval tv;
2080 struct tm tm;
2081 AioContext *aio_context;
2083 if (!bdrv_all_can_snapshot(&bs)) {
2084 error_setg(errp, "Device '%s' is writable but does not support "
2085 "snapshots", bdrv_get_device_name(bs));
2086 return ret;
2089 /* Delete old snapshots of the same name */
2090 if (name) {
2091 ret = bdrv_all_delete_snapshot(name, &bs1, errp);
2092 if (ret < 0) {
2093 error_prepend(errp, "Error while deleting snapshot on device "
2094 "'%s': ", bdrv_get_device_name(bs1));
2095 return ret;
2099 bs = bdrv_all_find_vmstate_bs();
2100 if (bs == NULL) {
2101 error_setg(errp, "No block device can accept snapshots");
2102 return ret;
2104 aio_context = bdrv_get_aio_context(bs);
2106 saved_vm_running = runstate_is_running();
2108 ret = global_state_store();
2109 if (ret) {
2110 error_setg(errp, "Error saving global state");
2111 return ret;
2113 vm_stop(RUN_STATE_SAVE_VM);
2115 aio_context_acquire(aio_context);
2117 memset(sn, 0, sizeof(*sn));
2119 /* fill auxiliary fields */
2120 qemu_gettimeofday(&tv);
2121 sn->date_sec = tv.tv_sec;
2122 sn->date_nsec = tv.tv_usec * 1000;
2123 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
2125 if (name) {
2126 ret = bdrv_snapshot_find(bs, old_sn, name);
2127 if (ret >= 0) {
2128 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2129 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2130 } else {
2131 pstrcpy(sn->name, sizeof(sn->name), name);
2133 } else {
2134 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2135 localtime_r((const time_t *)&tv.tv_sec, &tm);
2136 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2139 /* save the VM state */
2140 f = qemu_fopen_bdrv(bs, 1);
2141 if (!f) {
2142 error_setg(errp, "Could not open VM state file");
2143 goto the_end;
2145 ret = qemu_savevm_state(f, errp);
2146 vm_state_size = qemu_ftell(f);
2147 qemu_fclose(f);
2148 if (ret < 0) {
2149 goto the_end;
2152 ret = bdrv_all_create_snapshot(sn, bs, vm_state_size, &bs);
2153 if (ret < 0) {
2154 error_setg(errp, "Error while creating snapshot on '%s'",
2155 bdrv_get_device_name(bs));
2156 goto the_end;
2159 ret = 0;
2161 the_end:
2162 aio_context_release(aio_context);
2163 if (saved_vm_running) {
2164 vm_start();
2166 return ret;
2169 void qmp_xen_save_devices_state(const char *filename, Error **errp)
2171 QEMUFile *f;
2172 QIOChannelFile *ioc;
2173 int saved_vm_running;
2174 int ret;
2176 saved_vm_running = runstate_is_running();
2177 vm_stop(RUN_STATE_SAVE_VM);
2178 global_state_store_running();
2180 ioc = qio_channel_file_new_path(filename, O_WRONLY | O_CREAT, 0660, errp);
2181 if (!ioc) {
2182 goto the_end;
2184 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-save-state");
2185 f = qemu_fopen_channel_output(QIO_CHANNEL(ioc));
2186 ret = qemu_save_device_state(f);
2187 qemu_fclose(f);
2188 if (ret < 0) {
2189 error_setg(errp, QERR_IO_ERROR);
2192 the_end:
2193 if (saved_vm_running) {
2194 vm_start();
2198 void qmp_xen_load_devices_state(const char *filename, Error **errp)
2200 QEMUFile *f;
2201 QIOChannelFile *ioc;
2202 int ret;
2204 /* Guest must be paused before loading the device state; the RAM state
2205 * will already have been loaded by xc
2207 if (runstate_is_running()) {
2208 error_setg(errp, "Cannot update device state while vm is running");
2209 return;
2211 vm_stop(RUN_STATE_RESTORE_VM);
2213 ioc = qio_channel_file_new_path(filename, O_RDONLY | O_BINARY, 0, errp);
2214 if (!ioc) {
2215 return;
2217 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-load-state");
2218 f = qemu_fopen_channel_input(QIO_CHANNEL(ioc));
2220 ret = qemu_loadvm_state(f);
2221 qemu_fclose(f);
2222 if (ret < 0) {
2223 error_setg(errp, QERR_IO_ERROR);
2225 migration_incoming_state_destroy();
2228 int load_snapshot(const char *name, Error **errp)
2230 BlockDriverState *bs, *bs_vm_state;
2231 QEMUSnapshotInfo sn;
2232 QEMUFile *f;
2233 int ret;
2234 AioContext *aio_context;
2235 MigrationIncomingState *mis = migration_incoming_get_current();
2237 if (!bdrv_all_can_snapshot(&bs)) {
2238 error_setg(errp,
2239 "Device '%s' is writable but does not support snapshots",
2240 bdrv_get_device_name(bs));
2241 return -ENOTSUP;
2243 ret = bdrv_all_find_snapshot(name, &bs);
2244 if (ret < 0) {
2245 error_setg(errp,
2246 "Device '%s' does not have the requested snapshot '%s'",
2247 bdrv_get_device_name(bs), name);
2248 return ret;
2251 bs_vm_state = bdrv_all_find_vmstate_bs();
2252 if (!bs_vm_state) {
2253 error_setg(errp, "No block device supports snapshots");
2254 return -ENOTSUP;
2256 aio_context = bdrv_get_aio_context(bs_vm_state);
2258 /* Don't even try to load empty VM states */
2259 aio_context_acquire(aio_context);
2260 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2261 aio_context_release(aio_context);
2262 if (ret < 0) {
2263 return ret;
2264 } else if (sn.vm_state_size == 0) {
2265 error_setg(errp, "This is a disk-only snapshot. Revert to it "
2266 " offline using qemu-img");
2267 return -EINVAL;
2270 /* Flush all IO requests so they don't interfere with the new state. */
2271 bdrv_drain_all();
2273 ret = bdrv_all_goto_snapshot(name, &bs);
2274 if (ret < 0) {
2275 error_setg(errp, "Error %d while activating snapshot '%s' on '%s'",
2276 ret, name, bdrv_get_device_name(bs));
2277 return ret;
2280 /* restore the VM state */
2281 f = qemu_fopen_bdrv(bs_vm_state, 0);
2282 if (!f) {
2283 error_setg(errp, "Could not open VM state file");
2284 return -EINVAL;
2287 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
2288 mis->from_src_file = f;
2290 aio_context_acquire(aio_context);
2291 ret = qemu_loadvm_state(f);
2292 qemu_fclose(f);
2293 aio_context_release(aio_context);
2295 migration_incoming_state_destroy();
2296 if (ret < 0) {
2297 error_setg(errp, "Error %d while loading VM state", ret);
2298 return ret;
2301 return 0;
2304 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2306 qemu_ram_set_idstr(mr->ram_block,
2307 memory_region_name(mr), dev);
2310 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2312 qemu_ram_unset_idstr(mr->ram_block);
2315 void vmstate_register_ram_global(MemoryRegion *mr)
2317 vmstate_register_ram(mr, NULL);
2320 bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
2322 /* check needed if --only-migratable is specified */
2323 if (!only_migratable) {
2324 return true;
2327 return !(vmsd && vmsd->unmigratable);