Merge remote-tracking branch 'remotes/vivier/tags/m68k-for-6.0-pull-request' into...
[qemu/ar7.git] / block / backup.c
blob6cf2f974aa2ae109dc543243072b461fe9f06952
1 /*
2 * QEMU backup
4 * Copyright (C) 2013 Proxmox Server Solutions
5 * Copyright (c) 2019 Virtuozzo International GmbH.
7 * Authors:
8 * Dietmar Maurer (dietmar@proxmox.com)
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
17 #include "trace.h"
18 #include "block/block.h"
19 #include "block/block_int.h"
20 #include "block/blockjob_int.h"
21 #include "block/block_backup.h"
22 #include "block/block-copy.h"
23 #include "qapi/error.h"
24 #include "qapi/qmp/qerror.h"
25 #include "qemu/cutils.h"
26 #include "sysemu/block-backend.h"
27 #include "qemu/bitmap.h"
28 #include "qemu/error-report.h"
30 #include "block/backup-top.h"
32 #define BACKUP_CLUSTER_SIZE_DEFAULT (1 << 16)
34 typedef struct BackupBlockJob {
35 BlockJob common;
36 BlockDriverState *backup_top;
37 BlockDriverState *source_bs;
38 BlockDriverState *target_bs;
40 BdrvDirtyBitmap *sync_bitmap;
42 MirrorSyncMode sync_mode;
43 BitmapSyncMode bitmap_mode;
44 BlockdevOnError on_source_error;
45 BlockdevOnError on_target_error;
46 uint64_t len;
47 int64_t cluster_size;
48 BackupPerf perf;
50 BlockCopyState *bcs;
52 bool wait;
53 BlockCopyCallState *bg_bcs_call;
54 } BackupBlockJob;
56 static const BlockJobDriver backup_job_driver;
58 static void backup_cleanup_sync_bitmap(BackupBlockJob *job, int ret)
60 BdrvDirtyBitmap *bm;
61 bool sync = (((ret == 0) || (job->bitmap_mode == BITMAP_SYNC_MODE_ALWAYS)) \
62 && (job->bitmap_mode != BITMAP_SYNC_MODE_NEVER));
64 if (sync) {
66 * We succeeded, or we always intended to sync the bitmap.
67 * Delete this bitmap and install the child.
69 bm = bdrv_dirty_bitmap_abdicate(job->sync_bitmap, NULL);
70 } else {
72 * We failed, or we never intended to sync the bitmap anyway.
73 * Merge the successor back into the parent, keeping all data.
75 bm = bdrv_reclaim_dirty_bitmap(job->sync_bitmap, NULL);
78 assert(bm);
80 if (ret < 0 && job->bitmap_mode == BITMAP_SYNC_MODE_ALWAYS) {
81 /* If we failed and synced, merge in the bits we didn't copy: */
82 bdrv_dirty_bitmap_merge_internal(bm, block_copy_dirty_bitmap(job->bcs),
83 NULL, true);
87 static void backup_commit(Job *job)
89 BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
90 if (s->sync_bitmap) {
91 backup_cleanup_sync_bitmap(s, 0);
95 static void backup_abort(Job *job)
97 BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
98 if (s->sync_bitmap) {
99 backup_cleanup_sync_bitmap(s, -1);
103 static void backup_clean(Job *job)
105 BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
106 block_job_remove_all_bdrv(&s->common);
107 bdrv_backup_top_drop(s->backup_top);
110 void backup_do_checkpoint(BlockJob *job, Error **errp)
112 BackupBlockJob *backup_job = container_of(job, BackupBlockJob, common);
114 assert(block_job_driver(job) == &backup_job_driver);
116 if (backup_job->sync_mode != MIRROR_SYNC_MODE_NONE) {
117 error_setg(errp, "The backup job only supports block checkpoint in"
118 " sync=none mode");
119 return;
122 bdrv_set_dirty_bitmap(block_copy_dirty_bitmap(backup_job->bcs), 0,
123 backup_job->len);
126 static BlockErrorAction backup_error_action(BackupBlockJob *job,
127 bool read, int error)
129 if (read) {
130 return block_job_error_action(&job->common, job->on_source_error,
131 true, error);
132 } else {
133 return block_job_error_action(&job->common, job->on_target_error,
134 false, error);
138 static void coroutine_fn backup_block_copy_callback(void *opaque)
140 BackupBlockJob *s = opaque;
142 if (s->wait) {
143 s->wait = false;
144 aio_co_wake(s->common.job.co);
145 } else {
146 job_enter(&s->common.job);
150 static int coroutine_fn backup_loop(BackupBlockJob *job)
152 BlockCopyCallState *s = NULL;
153 int ret = 0;
154 bool error_is_read;
155 BlockErrorAction act;
157 while (true) { /* retry loop */
158 job->bg_bcs_call = s = block_copy_async(job->bcs, 0,
159 QEMU_ALIGN_UP(job->len, job->cluster_size),
160 job->perf.max_workers, job->perf.max_chunk,
161 backup_block_copy_callback, job);
163 while (!block_copy_call_finished(s) &&
164 !job_is_cancelled(&job->common.job))
166 job_yield(&job->common.job);
169 if (!block_copy_call_finished(s)) {
170 assert(job_is_cancelled(&job->common.job));
172 * Note that we can't use job_yield() here, as it doesn't work for
173 * cancelled job.
175 block_copy_call_cancel(s);
176 job->wait = true;
177 qemu_coroutine_yield();
178 assert(block_copy_call_finished(s));
179 ret = 0;
180 goto out;
183 if (job_is_cancelled(&job->common.job) ||
184 block_copy_call_succeeded(s))
186 ret = 0;
187 goto out;
190 if (block_copy_call_cancelled(s)) {
192 * Job is not cancelled but only block-copy call. This is possible
193 * after job pause. Now the pause is finished, start new block-copy
194 * iteration.
196 block_copy_call_free(s);
197 continue;
200 /* The only remaining case is failed block-copy call. */
201 assert(block_copy_call_failed(s));
203 ret = block_copy_call_status(s, &error_is_read);
204 act = backup_error_action(job, error_is_read, -ret);
205 switch (act) {
206 case BLOCK_ERROR_ACTION_REPORT:
207 goto out;
208 case BLOCK_ERROR_ACTION_STOP:
210 * Go to pause prior to starting new block-copy call on the next
211 * iteration.
213 job_pause_point(&job->common.job);
214 break;
215 case BLOCK_ERROR_ACTION_IGNORE:
216 /* Proceed to new block-copy call to retry. */
217 break;
218 default:
219 abort();
222 block_copy_call_free(s);
225 out:
226 block_copy_call_free(s);
227 job->bg_bcs_call = NULL;
228 return ret;
231 static void backup_init_bcs_bitmap(BackupBlockJob *job)
233 bool ret;
234 uint64_t estimate;
235 BdrvDirtyBitmap *bcs_bitmap = block_copy_dirty_bitmap(job->bcs);
237 if (job->sync_mode == MIRROR_SYNC_MODE_BITMAP) {
238 ret = bdrv_dirty_bitmap_merge_internal(bcs_bitmap, job->sync_bitmap,
239 NULL, true);
240 assert(ret);
241 } else {
242 if (job->sync_mode == MIRROR_SYNC_MODE_TOP) {
244 * We can't hog the coroutine to initialize this thoroughly.
245 * Set a flag and resume work when we are able to yield safely.
247 block_copy_set_skip_unallocated(job->bcs, true);
249 bdrv_set_dirty_bitmap(bcs_bitmap, 0, job->len);
252 estimate = bdrv_get_dirty_count(bcs_bitmap);
253 job_progress_set_remaining(&job->common.job, estimate);
256 static int coroutine_fn backup_run(Job *job, Error **errp)
258 BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
259 int ret;
261 backup_init_bcs_bitmap(s);
263 if (s->sync_mode == MIRROR_SYNC_MODE_TOP) {
264 int64_t offset = 0;
265 int64_t count;
267 for (offset = 0; offset < s->len; ) {
268 if (job_is_cancelled(job)) {
269 return -ECANCELED;
272 job_pause_point(job);
274 if (job_is_cancelled(job)) {
275 return -ECANCELED;
278 ret = block_copy_reset_unallocated(s->bcs, offset, &count);
279 if (ret < 0) {
280 return ret;
283 offset += count;
285 block_copy_set_skip_unallocated(s->bcs, false);
288 if (s->sync_mode == MIRROR_SYNC_MODE_NONE) {
290 * All bits are set in bcs bitmap to allow any cluster to be copied.
291 * This does not actually require them to be copied.
293 while (!job_is_cancelled(job)) {
295 * Yield until the job is cancelled. We just let our before_write
296 * notify callback service CoW requests.
298 job_yield(job);
300 } else {
301 return backup_loop(s);
304 return 0;
307 static void coroutine_fn backup_pause(Job *job)
309 BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
311 if (s->bg_bcs_call && !block_copy_call_finished(s->bg_bcs_call)) {
312 block_copy_call_cancel(s->bg_bcs_call);
313 s->wait = true;
314 qemu_coroutine_yield();
318 static void coroutine_fn backup_set_speed(BlockJob *job, int64_t speed)
320 BackupBlockJob *s = container_of(job, BackupBlockJob, common);
323 * block_job_set_speed() is called first from block_job_create(), when we
324 * don't yet have s->bcs.
326 if (s->bcs) {
327 block_copy_set_speed(s->bcs, speed);
328 if (s->bg_bcs_call) {
329 block_copy_kick(s->bg_bcs_call);
334 static void backup_cancel(Job *job)
336 BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
338 bdrv_cancel_in_flight(s->target_bs);
341 static const BlockJobDriver backup_job_driver = {
342 .job_driver = {
343 .instance_size = sizeof(BackupBlockJob),
344 .job_type = JOB_TYPE_BACKUP,
345 .free = block_job_free,
346 .user_resume = block_job_user_resume,
347 .run = backup_run,
348 .commit = backup_commit,
349 .abort = backup_abort,
350 .clean = backup_clean,
351 .pause = backup_pause,
352 .cancel = backup_cancel,
354 .set_speed = backup_set_speed,
357 static int64_t backup_calculate_cluster_size(BlockDriverState *target,
358 Error **errp)
360 int ret;
361 BlockDriverInfo bdi;
362 bool target_does_cow = bdrv_backing_chain_next(target);
365 * If there is no backing file on the target, we cannot rely on COW if our
366 * backup cluster size is smaller than the target cluster size. Even for
367 * targets with a backing file, try to avoid COW if possible.
369 ret = bdrv_get_info(target, &bdi);
370 if (ret == -ENOTSUP && !target_does_cow) {
371 /* Cluster size is not defined */
372 warn_report("The target block device doesn't provide "
373 "information about the block size and it doesn't have a "
374 "backing file. The default block size of %u bytes is "
375 "used. If the actual block size of the target exceeds "
376 "this default, the backup may be unusable",
377 BACKUP_CLUSTER_SIZE_DEFAULT);
378 return BACKUP_CLUSTER_SIZE_DEFAULT;
379 } else if (ret < 0 && !target_does_cow) {
380 error_setg_errno(errp, -ret,
381 "Couldn't determine the cluster size of the target image, "
382 "which has no backing file");
383 error_append_hint(errp,
384 "Aborting, since this may create an unusable destination image\n");
385 return ret;
386 } else if (ret < 0 && target_does_cow) {
387 /* Not fatal; just trudge on ahead. */
388 return BACKUP_CLUSTER_SIZE_DEFAULT;
391 return MAX(BACKUP_CLUSTER_SIZE_DEFAULT, bdi.cluster_size);
394 BlockJob *backup_job_create(const char *job_id, BlockDriverState *bs,
395 BlockDriverState *target, int64_t speed,
396 MirrorSyncMode sync_mode, BdrvDirtyBitmap *sync_bitmap,
397 BitmapSyncMode bitmap_mode,
398 bool compress,
399 const char *filter_node_name,
400 BackupPerf *perf,
401 BlockdevOnError on_source_error,
402 BlockdevOnError on_target_error,
403 int creation_flags,
404 BlockCompletionFunc *cb, void *opaque,
405 JobTxn *txn, Error **errp)
407 int64_t len, target_len;
408 BackupBlockJob *job = NULL;
409 int64_t cluster_size;
410 BdrvRequestFlags write_flags;
411 BlockDriverState *backup_top = NULL;
412 BlockCopyState *bcs = NULL;
414 assert(bs);
415 assert(target);
417 /* QMP interface protects us from these cases */
418 assert(sync_mode != MIRROR_SYNC_MODE_INCREMENTAL);
419 assert(sync_bitmap || sync_mode != MIRROR_SYNC_MODE_BITMAP);
421 if (bs == target) {
422 error_setg(errp, "Source and target cannot be the same");
423 return NULL;
426 if (!bdrv_is_inserted(bs)) {
427 error_setg(errp, "Device is not inserted: %s",
428 bdrv_get_device_name(bs));
429 return NULL;
432 if (!bdrv_is_inserted(target)) {
433 error_setg(errp, "Device is not inserted: %s",
434 bdrv_get_device_name(target));
435 return NULL;
438 if (compress && !bdrv_supports_compressed_writes(target)) {
439 error_setg(errp, "Compression is not supported for this drive %s",
440 bdrv_get_device_name(target));
441 return NULL;
444 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) {
445 return NULL;
448 if (bdrv_op_is_blocked(target, BLOCK_OP_TYPE_BACKUP_TARGET, errp)) {
449 return NULL;
452 cluster_size = backup_calculate_cluster_size(target, errp);
453 if (cluster_size < 0) {
454 goto error;
457 if (perf->max_workers < 1) {
458 error_setg(errp, "max-workers must be greater than zero");
459 return NULL;
462 if (perf->max_chunk < 0) {
463 error_setg(errp, "max-chunk must be zero (which means no limit) or "
464 "positive");
465 return NULL;
468 if (perf->max_chunk && perf->max_chunk < cluster_size) {
469 error_setg(errp, "Required max-chunk (%" PRIi64 ") is less than backup "
470 "cluster size (%" PRIi64 ")", perf->max_chunk, cluster_size);
471 return NULL;
475 if (sync_bitmap) {
476 /* If we need to write to this bitmap, check that we can: */
477 if (bitmap_mode != BITMAP_SYNC_MODE_NEVER &&
478 bdrv_dirty_bitmap_check(sync_bitmap, BDRV_BITMAP_DEFAULT, errp)) {
479 return NULL;
482 /* Create a new bitmap, and freeze/disable this one. */
483 if (bdrv_dirty_bitmap_create_successor(sync_bitmap, errp) < 0) {
484 return NULL;
488 len = bdrv_getlength(bs);
489 if (len < 0) {
490 error_setg_errno(errp, -len, "Unable to get length for '%s'",
491 bdrv_get_device_or_node_name(bs));
492 goto error;
495 target_len = bdrv_getlength(target);
496 if (target_len < 0) {
497 error_setg_errno(errp, -target_len, "Unable to get length for '%s'",
498 bdrv_get_device_or_node_name(bs));
499 goto error;
502 if (target_len != len) {
503 error_setg(errp, "Source and target image have different sizes");
504 goto error;
508 * If source is in backing chain of target assume that target is going to be
509 * used for "image fleecing", i.e. it should represent a kind of snapshot of
510 * source at backup-start point in time. And target is going to be read by
511 * somebody (for example, used as NBD export) during backup job.
513 * In this case, we need to add BDRV_REQ_SERIALISING write flag to avoid
514 * intersection of backup writes and third party reads from target,
515 * otherwise reading from target we may occasionally read already updated by
516 * guest data.
518 * For more information see commit f8d59dfb40bb and test
519 * tests/qemu-iotests/222
521 write_flags = (bdrv_chain_contains(target, bs) ? BDRV_REQ_SERIALISING : 0) |
522 (compress ? BDRV_REQ_WRITE_COMPRESSED : 0),
524 backup_top = bdrv_backup_top_append(bs, target, filter_node_name,
525 cluster_size, perf,
526 write_flags, &bcs, errp);
527 if (!backup_top) {
528 goto error;
531 /* job->len is fixed, so we can't allow resize */
532 job = block_job_create(job_id, &backup_job_driver, txn, backup_top,
533 0, BLK_PERM_ALL,
534 speed, creation_flags, cb, opaque, errp);
535 if (!job) {
536 goto error;
539 job->backup_top = backup_top;
540 job->source_bs = bs;
541 job->target_bs = target;
542 job->on_source_error = on_source_error;
543 job->on_target_error = on_target_error;
544 job->sync_mode = sync_mode;
545 job->sync_bitmap = sync_bitmap;
546 job->bitmap_mode = bitmap_mode;
547 job->bcs = bcs;
548 job->cluster_size = cluster_size;
549 job->len = len;
550 job->perf = *perf;
552 block_copy_set_progress_meter(bcs, &job->common.job.progress);
553 block_copy_set_speed(bcs, speed);
555 /* Required permissions are already taken by backup-top target */
556 block_job_add_bdrv(&job->common, "target", target, 0, BLK_PERM_ALL,
557 &error_abort);
559 return &job->common;
561 error:
562 if (sync_bitmap) {
563 bdrv_reclaim_dirty_bitmap(sync_bitmap, NULL);
565 if (backup_top) {
566 bdrv_backup_top_drop(backup_top);
569 return NULL;