qcow2-snapshot.c 21.1 KB
Newer Older
K
Kevin Wolf 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * Block driver for the QCOW version 2 format
 *
 * Copyright (c) 2004-2006 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

#include "qemu-common.h"
26
#include "block/block_int.h"
K
Kevin Wolf 已提交
27 28
#include "block/qcow2.h"

29
typedef struct QEMU_PACKED QCowSnapshotHeader {
K
Kevin Wolf 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    /* header is 8 byte aligned */
    uint64_t l1_table_offset;

    uint32_t l1_size;
    uint16_t id_str_size;
    uint16_t name_size;

    uint32_t date_sec;
    uint32_t date_nsec;

    uint64_t vm_clock_nsec;

    uint32_t vm_state_size;
    uint32_t extra_data_size; /* for extension */
    /* extra data follows */
    /* id_str follows */
    /* name follows  */
} QCowSnapshotHeader;

K
Kevin Wolf 已提交
49 50
typedef struct QEMU_PACKED QCowSnapshotExtraData {
    uint64_t vm_state_size_large;
51
    uint64_t disk_size;
K
Kevin Wolf 已提交
52 53
} QCowSnapshotExtraData;

K
Kevin Wolf 已提交
54
void qcow2_free_snapshots(BlockDriverState *bs)
K
Kevin Wolf 已提交
55 56 57 58 59
{
    BDRVQcowState *s = bs->opaque;
    int i;

    for(i = 0; i < s->nb_snapshots; i++) {
60 61
        g_free(s->snapshots[i].name);
        g_free(s->snapshots[i].id_str);
K
Kevin Wolf 已提交
62
    }
63
    g_free(s->snapshots);
K
Kevin Wolf 已提交
64 65 66 67
    s->snapshots = NULL;
    s->nb_snapshots = 0;
}

K
Kevin Wolf 已提交
68
int qcow2_read_snapshots(BlockDriverState *bs)
K
Kevin Wolf 已提交
69 70 71
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshotHeader h;
K
Kevin Wolf 已提交
72
    QCowSnapshotExtraData extra;
K
Kevin Wolf 已提交
73 74 75 76
    QCowSnapshot *sn;
    int i, id_str_size, name_size;
    int64_t offset;
    uint32_t extra_data_size;
77
    int ret;
K
Kevin Wolf 已提交
78 79 80 81 82 83 84 85

    if (!s->nb_snapshots) {
        s->snapshots = NULL;
        s->snapshots_size = 0;
        return 0;
    }

    offset = s->snapshots_offset;
86
    s->snapshots = g_malloc0(s->nb_snapshots * sizeof(QCowSnapshot));
87

K
Kevin Wolf 已提交
88
    for(i = 0; i < s->nb_snapshots; i++) {
89
        /* Read statically sized part of the snapshot header */
K
Kevin Wolf 已提交
90
        offset = align_offset(offset, 8);
91 92
        ret = bdrv_pread(bs->file, offset, &h, sizeof(h));
        if (ret < 0) {
K
Kevin Wolf 已提交
93
            goto fail;
94 95
        }

K
Kevin Wolf 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108
        offset += sizeof(h);
        sn = s->snapshots + i;
        sn->l1_table_offset = be64_to_cpu(h.l1_table_offset);
        sn->l1_size = be32_to_cpu(h.l1_size);
        sn->vm_state_size = be32_to_cpu(h.vm_state_size);
        sn->date_sec = be32_to_cpu(h.date_sec);
        sn->date_nsec = be32_to_cpu(h.date_nsec);
        sn->vm_clock_nsec = be64_to_cpu(h.vm_clock_nsec);
        extra_data_size = be32_to_cpu(h.extra_data_size);

        id_str_size = be16_to_cpu(h.id_str_size);
        name_size = be16_to_cpu(h.name_size);

K
Kevin Wolf 已提交
109 110 111 112 113 114
        /* Read extra data */
        ret = bdrv_pread(bs->file, offset, &extra,
                         MIN(sizeof(extra), extra_data_size));
        if (ret < 0) {
            goto fail;
        }
K
Kevin Wolf 已提交
115 116
        offset += extra_data_size;

K
Kevin Wolf 已提交
117 118 119 120
        if (extra_data_size >= 8) {
            sn->vm_state_size = be64_to_cpu(extra.vm_state_size_large);
        }

121 122 123 124 125 126
        if (extra_data_size >= 16) {
            sn->disk_size = be64_to_cpu(extra.disk_size);
        } else {
            sn->disk_size = bs->total_sectors * BDRV_SECTOR_SIZE;
        }

127
        /* Read snapshot ID */
128
        sn->id_str = g_malloc(id_str_size + 1);
129 130
        ret = bdrv_pread(bs->file, offset, sn->id_str, id_str_size);
        if (ret < 0) {
K
Kevin Wolf 已提交
131
            goto fail;
132
        }
K
Kevin Wolf 已提交
133 134 135
        offset += id_str_size;
        sn->id_str[id_str_size] = '\0';

136
        /* Read snapshot name */
137
        sn->name = g_malloc(name_size + 1);
138 139
        ret = bdrv_pread(bs->file, offset, sn->name, name_size);
        if (ret < 0) {
K
Kevin Wolf 已提交
140
            goto fail;
141
        }
K
Kevin Wolf 已提交
142 143 144
        offset += name_size;
        sn->name[name_size] = '\0';
    }
