commit.c 10.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Live block commit
 *
 * Copyright Red Hat, Inc. 2012
 *
 * Authors:
 *  Jeff Cody   <jcody@redhat.com>
 *  Based on stream.c by Stefan Hajnoczi
 *
 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
 * See the COPYING.LIB file in the top-level directory.
 *
 */

P
Peter Maydell 已提交
15
#include "qemu/osdep.h"
16
#include "trace.h"
17 18
#include "block/block_int.h"
#include "block/blockjob.h"
19
#include "qapi/error.h"
20
#include "qapi/qmp/qerror.h"
21
#include "qemu/ratelimit.h"
22
#include "sysemu/block-backend.h"
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

enum {
    /*
     * Size of data buffer for populating the image file.  This should be large
     * enough to process multiple clusters in a single call, so that populating
     * contiguous regions of the image is efficient.
     */
    COMMIT_BUFFER_SIZE = 512 * 1024, /* in bytes */
};

#define SLICE_TIME 100000000ULL /* ns */

typedef struct CommitBlockJob {
    BlockJob common;
    RateLimit limit;
    BlockDriverState *active;
K
Kevin Wolf 已提交
39 40
    BlockBackend *top;
    BlockBackend *base;
41
    BlockdevOnError on_error;
42 43
    int base_flags;
    int orig_overlay_flags;
44
    char *backing_file_str;
45 46
} CommitBlockJob;

K
Kevin Wolf 已提交
47
static int coroutine_fn commit_populate(BlockBackend *bs, BlockBackend *base,
48 49 50 51
                                        int64_t sector_num, int nb_sectors,
                                        void *buf)
{
    int ret = 0;
K
Kevin Wolf 已提交
52 53 54 55 56
    QEMUIOVector qiov;
    struct iovec iov = {
        .iov_base = buf,
        .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
    };
57

K
Kevin Wolf 已提交
58 59 60 61 62
    qemu_iovec_init_external(&qiov, &iov, 1);

    ret = blk_co_preadv(bs, sector_num * BDRV_SECTOR_SIZE,
                        qiov.size, &qiov, 0);
    if (ret < 0) {
63 64 65
        return ret;
    }

K
Kevin Wolf 已提交
66 67 68
    ret = blk_co_pwritev(base, sector_num * BDRV_SECTOR_SIZE,
                         qiov.size, &qiov, 0);
    if (ret < 0) {
69 70 71 72 73 74
        return ret;
    }

    return 0;
}

75 76 77 78 79
typedef struct {
    int ret;
} CommitCompleteData;

static void commit_complete(BlockJob *job, void *opaque)
80
{
81 82
    CommitBlockJob *s = container_of(job, CommitBlockJob, common);
    CommitCompleteData *data = opaque;
83
    BlockDriverState *active = s->active;
K
Kevin Wolf 已提交
84 85
    BlockDriverState *top = blk_bs(s->top);
    BlockDriverState *base = blk_bs(s->base);
86
    BlockDriverState *overlay_bs;
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
    int ret = data->ret;

    if (!block_job_is_cancelled(&s->common) && ret == 0) {
        /* success */
        ret = bdrv_drop_intermediate(active, top, base, s->backing_file_str);
    }

    /* restore base open flags here if appropriate (e.g., change the base back
     * to r/o). These reopens do not need to be atomic, since we won't abort
     * even on failure here */
    if (s->base_flags != bdrv_get_flags(base)) {
        bdrv_reopen(base, s->base_flags, NULL);
    }
    overlay_bs = bdrv_find_overlay(active, top);
    if (overlay_bs && s->orig_overlay_flags != bdrv_get_flags(overlay_bs)) {
        bdrv_reopen(overlay_bs, s->orig_overlay_flags, NULL);
    }
    g_free(s->backing_file_str);
K
Kevin Wolf 已提交
105 106
    blk_unref(s->top);
    blk_unref(s->base);
107 108 109 110 111 112 113 114
    block_job_completed(&s->common, ret);
    g_free(data);
}

