qcow2-snapshot.c 14.2 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 26 27 28
/*
 * 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"
#include "block_int.h"
#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
void qcow2_free_snapshots(BlockDriverState *bs)
K
Kevin Wolf 已提交
50 51 52 53 54
{
    BDRVQcowState *s = bs->opaque;
    int i;

    for(i = 0; i < s->nb_snapshots; i++) {
55 56
        g_free(s->snapshots[i].name);
        g_free(s->snapshots[i].id_str);
K
Kevin Wolf 已提交
57
    }
58
    g_free(s->snapshots);
K
Kevin Wolf 已提交
59 60 61 62
    s->snapshots = NULL;
    s->nb_snapshots = 0;
}

K
Kevin Wolf 已提交
63
int qcow2_read_snapshots(BlockDriverState *bs)
K
Kevin Wolf 已提交
64 65 66 67 68 69 70
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshotHeader h;
    QCowSnapshot *sn;
    int i, id_str_size, name_size;
    int64_t offset;
    uint32_t extra_data_size;
71
    int ret;
K
Kevin Wolf 已提交
72 73 74 75 76 77 78 79

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

    offset = s->snapshots_offset;
80
    s->snapshots = g_malloc0(s->nb_snapshots * sizeof(QCowSnapshot));
81

K
Kevin Wolf 已提交
82
    for(i = 0; i < s->nb_snapshots; i++) {
83
        /* Read statically sized part of the snapshot header */
K
Kevin Wolf 已提交
84
        offset = align_offset(offset, 8);
85 86
        ret = bdrv_pread(bs->file, offset, &h, sizeof(h));
        if (ret < 0) {
K
Kevin Wolf 已提交
87
            goto fail;
88 89
        }

K
Kevin Wolf 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102
        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);

103
        /* Skip extra data */
K
Kevin Wolf 已提交
104 105
        offset += extra_data_size;

106
        /* Read snapshot ID */
107
        sn->id_str = g_malloc(id_str_size + 1);
108 109
        ret = bdrv_pread(bs->file, offset, sn->id_str, id_str_size);
        if (ret < 0) {
K
Kevin Wolf 已提交
110
            goto fail;
111
        }
K
Kevin Wolf 已提交
112 113 114
        offset += id_str_size;
        sn->id_str[id_str_size] = '\0';

115
        /* Read snapshot name */
116
        sn->name = g_malloc(name_size + 1);
117 118
        ret = bdrv_pread(bs->file, offset, sn->name, name_size);
        if (ret < 0) {
K
Kevin Wolf 已提交
119
            goto fail;
120
        }
K
Kevin Wolf 已提交
121 122 123
        offset += name_size;
        sn->name[name_size] = '\0';
    }
124

K
Kevin Wolf 已提交
125 126
    s->snapshots_size = offset - s->snapshots_offset;
    return 0;
127 128

fail:
K
Kevin Wolf 已提交
129
    qcow2_free_snapshots(bs);
130
    return ret;
K
Kevin Wolf 已提交
131 132 133
}

/* add at the end of the file a new list of snapshots */
134
static int qcow2_write_snapshots(BlockDriverState *bs)
K
Kevin Wolf 已提交
135 136 137 138 139 140 141 142
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;
    QCowSnapshotHeader h;
    int i, name_size, id_str_size, snapshots_size;
    uint64_t data64;
    uint32_t data32;
    int64_t offset, snapshots_offset;
143
    int ret;
K
Kevin Wolf 已提交
144 145 146 147 148 149 150 151 152 153 154 155

    /* 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);
        offset += strlen(sn->id_str);
        offset += strlen(sn->name);
    }
    snapshots_size = offset;

156
    /* Allocate space for the new snapshot list */
K
Kevin Wolf 已提交
157
    snapshots_offset = qcow2_alloc_clusters(bs, snapshots_size);
158
    bdrv_flush(bs->file);
K
Kevin Wolf 已提交
159
    offset = snapshots_offset;
160 161 162
    if (offset < 0) {
        return offset;
    }
K
Kevin Wolf 已提交
163

164
    /* Write all snapshots to the new list */
K
Kevin Wolf 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
    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);
        h.vm_state_size = cpu_to_be32(sn->vm_state_size);
        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);

        id_str_size = strlen(sn->id_str);
        name_size = strlen(sn->name);
        h.id_str_size = cpu_to_be16(id_str_size);
        h.name_size = cpu_to_be16(name_size);
        offset = align_offset(offset, 8);