145

K
Kevin Wolf 已提交
146 147
    s->snapshots_size = offset - s->snapshots_offset;
    return 0;
148 149

fail:
K
Kevin Wolf 已提交
150
    qcow2_free_snapshots(bs);
151
    return ret;
K
Kevin Wolf 已提交
152 153 154
}

/* add at the end of the file a new list of snapshots */
155
static int qcow2_write_snapshots(BlockDriverState *bs)
K
Kevin Wolf 已提交
156 157 158 159
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;
    QCowSnapshotHeader h;
K
Kevin Wolf 已提交
160
    QCowSnapshotExtraData extra;
K
Kevin Wolf 已提交
161
    int i, name_size, id_str_size, snapshots_size;
162 163 164 165
    struct {
        uint32_t nb_snapshots;
        uint64_t snapshots_offset;
    } QEMU_PACKED header_data;
K
Kevin Wolf 已提交
166
    int64_t offset, snapshots_offset;
167
    int ret;
K
Kevin Wolf 已提交
168 169 170 171 172 173 174

    /* compute the size of the snapshots */
    offset = 0;
    for(i = 0; i < s->nb_snapshots; i++) {
        sn = s->snapshots + i;
        offset = align_offset(offset, 8);
        offset += sizeof(h);
K
Kevin Wolf 已提交
175
        offset += sizeof(extra);
K
Kevin Wolf 已提交
176 177 178 179 180
        offset += strlen(sn->id_str);
        offset += strlen(sn->name);
    }
    snapshots_size = offset;

181
    /* Allocate space for the new snapshot list */
K
Kevin Wolf 已提交
182
    snapshots_offset = qcow2_alloc_clusters(bs, snapshots_size);
K
Kevin Wolf 已提交
183
    offset = snapshots_offset;
184
    if (offset < 0) {
185 186
        ret = offset;
        goto fail;
187
    }
188 189
    ret = bdrv_flush(bs);
    if (ret < 0) {
190
        goto fail;
191
    }
K
Kevin Wolf 已提交
192

193 194
    /* The snapshot list position has not yet been updated, so these clusters
     * must indeed be completely free */
M
Max Reitz 已提交
195
    ret = qcow2_pre_write_overlap_check(bs, 0, offset, snapshots_size);
196
    if (ret < 0) {
197
        goto fail;
198 199 200
    }


201
    /* Write all snapshots to the new list */
