2012-10-18 22:49:23 +08:00
|
|
|
/*
|
|
|
|
* Image mirroring
|
|
|
|
*
|
|
|
|
* Copyright Red Hat, Inc. 2012
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "trace.h"
|
2012-12-18 01:19:44 +08:00
|
|
|
#include "block/blockjob.h"
|
|
|
|
#include "block/block_int.h"
|
2012-10-18 22:49:23 +08:00
|
|
|
#include "qemu/ratelimit.h"
|
2013-01-22 00:09:43 +08:00
|
|
|
#include "qemu/bitmap.h"
|
2012-10-18 22:49:23 +08:00
|
|
|
|
2013-01-22 00:09:45 +08:00
|
|
|
#define BLOCK_SIZE (1 << 20)
|
|
|
|
#define BDRV_SECTORS_PER_DIRTY_CHUNK (BLOCK_SIZE >> BDRV_SECTOR_BITS)
|
2012-10-18 22:49:23 +08:00
|
|
|
|
|
|
|
#define SLICE_TIME 100000000ULL /* ns */
|
|
|
|
|
|
|
|
typedef struct MirrorBlockJob {
|
|
|
|
BlockJob common;
|
|
|
|
RateLimit limit;
|
|
|
|
BlockDriverState *target;
|
|
|
|
MirrorSyncMode mode;
|
2012-10-18 22:49:28 +08:00
|
|
|
BlockdevOnError on_source_error, on_target_error;
|
2012-10-18 22:49:25 +08:00
|
|
|
bool synced;
|
|
|
|
bool should_complete;
|
2012-10-18 22:49:23 +08:00
|
|
|
int64_t sector_num;
|
2013-01-22 00:09:43 +08:00
|
|
|
size_t buf_size;
|
|
|
|
unsigned long *cow_bitmap;
|
2013-01-22 00:09:41 +08:00
|
|
|
HBitmapIter hbi;
|
2012-10-18 22:49:23 +08:00
|
|
|
uint8_t *buf;
|
|
|
|
} MirrorBlockJob;
|
|
|
|
|
2012-10-18 22:49:28 +08:00
|
|
|
static BlockErrorAction mirror_error_action(MirrorBlockJob *s, bool read,
|
|
|
|
int error)
|
|
|
|
{
|
|
|
|
s->synced = false;
|
|
|
|
if (read) {
|
|
|
|
return block_job_error_action(&s->common, s->common.bs,
|
|
|
|
s->on_source_error, true, error);
|
|
|
|
} else {
|
|
|
|
return block_job_error_action(&s->common, s->target,
|
|
|
|
s->on_target_error, false, error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int coroutine_fn mirror_iteration(MirrorBlockJob *s,
|
|
|
|
BlockErrorAction *p_action)
|
2012-10-18 22:49:23 +08:00
|
|
|
{
|
|
|
|
BlockDriverState *source = s->common.bs;
|
|
|
|
BlockDriverState *target = s->target;
|
|
|
|
QEMUIOVector qiov;
|
|
|
|
int ret, nb_sectors;
|
2013-01-22 00:09:43 +08:00
|
|
|
int64_t end, sector_num, chunk_num;
|
2012-10-18 22:49:23 +08:00
|
|
|
struct iovec iov;
|
|
|
|
|
2013-01-22 00:09:41 +08:00
|
|
|
s->sector_num = hbitmap_iter_next(&s->hbi);
|
|
|
|
if (s->sector_num < 0) {
|
|
|
|
bdrv_dirty_iter_init(source, &s->hbi);
|
|
|
|
s->sector_num = hbitmap_iter_next(&s->hbi);
|
|
|
|
trace_mirror_restart_iter(s, bdrv_get_dirty_count(source));
|
|
|
|
assert(s->sector_num >= 0);
|
|
|
|
}
|
|
|
|
|
2013-01-22 00:09:43 +08:00
|
|
|
/* If we have no backing file yet in the destination, and the cluster size
|
|
|
|
* is very large, we need to do COW ourselves. The first time a cluster is
|
|
|
|
* copied, copy it entirely.
|
|
|
|
*
|
|
|
|
* Because both BDRV_SECTORS_PER_DIRTY_CHUNK and the cluster size are
|
|
|
|
* powers of two, the number of sectors to copy cannot exceed one cluster.
|
|
|
|
*/
|
|
|
|
sector_num = s->sector_num;
|
|
|
|
nb_sectors = BDRV_SECTORS_PER_DIRTY_CHUNK;
|
|
|
|
chunk_num = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
|
|
|
|
if (s->cow_bitmap && !test_bit(chunk_num, s->cow_bitmap)) {
|
|
|
|
trace_mirror_cow(s, sector_num);
|
|
|
|
bdrv_round_to_clusters(s->target,
|
|
|
|
sector_num, BDRV_SECTORS_PER_DIRTY_CHUNK,
|
|
|
|
§or_num, &nb_sectors);
|
|
|
|
}
|
|
|
|
|
2012-10-18 22:49:23 +08:00
|
|
|
end = s->common.len >> BDRV_SECTOR_BITS;
|
2013-01-22 00:09:43 +08:00
|
|
|
nb_sectors = MIN(nb_sectors, end - sector_num);
|
|
|
|
bdrv_reset_dirty(source, sector_num, nb_sectors);
|
2012-10-18 22:49:23 +08:00
|
|
|
|
|
|
|
/* Copy the dirty cluster. */
|
|
|
|
iov.iov_base = s->buf;
|
|
|
|
iov.iov_len = nb_sectors * 512;
|
|
|
|
qemu_iovec_init_external(&qiov, &iov, 1);
|
|
|
|
|
2013-01-22 00:09:43 +08:00
|
|
|
trace_mirror_one_iteration(s, sector_num, nb_sectors);
|
|
|
|
ret = bdrv_co_readv(source, sector_num, nb_sectors, &qiov);
|
2012-10-18 22:49:23 +08:00
|
|
|
if (ret < 0) {
|
2012-10-18 22:49:28 +08:00
|
|
|
*p_action = mirror_error_action(s, true, -ret);
|
|
|
|
goto fail;
|
|
|
|
}
|
2013-01-22 00:09:43 +08:00
|
|
|
ret = bdrv_co_writev(target, sector_num, nb_sectors, &qiov);
|
2012-10-18 22:49:28 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
*p_action = mirror_error_action(s, false, -ret);
|
|
|
|
s->synced = false;
|
|
|
|
goto fail;
|
2012-10-18 22:49:23 +08:00
|
|
|
}
|
2013-01-22 00:09:43 +08:00
|
|
|
if (s->cow_bitmap) {
|
|
|
|
bitmap_set(s->cow_bitmap, sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK,
|
|
|
|
nb_sectors / BDRV_SECTORS_PER_DIRTY_CHUNK);
|
|
|
|
}
|
2012-10-18 22:49:28 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
/* Try again later. */
|
2013-01-22 00:09:43 +08:00
|
|
|
bdrv_set_dirty(source, sector_num, nb_sectors);
|
2012-10-18 22:49:28 +08:00
|
|
|
return ret;
|
2012-10-18 22:49:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void coroutine_fn mirror_run(void *opaque)
|
|
|
|
{
|
|
|
|
MirrorBlockJob *s = opaque;
|
|
|
|
BlockDriverState *bs = s->common.bs;
|
2013-01-22 00:09:43 +08:00
|
|
|
int64_t sector_num, end, length;
|
|
|
|
BlockDriverInfo bdi;
|
|
|
|
char backing_filename[1024];
|
2012-10-18 22:49:23 +08:00
|
|
|
int ret = 0;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (block_job_is_cancelled(&s->common)) {
|
|
|
|
goto immediate_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->common.len = bdrv_getlength(bs);
|
|
|
|
if (s->common.len < 0) {
|
|
|
|
block_job_completed(&s->common, s->common.len);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-22 00:09:43 +08:00
|
|
|
/* If we have no backing file yet in the destination, we cannot let
|
|
|
|
* the destination do COW. Instead, we copy sectors around the
|
|
|
|
* dirty data if needed. We need a bitmap to do that.
|
|
|
|
*/
|
|
|
|
bdrv_get_backing_filename(s->target, backing_filename,
|
|
|
|
sizeof(backing_filename));
|
|
|
|
if (backing_filename[0] && !s->target->backing_hd) {
|
|
|
|
bdrv_get_info(s->target, &bdi);
|
|
|
|
if (s->buf_size < bdi.cluster_size) {
|
|
|
|
s->buf_size = bdi.cluster_size;
|
|
|
|
length = (bdrv_getlength(bs) + BLOCK_SIZE - 1) / BLOCK_SIZE;
|
|
|
|
s->cow_bitmap = bitmap_new(length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-18 22:49:23 +08:00
|
|
|
end = s->common.len >> BDRV_SECTOR_BITS;
|
2013-01-22 00:09:43 +08:00
|
|
|
s->buf = qemu_blockalign(bs, s->buf_size);
|
2012-10-18 22:49:23 +08:00
|
|
|
|
|
|
|
if (s->mode != MIRROR_SYNC_MODE_NONE) {
|
|
|
|
/* First part, loop on the sectors and initialize the dirty bitmap. */
|
|
|
|
BlockDriverState *base;
|
|
|
|
base = s->mode == MIRROR_SYNC_MODE_FULL ? NULL : bs->backing_hd;
|
|
|
|
for (sector_num = 0; sector_num < end; ) {
|
|
|
|
int64_t next = (sector_num | (BDRV_SECTORS_PER_DIRTY_CHUNK - 1)) + 1;
|
|
|
|
ret = bdrv_co_is_allocated_above(bs, base,
|
|
|
|
sector_num, next - sector_num, &n);
|
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
goto immediate_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(n > 0);
|
|
|
|
if (ret == 1) {
|
|
|
|
bdrv_set_dirty(bs, sector_num, n);
|
|
|
|
sector_num = next;
|
|
|
|
} else {
|
|
|
|
sector_num += n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-22 00:09:41 +08:00
|
|
|
bdrv_dirty_iter_init(bs, &s->hbi);
|
2012-10-18 22:49:23 +08:00
|
|
|
for (;;) {
|
|
|
|
uint64_t delay_ns;
|
|
|
|
int64_t cnt;
|
|
|
|
bool should_complete;
|
|
|
|
|
|
|
|
cnt = bdrv_get_dirty_count(bs);
|
|
|
|
if (cnt != 0) {
|
2012-10-18 22:49:28 +08:00
|
|
|
BlockErrorAction action = BDRV_ACTION_REPORT;
|
|
|
|
ret = mirror_iteration(s, &action);
|
|
|
|
if (ret < 0 && action == BDRV_ACTION_REPORT) {
|
2012-10-18 22:49:23 +08:00
|
|
|
goto immediate_exit;
|
|
|
|
}
|
|
|
|
cnt = bdrv_get_dirty_count(bs);
|
|
|
|
}
|
|
|
|
|
|
|
|
should_complete = false;
|
|
|
|
if (cnt == 0) {
|
|
|
|
trace_mirror_before_flush(s);
|
|
|
|
ret = bdrv_flush(s->target);
|
|
|
|
if (ret < 0) {
|
2012-10-18 22:49:28 +08:00
|
|
|
if (mirror_error_action(s, false, -ret) == BDRV_ACTION_REPORT) {
|
|
|
|
goto immediate_exit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* We're out of the streaming phase. From now on, if the job
|
|
|
|
* is cancelled we will actually complete all pending I/O and
|
|
|
|
* report completion. This way, block-job-cancel will leave
|
|
|
|
* the target in a consistent state.
|
|
|
|
*/
|
|
|
|
s->common.offset = end * BDRV_SECTOR_SIZE;
|
|
|
|
if (!s->synced) {
|
|
|
|
block_job_ready(&s->common);
|
|
|
|
s->synced = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
should_complete = s->should_complete ||
|
|
|
|
block_job_is_cancelled(&s->common);
|
|
|
|
cnt = bdrv_get_dirty_count(bs);
|
2012-10-18 22:49:25 +08:00
|
|
|
}
|
2012-10-18 22:49:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cnt == 0 && should_complete) {
|
|
|
|
/* The dirty bitmap is not updated while operations are pending.
|
|
|
|
* If we're about to exit, wait for pending operations before
|
|
|
|
* calling bdrv_get_dirty_count(bs), or we may exit while the
|
|
|
|
* source has dirty data to copy!
|
|
|
|
*
|
|
|
|
* Note that I/O can be submitted by the guest while
|
|
|
|
* mirror_populate runs.
|
|
|
|
*/
|
|
|
|
trace_mirror_before_drain(s, cnt);
|
|
|
|
bdrv_drain_all();
|
|
|
|
cnt = bdrv_get_dirty_count(bs);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
2012-10-18 22:49:25 +08:00
|
|
|
trace_mirror_before_sleep(s, cnt, s->synced);
|
|
|
|
if (!s->synced) {
|
2012-10-18 22:49:23 +08:00
|
|
|
/* Publish progress */
|
2013-01-22 00:09:44 +08:00
|
|
|
s->common.offset = (end - cnt) * BDRV_SECTOR_SIZE;
|
2012-10-18 22:49:23 +08:00
|
|
|
|
|
|
|
if (s->common.speed) {
|
|
|
|
delay_ns = ratelimit_calculate_delay(&s->limit, BDRV_SECTORS_PER_DIRTY_CHUNK);
|
|
|
|
} else {
|
|
|
|
delay_ns = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note that even when no rate limit is applied we need to yield
|
2012-11-13 23:35:13 +08:00
|
|
|
* with no pending I/O here so that bdrv_drain_all() returns.
|
2012-10-18 22:49:23 +08:00
|
|
|
*/
|
|
|
|
block_job_sleep_ns(&s->common, rt_clock, delay_ns);
|
|
|
|
if (block_job_is_cancelled(&s->common)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (!should_complete) {
|
|
|
|
delay_ns = (cnt == 0 ? SLICE_TIME : 0);
|
|
|
|
block_job_sleep_ns(&s->common, rt_clock, delay_ns);
|
|
|
|
} else if (cnt == 0) {
|
|
|
|
/* The two disks are in sync. Exit and report successful
|
|
|
|
* completion.
|
|
|
|
*/
|
|
|
|
assert(QLIST_EMPTY(&bs->tracked_requests));
|
|
|
|
s->common.cancelled = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
immediate_exit:
|
2013-01-15 22:29:10 +08:00
|
|
|
qemu_vfree(s->buf);
|
2013-01-22 00:09:43 +08:00
|
|
|
g_free(s->cow_bitmap);
|
2013-01-22 00:09:45 +08:00
|
|
|
bdrv_set_dirty_tracking(bs, 0);
|
2012-10-18 22:49:28 +08:00
|
|
|
bdrv_iostatus_disable(s->target);
|
2012-10-18 22:49:25 +08:00
|
|
|
if (s->should_complete && ret == 0) {
|
|
|
|
if (bdrv_get_flags(s->target) != bdrv_get_flags(s->common.bs)) {
|
|
|
|
bdrv_reopen(s->target, bdrv_get_flags(s->common.bs), NULL);
|
|
|
|
}
|
|
|
|
bdrv_swap(s->target, s->common.bs);
|
|
|
|
}
|
2012-10-18 22:49:23 +08:00
|
|
|
bdrv_close(s->target);
|
|
|
|
bdrv_delete(s->target);
|
|
|
|
block_job_completed(&s->common, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mirror_set_speed(BlockJob *job, int64_t speed, Error **errp)
|
|
|
|
{
|
|
|
|
MirrorBlockJob *s = container_of(job, MirrorBlockJob, common);
|
|
|
|
|
|
|
|
if (speed < 0) {
|
|
|
|
error_set(errp, QERR_INVALID_PARAMETER, "speed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ratelimit_set_speed(&s->limit, speed / BDRV_SECTOR_SIZE, SLICE_TIME);
|
|
|
|
}
|
|
|
|
|
2012-10-18 22:49:28 +08:00
|
|
|
static void mirror_iostatus_reset(BlockJob *job)
|
|
|
|
{
|
|
|
|
MirrorBlockJob *s = container_of(job, MirrorBlockJob, common);
|
|
|
|
|
|
|
|
bdrv_iostatus_reset(s->target);
|
|
|
|
}
|
|
|
|
|
2012-10-18 22:49:25 +08:00
|
|
|
static void mirror_complete(BlockJob *job, Error **errp)
|
|
|
|
{
|
|
|
|
MirrorBlockJob *s = container_of(job, MirrorBlockJob, common);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = bdrv_open_backing_file(s->target);
|
|
|
|
if (ret < 0) {
|
|
|
|
char backing_filename[PATH_MAX];
|
|
|
|
bdrv_get_full_backing_filename(s->target, backing_filename,
|
|
|
|
sizeof(backing_filename));
|
|
|
|
error_set(errp, QERR_OPEN_FILE_FAILED, backing_filename);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!s->synced) {
|
|
|
|
error_set(errp, QERR_BLOCK_JOB_NOT_READY, job->bs->device_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->should_complete = true;
|
|
|
|
block_job_resume(job);
|
|
|
|
}
|
|
|
|
|
2012-10-18 22:49:23 +08:00
|
|
|
static BlockJobType mirror_job_type = {
|
|
|
|
.instance_size = sizeof(MirrorBlockJob),
|
|
|
|
.job_type = "mirror",
|
|
|
|
.set_speed = mirror_set_speed,
|
2012-10-18 22:49:28 +08:00
|
|
|
.iostatus_reset= mirror_iostatus_reset,
|
2012-10-18 22:49:25 +08:00
|
|
|
.complete = mirror_complete,
|
2012-10-18 22:49:23 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
void mirror_start(BlockDriverState *bs, BlockDriverState *target,
|
|
|
|
int64_t speed, MirrorSyncMode mode,
|
2012-10-18 22:49:28 +08:00
|
|
|
BlockdevOnError on_source_error,
|
|
|
|
BlockdevOnError on_target_error,
|
2012-10-18 22:49:23 +08:00
|
|
|
BlockDriverCompletionFunc *cb,
|
|
|
|
void *opaque, Error **errp)
|
|
|
|
{
|
|
|
|
MirrorBlockJob *s;
|
|
|
|
|
2012-10-18 22:49:28 +08:00
|
|
|
if ((on_source_error == BLOCKDEV_ON_ERROR_STOP ||
|
|
|
|
on_source_error == BLOCKDEV_ON_ERROR_ENOSPC) &&
|
|
|
|
!bdrv_iostatus_is_enabled(bs)) {
|
|
|
|
error_set(errp, QERR_INVALID_PARAMETER, "on-source-error");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-10-18 22:49:23 +08:00
|
|
|
s = block_job_create(&mirror_job_type, bs, speed, cb, opaque, errp);
|
|
|
|
if (!s) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-10-18 22:49:28 +08:00
|
|
|
s->on_source_error = on_source_error;
|
|
|
|
s->on_target_error = on_target_error;
|
2012-10-18 22:49:23 +08:00
|
|
|
s->target = target;
|
|
|
|
s->mode = mode;
|
2013-01-22 00:09:43 +08:00
|
|
|
s->buf_size = BLOCK_SIZE;
|
|
|
|
|
2013-01-22 00:09:45 +08:00
|
|
|
bdrv_set_dirty_tracking(bs, BLOCK_SIZE);
|
2012-10-18 22:49:23 +08:00
|
|
|
bdrv_set_enable_write_cache(s->target, true);
|
2012-10-18 22:49:28 +08:00
|
|
|
bdrv_set_on_error(s->target, on_target_error, on_target_error);
|
|
|
|
bdrv_iostatus_enable(s->target);
|
2012-10-18 22:49:23 +08:00
|
|
|
s->common.co = qemu_coroutine_create(mirror_run);
|
|
|
|
trace_mirror_start(bs, s, s->common.co, opaque);
|
|
|
|
qemu_coroutine_enter(s->common.co, s);
|
|
|
|
}
|