]>
Commit | Line | Data |
---|---|---|
de08c606 WX |
1 | /* |
2 | * Block layer snapshot related functions | |
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 | */ | |
24 | ||
80c71a24 | 25 | #include "qemu/osdep.h" |
de08c606 WX |
26 | #include "block/snapshot.h" |
27 | #include "block/block_int.h" | |
609f45ea | 28 | #include "block/qdict.h" |
da34e65c | 29 | #include "qapi/error.h" |
452fcdbc | 30 | #include "qapi/qmp/qdict.h" |
cc7a8ea7 | 31 | #include "qapi/qmp/qerror.h" |
7a9e5119 | 32 | #include "qapi/qmp/qstring.h" |
922a01a0 | 33 | #include "qemu/option.h" |
05f4aced | 34 | #include "sysemu/block-backend.h" |
de08c606 | 35 | |
8c116b0e WX |
36 | QemuOptsList internal_snapshot_opts = { |
37 | .name = "snapshot", | |
38 | .head = QTAILQ_HEAD_INITIALIZER(internal_snapshot_opts.head), | |
39 | .desc = { | |
40 | { | |
41 | .name = SNAPSHOT_OPT_ID, | |
42 | .type = QEMU_OPT_STRING, | |
43 | .help = "snapshot id" | |
44 | },{ | |
45 | .name = SNAPSHOT_OPT_NAME, | |
46 | .type = QEMU_OPT_STRING, | |
47 | .help = "snapshot name" | |
48 | },{ | |
49 | /* end of list */ | |
50 | } | |
51 | }, | |
52 | }; | |
53 | ||
de08c606 WX |
54 | int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info, |
55 | const char *name) | |
56 | { | |
57 | QEMUSnapshotInfo *sn_tab, *sn; | |
58 | int nb_sns, i, ret; | |
59 | ||
6b573efe EGE |
60 | GLOBAL_STATE_CODE(); |
61 | ||
de08c606 WX |
62 | ret = -ENOENT; |
63 | nb_sns = bdrv_snapshot_list(bs, &sn_tab); | |
64 | if (nb_sns < 0) { | |
65 | return ret; | |
66 | } | |
67 | for (i = 0; i < nb_sns; i++) { | |
68 | sn = &sn_tab[i]; | |
6ca08045 | 69 | if (!strcmp(sn->name, name)) { |
de08c606 WX |
70 | *sn_info = *sn; |
71 | ret = 0; | |
72 | break; | |
73 | } | |
74 | } | |
75 | g_free(sn_tab); | |
76 | return ret; | |
77 | } | |
78 | ||
2ea1dd75 WX |
79 | /** |
80 | * Look up an internal snapshot by @id and @name. | |
81 | * @bs: block device to search | |
82 | * @id: unique snapshot ID, or NULL | |
83 | * @name: snapshot name, or NULL | |
84 | * @sn_info: location to store information on the snapshot found | |
85 | * @errp: location to store error, will be set only for exception | |
86 | * | |
87 | * This function will traverse snapshot list in @bs to search the matching | |
88 | * one, @id and @name are the matching condition: | |
89 | * If both @id and @name are specified, find the first one with id @id and | |
90 | * name @name. | |
91 | * If only @id is specified, find the first one with id @id. | |
92 | * If only @name is specified, find the first one with name @name. | |
93 | * if none is specified, abort(). | |
94 | * | |
95 | * Returns: true when a snapshot is found and @sn_info will be filled, false | |
96 | * when error or not found. If all operation succeed but no matching one is | |
97 | * found, @errp will NOT be set. | |
98 | */ | |
99 | bool bdrv_snapshot_find_by_id_and_name(BlockDriverState *bs, | |
100 | const char *id, | |
101 | const char *name, | |
102 | QEMUSnapshotInfo *sn_info, | |
103 | Error **errp) | |
104 | { | |
105 | QEMUSnapshotInfo *sn_tab, *sn; | |
106 | int nb_sns, i; | |
107 | bool ret = false; | |
108 | ||
109 | assert(id || name); | |
6b573efe | 110 | GLOBAL_STATE_CODE(); |
2ea1dd75 WX |
111 | |
112 | nb_sns = bdrv_snapshot_list(bs, &sn_tab); | |
113 | if (nb_sns < 0) { | |
114 | error_setg_errno(errp, -nb_sns, "Failed to get a snapshot list"); | |
115 | return false; | |
116 | } else if (nb_sns == 0) { | |
117 | return false; | |
118 | } | |
119 | ||
120 | if (id && name) { | |
121 | for (i = 0; i < nb_sns; i++) { | |
122 | sn = &sn_tab[i]; | |
123 | if (!strcmp(sn->id_str, id) && !strcmp(sn->name, name)) { | |
124 | *sn_info = *sn; | |
125 | ret = true; | |
126 | break; | |
127 | } | |
128 | } | |
129 | } else if (id) { | |
130 | for (i = 0; i < nb_sns; i++) { | |
131 | sn = &sn_tab[i]; | |
132 | if (!strcmp(sn->id_str, id)) { | |
133 | *sn_info = *sn; | |
134 | ret = true; | |
135 | break; | |
136 | } | |
137 | } | |
138 | } else if (name) { | |
139 | for (i = 0; i < nb_sns; i++) { | |
140 | sn = &sn_tab[i]; | |
141 | if (!strcmp(sn->name, name)) { | |
142 | *sn_info = *sn; | |
143 | ret = true; | |
144 | break; | |
145 | } | |
146 | } | |
147 | } | |
148 | ||
149 | g_free(sn_tab); | |
150 | return ret; | |
151 | } | |
152 | ||
c8af8757 | 153 | /** |
c5c21741 | 154 | * Return a pointer to child of given BDS to which we can fall |
c8af8757 HR |
155 | * back if the given BDS does not support snapshots. |
156 | * Return NULL if there is no BDS to (safely) fall back to. | |
c8af8757 | 157 | */ |
c5c21741 | 158 | static BdrvChild *bdrv_snapshot_fallback_child(BlockDriverState *bs) |
c8af8757 | 159 | { |
c5c21741 VSO |
160 | BdrvChild *fallback = bdrv_primary_child(bs); |
161 | BdrvChild *child; | |
c8af8757 | 162 | |
0c6100a7 | 163 | /* We allow fallback only to primary child */ |
c5c21741 | 164 | if (!fallback) { |
c8af8757 HR |
165 | return NULL; |
166 | } | |
167 | ||
168 | /* | |
169 | * Check that there are no other children that would need to be | |
170 | * snapshotted. If there are, it is not safe to fall back to | |
c5c21741 | 171 | * fallback. |
c8af8757 HR |
172 | */ |
173 | QLIST_FOREACH(child, &bs->children, next) { | |
174 | if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | | |
175 | BDRV_CHILD_FILTERED) && | |
c5c21741 | 176 | child != fallback) |
c8af8757 HR |
177 | { |
178 | return NULL; | |
179 | } | |
180 | } | |
181 | ||
182 | return fallback; | |
183 | } | |
184 | ||
185 | static BlockDriverState *bdrv_snapshot_fallback(BlockDriverState *bs) | |
186 | { | |
c5c21741 | 187 | return child_bs(bdrv_snapshot_fallback_child(bs)); |
c8af8757 HR |
188 | } |
189 | ||
de08c606 WX |
190 | int bdrv_can_snapshot(BlockDriverState *bs) |
191 | { | |
192 | BlockDriver *drv = bs->drv; | |
6b573efe | 193 | GLOBAL_STATE_CODE(); |
de08c606 WX |
194 | if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { |
195 | return 0; | |
196 | } | |
197 | ||
198 | if (!drv->bdrv_snapshot_create) { | |
c8af8757 HR |
199 | BlockDriverState *fallback_bs = bdrv_snapshot_fallback(bs); |
200 | if (fallback_bs) { | |
201 | return bdrv_can_snapshot(fallback_bs); | |
de08c606 WX |
202 | } |
203 | return 0; | |
204 | } | |
205 | ||
206 | return 1; | |
207 | } | |
208 | ||
209 | int bdrv_snapshot_create(BlockDriverState *bs, | |
210 | QEMUSnapshotInfo *sn_info) | |
211 | { | |
212 | BlockDriver *drv = bs->drv; | |
c8af8757 | 213 | BlockDriverState *fallback_bs = bdrv_snapshot_fallback(bs); |
6b573efe EGE |
214 | |
215 | GLOBAL_STATE_CODE(); | |
216 | ||
de08c606 WX |
217 | if (!drv) { |
218 | return -ENOMEDIUM; | |
219 | } | |
220 | if (drv->bdrv_snapshot_create) { | |
221 | return drv->bdrv_snapshot_create(bs, sn_info); | |
222 | } | |
c8af8757 HR |
223 | if (fallback_bs) { |
224 | return bdrv_snapshot_create(fallback_bs, sn_info); | |
de08c606 WX |
225 | } |
226 | return -ENOTSUP; | |
227 | } | |
228 | ||
229 | int bdrv_snapshot_goto(BlockDriverState *bs, | |
0b62bcbc KW |
230 | const char *snapshot_id, |
231 | Error **errp) | |
de08c606 WX |
232 | { |
233 | BlockDriver *drv = bs->drv; | |
c5c21741 | 234 | BdrvChild *fallback; |
de08c606 WX |
235 | int ret, open_ret; |
236 | ||
6b573efe EGE |
237 | GLOBAL_STATE_CODE(); |
238 | ||
de08c606 | 239 | if (!drv) { |
0b62bcbc | 240 | error_setg(errp, "Block driver is closed"); |
de08c606 WX |
241 | return -ENOMEDIUM; |
242 | } | |
04dec3c3 | 243 | |
70a5afed KW |
244 | if (!QLIST_EMPTY(&bs->dirty_bitmaps)) { |
245 | error_setg(errp, "Device has active dirty bitmaps"); | |
246 | return -EBUSY; | |
04dec3c3 | 247 | } |
04dec3c3 | 248 | |
de08c606 | 249 | if (drv->bdrv_snapshot_goto) { |
0b62bcbc KW |
250 | ret = drv->bdrv_snapshot_goto(bs, snapshot_id); |
251 | if (ret < 0) { | |
252 | error_setg_errno(errp, -ret, "Failed to load snapshot"); | |
253 | } | |
254 | return ret; | |
de08c606 WX |
255 | } |
256 | ||
c5c21741 VSO |
257 | fallback = bdrv_snapshot_fallback_child(bs); |
258 | if (fallback) { | |
c8af8757 | 259 | QDict *options; |
7a9e5119 | 260 | QDict *file_options; |
0b62bcbc | 261 | Error *local_err = NULL; |
c5c21741 VSO |
262 | BlockDriverState *fallback_bs = fallback->bs; |
263 | char *subqdict_prefix = g_strdup_printf("%s.", fallback->name); | |
c8af8757 HR |
264 | |
265 | options = qdict_clone_shallow(bs->options); | |
7a9e5119 | 266 | |
7a9e5119 | 267 | /* Prevent it from getting deleted when detached from bs */ |
c8af8757 | 268 | bdrv_ref(fallback_bs); |
7a9e5119 | 269 | |
c8af8757 | 270 | qdict_extract_subqdict(options, &file_options, subqdict_prefix); |
cb3e7f08 | 271 | qobject_unref(file_options); |
c8af8757 HR |
272 | g_free(subqdict_prefix); |
273 | ||
c5c21741 VSO |
274 | /* Force .bdrv_open() below to re-attach fallback_bs on fallback */ |
275 | qdict_put_str(options, fallback->name, | |
c8af8757 | 276 | bdrv_get_node_name(fallback_bs)); |
7a9e5119 | 277 | |
32a9a245 | 278 | /* Now close bs, apply the snapshot on fallback_bs, and re-open bs */ |
3c005293 VSO |
279 | if (drv->bdrv_close) { |
280 | drv->bdrv_close(bs); | |
281 | } | |
7a9e5119 | 282 | |
32a9a245 | 283 | /* .bdrv_open() will re-attach it */ |
c5c21741 | 284 | bdrv_unref_child(bs, fallback); |
c8af8757 HR |
285 | |
286 | ret = bdrv_snapshot_goto(fallback_bs, snapshot_id, errp); | |
0b62bcbc | 287 | open_ret = drv->bdrv_open(bs, options, bs->open_flags, &local_err); |
cb3e7f08 | 288 | qobject_unref(options); |
de08c606 | 289 | if (open_ret < 0) { |
c8af8757 | 290 | bdrv_unref(fallback_bs); |
de08c606 | 291 | bs->drv = NULL; |
0b62bcbc KW |
292 | /* A bdrv_snapshot_goto() error takes precedence */ |
293 | error_propagate(errp, local_err); | |
294 | return ret < 0 ? ret : open_ret; | |
de08c606 | 295 | } |
7a9e5119 | 296 | |
32a9a245 | 297 | /* |
0c6100a7 VSO |
298 | * fallback was a primary child. It was closed above and set to NULL, |
299 | * but the .bdrv_open() call has opened it again, because we set the | |
300 | * respective option (with the qdict_put_str() call above). | |
301 | * Assert that .bdrv_open() has attached the right BDS as primary child. | |
32a9a245 | 302 | */ |
0c6100a7 | 303 | assert(bdrv_primary_bs(bs) == fallback_bs); |
c8af8757 | 304 | bdrv_unref(fallback_bs); |
de08c606 WX |
305 | return ret; |
306 | } | |
307 | ||
0b62bcbc | 308 | error_setg(errp, "Block driver does not support snapshots"); |
de08c606 WX |
309 | return -ENOTSUP; |
310 | } | |
311 | ||
a89d89d3 WX |
312 | /** |
313 | * Delete an internal snapshot by @snapshot_id and @name. | |
314 | * @bs: block device used in the operation | |
315 | * @snapshot_id: unique snapshot ID, or NULL | |
316 | * @name: snapshot name, or NULL | |
317 | * @errp: location to store error | |
318 | * | |
319 | * If both @snapshot_id and @name are specified, delete the first one with | |
320 | * id @snapshot_id and name @name. | |
321 | * If only @snapshot_id is specified, delete the first one with id | |
322 | * @snapshot_id. | |
323 | * If only @name is specified, delete the first one with name @name. | |
7b4c4781 | 324 | * if none is specified, return -EINVAL. |
a89d89d3 WX |
325 | * |
326 | * Returns: 0 on success, -errno on failure. If @bs is not inserted, return | |
327 | * -ENOMEDIUM. If @snapshot_id and @name are both NULL, return -EINVAL. If @bs | |
328 | * does not support internal snapshot deletion, return -ENOTSUP. If @bs does | |
329 | * not support parameter @snapshot_id or @name, or one of them is not correctly | |
330 | * specified, return -EINVAL. If @bs can't find one matching @id and @name, | |
331 | * return -ENOENT. If @errp != NULL, it will always be filled with error | |
332 | * message on failure. | |
333 | */ | |
334 | int bdrv_snapshot_delete(BlockDriverState *bs, | |
335 | const char *snapshot_id, | |
336 | const char *name, | |
337 | Error **errp) | |
de08c606 WX |
338 | { |
339 | BlockDriver *drv = bs->drv; | |
c8af8757 | 340 | BlockDriverState *fallback_bs = bdrv_snapshot_fallback(bs); |
27a7649a PB |
341 | int ret; |
342 | ||
6b573efe EGE |
343 | GLOBAL_STATE_CODE(); |
344 | ||
de08c606 | 345 | if (!drv) { |
c6bd8c70 | 346 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, bdrv_get_device_name(bs)); |
de08c606 WX |
347 | return -ENOMEDIUM; |
348 | } | |
a89d89d3 WX |
349 | if (!snapshot_id && !name) { |
350 | error_setg(errp, "snapshot_id and name are both NULL"); | |
351 | return -EINVAL; | |
352 | } | |
3432a192 ZH |
353 | |
354 | /* drain all pending i/o before deleting snapshot */ | |
27a7649a | 355 | bdrv_drained_begin(bs); |
3432a192 | 356 | |
de08c606 | 357 | if (drv->bdrv_snapshot_delete) { |
27a7649a | 358 | ret = drv->bdrv_snapshot_delete(bs, snapshot_id, name, errp); |
c8af8757 HR |
359 | } else if (fallback_bs) { |
360 | ret = bdrv_snapshot_delete(fallback_bs, snapshot_id, name, errp); | |
27a7649a PB |
361 | } else { |
362 | error_setg(errp, "Block format '%s' used by device '%s' " | |
363 | "does not support internal snapshot deletion", | |
364 | drv->format_name, bdrv_get_device_name(bs)); | |
365 | ret = -ENOTSUP; | |
de08c606 | 366 | } |
27a7649a PB |
367 | |
368 | bdrv_drained_end(bs); | |
369 | return ret; | |
de08c606 WX |
370 | } |
371 | ||
372 | int bdrv_snapshot_list(BlockDriverState *bs, | |
373 | QEMUSnapshotInfo **psn_info) | |
374 | { | |
375 | BlockDriver *drv = bs->drv; | |
c8af8757 | 376 | BlockDriverState *fallback_bs = bdrv_snapshot_fallback(bs); |
6b573efe EGE |
377 | |
378 | GLOBAL_STATE_CODE(); | |
de08c606 WX |
379 | if (!drv) { |
380 | return -ENOMEDIUM; | |
381 | } | |
382 | if (drv->bdrv_snapshot_list) { | |
383 | return drv->bdrv_snapshot_list(bs, psn_info); | |
384 | } | |
c8af8757 HR |
385 | if (fallback_bs) { |
386 | return bdrv_snapshot_list(fallback_bs, psn_info); | |
de08c606 WX |
387 | } |
388 | return -ENOTSUP; | |
389 | } | |
390 | ||
7b4c4781 WX |
391 | /** |
392 | * Temporarily load an internal snapshot by @snapshot_id and @name. | |
393 | * @bs: block device used in the operation | |
394 | * @snapshot_id: unique snapshot ID, or NULL | |
395 | * @name: snapshot name, or NULL | |
396 | * @errp: location to store error | |
397 | * | |
398 | * If both @snapshot_id and @name are specified, load the first one with | |
399 | * id @snapshot_id and name @name. | |
400 | * If only @snapshot_id is specified, load the first one with id | |
401 | * @snapshot_id. | |
402 | * If only @name is specified, load the first one with name @name. | |
403 | * if none is specified, return -EINVAL. | |
404 | * | |
405 | * Returns: 0 on success, -errno on fail. If @bs is not inserted, return | |
406 | * -ENOMEDIUM. If @bs is not readonly, return -EINVAL. If @bs did not support | |
407 | * internal snapshot, return -ENOTSUP. If qemu can't find a matching @id and | |
408 | * @name, return -ENOENT. If @errp != NULL, it will always be filled on | |
409 | * failure. | |
410 | */ | |
de08c606 | 411 | int bdrv_snapshot_load_tmp(BlockDriverState *bs, |
7b4c4781 WX |
412 | const char *snapshot_id, |
413 | const char *name, | |
414 | Error **errp) | |
de08c606 WX |
415 | { |
416 | BlockDriver *drv = bs->drv; | |
7b4c4781 | 417 | |
6b573efe EGE |
418 | GLOBAL_STATE_CODE(); |
419 | ||
de08c606 | 420 | if (!drv) { |
c6bd8c70 | 421 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, bdrv_get_device_name(bs)); |
de08c606 WX |
422 | return -ENOMEDIUM; |
423 | } | |
7b4c4781 WX |
424 | if (!snapshot_id && !name) { |
425 | error_setg(errp, "snapshot_id and name are both NULL"); | |
426 | return -EINVAL; | |
427 | } | |
307261b2 | 428 | if (!bdrv_is_read_only(bs)) { |
7b4c4781 | 429 | error_setg(errp, "Device is not readonly"); |
de08c606 WX |
430 | return -EINVAL; |
431 | } | |
432 | if (drv->bdrv_snapshot_load_tmp) { | |
7b4c4781 | 433 | return drv->bdrv_snapshot_load_tmp(bs, snapshot_id, name, errp); |
de08c606 | 434 | } |
81e5f78a AG |
435 | error_setg(errp, "Block format '%s' used by device '%s' " |
436 | "does not support temporarily loading internal snapshots", | |
437 | drv->format_name, bdrv_get_device_name(bs)); | |
de08c606 WX |
438 | return -ENOTSUP; |
439 | } | |
7b4c4781 WX |
440 | |
441 | int bdrv_snapshot_load_tmp_by_id_or_name(BlockDriverState *bs, | |
442 | const char *id_or_name, | |
443 | Error **errp) | |
444 | { | |
445 | int ret; | |
446 | Error *local_err = NULL; | |
447 | ||
6b573efe EGE |
448 | GLOBAL_STATE_CODE(); |
449 | ||
7b4c4781 WX |
450 | ret = bdrv_snapshot_load_tmp(bs, id_or_name, NULL, &local_err); |
451 | if (ret == -ENOENT || ret == -EINVAL) { | |
452 | error_free(local_err); | |
453 | local_err = NULL; | |
454 | ret = bdrv_snapshot_load_tmp(bs, NULL, id_or_name, &local_err); | |
455 | } | |
456 | ||
621ff94d | 457 | error_propagate(errp, local_err); |
7b4c4781 WX |
458 | |
459 | return ret; | |
460 | } | |
e9ff957a | 461 | |
cf3a74c9 DB |
462 | |
463 | static int bdrv_all_get_snapshot_devices(bool has_devices, strList *devices, | |
464 | GList **all_bdrvs, | |
465 | Error **errp) | |
466 | { | |
467 | g_autoptr(GList) bdrvs = NULL; | |
468 | ||
469 | if (has_devices) { | |
470 | if (!devices) { | |
471 | error_setg(errp, "At least one device is required for snapshot"); | |
472 | return -1; | |
473 | } | |
474 | ||
475 | while (devices) { | |
476 | BlockDriverState *bs = bdrv_find_node(devices->value); | |
477 | if (!bs) { | |
478 | error_setg(errp, "No block device node '%s'", devices->value); | |
479 | return -1; | |
480 | } | |
481 | bdrvs = g_list_append(bdrvs, bs); | |
482 | devices = devices->next; | |
483 | } | |
484 | } else { | |
485 | BlockDriverState *bs; | |
486 | BdrvNextIterator it; | |
487 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { | |
488 | bdrvs = g_list_append(bdrvs, bs); | |
489 | } | |
490 | } | |
491 | ||
492 | *all_bdrvs = g_steal_pointer(&bdrvs); | |
493 | return 0; | |
494 | } | |
495 | ||
496 | ||
05f4aced KW |
497 | static bool bdrv_all_snapshots_includes_bs(BlockDriverState *bs) |
498 | { | |
499 | if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { | |
500 | return false; | |
501 | } | |
502 | ||
503 | /* Include all nodes that are either in use by a BlockBackend, or that | |
504 | * aren't attached to any node, but owned by the monitor. */ | |
505 | return bdrv_has_blk(bs) || QLIST_EMPTY(&bs->parents); | |
506 | } | |
e9ff957a DL |
507 | |
508 | /* Group operations. All block drivers are involved. | |
509 | * These functions will properly handle dataplane (take aio_context_acquire | |
510 | * when appropriate for appropriate block drivers) */ | |
511 | ||
cf3a74c9 DB |
512 | bool bdrv_all_can_snapshot(bool has_devices, strList *devices, |
513 | Error **errp) | |
e9ff957a | 514 | { |
cf3a74c9 DB |
515 | g_autoptr(GList) bdrvs = NULL; |
516 | GList *iterbdrvs; | |
e9ff957a | 517 | |
6b573efe EGE |
518 | GLOBAL_STATE_CODE(); |
519 | ||
cf3a74c9 DB |
520 | if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) { |
521 | return false; | |
522 | } | |
523 | ||
524 | iterbdrvs = bdrvs; | |
525 | while (iterbdrvs) { | |
526 | BlockDriverState *bs = iterbdrvs->data; | |
e9ff957a | 527 | AioContext *ctx = bdrv_get_aio_context(bs); |
e26f98e2 | 528 | bool ok = true; |
e9ff957a DL |
529 | |
530 | aio_context_acquire(ctx); | |
cf3a74c9 | 531 | if (devices || bdrv_all_snapshots_includes_bs(bs)) { |
e9ff957a DL |
532 | ok = bdrv_can_snapshot(bs); |
533 | } | |
534 | aio_context_release(ctx); | |
88be7b4b | 535 | if (!ok) { |
e26f98e2 DB |
536 | error_setg(errp, "Device '%s' is writable but does not support " |
537 | "snapshots", bdrv_get_device_or_node_name(bs)); | |
e26f98e2 | 538 | return false; |
88be7b4b | 539 | } |
cf3a74c9 DB |
540 | |
541 | iterbdrvs = iterbdrvs->next; | |
e9ff957a DL |
542 | } |
543 | ||
e26f98e2 | 544 | return true; |
e9ff957a | 545 | } |
9b00ea37 | 546 | |
cf3a74c9 DB |
547 | int bdrv_all_delete_snapshot(const char *name, |
548 | bool has_devices, strList *devices, | |
549 | Error **errp) | |
9b00ea37 | 550 | { |
cf3a74c9 DB |
551 | g_autoptr(GList) bdrvs = NULL; |
552 | GList *iterbdrvs; | |
553 | ||
6b573efe EGE |
554 | GLOBAL_STATE_CODE(); |
555 | ||
cf3a74c9 DB |
556 | if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) { |
557 | return -1; | |
558 | } | |
9b00ea37 | 559 | |
cf3a74c9 DB |
560 | iterbdrvs = bdrvs; |
561 | while (iterbdrvs) { | |
562 | BlockDriverState *bs = iterbdrvs->data; | |
9b00ea37 | 563 | AioContext *ctx = bdrv_get_aio_context(bs); |
cf3a74c9 | 564 | QEMUSnapshotInfo sn1, *snapshot = &sn1; |
e26f98e2 | 565 | int ret = 0; |
9b00ea37 DL |
566 | |
567 | aio_context_acquire(ctx); | |
cf3a74c9 | 568 | if ((devices || bdrv_all_snapshots_includes_bs(bs)) && |
05f4aced KW |
569 | bdrv_snapshot_find(bs, snapshot, name) >= 0) |
570 | { | |
6ca08045 | 571 | ret = bdrv_snapshot_delete(bs, snapshot->id_str, |
e53a578a | 572 | snapshot->name, errp); |
9b00ea37 DL |
573 | } |
574 | aio_context_release(ctx); | |
88be7b4b | 575 | if (ret < 0) { |
e26f98e2 DB |
576 | error_prepend(errp, "Could not delete snapshot '%s' on '%s': ", |
577 | name, bdrv_get_device_or_node_name(bs)); | |
e26f98e2 | 578 | return -1; |
88be7b4b | 579 | } |
cf3a74c9 DB |
580 | |
581 | iterbdrvs = iterbdrvs->next; | |
9b00ea37 DL |
582 | } |
583 | ||
e26f98e2 | 584 | return 0; |
9b00ea37 | 585 | } |
4c1cdbaa DL |
586 | |
587 | ||
cf3a74c9 DB |
588 | int bdrv_all_goto_snapshot(const char *name, |
589 | bool has_devices, strList *devices, | |
590 | Error **errp) | |
4c1cdbaa | 591 | { |
cf3a74c9 DB |
592 | g_autoptr(GList) bdrvs = NULL; |
593 | GList *iterbdrvs; | |
4c1cdbaa | 594 | |
6b573efe EGE |
595 | GLOBAL_STATE_CODE(); |
596 | ||
cf3a74c9 DB |
597 | if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) { |
598 | return -1; | |
599 | } | |
600 | ||
601 | iterbdrvs = bdrvs; | |
602 | while (iterbdrvs) { | |
603 | BlockDriverState *bs = iterbdrvs->data; | |
4c1cdbaa | 604 | AioContext *ctx = bdrv_get_aio_context(bs); |
e26f98e2 | 605 | int ret = 0; |
4c1cdbaa DL |
606 | |
607 | aio_context_acquire(ctx); | |
cf3a74c9 | 608 | if (devices || bdrv_all_snapshots_includes_bs(bs)) { |
2b624fe0 | 609 | ret = bdrv_snapshot_goto(bs, name, errp); |
4c1cdbaa DL |
610 | } |
611 | aio_context_release(ctx); | |
2b624fe0 | 612 | if (ret < 0) { |
e26f98e2 DB |
613 | error_prepend(errp, "Could not load snapshot '%s' on '%s': ", |
614 | name, bdrv_get_device_or_node_name(bs)); | |
e26f98e2 | 615 | return -1; |
88be7b4b | 616 | } |
cf3a74c9 DB |
617 | |
618 | iterbdrvs = iterbdrvs->next; | |
4c1cdbaa DL |
619 | } |
620 | ||
e26f98e2 | 621 | return 0; |
4c1cdbaa | 622 | } |
723ccda1 | 623 | |
3d3e9b1f DB |
624 | int bdrv_all_has_snapshot(const char *name, |
625 | bool has_devices, strList *devices, | |
626 | Error **errp) | |
723ccda1 | 627 | { |
cf3a74c9 DB |
628 | g_autoptr(GList) bdrvs = NULL; |
629 | GList *iterbdrvs; | |
630 | ||
6b573efe EGE |
631 | GLOBAL_STATE_CODE(); |
632 | ||
cf3a74c9 DB |
633 | if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) { |
634 | return -1; | |
635 | } | |
723ccda1 | 636 | |
cf3a74c9 DB |
637 | iterbdrvs = bdrvs; |
638 | while (iterbdrvs) { | |
639 | BlockDriverState *bs = iterbdrvs->data; | |
723ccda1 | 640 | AioContext *ctx = bdrv_get_aio_context(bs); |
cf3a74c9 | 641 | QEMUSnapshotInfo sn; |
e26f98e2 | 642 | int ret = 0; |
723ccda1 DL |
643 | |
644 | aio_context_acquire(ctx); | |
cf3a74c9 | 645 | if (devices || bdrv_all_snapshots_includes_bs(bs)) { |
e26f98e2 | 646 | ret = bdrv_snapshot_find(bs, &sn, name); |
723ccda1 DL |
647 | } |
648 | aio_context_release(ctx); | |
e26f98e2 | 649 | if (ret < 0) { |
3d3e9b1f DB |
650 | if (ret == -ENOENT) { |
651 | return 0; | |
652 | } else { | |
653 | error_setg_errno(errp, errno, | |
654 | "Could not check snapshot '%s' on '%s'", | |
655 | name, bdrv_get_device_or_node_name(bs)); | |
656 | return -1; | |
657 | } | |
88be7b4b | 658 | } |
cf3a74c9 DB |
659 | |
660 | iterbdrvs = iterbdrvs->next; | |
723ccda1 DL |
661 | } |
662 | ||
3d3e9b1f | 663 | return 1; |
723ccda1 | 664 | } |
a9085f9b DL |
665 | |
666 | int bdrv_all_create_snapshot(QEMUSnapshotInfo *sn, | |
667 | BlockDriverState *vm_state_bs, | |
668 | uint64_t vm_state_size, | |
cf3a74c9 | 669 | bool has_devices, strList *devices, |
e26f98e2 | 670 | Error **errp) |
a9085f9b | 671 | { |
cf3a74c9 DB |
672 | g_autoptr(GList) bdrvs = NULL; |
673 | GList *iterbdrvs; | |
6b573efe | 674 | GLOBAL_STATE_CODE(); |
cf3a74c9 DB |
675 | |
676 | if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) { | |
677 | return -1; | |
678 | } | |
a9085f9b | 679 | |
cf3a74c9 DB |
680 | iterbdrvs = bdrvs; |
681 | while (iterbdrvs) { | |
682 | BlockDriverState *bs = iterbdrvs->data; | |
a9085f9b | 683 | AioContext *ctx = bdrv_get_aio_context(bs); |
e26f98e2 | 684 | int ret = 0; |
a9085f9b DL |
685 | |
686 | aio_context_acquire(ctx); | |
687 | if (bs == vm_state_bs) { | |
688 | sn->vm_state_size = vm_state_size; | |
e26f98e2 | 689 | ret = bdrv_snapshot_create(bs, sn); |
cf3a74c9 | 690 | } else if (devices || bdrv_all_snapshots_includes_bs(bs)) { |
a9085f9b | 691 | sn->vm_state_size = 0; |
e26f98e2 | 692 | ret = bdrv_snapshot_create(bs, sn); |
a9085f9b DL |
693 | } |
694 | aio_context_release(ctx); | |
e26f98e2 DB |
695 | if (ret < 0) { |
696 | error_setg(errp, "Could not create snapshot '%s' on '%s'", | |
697 | sn->name, bdrv_get_device_or_node_name(bs)); | |
e26f98e2 | 698 | return -1; |
88be7b4b | 699 | } |
cf3a74c9 DB |
700 | |
701 | iterbdrvs = iterbdrvs->next; | |
a9085f9b DL |
702 | } |
703 | ||
e26f98e2 | 704 | return 0; |
a9085f9b | 705 | } |
7cb14481 | 706 | |
c22d644c DB |
707 | |
708 | BlockDriverState *bdrv_all_find_vmstate_bs(const char *vmstate_bs, | |
709 | bool has_devices, strList *devices, | |
cf3a74c9 | 710 | Error **errp) |
7cb14481 | 711 | { |
cf3a74c9 DB |
712 | g_autoptr(GList) bdrvs = NULL; |
713 | GList *iterbdrvs; | |
7cb14481 | 714 | |
6b573efe EGE |
715 | GLOBAL_STATE_CODE(); |
716 | ||
cf3a74c9 DB |
717 | if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) { |
718 | return NULL; | |
719 | } | |
720 | ||
721 | iterbdrvs = bdrvs; | |
722 | while (iterbdrvs) { | |
723 | BlockDriverState *bs = iterbdrvs->data; | |
7cb14481 | 724 | AioContext *ctx = bdrv_get_aio_context(bs); |
cf3a74c9 | 725 | bool found = false; |
7cb14481 DL |
726 | |
727 | aio_context_acquire(ctx); | |
cf3a74c9 DB |
728 | found = (devices || bdrv_all_snapshots_includes_bs(bs)) && |
729 | bdrv_can_snapshot(bs); | |
7cb14481 | 730 | aio_context_release(ctx); |
88be7b4b | 731 | |
c22d644c DB |
732 | if (vmstate_bs) { |
733 | if (g_str_equal(vmstate_bs, | |
734 | bdrv_get_node_name(bs))) { | |
735 | if (found) { | |
736 | return bs; | |
737 | } else { | |
738 | error_setg(errp, | |
739 | "vmstate block device '%s' does not support snapshots", | |
740 | vmstate_bs); | |
741 | return NULL; | |
742 | } | |
743 | } | |
744 | } else if (found) { | |
cf3a74c9 | 745 | return bs; |
88be7b4b | 746 | } |
cf3a74c9 DB |
747 | |
748 | iterbdrvs = iterbdrvs->next; | |
7cb14481 | 749 | } |
cf3a74c9 | 750 | |
c22d644c DB |
751 | if (vmstate_bs) { |
752 | error_setg(errp, | |
753 | "vmstate block device '%s' does not exist", vmstate_bs); | |
754 | } else { | |
755 | error_setg(errp, | |
756 | "no block device can store vmstate for snapshot"); | |
757 | } | |
cf3a74c9 | 758 | return NULL; |
7cb14481 | 759 | } |