K
Kevin Wolf 已提交
202 203 204 205 206
    for(i = 0; i < s->nb_snapshots; i++) {
        sn = s->snapshots + i;
        memset(&h, 0, sizeof(h));
        h.l1_table_offset = cpu_to_be64(sn->l1_table_offset);
        h.l1_size = cpu_to_be32(sn->l1_size);
K
Kevin Wolf 已提交
207 208 209 210 211
        /* If it doesn't fit in 32 bit, older implementations should treat it
         * as a disk-only snapshot rather than truncate the VM state */
        if (sn->vm_state_size <= 0xffffffff) {
            h.vm_state_size = cpu_to_be32(sn->vm_state_size);
        }
K
Kevin Wolf 已提交
212 213 214
        h.date_sec = cpu_to_be32(sn->date_sec);
        h.date_nsec = cpu_to_be32(sn->date_nsec);
        h.vm_clock_nsec = cpu_to_be64(sn->vm_clock_nsec);
K
Kevin Wolf 已提交
215 216 217 218
        h.extra_data_size = cpu_to_be32(sizeof(extra));

        memset(&extra, 0, sizeof(extra));
        extra.vm_state_size_large = cpu_to_be64(sn->vm_state_size);
219
        extra.disk_size = cpu_to_be64(sn->disk_size);
K
Kevin Wolf 已提交
220 221 222

        id_str_size = strlen(sn->id_str);
        name_size = strlen(sn->name);
223
        assert(id_str_size <= UINT16_MAX && name_size <= UINT16_MAX);
K
Kevin Wolf 已提交
224 225 226
        h.id_str_size = cpu_to_be16(id_str_size);
        h.name_size = cpu_to_be16(name_size);
        offset = align_offset(offset, 8);
227 228 229

        ret = bdrv_pwrite(bs->file, offset, &h, sizeof(h));
        if (ret < 0) {
K
Kevin Wolf 已提交
230
            goto fail;
231
        }
K
Kevin Wolf 已提交
232
        offset += sizeof(h);
233

K
Kevin Wolf 已提交
234 235 236 237 238 239
        ret = bdrv_pwrite(bs->file, offset, &extra, sizeof(extra));
        if (ret < 0) {
            goto fail;
        }
        offset += sizeof(extra);

240 241
        ret = bdrv_pwrite(bs->file, offset, sn->id_str, id_str_size);
        if (ret < 0) {
K
Kevin Wolf 已提交
242
            goto fail;
243
        }
K
Kevin Wolf 已提交
244
        offset += id_str_size;
245 246 247

        ret = bdrv_pwrite(bs->file, offset, sn->name, name_size);
        if (ret < 0) {
K
Kevin Wolf 已提交
248
            goto fail;
249
        }
K
Kevin Wolf 已提交
250 251 252
        offset += name_size;
    }

253 254 255 256 257 258 259 260 261
    /*
     * Update the header to point to the new snapshot table. This requires the
     * new table and its refcounts to be stable on disk.
     */
    ret = bdrv_flush(bs);
    if (ret < 0) {
        goto fail;
    }

262 263 264 265 266
    QEMU_BUILD_BUG_ON(offsetof(QCowHeader, snapshots_offset) !=
        offsetof(QCowHeader, nb_snapshots) + sizeof(header_data.nb_snapshots));

    header_data.nb_snapshots        = cpu_to_be32(s->nb_snapshots);
    header_data.snapshots_offset    = cpu_to_be64(snapshots_offset);
267 268

    ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, nb_snapshots),
269
                           &header_data, sizeof(header_data));
270
    if (ret < 0) {
K
Kevin Wolf 已提交
271
        goto fail;
272
    }
K
Kevin Wolf 已提交
273 274

    /* free the old snapshot table */
275 276
    qcow2_free_clusters(bs, s->snapshots_offset, s->snapshots_size,
                        QCOW2_DISCARD_SNAPSHOT);
K
Kevin Wolf 已提交
277 278 279
    s->snapshots_offset = snapshots_offset;
    s->snapshots_size = snapshots_size;
    return 0;
280 281

fail:
282 283 284 285
    if (snapshots_offset > 0) {
        qcow2_free_clusters(bs, snapshots_offset, snapshots_size,
                            QCOW2_DISCARD_ALWAYS);
    }
286
    return ret;
K
Kevin Wolf 已提交
287 288 289 290 291 292 293
}

static void find_new_snapshot_id(BlockDriverState *bs,
                                 char *id_str, int id_str_size)
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;
294 295
    int i;
    unsigned long id, id_max = 0;
K
Kevin Wolf 已提交
296 297 298 299 300 301 302

    for(i = 0; i < s->nb_snapshots; i++) {
        sn = s->snapshots + i;
        id = strtoul(sn->id_str, NULL, 10);
        if (id > id_max)
            id_max = id;
    }
303
    snprintf(id_str, id_str_size, "%lu", id_max + 1);
K
Kevin Wolf 已提交
304 305
}

306 307 308
static int find_snapshot_by_id_and_name(BlockDriverState *bs,
                                        const char *id,
                                        const char *name)
