]>
Commit | Line | Data |
---|---|---|
a672b469 AL |
1 | /* |
2 | * QEMU System Emulator | |
3 | * | |
4 | * Copyright (c) 2003-2008 Fabrice Bellard | |
5 | * | |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
a672b469 | 24 | |
d40cdb10 | 25 | #include "config-host.h" |
511d2b14 BS |
26 | #include "qemu-common.h" |
27 | #include "hw/hw.h" | |
7685ee6a | 28 | #include "hw/qdev.h" |
1422e32d | 29 | #include "net/net.h" |
83c9089e | 30 | #include "monitor/monitor.h" |
9c17d615 | 31 | #include "sysemu/sysemu.h" |
1de7afc9 | 32 | #include "qemu/timer.h" |
511d2b14 | 33 | #include "audio/audio.h" |
caf71f86 | 34 | #include "migration/migration.h" |
1de7afc9 PB |
35 | #include "qemu/sockets.h" |
36 | #include "qemu/queue.h" | |
9c17d615 | 37 | #include "sysemu/cpus.h" |
022c62cb | 38 | #include "exec/memory.h" |
a7ae8355 | 39 | #include "qmp-commands.h" |
517a13c9 | 40 | #include "trace.h" |
28085f7b | 41 | #include "qemu/iov.h" |
de08c606 | 42 | #include "block/snapshot.h" |
f364ec65 | 43 | #include "block/qapi.h" |
511d2b14 | 44 | |
a672b469 | 45 | #define SELF_ANNOUNCE_ROUNDS 5 |
a672b469 | 46 | |
18995b98 | 47 | #ifndef ETH_P_RARP |
f8778a77 | 48 | #define ETH_P_RARP 0x8035 |
18995b98 N |
49 | #endif |
50 | #define ARP_HTYPE_ETH 0x0001 | |
51 | #define ARP_PTYPE_IP 0x0800 | |
52 | #define ARP_OP_REQUEST_REV 0x3 | |
53 | ||
54 | static int announce_self_create(uint8_t *buf, | |
5cecf414 | 55 | uint8_t *mac_addr) |
a672b469 | 56 | { |
18995b98 N |
57 | /* Ethernet header. */ |
58 | memset(buf, 0xff, 6); /* destination MAC addr */ | |
59 | memcpy(buf + 6, mac_addr, 6); /* source MAC addr */ | |
60 | *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */ | |
61 | ||
62 | /* RARP header. */ | |
63 | *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */ | |
64 | *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */ | |
65 | *(buf + 18) = 6; /* hardware addr length (ethernet) */ | |
66 | *(buf + 19) = 4; /* protocol addr length (IPv4) */ | |
67 | *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */ | |
68 | memcpy(buf + 22, mac_addr, 6); /* source hw addr */ | |
69 | memset(buf + 28, 0x00, 4); /* source protocol addr */ | |
70 | memcpy(buf + 32, mac_addr, 6); /* target hw addr */ | |
71 | memset(buf + 38, 0x00, 4); /* target protocol addr */ | |
72 | ||
73 | /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */ | |
74 | memset(buf + 42, 0x00, 18); | |
75 | ||
76 | return 60; /* len (FCS will be added by hardware) */ | |
a672b469 AL |
77 | } |
78 | ||
f401ca22 | 79 | static void qemu_announce_self_iter(NICState *nic, void *opaque) |
a672b469 | 80 | { |
18995b98 | 81 | uint8_t buf[60]; |
f401ca22 MM |
82 | int len; |
83 | ||
9013dca5 | 84 | trace_qemu_announce_self_iter(qemu_ether_ntoa(&nic->conf->macaddr)); |
f401ca22 MM |
85 | len = announce_self_create(buf, nic->conf->macaddr.a); |
86 | ||
b356f76d | 87 | qemu_send_packet_raw(qemu_get_queue(nic), buf, len); |
f401ca22 MM |
88 | } |
89 | ||
90 | ||
91 | static void qemu_announce_self_once(void *opaque) | |
92 | { | |
ed8b330b GN |
93 | static int count = SELF_ANNOUNCE_ROUNDS; |
94 | QEMUTimer *timer = *(QEMUTimer **)opaque; | |
a672b469 | 95 | |
f401ca22 MM |
96 | qemu_foreach_nic(qemu_announce_self_iter, NULL); |
97 | ||
18995b98 N |
98 | if (--count) { |
99 | /* delay 50ms, 150ms, 250ms, ... */ | |
bc72ad67 | 100 | timer_mod(timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + |
18995b98 | 101 | 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100); |
ed8b330b | 102 | } else { |
5cecf414 EH |
103 | timer_del(timer); |
104 | timer_free(timer); | |
ed8b330b GN |
105 | } |
106 | } | |
107 | ||
108 | void qemu_announce_self(void) | |
109 | { | |
5cecf414 EH |
110 | static QEMUTimer *timer; |
111 | timer = timer_new_ms(QEMU_CLOCK_REALTIME, qemu_announce_self_once, &timer); | |
112 | qemu_announce_self_once(&timer); | |
a672b469 AL |
113 | } |
114 | ||
115 | /***********************************************************/ | |
116 | /* savevm/loadvm support */ | |
117 | ||
05fcc848 KW |
118 | static ssize_t block_writev_buffer(void *opaque, struct iovec *iov, int iovcnt, |
119 | int64_t pos) | |
120 | { | |
121 | int ret; | |
122 | QEMUIOVector qiov; | |
123 | ||
124 | qemu_iovec_init_external(&qiov, iov, iovcnt); | |
125 | ret = bdrv_writev_vmstate(opaque, &qiov, pos); | |
126 | if (ret < 0) { | |
127 | return ret; | |
128 | } | |
129 | ||
130 | return qiov.size; | |
131 | } | |
132 | ||
178e08a5 | 133 | static int block_put_buffer(void *opaque, const uint8_t *buf, |
a672b469 AL |
134 | int64_t pos, int size) |
135 | { | |
45566e9c | 136 | bdrv_save_vmstate(opaque, buf, pos, size); |
a672b469 AL |
137 | return size; |
138 | } | |
139 | ||
178e08a5 | 140 | static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size) |
a672b469 | 141 | { |
45566e9c | 142 | return bdrv_load_vmstate(opaque, buf, pos, size); |
a672b469 AL |
143 | } |
144 | ||
145 | static int bdrv_fclose(void *opaque) | |
146 | { | |
ad492c92 | 147 | return bdrv_flush(opaque); |
a672b469 AL |
148 | } |
149 | ||
9229bf3c PB |
150 | static const QEMUFileOps bdrv_read_ops = { |
151 | .get_buffer = block_get_buffer, | |
152 | .close = bdrv_fclose | |
153 | }; | |
154 | ||
155 | static const QEMUFileOps bdrv_write_ops = { | |
05fcc848 KW |
156 | .put_buffer = block_put_buffer, |
157 | .writev_buffer = block_writev_buffer, | |
158 | .close = bdrv_fclose | |
9229bf3c PB |
159 | }; |
160 | ||
45566e9c | 161 | static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable) |
a672b469 | 162 | { |
38ff78d3 | 163 | if (is_writable) { |
9229bf3c | 164 | return qemu_fopen_ops(bs, &bdrv_write_ops); |
38ff78d3 | 165 | } |
9229bf3c | 166 | return qemu_fopen_ops(bs, &bdrv_read_ops); |
a672b469 AL |
167 | } |
168 | ||
2ff68d07 | 169 | |
bb1a6d8c EH |
170 | /* QEMUFile timer support. |
171 | * Not in qemu-file.c to not add qemu-timer.c as dependency to qemu-file.c | |
172 | */ | |
2ff68d07 | 173 | |
40daca54 | 174 | void timer_put(QEMUFile *f, QEMUTimer *ts) |
2ff68d07 PB |
175 | { |
176 | uint64_t expire_time; | |
177 | ||
e93379b0 | 178 | expire_time = timer_expire_time_ns(ts); |
2ff68d07 PB |
179 | qemu_put_be64(f, expire_time); |
180 | } | |
181 | ||
40daca54 | 182 | void timer_get(QEMUFile *f, QEMUTimer *ts) |
2ff68d07 PB |
183 | { |
184 | uint64_t expire_time; | |
185 | ||
186 | expire_time = qemu_get_be64(f); | |
187 | if (expire_time != -1) { | |
bc72ad67 | 188 | timer_mod_ns(ts, expire_time); |
2ff68d07 | 189 | } else { |
bc72ad67 | 190 | timer_del(ts); |
2ff68d07 PB |
191 | } |
192 | } | |
193 | ||
194 | ||
bb1a6d8c EH |
195 | /* VMState timer support. |
196 | * Not in vmstate.c to not add qemu-timer.c as dependency to vmstate.c | |
197 | */ | |
dde0463b JQ |
198 | |
199 | static int get_timer(QEMUFile *f, void *pv, size_t size) | |
200 | { | |
201 | QEMUTimer *v = pv; | |
40daca54 | 202 | timer_get(f, v); |
dde0463b JQ |
203 | return 0; |
204 | } | |
205 | ||
84e2e3eb | 206 | static void put_timer(QEMUFile *f, void *pv, size_t size) |
dde0463b | 207 | { |
84e2e3eb | 208 | QEMUTimer *v = pv; |
40daca54 | 209 | timer_put(f, v); |
dde0463b JQ |
210 | } |
211 | ||
212 | const VMStateInfo vmstate_info_timer = { | |
213 | .name = "timer", | |
214 | .get = get_timer, | |
215 | .put = put_timer, | |
216 | }; | |
217 | ||
08e99e29 | 218 | |
7685ee6a AW |
219 | typedef struct CompatEntry { |
220 | char idstr[256]; | |
221 | int instance_id; | |
222 | } CompatEntry; | |
223 | ||
a672b469 | 224 | typedef struct SaveStateEntry { |
72cf2d4f | 225 | QTAILQ_ENTRY(SaveStateEntry) entry; |
a672b469 AL |
226 | char idstr[256]; |
227 | int instance_id; | |
4d2ffa08 | 228 | int alias_id; |
a672b469 AL |
229 | int version_id; |
230 | int section_id; | |
22ea40f4 | 231 | SaveVMHandlers *ops; |
9ed7d6ae | 232 | const VMStateDescription *vmsd; |
a672b469 | 233 | void *opaque; |
7685ee6a | 234 | CompatEntry *compat; |
24312968 | 235 | int no_migrate; |
a7ae8355 | 236 | int is_ram; |
a672b469 AL |
237 | } SaveStateEntry; |
238 | ||
c163b5ca | 239 | |
72cf2d4f BS |
240 | static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers = |
241 | QTAILQ_HEAD_INITIALIZER(savevm_handlers); | |
9ed7d6ae | 242 | static int global_section_id; |
a672b469 | 243 | |
8718e999 JQ |
244 | static int calculate_new_instance_id(const char *idstr) |
245 | { | |
246 | SaveStateEntry *se; | |
247 | int instance_id = 0; | |
248 | ||
72cf2d4f | 249 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { |
8718e999 JQ |
250 | if (strcmp(idstr, se->idstr) == 0 |
251 | && instance_id <= se->instance_id) { | |
252 | instance_id = se->instance_id + 1; | |
253 | } | |
254 | } | |
255 | return instance_id; | |
256 | } | |
257 | ||
7685ee6a AW |
258 | static int calculate_compat_instance_id(const char *idstr) |
259 | { | |
260 | SaveStateEntry *se; | |
261 | int instance_id = 0; | |
262 | ||
263 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { | |
38ff78d3 | 264 | if (!se->compat) { |
7685ee6a | 265 | continue; |
38ff78d3 | 266 | } |
7685ee6a AW |
267 | |
268 | if (strcmp(idstr, se->compat->idstr) == 0 | |
269 | && instance_id <= se->compat->instance_id) { | |
270 | instance_id = se->compat->instance_id + 1; | |
271 | } | |
272 | } | |
273 | return instance_id; | |
274 | } | |
275 | ||
a672b469 AL |
276 | /* TODO: Individual devices generally have very little idea about the rest |
277 | of the system, so instance_id should be removed/replaced. | |
278 | Meanwhile pass -1 as instance_id if you do not already have a clearly | |
279 | distinguishing id for all instances of your device class. */ | |
0be71e32 AW |
280 | int register_savevm_live(DeviceState *dev, |
281 | const char *idstr, | |
a672b469 AL |
282 | int instance_id, |
283 | int version_id, | |
7908c78d | 284 | SaveVMHandlers *ops, |
a672b469 AL |
285 | void *opaque) |
286 | { | |
8718e999 | 287 | SaveStateEntry *se; |
a672b469 | 288 | |
7267c094 | 289 | se = g_malloc0(sizeof(SaveStateEntry)); |
a672b469 AL |
290 | se->version_id = version_id; |
291 | se->section_id = global_section_id++; | |
7908c78d | 292 | se->ops = ops; |
a672b469 | 293 | se->opaque = opaque; |
9ed7d6ae | 294 | se->vmsd = NULL; |
24312968 | 295 | se->no_migrate = 0; |
a7ae8355 | 296 | /* if this is a live_savem then set is_ram */ |
16310a3c | 297 | if (ops->save_live_setup != NULL) { |
a7ae8355 SS |
298 | se->is_ram = 1; |
299 | } | |
a672b469 | 300 | |
09e5ab63 AL |
301 | if (dev) { |
302 | char *id = qdev_get_dev_path(dev); | |
7685ee6a AW |
303 | if (id) { |
304 | pstrcpy(se->idstr, sizeof(se->idstr), id); | |
305 | pstrcat(se->idstr, sizeof(se->idstr), "/"); | |
7267c094 | 306 | g_free(id); |
7685ee6a | 307 | |
7267c094 | 308 | se->compat = g_malloc0(sizeof(CompatEntry)); |
7685ee6a AW |
309 | pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr); |
310 | se->compat->instance_id = instance_id == -1 ? | |
311 | calculate_compat_instance_id(idstr) : instance_id; | |
312 | instance_id = -1; | |
313 | } | |
314 | } | |
315 | pstrcat(se->idstr, sizeof(se->idstr), idstr); | |
316 | ||
8718e999 | 317 | if (instance_id == -1) { |
7685ee6a | 318 | se->instance_id = calculate_new_instance_id(se->idstr); |
8718e999 JQ |
319 | } else { |
320 | se->instance_id = instance_id; | |
a672b469 | 321 | } |
7685ee6a | 322 | assert(!se->compat || se->instance_id == 0); |
8718e999 | 323 | /* add at the end of list */ |
72cf2d4f | 324 | QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry); |
a672b469 AL |
325 | return 0; |
326 | } | |
327 | ||
0be71e32 AW |
328 | int register_savevm(DeviceState *dev, |
329 | const char *idstr, | |
a672b469 AL |
330 | int instance_id, |
331 | int version_id, | |
332 | SaveStateHandler *save_state, | |
333 | LoadStateHandler *load_state, | |
334 | void *opaque) | |
335 | { | |
7908c78d JQ |
336 | SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers)); |
337 | ops->save_state = save_state; | |
338 | ops->load_state = load_state; | |
0be71e32 | 339 | return register_savevm_live(dev, idstr, instance_id, version_id, |
7908c78d | 340 | ops, opaque); |
a672b469 AL |
341 | } |
342 | ||
0be71e32 | 343 | void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque) |
41bd13af | 344 | { |
8718e999 | 345 | SaveStateEntry *se, *new_se; |
7685ee6a AW |
346 | char id[256] = ""; |
347 | ||
09e5ab63 AL |
348 | if (dev) { |
349 | char *path = qdev_get_dev_path(dev); | |
7685ee6a AW |
350 | if (path) { |
351 | pstrcpy(id, sizeof(id), path); | |
352 | pstrcat(id, sizeof(id), "/"); | |
7267c094 | 353 | g_free(path); |
7685ee6a AW |
354 | } |
355 | } | |
356 | pstrcat(id, sizeof(id), idstr); | |
41bd13af | 357 | |
72cf2d4f | 358 | QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) { |
7685ee6a | 359 | if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) { |
72cf2d4f | 360 | QTAILQ_REMOVE(&savevm_handlers, se, entry); |
69e58af9 | 361 | if (se->compat) { |
7267c094 | 362 | g_free(se->compat); |
69e58af9 | 363 | } |
22ea40f4 | 364 | g_free(se->ops); |
7267c094 | 365 | g_free(se); |
41bd13af | 366 | } |
41bd13af AL |
367 | } |
368 | } | |
369 | ||
0be71e32 | 370 | int vmstate_register_with_alias_id(DeviceState *dev, int instance_id, |
4d2ffa08 JK |
371 | const VMStateDescription *vmsd, |
372 | void *opaque, int alias_id, | |
373 | int required_for_version) | |
9ed7d6ae | 374 | { |
8718e999 | 375 | SaveStateEntry *se; |
9ed7d6ae | 376 | |
4d2ffa08 JK |
377 | /* If this triggers, alias support can be dropped for the vmsd. */ |
378 | assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id); | |
379 | ||
7267c094 | 380 | se = g_malloc0(sizeof(SaveStateEntry)); |
9ed7d6ae JQ |
381 | se->version_id = vmsd->version_id; |
382 | se->section_id = global_section_id++; | |
9ed7d6ae JQ |
383 | se->opaque = opaque; |
384 | se->vmsd = vmsd; | |
4d2ffa08 | 385 | se->alias_id = alias_id; |
2837c8ea | 386 | se->no_migrate = vmsd->unmigratable; |
9ed7d6ae | 387 | |
09e5ab63 AL |
388 | if (dev) { |
389 | char *id = qdev_get_dev_path(dev); | |
7685ee6a AW |
390 | if (id) { |
391 | pstrcpy(se->idstr, sizeof(se->idstr), id); | |
392 | pstrcat(se->idstr, sizeof(se->idstr), "/"); | |
7267c094 | 393 | g_free(id); |
7685ee6a | 394 | |
7267c094 | 395 | se->compat = g_malloc0(sizeof(CompatEntry)); |
7685ee6a AW |
396 | pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name); |
397 | se->compat->instance_id = instance_id == -1 ? | |
398 | calculate_compat_instance_id(vmsd->name) : instance_id; | |
399 | instance_id = -1; | |
400 | } | |
401 | } | |
402 | pstrcat(se->idstr, sizeof(se->idstr), vmsd->name); | |
403 | ||
8718e999 | 404 | if (instance_id == -1) { |
7685ee6a | 405 | se->instance_id = calculate_new_instance_id(se->idstr); |
8718e999 JQ |
406 | } else { |
407 | se->instance_id = instance_id; | |
9ed7d6ae | 408 | } |
7685ee6a | 409 | assert(!se->compat || se->instance_id == 0); |
8718e999 | 410 | /* add at the end of list */ |
72cf2d4f | 411 | QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry); |
9ed7d6ae JQ |
412 | return 0; |
413 | } | |
414 | ||
0be71e32 AW |
415 | void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd, |
416 | void *opaque) | |
9ed7d6ae | 417 | { |
1eb7538b JQ |
418 | SaveStateEntry *se, *new_se; |
419 | ||
72cf2d4f | 420 | QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) { |
1eb7538b | 421 | if (se->vmsd == vmsd && se->opaque == opaque) { |
72cf2d4f | 422 | QTAILQ_REMOVE(&savevm_handlers, se, entry); |
69e58af9 | 423 | if (se->compat) { |
7267c094 | 424 | g_free(se->compat); |
69e58af9 | 425 | } |
7267c094 | 426 | g_free(se); |
1eb7538b JQ |
427 | } |
428 | } | |
9ed7d6ae JQ |
429 | } |
430 | ||
4082be4d JQ |
431 | static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id) |
432 | { | |
9013dca5 | 433 | trace_vmstate_load(se->idstr, se->vmsd ? se->vmsd->name : "(old)"); |
9ed7d6ae | 434 | if (!se->vmsd) { /* Old style */ |
22ea40f4 | 435 | return se->ops->load_state(f, se->opaque, version_id); |
9ed7d6ae JQ |
436 | } |
437 | return vmstate_load_state(f, se->vmsd, se->opaque, version_id); | |
4082be4d JQ |
438 | } |
439 | ||
dc912121 | 440 | static void vmstate_save(QEMUFile *f, SaveStateEntry *se) |
4082be4d | 441 | { |
9013dca5 | 442 | trace_vmstate_save(se->idstr, se->vmsd ? se->vmsd->name : "(old)"); |
9ed7d6ae | 443 | if (!se->vmsd) { /* Old style */ |
22ea40f4 | 444 | se->ops->save_state(f, se->opaque); |
dc912121 | 445 | return; |
9ed7d6ae | 446 | } |
38ff78d3 | 447 | vmstate_save_state(f, se->vmsd, se->opaque); |
4082be4d JQ |
448 | } |
449 | ||
e1c37d0e | 450 | bool qemu_savevm_state_blocked(Error **errp) |
dc912121 AW |
451 | { |
452 | SaveStateEntry *se; | |
453 | ||
454 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { | |
455 | if (se->no_migrate) { | |
f231b88d CR |
456 | error_setg(errp, "State blocked by non-migratable device '%s'", |
457 | se->idstr); | |
dc912121 AW |
458 | return true; |
459 | } | |
460 | } | |
461 | return false; | |
462 | } | |
463 | ||
47c8c17a PB |
464 | void qemu_savevm_state_begin(QEMUFile *f, |
465 | const MigrationParams *params) | |
a672b469 AL |
466 | { |
467 | SaveStateEntry *se; | |
39346385 | 468 | int ret; |
a672b469 | 469 | |
9013dca5 | 470 | trace_savevm_state_begin(); |
c163b5ca | 471 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { |
22ea40f4 | 472 | if (!se->ops || !se->ops->set_params) { |
c163b5ca | 473 | continue; |
6607ae23 | 474 | } |
22ea40f4 | 475 | se->ops->set_params(params, se->opaque); |
c163b5ca | 476 | } |
38ff78d3 | 477 | |
a672b469 AL |
478 | qemu_put_be32(f, QEMU_VM_FILE_MAGIC); |
479 | qemu_put_be32(f, QEMU_VM_FILE_VERSION); | |
480 | ||
72cf2d4f | 481 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { |
a672b469 AL |
482 | int len; |
483 | ||
d1315aac | 484 | if (!se->ops || !se->ops->save_live_setup) { |
a672b469 | 485 | continue; |
22ea40f4 | 486 | } |
6bd68781 JQ |
487 | if (se->ops && se->ops->is_active) { |
488 | if (!se->ops->is_active(se->opaque)) { | |
489 | continue; | |
490 | } | |
491 | } | |
a672b469 AL |
492 | /* Section type */ |
493 | qemu_put_byte(f, QEMU_VM_SECTION_START); | |
494 | qemu_put_be32(f, se->section_id); | |
495 | ||
496 | /* ID string */ | |
497 | len = strlen(se->idstr); | |
498 | qemu_put_byte(f, len); | |
499 | qemu_put_buffer(f, (uint8_t *)se->idstr, len); | |
500 | ||
501 | qemu_put_be32(f, se->instance_id); | |
502 | qemu_put_be32(f, se->version_id); | |
503 | ||
d1315aac | 504 | ret = se->ops->save_live_setup(f, se->opaque); |
2975725f | 505 | if (ret < 0) { |
47c8c17a PB |
506 | qemu_file_set_error(f, ret); |
507 | break; | |
2975725f | 508 | } |
a672b469 | 509 | } |
a672b469 AL |
510 | } |
511 | ||
39346385 | 512 | /* |
07f35073 | 513 | * this function has three return values: |
39346385 JQ |
514 | * negative: there was one error, and we have -errno. |
515 | * 0 : We haven't finished, caller have to go again | |
516 | * 1 : We have finished, we can go to complete phase | |
517 | */ | |
539de124 | 518 | int qemu_savevm_state_iterate(QEMUFile *f) |
a672b469 AL |
519 | { |
520 | SaveStateEntry *se; | |
521 | int ret = 1; | |
522 | ||
9013dca5 | 523 | trace_savevm_state_iterate(); |
72cf2d4f | 524 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { |
16310a3c | 525 | if (!se->ops || !se->ops->save_live_iterate) { |
a672b469 | 526 | continue; |
22ea40f4 | 527 | } |
6bd68781 JQ |
528 | if (se->ops && se->ops->is_active) { |
529 | if (!se->ops->is_active(se->opaque)) { | |
530 | continue; | |
531 | } | |
532 | } | |
aac844ed JQ |
533 | if (qemu_file_rate_limit(f)) { |
534 | return 0; | |
535 | } | |
464400f6 | 536 | trace_savevm_section_start(se->idstr, se->section_id); |
a672b469 AL |
537 | /* Section type */ |
538 | qemu_put_byte(f, QEMU_VM_SECTION_PART); | |
539 | qemu_put_be32(f, se->section_id); | |
540 | ||
16310a3c | 541 | ret = se->ops->save_live_iterate(f, se->opaque); |
464400f6 | 542 | trace_savevm_section_end(se->idstr, se->section_id); |
517a13c9 | 543 | |
47c8c17a PB |
544 | if (ret < 0) { |
545 | qemu_file_set_error(f, ret); | |
546 | } | |
2975725f | 547 | if (ret <= 0) { |
90697be8 JK |
548 | /* Do not proceed to the next vmstate before this one reported |
549 | completion of the current stage. This serializes the migration | |
550 | and reduces the probability that a faster changing state is | |
551 | synchronized over and over again. */ | |
552 | break; | |
553 | } | |
a672b469 | 554 | } |
39346385 | 555 | return ret; |
a672b469 AL |
556 | } |
557 | ||
47c8c17a | 558 | void qemu_savevm_state_complete(QEMUFile *f) |
a672b469 AL |
559 | { |
560 | SaveStateEntry *se; | |
2975725f | 561 | int ret; |
a672b469 | 562 | |
9013dca5 AK |
563 | trace_savevm_state_complete(); |
564 | ||
ea375f9a JK |
565 | cpu_synchronize_all_states(); |
566 | ||
72cf2d4f | 567 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { |
16310a3c | 568 | if (!se->ops || !se->ops->save_live_complete) { |
a672b469 | 569 | continue; |
22ea40f4 | 570 | } |
6bd68781 JQ |
571 | if (se->ops && se->ops->is_active) { |
572 | if (!se->ops->is_active(se->opaque)) { | |
573 | continue; | |
574 | } | |
575 | } | |
464400f6 | 576 | trace_savevm_section_start(se->idstr, se->section_id); |
a672b469 AL |
577 | /* Section type */ |
578 | qemu_put_byte(f, QEMU_VM_SECTION_END); | |
579 | qemu_put_be32(f, se->section_id); | |
580 | ||
16310a3c | 581 | ret = se->ops->save_live_complete(f, se->opaque); |
464400f6 | 582 | trace_savevm_section_end(se->idstr, se->section_id); |
2975725f | 583 | if (ret < 0) { |
47c8c17a PB |
584 | qemu_file_set_error(f, ret); |
585 | return; | |
2975725f | 586 | } |
a672b469 AL |
587 | } |
588 | ||
72cf2d4f | 589 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { |
a672b469 AL |
590 | int len; |
591 | ||
22ea40f4 | 592 | if ((!se->ops || !se->ops->save_state) && !se->vmsd) { |
5cecf414 | 593 | continue; |
22ea40f4 | 594 | } |
464400f6 | 595 | trace_savevm_section_start(se->idstr, se->section_id); |
a672b469 AL |
596 | /* Section type */ |
597 | qemu_put_byte(f, QEMU_VM_SECTION_FULL); | |
598 | qemu_put_be32(f, se->section_id); | |
599 | ||
600 | /* ID string */ | |
601 | len = strlen(se->idstr); | |
602 | qemu_put_byte(f, len); | |
603 | qemu_put_buffer(f, (uint8_t *)se->idstr, len); | |
604 | ||
605 | qemu_put_be32(f, se->instance_id); | |
606 | qemu_put_be32(f, se->version_id); | |
607 | ||
dc912121 | 608 | vmstate_save(f, se); |
464400f6 | 609 | trace_savevm_section_end(se->idstr, se->section_id); |
a672b469 AL |
610 | } |
611 | ||
612 | qemu_put_byte(f, QEMU_VM_EOF); | |
edaae611 | 613 | qemu_fflush(f); |
a672b469 AL |
614 | } |
615 | ||
e4ed1541 JQ |
616 | uint64_t qemu_savevm_state_pending(QEMUFile *f, uint64_t max_size) |
617 | { | |
618 | SaveStateEntry *se; | |
619 | uint64_t ret = 0; | |
620 | ||
621 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { | |
622 | if (!se->ops || !se->ops->save_live_pending) { | |
623 | continue; | |
624 | } | |
625 | if (se->ops && se->ops->is_active) { | |
626 | if (!se->ops->is_active(se->opaque)) { | |
627 | continue; | |
628 | } | |
629 | } | |
630 | ret += se->ops->save_live_pending(f, se->opaque, max_size); | |
631 | } | |
632 | return ret; | |
633 | } | |
634 | ||
6522773f | 635 | void qemu_savevm_state_cancel(void) |
4ec7fcc7 JK |
636 | { |
637 | SaveStateEntry *se; | |
638 | ||
9013dca5 | 639 | trace_savevm_state_cancel(); |
4ec7fcc7 | 640 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { |
9b5bfab0 JQ |
641 | if (se->ops && se->ops->cancel) { |
642 | se->ops->cancel(se->opaque); | |
4ec7fcc7 JK |
643 | } |
644 | } | |
645 | } | |
646 | ||
e1c37d0e | 647 | static int qemu_savevm_state(QEMUFile *f) |
a672b469 | 648 | { |
a672b469 | 649 | int ret; |
6607ae23 IY |
650 | MigrationParams params = { |
651 | .blk = 0, | |
652 | .shared = 0 | |
653 | }; | |
a672b469 | 654 | |
e1c37d0e | 655 | if (qemu_savevm_state_blocked(NULL)) { |
04943eba | 656 | return -EINVAL; |
dc912121 AW |
657 | } |
658 | ||
9b095037 | 659 | qemu_mutex_unlock_iothread(); |
47c8c17a | 660 | qemu_savevm_state_begin(f, ¶ms); |
9b095037 PB |
661 | qemu_mutex_lock_iothread(); |
662 | ||
47c8c17a PB |
663 | while (qemu_file_get_error(f) == 0) { |
664 | if (qemu_savevm_state_iterate(f) > 0) { | |
665 | break; | |
666 | } | |
667 | } | |
a672b469 | 668 | |
47c8c17a | 669 | ret = qemu_file_get_error(f); |
39346385 | 670 | if (ret == 0) { |
47c8c17a | 671 | qemu_savevm_state_complete(f); |
624b9cc2 | 672 | ret = qemu_file_get_error(f); |
39346385 | 673 | } |
04943eba PB |
674 | if (ret != 0) { |
675 | qemu_savevm_state_cancel(); | |
676 | } | |
a672b469 AL |
677 | return ret; |
678 | } | |
679 | ||
a7ae8355 SS |
680 | static int qemu_save_device_state(QEMUFile *f) |
681 | { | |
682 | SaveStateEntry *se; | |
683 | ||
684 | qemu_put_be32(f, QEMU_VM_FILE_MAGIC); | |
685 | qemu_put_be32(f, QEMU_VM_FILE_VERSION); | |
686 | ||
687 | cpu_synchronize_all_states(); | |
688 | ||
689 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { | |
690 | int len; | |
691 | ||
692 | if (se->is_ram) { | |
693 | continue; | |
694 | } | |
22ea40f4 | 695 | if ((!se->ops || !se->ops->save_state) && !se->vmsd) { |
a7ae8355 SS |
696 | continue; |
697 | } | |
698 | ||
699 | /* Section type */ | |
700 | qemu_put_byte(f, QEMU_VM_SECTION_FULL); | |
701 | qemu_put_be32(f, se->section_id); | |
702 | ||
703 | /* ID string */ | |
704 | len = strlen(se->idstr); | |
705 | qemu_put_byte(f, len); | |
706 | qemu_put_buffer(f, (uint8_t *)se->idstr, len); | |
707 | ||
708 | qemu_put_be32(f, se->instance_id); | |
709 | qemu_put_be32(f, se->version_id); | |
710 | ||
711 | vmstate_save(f, se); | |
712 | } | |
713 | ||
714 | qemu_put_byte(f, QEMU_VM_EOF); | |
715 | ||
716 | return qemu_file_get_error(f); | |
717 | } | |
718 | ||
a672b469 AL |
719 | static SaveStateEntry *find_se(const char *idstr, int instance_id) |
720 | { | |
721 | SaveStateEntry *se; | |
722 | ||
72cf2d4f | 723 | QTAILQ_FOREACH(se, &savevm_handlers, entry) { |
a672b469 | 724 | if (!strcmp(se->idstr, idstr) && |
4d2ffa08 JK |
725 | (instance_id == se->instance_id || |
726 | instance_id == se->alias_id)) | |
a672b469 | 727 | return se; |
7685ee6a AW |
728 | /* Migrating from an older version? */ |
729 | if (strstr(se->idstr, idstr) && se->compat) { | |
730 | if (!strcmp(se->compat->idstr, idstr) && | |
731 | (instance_id == se->compat->instance_id || | |
732 | instance_id == se->alias_id)) | |
733 | return se; | |
734 | } | |
a672b469 AL |
735 | } |
736 | return NULL; | |
737 | } | |
738 | ||
739 | typedef struct LoadStateEntry { | |
72cf2d4f | 740 | QLIST_ENTRY(LoadStateEntry) entry; |
a672b469 AL |
741 | SaveStateEntry *se; |
742 | int section_id; | |
743 | int version_id; | |
a672b469 AL |
744 | } LoadStateEntry; |
745 | ||
a672b469 AL |
746 | int qemu_loadvm_state(QEMUFile *f) |
747 | { | |
72cf2d4f BS |
748 | QLIST_HEAD(, LoadStateEntry) loadvm_handlers = |
749 | QLIST_HEAD_INITIALIZER(loadvm_handlers); | |
f4dbb8dd | 750 | LoadStateEntry *le, *new_le; |
a672b469 AL |
751 | uint8_t section_type; |
752 | unsigned int v; | |
753 | int ret; | |
754 | ||
e1c37d0e | 755 | if (qemu_savevm_state_blocked(NULL)) { |
dc912121 AW |
756 | return -EINVAL; |
757 | } | |
758 | ||
a672b469 | 759 | v = qemu_get_be32(f); |
38ff78d3 | 760 | if (v != QEMU_VM_FILE_MAGIC) { |
a672b469 | 761 | return -EINVAL; |
38ff78d3 | 762 | } |
a672b469 AL |
763 | |
764 | v = qemu_get_be32(f); | |
bbfe1408 JQ |
765 | if (v == QEMU_VM_FILE_VERSION_COMPAT) { |
766 | fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n"); | |
767 | return -ENOTSUP; | |
768 | } | |
38ff78d3 | 769 | if (v != QEMU_VM_FILE_VERSION) { |
a672b469 | 770 | return -ENOTSUP; |
38ff78d3 | 771 | } |
a672b469 AL |
772 | |
773 | while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) { | |
774 | uint32_t instance_id, version_id, section_id; | |
a672b469 AL |
775 | SaveStateEntry *se; |
776 | char idstr[257]; | |
777 | int len; | |
778 | ||
779 | switch (section_type) { | |
780 | case QEMU_VM_SECTION_START: | |
781 | case QEMU_VM_SECTION_FULL: | |
782 | /* Read section start */ | |
783 | section_id = qemu_get_be32(f); | |
784 | len = qemu_get_byte(f); | |
785 | qemu_get_buffer(f, (uint8_t *)idstr, len); | |
786 | idstr[len] = 0; | |
787 | instance_id = qemu_get_be32(f); | |
788 | version_id = qemu_get_be32(f); | |
789 | ||
790 | /* Find savevm section */ | |
791 | se = find_se(idstr, instance_id); | |
792 | if (se == NULL) { | |
793 | fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id); | |
794 | ret = -EINVAL; | |
795 | goto out; | |
796 | } | |
797 | ||
798 | /* Validate version */ | |
799 | if (version_id > se->version_id) { | |
800 | fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n", | |
801 | version_id, idstr, se->version_id); | |
802 | ret = -EINVAL; | |
803 | goto out; | |
804 | } | |
805 | ||
806 | /* Add entry */ | |
7267c094 | 807 | le = g_malloc0(sizeof(*le)); |
a672b469 AL |
808 | |
809 | le->se = se; | |
810 | le->section_id = section_id; | |
811 | le->version_id = version_id; | |
72cf2d4f | 812 | QLIST_INSERT_HEAD(&loadvm_handlers, le, entry); |
a672b469 | 813 | |
4082be4d | 814 | ret = vmstate_load(f, le->se, le->version_id); |
b5a22e4a JQ |
815 | if (ret < 0) { |
816 | fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n", | |
817 | instance_id, idstr); | |
818 | goto out; | |
819 | } | |
a672b469 AL |
820 | break; |
821 | case QEMU_VM_SECTION_PART: | |
822 | case QEMU_VM_SECTION_END: | |
823 | section_id = qemu_get_be32(f); | |
824 | ||
72cf2d4f | 825 | QLIST_FOREACH(le, &loadvm_handlers, entry) { |
f4dbb8dd JQ |
826 | if (le->section_id == section_id) { |
827 | break; | |
828 | } | |
829 | } | |
a672b469 AL |
830 | if (le == NULL) { |
831 | fprintf(stderr, "Unknown savevm section %d\n", section_id); | |
832 | ret = -EINVAL; | |
833 | goto out; | |
834 | } | |
835 | ||
4082be4d | 836 | ret = vmstate_load(f, le->se, le->version_id); |
b5a22e4a JQ |
837 | if (ret < 0) { |
838 | fprintf(stderr, "qemu: warning: error while loading state section id %d\n", | |
839 | section_id); | |
840 | goto out; | |
841 | } | |
a672b469 AL |
842 | break; |
843 | default: | |
844 | fprintf(stderr, "Unknown savevm section type %d\n", section_type); | |
845 | ret = -EINVAL; | |
846 | goto out; | |
847 | } | |
848 | } | |
849 | ||
ea375f9a JK |
850 | cpu_synchronize_all_post_init(); |
851 | ||
a672b469 AL |
852 | ret = 0; |
853 | ||
854 | out: | |
72cf2d4f BS |
855 | QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) { |
856 | QLIST_REMOVE(le, entry); | |
7267c094 | 857 | g_free(le); |
a672b469 AL |
858 | } |
859 | ||
42802d47 JQ |
860 | if (ret == 0) { |
861 | ret = qemu_file_get_error(f); | |
624b9cc2 | 862 | } |
a672b469 AL |
863 | |
864 | return ret; | |
865 | } | |
866 | ||
29d78271 SH |
867 | static BlockDriverState *find_vmstate_bs(void) |
868 | { | |
869 | BlockDriverState *bs = NULL; | |
870 | while ((bs = bdrv_next(bs))) { | |
871 | if (bdrv_can_snapshot(bs)) { | |
872 | return bs; | |
873 | } | |
874 | } | |
875 | return NULL; | |
876 | } | |
877 | ||
cb499fb2 KW |
878 | /* |
879 | * Deletes snapshots of a given name in all opened images. | |
880 | */ | |
881 | static int del_existing_snapshots(Monitor *mon, const char *name) | |
882 | { | |
883 | BlockDriverState *bs; | |
cb499fb2 | 884 | QEMUSnapshotInfo sn1, *snapshot = &sn1; |
a89d89d3 | 885 | Error *err = NULL; |
cb499fb2 | 886 | |
dbc13590 MA |
887 | bs = NULL; |
888 | while ((bs = bdrv_next(bs))) { | |
cb499fb2 | 889 | if (bdrv_can_snapshot(bs) && |
38ff78d3 | 890 | bdrv_snapshot_find(bs, snapshot, name) >= 0) { |
a89d89d3 | 891 | bdrv_snapshot_delete_by_id_or_name(bs, name, &err); |
84d18f06 | 892 | if (err) { |
cb499fb2 | 893 | monitor_printf(mon, |
a89d89d3 WX |
894 | "Error while deleting snapshot on device '%s':" |
895 | " %s\n", | |
896 | bdrv_get_device_name(bs), | |
897 | error_get_pretty(err)); | |
898 | error_free(err); | |
cb499fb2 KW |
899 | return -1; |
900 | } | |
901 | } | |
902 | } | |
903 | ||
904 | return 0; | |
905 | } | |
906 | ||
d54908a5 | 907 | void do_savevm(Monitor *mon, const QDict *qdict) |
a672b469 AL |
908 | { |
909 | BlockDriverState *bs, *bs1; | |
910 | QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1; | |
cb499fb2 | 911 | int ret; |
a672b469 AL |
912 | QEMUFile *f; |
913 | int saved_vm_running; | |
c2c9a466 | 914 | uint64_t vm_state_size; |
68b891ec | 915 | qemu_timeval tv; |
7d631a11 | 916 | struct tm tm; |
d54908a5 | 917 | const char *name = qdict_get_try_str(qdict, "name"); |
a672b469 | 918 | |
feeee5ac | 919 | /* Verify if there is a device that doesn't support snapshots and is writable */ |
dbc13590 MA |
920 | bs = NULL; |
921 | while ((bs = bdrv_next(bs))) { | |
feeee5ac | 922 | |
07b70bfb | 923 | if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { |
feeee5ac MDCF |
924 | continue; |
925 | } | |
926 | ||
927 | if (!bdrv_can_snapshot(bs)) { | |
928 | monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n", | |
929 | bdrv_get_device_name(bs)); | |
930 | return; | |
931 | } | |
932 | } | |
933 | ||
29d78271 | 934 | bs = find_vmstate_bs(); |
a672b469 | 935 | if (!bs) { |
376253ec | 936 | monitor_printf(mon, "No block device can accept snapshots\n"); |
a672b469 AL |
937 | return; |
938 | } | |
a672b469 | 939 | |
1354869c | 940 | saved_vm_running = runstate_is_running(); |
0461d5a6 | 941 | vm_stop(RUN_STATE_SAVE_VM); |
a672b469 | 942 | |
cb499fb2 | 943 | memset(sn, 0, sizeof(*sn)); |
a672b469 AL |
944 | |
945 | /* fill auxiliary fields */ | |
68b891ec | 946 | qemu_gettimeofday(&tv); |
a672b469 AL |
947 | sn->date_sec = tv.tv_sec; |
948 | sn->date_nsec = tv.tv_usec * 1000; | |
bc72ad67 | 949 | sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
a672b469 | 950 | |
7d631a11 MDCF |
951 | if (name) { |
952 | ret = bdrv_snapshot_find(bs, old_sn, name); | |
953 | if (ret >= 0) { | |
954 | pstrcpy(sn->name, sizeof(sn->name), old_sn->name); | |
955 | pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str); | |
956 | } else { | |
957 | pstrcpy(sn->name, sizeof(sn->name), name); | |
958 | } | |
959 | } else { | |
d7d9b528 BS |
960 | /* cast below needed for OpenBSD where tv_sec is still 'long' */ |
961 | localtime_r((const time_t *)&tv.tv_sec, &tm); | |
7d631a11 | 962 | strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm); |
7d631a11 MDCF |
963 | } |
964 | ||
cb499fb2 | 965 | /* Delete old snapshots of the same name */ |
f139a412 | 966 | if (name && del_existing_snapshots(mon, name) < 0) { |
cb499fb2 KW |
967 | goto the_end; |
968 | } | |
969 | ||
a672b469 | 970 | /* save the VM state */ |
45566e9c | 971 | f = qemu_fopen_bdrv(bs, 1); |
a672b469 | 972 | if (!f) { |
376253ec | 973 | monitor_printf(mon, "Could not open VM state file\n"); |
a672b469 AL |
974 | goto the_end; |
975 | } | |
e1c37d0e | 976 | ret = qemu_savevm_state(f); |
2d22b18f | 977 | vm_state_size = qemu_ftell(f); |
a672b469 AL |
978 | qemu_fclose(f); |
979 | if (ret < 0) { | |
376253ec | 980 | monitor_printf(mon, "Error %d while writing VM\n", ret); |
a672b469 AL |
981 | goto the_end; |
982 | } | |
983 | ||
984 | /* create the snapshots */ | |
985 | ||
dbc13590 MA |
986 | bs1 = NULL; |
987 | while ((bs1 = bdrv_next(bs1))) { | |
feeee5ac | 988 | if (bdrv_can_snapshot(bs1)) { |
2d22b18f AL |
989 | /* Write VM state size only to the image that contains the state */ |
990 | sn->vm_state_size = (bs == bs1 ? vm_state_size : 0); | |
a672b469 AL |
991 | ret = bdrv_snapshot_create(bs1, sn); |
992 | if (ret < 0) { | |
376253ec AL |
993 | monitor_printf(mon, "Error while creating snapshot on '%s'\n", |
994 | bdrv_get_device_name(bs1)); | |
a672b469 AL |
995 | } |
996 | } | |
997 | } | |
998 | ||
999 | the_end: | |
38ff78d3 | 1000 | if (saved_vm_running) { |
a672b469 | 1001 | vm_start(); |
38ff78d3 | 1002 | } |
a672b469 AL |
1003 | } |
1004 | ||
a7ae8355 SS |
1005 | void qmp_xen_save_devices_state(const char *filename, Error **errp) |
1006 | { | |
1007 | QEMUFile *f; | |
1008 | int saved_vm_running; | |
1009 | int ret; | |
1010 | ||
1011 | saved_vm_running = runstate_is_running(); | |
1012 | vm_stop(RUN_STATE_SAVE_VM); | |
1013 | ||
1014 | f = qemu_fopen(filename, "wb"); | |
1015 | if (!f) { | |
1befce96 | 1016 | error_setg_file_open(errp, errno, filename); |
a7ae8355 SS |
1017 | goto the_end; |
1018 | } | |
1019 | ret = qemu_save_device_state(f); | |
1020 | qemu_fclose(f); | |
1021 | if (ret < 0) { | |
1022 | error_set(errp, QERR_IO_ERROR); | |
1023 | } | |
1024 | ||
1025 | the_end: | |
38ff78d3 | 1026 | if (saved_vm_running) { |
a7ae8355 | 1027 | vm_start(); |
38ff78d3 | 1028 | } |
a7ae8355 SS |
1029 | } |
1030 | ||
03cd4655 | 1031 | int load_vmstate(const char *name) |
a672b469 | 1032 | { |
f0aa7a8b | 1033 | BlockDriverState *bs, *bs_vm_state; |
2d22b18f | 1034 | QEMUSnapshotInfo sn; |
a672b469 | 1035 | QEMUFile *f; |
751c6a17 | 1036 | int ret; |
a672b469 | 1037 | |
29d78271 | 1038 | bs_vm_state = find_vmstate_bs(); |
f0aa7a8b MDCF |
1039 | if (!bs_vm_state) { |
1040 | error_report("No block device supports snapshots"); | |
1041 | return -ENOTSUP; | |
1042 | } | |
1043 | ||
1044 | /* Don't even try to load empty VM states */ | |
1045 | ret = bdrv_snapshot_find(bs_vm_state, &sn, name); | |
1046 | if (ret < 0) { | |
1047 | return ret; | |
1048 | } else if (sn.vm_state_size == 0) { | |
e11480db KW |
1049 | error_report("This is a disk-only snapshot. Revert to it offline " |
1050 | "using qemu-img."); | |
f0aa7a8b MDCF |
1051 | return -EINVAL; |
1052 | } | |
1053 | ||
1054 | /* Verify if there is any device that doesn't support snapshots and is | |
1055 | writable and check if the requested snapshot is available too. */ | |
dbc13590 MA |
1056 | bs = NULL; |
1057 | while ((bs = bdrv_next(bs))) { | |
feeee5ac | 1058 | |
07b70bfb | 1059 | if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { |
feeee5ac MDCF |
1060 | continue; |
1061 | } | |
1062 | ||
1063 | if (!bdrv_can_snapshot(bs)) { | |
1064 | error_report("Device '%s' is writable but does not support snapshots.", | |
1065 | bdrv_get_device_name(bs)); | |
1066 | return -ENOTSUP; | |
1067 | } | |
feeee5ac | 1068 | |
f0aa7a8b MDCF |
1069 | ret = bdrv_snapshot_find(bs, &sn, name); |
1070 | if (ret < 0) { | |
1071 | error_report("Device '%s' does not have the requested snapshot '%s'", | |
1072 | bdrv_get_device_name(bs), name); | |
1073 | return ret; | |
1074 | } | |
a672b469 AL |
1075 | } |
1076 | ||
1077 | /* Flush all IO requests so they don't interfere with the new state. */ | |
922453bc | 1078 | bdrv_drain_all(); |
a672b469 | 1079 | |
f0aa7a8b MDCF |
1080 | bs = NULL; |
1081 | while ((bs = bdrv_next(bs))) { | |
1082 | if (bdrv_can_snapshot(bs)) { | |
1083 | ret = bdrv_snapshot_goto(bs, name); | |
a672b469 | 1084 | if (ret < 0) { |
f0aa7a8b MDCF |
1085 | error_report("Error %d while activating snapshot '%s' on '%s'", |
1086 | ret, name, bdrv_get_device_name(bs)); | |
1087 | return ret; | |
a672b469 AL |
1088 | } |
1089 | } | |
1090 | } | |
1091 | ||
a672b469 | 1092 | /* restore the VM state */ |
f0aa7a8b | 1093 | f = qemu_fopen_bdrv(bs_vm_state, 0); |
a672b469 | 1094 | if (!f) { |
1ecda02b | 1095 | error_report("Could not open VM state file"); |
05f2401e | 1096 | return -EINVAL; |
a672b469 | 1097 | } |
f0aa7a8b | 1098 | |
5a8a49d7 | 1099 | qemu_system_reset(VMRESET_SILENT); |
a672b469 | 1100 | ret = qemu_loadvm_state(f); |
f0aa7a8b | 1101 | |
a672b469 AL |
1102 | qemu_fclose(f); |
1103 | if (ret < 0) { | |
1ecda02b | 1104 | error_report("Error %d while loading VM state", ret); |
05f2401e | 1105 | return ret; |
a672b469 | 1106 | } |
f0aa7a8b | 1107 | |
05f2401e | 1108 | return 0; |
7b630349 JQ |
1109 | } |
1110 | ||
d54908a5 | 1111 | void do_delvm(Monitor *mon, const QDict *qdict) |
a672b469 AL |
1112 | { |
1113 | BlockDriverState *bs, *bs1; | |
a89d89d3 | 1114 | Error *err = NULL; |
d54908a5 | 1115 | const char *name = qdict_get_str(qdict, "name"); |
a672b469 | 1116 | |
29d78271 | 1117 | bs = find_vmstate_bs(); |
a672b469 | 1118 | if (!bs) { |
376253ec | 1119 | monitor_printf(mon, "No block device supports snapshots\n"); |
a672b469 AL |
1120 | return; |
1121 | } | |
1122 | ||
dbc13590 MA |
1123 | bs1 = NULL; |
1124 | while ((bs1 = bdrv_next(bs1))) { | |
feeee5ac | 1125 | if (bdrv_can_snapshot(bs1)) { |
a89d89d3 | 1126 | bdrv_snapshot_delete_by_id_or_name(bs, name, &err); |
84d18f06 | 1127 | if (err) { |
a89d89d3 WX |
1128 | monitor_printf(mon, |
1129 | "Error while deleting snapshot on device '%s':" | |
1130 | " %s\n", | |
1131 | bdrv_get_device_name(bs), | |
1132 | error_get_pretty(err)); | |
1133 | error_free(err); | |
a672b469 AL |
1134 | } |
1135 | } | |
1136 | } | |
1137 | } | |
1138 | ||
84f2d0ea | 1139 | void do_info_snapshots(Monitor *mon, const QDict *qdict) |
a672b469 AL |
1140 | { |
1141 | BlockDriverState *bs, *bs1; | |
f9209915 MDCF |
1142 | QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s; |
1143 | int nb_sns, i, ret, available; | |
1144 | int total; | |
1145 | int *available_snapshots; | |
a672b469 | 1146 | |
29d78271 | 1147 | bs = find_vmstate_bs(); |
a672b469 | 1148 | if (!bs) { |
376253ec | 1149 | monitor_printf(mon, "No available block device supports snapshots\n"); |
a672b469 AL |
1150 | return; |
1151 | } | |
a672b469 AL |
1152 | |
1153 | nb_sns = bdrv_snapshot_list(bs, &sn_tab); | |
1154 | if (nb_sns < 0) { | |
376253ec | 1155 | monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns); |
a672b469 AL |
1156 | return; |
1157 | } | |
f9209915 MDCF |
1158 | |
1159 | if (nb_sns == 0) { | |
1160 | monitor_printf(mon, "There is no snapshot available.\n"); | |
1161 | return; | |
1162 | } | |
1163 | ||
7267c094 | 1164 | available_snapshots = g_malloc0(sizeof(int) * nb_sns); |
f9209915 MDCF |
1165 | total = 0; |
1166 | for (i = 0; i < nb_sns; i++) { | |
a672b469 | 1167 | sn = &sn_tab[i]; |
f9209915 MDCF |
1168 | available = 1; |
1169 | bs1 = NULL; | |
1170 | ||
1171 | while ((bs1 = bdrv_next(bs1))) { | |
1172 | if (bdrv_can_snapshot(bs1) && bs1 != bs) { | |
1173 | ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str); | |
1174 | if (ret < 0) { | |
1175 | available = 0; | |
1176 | break; | |
1177 | } | |
1178 | } | |
1179 | } | |
1180 | ||
1181 | if (available) { | |
1182 | available_snapshots[total] = i; | |
1183 | total++; | |
1184 | } | |
a672b469 | 1185 | } |
f9209915 MDCF |
1186 | |
1187 | if (total > 0) { | |
5b917044 WX |
1188 | bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL); |
1189 | monitor_printf(mon, "\n"); | |
f9209915 MDCF |
1190 | for (i = 0; i < total; i++) { |
1191 | sn = &sn_tab[available_snapshots[i]]; | |
5b917044 WX |
1192 | bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn); |
1193 | monitor_printf(mon, "\n"); | |
f9209915 MDCF |
1194 | } |
1195 | } else { | |
1196 | monitor_printf(mon, "There is no suitable snapshot available\n"); | |
1197 | } | |
1198 | ||
7267c094 AL |
1199 | g_free(sn_tab); |
1200 | g_free(available_snapshots); | |
f9209915 | 1201 | |
a672b469 | 1202 | } |
c5705a77 AK |
1203 | |
1204 | void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev) | |
1205 | { | |
1ddde087 | 1206 | qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK, |
c5705a77 AK |
1207 | memory_region_name(mr), dev); |
1208 | } | |
1209 | ||
1210 | void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev) | |
1211 | { | |
1212 | /* Nothing do to while the implementation is in RAMBlock */ | |
1213 | } | |
1214 | ||
1215 | void vmstate_register_ram_global(MemoryRegion *mr) | |
1216 | { | |
1217 | vmstate_register_ram(mr, NULL); | |
1218 | } |