static void coroutine_fn commit_run(void *opaque)
{
    CommitBlockJob *s = opaque;
    CommitCompleteData *data;
115 116 117
    int64_t sector_num, end;
    int ret = 0;
    int n = 0;
118
    void *buf = NULL;
119 120 121
    int bytes_written = 0;
    int64_t base_len;

K
Kevin Wolf 已提交
122
    ret = s->common.len = blk_getlength(s->top);
123 124 125


    if (s->common.len < 0) {
126
        goto out;
127 128
    }

K
Kevin Wolf 已提交
129
    ret = base_len = blk_getlength(s->base);
130
    if (base_len < 0) {
131
        goto out;
132 133 134
    }

    if (base_len < s->common.len) {
K
Kevin Wolf 已提交
135
        ret = blk_truncate(s->base, s->common.len);
136
        if (ret) {
137
            goto out;
138 139 140 141
        }
    }

    end = s->common.len >> BDRV_SECTOR_BITS;
K
Kevin Wolf 已提交
142
    buf = blk_blockalign(s->top, COMMIT_BUFFER_SIZE);
143 144 145 146 147 148 149

    for (sector_num = 0; sector_num < end; sector_num += n) {
        uint64_t delay_ns = 0;
        bool copy;

wait:
        /* Note that even when no rate limit is applied we need to yield
K
Kevin Wolf 已提交
150
         * with no pending I/O here so that bdrv_drain_all() returns.
151
         */
152
        block_job_sleep_ns(&s->common, QEMU_CLOCK_REALTIME, delay_ns);
153 154 155 156
        if (block_job_is_cancelled(&s->common)) {
            break;
        }
        /* Copy if allocated above the base */
K
Kevin Wolf 已提交
157 158
        ret = bdrv_is_allocated_above(blk_bs(s->top), blk_bs(s->base),
                                      sector_num,
159 160
                                      COMMIT_BUFFER_SIZE / BDRV_SECTOR_SIZE,
                                      &n);
161 162 163 164 165 166 167 168 169
        copy = (ret == 1);
        trace_commit_one_iteration(s, sector_num, n, ret);
        if (copy) {
            if (s->common.speed) {
                delay_ns = ratelimit_calculate_delay(&s->limit, n);
                if (delay_ns > 0) {
                    goto wait;
                }
            }
K
Kevin Wolf 已提交
170
            ret = commit_populate(s->top, s->base, sector_num, n, buf);
171 172 173
            bytes_written += n * BDRV_SECTOR_SIZE;
        }
        if (ret < 0) {
174 175 176
            if (s->on_error == BLOCKDEV_ON_ERROR_STOP ||
                s->on_error == BLOCKDEV_ON_ERROR_REPORT||
                (s->on_error == BLOCKDEV_ON_ERROR_ENOSPC && ret == -ENOSPC)) {
177
                goto out;
178 179 180 181 182 183 184 185 186 187 188
            } else {
                n = 0;
                continue;
            }
        }
        /* Publish progress */
        s->common.offset += n * BDRV_SECTOR_SIZE;
    }

    ret = 0;

189
out:
190 191
    qemu_vfree(buf);

192 193 194
    data = g_malloc(sizeof(*data));
    data->ret = ret;
    block_job_defer_to_main_loop(&s->common, commit_complete, data);
195 196 197 198 199 200 201
}

static void commit_set_speed(BlockJob *job, int64_t speed, Error **errp)
{
    CommitBlockJob *s = container_of(job, CommitBlockJob, common);

    if (speed < 0) {
202
        error_setg(errp, QERR_INVALID_PARAMETER, "speed");
203 204 205 206 207
        return;
    }
    ratelimit_set_speed(&s->limit, speed / BDRV_SECTOR_SIZE, SLICE_TIME);
}

208
static const BlockJobDriver commit_job_driver = {
209
    .instance_size = sizeof(CommitBlockJob),
F
Fam Zheng 已提交
210
    .job_type      = BLOCK_JOB_TYPE_COMMIT,
211 212 213 214 215
    .set_speed     = commit_set_speed,
};

void commit_start(BlockDriverState *bs, BlockDriverState *base,
                  BlockDriverState *top, int64_t speed,
216
                  BlockdevOnError on_error, BlockCompletionFunc *cb,
217
                  void *opaque, const char *backing_file_str, Error **errp)
218 219 220 221 222 223 224 225
{
    CommitBlockJob *s;
    BlockReopenQueue *reopen_queue = NULL;
    int orig_overlay_flags;
    int orig_base_flags;
    BlockDriverState *overlay_bs;
    Error *local_err = NULL;

F
Fam Zheng 已提交
226
    assert(top != bs);
227 228 229 230 231 232 233 234 235 236 237 238
    if (top == base) {
        error_setg(errp, "Invalid files for merge: top and base are the same");
        return;
    }

    overlay_bs = bdrv_find_overlay(bs, top);

    if (overlay_bs == NULL) {
        error_setg(errp, "Could not find overlay image for %s:", top->filename);
        return;
    }

239
    s = block_job_create(NULL, &commit_job_driver, bs, speed, cb, opaque, errp);
240 241 242 243
    if (!s) {
        return;
    }

244 245 246 247 248
    orig_base_flags    = bdrv_get_flags(base);
    orig_overlay_flags = bdrv_get_flags(overlay_bs);

    /* convert base & overlay_bs to r/w, if necessary */
    if (!(orig_overlay_flags & BDRV_O_RDWR)) {
249
        reopen_queue = bdrv_reopen_queue(reopen_queue, overlay_bs, NULL,
250 251
                                         orig_overlay_flags | BDRV_O_RDWR);
    }
252 253 254 255
    if (!(orig_base_flags & BDRV_O_RDWR)) {
        reopen_queue = bdrv_reopen_queue(reopen_queue, base, NULL,
                                         orig_base_flags | BDRV_O_RDWR);
    }
256 257 258 259
    if (reopen_queue) {
        bdrv_reopen_multiple(reopen_queue, &local_err);
        if (local_err != NULL) {
            error_propagate(errp, local_err);
260
            block_job_unref(&s->common);
261 262 263 264 265
            return;
        }
    }


K
Kevin Wolf 已提交
266 267 268 269 270 271
    s->base = blk_new();
    blk_insert_bs(s->base, base);

    s->top = blk_new();
    blk_insert_bs(s->top, top);

272 273 274 275 276
    s->active = bs;

    s->base_flags          = orig_base_flags;
    s->orig_overlay_flags  = orig_overlay_flags;

277 278
    s->backing_file_str = g_strdup(backing_file_str);

279 280 281 282 283 284
    s->on_error = on_error;
    s->common.co = qemu_coroutine_create(commit_run);

    trace_commit_start(bs, base, top, s, s->common.co, opaque);
    qemu_coroutine_enter(s->common.co, s);
}
285 286 287 288 289 290 291