K
Kevin Wolf 已提交
309 310 311 312
{
    BDRVQcowState *s = bs->opaque;
    int i;

313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
    if (id && name) {
        for (i = 0; i < s->nb_snapshots; i++) {
            if (!strcmp(s->snapshots[i].id_str, id) &&
                !strcmp(s->snapshots[i].name, name)) {
                return i;
            }
        }
    } else if (id) {
        for (i = 0; i < s->nb_snapshots; i++) {
            if (!strcmp(s->snapshots[i].id_str, id)) {
                return i;
            }
        }
    } else if (name) {
        for (i = 0; i < s->nb_snapshots; i++) {
            if (!strcmp(s->snapshots[i].name, name)) {
                return i;
            }
        }
K
Kevin Wolf 已提交
332
    }
333

K
Kevin Wolf 已提交
334 335 336
    return -1;
}

337 338
static int find_snapshot_by_id_or_name(BlockDriverState *bs,
                                       const char *id_or_name)
K
Kevin Wolf 已提交
339
{
340
    int ret;
K
Kevin Wolf 已提交
341

342 343
    ret = find_snapshot_by_id_and_name(bs, id_or_name, NULL);
    if (ret >= 0) {
K
Kevin Wolf 已提交
344 345
        return ret;
    }
346
    return find_snapshot_by_id_and_name(bs, NULL, id_or_name);
K
Kevin Wolf 已提交
347 348 349
}

/* if no id is provided, a new one is constructed */
K
Kevin Wolf 已提交
350
int qcow2_snapshot_create(BlockDriverState *bs, QEMUSnapshotInfo *sn_info)
K
Kevin Wolf 已提交
351 352
{
    BDRVQcowState *s = bs->opaque;
353 354 355
    QCowSnapshot *new_snapshot_list = NULL;
    QCowSnapshot *old_snapshot_list = NULL;
    QCowSnapshot sn1, *sn = &sn1;
K
Kevin Wolf 已提交
356 357
    int i, ret;
    uint64_t *l1_table = NULL;
358
    int64_t l1_table_offset;
K
Kevin Wolf 已提交
359 360 361

    memset(sn, 0, sizeof(*sn));

362
    /* Generate an ID if it wasn't passed */
K
Kevin Wolf 已提交
363 364 365 366
    if (sn_info->id_str[0] == '\0') {
        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) {
369
        return -EEXIST;
370
    }
K
Kevin Wolf 已提交
371

372
    /* Populate sn with passed data */
373 374
    sn->id_str = g_strdup(sn_info->id_str);
    sn->name = g_strdup(sn_info->name);
375

376
    sn->disk_size = bs->total_sectors * BDRV_SECTOR_SIZE;
K
Kevin Wolf 已提交
377 378 379 380 381
    sn->vm_state_size = sn_info->vm_state_size;
    sn->date_sec = sn_info->date_sec;
    sn->date_nsec = sn_info->date_nsec;
    sn->vm_clock_nsec = sn_info->vm_clock_nsec;

382
    /* Allocate the L1 table of the snapshot and copy the current one there. */
383 384
    l1_table_offset = qcow2_alloc_clusters(bs, s->l1_size * sizeof(uint64_t));
    if (l1_table_offset < 0) {
385
        ret = l1_table_offset;
386 387 388 389
        goto fail;
    }

    sn->l1_table_offset = l1_table_offset;
K
Kevin Wolf 已提交
390 391
    sn->l1_size = s->l1_size;

392
    l1_table = g_malloc(s->l1_size * sizeof(uint64_t));
K
Kevin Wolf 已提交
393 394 395
    for(i = 0; i < s->l1_size; i++) {
        l1_table[i] = cpu_to_be64(s->l1_table[i]);
    }
396

M
Max Reitz 已提交
397 398
    ret = qcow2_pre_write_overlap_check(bs, 0, sn->l1_table_offset,
                                        s->l1_size * sizeof(uint64_t));
399 400 401 402
    if (ret < 0) {
        goto fail;
    }

403 404 405
    ret = bdrv_pwrite(bs->file, sn->l1_table_offset, l1_table,
                      s->l1_size * sizeof(uint64_t));
    if (ret < 0) {
K
Kevin Wolf 已提交
406
        goto fail;
407 408
    }

409
    g_free(l1_table);
K
Kevin Wolf 已提交
410 411
    l1_table = NULL;

412 413 414 415 416 417 418 419 420 421 422 423
    /*
     * Increase the refcounts of all clusters and make sure everything is
     * stable on disk before updating the snapshot table to contain a pointer
     * to the new L1 table.
     */
    ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 1);
    if (ret < 0) {
        goto fail;
    }

    /* Append the new snapshot to the snapshot list */
    new_snapshot_list = g_malloc((s->nb_snapshots + 1) * sizeof(QCowSnapshot));
