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