]>
Commit | Line | Data |
---|---|---|
c142442b KW |
1 | /* |
2 | * Block driver for the QCOW version 2 format | |
3 | * | |
4 | * Copyright (c) 2004-2006 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 | ||
25 | #include "qemu-common.h" | |
737e150e | 26 | #include "block/block_int.h" |
c142442b KW |
27 | #include "block/qcow2.h" |
28 | ||
541dc0d4 | 29 | typedef struct QEMU_PACKED QCowSnapshotHeader { |
c142442b KW |
30 | /* header is 8 byte aligned */ |
31 | uint64_t l1_table_offset; | |
32 | ||
33 | uint32_t l1_size; | |
34 | uint16_t id_str_size; | |
35 | uint16_t name_size; | |
36 | ||
37 | uint32_t date_sec; | |
38 | uint32_t date_nsec; | |
39 | ||
40 | uint64_t vm_clock_nsec; | |
41 | ||
42 | uint32_t vm_state_size; | |
43 | uint32_t extra_data_size; /* for extension */ | |
44 | /* extra data follows */ | |
45 | /* id_str follows */ | |
46 | /* name follows */ | |
47 | } QCowSnapshotHeader; | |
48 | ||
c2c9a466 KW |
49 | typedef struct QEMU_PACKED QCowSnapshotExtraData { |
50 | uint64_t vm_state_size_large; | |
90b27759 | 51 | uint64_t disk_size; |
c2c9a466 KW |
52 | } QCowSnapshotExtraData; |
53 | ||
ed6ccf0f | 54 | void qcow2_free_snapshots(BlockDriverState *bs) |
c142442b KW |
55 | { |
56 | BDRVQcowState *s = bs->opaque; | |
57 | int i; | |
58 | ||
59 | for(i = 0; i < s->nb_snapshots; i++) { | |
7267c094 AL |
60 | g_free(s->snapshots[i].name); |
61 | g_free(s->snapshots[i].id_str); | |
c142442b | 62 | } |
7267c094 | 63 | g_free(s->snapshots); |
c142442b KW |
64 | s->snapshots = NULL; |
65 | s->nb_snapshots = 0; | |
66 | } | |
67 | ||
ed6ccf0f | 68 | int qcow2_read_snapshots(BlockDriverState *bs) |
c142442b KW |
69 | { |
70 | BDRVQcowState *s = bs->opaque; | |
71 | QCowSnapshotHeader h; | |
c2c9a466 | 72 | QCowSnapshotExtraData extra; |
c142442b KW |
73 | QCowSnapshot *sn; |
74 | int i, id_str_size, name_size; | |
75 | int64_t offset; | |
76 | uint32_t extra_data_size; | |
42deb29f | 77 | int ret; |
c142442b KW |
78 | |
79 | if (!s->nb_snapshots) { | |
80 | s->snapshots = NULL; | |
81 | s->snapshots_size = 0; | |
82 | return 0; | |
83 | } | |
84 | ||
85 | offset = s->snapshots_offset; | |
7267c094 | 86 | s->snapshots = g_malloc0(s->nb_snapshots * sizeof(QCowSnapshot)); |
42deb29f | 87 | |
c142442b | 88 | for(i = 0; i < s->nb_snapshots; i++) { |
42deb29f | 89 | /* Read statically sized part of the snapshot header */ |
c142442b | 90 | offset = align_offset(offset, 8); |
42deb29f KW |
91 | ret = bdrv_pread(bs->file, offset, &h, sizeof(h)); |
92 | if (ret < 0) { | |
c142442b | 93 | goto fail; |
42deb29f KW |
94 | } |
95 | ||
c142442b KW |
96 | offset += 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); | |
105 | ||
106 | id_str_size = be16_to_cpu(h.id_str_size); | |
107 | name_size = be16_to_cpu(h.name_size); | |
108 | ||
c2c9a466 KW |
109 | /* Read extra data */ |
110 | ret = bdrv_pread(bs->file, offset, &extra, | |
111 | MIN(sizeof(extra), extra_data_size)); | |
112 | if (ret < 0) { | |
113 | goto fail; | |
114 | } | |
c142442b KW |
115 | offset += extra_data_size; |
116 | ||
c2c9a466 KW |
117 | if (extra_data_size >= 8) { |
118 | sn->vm_state_size = be64_to_cpu(extra.vm_state_size_large); | |
119 | } | |
120 | ||
90b27759 KW |
121 | if (extra_data_size >= 16) { |
122 | sn->disk_size = be64_to_cpu(extra.disk_size); | |
123 | } else { | |
124 | sn->disk_size = bs->total_sectors * BDRV_SECTOR_SIZE; | |
125 | } | |
126 | ||
42deb29f | 127 | /* Read snapshot ID */ |
7267c094 | 128 | sn->id_str = g_malloc(id_str_size + 1); |
42deb29f KW |
129 | ret = bdrv_pread(bs->file, offset, sn->id_str, id_str_size); |
130 | if (ret < 0) { | |
c142442b | 131 | goto fail; |
42deb29f | 132 | } |
c142442b KW |
133 | offset += id_str_size; |
134 | sn->id_str[id_str_size] = '\0'; | |
135 | ||
42deb29f | 136 | /* Read snapshot name */ |
7267c094 | 137 | sn->name = g_malloc(name_size + 1); |
42deb29f KW |
138 | ret = bdrv_pread(bs->file, offset, sn->name, name_size); |
139 | if (ret < 0) { | |
c142442b | 140 | goto fail; |
42deb29f | 141 | } |
c142442b KW |
142 | offset += name_size; |
143 | sn->name[name_size] = '\0'; | |
144 | } | |
42deb29f | 145 | |
c142442b KW |
146 | s->snapshots_size = offset - s->snapshots_offset; |
147 | return 0; | |
42deb29f KW |
148 | |
149 | fail: | |
ed6ccf0f | 150 | qcow2_free_snapshots(bs); |
42deb29f | 151 | return ret; |
c142442b KW |
152 | } |
153 | ||
154 | /* add at the end of the file a new list of snapshots */ | |
7c80ab3f | 155 | static int qcow2_write_snapshots(BlockDriverState *bs) |
c142442b KW |
156 | { |
157 | BDRVQcowState *s = bs->opaque; | |
158 | QCowSnapshot *sn; | |
159 | QCowSnapshotHeader h; | |
c2c9a466 | 160 | QCowSnapshotExtraData extra; |
c142442b | 161 | int i, name_size, id_str_size, snapshots_size; |
d69969c4 KW |
162 | struct { |
163 | uint32_t nb_snapshots; | |
164 | uint64_t snapshots_offset; | |
165 | } QEMU_PACKED header_data; | |
c142442b | 166 | int64_t offset, snapshots_offset; |
07fd8779 | 167 | int ret; |
c142442b KW |
168 | |
169 | /* compute the size of the snapshots */ | |
170 | offset = 0; | |
171 | for(i = 0; i < s->nb_snapshots; i++) { | |
172 | sn = s->snapshots + i; | |
173 | offset = align_offset(offset, 8); | |
174 | offset += sizeof(h); | |
c2c9a466 | 175 | offset += sizeof(extra); |
c142442b KW |
176 | offset += strlen(sn->id_str); |
177 | offset += strlen(sn->name); | |
178 | } | |
179 | snapshots_size = offset; | |
180 | ||
07fd8779 | 181 | /* Allocate space for the new snapshot list */ |
ed6ccf0f | 182 | snapshots_offset = qcow2_alloc_clusters(bs, snapshots_size); |
c142442b | 183 | offset = snapshots_offset; |
5d757b56 KW |
184 | if (offset < 0) { |
185 | return offset; | |
186 | } | |
f6977f15 SH |
187 | ret = bdrv_flush(bs); |
188 | if (ret < 0) { | |
189 | return ret; | |
190 | } | |
c142442b | 191 | |
07fd8779 | 192 | /* Write all snapshots to the new list */ |
c142442b KW |
193 | for(i = 0; i < s->nb_snapshots; i++) { |
194 | sn = s->snapshots + i; | |
195 | memset(&h, 0, sizeof(h)); | |
196 | h.l1_table_offset = cpu_to_be64(sn->l1_table_offset); | |
197 | h.l1_size = cpu_to_be32(sn->l1_size); | |
c2c9a466 KW |
198 | /* If it doesn't fit in 32 bit, older implementations should treat it |
199 | * as a disk-only snapshot rather than truncate the VM state */ | |
200 | if (sn->vm_state_size <= 0xffffffff) { | |
201 | h.vm_state_size = cpu_to_be32(sn->vm_state_size); | |
202 | } | |
c142442b KW |
203 | h.date_sec = cpu_to_be32(sn->date_sec); |
204 | h.date_nsec = cpu_to_be32(sn->date_nsec); | |
205 | h.vm_clock_nsec = cpu_to_be64(sn->vm_clock_nsec); | |
c2c9a466 KW |
206 | h.extra_data_size = cpu_to_be32(sizeof(extra)); |
207 | ||
208 | memset(&extra, 0, sizeof(extra)); | |
209 | extra.vm_state_size_large = cpu_to_be64(sn->vm_state_size); | |
90b27759 | 210 | extra.disk_size = cpu_to_be64(sn->disk_size); |
c142442b KW |
211 | |
212 | id_str_size = strlen(sn->id_str); | |
213 | name_size = strlen(sn->name); | |
214 | h.id_str_size = cpu_to_be16(id_str_size); | |
215 | h.name_size = cpu_to_be16(name_size); | |
216 | offset = align_offset(offset, 8); | |
07fd8779 KW |
217 | |
218 | ret = bdrv_pwrite(bs->file, offset, &h, sizeof(h)); | |
219 | if (ret < 0) { | |
c142442b | 220 | goto fail; |
07fd8779 | 221 | } |
c142442b | 222 | offset += sizeof(h); |
07fd8779 | 223 | |
c2c9a466 KW |
224 | ret = bdrv_pwrite(bs->file, offset, &extra, sizeof(extra)); |
225 | if (ret < 0) { | |
226 | goto fail; | |
227 | } | |
228 | offset += sizeof(extra); | |
229 | ||
07fd8779 KW |
230 | ret = bdrv_pwrite(bs->file, offset, sn->id_str, id_str_size); |
231 | if (ret < 0) { | |
c142442b | 232 | goto fail; |
07fd8779 | 233 | } |
c142442b | 234 | offset += id_str_size; |
07fd8779 KW |
235 | |
236 | ret = bdrv_pwrite(bs->file, offset, sn->name, name_size); | |
237 | if (ret < 0) { | |
c142442b | 238 | goto fail; |
07fd8779 | 239 | } |
c142442b KW |
240 | offset += name_size; |
241 | } | |
242 | ||
07fd8779 KW |
243 | /* |
244 | * Update the header to point to the new snapshot table. This requires the | |
245 | * new table and its refcounts to be stable on disk. | |
07fd8779 KW |
246 | */ |
247 | ret = bdrv_flush(bs); | |
248 | if (ret < 0) { | |
249 | goto fail; | |
250 | } | |
251 | ||
d69969c4 KW |
252 | QEMU_BUILD_BUG_ON(offsetof(QCowHeader, snapshots_offset) != |
253 | offsetof(QCowHeader, nb_snapshots) + sizeof(header_data.nb_snapshots)); | |
254 | ||
255 | header_data.nb_snapshots = cpu_to_be32(s->nb_snapshots); | |
256 | header_data.snapshots_offset = cpu_to_be64(snapshots_offset); | |
07fd8779 | 257 | |
07fd8779 | 258 | ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, nb_snapshots), |
d69969c4 | 259 | &header_data, sizeof(header_data)); |
07fd8779 | 260 | if (ret < 0) { |
c142442b | 261 | goto fail; |
07fd8779 | 262 | } |
c142442b KW |
263 | |
264 | /* free the old snapshot table */ | |
6cfcb9b8 KW |
265 | qcow2_free_clusters(bs, s->snapshots_offset, s->snapshots_size, |
266 | QCOW2_DISCARD_SNAPSHOT); | |
c142442b KW |
267 | s->snapshots_offset = snapshots_offset; |
268 | s->snapshots_size = snapshots_size; | |
269 | return 0; | |
07fd8779 KW |
270 | |
271 | fail: | |
272 | return ret; | |
c142442b KW |
273 | } |
274 | ||
275 | static void find_new_snapshot_id(BlockDriverState *bs, | |
276 | char *id_str, int id_str_size) | |
277 | { | |
278 | BDRVQcowState *s = bs->opaque; | |
279 | QCowSnapshot *sn; | |
280 | int i, id, id_max = 0; | |
281 | ||
282 | for(i = 0; i < s->nb_snapshots; i++) { | |
283 | sn = s->snapshots + i; | |
284 | id = strtoul(sn->id_str, NULL, 10); | |
285 | if (id > id_max) | |
286 | id_max = id; | |
287 | } | |
288 | snprintf(id_str, id_str_size, "%d", id_max + 1); | |
289 | } | |
290 | ||
291 | static int find_snapshot_by_id(BlockDriverState *bs, const char *id_str) | |
292 | { | |
293 | BDRVQcowState *s = bs->opaque; | |
294 | int i; | |
295 | ||
296 | for(i = 0; i < s->nb_snapshots; i++) { | |
297 | if (!strcmp(s->snapshots[i].id_str, id_str)) | |
298 | return i; | |
299 | } | |
300 | return -1; | |
301 | } | |
302 | ||
303 | static int find_snapshot_by_id_or_name(BlockDriverState *bs, const char *name) | |
304 | { | |
305 | BDRVQcowState *s = bs->opaque; | |
306 | int i, ret; | |
307 | ||
308 | ret = find_snapshot_by_id(bs, name); | |
309 | if (ret >= 0) | |
310 | return ret; | |
311 | for(i = 0; i < s->nb_snapshots; i++) { | |
312 | if (!strcmp(s->snapshots[i].name, name)) | |
313 | return i; | |
314 | } | |
315 | return -1; | |
316 | } | |
317 | ||
318 | /* if no id is provided, a new one is constructed */ | |
ed6ccf0f | 319 | int qcow2_snapshot_create(BlockDriverState *bs, QEMUSnapshotInfo *sn_info) |
c142442b KW |
320 | { |
321 | BDRVQcowState *s = bs->opaque; | |
d1ea98d5 KW |
322 | QCowSnapshot *new_snapshot_list = NULL; |
323 | QCowSnapshot *old_snapshot_list = NULL; | |
324 | QCowSnapshot sn1, *sn = &sn1; | |
c142442b KW |
325 | int i, ret; |
326 | uint64_t *l1_table = NULL; | |
5d757b56 | 327 | int64_t l1_table_offset; |
c142442b KW |
328 | |
329 | memset(sn, 0, sizeof(*sn)); | |
330 | ||
03343166 | 331 | /* Generate an ID if it wasn't passed */ |
c142442b | 332 | if (sn_info->id_str[0] == '\0') { |
c142442b KW |
333 | find_new_snapshot_id(bs, sn_info->id_str, sizeof(sn_info->id_str)); |
334 | } | |
335 | ||
03343166 KW |
336 | /* Check that the ID is unique */ |
337 | if (find_snapshot_by_id(bs, sn_info->id_str) >= 0) { | |
647cc472 | 338 | return -EEXIST; |
03343166 | 339 | } |
c142442b | 340 | |
03343166 | 341 | /* Populate sn with passed data */ |
7267c094 | 342 | sn->id_str = g_strdup(sn_info->id_str); |
7267c094 | 343 | sn->name = g_strdup(sn_info->name); |
03343166 | 344 | |
90b27759 | 345 | sn->disk_size = bs->total_sectors * BDRV_SECTOR_SIZE; |
c142442b KW |
346 | sn->vm_state_size = sn_info->vm_state_size; |
347 | sn->date_sec = sn_info->date_sec; | |
348 | sn->date_nsec = sn_info->date_nsec; | |
349 | sn->vm_clock_nsec = sn_info->vm_clock_nsec; | |
350 | ||
03343166 | 351 | /* Allocate the L1 table of the snapshot and copy the current one there. */ |
5d757b56 KW |
352 | l1_table_offset = qcow2_alloc_clusters(bs, s->l1_size * sizeof(uint64_t)); |
353 | if (l1_table_offset < 0) { | |
d1ea98d5 | 354 | ret = l1_table_offset; |
5d757b56 KW |
355 | goto fail; |
356 | } | |
357 | ||
358 | sn->l1_table_offset = l1_table_offset; | |
c142442b KW |
359 | sn->l1_size = s->l1_size; |
360 | ||
03343166 | 361 | l1_table = g_malloc(s->l1_size * sizeof(uint64_t)); |
c142442b KW |
362 | for(i = 0; i < s->l1_size; i++) { |
363 | l1_table[i] = cpu_to_be64(s->l1_table[i]); | |
364 | } | |
d1ea98d5 KW |
365 | |
366 | ret = bdrv_pwrite(bs->file, sn->l1_table_offset, l1_table, | |
367 | s->l1_size * sizeof(uint64_t)); | |
368 | if (ret < 0) { | |
c142442b | 369 | goto fail; |
d1ea98d5 KW |
370 | } |
371 | ||
7267c094 | 372 | g_free(l1_table); |
c142442b KW |
373 | l1_table = NULL; |
374 | ||
d1ea98d5 KW |
375 | /* |
376 | * Increase the refcounts of all clusters and make sure everything is | |
377 | * stable on disk before updating the snapshot table to contain a pointer | |
378 | * to the new L1 table. | |
379 | */ | |
380 | ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 1); | |
381 | if (ret < 0) { | |
382 | goto fail; | |
383 | } | |
384 | ||
d1ea98d5 KW |
385 | /* Append the new snapshot to the snapshot list */ |
386 | new_snapshot_list = g_malloc((s->nb_snapshots + 1) * sizeof(QCowSnapshot)); | |
c142442b | 387 | if (s->snapshots) { |
d1ea98d5 KW |
388 | memcpy(new_snapshot_list, s->snapshots, |
389 | s->nb_snapshots * sizeof(QCowSnapshot)); | |
390 | old_snapshot_list = s->snapshots; | |
c142442b | 391 | } |
d1ea98d5 | 392 | s->snapshots = new_snapshot_list; |
c142442b KW |
393 | s->snapshots[s->nb_snapshots++] = *sn; |
394 | ||
d1ea98d5 KW |
395 | ret = qcow2_write_snapshots(bs); |
396 | if (ret < 0) { | |
397 | g_free(s->snapshots); | |
398 | s->snapshots = old_snapshot_list; | |
c142442b | 399 | goto fail; |
d1ea98d5 KW |
400 | } |
401 | ||
402 | g_free(old_snapshot_list); | |
403 | ||
c142442b | 404 | #ifdef DEBUG_ALLOC |
6cbc3031 PH |
405 | { |
406 | BdrvCheckResult result = {0}; | |
b35278f7 | 407 | qcow2_check_refcounts(bs, &result, 0); |
6cbc3031 | 408 | } |
c142442b KW |
409 | #endif |
410 | return 0; | |
03343166 KW |
411 | |
412 | fail: | |
413 | g_free(sn->id_str); | |
7267c094 AL |
414 | g_free(sn->name); |
415 | g_free(l1_table); | |
d1ea98d5 KW |
416 | |
417 | return ret; | |
c142442b KW |
418 | } |
419 | ||
420 | /* copy the snapshot 'snapshot_name' into the current disk image */ | |
ed6ccf0f | 421 | int qcow2_snapshot_goto(BlockDriverState *bs, const char *snapshot_id) |
c142442b KW |
422 | { |
423 | BDRVQcowState *s = bs->opaque; | |
424 | QCowSnapshot *sn; | |
35d7ace7 KW |
425 | int i, snapshot_index; |
426 | int cur_l1_bytes, sn_l1_bytes; | |
589f284b | 427 | int ret; |
43a0cac4 | 428 | uint64_t *sn_l1_table = NULL; |
c142442b | 429 | |
589f284b | 430 | /* Search the snapshot */ |
c142442b | 431 | snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id); |
589f284b | 432 | if (snapshot_index < 0) { |
c142442b | 433 | return -ENOENT; |
589f284b | 434 | } |
c142442b KW |
435 | sn = &s->snapshots[snapshot_index]; |
436 | ||
90b27759 KW |
437 | if (sn->disk_size != bs->total_sectors * BDRV_SECTOR_SIZE) { |
438 | error_report("qcow2: Loading snapshots with different disk " | |
439 | "size is not implemented"); | |
440 | ret = -ENOTSUP; | |
441 | goto fail; | |
442 | } | |
443 | ||
589f284b KW |
444 | /* |
445 | * Make sure that the current L1 table is big enough to contain the whole | |
446 | * L1 table of the snapshot. If the snapshot L1 table is smaller, the | |
447 | * current one must be padded with zeros. | |
448 | */ | |
449 | ret = qcow2_grow_l1_table(bs, sn->l1_size, true); | |
450 | if (ret < 0) { | |
c142442b | 451 | goto fail; |
589f284b | 452 | } |
c142442b | 453 | |
35d7ace7 KW |
454 | cur_l1_bytes = s->l1_size * sizeof(uint64_t); |
455 | sn_l1_bytes = sn->l1_size * sizeof(uint64_t); | |
456 | ||
589f284b KW |
457 | /* |
458 | * Copy the snapshot L1 table to the current L1 table. | |
459 | * | |
460 | * Before overwriting the old current L1 table on disk, make sure to | |
461 | * increase all refcounts for the clusters referenced by the new one. | |
43a0cac4 KW |
462 | * Decrease the refcount referenced by the old one only when the L1 |
463 | * table is overwritten. | |
589f284b | 464 | */ |
43a0cac4 KW |
465 | sn_l1_table = g_malloc0(cur_l1_bytes); |
466 | ||
467 | ret = bdrv_pread(bs->file, sn->l1_table_offset, sn_l1_table, sn_l1_bytes); | |
468 | if (ret < 0) { | |
469 | goto fail; | |
470 | } | |
471 | ||
472 | ret = qcow2_update_snapshot_refcount(bs, sn->l1_table_offset, | |
473 | sn->l1_size, 1); | |
589f284b | 474 | if (ret < 0) { |
c142442b | 475 | goto fail; |
589f284b KW |
476 | } |
477 | ||
43a0cac4 | 478 | ret = bdrv_pwrite_sync(bs->file, s->l1_table_offset, sn_l1_table, |
589f284b KW |
479 | cur_l1_bytes); |
480 | if (ret < 0) { | |
c142442b | 481 | goto fail; |
589f284b KW |
482 | } |
483 | ||
43a0cac4 KW |
484 | /* |
485 | * Decrease refcount of clusters of current L1 table. | |
486 | * | |
487 | * At this point, the in-memory s->l1_table points to the old L1 table, | |
488 | * whereas on disk we already have the new one. | |
489 | * | |
490 | * qcow2_update_snapshot_refcount special cases the current L1 table to use | |
491 | * the in-memory data instead of really using the offset to load a new one, | |
492 | * which is why this works. | |
493 | */ | |
494 | ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, | |
495 | s->l1_size, -1); | |
496 | ||
497 | /* | |
498 | * Now update the in-memory L1 table to be in sync with the on-disk one. We | |
499 | * need to do this even if updating refcounts failed. | |
500 | */ | |
c142442b | 501 | for(i = 0;i < s->l1_size; i++) { |
43a0cac4 | 502 | s->l1_table[i] = be64_to_cpu(sn_l1_table[i]); |
c142442b KW |
503 | } |
504 | ||
43a0cac4 KW |
505 | if (ret < 0) { |
506 | goto fail; | |
507 | } | |
508 | ||
509 | g_free(sn_l1_table); | |
510 | sn_l1_table = NULL; | |
511 | ||
512 | /* | |
513 | * Update QCOW_OFLAG_COPIED in the active L1 table (it may have changed | |
514 | * when we decreased the refcount of the old snapshot. | |
515 | */ | |
516 | ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 0); | |
589f284b | 517 | if (ret < 0) { |
c142442b | 518 | goto fail; |
589f284b | 519 | } |
c142442b KW |
520 | |
521 | #ifdef DEBUG_ALLOC | |
6cbc3031 PH |
522 | { |
523 | BdrvCheckResult result = {0}; | |
b35278f7 | 524 | qcow2_check_refcounts(bs, &result, 0); |
6cbc3031 | 525 | } |
c142442b KW |
526 | #endif |
527 | return 0; | |
589f284b KW |
528 | |
529 | fail: | |
43a0cac4 | 530 | g_free(sn_l1_table); |
589f284b | 531 | return ret; |
c142442b KW |
532 | } |
533 | ||
ed6ccf0f | 534 | int qcow2_snapshot_delete(BlockDriverState *bs, const char *snapshot_id) |
c142442b KW |
535 | { |
536 | BDRVQcowState *s = bs->opaque; | |
9a476780 | 537 | QCowSnapshot sn; |
c142442b KW |
538 | int snapshot_index, ret; |
539 | ||
9a476780 | 540 | /* Search the snapshot */ |
c142442b | 541 | snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id); |
9a476780 | 542 | if (snapshot_index < 0) { |
c142442b | 543 | return -ENOENT; |
9a476780 KW |
544 | } |
545 | sn = s->snapshots[snapshot_index]; | |
c142442b | 546 | |
9a476780 KW |
547 | /* Remove it from the snapshot list */ |
548 | memmove(s->snapshots + snapshot_index, | |
549 | s->snapshots + snapshot_index + 1, | |
550 | (s->nb_snapshots - snapshot_index - 1) * sizeof(sn)); | |
551 | s->nb_snapshots--; | |
552 | ret = qcow2_write_snapshots(bs); | |
553 | if (ret < 0) { | |
c142442b | 554 | return ret; |
9a476780 KW |
555 | } |
556 | ||
557 | /* | |
558 | * The snapshot is now unused, clean up. If we fail after this point, we | |
559 | * won't recover but just leak clusters. | |
560 | */ | |
561 | g_free(sn.id_str); | |
562 | g_free(sn.name); | |
563 | ||
564 | /* | |
565 | * Now decrease the refcounts of clusters referenced by the snapshot and | |
566 | * free the L1 table. | |
567 | */ | |
568 | ret = qcow2_update_snapshot_refcount(bs, sn.l1_table_offset, | |
569 | sn.l1_size, -1); | |
570 | if (ret < 0) { | |
c142442b | 571 | return ret; |
9a476780 | 572 | } |
6cfcb9b8 KW |
573 | qcow2_free_clusters(bs, sn.l1_table_offset, sn.l1_size * sizeof(uint64_t), |
574 | QCOW2_DISCARD_SNAPSHOT); | |
c142442b | 575 | |
9a476780 KW |
576 | /* must update the copied flag on the current cluster offsets */ |
577 | ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 0); | |
c142442b | 578 | if (ret < 0) { |
c142442b KW |
579 | return ret; |
580 | } | |
9a476780 | 581 | |
c142442b | 582 | #ifdef DEBUG_ALLOC |
6cbc3031 PH |
583 | { |
584 | BdrvCheckResult result = {0}; | |
b35278f7 | 585 | qcow2_check_refcounts(bs, &result, 0); |
6cbc3031 | 586 | } |
c142442b KW |
587 | #endif |
588 | return 0; | |
589 | } | |
590 | ||
ed6ccf0f | 591 | int qcow2_snapshot_list(BlockDriverState *bs, QEMUSnapshotInfo **psn_tab) |
c142442b KW |
592 | { |
593 | BDRVQcowState *s = bs->opaque; | |
594 | QEMUSnapshotInfo *sn_tab, *sn_info; | |
595 | QCowSnapshot *sn; | |
596 | int i; | |
597 | ||
598 | if (!s->nb_snapshots) { | |
599 | *psn_tab = NULL; | |
600 | return s->nb_snapshots; | |
601 | } | |
602 | ||
7267c094 | 603 | sn_tab = g_malloc0(s->nb_snapshots * sizeof(QEMUSnapshotInfo)); |
c142442b KW |
604 | for(i = 0; i < s->nb_snapshots; i++) { |
605 | sn_info = sn_tab + i; | |
606 | sn = s->snapshots + i; | |
607 | pstrcpy(sn_info->id_str, sizeof(sn_info->id_str), | |
608 | sn->id_str); | |
609 | pstrcpy(sn_info->name, sizeof(sn_info->name), | |
610 | sn->name); | |
611 | sn_info->vm_state_size = sn->vm_state_size; | |
612 | sn_info->date_sec = sn->date_sec; | |
613 | sn_info->date_nsec = sn->date_nsec; | |
614 | sn_info->vm_clock_nsec = sn->vm_clock_nsec; | |
615 | } | |
616 | *psn_tab = sn_tab; | |
617 | return s->nb_snapshots; | |
618 | } | |
619 | ||
51ef6727 | 620 | int qcow2_snapshot_load_tmp(BlockDriverState *bs, const char *snapshot_name) |
621 | { | |
e3f652b3 | 622 | int i, snapshot_index; |
51ef6727 | 623 | BDRVQcowState *s = bs->opaque; |
624 | QCowSnapshot *sn; | |
e3f652b3 KW |
625 | uint64_t *new_l1_table; |
626 | int new_l1_bytes; | |
627 | int ret; | |
51ef6727 | 628 | |
e3f652b3 KW |
629 | assert(bs->read_only); |
630 | ||
631 | /* Search the snapshot */ | |
51ef6727 | 632 | snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_name); |
633 | if (snapshot_index < 0) { | |
634 | return -ENOENT; | |
635 | } | |
51ef6727 | 636 | sn = &s->snapshots[snapshot_index]; |
51ef6727 | 637 | |
e3f652b3 KW |
638 | /* Allocate and read in the snapshot's L1 table */ |
639 | new_l1_bytes = s->l1_size * sizeof(uint64_t); | |
640 | new_l1_table = g_malloc0(align_offset(new_l1_bytes, 512)); | |
51ef6727 | 641 | |
e3f652b3 KW |
642 | ret = bdrv_pread(bs->file, sn->l1_table_offset, new_l1_table, new_l1_bytes); |
643 | if (ret < 0) { | |
644 | g_free(new_l1_table); | |
645 | return ret; | |
51ef6727 | 646 | } |
647 | ||
e3f652b3 KW |
648 | /* Switch the L1 table */ |
649 | g_free(s->l1_table); | |
650 | ||
651 | s->l1_size = sn->l1_size; | |
652 | s->l1_table_offset = sn->l1_table_offset; | |
653 | s->l1_table = new_l1_table; | |
654 | ||
51ef6727 | 655 | for(i = 0;i < s->l1_size; i++) { |
656 | be64_to_cpus(&s->l1_table[i]); | |
657 | } | |
e3f652b3 | 658 | |
51ef6727 | 659 | return 0; |
660 | } |