]> git.proxmox.com Git - mirror_qemu.git/blob - migration/savevm.c
migration/postcopy: enable random order target page arrival
[mirror_qemu.git] / migration / savevm.c
1 /*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2009-2015 Red Hat Inc
6 *
7 * Authors:
8 * Juan Quintela <quintela@redhat.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
27 */
28
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/vmstate.h"
36 #include "migration/misc.h"
37 #include "migration/register.h"
38 #include "migration/global_state.h"
39 #include "ram.h"
40 #include "qemu-file-channel.h"
41 #include "qemu-file.h"
42 #include "savevm.h"
43 #include "postcopy-ram.h"
44 #include "qapi/error.h"
45 #include "qapi/qapi-commands-migration.h"
46 #include "qapi/qapi-commands-misc.h"
47 #include "qapi/qmp/qerror.h"
48 #include "qemu/error-report.h"
49 #include "sysemu/cpus.h"
50 #include "exec/memory.h"
51 #include "exec/target_page.h"
52 #include "trace.h"
53 #include "qemu/iov.h"
54 #include "qemu/main-loop.h"
55 #include "block/snapshot.h"
56 #include "qemu/cutils.h"
57 #include "io/channel-buffer.h"
58 #include "io/channel-file.h"
59 #include "sysemu/replay.h"
60 #include "sysemu/runstate.h"
61 #include "sysemu/sysemu.h"
62 #include "qjson.h"
63 #include "migration/colo.h"
64 #include "qemu/bitmap.h"
65 #include "net/announce.h"
66
67 const unsigned int postcopy_ram_discard_version = 0;
68
69 /* Subcommands for QEMU_VM_COMMAND */
70 enum qemu_vm_cmd {
71 MIG_CMD_INVALID = 0, /* Must be 0 */
72 MIG_CMD_OPEN_RETURN_PATH, /* Tell the dest to open the Return path */
73 MIG_CMD_PING, /* Request a PONG on the RP */
74
75 MIG_CMD_POSTCOPY_ADVISE, /* Prior to any page transfers, just
76 warn we might want to do PC */
77 MIG_CMD_POSTCOPY_LISTEN, /* Start listening for incoming
78 pages as it's running. */
79 MIG_CMD_POSTCOPY_RUN, /* Start execution */
80
81 MIG_CMD_POSTCOPY_RAM_DISCARD, /* A list of pages to discard that
82 were previously sent during
83 precopy but are dirty. */
84 MIG_CMD_PACKAGED, /* Send a wrapped stream within this stream */
85 MIG_CMD_ENABLE_COLO, /* Enable COLO */
86 MIG_CMD_POSTCOPY_RESUME, /* resume postcopy on dest */
87 MIG_CMD_RECV_BITMAP, /* Request for recved bitmap on dst */
88 MIG_CMD_MAX
89 };
90
91 #define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
92 static struct mig_cmd_args {
93 ssize_t len; /* -1 = variable */
94 const char *name;
95 } mig_cmd_args[] = {
96 [MIG_CMD_INVALID] = { .len = -1, .name = "INVALID" },
97 [MIG_CMD_OPEN_RETURN_PATH] = { .len = 0, .name = "OPEN_RETURN_PATH" },
98 [MIG_CMD_PING] = { .len = sizeof(uint32_t), .name = "PING" },
99 [MIG_CMD_POSTCOPY_ADVISE] = { .len = -1, .name = "POSTCOPY_ADVISE" },
100 [MIG_CMD_POSTCOPY_LISTEN] = { .len = 0, .name = "POSTCOPY_LISTEN" },
101 [MIG_CMD_POSTCOPY_RUN] = { .len = 0, .name = "POSTCOPY_RUN" },
102 [MIG_CMD_POSTCOPY_RAM_DISCARD] = {
103 .len = -1, .name = "POSTCOPY_RAM_DISCARD" },
104 [MIG_CMD_POSTCOPY_RESUME] = { .len = 0, .name = "POSTCOPY_RESUME" },
105 [MIG_CMD_PACKAGED] = { .len = 4, .name = "PACKAGED" },
106 [MIG_CMD_RECV_BITMAP] = { .len = -1, .name = "RECV_BITMAP" },
107 [MIG_CMD_MAX] = { .len = -1, .name = "MAX" },
108 };
109
110 /* Note for MIG_CMD_POSTCOPY_ADVISE:
111 * The format of arguments is depending on postcopy mode:
112 * - postcopy RAM only
113 * uint64_t host page size
114 * uint64_t taget page size
115 *
116 * - postcopy RAM and postcopy dirty bitmaps
117 * format is the same as for postcopy RAM only
118 *
119 * - postcopy dirty bitmaps only
120 * Nothing. Command length field is 0.
121 *
122 * Be careful: adding a new postcopy entity with some other parameters should
123 * not break format self-description ability. Good way is to introduce some
124 * generic extendable format with an exception for two old entities.
125 */
126
127 /***********************************************************/
128 /* savevm/loadvm support */
129
130 static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
131 int64_t pos, Error **errp)
132 {
133 int ret;
134 QEMUIOVector qiov;
135
136 qemu_iovec_init_external(&qiov, iov, iovcnt);
137 ret = bdrv_writev_vmstate(opaque, &qiov, pos);
138 if (ret < 0) {
139 return ret;
140 }
141
142 return qiov.size;
143 }
144
145 static ssize_t block_get_buffer(void *opaque, uint8_t *buf, int64_t pos,
146 size_t size, Error **errp)
147 {
148 return bdrv_load_vmstate(opaque, buf, pos, size);
149 }
150
151 static int bdrv_fclose(void *opaque, Error **errp)
152 {
153 return bdrv_flush(opaque);
154 }
155
156 static const QEMUFileOps bdrv_read_ops = {
157 .get_buffer = block_get_buffer,
158 .close = bdrv_fclose
159 };
160
161 static const QEMUFileOps bdrv_write_ops = {
162 .writev_buffer = block_writev_buffer,
163 .close = bdrv_fclose
164 };
165
166 static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
167 {
168 if (is_writable) {
169 return qemu_fopen_ops(bs, &bdrv_write_ops);
170 }
171 return qemu_fopen_ops(bs, &bdrv_read_ops);
172 }
173
174
175 /* QEMUFile timer support.
176 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
177 */
178
179 void timer_put(QEMUFile *f, QEMUTimer *ts)
180 {
181 uint64_t expire_time;
182
183 expire_time = timer_expire_time_ns(ts);
184 qemu_put_be64(f, expire_time);
185 }
186
187 void timer_get(QEMUFile *f, QEMUTimer *ts)
188 {
189 uint64_t expire_time;
190
191 expire_time = qemu_get_be64(f);
192 if (expire_time != -1) {
193 timer_mod_ns(ts, expire_time);
194 } else {
195 timer_del(ts);
196 }
197 }
198
199
200 /* VMState timer support.
201 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
202 */
203
204 static int get_timer(QEMUFile *f, void *pv, size_t size,
205 const VMStateField *field)
206 {
207 QEMUTimer *v = pv;
208 timer_get(f, v);
209 return 0;
210 }
211
212 static int put_timer(QEMUFile *f, void *pv, size_t size,
213 const VMStateField *field, QJSON *vmdesc)
214 {
215 QEMUTimer *v = pv;
216 timer_put(f, v);
217
218 return 0;
219 }
220
221 const VMStateInfo vmstate_info_timer = {
222 .name = "timer",
223 .get = get_timer,
224 .put = put_timer,
225 };
226
227
228 typedef struct CompatEntry {
229 char idstr[256];
230 int instance_id;
231 } CompatEntry;
232
233 typedef struct SaveStateEntry {
234 QTAILQ_ENTRY(SaveStateEntry) entry;
235 char idstr[256];
236 int instance_id;
237 int alias_id;
238 int version_id;
239 /* version id read from the stream */
240 int load_version_id;
241 int section_id;
242 /* section id read from the stream */
243 int load_section_id;
244 const SaveVMHandlers *ops;
245 const VMStateDescription *vmsd;
246 void *opaque;
247 CompatEntry *compat;
248 int is_ram;
249 } SaveStateEntry;
250
251 typedef struct SaveState {
252 QTAILQ_HEAD(, SaveStateEntry) handlers;
253 SaveStateEntry *handler_pri_head[MIG_PRI_MAX + 1];
254 int global_section_id;
255 uint32_t len;
256 const char *name;
257 uint32_t target_page_bits;
258 uint32_t caps_count;
259 MigrationCapability *capabilities;
260 QemuUUID uuid;
261 } SaveState;
262
263 static SaveState savevm_state = {
264 .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
265 .handler_pri_head = { [MIG_PRI_DEFAULT ... MIG_PRI_MAX] = NULL },
266 .global_section_id = 0,
267 };
268
269 static bool should_validate_capability(int capability)
270 {
271 assert(capability >= 0 && capability < MIGRATION_CAPABILITY__MAX);
272 /* Validate only new capabilities to keep compatibility. */
273 switch (capability) {
274 case MIGRATION_CAPABILITY_X_IGNORE_SHARED:
275 return true;
276 default:
277 return false;
278 }
279 }
280
281 static uint32_t get_validatable_capabilities_count(void)
282 {
283 MigrationState *s = migrate_get_current();
284 uint32_t result = 0;
285 int i;
286 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
287 if (should_validate_capability(i) && s->enabled_capabilities[i]) {
288 result++;
289 }
290 }
291 return result;
292 }
293
294 static int configuration_pre_save(void *opaque)
295 {
296 SaveState *state = opaque;
297 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
298 MigrationState *s = migrate_get_current();
299 int i, j;
300
301 state->len = strlen(current_name);
302 state->name = current_name;
303 state->target_page_bits = qemu_target_page_bits();
304
305 state->caps_count = get_validatable_capabilities_count();
306 state->capabilities = g_renew(MigrationCapability, state->capabilities,
307 state->caps_count);
308 for (i = j = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
309 if (should_validate_capability(i) && s->enabled_capabilities[i]) {
310 state->capabilities[j++] = i;
311 }
312 }
313 state->uuid = qemu_uuid;
314
315 return 0;
316 }
317
318 static int configuration_pre_load(void *opaque)
319 {
320 SaveState *state = opaque;
321
322 /* If there is no target-page-bits subsection it means the source
323 * predates the variable-target-page-bits support and is using the
324 * minimum possible value for this CPU.
325 */
326 state->target_page_bits = qemu_target_page_bits_min();
327 return 0;
328 }
329
330 static bool configuration_validate_capabilities(SaveState *state)
331 {
332 bool ret = true;
333 MigrationState *s = migrate_get_current();
334 unsigned long *source_caps_bm;
335 int i;
336
337 source_caps_bm = bitmap_new(MIGRATION_CAPABILITY__MAX);
338 for (i = 0; i < state->caps_count; i++) {
339 MigrationCapability capability = state->capabilities[i];
340 set_bit(capability, source_caps_bm);
341 }
342
343 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
344 bool source_state, target_state;
345 if (!should_validate_capability(i)) {
346 continue;
347 }
348 source_state = test_bit(i, source_caps_bm);
349 target_state = s->enabled_capabilities[i];
350 if (source_state != target_state) {
351 error_report("Capability %s is %s, but received capability is %s",
352 MigrationCapability_str(i),
353 target_state ? "on" : "off",
354 source_state ? "on" : "off");
355 ret = false;
356 /* Don't break here to report all failed capabilities */
357 }
358 }
359
360 g_free(source_caps_bm);
361 return ret;
362 }
363
364 static int configuration_post_load(void *opaque, int version_id)
365 {
366 SaveState *state = opaque;
367 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
368
369 if (strncmp(state->name, current_name, state->len) != 0) {
370 error_report("Machine type received is '%.*s' and local is '%s'",
371 (int) state->len, state->name, current_name);
372 return -EINVAL;
373 }
374
375 if (state->target_page_bits != qemu_target_page_bits()) {
376 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
377 state->target_page_bits, qemu_target_page_bits());
378 return -EINVAL;
379 }
380
381 if (!configuration_validate_capabilities(state)) {
382 return -EINVAL;
383 }
384
385 return 0;
386 }
387
388 static int get_capability(QEMUFile *f, void *pv, size_t size,
389 const VMStateField *field)
390 {
391 MigrationCapability *capability = pv;
392 char capability_str[UINT8_MAX + 1];
393 uint8_t len;
394 int i;
395
396 len = qemu_get_byte(f);
397 qemu_get_buffer(f, (uint8_t *)capability_str, len);
398 capability_str[len] = '\0';
399 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
400 if (!strcmp(MigrationCapability_str(i), capability_str)) {
401 *capability = i;
402 return 0;
403 }
404 }
405 error_report("Received unknown capability %s", capability_str);
406 return -EINVAL;
407 }
408
409 static int put_capability(QEMUFile *f, void *pv, size_t size,
410 const VMStateField *field, QJSON *vmdesc)
411 {
412 MigrationCapability *capability = pv;
413 const char *capability_str = MigrationCapability_str(*capability);
414 size_t len = strlen(capability_str);
415 assert(len <= UINT8_MAX);
416
417 qemu_put_byte(f, len);
418 qemu_put_buffer(f, (uint8_t *)capability_str, len);
419 return 0;
420 }
421
422 static const VMStateInfo vmstate_info_capability = {
423 .name = "capability",
424 .get = get_capability,
425 .put = put_capability,
426 };
427
428 /* The target-page-bits subsection is present only if the
429 * target page size is not the same as the default (ie the
430 * minimum page size for a variable-page-size guest CPU).
431 * If it is present then it contains the actual target page
432 * bits for the machine, and migration will fail if the
433 * two ends don't agree about it.
434 */
435 static bool vmstate_target_page_bits_needed(void *opaque)
436 {
437 return qemu_target_page_bits()
438 > qemu_target_page_bits_min();
439 }
440
441 static const VMStateDescription vmstate_target_page_bits = {
442 .name = "configuration/target-page-bits",
443 .version_id = 1,
444 .minimum_version_id = 1,
445 .needed = vmstate_target_page_bits_needed,
446 .fields = (VMStateField[]) {
447 VMSTATE_UINT32(target_page_bits, SaveState),
448 VMSTATE_END_OF_LIST()
449 }
450 };
451
452 static bool vmstate_capabilites_needed(void *opaque)
453 {
454 return get_validatable_capabilities_count() > 0;
455 }
456
457 static const VMStateDescription vmstate_capabilites = {
458 .name = "configuration/capabilities",
459 .version_id = 1,
460 .minimum_version_id = 1,
461 .needed = vmstate_capabilites_needed,
462 .fields = (VMStateField[]) {
463 VMSTATE_UINT32_V(caps_count, SaveState, 1),
464 VMSTATE_VARRAY_UINT32_ALLOC(capabilities, SaveState, caps_count, 1,
465 vmstate_info_capability,
466 MigrationCapability),
467 VMSTATE_END_OF_LIST()
468 }
469 };
470
471 static bool vmstate_uuid_needed(void *opaque)
472 {
473 return qemu_uuid_set && migrate_validate_uuid();
474 }
475
476 static int vmstate_uuid_post_load(void *opaque, int version_id)
477 {
478 SaveState *state = opaque;
479 char uuid_src[UUID_FMT_LEN + 1];
480 char uuid_dst[UUID_FMT_LEN + 1];
481
482 if (!qemu_uuid_set) {
483 /*
484 * It's warning because user might not know UUID in some cases,
485 * e.g. load an old snapshot
486 */
487 qemu_uuid_unparse(&state->uuid, uuid_src);
488 warn_report("UUID is received %s, but local uuid isn't set",
489 uuid_src);
490 return 0;
491 }
492 if (!qemu_uuid_is_equal(&state->uuid, &qemu_uuid)) {
493 qemu_uuid_unparse(&state->uuid, uuid_src);
494 qemu_uuid_unparse(&qemu_uuid, uuid_dst);
495 error_report("UUID received is %s and local is %s", uuid_src, uuid_dst);
496 return -EINVAL;
497 }
498 return 0;
499 }
500
501 static const VMStateDescription vmstate_uuid = {
502 .name = "configuration/uuid",
503 .version_id = 1,
504 .minimum_version_id = 1,
505 .needed = vmstate_uuid_needed,
506 .post_load = vmstate_uuid_post_load,
507 .fields = (VMStateField[]) {
508 VMSTATE_UINT8_ARRAY_V(uuid.data, SaveState, sizeof(QemuUUID), 1),
509 VMSTATE_END_OF_LIST()
510 }
511 };
512
513 static const VMStateDescription vmstate_configuration = {
514 .name = "configuration",
515 .version_id = 1,
516 .pre_load = configuration_pre_load,
517 .post_load = configuration_post_load,
518 .pre_save = configuration_pre_save,
519 .fields = (VMStateField[]) {
520 VMSTATE_UINT32(len, SaveState),
521 VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, len),
522 VMSTATE_END_OF_LIST()
523 },
524 .subsections = (const VMStateDescription*[]) {
525 &vmstate_target_page_bits,
526 &vmstate_capabilites,
527 &vmstate_uuid,
528 NULL
529 }
530 };
531
532 static void dump_vmstate_vmsd(FILE *out_file,
533 const VMStateDescription *vmsd, int indent,
534 bool is_subsection);
535
536 static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
537 int indent)
538 {
539 fprintf(out_file, "%*s{\n", indent, "");
540 indent += 2;
541 fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
542 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
543 field->version_id);
544 fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
545 field->field_exists ? "true" : "false");
546 fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
547 if (field->vmsd != NULL) {
548 fprintf(out_file, ",\n");
549 dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
550 }
551 fprintf(out_file, "\n%*s}", indent - 2, "");
552 }
553
554 static void dump_vmstate_vmss(FILE *out_file,
555 const VMStateDescription **subsection,
556 int indent)
557 {
558 if (*subsection != NULL) {
559 dump_vmstate_vmsd(out_file, *subsection, indent, true);
560 }
561 }
562
563 static void dump_vmstate_vmsd(FILE *out_file,
564 const VMStateDescription *vmsd, int indent,
565 bool is_subsection)
566 {
567 if (is_subsection) {
568 fprintf(out_file, "%*s{\n", indent, "");
569 } else {
570 fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
571 }
572 indent += 2;
573 fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
574 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
575 vmsd->version_id);
576 fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
577 vmsd->minimum_version_id);
578 if (vmsd->fields != NULL) {
579 const VMStateField *field = vmsd->fields;
580 bool first;
581
582 fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
583 first = true;
584 while (field->name != NULL) {
585 if (field->flags & VMS_MUST_EXIST) {
586 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
587 field++;
588 continue;
589 }
590 if (!first) {
591 fprintf(out_file, ",\n");
592 }
593 dump_vmstate_vmsf(out_file, field, indent + 2);
594 field++;
595 first = false;
596 }
597 fprintf(out_file, "\n%*s]", indent, "");
598 }
599 if (vmsd->subsections != NULL) {
600 const VMStateDescription **subsection = vmsd->subsections;
601 bool first;
602
603 fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
604 first = true;
605 while (*subsection != NULL) {
606 if (!first) {
607 fprintf(out_file, ",\n");
608 }
609 dump_vmstate_vmss(out_file, subsection, indent + 2);
610 subsection++;
611 first = false;
612 }
613 fprintf(out_file, "\n%*s]", indent, "");
614 }
615 fprintf(out_file, "\n%*s}", indent - 2, "");
616 }
617
618 static void dump_machine_type(FILE *out_file)
619 {
620 MachineClass *mc;
621
622 mc = MACHINE_GET_CLASS(current_machine);
623
624 fprintf(out_file, " \"vmschkmachine\": {\n");
625 fprintf(out_file, " \"Name\": \"%s\"\n", mc->name);
626 fprintf(out_file, " },\n");
627 }
628
629 void dump_vmstate_json_to_file(FILE *out_file)
630 {
631 GSList *list, *elt;
632 bool first;
633
634 fprintf(out_file, "{\n");
635 dump_machine_type(out_file);
636
637 first = true;
638 list = object_class_get_list(TYPE_DEVICE, true);
639 for (elt = list; elt; elt = elt->next) {
640 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
641 TYPE_DEVICE);
642 const char *name;
643 int indent = 2;
644
645 if (!dc->vmsd) {
646 continue;
647 }
648
649 if (!first) {
650 fprintf(out_file, ",\n");
651 }
652 name = object_class_get_name(OBJECT_CLASS(dc));
653 fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
654 indent += 2;
655 fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
656 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
657 dc->vmsd->version_id);
658 fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
659 dc->vmsd->minimum_version_id);
660
661 dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
662
663 fprintf(out_file, "\n%*s}", indent - 2, "");
664 first = false;
665 }
666 fprintf(out_file, "\n}\n");
667 fclose(out_file);
668 }
669
670 static int calculate_new_instance_id(const char *idstr)
671 {
672 SaveStateEntry *se;
673 int instance_id = 0;
674
675 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
676 if (strcmp(idstr, se->idstr) == 0
677 && instance_id <= se->instance_id) {
678 instance_id = se->instance_id + 1;
679 }
680 }
681 return instance_id;
682 }
683
684 static int calculate_compat_instance_id(const char *idstr)
685 {
686 SaveStateEntry *se;
687 int instance_id = 0;
688
689 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
690 if (!se->compat) {
691 continue;
692 }
693
694 if (strcmp(idstr, se->compat->idstr) == 0
695 && instance_id <= se->compat->instance_id) {
696 instance_id = se->compat->instance_id + 1;
697 }
698 }
699 return instance_id;
700 }
701
702 static inline MigrationPriority save_state_priority(SaveStateEntry *se)
703 {
704 if (se->vmsd) {
705 return se->vmsd->priority;
706 }
707 return MIG_PRI_DEFAULT;
708 }
709
710 static void savevm_state_handler_insert(SaveStateEntry *nse)
711 {
712 MigrationPriority priority = save_state_priority(nse);
713 SaveStateEntry *se;
714 int i;
715
716 assert(priority <= MIG_PRI_MAX);
717
718 for (i = priority - 1; i >= 0; i--) {
719 se = savevm_state.handler_pri_head[i];
720 if (se != NULL) {
721 assert(save_state_priority(se) < priority);
722 break;
723 }
724 }
725
726 if (i >= 0) {
727 QTAILQ_INSERT_BEFORE(se, nse, entry);
728 } else {
729 QTAILQ_INSERT_TAIL(&savevm_state.handlers, nse, entry);
730 }
731
732 if (savevm_state.handler_pri_head[priority] == NULL) {
733 savevm_state.handler_pri_head[priority] = nse;
734 }
735 }
736
737 static void savevm_state_handler_remove(SaveStateEntry *se)
738 {
739 SaveStateEntry *next;
740 MigrationPriority priority = save_state_priority(se);
741
742 if (se == savevm_state.handler_pri_head[priority]) {
743 next = QTAILQ_NEXT(se, entry);
744 if (next != NULL && save_state_priority(next) == priority) {
745 savevm_state.handler_pri_head[priority] = next;
746 } else {
747 savevm_state.handler_pri_head[priority] = NULL;
748 }
749 }
750 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
751 }
752
753 /* TODO: Individual devices generally have very little idea about the rest
754 of the system, so instance_id should be removed/replaced.
755 Meanwhile pass -1 as instance_id if you do not already have a clearly
756 distinguishing id for all instances of your device class. */
757 int register_savevm_live(const char *idstr,
758 int instance_id,
759 int version_id,
760 const SaveVMHandlers *ops,
761 void *opaque)
762 {
763 SaveStateEntry *se;
764
765 se = g_new0(SaveStateEntry, 1);
766 se->version_id = version_id;
767 se->section_id = savevm_state.global_section_id++;
768 se->ops = ops;
769 se->opaque = opaque;
770 se->vmsd = NULL;
771 /* if this is a live_savem then set is_ram */
772 if (ops->save_setup != NULL) {
773 se->is_ram = 1;
774 }
775
776 pstrcat(se->idstr, sizeof(se->idstr), idstr);
777
778 if (instance_id == -1) {
779 se->instance_id = calculate_new_instance_id(se->idstr);
780 } else {
781 se->instance_id = instance_id;
782 }
783 assert(!se->compat || se->instance_id == 0);
784 savevm_state_handler_insert(se);
785 return 0;
786 }
787
788 void unregister_savevm(VMStateIf *obj, const char *idstr, void *opaque)
789 {
790 SaveStateEntry *se, *new_se;
791 char id[256] = "";
792
793 if (obj) {
794 char *oid = vmstate_if_get_id(obj);
795 if (oid) {
796 pstrcpy(id, sizeof(id), oid);
797 pstrcat(id, sizeof(id), "/");
798 g_free(oid);
799 }
800 }
801 pstrcat(id, sizeof(id), idstr);
802
803 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
804 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
805 savevm_state_handler_remove(se);
806 g_free(se->compat);
807 g_free(se);
808 }
809 }
810 }
811
812 int vmstate_register_with_alias_id(VMStateIf *obj, int instance_id,
813 const VMStateDescription *vmsd,
814 void *opaque, int alias_id,
815 int required_for_version,
816 Error **errp)
817 {
818 SaveStateEntry *se;
819
820 /* If this triggers, alias support can be dropped for the vmsd. */
821 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
822
823 se = g_new0(SaveStateEntry, 1);
824 se->version_id = vmsd->version_id;
825 se->section_id = savevm_state.global_section_id++;
826 se->opaque = opaque;
827 se->vmsd = vmsd;
828 se->alias_id = alias_id;
829
830 if (obj) {
831 char *id = vmstate_if_get_id(obj);
832 if (id) {
833 if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
834 sizeof(se->idstr)) {
835 error_setg(errp, "Path too long for VMState (%s)", id);
836 g_free(id);
837 g_free(se);
838
839 return -1;
840 }
841 g_free(id);
842
843 se->compat = g_new0(CompatEntry, 1);
844 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
845 se->compat->instance_id = instance_id == -1 ?
846 calculate_compat_instance_id(vmsd->name) : instance_id;
847 instance_id = -1;
848 }
849 }
850 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
851
852 if (instance_id == -1) {
853 se->instance_id = calculate_new_instance_id(se->idstr);
854 } else {
855 se->instance_id = instance_id;
856 }
857 assert(!se->compat || se->instance_id == 0);
858 savevm_state_handler_insert(se);
859 return 0;
860 }
861
862 void vmstate_unregister(VMStateIf *obj, const VMStateDescription *vmsd,
863 void *opaque)
864 {
865 SaveStateEntry *se, *new_se;
866
867 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
868 if (se->vmsd == vmsd && se->opaque == opaque) {
869 savevm_state_handler_remove(se);
870 g_free(se->compat);
871 g_free(se);
872 }
873 }
874 }
875
876 static int vmstate_load(QEMUFile *f, SaveStateEntry *se)
877 {
878 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
879 if (!se->vmsd) { /* Old style */
880 return se->ops->load_state(f, se->opaque, se->load_version_id);
881 }
882 return vmstate_load_state(f, se->vmsd, se->opaque, se->load_version_id);
883 }
884
885 static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
886 {
887 int64_t old_offset, size;
888
889 old_offset = qemu_ftell_fast(f);
890 se->ops->save_state(f, se->opaque);
891 size = qemu_ftell_fast(f) - old_offset;
892
893 if (vmdesc) {
894 json_prop_int(vmdesc, "size", size);
895 json_start_array(vmdesc, "fields");
896 json_start_object(vmdesc, NULL);
897 json_prop_str(vmdesc, "name", "data");
898 json_prop_int(vmdesc, "size", size);
899 json_prop_str(vmdesc, "type", "buffer");
900 json_end_object(vmdesc);
901 json_end_array(vmdesc);
902 }
903 }
904
905 static int vmstate_save(QEMUFile *f, SaveStateEntry *se, QJSON *vmdesc)
906 {
907 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
908 if (!se->vmsd) {
909 vmstate_save_old_style(f, se, vmdesc);
910 return 0;
911 }
912 return vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
913 }
914
915 /*
916 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
917 */
918 static void save_section_header(QEMUFile *f, SaveStateEntry *se,
919 uint8_t section_type)
920 {
921 qemu_put_byte(f, section_type);
922 qemu_put_be32(f, se->section_id);
923
924 if (section_type == QEMU_VM_SECTION_FULL ||
925 section_type == QEMU_VM_SECTION_START) {
926 /* ID string */
927 size_t len = strlen(se->idstr);
928 qemu_put_byte(f, len);
929 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
930
931 qemu_put_be32(f, se->instance_id);
932 qemu_put_be32(f, se->version_id);
933 }
934 }
935
936 /*
937 * Write a footer onto device sections that catches cases misformatted device
938 * sections.
939 */
940 static void save_section_footer(QEMUFile *f, SaveStateEntry *se)
941 {
942 if (migrate_get_current()->send_section_footer) {
943 qemu_put_byte(f, QEMU_VM_SECTION_FOOTER);
944 qemu_put_be32(f, se->section_id);
945 }
946 }
947
948 /**
949 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
950 * command and associated data.
951 *
952 * @f: File to send command on
953 * @command: Command type to send
954 * @len: Length of associated data
955 * @data: Data associated with command.
956 */
957 static void qemu_savevm_command_send(QEMUFile *f,
958 enum qemu_vm_cmd command,
959 uint16_t len,
960 uint8_t *data)
961 {
962 trace_savevm_command_send(command, len);
963 qemu_put_byte(f, QEMU_VM_COMMAND);
964 qemu_put_be16(f, (uint16_t)command);
965 qemu_put_be16(f, len);
966 qemu_put_buffer(f, data, len);
967 qemu_fflush(f);
968 }
969
970 void qemu_savevm_send_colo_enable(QEMUFile *f)
971 {
972 trace_savevm_send_colo_enable();
973 qemu_savevm_command_send(f, MIG_CMD_ENABLE_COLO, 0, NULL);
974 }
975
976 void qemu_savevm_send_ping(QEMUFile *f, uint32_t value)
977 {
978 uint32_t buf;
979
980 trace_savevm_send_ping(value);
981 buf = cpu_to_be32(value);
982 qemu_savevm_command_send(f, MIG_CMD_PING, sizeof(value), (uint8_t *)&buf);
983 }
984
985 void qemu_savevm_send_open_return_path(QEMUFile *f)
986 {
987 trace_savevm_send_open_return_path();
988 qemu_savevm_command_send(f, MIG_CMD_OPEN_RETURN_PATH, 0, NULL);
989 }
990
991 /* We have a buffer of data to send; we don't want that all to be loaded
992 * by the command itself, so the command contains just the length of the
993 * extra buffer that we then send straight after it.
994 * TODO: Must be a better way to organise that
995 *
996 * Returns:
997 * 0 on success
998 * -ve on error
999 */
1000 int qemu_savevm_send_packaged(QEMUFile *f, const uint8_t *buf, size_t len)
1001 {
1002 uint32_t tmp;
1003
1004 if (len > MAX_VM_CMD_PACKAGED_SIZE) {
1005 error_report("%s: Unreasonably large packaged state: %zu",
1006 __func__, len);
1007 return -1;
1008 }
1009
1010 tmp = cpu_to_be32(len);
1011
1012 trace_qemu_savevm_send_packaged();
1013 qemu_savevm_command_send(f, MIG_CMD_PACKAGED, 4, (uint8_t *)&tmp);
1014
1015 qemu_put_buffer(f, buf, len);
1016
1017 return 0;
1018 }
1019
1020 /* Send prior to any postcopy transfer */
1021 void qemu_savevm_send_postcopy_advise(QEMUFile *f)
1022 {
1023 if (migrate_postcopy_ram()) {
1024 uint64_t tmp[2];
1025 tmp[0] = cpu_to_be64(ram_pagesize_summary());
1026 tmp[1] = cpu_to_be64(qemu_target_page_size());
1027
1028 trace_qemu_savevm_send_postcopy_advise();
1029 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE,
1030 16, (uint8_t *)tmp);
1031 } else {
1032 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE, 0, NULL);
1033 }
1034 }
1035
1036 /* Sent prior to starting the destination running in postcopy, discard pages
1037 * that have already been sent but redirtied on the source.
1038 * CMD_POSTCOPY_RAM_DISCARD consist of:
1039 * byte version (0)
1040 * byte Length of name field (not including 0)
1041 * n x byte RAM block name
1042 * byte 0 terminator (just for safety)
1043 * n x Byte ranges within the named RAMBlock
1044 * be64 Start of the range
1045 * be64 Length
1046 *
1047 * name: RAMBlock name that these entries are part of
1048 * len: Number of page entries
1049 * start_list: 'len' addresses
1050 * length_list: 'len' addresses
1051 *
1052 */
1053 void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name,
1054 uint16_t len,
1055 uint64_t *start_list,
1056 uint64_t *length_list)
1057 {
1058 uint8_t *buf;
1059 uint16_t tmplen;
1060 uint16_t t;
1061 size_t name_len = strlen(name);
1062
1063 trace_qemu_savevm_send_postcopy_ram_discard(name, len);
1064 assert(name_len < 256);
1065 buf = g_malloc0(1 + 1 + name_len + 1 + (8 + 8) * len);
1066 buf[0] = postcopy_ram_discard_version;
1067 buf[1] = name_len;
1068 memcpy(buf + 2, name, name_len);
1069 tmplen = 2 + name_len;
1070 buf[tmplen++] = '\0';
1071
1072 for (t = 0; t < len; t++) {
1073 stq_be_p(buf + tmplen, start_list[t]);
1074 tmplen += 8;
1075 stq_be_p(buf + tmplen, length_list[t]);
1076 tmplen += 8;
1077 }
1078 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RAM_DISCARD, tmplen, buf);
1079 g_free(buf);
1080 }
1081
1082 /* Get the destination into a state where it can receive postcopy data. */
1083 void qemu_savevm_send_postcopy_listen(QEMUFile *f)
1084 {
1085 trace_savevm_send_postcopy_listen();
1086 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_LISTEN, 0, NULL);
1087 }
1088
1089 /* Kick the destination into running */
1090 void qemu_savevm_send_postcopy_run(QEMUFile *f)
1091 {
1092 trace_savevm_send_postcopy_run();
1093 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RUN, 0, NULL);
1094 }
1095
1096 void qemu_savevm_send_postcopy_resume(QEMUFile *f)
1097 {
1098 trace_savevm_send_postcopy_resume();
1099 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RESUME, 0, NULL);
1100 }
1101
1102 void qemu_savevm_send_recv_bitmap(QEMUFile *f, char *block_name)
1103 {
1104 size_t len;
1105 char buf[256];
1106
1107 trace_savevm_send_recv_bitmap(block_name);
1108
1109 buf[0] = len = strlen(block_name);
1110 memcpy(buf + 1, block_name, len);
1111
1112 qemu_savevm_command_send(f, MIG_CMD_RECV_BITMAP, len + 1, (uint8_t *)buf);
1113 }
1114
1115 bool qemu_savevm_state_blocked(Error **errp)
1116 {
1117 SaveStateEntry *se;
1118
1119 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1120 if (se->vmsd && se->vmsd->unmigratable) {
1121 error_setg(errp, "State blocked by non-migratable device '%s'",
1122 se->idstr);
1123 return true;
1124 }
1125 }
1126 return false;
1127 }
1128
1129 void qemu_savevm_state_header(QEMUFile *f)
1130 {
1131 trace_savevm_state_header();
1132 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1133 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1134
1135 if (migrate_get_current()->send_configuration) {
1136 qemu_put_byte(f, QEMU_VM_CONFIGURATION);
1137 vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0);
1138 }
1139 }
1140
1141 int qemu_savevm_nr_failover_devices(void)
1142 {
1143 SaveStateEntry *se;
1144 int n = 0;
1145
1146 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1147 if (se->vmsd && se->vmsd->dev_unplug_pending &&
1148 se->vmsd->dev_unplug_pending(se->opaque)) {
1149 n++;
1150 }
1151 }
1152
1153 return n;
1154 }
1155
1156 bool qemu_savevm_state_guest_unplug_pending(void)
1157 {
1158 SaveStateEntry *se;
1159 int n = 0;
1160
1161 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1162 if (!se->vmsd || !se->vmsd->dev_unplug_pending) {
1163 continue;
1164 }
1165 if (se->vmsd->dev_unplug_pending(se->opaque)) {
1166 n++;
1167 }
1168 }
1169
1170 return n > 0;
1171 }
1172
1173 void qemu_savevm_state_setup(QEMUFile *f)
1174 {
1175 SaveStateEntry *se;
1176 Error *local_err = NULL;
1177 int ret;
1178
1179 trace_savevm_state_setup();
1180 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1181 if (!se->ops || !se->ops->save_setup) {
1182 continue;
1183 }
1184 if (se->ops->is_active) {
1185 if (!se->ops->is_active(se->opaque)) {
1186 continue;
1187 }
1188 }
1189 save_section_header(f, se, QEMU_VM_SECTION_START);
1190
1191 ret = se->ops->save_setup(f, se->opaque);
1192 save_section_footer(f, se);
1193 if (ret < 0) {
1194 qemu_file_set_error(f, ret);
1195 break;
1196 }
1197 }
1198
1199 if (precopy_notify(PRECOPY_NOTIFY_SETUP, &local_err)) {
1200 error_report_err(local_err);
1201 }
1202 }
1203
1204 int qemu_savevm_state_resume_prepare(MigrationState *s)
1205 {
1206 SaveStateEntry *se;
1207 int ret;
1208
1209 trace_savevm_state_resume_prepare();
1210
1211 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1212 if (!se->ops || !se->ops->resume_prepare) {
1213 continue;
1214 }
1215 if (se->ops->is_active) {
1216 if (!se->ops->is_active(se->opaque)) {
1217 continue;
1218 }
1219 }
1220 ret = se->ops->resume_prepare(s, se->opaque);
1221 if (ret < 0) {
1222 return ret;
1223 }
1224 }
1225
1226 return 0;
1227 }
1228
1229 /*
1230 * this function has three return values:
1231 * negative: there was one error, and we have -errno.
1232 * 0 : We haven't finished, caller have to go again
1233 * 1 : We have finished, we can go to complete phase
1234 */
1235 int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy)
1236 {
1237 SaveStateEntry *se;
1238 int ret = 1;
1239
1240 trace_savevm_state_iterate();
1241 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1242 if (!se->ops || !se->ops->save_live_iterate) {
1243 continue;
1244 }
1245 if (se->ops->is_active &&
1246 !se->ops->is_active(se->opaque)) {
1247 continue;
1248 }
1249 if (se->ops->is_active_iterate &&
1250 !se->ops->is_active_iterate(se->opaque)) {
1251 continue;
1252 }
1253 /*
1254 * In the postcopy phase, any device that doesn't know how to
1255 * do postcopy should have saved it's state in the _complete
1256 * call that's already run, it might get confused if we call
1257 * iterate afterwards.
1258 */
1259 if (postcopy &&
1260 !(se->ops->has_postcopy && se->ops->has_postcopy(se->opaque))) {
1261 continue;
1262 }
1263 if (qemu_file_rate_limit(f)) {
1264 return 0;
1265 }
1266 trace_savevm_section_start(se->idstr, se->section_id);
1267
1268 save_section_header(f, se, QEMU_VM_SECTION_PART);
1269
1270 ret = se->ops->save_live_iterate(f, se->opaque);
1271 trace_savevm_section_end(se->idstr, se->section_id, ret);
1272 save_section_footer(f, se);
1273
1274 if (ret < 0) {
1275 error_report("failed to save SaveStateEntry with id(name): %d(%s)",
1276 se->section_id, se->idstr);
1277 qemu_file_set_error(f, ret);
1278 }
1279 if (ret <= 0) {
1280 /* Do not proceed to the next vmstate before this one reported
1281 completion of the current stage. This serializes the migration
1282 and reduces the probability that a faster changing state is
1283 synchronized over and over again. */
1284 break;
1285 }
1286 }
1287 return ret;
1288 }
1289
1290 static bool should_send_vmdesc(void)
1291 {
1292 MachineState *machine = MACHINE(qdev_get_machine());
1293 bool in_postcopy = migration_in_postcopy();
1294 return !machine->suppress_vmdesc && !in_postcopy;
1295 }
1296
1297 /*
1298 * Calls the save_live_complete_postcopy methods
1299 * causing the last few pages to be sent immediately and doing any associated
1300 * cleanup.
1301 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1302 * all the other devices, but that happens at the point we switch to postcopy.
1303 */
1304 void qemu_savevm_state_complete_postcopy(QEMUFile *f)
1305 {
1306 SaveStateEntry *se;
1307 int ret;
1308
1309 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1310 if (!se->ops || !se->ops->save_live_complete_postcopy) {
1311 continue;
1312 }
1313 if (se->ops->is_active) {
1314 if (!se->ops->is_active(se->opaque)) {
1315 continue;
1316 }
1317 }
1318 trace_savevm_section_start(se->idstr, se->section_id);
1319 /* Section type */
1320 qemu_put_byte(f, QEMU_VM_SECTION_END);
1321 qemu_put_be32(f, se->section_id);
1322
1323 ret = se->ops->save_live_complete_postcopy(f, se->opaque);
1324 trace_savevm_section_end(se->idstr, se->section_id, ret);
1325 save_section_footer(f, se);
1326 if (ret < 0) {
1327 qemu_file_set_error(f, ret);
1328 return;
1329 }
1330 }
1331
1332 qemu_put_byte(f, QEMU_VM_EOF);
1333 qemu_fflush(f);
1334 }
1335
1336 static
1337 int qemu_savevm_state_complete_precopy_iterable(QEMUFile *f, bool in_postcopy)
1338 {
1339 SaveStateEntry *se;
1340 int ret;
1341
1342 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1343 if (!se->ops ||
1344 (in_postcopy && se->ops->has_postcopy &&
1345 se->ops->has_postcopy(se->opaque)) ||
1346 !se->ops->save_live_complete_precopy) {
1347 continue;
1348 }
1349
1350 if (se->ops->is_active) {
1351 if (!se->ops->is_active(se->opaque)) {
1352 continue;
1353 }
1354 }
1355 trace_savevm_section_start(se->idstr, se->section_id);
1356
1357 save_section_header(f, se, QEMU_VM_SECTION_END);
1358
1359 ret = se->ops->save_live_complete_precopy(f, se->opaque);
1360 trace_savevm_section_end(se->idstr, se->section_id, ret);
1361 save_section_footer(f, se);
1362 if (ret < 0) {
1363 qemu_file_set_error(f, ret);
1364 return -1;
1365 }
1366 }
1367
1368 return 0;
1369 }
1370
1371 static
1372 int qemu_savevm_state_complete_precopy_non_iterable(QEMUFile *f,
1373 bool in_postcopy,
1374 bool inactivate_disks)
1375 {
1376 g_autoptr(QJSON) vmdesc = NULL;
1377 int vmdesc_len;
1378 SaveStateEntry *se;
1379 int ret;
1380
1381 vmdesc = qjson_new();
1382 json_prop_int(vmdesc, "page_size", qemu_target_page_size());
1383 json_start_array(vmdesc, "devices");
1384 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1385
1386 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1387 continue;
1388 }
1389 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1390 trace_savevm_section_skip(se->idstr, se->section_id);
1391 continue;
1392 }
1393
1394 trace_savevm_section_start(se->idstr, se->section_id);
1395
1396 json_start_object(vmdesc, NULL);
1397 json_prop_str(vmdesc, "name", se->idstr);
1398 json_prop_int(vmdesc, "instance_id", se->instance_id);
1399
1400 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1401 ret = vmstate_save(f, se, vmdesc);
1402 if (ret) {
1403 qemu_file_set_error(f, ret);
1404 return ret;
1405 }
1406 trace_savevm_section_end(se->idstr, se->section_id, 0);
1407 save_section_footer(f, se);
1408
1409 json_end_object(vmdesc);
1410 }
1411
1412 if (inactivate_disks) {
1413 /* Inactivate before sending QEMU_VM_EOF so that the
1414 * bdrv_invalidate_cache_all() on the other end won't fail. */
1415 ret = bdrv_inactivate_all();
1416 if (ret) {
1417 error_report("%s: bdrv_inactivate_all() failed (%d)",
1418 __func__, ret);
1419 qemu_file_set_error(f, ret);
1420 return ret;
1421 }
1422 }
1423 if (!in_postcopy) {
1424 /* Postcopy stream will still be going */
1425 qemu_put_byte(f, QEMU_VM_EOF);
1426 }
1427
1428 json_end_array(vmdesc);
1429 qjson_finish(vmdesc);
1430 vmdesc_len = strlen(qjson_get_str(vmdesc));
1431
1432 if (should_send_vmdesc()) {
1433 qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
1434 qemu_put_be32(f, vmdesc_len);
1435 qemu_put_buffer(f, (uint8_t *)qjson_get_str(vmdesc), vmdesc_len);
1436 }
1437
1438 return 0;
1439 }
1440
1441 int qemu_savevm_state_complete_precopy(QEMUFile *f, bool iterable_only,
1442 bool inactivate_disks)
1443 {
1444 int ret;
1445 Error *local_err = NULL;
1446 bool in_postcopy = migration_in_postcopy();
1447
1448 if (precopy_notify(PRECOPY_NOTIFY_COMPLETE, &local_err)) {
1449 error_report_err(local_err);
1450 }
1451
1452 trace_savevm_state_complete_precopy();
1453
1454 cpu_synchronize_all_states();
1455
1456 if (!in_postcopy || iterable_only) {
1457 ret = qemu_savevm_state_complete_precopy_iterable(f, in_postcopy);
1458 if (ret) {
1459 return ret;
1460 }
1461 }
1462
1463 if (iterable_only) {
1464 goto flush;
1465 }
1466
1467 ret = qemu_savevm_state_complete_precopy_non_iterable(f, in_postcopy,
1468 inactivate_disks);
1469 if (ret) {
1470 return ret;
1471 }
1472
1473 flush:
1474 qemu_fflush(f);
1475 return 0;
1476 }
1477
1478 /* Give an estimate of the amount left to be transferred,
1479 * the result is split into the amount for units that can and
1480 * for units that can't do postcopy.
1481 */
1482 void qemu_savevm_state_pending(QEMUFile *f, uint64_t threshold_size,
1483 uint64_t *res_precopy_only,
1484 uint64_t *res_compatible,
1485 uint64_t *res_postcopy_only)
1486 {
1487 SaveStateEntry *se;
1488
1489 *res_precopy_only = 0;
1490 *res_compatible = 0;
1491 *res_postcopy_only = 0;
1492
1493
1494 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1495 if (!se->ops || !se->ops->save_live_pending) {
1496 continue;
1497 }
1498 if (se->ops->is_active) {
1499 if (!se->ops->is_active(se->opaque)) {
1500 continue;
1501 }
1502 }
1503 se->ops->save_live_pending(f, se->opaque, threshold_size,
1504 res_precopy_only, res_compatible,
1505 res_postcopy_only);
1506 }
1507 }
1508
1509 void qemu_savevm_state_cleanup(void)
1510 {
1511 SaveStateEntry *se;
1512 Error *local_err = NULL;
1513
1514 if (precopy_notify(PRECOPY_NOTIFY_CLEANUP, &local_err)) {
1515 error_report_err(local_err);
1516 }
1517
1518 trace_savevm_state_cleanup();
1519 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1520 if (se->ops && se->ops->save_cleanup) {
1521 se->ops->save_cleanup(se->opaque);
1522 }
1523 }
1524 }
1525
1526 static int qemu_savevm_state(QEMUFile *f, Error **errp)
1527 {
1528 int ret;
1529 MigrationState *ms = migrate_get_current();
1530 MigrationStatus status;
1531
1532 if (migration_is_setup_or_active(ms->state) ||
1533 ms->state == MIGRATION_STATUS_CANCELLING ||
1534 ms->state == MIGRATION_STATUS_COLO) {
1535 error_setg(errp, QERR_MIGRATION_ACTIVE);
1536 return -EINVAL;
1537 }
1538
1539 if (migrate_use_block()) {
1540 error_setg(errp, "Block migration and snapshots are incompatible");
1541 return -EINVAL;
1542 }
1543
1544 migrate_init(ms);
1545 memset(&ram_counters, 0, sizeof(ram_counters));
1546 ms->to_dst_file = f;
1547
1548 qemu_mutex_unlock_iothread();
1549 qemu_savevm_state_header(f);
1550 qemu_savevm_state_setup(f);
1551 qemu_mutex_lock_iothread();
1552
1553 while (qemu_file_get_error(f) == 0) {
1554 if (qemu_savevm_state_iterate(f, false) > 0) {
1555 break;
1556 }
1557 }
1558
1559 ret = qemu_file_get_error(f);
1560 if (ret == 0) {
1561 qemu_savevm_state_complete_precopy(f, false, false);
1562 ret = qemu_file_get_error(f);
1563 }
1564 qemu_savevm_state_cleanup();
1565 if (ret != 0) {
1566 error_setg_errno(errp, -ret, "Error while writing VM state");
1567 }
1568
1569 if (ret != 0) {
1570 status = MIGRATION_STATUS_FAILED;
1571 } else {
1572 status = MIGRATION_STATUS_COMPLETED;
1573 }
1574 migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
1575
1576 /* f is outer parameter, it should not stay in global migration state after
1577 * this function finished */
1578 ms->to_dst_file = NULL;
1579
1580 return ret;
1581 }
1582
1583 void qemu_savevm_live_state(QEMUFile *f)
1584 {
1585 /* save QEMU_VM_SECTION_END section */
1586 qemu_savevm_state_complete_precopy(f, true, false);
1587 qemu_put_byte(f, QEMU_VM_EOF);
1588 }
1589
1590 int qemu_save_device_state(QEMUFile *f)
1591 {
1592 SaveStateEntry *se;
1593
1594 if (!migration_in_colo_state()) {
1595 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1596 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1597 }
1598 cpu_synchronize_all_states();
1599
1600 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1601 int ret;
1602
1603 if (se->is_ram) {
1604 continue;
1605 }
1606 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
1607 continue;
1608 }
1609 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
1610 continue;
1611 }
1612
1613 save_section_header(f, se, QEMU_VM_SECTION_FULL);
1614
1615 ret = vmstate_save(f, se, NULL);
1616 if (ret) {
1617 return ret;
1618 }
1619
1620 save_section_footer(f, se);
1621 }
1622
1623 qemu_put_byte(f, QEMU_VM_EOF);
1624
1625 return qemu_file_get_error(f);
1626 }
1627
1628 static SaveStateEntry *find_se(const char *idstr, int instance_id)
1629 {
1630 SaveStateEntry *se;
1631
1632 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1633 if (!strcmp(se->idstr, idstr) &&
1634 (instance_id == se->instance_id ||
1635 instance_id == se->alias_id))
1636 return se;
1637 /* Migrating from an older version? */
1638 if (strstr(se->idstr, idstr) && se->compat) {
1639 if (!strcmp(se->compat->idstr, idstr) &&
1640 (instance_id == se->compat->instance_id ||
1641 instance_id == se->alias_id))
1642 return se;
1643 }
1644 }
1645 return NULL;
1646 }
1647
1648 enum LoadVMExitCodes {
1649 /* Allow a command to quit all layers of nested loadvm loops */
1650 LOADVM_QUIT = 1,
1651 };
1652
1653 /* ------ incoming postcopy messages ------ */
1654 /* 'advise' arrives before any transfers just to tell us that a postcopy
1655 * *might* happen - it might be skipped if precopy transferred everything
1656 * quickly.
1657 */
1658 static int loadvm_postcopy_handle_advise(MigrationIncomingState *mis,
1659 uint16_t len)
1660 {
1661 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
1662 uint64_t remote_pagesize_summary, local_pagesize_summary, remote_tps;
1663 Error *local_err = NULL;
1664
1665 trace_loadvm_postcopy_handle_advise();
1666 if (ps != POSTCOPY_INCOMING_NONE) {
1667 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps);
1668 return -1;
1669 }
1670
1671 switch (len) {
1672 case 0:
1673 if (migrate_postcopy_ram()) {
1674 error_report("RAM postcopy is enabled but have 0 byte advise");
1675 return -EINVAL;
1676 }
1677 return 0;
1678 case 8 + 8:
1679 if (!migrate_postcopy_ram()) {
1680 error_report("RAM postcopy is disabled but have 16 byte advise");
1681 return -EINVAL;
1682 }
1683 break;
1684 default:
1685 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len);
1686 return -EINVAL;
1687 }
1688
1689 if (!postcopy_ram_supported_by_host(mis)) {
1690 postcopy_state_set(POSTCOPY_INCOMING_NONE);
1691 return -1;
1692 }
1693
1694 remote_pagesize_summary = qemu_get_be64(mis->from_src_file);
1695 local_pagesize_summary = ram_pagesize_summary();
1696
1697 if (remote_pagesize_summary != local_pagesize_summary) {
1698 /*
1699 * This detects two potential causes of mismatch:
1700 * a) A mismatch in host page sizes
1701 * Some combinations of mismatch are probably possible but it gets
1702 * a bit more complicated. In particular we need to place whole
1703 * host pages on the dest at once, and we need to ensure that we
1704 * handle dirtying to make sure we never end up sending part of
1705 * a hostpage on it's own.
1706 * b) The use of different huge page sizes on source/destination
1707 * a more fine grain test is performed during RAM block migration
1708 * but this test here causes a nice early clear failure, and
1709 * also fails when passed to an older qemu that doesn't
1710 * do huge pages.
1711 */
1712 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1713 " d=%" PRIx64 ")",
1714 remote_pagesize_summary, local_pagesize_summary);
1715 return -1;
1716 }
1717
1718 remote_tps = qemu_get_be64(mis->from_src_file);
1719 if (remote_tps != qemu_target_page_size()) {
1720 /*
1721 * Again, some differences could be dealt with, but for now keep it
1722 * simple.
1723 */
1724 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
1725 (int)remote_tps, qemu_target_page_size());
1726 return -1;
1727 }
1728
1729 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_ADVISE, &local_err)) {
1730 error_report_err(local_err);
1731 return -1;
1732 }
1733
1734 if (ram_postcopy_incoming_init(mis)) {
1735 return -1;
1736 }
1737
1738 return 0;
1739 }
1740
1741 /* After postcopy we will be told to throw some pages away since they're
1742 * dirty and will have to be demand fetched. Must happen before CPU is
1743 * started.
1744 * There can be 0..many of these messages, each encoding multiple pages.
1745 */
1746 static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
1747 uint16_t len)
1748 {
1749 int tmp;
1750 char ramid[256];
1751 PostcopyState ps = postcopy_state_get();
1752
1753 trace_loadvm_postcopy_ram_handle_discard();
1754
1755 switch (ps) {
1756 case POSTCOPY_INCOMING_ADVISE:
1757 /* 1st discard */
1758 tmp = postcopy_ram_prepare_discard(mis);
1759 if (tmp) {
1760 return tmp;
1761 }
1762 break;
1763
1764 case POSTCOPY_INCOMING_DISCARD:
1765 /* Expected state */
1766 break;
1767
1768 default:
1769 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1770 ps);
1771 return -1;
1772 }
1773 /* We're expecting a
1774 * Version (0)
1775 * a RAM ID string (length byte, name, 0 term)
1776 * then at least 1 16 byte chunk
1777 */
1778 if (len < (1 + 1 + 1 + 1 + 2 * 8)) {
1779 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1780 return -1;
1781 }
1782
1783 tmp = qemu_get_byte(mis->from_src_file);
1784 if (tmp != postcopy_ram_discard_version) {
1785 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp);
1786 return -1;
1787 }
1788
1789 if (!qemu_get_counted_string(mis->from_src_file, ramid)) {
1790 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1791 return -1;
1792 }
1793 tmp = qemu_get_byte(mis->from_src_file);
1794 if (tmp != 0) {
1795 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp);
1796 return -1;
1797 }
1798
1799 len -= 3 + strlen(ramid);
1800 if (len % 16) {
1801 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1802 return -1;
1803 }
1804 trace_loadvm_postcopy_ram_handle_discard_header(ramid, len);
1805 while (len) {
1806 uint64_t start_addr, block_length;
1807 start_addr = qemu_get_be64(mis->from_src_file);
1808 block_length = qemu_get_be64(mis->from_src_file);
1809
1810 len -= 16;
1811 int ret = ram_discard_range(ramid, start_addr, block_length);
1812 if (ret) {
1813 return ret;
1814 }
1815 }
1816 trace_loadvm_postcopy_ram_handle_discard_end();
1817
1818 return 0;
1819 }
1820
1821 /*
1822 * Triggered by a postcopy_listen command; this thread takes over reading
1823 * the input stream, leaving the main thread free to carry on loading the rest
1824 * of the device state (from RAM).
1825 * (TODO:This could do with being in a postcopy file - but there again it's
1826 * just another input loop, not that postcopy specific)
1827 */
1828 static void *postcopy_ram_listen_thread(void *opaque)
1829 {
1830 MigrationIncomingState *mis = migration_incoming_get_current();
1831 QEMUFile *f = mis->from_src_file;
1832 int load_res;
1833
1834 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
1835 MIGRATION_STATUS_POSTCOPY_ACTIVE);
1836 qemu_sem_post(&mis->listen_thread_sem);
1837 trace_postcopy_ram_listen_thread_start();
1838
1839 rcu_register_thread();
1840 /*
1841 * Because we're a thread and not a coroutine we can't yield
1842 * in qemu_file, and thus we must be blocking now.
1843 */
1844 qemu_file_set_blocking(f, true);
1845 load_res = qemu_loadvm_state_main(f, mis);
1846
1847 /*
1848 * This is tricky, but, mis->from_src_file can change after it
1849 * returns, when postcopy recovery happened. In the future, we may
1850 * want a wrapper for the QEMUFile handle.
1851 */
1852 f = mis->from_src_file;
1853
1854 /* And non-blocking again so we don't block in any cleanup */
1855 qemu_file_set_blocking(f, false);
1856
1857 trace_postcopy_ram_listen_thread_exit();
1858 if (load_res < 0) {
1859 error_report("%s: loadvm failed: %d", __func__, load_res);
1860 qemu_file_set_error(f, load_res);
1861 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1862 MIGRATION_STATUS_FAILED);
1863 } else {
1864 /*
1865 * This looks good, but it's possible that the device loading in the
1866 * main thread hasn't finished yet, and so we might not be in 'RUN'
1867 * state yet; wait for the end of the main thread.
1868 */
1869 qemu_event_wait(&mis->main_thread_load_event);
1870 }
1871 postcopy_ram_incoming_cleanup(mis);
1872
1873 if (load_res < 0) {
1874 /*
1875 * If something went wrong then we have a bad state so exit;
1876 * depending how far we got it might be possible at this point
1877 * to leave the guest running and fire MCEs for pages that never
1878 * arrived as a desperate recovery step.
1879 */
1880 rcu_unregister_thread();
1881 exit(EXIT_FAILURE);
1882 }
1883
1884 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1885 MIGRATION_STATUS_COMPLETED);
1886 /*
1887 * If everything has worked fine, then the main thread has waited
1888 * for us to start, and we're the last use of the mis.
1889 * (If something broke then qemu will have to exit anyway since it's
1890 * got a bad migration state).
1891 */
1892 migration_incoming_state_destroy();
1893 qemu_loadvm_state_cleanup();
1894
1895 rcu_unregister_thread();
1896 mis->have_listen_thread = false;
1897 postcopy_state_set(POSTCOPY_INCOMING_END);
1898
1899 return NULL;
1900 }
1901
1902 /* After this message we must be able to immediately receive postcopy data */
1903 static int loadvm_postcopy_handle_listen(MigrationIncomingState *mis)
1904 {
1905 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_LISTENING);
1906 trace_loadvm_postcopy_handle_listen();
1907 Error *local_err = NULL;
1908
1909 if (ps != POSTCOPY_INCOMING_ADVISE && ps != POSTCOPY_INCOMING_DISCARD) {
1910 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps);
1911 return -1;
1912 }
1913 if (ps == POSTCOPY_INCOMING_ADVISE) {
1914 /*
1915 * A rare case, we entered listen without having to do any discards,
1916 * so do the setup that's normally done at the time of the 1st discard.
1917 */
1918 if (migrate_postcopy_ram()) {
1919 postcopy_ram_prepare_discard(mis);
1920 }
1921 }
1922
1923 /*
1924 * Sensitise RAM - can now generate requests for blocks that don't exist
1925 * However, at this point the CPU shouldn't be running, and the IO
1926 * shouldn't be doing anything yet so don't actually expect requests
1927 */
1928 if (migrate_postcopy_ram()) {
1929 if (postcopy_ram_incoming_setup(mis)) {
1930 postcopy_ram_incoming_cleanup(mis);
1931 return -1;
1932 }
1933 }
1934
1935 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_LISTEN, &local_err)) {
1936 error_report_err(local_err);
1937 return -1;
1938 }
1939
1940 mis->have_listen_thread = true;
1941 /* Start up the listening thread and wait for it to signal ready */
1942 qemu_sem_init(&mis->listen_thread_sem, 0);
1943 qemu_thread_create(&mis->listen_thread, "postcopy/listen",
1944 postcopy_ram_listen_thread, NULL,
1945 QEMU_THREAD_DETACHED);
1946 qemu_sem_wait(&mis->listen_thread_sem);
1947 qemu_sem_destroy(&mis->listen_thread_sem);
1948
1949 return 0;
1950 }
1951
1952 static void loadvm_postcopy_handle_run_bh(void *opaque)
1953 {
1954 Error *local_err = NULL;
1955 MigrationIncomingState *mis = opaque;
1956
1957 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
1958 * in migration.c
1959 */
1960 cpu_synchronize_all_post_init();
1961
1962 qemu_announce_self(&mis->announce_timer, migrate_announce_params());
1963
1964 /* Make sure all file formats flush their mutable metadata.
1965 * If we get an error here, just don't restart the VM yet. */
1966 bdrv_invalidate_cache_all(&local_err);
1967 if (local_err) {
1968 error_report_err(local_err);
1969 local_err = NULL;
1970 autostart = false;
1971 }
1972
1973 trace_loadvm_postcopy_handle_run_cpu_sync();
1974
1975 trace_loadvm_postcopy_handle_run_vmstart();
1976
1977 dirty_bitmap_mig_before_vm_start();
1978
1979 if (autostart) {
1980 /* Hold onto your hats, starting the CPU */
1981 vm_start();
1982 } else {
1983 /* leave it paused and let management decide when to start the CPU */
1984 runstate_set(RUN_STATE_PAUSED);
1985 }
1986
1987 qemu_bh_delete(mis->bh);
1988 }
1989
1990 /* After all discards we can start running and asking for pages */
1991 static int loadvm_postcopy_handle_run(MigrationIncomingState *mis)
1992 {
1993 PostcopyState ps = postcopy_state_get();
1994
1995 trace_loadvm_postcopy_handle_run();
1996 if (ps != POSTCOPY_INCOMING_LISTENING) {
1997 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps);
1998 return -1;
1999 }
2000
2001 postcopy_state_set(POSTCOPY_INCOMING_RUNNING);
2002 mis->bh = qemu_bh_new(loadvm_postcopy_handle_run_bh, mis);
2003 qemu_bh_schedule(mis->bh);
2004
2005 /* We need to finish reading the stream from the package
2006 * and also stop reading anything more from the stream that loaded the
2007 * package (since it's now being read by the listener thread).
2008 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
2009 */
2010 return LOADVM_QUIT;
2011 }
2012
2013 static int loadvm_postcopy_handle_resume(MigrationIncomingState *mis)
2014 {
2015 if (mis->state != MIGRATION_STATUS_POSTCOPY_RECOVER) {
2016 error_report("%s: illegal resume received", __func__);
2017 /* Don't fail the load, only for this. */
2018 return 0;
2019 }
2020
2021 /*
2022 * This means source VM is ready to resume the postcopy migration.
2023 * It's time to switch state and release the fault thread to
2024 * continue service page faults.
2025 */
2026 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_RECOVER,
2027 MIGRATION_STATUS_POSTCOPY_ACTIVE);
2028 qemu_sem_post(&mis->postcopy_pause_sem_fault);
2029
2030 trace_loadvm_postcopy_handle_resume();
2031
2032 /* Tell source that "we are ready" */
2033 migrate_send_rp_resume_ack(mis, MIGRATION_RESUME_ACK_VALUE);
2034
2035 return 0;
2036 }
2037
2038 /**
2039 * Immediately following this command is a blob of data containing an embedded
2040 * chunk of migration stream; read it and load it.
2041 *
2042 * @mis: Incoming state
2043 * @length: Length of packaged data to read
2044 *
2045 * Returns: Negative values on error
2046 *
2047 */
2048 static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
2049 {
2050 int ret;
2051 size_t length;
2052 QIOChannelBuffer *bioc;
2053
2054 length = qemu_get_be32(mis->from_src_file);
2055 trace_loadvm_handle_cmd_packaged(length);
2056
2057 if (length > MAX_VM_CMD_PACKAGED_SIZE) {
2058 error_report("Unreasonably large packaged state: %zu", length);
2059 return -1;
2060 }
2061
2062 bioc = qio_channel_buffer_new(length);
2063 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-loadvm-buffer");
2064 ret = qemu_get_buffer(mis->from_src_file,
2065 bioc->data,
2066 length);
2067 if (ret != length) {
2068 object_unref(OBJECT(bioc));
2069 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
2070 ret, length);
2071 return (ret < 0) ? ret : -EAGAIN;
2072 }
2073 bioc->usage += length;
2074 trace_loadvm_handle_cmd_packaged_received(ret);
2075
2076 QEMUFile *packf = qemu_fopen_channel_input(QIO_CHANNEL(bioc));
2077
2078 ret = qemu_loadvm_state_main(packf, mis);
2079 trace_loadvm_handle_cmd_packaged_main(ret);
2080 qemu_fclose(packf);
2081 object_unref(OBJECT(bioc));
2082
2083 return ret;
2084 }
2085
2086 /*
2087 * Handle request that source requests for recved_bitmap on
2088 * destination. Payload format:
2089 *
2090 * len (1 byte) + ramblock_name (<255 bytes)
2091 */
2092 static int loadvm_handle_recv_bitmap(MigrationIncomingState *mis,
2093 uint16_t len)
2094 {
2095 QEMUFile *file = mis->from_src_file;
2096 RAMBlock *rb;
2097 char block_name[256];
2098 size_t cnt;
2099
2100 cnt = qemu_get_counted_string(file, block_name);
2101 if (!cnt) {
2102 error_report("%s: failed to read block name", __func__);
2103 return -EINVAL;
2104 }
2105
2106 /* Validate before using the data */
2107 if (qemu_file_get_error(file)) {
2108 return qemu_file_get_error(file);
2109 }
2110
2111 if (len != cnt + 1) {
2112 error_report("%s: invalid payload length (%d)", __func__, len);
2113 return -EINVAL;
2114 }
2115
2116 rb = qemu_ram_block_by_name(block_name);
2117 if (!rb) {
2118 error_report("%s: block '%s' not found", __func__, block_name);
2119 return -EINVAL;
2120 }
2121
2122 migrate_send_rp_recv_bitmap(mis, block_name);
2123
2124 trace_loadvm_handle_recv_bitmap(block_name);
2125
2126 return 0;
2127 }
2128
2129 static int loadvm_process_enable_colo(MigrationIncomingState *mis)
2130 {
2131 migration_incoming_enable_colo();
2132 return colo_init_ram_cache();
2133 }
2134
2135 /*
2136 * Process an incoming 'QEMU_VM_COMMAND'
2137 * 0 just a normal return
2138 * LOADVM_QUIT All good, but exit the loop
2139 * <0 Error
2140 */
2141 static int loadvm_process_command(QEMUFile *f)
2142 {
2143 MigrationIncomingState *mis = migration_incoming_get_current();
2144 uint16_t cmd;
2145 uint16_t len;
2146 uint32_t tmp32;
2147
2148 cmd = qemu_get_be16(f);
2149 len = qemu_get_be16(f);
2150
2151 /* Check validity before continue processing of cmds */
2152 if (qemu_file_get_error(f)) {
2153 return qemu_file_get_error(f);
2154 }
2155
2156 trace_loadvm_process_command(cmd, len);
2157 if (cmd >= MIG_CMD_MAX || cmd == MIG_CMD_INVALID) {
2158 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd, len);
2159 return -EINVAL;
2160 }
2161
2162 if (mig_cmd_args[cmd].len != -1 && mig_cmd_args[cmd].len != len) {
2163 error_report("%s received with bad length - expecting %zu, got %d",
2164 mig_cmd_args[cmd].name,
2165 (size_t)mig_cmd_args[cmd].len, len);
2166 return -ERANGE;
2167 }
2168
2169 switch (cmd) {
2170 case MIG_CMD_OPEN_RETURN_PATH:
2171 if (mis->to_src_file) {
2172 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
2173 /* Not really a problem, so don't give up */
2174 return 0;
2175 }
2176 mis->to_src_file = qemu_file_get_return_path(f);
2177 if (!mis->to_src_file) {
2178 error_report("CMD_OPEN_RETURN_PATH failed");
2179 return -1;
2180 }
2181 break;
2182
2183 case MIG_CMD_PING:
2184 tmp32 = qemu_get_be32(f);
2185 trace_loadvm_process_command_ping(tmp32);
2186 if (!mis->to_src_file) {
2187 error_report("CMD_PING (0x%x) received with no return path",
2188 tmp32);
2189 return -1;
2190 }
2191 migrate_send_rp_pong(mis, tmp32);
2192 break;
2193
2194 case MIG_CMD_PACKAGED:
2195 return loadvm_handle_cmd_packaged(mis);
2196
2197 case MIG_CMD_POSTCOPY_ADVISE:
2198 return loadvm_postcopy_handle_advise(mis, len);
2199
2200 case MIG_CMD_POSTCOPY_LISTEN:
2201 return loadvm_postcopy_handle_listen(mis);
2202
2203 case MIG_CMD_POSTCOPY_RUN:
2204 return loadvm_postcopy_handle_run(mis);
2205
2206 case MIG_CMD_POSTCOPY_RAM_DISCARD:
2207 return loadvm_postcopy_ram_handle_discard(mis, len);
2208
2209 case MIG_CMD_POSTCOPY_RESUME:
2210 return loadvm_postcopy_handle_resume(mis);
2211
2212 case MIG_CMD_RECV_BITMAP:
2213 return loadvm_handle_recv_bitmap(mis, len);
2214
2215 case MIG_CMD_ENABLE_COLO:
2216 return loadvm_process_enable_colo(mis);
2217 }
2218
2219 return 0;
2220 }
2221
2222 /*
2223 * Read a footer off the wire and check that it matches the expected section
2224 *
2225 * Returns: true if the footer was good
2226 * false if there is a problem (and calls error_report to say why)
2227 */
2228 static bool check_section_footer(QEMUFile *f, SaveStateEntry *se)
2229 {
2230 int ret;
2231 uint8_t read_mark;
2232 uint32_t read_section_id;
2233
2234 if (!migrate_get_current()->send_section_footer) {
2235 /* No footer to check */
2236 return true;
2237 }
2238
2239 read_mark = qemu_get_byte(f);
2240
2241 ret = qemu_file_get_error(f);
2242 if (ret) {
2243 error_report("%s: Read section footer failed: %d",
2244 __func__, ret);
2245 return false;
2246 }
2247
2248 if (read_mark != QEMU_VM_SECTION_FOOTER) {
2249 error_report("Missing section footer for %s", se->idstr);
2250 return false;
2251 }
2252
2253 read_section_id = qemu_get_be32(f);
2254 if (read_section_id != se->load_section_id) {
2255 error_report("Mismatched section id in footer for %s -"
2256 " read 0x%x expected 0x%x",
2257 se->idstr, read_section_id, se->load_section_id);
2258 return false;
2259 }
2260
2261 /* All good */
2262 return true;
2263 }
2264
2265 static int
2266 qemu_loadvm_section_start_full(QEMUFile *f, MigrationIncomingState *mis)
2267 {
2268 uint32_t instance_id, version_id, section_id;
2269 SaveStateEntry *se;
2270 char idstr[256];
2271 int ret;
2272
2273 /* Read section start */
2274 section_id = qemu_get_be32(f);
2275 if (!qemu_get_counted_string(f, idstr)) {
2276 error_report("Unable to read ID string for section %u",
2277 section_id);
2278 return -EINVAL;
2279 }
2280 instance_id = qemu_get_be32(f);
2281 version_id = qemu_get_be32(f);
2282
2283 ret = qemu_file_get_error(f);
2284 if (ret) {
2285 error_report("%s: Failed to read instance/version ID: %d",
2286 __func__, ret);
2287 return ret;
2288 }
2289
2290 trace_qemu_loadvm_state_section_startfull(section_id, idstr,
2291 instance_id, version_id);
2292 /* Find savevm section */
2293 se = find_se(idstr, instance_id);
2294 if (se == NULL) {
2295 error_report("Unknown savevm section or instance '%s' %d. "
2296 "Make sure that your current VM setup matches your "
2297 "saved VM setup, including any hotplugged devices",
2298 idstr, instance_id);
2299 return -EINVAL;
2300 }
2301
2302 /* Validate version */
2303 if (version_id > se->version_id) {
2304 error_report("savevm: unsupported version %d for '%s' v%d",
2305 version_id, idstr, se->version_id);
2306 return -EINVAL;
2307 }
2308 se->load_version_id = version_id;
2309 se->load_section_id = section_id;
2310
2311 /* Validate if it is a device's state */
2312 if (xen_enabled() && se->is_ram) {
2313 error_report("loadvm: %s RAM loading not allowed on Xen", idstr);
2314 return -EINVAL;
2315 }
2316
2317 ret = vmstate_load(f, se);
2318 if (ret < 0) {
2319 error_report("error while loading state for instance 0x%x of"
2320 " device '%s'", instance_id, idstr);
2321 return ret;
2322 }
2323 if (!check_section_footer(f, se)) {
2324 return -EINVAL;
2325 }
2326
2327 return 0;
2328 }
2329
2330 static int
2331 qemu_loadvm_section_part_end(QEMUFile *f, MigrationIncomingState *mis)
2332 {
2333 uint32_t section_id;
2334 SaveStateEntry *se;
2335 int ret;
2336
2337 section_id = qemu_get_be32(f);
2338
2339 ret = qemu_file_get_error(f);
2340 if (ret) {
2341 error_report("%s: Failed to read section ID: %d",
2342 __func__, ret);
2343 return ret;
2344 }
2345
2346 trace_qemu_loadvm_state_section_partend(section_id);
2347 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2348 if (se->load_section_id == section_id) {
2349 break;
2350 }
2351 }
2352 if (se == NULL) {
2353 error_report("Unknown savevm section %d", section_id);
2354 return -EINVAL;
2355 }
2356
2357 ret = vmstate_load(f, se);
2358 if (ret < 0) {
2359 error_report("error while loading state section id %d(%s)",
2360 section_id, se->idstr);
2361 return ret;
2362 }
2363 if (!check_section_footer(f, se)) {
2364 return -EINVAL;
2365 }
2366
2367 return 0;
2368 }
2369
2370 static int qemu_loadvm_state_header(QEMUFile *f)
2371 {
2372 unsigned int v;
2373 int ret;
2374
2375 v = qemu_get_be32(f);
2376 if (v != QEMU_VM_FILE_MAGIC) {
2377 error_report("Not a migration stream");
2378 return -EINVAL;
2379 }
2380
2381 v = qemu_get_be32(f);
2382 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
2383 error_report("SaveVM v2 format is obsolete and don't work anymore");
2384 return -ENOTSUP;
2385 }
2386 if (v != QEMU_VM_FILE_VERSION) {
2387 error_report("Unsupported migration stream version");
2388 return -ENOTSUP;
2389 }
2390
2391 if (migrate_get_current()->send_configuration) {
2392 if (qemu_get_byte(f) != QEMU_VM_CONFIGURATION) {
2393 error_report("Configuration section missing");
2394 qemu_loadvm_state_cleanup();
2395 return -EINVAL;
2396 }
2397 ret = vmstate_load_state(f, &vmstate_configuration, &savevm_state, 0);
2398
2399 if (ret) {
2400 qemu_loadvm_state_cleanup();
2401 return ret;
2402 }
2403 }
2404 return 0;
2405 }
2406
2407 static int qemu_loadvm_state_setup(QEMUFile *f)
2408 {
2409 SaveStateEntry *se;
2410 int ret;
2411
2412 trace_loadvm_state_setup();
2413 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2414 if (!se->ops || !se->ops->load_setup) {
2415 continue;
2416 }
2417 if (se->ops->is_active) {
2418 if (!se->ops->is_active(se->opaque)) {
2419 continue;
2420 }
2421 }
2422
2423 ret = se->ops->load_setup(f, se->opaque);
2424 if (ret < 0) {
2425 qemu_file_set_error(f, ret);
2426 error_report("Load state of device %s failed", se->idstr);
2427 return ret;
2428 }
2429 }
2430 return 0;
2431 }
2432
2433 void qemu_loadvm_state_cleanup(void)
2434 {
2435 SaveStateEntry *se;
2436
2437 trace_loadvm_state_cleanup();
2438 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2439 if (se->ops && se->ops->load_cleanup) {
2440 se->ops->load_cleanup(se->opaque);
2441 }
2442 }
2443 }
2444
2445 /* Return true if we should continue the migration, or false. */
2446 static bool postcopy_pause_incoming(MigrationIncomingState *mis)
2447 {
2448 trace_postcopy_pause_incoming();
2449
2450 /* Clear the triggered bit to allow one recovery */
2451 mis->postcopy_recover_triggered = false;
2452
2453 assert(mis->from_src_file);
2454 qemu_file_shutdown(mis->from_src_file);
2455 qemu_fclose(mis->from_src_file);
2456 mis->from_src_file = NULL;
2457
2458 assert(mis->to_src_file);
2459 qemu_file_shutdown(mis->to_src_file);
2460 qemu_mutex_lock(&mis->rp_mutex);
2461 qemu_fclose(mis->to_src_file);
2462 mis->to_src_file = NULL;
2463 qemu_mutex_unlock(&mis->rp_mutex);
2464
2465 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2466 MIGRATION_STATUS_POSTCOPY_PAUSED);
2467
2468 /* Notify the fault thread for the invalidated file handle */
2469 postcopy_fault_thread_notify(mis);
2470
2471 error_report("Detected IO failure for postcopy. "
2472 "Migration paused.");
2473
2474 while (mis->state == MIGRATION_STATUS_POSTCOPY_PAUSED) {
2475 qemu_sem_wait(&mis->postcopy_pause_sem_dst);
2476 }
2477
2478 trace_postcopy_pause_incoming_continued();
2479
2480 return true;
2481 }
2482
2483 int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
2484 {
2485 uint8_t section_type;
2486 int ret = 0;
2487
2488 retry:
2489 while (true) {
2490 section_type = qemu_get_byte(f);
2491
2492 if (qemu_file_get_error(f)) {
2493 ret = qemu_file_get_error(f);
2494 break;
2495 }
2496
2497 trace_qemu_loadvm_state_section(section_type);
2498 switch (section_type) {
2499 case QEMU_VM_SECTION_START:
2500 case QEMU_VM_SECTION_FULL:
2501 ret = qemu_loadvm_section_start_full(f, mis);
2502 if (ret < 0) {
2503 goto out;
2504 }
2505 break;
2506 case QEMU_VM_SECTION_PART:
2507 case QEMU_VM_SECTION_END:
2508 ret = qemu_loadvm_section_part_end(f, mis);
2509 if (ret < 0) {
2510 goto out;
2511 }
2512 break;
2513 case QEMU_VM_COMMAND:
2514 ret = loadvm_process_command(f);
2515 trace_qemu_loadvm_state_section_command(ret);
2516 if ((ret < 0) || (ret == LOADVM_QUIT)) {
2517 goto out;
2518 }
2519 break;
2520 case QEMU_VM_EOF:
2521 /* This is the end of migration */
2522 goto out;
2523 default:
2524 error_report("Unknown savevm section type %d", section_type);
2525 ret = -EINVAL;
2526 goto out;
2527 }
2528 }
2529
2530 out:
2531 if (ret < 0) {
2532 qemu_file_set_error(f, ret);
2533
2534 /*
2535 * If we are during an active postcopy, then we pause instead
2536 * of bail out to at least keep the VM's dirty data. Note
2537 * that POSTCOPY_INCOMING_LISTENING stage is still not enough,
2538 * during which we're still receiving device states and we
2539 * still haven't yet started the VM on destination.
2540 */
2541 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING &&
2542 postcopy_pause_incoming(mis)) {
2543 /* Reset f to point to the newly created channel */
2544 f = mis->from_src_file;
2545 goto retry;
2546 }
2547 }
2548 return ret;
2549 }
2550
2551 int qemu_loadvm_state(QEMUFile *f)
2552 {
2553 MigrationIncomingState *mis = migration_incoming_get_current();
2554 Error *local_err = NULL;
2555 int ret;
2556
2557 if (qemu_savevm_state_blocked(&local_err)) {
2558 error_report_err(local_err);
2559 return -EINVAL;
2560 }
2561
2562 ret = qemu_loadvm_state_header(f);
2563 if (ret) {
2564 return ret;
2565 }
2566
2567 if (qemu_loadvm_state_setup(f) != 0) {
2568 return -EINVAL;
2569 }
2570
2571 cpu_synchronize_all_pre_loadvm();
2572
2573 ret = qemu_loadvm_state_main(f, mis);
2574 qemu_event_set(&mis->main_thread_load_event);
2575
2576 trace_qemu_loadvm_state_post_main(ret);
2577
2578 if (mis->have_listen_thread) {
2579 /* Listen thread still going, can't clean up yet */
2580 return ret;
2581 }
2582
2583 if (ret == 0) {
2584 ret = qemu_file_get_error(f);
2585 }
2586
2587 /*
2588 * Try to read in the VMDESC section as well, so that dumping tools that
2589 * intercept our migration stream have the chance to see it.
2590 */
2591
2592 /* We've got to be careful; if we don't read the data and just shut the fd
2593 * then the sender can error if we close while it's still sending.
2594 * We also mustn't read data that isn't there; some transports (RDMA)
2595 * will stall waiting for that data when the source has already closed.
2596 */
2597 if (ret == 0 && should_send_vmdesc()) {
2598 uint8_t *buf;
2599 uint32_t size;
2600 uint8_t section_type = qemu_get_byte(f);
2601
2602 if (section_type != QEMU_VM_VMDESCRIPTION) {
2603 error_report("Expected vmdescription section, but got %d",
2604 section_type);
2605 /*
2606 * It doesn't seem worth failing at this point since
2607 * we apparently have an otherwise valid VM state
2608 */
2609 } else {
2610 buf = g_malloc(0x1000);
2611 size = qemu_get_be32(f);
2612
2613 while (size > 0) {
2614 uint32_t read_chunk = MIN(size, 0x1000);
2615 qemu_get_buffer(f, buf, read_chunk);
2616 size -= read_chunk;
2617 }
2618 g_free(buf);
2619 }
2620 }
2621
2622 qemu_loadvm_state_cleanup();
2623 cpu_synchronize_all_post_init();
2624
2625 return ret;
2626 }
2627
2628 int qemu_load_device_state(QEMUFile *f)
2629 {
2630 MigrationIncomingState *mis = migration_incoming_get_current();
2631 int ret;
2632
2633 /* Load QEMU_VM_SECTION_FULL section */
2634 ret = qemu_loadvm_state_main(f, mis);
2635 if (ret < 0) {
2636 error_report("Failed to load device state: %d", ret);
2637 return ret;
2638 }
2639
2640 cpu_synchronize_all_post_init();
2641 return 0;
2642 }
2643
2644 int save_snapshot(const char *name, Error **errp)
2645 {
2646 BlockDriverState *bs, *bs1;
2647 QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
2648 int ret = -1;
2649 QEMUFile *f;
2650 int saved_vm_running;
2651 uint64_t vm_state_size;
2652 qemu_timeval tv;
2653 struct tm tm;
2654 AioContext *aio_context;
2655
2656 if (migration_is_blocked(errp)) {
2657 return ret;
2658 }
2659
2660 if (!replay_can_snapshot()) {
2661 error_setg(errp, "Record/replay does not allow making snapshot "
2662 "right now. Try once more later.");
2663 return ret;
2664 }
2665
2666 if (!bdrv_all_can_snapshot(&bs)) {
2667 error_setg(errp, "Device '%s' is writable but does not support "
2668 "snapshots", bdrv_get_device_name(bs));
2669 return ret;
2670 }
2671
2672 /* Delete old snapshots of the same name */
2673 if (name) {
2674 ret = bdrv_all_delete_snapshot(name, &bs1, errp);
2675 if (ret < 0) {
2676 error_prepend(errp, "Error while deleting snapshot on device "
2677 "'%s': ", bdrv_get_device_name(bs1));
2678 return ret;
2679 }
2680 }
2681
2682 bs = bdrv_all_find_vmstate_bs();
2683 if (bs == NULL) {
2684 error_setg(errp, "No block device can accept snapshots");
2685 return ret;
2686 }
2687 aio_context = bdrv_get_aio_context(bs);
2688
2689 saved_vm_running = runstate_is_running();
2690
2691 ret = global_state_store();
2692 if (ret) {
2693 error_setg(errp, "Error saving global state");
2694 return ret;
2695 }
2696 vm_stop(RUN_STATE_SAVE_VM);
2697
2698 bdrv_drain_all_begin();
2699
2700 aio_context_acquire(aio_context);
2701
2702 memset(sn, 0, sizeof(*sn));
2703
2704 /* fill auxiliary fields */
2705 qemu_gettimeofday(&tv);
2706 sn->date_sec = tv.tv_sec;
2707 sn->date_nsec = tv.tv_usec * 1000;
2708 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
2709
2710 if (name) {
2711 ret = bdrv_snapshot_find(bs, old_sn, name);
2712 if (ret >= 0) {
2713 pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
2714 pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
2715 } else {
2716 pstrcpy(sn->name, sizeof(sn->name), name);
2717 }
2718 } else {
2719 /* cast below needed for OpenBSD where tv_sec is still 'long' */
2720 localtime_r((const time_t *)&tv.tv_sec, &tm);
2721 strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
2722 }
2723
2724 /* save the VM state */
2725 f = qemu_fopen_bdrv(bs, 1);
2726 if (!f) {
2727 error_setg(errp, "Could not open VM state file");
2728 goto the_end;
2729 }
2730 ret = qemu_savevm_state(f, errp);
2731 vm_state_size = qemu_ftell(f);
2732 qemu_fclose(f);
2733 if (ret < 0) {
2734 goto the_end;
2735 }
2736
2737 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
2738 * for itself. BDRV_POLL_WHILE() does not support nested locking because
2739 * it only releases the lock once. Therefore synchronous I/O will deadlock
2740 * unless we release the AioContext before bdrv_all_create_snapshot().
2741 */
2742 aio_context_release(aio_context);
2743 aio_context = NULL;
2744
2745 ret = bdrv_all_create_snapshot(sn, bs, vm_state_size, &bs);
2746 if (ret < 0) {
2747 error_setg(errp, "Error while creating snapshot on '%s'",
2748 bdrv_get_device_name(bs));
2749 goto the_end;
2750 }
2751
2752 ret = 0;
2753
2754 the_end:
2755 if (aio_context) {
2756 aio_context_release(aio_context);
2757 }
2758
2759 bdrv_drain_all_end();
2760
2761 if (saved_vm_running) {
2762 vm_start();
2763 }
2764 return ret;
2765 }
2766
2767 void qmp_xen_save_devices_state(const char *filename, bool has_live, bool live,
2768 Error **errp)
2769 {
2770 QEMUFile *f;
2771 QIOChannelFile *ioc;
2772 int saved_vm_running;
2773 int ret;
2774
2775 if (!has_live) {
2776 /* live default to true so old version of Xen tool stack can have a
2777 * successfull live migration */
2778 live = true;
2779 }
2780
2781 saved_vm_running = runstate_is_running();
2782 vm_stop(RUN_STATE_SAVE_VM);
2783 global_state_store_running();
2784
2785 ioc = qio_channel_file_new_path(filename, O_WRONLY | O_CREAT, 0660, errp);
2786 if (!ioc) {
2787 goto the_end;
2788 }
2789 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-save-state");
2790 f = qemu_fopen_channel_output(QIO_CHANNEL(ioc));
2791 object_unref(OBJECT(ioc));
2792 ret = qemu_save_device_state(f);
2793 if (ret < 0 || qemu_fclose(f) < 0) {
2794 error_setg(errp, QERR_IO_ERROR);
2795 } else {
2796 /* libxl calls the QMP command "stop" before calling
2797 * "xen-save-devices-state" and in case of migration failure, libxl
2798 * would call "cont".
2799 * So call bdrv_inactivate_all (release locks) here to let the other
2800 * side of the migration take controle of the images.
2801 */
2802 if (live && !saved_vm_running) {
2803 ret = bdrv_inactivate_all();
2804 if (ret) {
2805 error_setg(errp, "%s: bdrv_inactivate_all() failed (%d)",
2806 __func__, ret);
2807 }
2808 }
2809 }
2810
2811 the_end:
2812 if (saved_vm_running) {
2813 vm_start();
2814 }
2815 }
2816
2817 void qmp_xen_load_devices_state(const char *filename, Error **errp)
2818 {
2819 QEMUFile *f;
2820 QIOChannelFile *ioc;
2821 int ret;
2822
2823 /* Guest must be paused before loading the device state; the RAM state
2824 * will already have been loaded by xc
2825 */
2826 if (runstate_is_running()) {
2827 error_setg(errp, "Cannot update device state while vm is running");
2828 return;
2829 }
2830 vm_stop(RUN_STATE_RESTORE_VM);
2831
2832 ioc = qio_channel_file_new_path(filename, O_RDONLY | O_BINARY, 0, errp);
2833 if (!ioc) {
2834 return;
2835 }
2836 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-load-state");
2837 f = qemu_fopen_channel_input(QIO_CHANNEL(ioc));
2838 object_unref(OBJECT(ioc));
2839
2840 ret = qemu_loadvm_state(f);
2841 qemu_fclose(f);
2842 if (ret < 0) {
2843 error_setg(errp, QERR_IO_ERROR);
2844 }
2845 migration_incoming_state_destroy();
2846 }
2847
2848 int load_snapshot(const char *name, Error **errp)
2849 {
2850 BlockDriverState *bs, *bs_vm_state;
2851 QEMUSnapshotInfo sn;
2852 QEMUFile *f;
2853 int ret;
2854 AioContext *aio_context;
2855 MigrationIncomingState *mis = migration_incoming_get_current();
2856
2857 if (!replay_can_snapshot()) {
2858 error_setg(errp, "Record/replay does not allow loading snapshot "
2859 "right now. Try once more later.");
2860 return -EINVAL;
2861 }
2862
2863 if (!bdrv_all_can_snapshot(&bs)) {
2864 error_setg(errp,
2865 "Device '%s' is writable but does not support snapshots",
2866 bdrv_get_device_name(bs));
2867 return -ENOTSUP;
2868 }
2869 ret = bdrv_all_find_snapshot(name, &bs);
2870 if (ret < 0) {
2871 error_setg(errp,
2872 "Device '%s' does not have the requested snapshot '%s'",
2873 bdrv_get_device_name(bs), name);
2874 return ret;
2875 }
2876
2877 bs_vm_state = bdrv_all_find_vmstate_bs();
2878 if (!bs_vm_state) {
2879 error_setg(errp, "No block device supports snapshots");
2880 return -ENOTSUP;
2881 }
2882 aio_context = bdrv_get_aio_context(bs_vm_state);
2883
2884 /* Don't even try to load empty VM states */
2885 aio_context_acquire(aio_context);
2886 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
2887 aio_context_release(aio_context);
2888 if (ret < 0) {
2889 return ret;
2890 } else if (sn.vm_state_size == 0) {
2891 error_setg(errp, "This is a disk-only snapshot. Revert to it "
2892 " offline using qemu-img");
2893 return -EINVAL;
2894 }
2895
2896 /* Flush all IO requests so they don't interfere with the new state. */
2897 bdrv_drain_all_begin();
2898
2899 ret = bdrv_all_goto_snapshot(name, &bs, errp);
2900 if (ret < 0) {
2901 error_prepend(errp, "Could not load snapshot '%s' on '%s': ",
2902 name, bdrv_get_device_name(bs));
2903 goto err_drain;
2904 }
2905
2906 /* restore the VM state */
2907 f = qemu_fopen_bdrv(bs_vm_state, 0);
2908 if (!f) {
2909 error_setg(errp, "Could not open VM state file");
2910 ret = -EINVAL;
2911 goto err_drain;
2912 }
2913
2914 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
2915 mis->from_src_file = f;
2916
2917 aio_context_acquire(aio_context);
2918 ret = qemu_loadvm_state(f);
2919 migration_incoming_state_destroy();
2920 aio_context_release(aio_context);
2921
2922 bdrv_drain_all_end();
2923
2924 if (ret < 0) {
2925 error_setg(errp, "Error %d while loading VM state", ret);
2926 return ret;
2927 }
2928
2929 return 0;
2930
2931 err_drain:
2932 bdrv_drain_all_end();
2933 return ret;
2934 }
2935
2936 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
2937 {
2938 qemu_ram_set_idstr(mr->ram_block,
2939 memory_region_name(mr), dev);
2940 qemu_ram_set_migratable(mr->ram_block);
2941 }
2942
2943 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
2944 {
2945 qemu_ram_unset_idstr(mr->ram_block);
2946 qemu_ram_unset_migratable(mr->ram_block);
2947 }
2948
2949 void vmstate_register_ram_global(MemoryRegion *mr)
2950 {
2951 vmstate_register_ram(mr, NULL);
2952 }
2953
2954 bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
2955 {
2956 /* check needed if --only-migratable is specified */
2957 if (!only_migratable) {
2958 return true;
2959 }
2960
2961 return !(vmsd && vmsd->unmigratable);
2962 }