migration: add postcopy migration of dirty bitmaps
[qemu/armbru.git] / migration / savevm.c
blobf1a11f742d8ae9665861d8cb3004fef107a200ba
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/xen/xen.h"
32 #include "net/net.h"
33 #include "migration.h"
34 #include "migration/snapshot.h"
35 #include "migration/misc.h"
36 #include "migration/register.h"
37 #include "migration/global_state.h"
38 #include "ram.h"
39 #include "qemu-file-channel.h"
40 #include "qemu-file.h"
41 #include "savevm.h"
42 #include "postcopy-ram.h"
43 #include "qapi/error.h"
44 #include "qapi/qapi-commands-migration.h"
45 #include "qapi/qapi-commands-misc.h"
46 #include "qapi/qmp/qerror.h"
47 #include "qemu/error-report.h"
48 #include "sysemu/cpus.h"
49 #include "exec/memory.h"
50 #include "exec/target_page.h"
51 #include "trace.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 /* Subcommands for QEMU_VM_COMMAND */
68 enum qemu_vm_cmd {
69 MIG_CMD_INVALID = 0, /* Must be 0 */
70 MIG_CMD_OPEN_RETURN_PATH, /* Tell the dest to open the Return path */
71 MIG_CMD_PING, /* Request a PONG on the RP */
73 MIG_CMD_POSTCOPY_ADVISE, /* Prior to any page transfers, just
74 warn we might want to do PC */
75 MIG_CMD_POSTCOPY_LISTEN, /* Start listening for incoming
76 pages as it's running. */
77 MIG_CMD_POSTCOPY_RUN, /* Start execution */
79 MIG_CMD_POSTCOPY_RAM_DISCARD, /* A list of pages to discard that
80 were previously sent during
81 precopy but are dirty. */
82 MIG_CMD_PACKAGED, /* Send a wrapped stream within this stream */
83 MIG_CMD_MAX
86 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
87 static struct mig_cmd_args {
88 ssize_t len; /* -1 = variable */
89 const char *name;
90 } mig_cmd_args[] = {
91 [MIG_CMD_INVALID] = { .len = -1, .name = "INVALID" },
92 [MIG_CMD_OPEN_RETURN_PATH] = { .len = 0, .name = "OPEN_RETURN_PATH" },
93 [MIG_CMD_PING] = { .len = sizeof(uint32_t), .name = "PING" },
94 [MIG_CMD_POSTCOPY_ADVISE] = { .len = -1, .name = "POSTCOPY_ADVISE" },
95 [MIG_CMD_POSTCOPY_LISTEN] = { .len = 0, .name = "POSTCOPY_LISTEN" },
96 [MIG_CMD_POSTCOPY_RUN] = { .len = 0, .name = "POSTCOPY_RUN" },
97 [MIG_CMD_POSTCOPY_RAM_DISCARD] = {
98 .len = -1, .name = "POSTCOPY_RAM_DISCARD" },
99 [MIG_CMD_PACKAGED] = { .len = 4, .name = "PACKAGED" },
100 [MIG_CMD_MAX] = { .len = -1, .name = "MAX" },
103 /* Note for MIG_CMD_POSTCOPY_ADVISE:
104 * The format of arguments is depending on postcopy mode:
105 * - postcopy RAM only
106 * uint64_t host page size
107 * uint64_t taget page size
109 * - postcopy RAM and postcopy dirty bitmaps
110 * format is the same as for postcopy RAM only
112 * - postcopy dirty bitmaps only
113 * Nothing. Command length field is 0.
115 * Be careful: adding a new postcopy entity with some other parameters should
116 * not break format self-description ability. Good way is to introduce some
117 * generic extendable format with an exception for two old entities.
120 static int announce_self_create(uint8_t *buf,
121 uint8_t *mac_addr)
123 /* Ethernet header. */
124 memset(buf, 0xff, 6); /* destination MAC addr */
125 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
126 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
128 /* RARP header. */
129 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
130 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
131 *(buf + 18) = 6; /* hardware addr length (ethernet) */
132 *(buf + 19) = 4; /* protocol addr length (IPv4) */
133 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
134 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
135 memset(buf + 28, 0x00, 4); /* source protocol addr */
136 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
137 memset(buf + 38, 0x00, 4); /* target protocol addr */
139 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
140 memset(buf + 42, 0x00, 18);
142 return 60; /* len (FCS will be added by hardware) */
145 static void qemu_announce_self_iter(NICState *nic, void *opaque)
147 uint8_t buf[60];
148 int len;
150 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
151 len = announce_self_create(buf, nic->conf->macaddr.a);
153 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
157 static void qemu_announce_self_once(void *opaque)
159 static int count = SELF_ANNOUNCE_ROUNDS;
160 QEMUTimer *timer = *(QEMUTimer **)opaque;
162 qemu_foreach_nic(qemu_announce_self_iter, NULL);
164 if (--count) {
165 /* delay 50ms, 150ms, 250ms, ... */
166 timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
167 self_announce_delay(count));
168 } else {
169 timer_del(timer);
170 timer_free(timer);
174 void qemu_announce_self(void)
176 static QEMUTimer *timer;
177 timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
178 qemu_announce_self_once(&timer);
181 /***********************************************************/
182 /* savevm/loadvm support */
184 static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
185 int64_t pos)
187 int ret;
188 QEMUIOVector qiov;
190 qemu_iovec_init_external(&qiov, iov, iovcnt);
191 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
192 if (ret < 0) {
193 return ret;
196 return qiov.size;
199 static ssize_t block_get_buffer(void *opaque, uint8_t *buf, int64_t pos,
200 size_t size)
202 return bdrv_load_vmstate(opaque, buf, pos, size);
205 static int bdrv_fclose(void *opaque)
207 return bdrv_flush(opaque);
210 static const QEMUFileOps bdrv_read_ops = {
211 .get_buffer = block_get_buffer,
212 .close = bdrv_fclose
215 static const QEMUFileOps bdrv_write_ops = {
216 .writev_buffer = block_writev_buffer,
217 .close = bdrv_fclose
220 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
222 if (is_writable) {
223 return qemu_fopen_ops(bs, &bdrv_write_ops);
225 return qemu_fopen_ops(bs, &bdrv_read_ops);
229 /* QEMUFile timer support.
230 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
233 void timer_put(QEMUFile *f, QEMUTimer *ts)
235 uint64_t expire_time;
237 expire_time = timer_expire_time_ns(ts);
238 qemu_put_be64(f, expire_time);
241 void timer_get(QEMUFile *f, QEMUTimer *ts)
243 uint64_t expire_time;
245 expire_time = qemu_get_be64(f);
246 if (expire_time != -1) {
247 timer_mod_ns(ts, expire_time);
248 } else {
249 timer_del(ts);
254 /* VMState timer support.
255 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
258 static int get_timer(QEMUFile *f, void *pv, size_t size, VMStateField *field)
260 QEMUTimer *v = pv;
261 timer_get(f, v);
262 return 0;
265 static int put_timer(QEMUFile *f, void *pv, size_t size, VMStateField *field,
266 QJSON *vmdesc)
268 QEMUTimer *v = pv;
269 timer_put(f, v);
271 return 0;
274 const VMStateInfo vmstate_info_timer = {
275 .name = "timer",
276 .get = get_timer,
277 .put = put_timer,
281 typedef struct CompatEntry {
282 char idstr[256];
283 int instance_id;
284 } CompatEntry;
286 typedef struct SaveStateEntry {
287 QTAILQ_ENTRY(SaveStateEntry) entry;
288 char idstr[256];
289 int instance_id;
290 int alias_id;
291 int version_id;
292 /* version id read from the stream */
293 int load_version_id;
294 int section_id;
295 /* section id read from the stream */
296 int load_section_id;
297 SaveVMHandlers *ops;
298 const VMStateDescription *vmsd;
299 void *opaque;
300 CompatEntry *compat;
301 int is_ram;
302 } SaveStateEntry;
304 typedef struct SaveState {
305 QTAILQ_HEAD(, SaveStateEntry) handlers;
306 int global_section_id;
307 uint32_t len;
308 const char *name;
309 uint32_t target_page_bits;
310 } SaveState;
312 static SaveState savevm_state = {
313 .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
314 .global_section_id = 0,
317 static int configuration_pre_save(void *opaque)
319 SaveState *state = opaque;
320 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
322 state->len = strlen(current_name);
323 state->name = current_name;
324 state->target_page_bits = qemu_target_page_bits();
326 return 0;
329 static int configuration_pre_load(void *opaque)
331 SaveState *state = opaque;
333 /* If there is no target-page-bits subsection it means the source
334 * predates the variable-target-page-bits support and is using the
335 * minimum possible value for this CPU.
337 state->target_page_bits = qemu_target_page_bits_min();
338 return 0;
341 static int configuration_post_load(void *opaque, int version_id)
343 SaveState *state = opaque;
344 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
346 if (strncmp(state->name, current_name, state->len) != 0) {
347 error_report("Machine type received is '%.*s' and local is '%s'",
348 (int) state->len, state->name, current_name);
349 return -EINVAL;
352 if (state->target_page_bits != qemu_target_page_bits()) {
353 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
354 state->target_page_bits, qemu_target_page_bits());
355 return -EINVAL;
358 return 0;
361 /* The target-page-bits subsection is present only if the
362 * target page size is not the same as the default (ie the
363 * minimum page size for a variable-page-size guest CPU).
364 * If it is present then it contains the actual target page
365 * bits for the machine, and migration will fail if the
366 * two ends don't agree about it.
368 static bool vmstate_target_page_bits_needed(void *opaque)
370 return qemu_target_page_bits()
371 > qemu_target_page_bits_min();
374 static const VMStateDescription vmstate_target_page_bits = {
375 .name = "configuration/target-page-bits",
376 .version_id = 1,
377 .minimum_version_id = 1,
378 .needed = vmstate_target_page_bits_needed,
379 .fields = (VMStateField[]) {
380 VMSTATE_UINT32(target_page_bits, SaveState),
381 VMSTATE_END_OF_LIST()
385 static const VMStateDescription vmstate_configuration = {
386 .name = "configuration",
387 .version_id = 1,
388 .pre_load = configuration_pre_load,
389 .post_load = configuration_post_load,
390 .pre_save = configuration_pre_save,
391 .fields = (VMStateField[]) {
392 VMSTATE_UINT32(len, SaveState),
393 VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, len),
394 VMSTATE_END_OF_LIST()
396 .subsections = (const VMStateDescription*[]) {
397 &vmstate_target_page_bits,
398 NULL
402 static void dump_vmstate_vmsd(FILE *out_file,
403 const VMStateDescription *vmsd, int indent,
404 bool is_subsection);
406 static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
407 int indent)
409 fprintf(out_file, "%*s{\n", indent, "");
410 indent += 2;
411 fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
412 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
413 field->version_id);
414 fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
415 field->field_exists ? "true" : "false");
416 fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
417 if (field->vmsd != NULL) {
418 fprintf(out_file, ",\n");
419 dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
421 fprintf(out_file, "\n%*s}", indent - 2, "");
424 static void dump_vmstate_vmss(FILE *out_file,
425 const VMStateDescription **subsection,
426 int indent)
428 if (*subsection != NULL) {
429 dump_vmstate_vmsd(out_file, *subsection, indent, true);
433 static void dump_vmstate_vmsd(FILE *out_file,
434 const VMStateDescription *vmsd, int indent,
435 bool is_subsection)
437 if (is_subsection) {
438 fprintf(out_file, "%*s{\n", indent, "");
439 } else {
440 fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
442 indent += 2;
443 fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
444 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
445 vmsd->version_id);
446 fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
447 vmsd->minimum_version_id);
448 if (vmsd->fields != NULL) {
449 const VMStateField *field = vmsd->fields;
450 bool first;
452 fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
453 first = true;
454 while (field->name != NULL) {
455 if (field->flags & VMS_MUST_EXIST) {
456 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
457 field++;
458 continue;
460 if (!first) {
461 fprintf(out_file, ",\n");
463 dump_vmstate_vmsf(out_file, field, indent + 2);
464 field++;
465 first = false;
467 fprintf(out_file, "\n%*s]", indent, "");
469 if (vmsd->subsections != NULL) {
470 const VMStateDescription **subsection = vmsd->subsections;
471 bool first;
473 fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
474 first = true;
475 while (*subsection != NULL) {
476 if (!first) {
477 fprintf(out_file, ",\n");
479 dump_vmstate_vmss(out_file, subsection, indent + 2);
480 subsection++;
481 first = false;
483 fprintf(out_file, "\n%*s]", indent, "");
485 fprintf(out_file, "\n%*s}", indent - 2, "");
488 static void dump_machine_type(FILE *out_file)
490 MachineClass *mc;
492 mc = MACHINE_GET_CLASS(current_machine);
494 fprintf(out_file, " \"vmschkmachine\": {\n");
495 fprintf(out_file, " \"Name\": \"%s\"\n", mc->name);
496 fprintf(out_file, " },\n");
499 void dump_vmstate_json_to_file(FILE *out_file)
501 GSList *list, *elt;
502 bool first;
504 fprintf(out_file, "{\n");
505 dump_machine_type(out_file);
507 first = true;
508 list = object_class_get_list(TYPE_DEVICE, true);
509 for (elt = list; elt; elt = elt->next) {
510 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
511 TYPE_DEVICE);
512 const char *name;
513 int indent = 2;
515 if (!dc->vmsd) {
516 continue;
519 if (!first) {
520 fprintf(out_file, ",\n");
522 name = object_class_get_name(OBJECT_CLASS(dc));
523 fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
524 indent += 2;
525 fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
526 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
527 dc->vmsd->version_id);
528 fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
529 dc->vmsd->minimum_version_id);
531 dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
533 fprintf(out_file, "\n%*s}", indent - 2, "");
534 first = false;
536 fprintf(out_file, "\n}\n");
537 fclose(out_file);
540 static int calculate_new_instance_id(const char *idstr)
542 SaveStateEntry *se;
543 int instance_id = 0;
545 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
546 if (strcmp(idstr, se->idstr) == 0
547 && instance_id <= se->instance_id) {
548 instance_id = se->instance_id + 1;
551 return instance_id;
554 static int calculate_compat_instance_id(const char *idstr)
556 SaveStateEntry *se;
557 int instance_id = 0;
559 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
560 if (!se->compat) {
561 continue;
564 if (strcmp(idstr, se->compat->idstr) == 0
565 && instance_id <= se->compat->instance_id) {
566 instance_id = se->compat->instance_id + 1;
569 return instance_id;
572 static inline MigrationPriority save_state_priority(SaveStateEntry *se)
574 if (se->vmsd) {
575 return se->vmsd->priority;
577 return MIG_PRI_DEFAULT;
580 static void savevm_state_handler_insert(SaveStateEntry *nse)
582 MigrationPriority priority = save_state_priority(nse);
583 SaveStateEntry *se;
585 assert(priority <= MIG_PRI_MAX);
587 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
588 if (save_state_priority(se) < priority) {
589 break;
593 if (se) {
594 QTAILQ_INSERT_BEFORE(se, nse, entry);
595 } else {
596 QTAILQ_INSERT_TAIL(&savevm_state.handlers, nse, entry);
600 /* TODO: Individual devices generally have very little idea about the rest
601 of the system, so instance_id should be removed/replaced.
602 Meanwhile pass -1 as instance_id if you do not already have a clearly
603 distinguishing id for all instances of your device class. */
604 int register_savevm_live(DeviceState *dev,
605 const char *idstr,
606 int instance_id,
607 int version_id,
608 SaveVMHandlers *ops,
609 void *opaque)
611 SaveStateEntry *se;
613 se = g_new0(SaveStateEntry, 1);
614 se->version_id = version_id;
615 se->section_id = savevm_state.global_section_id++;
616 se->ops = ops;
617 se->opaque = opaque;
618 se->vmsd = NULL;
619 /* if this is a live_savem then set is_ram */
620 if (ops->save_setup != NULL) {
621 se->is_ram = 1;
624 if (dev) {
625 char *id = qdev_get_dev_path(dev);
626 if (id) {
627 if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
628 sizeof(se->idstr)) {
629 error_report("Path too long for VMState (%s)", id);
630 g_free(id);
631 g_free(se);
633 return -1;
635 g_free(id);
637 se->compat = g_new0(CompatEntry, 1);
638 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
639 se->compat->instance_id = instance_id == -1 ?
640 calculate_compat_instance_id(idstr) : instance_id;
641 instance_id = -1;
644 pstrcat(se->idstr, sizeof(se->idstr), idstr);
646 if (instance_id == -1) {
647 se->instance_id = calculate_new_instance_id(se->idstr);
648 } else {
649 se->instance_id = instance_id;
651 assert(!se->compat || se->instance_id == 0);
652 savevm_state_handler_insert(se);
653 return 0;
656 void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
658 SaveStateEntry *se, *new_se;
659 char id[256] = "";
661 if (dev) {
662 char *path = qdev_get_dev_path(dev);
663 if (path) {
664 pstrcpy(id, sizeof(id), path);
665 pstrcat(id, sizeof(id), "/");
666 g_free(path);
669 pstrcat(id, sizeof(id), idstr);
671 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
672 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
673 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
674 g_free(se->compat);
675 g_free(se);
680 int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
681 const VMStateDescription *vmsd,
682 void *opaque, int alias_id,
683 int required_for_version,
684 Error **errp)
686 SaveStateEntry *se;
688 /* If this triggers, alias support can be dropped for the vmsd. */
689 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
691 se = g_new0(SaveStateEntry, 1);
692 se->version_id = vmsd->version_id;
693 se->section_id = savevm_state.global_section_id++;
694 se->opaque = opaque;
695 se->vmsd = vmsd;
696 se->alias_id = alias_id;
698 if (dev) {
699 char *id = qdev_get_dev_path(dev);
700 if (id) {
701 if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
702 sizeof(se->idstr)) {
703 error_setg(errp, "Path too long for VMState (%s)", id);
704 g_free(id);
705 g_free(se);
707 return -1;
709 g_free(id);
711 se->compat = g_new0(CompatEntry, 1);
712 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
713 se->compat->instance_id = instance_id == -1 ?
714 calculate_compat_instance_id(vmsd->name) : instance_id;
715 instance_id = -1;
718 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
720 if (instance_id == -1) {
721 se->instance_id = calculate_new_instance_id(se->idstr);
722 } else {
723 se->instance_id = instance_id;
725 assert(!se->compat || se->instance_id == 0);
726 savevm_state_handler_insert(se);
727 return 0;
730 void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
731 void *opaque)
733 SaveStateEntry *se, *new_se;
735 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
736 if (se->vmsd == vmsd && se->opaque == opaque) {
737 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
738 g_free(se->compat);
739 g_free(se);
744 static int vmstate_load(QEMUFile *f, SaveStateEntry *se)
746 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
747 if (!se->vmsd) { /* Old style */
748 return se->ops->load_state(f, se->opaque, se->load_version_id);
750 return vmstate_load_state(f, se->vmsd, se->opaque, se->load_version_id);
753 static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
755 int64_t old_offset, size;
757 old_offset = qemu_ftell_fast(f);
758 se->ops->save_state(f, se->opaque);
759 size = qemu_ftell_fast(f) - old_offset;
761 if (vmdesc) {
762 json_prop_int(vmdesc, "size", size);
763 json_start_array(vmdesc, "fields");
764 json_start_object(vmdesc, NULL);
765 json_prop_str(vmdesc, "name", "data");
766 json_prop_int(vmdesc, "size", size);
767 json_prop_str(vmdesc, "type", "buffer");
768 json_end_object(vmdesc);
769 json_end_array(vmdesc);
773 static int vmstate_save(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
775 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
776 if (!se->vmsd) {
777 vmstate_save_old_style(f, se, vmdesc);
778 return 0;
780 return vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
784 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
786 static void save_section_header(QEMUFile *f, SaveStateEntry *se,
787 uint8_t section_type)
789 qemu_put_byte(f, section_type);
790 qemu_put_be32(f, se->section_id);
792 if (section_type == QEMU_VM_SECTION_FULL ||
793 section_type == QEMU_VM_SECTION_START) {
794 /* ID string */
795 size_t len = strlen(se->idstr);
796 qemu_put_byte(f, len);
797 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
799 qemu_put_be32(f, se->instance_id);
800 qemu_put_be32(f, se->version_id);
805 * Write a footer onto device sections that catches cases misformatted device
806 * sections.
808 static void save_section_footer(QEMUFile *f, SaveStateEntry *se)
810 if (migrate_get_current()->send_section_footer) {
811 qemu_put_byte(f, QEMU_VM_SECTION_FOOTER);
812 qemu_put_be32(f, se->section_id);
817 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
818 * command and associated data.
820 * @f: File to send command on
821 * @command: Command type to send
822 * @len: Length of associated data
823 * @data: Data associated with command.
825 static void qemu_savevm_command_send(QEMUFile *f,
826 enum qemu_vm_cmd command,
827 uint16_t len,
828 uint8_t *data)
830 trace_savevm_command_send(command, len);
831 qemu_put_byte(f, QEMU_VM_COMMAND);
832 qemu_put_be16(f, (uint16_t)command);
833 qemu_put_be16(f, len);
834 qemu_put_buffer(f, data, len);
835 qemu_fflush(f);
838 void qemu_savevm_send_ping(QEMUFile *f, uint32_t value)
840 uint32_t buf;
842 trace_savevm_send_ping(value);
843 buf = cpu_to_be32(value);
844 qemu_savevm_command_send(f, MIG_CMD_PING, sizeof(value), (uint8_t *)&buf);
847 void qemu_savevm_send_open_return_path(QEMUFile *f)
849 trace_savevm_send_open_return_path();
850 qemu_savevm_command_send(f, MIG_CMD_OPEN_RETURN_PATH, 0, NULL);
853 /* We have a buffer of data to send; we don't want that all to be loaded
854 * by the command itself, so the command contains just the length of the
855 * extra buffer that we then send straight after it.
856 * TODO: Must be a better way to organise that
858 * Returns:
859 * 0 on success
860 * -ve on error
862 int qemu_savevm_send_packaged(QEMUFile *f, const uint8_t *buf, size_t len)
864 uint32_t tmp;
866 if (len > MAX_VM_CMD_PACKAGED_SIZE) {
867 error_report("%s: Unreasonably large packaged state: %zu",
868 __func__, len);
869 return -1;
872 tmp = cpu_to_be32(len);
874 trace_qemu_savevm_send_packaged();
875 qemu_savevm_command_send(f, MIG_CMD_PACKAGED, 4, (uint8_t *)&tmp);
877 qemu_put_buffer(f, buf, len);
879 return 0;
882 /* Send prior to any postcopy transfer */
883 void qemu_savevm_send_postcopy_advise(QEMUFile *f)
885 if (migrate_postcopy_ram()) {
886 uint64_t tmp[2];
887 tmp[0] = cpu_to_be64(ram_pagesize_summary());
888 tmp[1] = cpu_to_be64(qemu_target_page_size());
890 trace_qemu_savevm_send_postcopy_advise();
891 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE,
892 16, (uint8_t *)tmp);
893 } else {
894 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE, 0, NULL);
898 /* Sent prior to starting the destination running in postcopy, discard pages
899 * that have already been sent but redirtied on the source.
900 * CMD_POSTCOPY_RAM_DISCARD consist of:
901 * byte version (0)
902 * byte Length of name field (not including 0)
903 * n x byte RAM block name
904 * byte 0 terminator (just for safety)
905 * n x Byte ranges within the named RAMBlock
906 * be64 Start of the range
907 * be64 Length
909 * name: RAMBlock name that these entries are part of
910 * len: Number of page entries
911 * start_list: 'len' addresses
912 * length_list: 'len' addresses
915 void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name,
916 uint16_t len,
917 uint64_t *start_list,
918 uint64_t *length_list)
920 uint8_t *buf;
921 uint16_t tmplen;
922 uint16_t t;
923 size_t name_len = strlen(name);
925 trace_qemu_savevm_send_postcopy_ram_discard(name, len);
926 assert(name_len < 256);
927 buf = g_malloc0(1 + 1 + name_len + 1 + (8 + 8) * len);
928 buf[0] = postcopy_ram_discard_version;
929 buf[1] = name_len;
930 memcpy(buf + 2, name, name_len);
931 tmplen = 2 + name_len;
932 buf[tmplen++] = '\0';
934 for (t = 0; t < len; t++) {
935 stq_be_p(buf + tmplen, start_list[t]);
936 tmplen += 8;
937 stq_be_p(buf + tmplen, length_list[t]);
938 tmplen += 8;
940 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RAM_DISCARD, tmplen, buf);
941 g_free(buf);
944 /* Get the destination into a state where it can receive postcopy data. */
945 void qemu_savevm_send_postcopy_listen(QEMUFile *f)
947 trace_savevm_send_postcopy_listen();
948 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_LISTEN, 0, NULL);
951 /* Kick the destination into running */
952 void qemu_savevm_send_postcopy_run(QEMUFile *f)
954 trace_savevm_send_postcopy_run();
955 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RUN, 0, NULL);
958 bool qemu_savevm_state_blocked(Error **errp)
960 SaveStateEntry *se;
962 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
963 if (se->vmsd && se->vmsd->unmigratable) {
964 error_setg(errp, "State blocked by non-migratable device '%s'",
965 se->idstr);
966 return true;
969 return false;
972 void qemu_savevm_state_header(QEMUFile *f)
974 trace_savevm_state_header();
975 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
976 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
978 if (migrate_get_current()->send_configuration) {
979 qemu_put_byte(f, QEMU_VM_CONFIGURATION);
980 vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0);
984 void qemu_savevm_state_setup(QEMUFile *f)
986 SaveStateEntry *se;
987 int ret;
989 trace_savevm_state_setup();
990 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
991 if (!se->ops || !se->ops->save_setup) {
992 continue;
994 if (se->ops && se->ops->is_active) {
995 if (!se->ops->is_active(se->opaque)) {
996 continue;
999 save_section_header(f, se, QEMU_VM_SECTION_START);
1001 ret = se->ops->save_setup(f, se->opaque);
1002 save_section_footer(f, se);
1003 if (ret < 0) {
1004 qemu_file_set_error(f, ret);
1005 break;
1011 * this function has three return values:
1012 * negative: there was one error, and we have -errno.
1013 * 0 : We haven't finished, caller have to go again
1014 * 1 : We have finished, we can go to complete phase
1016 int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy)
1018 SaveStateEntry *se;
1019 int ret = 1;
1021 trace_savevm_state_iterate();
1022 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1023 if (!se->ops || !se->ops->save_live_iterate) {
1024 continue;
1026 if (se->ops && se->ops->is_active) {
1027 if (!se->ops->is_active(se->opaque)) {
1028 continue;
1031 if (se->ops && se->ops->is_active_iterate) {
1032 if (!se->ops->is_active_iterate(se->opaque)) {
1033 continue;
1037 * In the postcopy phase, any device that doesn't know how to
1038 * do postcopy should have saved it's state in the _complete
1039 * call that's already run, it might get confused if we call
1040 * iterate afterwards.
1042 if (postcopy &&
1043 !(se->ops->has_postcopy && se->ops->has_postcopy(se->opaque))) {
1044 continue;
1046 if (qemu_file_rate_limit(f)) {
1047 return 0;
1049 trace_savevm_section_start(se->idstr, se->section_id);
1051 save_section_header(f, se, QEMU_VM_SECTION_PART);
1053 ret = se->ops->save_live_iterate(f, se->opaque);
1054 trace_savevm_section_end(se->idstr, se->section_id, ret);
1055 save_section_footer(f, se);
1057 if (ret < 0) {
1058 qemu_file_set_error(f, ret);
1060 if (ret <= 0) {
1061 /* Do not proceed to the next vmstate before this one reported
1062 completion of the current stage. This serializes the migration
1063 and reduces the probability that a faster changing state is
1064 synchronized over and over again. */
1065 break;
1068 return ret;
1071 static bool should_send_vmdesc(void)
1073 MachineState *machine = MACHINE(qdev_get_machine());
1074 bool in_postcopy = migration_in_postcopy();
1075 return !machine->suppress_vmdesc && !in_postcopy;
1079 * Calls the save_live_complete_postcopy methods
1080 * causing the last few pages to be sent immediately and doing any associated
1081 * cleanup.
1082 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1083 * all the other devices, but that happens at the point we switch to postcopy.
1085 void qemu_savevm_state_complete_postcopy(QEMUFile *f)
1087 SaveStateEntry *se;
1088 int ret;
1090 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1091 if (!se->ops || !se->ops->save_live_complete_postcopy) {
1092 continue;
1094 if (se->ops && se->ops->is_active) {
1095 if (!se->ops->is_active(se->opaque)) {
1096 continue;
1099 trace_savevm_section_start(se->idstr, se->section_id);
1100 /* Section type */
1101 qemu_put_byte(f, QEMU_VM_SECTION_END);
1102 qemu_put_be32(f, se->section_id);
1104 ret = se->ops->save_live_complete_postcopy(f, se->opaque);
1105 trace_savevm_section_end(se->idstr, se->section_id, ret);
1106 save_section_footer(f, se);
1107 if (ret < 0) {
1108 qemu_file_set_error(f, ret);
1109 return;
1113 qemu_put_byte(f, QEMU_VM_EOF);
1114 qemu_fflush(f);
1117 int qemu_savevm_state_complete_precopy(QEMUFile *f, bool iterable_only,
1118 bool inactivate_disks)
1120 QJSON *vmdesc;
1121 int vmdesc_len;
1122 SaveStateEntry *se;
1123 int ret;
1124 bool in_postcopy = migration_in_postcopy();
1126 trace_savevm_state_complete_precopy();
1128 cpu_synchronize_all_states();
1130 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1131 if (!se->ops ||
1132 (in_postcopy && se->ops->has_postcopy &&
1133 se->ops->has_postcopy(se->opaque)) ||
1134 (in_postcopy && !iterable_only) ||
1135 !se->ops->save_live_complete_precopy) {
1136 continue;
1139 if (se->ops && se->ops->is_active) {
1140 if (!se->ops->is_active(se->opaque)) {
1141 continue;
1144 trace_savevm_section_start(se->idstr, se->section_id);
1146 save_section_header(f, se, QEMU_VM_SECTION_END);
1148 ret = se->ops->save_live_complete_precopy(f, se->opaque);
1149 trace_savevm_section_end(se->idstr, se->section_id, ret);
1150 save_section_footer(f, se);
1151 if (ret < 0) {
1152 qemu_file_set_error(f, ret);
1153 return -1;
1157 if (iterable_only) {
1158 return 0;
1161 vmdesc = qjson_new();
1162 json_prop_int(vmdesc, "page_size", qemu_target_page_size());
1163 json_start_array(vmdesc, "devices");
1164 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1166 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1167 continue;
1169 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1170 trace_savevm_section_skip(se->idstr, se->section_id);
1171 continue;
1174 trace_savevm_section_start(se->idstr, se->section_id);
1176 json_start_object(vmdesc, NULL);
1177 json_prop_str(vmdesc, "name", se->idstr);
1178 json_prop_int(vmdesc, "instance_id", se->instance_id);
1180 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1181 ret = vmstate_save(f, se, vmdesc);
1182 if (ret) {
1183 qemu_file_set_error(f, ret);
1184 return ret;
1186 trace_savevm_section_end(se->idstr, se->section_id, 0);
1187 save_section_footer(f, se);
1189 json_end_object(vmdesc);
1192 if (inactivate_disks) {
1193 /* Inactivate before sending QEMU_VM_EOF so that the
1194 * bdrv_invalidate_cache_all() on the other end won't fail. */
1195 ret = bdrv_inactivate_all();
1196 if (ret) {
1197 error_report("%s: bdrv_inactivate_all() failed (%d)",
1198 __func__, ret);
1199 qemu_file_set_error(f, ret);
1200 return ret;
1203 if (!in_postcopy) {
1204 /* Postcopy stream will still be going */
1205 qemu_put_byte(f, QEMU_VM_EOF);
1208 json_end_array(vmdesc);
1209 qjson_finish(vmdesc);
1210 vmdesc_len = strlen(qjson_get_str(vmdesc));
1212 if (should_send_vmdesc()) {
1213 qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
1214 qemu_put_be32(f, vmdesc_len);
1215 qemu_put_buffer(f, (uint8_t *)qjson_get_str(vmdesc), vmdesc_len);
1217 qjson_destroy(vmdesc);
1219 qemu_fflush(f);
1220 return 0;
1223 /* Give an estimate of the amount left to be transferred,
1224 * the result is split into the amount for units that can and
1225 * for units that can't do postcopy.
1227 void qemu_savevm_state_pending(QEMUFile *f, uint64_t threshold_size,
1228 uint64_t *res_precopy_only,
1229 uint64_t *res_compatible,
1230 uint64_t *res_postcopy_only)
1232 SaveStateEntry *se;
1234 *res_precopy_only = 0;
1235 *res_compatible = 0;
1236 *res_postcopy_only = 0;
1239 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1240 if (!se->ops || !se->ops->save_live_pending) {
1241 continue;
1243 if (se->ops && se->ops->is_active) {
1244 if (!se->ops->is_active(se->opaque)) {
1245 continue;
1248 se->ops->save_live_pending(f, se->opaque, threshold_size,
1249 res_precopy_only, res_compatible,
1250 res_postcopy_only);
1254 void qemu_savevm_state_cleanup(void)
1256 SaveStateEntry *se;
1258 trace_savevm_state_cleanup();
1259 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1260 if (se->ops && se->ops->save_cleanup) {
1261 se->ops->save_cleanup(se->opaque);
1266 static int qemu_savevm_state(QEMUFile *f, Error **errp)
1268 int ret;
1269 MigrationState *ms = migrate_get_current();
1270 MigrationStatus status;
1272 migrate_init(ms);
1274 ms->to_dst_file = f;
1276 if (migration_is_blocked(errp)) {
1277 ret = -EINVAL;
1278 goto done;
1281 if (migrate_use_block()) {
1282 error_setg(errp, "Block migration and snapshots are incompatible");
1283 ret = -EINVAL;
1284 goto done;
1287 qemu_mutex_unlock_iothread();
1288 qemu_savevm_state_header(f);
1289 qemu_savevm_state_setup(f);
1290 qemu_mutex_lock_iothread();
1292 while (qemu_file_get_error(f) == 0) {
1293 if (qemu_savevm_state_iterate(f, false) > 0) {
1294 break;
1298 ret = qemu_file_get_error(f);
1299 if (ret == 0) {
1300 qemu_savevm_state_complete_precopy(f, false, false);
1301 ret = qemu_file_get_error(f);
1303 qemu_savevm_state_cleanup();
1304 if (ret != 0) {
1305 error_setg_errno(errp, -ret, "Error while writing VM state");
1308 done:
1309 if (ret != 0) {
1310 status = MIGRATION_STATUS_FAILED;
1311 } else {
1312 status = MIGRATION_STATUS_COMPLETED;
1314 migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
1316 /* f is outer parameter, it should not stay in global migration state after
1317 * this function finished */
1318 ms->to_dst_file = NULL;
1320 return ret;
1323 static int qemu_save_device_state(QEMUFile *f)
1325 SaveStateEntry *se;
1327 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1328 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1330 cpu_synchronize_all_states();
1332 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1333 int ret;
1335 if (se->is_ram) {
1336 continue;
1338 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1339 continue;
1341 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1342 continue;
1345 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1347 ret = vmstate_save(f, se, NULL);
1348 if (ret) {
1349 return ret;
1352 save_section_footer(f, se);
1355 qemu_put_byte(f, QEMU_VM_EOF);
1357 return qemu_file_get_error(f);
1360 static SaveStateEntry *find_se(const char *idstr, int instance_id)
1362 SaveStateEntry *se;
1364 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1365 if (!strcmp(se->idstr, idstr) &&
1366 (instance_id == se->instance_id ||
1367 instance_id == se->alias_id))
1368 return se;
1369 /* Migrating from an older version? */
1370 if (strstr(se->idstr, idstr) && se->compat) {
1371 if (!strcmp(se->compat->idstr, idstr) &&
1372 (instance_id == se->compat->instance_id ||
1373 instance_id == se->alias_id))
1374 return se;
1377 return NULL;
1380 enum LoadVMExitCodes {
1381 /* Allow a command to quit all layers of nested loadvm loops */
1382 LOADVM_QUIT = 1,
1385 static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis);
1387 /* ------ incoming postcopy messages ------ */
1388 /* 'advise' arrives before any transfers just to tell us that a postcopy
1389 * *might* happen - it might be skipped if precopy transferred everything
1390 * quickly.
1392 static int loadvm_postcopy_handle_advise(MigrationIncomingState *mis,
1393 uint16_t len)
1395 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1396 uint64_t remote_pagesize_summary, local_pagesize_summary, remote_tps;
1398 trace_loadvm_postcopy_handle_advise();
1399 if (ps != POSTCOPY_INCOMING_NONE) {
1400 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps);
1401 return -1;
1404 switch (len) {
1405 case 0:
1406 if (migrate_postcopy_ram()) {
1407 error_report("RAM postcopy is enabled but have 0 byte advise");
1408 return -EINVAL;
1410 return 0;
1411 case 8 + 8:
1412 if (!migrate_postcopy_ram()) {
1413 error_report("RAM postcopy is disabled but have 16 byte advise");
1414 return -EINVAL;
1416 break;
1417 default:
1418 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len);
1419 return -EINVAL;
1422 if (!postcopy_ram_supported_by_host(mis)) {
1423 postcopy_state_set(POSTCOPY_INCOMING_NONE);
1424 return -1;
1427 remote_pagesize_summary = qemu_get_be64(mis->from_src_file);
1428 local_pagesize_summary = ram_pagesize_summary();
1430 if (remote_pagesize_summary != local_pagesize_summary) {
1432 * This detects two potential causes of mismatch:
1433 * a) A mismatch in host page sizes
1434 * Some combinations of mismatch are probably possible but it gets
1435 * a bit more complicated. In particular we need to place whole
1436 * host pages on the dest at once, and we need to ensure that we
1437 * handle dirtying to make sure we never end up sending part of
1438 * a hostpage on it's own.
1439 * b) The use of different huge page sizes on source/destination
1440 * a more fine grain test is performed during RAM block migration
1441 * but this test here causes a nice early clear failure, and
1442 * also fails when passed to an older qemu that doesn't
1443 * do huge pages.
1445 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1446 " d=%" PRIx64 ")",
1447 remote_pagesize_summary, local_pagesize_summary);
1448 return -1;
1451 remote_tps = qemu_get_be64(mis->from_src_file);
1452 if (remote_tps != qemu_target_page_size()) {
1454 * Again, some differences could be dealt with, but for now keep it
1455 * simple.
1457 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1458 (int)remote_tps, qemu_target_page_size());
1459 return -1;
1462 if (ram_postcopy_incoming_init(mis)) {
1463 return -1;
1466 postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1468 return 0;
1471 /* After postcopy we will be told to throw some pages away since they're
1472 * dirty and will have to be demand fetched. Must happen before CPU is
1473 * started.
1474 * There can be 0..many of these messages, each encoding multiple pages.
1476 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
1477 uint16_t len)
1479 int tmp;
1480 char ramid[256];
1481 PostcopyState ps = postcopy_state_get();
1483 trace_loadvm_postcopy_ram_handle_discard();
1485 switch (ps) {
1486 case POSTCOPY_INCOMING_ADVISE:
1487 /* 1st discard */
1488 tmp = postcopy_ram_prepare_discard(mis);
1489 if (tmp) {
1490 return tmp;
1492 break;
1494 case POSTCOPY_INCOMING_DISCARD:
1495 /* Expected state */
1496 break;
1498 default:
1499 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1500 ps);
1501 return -1;
1503 /* We're expecting a
1504 * Version (0)
1505 * a RAM ID string (length byte, name, 0 term)
1506 * then at least 1 16 byte chunk
1508 if (len < (1 + 1 + 1 + 1 + 2 * 8)) {
1509 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1510 return -1;
1513 tmp = qemu_get_byte(mis->from_src_file);
1514 if (tmp != postcopy_ram_discard_version) {
1515 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp);
1516 return -1;
1519 if (!qemu_get_counted_string(mis->from_src_file, ramid)) {
1520 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1521 return -1;
1523 tmp = qemu_get_byte(mis->from_src_file);
1524 if (tmp != 0) {
1525 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp);
1526 return -1;
1529 len -= 3 + strlen(ramid);
1530 if (len % 16) {
1531 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1532 return -1;
1534 trace_loadvm_postcopy_ram_handle_discard_header(ramid, len);
1535 while (len) {
1536 uint64_t start_addr, block_length;
1537 start_addr = qemu_get_be64(mis->from_src_file);
1538 block_length = qemu_get_be64(mis->from_src_file);
1540 len -= 16;
1541 int ret = ram_discard_range(ramid, start_addr, block_length);
1542 if (ret) {
1543 return ret;
1546 trace_loadvm_postcopy_ram_handle_discard_end();
1548 return 0;
1552 * Triggered by a postcopy_listen command; this thread takes over reading
1553 * the input stream, leaving the main thread free to carry on loading the rest
1554 * of the device state (from RAM).
1555 * (TODO:This could do with being in a postcopy file - but there again it's
1556 * just another input loop, not that postcopy specific)
1558 static void *postcopy_ram_listen_thread(void *opaque)
1560 QEMUFile *f = opaque;
1561 MigrationIncomingState *mis = migration_incoming_get_current();
1562 int load_res;
1564 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
1565 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1566 qemu_sem_post(&mis->listen_thread_sem);
1567 trace_postcopy_ram_listen_thread_start();
1570 * Because we're a thread and not a coroutine we can't yield
1571 * in qemu_file, and thus we must be blocking now.
1573 qemu_file_set_blocking(f, true);
1574 load_res = qemu_loadvm_state_main(f, mis);
1575 /* And non-blocking again so we don't block in any cleanup */
1576 qemu_file_set_blocking(f, false);
1578 trace_postcopy_ram_listen_thread_exit();
1579 if (load_res < 0) {
1580 error_report("%s: loadvm failed: %d", __func__, load_res);
1581 qemu_file_set_error(f, load_res);
1582 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1583 MIGRATION_STATUS_FAILED);
1584 } else {
1586 * This looks good, but it's possible that the device loading in the
1587 * main thread hasn't finished yet, and so we might not be in 'RUN'
1588 * state yet; wait for the end of the main thread.
1590 qemu_event_wait(&mis->main_thread_load_event);
1592 postcopy_ram_incoming_cleanup(mis);
1594 if (load_res < 0) {
1596 * If something went wrong then we have a bad state so exit;
1597 * depending how far we got it might be possible at this point
1598 * to leave the guest running and fire MCEs for pages that never
1599 * arrived as a desperate recovery step.
1601 exit(EXIT_FAILURE);
1604 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1605 MIGRATION_STATUS_COMPLETED);
1607 * If everything has worked fine, then the main thread has waited
1608 * for us to start, and we're the last use of the mis.
1609 * (If something broke then qemu will have to exit anyway since it's
1610 * got a bad migration state).
1612 migration_incoming_state_destroy();
1613 qemu_loadvm_state_cleanup();
1615 return NULL;
1618 /* After this message we must be able to immediately receive postcopy data */
1619 static int loadvm_postcopy_handle_listen(MigrationIncomingState *mis)
1621 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_LISTENING);
1622 trace_loadvm_postcopy_handle_listen();
1623 if (ps != POSTCOPY_INCOMING_ADVISE && ps != POSTCOPY_INCOMING_DISCARD) {
1624 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps);
1625 return -1;
1627 if (ps == POSTCOPY_INCOMING_ADVISE) {
1629 * A rare case, we entered listen without having to do any discards,
1630 * so do the setup that's normally done at the time of the 1st discard.
1632 if (migrate_postcopy_ram()) {
1633 postcopy_ram_prepare_discard(mis);
1638 * Sensitise RAM - can now generate requests for blocks that don't exist
1639 * However, at this point the CPU shouldn't be running, and the IO
1640 * shouldn't be doing anything yet so don't actually expect requests
1642 if (migrate_postcopy_ram()) {
1643 if (postcopy_ram_enable_notify(mis)) {
1644 return -1;
1648 if (mis->have_listen_thread) {
1649 error_report("CMD_POSTCOPY_RAM_LISTEN already has a listen thread");
1650 return -1;
1653 mis->have_listen_thread = true;
1654 /* Start up the listening thread and wait for it to signal ready */
1655 qemu_sem_init(&mis->listen_thread_sem, 0);
1656 qemu_thread_create(&mis->listen_thread, "postcopy/listen",
1657 postcopy_ram_listen_thread, mis->from_src_file,
1658 QEMU_THREAD_DETACHED);
1659 qemu_sem_wait(&mis->listen_thread_sem);
1660 qemu_sem_destroy(&mis->listen_thread_sem);
1662 return 0;
1666 typedef struct {
1667 QEMUBH *bh;
1668 } HandleRunBhData;
1670 static void loadvm_postcopy_handle_run_bh(void *opaque)
1672 Error *local_err = NULL;
1673 HandleRunBhData *data = opaque;
1675 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
1676 * in migration.c
1678 cpu_synchronize_all_post_init();
1680 qemu_announce_self();
1682 /* Make sure all file formats flush their mutable metadata.
1683 * If we get an error here, just don't restart the VM yet. */
1684 bdrv_invalidate_cache_all(&local_err);
1685 if (local_err) {
1686 error_report_err(local_err);
1687 local_err = NULL;
1688 autostart = false;
1691 trace_loadvm_postcopy_handle_run_cpu_sync();
1692 cpu_synchronize_all_post_init();
1694 trace_loadvm_postcopy_handle_run_vmstart();
1696 dirty_bitmap_mig_before_vm_start();
1698 if (autostart) {
1699 /* Hold onto your hats, starting the CPU */
1700 vm_start();
1701 } else {
1702 /* leave it paused and let management decide when to start the CPU */
1703 runstate_set(RUN_STATE_PAUSED);
1706 qemu_bh_delete(data->bh);
1707 g_free(data);
1710 /* After all discards we can start running and asking for pages */
1711 static int loadvm_postcopy_handle_run(MigrationIncomingState *mis)
1713 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_RUNNING);
1714 HandleRunBhData *data;
1716 trace_loadvm_postcopy_handle_run();
1717 if (ps != POSTCOPY_INCOMING_LISTENING) {
1718 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps);
1719 return -1;
1722 data = g_new(HandleRunBhData, 1);
1723 data->bh = qemu_bh_new(loadvm_postcopy_handle_run_bh, data);
1724 qemu_bh_schedule(data->bh);
1726 /* We need to finish reading the stream from the package
1727 * and also stop reading anything more from the stream that loaded the
1728 * package (since it's now being read by the listener thread).
1729 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
1731 return LOADVM_QUIT;
1735 * Immediately following this command is a blob of data containing an embedded
1736 * chunk of migration stream; read it and load it.
1738 * @mis: Incoming state
1739 * @length: Length of packaged data to read
1741 * Returns: Negative values on error
1744 static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
1746 int ret;
1747 size_t length;
1748 QIOChannelBuffer *bioc;
1750 length = qemu_get_be32(mis->from_src_file);
1751 trace_loadvm_handle_cmd_packaged(length);
1753 if (length > MAX_VM_CMD_PACKAGED_SIZE) {
1754 error_report("Unreasonably large packaged state: %zu", length);
1755 return -1;
1758 bioc = qio_channel_buffer_new(length);
1759 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-loadvm-buffer");
1760 ret = qemu_get_buffer(mis->from_src_file,
1761 bioc->data,
1762 length);
1763 if (ret != length) {
1764 object_unref(OBJECT(bioc));
1765 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
1766 ret, length);
1767 return (ret < 0) ? ret : -EAGAIN;
1769 bioc->usage += length;
1770 trace_loadvm_handle_cmd_packaged_received(ret);
1772 QEMUFile *packf = qemu_fopen_channel_input(QIO_CHANNEL(bioc));
1774 ret = qemu_loadvm_state_main(packf, mis);
1775 trace_loadvm_handle_cmd_packaged_main(ret);
1776 qemu_fclose(packf);
1777 object_unref(OBJECT(bioc));
1779 return ret;
1783 * Process an incoming 'QEMU_VM_COMMAND'
1784 * 0 just a normal return
1785 * LOADVM_QUIT All good, but exit the loop
1786 * <0 Error
1788 static int loadvm_process_command(QEMUFile *f)
1790 MigrationIncomingState *mis = migration_incoming_get_current();
1791 uint16_t cmd;
1792 uint16_t len;
1793 uint32_t tmp32;
1795 cmd = qemu_get_be16(f);
1796 len = qemu_get_be16(f);
1798 /* Check validity before continue processing of cmds */
1799 if (qemu_file_get_error(f)) {
1800 return qemu_file_get_error(f);
1803 trace_loadvm_process_command(cmd, len);
1804 if (cmd >= MIG_CMD_MAX || cmd == MIG_CMD_INVALID) {
1805 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd, len);
1806 return -EINVAL;
1809 if (mig_cmd_args[cmd].len != -1 && mig_cmd_args[cmd].len != len) {
1810 error_report("%s received with bad length - expecting %zu, got %d",
1811 mig_cmd_args[cmd].name,
1812 (size_t)mig_cmd_args[cmd].len, len);
1813 return -ERANGE;
1816 switch (cmd) {
1817 case MIG_CMD_OPEN_RETURN_PATH:
1818 if (mis->to_src_file) {
1819 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
1820 /* Not really a problem, so don't give up */
1821 return 0;
1823 mis->to_src_file = qemu_file_get_return_path(f);
1824 if (!mis->to_src_file) {
1825 error_report("CMD_OPEN_RETURN_PATH failed");
1826 return -1;
1828 break;
1830 case MIG_CMD_PING:
1831 tmp32 = qemu_get_be32(f);
1832 trace_loadvm_process_command_ping(tmp32);
1833 if (!mis->to_src_file) {
1834 error_report("CMD_PING (0x%x) received with no return path",
1835 tmp32);
1836 return -1;
1838 migrate_send_rp_pong(mis, tmp32);
1839 break;
1841 case MIG_CMD_PACKAGED:
1842 return loadvm_handle_cmd_packaged(mis);
1844 case MIG_CMD_POSTCOPY_ADVISE:
1845 return loadvm_postcopy_handle_advise(mis, len);
1847 case MIG_CMD_POSTCOPY_LISTEN:
1848 return loadvm_postcopy_handle_listen(mis);
1850 case MIG_CMD_POSTCOPY_RUN:
1851 return loadvm_postcopy_handle_run(mis);
1853 case MIG_CMD_POSTCOPY_RAM_DISCARD:
1854 return loadvm_postcopy_ram_handle_discard(mis, len);
1857 return 0;
1861 * Read a footer off the wire and check that it matches the expected section
1863 * Returns: true if the footer was good
1864 * false if there is a problem (and calls error_report to say why)
1866 static bool check_section_footer(QEMUFile *f, SaveStateEntry *se)
1868 int ret;
1869 uint8_t read_mark;
1870 uint32_t read_section_id;
1872 if (!migrate_get_current()->send_section_footer) {
1873 /* No footer to check */
1874 return true;
1877 read_mark = qemu_get_byte(f);
1879 ret = qemu_file_get_error(f);
1880 if (ret) {
1881 error_report("%s: Read section footer failed: %d",
1882 __func__, ret);
1883 return false;
1886 if (read_mark != QEMU_VM_SECTION_FOOTER) {
1887 error_report("Missing section footer for %s", se->idstr);
1888 return false;
1891 read_section_id = qemu_get_be32(f);
1892 if (read_section_id != se->load_section_id) {
1893 error_report("Mismatched section id in footer for %s -"
1894 " read 0x%x expected 0x%x",
1895 se->idstr, read_section_id, se->load_section_id);
1896 return false;
1899 /* All good */
1900 return true;
1903 static int
1904 qemu_loadvm_section_start_full(QEMUFile *f, MigrationIncomingState *mis)
1906 uint32_t instance_id, version_id, section_id;
1907 SaveStateEntry *se;
1908 char idstr[256];
1909 int ret;
1911 /* Read section start */
1912 section_id = qemu_get_be32(f);
1913 if (!qemu_get_counted_string(f, idstr)) {
1914 error_report("Unable to read ID string for section %u",
1915 section_id);
1916 return -EINVAL;
1918 instance_id = qemu_get_be32(f);
1919 version_id = qemu_get_be32(f);
1921 ret = qemu_file_get_error(f);
1922 if (ret) {
1923 error_report("%s: Failed to read instance/version ID: %d",
1924 __func__, ret);
1925 return ret;
1928 trace_qemu_loadvm_state_section_startfull(section_id, idstr,
1929 instance_id, version_id);
1930 /* Find savevm section */
1931 se = find_se(idstr, instance_id);
1932 if (se == NULL) {
1933 error_report("Unknown savevm section or instance '%s' %d",
1934 idstr, instance_id);
1935 return -EINVAL;
1938 /* Validate version */
1939 if (version_id > se->version_id) {
1940 error_report("savevm: unsupported version %d for '%s' v%d",
1941 version_id, idstr, se->version_id);
1942 return -EINVAL;
1944 se->load_version_id = version_id;
1945 se->load_section_id = section_id;
1947 /* Validate if it is a device's state */
1948 if (xen_enabled() && se->is_ram) {
1949 error_report("loadvm: %s RAM loading not allowed on Xen", idstr);
1950 return -EINVAL;
1953 ret = vmstate_load(f, se);
1954 if (ret < 0) {
1955 error_report("error while loading state for instance 0x%x of"
1956 " device '%s'", instance_id, idstr);
1957 return ret;
1959 if (!check_section_footer(f, se)) {
1960 return -EINVAL;
1963 return 0;
1966 static int
1967 qemu_loadvm_section_part_end(QEMUFile *f, MigrationIncomingState *mis)
1969 uint32_t section_id;
1970 SaveStateEntry *se;
1971 int ret;
1973 section_id = qemu_get_be32(f);
1975 ret = qemu_file_get_error(f);
1976 if (ret) {
1977 error_report("%s: Failed to read section ID: %d",
1978 __func__, ret);
1979 return ret;
1982 trace_qemu_loadvm_state_section_partend(section_id);
1983 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1984 if (se->load_section_id == section_id) {
1985 break;
1988 if (se == NULL) {
1989 error_report("Unknown savevm section %d", section_id);
1990 return -EINVAL;
1993 ret = vmstate_load(f, se);
1994 if (ret < 0) {
1995 error_report("error while loading state section id %d(%s)",
1996 section_id, se->idstr);
1997 return ret;
1999 if (!check_section_footer(f, se)) {
2000 return -EINVAL;
2003 return 0;
2006 static int qemu_loadvm_state_setup(QEMUFile *f)
2008 SaveStateEntry *se;
2009 int ret;
2011 trace_loadvm_state_setup();
2012 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2013 if (!se->ops || !se->ops->load_setup) {
2014 continue;
2016 if (se->ops && se->ops->is_active) {
2017 if (!se->ops->is_active(se->opaque)) {
2018 continue;
2022 ret = se->ops->load_setup(f, se->opaque);
2023 if (ret < 0) {
2024 qemu_file_set_error(f, ret);
2025 error_report("Load state of device %s failed", se->idstr);
2026 return ret;
2029 return 0;
2032 void qemu_loadvm_state_cleanup(void)
2034 SaveStateEntry *se;
2036 trace_loadvm_state_cleanup();
2037 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2038 if (se->ops && se->ops->load_cleanup) {
2039 se->ops->load_cleanup(se->opaque);
2044 static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
2046 uint8_t section_type;
2047 int ret = 0;
2049 while (true) {
2050 section_type = qemu_get_byte(f);
2052 if (qemu_file_get_error(f)) {
2053 ret = qemu_file_get_error(f);
2054 break;
2057 trace_qemu_loadvm_state_section(section_type);
2058 switch (section_type) {
2059 case QEMU_VM_SECTION_START:
2060 case QEMU_VM_SECTION_FULL:
2061 ret = qemu_loadvm_section_start_full(f, mis);
2062 if (ret < 0) {
2063 goto out;
2065 break;
2066 case QEMU_VM_SECTION_PART:
2067 case QEMU_VM_SECTION_END:
2068 ret = qemu_loadvm_section_part_end(f, mis);
2069 if (ret < 0) {
2070 goto out;
2072 break;
2073 case QEMU_VM_COMMAND:
2074 ret = loadvm_process_command(f);
2075 trace_qemu_loadvm_state_section_command(ret);
2076 if ((ret < 0) || (ret & LOADVM_QUIT)) {
2077 goto out;
2079 break;
2080 case QEMU_VM_EOF:
2081 /* This is the end of migration */
2082 goto out;
2083 default:
2084 error_report("Unknown savevm section type %d", section_type);
2085 ret = -EINVAL;
2086 goto out;
2090 out:
2091 if (ret < 0) {
2092 qemu_file_set_error(f, ret);
2094 return ret;
2097 int qemu_loadvm_state(QEMUFile *f)
2099 MigrationIncomingState *mis = migration_incoming_get_current();
2100 Error *local_err = NULL;
2101 unsigned int v;
2102 int ret;
2104 if (qemu_savevm_state_blocked(&local_err)) {
2105 error_report_err(local_err);
2106 return -EINVAL;
2109 v = qemu_get_be32(f);
2110 if (v != QEMU_VM_FILE_MAGIC) {
2111 error_report("Not a migration stream");
2112 return -EINVAL;
2115 v = qemu_get_be32(f);
2116 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
2117 error_report("SaveVM v2 format is obsolete and don't work anymore");
2118 return -ENOTSUP;
2120 if (v != QEMU_VM_FILE_VERSION) {
2121 error_report("Unsupported migration stream version");
2122 return -ENOTSUP;
2125 if (qemu_loadvm_state_setup(f) != 0) {
2126 return -EINVAL;
2129 if (migrate_get_current()->send_configuration) {
2130 if (qemu_get_byte(f) != QEMU_VM_CONFIGURATION) {
2131 error_report("Configuration section missing");
2132 return -EINVAL;
2134 ret = vmstate_load_state(f, &vmstate_configuration, &savevm_state, 0);
2136 if (ret) {
2137 return ret;
2141 cpu_synchronize_all_pre_loadvm();
2143 ret = qemu_loadvm_state_main(f, mis);
2144 qemu_event_set(&mis->main_thread_load_event);
2146 trace_qemu_loadvm_state_post_main(ret);
2148 if (mis->have_listen_thread) {
2149 /* Listen thread still going, can't clean up yet */
2150 return ret;
2153 if (ret == 0) {
2154 ret = qemu_file_get_error(f);
2158 * Try to read in the VMDESC section as well, so that dumping tools that
2159 * intercept our migration stream have the chance to see it.
2162 /* We've got to be careful; if we don't read the data and just shut the fd
2163 * then the sender can error if we close while it's still sending.
2164 * We also mustn't read data that isn't there; some transports (RDMA)
2165 * will stall waiting for that data when the source has already closed.
2167 if (ret == 0 && should_send_vmdesc()) {
2168 uint8_t *buf;
2169 uint32_t size;
2170 uint8_t section_type = qemu_get_byte(f);
2172 if (section_type != QEMU_VM_VMDESCRIPTION) {
2173 error_report("Expected vmdescription section, but got %d",
2174 section_type);
2176 * It doesn't seem worth failing at this point since
2177 * we apparently have an otherwise valid VM state
2179 } else {
2180 buf = g_malloc(0x1000);
2181 size = qemu_get_be32(f);
2183 while (size > 0) {
2184 uint32_t read_chunk = MIN(size, 0x1000);
2185 qemu_get_buffer(f, buf, read_chunk);
2186 size -= read_chunk;
2188 g_free(buf);
2192 qemu_loadvm_state_cleanup();
2193 cpu_synchronize_all_post_init();
2195 return ret;
2198 int save_snapshot(const char *name, Error **errp)
2200 BlockDriverState *bs, *bs1;
2201 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
2202 int ret = -1;
2203 QEMUFile *f;
2204 int saved_vm_running;
2205 uint64_t vm_state_size;
2206 qemu_timeval tv;
2207 struct tm tm;
2208 AioContext *aio_context;
2210 if (!bdrv_all_can_snapshot(&bs)) {
2211 error_setg(errp, "Device '%s' is writable but does not support "
2212 "snapshots", bdrv_get_device_name(bs));
2213 return ret;
2216 /* Delete old snapshots of the same name */
2217 if (name) {
2218 ret = bdrv_all_delete_snapshot(name, &bs1, errp);
2219 if (ret < 0) {
2220 error_prepend(errp, "Error while deleting snapshot on device "
2221 "'%s': ", bdrv_get_device_name(bs1));
2222 return ret;
2226 bs = bdrv_all_find_vmstate_bs();
2227 if (bs == NULL) {
2228 error_setg(errp, "No block device can accept snapshots");
2229 return ret;
2231 aio_context = bdrv_get_aio_context(bs);
2233 saved_vm_running = runstate_is_running();
2235 ret = global_state_store();
2236 if (ret) {
2237 error_setg(errp, "Error saving global state");
2238 return ret;
2240 vm_stop(RUN_STATE_SAVE_VM);
2242 bdrv_drain_all_begin();
2244 aio_context_acquire(aio_context);
2246 memset(sn, 0, sizeof(*sn));
2248 /* fill auxiliary fields */
2249 qemu_gettimeofday(&tv);
2250 sn->date_sec = tv.tv_sec;
2251 sn->date_nsec = tv.tv_usec * 1000;
2252 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
2254 if (name) {
2255 ret = bdrv_snapshot_find(bs, old_sn, name);
2256 if (ret >= 0) {
2257 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2258 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2259 } else {
2260 pstrcpy(sn->name, sizeof(sn->name), name);
2262 } else {
2263 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2264 localtime_r((const time_t *)&tv.tv_sec, &tm);
2265 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2268 /* save the VM state */
2269 f = qemu_fopen_bdrv(bs, 1);
2270 if (!f) {
2271 error_setg(errp, "Could not open VM state file");
2272 goto the_end;
2274 ret = qemu_savevm_state(f, errp);
2275 vm_state_size = qemu_ftell(f);
2276 qemu_fclose(f);
2277 if (ret < 0) {
2278 goto the_end;
2281 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
2282 * for itself. BDRV_POLL_WHILE() does not support nested locking because
2283 * it only releases the lock once. Therefore synchronous I/O will deadlock
2284 * unless we release the AioContext before bdrv_all_create_snapshot().
2286 aio_context_release(aio_context);
2287 aio_context = NULL;
2289 ret = bdrv_all_create_snapshot(sn, bs, vm_state_size, &bs);
2290 if (ret < 0) {
2291 error_setg(errp, "Error while creating snapshot on '%s'",
2292 bdrv_get_device_name(bs));
2293 goto the_end;
2296 ret = 0;
2298 the_end:
2299 if (aio_context) {
2300 aio_context_release(aio_context);
2303 bdrv_drain_all_end();
2305 if (saved_vm_running) {
2306 vm_start();
2308 return ret;
2311 void qmp_xen_save_devices_state(const char *filename, bool has_live, bool live,
2312 Error **errp)
2314 QEMUFile *f;
2315 QIOChannelFile *ioc;
2316 int saved_vm_running;
2317 int ret;
2319 if (!has_live) {
2320 /* live default to true so old version of Xen tool stack can have a
2321 * successfull live migration */
2322 live = true;
2325 saved_vm_running = runstate_is_running();
2326 vm_stop(RUN_STATE_SAVE_VM);
2327 global_state_store_running();
2329 ioc = qio_channel_file_new_path(filename, O_WRONLY | O_CREAT, 0660, errp);
2330 if (!ioc) {
2331 goto the_end;
2333 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-save-state");
2334 f = qemu_fopen_channel_output(QIO_CHANNEL(ioc));
2335 object_unref(OBJECT(ioc));
2336 ret = qemu_save_device_state(f);
2337 if (ret < 0 || qemu_fclose(f) < 0) {
2338 error_setg(errp, QERR_IO_ERROR);
2339 } else {
2340 /* libxl calls the QMP command "stop" before calling
2341 * "xen-save-devices-state" and in case of migration failure, libxl
2342 * would call "cont".
2343 * So call bdrv_inactivate_all (release locks) here to let the other
2344 * side of the migration take controle of the images.
2346 if (live && !saved_vm_running) {
2347 ret = bdrv_inactivate_all();
2348 if (ret) {
2349 error_setg(errp, "%s: bdrv_inactivate_all() failed (%d)",
2350 __func__, ret);
2355 the_end:
2356 if (saved_vm_running) {
2357 vm_start();
2361 void qmp_xen_load_devices_state(const char *filename, Error **errp)
2363 QEMUFile *f;
2364 QIOChannelFile *ioc;
2365 int ret;
2367 /* Guest must be paused before loading the device state; the RAM state
2368 * will already have been loaded by xc
2370 if (runstate_is_running()) {
2371 error_setg(errp, "Cannot update device state while vm is running");
2372 return;
2374 vm_stop(RUN_STATE_RESTORE_VM);
2376 ioc = qio_channel_file_new_path(filename, O_RDONLY | O_BINARY, 0, errp);
2377 if (!ioc) {
2378 return;
2380 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-load-state");
2381 f = qemu_fopen_channel_input(QIO_CHANNEL(ioc));
2382 object_unref(OBJECT(ioc));
2384 ret = qemu_loadvm_state(f);
2385 qemu_fclose(f);
2386 if (ret < 0) {
2387 error_setg(errp, QERR_IO_ERROR);
2389 migration_incoming_state_destroy();
2392 int load_snapshot(const char *name, Error **errp)
2394 BlockDriverState *bs, *bs_vm_state;
2395 QEMUSnapshotInfo sn;
2396 QEMUFile *f;
2397 int ret;
2398 AioContext *aio_context;
2399 MigrationIncomingState *mis = migration_incoming_get_current();
2401 if (!bdrv_all_can_snapshot(&bs)) {
2402 error_setg(errp,
2403 "Device '%s' is writable but does not support snapshots",
2404 bdrv_get_device_name(bs));
2405 return -ENOTSUP;
2407 ret = bdrv_all_find_snapshot(name, &bs);
2408 if (ret < 0) {
2409 error_setg(errp,
2410 "Device '%s' does not have the requested snapshot '%s'",
2411 bdrv_get_device_name(bs), name);
2412 return ret;
2415 bs_vm_state = bdrv_all_find_vmstate_bs();
2416 if (!bs_vm_state) {
2417 error_setg(errp, "No block device supports snapshots");
2418 return -ENOTSUP;
2420 aio_context = bdrv_get_aio_context(bs_vm_state);
2422 /* Don't even try to load empty VM states */
2423 aio_context_acquire(aio_context);
2424 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2425 aio_context_release(aio_context);
2426 if (ret < 0) {
2427 return ret;
2428 } else if (sn.vm_state_size == 0) {
2429 error_setg(errp, "This is a disk-only snapshot. Revert to it "
2430 " offline using qemu-img");
2431 return -EINVAL;
2434 /* Flush all IO requests so they don't interfere with the new state. */
2435 bdrv_drain_all_begin();
2437 ret = bdrv_all_goto_snapshot(name, &bs, errp);
2438 if (ret < 0) {
2439 error_prepend(errp, "Could not load snapshot '%s' on '%s': ",
2440 name, bdrv_get_device_name(bs));
2441 goto err_drain;
2444 /* restore the VM state */
2445 f = qemu_fopen_bdrv(bs_vm_state, 0);
2446 if (!f) {
2447 error_setg(errp, "Could not open VM state file");
2448 ret = -EINVAL;
2449 goto err_drain;
2452 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
2453 mis->from_src_file = f;
2455 aio_context_acquire(aio_context);
2456 ret = qemu_loadvm_state(f);
2457 migration_incoming_state_destroy();
2458 aio_context_release(aio_context);
2460 bdrv_drain_all_end();
2462 if (ret < 0) {
2463 error_setg(errp, "Error %d while loading VM state", ret);
2464 return ret;
2467 return 0;
2469 err_drain:
2470 bdrv_drain_all_end();
2471 return ret;
2474 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2476 qemu_ram_set_idstr(mr->ram_block,
2477 memory_region_name(mr), dev);
2480 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2482 qemu_ram_unset_idstr(mr->ram_block);
2485 void vmstate_register_ram_global(MemoryRegion *mr)
2487 vmstate_register_ram(mr, NULL);
2490 bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
2492 /* check needed if --only-migratable is specified */
2493 if (!migrate_get_current()->only_migratable) {
2494 return true;
2497 return !(vmsd && vmsd->unmigratable);