migration: new message MIG_RP_MSG_RESUME_ACK
[qemu/ar7.git] / migration / savevm.c
blob6a2d77cbf3396c139a665f2e63002c55a32f0d99
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"
57 #include "sysemu/replay.h"
59 #ifndef ETH_P_RARP
60 #define ETH_P_RARP 0x8035
61 #endif
62 #define ARP_HTYPE_ETH 0x0001
63 #define ARP_PTYPE_IP 0x0800
64 #define ARP_OP_REQUEST_REV 0x3
66 const unsigned int postcopy_ram_discard_version = 0;
68 /* Subcommands for QEMU_VM_COMMAND */
69 enum qemu_vm_cmd {
70 MIG_CMD_INVALID = 0, /* Must be 0 */
71 MIG_CMD_OPEN_RETURN_PATH, /* Tell the dest to open the Return path */
72 MIG_CMD_PING, /* Request a PONG on the RP */
74 MIG_CMD_POSTCOPY_ADVISE, /* Prior to any page transfers, just
75 warn we might want to do PC */
76 MIG_CMD_POSTCOPY_LISTEN, /* Start listening for incoming
77 pages as it's running. */
78 MIG_CMD_POSTCOPY_RUN, /* Start execution */
80 MIG_CMD_POSTCOPY_RAM_DISCARD, /* A list of pages to discard that
81 were previously sent during
82 precopy but are dirty. */
83 MIG_CMD_POSTCOPY_RESUME, /* resume postcopy on dest */
84 MIG_CMD_PACKAGED, /* Send a wrapped stream within this stream */
85 MIG_CMD_RECV_BITMAP, /* Request for recved bitmap on dst */
86 MIG_CMD_MAX
89 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
90 static struct mig_cmd_args {
91 ssize_t len; /* -1 = variable */
92 const char *name;
93 } mig_cmd_args[] = {
94 [MIG_CMD_INVALID] = { .len = -1, .name = "INVALID" },
95 [MIG_CMD_OPEN_RETURN_PATH] = { .len = 0, .name = "OPEN_RETURN_PATH" },
96 [MIG_CMD_PING] = { .len = sizeof(uint32_t), .name = "PING" },
97 [MIG_CMD_POSTCOPY_ADVISE] = { .len = -1, .name = "POSTCOPY_ADVISE" },
98 [MIG_CMD_POSTCOPY_LISTEN] = { .len = 0, .name = "POSTCOPY_LISTEN" },
99 [MIG_CMD_POSTCOPY_RUN] = { .len = 0, .name = "POSTCOPY_RUN" },
100 [MIG_CMD_POSTCOPY_RAM_DISCARD] = {
101 .len = -1, .name = "POSTCOPY_RAM_DISCARD" },
102 [MIG_CMD_POSTCOPY_RESUME] = { .len = 0, .name = "POSTCOPY_RESUME" },
103 [MIG_CMD_PACKAGED] = { .len = 4, .name = "PACKAGED" },
104 [MIG_CMD_RECV_BITMAP] = { .len = -1, .name = "RECV_BITMAP" },
105 [MIG_CMD_MAX] = { .len = -1, .name = "MAX" },
108 /* Note for MIG_CMD_POSTCOPY_ADVISE:
109 * The format of arguments is depending on postcopy mode:
110 * - postcopy RAM only
111 * uint64_t host page size
112 * uint64_t taget page size
114 * - postcopy RAM and postcopy dirty bitmaps
115 * format is the same as for postcopy RAM only
117 * - postcopy dirty bitmaps only
118 * Nothing. Command length field is 0.
120 * Be careful: adding a new postcopy entity with some other parameters should
121 * not break format self-description ability. Good way is to introduce some
122 * generic extendable format with an exception for two old entities.
125 static int announce_self_create(uint8_t *buf,
126 uint8_t *mac_addr)
128 /* Ethernet header. */
129 memset(buf, 0xff, 6); /* destination MAC addr */
130 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
131 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
133 /* RARP header. */
134 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
135 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
136 *(buf + 18) = 6; /* hardware addr length (ethernet) */
137 *(buf + 19) = 4; /* protocol addr length (IPv4) */
138 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
139 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
140 memset(buf + 28, 0x00, 4); /* source protocol addr */
141 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
142 memset(buf + 38, 0x00, 4); /* target protocol addr */
144 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
145 memset(buf + 42, 0x00, 18);
147 return 60; /* len (FCS will be added by hardware) */
150 static void qemu_announce_self_iter(NICState *nic, void *opaque)
152 uint8_t buf[60];
153 int len;
155 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
156 len = announce_self_create(buf, nic->conf->macaddr.a);
158 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
162 static void qemu_announce_self_once(void *opaque)
164 static int count = SELF_ANNOUNCE_ROUNDS;
165 QEMUTimer *timer = *(QEMUTimer **)opaque;
167 qemu_foreach_nic(qemu_announce_self_iter, NULL);
169 if (--count) {
170 /* delay 50ms, 150ms, 250ms, ... */
171 timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
172 self_announce_delay(count));
173 } else {
174 timer_del(timer);
175 timer_free(timer);
179 void qemu_announce_self(void)
181 static QEMUTimer *timer;
182 timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
183 qemu_announce_self_once(&timer);
186 /***********************************************************/
187 /* savevm/loadvm support */
189 static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
190 int64_t pos)
192 int ret;
193 QEMUIOVector qiov;
195 qemu_iovec_init_external(&qiov, iov, iovcnt);
196 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
197 if (ret < 0) {
198 return ret;
201 return qiov.size;
204 static ssize_t block_get_buffer(void *opaque, uint8_t *buf, int64_t pos,
205 size_t size)
207 return bdrv_load_vmstate(opaque, buf, pos, size);
210 static int bdrv_fclose(void *opaque)
212 return bdrv_flush(opaque);
215 static const QEMUFileOps bdrv_read_ops = {
216 .get_buffer = block_get_buffer,
217 .close = bdrv_fclose
220 static const QEMUFileOps bdrv_write_ops = {
221 .writev_buffer = block_writev_buffer,
222 .close = bdrv_fclose
225 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
227 if (is_writable) {
228 return qemu_fopen_ops(bs, &bdrv_write_ops);
230 return qemu_fopen_ops(bs, &bdrv_read_ops);
234 /* QEMUFile timer support.
235 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
238 void timer_put(QEMUFile *f, QEMUTimer *ts)
240 uint64_t expire_time;
242 expire_time = timer_expire_time_ns(ts);
243 qemu_put_be64(f, expire_time);
246 void timer_get(QEMUFile *f, QEMUTimer *ts)
248 uint64_t expire_time;
250 expire_time = qemu_get_be64(f);
251 if (expire_time != -1) {
252 timer_mod_ns(ts, expire_time);
253 } else {
254 timer_del(ts);
259 /* VMState timer support.
260 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
263 static int get_timer(QEMUFile *f, void *pv, size_t size, VMStateField *field)
265 QEMUTimer *v = pv;
266 timer_get(f, v);
267 return 0;
270 static int put_timer(QEMUFile *f, void *pv, size_t size, VMStateField *field,
271 QJSON *vmdesc)
273 QEMUTimer *v = pv;
274 timer_put(f, v);
276 return 0;
279 const VMStateInfo vmstate_info_timer = {
280 .name = "timer",
281 .get = get_timer,
282 .put = put_timer,
286 typedef struct CompatEntry {
287 char idstr[256];
288 int instance_id;
289 } CompatEntry;
291 typedef struct SaveStateEntry {
292 QTAILQ_ENTRY(SaveStateEntry) entry;
293 char idstr[256];
294 int instance_id;
295 int alias_id;
296 int version_id;
297 /* version id read from the stream */
298 int load_version_id;
299 int section_id;
300 /* section id read from the stream */
301 int load_section_id;
302 SaveVMHandlers *ops;
303 const VMStateDescription *vmsd;
304 void *opaque;
305 CompatEntry *compat;
306 int is_ram;
307 } SaveStateEntry;
309 typedef struct SaveState {
310 QTAILQ_HEAD(, SaveStateEntry) handlers;
311 int global_section_id;
312 uint32_t len;
313 const char *name;
314 uint32_t target_page_bits;
315 } SaveState;
317 static SaveState savevm_state = {
318 .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
319 .global_section_id = 0,
322 static int configuration_pre_save(void *opaque)
324 SaveState *state = opaque;
325 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
327 state->len = strlen(current_name);
328 state->name = current_name;
329 state->target_page_bits = qemu_target_page_bits();
331 return 0;
334 static int configuration_pre_load(void *opaque)
336 SaveState *state = opaque;
338 /* If there is no target-page-bits subsection it means the source
339 * predates the variable-target-page-bits support and is using the
340 * minimum possible value for this CPU.
342 state->target_page_bits = qemu_target_page_bits_min();
343 return 0;
346 static int configuration_post_load(void *opaque, int version_id)
348 SaveState *state = opaque;
349 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
351 if (strncmp(state->name, current_name, state->len) != 0) {
352 error_report("Machine type received is '%.*s' and local is '%s'",
353 (int) state->len, state->name, current_name);
354 return -EINVAL;
357 if (state->target_page_bits != qemu_target_page_bits()) {
358 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
359 state->target_page_bits, qemu_target_page_bits());
360 return -EINVAL;
363 return 0;
366 /* The target-page-bits subsection is present only if the
367 * target page size is not the same as the default (ie the
368 * minimum page size for a variable-page-size guest CPU).
369 * If it is present then it contains the actual target page
370 * bits for the machine, and migration will fail if the
371 * two ends don't agree about it.
373 static bool vmstate_target_page_bits_needed(void *opaque)
375 return qemu_target_page_bits()
376 > qemu_target_page_bits_min();
379 static const VMStateDescription vmstate_target_page_bits = {
380 .name = "configuration/target-page-bits",
381 .version_id = 1,
382 .minimum_version_id = 1,
383 .needed = vmstate_target_page_bits_needed,
384 .fields = (VMStateField[]) {
385 VMSTATE_UINT32(target_page_bits, SaveState),
386 VMSTATE_END_OF_LIST()
390 static const VMStateDescription vmstate_configuration = {
391 .name = "configuration",
392 .version_id = 1,
393 .pre_load = configuration_pre_load,
394 .post_load = configuration_post_load,
395 .pre_save = configuration_pre_save,
396 .fields = (VMStateField[]) {
397 VMSTATE_UINT32(len, SaveState),
398 VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, len),
399 VMSTATE_END_OF_LIST()
401 .subsections = (const VMStateDescription*[]) {
402 &vmstate_target_page_bits,
403 NULL
407 static void dump_vmstate_vmsd(FILE *out_file,
408 const VMStateDescription *vmsd, int indent,
409 bool is_subsection);
411 static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
412 int indent)
414 fprintf(out_file, "%*s{\n", indent, "");
415 indent += 2;
416 fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
417 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
418 field->version_id);
419 fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
420 field->field_exists ? "true" : "false");
421 fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
422 if (field->vmsd != NULL) {
423 fprintf(out_file, ",\n");
424 dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
426 fprintf(out_file, "\n%*s}", indent - 2, "");
429 static void dump_vmstate_vmss(FILE *out_file,
430 const VMStateDescription **subsection,
431 int indent)
433 if (*subsection != NULL) {
434 dump_vmstate_vmsd(out_file, *subsection, indent, true);
438 static void dump_vmstate_vmsd(FILE *out_file,
439 const VMStateDescription *vmsd, int indent,
440 bool is_subsection)
442 if (is_subsection) {
443 fprintf(out_file, "%*s{\n", indent, "");
444 } else {
445 fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
447 indent += 2;
448 fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
449 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
450 vmsd->version_id);
451 fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
452 vmsd->minimum_version_id);
453 if (vmsd->fields != NULL) {
454 const VMStateField *field = vmsd->fields;
455 bool first;
457 fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
458 first = true;
459 while (field->name != NULL) {
460 if (field->flags & VMS_MUST_EXIST) {
461 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
462 field++;
463 continue;
465 if (!first) {
466 fprintf(out_file, ",\n");
468 dump_vmstate_vmsf(out_file, field, indent + 2);
469 field++;
470 first = false;
472 fprintf(out_file, "\n%*s]", indent, "");
474 if (vmsd->subsections != NULL) {
475 const VMStateDescription **subsection = vmsd->subsections;
476 bool first;
478 fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
479 first = true;
480 while (*subsection != NULL) {
481 if (!first) {
482 fprintf(out_file, ",\n");
484 dump_vmstate_vmss(out_file, subsection, indent + 2);
485 subsection++;
486 first = false;
488 fprintf(out_file, "\n%*s]", indent, "");
490 fprintf(out_file, "\n%*s}", indent - 2, "");
493 static void dump_machine_type(FILE *out_file)
495 MachineClass *mc;
497 mc = MACHINE_GET_CLASS(current_machine);
499 fprintf(out_file, " \"vmschkmachine\": {\n");
500 fprintf(out_file, " \"Name\": \"%s\"\n", mc->name);
501 fprintf(out_file, " },\n");
504 void dump_vmstate_json_to_file(FILE *out_file)
506 GSList *list, *elt;
507 bool first;
509 fprintf(out_file, "{\n");
510 dump_machine_type(out_file);
512 first = true;
513 list = object_class_get_list(TYPE_DEVICE, true);
514 for (elt = list; elt; elt = elt->next) {
515 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
516 TYPE_DEVICE);
517 const char *name;
518 int indent = 2;
520 if (!dc->vmsd) {
521 continue;
524 if (!first) {
525 fprintf(out_file, ",\n");
527 name = object_class_get_name(OBJECT_CLASS(dc));
528 fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
529 indent += 2;
530 fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
531 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
532 dc->vmsd->version_id);
533 fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
534 dc->vmsd->minimum_version_id);
536 dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
538 fprintf(out_file, "\n%*s}", indent - 2, "");
539 first = false;
541 fprintf(out_file, "\n}\n");
542 fclose(out_file);
545 static int calculate_new_instance_id(const char *idstr)
547 SaveStateEntry *se;
548 int instance_id = 0;
550 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
551 if (strcmp(idstr, se->idstr) == 0
552 && instance_id <= se->instance_id) {
553 instance_id = se->instance_id + 1;
556 return instance_id;
559 static int calculate_compat_instance_id(const char *idstr)
561 SaveStateEntry *se;
562 int instance_id = 0;
564 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
565 if (!se->compat) {
566 continue;
569 if (strcmp(idstr, se->compat->idstr) == 0
570 && instance_id <= se->compat->instance_id) {
571 instance_id = se->compat->instance_id + 1;
574 return instance_id;
577 static inline MigrationPriority save_state_priority(SaveStateEntry *se)
579 if (se->vmsd) {
580 return se->vmsd->priority;
582 return MIG_PRI_DEFAULT;
585 static void savevm_state_handler_insert(SaveStateEntry *nse)
587 MigrationPriority priority = save_state_priority(nse);
588 SaveStateEntry *se;
590 assert(priority <= MIG_PRI_MAX);
592 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
593 if (save_state_priority(se) < priority) {
594 break;
598 if (se) {
599 QTAILQ_INSERT_BEFORE(se, nse, entry);
600 } else {
601 QTAILQ_INSERT_TAIL(&savevm_state.handlers, nse, entry);
605 /* TODO: Individual devices generally have very little idea about the rest
606 of the system, so instance_id should be removed/replaced.
607 Meanwhile pass -1 as instance_id if you do not already have a clearly
608 distinguishing id for all instances of your device class. */
609 int register_savevm_live(DeviceState *dev,
610 const char *idstr,
611 int instance_id,
612 int version_id,
613 SaveVMHandlers *ops,
614 void *opaque)
616 SaveStateEntry *se;
618 se = g_new0(SaveStateEntry, 1);
619 se->version_id = version_id;
620 se->section_id = savevm_state.global_section_id++;
621 se->ops = ops;
622 se->opaque = opaque;
623 se->vmsd = NULL;
624 /* if this is a live_savem then set is_ram */
625 if (ops->save_setup != NULL) {
626 se->is_ram = 1;
629 if (dev) {
630 char *id = qdev_get_dev_path(dev);
631 if (id) {
632 if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
633 sizeof(se->idstr)) {
634 error_report("Path too long for VMState (%s)", id);
635 g_free(id);
636 g_free(se);
638 return -1;
640 g_free(id);
642 se->compat = g_new0(CompatEntry, 1);
643 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
644 se->compat->instance_id = instance_id == -1 ?
645 calculate_compat_instance_id(idstr) : instance_id;
646 instance_id = -1;
649 pstrcat(se->idstr, sizeof(se->idstr), idstr);
651 if (instance_id == -1) {
652 se->instance_id = calculate_new_instance_id(se->idstr);
653 } else {
654 se->instance_id = instance_id;
656 assert(!se->compat || se->instance_id == 0);
657 savevm_state_handler_insert(se);
658 return 0;
661 void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
663 SaveStateEntry *se, *new_se;
664 char id[256] = "";
666 if (dev) {
667 char *path = qdev_get_dev_path(dev);
668 if (path) {
669 pstrcpy(id, sizeof(id), path);
670 pstrcat(id, sizeof(id), "/");
671 g_free(path);
674 pstrcat(id, sizeof(id), idstr);
676 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
677 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
678 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
679 g_free(se->compat);
680 g_free(se);
685 int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
686 const VMStateDescription *vmsd,
687 void *opaque, int alias_id,
688 int required_for_version,
689 Error **errp)
691 SaveStateEntry *se;
693 /* If this triggers, alias support can be dropped for the vmsd. */
694 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
696 se = g_new0(SaveStateEntry, 1);
697 se->version_id = vmsd->version_id;
698 se->section_id = savevm_state.global_section_id++;
699 se->opaque = opaque;
700 se->vmsd = vmsd;
701 se->alias_id = alias_id;
703 if (dev) {
704 char *id = qdev_get_dev_path(dev);
705 if (id) {
706 if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
707 sizeof(se->idstr)) {
708 error_setg(errp, "Path too long for VMState (%s)", id);
709 g_free(id);
710 g_free(se);
712 return -1;
714 g_free(id);
716 se->compat = g_new0(CompatEntry, 1);
717 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
718 se->compat->instance_id = instance_id == -1 ?
719 calculate_compat_instance_id(vmsd->name) : instance_id;
720 instance_id = -1;
723 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
725 if (instance_id == -1) {
726 se->instance_id = calculate_new_instance_id(se->idstr);
727 } else {
728 se->instance_id = instance_id;
730 assert(!se->compat || se->instance_id == 0);
731 savevm_state_handler_insert(se);
732 return 0;
735 void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
736 void *opaque)
738 SaveStateEntry *se, *new_se;
740 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
741 if (se->vmsd == vmsd && se->opaque == opaque) {
742 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
743 g_free(se->compat);
744 g_free(se);
749 static int vmstate_load(QEMUFile *f, SaveStateEntry *se)
751 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
752 if (!se->vmsd) { /* Old style */
753 return se->ops->load_state(f, se->opaque, se->load_version_id);
755 return vmstate_load_state(f, se->vmsd, se->opaque, se->load_version_id);
758 static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
760 int64_t old_offset, size;
762 old_offset = qemu_ftell_fast(f);
763 se->ops->save_state(f, se->opaque);
764 size = qemu_ftell_fast(f) - old_offset;
766 if (vmdesc) {
767 json_prop_int(vmdesc, "size", size);
768 json_start_array(vmdesc, "fields");
769 json_start_object(vmdesc, NULL);
770 json_prop_str(vmdesc, "name", "data");
771 json_prop_int(vmdesc, "size", size);
772 json_prop_str(vmdesc, "type", "buffer");
773 json_end_object(vmdesc);
774 json_end_array(vmdesc);
778 static int vmstate_save(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
780 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
781 if (!se->vmsd) {
782 vmstate_save_old_style(f, se, vmdesc);
783 return 0;
785 return vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
789 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
791 static void save_section_header(QEMUFile *f, SaveStateEntry *se,
792 uint8_t section_type)
794 qemu_put_byte(f, section_type);
795 qemu_put_be32(f, se->section_id);
797 if (section_type == QEMU_VM_SECTION_FULL ||
798 section_type == QEMU_VM_SECTION_START) {
799 /* ID string */
800 size_t len = strlen(se->idstr);
801 qemu_put_byte(f, len);
802 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
804 qemu_put_be32(f, se->instance_id);
805 qemu_put_be32(f, se->version_id);
810 * Write a footer onto device sections that catches cases misformatted device
811 * sections.
813 static void save_section_footer(QEMUFile *f, SaveStateEntry *se)
815 if (migrate_get_current()->send_section_footer) {
816 qemu_put_byte(f, QEMU_VM_SECTION_FOOTER);
817 qemu_put_be32(f, se->section_id);
822 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
823 * command and associated data.
825 * @f: File to send command on
826 * @command: Command type to send
827 * @len: Length of associated data
828 * @data: Data associated with command.
830 static void qemu_savevm_command_send(QEMUFile *f,
831 enum qemu_vm_cmd command,
832 uint16_t len,
833 uint8_t *data)
835 trace_savevm_command_send(command, len);
836 qemu_put_byte(f, QEMU_VM_COMMAND);
837 qemu_put_be16(f, (uint16_t)command);
838 qemu_put_be16(f, len);
839 qemu_put_buffer(f, data, len);
840 qemu_fflush(f);
843 void qemu_savevm_send_ping(QEMUFile *f, uint32_t value)
845 uint32_t buf;
847 trace_savevm_send_ping(value);
848 buf = cpu_to_be32(value);
849 qemu_savevm_command_send(f, MIG_CMD_PING, sizeof(value), (uint8_t *)&buf);
852 void qemu_savevm_send_open_return_path(QEMUFile *f)
854 trace_savevm_send_open_return_path();
855 qemu_savevm_command_send(f, MIG_CMD_OPEN_RETURN_PATH, 0, NULL);
858 /* We have a buffer of data to send; we don't want that all to be loaded
859 * by the command itself, so the command contains just the length of the
860 * extra buffer that we then send straight after it.
861 * TODO: Must be a better way to organise that
863 * Returns:
864 * 0 on success
865 * -ve on error
867 int qemu_savevm_send_packaged(QEMUFile *f, const uint8_t *buf, size_t len)
869 uint32_t tmp;
871 if (len > MAX_VM_CMD_PACKAGED_SIZE) {
872 error_report("%s: Unreasonably large packaged state: %zu",
873 __func__, len);
874 return -1;
877 tmp = cpu_to_be32(len);
879 trace_qemu_savevm_send_packaged();
880 qemu_savevm_command_send(f, MIG_CMD_PACKAGED, 4, (uint8_t *)&tmp);
882 qemu_put_buffer(f, buf, len);
884 return 0;
887 /* Send prior to any postcopy transfer */
888 void qemu_savevm_send_postcopy_advise(QEMUFile *f)
890 if (migrate_postcopy_ram()) {
891 uint64_t tmp[2];
892 tmp[0] = cpu_to_be64(ram_pagesize_summary());
893 tmp[1] = cpu_to_be64(qemu_target_page_size());
895 trace_qemu_savevm_send_postcopy_advise();
896 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE,
897 16, (uint8_t *)tmp);
898 } else {
899 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE, 0, NULL);
903 /* Sent prior to starting the destination running in postcopy, discard pages
904 * that have already been sent but redirtied on the source.
905 * CMD_POSTCOPY_RAM_DISCARD consist of:
906 * byte version (0)
907 * byte Length of name field (not including 0)
908 * n x byte RAM block name
909 * byte 0 terminator (just for safety)
910 * n x Byte ranges within the named RAMBlock
911 * be64 Start of the range
912 * be64 Length
914 * name: RAMBlock name that these entries are part of
915 * len: Number of page entries
916 * start_list: 'len' addresses
917 * length_list: 'len' addresses
920 void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name,
921 uint16_t len,
922 uint64_t *start_list,
923 uint64_t *length_list)
925 uint8_t *buf;
926 uint16_t tmplen;
927 uint16_t t;
928 size_t name_len = strlen(name);
930 trace_qemu_savevm_send_postcopy_ram_discard(name, len);
931 assert(name_len < 256);
932 buf = g_malloc0(1 + 1 + name_len + 1 + (8 + 8) * len);
933 buf[0] = postcopy_ram_discard_version;
934 buf[1] = name_len;
935 memcpy(buf + 2, name, name_len);
936 tmplen = 2 + name_len;
937 buf[tmplen++] = '\0';
939 for (t = 0; t < len; t++) {
940 stq_be_p(buf + tmplen, start_list[t]);
941 tmplen += 8;
942 stq_be_p(buf + tmplen, length_list[t]);
943 tmplen += 8;
945 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RAM_DISCARD, tmplen, buf);
946 g_free(buf);
949 /* Get the destination into a state where it can receive postcopy data. */
950 void qemu_savevm_send_postcopy_listen(QEMUFile *f)
952 trace_savevm_send_postcopy_listen();
953 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_LISTEN, 0, NULL);
956 /* Kick the destination into running */
957 void qemu_savevm_send_postcopy_run(QEMUFile *f)
959 trace_savevm_send_postcopy_run();
960 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RUN, 0, NULL);
963 void qemu_savevm_send_postcopy_resume(QEMUFile *f)
965 trace_savevm_send_postcopy_resume();
966 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RESUME, 0, NULL);
969 void qemu_savevm_send_recv_bitmap(QEMUFile *f, char *block_name)
971 size_t len;
972 char buf[256];
974 trace_savevm_send_recv_bitmap(block_name);
976 buf[0] = len = strlen(block_name);
977 memcpy(buf + 1, block_name, len);
979 qemu_savevm_command_send(f, MIG_CMD_RECV_BITMAP, len + 1, (uint8_t *)buf);
982 bool qemu_savevm_state_blocked(Error **errp)
984 SaveStateEntry *se;
986 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
987 if (se->vmsd && se->vmsd->unmigratable) {
988 error_setg(errp, "State blocked by non-migratable device '%s'",
989 se->idstr);
990 return true;
993 return false;
996 void qemu_savevm_state_header(QEMUFile *f)
998 trace_savevm_state_header();
999 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1000 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1002 if (migrate_get_current()->send_configuration) {
1003 qemu_put_byte(f, QEMU_VM_CONFIGURATION);
1004 vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0);
1008 void qemu_savevm_state_setup(QEMUFile *f)
1010 SaveStateEntry *se;
1011 int ret;
1013 trace_savevm_state_setup();
1014 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1015 if (!se->ops || !se->ops->save_setup) {
1016 continue;
1018 if (se->ops && se->ops->is_active) {
1019 if (!se->ops->is_active(se->opaque)) {
1020 continue;
1023 save_section_header(f, se, QEMU_VM_SECTION_START);
1025 ret = se->ops->save_setup(f, se->opaque);
1026 save_section_footer(f, se);
1027 if (ret < 0) {
1028 qemu_file_set_error(f, ret);
1029 break;
1035 * this function has three return values:
1036 * negative: there was one error, and we have -errno.
1037 * 0 : We haven't finished, caller have to go again
1038 * 1 : We have finished, we can go to complete phase
1040 int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy)
1042 SaveStateEntry *se;
1043 int ret = 1;
1045 trace_savevm_state_iterate();
1046 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1047 if (!se->ops || !se->ops->save_live_iterate) {
1048 continue;
1050 if (se->ops && se->ops->is_active) {
1051 if (!se->ops->is_active(se->opaque)) {
1052 continue;
1055 if (se->ops && se->ops->is_active_iterate) {
1056 if (!se->ops->is_active_iterate(se->opaque)) {
1057 continue;
1061 * In the postcopy phase, any device that doesn't know how to
1062 * do postcopy should have saved it's state in the _complete
1063 * call that's already run, it might get confused if we call
1064 * iterate afterwards.
1066 if (postcopy &&
1067 !(se->ops->has_postcopy && se->ops->has_postcopy(se->opaque))) {
1068 continue;
1070 if (qemu_file_rate_limit(f)) {
1071 return 0;
1073 trace_savevm_section_start(se->idstr, se->section_id);
1075 save_section_header(f, se, QEMU_VM_SECTION_PART);
1077 ret = se->ops->save_live_iterate(f, se->opaque);
1078 trace_savevm_section_end(se->idstr, se->section_id, ret);
1079 save_section_footer(f, se);
1081 if (ret < 0) {
1082 qemu_file_set_error(f, ret);
1084 if (ret <= 0) {
1085 /* Do not proceed to the next vmstate before this one reported
1086 completion of the current stage. This serializes the migration
1087 and reduces the probability that a faster changing state is
1088 synchronized over and over again. */
1089 break;
1092 return ret;
1095 static bool should_send_vmdesc(void)
1097 MachineState *machine = MACHINE(qdev_get_machine());
1098 bool in_postcopy = migration_in_postcopy();
1099 return !machine->suppress_vmdesc && !in_postcopy;
1103 * Calls the save_live_complete_postcopy methods
1104 * causing the last few pages to be sent immediately and doing any associated
1105 * cleanup.
1106 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1107 * all the other devices, but that happens at the point we switch to postcopy.
1109 void qemu_savevm_state_complete_postcopy(QEMUFile *f)
1111 SaveStateEntry *se;
1112 int ret;
1114 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1115 if (!se->ops || !se->ops->save_live_complete_postcopy) {
1116 continue;
1118 if (se->ops && se->ops->is_active) {
1119 if (!se->ops->is_active(se->opaque)) {
1120 continue;
1123 trace_savevm_section_start(se->idstr, se->section_id);
1124 /* Section type */
1125 qemu_put_byte(f, QEMU_VM_SECTION_END);
1126 qemu_put_be32(f, se->section_id);
1128 ret = se->ops->save_live_complete_postcopy(f, se->opaque);
1129 trace_savevm_section_end(se->idstr, se->section_id, ret);
1130 save_section_footer(f, se);
1131 if (ret < 0) {
1132 qemu_file_set_error(f, ret);
1133 return;
1137 qemu_put_byte(f, QEMU_VM_EOF);
1138 qemu_fflush(f);
1141 int qemu_savevm_state_complete_precopy(QEMUFile *f, bool iterable_only,
1142 bool inactivate_disks)
1144 QJSON *vmdesc;
1145 int vmdesc_len;
1146 SaveStateEntry *se;
1147 int ret;
1148 bool in_postcopy = migration_in_postcopy();
1150 trace_savevm_state_complete_precopy();
1152 cpu_synchronize_all_states();
1154 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1155 if (!se->ops ||
1156 (in_postcopy && se->ops->has_postcopy &&
1157 se->ops->has_postcopy(se->opaque)) ||
1158 (in_postcopy && !iterable_only) ||
1159 !se->ops->save_live_complete_precopy) {
1160 continue;
1163 if (se->ops && se->ops->is_active) {
1164 if (!se->ops->is_active(se->opaque)) {
1165 continue;
1168 trace_savevm_section_start(se->idstr, se->section_id);
1170 save_section_header(f, se, QEMU_VM_SECTION_END);
1172 ret = se->ops->save_live_complete_precopy(f, se->opaque);
1173 trace_savevm_section_end(se->idstr, se->section_id, ret);
1174 save_section_footer(f, se);
1175 if (ret < 0) {
1176 qemu_file_set_error(f, ret);
1177 return -1;
1181 if (iterable_only) {
1182 return 0;
1185 vmdesc = qjson_new();
1186 json_prop_int(vmdesc, "page_size", qemu_target_page_size());
1187 json_start_array(vmdesc, "devices");
1188 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1190 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1191 continue;
1193 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1194 trace_savevm_section_skip(se->idstr, se->section_id);
1195 continue;
1198 trace_savevm_section_start(se->idstr, se->section_id);
1200 json_start_object(vmdesc, NULL);
1201 json_prop_str(vmdesc, "name", se->idstr);
1202 json_prop_int(vmdesc, "instance_id", se->instance_id);
1204 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1205 ret = vmstate_save(f, se, vmdesc);
1206 if (ret) {
1207 qemu_file_set_error(f, ret);
1208 return ret;
1210 trace_savevm_section_end(se->idstr, se->section_id, 0);
1211 save_section_footer(f, se);
1213 json_end_object(vmdesc);
1216 if (inactivate_disks) {
1217 /* Inactivate before sending QEMU_VM_EOF so that the
1218 * bdrv_invalidate_cache_all() on the other end won't fail. */
1219 ret = bdrv_inactivate_all();
1220 if (ret) {
1221 error_report("%s: bdrv_inactivate_all() failed (%d)",
1222 __func__, ret);
1223 qemu_file_set_error(f, ret);
1224 return ret;
1227 if (!in_postcopy) {
1228 /* Postcopy stream will still be going */
1229 qemu_put_byte(f, QEMU_VM_EOF);
1232 json_end_array(vmdesc);
1233 qjson_finish(vmdesc);
1234 vmdesc_len = strlen(qjson_get_str(vmdesc));
1236 if (should_send_vmdesc()) {
1237 qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
1238 qemu_put_be32(f, vmdesc_len);
1239 qemu_put_buffer(f, (uint8_t *)qjson_get_str(vmdesc), vmdesc_len);
1241 qjson_destroy(vmdesc);
1243 qemu_fflush(f);
1244 return 0;
1247 /* Give an estimate of the amount left to be transferred,
1248 * the result is split into the amount for units that can and
1249 * for units that can't do postcopy.
1251 void qemu_savevm_state_pending(QEMUFile *f, uint64_t threshold_size,
1252 uint64_t *res_precopy_only,
1253 uint64_t *res_compatible,
1254 uint64_t *res_postcopy_only)
1256 SaveStateEntry *se;
1258 *res_precopy_only = 0;
1259 *res_compatible = 0;
1260 *res_postcopy_only = 0;
1263 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1264 if (!se->ops || !se->ops->save_live_pending) {
1265 continue;
1267 if (se->ops && se->ops->is_active) {
1268 if (!se->ops->is_active(se->opaque)) {
1269 continue;
1272 se->ops->save_live_pending(f, se->opaque, threshold_size,
1273 res_precopy_only, res_compatible,
1274 res_postcopy_only);
1278 void qemu_savevm_state_cleanup(void)
1280 SaveStateEntry *se;
1282 trace_savevm_state_cleanup();
1283 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1284 if (se->ops && se->ops->save_cleanup) {
1285 se->ops->save_cleanup(se->opaque);
1290 static int qemu_savevm_state(QEMUFile *f, Error **errp)
1292 int ret;
1293 MigrationState *ms = migrate_get_current();
1294 MigrationStatus status;
1296 migrate_init(ms);
1298 ms->to_dst_file = f;
1300 if (migration_is_blocked(errp)) {
1301 ret = -EINVAL;
1302 goto done;
1305 if (migrate_use_block()) {
1306 error_setg(errp, "Block migration and snapshots are incompatible");
1307 ret = -EINVAL;
1308 goto done;
1311 qemu_mutex_unlock_iothread();
1312 qemu_savevm_state_header(f);
1313 qemu_savevm_state_setup(f);
1314 qemu_mutex_lock_iothread();
1316 while (qemu_file_get_error(f) == 0) {
1317 if (qemu_savevm_state_iterate(f, false) > 0) {
1318 break;
1322 ret = qemu_file_get_error(f);
1323 if (ret == 0) {
1324 qemu_savevm_state_complete_precopy(f, false, false);
1325 ret = qemu_file_get_error(f);
1327 qemu_savevm_state_cleanup();
1328 if (ret != 0) {
1329 error_setg_errno(errp, -ret, "Error while writing VM state");
1332 done:
1333 if (ret != 0) {
1334 status = MIGRATION_STATUS_FAILED;
1335 } else {
1336 status = MIGRATION_STATUS_COMPLETED;
1338 migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
1340 /* f is outer parameter, it should not stay in global migration state after
1341 * this function finished */
1342 ms->to_dst_file = NULL;
1344 return ret;
1347 static int qemu_save_device_state(QEMUFile *f)
1349 SaveStateEntry *se;
1351 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1352 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1354 cpu_synchronize_all_states();
1356 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1357 int ret;
1359 if (se->is_ram) {
1360 continue;
1362 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1363 continue;
1365 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1366 continue;
1369 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1371 ret = vmstate_save(f, se, NULL);
1372 if (ret) {
1373 return ret;
1376 save_section_footer(f, se);
1379 qemu_put_byte(f, QEMU_VM_EOF);
1381 return qemu_file_get_error(f);
1384 static SaveStateEntry *find_se(const char *idstr, int instance_id)
1386 SaveStateEntry *se;
1388 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1389 if (!strcmp(se->idstr, idstr) &&
1390 (instance_id == se->instance_id ||
1391 instance_id == se->alias_id))
1392 return se;
1393 /* Migrating from an older version? */
1394 if (strstr(se->idstr, idstr) && se->compat) {
1395 if (!strcmp(se->compat->idstr, idstr) &&
1396 (instance_id == se->compat->instance_id ||
1397 instance_id == se->alias_id))
1398 return se;
1401 return NULL;
1404 enum LoadVMExitCodes {
1405 /* Allow a command to quit all layers of nested loadvm loops */
1406 LOADVM_QUIT = 1,
1409 static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis);
1411 /* ------ incoming postcopy messages ------ */
1412 /* 'advise' arrives before any transfers just to tell us that a postcopy
1413 * *might* happen - it might be skipped if precopy transferred everything
1414 * quickly.
1416 static int loadvm_postcopy_handle_advise(MigrationIncomingState *mis,
1417 uint16_t len)
1419 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1420 uint64_t remote_pagesize_summary, local_pagesize_summary, remote_tps;
1421 Error *local_err = NULL;
1423 trace_loadvm_postcopy_handle_advise();
1424 if (ps != POSTCOPY_INCOMING_NONE) {
1425 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps);
1426 return -1;
1429 switch (len) {
1430 case 0:
1431 if (migrate_postcopy_ram()) {
1432 error_report("RAM postcopy is enabled but have 0 byte advise");
1433 return -EINVAL;
1435 return 0;
1436 case 8 + 8:
1437 if (!migrate_postcopy_ram()) {
1438 error_report("RAM postcopy is disabled but have 16 byte advise");
1439 return -EINVAL;
1441 break;
1442 default:
1443 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len);
1444 return -EINVAL;
1447 if (!postcopy_ram_supported_by_host(mis)) {
1448 postcopy_state_set(POSTCOPY_INCOMING_NONE);
1449 return -1;
1452 remote_pagesize_summary = qemu_get_be64(mis->from_src_file);
1453 local_pagesize_summary = ram_pagesize_summary();
1455 if (remote_pagesize_summary != local_pagesize_summary) {
1457 * This detects two potential causes of mismatch:
1458 * a) A mismatch in host page sizes
1459 * Some combinations of mismatch are probably possible but it gets
1460 * a bit more complicated. In particular we need to place whole
1461 * host pages on the dest at once, and we need to ensure that we
1462 * handle dirtying to make sure we never end up sending part of
1463 * a hostpage on it's own.
1464 * b) The use of different huge page sizes on source/destination
1465 * a more fine grain test is performed during RAM block migration
1466 * but this test here causes a nice early clear failure, and
1467 * also fails when passed to an older qemu that doesn't
1468 * do huge pages.
1470 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1471 " d=%" PRIx64 ")",
1472 remote_pagesize_summary, local_pagesize_summary);
1473 return -1;
1476 remote_tps = qemu_get_be64(mis->from_src_file);
1477 if (remote_tps != qemu_target_page_size()) {
1479 * Again, some differences could be dealt with, but for now keep it
1480 * simple.
1482 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1483 (int)remote_tps, qemu_target_page_size());
1484 return -1;
1487 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_ADVISE, &local_err)) {
1488 error_report_err(local_err);
1489 return -1;
1492 if (ram_postcopy_incoming_init(mis)) {
1493 return -1;
1496 postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1498 return 0;
1501 /* After postcopy we will be told to throw some pages away since they're
1502 * dirty and will have to be demand fetched. Must happen before CPU is
1503 * started.
1504 * There can be 0..many of these messages, each encoding multiple pages.
1506 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
1507 uint16_t len)
1509 int tmp;
1510 char ramid[256];
1511 PostcopyState ps = postcopy_state_get();
1513 trace_loadvm_postcopy_ram_handle_discard();
1515 switch (ps) {
1516 case POSTCOPY_INCOMING_ADVISE:
1517 /* 1st discard */
1518 tmp = postcopy_ram_prepare_discard(mis);
1519 if (tmp) {
1520 return tmp;
1522 break;
1524 case POSTCOPY_INCOMING_DISCARD:
1525 /* Expected state */
1526 break;
1528 default:
1529 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1530 ps);
1531 return -1;
1533 /* We're expecting a
1534 * Version (0)
1535 * a RAM ID string (length byte, name, 0 term)
1536 * then at least 1 16 byte chunk
1538 if (len < (1 + 1 + 1 + 1 + 2 * 8)) {
1539 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1540 return -1;
1543 tmp = qemu_get_byte(mis->from_src_file);
1544 if (tmp != postcopy_ram_discard_version) {
1545 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp);
1546 return -1;
1549 if (!qemu_get_counted_string(mis->from_src_file, ramid)) {
1550 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1551 return -1;
1553 tmp = qemu_get_byte(mis->from_src_file);
1554 if (tmp != 0) {
1555 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp);
1556 return -1;
1559 len -= 3 + strlen(ramid);
1560 if (len % 16) {
1561 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1562 return -1;
1564 trace_loadvm_postcopy_ram_handle_discard_header(ramid, len);
1565 while (len) {
1566 uint64_t start_addr, block_length;
1567 start_addr = qemu_get_be64(mis->from_src_file);
1568 block_length = qemu_get_be64(mis->from_src_file);
1570 len -= 16;
1571 int ret = ram_discard_range(ramid, start_addr, block_length);
1572 if (ret) {
1573 return ret;
1576 trace_loadvm_postcopy_ram_handle_discard_end();
1578 return 0;
1582 * Triggered by a postcopy_listen command; this thread takes over reading
1583 * the input stream, leaving the main thread free to carry on loading the rest
1584 * of the device state (from RAM).
1585 * (TODO:This could do with being in a postcopy file - but there again it's
1586 * just another input loop, not that postcopy specific)
1588 static void *postcopy_ram_listen_thread(void *opaque)
1590 MigrationIncomingState *mis = migration_incoming_get_current();
1591 QEMUFile *f = mis->from_src_file;
1592 int load_res;
1594 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
1595 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1596 qemu_sem_post(&mis->listen_thread_sem);
1597 trace_postcopy_ram_listen_thread_start();
1600 * Because we're a thread and not a coroutine we can't yield
1601 * in qemu_file, and thus we must be blocking now.
1603 qemu_file_set_blocking(f, true);
1604 load_res = qemu_loadvm_state_main(f, mis);
1607 * This is tricky, but, mis->from_src_file can change after it
1608 * returns, when postcopy recovery happened. In the future, we may
1609 * want a wrapper for the QEMUFile handle.
1611 f = mis->from_src_file;
1613 /* And non-blocking again so we don't block in any cleanup */
1614 qemu_file_set_blocking(f, false);
1616 trace_postcopy_ram_listen_thread_exit();
1617 if (load_res < 0) {
1618 error_report("%s: loadvm failed: %d", __func__, load_res);
1619 qemu_file_set_error(f, load_res);
1620 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1621 MIGRATION_STATUS_FAILED);
1622 } else {
1624 * This looks good, but it's possible that the device loading in the
1625 * main thread hasn't finished yet, and so we might not be in 'RUN'
1626 * state yet; wait for the end of the main thread.
1628 qemu_event_wait(&mis->main_thread_load_event);
1630 postcopy_ram_incoming_cleanup(mis);
1632 if (load_res < 0) {
1634 * If something went wrong then we have a bad state so exit;
1635 * depending how far we got it might be possible at this point
1636 * to leave the guest running and fire MCEs for pages that never
1637 * arrived as a desperate recovery step.
1639 exit(EXIT_FAILURE);
1642 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1643 MIGRATION_STATUS_COMPLETED);
1645 * If everything has worked fine, then the main thread has waited
1646 * for us to start, and we're the last use of the mis.
1647 * (If something broke then qemu will have to exit anyway since it's
1648 * got a bad migration state).
1650 migration_incoming_state_destroy();
1651 qemu_loadvm_state_cleanup();
1653 return NULL;
1656 /* After this message we must be able to immediately receive postcopy data */
1657 static int loadvm_postcopy_handle_listen(MigrationIncomingState *mis)
1659 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_LISTENING);
1660 trace_loadvm_postcopy_handle_listen();
1661 Error *local_err = NULL;
1663 if (ps != POSTCOPY_INCOMING_ADVISE && ps != POSTCOPY_INCOMING_DISCARD) {
1664 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps);
1665 return -1;
1667 if (ps == POSTCOPY_INCOMING_ADVISE) {
1669 * A rare case, we entered listen without having to do any discards,
1670 * so do the setup that's normally done at the time of the 1st discard.
1672 if (migrate_postcopy_ram()) {
1673 postcopy_ram_prepare_discard(mis);
1678 * Sensitise RAM - can now generate requests for blocks that don't exist
1679 * However, at this point the CPU shouldn't be running, and the IO
1680 * shouldn't be doing anything yet so don't actually expect requests
1682 if (migrate_postcopy_ram()) {
1683 if (postcopy_ram_enable_notify(mis)) {
1684 return -1;
1688 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_LISTEN, &local_err)) {
1689 error_report_err(local_err);
1690 return -1;
1693 if (mis->have_listen_thread) {
1694 error_report("CMD_POSTCOPY_RAM_LISTEN already has a listen thread");
1695 return -1;
1698 mis->have_listen_thread = true;
1699 /* Start up the listening thread and wait for it to signal ready */
1700 qemu_sem_init(&mis->listen_thread_sem, 0);
1701 qemu_thread_create(&mis->listen_thread, "postcopy/listen",
1702 postcopy_ram_listen_thread, NULL,
1703 QEMU_THREAD_DETACHED);
1704 qemu_sem_wait(&mis->listen_thread_sem);
1705 qemu_sem_destroy(&mis->listen_thread_sem);
1707 return 0;
1711 typedef struct {
1712 QEMUBH *bh;
1713 } HandleRunBhData;
1715 static void loadvm_postcopy_handle_run_bh(void *opaque)
1717 Error *local_err = NULL;
1718 HandleRunBhData *data = opaque;
1720 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
1721 * in migration.c
1723 cpu_synchronize_all_post_init();
1725 qemu_announce_self();
1727 /* Make sure all file formats flush their mutable metadata.
1728 * If we get an error here, just don't restart the VM yet. */
1729 bdrv_invalidate_cache_all(&local_err);
1730 if (local_err) {
1731 error_report_err(local_err);
1732 local_err = NULL;
1733 autostart = false;
1736 trace_loadvm_postcopy_handle_run_cpu_sync();
1737 cpu_synchronize_all_post_init();
1739 trace_loadvm_postcopy_handle_run_vmstart();
1741 dirty_bitmap_mig_before_vm_start();
1743 if (autostart) {
1744 /* Hold onto your hats, starting the CPU */
1745 vm_start();
1746 } else {
1747 /* leave it paused and let management decide when to start the CPU */
1748 runstate_set(RUN_STATE_PAUSED);
1751 qemu_bh_delete(data->bh);
1752 g_free(data);
1755 /* After all discards we can start running and asking for pages */
1756 static int loadvm_postcopy_handle_run(MigrationIncomingState *mis)
1758 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_RUNNING);
1759 HandleRunBhData *data;
1761 trace_loadvm_postcopy_handle_run();
1762 if (ps != POSTCOPY_INCOMING_LISTENING) {
1763 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps);
1764 return -1;
1767 data = g_new(HandleRunBhData, 1);
1768 data->bh = qemu_bh_new(loadvm_postcopy_handle_run_bh, data);
1769 qemu_bh_schedule(data->bh);
1771 /* We need to finish reading the stream from the package
1772 * and also stop reading anything more from the stream that loaded the
1773 * package (since it's now being read by the listener thread).
1774 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
1776 return LOADVM_QUIT;
1779 static int loadvm_postcopy_handle_resume(MigrationIncomingState *mis)
1781 if (mis->state != MIGRATION_STATUS_POSTCOPY_RECOVER) {
1782 error_report("%s: illegal resume received", __func__);
1783 /* Don't fail the load, only for this. */
1784 return 0;
1788 * This means source VM is ready to resume the postcopy migration.
1789 * It's time to switch state and release the fault thread to
1790 * continue service page faults.
1792 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_RECOVER,
1793 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1794 qemu_sem_post(&mis->postcopy_pause_sem_fault);
1796 trace_loadvm_postcopy_handle_resume();
1798 /* Tell source that "we are ready" */
1799 migrate_send_rp_resume_ack(mis, MIGRATION_RESUME_ACK_VALUE);
1801 return 0;
1805 * Immediately following this command is a blob of data containing an embedded
1806 * chunk of migration stream; read it and load it.
1808 * @mis: Incoming state
1809 * @length: Length of packaged data to read
1811 * Returns: Negative values on error
1814 static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
1816 int ret;
1817 size_t length;
1818 QIOChannelBuffer *bioc;
1820 length = qemu_get_be32(mis->from_src_file);
1821 trace_loadvm_handle_cmd_packaged(length);
1823 if (length > MAX_VM_CMD_PACKAGED_SIZE) {
1824 error_report("Unreasonably large packaged state: %zu", length);
1825 return -1;
1828 bioc = qio_channel_buffer_new(length);
1829 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-loadvm-buffer");
1830 ret = qemu_get_buffer(mis->from_src_file,
1831 bioc->data,
1832 length);
1833 if (ret != length) {
1834 object_unref(OBJECT(bioc));
1835 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
1836 ret, length);
1837 return (ret < 0) ? ret : -EAGAIN;
1839 bioc->usage += length;
1840 trace_loadvm_handle_cmd_packaged_received(ret);
1842 QEMUFile *packf = qemu_fopen_channel_input(QIO_CHANNEL(bioc));
1844 ret = qemu_loadvm_state_main(packf, mis);
1845 trace_loadvm_handle_cmd_packaged_main(ret);
1846 qemu_fclose(packf);
1847 object_unref(OBJECT(bioc));
1849 return ret;
1853 * Handle request that source requests for recved_bitmap on
1854 * destination. Payload format:
1856 * len (1 byte) + ramblock_name (<255 bytes)
1858 static int loadvm_handle_recv_bitmap(MigrationIncomingState *mis,
1859 uint16_t len)
1861 QEMUFile *file = mis->from_src_file;
1862 RAMBlock *rb;
1863 char block_name[256];
1864 size_t cnt;
1866 cnt = qemu_get_counted_string(file, block_name);
1867 if (!cnt) {
1868 error_report("%s: failed to read block name", __func__);
1869 return -EINVAL;
1872 /* Validate before using the data */
1873 if (qemu_file_get_error(file)) {
1874 return qemu_file_get_error(file);
1877 if (len != cnt + 1) {
1878 error_report("%s: invalid payload length (%d)", __func__, len);
1879 return -EINVAL;
1882 rb = qemu_ram_block_by_name(block_name);
1883 if (!rb) {
1884 error_report("%s: block '%s' not found", __func__, block_name);
1885 return -EINVAL;
1888 migrate_send_rp_recv_bitmap(mis, block_name);
1890 trace_loadvm_handle_recv_bitmap(block_name);
1892 return 0;
1896 * Process an incoming 'QEMU_VM_COMMAND'
1897 * 0 just a normal return
1898 * LOADVM_QUIT All good, but exit the loop
1899 * <0 Error
1901 static int loadvm_process_command(QEMUFile *f)
1903 MigrationIncomingState *mis = migration_incoming_get_current();
1904 uint16_t cmd;
1905 uint16_t len;
1906 uint32_t tmp32;
1908 cmd = qemu_get_be16(f);
1909 len = qemu_get_be16(f);
1911 /* Check validity before continue processing of cmds */
1912 if (qemu_file_get_error(f)) {
1913 return qemu_file_get_error(f);
1916 trace_loadvm_process_command(cmd, len);
1917 if (cmd >= MIG_CMD_MAX || cmd == MIG_CMD_INVALID) {
1918 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd, len);
1919 return -EINVAL;
1922 if (mig_cmd_args[cmd].len != -1 && mig_cmd_args[cmd].len != len) {
1923 error_report("%s received with bad length - expecting %zu, got %d",
1924 mig_cmd_args[cmd].name,
1925 (size_t)mig_cmd_args[cmd].len, len);
1926 return -ERANGE;
1929 switch (cmd) {
1930 case MIG_CMD_OPEN_RETURN_PATH:
1931 if (mis->to_src_file) {
1932 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
1933 /* Not really a problem, so don't give up */
1934 return 0;
1936 mis->to_src_file = qemu_file_get_return_path(f);
1937 if (!mis->to_src_file) {
1938 error_report("CMD_OPEN_RETURN_PATH failed");
1939 return -1;
1941 break;
1943 case MIG_CMD_PING:
1944 tmp32 = qemu_get_be32(f);
1945 trace_loadvm_process_command_ping(tmp32);
1946 if (!mis->to_src_file) {
1947 error_report("CMD_PING (0x%x) received with no return path",
1948 tmp32);
1949 return -1;
1951 migrate_send_rp_pong(mis, tmp32);
1952 break;
1954 case MIG_CMD_PACKAGED:
1955 return loadvm_handle_cmd_packaged(mis);
1957 case MIG_CMD_POSTCOPY_ADVISE:
1958 return loadvm_postcopy_handle_advise(mis, len);
1960 case MIG_CMD_POSTCOPY_LISTEN:
1961 return loadvm_postcopy_handle_listen(mis);
1963 case MIG_CMD_POSTCOPY_RUN:
1964 return loadvm_postcopy_handle_run(mis);
1966 case MIG_CMD_POSTCOPY_RAM_DISCARD:
1967 return loadvm_postcopy_ram_handle_discard(mis, len);
1969 case MIG_CMD_POSTCOPY_RESUME:
1970 return loadvm_postcopy_handle_resume(mis);
1972 case MIG_CMD_RECV_BITMAP:
1973 return loadvm_handle_recv_bitmap(mis, len);
1976 return 0;
1980 * Read a footer off the wire and check that it matches the expected section
1982 * Returns: true if the footer was good
1983 * false if there is a problem (and calls error_report to say why)
1985 static bool check_section_footer(QEMUFile *f, SaveStateEntry *se)
1987 int ret;
1988 uint8_t read_mark;
1989 uint32_t read_section_id;
1991 if (!migrate_get_current()->send_section_footer) {
1992 /* No footer to check */
1993 return true;
1996 read_mark = qemu_get_byte(f);
1998 ret = qemu_file_get_error(f);
1999 if (ret) {
2000 error_report("%s: Read section footer failed: %d",
2001 __func__, ret);
2002 return false;
2005 if (read_mark != QEMU_VM_SECTION_FOOTER) {
2006 error_report("Missing section footer for %s", se->idstr);
2007 return false;
2010 read_section_id = qemu_get_be32(f);
2011 if (read_section_id != se->load_section_id) {
2012 error_report("Mismatched section id in footer for %s -"
2013 " read 0x%x expected 0x%x",
2014 se->idstr, read_section_id, se->load_section_id);
2015 return false;
2018 /* All good */
2019 return true;
2022 static int
2023 qemu_loadvm_section_start_full(QEMUFile *f, MigrationIncomingState *mis)
2025 uint32_t instance_id, version_id, section_id;
2026 SaveStateEntry *se;
2027 char idstr[256];
2028 int ret;
2030 /* Read section start */
2031 section_id = qemu_get_be32(f);
2032 if (!qemu_get_counted_string(f, idstr)) {
2033 error_report("Unable to read ID string for section %u",
2034 section_id);
2035 return -EINVAL;
2037 instance_id = qemu_get_be32(f);
2038 version_id = qemu_get_be32(f);
2040 ret = qemu_file_get_error(f);
2041 if (ret) {
2042 error_report("%s: Failed to read instance/version ID: %d",
2043 __func__, ret);
2044 return ret;
2047 trace_qemu_loadvm_state_section_startfull(section_id, idstr,
2048 instance_id, version_id);
2049 /* Find savevm section */
2050 se = find_se(idstr, instance_id);
2051 if (se == NULL) {
2052 error_report("Unknown savevm section or instance '%s' %d",
2053 idstr, instance_id);
2054 return -EINVAL;
2057 /* Validate version */
2058 if (version_id > se->version_id) {
2059 error_report("savevm: unsupported version %d for '%s' v%d",
2060 version_id, idstr, se->version_id);
2061 return -EINVAL;
2063 se->load_version_id = version_id;
2064 se->load_section_id = section_id;
2066 /* Validate if it is a device's state */
2067 if (xen_enabled() && se->is_ram) {
2068 error_report("loadvm: %s RAM loading not allowed on Xen", idstr);
2069 return -EINVAL;
2072 ret = vmstate_load(f, se);
2073 if (ret < 0) {
2074 error_report("error while loading state for instance 0x%x of"
2075 " device '%s'", instance_id, idstr);
2076 return ret;
2078 if (!check_section_footer(f, se)) {
2079 return -EINVAL;
2082 return 0;
2085 static int
2086 qemu_loadvm_section_part_end(QEMUFile *f, MigrationIncomingState *mis)
2088 uint32_t section_id;
2089 SaveStateEntry *se;
2090 int ret;
2092 section_id = qemu_get_be32(f);
2094 ret = qemu_file_get_error(f);
2095 if (ret) {
2096 error_report("%s: Failed to read section ID: %d",
2097 __func__, ret);
2098 return ret;
2101 trace_qemu_loadvm_state_section_partend(section_id);
2102 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2103 if (se->load_section_id == section_id) {
2104 break;
2107 if (se == NULL) {
2108 error_report("Unknown savevm section %d", section_id);
2109 return -EINVAL;
2112 ret = vmstate_load(f, se);
2113 if (ret < 0) {
2114 error_report("error while loading state section id %d(%s)",
2115 section_id, se->idstr);
2116 return ret;
2118 if (!check_section_footer(f, se)) {
2119 return -EINVAL;
2122 return 0;
2125 static int qemu_loadvm_state_setup(QEMUFile *f)
2127 SaveStateEntry *se;
2128 int ret;
2130 trace_loadvm_state_setup();
2131 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2132 if (!se->ops || !se->ops->load_setup) {
2133 continue;
2135 if (se->ops && se->ops->is_active) {
2136 if (!se->ops->is_active(se->opaque)) {
2137 continue;
2141 ret = se->ops->load_setup(f, se->opaque);
2142 if (ret < 0) {
2143 qemu_file_set_error(f, ret);
2144 error_report("Load state of device %s failed", se->idstr);
2145 return ret;
2148 return 0;
2151 void qemu_loadvm_state_cleanup(void)
2153 SaveStateEntry *se;
2155 trace_loadvm_state_cleanup();
2156 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2157 if (se->ops && se->ops->load_cleanup) {
2158 se->ops->load_cleanup(se->opaque);
2163 /* Return true if we should continue the migration, or false. */
2164 static bool postcopy_pause_incoming(MigrationIncomingState *mis)
2166 trace_postcopy_pause_incoming();
2168 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2169 MIGRATION_STATUS_POSTCOPY_PAUSED);
2171 assert(mis->from_src_file);
2172 qemu_file_shutdown(mis->from_src_file);
2173 qemu_fclose(mis->from_src_file);
2174 mis->from_src_file = NULL;
2176 assert(mis->to_src_file);
2177 qemu_file_shutdown(mis->to_src_file);
2178 qemu_mutex_lock(&mis->rp_mutex);
2179 qemu_fclose(mis->to_src_file);
2180 mis->to_src_file = NULL;
2181 qemu_mutex_unlock(&mis->rp_mutex);
2183 /* Notify the fault thread for the invalidated file handle */
2184 postcopy_fault_thread_notify(mis);
2186 error_report("Detected IO failure for postcopy. "
2187 "Migration paused.");
2189 while (mis->state == MIGRATION_STATUS_POSTCOPY_PAUSED) {
2190 qemu_sem_wait(&mis->postcopy_pause_sem_dst);
2193 trace_postcopy_pause_incoming_continued();
2195 return true;
2198 static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
2200 uint8_t section_type;
2201 int ret = 0;
2203 retry:
2204 while (true) {
2205 section_type = qemu_get_byte(f);
2207 if (qemu_file_get_error(f)) {
2208 ret = qemu_file_get_error(f);
2209 break;
2212 trace_qemu_loadvm_state_section(section_type);
2213 switch (section_type) {
2214 case QEMU_VM_SECTION_START:
2215 case QEMU_VM_SECTION_FULL:
2216 ret = qemu_loadvm_section_start_full(f, mis);
2217 if (ret < 0) {
2218 goto out;
2220 break;
2221 case QEMU_VM_SECTION_PART:
2222 case QEMU_VM_SECTION_END:
2223 ret = qemu_loadvm_section_part_end(f, mis);
2224 if (ret < 0) {
2225 goto out;
2227 break;
2228 case QEMU_VM_COMMAND:
2229 ret = loadvm_process_command(f);
2230 trace_qemu_loadvm_state_section_command(ret);
2231 if ((ret < 0) || (ret & LOADVM_QUIT)) {
2232 goto out;
2234 break;
2235 case QEMU_VM_EOF:
2236 /* This is the end of migration */
2237 goto out;
2238 default:
2239 error_report("Unknown savevm section type %d", section_type);
2240 ret = -EINVAL;
2241 goto out;
2245 out:
2246 if (ret < 0) {
2247 qemu_file_set_error(f, ret);
2250 * Detect whether it is:
2252 * 1. postcopy running (after receiving all device data, which
2253 * must be in POSTCOPY_INCOMING_RUNNING state. Note that
2254 * POSTCOPY_INCOMING_LISTENING is still not enough, it's
2255 * still receiving device states).
2256 * 2. network failure (-EIO)
2258 * If so, we try to wait for a recovery.
2260 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING &&
2261 ret == -EIO && postcopy_pause_incoming(mis)) {
2262 /* Reset f to point to the newly created channel */
2263 f = mis->from_src_file;
2264 goto retry;
2267 return ret;
2270 int qemu_loadvm_state(QEMUFile *f)
2272 MigrationIncomingState *mis = migration_incoming_get_current();
2273 Error *local_err = NULL;
2274 unsigned int v;
2275 int ret;
2277 if (qemu_savevm_state_blocked(&local_err)) {
2278 error_report_err(local_err);
2279 return -EINVAL;
2282 v = qemu_get_be32(f);
2283 if (v != QEMU_VM_FILE_MAGIC) {
2284 error_report("Not a migration stream");
2285 return -EINVAL;
2288 v = qemu_get_be32(f);
2289 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
2290 error_report("SaveVM v2 format is obsolete and don't work anymore");
2291 return -ENOTSUP;
2293 if (v != QEMU_VM_FILE_VERSION) {
2294 error_report("Unsupported migration stream version");
2295 return -ENOTSUP;
2298 if (qemu_loadvm_state_setup(f) != 0) {
2299 return -EINVAL;
2302 if (migrate_get_current()->send_configuration) {
2303 if (qemu_get_byte(f) != QEMU_VM_CONFIGURATION) {
2304 error_report("Configuration section missing");
2305 return -EINVAL;
2307 ret = vmstate_load_state(f, &vmstate_configuration, &savevm_state, 0);
2309 if (ret) {
2310 return ret;
2314 cpu_synchronize_all_pre_loadvm();
2316 ret = qemu_loadvm_state_main(f, mis);
2317 qemu_event_set(&mis->main_thread_load_event);
2319 trace_qemu_loadvm_state_post_main(ret);
2321 if (mis->have_listen_thread) {
2322 /* Listen thread still going, can't clean up yet */
2323 return ret;
2326 if (ret == 0) {
2327 ret = qemu_file_get_error(f);
2331 * Try to read in the VMDESC section as well, so that dumping tools that
2332 * intercept our migration stream have the chance to see it.
2335 /* We've got to be careful; if we don't read the data and just shut the fd
2336 * then the sender can error if we close while it's still sending.
2337 * We also mustn't read data that isn't there; some transports (RDMA)
2338 * will stall waiting for that data when the source has already closed.
2340 if (ret == 0 && should_send_vmdesc()) {
2341 uint8_t *buf;
2342 uint32_t size;
2343 uint8_t section_type = qemu_get_byte(f);
2345 if (section_type != QEMU_VM_VMDESCRIPTION) {
2346 error_report("Expected vmdescription section, but got %d",
2347 section_type);
2349 * It doesn't seem worth failing at this point since
2350 * we apparently have an otherwise valid VM state
2352 } else {
2353 buf = g_malloc(0x1000);
2354 size = qemu_get_be32(f);
2356 while (size > 0) {
2357 uint32_t read_chunk = MIN(size, 0x1000);
2358 qemu_get_buffer(f, buf, read_chunk);
2359 size -= read_chunk;
2361 g_free(buf);
2365 qemu_loadvm_state_cleanup();
2366 cpu_synchronize_all_post_init();
2368 return ret;
2371 int save_snapshot(const char *name, Error **errp)
2373 BlockDriverState *bs, *bs1;
2374 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
2375 int ret = -1;
2376 QEMUFile *f;
2377 int saved_vm_running;
2378 uint64_t vm_state_size;
2379 qemu_timeval tv;
2380 struct tm tm;
2381 AioContext *aio_context;
2383 if (!replay_can_snapshot()) {
2384 error_report("Record/replay does not allow making snapshot "
2385 "right now. Try once more later.");
2386 return ret;
2389 if (!bdrv_all_can_snapshot(&bs)) {
2390 error_setg(errp, "Device '%s' is writable but does not support "
2391 "snapshots", bdrv_get_device_name(bs));
2392 return ret;
2395 /* Delete old snapshots of the same name */
2396 if (name) {
2397 ret = bdrv_all_delete_snapshot(name, &bs1, errp);
2398 if (ret < 0) {
2399 error_prepend(errp, "Error while deleting snapshot on device "
2400 "'%s': ", bdrv_get_device_name(bs1));
2401 return ret;
2405 bs = bdrv_all_find_vmstate_bs();
2406 if (bs == NULL) {
2407 error_setg(errp, "No block device can accept snapshots");
2408 return ret;
2410 aio_context = bdrv_get_aio_context(bs);
2412 saved_vm_running = runstate_is_running();
2414 ret = global_state_store();
2415 if (ret) {
2416 error_setg(errp, "Error saving global state");
2417 return ret;
2419 vm_stop(RUN_STATE_SAVE_VM);
2421 bdrv_drain_all_begin();
2423 aio_context_acquire(aio_context);
2425 memset(sn, 0, sizeof(*sn));
2427 /* fill auxiliary fields */
2428 qemu_gettimeofday(&tv);
2429 sn->date_sec = tv.tv_sec;
2430 sn->date_nsec = tv.tv_usec * 1000;
2431 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
2433 if (name) {
2434 ret = bdrv_snapshot_find(bs, old_sn, name);
2435 if (ret >= 0) {
2436 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2437 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2438 } else {
2439 pstrcpy(sn->name, sizeof(sn->name), name);
2441 } else {
2442 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2443 localtime_r((const time_t *)&tv.tv_sec, &tm);
2444 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2447 /* save the VM state */
2448 f = qemu_fopen_bdrv(bs, 1);
2449 if (!f) {
2450 error_setg(errp, "Could not open VM state file");
2451 goto the_end;
2453 ret = qemu_savevm_state(f, errp);
2454 vm_state_size = qemu_ftell(f);
2455 qemu_fclose(f);
2456 if (ret < 0) {
2457 goto the_end;
2460 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
2461 * for itself. BDRV_POLL_WHILE() does not support nested locking because
2462 * it only releases the lock once. Therefore synchronous I/O will deadlock
2463 * unless we release the AioContext before bdrv_all_create_snapshot().
2465 aio_context_release(aio_context);
2466 aio_context = NULL;
2468 ret = bdrv_all_create_snapshot(sn, bs, vm_state_size, &bs);
2469 if (ret < 0) {
2470 error_setg(errp, "Error while creating snapshot on '%s'",
2471 bdrv_get_device_name(bs));
2472 goto the_end;
2475 ret = 0;
2477 the_end:
2478 if (aio_context) {
2479 aio_context_release(aio_context);
2482 bdrv_drain_all_end();
2484 if (saved_vm_running) {
2485 vm_start();
2487 return ret;
2490 void qmp_xen_save_devices_state(const char *filename, bool has_live, bool live,
2491 Error **errp)
2493 QEMUFile *f;
2494 QIOChannelFile *ioc;
2495 int saved_vm_running;
2496 int ret;
2498 if (!has_live) {
2499 /* live default to true so old version of Xen tool stack can have a
2500 * successfull live migration */
2501 live = true;
2504 saved_vm_running = runstate_is_running();
2505 vm_stop(RUN_STATE_SAVE_VM);
2506 global_state_store_running();
2508 ioc = qio_channel_file_new_path(filename, O_WRONLY | O_CREAT, 0660, errp);
2509 if (!ioc) {
2510 goto the_end;
2512 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-save-state");
2513 f = qemu_fopen_channel_output(QIO_CHANNEL(ioc));
2514 object_unref(OBJECT(ioc));
2515 ret = qemu_save_device_state(f);
2516 if (ret < 0 || qemu_fclose(f) < 0) {
2517 error_setg(errp, QERR_IO_ERROR);
2518 } else {
2519 /* libxl calls the QMP command "stop" before calling
2520 * "xen-save-devices-state" and in case of migration failure, libxl
2521 * would call "cont".
2522 * So call bdrv_inactivate_all (release locks) here to let the other
2523 * side of the migration take controle of the images.
2525 if (live && !saved_vm_running) {
2526 ret = bdrv_inactivate_all();
2527 if (ret) {
2528 error_setg(errp, "%s: bdrv_inactivate_all() failed (%d)",
2529 __func__, ret);
2534 the_end:
2535 if (saved_vm_running) {
2536 vm_start();
2540 void qmp_xen_load_devices_state(const char *filename, Error **errp)
2542 QEMUFile *f;
2543 QIOChannelFile *ioc;
2544 int ret;
2546 /* Guest must be paused before loading the device state; the RAM state
2547 * will already have been loaded by xc
2549 if (runstate_is_running()) {
2550 error_setg(errp, "Cannot update device state while vm is running");
2551 return;
2553 vm_stop(RUN_STATE_RESTORE_VM);
2555 ioc = qio_channel_file_new_path(filename, O_RDONLY | O_BINARY, 0, errp);
2556 if (!ioc) {
2557 return;
2559 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-load-state");
2560 f = qemu_fopen_channel_input(QIO_CHANNEL(ioc));
2561 object_unref(OBJECT(ioc));
2563 ret = qemu_loadvm_state(f);
2564 qemu_fclose(f);
2565 if (ret < 0) {
2566 error_setg(errp, QERR_IO_ERROR);
2568 migration_incoming_state_destroy();
2571 int load_snapshot(const char *name, Error **errp)
2573 BlockDriverState *bs, *bs_vm_state;
2574 QEMUSnapshotInfo sn;
2575 QEMUFile *f;
2576 int ret;
2577 AioContext *aio_context;
2578 MigrationIncomingState *mis = migration_incoming_get_current();
2580 if (!replay_can_snapshot()) {
2581 error_report("Record/replay does not allow loading snapshot "
2582 "right now. Try once more later.");
2583 return -EINVAL;
2586 if (!bdrv_all_can_snapshot(&bs)) {
2587 error_setg(errp,
2588 "Device '%s' is writable but does not support snapshots",
2589 bdrv_get_device_name(bs));
2590 return -ENOTSUP;
2592 ret = bdrv_all_find_snapshot(name, &bs);
2593 if (ret < 0) {
2594 error_setg(errp,
2595 "Device '%s' does not have the requested snapshot '%s'",
2596 bdrv_get_device_name(bs), name);
2597 return ret;
2600 bs_vm_state = bdrv_all_find_vmstate_bs();
2601 if (!bs_vm_state) {
2602 error_setg(errp, "No block device supports snapshots");
2603 return -ENOTSUP;
2605 aio_context = bdrv_get_aio_context(bs_vm_state);
2607 /* Don't even try to load empty VM states */
2608 aio_context_acquire(aio_context);
2609 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2610 aio_context_release(aio_context);
2611 if (ret < 0) {
2612 return ret;
2613 } else if (sn.vm_state_size == 0) {
2614 error_setg(errp, "This is a disk-only snapshot. Revert to it "
2615 " offline using qemu-img");
2616 return -EINVAL;
2619 /* Flush all IO requests so they don't interfere with the new state. */
2620 bdrv_drain_all_begin();
2622 ret = bdrv_all_goto_snapshot(name, &bs, errp);
2623 if (ret < 0) {
2624 error_prepend(errp, "Could not load snapshot '%s' on '%s': ",
2625 name, bdrv_get_device_name(bs));
2626 goto err_drain;
2629 /* restore the VM state */
2630 f = qemu_fopen_bdrv(bs_vm_state, 0);
2631 if (!f) {
2632 error_setg(errp, "Could not open VM state file");
2633 ret = -EINVAL;
2634 goto err_drain;
2637 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
2638 mis->from_src_file = f;
2640 aio_context_acquire(aio_context);
2641 ret = qemu_loadvm_state(f);
2642 migration_incoming_state_destroy();
2643 aio_context_release(aio_context);
2645 bdrv_drain_all_end();
2647 if (ret < 0) {
2648 error_setg(errp, "Error %d while loading VM state", ret);
2649 return ret;
2652 return 0;
2654 err_drain:
2655 bdrv_drain_all_end();
2656 return ret;
2659 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2661 qemu_ram_set_idstr(mr->ram_block,
2662 memory_region_name(mr), dev);
2665 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2667 qemu_ram_unset_idstr(mr->ram_block);
2670 void vmstate_register_ram_global(MemoryRegion *mr)
2672 vmstate_register_ram(mr, NULL);
2675 bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
2677 /* check needed if --only-migratable is specified */
2678 if (!migrate_get_current()->only_migratable) {
2679 return true;
2682 return !(vmsd && vmsd->unmigratable);