2013-06-24 15:13:11 +00:00
|
|
|
/*
|
|
|
|
* QEMU backup
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Proxmox Server Solutions
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Dietmar Maurer (dietmar@proxmox.com)
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-18 18:01:42 +00:00
|
|
|
#include "qemu/osdep.h"
|
2013-06-24 15:13:11 +00:00
|
|
|
|
|
|
|
#include "trace.h"
|
|
|
|
#include "block/block.h"
|
|
|
|
#include "block/block_int.h"
|
2016-10-27 16:07:00 +00:00
|
|
|
#include "block/blockjob_int.h"
|
2016-07-27 07:01:43 +00:00
|
|
|
#include "block/block_backup.h"
|
2019-09-20 14:20:48 +00:00
|
|
|
#include "block/block-copy.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 08:01:28 +00:00
|
|
|
#include "qapi/error.h"
|
2015-03-17 16:22:46 +00:00
|
|
|
#include "qapi/qmp/qerror.h"
|
2013-06-24 15:13:11 +00:00
|
|
|
#include "qemu/ratelimit.h"
|
2016-03-20 17:16:19 +00:00
|
|
|
#include "qemu/cutils.h"
|
2015-10-19 15:53:22 +00:00
|
|
|
#include "sysemu/block-backend.h"
|
2016-03-08 04:44:52 +00:00
|
|
|
#include "qemu/bitmap.h"
|
2017-02-28 19:33:40 +00:00
|
|
|
#include "qemu/error-report.h"
|
2013-06-24 15:13:11 +00:00
|
|
|
|
2016-02-25 20:58:29 +00:00
|
|
|
#define BACKUP_CLUSTER_SIZE_DEFAULT (1 << 16)
|
2013-06-24 15:13:11 +00:00
|
|
|
|
|
|
|
typedef struct BackupBlockJob {
|
|
|
|
BlockJob common;
|
2019-09-20 14:20:46 +00:00
|
|
|
BlockDriverState *source_bs;
|
2019-07-29 20:35:53 +00:00
|
|
|
|
2015-04-17 23:49:58 +00:00
|
|
|
BdrvDirtyBitmap *sync_bitmap;
|
2019-07-29 20:35:53 +00:00
|
|
|
|
2013-07-26 18:39:04 +00:00
|
|
|
MirrorSyncMode sync_mode;
|
2019-07-29 20:35:52 +00:00
|
|
|
BitmapSyncMode bitmap_mode;
|
2013-06-24 15:13:11 +00:00
|
|
|
BlockdevOnError on_source_error;
|
|
|
|
BlockdevOnError on_target_error;
|
|
|
|
CoRwlock flush_rwlock;
|
2018-01-18 17:08:22 +00:00
|
|
|
uint64_t len;
|
2017-07-07 12:44:53 +00:00
|
|
|
uint64_t bytes_read;
|
2016-02-25 20:58:29 +00:00
|
|
|
int64_t cluster_size;
|
2016-01-26 23:54:58 +00:00
|
|
|
NotifierWithReturn before_write;
|
2017-10-12 13:53:10 +00:00
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
BlockCopyState *bcs;
|
2013-06-24 15:13:11 +00:00
|
|
|
} BackupBlockJob;
|
|
|
|
|
2018-01-19 14:54:40 +00:00
|
|
|
static const BlockJobDriver backup_job_driver;
|
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
static void backup_progress_bytes_callback(int64_t bytes, void *opaque)
|
|
|
|
{
|
|
|
|
BackupBlockJob *s = opaque;
|
|
|
|
|
|
|
|
s->bytes_read += bytes;
|
|
|
|
job_progress_update(&s->common.job, bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void backup_progress_reset_callback(void *opaque)
|
|
|
|
{
|
|
|
|
BackupBlockJob *s = opaque;
|
|
|
|
uint64_t estimate = bdrv_get_dirty_count(s->bcs->copy_bitmap);
|
|
|
|
|
|
|
|
job_progress_set_remaining(&s->common.job, estimate);
|
|
|
|
}
|
|
|
|
|
2019-09-20 14:20:44 +00:00
|
|
|
static int coroutine_fn backup_do_cow(BackupBlockJob *job,
|
|
|
|
int64_t offset, uint64_t bytes,
|
|
|
|
bool *error_is_read,
|
|
|
|
bool is_write_notifier)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int64_t start, end; /* bytes */
|
|
|
|
|
|
|
|
qemu_co_rwlock_rdlock(&job->flush_rwlock);
|
|
|
|
|
|
|
|
start = QEMU_ALIGN_DOWN(offset, job->cluster_size);
|
|
|
|
end = QEMU_ALIGN_UP(bytes + offset, job->cluster_size);
|
|
|
|
|
|
|
|
trace_backup_do_cow_enter(job, start, offset, bytes);
|
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
ret = block_copy(job->bcs, start, end - start, error_is_read,
|
|
|
|
is_write_notifier);
|
2019-09-20 14:20:44 +00:00
|
|
|
|
2017-07-07 12:44:55 +00:00
|
|
|
trace_backup_do_cow_return(job, offset, bytes, ret);
|
2013-06-24 15:13:11 +00:00
|
|
|
|
|
|
|
qemu_co_rwlock_unlock(&job->flush_rwlock);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int coroutine_fn backup_before_write_notify(
|
|
|
|
NotifierWithReturn *notifier,
|
|
|
|
void *opaque)
|
|
|
|
{
|
2016-01-26 23:54:58 +00:00
|
|
|
BackupBlockJob *job = container_of(notifier, BackupBlockJob, before_write);
|
2013-06-24 15:13:11 +00:00
|
|
|
BdrvTrackedRequest *req = opaque;
|
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
assert(req->bs == job->source_bs);
|
2017-07-07 12:44:55 +00:00
|
|
|
assert(QEMU_IS_ALIGNED(req->offset, BDRV_SECTOR_SIZE));
|
|
|
|
assert(QEMU_IS_ALIGNED(req->bytes, BDRV_SECTOR_SIZE));
|
2013-12-03 14:31:25 +00:00
|
|
|
|
2017-07-07 12:44:55 +00:00
|
|
|
return backup_do_cow(job, req->offset, req->bytes, NULL, true);
|
2013-06-24 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2015-11-05 23:13:10 +00:00
|
|
|
static void backup_cleanup_sync_bitmap(BackupBlockJob *job, int ret)
|
|
|
|
{
|
|
|
|
BdrvDirtyBitmap *bm;
|
2019-07-29 20:35:53 +00:00
|
|
|
bool sync = (((ret == 0) || (job->bitmap_mode == BITMAP_SYNC_MODE_ALWAYS)) \
|
|
|
|
&& (job->bitmap_mode != BITMAP_SYNC_MODE_NEVER));
|
2015-11-05 23:13:10 +00:00
|
|
|
|
2019-07-29 20:35:53 +00:00
|
|
|
if (sync) {
|
2019-07-29 20:35:53 +00:00
|
|
|
/*
|
2019-07-29 20:35:53 +00:00
|
|
|
* We succeeded, or we always intended to sync the bitmap.
|
|
|
|
* Delete this bitmap and install the child.
|
2019-07-29 20:35:53 +00:00
|
|
|
*/
|
2019-09-20 14:20:46 +00:00
|
|
|
bm = bdrv_dirty_bitmap_abdicate(job->source_bs, job->sync_bitmap, NULL);
|
2019-07-29 20:35:53 +00:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* We failed, or we never intended to sync the bitmap anyway.
|
|
|
|
* Merge the successor back into the parent, keeping all data.
|
|
|
|
*/
|
2019-09-20 14:20:46 +00:00
|
|
|
bm = bdrv_reclaim_dirty_bitmap(job->source_bs, job->sync_bitmap, NULL);
|
2019-07-29 20:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(bm);
|
|
|
|
|
|
|
|
if (ret < 0 && job->bitmap_mode == BITMAP_SYNC_MODE_ALWAYS) {
|
|
|
|
/* If we failed and synced, merge in the bits we didn't copy: */
|
2019-09-20 14:20:46 +00:00
|
|
|
bdrv_dirty_bitmap_merge_internal(bm, job->bcs->copy_bitmap,
|
2019-07-29 20:35:53 +00:00
|
|
|
NULL, true);
|
2015-11-05 23:13:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 15:30:16 +00:00
|
|
|
static void backup_commit(Job *job)
|
2015-11-05 23:13:16 +00:00
|
|
|
{
|
2018-04-19 15:30:16 +00:00
|
|
|
BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
|
2015-11-05 23:13:16 +00:00
|
|
|
if (s->sync_bitmap) {
|
|
|
|
backup_cleanup_sync_bitmap(s, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 15:30:16 +00:00
|
|
|
static void backup_abort(Job *job)
|
2015-11-05 23:13:16 +00:00
|
|
|
{
|
2018-04-19 15:30:16 +00:00
|
|
|
BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
|
2015-11-05 23:13:16 +00:00
|
|
|
if (s->sync_bitmap) {
|
|
|
|
backup_cleanup_sync_bitmap(s, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 15:30:16 +00:00
|
|
|
static void backup_clean(Job *job)
|
blockjob: add .clean property
Cleaning up after we have deferred to the main thread but before the
transaction has converged can be dangerous and result in deadlocks
if the job cleanup invokes any BH polling loops.
A job may attempt to begin cleaning up, but may induce another job to
enter its cleanup routine. The second job, part of our same transaction,
will block waiting for the first job to finish, so neither job may now
make progress.
To rectify this, allow jobs to register a cleanup operation that will
always run regardless of if the job was in a transaction or not, and
if the transaction job group completed successfully or not.
Move sensitive cleanup to this callback instead which is guaranteed to
be run only after the transaction has converged, which removes sensitive
timing constraints from said cleanup.
Furthermore, in future patches these cleanup operations will be performed
regardless of whether or not we actually started the job. Therefore,
cleanup callbacks should essentially confine themselves to undoing create
operations, e.g. setup actions taken in what is now backup_start.
Reported-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-id: 1478587839-9834-3-git-send-email-jsnow@redhat.com
Signed-off-by: Jeff Cody <jcody@redhat.com>
2016-11-08 06:50:35 +00:00
|
|
|
{
|
2018-04-19 15:30:16 +00:00
|
|
|
BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
|
2019-04-29 09:08:39 +00:00
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
block_copy_state_free(s->bcs);
|
blockjob: add .clean property
Cleaning up after we have deferred to the main thread but before the
transaction has converged can be dangerous and result in deadlocks
if the job cleanup invokes any BH polling loops.
A job may attempt to begin cleaning up, but may induce another job to
enter its cleanup routine. The second job, part of our same transaction,
will block waiting for the first job to finish, so neither job may now
make progress.
To rectify this, allow jobs to register a cleanup operation that will
always run regardless of if the job was in a transaction or not, and
if the transaction job group completed successfully or not.
Move sensitive cleanup to this callback instead which is guaranteed to
be run only after the transaction has converged, which removes sensitive
timing constraints from said cleanup.
Furthermore, in future patches these cleanup operations will be performed
regardless of whether or not we actually started the job. Therefore,
cleanup callbacks should essentially confine themselves to undoing create
operations, e.g. setup actions taken in what is now backup_start.
Reported-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-id: 1478587839-9834-3-git-send-email-jsnow@redhat.com
Signed-off-by: Jeff Cody <jcody@redhat.com>
2016-11-08 06:50:35 +00:00
|
|
|
}
|
|
|
|
|
2016-07-27 07:01:43 +00:00
|
|
|
void backup_do_checkpoint(BlockJob *job, Error **errp)
|
|
|
|
{
|
|
|
|
BackupBlockJob *backup_job = container_of(job, BackupBlockJob, common);
|
|
|
|
|
2018-01-19 14:54:40 +00:00
|
|
|
assert(block_job_driver(job) == &backup_job_driver);
|
2016-07-27 07:01:43 +00:00
|
|
|
|
|
|
|
if (backup_job->sync_mode != MIRROR_SYNC_MODE_NONE) {
|
|
|
|
error_setg(errp, "The backup job only supports block checkpoint in"
|
|
|
|
" sync=none mode");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
bdrv_set_dirty_bitmap(backup_job->bcs->copy_bitmap, 0, backup_job->len);
|
2016-07-27 07:01:43 +00:00
|
|
|
}
|
|
|
|
|
2013-06-24 15:13:11 +00:00
|
|
|
static BlockErrorAction backup_error_action(BackupBlockJob *job,
|
|
|
|
bool read, int error)
|
|
|
|
{
|
|
|
|
if (read) {
|
2016-04-18 09:36:38 +00:00
|
|
|
return block_job_error_action(&job->common, job->on_source_error,
|
|
|
|
true, error);
|
2013-06-24 15:13:11 +00:00
|
|
|
} else {
|
2016-04-18 09:36:38 +00:00
|
|
|
return block_job_error_action(&job->common, job->on_target_error,
|
|
|
|
false, error);
|
2013-06-24 15:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-17 23:49:58 +00:00
|
|
|
static bool coroutine_fn yield_and_check(BackupBlockJob *job)
|
|
|
|
{
|
2018-01-18 20:19:38 +00:00
|
|
|
uint64_t delay_ns;
|
|
|
|
|
2018-04-17 10:56:07 +00:00
|
|
|
if (job_is_cancelled(&job->common.job)) {
|
2015-04-17 23:49:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-20 14:20:47 +00:00
|
|
|
/*
|
|
|
|
* We need to yield even for delay_ns = 0 so that bdrv_drain_all() can
|
|
|
|
* return. Without a yield, the VM would not reboot.
|
|
|
|
*/
|
2018-01-18 20:19:38 +00:00
|
|
|
delay_ns = block_job_ratelimit_get_delay(&job->common, job->bytes_read);
|
|
|
|
job->bytes_read = 0;
|
2018-04-18 14:32:20 +00:00
|
|
|
job_sleep_ns(&job->common.job, delay_ns);
|
2015-04-17 23:49:58 +00:00
|
|
|
|
2018-04-17 10:56:07 +00:00
|
|
|
if (job_is_cancelled(&job->common.job)) {
|
2015-04-17 23:49:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-04-29 09:08:41 +00:00
|
|
|
static int coroutine_fn backup_loop(BackupBlockJob *job)
|
2015-04-17 23:49:58 +00:00
|
|
|
{
|
|
|
|
bool error_is_read;
|
2019-04-29 09:08:39 +00:00
|
|
|
int64_t offset;
|
2019-07-29 20:35:53 +00:00
|
|
|
BdrvDirtyBitmapIter *bdbi;
|
|
|
|
int ret = 0;
|
2015-04-17 23:49:58 +00:00
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
bdbi = bdrv_dirty_iter_new(job->bcs->copy_bitmap);
|
2019-07-29 20:35:53 +00:00
|
|
|
while ((offset = bdrv_dirty_iter_next(bdbi)) != -1) {
|
2017-10-12 13:53:13 +00:00
|
|
|
do {
|
|
|
|
if (yield_and_check(job)) {
|
2019-07-29 20:35:53 +00:00
|
|
|
goto out;
|
2017-10-12 13:53:13 +00:00
|
|
|
}
|
2019-04-29 09:08:39 +00:00
|
|
|
ret = backup_do_cow(job, offset,
|
2017-10-12 13:53:13 +00:00
|
|
|
job->cluster_size, &error_is_read, false);
|
|
|
|
if (ret < 0 && backup_error_action(job, error_is_read, -ret) ==
|
|
|
|
BLOCK_ERROR_ACTION_REPORT)
|
|
|
|
{
|
2019-07-29 20:35:53 +00:00
|
|
|
goto out;
|
2017-10-12 13:53:13 +00:00
|
|
|
}
|
|
|
|
} while (ret < 0);
|
2015-04-17 23:49:58 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 20:35:53 +00:00
|
|
|
out:
|
|
|
|
bdrv_dirty_iter_free(bdbi);
|
|
|
|
return ret;
|
2015-04-17 23:49:58 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 20:35:55 +00:00
|
|
|
static void backup_init_copy_bitmap(BackupBlockJob *job)
|
2017-10-12 13:53:11 +00:00
|
|
|
{
|
2019-07-29 20:35:55 +00:00
|
|
|
bool ret;
|
|
|
|
uint64_t estimate;
|
|
|
|
|
|
|
|
if (job->sync_mode == MIRROR_SYNC_MODE_BITMAP) {
|
2019-09-20 14:20:46 +00:00
|
|
|
ret = bdrv_dirty_bitmap_merge_internal(job->bcs->copy_bitmap,
|
2019-07-29 20:35:55 +00:00
|
|
|
job->sync_bitmap,
|
|
|
|
NULL, true);
|
|
|
|
assert(ret);
|
|
|
|
} else {
|
2019-07-29 20:35:55 +00:00
|
|
|
if (job->sync_mode == MIRROR_SYNC_MODE_TOP) {
|
|
|
|
/*
|
|
|
|
* We can't hog the coroutine to initialize this thoroughly.
|
|
|
|
* Set a flag and resume work when we are able to yield safely.
|
|
|
|
*/
|
2019-09-20 14:20:46 +00:00
|
|
|
job->bcs->skip_unallocated = true;
|
2019-07-29 20:35:55 +00:00
|
|
|
}
|
2019-09-20 14:20:46 +00:00
|
|
|
bdrv_set_dirty_bitmap(job->bcs->copy_bitmap, 0, job->len);
|
2019-07-29 20:35:55 +00:00
|
|
|
}
|
2017-10-12 13:53:11 +00:00
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
estimate = bdrv_get_dirty_count(job->bcs->copy_bitmap);
|
2019-07-29 20:35:55 +00:00
|
|
|
job_progress_set_remaining(&job->common.job, estimate);
|
2017-10-12 13:53:11 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 01:57:32 +00:00
|
|
|
static int coroutine_fn backup_run(Job *job, Error **errp)
|
2013-06-24 15:13:11 +00:00
|
|
|
{
|
2018-08-30 01:57:32 +00:00
|
|
|
BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
|
2013-06-24 15:13:11 +00:00
|
|
|
int ret = 0;
|
|
|
|
|
2018-08-30 01:57:32 +00:00
|
|
|
qemu_co_rwlock_init(&s->flush_rwlock);
|
2013-06-24 15:13:11 +00:00
|
|
|
|
2019-07-29 20:35:55 +00:00
|
|
|
backup_init_copy_bitmap(s);
|
2017-10-12 13:53:11 +00:00
|
|
|
|
2018-08-30 01:57:32 +00:00
|
|
|
s->before_write.notify = backup_before_write_notify;
|
2019-09-20 14:20:46 +00:00
|
|
|
bdrv_add_before_write_notifier(s->source_bs, &s->before_write);
|
2013-06-24 15:13:11 +00:00
|
|
|
|
2019-07-29 20:35:55 +00:00
|
|
|
if (s->sync_mode == MIRROR_SYNC_MODE_TOP) {
|
|
|
|
int64_t offset = 0;
|
|
|
|
int64_t count;
|
|
|
|
|
|
|
|
for (offset = 0; offset < s->len; ) {
|
|
|
|
if (yield_and_check(s)) {
|
|
|
|
ret = -ECANCELED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
ret = block_copy_reset_unallocated(s->bcs, offset, &count);
|
2019-07-29 20:35:55 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += count;
|
|
|
|
}
|
2019-09-20 14:20:46 +00:00
|
|
|
s->bcs->skip_unallocated = false;
|
2019-07-29 20:35:55 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 01:57:32 +00:00
|
|
|
if (s->sync_mode == MIRROR_SYNC_MODE_NONE) {
|
2019-09-20 14:20:47 +00:00
|
|
|
/*
|
|
|
|
* All bits are set in copy_bitmap to allow any cluster to be copied.
|
|
|
|
* This does not actually require them to be copied.
|
|
|
|
*/
|
2018-08-30 01:57:32 +00:00
|
|
|
while (!job_is_cancelled(job)) {
|
2019-09-20 14:20:47 +00:00
|
|
|
/*
|
|
|
|
* Yield until the job is cancelled. We just let our before_write
|
|
|
|
* notify callback service CoW requests.
|
|
|
|
*/
|
2018-08-30 01:57:32 +00:00
|
|
|
job_yield(job);
|
2013-06-24 15:13:11 +00:00
|
|
|
}
|
2013-07-26 18:39:04 +00:00
|
|
|
} else {
|
2019-04-29 09:08:41 +00:00
|
|
|
ret = backup_loop(s);
|
2013-06-24 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 20:35:55 +00:00
|
|
|
out:
|
2018-08-30 01:57:32 +00:00
|
|
|
notifier_with_return_remove(&s->before_write);
|
2013-06-24 15:13:11 +00:00
|
|
|
|
|
|
|
/* wait until pending backup_do_cow() calls have completed */
|
2018-08-30 01:57:32 +00:00
|
|
|
qemu_co_rwlock_wrlock(&s->flush_rwlock);
|
|
|
|
qemu_co_rwlock_unlock(&s->flush_rwlock);
|
2013-06-24 15:13:11 +00:00
|
|
|
|
2018-08-30 01:57:26 +00:00
|
|
|
return ret;
|
2013-06-24 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2016-11-08 06:50:36 +00:00
|
|
|
static const BlockJobDriver backup_job_driver = {
|
2018-04-12 15:29:59 +00:00
|
|
|
.job_driver = {
|
|
|
|
.instance_size = sizeof(BackupBlockJob),
|
2018-04-12 15:57:08 +00:00
|
|
|
.job_type = JOB_TYPE_BACKUP,
|
2018-04-13 16:50:05 +00:00
|
|
|
.free = block_job_free,
|
2018-04-18 15:10:26 +00:00
|
|
|
.user_resume = block_job_user_resume,
|
2018-08-30 01:57:26 +00:00
|
|
|
.run = backup_run,
|
2018-04-19 15:30:16 +00:00
|
|
|
.commit = backup_commit,
|
|
|
|
.abort = backup_abort,
|
|
|
|
.clean = backup_clean,
|
2019-08-29 09:09:53 +00:00
|
|
|
}
|
2016-11-08 06:50:36 +00:00
|
|
|
};
|
|
|
|
|
2019-04-29 09:08:42 +00:00
|
|
|
static int64_t backup_calculate_cluster_size(BlockDriverState *target,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
BlockDriverInfo bdi;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there is no backing file on the target, we cannot rely on COW if our
|
|
|
|
* backup cluster size is smaller than the target cluster size. Even for
|
|
|
|
* targets with a backing file, try to avoid COW if possible.
|
|
|
|
*/
|
|
|
|
ret = bdrv_get_info(target, &bdi);
|
|
|
|
if (ret == -ENOTSUP && !target->backing) {
|
|
|
|
/* Cluster size is not defined */
|
|
|
|
warn_report("The target block device doesn't provide "
|
|
|
|
"information about the block size and it doesn't have a "
|
|
|
|
"backing file. The default block size of %u bytes is "
|
|
|
|
"used. If the actual block size of the target exceeds "
|
|
|
|
"this default, the backup may be unusable",
|
|
|
|
BACKUP_CLUSTER_SIZE_DEFAULT);
|
|
|
|
return BACKUP_CLUSTER_SIZE_DEFAULT;
|
|
|
|
} else if (ret < 0 && !target->backing) {
|
|
|
|
error_setg_errno(errp, -ret,
|
|
|
|
"Couldn't determine the cluster size of the target image, "
|
|
|
|
"which has no backing file");
|
|
|
|
error_append_hint(errp,
|
|
|
|
"Aborting, since this may create an unusable destination image\n");
|
|
|
|
return ret;
|
|
|
|
} else if (ret < 0 && target->backing) {
|
|
|
|
/* Not fatal; just trudge on ahead. */
|
|
|
|
return BACKUP_CLUSTER_SIZE_DEFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return MAX(BACKUP_CLUSTER_SIZE_DEFAULT, bdi.cluster_size);
|
|
|
|
}
|
|
|
|
|
2016-11-08 06:50:38 +00:00
|
|
|
BlockJob *backup_job_create(const char *job_id, BlockDriverState *bs,
|
2016-07-05 14:28:58 +00:00
|
|
|
BlockDriverState *target, int64_t speed,
|
|
|
|
MirrorSyncMode sync_mode, BdrvDirtyBitmap *sync_bitmap,
|
2019-07-29 20:35:52 +00:00
|
|
|
BitmapSyncMode bitmap_mode,
|
2016-07-22 08:17:52 +00:00
|
|
|
bool compress,
|
2013-06-24 15:13:11 +00:00
|
|
|
BlockdevOnError on_source_error,
|
|
|
|
BlockdevOnError on_target_error,
|
2016-10-27 16:06:57 +00:00
|
|
|
int creation_flags,
|
2014-10-07 11:59:15 +00:00
|
|
|
BlockCompletionFunc *cb, void *opaque,
|
2018-04-19 14:09:52 +00:00
|
|
|
JobTxn *txn, Error **errp)
|
2013-06-24 15:13:11 +00:00
|
|
|
{
|
|
|
|
int64_t len;
|
2016-04-14 10:59:55 +00:00
|
|
|
BackupBlockJob *job = NULL;
|
2019-04-29 09:08:42 +00:00
|
|
|
int64_t cluster_size;
|
2019-09-20 14:20:46 +00:00
|
|
|
BdrvRequestFlags write_flags;
|
2013-06-24 15:13:11 +00:00
|
|
|
|
|
|
|
assert(bs);
|
|
|
|
assert(target);
|
|
|
|
|
2019-07-29 20:35:55 +00:00
|
|
|
/* QMP interface protects us from these cases */
|
|
|
|
assert(sync_mode != MIRROR_SYNC_MODE_INCREMENTAL);
|
|
|
|
assert(sync_bitmap || sync_mode != MIRROR_SYNC_MODE_BITMAP);
|
|
|
|
|
2014-12-18 10:37:05 +00:00
|
|
|
if (bs == target) {
|
|
|
|
error_setg(errp, "Source and target cannot be the same");
|
2016-11-08 06:50:38 +00:00
|
|
|
return NULL;
|
2014-12-18 10:37:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!bdrv_is_inserted(bs)) {
|
|
|
|
error_setg(errp, "Device is not inserted: %s",
|
|
|
|
bdrv_get_device_name(bs));
|
2016-11-08 06:50:38 +00:00
|
|
|
return NULL;
|
2014-12-18 10:37:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!bdrv_is_inserted(target)) {
|
|
|
|
error_setg(errp, "Device is not inserted: %s",
|
|
|
|
bdrv_get_device_name(target));
|
2016-11-08 06:50:38 +00:00
|
|
|
return NULL;
|
2014-12-18 10:37:05 +00:00
|
|
|
}
|
|
|
|
|
2019-06-04 16:15:06 +00:00
|
|
|
if (compress && !block_driver_can_compress(target->drv)) {
|
2016-07-22 08:17:52 +00:00
|
|
|
error_setg(errp, "Compression is not supported for this drive %s",
|
|
|
|
bdrv_get_device_name(target));
|
2016-11-08 06:50:38 +00:00
|
|
|
return NULL;
|
2016-07-22 08:17:52 +00:00
|
|
|
}
|
|
|
|
|
2014-12-18 10:37:05 +00:00
|
|
|
if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) {
|
2016-11-08 06:50:38 +00:00
|
|
|
return NULL;
|
2014-12-18 10:37:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bdrv_op_is_blocked(target, BLOCK_OP_TYPE_BACKUP_TARGET, errp)) {
|
2016-11-08 06:50:38 +00:00
|
|
|
return NULL;
|
2014-12-18 10:37:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 20:35:55 +00:00
|
|
|
if (sync_bitmap) {
|
2019-07-29 20:35:54 +00:00
|
|
|
/* If we need to write to this bitmap, check that we can: */
|
|
|
|
if (bitmap_mode != BITMAP_SYNC_MODE_NEVER &&
|
|
|
|
bdrv_dirty_bitmap_check(sync_bitmap, BDRV_BITMAP_DEFAULT, errp)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-04-17 23:49:58 +00:00
|
|
|
/* Create a new bitmap, and freeze/disable this one. */
|
|
|
|
if (bdrv_dirty_bitmap_create_successor(bs, sync_bitmap, errp) < 0) {
|
2016-11-08 06:50:38 +00:00
|
|
|
return NULL;
|
2015-04-17 23:49:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-24 15:13:11 +00:00
|
|
|
len = bdrv_getlength(bs);
|
|
|
|
if (len < 0) {
|
|
|
|
error_setg_errno(errp, -len, "unable to get length for '%s'",
|
|
|
|
bdrv_get_device_name(bs));
|
2015-04-17 23:49:58 +00:00
|
|
|
goto error;
|
2013-06-24 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 09:08:42 +00:00
|
|
|
cluster_size = backup_calculate_cluster_size(target, errp);
|
|
|
|
if (cluster_size < 0) {
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2019-07-30 16:32:51 +00:00
|
|
|
/*
|
2019-09-20 14:20:45 +00:00
|
|
|
* If source is in backing chain of target assume that target is going to be
|
|
|
|
* used for "image fleecing", i.e. it should represent a kind of snapshot of
|
|
|
|
* source at backup-start point in time. And target is going to be read by
|
|
|
|
* somebody (for example, used as NBD export) during backup job.
|
|
|
|
*
|
|
|
|
* In this case, we need to add BDRV_REQ_SERIALISING write flag to avoid
|
|
|
|
* intersection of backup writes and third party reads from target,
|
|
|
|
* otherwise reading from target we may occasionally read already updated by
|
|
|
|
* guest data.
|
|
|
|
*
|
|
|
|
* For more information see commit f8d59dfb40bb and test
|
|
|
|
* tests/qemu-iotests/222
|
2019-07-30 16:32:51 +00:00
|
|
|
*/
|
2019-09-20 14:20:46 +00:00
|
|
|
write_flags = (bdrv_chain_contains(target, bs) ? BDRV_REQ_SERIALISING : 0) |
|
|
|
|
(compress ? BDRV_REQ_WRITE_COMPRESSED : 0),
|
|
|
|
|
2019-10-01 13:14:06 +00:00
|
|
|
/* job->len is fixed, so we can't allow resize */
|
|
|
|
job = block_job_create(job_id, &backup_job_driver, txn, bs, 0, BLK_PERM_ALL,
|
|
|
|
speed, creation_flags, cb, opaque, errp);
|
|
|
|
if (!job) {
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
job->source_bs = bs;
|
|
|
|
job->on_source_error = on_source_error;
|
|
|
|
job->on_target_error = on_target_error;
|
|
|
|
job->sync_mode = sync_mode;
|
|
|
|
job->sync_bitmap = sync_bitmap;
|
|
|
|
job->bitmap_mode = bitmap_mode;
|
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
job->bcs = block_copy_state_new(bs, target, cluster_size, write_flags,
|
|
|
|
backup_progress_bytes_callback,
|
|
|
|
backup_progress_reset_callback, job, errp);
|
|
|
|
if (!job->bcs) {
|
|
|
|
goto error;
|
|
|
|
}
|
2019-07-30 16:32:51 +00:00
|
|
|
|
2019-04-29 09:08:42 +00:00
|
|
|
job->cluster_size = cluster_size;
|
2019-10-01 13:14:06 +00:00
|
|
|
job->len = len;
|
block/backup: avoid copying less than full target clusters
During incremental backups, if the target has a cluster size that is
larger than the backup cluster size and we are backing up to a target
that cannot (for whichever reason) pull clusters up from a backing image,
we may inadvertantly create unusable incremental backup images.
For example:
If the bitmap tracks changes at a 64KB granularity and we transmit 64KB
of data at a time but the target uses a 128KB cluster size, it is
possible that only half of a target cluster will be recognized as dirty
by the backup block job. When the cluster is allocated on the target
image but only half populated with data, we lose the ability to
distinguish between zero padding and uninitialized data.
This does not happen if the target image has a backing file that points
to the last known good backup.
Even if we have a backing file, though, it's likely going to be faster
to just buffer the redundant data ourselves from the live image than
fetching it from the backing file, so let's just always round up to the
target granularity.
The same logic applies to backup modes top, none, and full. Copying
fractional clusters without the guarantee of COW is dangerous, but even
if we can rely on COW, it's likely better to just re-copy the data.
Reported-by: Fam Zheng <famz@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Message-id: 1456433911-24718-3-git-send-email-jsnow@redhat.com
Signed-off-by: Jeff Cody <jcody@redhat.com>
2016-02-25 20:58:30 +00:00
|
|
|
|
2019-09-20 14:20:46 +00:00
|
|
|
/* Required permissions are already taken by block-copy-state target */
|
2017-01-17 10:56:42 +00:00
|
|
|
block_job_add_bdrv(&job->common, "target", target, 0, BLK_PERM_ALL,
|
|
|
|
&error_abort);
|
2016-11-08 06:50:38 +00:00
|
|
|
|
|
|
|
return &job->common;
|
2015-04-17 23:49:58 +00:00
|
|
|
|
|
|
|
error:
|
|
|
|
if (sync_bitmap) {
|
|
|
|
bdrv_reclaim_dirty_bitmap(bs, sync_bitmap, NULL);
|
|
|
|
}
|
2016-04-14 10:59:55 +00:00
|
|
|
if (job) {
|
2018-04-19 15:30:16 +00:00
|
|
|
backup_clean(&job->common.job);
|
|
|
|
job_early_fail(&job->common.job);
|
2016-04-14 10:59:55 +00:00
|
|
|
}
|
2016-11-08 06:50:38 +00:00
|
|
|
|
|
|
|
return NULL;
|
2013-06-24 15:13:11 +00:00
|
|
|
}
|