postcopy_ram.c: place_page and helpers
[qemu/ar7.git] / migration / savevm.c
bloba7210a22b4f325bb79fb594b49e87169fc7a8316
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 "config-host.h"
30 #include "qemu-common.h"
31 #include "hw/boards.h"
32 #include "hw/hw.h"
33 #include "hw/qdev.h"
34 #include "net/net.h"
35 #include "monitor/monitor.h"
36 #include "sysemu/sysemu.h"
37 #include "qemu/timer.h"
38 #include "audio/audio.h"
39 #include "migration/migration.h"
40 #include "migration/postcopy-ram.h"
41 #include "qapi/qmp/qerror.h"
42 #include "qemu/error-report.h"
43 #include "qemu/sockets.h"
44 #include "qemu/queue.h"
45 #include "sysemu/cpus.h"
46 #include "exec/memory.h"
47 #include "qmp-commands.h"
48 #include "trace.h"
49 #include "qemu/bitops.h"
50 #include "qemu/iov.h"
51 #include "block/snapshot.h"
52 #include "block/qapi.h"
55 #ifndef ETH_P_RARP
56 #define ETH_P_RARP 0x8035
57 #endif
58 #define ARP_HTYPE_ETH 0x0001
59 #define ARP_PTYPE_IP 0x0800
60 #define ARP_OP_REQUEST_REV 0x3
62 const unsigned int postcopy_ram_discard_version = 0;
64 static bool skip_section_footers;
66 static struct mig_cmd_args {
67 ssize_t len; /* -1 = variable */
68 const char *name;
69 } mig_cmd_args[] = {
70 [MIG_CMD_INVALID] = { .len = -1, .name = "INVALID" },
71 [MIG_CMD_OPEN_RETURN_PATH] = { .len = 0, .name = "OPEN_RETURN_PATH" },
72 [MIG_CMD_PING] = { .len = sizeof(uint32_t), .name = "PING" },
73 [MIG_CMD_POSTCOPY_ADVISE] = { .len = 16, .name = "POSTCOPY_ADVISE" },
74 [MIG_CMD_POSTCOPY_LISTEN] = { .len = 0, .name = "POSTCOPY_LISTEN" },
75 [MIG_CMD_POSTCOPY_RUN] = { .len = 0, .name = "POSTCOPY_RUN" },
76 [MIG_CMD_POSTCOPY_RAM_DISCARD] = {
77 .len = -1, .name = "POSTCOPY_RAM_DISCARD" },
78 [MIG_CMD_PACKAGED] = { .len = 4, .name = "PACKAGED" },
79 [MIG_CMD_MAX] = { .len = -1, .name = "MAX" },
82 static int announce_self_create(uint8_t *buf,
83 uint8_t *mac_addr)
85 /* Ethernet header. */
86 memset(buf, 0xff, 6); /* destination MAC addr */
87 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
88 *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
90 /* RARP header. */
91 *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
92 *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
93 *(buf + 18) = 6; /* hardware addr length (ethernet) */
94 *(buf + 19) = 4; /* protocol addr length (IPv4) */
95 *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
96 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
97 memset(buf + 28, 0x00, 4); /* source protocol addr */
98 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
99 memset(buf + 38, 0x00, 4); /* target protocol addr */
101 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
102 memset(buf + 42, 0x00, 18);
104 return 60; /* len (FCS will be added by hardware) */
107 static void qemu_announce_self_iter(NICState *nic, void *opaque)
109 uint8_t buf[60];
110 int len;
112 trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr));
113 len = announce_self_create(buf, nic->conf->macaddr.a);
115 qemu_send_packet_raw(qemu_get_queue(nic), buf, len);
119 static void qemu_announce_self_once(void *opaque)
121 static int count = SELF_ANNOUNCE_ROUNDS;
122 QEMUTimer *timer = *(QEMUTimer **)opaque;
124 qemu_foreach_nic(qemu_announce_self_iter, NULL);
126 if (--count) {
127 /* delay 50ms, 150ms, 250ms, ... */
128 timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) +
129 self_announce_delay(count));
130 } else {
131 timer_del(timer);
132 timer_free(timer);
136 void qemu_announce_self(void)
138 static QEMUTimer *timer;
139 timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer);
140 qemu_announce_self_once(&timer);
143 /***********************************************************/
144 /* savevm/loadvm support */
146 static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
147 int64_t pos)
149 int ret;
150 QEMUIOVector qiov;
152 qemu_iovec_init_external(&qiov, iov, iovcnt);
153 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
154 if (ret < 0) {
155 return ret;
158 return qiov.size;
161 static ssize_t block_put_buffer(void *opaque, const uint8_t *buf,
162 int64_t pos, size_t size)
164 bdrv_save_vmstate(opaque, buf, pos, size);
165 return size;
168 static ssize_t block_get_buffer(void *opaque, uint8_t *buf, int64_t pos,
169 size_t size)
171 return bdrv_load_vmstate(opaque, buf, pos, size);
174 static int bdrv_fclose(void *opaque)
176 return bdrv_flush(opaque);
179 static const QEMUFileOps bdrv_read_ops = {
180 .get_buffer = block_get_buffer,
181 .close = bdrv_fclose
184 static const QEMUFileOps bdrv_write_ops = {
185 .put_buffer = block_put_buffer,
186 .writev_buffer = block_writev_buffer,
187 .close = bdrv_fclose
190 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
192 if (is_writable) {
193 return qemu_fopen_ops(bs, &bdrv_write_ops);
195 return qemu_fopen_ops(bs, &bdrv_read_ops);
199 /* QEMUFile timer support.
200 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
203 void timer_put(QEMUFile *f, QEMUTimer *ts)
205 uint64_t expire_time;
207 expire_time = timer_expire_time_ns(ts);
208 qemu_put_be64(f, expire_time);
211 void timer_get(QEMUFile *f, QEMUTimer *ts)
213 uint64_t expire_time;
215 expire_time = qemu_get_be64(f);
216 if (expire_time != -1) {
217 timer_mod_ns(ts, expire_time);
218 } else {
219 timer_del(ts);
224 /* VMState timer support.
225 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
228 static int get_timer(QEMUFile *f, void *pv, size_t size)
230 QEMUTimer *v = pv;
231 timer_get(f, v);
232 return 0;
235 static void put_timer(QEMUFile *f, void *pv, size_t size)
237 QEMUTimer *v = pv;
238 timer_put(f, v);
241 const VMStateInfo vmstate_info_timer = {
242 .name = "timer",
243 .get = get_timer,
244 .put = put_timer,
248 typedef struct CompatEntry {
249 char idstr[256];
250 int instance_id;
251 } CompatEntry;
253 typedef struct SaveStateEntry {
254 QTAILQ_ENTRY(SaveStateEntry) entry;
255 char idstr[256];
256 int instance_id;
257 int alias_id;
258 int version_id;
259 int section_id;
260 SaveVMHandlers *ops;
261 const VMStateDescription *vmsd;
262 void *opaque;
263 CompatEntry *compat;
264 int is_ram;
265 } SaveStateEntry;
267 typedef struct SaveState {
268 QTAILQ_HEAD(, SaveStateEntry) handlers;
269 int global_section_id;
270 bool skip_configuration;
271 uint32_t len;
272 const char *name;
273 } SaveState;
275 static SaveState savevm_state = {
276 .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
277 .global_section_id = 0,
278 .skip_configuration = false,
281 void savevm_skip_configuration(void)
283 savevm_state.skip_configuration = true;
287 static void configuration_pre_save(void *opaque)
289 SaveState *state = opaque;
290 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
292 state->len = strlen(current_name);
293 state->name = current_name;
296 static int configuration_post_load(void *opaque, int version_id)
298 SaveState *state = opaque;
299 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
301 if (strncmp(state->name, current_name, state->len) != 0) {
302 error_report("Machine type received is '%s' and local is '%s'",
303 state->name, current_name);
304 return -EINVAL;
306 return 0;
309 static const VMStateDescription vmstate_configuration = {
310 .name = "configuration",
311 .version_id = 1,
312 .post_load = configuration_post_load,
313 .pre_save = configuration_pre_save,
314 .fields = (VMStateField[]) {
315 VMSTATE_UINT32(len, SaveState),
316 VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, 0, len),
317 VMSTATE_END_OF_LIST()
321 static void dump_vmstate_vmsd(FILE *out_file,
322 const VMStateDescription *vmsd, int indent,
323 bool is_subsection);
325 static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
326 int indent)
328 fprintf(out_file, "%*s{\n", indent, "");
329 indent += 2;
330 fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
331 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
332 field->version_id);
333 fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
334 field->field_exists ? "true" : "false");
335 fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
336 if (field->vmsd != NULL) {
337 fprintf(out_file, ",\n");
338 dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
340 fprintf(out_file, "\n%*s}", indent - 2, "");
343 static void dump_vmstate_vmss(FILE *out_file,
344 const VMStateDescription **subsection,
345 int indent)
347 if (*subsection != NULL) {
348 dump_vmstate_vmsd(out_file, *subsection, indent, true);
352 static void dump_vmstate_vmsd(FILE *out_file,
353 const VMStateDescription *vmsd, int indent,
354 bool is_subsection)
356 if (is_subsection) {
357 fprintf(out_file, "%*s{\n", indent, "");
358 } else {
359 fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
361 indent += 2;
362 fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
363 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
364 vmsd->version_id);
365 fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
366 vmsd->minimum_version_id);
367 if (vmsd->fields != NULL) {
368 const VMStateField *field = vmsd->fields;
369 bool first;
371 fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
372 first = true;
373 while (field->name != NULL) {
374 if (field->flags & VMS_MUST_EXIST) {
375 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
376 field++;
377 continue;
379 if (!first) {
380 fprintf(out_file, ",\n");
382 dump_vmstate_vmsf(out_file, field, indent + 2);
383 field++;
384 first = false;
386 fprintf(out_file, "\n%*s]", indent, "");
388 if (vmsd->subsections != NULL) {
389 const VMStateDescription **subsection = vmsd->subsections;
390 bool first;
392 fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
393 first = true;
394 while (*subsection != NULL) {
395 if (!first) {
396 fprintf(out_file, ",\n");
398 dump_vmstate_vmss(out_file, subsection, indent + 2);
399 subsection++;
400 first = false;
402 fprintf(out_file, "\n%*s]", indent, "");
404 fprintf(out_file, "\n%*s}", indent - 2, "");
407 static void dump_machine_type(FILE *out_file)
409 MachineClass *mc;
411 mc = MACHINE_GET_CLASS(current_machine);
413 fprintf(out_file, " \"vmschkmachine\": {\n");
414 fprintf(out_file, " \"Name\": \"%s\"\n", mc->name);
415 fprintf(out_file, " },\n");
418 void dump_vmstate_json_to_file(FILE *out_file)
420 GSList *list, *elt;
421 bool first;
423 fprintf(out_file, "{\n");
424 dump_machine_type(out_file);
426 first = true;
427 list = object_class_get_list(TYPE_DEVICE, true);
428 for (elt = list; elt; elt = elt->next) {
429 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
430 TYPE_DEVICE);
431 const char *name;
432 int indent = 2;
434 if (!dc->vmsd) {
435 continue;
438 if (!first) {
439 fprintf(out_file, ",\n");
441 name = object_class_get_name(OBJECT_CLASS(dc));
442 fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
443 indent += 2;
444 fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
445 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
446 dc->vmsd->version_id);
447 fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
448 dc->vmsd->minimum_version_id);
450 dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
452 fprintf(out_file, "\n%*s}", indent - 2, "");
453 first = false;
455 fprintf(out_file, "\n}\n");
456 fclose(out_file);
459 static int calculate_new_instance_id(const char *idstr)
461 SaveStateEntry *se;
462 int instance_id = 0;
464 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
465 if (strcmp(idstr, se->idstr) == 0
466 && instance_id <= se->instance_id) {
467 instance_id = se->instance_id + 1;
470 return instance_id;
473 static int calculate_compat_instance_id(const char *idstr)
475 SaveStateEntry *se;
476 int instance_id = 0;
478 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
479 if (!se->compat) {
480 continue;
483 if (strcmp(idstr, se->compat->idstr) == 0
484 && instance_id <= se->compat->instance_id) {
485 instance_id = se->compat->instance_id + 1;
488 return instance_id;
491 /* TODO: Individual devices generally have very little idea about the rest
492 of the system, so instance_id should be removed/replaced.
493 Meanwhile pass -1 as instance_id if you do not already have a clearly
494 distinguishing id for all instances of your device class. */
495 int register_savevm_live(DeviceState *dev,
496 const char *idstr,
497 int instance_id,
498 int version_id,
499 SaveVMHandlers *ops,
500 void *opaque)
502 SaveStateEntry *se;
504 se = g_new0(SaveStateEntry, 1);
505 se->version_id = version_id;
506 se->section_id = savevm_state.global_section_id++;
507 se->ops = ops;
508 se->opaque = opaque;
509 se->vmsd = NULL;
510 /* if this is a live_savem then set is_ram */
511 if (ops->save_live_setup != NULL) {
512 se->is_ram = 1;
515 if (dev) {
516 char *id = qdev_get_dev_path(dev);
517 if (id) {
518 pstrcpy(se->idstr, sizeof(se->idstr), id);
519 pstrcat(se->idstr, sizeof(se->idstr), "/");
520 g_free(id);
522 se->compat = g_new0(CompatEntry, 1);
523 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
524 se->compat->instance_id = instance_id == -1 ?
525 calculate_compat_instance_id(idstr) : instance_id;
526 instance_id = -1;
529 pstrcat(se->idstr, sizeof(se->idstr), idstr);
531 if (instance_id == -1) {
532 se->instance_id = calculate_new_instance_id(se->idstr);
533 } else {
534 se->instance_id = instance_id;
536 assert(!se->compat || se->instance_id == 0);
537 /* add at the end of list */
538 QTAILQ_INSERT_TAIL(&savevm_state.handlers, se, entry);
539 return 0;
542 int register_savevm(DeviceState *dev,
543 const char *idstr,
544 int instance_id,
545 int version_id,
546 SaveStateHandler *save_state,
547 LoadStateHandler *load_state,
548 void *opaque)
550 SaveVMHandlers *ops = g_new0(SaveVMHandlers, 1);
551 ops->save_state = save_state;
552 ops->load_state = load_state;
553 return register_savevm_live(dev, idstr, instance_id, version_id,
554 ops, opaque);
557 void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
559 SaveStateEntry *se, *new_se;
560 char id[256] = "";
562 if (dev) {
563 char *path = qdev_get_dev_path(dev);
564 if (path) {
565 pstrcpy(id, sizeof(id), path);
566 pstrcat(id, sizeof(id), "/");
567 g_free(path);
570 pstrcat(id, sizeof(id), idstr);
572 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
573 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
574 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
575 g_free(se->compat);
576 g_free(se->ops);
577 g_free(se);
582 int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
583 const VMStateDescription *vmsd,
584 void *opaque, int alias_id,
585 int required_for_version)
587 SaveStateEntry *se;
589 /* If this triggers, alias support can be dropped for the vmsd. */
590 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
592 se = g_new0(SaveStateEntry, 1);
593 se->version_id = vmsd->version_id;
594 se->section_id = savevm_state.global_section_id++;
595 se->opaque = opaque;
596 se->vmsd = vmsd;
597 se->alias_id = alias_id;
599 if (dev) {
600 char *id = qdev_get_dev_path(dev);
601 if (id) {
602 pstrcpy(se->idstr, sizeof(se->idstr), id);
603 pstrcat(se->idstr, sizeof(se->idstr), "/");
604 g_free(id);
606 se->compat = g_new0(CompatEntry, 1);
607 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
608 se->compat->instance_id = instance_id == -1 ?
609 calculate_compat_instance_id(vmsd->name) : instance_id;
610 instance_id = -1;
613 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
615 if (instance_id == -1) {
616 se->instance_id = calculate_new_instance_id(se->idstr);
617 } else {
618 se->instance_id = instance_id;
620 assert(!se->compat || se->instance_id == 0);
621 /* add at the end of list */
622 QTAILQ_INSERT_TAIL(&savevm_state.handlers, se, entry);
623 return 0;
626 void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
627 void *opaque)
629 SaveStateEntry *se, *new_se;
631 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
632 if (se->vmsd == vmsd && se->opaque == opaque) {
633 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
634 g_free(se->compat);
635 g_free(se);
640 static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
642 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
643 if (!se->vmsd) { /* Old style */
644 return se->ops->load_state(f, se->opaque, version_id);
646 return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
649 static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
651 int64_t old_offset, size;
653 old_offset = qemu_ftell_fast(f);
654 se->ops->save_state(f, se->opaque);
655 size = qemu_ftell_fast(f) - old_offset;
657 if (vmdesc) {
658 json_prop_int(vmdesc, "size", size);
659 json_start_array(vmdesc, "fields");
660 json_start_object(vmdesc, NULL);
661 json_prop_str(vmdesc, "name", "data");
662 json_prop_int(vmdesc, "size", size);
663 json_prop_str(vmdesc, "type", "buffer");
664 json_end_object(vmdesc);
665 json_end_array(vmdesc);
669 static void vmstate_save(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
671 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
672 if (!se->vmsd) {
673 vmstate_save_old_style(f, se, vmdesc);
674 return;
676 vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
679 void savevm_skip_section_footers(void)
681 skip_section_footers = true;
685 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
687 static void save_section_header(QEMUFile *f, SaveStateEntry *se,
688 uint8_t section_type)
690 qemu_put_byte(f, section_type);
691 qemu_put_be32(f, se->section_id);
693 if (section_type == QEMU_VM_SECTION_FULL ||
694 section_type == QEMU_VM_SECTION_START) {
695 /* ID string */
696 size_t len = strlen(se->idstr);
697 qemu_put_byte(f, len);
698 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
700 qemu_put_be32(f, se->instance_id);
701 qemu_put_be32(f, se->version_id);
706 * Write a footer onto device sections that catches cases misformatted device
707 * sections.
709 static void save_section_footer(QEMUFile *f, SaveStateEntry *se)
711 if (!skip_section_footers) {
712 qemu_put_byte(f, QEMU_VM_SECTION_FOOTER);
713 qemu_put_be32(f, se->section_id);
718 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
719 * command and associated data.
721 * @f: File to send command on
722 * @command: Command type to send
723 * @len: Length of associated data
724 * @data: Data associated with command.
726 void qemu_savevm_command_send(QEMUFile *f,
727 enum qemu_vm_cmd command,
728 uint16_t len,
729 uint8_t *data)
731 trace_savevm_command_send(command, len);
732 qemu_put_byte(f, QEMU_VM_COMMAND);
733 qemu_put_be16(f, (uint16_t)command);
734 qemu_put_be16(f, len);
735 qemu_put_buffer(f, data, len);
736 qemu_fflush(f);
739 void qemu_savevm_send_ping(QEMUFile *f, uint32_t value)
741 uint32_t buf;
743 trace_savevm_send_ping(value);
744 buf = cpu_to_be32(value);
745 qemu_savevm_command_send(f, MIG_CMD_PING, sizeof(value), (uint8_t *)&buf);
748 void qemu_savevm_send_open_return_path(QEMUFile *f)
750 trace_savevm_send_open_return_path();
751 qemu_savevm_command_send(f, MIG_CMD_OPEN_RETURN_PATH, 0, NULL);
754 /* We have a buffer of data to send; we don't want that all to be loaded
755 * by the command itself, so the command contains just the length of the
756 * extra buffer that we then send straight after it.
757 * TODO: Must be a better way to organise that
759 * Returns:
760 * 0 on success
761 * -ve on error
763 int qemu_savevm_send_packaged(QEMUFile *f, const QEMUSizedBuffer *qsb)
765 size_t cur_iov;
766 size_t len = qsb_get_length(qsb);
767 uint32_t tmp;
769 if (len > MAX_VM_CMD_PACKAGED_SIZE) {
770 error_report("%s: Unreasonably large packaged state: %zu",
771 __func__, len);
772 return -1;
775 tmp = cpu_to_be32(len);
777 trace_qemu_savevm_send_packaged();
778 qemu_savevm_command_send(f, MIG_CMD_PACKAGED, 4, (uint8_t *)&tmp);
780 /* all the data follows (concatinating the iov's) */
781 for (cur_iov = 0; cur_iov < qsb->n_iov; cur_iov++) {
782 /* The iov entries are partially filled */
783 size_t towrite = MIN(qsb->iov[cur_iov].iov_len, len);
784 len -= towrite;
786 if (!towrite) {
787 break;
790 qemu_put_buffer(f, qsb->iov[cur_iov].iov_base, towrite);
793 return 0;
796 /* Send prior to any postcopy transfer */
797 void qemu_savevm_send_postcopy_advise(QEMUFile *f)
799 uint64_t tmp[2];
800 tmp[0] = cpu_to_be64(getpagesize());
801 tmp[1] = cpu_to_be64(1ul << qemu_target_page_bits());
803 trace_qemu_savevm_send_postcopy_advise();
804 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE, 16, (uint8_t *)tmp);
807 /* Sent prior to starting the destination running in postcopy, discard pages
808 * that have already been sent but redirtied on the source.
809 * CMD_POSTCOPY_RAM_DISCARD consist of:
810 * byte version (0)
811 * byte Length of name field (not including 0)
812 * n x byte RAM block name
813 * byte 0 terminator (just for safety)
814 * n x Byte ranges within the named RAMBlock
815 * be64 Start of the range
816 * be64 Length
818 * name: RAMBlock name that these entries are part of
819 * len: Number of page entries
820 * start_list: 'len' addresses
821 * length_list: 'len' addresses
824 void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name,
825 uint16_t len,
826 uint64_t *start_list,
827 uint64_t *length_list)
829 uint8_t *buf;
830 uint16_t tmplen;
831 uint16_t t;
832 size_t name_len = strlen(name);
834 trace_qemu_savevm_send_postcopy_ram_discard(name, len);
835 assert(name_len < 256);
836 buf = g_malloc0(1 + 1 + name_len + 1 + (8 + 8) * len);
837 buf[0] = postcopy_ram_discard_version;
838 buf[1] = name_len;
839 memcpy(buf + 2, name, name_len);
840 tmplen = 2 + name_len;
841 buf[tmplen++] = '\0';
843 for (t = 0; t < len; t++) {
844 cpu_to_be64w((uint64_t *)(buf + tmplen), start_list[t]);
845 tmplen += 8;
846 cpu_to_be64w((uint64_t *)(buf + tmplen), length_list[t]);
847 tmplen += 8;
849 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RAM_DISCARD, tmplen, buf);
850 g_free(buf);
853 /* Get the destination into a state where it can receive postcopy data. */
854 void qemu_savevm_send_postcopy_listen(QEMUFile *f)
856 trace_savevm_send_postcopy_listen();
857 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_LISTEN, 0, NULL);
860 /* Kick the destination into running */
861 void qemu_savevm_send_postcopy_run(QEMUFile *f)
863 trace_savevm_send_postcopy_run();
864 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RUN, 0, NULL);
867 bool qemu_savevm_state_blocked(Error **errp)
869 SaveStateEntry *se;
871 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
872 if (se->vmsd && se->vmsd->unmigratable) {
873 error_setg(errp, "State blocked by non-migratable device '%s'",
874 se->idstr);
875 return true;
878 return false;
881 void qemu_savevm_state_header(QEMUFile *f)
883 trace_savevm_state_header();
884 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
885 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
887 if (!savevm_state.skip_configuration) {
888 qemu_put_byte(f, QEMU_VM_CONFIGURATION);
889 vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0);
894 void qemu_savevm_state_begin(QEMUFile *f,
895 const MigrationParams *params)
897 SaveStateEntry *se;
898 int ret;
900 trace_savevm_state_begin();
901 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
902 if (!se->ops || !se->ops->set_params) {
903 continue;
905 se->ops->set_params(params, se->opaque);
908 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
909 if (!se->ops || !se->ops->save_live_setup) {
910 continue;
912 if (se->ops && se->ops->is_active) {
913 if (!se->ops->is_active(se->opaque)) {
914 continue;
917 save_section_header(f, se, QEMU_VM_SECTION_START);
919 ret = se->ops->save_live_setup(f, se->opaque);
920 save_section_footer(f, se);
921 if (ret < 0) {
922 qemu_file_set_error(f, ret);
923 break;
929 * this function has three return values:
930 * negative: there was one error, and we have -errno.
931 * 0 : We haven't finished, caller have to go again
932 * 1 : We have finished, we can go to complete phase
934 int qemu_savevm_state_iterate(QEMUFile *f)
936 SaveStateEntry *se;
937 int ret = 1;
939 trace_savevm_state_iterate();
940 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
941 if (!se->ops || !se->ops->save_live_iterate) {
942 continue;
944 if (se->ops && se->ops->is_active) {
945 if (!se->ops->is_active(se->opaque)) {
946 continue;
949 if (qemu_file_rate_limit(f)) {
950 return 0;
952 trace_savevm_section_start(se->idstr, se->section_id);
954 save_section_header(f, se, QEMU_VM_SECTION_PART);
956 ret = se->ops->save_live_iterate(f, se->opaque);
957 trace_savevm_section_end(se->idstr, se->section_id, ret);
958 save_section_footer(f, se);
960 if (ret < 0) {
961 qemu_file_set_error(f, ret);
963 if (ret <= 0) {
964 /* Do not proceed to the next vmstate before this one reported
965 completion of the current stage. This serializes the migration
966 and reduces the probability that a faster changing state is
967 synchronized over and over again. */
968 break;
971 return ret;
974 static bool should_send_vmdesc(void)
976 MachineState *machine = MACHINE(qdev_get_machine());
977 bool in_postcopy = migration_in_postcopy(migrate_get_current());
978 return !machine->suppress_vmdesc && !in_postcopy;
982 * Calls the save_live_complete_postcopy methods
983 * causing the last few pages to be sent immediately and doing any associated
984 * cleanup.
985 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
986 * all the other devices, but that happens at the point we switch to postcopy.
988 void qemu_savevm_state_complete_postcopy(QEMUFile *f)
990 SaveStateEntry *se;
991 int ret;
993 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
994 if (!se->ops || !se->ops->save_live_complete_postcopy) {
995 continue;
997 if (se->ops && se->ops->is_active) {
998 if (!se->ops->is_active(se->opaque)) {
999 continue;
1002 trace_savevm_section_start(se->idstr, se->section_id);
1003 /* Section type */
1004 qemu_put_byte(f, QEMU_VM_SECTION_END);
1005 qemu_put_be32(f, se->section_id);
1007 ret = se->ops->save_live_complete_postcopy(f, se->opaque);
1008 trace_savevm_section_end(se->idstr, se->section_id, ret);
1009 save_section_footer(f, se);
1010 if (ret < 0) {
1011 qemu_file_set_error(f, ret);
1012 return;
1016 qemu_put_byte(f, QEMU_VM_EOF);
1017 qemu_fflush(f);
1020 void qemu_savevm_state_complete_precopy(QEMUFile *f)
1022 QJSON *vmdesc;
1023 int vmdesc_len;
1024 SaveStateEntry *se;
1025 int ret;
1026 bool in_postcopy = migration_in_postcopy(migrate_get_current());
1028 trace_savevm_state_complete_precopy();
1030 cpu_synchronize_all_states();
1032 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1033 if (!se->ops ||
1034 (in_postcopy && se->ops->save_live_complete_postcopy) ||
1035 !se->ops->save_live_complete_precopy) {
1036 continue;
1038 if (se->ops && se->ops->is_active) {
1039 if (!se->ops->is_active(se->opaque)) {
1040 continue;
1043 trace_savevm_section_start(se->idstr, se->section_id);
1045 save_section_header(f, se, QEMU_VM_SECTION_END);
1047 ret = se->ops->save_live_complete_precopy(f, se->opaque);
1048 trace_savevm_section_end(se->idstr, se->section_id, ret);
1049 save_section_footer(f, se);
1050 if (ret < 0) {
1051 qemu_file_set_error(f, ret);
1052 return;
1056 vmdesc = qjson_new();
1057 json_prop_int(vmdesc, "page_size", TARGET_PAGE_SIZE);
1058 json_start_array(vmdesc, "devices");
1059 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1061 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1062 continue;
1064 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1065 trace_savevm_section_skip(se->idstr, se->section_id);
1066 continue;
1069 trace_savevm_section_start(se->idstr, se->section_id);
1071 json_start_object(vmdesc, NULL);
1072 json_prop_str(vmdesc, "name", se->idstr);
1073 json_prop_int(vmdesc, "instance_id", se->instance_id);
1075 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1077 vmstate_save(f, se, vmdesc);
1079 json_end_object(vmdesc);
1080 trace_savevm_section_end(se->idstr, se->section_id, 0);
1081 save_section_footer(f, se);
1084 if (!in_postcopy) {
1085 /* Postcopy stream will still be going */
1086 qemu_put_byte(f, QEMU_VM_EOF);
1089 json_end_array(vmdesc);
1090 qjson_finish(vmdesc);
1091 vmdesc_len = strlen(qjson_get_str(vmdesc));
1093 if (should_send_vmdesc()) {
1094 qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
1095 qemu_put_be32(f, vmdesc_len);
1096 qemu_put_buffer(f, (uint8_t *)qjson_get_str(vmdesc), vmdesc_len);
1098 object_unref(OBJECT(vmdesc));
1100 qemu_fflush(f);
1103 /* Give an estimate of the amount left to be transferred,
1104 * the result is split into the amount for units that can and
1105 * for units that can't do postcopy.
1107 void qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size,
1108 uint64_t *res_non_postcopiable,
1109 uint64_t *res_postcopiable)
1111 SaveStateEntry *se;
1113 *res_non_postcopiable = 0;
1114 *res_postcopiable = 0;
1117 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1118 if (!se->ops || !se->ops->save_live_pending) {
1119 continue;
1121 if (se->ops && se->ops->is_active) {
1122 if (!se->ops->is_active(se->opaque)) {
1123 continue;
1126 se->ops->save_live_pending(f, se->opaque, max_size,
1127 res_non_postcopiable, res_postcopiable);
1131 void qemu_savevm_state_cleanup(void)
1133 SaveStateEntry *se;
1135 trace_savevm_state_cleanup();
1136 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1137 if (se->ops && se->ops->cleanup) {
1138 se->ops->cleanup(se->opaque);
1143 static int qemu_savevm_state(QEMUFile *f, Error **errp)
1145 int ret;
1146 MigrationParams params = {
1147 .blk = 0,
1148 .shared = 0
1150 MigrationState *ms = migrate_init(&params);
1151 ms->file = f;
1153 if (qemu_savevm_state_blocked(errp)) {
1154 return -EINVAL;
1157 qemu_mutex_unlock_iothread();
1158 qemu_savevm_state_header(f);
1159 qemu_savevm_state_begin(f, &params);
1160 qemu_mutex_lock_iothread();
1162 while (qemu_file_get_error(f) == 0) {
1163 if (qemu_savevm_state_iterate(f) > 0) {
1164 break;
1168 ret = qemu_file_get_error(f);
1169 if (ret == 0) {
1170 qemu_savevm_state_complete_precopy(f);
1171 ret = qemu_file_get_error(f);
1173 if (ret != 0) {
1174 qemu_savevm_state_cleanup();
1175 error_setg_errno(errp, -ret, "Error while writing VM state");
1177 return ret;
1180 static int qemu_save_device_state(QEMUFile *f)
1182 SaveStateEntry *se;
1184 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1185 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1187 cpu_synchronize_all_states();
1189 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1190 if (se->is_ram) {
1191 continue;
1193 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1194 continue;
1196 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1197 continue;
1200 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1202 vmstate_save(f, se, NULL);
1204 save_section_footer(f, se);
1207 qemu_put_byte(f, QEMU_VM_EOF);
1209 return qemu_file_get_error(f);
1212 static SaveStateEntry *find_se(const char *idstr, int instance_id)
1214 SaveStateEntry *se;
1216 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1217 if (!strcmp(se->idstr, idstr) &&
1218 (instance_id == se->instance_id ||
1219 instance_id == se->alias_id))
1220 return se;
1221 /* Migrating from an older version? */
1222 if (strstr(se->idstr, idstr) && se->compat) {
1223 if (!strcmp(se->compat->idstr, idstr) &&
1224 (instance_id == se->compat->instance_id ||
1225 instance_id == se->alias_id))
1226 return se;
1229 return NULL;
1232 enum LoadVMExitCodes {
1233 /* Allow a command to quit all layers of nested loadvm loops */
1234 LOADVM_QUIT = 1,
1237 static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis);
1239 /* ------ incoming postcopy messages ------ */
1240 /* 'advise' arrives before any transfers just to tell us that a postcopy
1241 * *might* happen - it might be skipped if precopy transferred everything
1242 * quickly.
1244 static int loadvm_postcopy_handle_advise(MigrationIncomingState *mis)
1246 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1247 uint64_t remote_hps, remote_tps;
1249 trace_loadvm_postcopy_handle_advise();
1250 if (ps != POSTCOPY_INCOMING_NONE) {
1251 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps);
1252 return -1;
1255 if (!postcopy_ram_supported_by_host()) {
1256 return -1;
1259 remote_hps = qemu_get_be64(mis->from_src_file);
1260 if (remote_hps != getpagesize()) {
1262 * Some combinations of mismatch are probably possible but it gets
1263 * a bit more complicated. In particular we need to place whole
1264 * host pages on the dest at once, and we need to ensure that we
1265 * handle dirtying to make sure we never end up sending part of
1266 * a hostpage on it's own.
1268 error_report("Postcopy needs matching host page sizes (s=%d d=%d)",
1269 (int)remote_hps, getpagesize());
1270 return -1;
1273 remote_tps = qemu_get_be64(mis->from_src_file);
1274 if (remote_tps != (1ul << qemu_target_page_bits())) {
1276 * Again, some differences could be dealt with, but for now keep it
1277 * simple.
1279 error_report("Postcopy needs matching target page sizes (s=%d d=%d)",
1280 (int)remote_tps, 1 << qemu_target_page_bits());
1281 return -1;
1284 if (ram_postcopy_incoming_init(mis)) {
1285 return -1;
1288 postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1290 return 0;
1293 /* After postcopy we will be told to throw some pages away since they're
1294 * dirty and will have to be demand fetched. Must happen before CPU is
1295 * started.
1296 * There can be 0..many of these messages, each encoding multiple pages.
1298 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
1299 uint16_t len)
1301 int tmp;
1302 char ramid[256];
1303 PostcopyState ps = postcopy_state_get();
1305 trace_loadvm_postcopy_ram_handle_discard();
1307 switch (ps) {
1308 case POSTCOPY_INCOMING_ADVISE:
1309 /* 1st discard */
1310 tmp = 0; /* TODO: later patch postcopy_ram_prepare_discard(mis); */
1311 if (tmp) {
1312 return tmp;
1314 break;
1316 case POSTCOPY_INCOMING_DISCARD:
1317 /* Expected state */
1318 break;
1320 default:
1321 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1322 ps);
1323 return -1;
1325 /* We're expecting a
1326 * Version (0)
1327 * a RAM ID string (length byte, name, 0 term)
1328 * then at least 1 16 byte chunk
1330 if (len < (1 + 1 + 1 + 1 + 2 * 8)) {
1331 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1332 return -1;
1335 tmp = qemu_get_byte(mis->from_src_file);
1336 if (tmp != postcopy_ram_discard_version) {
1337 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp);
1338 return -1;
1341 if (!qemu_get_counted_string(mis->from_src_file, ramid)) {
1342 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1343 return -1;
1345 tmp = qemu_get_byte(mis->from_src_file);
1346 if (tmp != 0) {
1347 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp);
1348 return -1;
1351 len -= 3 + strlen(ramid);
1352 if (len % 16) {
1353 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1354 return -1;
1356 trace_loadvm_postcopy_ram_handle_discard_header(ramid, len);
1357 while (len) {
1358 uint64_t start_addr, block_length;
1359 start_addr = qemu_get_be64(mis->from_src_file);
1360 block_length = qemu_get_be64(mis->from_src_file);
1362 len -= 16;
1363 int ret = ram_discard_range(mis, ramid, start_addr,
1364 block_length);
1365 if (ret) {
1366 return ret;
1369 trace_loadvm_postcopy_ram_handle_discard_end();
1371 return 0;
1374 /* After this message we must be able to immediately receive postcopy data */
1375 static int loadvm_postcopy_handle_listen(MigrationIncomingState *mis)
1377 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_LISTENING);
1378 trace_loadvm_postcopy_handle_listen();
1379 if (ps != POSTCOPY_INCOMING_ADVISE && ps != POSTCOPY_INCOMING_DISCARD) {
1380 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps);
1381 return -1;
1385 * Sensitise RAM - can now generate requests for blocks that don't exist
1386 * However, at this point the CPU shouldn't be running, and the IO
1387 * shouldn't be doing anything yet so don't actually expect requests
1389 if (postcopy_ram_enable_notify(mis)) {
1390 return -1;
1393 /* TODO start up the postcopy listening thread */
1394 return 0;
1397 /* After all discards we can start running and asking for pages */
1398 static int loadvm_postcopy_handle_run(MigrationIncomingState *mis)
1400 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_RUNNING);
1401 trace_loadvm_postcopy_handle_run();
1402 if (ps != POSTCOPY_INCOMING_LISTENING) {
1403 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps);
1404 return -1;
1407 if (autostart) {
1408 /* Hold onto your hats, starting the CPU */
1409 vm_start();
1410 } else {
1411 /* leave it paused and let management decide when to start the CPU */
1412 runstate_set(RUN_STATE_PAUSED);
1415 return 0;
1419 * Immediately following this command is a blob of data containing an embedded
1420 * chunk of migration stream; read it and load it.
1422 * @mis: Incoming state
1423 * @length: Length of packaged data to read
1425 * Returns: Negative values on error
1428 static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
1430 int ret;
1431 uint8_t *buffer;
1432 uint32_t length;
1433 QEMUSizedBuffer *qsb;
1435 length = qemu_get_be32(mis->from_src_file);
1436 trace_loadvm_handle_cmd_packaged(length);
1438 if (length > MAX_VM_CMD_PACKAGED_SIZE) {
1439 error_report("Unreasonably large packaged state: %u", length);
1440 return -1;
1442 buffer = g_malloc0(length);
1443 ret = qemu_get_buffer(mis->from_src_file, buffer, (int)length);
1444 if (ret != length) {
1445 g_free(buffer);
1446 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%d\n",
1447 ret, length);
1448 return (ret < 0) ? ret : -EAGAIN;
1450 trace_loadvm_handle_cmd_packaged_received(ret);
1452 /* Setup a dummy QEMUFile that actually reads from the buffer */
1453 qsb = qsb_create(buffer, length);
1454 g_free(buffer); /* Because qsb_create copies */
1455 if (!qsb) {
1456 error_report("Unable to create qsb");
1458 QEMUFile *packf = qemu_bufopen("r", qsb);
1460 ret = qemu_loadvm_state_main(packf, mis);
1461 trace_loadvm_handle_cmd_packaged_main(ret);
1462 qemu_fclose(packf);
1463 qsb_free(qsb);
1465 return ret;
1469 * Process an incoming 'QEMU_VM_COMMAND'
1470 * 0 just a normal return
1471 * LOADVM_QUIT All good, but exit the loop
1472 * <0 Error
1474 static int loadvm_process_command(QEMUFile *f)
1476 MigrationIncomingState *mis = migration_incoming_get_current();
1477 uint16_t cmd;
1478 uint16_t len;
1479 uint32_t tmp32;
1481 cmd = qemu_get_be16(f);
1482 len = qemu_get_be16(f);
1484 trace_loadvm_process_command(cmd, len);
1485 if (cmd >= MIG_CMD_MAX || cmd == MIG_CMD_INVALID) {
1486 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd, len);
1487 return -EINVAL;
1490 if (mig_cmd_args[cmd].len != -1 && mig_cmd_args[cmd].len != len) {
1491 error_report("%s received with bad length - expecting %zu, got %d",
1492 mig_cmd_args[cmd].name,
1493 (size_t)mig_cmd_args[cmd].len, len);
1494 return -ERANGE;
1497 switch (cmd) {
1498 case MIG_CMD_OPEN_RETURN_PATH:
1499 if (mis->to_src_file) {
1500 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
1501 /* Not really a problem, so don't give up */
1502 return 0;
1504 mis->to_src_file = qemu_file_get_return_path(f);
1505 if (!mis->to_src_file) {
1506 error_report("CMD_OPEN_RETURN_PATH failed");
1507 return -1;
1509 break;
1511 case MIG_CMD_PING:
1512 tmp32 = qemu_get_be32(f);
1513 trace_loadvm_process_command_ping(tmp32);
1514 if (!mis->to_src_file) {
1515 error_report("CMD_PING (0x%x) received with no return path",
1516 tmp32);
1517 return -1;
1519 migrate_send_rp_pong(mis, tmp32);
1520 break;
1522 case MIG_CMD_PACKAGED:
1523 return loadvm_handle_cmd_packaged(mis);
1525 case MIG_CMD_POSTCOPY_ADVISE:
1526 return loadvm_postcopy_handle_advise(mis);
1528 case MIG_CMD_POSTCOPY_LISTEN:
1529 return loadvm_postcopy_handle_listen(mis);
1531 case MIG_CMD_POSTCOPY_RUN:
1532 return loadvm_postcopy_handle_run(mis);
1534 case MIG_CMD_POSTCOPY_RAM_DISCARD:
1535 return loadvm_postcopy_ram_handle_discard(mis, len);
1538 return 0;
1541 struct LoadStateEntry {
1542 QLIST_ENTRY(LoadStateEntry) entry;
1543 SaveStateEntry *se;
1544 int section_id;
1545 int version_id;
1549 * Read a footer off the wire and check that it matches the expected section
1551 * Returns: true if the footer was good
1552 * false if there is a problem (and calls error_report to say why)
1554 static bool check_section_footer(QEMUFile *f, LoadStateEntry *le)
1556 uint8_t read_mark;
1557 uint32_t read_section_id;
1559 if (skip_section_footers) {
1560 /* No footer to check */
1561 return true;
1564 read_mark = qemu_get_byte(f);
1566 if (read_mark != QEMU_VM_SECTION_FOOTER) {
1567 error_report("Missing section footer for %s", le->se->idstr);
1568 return false;
1571 read_section_id = qemu_get_be32(f);
1572 if (read_section_id != le->section_id) {
1573 error_report("Mismatched section id in footer for %s -"
1574 " read 0x%x expected 0x%x",
1575 le->se->idstr, read_section_id, le->section_id);
1576 return false;
1579 /* All good */
1580 return true;
1583 void loadvm_free_handlers(MigrationIncomingState *mis)
1585 LoadStateEntry *le, *new_le;
1587 QLIST_FOREACH_SAFE(le, &mis->loadvm_handlers, entry, new_le) {
1588 QLIST_REMOVE(le, entry);
1589 g_free(le);
1593 static int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
1595 uint8_t section_type;
1596 int ret;
1598 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
1599 uint32_t instance_id, version_id, section_id;
1600 SaveStateEntry *se;
1601 LoadStateEntry *le;
1602 char idstr[256];
1604 trace_qemu_loadvm_state_section(section_type);
1605 switch (section_type) {
1606 case QEMU_VM_SECTION_START:
1607 case QEMU_VM_SECTION_FULL:
1608 /* Read section start */
1609 section_id = qemu_get_be32(f);
1610 if (!qemu_get_counted_string(f, idstr)) {
1611 error_report("Unable to read ID string for section %u",
1612 section_id);
1613 return -EINVAL;
1615 instance_id = qemu_get_be32(f);
1616 version_id = qemu_get_be32(f);
1618 trace_qemu_loadvm_state_section_startfull(section_id, idstr,
1619 instance_id, version_id);
1620 /* Find savevm section */
1621 se = find_se(idstr, instance_id);
1622 if (se == NULL) {
1623 error_report("Unknown savevm section or instance '%s' %d",
1624 idstr, instance_id);
1625 return -EINVAL;
1628 /* Validate version */
1629 if (version_id > se->version_id) {
1630 error_report("savevm: unsupported version %d for '%s' v%d",
1631 version_id, idstr, se->version_id);
1632 return -EINVAL;
1635 /* Add entry */
1636 le = g_malloc0(sizeof(*le));
1638 le->se = se;
1639 le->section_id = section_id;
1640 le->version_id = version_id;
1641 QLIST_INSERT_HEAD(&mis->loadvm_handlers, le, entry);
1643 ret = vmstate_load(f, le->se, le->version_id);
1644 if (ret < 0) {
1645 error_report("error while loading state for instance 0x%x of"
1646 " device '%s'", instance_id, idstr);
1647 return ret;
1649 if (!check_section_footer(f, le)) {
1650 return -EINVAL;
1652 break;
1653 case QEMU_VM_SECTION_PART:
1654 case QEMU_VM_SECTION_END:
1655 section_id = qemu_get_be32(f);
1657 trace_qemu_loadvm_state_section_partend(section_id);
1658 QLIST_FOREACH(le, &mis->loadvm_handlers, entry) {
1659 if (le->section_id == section_id) {
1660 break;
1663 if (le == NULL) {
1664 error_report("Unknown savevm section %d", section_id);
1665 return -EINVAL;
1668 ret = vmstate_load(f, le->se, le->version_id);
1669 if (ret < 0) {
1670 error_report("error while loading state section id %d(%s)",
1671 section_id, le->se->idstr);
1672 return ret;
1674 if (!check_section_footer(f, le)) {
1675 return -EINVAL;
1677 break;
1678 case QEMU_VM_COMMAND:
1679 ret = loadvm_process_command(f);
1680 trace_qemu_loadvm_state_section_command(ret);
1681 if ((ret < 0) || (ret & LOADVM_QUIT)) {
1682 return ret;
1684 break;
1685 default:
1686 error_report("Unknown savevm section type %d", section_type);
1687 return -EINVAL;
1691 return 0;
1694 int qemu_loadvm_state(QEMUFile *f)
1696 MigrationIncomingState *mis = migration_incoming_get_current();
1697 Error *local_err = NULL;
1698 unsigned int v;
1699 int ret;
1701 if (qemu_savevm_state_blocked(&local_err)) {
1702 error_report_err(local_err);
1703 return -EINVAL;
1706 v = qemu_get_be32(f);
1707 if (v != QEMU_VM_FILE_MAGIC) {
1708 error_report("Not a migration stream");
1709 return -EINVAL;
1712 v = qemu_get_be32(f);
1713 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
1714 error_report("SaveVM v2 format is obsolete and don't work anymore");
1715 return -ENOTSUP;
1717 if (v != QEMU_VM_FILE_VERSION) {
1718 error_report("Unsupported migration stream version");
1719 return -ENOTSUP;
1722 if (!savevm_state.skip_configuration) {
1723 if (qemu_get_byte(f) != QEMU_VM_CONFIGURATION) {
1724 error_report("Configuration section missing");
1725 return -EINVAL;
1727 ret = vmstate_load_state(f, &vmstate_configuration, &savevm_state, 0);
1729 if (ret) {
1730 return ret;
1734 ret = qemu_loadvm_state_main(f, mis);
1735 qemu_event_set(&mis->main_thread_load_event);
1737 trace_qemu_loadvm_state_post_main(ret);
1739 if (ret == 0) {
1740 ret = qemu_file_get_error(f);
1744 * Try to read in the VMDESC section as well, so that dumping tools that
1745 * intercept our migration stream have the chance to see it.
1748 /* We've got to be careful; if we don't read the data and just shut the fd
1749 * then the sender can error if we close while it's still sending.
1750 * We also mustn't read data that isn't there; some transports (RDMA)
1751 * will stall waiting for that data when the source has already closed.
1753 if (ret == 0 && should_send_vmdesc()) {
1754 uint8_t *buf;
1755 uint32_t size;
1756 uint8_t section_type = qemu_get_byte(f);
1758 if (section_type != QEMU_VM_VMDESCRIPTION) {
1759 error_report("Expected vmdescription section, but got %d",
1760 section_type);
1762 * It doesn't seem worth failing at this point since
1763 * we apparently have an otherwise valid VM state
1765 } else {
1766 buf = g_malloc(0x1000);
1767 size = qemu_get_be32(f);
1769 while (size > 0) {
1770 uint32_t read_chunk = MIN(size, 0x1000);
1771 qemu_get_buffer(f, buf, read_chunk);
1772 size -= read_chunk;
1774 g_free(buf);
1778 cpu_synchronize_all_post_init();
1780 return ret;
1783 static BlockDriverState *find_vmstate_bs(void)
1785 BlockDriverState *bs = NULL;
1786 while ((bs = bdrv_next(bs))) {
1787 if (bdrv_can_snapshot(bs)) {
1788 return bs;
1791 return NULL;
1795 * Deletes snapshots of a given name in all opened images.
1797 static int del_existing_snapshots(Monitor *mon, const char *name)
1799 BlockDriverState *bs;
1800 QEMUSnapshotInfo sn1, *snapshot = &sn1;
1801 Error *err = NULL;
1803 bs = NULL;
1804 while ((bs = bdrv_next(bs))) {
1805 if (bdrv_can_snapshot(bs) &&
1806 bdrv_snapshot_find(bs, snapshot, name) >= 0) {
1807 bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
1808 if (err) {
1809 monitor_printf(mon,
1810 "Error while deleting snapshot on device '%s':"
1811 " %s\n",
1812 bdrv_get_device_name(bs),
1813 error_get_pretty(err));
1814 error_free(err);
1815 return -1;
1820 return 0;
1823 void hmp_savevm(Monitor *mon, const QDict *qdict)
1825 BlockDriverState *bs, *bs1;
1826 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
1827 int ret;
1828 QEMUFile *f;
1829 int saved_vm_running;
1830 uint64_t vm_state_size;
1831 qemu_timeval tv;
1832 struct tm tm;
1833 const char *name = qdict_get_try_str(qdict, "name");
1834 Error *local_err = NULL;
1836 /* Verify if there is a device that doesn't support snapshots and is writable */
1837 bs = NULL;
1838 while ((bs = bdrv_next(bs))) {
1840 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
1841 continue;
1844 if (!bdrv_can_snapshot(bs)) {
1845 monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
1846 bdrv_get_device_name(bs));
1847 return;
1851 bs = find_vmstate_bs();
1852 if (!bs) {
1853 monitor_printf(mon, "No block device can accept snapshots\n");
1854 return;
1857 saved_vm_running = runstate_is_running();
1859 ret = global_state_store();
1860 if (ret) {
1861 monitor_printf(mon, "Error saving global state\n");
1862 return;
1864 vm_stop(RUN_STATE_SAVE_VM);
1866 memset(sn, 0, sizeof(*sn));
1868 /* fill auxiliary fields */
1869 qemu_gettimeofday(&tv);
1870 sn->date_sec = tv.tv_sec;
1871 sn->date_nsec = tv.tv_usec * 1000;
1872 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
1874 if (name) {
1875 ret = bdrv_snapshot_find(bs, old_sn, name);
1876 if (ret >= 0) {
1877 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
1878 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
1879 } else {
1880 pstrcpy(sn->name, sizeof(sn->name), name);
1882 } else {
1883 /* cast below needed for OpenBSD where tv_sec is still 'long' */
1884 localtime_r((const time_t *)&tv.tv_sec, &tm);
1885 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
1888 /* Delete old snapshots of the same name */
1889 if (name && del_existing_snapshots(mon, name) < 0) {
1890 goto the_end;
1893 /* save the VM state */
1894 f = qemu_fopen_bdrv(bs, 1);
1895 if (!f) {
1896 monitor_printf(mon, "Could not open VM state file\n");
1897 goto the_end;
1899 ret = qemu_savevm_state(f, &local_err);
1900 vm_state_size = qemu_ftell(f);
1901 qemu_fclose(f);
1902 if (ret < 0) {
1903 monitor_printf(mon, "%s\n", error_get_pretty(local_err));
1904 error_free(local_err);
1905 goto the_end;
1908 /* create the snapshots */
1910 bs1 = NULL;
1911 while ((bs1 = bdrv_next(bs1))) {
1912 if (bdrv_can_snapshot(bs1)) {
1913 /* Write VM state size only to the image that contains the state */
1914 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
1915 ret = bdrv_snapshot_create(bs1, sn);
1916 if (ret < 0) {
1917 monitor_printf(mon, "Error while creating snapshot on '%s'\n",
1918 bdrv_get_device_name(bs1));
1923 the_end:
1924 if (saved_vm_running) {
1925 vm_start();
1929 void qmp_xen_save_devices_state(const char *filename, Error **errp)
1931 QEMUFile *f;
1932 int saved_vm_running;
1933 int ret;
1935 saved_vm_running = runstate_is_running();
1936 vm_stop(RUN_STATE_SAVE_VM);
1937 global_state_store_running();
1939 f = qemu_fopen(filename, "wb");
1940 if (!f) {
1941 error_setg_file_open(errp, errno, filename);
1942 goto the_end;
1944 ret = qemu_save_device_state(f);
1945 qemu_fclose(f);
1946 if (ret < 0) {
1947 error_setg(errp, QERR_IO_ERROR);
1950 the_end:
1951 if (saved_vm_running) {
1952 vm_start();
1956 int load_vmstate(const char *name)
1958 BlockDriverState *bs, *bs_vm_state;
1959 QEMUSnapshotInfo sn;
1960 QEMUFile *f;
1961 int ret;
1963 bs_vm_state = find_vmstate_bs();
1964 if (!bs_vm_state) {
1965 error_report("No block device supports snapshots");
1966 return -ENOTSUP;
1969 /* Don't even try to load empty VM states */
1970 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
1971 if (ret < 0) {
1972 return ret;
1973 } else if (sn.vm_state_size == 0) {
1974 error_report("This is a disk-only snapshot. Revert to it offline "
1975 "using qemu-img.");
1976 return -EINVAL;
1979 /* Verify if there is any device that doesn't support snapshots and is
1980 writable and check if the requested snapshot is available too. */
1981 bs = NULL;
1982 while ((bs = bdrv_next(bs))) {
1984 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
1985 continue;
1988 if (!bdrv_can_snapshot(bs)) {
1989 error_report("Device '%s' is writable but does not support snapshots.",
1990 bdrv_get_device_name(bs));
1991 return -ENOTSUP;
1994 ret = bdrv_snapshot_find(bs, &sn, name);
1995 if (ret < 0) {
1996 error_report("Device '%s' does not have the requested snapshot '%s'",
1997 bdrv_get_device_name(bs), name);
1998 return ret;
2002 /* Flush all IO requests so they don't interfere with the new state. */
2003 bdrv_drain_all();
2005 bs = NULL;
2006 while ((bs = bdrv_next(bs))) {
2007 if (bdrv_can_snapshot(bs)) {
2008 ret = bdrv_snapshot_goto(bs, name);
2009 if (ret < 0) {
2010 error_report("Error %d while activating snapshot '%s' on '%s'",
2011 ret, name, bdrv_get_device_name(bs));
2012 return ret;
2017 /* restore the VM state */
2018 f = qemu_fopen_bdrv(bs_vm_state, 0);
2019 if (!f) {
2020 error_report("Could not open VM state file");
2021 return -EINVAL;
2024 qemu_system_reset(VMRESET_SILENT);
2025 migration_incoming_state_new(f);
2026 ret = qemu_loadvm_state(f);
2028 qemu_fclose(f);
2029 migration_incoming_state_destroy();
2030 if (ret < 0) {
2031 error_report("Error %d while loading VM state", ret);
2032 return ret;
2035 return 0;
2038 void hmp_delvm(Monitor *mon, const QDict *qdict)
2040 BlockDriverState *bs;
2041 Error *err;
2042 const char *name = qdict_get_str(qdict, "name");
2044 if (!find_vmstate_bs()) {
2045 monitor_printf(mon, "No block device supports snapshots\n");
2046 return;
2049 bs = NULL;
2050 while ((bs = bdrv_next(bs))) {
2051 if (bdrv_can_snapshot(bs)) {
2052 err = NULL;
2053 bdrv_snapshot_delete_by_id_or_name(bs, name, &err);
2054 if (err) {
2055 monitor_printf(mon,
2056 "Error while deleting snapshot on device '%s':"
2057 " %s\n",
2058 bdrv_get_device_name(bs),
2059 error_get_pretty(err));
2060 error_free(err);
2066 void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
2068 BlockDriverState *bs, *bs1;
2069 QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
2070 int nb_sns, i, ret, available;
2071 int total;
2072 int *available_snapshots;
2074 bs = find_vmstate_bs();
2075 if (!bs) {
2076 monitor_printf(mon, "No available block device supports snapshots\n");
2077 return;
2080 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2081 if (nb_sns < 0) {
2082 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
2083 return;
2086 if (nb_sns == 0) {
2087 monitor_printf(mon, "There is no snapshot available.\n");
2088 return;
2091 available_snapshots = g_new0(int, nb_sns);
2092 total = 0;
2093 for (i = 0; i < nb_sns; i++) {
2094 sn = &sn_tab[i];
2095 available = 1;
2096 bs1 = NULL;
2098 while ((bs1 = bdrv_next(bs1))) {
2099 if (bdrv_can_snapshot(bs1) && bs1 != bs) {
2100 ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
2101 if (ret < 0) {
2102 available = 0;
2103 break;
2108 if (available) {
2109 available_snapshots[total] = i;
2110 total++;
2114 if (total > 0) {
2115 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
2116 monitor_printf(mon, "\n");
2117 for (i = 0; i < total; i++) {
2118 sn = &sn_tab[available_snapshots[i]];
2119 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
2120 monitor_printf(mon, "\n");
2122 } else {
2123 monitor_printf(mon, "There is no suitable snapshot available\n");
2126 g_free(sn_tab);
2127 g_free(available_snapshots);
2131 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2133 qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
2134 memory_region_name(mr), dev);
2137 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2139 qemu_ram_unset_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK);
2142 void vmstate_register_ram_global(MemoryRegion *mr)
2144 vmstate_register_ram(mr, NULL);