]> git.proxmox.com Git - mirror_qemu.git/blob - block/qcow2-snapshot.c
d667bfd93543da1e65cc1c8d6be91c26c080f190
[mirror_qemu.git] / block / qcow2-snapshot.c
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/osdep.h"
26 #include "qapi/error.h"
27 #include "qcow2.h"
28 #include "qemu/bswap.h"
29 #include "qemu/error-report.h"
30 #include "qemu/cutils.h"
31
32 void qcow2_free_snapshots(BlockDriverState *bs)
33 {
34 BDRVQcow2State *s = bs->opaque;
35 int i;
36
37 for(i = 0; i < s->nb_snapshots; i++) {
38 g_free(s->snapshots[i].name);
39 g_free(s->snapshots[i].id_str);
40 g_free(s->snapshots[i].unknown_extra_data);
41 }
42 g_free(s->snapshots);
43 s->snapshots = NULL;
44 s->nb_snapshots = 0;
45 }
46
47 int qcow2_read_snapshots(BlockDriverState *bs, Error **errp)
48 {
49 BDRVQcow2State *s = bs->opaque;
50 QCowSnapshotHeader h;
51 QCowSnapshotExtraData extra;
52 QCowSnapshot *sn;
53 int i, id_str_size, name_size;
54 int64_t offset;
55 int ret;
56
57 if (!s->nb_snapshots) {
58 s->snapshots = NULL;
59 s->snapshots_size = 0;
60 return 0;
61 }
62
63 offset = s->snapshots_offset;
64 s->snapshots = g_new0(QCowSnapshot, s->nb_snapshots);
65
66 for(i = 0; i < s->nb_snapshots; i++) {
67 /* Read statically sized part of the snapshot header */
68 offset = ROUND_UP(offset, 8);
69 ret = bdrv_pread(bs->file, offset, &h, sizeof(h));
70 if (ret < 0) {
71 error_setg_errno(errp, -ret, "Failed to read snapshot table");
72 goto fail;
73 }
74
75 offset += sizeof(h);
76 sn = s->snapshots + i;
77 sn->l1_table_offset = be64_to_cpu(h.l1_table_offset);
78 sn->l1_size = be32_to_cpu(h.l1_size);
79 sn->vm_state_size = be32_to_cpu(h.vm_state_size);
80 sn->date_sec = be32_to_cpu(h.date_sec);
81 sn->date_nsec = be32_to_cpu(h.date_nsec);
82 sn->vm_clock_nsec = be64_to_cpu(h.vm_clock_nsec);
83 sn->extra_data_size = be32_to_cpu(h.extra_data_size);
84
85 id_str_size = be16_to_cpu(h.id_str_size);
86 name_size = be16_to_cpu(h.name_size);
87
88 if (sn->extra_data_size > QCOW_MAX_SNAPSHOT_EXTRA_DATA) {
89 ret = -EFBIG;
90 error_setg(errp, "Too much extra metadata in snapshot table "
91 "entry %i", i);
92 goto fail;
93 }
94
95 /* Read known extra data */
96 ret = bdrv_pread(bs->file, offset, &extra,
97 MIN(sizeof(extra), sn->extra_data_size));
98 if (ret < 0) {
99 error_setg_errno(errp, -ret, "Failed to read snapshot table");
100 goto fail;
101 }
102 offset += MIN(sizeof(extra), sn->extra_data_size);
103
104 if (sn->extra_data_size >= endof(QCowSnapshotExtraData,
105 vm_state_size_large)) {
106 sn->vm_state_size = be64_to_cpu(extra.vm_state_size_large);
107 }
108
109 if (sn->extra_data_size >= endof(QCowSnapshotExtraData, disk_size)) {
110 sn->disk_size = be64_to_cpu(extra.disk_size);
111 } else {
112 sn->disk_size = bs->total_sectors * BDRV_SECTOR_SIZE;
113 }
114
115 if (sn->extra_data_size > sizeof(extra)) {
116 /* Store unknown extra data */
117 size_t unknown_extra_data_size =
118 sn->extra_data_size - sizeof(extra);
119
120 sn->unknown_extra_data = g_malloc(unknown_extra_data_size);
121 ret = bdrv_pread(bs->file, offset, sn->unknown_extra_data,
122 unknown_extra_data_size);
123 if (ret < 0) {
124 error_setg_errno(errp, -ret, "Failed to read snapshot table");
125 goto fail;
126 }
127 offset += unknown_extra_data_size;
128 }
129
130 /* Read snapshot ID */
131 sn->id_str = g_malloc(id_str_size + 1);
132 ret = bdrv_pread(bs->file, offset, sn->id_str, id_str_size);
133 if (ret < 0) {
134 error_setg_errno(errp, -ret, "Failed to read snapshot table");
135 goto fail;
136 }
137 offset += id_str_size;
138 sn->id_str[id_str_size] = '\0';
139
140 /* Read snapshot name */
141 sn->name = g_malloc(name_size + 1);
142 ret = bdrv_pread(bs->file, offset, sn->name, name_size);
143 if (ret < 0) {
144 error_setg_errno(errp, -ret, "Failed to read snapshot table");
145 goto fail;
146 }
147 offset += name_size;
148 sn->name[name_size] = '\0';
149
150 if (offset - s->snapshots_offset > QCOW_MAX_SNAPSHOTS_SIZE) {
151 ret = -EFBIG;
152 error_setg(errp, "Snapshot table is too big");
153 goto fail;
154 }
155 }
156
157 assert(offset - s->snapshots_offset <= INT_MAX);
158 s->snapshots_size = offset - s->snapshots_offset;
159 return 0;
160
161 fail:
162 qcow2_free_snapshots(bs);
163 return ret;
164 }
165
166 /* add at the end of the file a new list of snapshots */
167 int qcow2_write_snapshots(BlockDriverState *bs)
168 {
169 BDRVQcow2State *s = bs->opaque;
170 QCowSnapshot *sn;
171 QCowSnapshotHeader h;
172 QCowSnapshotExtraData extra;
173 int i, name_size, id_str_size, snapshots_size;
174 struct {
175 uint32_t nb_snapshots;
176 uint64_t snapshots_offset;
177 } QEMU_PACKED header_data;
178 int64_t offset, snapshots_offset = 0;
179 int ret;
180
181 /* compute the size of the snapshots */
182 offset = 0;
183 for(i = 0; i < s->nb_snapshots; i++) {
184 sn = s->snapshots + i;
185 offset = ROUND_UP(offset, 8);
186 offset += sizeof(h);
187 offset += MAX(sizeof(extra), sn->extra_data_size);
188 offset += strlen(sn->id_str);
189 offset += strlen(sn->name);
190
191 if (offset > QCOW_MAX_SNAPSHOTS_SIZE) {
192 ret = -EFBIG;
193 goto fail;
194 }
195 }
196
197 assert(offset <= INT_MAX);
198 snapshots_size = offset;
199
200 /* Allocate space for the new snapshot list */
201 snapshots_offset = qcow2_alloc_clusters(bs, snapshots_size);
202 offset = snapshots_offset;
203 if (offset < 0) {
204 ret = offset;
205 goto fail;
206 }
207 ret = bdrv_flush(bs);
208 if (ret < 0) {
209 goto fail;
210 }
211
212 /* The snapshot list position has not yet been updated, so these clusters
213 * must indeed be completely free */
214 ret = qcow2_pre_write_overlap_check(bs, 0, offset, snapshots_size, false);
215 if (ret < 0) {
216 goto fail;
217 }
218
219
220 /* Write all snapshots to the new list */
221 for(i = 0; i < s->nb_snapshots; i++) {
222 sn = s->snapshots + i;
223 memset(&h, 0, sizeof(h));
224 h.l1_table_offset = cpu_to_be64(sn->l1_table_offset);
225 h.l1_size = cpu_to_be32(sn->l1_size);
226 /* If it doesn't fit in 32 bit, older implementations should treat it
227 * as a disk-only snapshot rather than truncate the VM state */
228 if (sn->vm_state_size <= 0xffffffff) {
229 h.vm_state_size = cpu_to_be32(sn->vm_state_size);
230 }
231 h.date_sec = cpu_to_be32(sn->date_sec);
232 h.date_nsec = cpu_to_be32(sn->date_nsec);
233 h.vm_clock_nsec = cpu_to_be64(sn->vm_clock_nsec);
234 h.extra_data_size = cpu_to_be32(MAX(sizeof(extra),
235 sn->extra_data_size));
236
237 memset(&extra, 0, sizeof(extra));
238 extra.vm_state_size_large = cpu_to_be64(sn->vm_state_size);
239 extra.disk_size = cpu_to_be64(sn->disk_size);
240
241 id_str_size = strlen(sn->id_str);
242 name_size = strlen(sn->name);
243 assert(id_str_size <= UINT16_MAX && name_size <= UINT16_MAX);
244 h.id_str_size = cpu_to_be16(id_str_size);
245 h.name_size = cpu_to_be16(name_size);
246 offset = ROUND_UP(offset, 8);
247
248 ret = bdrv_pwrite(bs->file, offset, &h, sizeof(h));
249 if (ret < 0) {
250 goto fail;
251 }
252 offset += sizeof(h);
253
254 ret = bdrv_pwrite(bs->file, offset, &extra, sizeof(extra));
255 if (ret < 0) {
256 goto fail;
257 }
258 offset += sizeof(extra);
259
260 if (sn->extra_data_size > sizeof(extra)) {
261 size_t unknown_extra_data_size =
262 sn->extra_data_size - sizeof(extra);
263
264 /* qcow2_read_snapshots() ensures no unbounded allocation */
265 assert(unknown_extra_data_size <= BDRV_REQUEST_MAX_BYTES);
266 assert(sn->unknown_extra_data);
267
268 ret = bdrv_pwrite(bs->file, offset, sn->unknown_extra_data,
269 unknown_extra_data_size);
270 if (ret < 0) {
271 goto fail;
272 }
273 offset += unknown_extra_data_size;
274 }
275
276 ret = bdrv_pwrite(bs->file, offset, sn->id_str, id_str_size);
277 if (ret < 0) {
278 goto fail;
279 }
280 offset += id_str_size;
281
282 ret = bdrv_pwrite(bs->file, offset, sn->name, name_size);
283 if (ret < 0) {
284 goto fail;
285 }
286 offset += name_size;
287 }
288
289 /*
290 * Update the header to point to the new snapshot table. This requires the
291 * new table and its refcounts to be stable on disk.
292 */
293 ret = bdrv_flush(bs);
294 if (ret < 0) {
295 goto fail;
296 }
297
298 QEMU_BUILD_BUG_ON(offsetof(QCowHeader, snapshots_offset) !=
299 endof(QCowHeader, nb_snapshots));
300
301 header_data.nb_snapshots = cpu_to_be32(s->nb_snapshots);
302 header_data.snapshots_offset = cpu_to_be64(snapshots_offset);
303
304 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, nb_snapshots),
305 &header_data, sizeof(header_data));
306 if (ret < 0) {
307 goto fail;
308 }
309
310 /* free the old snapshot table */
311 qcow2_free_clusters(bs, s->snapshots_offset, s->snapshots_size,
312 QCOW2_DISCARD_SNAPSHOT);
313 s->snapshots_offset = snapshots_offset;
314 s->snapshots_size = snapshots_size;
315 return 0;
316
317 fail:
318 if (snapshots_offset > 0) {
319 qcow2_free_clusters(bs, snapshots_offset, snapshots_size,
320 QCOW2_DISCARD_ALWAYS);
321 }
322 return ret;
323 }
324
325 int coroutine_fn qcow2_check_read_snapshot_table(BlockDriverState *bs,
326 BdrvCheckResult *result,
327 BdrvCheckMode fix)
328 {
329 BDRVQcow2State *s = bs->opaque;
330 Error *local_err = NULL;
331 int ret;
332 struct {
333 uint32_t nb_snapshots;
334 uint64_t snapshots_offset;
335 } QEMU_PACKED snapshot_table_pointer;
336
337 /* qcow2_do_open() discards this information in check mode */
338 ret = bdrv_pread(bs->file, offsetof(QCowHeader, nb_snapshots),
339 &snapshot_table_pointer, sizeof(snapshot_table_pointer));
340 if (ret < 0) {
341 result->check_errors++;
342 fprintf(stderr, "ERROR failed to read the snapshot table pointer from "
343 "the image header: %s\n", strerror(-ret));
344 return ret;
345 }
346
347 s->snapshots_offset = be64_to_cpu(snapshot_table_pointer.snapshots_offset);
348 s->nb_snapshots = be32_to_cpu(snapshot_table_pointer.nb_snapshots);
349
350 ret = qcow2_validate_table(bs, s->snapshots_offset, s->nb_snapshots,
351 sizeof(QCowSnapshotHeader),
352 sizeof(QCowSnapshotHeader) * QCOW_MAX_SNAPSHOTS,
353 "snapshot table", &local_err);
354 if (ret < 0) {
355 result->check_errors++;
356 error_reportf_err(local_err, "ERROR ");
357
358 /* We did not read the snapshot table, so invalidate this information */
359 s->snapshots_offset = 0;
360 s->nb_snapshots = 0;
361
362 return ret;
363 }
364
365 qemu_co_mutex_unlock(&s->lock);
366 ret = qcow2_read_snapshots(bs, &local_err);
367 qemu_co_mutex_lock(&s->lock);
368 if (ret < 0) {
369 result->check_errors++;
370 error_reportf_err(local_err,
371 "ERROR failed to read the snapshot table: ");
372
373 /* We did not read the snapshot table, so invalidate this information */
374 s->snapshots_offset = 0;
375 s->nb_snapshots = 0;
376
377 return ret;
378 }
379
380 return 0;
381 }
382
383 static void find_new_snapshot_id(BlockDriverState *bs,
384 char *id_str, int id_str_size)
385 {
386 BDRVQcow2State *s = bs->opaque;
387 QCowSnapshot *sn;
388 int i;
389 unsigned long id, id_max = 0;
390
391 for(i = 0; i < s->nb_snapshots; i++) {
392 sn = s->snapshots + i;
393 id = strtoul(sn->id_str, NULL, 10);
394 if (id > id_max)
395 id_max = id;
396 }
397 snprintf(id_str, id_str_size, "%lu", id_max + 1);
398 }
399
400 static int find_snapshot_by_id_and_name(BlockDriverState *bs,
401 const char *id,
402 const char *name)
403 {
404 BDRVQcow2State *s = bs->opaque;
405 int i;
406
407 if (id && name) {
408 for (i = 0; i < s->nb_snapshots; i++) {
409 if (!strcmp(s->snapshots[i].id_str, id) &&
410 !strcmp(s->snapshots[i].name, name)) {
411 return i;
412 }
413 }
414 } else if (id) {
415 for (i = 0; i < s->nb_snapshots; i++) {
416 if (!strcmp(s->snapshots[i].id_str, id)) {
417 return i;
418 }
419 }
420 } else if (name) {
421 for (i = 0; i < s->nb_snapshots; i++) {
422 if (!strcmp(s->snapshots[i].name, name)) {
423 return i;
424 }
425 }
426 }
427
428 return -1;
429 }
430
431 static int find_snapshot_by_id_or_name(BlockDriverState *bs,
432 const char *id_or_name)
433 {
434 int ret;
435
436 ret = find_snapshot_by_id_and_name(bs, id_or_name, NULL);
437 if (ret >= 0) {
438 return ret;
439 }
440 return find_snapshot_by_id_and_name(bs, NULL, id_or_name);
441 }
442
443 /* if no id is provided, a new one is constructed */
444 int qcow2_snapshot_create(BlockDriverState *bs, QEMUSnapshotInfo *sn_info)
445 {
446 BDRVQcow2State *s = bs->opaque;
447 QCowSnapshot *new_snapshot_list = NULL;
448 QCowSnapshot *old_snapshot_list = NULL;
449 QCowSnapshot sn1, *sn = &sn1;
450 int i, ret;
451 uint64_t *l1_table = NULL;
452 int64_t l1_table_offset;
453
454 if (s->nb_snapshots >= QCOW_MAX_SNAPSHOTS) {
455 return -EFBIG;
456 }
457
458 if (has_data_file(bs)) {
459 return -ENOTSUP;
460 }
461
462 memset(sn, 0, sizeof(*sn));
463
464 /* Generate an ID */
465 find_new_snapshot_id(bs, sn_info->id_str, sizeof(sn_info->id_str));
466
467 /* Populate sn with passed data */
468 sn->id_str = g_strdup(sn_info->id_str);
469 sn->name = g_strdup(sn_info->name);
470
471 sn->disk_size = bs->total_sectors * BDRV_SECTOR_SIZE;
472 sn->vm_state_size = sn_info->vm_state_size;
473 sn->date_sec = sn_info->date_sec;
474 sn->date_nsec = sn_info->date_nsec;
475 sn->vm_clock_nsec = sn_info->vm_clock_nsec;
476 sn->extra_data_size = sizeof(QCowSnapshotExtraData);
477
478 /* Allocate the L1 table of the snapshot and copy the current one there. */
479 l1_table_offset = qcow2_alloc_clusters(bs, s->l1_size * sizeof(uint64_t));
480 if (l1_table_offset < 0) {
481 ret = l1_table_offset;
482 goto fail;
483 }
484
485 sn->l1_table_offset = l1_table_offset;
486 sn->l1_size = s->l1_size;
487
488 l1_table = g_try_new(uint64_t, s->l1_size);
489 if (s->l1_size && l1_table == NULL) {
490 ret = -ENOMEM;
491 goto fail;
492 }
493
494 for(i = 0; i < s->l1_size; i++) {
495 l1_table[i] = cpu_to_be64(s->l1_table[i]);
496 }
497
498 ret = qcow2_pre_write_overlap_check(bs, 0, sn->l1_table_offset,
499 s->l1_size * sizeof(uint64_t), false);
500 if (ret < 0) {
501 goto fail;
502 }
503
504 ret = bdrv_pwrite(bs->file, sn->l1_table_offset, l1_table,
505 s->l1_size * sizeof(uint64_t));
506 if (ret < 0) {
507 goto fail;
508 }
509
510 g_free(l1_table);
511 l1_table = NULL;
512
513 /*
514 * Increase the refcounts of all clusters and make sure everything is
515 * stable on disk before updating the snapshot table to contain a pointer
516 * to the new L1 table.
517 */
518 ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 1);
519 if (ret < 0) {
520 goto fail;
521 }
522
523 /* Append the new snapshot to the snapshot list */
524 new_snapshot_list = g_new(QCowSnapshot, s->nb_snapshots + 1);
525 if (s->snapshots) {
526 memcpy(new_snapshot_list, s->snapshots,
527 s->nb_snapshots * sizeof(QCowSnapshot));
528 old_snapshot_list = s->snapshots;
529 }
530 s->snapshots = new_snapshot_list;
531 s->snapshots[s->nb_snapshots++] = *sn;
532
533 ret = qcow2_write_snapshots(bs);
534 if (ret < 0) {
535 g_free(s->snapshots);
536 s->snapshots = old_snapshot_list;
537 s->nb_snapshots--;
538 goto fail;
539 }
540
541 g_free(old_snapshot_list);
542
543 /* The VM state isn't needed any more in the active L1 table; in fact, it
544 * hurts by causing expensive COW for the next snapshot. */
545 qcow2_cluster_discard(bs, qcow2_vm_state_offset(s),
546 ROUND_UP(sn->vm_state_size, s->cluster_size),
547 QCOW2_DISCARD_NEVER, false);
548
549 #ifdef DEBUG_ALLOC
550 {
551 BdrvCheckResult result = {0};
552 qcow2_check_refcounts(bs, &result, 0);
553 }
554 #endif
555 return 0;
556
557 fail:
558 g_free(sn->id_str);
559 g_free(sn->name);
560 g_free(l1_table);
561
562 return ret;
563 }
564
565 /* copy the snapshot 'snapshot_name' into the current disk image */
566 int qcow2_snapshot_goto(BlockDriverState *bs, const char *snapshot_id)
567 {
568 BDRVQcow2State *s = bs->opaque;
569 QCowSnapshot *sn;
570 Error *local_err = NULL;
571 int i, snapshot_index;
572 int cur_l1_bytes, sn_l1_bytes;
573 int ret;
574 uint64_t *sn_l1_table = NULL;
575
576 if (has_data_file(bs)) {
577 return -ENOTSUP;
578 }
579
580 /* Search the snapshot */
581 snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id);
582 if (snapshot_index < 0) {
583 return -ENOENT;
584 }
585 sn = &s->snapshots[snapshot_index];
586
587 ret = qcow2_validate_table(bs, sn->l1_table_offset, sn->l1_size,
588 sizeof(uint64_t), QCOW_MAX_L1_SIZE,
589 "Snapshot L1 table", &local_err);
590 if (ret < 0) {
591 error_report_err(local_err);
592 goto fail;
593 }
594
595 if (sn->disk_size != bs->total_sectors * BDRV_SECTOR_SIZE) {
596 error_report("qcow2: Loading snapshots with different disk "
597 "size is not implemented");
598 ret = -ENOTSUP;
599 goto fail;
600 }
601
602 /*
603 * Make sure that the current L1 table is big enough to contain the whole
604 * L1 table of the snapshot. If the snapshot L1 table is smaller, the
605 * current one must be padded with zeros.
606 */
607 ret = qcow2_grow_l1_table(bs, sn->l1_size, true);
608 if (ret < 0) {
609 goto fail;
610 }
611
612 cur_l1_bytes = s->l1_size * sizeof(uint64_t);
613 sn_l1_bytes = sn->l1_size * sizeof(uint64_t);
614
615 /*
616 * Copy the snapshot L1 table to the current L1 table.
617 *
618 * Before overwriting the old current L1 table on disk, make sure to
619 * increase all refcounts for the clusters referenced by the new one.
620 * Decrease the refcount referenced by the old one only when the L1
621 * table is overwritten.
622 */
623 sn_l1_table = g_try_malloc0(cur_l1_bytes);
624 if (cur_l1_bytes && sn_l1_table == NULL) {
625 ret = -ENOMEM;
626 goto fail;
627 }
628
629 ret = bdrv_pread(bs->file, sn->l1_table_offset,
630 sn_l1_table, sn_l1_bytes);
631 if (ret < 0) {
632 goto fail;
633 }
634
635 ret = qcow2_update_snapshot_refcount(bs, sn->l1_table_offset,
636 sn->l1_size, 1);
637 if (ret < 0) {
638 goto fail;
639 }
640
641 ret = qcow2_pre_write_overlap_check(bs, QCOW2_OL_ACTIVE_L1,
642 s->l1_table_offset, cur_l1_bytes,
643 false);
644 if (ret < 0) {
645 goto fail;
646 }
647
648 ret = bdrv_pwrite_sync(bs->file, s->l1_table_offset, sn_l1_table,
649 cur_l1_bytes);
650 if (ret < 0) {
651 goto fail;
652 }
653
654 /*
655 * Decrease refcount of clusters of current L1 table.
656 *
657 * At this point, the in-memory s->l1_table points to the old L1 table,
658 * whereas on disk we already have the new one.
659 *
660 * qcow2_update_snapshot_refcount special cases the current L1 table to use
661 * the in-memory data instead of really using the offset to load a new one,
662 * which is why this works.
663 */
664 ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset,
665 s->l1_size, -1);
666
667 /*
668 * Now update the in-memory L1 table to be in sync with the on-disk one. We
669 * need to do this even if updating refcounts failed.
670 */
671 for(i = 0;i < s->l1_size; i++) {
672 s->l1_table[i] = be64_to_cpu(sn_l1_table[i]);
673 }
674
675 if (ret < 0) {
676 goto fail;
677 }
678
679 g_free(sn_l1_table);
680 sn_l1_table = NULL;
681
682 /*
683 * Update QCOW_OFLAG_COPIED in the active L1 table (it may have changed
684 * when we decreased the refcount of the old snapshot.
685 */
686 ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 0);
687 if (ret < 0) {
688 goto fail;
689 }
690
691 #ifdef DEBUG_ALLOC
692 {
693 BdrvCheckResult result = {0};
694 qcow2_check_refcounts(bs, &result, 0);
695 }
696 #endif
697 return 0;
698
699 fail:
700 g_free(sn_l1_table);
701 return ret;
702 }
703
704 int qcow2_snapshot_delete(BlockDriverState *bs,
705 const char *snapshot_id,
706 const char *name,
707 Error **errp)
708 {
709 BDRVQcow2State *s = bs->opaque;
710 QCowSnapshot sn;
711 int snapshot_index, ret;
712
713 if (has_data_file(bs)) {
714 return -ENOTSUP;
715 }
716
717 /* Search the snapshot */
718 snapshot_index = find_snapshot_by_id_and_name(bs, snapshot_id, name);
719 if (snapshot_index < 0) {
720 error_setg(errp, "Can't find the snapshot");
721 return -ENOENT;
722 }
723 sn = s->snapshots[snapshot_index];
724
725 ret = qcow2_validate_table(bs, sn.l1_table_offset, sn.l1_size,
726 sizeof(uint64_t), QCOW_MAX_L1_SIZE,
727 "Snapshot L1 table", errp);
728 if (ret < 0) {
729 return ret;
730 }
731
732 /* Remove it from the snapshot list */
733 memmove(s->snapshots + snapshot_index,
734 s->snapshots + snapshot_index + 1,
735 (s->nb_snapshots - snapshot_index - 1) * sizeof(sn));
736 s->nb_snapshots--;
737 ret = qcow2_write_snapshots(bs);
738 if (ret < 0) {
739 error_setg_errno(errp, -ret,
740 "Failed to remove snapshot from snapshot list");
741 return ret;
742 }
743
744 /*
745 * The snapshot is now unused, clean up. If we fail after this point, we
746 * won't recover but just leak clusters.
747 */
748 g_free(sn.unknown_extra_data);
749 g_free(sn.id_str);
750 g_free(sn.name);
751
752 /*
753 * Now decrease the refcounts of clusters referenced by the snapshot and
754 * free the L1 table.
755 */
756 ret = qcow2_update_snapshot_refcount(bs, sn.l1_table_offset,
757 sn.l1_size, -1);
758 if (ret < 0) {
759 error_setg_errno(errp, -ret, "Failed to free the cluster and L1 table");
760 return ret;
761 }
762 qcow2_free_clusters(bs, sn.l1_table_offset, sn.l1_size * sizeof(uint64_t),
763 QCOW2_DISCARD_SNAPSHOT);
764
765 /* must update the copied flag on the current cluster offsets */
766 ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 0);
767 if (ret < 0) {
768 error_setg_errno(errp, -ret,
769 "Failed to update snapshot status in disk");
770 return ret;
771 }
772
773 #ifdef DEBUG_ALLOC
774 {
775 BdrvCheckResult result = {0};
776 qcow2_check_refcounts(bs, &result, 0);
777 }
778 #endif
779 return 0;
780 }
781
782 int qcow2_snapshot_list(BlockDriverState *bs, QEMUSnapshotInfo **psn_tab)
783 {
784 BDRVQcow2State *s = bs->opaque;
785 QEMUSnapshotInfo *sn_tab, *sn_info;
786 QCowSnapshot *sn;
787 int i;
788
789 if (has_data_file(bs)) {
790 return -ENOTSUP;
791 }
792 if (!s->nb_snapshots) {
793 *psn_tab = NULL;
794 return s->nb_snapshots;
795 }
796
797 sn_tab = g_new0(QEMUSnapshotInfo, s->nb_snapshots);
798 for(i = 0; i < s->nb_snapshots; i++) {
799 sn_info = sn_tab + i;
800 sn = s->snapshots + i;
801 pstrcpy(sn_info->id_str, sizeof(sn_info->id_str),
802 sn->id_str);
803 pstrcpy(sn_info->name, sizeof(sn_info->name),
804 sn->name);
805 sn_info->vm_state_size = sn->vm_state_size;
806 sn_info->date_sec = sn->date_sec;
807 sn_info->date_nsec = sn->date_nsec;
808 sn_info->vm_clock_nsec = sn->vm_clock_nsec;
809 }
810 *psn_tab = sn_tab;
811 return s->nb_snapshots;
812 }
813
814 int qcow2_snapshot_load_tmp(BlockDriverState *bs,
815 const char *snapshot_id,
816 const char *name,
817 Error **errp)
818 {
819 int i, snapshot_index;
820 BDRVQcow2State *s = bs->opaque;
821 QCowSnapshot *sn;
822 uint64_t *new_l1_table;
823 int new_l1_bytes;
824 int ret;
825
826 assert(bs->read_only);
827
828 /* Search the snapshot */
829 snapshot_index = find_snapshot_by_id_and_name(bs, snapshot_id, name);
830 if (snapshot_index < 0) {
831 error_setg(errp,
832 "Can't find snapshot");
833 return -ENOENT;
834 }
835 sn = &s->snapshots[snapshot_index];
836
837 /* Allocate and read in the snapshot's L1 table */
838 ret = qcow2_validate_table(bs, sn->l1_table_offset, sn->l1_size,
839 sizeof(uint64_t), QCOW_MAX_L1_SIZE,
840 "Snapshot L1 table", errp);
841 if (ret < 0) {
842 return ret;
843 }
844 new_l1_bytes = sn->l1_size * sizeof(uint64_t);
845 new_l1_table = qemu_try_blockalign(bs->file->bs,
846 ROUND_UP(new_l1_bytes, 512));
847 if (new_l1_table == NULL) {
848 return -ENOMEM;
849 }
850
851 ret = bdrv_pread(bs->file, sn->l1_table_offset,
852 new_l1_table, new_l1_bytes);
853 if (ret < 0) {
854 error_setg(errp, "Failed to read l1 table for snapshot");
855 qemu_vfree(new_l1_table);
856 return ret;
857 }
858
859 /* Switch the L1 table */
860 qemu_vfree(s->l1_table);
861
862 s->l1_size = sn->l1_size;
863 s->l1_table_offset = sn->l1_table_offset;
864 s->l1_table = new_l1_table;
865
866 for(i = 0;i < s->l1_size; i++) {
867 be64_to_cpus(&s->l1_table[i]);
868 }
869
870 return 0;
871 }