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