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