2 * Block driver for the QCOW version 2 format
4 * Copyright (c) 2004-2006 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-common.h"
26 #include "block/block_int.h"
27 #include "block/qcow2.h"
29 typedef struct QEMU_PACKED QCowSnapshotHeader
{
30 /* header is 8 byte aligned */
31 uint64_t l1_table_offset
;
40 uint64_t vm_clock_nsec
;
42 uint32_t vm_state_size
;
43 uint32_t extra_data_size
; /* for extension */
44 /* extra data follows */
49 typedef struct QEMU_PACKED QCowSnapshotExtraData
{
50 uint64_t vm_state_size_large
;
52 } QCowSnapshotExtraData
;
54 void qcow2_free_snapshots(BlockDriverState
*bs
)
56 BDRVQcowState
*s
= bs
->opaque
;
59 for(i
= 0; i
< s
->nb_snapshots
; i
++) {
60 g_free(s
->snapshots
[i
].name
);
61 g_free(s
->snapshots
[i
].id_str
);
68 int qcow2_read_snapshots(BlockDriverState
*bs
)
70 BDRVQcowState
*s
= bs
->opaque
;
72 QCowSnapshotExtraData extra
;
74 int i
, id_str_size
, name_size
;
76 uint32_t extra_data_size
;
79 if (!s
->nb_snapshots
) {
81 s
->snapshots_size
= 0;
85 offset
= s
->snapshots_offset
;
86 s
->snapshots
= g_malloc0(s
->nb_snapshots
* sizeof(QCowSnapshot
));
88 for(i
= 0; i
< s
->nb_snapshots
; i
++) {
89 /* Read statically sized part of the snapshot header */
90 offset
= align_offset(offset
, 8);
91 ret
= bdrv_pread(bs
->file
, offset
, &h
, sizeof(h
));
97 sn
= s
->snapshots
+ i
;
98 sn
->l1_table_offset
= be64_to_cpu(h
.l1_table_offset
);
99 sn
->l1_size
= be32_to_cpu(h
.l1_size
);
100 sn
->vm_state_size
= be32_to_cpu(h
.vm_state_size
);
101 sn
->date_sec
= be32_to_cpu(h
.date_sec
);
102 sn
->date_nsec
= be32_to_cpu(h
.date_nsec
);
103 sn
->vm_clock_nsec
= be64_to_cpu(h
.vm_clock_nsec
);
104 extra_data_size
= be32_to_cpu(h
.extra_data_size
);
106 id_str_size
= be16_to_cpu(h
.id_str_size
);
107 name_size
= be16_to_cpu(h
.name_size
);
109 /* Read extra data */
110 ret
= bdrv_pread(bs
->file
, offset
, &extra
,
111 MIN(sizeof(extra
), extra_data_size
));
115 offset
+= extra_data_size
;
117 if (extra_data_size
>= 8) {
118 sn
->vm_state_size
= be64_to_cpu(extra
.vm_state_size_large
);
121 if (extra_data_size
>= 16) {
122 sn
->disk_size
= be64_to_cpu(extra
.disk_size
);
124 sn
->disk_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
127 /* Read snapshot ID */
128 sn
->id_str
= g_malloc(id_str_size
+ 1);
129 ret
= bdrv_pread(bs
->file
, offset
, sn
->id_str
, id_str_size
);
133 offset
+= id_str_size
;
134 sn
->id_str
[id_str_size
] = '\0';
136 /* Read snapshot name */
137 sn
->name
= g_malloc(name_size
+ 1);
138 ret
= bdrv_pread(bs
->file
, offset
, sn
->name
, name_size
);
143 sn
->name
[name_size
] = '\0';
146 s
->snapshots_size
= offset
- s
->snapshots_offset
;
150 qcow2_free_snapshots(bs
);
154 /* add at the end of the file a new list of snapshots */
155 static int qcow2_write_snapshots(BlockDriverState
*bs
)
157 BDRVQcowState
*s
= bs
->opaque
;
159 QCowSnapshotHeader h
;
160 QCowSnapshotExtraData extra
;
161 int i
, name_size
, id_str_size
, snapshots_size
;
163 uint32_t nb_snapshots
;
164 uint64_t snapshots_offset
;
165 } QEMU_PACKED header_data
;
166 int64_t offset
, snapshots_offset
;
169 /* compute the size of the snapshots */
171 for(i
= 0; i
< s
->nb_snapshots
; i
++) {
172 sn
= s
->snapshots
+ i
;
173 offset
= align_offset(offset
, 8);
175 offset
+= sizeof(extra
);
176 offset
+= strlen(sn
->id_str
);
177 offset
+= strlen(sn
->name
);
179 snapshots_size
= offset
;
181 /* Allocate space for the new snapshot list */
182 snapshots_offset
= qcow2_alloc_clusters(bs
, snapshots_size
);
183 offset
= snapshots_offset
;
188 ret
= bdrv_flush(bs
);
193 /* The snapshot list position has not yet been updated, so these clusters
194 * must indeed be completely free */
195 ret
= qcow2_pre_write_overlap_check(bs
, 0, offset
, snapshots_size
);
201 /* Write all snapshots to the new list */
202 for(i
= 0; i
< s
->nb_snapshots
; i
++) {
203 sn
= s
->snapshots
+ i
;
204 memset(&h
, 0, sizeof(h
));
205 h
.l1_table_offset
= cpu_to_be64(sn
->l1_table_offset
);
206 h
.l1_size
= cpu_to_be32(sn
->l1_size
);
207 /* If it doesn't fit in 32 bit, older implementations should treat it
208 * as a disk-only snapshot rather than truncate the VM state */
209 if (sn
->vm_state_size
<= 0xffffffff) {
210 h
.vm_state_size
= cpu_to_be32(sn
->vm_state_size
);
212 h
.date_sec
= cpu_to_be32(sn
->date_sec
);
213 h
.date_nsec
= cpu_to_be32(sn
->date_nsec
);
214 h
.vm_clock_nsec
= cpu_to_be64(sn
->vm_clock_nsec
);
215 h
.extra_data_size
= cpu_to_be32(sizeof(extra
));
217 memset(&extra
, 0, sizeof(extra
));
218 extra
.vm_state_size_large
= cpu_to_be64(sn
->vm_state_size
);
219 extra
.disk_size
= cpu_to_be64(sn
->disk_size
);
221 id_str_size
= strlen(sn
->id_str
);
222 name_size
= strlen(sn
->name
);
223 assert(id_str_size
<= UINT16_MAX
&& name_size
<= UINT16_MAX
);
224 h
.id_str_size
= cpu_to_be16(id_str_size
);
225 h
.name_size
= cpu_to_be16(name_size
);
226 offset
= align_offset(offset
, 8);
228 ret
= bdrv_pwrite(bs
->file
, offset
, &h
, sizeof(h
));
234 ret
= bdrv_pwrite(bs
->file
, offset
, &extra
, sizeof(extra
));
238 offset
+= sizeof(extra
);
240 ret
= bdrv_pwrite(bs
->file
, offset
, sn
->id_str
, id_str_size
);
244 offset
+= id_str_size
;
246 ret
= bdrv_pwrite(bs
->file
, offset
, sn
->name
, name_size
);
254 * Update the header to point to the new snapshot table. This requires the
255 * new table and its refcounts to be stable on disk.
257 ret
= bdrv_flush(bs
);
262 QEMU_BUILD_BUG_ON(offsetof(QCowHeader
, snapshots_offset
) !=
263 offsetof(QCowHeader
, nb_snapshots
) + sizeof(header_data
.nb_snapshots
));
265 header_data
.nb_snapshots
= cpu_to_be32(s
->nb_snapshots
);
266 header_data
.snapshots_offset
= cpu_to_be64(snapshots_offset
);
268 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, nb_snapshots
),
269 &header_data
, sizeof(header_data
));
274 /* free the old snapshot table */
275 qcow2_free_clusters(bs
, s
->snapshots_offset
, s
->snapshots_size
,
276 QCOW2_DISCARD_SNAPSHOT
);
277 s
->snapshots_offset
= snapshots_offset
;
278 s
->snapshots_size
= snapshots_size
;
282 if (snapshots_offset
> 0) {
283 qcow2_free_clusters(bs
, snapshots_offset
, snapshots_size
,
284 QCOW2_DISCARD_ALWAYS
);
289 static void find_new_snapshot_id(BlockDriverState
*bs
,
290 char *id_str
, int id_str_size
)
292 BDRVQcowState
*s
= bs
->opaque
;
295 unsigned long id
, id_max
= 0;
297 for(i
= 0; i
< s
->nb_snapshots
; i
++) {
298 sn
= s
->snapshots
+ i
;
299 id
= strtoul(sn
->id_str
, NULL
, 10);
303 snprintf(id_str
, id_str_size
, "%lu", id_max
+ 1);
306 static int find_snapshot_by_id_and_name(BlockDriverState
*bs
,
310 BDRVQcowState
*s
= bs
->opaque
;
314 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
315 if (!strcmp(s
->snapshots
[i
].id_str
, id
) &&
316 !strcmp(s
->snapshots
[i
].name
, name
)) {
321 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
322 if (!strcmp(s
->snapshots
[i
].id_str
, id
)) {
327 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
328 if (!strcmp(s
->snapshots
[i
].name
, name
)) {
337 static int find_snapshot_by_id_or_name(BlockDriverState
*bs
,
338 const char *id_or_name
)
342 ret
= find_snapshot_by_id_and_name(bs
, id_or_name
, NULL
);
346 return find_snapshot_by_id_and_name(bs
, NULL
, id_or_name
);
349 /* if no id is provided, a new one is constructed */
350 int qcow2_snapshot_create(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
)
352 BDRVQcowState
*s
= bs
->opaque
;
353 QCowSnapshot
*new_snapshot_list
= NULL
;
354 QCowSnapshot
*old_snapshot_list
= NULL
;
355 QCowSnapshot sn1
, *sn
= &sn1
;
357 uint64_t *l1_table
= NULL
;
358 int64_t l1_table_offset
;
360 memset(sn
, 0, sizeof(*sn
));
362 /* Generate an ID if it wasn't passed */
363 if (sn_info
->id_str
[0] == '\0') {
364 find_new_snapshot_id(bs
, sn_info
->id_str
, sizeof(sn_info
->id_str
));
367 /* Check that the ID is unique */
368 if (find_snapshot_by_id_and_name(bs
, sn_info
->id_str
, NULL
) >= 0) {
372 /* Populate sn with passed data */
373 sn
->id_str
= g_strdup(sn_info
->id_str
);
374 sn
->name
= g_strdup(sn_info
->name
);
376 sn
->disk_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
377 sn
->vm_state_size
= sn_info
->vm_state_size
;
378 sn
->date_sec
= sn_info
->date_sec
;
379 sn
->date_nsec
= sn_info
->date_nsec
;
380 sn
->vm_clock_nsec
= sn_info
->vm_clock_nsec
;
382 /* Allocate the L1 table of the snapshot and copy the current one there. */
383 l1_table_offset
= qcow2_alloc_clusters(bs
, s
->l1_size
* sizeof(uint64_t));
384 if (l1_table_offset
< 0) {
385 ret
= l1_table_offset
;
389 sn
->l1_table_offset
= l1_table_offset
;
390 sn
->l1_size
= s
->l1_size
;
392 l1_table
= g_malloc(s
->l1_size
* sizeof(uint64_t));
393 for(i
= 0; i
< s
->l1_size
; i
++) {
394 l1_table
[i
] = cpu_to_be64(s
->l1_table
[i
]);
397 ret
= qcow2_pre_write_overlap_check(bs
, 0, sn
->l1_table_offset
,
398 s
->l1_size
* sizeof(uint64_t));
403 ret
= bdrv_pwrite(bs
->file
, sn
->l1_table_offset
, l1_table
,
404 s
->l1_size
* sizeof(uint64_t));
413 * Increase the refcounts of all clusters and make sure everything is
414 * stable on disk before updating the snapshot table to contain a pointer
415 * to the new L1 table.
417 ret
= qcow2_update_snapshot_refcount(bs
, s
->l1_table_offset
, s
->l1_size
, 1);
422 /* Append the new snapshot to the snapshot list */
423 new_snapshot_list
= g_malloc((s
->nb_snapshots
+ 1) * sizeof(QCowSnapshot
));
425 memcpy(new_snapshot_list
, s
->snapshots
,
426 s
->nb_snapshots
* sizeof(QCowSnapshot
));
427 old_snapshot_list
= s
->snapshots
;
429 s
->snapshots
= new_snapshot_list
;
430 s
->snapshots
[s
->nb_snapshots
++] = *sn
;
432 ret
= qcow2_write_snapshots(bs
);
434 g_free(s
->snapshots
);
435 s
->snapshots
= old_snapshot_list
;
440 g_free(old_snapshot_list
);
442 /* The VM state isn't needed any more in the active L1 table; in fact, it
443 * hurts by causing expensive COW for the next snapshot. */
444 qcow2_discard_clusters(bs
, qcow2_vm_state_offset(s
),
445 align_offset(sn
->vm_state_size
, s
->cluster_size
)
447 QCOW2_DISCARD_NEVER
);
451 BdrvCheckResult result
= {0};
452 qcow2_check_refcounts(bs
, &result
, 0);
465 /* copy the snapshot 'snapshot_name' into the current disk image */
466 int qcow2_snapshot_goto(BlockDriverState
*bs
, const char *snapshot_id
)
468 BDRVQcowState
*s
= bs
->opaque
;
470 int i
, snapshot_index
;
471 int cur_l1_bytes
, sn_l1_bytes
;
473 uint64_t *sn_l1_table
= NULL
;
475 /* Search the snapshot */
476 snapshot_index
= find_snapshot_by_id_or_name(bs
, snapshot_id
);
477 if (snapshot_index
< 0) {
480 sn
= &s
->snapshots
[snapshot_index
];
482 if (sn
->disk_size
!= bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
483 error_report("qcow2: Loading snapshots with different disk "
484 "size is not implemented");
490 * Make sure that the current L1 table is big enough to contain the whole
491 * L1 table of the snapshot. If the snapshot L1 table is smaller, the
492 * current one must be padded with zeros.
494 ret
= qcow2_grow_l1_table(bs
, sn
->l1_size
, true);
499 cur_l1_bytes
= s
->l1_size
* sizeof(uint64_t);
500 sn_l1_bytes
= sn
->l1_size
* sizeof(uint64_t);
503 * Copy the snapshot L1 table to the current L1 table.
505 * Before overwriting the old current L1 table on disk, make sure to
506 * increase all refcounts for the clusters referenced by the new one.
507 * Decrease the refcount referenced by the old one only when the L1
508 * table is overwritten.
510 sn_l1_table
= g_malloc0(cur_l1_bytes
);
512 ret
= bdrv_pread(bs
->file
, sn
->l1_table_offset
, sn_l1_table
, sn_l1_bytes
);
517 ret
= qcow2_update_snapshot_refcount(bs
, sn
->l1_table_offset
,
523 ret
= qcow2_pre_write_overlap_check(bs
, QCOW2_OL_ACTIVE_L1
,
524 s
->l1_table_offset
, cur_l1_bytes
);
529 ret
= bdrv_pwrite_sync(bs
->file
, s
->l1_table_offset
, sn_l1_table
,
536 * Decrease refcount of clusters of current L1 table.
538 * At this point, the in-memory s->l1_table points to the old L1 table,
539 * whereas on disk we already have the new one.
541 * qcow2_update_snapshot_refcount special cases the current L1 table to use
542 * the in-memory data instead of really using the offset to load a new one,
543 * which is why this works.
545 ret
= qcow2_update_snapshot_refcount(bs
, s
->l1_table_offset
,
549 * Now update the in-memory L1 table to be in sync with the on-disk one. We
550 * need to do this even if updating refcounts failed.
552 for(i
= 0;i
< s
->l1_size
; i
++) {
553 s
->l1_table
[i
] = be64_to_cpu(sn_l1_table
[i
]);
564 * Update QCOW_OFLAG_COPIED in the active L1 table (it may have changed
565 * when we decreased the refcount of the old snapshot.
567 ret
= qcow2_update_snapshot_refcount(bs
, s
->l1_table_offset
, s
->l1_size
, 0);
574 BdrvCheckResult result
= {0};
575 qcow2_check_refcounts(bs
, &result
, 0);
585 int qcow2_snapshot_delete(BlockDriverState
*bs
,
586 const char *snapshot_id
,
590 BDRVQcowState
*s
= bs
->opaque
;
592 int snapshot_index
, ret
;
594 /* Search the snapshot */
595 snapshot_index
= find_snapshot_by_id_and_name(bs
, snapshot_id
, name
);
596 if (snapshot_index
< 0) {
597 error_setg(errp
, "Can't find the snapshot");
600 sn
= s
->snapshots
[snapshot_index
];
602 /* Remove it from the snapshot list */
603 memmove(s
->snapshots
+ snapshot_index
,
604 s
->snapshots
+ snapshot_index
+ 1,
605 (s
->nb_snapshots
- snapshot_index
- 1) * sizeof(sn
));
607 ret
= qcow2_write_snapshots(bs
);
609 error_setg(errp
, "Failed to remove snapshot from snapshot list");
614 * The snapshot is now unused, clean up. If we fail after this point, we
615 * won't recover but just leak clusters.
621 * Now decrease the refcounts of clusters referenced by the snapshot and
624 ret
= qcow2_update_snapshot_refcount(bs
, sn
.l1_table_offset
,
627 error_setg(errp
, "Failed to free the cluster and L1 table");
630 qcow2_free_clusters(bs
, sn
.l1_table_offset
, sn
.l1_size
* sizeof(uint64_t),
631 QCOW2_DISCARD_SNAPSHOT
);
633 /* must update the copied flag on the current cluster offsets */
634 ret
= qcow2_update_snapshot_refcount(bs
, s
->l1_table_offset
, s
->l1_size
, 0);
636 error_setg(errp
, "Failed to update snapshot status in disk");
642 BdrvCheckResult result
= {0};
643 qcow2_check_refcounts(bs
, &result
, 0);
649 int qcow2_snapshot_list(BlockDriverState
*bs
, QEMUSnapshotInfo
**psn_tab
)
651 BDRVQcowState
*s
= bs
->opaque
;
652 QEMUSnapshotInfo
*sn_tab
, *sn_info
;
656 if (!s
->nb_snapshots
) {
658 return s
->nb_snapshots
;
661 sn_tab
= g_malloc0(s
->nb_snapshots
* sizeof(QEMUSnapshotInfo
));
662 for(i
= 0; i
< s
->nb_snapshots
; i
++) {
663 sn_info
= sn_tab
+ i
;
664 sn
= s
->snapshots
+ i
;
665 pstrcpy(sn_info
->id_str
, sizeof(sn_info
->id_str
),
667 pstrcpy(sn_info
->name
, sizeof(sn_info
->name
),
669 sn_info
->vm_state_size
= sn
->vm_state_size
;
670 sn_info
->date_sec
= sn
->date_sec
;
671 sn_info
->date_nsec
= sn
->date_nsec
;
672 sn_info
->vm_clock_nsec
= sn
->vm_clock_nsec
;
675 return s
->nb_snapshots
;
678 int qcow2_snapshot_load_tmp(BlockDriverState
*bs
,
679 const char *snapshot_id
,
683 int i
, snapshot_index
;
684 BDRVQcowState
*s
= bs
->opaque
;
686 uint64_t *new_l1_table
;
690 assert(bs
->read_only
);
692 /* Search the snapshot */
693 snapshot_index
= find_snapshot_by_id_and_name(bs
, snapshot_id
, name
);
694 if (snapshot_index
< 0) {
696 "Can't find snapshot");
699 sn
= &s
->snapshots
[snapshot_index
];
701 /* Allocate and read in the snapshot's L1 table */
702 new_l1_bytes
= s
->l1_size
* sizeof(uint64_t);
703 new_l1_table
= g_malloc0(align_offset(new_l1_bytes
, 512));
705 ret
= bdrv_pread(bs
->file
, sn
->l1_table_offset
, new_l1_table
, new_l1_bytes
);
707 error_setg(errp
, "Failed to read l1 table for snapshot");
708 g_free(new_l1_table
);
712 /* Switch the L1 table */
715 s
->l1_size
= sn
->l1_size
;
716 s
->l1_table_offset
= sn
->l1_table_offset
;
717 s
->l1_table
= new_l1_table
;
719 for(i
= 0;i
< s
->l1_size
; i
++) {
720 be64_to_cpus(&s
->l1_table
[i
]);