]> git.proxmox.com Git - mirror_qemu.git/blame - migration/savevm.c
target/s390x: Fix MVCRL with a large value in R0
[mirror_qemu.git] / migration / savevm.c
CommitLineData
a672b469
AL
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
76cc7b58
JQ
5 * Copyright (c) 2009-2015 Red Hat Inc
6 *
7 * Authors:
8 * Juan Quintela <quintela@redhat.com>
a672b469
AL
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 */
a672b469 28
1393a485 29#include "qemu/osdep.h"
abfd9ce3 30#include "hw/boards.h"
1422e32d 31#include "net/net.h"
6666c96a 32#include "migration.h"
5e22479a 33#include "migration/snapshot.h"
947701cc 34#include "migration-stats.h"
d6454270 35#include "migration/vmstate.h"
f8d806c9 36#include "migration/misc.h"
f2a8f0a6 37#include "migration/register.h"
84a899de 38#include "migration/global_state.h"
67bdabe2 39#include "migration/channel-block.h"
7b1e1a22 40#include "ram.h"
08a0aee1 41#include "qemu-file.h"
20a519a0 42#include "savevm.h"
be07b0ac 43#include "postcopy-ram.h"
e688df6b 44#include "qapi/error.h"
112ed241 45#include "qapi/qapi-commands-migration.h"
f1a9fcdd
DB
46#include "qapi/clone-visitor.h"
47#include "qapi/qapi-builtin-visit.h"
cc7a8ea7 48#include "qapi/qmp/qerror.h"
d49b6836 49#include "qemu/error-report.h"
9c17d615 50#include "sysemu/cpus.h"
022c62cb 51#include "exec/memory.h"
51180423 52#include "exec/target_page.h"
517a13c9 53#include "trace.h"
28085f7b 54#include "qemu/iov.h"
e2c1c34f 55#include "qemu/job.h"
db725815 56#include "qemu/main-loop.h"
de08c606 57#include "block/snapshot.h"
f348b6d1 58#include "qemu/cutils.h"
61b67d47 59#include "io/channel-buffer.h"
8925839f 60#include "io/channel-file.h"
377b21cc 61#include "sysemu/replay.h"
54d31236 62#include "sysemu/runstate.h"
46517dd4 63#include "sysemu/sysemu.h"
da278d58 64#include "sysemu/xen.h"
aad555c2 65#include "migration/colo.h"
6cafc8e4 66#include "qemu/bitmap.h"
7659505c 67#include "net/announce.h"
b5eea99e 68#include "qemu/yank.h"
39675fff 69#include "yank_functions.h"
bb25a728 70#include "sysemu/qtest.h"
1f0776f1 71#include "options.h"
18995b98 72
49324e93 73const unsigned int postcopy_ram_discard_version;
093e3c42 74
20a519a0
JQ
75/* Subcommands for QEMU_VM_COMMAND */
76enum qemu_vm_cmd {
77 MIG_CMD_INVALID = 0, /* Must be 0 */
78 MIG_CMD_OPEN_RETURN_PATH, /* Tell the dest to open the Return path */
79 MIG_CMD_PING, /* Request a PONG on the RP */
80
81 MIG_CMD_POSTCOPY_ADVISE, /* Prior to any page transfers, just
82 warn we might want to do PC */
83 MIG_CMD_POSTCOPY_LISTEN, /* Start listening for incoming
84 pages as it's running. */
85 MIG_CMD_POSTCOPY_RUN, /* Start execution */
86
87 MIG_CMD_POSTCOPY_RAM_DISCARD, /* A list of pages to discard that
88 were previously sent during
89 precopy but are dirty. */
90 MIG_CMD_PACKAGED, /* Send a wrapped stream within this stream */
aad555c2 91 MIG_CMD_ENABLE_COLO, /* Enable COLO */
858b6d62 92 MIG_CMD_POSTCOPY_RESUME, /* resume postcopy on dest */
f25d4225 93 MIG_CMD_RECV_BITMAP, /* Request for recved bitmap on dst */
20a519a0
JQ
94 MIG_CMD_MAX
95};
96
ee555cdf 97#define MAX_VM_CMD_PACKAGED_SIZE UINT32_MAX
c76ca188
DDAG
98static struct mig_cmd_args {
99 ssize_t len; /* -1 = variable */
100 const char *name;
101} mig_cmd_args[] = {
102 [MIG_CMD_INVALID] = { .len = -1, .name = "INVALID" },
2e37701e
DDAG
103 [MIG_CMD_OPEN_RETURN_PATH] = { .len = 0, .name = "OPEN_RETURN_PATH" },
104 [MIG_CMD_PING] = { .len = sizeof(uint32_t), .name = "PING" },
58110f0a 105 [MIG_CMD_POSTCOPY_ADVISE] = { .len = -1, .name = "POSTCOPY_ADVISE" },
093e3c42
DDAG
106 [MIG_CMD_POSTCOPY_LISTEN] = { .len = 0, .name = "POSTCOPY_LISTEN" },
107 [MIG_CMD_POSTCOPY_RUN] = { .len = 0, .name = "POSTCOPY_RUN" },
108 [MIG_CMD_POSTCOPY_RAM_DISCARD] = {
109 .len = -1, .name = "POSTCOPY_RAM_DISCARD" },
3f5875ec 110 [MIG_CMD_POSTCOPY_RESUME] = { .len = 0, .name = "POSTCOPY_RESUME" },
11cf1d98 111 [MIG_CMD_PACKAGED] = { .len = 4, .name = "PACKAGED" },
f25d4225 112 [MIG_CMD_RECV_BITMAP] = { .len = -1, .name = "RECV_BITMAP" },
c76ca188
DDAG
113 [MIG_CMD_MAX] = { .len = -1, .name = "MAX" },
114};
115
58110f0a
VSO
116/* Note for MIG_CMD_POSTCOPY_ADVISE:
117 * The format of arguments is depending on postcopy mode:
118 * - postcopy RAM only
119 * uint64_t host page size
120 * uint64_t taget page size
121 *
122 * - postcopy RAM and postcopy dirty bitmaps
123 * format is the same as for postcopy RAM only
124 *
125 * - postcopy dirty bitmaps only
126 * Nothing. Command length field is 0.
127 *
128 * Be careful: adding a new postcopy entity with some other parameters should
129 * not break format self-description ability. Good way is to introduce some
130 * generic extendable format with an exception for two old entities.
131 */
132
a672b469
AL
133/***********************************************************/
134/* savevm/loadvm support */
135
45566e9c 136static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
a672b469 137{
38ff78d3 138 if (is_writable) {
77ef2dc1 139 return qemu_file_new_output(QIO_CHANNEL(qio_channel_block_new(bs)));
67bdabe2 140 } else {
77ef2dc1 141 return qemu_file_new_input(QIO_CHANNEL(qio_channel_block_new(bs)));
38ff78d3 142 }
a672b469
AL
143}
144
2ff68d07 145
bb1a6d8c
EH
146/* QEMUFile timer support.
147 * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c
148 */
2ff68d07 149
40daca54 150void timer_put(QEMUFile *f, QEMUTimer *ts)
2ff68d07
PB
151{
152 uint64_t expire_time;
153
e93379b0 154 expire_time = timer_expire_time_ns(ts);
2ff68d07
PB
155 qemu_put_be64(f, expire_time);
156}
157
40daca54 158void timer_get(QEMUFile *f, QEMUTimer *ts)
2ff68d07
PB
159{
160 uint64_t expire_time;
161
162 expire_time = qemu_get_be64(f);
163 if (expire_time != -1) {
bc72ad67 164 timer_mod_ns(ts, expire_time);
2ff68d07 165 } else {
bc72ad67 166 timer_del(ts);
2ff68d07
PB
167 }
168}
169
170
bb1a6d8c
EH
171/* VMState timer support.
172 * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c
173 */
dde0463b 174
03fee66f
MAL
175static int get_timer(QEMUFile *f, void *pv, size_t size,
176 const VMStateField *field)
dde0463b
JQ
177{
178 QEMUTimer *v = pv;
40daca54 179 timer_get(f, v);
dde0463b
JQ
180 return 0;
181}
182
03fee66f 183static int put_timer(QEMUFile *f, void *pv, size_t size,
3ddba9a9 184 const VMStateField *field, JSONWriter *vmdesc)
dde0463b 185{
84e2e3eb 186 QEMUTimer *v = pv;
40daca54 187 timer_put(f, v);
2c21ee76
JD
188
189 return 0;
dde0463b
JQ
190}
191
192const VMStateInfo vmstate_info_timer = {
193 .name = "timer",
194 .get = get_timer,
195 .put = put_timer,
196};
197
08e99e29 198
7685ee6a
AW
199typedef struct CompatEntry {
200 char idstr[256];
201 int instance_id;
202} CompatEntry;
203
a672b469 204typedef struct SaveStateEntry {
72cf2d4f 205 QTAILQ_ENTRY(SaveStateEntry) entry;
a672b469 206 char idstr[256];
93062e23 207 uint32_t instance_id;
4d2ffa08 208 int alias_id;
a672b469 209 int version_id;
0f42f657
JQ
210 /* version id read from the stream */
211 int load_version_id;
a672b469 212 int section_id;
0f42f657
JQ
213 /* section id read from the stream */
214 int load_section_id;
de22ded0 215 const SaveVMHandlers *ops;
9ed7d6ae 216 const VMStateDescription *vmsd;
a672b469 217 void *opaque;
7685ee6a 218 CompatEntry *compat;
a7ae8355 219 int is_ram;
a672b469
AL
220} SaveStateEntry;
221
0163a2e0
JQ
222typedef struct SaveState {
223 QTAILQ_HEAD(, SaveStateEntry) handlers;
174723ff 224 SaveStateEntry *handler_pri_head[MIG_PRI_MAX + 1];
0163a2e0 225 int global_section_id;
61964c23
JQ
226 uint32_t len;
227 const char *name;
59811a32 228 uint32_t target_page_bits;
6cafc8e4
YK
229 uint32_t caps_count;
230 MigrationCapability *capabilities;
b9d68df6 231 QemuUUID uuid;
0163a2e0
JQ
232} SaveState;
233
234static SaveState savevm_state = {
235 .handlers = QTAILQ_HEAD_INITIALIZER(savevm_state.handlers),
174723ff 236 .handler_pri_head = { [MIG_PRI_DEFAULT ... MIG_PRI_MAX] = NULL },
0163a2e0 237 .global_section_id = 0,
61964c23
JQ
238};
239
6cafc8e4
YK
240static bool should_validate_capability(int capability)
241{
242 assert(capability >= 0 && capability < MIGRATION_CAPABILITY__MAX);
243 /* Validate only new capabilities to keep compatibility. */
244 switch (capability) {
245 case MIGRATION_CAPABILITY_X_IGNORE_SHARED:
246 return true;
247 default:
248 return false;
249 }
250}
251
252static uint32_t get_validatable_capabilities_count(void)
253{
254 MigrationState *s = migrate_get_current();
255 uint32_t result = 0;
256 int i;
257 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
0cec2056 258 if (should_validate_capability(i) && s->capabilities[i]) {
6cafc8e4
YK
259 result++;
260 }
261 }
262 return result;
263}
264
44b1ff31 265static int configuration_pre_save(void *opaque)
61964c23
JQ
266{
267 SaveState *state = opaque;
268 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
6cafc8e4
YK
269 MigrationState *s = migrate_get_current();
270 int i, j;
61964c23
JQ
271
272 state->len = strlen(current_name);
273 state->name = current_name;
46d702b1 274 state->target_page_bits = qemu_target_page_bits();
44b1ff31 275
6cafc8e4
YK
276 state->caps_count = get_validatable_capabilities_count();
277 state->capabilities = g_renew(MigrationCapability, state->capabilities,
278 state->caps_count);
279 for (i = j = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
0cec2056 280 if (should_validate_capability(i) && s->capabilities[i]) {
6cafc8e4
YK
281 state->capabilities[j++] = i;
282 }
283 }
b9d68df6 284 state->uuid = qemu_uuid;
6cafc8e4 285
44b1ff31 286 return 0;
59811a32
PM
287}
288
39f633d4
JG
289static int configuration_post_save(void *opaque)
290{
291 SaveState *state = opaque;
292
293 g_free(state->capabilities);
294 state->capabilities = NULL;
295 state->caps_count = 0;
296 return 0;
297}
298
59811a32
PM
299static int configuration_pre_load(void *opaque)
300{
301 SaveState *state = opaque;
302
303 /* If there is no target-page-bits subsection it means the source
304 * predates the variable-target-page-bits support and is using the
305 * minimum possible value for this CPU.
306 */
46d702b1 307 state->target_page_bits = qemu_target_page_bits_min();
59811a32 308 return 0;
61964c23
JQ
309}
310
6cafc8e4
YK
311static bool configuration_validate_capabilities(SaveState *state)
312{
313 bool ret = true;
314 MigrationState *s = migrate_get_current();
315 unsigned long *source_caps_bm;
316 int i;
317
318 source_caps_bm = bitmap_new(MIGRATION_CAPABILITY__MAX);
319 for (i = 0; i < state->caps_count; i++) {
320 MigrationCapability capability = state->capabilities[i];
321 set_bit(capability, source_caps_bm);
322 }
323
324 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
325 bool source_state, target_state;
326 if (!should_validate_capability(i)) {
327 continue;
328 }
329 source_state = test_bit(i, source_caps_bm);
0cec2056 330 target_state = s->capabilities[i];
6cafc8e4
YK
331 if (source_state != target_state) {
332 error_report("Capability %s is %s, but received capability is %s",
333 MigrationCapability_str(i),
334 target_state ? "on" : "off",
335 source_state ? "on" : "off");
336 ret = false;
337 /* Don't break here to report all failed capabilities */
338 }
339 }
340
341 g_free(source_caps_bm);
342 return ret;
343}
344
61964c23
JQ
345static int configuration_post_load(void *opaque, int version_id)
346{
347 SaveState *state = opaque;
348 const char *current_name = MACHINE_GET_CLASS(current_machine)->name;
39f633d4 349 int ret = 0;
61964c23
JQ
350
351 if (strncmp(state->name, current_name, state->len) != 0) {
15d61692
GK
352 error_report("Machine type received is '%.*s' and local is '%s'",
353 (int) state->len, state->name, current_name);
39f633d4
JG
354 ret = -EINVAL;
355 goto out;
61964c23 356 }
59811a32 357
46d702b1 358 if (state->target_page_bits != qemu_target_page_bits()) {
59811a32 359 error_report("Received TARGET_PAGE_BITS is %d but local is %d",
46d702b1 360 state->target_page_bits, qemu_target_page_bits());
39f633d4
JG
361 ret = -EINVAL;
362 goto out;
59811a32
PM
363 }
364
6cafc8e4 365 if (!configuration_validate_capabilities(state)) {
39f633d4
JG
366 ret = -EINVAL;
367 goto out;
6cafc8e4
YK
368 }
369
39f633d4
JG
370out:
371 g_free((void *)state->name);
372 state->name = NULL;
373 state->len = 0;
374 g_free(state->capabilities);
375 state->capabilities = NULL;
376 state->caps_count = 0;
377
378 return ret;
61964c23
JQ
379}
380
6cafc8e4
YK
381static int get_capability(QEMUFile *f, void *pv, size_t size,
382 const VMStateField *field)
383{
384 MigrationCapability *capability = pv;
385 char capability_str[UINT8_MAX + 1];
386 uint8_t len;
387 int i;
388
389 len = qemu_get_byte(f);
390 qemu_get_buffer(f, (uint8_t *)capability_str, len);
391 capability_str[len] = '\0';
392 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
393 if (!strcmp(MigrationCapability_str(i), capability_str)) {
394 *capability = i;
395 return 0;
396 }
397 }
398 error_report("Received unknown capability %s", capability_str);
399 return -EINVAL;
400}
401
402static int put_capability(QEMUFile *f, void *pv, size_t size,
3ddba9a9 403 const VMStateField *field, JSONWriter *vmdesc)
6cafc8e4
YK
404{
405 MigrationCapability *capability = pv;
406 const char *capability_str = MigrationCapability_str(*capability);
407 size_t len = strlen(capability_str);
408 assert(len <= UINT8_MAX);
409
410 qemu_put_byte(f, len);
411 qemu_put_buffer(f, (uint8_t *)capability_str, len);
412 return 0;
413}
414
415static const VMStateInfo vmstate_info_capability = {
416 .name = "capability",
417 .get = get_capability,
418 .put = put_capability,
419};
420
59811a32
PM
421/* The target-page-bits subsection is present only if the
422 * target page size is not the same as the default (ie the
423 * minimum page size for a variable-page-size guest CPU).
424 * If it is present then it contains the actual target page
425 * bits for the machine, and migration will fail if the
426 * two ends don't agree about it.
427 */
428static bool vmstate_target_page_bits_needed(void *opaque)
429{
46d702b1
JQ
430 return qemu_target_page_bits()
431 > qemu_target_page_bits_min();
59811a32
PM
432}
433
434static const VMStateDescription vmstate_target_page_bits = {
435 .name = "configuration/target-page-bits",
436 .version_id = 1,
437 .minimum_version_id = 1,
438 .needed = vmstate_target_page_bits_needed,
439 .fields = (VMStateField[]) {
440 VMSTATE_UINT32(target_page_bits, SaveState),
441 VMSTATE_END_OF_LIST()
442 }
443};
444
6cafc8e4
YK
445static bool vmstate_capabilites_needed(void *opaque)
446{
447 return get_validatable_capabilities_count() > 0;
448}
449
450static const VMStateDescription vmstate_capabilites = {
451 .name = "configuration/capabilities",
452 .version_id = 1,
453 .minimum_version_id = 1,
454 .needed = vmstate_capabilites_needed,
455 .fields = (VMStateField[]) {
456 VMSTATE_UINT32_V(caps_count, SaveState, 1),
457 VMSTATE_VARRAY_UINT32_ALLOC(capabilities, SaveState, caps_count, 1,
458 vmstate_info_capability,
459 MigrationCapability),
460 VMSTATE_END_OF_LIST()
461 }
462};
463
b9d68df6
YK
464static bool vmstate_uuid_needed(void *opaque)
465{
466 return qemu_uuid_set && migrate_validate_uuid();
467}
468
469static int vmstate_uuid_post_load(void *opaque, int version_id)
470{
471 SaveState *state = opaque;
472 char uuid_src[UUID_FMT_LEN + 1];
473 char uuid_dst[UUID_FMT_LEN + 1];
474
475 if (!qemu_uuid_set) {
476 /*
477 * It's warning because user might not know UUID in some cases,
478 * e.g. load an old snapshot
479 */
480 qemu_uuid_unparse(&state->uuid, uuid_src);
481 warn_report("UUID is received %s, but local uuid isn't set",
482 uuid_src);
483 return 0;
484 }
485 if (!qemu_uuid_is_equal(&state->uuid, &qemu_uuid)) {
486 qemu_uuid_unparse(&state->uuid, uuid_src);
487 qemu_uuid_unparse(&qemu_uuid, uuid_dst);
488 error_report("UUID received is %s and local is %s", uuid_src, uuid_dst);
489 return -EINVAL;
490 }
491 return 0;
492}
493
494static const VMStateDescription vmstate_uuid = {
495 .name = "configuration/uuid",
496 .version_id = 1,
497 .minimum_version_id = 1,
498 .needed = vmstate_uuid_needed,
499 .post_load = vmstate_uuid_post_load,
500 .fields = (VMStateField[]) {
501 VMSTATE_UINT8_ARRAY_V(uuid.data, SaveState, sizeof(QemuUUID), 1),
502 VMSTATE_END_OF_LIST()
503 }
504};
505
61964c23
JQ
506static const VMStateDescription vmstate_configuration = {
507 .name = "configuration",
508 .version_id = 1,
59811a32 509 .pre_load = configuration_pre_load,
61964c23
JQ
510 .post_load = configuration_post_load,
511 .pre_save = configuration_pre_save,
39f633d4 512 .post_save = configuration_post_save,
61964c23
JQ
513 .fields = (VMStateField[]) {
514 VMSTATE_UINT32(len, SaveState),
59046ec2 515 VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, len),
61964c23
JQ
516 VMSTATE_END_OF_LIST()
517 },
395cb450 518 .subsections = (const VMStateDescription *[]) {
59811a32 519 &vmstate_target_page_bits,
6cafc8e4 520 &vmstate_capabilites,
b9d68df6 521 &vmstate_uuid,
59811a32
PM
522 NULL
523 }
0163a2e0 524};
a672b469 525
abfd9ce3
AS
526static void dump_vmstate_vmsd(FILE *out_file,
527 const VMStateDescription *vmsd, int indent,
528 bool is_subsection);
529
530static void dump_vmstate_vmsf(FILE *out_file, const VMStateField *field,
531 int indent)
532{
533 fprintf(out_file, "%*s{\n", indent, "");
534 indent += 2;
535 fprintf(out_file, "%*s\"field\": \"%s\",\n", indent, "", field->name);
536 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
537 field->version_id);
538 fprintf(out_file, "%*s\"field_exists\": %s,\n", indent, "",
539 field->field_exists ? "true" : "false");
12c81e5a
PX
540 if (field->flags & VMS_ARRAY) {
541 fprintf(out_file, "%*s\"num\": %d,\n", indent, "", field->num);
542 }
abfd9ce3
AS
543 fprintf(out_file, "%*s\"size\": %zu", indent, "", field->size);
544 if (field->vmsd != NULL) {
545 fprintf(out_file, ",\n");
546 dump_vmstate_vmsd(out_file, field->vmsd, indent, false);
547 }
548 fprintf(out_file, "\n%*s}", indent - 2, "");
549}
550
551static void dump_vmstate_vmss(FILE *out_file,
5cd8cada 552 const VMStateDescription **subsection,
abfd9ce3
AS
553 int indent)
554{
5cd8cada
JQ
555 if (*subsection != NULL) {
556 dump_vmstate_vmsd(out_file, *subsection, indent, true);
abfd9ce3
AS
557 }
558}
559
560static void dump_vmstate_vmsd(FILE *out_file,
561 const VMStateDescription *vmsd, int indent,
562 bool is_subsection)
563{
564 if (is_subsection) {
565 fprintf(out_file, "%*s{\n", indent, "");
566 } else {
567 fprintf(out_file, "%*s\"%s\": {\n", indent, "", "Description");
568 }
569 indent += 2;
570 fprintf(out_file, "%*s\"name\": \"%s\",\n", indent, "", vmsd->name);
571 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
572 vmsd->version_id);
573 fprintf(out_file, "%*s\"minimum_version_id\": %d", indent, "",
574 vmsd->minimum_version_id);
575 if (vmsd->fields != NULL) {
576 const VMStateField *field = vmsd->fields;
577 bool first;
578
579 fprintf(out_file, ",\n%*s\"Fields\": [\n", indent, "");
580 first = true;
581 while (field->name != NULL) {
582 if (field->flags & VMS_MUST_EXIST) {
583 /* Ignore VMSTATE_VALIDATE bits; these don't get migrated */
584 field++;
585 continue;
586 }
587 if (!first) {
588 fprintf(out_file, ",\n");
589 }
590 dump_vmstate_vmsf(out_file, field, indent + 2);
591 field++;
592 first = false;
593 }
89c56848 594 assert(field->flags == VMS_END);
abfd9ce3
AS
595 fprintf(out_file, "\n%*s]", indent, "");
596 }
597 if (vmsd->subsections != NULL) {
5cd8cada 598 const VMStateDescription **subsection = vmsd->subsections;
abfd9ce3
AS
599 bool first;
600
601 fprintf(out_file, ",\n%*s\"Subsections\": [\n", indent, "");
602 first = true;
5cd8cada 603 while (*subsection != NULL) {
abfd9ce3
AS
604 if (!first) {
605 fprintf(out_file, ",\n");
606 }
607 dump_vmstate_vmss(out_file, subsection, indent + 2);
608 subsection++;
609 first = false;
610 }
611 fprintf(out_file, "\n%*s]", indent, "");
612 }
613 fprintf(out_file, "\n%*s}", indent - 2, "");
614}
615
616static void dump_machine_type(FILE *out_file)
617{
618 MachineClass *mc;
619
620 mc = MACHINE_GET_CLASS(current_machine);
621
622 fprintf(out_file, " \"vmschkmachine\": {\n");
623 fprintf(out_file, " \"Name\": \"%s\"\n", mc->name);
624 fprintf(out_file, " },\n");
625}
626
627void dump_vmstate_json_to_file(FILE *out_file)
628{
629 GSList *list, *elt;
630 bool first;
631
632 fprintf(out_file, "{\n");
633 dump_machine_type(out_file);
634
635 first = true;
636 list = object_class_get_list(TYPE_DEVICE, true);
637 for (elt = list; elt; elt = elt->next) {
638 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
639 TYPE_DEVICE);
640 const char *name;
641 int indent = 2;
642
643 if (!dc->vmsd) {
644 continue;
645 }
646
647 if (!first) {
648 fprintf(out_file, ",\n");
649 }
650 name = object_class_get_name(OBJECT_CLASS(dc));
651 fprintf(out_file, "%*s\"%s\": {\n", indent, "", name);
652 indent += 2;
653 fprintf(out_file, "%*s\"Name\": \"%s\",\n", indent, "", name);
654 fprintf(out_file, "%*s\"version_id\": %d,\n", indent, "",
655 dc->vmsd->version_id);
656 fprintf(out_file, "%*s\"minimum_version_id\": %d,\n", indent, "",
657 dc->vmsd->minimum_version_id);
658
659 dump_vmstate_vmsd(out_file, dc->vmsd, indent, false);
660
661 fprintf(out_file, "\n%*s}", indent - 2, "");
662 first = false;
663 }
664 fprintf(out_file, "\n}\n");
665 fclose(out_file);
26daeba4 666 g_slist_free(list);
abfd9ce3
AS
667}
668
93062e23 669static uint32_t calculate_new_instance_id(const char *idstr)
8718e999
JQ
670{
671 SaveStateEntry *se;
93062e23 672 uint32_t instance_id = 0;
8718e999 673
0163a2e0 674 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
8718e999
JQ
675 if (strcmp(idstr, se->idstr) == 0
676 && instance_id <= se->instance_id) {
677 instance_id = se->instance_id + 1;
678 }
679 }
93062e23
PX
680 /* Make sure we never loop over without being noticed */
681 assert(instance_id != VMSTATE_INSTANCE_ID_ANY);
8718e999
JQ
682 return instance_id;
683}
684
7685ee6a
AW
685static int calculate_compat_instance_id(const char *idstr)
686{
687 SaveStateEntry *se;
688 int instance_id = 0;
689
0163a2e0 690 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
38ff78d3 691 if (!se->compat) {
7685ee6a 692 continue;
38ff78d3 693 }
7685ee6a
AW
694
695 if (strcmp(idstr, se->compat->idstr) == 0
696 && instance_id <= se->compat->instance_id) {
697 instance_id = se->compat->instance_id + 1;
698 }
699 }
700 return instance_id;
701}
702
f37bc036
PX
703static inline MigrationPriority save_state_priority(SaveStateEntry *se)
704{
705 if (se->vmsd) {
706 return se->vmsd->priority;
707 }
708 return MIG_PRI_DEFAULT;
709}
710
711static void savevm_state_handler_insert(SaveStateEntry *nse)
712{
713 MigrationPriority priority = save_state_priority(nse);
714 SaveStateEntry *se;
174723ff 715 int i;
f37bc036
PX
716
717 assert(priority <= MIG_PRI_MAX);
718
174723ff
SC
719 for (i = priority - 1; i >= 0; i--) {
720 se = savevm_state.handler_pri_head[i];
721 if (se != NULL) {
722 assert(save_state_priority(se) < priority);
f37bc036
PX
723 break;
724 }
725 }
726
174723ff 727 if (i >= 0) {
f37bc036
PX
728 QTAILQ_INSERT_BEFORE(se, nse, entry);
729 } else {
730 QTAILQ_INSERT_TAIL(&savevm_state.handlers, nse, entry);
731 }
174723ff
SC
732
733 if (savevm_state.handler_pri_head[priority] == NULL) {
734 savevm_state.handler_pri_head[priority] = nse;
735 }
f37bc036
PX
736}
737
bd5de61e
SC
738static void savevm_state_handler_remove(SaveStateEntry *se)
739{
174723ff
SC
740 SaveStateEntry *next;
741 MigrationPriority priority = save_state_priority(se);
742
743 if (se == savevm_state.handler_pri_head[priority]) {
744 next = QTAILQ_NEXT(se, entry);
745 if (next != NULL && save_state_priority(next) == priority) {
746 savevm_state.handler_pri_head[priority] = next;
747 } else {
748 savevm_state.handler_pri_head[priority] = NULL;
749 }
750 }
bd5de61e
SC
751 QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
752}
753
a672b469
AL
754/* TODO: Individual devices generally have very little idea about the rest
755 of the system, so instance_id should be removed/replaced.
756 Meanwhile pass -1 as instance_id if you do not already have a clearly
757 distinguishing id for all instances of your device class. */
ce62df53 758int register_savevm_live(const char *idstr,
93062e23 759 uint32_t instance_id,
a672b469 760 int version_id,
de22ded0 761 const SaveVMHandlers *ops,
a672b469
AL
762 void *opaque)
763{
8718e999 764 SaveStateEntry *se;
a672b469 765
97f3ad35 766 se = g_new0(SaveStateEntry, 1);
a672b469 767 se->version_id = version_id;
0163a2e0 768 se->section_id = savevm_state.global_section_id++;
7908c78d 769 se->ops = ops;
a672b469 770 se->opaque = opaque;
9ed7d6ae 771 se->vmsd = NULL;
a7ae8355 772 /* if this is a live_savem then set is_ram */
9907e842 773 if (ops->save_setup != NULL) {
a7ae8355
SS
774 se->is_ram = 1;
775 }
a672b469 776
7685ee6a
AW
777 pstrcat(se->idstr, sizeof(se->idstr), idstr);
778
1df2c9a2 779 if (instance_id == VMSTATE_INSTANCE_ID_ANY) {
7685ee6a 780 se->instance_id = calculate_new_instance_id(se->idstr);
8718e999
JQ
781 } else {
782 se->instance_id = instance_id;
a672b469 783 }
7685ee6a 784 assert(!se->compat || se->instance_id == 0);
f37bc036 785 savevm_state_handler_insert(se);
a672b469
AL
786 return 0;
787}
788
3cad405b 789void unregister_savevm(VMStateIf *obj, const char *idstr, void *opaque)
41bd13af 790{
8718e999 791 SaveStateEntry *se, *new_se;
7685ee6a
AW
792 char id[256] = "";
793
3cad405b
MAL
794 if (obj) {
795 char *oid = vmstate_if_get_id(obj);
796 if (oid) {
797 pstrcpy(id, sizeof(id), oid);
7685ee6a 798 pstrcat(id, sizeof(id), "/");
3cad405b 799 g_free(oid);
7685ee6a
AW
800 }
801 }
802 pstrcat(id, sizeof(id), idstr);
41bd13af 803
0163a2e0 804 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
7685ee6a 805 if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
bd5de61e 806 savevm_state_handler_remove(se);
ef1e1e07 807 g_free(se->compat);
7267c094 808 g_free(se);
41bd13af 809 }
41bd13af
AL
810 }
811}
812
bb25a728
DDAG
813/*
814 * Perform some basic checks on vmsd's at registration
815 * time.
816 */
817static void vmstate_check(const VMStateDescription *vmsd)
818{
819 const VMStateField *field = vmsd->fields;
820 const VMStateDescription **subsection = vmsd->subsections;
821
822 if (field) {
823 while (field->name) {
824 if (field->flags & (VMS_STRUCT | VMS_VSTRUCT)) {
825 /* Recurse to sub structures */
826 vmstate_check(field->vmsd);
827 }
828 /* Carry on */
829 field++;
830 }
831 /* Check for the end of field list canary */
832 if (field->flags != VMS_END) {
833 error_report("VMSTATE not ending with VMS_END: %s", vmsd->name);
834 g_assert_not_reached();
835 }
836 }
837
838 while (subsection && *subsection) {
839 /*
840 * The name of a subsection should start with the name of the
841 * current object.
842 */
843 assert(!strncmp(vmsd->name, (*subsection)->name, strlen(vmsd->name)));
844 vmstate_check(*subsection);
845 subsection++;
846 }
847}
848
93062e23 849int vmstate_register_with_alias_id(VMStateIf *obj, uint32_t instance_id,
4d2ffa08
JK
850 const VMStateDescription *vmsd,
851 void *opaque, int alias_id,
bc5c4f21
DDAG
852 int required_for_version,
853 Error **errp)
9ed7d6ae 854{
8718e999 855 SaveStateEntry *se;
9ed7d6ae 856
4d2ffa08
JK
857 /* If this triggers, alias support can be dropped for the vmsd. */
858 assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
859
97f3ad35 860 se = g_new0(SaveStateEntry, 1);
9ed7d6ae 861 se->version_id = vmsd->version_id;
0163a2e0 862 se->section_id = savevm_state.global_section_id++;
9ed7d6ae
JQ
863 se->opaque = opaque;
864 se->vmsd = vmsd;
4d2ffa08 865 se->alias_id = alias_id;
9ed7d6ae 866
3cad405b
MAL
867 if (obj) {
868 char *id = vmstate_if_get_id(obj);
7685ee6a 869 if (id) {
581f08ba
DDAG
870 if (snprintf(se->idstr, sizeof(se->idstr), "%s/", id) >=
871 sizeof(se->idstr)) {
872 error_setg(errp, "Path too long for VMState (%s)", id);
873 g_free(id);
874 g_free(se);
875
876 return -1;
877 }
128e4e10 878 g_free(id);
7685ee6a 879
97f3ad35 880 se->compat = g_new0(CompatEntry, 1);
7685ee6a 881 pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
1df2c9a2 882 se->compat->instance_id = instance_id == VMSTATE_INSTANCE_ID_ANY ?
7685ee6a 883 calculate_compat_instance_id(vmsd->name) : instance_id;
1df2c9a2 884 instance_id = VMSTATE_INSTANCE_ID_ANY;
7685ee6a
AW
885 }
886 }
887 pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
888
1df2c9a2 889 if (instance_id == VMSTATE_INSTANCE_ID_ANY) {
7685ee6a 890 se->instance_id = calculate_new_instance_id(se->idstr);
8718e999
JQ
891 } else {
892 se->instance_id = instance_id;
9ed7d6ae 893 }
bb25a728
DDAG
894
895 /* Perform a recursive sanity check during the test runs */
896 if (qtest_enabled()) {
897 vmstate_check(vmsd);
898 }
7685ee6a 899 assert(!se->compat || se->instance_id == 0);
f37bc036 900 savevm_state_handler_insert(se);
9ed7d6ae
JQ
901 return 0;
902}
903
3cad405b 904void vmstate_unregister(VMStateIf *obj, const VMStateDescription *vmsd,
0be71e32 905 void *opaque)
9ed7d6ae 906{
1eb7538b
JQ
907 SaveStateEntry *se, *new_se;
908
0163a2e0 909 QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
1eb7538b 910 if (se->vmsd == vmsd && se->opaque == opaque) {
bd5de61e 911 savevm_state_handler_remove(se);
ef1e1e07 912 g_free(se->compat);
7267c094 913 g_free(se);
1eb7538b
JQ
914 }
915 }
9ed7d6ae
JQ
916}
917
3a011c26 918static int vmstate_load(QEMUFile *f, SaveStateEntry *se)
4082be4d 919{
9013dca5 920 trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
9ed7d6ae 921 if (!se->vmsd) { /* Old style */
3a011c26 922 return se->ops->load_state(f, se->opaque, se->load_version_id);
9ed7d6ae 923 }
3a011c26 924 return vmstate_load_state(f, se->vmsd, se->opaque, se->load_version_id);
4082be4d
JQ
925}
926
3ddba9a9
MA
927static void vmstate_save_old_style(QEMUFile *f, SaveStateEntry *se,
928 JSONWriter *vmdesc)
8118f095 929{
6da835d4 930 uint64_t old_offset = qemu_file_transferred_fast(f);
8118f095 931 se->ops->save_state(f, se->opaque);
6da835d4 932 uint64_t size = qemu_file_transferred_fast(f) - old_offset;
8118f095
AG
933
934 if (vmdesc) {
3ddba9a9
MA
935 json_writer_int64(vmdesc, "size", size);
936 json_writer_start_array(vmdesc, "fields");
937 json_writer_start_object(vmdesc, NULL);
938 json_writer_str(vmdesc, "name", "data");
939 json_writer_int64(vmdesc, "size", size);
940 json_writer_str(vmdesc, "type", "buffer");
941 json_writer_end_object(vmdesc);
942 json_writer_end_array(vmdesc);
8118f095
AG
943 }
944}
945
ce39bfc9
DDAG
946/*
947 * Write the header for device section (QEMU_VM_SECTION START/END/PART/FULL)
948 */
949static void save_section_header(QEMUFile *f, SaveStateEntry *se,
950 uint8_t section_type)
951{
952 qemu_put_byte(f, section_type);
953 qemu_put_be32(f, se->section_id);
954
955 if (section_type == QEMU_VM_SECTION_FULL ||
956 section_type == QEMU_VM_SECTION_START) {
957 /* ID string */
958 size_t len = strlen(se->idstr);
959 qemu_put_byte(f, len);
960 qemu_put_buffer(f, (uint8_t *)se->idstr, len);
961
962 qemu_put_be32(f, se->instance_id);
963 qemu_put_be32(f, se->version_id);
964 }
965}
966
f68945d4
DDAG
967/*
968 * Write a footer onto device sections that catches cases misformatted device
969 * sections.
970 */
971static void save_section_footer(QEMUFile *f, SaveStateEntry *se)
972{
15c38503 973 if (migrate_get_current()->send_section_footer) {
f68945d4
DDAG
974 qemu_put_byte(f, QEMU_VM_SECTION_FOOTER);
975 qemu_put_be32(f, se->section_id);
976 }
977}
978
5e104f24
DH
979static int vmstate_save(QEMUFile *f, SaveStateEntry *se, JSONWriter *vmdesc)
980{
981 int ret;
982
983 if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
984 return 0;
985 }
986 if (se->vmsd && !vmstate_save_needed(se->vmsd, se->opaque)) {
987 trace_savevm_section_skip(se->idstr, se->section_id);
988 return 0;
989 }
990
991 trace_savevm_section_start(se->idstr, se->section_id);
992 save_section_header(f, se, QEMU_VM_SECTION_FULL);
993 if (vmdesc) {
994 json_writer_start_object(vmdesc, NULL);
995 json_writer_str(vmdesc, "name", se->idstr);
996 json_writer_int64(vmdesc, "instance_id", se->instance_id);
997 }
998
999 trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)");
1000 if (!se->vmsd) {
1001 vmstate_save_old_style(f, se, vmdesc);
1002 } else {
1003 ret = vmstate_save_state(f, se->vmsd, se->opaque, vmdesc);
1004 if (ret) {
1005 return ret;
1006 }
1007 }
1008
1009 trace_savevm_section_end(se->idstr, se->section_id, 0);
1010 save_section_footer(f, se);
1011 if (vmdesc) {
1012 json_writer_end_object(vmdesc);
1013 }
1014 return 0;
1015}
c76ca188
DDAG
1016/**
1017 * qemu_savevm_command_send: Send a 'QEMU_VM_COMMAND' type element with the
1018 * command and associated data.
1019 *
1020 * @f: File to send command on
1021 * @command: Command type to send
1022 * @len: Length of associated data
1023 * @data: Data associated with command.
1024 */
20a519a0
JQ
1025static void qemu_savevm_command_send(QEMUFile *f,
1026 enum qemu_vm_cmd command,
1027 uint16_t len,
1028 uint8_t *data)
c76ca188
DDAG
1029{
1030 trace_savevm_command_send(command, len);
1031 qemu_put_byte(f, QEMU_VM_COMMAND);
1032 qemu_put_be16(f, (uint16_t)command);
1033 qemu_put_be16(f, len);
1034 qemu_put_buffer(f, data, len);
1035 qemu_fflush(f);
1036}
1037
aad555c2
ZC
1038void qemu_savevm_send_colo_enable(QEMUFile *f)
1039{
1040 trace_savevm_send_colo_enable();
1041 qemu_savevm_command_send(f, MIG_CMD_ENABLE_COLO, 0, NULL);
1042}
1043
2e37701e
DDAG
1044void qemu_savevm_send_ping(QEMUFile *f, uint32_t value)
1045{
1046 uint32_t buf;
1047
1048 trace_savevm_send_ping(value);
1049 buf = cpu_to_be32(value);
1050 qemu_savevm_command_send(f, MIG_CMD_PING, sizeof(value), (uint8_t *)&buf);
1051}
1052
1053void qemu_savevm_send_open_return_path(QEMUFile *f)
1054{
1055 trace_savevm_send_open_return_path();
1056 qemu_savevm_command_send(f, MIG_CMD_OPEN_RETURN_PATH, 0, NULL);
1057}
1058
11cf1d98
DDAG
1059/* We have a buffer of data to send; we don't want that all to be loaded
1060 * by the command itself, so the command contains just the length of the
1061 * extra buffer that we then send straight after it.
1062 * TODO: Must be a better way to organise that
1063 *
1064 * Returns:
1065 * 0 on success
1066 * -ve on error
1067 */
61b67d47 1068int qemu_savevm_send_packaged(QEMUFile *f, const uint8_t *buf, size_t len)
11cf1d98 1069{
11cf1d98
DDAG
1070 uint32_t tmp;
1071
1072 if (len > MAX_VM_CMD_PACKAGED_SIZE) {
1073 error_report("%s: Unreasonably large packaged state: %zu",
1074 __func__, len);
1075 return -1;
1076 }
1077
1078 tmp = cpu_to_be32(len);
1079
1080 trace_qemu_savevm_send_packaged();
1081 qemu_savevm_command_send(f, MIG_CMD_PACKAGED, 4, (uint8_t *)&tmp);
1082
61b67d47 1083 qemu_put_buffer(f, buf, len);
11cf1d98
DDAG
1084
1085 return 0;
1086}
1087
093e3c42
DDAG
1088/* Send prior to any postcopy transfer */
1089void qemu_savevm_send_postcopy_advise(QEMUFile *f)
1090{
58110f0a
VSO
1091 if (migrate_postcopy_ram()) {
1092 uint64_t tmp[2];
1093 tmp[0] = cpu_to_be64(ram_pagesize_summary());
1094 tmp[1] = cpu_to_be64(qemu_target_page_size());
1095
1096 trace_qemu_savevm_send_postcopy_advise();
1097 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE,
1098 16, (uint8_t *)tmp);
1099 } else {
1100 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_ADVISE, 0, NULL);
1101 }
093e3c42
DDAG
1102}
1103
1104/* Sent prior to starting the destination running in postcopy, discard pages
1105 * that have already been sent but redirtied on the source.
1106 * CMD_POSTCOPY_RAM_DISCARD consist of:
1107 * byte version (0)
1108 * byte Length of name field (not including 0)
1109 * n x byte RAM block name
1110 * byte 0 terminator (just for safety)
1111 * n x Byte ranges within the named RAMBlock
1112 * be64 Start of the range
1113 * be64 Length
1114 *
1115 * name: RAMBlock name that these entries are part of
1116 * len: Number of page entries
1117 * start_list: 'len' addresses
1118 * length_list: 'len' addresses
1119 *
1120 */
1121void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name,
1122 uint16_t len,
1123 uint64_t *start_list,
1124 uint64_t *length_list)
1125{
1126 uint8_t *buf;
1127 uint16_t tmplen;
1128 uint16_t t;
1129 size_t name_len = strlen(name);
1130
1131 trace_qemu_savevm_send_postcopy_ram_discard(name, len);
1132 assert(name_len < 256);
1133 buf = g_malloc0(1 + 1 + name_len + 1 + (8 + 8) * len);
1134 buf[0] = postcopy_ram_discard_version;
1135 buf[1] = name_len;
1136 memcpy(buf + 2, name, name_len);
1137 tmplen = 2 + name_len;
1138 buf[tmplen++] = '\0';
1139
1140 for (t = 0; t < len; t++) {
4d885131 1141 stq_be_p(buf + tmplen, start_list[t]);
093e3c42 1142 tmplen += 8;
4d885131 1143 stq_be_p(buf + tmplen, length_list[t]);
093e3c42
DDAG
1144 tmplen += 8;
1145 }
1146 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RAM_DISCARD, tmplen, buf);
1147 g_free(buf);
1148}
1149
1150/* Get the destination into a state where it can receive postcopy data. */
1151void qemu_savevm_send_postcopy_listen(QEMUFile *f)
1152{
1153 trace_savevm_send_postcopy_listen();
1154 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_LISTEN, 0, NULL);
1155}
1156
1157/* Kick the destination into running */
1158void qemu_savevm_send_postcopy_run(QEMUFile *f)
1159{
1160 trace_savevm_send_postcopy_run();
1161 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RUN, 0, NULL);
1162}
1163
3f5875ec
PX
1164void qemu_savevm_send_postcopy_resume(QEMUFile *f)
1165{
1166 trace_savevm_send_postcopy_resume();
1167 qemu_savevm_command_send(f, MIG_CMD_POSTCOPY_RESUME, 0, NULL);
1168}
1169
f25d4225
PX
1170void qemu_savevm_send_recv_bitmap(QEMUFile *f, char *block_name)
1171{
1172 size_t len;
1173 char buf[256];
1174
1175 trace_savevm_send_recv_bitmap(block_name);
1176
1177 buf[0] = len = strlen(block_name);
1178 memcpy(buf + 1, block_name, len);
1179
1180 qemu_savevm_command_send(f, MIG_CMD_RECV_BITMAP, len + 1, (uint8_t *)buf);
1181}
1182
e1c37d0e 1183bool qemu_savevm_state_blocked(Error **errp)
dc912121
AW
1184{
1185 SaveStateEntry *se;
1186
0163a2e0 1187 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
7d854c47 1188 if (se->vmsd && se->vmsd->unmigratable) {
f231b88d
CR
1189 error_setg(errp, "State blocked by non-migratable device '%s'",
1190 se->idstr);
dc912121
AW
1191 return true;
1192 }
1193 }
1194 return false;
1195}
1196
3af8554b
DDAG
1197void qemu_savevm_non_migratable_list(strList **reasons)
1198{
1199 SaveStateEntry *se;
1200
1201 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1202 if (se->vmsd && se->vmsd->unmigratable) {
1203 QAPI_LIST_PREPEND(*reasons,
1204 g_strdup_printf("non-migratable device: %s",
1205 se->idstr));
1206 }
1207 }
1208}
1209
f796baa1
DDAG
1210void qemu_savevm_state_header(QEMUFile *f)
1211{
1212 trace_savevm_state_header();
1213 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1214 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
172dfd4f 1215
4ffdb337 1216 if (migrate_get_current()->send_configuration) {
172dfd4f
DDAG
1217 qemu_put_byte(f, QEMU_VM_CONFIGURATION);
1218 vmstate_save_state(f, &vmstate_configuration, &savevm_state, 0);
1219 }
f796baa1
DDAG
1220}
1221
d05de9e3 1222bool qemu_savevm_state_guest_unplug_pending(void)
c7e0acd5
JF
1223{
1224 SaveStateEntry *se;
c7e0acd5
JF
1225
1226 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
284f42a5
JF
1227 if (se->vmsd && se->vmsd->dev_unplug_pending &&
1228 se->vmsd->dev_unplug_pending(se->opaque)) {
d05de9e3 1229 return true;
c7e0acd5
JF
1230 }
1231 }
1232
d05de9e3 1233 return false;
c7e0acd5
JF
1234}
1235
9907e842 1236void qemu_savevm_state_setup(QEMUFile *f)
a672b469 1237{
e3bf5e68 1238 MigrationState *ms = migrate_get_current();
a672b469 1239 SaveStateEntry *se;
bd227060 1240 Error *local_err = NULL;
39346385 1241 int ret;
a672b469 1242
e3bf5e68
DH
1243 ms->vmdesc = json_writer_new(false);
1244 json_writer_start_object(ms->vmdesc, NULL);
1245 json_writer_int64(ms->vmdesc, "page_size", qemu_target_page_size());
1246 json_writer_start_array(ms->vmdesc, "devices");
1247
9907e842 1248 trace_savevm_state_setup();
0163a2e0 1249 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
62f42625
DH
1250 if (se->vmsd && se->vmsd->early_setup) {
1251 ret = vmstate_save(f, se, ms->vmdesc);
1252 if (ret) {
1253 qemu_file_set_error(f, ret);
1254 break;
1255 }
1256 continue;
1257 }
1258
9907e842 1259 if (!se->ops || !se->ops->save_setup) {
a672b469 1260 continue;
22ea40f4 1261 }
cea3b4c0 1262 if (se->ops->is_active) {
6bd68781
JQ
1263 if (!se->ops->is_active(se->opaque)) {
1264 continue;
1265 }
1266 }
ce39bfc9 1267 save_section_header(f, se, QEMU_VM_SECTION_START);
a672b469 1268
9907e842 1269 ret = se->ops->save_setup(f, se->opaque);
f68945d4 1270 save_section_footer(f, se);
2975725f 1271 if (ret < 0) {
47c8c17a
PB
1272 qemu_file_set_error(f, ret);
1273 break;
2975725f 1274 }
a672b469 1275 }
bd227060
WW
1276
1277 if (precopy_notify(PRECOPY_NOTIFY_SETUP, &local_err)) {
1278 error_report_err(local_err);
1279 }
a672b469
AL
1280}
1281
d1b8eadb
PX
1282int qemu_savevm_state_resume_prepare(MigrationState *s)
1283{
1284 SaveStateEntry *se;
1285 int ret;
1286
1287 trace_savevm_state_resume_prepare();
1288
1289 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1290 if (!se->ops || !se->ops->resume_prepare) {
1291 continue;
1292 }
cea3b4c0 1293 if (se->ops->is_active) {
d1b8eadb
PX
1294 if (!se->ops->is_active(se->opaque)) {
1295 continue;
1296 }
1297 }
1298 ret = se->ops->resume_prepare(s, se->opaque);
1299 if (ret < 0) {
1300 return ret;
1301 }
1302 }
1303
1304 return 0;
1305}
1306
39346385 1307/*
07f35073 1308 * this function has three return values:
39346385
JQ
1309 * negative: there was one error, and we have -errno.
1310 * 0 : We haven't finished, caller have to go again
1311 * 1 : We have finished, we can go to complete phase
1312 */
35ecd943 1313int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy)
a672b469
AL
1314{
1315 SaveStateEntry *se;
1316 int ret = 1;
1317
9013dca5 1318 trace_savevm_state_iterate();
0163a2e0 1319 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
16310a3c 1320 if (!se->ops || !se->ops->save_live_iterate) {
a672b469 1321 continue;
22ea40f4 1322 }
a94cd7b8
WY
1323 if (se->ops->is_active &&
1324 !se->ops->is_active(se->opaque)) {
1325 continue;
6bd68781 1326 }
a94cd7b8
WY
1327 if (se->ops->is_active_iterate &&
1328 !se->ops->is_active_iterate(se->opaque)) {
1329 continue;
c865d848 1330 }
35ecd943
DDAG
1331 /*
1332 * In the postcopy phase, any device that doesn't know how to
1333 * do postcopy should have saved it's state in the _complete
1334 * call that's already run, it might get confused if we call
1335 * iterate afterwards.
1336 */
c6467627
VSO
1337 if (postcopy &&
1338 !(se->ops->has_postcopy && se->ops->has_postcopy(se->opaque))) {
35ecd943
DDAG
1339 continue;
1340 }
e1fde0e0 1341 if (migration_rate_exceeded(f)) {
aac844ed
JQ
1342 return 0;
1343 }
464400f6 1344 trace_savevm_section_start(se->idstr, se->section_id);
ce39bfc9
DDAG
1345
1346 save_section_header(f, se, QEMU_VM_SECTION_PART);
a672b469 1347
16310a3c 1348 ret = se->ops->save_live_iterate(f, se->opaque);
a5df2a02 1349 trace_savevm_section_end(se->idstr, se->section_id, ret);
f68945d4 1350 save_section_footer(f, se);
517a13c9 1351
47c8c17a 1352 if (ret < 0) {
92002658
DE
1353 error_report("failed to save SaveStateEntry with id(name): "
1354 "%d(%s): %d",
1355 se->section_id, se->idstr, ret);
47c8c17a
PB
1356 qemu_file_set_error(f, ret);
1357 }
2975725f 1358 if (ret <= 0) {
90697be8
JK
1359 /* Do not proceed to the next vmstate before this one reported
1360 completion of the current stage. This serializes the migration
1361 and reduces the probability that a faster changing state is
1362 synchronized over and over again. */
1363 break;
1364 }
a672b469 1365 }
39346385 1366 return ret;
a672b469
AL
1367}
1368
9850c604
AG
1369static bool should_send_vmdesc(void)
1370{
1371 MachineState *machine = MACHINE(qdev_get_machine());
5727309d 1372 bool in_postcopy = migration_in_postcopy();
8421b205 1373 return !machine->suppress_vmdesc && !in_postcopy;
9850c604
AG
1374}
1375
763c906b
DDAG
1376/*
1377 * Calls the save_live_complete_postcopy methods
1378 * causing the last few pages to be sent immediately and doing any associated
1379 * cleanup.
1380 * Note postcopy also calls qemu_savevm_state_complete_precopy to complete
1381 * all the other devices, but that happens at the point we switch to postcopy.
1382 */
1383void qemu_savevm_state_complete_postcopy(QEMUFile *f)
1384{
1385 SaveStateEntry *se;
1386 int ret;
1387
1388 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
1389 if (!se->ops || !se->ops->save_live_complete_postcopy) {
1390 continue;
1391 }
cea3b4c0 1392 if (se->ops->is_active) {
763c906b
DDAG
1393 if (!se->ops->is_active(se->opaque)) {
1394 continue;
1395 }
1396 }
1397 trace_savevm_section_start(se->idstr, se->section_id);
1398 /* Section type */
1399 qemu_put_byte(f, QEMU_VM_SECTION_END);
1400 qemu_put_be32(f, se->section_id);
1401
1402 ret = se->ops->save_live_complete_postcopy(f, se->opaque);
1403 trace_savevm_section_end(se->idstr, se->section_id, ret);
1404 save_section_footer(f, se);
1405 if (ret < 0) {
1406 qemu_file_set_error(f, ret);
1407 return;
1408 }
1409 }
1410
1411 qemu_put_byte(f, QEMU_VM_EOF);
1412 qemu_fflush(f);
1413}
1414
622a80c9 1415static
e326767b 1416int qemu_savevm_state_complete_precopy_iterable(QEMUFile *f, bool in_postcopy)
a672b469
AL
1417{
1418 SaveStateEntry *se;
2975725f 1419 int ret;
ea375f9a 1420
0163a2e0 1421 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
763c906b 1422 if (!se->ops ||
c6467627
VSO
1423 (in_postcopy && se->ops->has_postcopy &&
1424 se->ops->has_postcopy(se->opaque)) ||
763c906b 1425 !se->ops->save_live_complete_precopy) {
a672b469 1426 continue;
22ea40f4 1427 }
1c0d249d 1428
cea3b4c0 1429 if (se->ops->is_active) {
6bd68781
JQ
1430 if (!se->ops->is_active(se->opaque)) {
1431 continue;
1432 }
1433 }
464400f6 1434 trace_savevm_section_start(se->idstr, se->section_id);
ce39bfc9
DDAG
1435
1436 save_section_header(f, se, QEMU_VM_SECTION_END);
a672b469 1437
a3e06c3d 1438 ret = se->ops->save_live_complete_precopy(f, se->opaque);
a5df2a02 1439 trace_savevm_section_end(se->idstr, se->section_id, ret);
f68945d4 1440 save_section_footer(f, se);
2975725f 1441 if (ret < 0) {
47c8c17a 1442 qemu_file_set_error(f, ret);
a1fbe750 1443 return -1;
2975725f 1444 }
a672b469
AL
1445 }
1446
622a80c9
WY
1447 return 0;
1448}
1449
622a80c9
WY
1450int qemu_savevm_state_complete_precopy_non_iterable(QEMUFile *f,
1451 bool in_postcopy,
1452 bool inactivate_disks)
1453{
e3bf5e68
DH
1454 MigrationState *ms = migrate_get_current();
1455 JSONWriter *vmdesc = ms->vmdesc;
622a80c9
WY
1456 int vmdesc_len;
1457 SaveStateEntry *se;
1458 int ret;
1c0d249d 1459
0163a2e0 1460 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
62f42625
DH
1461 if (se->vmsd && se->vmsd->early_setup) {
1462 /* Already saved during qemu_savevm_state_setup(). */
1463 continue;
1464 }
1465
687433f6
DDAG
1466 ret = vmstate_save(f, se, vmdesc);
1467 if (ret) {
1468 qemu_file_set_error(f, ret);
1469 return ret;
1470 }
a672b469
AL
1471 }
1472
a1fbe750
FZ
1473 if (inactivate_disks) {
1474 /* Inactivate before sending QEMU_VM_EOF so that the
3b717194 1475 * bdrv_activate_all() on the other end won't fail. */
a1fbe750
FZ
1476 ret = bdrv_inactivate_all();
1477 if (ret) {
c232bf58
DDAG
1478 error_report("%s: bdrv_inactivate_all() failed (%d)",
1479 __func__, ret);
a1fbe750
FZ
1480 qemu_file_set_error(f, ret);
1481 return ret;
1482 }
1483 }
763c906b
DDAG
1484 if (!in_postcopy) {
1485 /* Postcopy stream will still be going */
1486 qemu_put_byte(f, QEMU_VM_EOF);
1487 }
8118f095 1488
3ddba9a9
MA
1489 json_writer_end_array(vmdesc);
1490 json_writer_end_object(vmdesc);
1491 vmdesc_len = strlen(json_writer_get(vmdesc));
8118f095 1492
9850c604
AG
1493 if (should_send_vmdesc()) {
1494 qemu_put_byte(f, QEMU_VM_VMDESCRIPTION);
1495 qemu_put_be32(f, vmdesc_len);
3ddba9a9 1496 qemu_put_buffer(f, (uint8_t *)json_writer_get(vmdesc), vmdesc_len);
9850c604 1497 }
8118f095 1498
e3bf5e68
DH
1499 /* Free it now to detect any inconsistencies. */
1500 json_writer_free(vmdesc);
1501 ms->vmdesc = NULL;
1502
622a80c9
WY
1503 return 0;
1504}
1505
1506int qemu_savevm_state_complete_precopy(QEMUFile *f, bool iterable_only,
1507 bool inactivate_disks)
1508{
1509 int ret;
1510 Error *local_err = NULL;
1511 bool in_postcopy = migration_in_postcopy();
1512
1513 if (precopy_notify(PRECOPY_NOTIFY_COMPLETE, &local_err)) {
1514 error_report_err(local_err);
1515 }
1516
1517 trace_savevm_state_complete_precopy();
1518
1519 cpu_synchronize_all_states();
1520
e326767b
WY
1521 if (!in_postcopy || iterable_only) {
1522 ret = qemu_savevm_state_complete_precopy_iterable(f, in_postcopy);
1523 if (ret) {
1524 return ret;
1525 }
622a80c9
WY
1526 }
1527
1528 if (iterable_only) {
1529 goto flush;
1530 }
1531
1532 ret = qemu_savevm_state_complete_precopy_non_iterable(f, in_postcopy,
1533 inactivate_disks);
1534 if (ret) {
1535 return ret;
1536 }
1537
4e455d51 1538flush:
edaae611 1539 qemu_fflush(f);
a1fbe750 1540 return 0;
a672b469
AL
1541}
1542
c31b098f
DDAG
1543/* Give an estimate of the amount left to be transferred,
1544 * the result is split into the amount for units that can and
1545 * for units that can't do postcopy.
1546 */
24beea4e
JQ
1547void qemu_savevm_state_pending_estimate(uint64_t *must_precopy,
1548 uint64_t *can_postcopy)
e4ed1541
JQ
1549{
1550 SaveStateEntry *se;
c31b098f 1551
24beea4e
JQ
1552 *must_precopy = 0;
1553 *can_postcopy = 0;
c31b098f 1554
0163a2e0 1555 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
e2647050 1556 if (!se->ops || !se->ops->state_pending_estimate) {
e4ed1541
JQ
1557 continue;
1558 }
cea3b4c0 1559 if (se->ops->is_active) {
e4ed1541
JQ
1560 if (!se->ops->is_active(se->opaque)) {
1561 continue;
1562 }
1563 }
24beea4e 1564 se->ops->state_pending_estimate(se->opaque, must_precopy, can_postcopy);
c8df4a7a
JQ
1565 }
1566}
1567
24beea4e
JQ
1568void qemu_savevm_state_pending_exact(uint64_t *must_precopy,
1569 uint64_t *can_postcopy)
c8df4a7a
JQ
1570{
1571 SaveStateEntry *se;
1572
24beea4e
JQ
1573 *must_precopy = 0;
1574 *can_postcopy = 0;
c8df4a7a
JQ
1575
1576 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
e2647050 1577 if (!se->ops || !se->ops->state_pending_exact) {
c8df4a7a
JQ
1578 continue;
1579 }
1580 if (se->ops->is_active) {
1581 if (!se->ops->is_active(se->opaque)) {
1582 continue;
1583 }
1584 }
24beea4e 1585 se->ops->state_pending_exact(se->opaque, must_precopy, can_postcopy);
e4ed1541 1586 }
e4ed1541
JQ
1587}
1588
ea7415fa 1589void qemu_savevm_state_cleanup(void)
4ec7fcc7
JK
1590{
1591 SaveStateEntry *se;
bd227060
WW
1592 Error *local_err = NULL;
1593
1594 if (precopy_notify(PRECOPY_NOTIFY_CLEANUP, &local_err)) {
1595 error_report_err(local_err);
1596 }
4ec7fcc7 1597
ea7415fa 1598 trace_savevm_state_cleanup();
0163a2e0 1599 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
70f794fc
JQ
1600 if (se->ops && se->ops->save_cleanup) {
1601 se->ops->save_cleanup(se->opaque);
4ec7fcc7
JK
1602 }
1603 }
1604}
1605
5d80448c 1606static int qemu_savevm_state(QEMUFile *f, Error **errp)
a672b469 1607{
a672b469 1608 int ret;
3e0c8050 1609 MigrationState *ms = migrate_get_current();
6dcf6668 1610 MigrationStatus status;
3e0c8050 1611
392d87e2 1612 if (migration_is_running(ms->state)) {
3d63da16
JL
1613 error_setg(errp, QERR_MIGRATION_ACTIVE);
1614 return -EINVAL;
1615 }
a672b469 1616
9d4b1e5f 1617 if (migrate_block()) {
ce7c817c 1618 error_setg(errp, "Block migration and snapshots are incompatible");
3d63da16 1619 return -EINVAL;
ce7c817c
JQ
1620 }
1621
3d63da16 1622 migrate_init(ms);
aff3f660 1623 memset(&mig_stats, 0, sizeof(mig_stats));
02abee3d 1624 memset(&compression_counters, 0, sizeof(compression_counters));
808642a2 1625 reset_vfio_bytes_transferred();
3d63da16
JL
1626 ms->to_dst_file = f;
1627
9b095037 1628 qemu_mutex_unlock_iothread();
f796baa1 1629 qemu_savevm_state_header(f);
9907e842 1630 qemu_savevm_state_setup(f);
9b095037
PB
1631 qemu_mutex_lock_iothread();
1632
47c8c17a 1633 while (qemu_file_get_error(f) == 0) {
35ecd943 1634 if (qemu_savevm_state_iterate(f, false) > 0) {
47c8c17a
PB
1635 break;
1636 }
1637 }
a672b469 1638
47c8c17a 1639 ret = qemu_file_get_error(f);
39346385 1640 if (ret == 0) {
a1fbe750 1641 qemu_savevm_state_complete_precopy(f, false, false);
624b9cc2 1642 ret = qemu_file_get_error(f);
39346385 1643 }
15b3b8ea 1644 qemu_savevm_state_cleanup();
04943eba 1645 if (ret != 0) {
5d80448c 1646 error_setg_errno(errp, -ret, "Error while writing VM state");
04943eba 1647 }
6dcf6668 1648
6dcf6668
DL
1649 if (ret != 0) {
1650 status = MIGRATION_STATUS_FAILED;
1651 } else {
1652 status = MIGRATION_STATUS_COMPLETED;
1653 }
1654 migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
f9c8caa0
VSO
1655
1656 /* f is outer parameter, it should not stay in global migration state after
1657 * this function finished */
1658 ms->to_dst_file = NULL;
1659
a672b469
AL
1660 return ret;
1661}
1662
3f6df99d 1663void qemu_savevm_live_state(QEMUFile *f)
a7ae8355 1664{
3f6df99d
ZC
1665 /* save QEMU_VM_SECTION_END section */
1666 qemu_savevm_state_complete_precopy(f, true, false);
1667 qemu_put_byte(f, QEMU_VM_EOF);
1668}
a7ae8355 1669
3f6df99d
ZC
1670int qemu_save_device_state(QEMUFile *f)
1671{
1672 SaveStateEntry *se;
a7ae8355 1673
3f6df99d
ZC
1674 if (!migration_in_colo_state()) {
1675 qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
1676 qemu_put_be32(f, QEMU_VM_FILE_VERSION);
1677 }
a7ae8355
SS
1678 cpu_synchronize_all_states();
1679
0163a2e0 1680 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
687433f6
DDAG
1681 int ret;
1682
a7ae8355
SS
1683 if (se->is_ram) {
1684 continue;
1685 }
687433f6
DDAG
1686 ret = vmstate_save(f, se, NULL);
1687 if (ret) {
1688 return ret;
1689 }
a7ae8355
SS
1690 }
1691
1692 qemu_put_byte(f, QEMU_VM_EOF);
1693
1694 return qemu_file_get_error(f);
1695}
1696
93062e23 1697static SaveStateEntry *find_se(const char *idstr, uint32_t instance_id)
a672b469
AL
1698{
1699 SaveStateEntry *se;
1700
0163a2e0 1701 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
a672b469 1702 if (!strcmp(se->idstr, idstr) &&
4d2ffa08
JK
1703 (instance_id == se->instance_id ||
1704 instance_id == se->alias_id))
a672b469 1705 return se;
7685ee6a
AW
1706 /* Migrating from an older version? */
1707 if (strstr(se->idstr, idstr) && se->compat) {
1708 if (!strcmp(se->compat->idstr, idstr) &&
1709 (instance_id == se->compat->instance_id ||
1710 instance_id == se->alias_id))
1711 return se;
1712 }
a672b469
AL
1713 }
1714 return NULL;
1715}
1716
7b89bf27
DDAG
1717enum LoadVMExitCodes {
1718 /* Allow a command to quit all layers of nested loadvm loops */
1719 LOADVM_QUIT = 1,
1720};
1721
093e3c42
DDAG
1722/* ------ incoming postcopy messages ------ */
1723/* 'advise' arrives before any transfers just to tell us that a postcopy
1724 * *might* happen - it might be skipped if precopy transferred everything
1725 * quickly.
1726 */
875fcd01
GK
1727static int loadvm_postcopy_handle_advise(MigrationIncomingState *mis,
1728 uint16_t len)
093e3c42
DDAG
1729{
1730 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_ADVISE);
e8ca1db2 1731 uint64_t remote_pagesize_summary, local_pagesize_summary, remote_tps;
144fa06b 1732 size_t page_size = qemu_target_page_size();
d3dff7a5 1733 Error *local_err = NULL;
093e3c42
DDAG
1734
1735 trace_loadvm_postcopy_handle_advise();
1736 if (ps != POSTCOPY_INCOMING_NONE) {
1737 error_report("CMD_POSTCOPY_ADVISE in wrong postcopy state (%d)", ps);
1738 return -1;
1739 }
1740
875fcd01
GK
1741 switch (len) {
1742 case 0:
1743 if (migrate_postcopy_ram()) {
1744 error_report("RAM postcopy is enabled but have 0 byte advise");
1745 return -EINVAL;
1746 }
58110f0a 1747 return 0;
875fcd01
GK
1748 case 8 + 8:
1749 if (!migrate_postcopy_ram()) {
1750 error_report("RAM postcopy is disabled but have 16 byte advise");
1751 return -EINVAL;
1752 }
1753 break;
1754 default:
1755 error_report("CMD_POSTCOPY_ADVISE invalid length (%d)", len);
1756 return -EINVAL;
58110f0a
VSO
1757 }
1758
74c38cf7
PX
1759 if (!postcopy_ram_supported_by_host(mis, &local_err)) {
1760 error_report_err(local_err);
328d4d85 1761 postcopy_state_set(POSTCOPY_INCOMING_NONE);
eb59db53
DDAG
1762 return -1;
1763 }
1764
e8ca1db2
DDAG
1765 remote_pagesize_summary = qemu_get_be64(mis->from_src_file);
1766 local_pagesize_summary = ram_pagesize_summary();
1767
1768 if (remote_pagesize_summary != local_pagesize_summary) {
093e3c42 1769 /*
e8ca1db2
DDAG
1770 * This detects two potential causes of mismatch:
1771 * a) A mismatch in host page sizes
1772 * Some combinations of mismatch are probably possible but it gets
1773 * a bit more complicated. In particular we need to place whole
1774 * host pages on the dest at once, and we need to ensure that we
1775 * handle dirtying to make sure we never end up sending part of
1776 * a hostpage on it's own.
1777 * b) The use of different huge page sizes on source/destination
1778 * a more fine grain test is performed during RAM block migration
1779 * but this test here causes a nice early clear failure, and
1780 * also fails when passed to an older qemu that doesn't
1781 * do huge pages.
093e3c42 1782 */
e8ca1db2
DDAG
1783 error_report("Postcopy needs matching RAM page sizes (s=%" PRIx64
1784 " d=%" PRIx64 ")",
1785 remote_pagesize_summary, local_pagesize_summary);
093e3c42
DDAG
1786 return -1;
1787 }
1788
1789 remote_tps = qemu_get_be64(mis->from_src_file);
144fa06b 1790 if (remote_tps != page_size) {
093e3c42
DDAG
1791 /*
1792 * Again, some differences could be dealt with, but for now keep it
1793 * simple.
1794 */
20afaed9 1795 error_report("Postcopy needs matching target page sizes (s=%d d=%zd)",
144fa06b 1796 (int)remote_tps, page_size);
093e3c42
DDAG
1797 return -1;
1798 }
1799
d3dff7a5
DDAG
1800 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_ADVISE, &local_err)) {
1801 error_report_err(local_err);
1802 return -1;
1803 }
1804
1caddf8a
DDAG
1805 if (ram_postcopy_incoming_init(mis)) {
1806 return -1;
1807 }
1808
093e3c42
DDAG
1809 return 0;
1810}
1811
1812/* After postcopy we will be told to throw some pages away since they're
1813 * dirty and will have to be demand fetched. Must happen before CPU is
1814 * started.
1815 * There can be 0..many of these messages, each encoding multiple pages.
1816 */
1817static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
1818 uint16_t len)
1819{
1820 int tmp;
1821 char ramid[256];
1822 PostcopyState ps = postcopy_state_get();
1823
1824 trace_loadvm_postcopy_ram_handle_discard();
1825
1826 switch (ps) {
1827 case POSTCOPY_INCOMING_ADVISE:
1828 /* 1st discard */
f9527107 1829 tmp = postcopy_ram_prepare_discard(mis);
093e3c42
DDAG
1830 if (tmp) {
1831 return tmp;
1832 }
1833 break;
1834
1835 case POSTCOPY_INCOMING_DISCARD:
1836 /* Expected state */
1837 break;
1838
1839 default:
1840 error_report("CMD_POSTCOPY_RAM_DISCARD in wrong postcopy state (%d)",
1841 ps);
1842 return -1;
1843 }
1844 /* We're expecting a
1845 * Version (0)
1846 * a RAM ID string (length byte, name, 0 term)
1847 * then at least 1 16 byte chunk
1848 */
1849 if (len < (1 + 1 + 1 + 1 + 2 * 8)) {
1850 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1851 return -1;
1852 }
1853
1854 tmp = qemu_get_byte(mis->from_src_file);
1855 if (tmp != postcopy_ram_discard_version) {
1856 error_report("CMD_POSTCOPY_RAM_DISCARD invalid version (%d)", tmp);
1857 return -1;
1858 }
1859
1860 if (!qemu_get_counted_string(mis->from_src_file, ramid)) {
1861 error_report("CMD_POSTCOPY_RAM_DISCARD Failed to read RAMBlock ID");
1862 return -1;
1863 }
1864 tmp = qemu_get_byte(mis->from_src_file);
1865 if (tmp != 0) {
1866 error_report("CMD_POSTCOPY_RAM_DISCARD missing nil (%d)", tmp);
1867 return -1;
1868 }
1869
1870 len -= 3 + strlen(ramid);
1871 if (len % 16) {
1872 error_report("CMD_POSTCOPY_RAM_DISCARD invalid length (%d)", len);
1873 return -1;
1874 }
1875 trace_loadvm_postcopy_ram_handle_discard_header(ramid, len);
1876 while (len) {
093e3c42
DDAG
1877 uint64_t start_addr, block_length;
1878 start_addr = qemu_get_be64(mis->from_src_file);
1879 block_length = qemu_get_be64(mis->from_src_file);
1880
1881 len -= 16;
aaa2064c 1882 int ret = ram_discard_range(ramid, start_addr, block_length);
093e3c42
DDAG
1883 if (ret) {
1884 return ret;
1885 }
093e3c42
DDAG
1886 }
1887 trace_loadvm_postcopy_ram_handle_discard_end();
1888
1889 return 0;
1890}
1891
c76201ab
DDAG
1892/*
1893 * Triggered by a postcopy_listen command; this thread takes over reading
1894 * the input stream, leaving the main thread free to carry on loading the rest
1895 * of the device state (from RAM).
1896 * (TODO:This could do with being in a postcopy file - but there again it's
1897 * just another input loop, not that postcopy specific)
1898 */
1899static void *postcopy_ram_listen_thread(void *opaque)
1900{
c76201ab 1901 MigrationIncomingState *mis = migration_incoming_get_current();
b411b844 1902 QEMUFile *f = mis->from_src_file;
c76201ab 1903 int load_res;
ee647225
VSO
1904 MigrationState *migr = migrate_get_current();
1905
1906 object_ref(OBJECT(migr));
c76201ab 1907
6ba996bb
DDAG
1908 migrate_set_state(&mis->state, MIGRATION_STATUS_ACTIVE,
1909 MIGRATION_STATUS_POSTCOPY_ACTIVE);
095c12a4 1910 qemu_sem_post(&mis->thread_sync_sem);
c76201ab
DDAG
1911 trace_postcopy_ram_listen_thread_start();
1912
74637e6f 1913 rcu_register_thread();
c76201ab
DDAG
1914 /*
1915 * Because we're a thread and not a coroutine we can't yield
1916 * in qemu_file, and thus we must be blocking now.
1917 */
1918 qemu_file_set_blocking(f, true);
1919 load_res = qemu_loadvm_state_main(f, mis);
b411b844
PX
1920
1921 /*
1922 * This is tricky, but, mis->from_src_file can change after it
1923 * returns, when postcopy recovery happened. In the future, we may
1924 * want a wrapper for the QEMUFile handle.
1925 */
1926 f = mis->from_src_file;
1927
c76201ab
DDAG
1928 /* And non-blocking again so we don't block in any cleanup */
1929 qemu_file_set_blocking(f, false);
1930
1931 trace_postcopy_ram_listen_thread_exit();
1932 if (load_res < 0) {
c76201ab 1933 qemu_file_set_error(f, load_res);
ee647225
VSO
1934 dirty_bitmap_mig_cancel_incoming();
1935 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING &&
1936 !migrate_postcopy_ram() && migrate_dirty_bitmaps())
1937 {
1938 error_report("%s: loadvm failed during postcopy: %d. All states "
1939 "are migrated except dirty bitmaps. Some dirty "
1940 "bitmaps may be lost, and present migrated dirty "
1941 "bitmaps are correctly migrated and valid.",
1942 __func__, load_res);
1943 load_res = 0; /* prevent further exit() */
1944 } else {
1945 error_report("%s: loadvm failed: %d", __func__, load_res);
1946 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1947 MIGRATION_STATUS_FAILED);
1948 }
1949 }
1950 if (load_res >= 0) {
c76201ab
DDAG
1951 /*
1952 * This looks good, but it's possible that the device loading in the
1953 * main thread hasn't finished yet, and so we might not be in 'RUN'
1954 * state yet; wait for the end of the main thread.
1955 */
1956 qemu_event_wait(&mis->main_thread_load_event);
1957 }
1958 postcopy_ram_incoming_cleanup(mis);
c76201ab
DDAG
1959
1960 if (load_res < 0) {
1961 /*
1962 * If something went wrong then we have a bad state so exit;
1963 * depending how far we got it might be possible at this point
1964 * to leave the guest running and fire MCEs for pages that never
1965 * arrived as a desperate recovery step.
1966 */
74637e6f 1967 rcu_unregister_thread();
c76201ab
DDAG
1968 exit(EXIT_FAILURE);
1969 }
1970
6ba996bb
DDAG
1971 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
1972 MIGRATION_STATUS_COMPLETED);
1973 /*
1974 * If everything has worked fine, then the main thread has waited
1975 * for us to start, and we're the last use of the mis.
1976 * (If something broke then qemu will have to exit anyway since it's
1977 * got a bad migration state).
1978 */
1979 migration_incoming_state_destroy();
acb5ea86 1980 qemu_loadvm_state_cleanup();
6ba996bb 1981
74637e6f 1982 rcu_unregister_thread();
9cf4bb87 1983 mis->have_listen_thread = false;
2d49bacd
WY
1984 postcopy_state_set(POSTCOPY_INCOMING_END);
1985
ee647225
VSO
1986 object_unref(OBJECT(migr));
1987
c76201ab
DDAG
1988 return NULL;
1989}
1990
093e3c42
DDAG
1991/* After this message we must be able to immediately receive postcopy data */
1992static int loadvm_postcopy_handle_listen(MigrationIncomingState *mis)
1993{
1994 PostcopyState ps = postcopy_state_set(POSTCOPY_INCOMING_LISTENING);
6864a7b5
DDAG
1995 Error *local_err = NULL;
1996
c84f976e
PX
1997 trace_loadvm_postcopy_handle_listen("enter");
1998
093e3c42
DDAG
1999 if (ps != POSTCOPY_INCOMING_ADVISE && ps != POSTCOPY_INCOMING_DISCARD) {
2000 error_report("CMD_POSTCOPY_LISTEN in wrong postcopy state (%d)", ps);
2001 return -1;
2002 }
f9527107
DDAG
2003 if (ps == POSTCOPY_INCOMING_ADVISE) {
2004 /*
2005 * A rare case, we entered listen without having to do any discards,
2006 * so do the setup that's normally done at the time of the 1st discard.
2007 */
58110f0a
VSO
2008 if (migrate_postcopy_ram()) {
2009 postcopy_ram_prepare_discard(mis);
2010 }
f9527107 2011 }
093e3c42 2012
c84f976e
PX
2013 trace_loadvm_postcopy_handle_listen("after discard");
2014
f0a227ad
DDAG
2015 /*
2016 * Sensitise RAM - can now generate requests for blocks that don't exist
2017 * However, at this point the CPU shouldn't be running, and the IO
2018 * shouldn't be doing anything yet so don't actually expect requests
2019 */
58110f0a 2020 if (migrate_postcopy_ram()) {
2a7eb148 2021 if (postcopy_ram_incoming_setup(mis)) {
91b02dc7 2022 postcopy_ram_incoming_cleanup(mis);
58110f0a
VSO
2023 return -1;
2024 }
f0a227ad
DDAG
2025 }
2026
c84f976e
PX
2027 trace_loadvm_postcopy_handle_listen("after uffd");
2028
6864a7b5
DDAG
2029 if (postcopy_notify(POSTCOPY_NOTIFY_INBOUND_LISTEN, &local_err)) {
2030 error_report_err(local_err);
2031 return -1;
2032 }
2033
c76201ab 2034 mis->have_listen_thread = true;
095c12a4
PX
2035 postcopy_thread_create(mis, &mis->listen_thread, "postcopy/listen",
2036 postcopy_ram_listen_thread, QEMU_THREAD_DETACHED);
c84f976e
PX
2037 trace_loadvm_postcopy_handle_listen("return");
2038
093e3c42
DDAG
2039 return 0;
2040}
2041
ea6a55bc 2042static void loadvm_postcopy_handle_run_bh(void *opaque)
093e3c42 2043{
27c6825b 2044 Error *local_err = NULL;
1ce54262 2045 MigrationIncomingState *mis = opaque;
093e3c42 2046
b9a040b9
PX
2047 trace_loadvm_postcopy_handle_run_bh("enter");
2048
27c6825b
DDAG
2049 /* TODO we should move all of this lot into postcopy_ram.c or a shared code
2050 * in migration.c
2051 */
2052 cpu_synchronize_all_post_init();
2053
b9a040b9
PX
2054 trace_loadvm_postcopy_handle_run_bh("after cpu sync");
2055
7659505c 2056 qemu_announce_self(&mis->announce_timer, migrate_announce_params());
27c6825b 2057
b9a040b9
PX
2058 trace_loadvm_postcopy_handle_run_bh("after announce");
2059
3b717194 2060 /* Make sure all file formats throw away their mutable metadata.
ace21a58 2061 * If we get an error here, just don't restart the VM yet. */
3b717194 2062 bdrv_activate_all(&local_err);
0042fd36 2063 if (local_err) {
ace21a58 2064 error_report_err(local_err);
0042fd36
KW
2065 local_err = NULL;
2066 autostart = false;
2067 }
2068
b9a040b9 2069 trace_loadvm_postcopy_handle_run_bh("after invalidate cache");
27c6825b 2070
b35ebdf0
VSO
2071 dirty_bitmap_mig_before_vm_start();
2072
093e3c42
DDAG
2073 if (autostart) {
2074 /* Hold onto your hats, starting the CPU */
2075 vm_start();
2076 } else {
2077 /* leave it paused and let management decide when to start the CPU */
2078 runstate_set(RUN_STATE_PAUSED);
2079 }
2080
1ce54262 2081 qemu_bh_delete(mis->bh);
b9a040b9
PX
2082
2083 trace_loadvm_postcopy_handle_run_bh("return");
ea6a55bc
DL
2084}
2085
2086/* After all discards we can start running and asking for pages */
2087static int loadvm_postcopy_handle_run(MigrationIncomingState *mis)
2088{
0197d890 2089 PostcopyState ps = postcopy_state_get();
ea6a55bc
DL
2090
2091 trace_loadvm_postcopy_handle_run();
2092 if (ps != POSTCOPY_INCOMING_LISTENING) {
2093 error_report("CMD_POSTCOPY_RUN in wrong postcopy state (%d)", ps);
2094 return -1;
2095 }
2096
0197d890 2097 postcopy_state_set(POSTCOPY_INCOMING_RUNNING);
1ce54262
WY
2098 mis->bh = qemu_bh_new(loadvm_postcopy_handle_run_bh, mis);
2099 qemu_bh_schedule(mis->bh);
ea6a55bc 2100
27c6825b
DDAG
2101 /* We need to finish reading the stream from the package
2102 * and also stop reading anything more from the stream that loaded the
2103 * package (since it's now being read by the listener thread).
2104 * LOADVM_QUIT will quit all the layers of nested loadvm loops.
2105 */
2106 return LOADVM_QUIT;
093e3c42
DDAG
2107}
2108
0c26781c
PX
2109/* We must be with page_request_mutex held */
2110static gboolean postcopy_sync_page_req(gpointer key, gpointer value,
2111 gpointer data)
2112{
2113 MigrationIncomingState *mis = data;
2114 void *host_addr = (void *) key;
2115 ram_addr_t rb_offset;
2116 RAMBlock *rb;
2117 int ret;
2118
2119 rb = qemu_ram_block_from_host(host_addr, true, &rb_offset);
2120 if (!rb) {
2121 /*
2122 * This should _never_ happen. However be nice for a migrating VM to
2123 * not crash/assert. Post an error (note: intended to not use *_once
2124 * because we do want to see all the illegal addresses; and this can
2125 * never be triggered by the guest so we're safe) and move on next.
2126 */
2127 error_report("%s: illegal host addr %p", __func__, host_addr);
2128 /* Try the next entry */
2129 return FALSE;
2130 }
2131
2132 ret = migrate_send_rp_message_req_pages(mis, rb, rb_offset);
2133 if (ret) {
2134 /* Please refer to above comment. */
2135 error_report("%s: send rp message failed for addr %p",
2136 __func__, host_addr);
2137 return FALSE;
2138 }
2139
2140 trace_postcopy_page_req_sync(host_addr);
2141
2142 return FALSE;
2143}
2144
2145static void migrate_send_rp_req_pages_pending(MigrationIncomingState *mis)
2146{
2147 WITH_QEMU_LOCK_GUARD(&mis->page_request_mutex) {
2148 g_tree_foreach(mis->page_requested, postcopy_sync_page_req, mis);
2149 }
2150}
2151
3f5875ec
PX
2152static int loadvm_postcopy_handle_resume(MigrationIncomingState *mis)
2153{
2154 if (mis->state != MIGRATION_STATUS_POSTCOPY_RECOVER) {
2155 error_report("%s: illegal resume received", __func__);
2156 /* Don't fail the load, only for this. */
2157 return 0;
2158 }
2159
cc5ab872
PX
2160 /*
2161 * Reset the last_rb before we resend any page req to source again, since
2162 * the source should have it reset already.
2163 */
2164 mis->last_rb = NULL;
2165
3f5875ec
PX
2166 /*
2167 * This means source VM is ready to resume the postcopy migration.
3f5875ec
PX
2168 */
2169 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_RECOVER,
2170 MIGRATION_STATUS_POSTCOPY_ACTIVE);
3f5875ec
PX
2171
2172 trace_loadvm_postcopy_handle_resume();
2173
13955b89
PX
2174 /* Tell source that "we are ready" */
2175 migrate_send_rp_resume_ack(mis, MIGRATION_RESUME_ACK_VALUE);
3f5875ec 2176
0c26781c
PX
2177 /*
2178 * After a postcopy recovery, the source should have lost the postcopy
2179 * queue, or potentially the requested pages could have been lost during
2180 * the network down phase. Let's re-sync with the source VM by re-sending
2181 * all the pending pages that we eagerly need, so these threads won't get
2182 * blocked too long due to the recovery.
2183 *
2184 * Without this procedure, the faulted destination VM threads (waiting for
2185 * page requests right before the postcopy is interrupted) can keep hanging
2186 * until the pages are sent by the source during the background copying of
2187 * pages, or another thread faulted on the same address accidentally.
2188 */
2189 migrate_send_rp_req_pages_pending(mis);
2190
5e773431
PX
2191 /*
2192 * It's time to switch state and release the fault thread to continue
2193 * service page faults. Note that this should be explicitly after the
2194 * above call to migrate_send_rp_req_pages_pending(). In short:
2195 * migrate_send_rp_message_req_pages() is not thread safe, yet.
2196 */
2197 qemu_sem_post(&mis->postcopy_pause_sem_fault);
2198
60bb3c58 2199 if (migrate_postcopy_preempt()) {
5655aab0
PX
2200 /*
2201 * The preempt channel will be created in async manner, now let's
2202 * wait for it and make sure it's created.
2203 */
2204 qemu_sem_wait(&mis->postcopy_qemufile_dst_done);
60bb3c58
PX
2205 assert(mis->postcopy_qemufile_dst);
2206 /* Kick the fast ram load thread too */
2207 qemu_sem_post(&mis->postcopy_pause_sem_fast_load);
2208 }
2209
3f5875ec
PX
2210 return 0;
2211}
2212
c76ca188 2213/**
11cf1d98
DDAG
2214 * Immediately following this command is a blob of data containing an embedded
2215 * chunk of migration stream; read it and load it.
2216 *
2217 * @mis: Incoming state
2218 * @length: Length of packaged data to read
c76ca188 2219 *
11cf1d98
DDAG
2220 * Returns: Negative values on error
2221 *
2222 */
2223static int loadvm_handle_cmd_packaged(MigrationIncomingState *mis)
2224{
2225 int ret;
61b67d47
DB
2226 size_t length;
2227 QIOChannelBuffer *bioc;
11cf1d98
DDAG
2228
2229 length = qemu_get_be32(mis->from_src_file);
2230 trace_loadvm_handle_cmd_packaged(length);
2231
2232 if (length > MAX_VM_CMD_PACKAGED_SIZE) {
61b67d47 2233 error_report("Unreasonably large packaged state: %zu", length);
11cf1d98
DDAG
2234 return -1;
2235 }
61b67d47
DB
2236
2237 bioc = qio_channel_buffer_new(length);
6f01f136 2238 qio_channel_set_name(QIO_CHANNEL(bioc), "migration-loadvm-buffer");
61b67d47
DB
2239 ret = qemu_get_buffer(mis->from_src_file,
2240 bioc->data,
2241 length);
11cf1d98 2242 if (ret != length) {
61b67d47
DB
2243 object_unref(OBJECT(bioc));
2244 error_report("CMD_PACKAGED: Buffer receive fail ret=%d length=%zu",
9af9e0fe 2245 ret, length);
11cf1d98
DDAG
2246 return (ret < 0) ? ret : -EAGAIN;
2247 }
61b67d47 2248 bioc->usage += length;
11cf1d98
DDAG
2249 trace_loadvm_handle_cmd_packaged_received(ret);
2250
77ef2dc1 2251 QEMUFile *packf = qemu_file_new_input(QIO_CHANNEL(bioc));
11cf1d98
DDAG
2252
2253 ret = qemu_loadvm_state_main(packf, mis);
2254 trace_loadvm_handle_cmd_packaged_main(ret);
2255 qemu_fclose(packf);
61b67d47 2256 object_unref(OBJECT(bioc));
11cf1d98
DDAG
2257
2258 return ret;
2259}
2260
f25d4225
PX
2261/*
2262 * Handle request that source requests for recved_bitmap on
2263 * destination. Payload format:
2264 *
2265 * len (1 byte) + ramblock_name (<255 bytes)
2266 */
2267static int loadvm_handle_recv_bitmap(MigrationIncomingState *mis,
2268 uint16_t len)
2269{
2270 QEMUFile *file = mis->from_src_file;
2271 RAMBlock *rb;
2272 char block_name[256];
2273 size_t cnt;
2274
2275 cnt = qemu_get_counted_string(file, block_name);
2276 if (!cnt) {
2277 error_report("%s: failed to read block name", __func__);
2278 return -EINVAL;
2279 }
2280
2281 /* Validate before using the data */
2282 if (qemu_file_get_error(file)) {
2283 return qemu_file_get_error(file);
2284 }
2285
2286 if (len != cnt + 1) {
2287 error_report("%s: invalid payload length (%d)", __func__, len);
2288 return -EINVAL;
2289 }
2290
2291 rb = qemu_ram_block_by_name(block_name);
2292 if (!rb) {
2293 error_report("%s: block '%s' not found", __func__, block_name);
2294 return -EINVAL;
2295 }
2296
a335debb 2297 migrate_send_rp_recv_bitmap(mis, block_name);
f25d4225
PX
2298
2299 trace_loadvm_handle_recv_bitmap(block_name);
2300
2301 return 0;
2302}
2303
aad555c2
ZC
2304static int loadvm_process_enable_colo(MigrationIncomingState *mis)
2305{
18b1d3c9
DH
2306 int ret = migration_incoming_enable_colo();
2307
2308 if (!ret) {
2309 ret = colo_init_ram_cache();
2310 if (ret) {
2311 migration_incoming_disable_colo();
2312 }
2313 }
2314 return ret;
aad555c2
ZC
2315}
2316
11cf1d98
DDAG
2317/*
2318 * Process an incoming 'QEMU_VM_COMMAND'
2319 * 0 just a normal return
2320 * LOADVM_QUIT All good, but exit the loop
2321 * <0 Error
c76ca188
DDAG
2322 */
2323static int loadvm_process_command(QEMUFile *f)
2324{
2e37701e 2325 MigrationIncomingState *mis = migration_incoming_get_current();
c76ca188
DDAG
2326 uint16_t cmd;
2327 uint16_t len;
2e37701e 2328 uint32_t tmp32;
c76ca188
DDAG
2329
2330 cmd = qemu_get_be16(f);
2331 len = qemu_get_be16(f);
2332
7a9ddfbf
PX
2333 /* Check validity before continue processing of cmds */
2334 if (qemu_file_get_error(f)) {
2335 return qemu_file_get_error(f);
2336 }
2337
c76ca188
DDAG
2338 if (cmd >= MIG_CMD_MAX || cmd == MIG_CMD_INVALID) {
2339 error_report("MIG_CMD 0x%x unknown (len 0x%x)", cmd, len);
2340 return -EINVAL;
2341 }
2342
a7060ba3
PX
2343 trace_loadvm_process_command(mig_cmd_args[cmd].name, len);
2344
c76ca188
DDAG
2345 if (mig_cmd_args[cmd].len != -1 && mig_cmd_args[cmd].len != len) {
2346 error_report("%s received with bad length - expecting %zu, got %d",
2347 mig_cmd_args[cmd].name,
2348 (size_t)mig_cmd_args[cmd].len, len);
2349 return -ERANGE;
2350 }
2351
2352 switch (cmd) {
2e37701e
DDAG
2353 case MIG_CMD_OPEN_RETURN_PATH:
2354 if (mis->to_src_file) {
2355 error_report("CMD_OPEN_RETURN_PATH called when RP already open");
2356 /* Not really a problem, so don't give up */
2357 return 0;
2358 }
2359 mis->to_src_file = qemu_file_get_return_path(f);
2360 if (!mis->to_src_file) {
2361 error_report("CMD_OPEN_RETURN_PATH failed");
2362 return -1;
2363 }
1b4adb10
AH
2364
2365 /*
2366 * Switchover ack is enabled but no device uses it, so send an ACK to
2367 * source that it's OK to switchover. Do it here, after return path has
2368 * been created.
2369 */
2370 if (migrate_switchover_ack() && !mis->switchover_ack_pending_num) {
2371 int ret = migrate_send_rp_switchover_ack(mis);
2372 if (ret) {
2373 error_report(
2374 "Could not send switchover ack RP MSG, err %d (%s)", ret,
2375 strerror(-ret));
2376 return ret;
2377 }
2378 }
2e37701e
DDAG
2379 break;
2380
2381 case MIG_CMD_PING:
2382 tmp32 = qemu_get_be32(f);
2383 trace_loadvm_process_command_ping(tmp32);
2384 if (!mis->to_src_file) {
2385 error_report("CMD_PING (0x%x) received with no return path",
2386 tmp32);
2387 return -1;
2388 }
6decec93 2389 migrate_send_rp_pong(mis, tmp32);
2e37701e 2390 break;
093e3c42 2391
11cf1d98
DDAG
2392 case MIG_CMD_PACKAGED:
2393 return loadvm_handle_cmd_packaged(mis);
2394
093e3c42 2395 case MIG_CMD_POSTCOPY_ADVISE:
875fcd01 2396 return loadvm_postcopy_handle_advise(mis, len);
093e3c42
DDAG
2397
2398 case MIG_CMD_POSTCOPY_LISTEN:
2399 return loadvm_postcopy_handle_listen(mis);
2400
2401 case MIG_CMD_POSTCOPY_RUN:
2402 return loadvm_postcopy_handle_run(mis);
2403
2404 case MIG_CMD_POSTCOPY_RAM_DISCARD:
2405 return loadvm_postcopy_ram_handle_discard(mis, len);
f25d4225 2406
3f5875ec
PX
2407 case MIG_CMD_POSTCOPY_RESUME:
2408 return loadvm_postcopy_handle_resume(mis);
2409
f25d4225
PX
2410 case MIG_CMD_RECV_BITMAP:
2411 return loadvm_handle_recv_bitmap(mis, len);
aad555c2
ZC
2412
2413 case MIG_CMD_ENABLE_COLO:
2414 return loadvm_process_enable_colo(mis);
c76ca188
DDAG
2415 }
2416
2417 return 0;
2418}
2419
59f39a47
DDAG
2420/*
2421 * Read a footer off the wire and check that it matches the expected section
2422 *
2423 * Returns: true if the footer was good
2424 * false if there is a problem (and calls error_report to say why)
2425 */
0f42f657 2426static bool check_section_footer(QEMUFile *f, SaveStateEntry *se)
59f39a47 2427{
7a9ddfbf 2428 int ret;
59f39a47
DDAG
2429 uint8_t read_mark;
2430 uint32_t read_section_id;
2431
15c38503 2432 if (!migrate_get_current()->send_section_footer) {
59f39a47
DDAG
2433 /* No footer to check */
2434 return true;
2435 }
2436
2437 read_mark = qemu_get_byte(f);
2438
7a9ddfbf
PX
2439 ret = qemu_file_get_error(f);
2440 if (ret) {
2441 error_report("%s: Read section footer failed: %d",
2442 __func__, ret);
2443 return false;
2444 }
2445
59f39a47 2446 if (read_mark != QEMU_VM_SECTION_FOOTER) {
0f42f657 2447 error_report("Missing section footer for %s", se->idstr);
59f39a47
DDAG
2448 return false;
2449 }
2450
2451 read_section_id = qemu_get_be32(f);
0f42f657 2452 if (read_section_id != se->load_section_id) {
59f39a47
DDAG
2453 error_report("Mismatched section id in footer for %s -"
2454 " read 0x%x expected 0x%x",
0f42f657 2455 se->idstr, read_section_id, se->load_section_id);
59f39a47
DDAG
2456 return false;
2457 }
2458
2459 /* All good */
2460 return true;
2461}
2462
fb3520a8
HZ
2463static int
2464qemu_loadvm_section_start_full(QEMUFile *f, MigrationIncomingState *mis)
2465{
2466 uint32_t instance_id, version_id, section_id;
2467 SaveStateEntry *se;
fb3520a8
HZ
2468 char idstr[256];
2469 int ret;
2470
2471 /* Read section start */
2472 section_id = qemu_get_be32(f);
2473 if (!qemu_get_counted_string(f, idstr)) {
2474 error_report("Unable to read ID string for section %u",
2475 section_id);
2476 return -EINVAL;
2477 }
2478 instance_id = qemu_get_be32(f);
2479 version_id = qemu_get_be32(f);
2480
7a9ddfbf
PX
2481 ret = qemu_file_get_error(f);
2482 if (ret) {
2483 error_report("%s: Failed to read instance/version ID: %d",
2484 __func__, ret);
2485 return ret;
2486 }
2487
fb3520a8
HZ
2488 trace_qemu_loadvm_state_section_startfull(section_id, idstr,
2489 instance_id, version_id);
2490 /* Find savevm section */
2491 se = find_se(idstr, instance_id);
2492 if (se == NULL) {
93062e23 2493 error_report("Unknown savevm section or instance '%s' %"PRIu32". "
827beacb
JRZ
2494 "Make sure that your current VM setup matches your "
2495 "saved VM setup, including any hotplugged devices",
fb3520a8
HZ
2496 idstr, instance_id);
2497 return -EINVAL;
2498 }
2499
2500 /* Validate version */
2501 if (version_id > se->version_id) {
2502 error_report("savevm: unsupported version %d for '%s' v%d",
2503 version_id, idstr, se->version_id);
2504 return -EINVAL;
2505 }
0f42f657
JQ
2506 se->load_version_id = version_id;
2507 se->load_section_id = section_id;
fb3520a8 2508
88c16567
WC
2509 /* Validate if it is a device's state */
2510 if (xen_enabled() && se->is_ram) {
2511 error_report("loadvm: %s RAM loading not allowed on Xen", idstr);
2512 return -EINVAL;
2513 }
2514
3a011c26 2515 ret = vmstate_load(f, se);
fb3520a8 2516 if (ret < 0) {
93062e23 2517 error_report("error while loading state for instance 0x%"PRIx32" of"
fb3520a8
HZ
2518 " device '%s'", instance_id, idstr);
2519 return ret;
2520 }
0f42f657 2521 if (!check_section_footer(f, se)) {
fb3520a8
HZ
2522 return -EINVAL;
2523 }
2524
2525 return 0;
2526}
2527
2528static int
2529qemu_loadvm_section_part_end(QEMUFile *f, MigrationIncomingState *mis)
2530{
2531 uint32_t section_id;
0f42f657 2532 SaveStateEntry *se;
fb3520a8
HZ
2533 int ret;
2534
2535 section_id = qemu_get_be32(f);
2536
7a9ddfbf
PX
2537 ret = qemu_file_get_error(f);
2538 if (ret) {
2539 error_report("%s: Failed to read section ID: %d",
2540 __func__, ret);
2541 return ret;
2542 }
2543
fb3520a8 2544 trace_qemu_loadvm_state_section_partend(section_id);
0f42f657
JQ
2545 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2546 if (se->load_section_id == section_id) {
fb3520a8
HZ
2547 break;
2548 }
2549 }
0f42f657 2550 if (se == NULL) {
fb3520a8
HZ
2551 error_report("Unknown savevm section %d", section_id);
2552 return -EINVAL;
2553 }
2554
3a011c26 2555 ret = vmstate_load(f, se);
fb3520a8
HZ
2556 if (ret < 0) {
2557 error_report("error while loading state section id %d(%s)",
0f42f657 2558 section_id, se->idstr);
fb3520a8
HZ
2559 return ret;
2560 }
0f42f657 2561 if (!check_section_footer(f, se)) {
fb3520a8
HZ
2562 return -EINVAL;
2563 }
2564
2565 return 0;
2566}
2567
16015d32
WY
2568static int qemu_loadvm_state_header(QEMUFile *f)
2569{
2570 unsigned int v;
2571 int ret;
2572
2573 v = qemu_get_be32(f);
2574 if (v != QEMU_VM_FILE_MAGIC) {
2575 error_report("Not a migration stream");
2576 return -EINVAL;
2577 }
2578
2579 v = qemu_get_be32(f);
2580 if (v == QEMU_VM_FILE_VERSION_COMPAT) {
2581 error_report("SaveVM v2 format is obsolete and don't work anymore");
2582 return -ENOTSUP;
2583 }
2584 if (v != QEMU_VM_FILE_VERSION) {
2585 error_report("Unsupported migration stream version");
2586 return -ENOTSUP;
2587 }
2588
2589 if (migrate_get_current()->send_configuration) {
2590 if (qemu_get_byte(f) != QEMU_VM_CONFIGURATION) {
2591 error_report("Configuration section missing");
2592 qemu_loadvm_state_cleanup();
2593 return -EINVAL;
2594 }
2595 ret = vmstate_load_state(f, &vmstate_configuration, &savevm_state, 0);
2596
2597 if (ret) {
2598 qemu_loadvm_state_cleanup();
2599 return ret;
2600 }
2601 }
2602 return 0;
2603}
2604
1b4adb10
AH
2605static void qemu_loadvm_state_switchover_ack_needed(MigrationIncomingState *mis)
2606{
2607 SaveStateEntry *se;
2608
2609 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2610 if (!se->ops || !se->ops->switchover_ack_needed) {
2611 continue;
2612 }
2613
2614 if (se->ops->switchover_ack_needed(se->opaque)) {
2615 mis->switchover_ack_pending_num++;
2616 }
2617 }
2618
2619 trace_loadvm_state_switchover_ack_needed(mis->switchover_ack_pending_num);
2620}
2621
acb5ea86
JQ
2622static int qemu_loadvm_state_setup(QEMUFile *f)
2623{
2624 SaveStateEntry *se;
2625 int ret;
2626
2627 trace_loadvm_state_setup();
2628 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2629 if (!se->ops || !se->ops->load_setup) {
2630 continue;
2631 }
cea3b4c0 2632 if (se->ops->is_active) {
acb5ea86
JQ
2633 if (!se->ops->is_active(se->opaque)) {
2634 continue;
2635 }
2636 }
2637
2638 ret = se->ops->load_setup(f, se->opaque);
2639 if (ret < 0) {
2640 qemu_file_set_error(f, ret);
2641 error_report("Load state of device %s failed", se->idstr);
2642 return ret;
2643 }
2644 }
2645 return 0;
2646}
2647
2648void qemu_loadvm_state_cleanup(void)
2649{
2650 SaveStateEntry *se;
2651
2652 trace_loadvm_state_cleanup();
2653 QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
2654 if (se->ops && se->ops->load_cleanup) {
2655 se->ops->load_cleanup(se->opaque);
2656 }
2657 }
2658}
2659
b411b844
PX
2660/* Return true if we should continue the migration, or false. */
2661static bool postcopy_pause_incoming(MigrationIncomingState *mis)
2662{
77dadc3f
PX
2663 int i;
2664
b411b844
PX
2665 trace_postcopy_pause_incoming();
2666
ee647225
VSO
2667 assert(migrate_postcopy_ram());
2668
39675fff
PX
2669 /*
2670 * Unregister yank with either from/to src would work, since ioc behind it
2671 * is the same
2672 */
2673 migration_ioc_unregister_yank_from_file(mis->from_src_file);
2674
b411b844
PX
2675 assert(mis->from_src_file);
2676 qemu_file_shutdown(mis->from_src_file);
2677 qemu_fclose(mis->from_src_file);
2678 mis->from_src_file = NULL;
2679
2680 assert(mis->to_src_file);
2681 qemu_file_shutdown(mis->to_src_file);
2682 qemu_mutex_lock(&mis->rp_mutex);
2683 qemu_fclose(mis->to_src_file);
2684 mis->to_src_file = NULL;
2685 qemu_mutex_unlock(&mis->rp_mutex);
2686
60bb3c58
PX
2687 /*
2688 * NOTE: this must happen before reset the PostcopyTmpPages below,
2689 * otherwise it's racy to reset those fields when the fast load thread
2690 * can be accessing it in parallel.
2691 */
2692 if (mis->postcopy_qemufile_dst) {
2693 qemu_file_shutdown(mis->postcopy_qemufile_dst);
2694 /* Take the mutex to make sure the fast ram load thread halted */
2695 qemu_mutex_lock(&mis->postcopy_prio_thread_mutex);
2696 migration_ioc_unregister_yank_from_file(mis->postcopy_qemufile_dst);
2697 qemu_fclose(mis->postcopy_qemufile_dst);
2698 mis->postcopy_qemufile_dst = NULL;
2699 qemu_mutex_unlock(&mis->postcopy_prio_thread_mutex);
2700 }
2701
eed1cc78
PX
2702 migrate_set_state(&mis->state, MIGRATION_STATUS_POSTCOPY_ACTIVE,
2703 MIGRATION_STATUS_POSTCOPY_PAUSED);
2704
3a7804c3
PX
2705 /* Notify the fault thread for the invalidated file handle */
2706 postcopy_fault_thread_notify(mis);
2707
36f62f11
PX
2708 /*
2709 * If network is interrupted, any temp page we received will be useless
2710 * because we didn't mark them as "received" in receivedmap. After a
2711 * proper recovery later (which will sync src dirty bitmap with receivedmap
2712 * on dest) these cached small pages will be resent again.
2713 */
2714 for (i = 0; i < mis->postcopy_channels; i++) {
2715 postcopy_temp_page_reset(&mis->postcopy_tmp_pages[i]);
2716 }
2717
b411b844
PX
2718 error_report("Detected IO failure for postcopy. "
2719 "Migration paused.");
2720
2721 while (mis->state == MIGRATION_STATUS_POSTCOPY_PAUSED) {
2722 qemu_sem_wait(&mis->postcopy_pause_sem_dst);
2723 }
2724
2725 trace_postcopy_pause_incoming_continued();
2726
2727 return true;
2728}
2729
3f6df99d 2730int qemu_loadvm_state_main(QEMUFile *f, MigrationIncomingState *mis)
1a8f46f8 2731{
a672b469 2732 uint8_t section_type;
ccb783c3 2733 int ret = 0;
61964c23 2734
b411b844 2735retry:
7a9ddfbf
PX
2736 while (true) {
2737 section_type = qemu_get_byte(f);
2738
60bb3c58
PX
2739 ret = qemu_file_get_error_obj_any(f, mis->postcopy_qemufile_dst, NULL);
2740 if (ret) {
7a9ddfbf
PX
2741 break;
2742 }
2743
a5df2a02 2744 trace_qemu_loadvm_state_section(section_type);
a672b469
AL
2745 switch (section_type) {
2746 case QEMU_VM_SECTION_START:
2747 case QEMU_VM_SECTION_FULL:
fb3520a8 2748 ret = qemu_loadvm_section_start_full(f, mis);
b5a22e4a 2749 if (ret < 0) {
ccb783c3 2750 goto out;
b5a22e4a 2751 }
a672b469
AL
2752 break;
2753 case QEMU_VM_SECTION_PART:
2754 case QEMU_VM_SECTION_END:
fb3520a8 2755 ret = qemu_loadvm_section_part_end(f, mis);
b5a22e4a 2756 if (ret < 0) {
ccb783c3 2757 goto out;
b5a22e4a 2758 }
a672b469 2759 break;
c76ca188
DDAG
2760 case QEMU_VM_COMMAND:
2761 ret = loadvm_process_command(f);
7b89bf27 2762 trace_qemu_loadvm_state_section_command(ret);
4695ce3f 2763 if ((ret < 0) || (ret == LOADVM_QUIT)) {
ccb783c3 2764 goto out;
c76ca188
DDAG
2765 }
2766 break;
7a9ddfbf
PX
2767 case QEMU_VM_EOF:
2768 /* This is the end of migration */
2769 goto out;
a672b469 2770 default:
6a64b644 2771 error_report("Unknown savevm section type %d", section_type);
ccb783c3
DDAG
2772 ret = -EINVAL;
2773 goto out;
a672b469
AL
2774 }
2775 }
2776
ccb783c3
DDAG
2777out:
2778 if (ret < 0) {
2779 qemu_file_set_error(f, ret);
b411b844 2780
ee647225
VSO
2781 /* Cancel bitmaps incoming regardless of recovery */
2782 dirty_bitmap_mig_cancel_incoming();
2783
b411b844 2784 /*
fd037a65
PX
2785 * If we are during an active postcopy, then we pause instead
2786 * of bail out to at least keep the VM's dirty data. Note
2787 * that POSTCOPY_INCOMING_LISTENING stage is still not enough,
2788 * during which we're still receiving device states and we
2789 * still haven't yet started the VM on destination.
ee647225
VSO
2790 *
2791 * Only RAM postcopy supports recovery. Still, if RAM postcopy is
2792 * enabled, canceled bitmaps postcopy will not affect RAM postcopy
2793 * recovering.
b411b844
PX
2794 */
2795 if (postcopy_state_get() == POSTCOPY_INCOMING_RUNNING &&
ee647225 2796 migrate_postcopy_ram() && postcopy_pause_incoming(mis)) {
b411b844
PX
2797 /* Reset f to point to the newly created channel */
2798 f = mis->from_src_file;
2799 goto retry;
2800 }
ccb783c3
DDAG
2801 }
2802 return ret;
7b89bf27
DDAG
2803}
2804
2805int qemu_loadvm_state(QEMUFile *f)
2806{
2807 MigrationIncomingState *mis = migration_incoming_get_current();
2808 Error *local_err = NULL;
7b89bf27
DDAG
2809 int ret;
2810
2811 if (qemu_savevm_state_blocked(&local_err)) {
2812 error_report_err(local_err);
2813 return -EINVAL;
2814 }
2815
16015d32
WY
2816 ret = qemu_loadvm_state_header(f);
2817 if (ret) {
2818 return ret;
7b89bf27
DDAG
2819 }
2820
9e14b849
WY
2821 if (qemu_loadvm_state_setup(f) != 0) {
2822 return -EINVAL;
2823 }
2824
1b4adb10
AH
2825 if (migrate_switchover_ack()) {
2826 qemu_loadvm_state_switchover_ack_needed(mis);
2827 }
2828
75e972da
DG
2829 cpu_synchronize_all_pre_loadvm();
2830
7b89bf27
DDAG
2831 ret = qemu_loadvm_state_main(f, mis);
2832 qemu_event_set(&mis->main_thread_load_event);
2833
2834 trace_qemu_loadvm_state_post_main(ret);
2835
c76201ab
DDAG
2836 if (mis->have_listen_thread) {
2837 /* Listen thread still going, can't clean up yet */
2838 return ret;
2839 }
2840
7b89bf27
DDAG
2841 if (ret == 0) {
2842 ret = qemu_file_get_error(f);
2843 }
1925cebc
AG
2844
2845 /*
2846 * Try to read in the VMDESC section as well, so that dumping tools that
2847 * intercept our migration stream have the chance to see it.
2848 */
1aca9a5f
DDAG
2849
2850 /* We've got to be careful; if we don't read the data and just shut the fd
2851 * then the sender can error if we close while it's still sending.
2852 * We also mustn't read data that isn't there; some transports (RDMA)
2853 * will stall waiting for that data when the source has already closed.
2854 */
7b89bf27 2855 if (ret == 0 && should_send_vmdesc()) {
1aca9a5f
DDAG
2856 uint8_t *buf;
2857 uint32_t size;
7b89bf27 2858 uint8_t section_type = qemu_get_byte(f);
1aca9a5f
DDAG
2859
2860 if (section_type != QEMU_VM_VMDESCRIPTION) {
2861 error_report("Expected vmdescription section, but got %d",
2862 section_type);
2863 /*
2864 * It doesn't seem worth failing at this point since
2865 * we apparently have an otherwise valid VM state
2866 */
2867 } else {
2868 buf = g_malloc(0x1000);
2869 size = qemu_get_be32(f);
2870
2871 while (size > 0) {
2872 uint32_t read_chunk = MIN(size, 0x1000);
2873 qemu_get_buffer(f, buf, read_chunk);
2874 size -= read_chunk;
2875 }
2876 g_free(buf);
1925cebc 2877 }
1925cebc
AG
2878 }
2879
acb5ea86 2880 qemu_loadvm_state_cleanup();
ea375f9a
JK
2881 cpu_synchronize_all_post_init();
2882
a672b469
AL
2883 return ret;
2884}
2885
3f6df99d
ZC
2886int qemu_load_device_state(QEMUFile *f)
2887{
2888 MigrationIncomingState *mis = migration_incoming_get_current();
2889 int ret;
2890
2891 /* Load QEMU_VM_SECTION_FULL section */
2892 ret = qemu_loadvm_state_main(f, mis);
2893 if (ret < 0) {
2894 error_report("Failed to load device state: %d", ret);
2895 return ret;
2896 }
2897
2898 cpu_synchronize_all_post_init();
2899 return 0;
2900}
2901
1b4adb10
AH
2902int qemu_loadvm_approve_switchover(void)
2903{
2904 MigrationIncomingState *mis = migration_incoming_get_current();
2905
2906 if (!mis->switchover_ack_pending_num) {
2907 return -EINVAL;
2908 }
2909
2910 mis->switchover_ack_pending_num--;
2911 trace_loadvm_approve_switchover(mis->switchover_ack_pending_num);
2912
2913 if (mis->switchover_ack_pending_num) {
2914 return 0;
2915 }
2916
2917 return migrate_send_rp_switchover_ack(mis);
2918}
2919
f1a9fcdd
DB
2920bool save_snapshot(const char *name, bool overwrite, const char *vmstate,
2921 bool has_devices, strList *devices, Error **errp)
a672b469 2922{
e26f98e2 2923 BlockDriverState *bs;
80ef0586 2924 QEMUSnapshotInfo sn1, *sn = &sn1;
66270a47 2925 int ret = -1, ret2;
a672b469
AL
2926 QEMUFile *f;
2927 int saved_vm_running;
c2c9a466 2928 uint64_t vm_state_size;
85cd1cc6 2929 g_autoptr(GDateTime) now = g_date_time_new_now_local();
79b3c12a 2930 AioContext *aio_context;
a672b469 2931
6b573efe
EGE
2932 GLOBAL_STATE_CODE();
2933
5aaac467 2934 if (migration_is_blocked(errp)) {
7ea14df2 2935 return false;
5aaac467
PB
2936 }
2937
377b21cc 2938 if (!replay_can_snapshot()) {
4dd32b3d
MA
2939 error_setg(errp, "Record/replay does not allow making snapshot "
2940 "right now. Try once more later.");
7ea14df2 2941 return false;
377b21cc
PD
2942 }
2943
f1a9fcdd 2944 if (!bdrv_all_can_snapshot(has_devices, devices, errp)) {
7ea14df2 2945 return false;
feeee5ac
MDCF
2946 }
2947
0b461605 2948 /* Delete old snapshots of the same name */
ac8c19ba 2949 if (name) {
f781f841 2950 if (overwrite) {
f1a9fcdd
DB
2951 if (bdrv_all_delete_snapshot(name, has_devices,
2952 devices, errp) < 0) {
f781f841
DB
2953 return false;
2954 }
2955 } else {
f1a9fcdd 2956 ret2 = bdrv_all_has_snapshot(name, has_devices, devices, errp);
f781f841
DB
2957 if (ret2 < 0) {
2958 return false;
2959 }
2960 if (ret2 == 1) {
2961 error_setg(errp,
2962 "Snapshot '%s' already exists in one or more devices",
2963 name);
2964 return false;
2965 }
ac8c19ba 2966 }
0b461605
DL
2967 }
2968
f1a9fcdd 2969 bs = bdrv_all_find_vmstate_bs(vmstate, has_devices, devices, errp);
7cb14481 2970 if (bs == NULL) {
7ea14df2 2971 return false;
a672b469 2972 }
79b3c12a 2973 aio_context = bdrv_get_aio_context(bs);
a672b469 2974
1354869c 2975 saved_vm_running = runstate_is_running();
560d027b 2976
c33f1829 2977 global_state_store();
0461d5a6 2978 vm_stop(RUN_STATE_SAVE_VM);
a672b469 2979
8649f2f9
SH
2980 bdrv_drain_all_begin();
2981
79b3c12a
DL
2982 aio_context_acquire(aio_context);
2983
cb499fb2 2984 memset(sn, 0, sizeof(*sn));
a672b469
AL
2985
2986 /* fill auxiliary fields */
85cd1cc6
DB
2987 sn->date_sec = g_date_time_to_unix(now);
2988 sn->date_nsec = g_date_time_get_microsecond(now) * 1000;
bc72ad67 2989 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
b39847a5
PD
2990 if (replay_mode != REPLAY_MODE_NONE) {
2991 sn->icount = replay_get_current_icount();
2992 } else {
2993 sn->icount = -1ULL;
2994 }
a672b469 2995
7d631a11 2996 if (name) {
80ef0586 2997 pstrcpy(sn->name, sizeof(sn->name), name);
7d631a11 2998 } else {
85cd1cc6
DB
2999 g_autofree char *autoname = g_date_time_format(now, "vm-%Y%m%d%H%M%S");
3000 pstrcpy(sn->name, sizeof(sn->name), autoname);
7d631a11
MDCF
3001 }
3002
a672b469 3003 /* save the VM state */
45566e9c 3004 f = qemu_fopen_bdrv(bs, 1);
a672b469 3005 if (!f) {
927d6638 3006 error_setg(errp, "Could not open VM state file");
a672b469
AL
3007 goto the_end;
3008 }
927d6638 3009 ret = qemu_savevm_state(f, errp);
6da835d4 3010 vm_state_size = qemu_file_transferred(f);
66270a47 3011 ret2 = qemu_fclose(f);
a672b469 3012 if (ret < 0) {
a672b469
AL
3013 goto the_end;
3014 }
66270a47
DL
3015 if (ret2 < 0) {
3016 ret = ret2;
3017 goto the_end;
3018 }
a672b469 3019
17e2a4a4
SH
3020 /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
3021 * for itself. BDRV_POLL_WHILE() does not support nested locking because
3022 * it only releases the lock once. Therefore synchronous I/O will deadlock
3023 * unless we release the AioContext before bdrv_all_create_snapshot().
3024 */
3025 aio_context_release(aio_context);
3026 aio_context = NULL;
3027
f1a9fcdd
DB
3028 ret = bdrv_all_create_snapshot(sn, bs, vm_state_size,
3029 has_devices, devices, errp);
a9085f9b 3030 if (ret < 0) {
f1a9fcdd 3031 bdrv_all_delete_snapshot(sn->name, has_devices, devices, NULL);
ac8c19ba 3032 goto the_end;
a672b469
AL
3033 }
3034
ac8c19ba
PD
3035 ret = 0;
3036
a672b469 3037 the_end:
17e2a4a4
SH
3038 if (aio_context) {
3039 aio_context_release(aio_context);
3040 }
8649f2f9
SH
3041
3042 bdrv_drain_all_end();
3043
38ff78d3 3044 if (saved_vm_running) {
a672b469 3045 vm_start();
38ff78d3 3046 }
7ea14df2 3047 return ret == 0;
ac8c19ba
PD
3048}
3049
5d6c599f
AP
3050void qmp_xen_save_devices_state(const char *filename, bool has_live, bool live,
3051 Error **errp)
a7ae8355
SS
3052{
3053 QEMUFile *f;
8925839f 3054 QIOChannelFile *ioc;
a7ae8355
SS
3055 int saved_vm_running;
3056 int ret;
3057
5d6c599f
AP
3058 if (!has_live) {
3059 /* live default to true so old version of Xen tool stack can have a
3a4452d8 3060 * successful live migration */
5d6c599f
AP
3061 live = true;
3062 }
3063
a7ae8355
SS
3064 saved_vm_running = runstate_is_running();
3065 vm_stop(RUN_STATE_SAVE_VM);
c69adea4 3066 global_state_store_running();
a7ae8355 3067
b4deb9bf
DM
3068 ioc = qio_channel_file_new_path(filename, O_WRONLY | O_CREAT | O_TRUNC,
3069 0660, errp);
8925839f 3070 if (!ioc) {
a7ae8355
SS
3071 goto the_end;
3072 }
6f01f136 3073 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-save-state");
77ef2dc1 3074 f = qemu_file_new_output(QIO_CHANNEL(ioc));
032b79f7 3075 object_unref(OBJECT(ioc));
a7ae8355 3076 ret = qemu_save_device_state(f);
96994fd1 3077 if (ret < 0 || qemu_fclose(f) < 0) {
c6bd8c70 3078 error_setg(errp, QERR_IO_ERROR);
5d6c599f
AP
3079 } else {
3080 /* libxl calls the QMP command "stop" before calling
3081 * "xen-save-devices-state" and in case of migration failure, libxl
3082 * would call "cont".
3083 * So call bdrv_inactivate_all (release locks) here to let the other
3a4452d8 3084 * side of the migration take control of the images.
5d6c599f
AP
3085 */
3086 if (live && !saved_vm_running) {
3087 ret = bdrv_inactivate_all();
3088 if (ret) {
3089 error_setg(errp, "%s: bdrv_inactivate_all() failed (%d)",
3090 __func__, ret);
3091 }
3092 }
a7ae8355
SS
3093 }
3094
3095 the_end:
38ff78d3 3096 if (saved_vm_running) {
a7ae8355 3097 vm_start();
38ff78d3 3098 }
a7ae8355
SS
3099}
3100
88c16567
WC
3101void qmp_xen_load_devices_state(const char *filename, Error **errp)
3102{
3103 QEMUFile *f;
3104 QIOChannelFile *ioc;
3105 int ret;
3106
3107 /* Guest must be paused before loading the device state; the RAM state
3108 * will already have been loaded by xc
3109 */
3110 if (runstate_is_running()) {
3111 error_setg(errp, "Cannot update device state while vm is running");
3112 return;
3113 }
3114 vm_stop(RUN_STATE_RESTORE_VM);
3115
3116 ioc = qio_channel_file_new_path(filename, O_RDONLY | O_BINARY, 0, errp);
3117 if (!ioc) {
3118 return;
3119 }
6f01f136 3120 qio_channel_set_name(QIO_CHANNEL(ioc), "migration-xen-load-state");
77ef2dc1 3121 f = qemu_file_new_input(QIO_CHANNEL(ioc));
032b79f7 3122 object_unref(OBJECT(ioc));
88c16567 3123
88c16567
WC
3124 ret = qemu_loadvm_state(f);
3125 qemu_fclose(f);
3126 if (ret < 0) {
3127 error_setg(errp, QERR_IO_ERROR);
3128 }
3129 migration_incoming_state_destroy();
3130}
3131
f1a9fcdd
DB
3132bool load_snapshot(const char *name, const char *vmstate,
3133 bool has_devices, strList *devices, Error **errp)
a672b469 3134{
e26f98e2 3135 BlockDriverState *bs_vm_state;
2d22b18f 3136 QEMUSnapshotInfo sn;
a672b469 3137 QEMUFile *f;
751c6a17 3138 int ret;
79b3c12a 3139 AioContext *aio_context;
b4b076da 3140 MigrationIncomingState *mis = migration_incoming_get_current();
a672b469 3141
f1a9fcdd 3142 if (!bdrv_all_can_snapshot(has_devices, devices, errp)) {
f61fe11a 3143 return false;
849f96e2 3144 }
f1a9fcdd 3145 ret = bdrv_all_has_snapshot(name, has_devices, devices, errp);
723ccda1 3146 if (ret < 0) {
f61fe11a 3147 return false;
723ccda1 3148 }
3d3e9b1f
DB
3149 if (ret == 0) {
3150 error_setg(errp, "Snapshot '%s' does not exist in one or more devices",
3151 name);
3152 return false;
3153 }
849f96e2 3154
f1a9fcdd 3155 bs_vm_state = bdrv_all_find_vmstate_bs(vmstate, has_devices, devices, errp);
f0aa7a8b 3156 if (!bs_vm_state) {
f61fe11a 3157 return false;
f0aa7a8b 3158 }
79b3c12a 3159 aio_context = bdrv_get_aio_context(bs_vm_state);
f0aa7a8b
MDCF
3160
3161 /* Don't even try to load empty VM states */
79b3c12a 3162 aio_context_acquire(aio_context);
f0aa7a8b 3163 ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
79b3c12a 3164 aio_context_release(aio_context);
f0aa7a8b 3165 if (ret < 0) {
f61fe11a 3166 return false;
f0aa7a8b 3167 } else if (sn.vm_state_size == 0) {
927d6638
JQ
3168 error_setg(errp, "This is a disk-only snapshot. Revert to it "
3169 " offline using qemu-img");
f61fe11a 3170 return false;
f0aa7a8b
MDCF
3171 }
3172
f9a9fb65
PD
3173 /*
3174 * Flush the record/replay queue. Now the VM state is going
3175 * to change. Therefore we don't need to preserve its consistency
3176 */
3177 replay_flush_events();
3178
a672b469 3179 /* Flush all IO requests so they don't interfere with the new state. */
8649f2f9 3180 bdrv_drain_all_begin();
a672b469 3181
f1a9fcdd 3182 ret = bdrv_all_goto_snapshot(name, has_devices, devices, errp);
4c1cdbaa 3183 if (ret < 0) {
8649f2f9 3184 goto err_drain;
a672b469
AL
3185 }
3186
a672b469 3187 /* restore the VM state */
f0aa7a8b 3188 f = qemu_fopen_bdrv(bs_vm_state, 0);
a672b469 3189 if (!f) {
927d6638 3190 error_setg(errp, "Could not open VM state file");
8649f2f9 3191 goto err_drain;
a672b469 3192 }
f0aa7a8b 3193
7966d70f 3194 qemu_system_reset(SHUTDOWN_CAUSE_SNAPSHOT_LOAD);
b4b076da 3195 mis->from_src_file = f;
f0aa7a8b 3196
b5eea99e
LS
3197 if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) {
3198 ret = -EINVAL;
3199 goto err_drain;
3200 }
79b3c12a
DL
3201 aio_context_acquire(aio_context);
3202 ret = qemu_loadvm_state(f);
1575829d 3203 migration_incoming_state_destroy();
79b3c12a
DL
3204 aio_context_release(aio_context);
3205
8649f2f9
SH
3206 bdrv_drain_all_end();
3207
a672b469 3208 if (ret < 0) {
927d6638 3209 error_setg(errp, "Error %d while loading VM state", ret);
f61fe11a 3210 return false;
a672b469 3211 }
f0aa7a8b 3212
f61fe11a 3213 return true;
8649f2f9
SH
3214
3215err_drain:
3216 bdrv_drain_all_end();
f61fe11a 3217 return false;
7b630349
JQ
3218}
3219
bef7e9e2
DB
3220bool delete_snapshot(const char *name, bool has_devices,
3221 strList *devices, Error **errp)
3222{
3223 if (!bdrv_all_can_snapshot(has_devices, devices, errp)) {
3224 return false;
3225 }
3226
3227 if (bdrv_all_delete_snapshot(name, has_devices, devices, errp) < 0) {
3228 return false;
3229 }
3230
3231 return true;
3232}
3233
c5705a77
AK
3234void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
3235{
fa53a0e5 3236 qemu_ram_set_idstr(mr->ram_block,
c5705a77 3237 memory_region_name(mr), dev);
b895de50 3238 qemu_ram_set_migratable(mr->ram_block);
c5705a77
AK
3239}
3240
3241void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
3242{
fa53a0e5 3243 qemu_ram_unset_idstr(mr->ram_block);
b895de50 3244 qemu_ram_unset_migratable(mr->ram_block);
c5705a77
AK
3245}
3246
3247void vmstate_register_ram_global(MemoryRegion *mr)
3248{
3249 vmstate_register_ram(mr, NULL);
3250}
1bfe5f05
JQ
3251
3252bool vmstate_check_only_migratable(const VMStateDescription *vmsd)
3253{
3254 /* check needed if --only-migratable is specified */
811f8652 3255 if (!only_migratable) {
1bfe5f05
JQ
3256 return true;
3257 }
3258
3259 return !(vmsd && vmsd->unmigratable);
3260}
0f0d83a4
DB
3261
3262typedef struct SnapshotJob {
3263 Job common;
3264 char *tag;
3265 char *vmstate;
3266 strList *devices;
3267 Coroutine *co;
3268 Error **errp;
3269 bool ret;
3270} SnapshotJob;
3271
3272static void qmp_snapshot_job_free(SnapshotJob *s)
3273{
3274 g_free(s->tag);
3275 g_free(s->vmstate);
3276 qapi_free_strList(s->devices);
3277}
3278
3279
3280static void snapshot_load_job_bh(void *opaque)
3281{
3282 Job *job = opaque;
3283 SnapshotJob *s = container_of(job, SnapshotJob, common);
3284 int orig_vm_running;
3285
3286 job_progress_set_remaining(&s->common, 1);
3287
3288 orig_vm_running = runstate_is_running();
3289 vm_stop(RUN_STATE_RESTORE_VM);
3290
3291 s->ret = load_snapshot(s->tag, s->vmstate, true, s->devices, s->errp);
3292 if (s->ret && orig_vm_running) {
3293 vm_start();
3294 }
3295
3296 job_progress_update(&s->common, 1);
3297
3298 qmp_snapshot_job_free(s);
3299 aio_co_wake(s->co);
3300}
3301
3302static void snapshot_save_job_bh(void *opaque)
3303{
3304 Job *job = opaque;
3305 SnapshotJob *s = container_of(job, SnapshotJob, common);
3306
3307 job_progress_set_remaining(&s->common, 1);
3308 s->ret = save_snapshot(s->tag, false, s->vmstate,
3309 true, s->devices, s->errp);
3310 job_progress_update(&s->common, 1);
3311
3312 qmp_snapshot_job_free(s);
3313 aio_co_wake(s->co);
3314}
3315
3316static void snapshot_delete_job_bh(void *opaque)
3317{
3318 Job *job = opaque;
3319 SnapshotJob *s = container_of(job, SnapshotJob, common);
3320
3321 job_progress_set_remaining(&s->common, 1);
3322 s->ret = delete_snapshot(s->tag, true, s->devices, s->errp);
3323 job_progress_update(&s->common, 1);
3324
3325 qmp_snapshot_job_free(s);
3326 aio_co_wake(s->co);
3327}
3328
3329static int coroutine_fn snapshot_save_job_run(Job *job, Error **errp)
3330{
3331 SnapshotJob *s = container_of(job, SnapshotJob, common);
3332 s->errp = errp;
3333 s->co = qemu_coroutine_self();
3334 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3335 snapshot_save_job_bh, job);
3336 qemu_coroutine_yield();
3337 return s->ret ? 0 : -1;
3338}
3339
3340static int coroutine_fn snapshot_load_job_run(Job *job, Error **errp)
3341{
3342 SnapshotJob *s = container_of(job, SnapshotJob, common);
3343 s->errp = errp;
3344 s->co = qemu_coroutine_self();
3345 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3346 snapshot_load_job_bh, job);
3347 qemu_coroutine_yield();
3348 return s->ret ? 0 : -1;
3349}
3350
3351static int coroutine_fn snapshot_delete_job_run(Job *job, Error **errp)
3352{
3353 SnapshotJob *s = container_of(job, SnapshotJob, common);
3354 s->errp = errp;
3355 s->co = qemu_coroutine_self();
3356 aio_bh_schedule_oneshot(qemu_get_aio_context(),
3357 snapshot_delete_job_bh, job);
3358 qemu_coroutine_yield();
3359 return s->ret ? 0 : -1;
3360}
3361
3362
3363static const JobDriver snapshot_load_job_driver = {
3364 .instance_size = sizeof(SnapshotJob),
3365 .job_type = JOB_TYPE_SNAPSHOT_LOAD,
3366 .run = snapshot_load_job_run,
3367};
3368
3369static const JobDriver snapshot_save_job_driver = {
3370 .instance_size = sizeof(SnapshotJob),
3371 .job_type = JOB_TYPE_SNAPSHOT_SAVE,
3372 .run = snapshot_save_job_run,
3373};
3374
3375static const JobDriver snapshot_delete_job_driver = {
3376 .instance_size = sizeof(SnapshotJob),
3377 .job_type = JOB_TYPE_SNAPSHOT_DELETE,
3378 .run = snapshot_delete_job_run,
3379};
3380
3381
3382void qmp_snapshot_save(const char *job_id,
3383 const char *tag,
3384 const char *vmstate,
3385 strList *devices,
3386 Error **errp)
3387{
3388 SnapshotJob *s;
3389
3390 s = job_create(job_id, &snapshot_save_job_driver, NULL,
3391 qemu_get_aio_context(), JOB_MANUAL_DISMISS,
3392 NULL, NULL, errp);
3393 if (!s) {
3394 return;
3395 }
3396
3397 s->tag = g_strdup(tag);
3398 s->vmstate = g_strdup(vmstate);
3399 s->devices = QAPI_CLONE(strList, devices);
3400
3401 job_start(&s->common);
3402}
3403
3404void qmp_snapshot_load(const char *job_id,
3405 const char *tag,
3406 const char *vmstate,
3407 strList *devices,
3408 Error **errp)
3409{
3410 SnapshotJob *s;
3411
3412 s = job_create(job_id, &snapshot_load_job_driver, NULL,
3413 qemu_get_aio_context(), JOB_MANUAL_DISMISS,
3414 NULL, NULL, errp);
3415 if (!s) {
3416 return;
3417 }
3418
3419 s->tag = g_strdup(tag);
3420 s->vmstate = g_strdup(vmstate);
3421 s->devices = QAPI_CLONE(strList, devices);
3422
3423 job_start(&s->common);
3424}
3425
3426void qmp_snapshot_delete(const char *job_id,
3427 const char *tag,
3428 strList *devices,
3429 Error **errp)
3430{
3431 SnapshotJob *s;
3432
3433 s = job_create(job_id, &snapshot_delete_job_driver, NULL,
3434 qemu_get_aio_context(), JOB_MANUAL_DISMISS,
3435 NULL, NULL, errp);
3436 if (!s) {
3437 return;
3438 }
3439
3440 s->tag = g_strdup(tag);
3441 s->devices = QAPI_CLONE(strList, devices);
3442
3443 job_start(&s->common);
3444}