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