180 181 182

        ret = bdrv_pwrite(bs->file, offset, &h, sizeof(h));
        if (ret < 0) {
K
Kevin Wolf 已提交
183
            goto fail;
184
        }
K
Kevin Wolf 已提交
185
        offset += sizeof(h);
186 187 188

        ret = bdrv_pwrite(bs->file, offset, sn->id_str, id_str_size);
        if (ret < 0) {
K
Kevin Wolf 已提交
189
            goto fail;
190
        }
K
Kevin Wolf 已提交
191
        offset += id_str_size;
192 193 194

        ret = bdrv_pwrite(bs->file, offset, sn->name, name_size);
        if (ret < 0) {
K
Kevin Wolf 已提交
195
            goto fail;
196
        }
K
Kevin Wolf 已提交
197 198 199
        offset += name_size;
    }

200 201 202 203 204 205 206 207 208 209 210
    /*
     * Update the header to point to the new snapshot table. This requires the
     * new table and its refcounts to be stable on disk.
     *
     * FIXME This should be done with a single write
     */
    ret = bdrv_flush(bs);
    if (ret < 0) {
        goto fail;
    }

K
Kevin Wolf 已提交
211
    data64 = cpu_to_be64(snapshots_offset);
212 213 214
    ret = bdrv_pwrite(bs->file, offsetof(QCowHeader, snapshots_offset),
                      &data64, sizeof(data64));
    if (ret < 0) {
K
Kevin Wolf 已提交
215
        goto fail;
216 217
    }

K
Kevin Wolf 已提交
218
    data32 = cpu_to_be32(s->nb_snapshots);
219 220 221
    ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, nb_snapshots),
                           &data32, sizeof(data32));
    if (ret < 0) {
K
Kevin Wolf 已提交
222
        goto fail;
223
    }
K
Kevin Wolf 已提交
224 225

    /* free the old snapshot table */
K
Kevin Wolf 已提交
226
    qcow2_free_clusters(bs, s->snapshots_offset, s->snapshots_size);
K
Kevin Wolf 已提交
227 228 229
    s->snapshots_offset = snapshots_offset;
    s->snapshots_size = snapshots_size;
    return 0;
230 231 232

fail:
    return ret;
K
Kevin Wolf 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
}

static void find_new_snapshot_id(BlockDriverState *bs,
                                 char *id_str, int id_str_size)
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;
    int i, id, id_max = 0;

    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;
    }
    snprintf(id_str, id_str_size, "%d", id_max + 1);
}

static int find_snapshot_by_id(BlockDriverState *bs, const char *id_str)
{
    BDRVQcowState *s = bs->opaque;
    int i;

    for(i = 0; i < s->nb_snapshots; i++) {
        if (!strcmp(s->snapshots[i].id_str, id_str))
            return i;
    }
    return -1;
}

static int find_snapshot_by_id_or_name(BlockDriverState *bs, const char *name)
{
    BDRVQcowState *s = bs->opaque;
    int i, ret;

    ret = find_snapshot_by_id(bs, name);
    if (ret >= 0)
        return ret;
    for(i = 0; i < s->nb_snapshots; i++) {
        if (!strcmp(s->snapshots[i].name, name))
            return i;
    }
    return -1;
}

/* if no id is provided, a new one is constructed */
K
Kevin Wolf 已提交
279
int qcow2_snapshot_create(BlockDriverState *bs, QEMUSnapshotInfo *sn_info)
K
Kevin Wolf 已提交
280 281 282 283 284
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *snapshots1, sn1, *sn = &sn1;
    int i, ret;
    uint64_t *l1_table = NULL;
285
    int64_t l1_table_offset;
K
Kevin Wolf 已提交
286 287 288 289 290 291 292 293 294 295 296 297

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

    if (sn_info->id_str[0] == '\0') {
        /* compute a new id */
        find_new_snapshot_id(bs, sn_info->id_str, sizeof(sn_info->id_str));
    }

    /* check that the ID is unique */
    if (find_snapshot_by_id(bs, sn_info->id_str) >= 0)
        return -ENOENT;

298
    sn->id_str = g_strdup(sn_info->id_str);
