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