K
Kevin Wolf 已提交
424
    if (s->snapshots) {
425 426 427
        memcpy(new_snapshot_list, s->snapshots,
               s->nb_snapshots * sizeof(QCowSnapshot));
        old_snapshot_list = s->snapshots;
K
Kevin Wolf 已提交
428
    }
429
    s->snapshots = new_snapshot_list;
K
Kevin Wolf 已提交
430 431
    s->snapshots[s->nb_snapshots++] = *sn;

432 433 434 435
    ret = qcow2_write_snapshots(bs);
    if (ret < 0) {
        g_free(s->snapshots);
        s->snapshots = old_snapshot_list;
436
        s->nb_snapshots--;
K
Kevin Wolf 已提交
437
        goto fail;
438 439 440 441
    }

    g_free(old_snapshot_list);

442 443 444 445 446 447 448
    /* The VM state isn't needed any more in the active L1 table; in fact, it
     * hurts by causing expensive COW for the next snapshot. */
    qcow2_discard_clusters(bs, qcow2_vm_state_offset(s),
                           align_offset(sn->vm_state_size, s->cluster_size)
                                >> BDRV_SECTOR_BITS,
                           QCOW2_DISCARD_NEVER);

K
Kevin Wolf 已提交
449
#ifdef DEBUG_ALLOC
P
Philipp Hahn 已提交
450 451
    {
      BdrvCheckResult result = {0};
452
      qcow2_check_refcounts(bs, &result, 0);
P
Philipp Hahn 已提交
453
    }
K
Kevin Wolf 已提交
454 455
#endif
    return 0;
456 457 458

fail:
    g_free(sn->id_str);
459 460
    g_free(sn->name);
    g_free(l1_table);
461 462

    return ret;
K
Kevin Wolf 已提交
463 464 465
}

/* copy the snapshot 'snapshot_name' into the current disk image */
K
Kevin Wolf 已提交
466
int qcow2_snapshot_goto(BlockDriverState *bs, const char *snapshot_id)
K
Kevin Wolf 已提交
467 468 469
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;
470 471
    int i, snapshot_index;
    int cur_l1_bytes, sn_l1_bytes;
472
    int ret;
473
    uint64_t *sn_l1_table = NULL;
K
Kevin Wolf 已提交
474

475
    /* Search the snapshot */
K
Kevin Wolf 已提交
476
    snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id);
477
    if (snapshot_index < 0) {
K
Kevin Wolf 已提交
478
        return -ENOENT;
479
    }
K
Kevin Wolf 已提交
480 481
    sn = &s->snapshots[snapshot_index];

482 483 484 485 486 487 488
    if (sn->disk_size != bs->total_sectors * BDRV_SECTOR_SIZE) {
        error_report("qcow2: Loading snapshots with different disk "
            "size is not implemented");
        ret = -ENOTSUP;
        goto fail;
    }

489 490 491 492 493 494 495
    /*
     * Make sure that the current L1 table is big enough to contain the whole
     * L1 table of the snapshot. If the snapshot L1 table is smaller, the
     * current one must be padded with zeros.
     */
    ret = qcow2_grow_l1_table(bs, sn->l1_size, true);
    if (ret < 0) {
K
Kevin Wolf 已提交
496
        goto fail;
497
    }
K
Kevin Wolf 已提交
498

499 500 501
    cur_l1_bytes = s->l1_size * sizeof(uint64_t);
    sn_l1_bytes = sn->l1_size * sizeof(uint64_t);

502 503 504 505 506
    /*
     * Copy the snapshot L1 table to the current L1 table.
     *
     * Before overwriting the old current L1 table on disk, make sure to
     * increase all refcounts for the clusters referenced by the new one.
507 508
     * Decrease the refcount referenced by the old one only when the L1
     * table is overwritten.
509
     */