K
Kevin Wolf 已提交
299 300
    if (!sn->id_str)
        goto fail;
301
    sn->name = g_strdup(sn_info->name);
K
Kevin Wolf 已提交
302 303 304 305 306 307 308
    if (!sn->name)
        goto fail;
    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;

K
Kevin Wolf 已提交
309
    ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 1);
K
Kevin Wolf 已提交
310 311 312 313
    if (ret < 0)
        goto fail;

    /* create the L1 table of the snapshot */
314 315 316 317
    l1_table_offset = qcow2_alloc_clusters(bs, s->l1_size * sizeof(uint64_t));
    if (l1_table_offset < 0) {
        goto fail;
    }
318
    bdrv_flush(bs->file);
319 320

    sn->l1_table_offset = l1_table_offset;
K
Kevin Wolf 已提交
321 322
    sn->l1_size = s->l1_size;

323
    if (s->l1_size != 0) {
324
        l1_table = g_malloc(s->l1_size * sizeof(uint64_t));
325 326 327 328
    } else {
        l1_table = NULL;
    }

K
Kevin Wolf 已提交
329 330 331
    for(i = 0; i < s->l1_size; i++) {
        l1_table[i] = cpu_to_be64(s->l1_table[i]);
    }
332 333
    if (bdrv_pwrite_sync(bs->file, sn->l1_table_offset,
                    l1_table, s->l1_size * sizeof(uint64_t)) < 0)
K
Kevin Wolf 已提交
334
        goto fail;
335
    g_free(l1_table);
K
Kevin Wolf 已提交
336 337
    l1_table = NULL;

338
    snapshots1 = g_malloc((s->nb_snapshots + 1) * sizeof(QCowSnapshot));
K
Kevin Wolf 已提交
339 340
    if (s->snapshots) {
        memcpy(snapshots1, s->snapshots, s->nb_snapshots * sizeof(QCowSnapshot));
341
        g_free(s->snapshots);
K
Kevin Wolf 已提交
342 343 344 345
    }
    s->snapshots = snapshots1;
    s->snapshots[s->nb_snapshots++] = *sn;

346
    if (qcow2_write_snapshots(bs) < 0)
K
Kevin Wolf 已提交
347 348
        goto fail;
#ifdef DEBUG_ALLOC
P
Philipp Hahn 已提交
349 350 351 352
    {
      BdrvCheckResult result = {0};
      qcow2_check_refcounts(bs, &result);
    }
K
Kevin Wolf 已提交
353 354 355
#endif
    return 0;
 fail:
356 357
    g_free(sn->name);
    g_free(l1_table);
K
Kevin Wolf 已提交
358 359 360 361
    return -1;
}

/* copy the snapshot 'snapshot_name' into the current disk image */
K
Kevin Wolf 已提交
362
int qcow2_snapshot_goto(BlockDriverState *bs, const char *snapshot_id)
K
Kevin Wolf 已提交
363 364 365
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;
366 367
    int i, snapshot_index;
    int cur_l1_bytes, sn_l1_bytes;
K
Kevin Wolf 已提交
368 369 370 371 372 373

    snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id);
    if (snapshot_index < 0)
        return -ENOENT;
    sn = &s->snapshots[snapshot_index];

K
Kevin Wolf 已提交
374
    if (qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, -1) < 0)
K
Kevin Wolf 已提交
375 376
        goto fail;

377
    if (qcow2_grow_l1_table(bs, sn->l1_size, true) < 0)
K
Kevin Wolf 已提交
378 379
        goto fail;

380 381 382 383 384 385 386
    cur_l1_bytes = s->l1_size * sizeof(uint64_t);
    sn_l1_bytes = sn->l1_size * sizeof(uint64_t);

    if (cur_l1_bytes > sn_l1_bytes) {
        memset(s->l1_table + sn->l1_size, 0, cur_l1_bytes - sn_l1_bytes);
    }

K
Kevin Wolf 已提交
387
    /* copy the snapshot l1 table to the current l1 table */
388
    if (bdrv_pread(bs->file, sn->l1_table_offset,
389
                   s->l1_table, sn_l1_bytes) < 0)
K
Kevin Wolf 已提交
390
        goto fail;
391
    if (bdrv_pwrite_sync(bs->file, s->l1_table_offset,
392
                    s->l1_table, cur_l1_bytes) < 0)