#define COMMIT_BUF_SECTORS 2048

/* commit COW file into the raw image */
int bdrv_commit(BlockDriverState *bs)
{
292
    BlockBackend *src, *backing;
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
    BlockDriver *drv = bs->drv;
    int64_t sector, total_sectors, length, backing_length;
    int n, ro, open_flags;
    int ret = 0;
    uint8_t *buf = NULL;

    if (!drv)
        return -ENOMEDIUM;

    if (!bs->backing) {
        return -ENOTSUP;
    }

    if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, NULL) ||
        bdrv_op_is_blocked(bs->backing->bs, BLOCK_OP_TYPE_COMMIT_TARGET, NULL)) {
        return -EBUSY;
    }

    ro = bs->backing->bs->read_only;
    open_flags =  bs->backing->bs->open_flags;

    if (ro) {
        if (bdrv_reopen(bs->backing->bs, open_flags | BDRV_O_RDWR, NULL)) {
            return -EACCES;
        }
    }

320 321 322 323 324 325 326
    src = blk_new();
    blk_insert_bs(src, bs);

    backing = blk_new();
    blk_insert_bs(backing, bs->backing->bs);

    length = blk_getlength(src);
327 328 329 330 331
    if (length < 0) {
        ret = length;
        goto ro_cleanup;
    }

332
    backing_length = blk_getlength(backing);
333 334 335 336 337 338 339 340 341
    if (backing_length < 0) {
        ret = backing_length;
        goto ro_cleanup;
    }

    /* If our top snapshot is larger than the backing file image,
     * grow the backing file image if possible.  If not possible,
     * we must return an error */
    if (length > backing_length) {
342
        ret = blk_truncate(backing, length);
343 344 345 346 347 348 349
        if (ret < 0) {
            goto ro_cleanup;
        }
    }

    total_sectors = length >> BDRV_SECTOR_BITS;

350 351 352
    /* blk_try_blockalign() for src will choose an alignment that works for
     * backing as well, so no need to compare the alignment manually. */
    buf = blk_try_blockalign(src, COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
353 354 355 356 357 358 359 360 361 362 363
    if (buf == NULL) {
        ret = -ENOMEM;
        goto ro_cleanup;
    }

    for (sector = 0; sector < total_sectors; sector += n) {
        ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n);
        if (ret < 0) {
            goto ro_cleanup;
        }
        if (ret) {
364 365
            ret = blk_pread(src, sector * BDRV_SECTOR_SIZE, buf,
                            n * BDRV_SECTOR_SIZE);
366 367 368 369
            if (ret < 0) {
                goto ro_cleanup;
            }

370 371
            ret = blk_pwrite(backing, sector * BDRV_SECTOR_SIZE, buf,
                             n * BDRV_SECTOR_SIZE, 0);
372 373 374 375 376 377 378 379 380 381 382
            if (ret < 0) {
                goto ro_cleanup;
            }
        }
    }

    if (drv->bdrv_make_empty) {
        ret = drv->bdrv_make_empty(bs);
        if (ret < 0) {
            goto ro_cleanup;
        }
383
        blk_flush(src);
384 385 386 387 388 389
    }

    /*
     * Make sure all data we wrote to the backing device is actually
     * stable on disk.
     */
390
    blk_flush(backing);
391 392 393 394 395

    ret = 0;
ro_cleanup:
    qemu_vfree(buf);

396 397 398
    blk_unref(src);
    blk_unref(backing);

399 400 401 402 403 404 405
    if (ro) {
        /* ignoring error return here */
        bdrv_reopen(bs->backing->bs, open_flags & ~BDRV_O_RDWR, NULL);
    }

    return ret;
}