2 * Block layer snapshot related functions
4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #include "qemu/osdep.h"
26 #include "block/snapshot.h"
27 #include "block/block_int.h"
28 #include "qapi/error.h"
29 #include "qapi/qmp/qerror.h"
30 #include "qapi/qmp/qstring.h"
32 QemuOptsList internal_snapshot_opts = {
34 .head = QTAILQ_HEAD_INITIALIZER(internal_snapshot_opts.head),
37 .name = SNAPSHOT_OPT_ID,
38 .type = QEMU_OPT_STRING,
41 .name = SNAPSHOT_OPT_NAME,
42 .type = QEMU_OPT_STRING,
43 .help = "snapshot name"
50 int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
53 QEMUSnapshotInfo *sn_tab, *sn;
57 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
61 for (i = 0; i < nb_sns; i++) {
63 if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
74 * Look up an internal snapshot by @id and @name.
75 * @bs: block device to search
76 * @id: unique snapshot ID, or NULL
77 * @name: snapshot name, or NULL
78 * @sn_info: location to store information on the snapshot found
79 * @errp: location to store error, will be set only for exception
81 * This function will traverse snapshot list in @bs to search the matching
82 * one, @id and @name are the matching condition:
83 * If both @id and @name are specified, find the first one with id @id and
85 * If only @id is specified, find the first one with id @id.
86 * If only @name is specified, find the first one with name @name.
87 * if none is specified, abort().
89 * Returns: true when a snapshot is found and @sn_info will be filled, false
90 * when error or not found. If all operation succeed but no matching one is
91 * found, @errp will NOT be set.
93 bool bdrv_snapshot_find_by_id_and_name(BlockDriverState *bs,
96 QEMUSnapshotInfo *sn_info,
99 QEMUSnapshotInfo *sn_tab, *sn;
105 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
107 error_setg_errno(errp, -nb_sns, "Failed to get a snapshot list");
109 } else if (nb_sns == 0) {
114 for (i = 0; i < nb_sns; i++) {
116 if (!strcmp(sn->id_str, id) && !strcmp(sn->name, name)) {
123 for (i = 0; i < nb_sns; i++) {
125 if (!strcmp(sn->id_str, id)) {
132 for (i = 0; i < nb_sns; i++) {
134 if (!strcmp(sn->name, name)) {
146 int bdrv_can_snapshot(BlockDriverState *bs)
148 BlockDriver *drv = bs->drv;
149 if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
153 if (!drv->bdrv_snapshot_create) {
154 if (bs->file != NULL) {
155 return bdrv_can_snapshot(bs->file->bs);
163 int bdrv_snapshot_create(BlockDriverState *bs,
164 QEMUSnapshotInfo *sn_info)
166 BlockDriver *drv = bs->drv;
170 if (drv->bdrv_snapshot_create) {
171 return drv->bdrv_snapshot_create(bs, sn_info);
174 return bdrv_snapshot_create(bs->file->bs, sn_info);
179 int bdrv_snapshot_goto(BlockDriverState *bs,
180 const char *snapshot_id)
182 BlockDriver *drv = bs->drv;
188 if (drv->bdrv_snapshot_goto) {
189 return drv->bdrv_snapshot_goto(bs, snapshot_id);
193 BlockDriverState *file;
194 QDict *options = qdict_clone_shallow(bs->options);
198 /* Prevent it from getting deleted when detached from bs */
201 qdict_extract_subqdict(options, &file_options, "file.");
202 QDECREF(file_options);
203 qdict_put_str(options, "file", bdrv_get_node_name(file));
206 bdrv_unref_child(bs, bs->file);
209 ret = bdrv_snapshot_goto(file, snapshot_id);
210 open_ret = drv->bdrv_open(bs, options, bs->open_flags, NULL);
218 assert(bs->file->bs == file);
227 * Delete an internal snapshot by @snapshot_id and @name.
228 * @bs: block device used in the operation
229 * @snapshot_id: unique snapshot ID, or NULL
230 * @name: snapshot name, or NULL
231 * @errp: location to store error
233 * If both @snapshot_id and @name are specified, delete the first one with
234 * id @snapshot_id and name @name.
235 * If only @snapshot_id is specified, delete the first one with id
237 * If only @name is specified, delete the first one with name @name.
238 * if none is specified, return -EINVAL.
240 * Returns: 0 on success, -errno on failure. If @bs is not inserted, return
241 * -ENOMEDIUM. If @snapshot_id and @name are both NULL, return -EINVAL. If @bs
242 * does not support internal snapshot deletion, return -ENOTSUP. If @bs does
243 * not support parameter @snapshot_id or @name, or one of them is not correctly
244 * specified, return -EINVAL. If @bs can't find one matching @id and @name,
245 * return -ENOENT. If @errp != NULL, it will always be filled with error
246 * message on failure.
248 int bdrv_snapshot_delete(BlockDriverState *bs,
249 const char *snapshot_id,
253 BlockDriver *drv = bs->drv;
257 error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, bdrv_get_device_name(bs));
260 if (!snapshot_id && !name) {
261 error_setg(errp, "snapshot_id and name are both NULL");
265 /* drain all pending i/o before deleting snapshot */
266 bdrv_drained_begin(bs);
268 if (drv->bdrv_snapshot_delete) {
269 ret = drv->bdrv_snapshot_delete(bs, snapshot_id, name, errp);
270 } else if (bs->file) {
271 ret = bdrv_snapshot_delete(bs->file->bs, snapshot_id, name, errp);
273 error_setg(errp, "Block format '%s' used by device '%s' "
274 "does not support internal snapshot deletion",
275 drv->format_name, bdrv_get_device_name(bs));
279 bdrv_drained_end(bs);
283 int bdrv_snapshot_delete_by_id_or_name(BlockDriverState *bs,
284 const char *id_or_name,
288 Error *local_err = NULL;
290 ret = bdrv_snapshot_delete(bs, id_or_name, NULL, &local_err);
291 if (ret == -ENOENT || ret == -EINVAL) {
292 error_free(local_err);
294 ret = bdrv_snapshot_delete(bs, NULL, id_or_name, &local_err);
298 error_propagate(errp, local_err);
303 int bdrv_snapshot_list(BlockDriverState *bs,
304 QEMUSnapshotInfo **psn_info)
306 BlockDriver *drv = bs->drv;
310 if (drv->bdrv_snapshot_list) {
311 return drv->bdrv_snapshot_list(bs, psn_info);
314 return bdrv_snapshot_list(bs->file->bs, psn_info);
320 * Temporarily load an internal snapshot by @snapshot_id and @name.
321 * @bs: block device used in the operation
322 * @snapshot_id: unique snapshot ID, or NULL
323 * @name: snapshot name, or NULL
324 * @errp: location to store error
326 * If both @snapshot_id and @name are specified, load the first one with
327 * id @snapshot_id and name @name.
328 * If only @snapshot_id is specified, load the first one with id
330 * If only @name is specified, load the first one with name @name.
331 * if none is specified, return -EINVAL.
333 * Returns: 0 on success, -errno on fail. If @bs is not inserted, return
334 * -ENOMEDIUM. If @bs is not readonly, return -EINVAL. If @bs did not support
335 * internal snapshot, return -ENOTSUP. If qemu can't find a matching @id and
336 * @name, return -ENOENT. If @errp != NULL, it will always be filled on
339 int bdrv_snapshot_load_tmp(BlockDriverState *bs,
340 const char *snapshot_id,
344 BlockDriver *drv = bs->drv;
347 error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, bdrv_get_device_name(bs));
350 if (!snapshot_id && !name) {
351 error_setg(errp, "snapshot_id and name are both NULL");
354 if (!bs->read_only) {
355 error_setg(errp, "Device is not readonly");
358 if (drv->bdrv_snapshot_load_tmp) {
359 return drv->bdrv_snapshot_load_tmp(bs, snapshot_id, name, errp);
361 error_setg(errp, "Block format '%s' used by device '%s' "
362 "does not support temporarily loading internal snapshots",
363 drv->format_name, bdrv_get_device_name(bs));
367 int bdrv_snapshot_load_tmp_by_id_or_name(BlockDriverState *bs,
368 const char *id_or_name,
372 Error *local_err = NULL;
374 ret = bdrv_snapshot_load_tmp(bs, id_or_name, NULL, &local_err);
375 if (ret == -ENOENT || ret == -EINVAL) {
376 error_free(local_err);
378 ret = bdrv_snapshot_load_tmp(bs, NULL, id_or_name, &local_err);
381 error_propagate(errp, local_err);
387 /* Group operations. All block drivers are involved.
388 * These functions will properly handle dataplane (take aio_context_acquire
389 * when appropriate for appropriate block drivers) */
391 bool bdrv_all_can_snapshot(BlockDriverState **first_bad_bs)
394 BlockDriverState *bs;
397 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
398 AioContext *ctx = bdrv_get_aio_context(bs);
400 aio_context_acquire(ctx);
401 if (bdrv_is_inserted(bs) && !bdrv_is_read_only(bs)) {
402 ok = bdrv_can_snapshot(bs);
404 aio_context_release(ctx);
415 int bdrv_all_delete_snapshot(const char *name, BlockDriverState **first_bad_bs,
419 BlockDriverState *bs;
421 QEMUSnapshotInfo sn1, *snapshot = &sn1;
423 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
424 AioContext *ctx = bdrv_get_aio_context(bs);
426 aio_context_acquire(ctx);
427 if (bdrv_can_snapshot(bs) &&
428 bdrv_snapshot_find(bs, snapshot, name) >= 0) {
429 ret = bdrv_snapshot_delete_by_id_or_name(bs, name, err);
431 aio_context_release(ctx);
443 int bdrv_all_goto_snapshot(const char *name, BlockDriverState **first_bad_bs)
446 BlockDriverState *bs;
449 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
450 AioContext *ctx = bdrv_get_aio_context(bs);
452 aio_context_acquire(ctx);
453 if (bdrv_can_snapshot(bs)) {
454 err = bdrv_snapshot_goto(bs, name);
456 aio_context_release(ctx);
467 int bdrv_all_find_snapshot(const char *name, BlockDriverState **first_bad_bs)
471 BlockDriverState *bs;
474 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
475 AioContext *ctx = bdrv_get_aio_context(bs);
477 aio_context_acquire(ctx);
478 if (bdrv_can_snapshot(bs)) {
479 err = bdrv_snapshot_find(bs, &sn, name);
481 aio_context_release(ctx);
492 int bdrv_all_create_snapshot(QEMUSnapshotInfo *sn,
493 BlockDriverState *vm_state_bs,
494 uint64_t vm_state_size,
495 BlockDriverState **first_bad_bs)
498 BlockDriverState *bs;
501 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
502 AioContext *ctx = bdrv_get_aio_context(bs);
504 aio_context_acquire(ctx);
505 if (bs == vm_state_bs) {
506 sn->vm_state_size = vm_state_size;
507 err = bdrv_snapshot_create(bs, sn);
508 } else if (bdrv_can_snapshot(bs)) {
509 sn->vm_state_size = 0;
510 err = bdrv_snapshot_create(bs, sn);
512 aio_context_release(ctx);
523 BlockDriverState *bdrv_all_find_vmstate_bs(void)
525 BlockDriverState *bs;
528 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
529 AioContext *ctx = bdrv_get_aio_context(bs);
532 aio_context_acquire(ctx);
533 found = bdrv_can_snapshot(bs);
534 aio_context_release(ctx);