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