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