K
Kevin Wolf 已提交
393 394 395 396 397
        goto fail;
    for(i = 0;i < s->l1_size; i++) {
        be64_to_cpus(&s->l1_table[i]);
    }

K
Kevin Wolf 已提交
398
    if (qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 1) < 0)
K
Kevin Wolf 已提交
399 400 401
        goto fail;

#ifdef DEBUG_ALLOC
P
Philipp Hahn 已提交
402 403 404 405
    {
        BdrvCheckResult result = {0};
        qcow2_check_refcounts(bs, &result);
    }
K
Kevin Wolf 已提交
406 407 408 409 410 411
#endif
    return 0;
 fail:
    return -EIO;
}

K
Kevin Wolf 已提交
412
int qcow2_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
K
Kevin Wolf 已提交
413 414 415 416 417 418 419 420 421 422
{
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;
    int snapshot_index, ret;

    snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_id);
    if (snapshot_index < 0)
        return -ENOENT;
    sn = &s->snapshots[snapshot_index];

K
Kevin Wolf 已提交
423
    ret = qcow2_update_snapshot_refcount(bs, sn->l1_table_offset, sn->l1_size, -1);
K
Kevin Wolf 已提交
424 425 426
    if (ret < 0)
        return ret;
    /* must update the copied flag on the current cluster offsets */
K
Kevin Wolf 已提交
427
    ret = qcow2_update_snapshot_refcount(bs, s->l1_table_offset, s->l1_size, 0);
K
Kevin Wolf 已提交
428 429
    if (ret < 0)
        return ret;
K
Kevin Wolf 已提交
430
    qcow2_free_clusters(bs, sn->l1_table_offset, sn->l1_size * sizeof(uint64_t));
K
Kevin Wolf 已提交
431

432 433
    g_free(sn->id_str);
    g_free(sn->name);
K
Kevin Wolf 已提交
434 435
    memmove(sn, sn + 1, (s->nb_snapshots - snapshot_index - 1) * sizeof(*sn));
    s->nb_snapshots--;
436
    ret = qcow2_write_snapshots(bs);
K
Kevin Wolf 已提交
437 438 439 440 441
    if (ret < 0) {
        /* XXX: restore snapshot if error ? */
        return ret;
    }
#ifdef DEBUG_ALLOC
P
Philipp Hahn 已提交
442 443 444 445
    {
        BdrvCheckResult result = {0};
        qcow2_check_refcounts(bs, &result);
    }
K
Kevin Wolf 已提交
446 447 448 449
#endif
    return 0;
}

K
Kevin Wolf 已提交
450
int qcow2_snapshot_list(BlockDriverState *bs, QEMUSnapshotInfo **psn_tab)
K
Kevin Wolf 已提交
451 452 453 454 455 456 457 458 459 460 461
{
    BDRVQcowState *s = bs->opaque;
    QEMUSnapshotInfo *sn_tab, *sn_info;
    QCowSnapshot *sn;
    int i;

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

462
    sn_tab = g_malloc0(s->nb_snapshots * sizeof(QEMUSnapshotInfo));
K
Kevin Wolf 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
    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;
}

E
edison 已提交
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
int qcow2_snapshot_load_tmp(BlockDriverState *bs, const char *snapshot_name)
{
    int i, snapshot_index, l1_size2;
    BDRVQcowState *s = bs->opaque;
    QCowSnapshot *sn;

    snapshot_index = find_snapshot_by_id_or_name(bs, snapshot_name);
    if (snapshot_index < 0) {
        return -ENOENT;
    }

    sn = &s->snapshots[snapshot_index];
    s->l1_size = sn->l1_size;
    l1_size2 = s->l1_size * sizeof(uint64_t);
    if (s->l1_table != NULL) {
494
        g_free(s->l1_table);
E
edison 已提交
495 496 497
    }

    s->l1_table_offset = sn->l1_table_offset;
498
    s->l1_table = g_malloc0(align_offset(l1_size2, 512));
E
edison 已提交
499 500 501 502 503 504 505 506 507 508 509

    if (bdrv_pread(bs->file, sn->l1_table_offset,
                   s->l1_table, l1_size2) != l1_size2) {
        return -1;
    }

    for(i = 0;i < s->l1_size; i++) {
        be64_to_cpus(&s->l1_table[i]);
    }
    return 0;
}