510 511 512 513 514 515 516 517 518
    sn_l1_table = g_malloc0(cur_l1_bytes);

    ret = bdrv_pread(bs->file, sn->l1_table_offset, sn_l1_table, sn_l1_bytes);
    if (ret < 0) {
        goto fail;
    }

    ret = qcow2_update_snapshot_refcount(bs, sn->l1_table_offset,
                                         sn->l1_size, 1);
519
    if (ret < 0) {
K
Kevin Wolf 已提交
520
        goto fail;
521 522
    }

M
Max Reitz 已提交
523 524
    ret = qcow2_pre_write_overlap_check(bs, QCOW2_OL_ACTIVE_L1,
                                        s->l1_table_offset, cur_l1_bytes);
525 526 527 528
    if (ret < 0) {
        goto fail;
    }

529
    ret = bdrv_pwrite_sync(bs->file, s->l1_table_offset, sn_l1_table,
530 531
                           cur_l1_bytes);
    if (ret < 0) {
K
Kevin Wolf 已提交
532
        goto fail;
533 534
    }

535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
    /*
     * Decrease refcount of clusters of current L1 table.
     *
     * At this point, the in-memory s->l1_table points to the old L1 table,
     * whereas on disk we already have the new one.
     *
     * qcow2_update_snapshot_refcount special cases the current L1 table to use
     * the in-memory data instead of really using the offset to load a new one,
     * which is why this works.
     */
    ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset,
                                         s->l1_size, -1);

    /*
     * Now update the in-memory L1 table to be in sync with the on-disk one. We
     * need to do this even if updating refcounts failed.
     */
K
Kevin Wolf 已提交
552
    for(i = 0;i < s->l1_size; i++) {
553
        s->l1_table[i] = be64_to_cpu(sn_l1_table[i]);
K
Kevin Wolf 已提交
554 555
    }

556 557 558 559 560 561 562 563 564 565 566 567
    if (ret < 0) {
        goto fail;
    }

    g_free(sn_l1_table);
    sn_l1_table = NULL;

    /*
     * Update QCOW_OFLAG_COPIED in the active L1 table (it may have changed
     * when we decreased the refcount of the old snapshot.
     */
    ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 0);
568
    if (ret < 0) {
K
Kevin Wolf 已提交
569
        goto fail;
570
    }
K
Kevin Wolf 已提交
571 572

#ifdef DEBUG_ALLOC
P
Philipp Hahn 已提交
573 574
    {
        BdrvCheckResult result = {0};
575
        qcow2_check_refcounts(bs, &result, 0);
P
Philipp Hahn 已提交
576
    }
K
Kevin Wolf 已提交
577 578
#endif
    return 0;
579 580

fail:
581
    g_free(sn_l1_table);
582
    return ret;
K
Kevin Wolf 已提交
583 584
}

585 586 587 588
int qcow2_snapshot_delete(BlockDriverState *bs,
                          const char *snapshot_id,
                          const char *name,
                          Error **errp)
K
Kevin Wolf 已提交
589 590
{
    BDRVQcowState *s = bs->opaque;
591
    QCowSnapshot sn;
K
Kevin Wolf 已提交
592 593
    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");
K
Kevin Wolf 已提交
598
        return -ENOENT;
599 600
    }
    sn = s->snapshots[snapshot_index];
K
Kevin Wolf 已提交
601

602 603 604 605 606 607 608
    /* Remove it from the snapshot list */
    memmove(s->snapshots + snapshot_index,
            s->snapshots + snapshot_index + 1,
            (s->nb_snapshots - snapshot_index - 1) * sizeof(sn));
    s->nb_snapshots--;
    ret = qcow2_write_snapshots(bs);
    if (ret < 0) {
609
        error_setg(errp, "Failed to remove snapshot from snapshot list");
K
Kevin Wolf 已提交
610
        return ret;
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
    }

    /*
     * The snapshot is now unused, clean up. If we fail after this point, we
     * won't recover but just leak clusters.
     */
    g_free(sn.id_str);
    g_free(sn.name);

    /*
     * Now decrease the refcounts of clusters referenced by the snapshot and
     * free the L1 table.
     */
    ret = qcow2_update_snapshot_refcount(bs, sn.l1_table_offset,
                                         sn.l1_size, -1);
    if (ret < 0) {
627
        error_setg(errp, "Failed to free the cluster and L1 table");
K
Kevin Wolf 已提交
628
        return ret;
629
    }
630 631
    qcow2_free_clusters(bs, sn.l1_table_offset, sn.l1_size * sizeof(uint64_t),
                        QCOW2_DISCARD_SNAPSHOT);
K
Kevin Wolf 已提交
632

633 634
    /* must update the copied flag on the current cluster offsets */
    ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 0);
K
Kevin Wolf 已提交
635
    if (ret < 0) {
636
        error_setg(errp, "Failed to update snapshot status in disk");
K
Kevin Wolf 已提交
637 638
        return ret;
    }
639

K
Kevin Wolf 已提交
640
#ifdef DEBUG_ALLOC
P
Philipp Hahn 已提交
641 642
    {
        BdrvCheckResult result = {0};
643
        qcow2_check_refcounts(bs, &result, 0);
P
Philipp Hahn 已提交
644
    }
K
Kevin Wolf 已提交
645 646 647 648
#endif
    return 0;
}

K
Kevin Wolf 已提交
649
int qcow2_snapshot_list(BlockDriverState *bs, QEMUSnapshotInfo **psn_tab)
K
Kevin Wolf 已提交
650 651 652 653 654 655 656 657 658 659 660
{
    BDRVQcowState *s = bs->opaque;
    QEMUSnapshotInfo *sn_tab, *sn_info;
    QCowSnapshot *sn;
    int i;

    if (!s->nb_snapshots) {
        *psn_tab = NULL;
        return s->nb_snapshots;
    }

661
    sn_tab = g_malloc0(s->nb_snapshots * sizeof(QEMUSnapshotInfo));
K
Kevin Wolf 已提交
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677
    for(i = 0; i < s->nb_snapshots; i++) {
        sn_info = sn_tab + i;
        sn = s->snapshots + i;
        pstrcpy(sn_info->id_str, sizeof(sn_info->id_str),
                sn->id_str);
        pstrcpy(sn_info->name, sizeof(sn_info->name),
                sn->name);
        sn_info->vm_state_size = sn->vm_state_size;
        sn_info->date_sec = sn->date_sec;
        sn_info->date_nsec = sn->date_nsec;
        sn_info->vm_clock_nsec = sn->vm_clock_nsec;
    }
    *psn_tab = sn_tab;
    return s->nb_snapshots;
}

678 679 680 681
int qcow2_snapshot_load_tmp(BlockDriverState *bs,
                            const char *snapshot_id,
                            const char *name,
                            Error **errp)
E
edison 已提交
682
{
683
    int i, snapshot_index;
E
edison 已提交
684 685
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;
686 687 688
    uint64_t *new_l1_table;
    int new_l1_bytes;
    int ret;
E
edison 已提交
689

690 691 692
    assert(bs->read_only);

    /* Search the snapshot */
693
    snapshot_index = find_snapshot_by_id_and_name(bs, snapshot_id, name);
E
edison 已提交
694
    if (snapshot_index < 0) {
695 696
        error_setg(errp,
                   "Can't find snapshot");
E
edison 已提交
697 698 699 700
        return -ENOENT;
    }
    sn = &s->snapshots[snapshot_index];

701 702 703
    /* Allocate and read in the snapshot's L1 table */
    new_l1_bytes = s->l1_size * sizeof(uint64_t);
    new_l1_table = g_malloc0(align_offset(new_l1_bytes, 512));
E
edison 已提交
704

705 706
    ret = bdrv_pread(bs->file, sn->l1_table_offset, new_l1_table, new_l1_bytes);
    if (ret < 0) {
707
        error_setg(errp, "Failed to read l1 table for snapshot");
708 709
        g_free(new_l1_table);
        return ret;
E
edison 已提交
710 711
    }

712 713 714 715 716 717 718
    /* Switch the L1 table */
    g_free(s->l1_table);

    s->l1_size = sn->l1_size;
    s->l1_table_offset = sn->l1_table_offset;
    s->l1_table = new_l1_table;

E
edison 已提交
719 720 721
    for(i = 0;i < s->l1_size; i++) {
        be64_to_cpus(&s->l1_table[i]);
    }
722

E
edison 已提交
723 724
    return 0;
}