4 * Copyright (C) 2013 Proxmox Server Solutions
5 * Copyright (c) 2019 Virtuozzo International GmbH.
8 * Dietmar Maurer (dietmar@proxmox.com)
9 * Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
18 #include "qapi/error.h"
19 #include "block/block-copy.h"
20 #include "block/reqlist.h"
21 #include "sysemu/block-backend.h"
22 #include "qemu/units.h"
23 #include "qemu/coroutine.h"
24 #include "block/aio_task.h"
25 #include "qemu/error-report.h"
26 #include "qemu/memalign.h"
28 #define BLOCK_COPY_MAX_COPY_RANGE (16 * MiB)
29 #define BLOCK_COPY_MAX_BUFFER (1 * MiB)
30 #define BLOCK_COPY_MAX_MEM (128 * MiB)
31 #define BLOCK_COPY_MAX_WORKERS 64
32 #define BLOCK_COPY_SLICE_TIME 100000000ULL /* ns */
33 #define BLOCK_COPY_CLUSTER_SIZE_DEFAULT (1 << 16)
36 COPY_READ_WRITE_CLUSTER
,
43 static coroutine_fn
int block_copy_task_entry(AioTask
*task
);
45 typedef struct BlockCopyCallState
{
46 /* Fields initialized in block_copy_async() and never changed. */
52 bool ignore_ratelimit
;
53 BlockCopyAsyncCallbackFunc cb
;
55 /* Coroutine where async block-copy is running */
58 /* Fields whose state changes throughout the execution */
59 bool finished
; /* atomic */
60 QemuCoSleep sleep
; /* TODO: protect API with a lock */
61 bool cancelled
; /* atomic */
62 /* To reference all call states from BlockCopyState */
63 QLIST_ENTRY(BlockCopyCallState
) list
;
66 * Fields that report information about return values and erros.
67 * Protected by lock in BlockCopyState.
71 * @ret is set concurrently by tasks under mutex. Only set once by first
72 * failed task (and untouched if no task failed).
73 * After finishing (call_state->finished is true), it is not modified
74 * anymore and may be safely read without mutex.
79 typedef struct BlockCopyTask
{
83 * Fields initialized in block_copy_task_create()
87 BlockCopyCallState
*call_state
;
89 * @method can also be set again in the while loop of
90 * block_copy_dirty_clusters(), but it is never accessed concurrently
91 * because the only other function that reads it is
92 * block_copy_task_entry() and it is invoked afterwards in the same
95 BlockCopyMethod method
;
98 * Generally, req is protected by lock in BlockCopyState, Still req.offset
99 * is only set on task creation, so may be read concurrently after creation.
100 * req.bytes is changed at most once, and need only protecting the case of
101 * parallel read while updating @bytes value in block_copy_task_shrink().
106 static int64_t task_end(BlockCopyTask
*task
)
108 return task
->req
.offset
+ task
->req
.bytes
;
111 typedef struct BlockCopyState
{
113 * BdrvChild objects are not owned or managed by block-copy. They are
114 * provided by block-copy user and user is responsible for appropriate
115 * permissions on these children.
121 * Fields initialized in block_copy_state_new()
124 int64_t cluster_size
;
125 int64_t max_transfer
;
127 BdrvRequestFlags write_flags
;
130 * Fields whose state changes throughout the execution
134 int64_t in_flight_bytes
;
135 BlockCopyMethod method
;
137 QLIST_HEAD(, BlockCopyCallState
) calls
;
141 * Used by sync=top jobs, which first scan the source node for unallocated
142 * areas and clear them in the copy_bitmap. During this process, the bitmap
143 * is thus not fully initialized: It may still have bits set for areas that
144 * are unallocated and should actually not be copied.
146 * This is indicated by skip_unallocated.
148 * In this case, block_copy() will query the source’s allocation status,
149 * skip unallocated regions, clear them in the copy_bitmap, and invoke
150 * block_copy_reset_unallocated() every time it does.
152 bool skip_unallocated
; /* atomic */
153 /* State fields that use a thread-safe API */
154 BdrvDirtyBitmap
*copy_bitmap
;
155 ProgressMeter
*progress
;
157 RateLimit rate_limit
;
160 /* Called with lock held */
161 static int64_t block_copy_chunk_size(BlockCopyState
*s
)
164 case COPY_READ_WRITE_CLUSTER
:
165 return s
->cluster_size
;
166 case COPY_READ_WRITE
:
167 case COPY_RANGE_SMALL
:
168 return MIN(MAX(s
->cluster_size
, BLOCK_COPY_MAX_BUFFER
),
170 case COPY_RANGE_FULL
:
171 return MIN(MAX(s
->cluster_size
, BLOCK_COPY_MAX_COPY_RANGE
),
174 /* Cannot have COPY_WRITE_ZEROES here. */
180 * Search for the first dirty area in offset/bytes range and create task at
181 * the beginning of it.
183 static coroutine_fn BlockCopyTask
*
184 block_copy_task_create(BlockCopyState
*s
, BlockCopyCallState
*call_state
,
185 int64_t offset
, int64_t bytes
)
190 QEMU_LOCK_GUARD(&s
->lock
);
191 max_chunk
= MIN_NON_ZERO(block_copy_chunk_size(s
), call_state
->max_chunk
);
192 if (!bdrv_dirty_bitmap_next_dirty_area(s
->copy_bitmap
,
193 offset
, offset
+ bytes
,
194 max_chunk
, &offset
, &bytes
))
199 assert(QEMU_IS_ALIGNED(offset
, s
->cluster_size
));
200 bytes
= QEMU_ALIGN_UP(bytes
, s
->cluster_size
);
202 /* region is dirty, so no existent tasks possible in it */
203 assert(!reqlist_find_conflict(&s
->reqs
, offset
, bytes
));
205 bdrv_reset_dirty_bitmap(s
->copy_bitmap
, offset
, bytes
);
206 s
->in_flight_bytes
+= bytes
;
208 task
= g_new(BlockCopyTask
, 1);
209 *task
= (BlockCopyTask
) {
210 .task
.func
= block_copy_task_entry
,
212 .call_state
= call_state
,
215 reqlist_init_req(&s
->reqs
, &task
->req
, offset
, bytes
);
221 * block_copy_task_shrink
223 * Drop the tail of the task to be handled later. Set dirty bits back and
224 * wake up all tasks waiting for us (may be some of them are not intersecting
227 static void coroutine_fn
block_copy_task_shrink(BlockCopyTask
*task
,
230 QEMU_LOCK_GUARD(&task
->s
->lock
);
231 if (new_bytes
== task
->req
.bytes
) {
235 assert(new_bytes
> 0 && new_bytes
< task
->req
.bytes
);
237 task
->s
->in_flight_bytes
-= task
->req
.bytes
- new_bytes
;
238 bdrv_set_dirty_bitmap(task
->s
->copy_bitmap
,
239 task
->req
.offset
+ new_bytes
,
240 task
->req
.bytes
- new_bytes
);
242 reqlist_shrink_req(&task
->req
, new_bytes
);
245 static void coroutine_fn
block_copy_task_end(BlockCopyTask
*task
, int ret
)
247 QEMU_LOCK_GUARD(&task
->s
->lock
);
248 task
->s
->in_flight_bytes
-= task
->req
.bytes
;
250 bdrv_set_dirty_bitmap(task
->s
->copy_bitmap
, task
->req
.offset
,
253 if (task
->s
->progress
) {
254 progress_set_remaining(task
->s
->progress
,
255 bdrv_get_dirty_count(task
->s
->copy_bitmap
) +
256 task
->s
->in_flight_bytes
);
258 reqlist_remove_req(&task
->req
);
261 void block_copy_state_free(BlockCopyState
*s
)
267 ratelimit_destroy(&s
->rate_limit
);
268 bdrv_release_dirty_bitmap(s
->copy_bitmap
);
269 shres_destroy(s
->mem
);
273 static uint32_t block_copy_max_transfer(BdrvChild
*source
, BdrvChild
*target
)
275 return MIN_NON_ZERO(INT_MAX
,
276 MIN_NON_ZERO(source
->bs
->bl
.max_transfer
,
277 target
->bs
->bl
.max_transfer
));
280 void block_copy_set_copy_opts(BlockCopyState
*s
, bool use_copy_range
,
283 /* Keep BDRV_REQ_SERIALISING set (or not set) in block_copy_state_new() */
284 s
->write_flags
= (s
->write_flags
& BDRV_REQ_SERIALISING
) |
285 (compress
? BDRV_REQ_WRITE_COMPRESSED
: 0);
287 if (s
->max_transfer
< s
->cluster_size
) {
289 * copy_range does not respect max_transfer. We don't want to bother
290 * with requests smaller than block-copy cluster size, so fallback to
291 * buffered copying (read and write respect max_transfer on their
294 s
->method
= COPY_READ_WRITE_CLUSTER
;
295 } else if (compress
) {
296 /* Compression supports only cluster-size writes and no copy-range. */
297 s
->method
= COPY_READ_WRITE_CLUSTER
;
300 * If copy range enabled, start with COPY_RANGE_SMALL, until first
301 * successful copy_range (look at block_copy_do_copy).
303 s
->method
= use_copy_range
? COPY_RANGE_SMALL
: COPY_READ_WRITE
;
307 static int64_t block_copy_calculate_cluster_size(BlockDriverState
*target
,
312 bool target_does_cow
= bdrv_backing_chain_next(target
);
315 * If there is no backing file on the target, we cannot rely on COW if our
316 * backup cluster size is smaller than the target cluster size. Even for
317 * targets with a backing file, try to avoid COW if possible.
319 ret
= bdrv_get_info(target
, &bdi
);
320 if (ret
== -ENOTSUP
&& !target_does_cow
) {
321 /* Cluster size is not defined */
322 warn_report("The target block device doesn't provide "
323 "information about the block size and it doesn't have a "
324 "backing file. The default block size of %u bytes is "
325 "used. If the actual block size of the target exceeds "
326 "this default, the backup may be unusable",
327 BLOCK_COPY_CLUSTER_SIZE_DEFAULT
);
328 return BLOCK_COPY_CLUSTER_SIZE_DEFAULT
;
329 } else if (ret
< 0 && !target_does_cow
) {
330 error_setg_errno(errp
, -ret
,
331 "Couldn't determine the cluster size of the target image, "
332 "which has no backing file");
333 error_append_hint(errp
,
334 "Aborting, since this may create an unusable destination image\n");
336 } else if (ret
< 0 && target_does_cow
) {
337 /* Not fatal; just trudge on ahead. */
338 return BLOCK_COPY_CLUSTER_SIZE_DEFAULT
;
341 return MAX(BLOCK_COPY_CLUSTER_SIZE_DEFAULT
, bdi
.cluster_size
);
344 BlockCopyState
*block_copy_state_new(BdrvChild
*source
, BdrvChild
*target
,
345 const BdrvDirtyBitmap
*bitmap
,
350 int64_t cluster_size
;
351 BdrvDirtyBitmap
*copy_bitmap
;
354 cluster_size
= block_copy_calculate_cluster_size(target
->bs
, errp
);
355 if (cluster_size
< 0) {
359 copy_bitmap
= bdrv_create_dirty_bitmap(source
->bs
, cluster_size
, NULL
,
364 bdrv_disable_dirty_bitmap(copy_bitmap
);
366 if (!bdrv_merge_dirty_bitmap(copy_bitmap
, bitmap
, NULL
, errp
)) {
367 error_prepend(errp
, "Failed to merge bitmap '%s' to internal "
368 "copy-bitmap: ", bdrv_dirty_bitmap_name(bitmap
));
369 bdrv_release_dirty_bitmap(copy_bitmap
);
373 bdrv_set_dirty_bitmap(copy_bitmap
, 0,
374 bdrv_dirty_bitmap_size(copy_bitmap
));
378 * If source is in backing chain of target assume that target is going to be
379 * used for "image fleecing", i.e. it should represent a kind of snapshot of
380 * source at backup-start point in time. And target is going to be read by
381 * somebody (for example, used as NBD export) during backup job.
383 * In this case, we need to add BDRV_REQ_SERIALISING write flag to avoid
384 * intersection of backup writes and third party reads from target,
385 * otherwise reading from target we may occasionally read already updated by
388 * For more information see commit f8d59dfb40bb and test
389 * tests/qemu-iotests/222
391 is_fleecing
= bdrv_chain_contains(target
->bs
, source
->bs
);
393 s
= g_new(BlockCopyState
, 1);
394 *s
= (BlockCopyState
) {
397 .copy_bitmap
= copy_bitmap
,
398 .cluster_size
= cluster_size
,
399 .len
= bdrv_dirty_bitmap_size(copy_bitmap
),
400 .write_flags
= (is_fleecing
? BDRV_REQ_SERIALISING
: 0),
401 .mem
= shres_create(BLOCK_COPY_MAX_MEM
),
402 .max_transfer
= QEMU_ALIGN_DOWN(
403 block_copy_max_transfer(source
, target
),
407 block_copy_set_copy_opts(s
, false, false);
409 ratelimit_init(&s
->rate_limit
);
410 qemu_co_mutex_init(&s
->lock
);
411 QLIST_INIT(&s
->reqs
);
412 QLIST_INIT(&s
->calls
);
417 /* Only set before running the job, no need for locking. */
418 void block_copy_set_progress_meter(BlockCopyState
*s
, ProgressMeter
*pm
)
424 * Takes ownership of @task
426 * If pool is NULL directly run the task, otherwise schedule it into the pool.
428 * Returns: task.func return code if pool is NULL
429 * otherwise -ECANCELED if pool status is bad
430 * otherwise 0 (successfully scheduled)
432 static coroutine_fn
int block_copy_task_run(AioTaskPool
*pool
,
436 int ret
= task
->task
.func(&task
->task
);
442 aio_task_pool_wait_slot(pool
);
443 if (aio_task_pool_status(pool
) < 0) {
444 co_put_to_shres(task
->s
->mem
, task
->req
.bytes
);
445 block_copy_task_end(task
, -ECANCELED
);
450 aio_task_pool_start_task(pool
, &task
->task
);
458 * Do copy of cluster-aligned chunk. Requested region is allowed to exceed
459 * s->len only to cover last cluster when s->len is not aligned to clusters.
461 * No sync here: nor bitmap neighter intersecting requests handling, only copy.
463 * @method is an in-out argument, so that copy_range can be either extended to
464 * a full-size buffer or disabled if the copy_range attempt fails. The output
465 * value of @method should be used for subsequent tasks.
466 * Returns 0 on success.
468 static int coroutine_fn
block_copy_do_copy(BlockCopyState
*s
,
469 int64_t offset
, int64_t bytes
,
470 BlockCopyMethod
*method
,
474 int64_t nbytes
= MIN(offset
+ bytes
, s
->len
) - offset
;
475 void *bounce_buffer
= NULL
;
477 assert(offset
>= 0 && bytes
> 0 && INT64_MAX
- offset
>= bytes
);
478 assert(QEMU_IS_ALIGNED(offset
, s
->cluster_size
));
479 assert(QEMU_IS_ALIGNED(bytes
, s
->cluster_size
));
480 assert(offset
< s
->len
);
481 assert(offset
+ bytes
<= s
->len
||
482 offset
+ bytes
== QEMU_ALIGN_UP(s
->len
, s
->cluster_size
));
483 assert(nbytes
< INT_MAX
);
486 case COPY_WRITE_ZEROES
:
487 ret
= bdrv_co_pwrite_zeroes(s
->target
, offset
, nbytes
, s
->write_flags
&
488 ~BDRV_REQ_WRITE_COMPRESSED
);
490 trace_block_copy_write_zeroes_fail(s
, offset
, ret
);
491 *error_is_read
= false;
495 case COPY_RANGE_SMALL
:
496 case COPY_RANGE_FULL
:
497 ret
= bdrv_co_copy_range(s
->source
, offset
, s
->target
, offset
, nbytes
,
500 /* Successful copy-range, increase chunk size. */
501 *method
= COPY_RANGE_FULL
;
505 trace_block_copy_copy_range_fail(s
, offset
, ret
);
506 *method
= COPY_READ_WRITE
;
507 /* Fall through to read+write with allocated buffer */
509 case COPY_READ_WRITE_CLUSTER
:
510 case COPY_READ_WRITE
:
512 * In case of failed copy_range request above, we may proceed with
513 * buffered request larger than BLOCK_COPY_MAX_BUFFER.
514 * Still, further requests will be properly limited, so don't care too
515 * much. Moreover the most likely case (copy_range is unsupported for
516 * the configuration, so the very first copy_range request fails)
517 * is handled by setting large copy_size only after first successful
521 bounce_buffer
= qemu_blockalign(s
->source
->bs
, nbytes
);
523 ret
= bdrv_co_pread(s
->source
, offset
, nbytes
, bounce_buffer
, 0);
525 trace_block_copy_read_fail(s
, offset
, ret
);
526 *error_is_read
= true;
530 ret
= bdrv_co_pwrite(s
->target
, offset
, nbytes
, bounce_buffer
,
533 trace_block_copy_write_fail(s
, offset
, ret
);
534 *error_is_read
= false;
539 qemu_vfree(bounce_buffer
);
549 static coroutine_fn
int block_copy_task_entry(AioTask
*task
)
551 BlockCopyTask
*t
= container_of(task
, BlockCopyTask
, task
);
552 BlockCopyState
*s
= t
->s
;
553 bool error_is_read
= false;
554 BlockCopyMethod method
= t
->method
;
557 ret
= block_copy_do_copy(s
, t
->req
.offset
, t
->req
.bytes
, &method
,
560 WITH_QEMU_LOCK_GUARD(&s
->lock
) {
561 if (s
->method
== t
->method
) {
566 if (!t
->call_state
->ret
) {
567 t
->call_state
->ret
= ret
;
568 t
->call_state
->error_is_read
= error_is_read
;
570 } else if (s
->progress
) {
571 progress_work_done(s
->progress
, t
->req
.bytes
);
574 co_put_to_shres(s
->mem
, t
->req
.bytes
);
575 block_copy_task_end(t
, ret
);
580 static coroutine_fn
int block_copy_block_status(BlockCopyState
*s
,
582 int64_t bytes
, int64_t *pnum
)
585 BlockDriverState
*base
;
588 if (qatomic_read(&s
->skip_unallocated
)) {
589 base
= bdrv_backing_chain_next(s
->source
->bs
);
594 ret
= bdrv_co_block_status_above(s
->source
->bs
, base
, offset
, bytes
, &num
,
596 if (ret
< 0 || num
< s
->cluster_size
) {
598 * On error or if failed to obtain large enough chunk just fallback to
601 num
= s
->cluster_size
;
602 ret
= BDRV_BLOCK_ALLOCATED
| BDRV_BLOCK_DATA
;
603 } else if (offset
+ num
== s
->len
) {
604 num
= QEMU_ALIGN_UP(num
, s
->cluster_size
);
606 num
= QEMU_ALIGN_DOWN(num
, s
->cluster_size
);
614 * Check if the cluster starting at offset is allocated or not.
615 * return via pnum the number of contiguous clusters sharing this allocation.
617 static int coroutine_fn
block_copy_is_cluster_allocated(BlockCopyState
*s
,
621 BlockDriverState
*bs
= s
->source
->bs
;
622 int64_t count
, total_count
= 0;
623 int64_t bytes
= s
->len
- offset
;
626 assert(QEMU_IS_ALIGNED(offset
, s
->cluster_size
));
629 ret
= bdrv_co_is_allocated(bs
, offset
, bytes
, &count
);
634 total_count
+= count
;
636 if (ret
|| count
== 0) {
638 * ret: partial segment(s) are considered allocated.
639 * otherwise: unallocated tail is treated as an entire segment.
641 *pnum
= DIV_ROUND_UP(total_count
, s
->cluster_size
);
645 /* Unallocated segment(s) with uncertain following segment(s) */
646 if (total_count
>= s
->cluster_size
) {
647 *pnum
= total_count
/ s
->cluster_size
;
656 void block_copy_reset(BlockCopyState
*s
, int64_t offset
, int64_t bytes
)
658 QEMU_LOCK_GUARD(&s
->lock
);
660 bdrv_reset_dirty_bitmap(s
->copy_bitmap
, offset
, bytes
);
662 progress_set_remaining(s
->progress
,
663 bdrv_get_dirty_count(s
->copy_bitmap
) +
669 * Reset bits in copy_bitmap starting at offset if they represent unallocated
670 * data in the image. May reset subsequent contiguous bits.
671 * @return 0 when the cluster at @offset was unallocated,
672 * 1 otherwise, and -ret on error.
674 int64_t coroutine_fn
block_copy_reset_unallocated(BlockCopyState
*s
,
679 int64_t clusters
, bytes
;
681 ret
= block_copy_is_cluster_allocated(s
, offset
, &clusters
);
686 bytes
= clusters
* s
->cluster_size
;
689 block_copy_reset(s
, offset
, bytes
);
697 * block_copy_dirty_clusters
699 * Copy dirty clusters in @offset/@bytes range.
700 * Returns 1 if dirty clusters found and successfully copied, 0 if no dirty
701 * clusters found and -errno on failure.
703 static int coroutine_fn
704 block_copy_dirty_clusters(BlockCopyCallState
*call_state
)
706 BlockCopyState
*s
= call_state
->s
;
707 int64_t offset
= call_state
->offset
;
708 int64_t bytes
= call_state
->bytes
;
711 bool found_dirty
= false;
712 int64_t end
= offset
+ bytes
;
713 AioTaskPool
*aio
= NULL
;
716 * block_copy() user is responsible for keeping source and target in same
719 assert(bdrv_get_aio_context(s
->source
->bs
) ==
720 bdrv_get_aio_context(s
->target
->bs
));
722 assert(QEMU_IS_ALIGNED(offset
, s
->cluster_size
));
723 assert(QEMU_IS_ALIGNED(bytes
, s
->cluster_size
));
725 while (bytes
&& aio_task_pool_status(aio
) == 0 &&
726 !qatomic_read(&call_state
->cancelled
)) {
728 int64_t status_bytes
;
730 task
= block_copy_task_create(s
, call_state
, offset
, bytes
);
732 /* No more dirty bits in the bitmap */
733 trace_block_copy_skip_range(s
, offset
, bytes
);
736 if (task
->req
.offset
> offset
) {
737 trace_block_copy_skip_range(s
, offset
, task
->req
.offset
- offset
);
742 ret
= block_copy_block_status(s
, task
->req
.offset
, task
->req
.bytes
,
744 assert(ret
>= 0); /* never fail */
745 if (status_bytes
< task
->req
.bytes
) {
746 block_copy_task_shrink(task
, status_bytes
);
748 if (qatomic_read(&s
->skip_unallocated
) &&
749 !(ret
& BDRV_BLOCK_ALLOCATED
)) {
750 block_copy_task_end(task
, 0);
751 trace_block_copy_skip_range(s
, task
->req
.offset
, task
->req
.bytes
);
752 offset
= task_end(task
);
753 bytes
= end
- offset
;
757 if (ret
& BDRV_BLOCK_ZERO
) {
758 task
->method
= COPY_WRITE_ZEROES
;
761 if (!call_state
->ignore_ratelimit
) {
762 uint64_t ns
= ratelimit_calculate_delay(&s
->rate_limit
, 0);
764 block_copy_task_end(task
, -EAGAIN
);
766 qemu_co_sleep_ns_wakeable(&call_state
->sleep
,
767 QEMU_CLOCK_REALTIME
, ns
);
772 ratelimit_calculate_delay(&s
->rate_limit
, task
->req
.bytes
);
774 trace_block_copy_process(s
, task
->req
.offset
);
776 co_get_from_shres(s
->mem
, task
->req
.bytes
);
778 offset
= task_end(task
);
779 bytes
= end
- offset
;
782 aio
= aio_task_pool_new(call_state
->max_workers
);
785 ret
= block_copy_task_run(aio
, task
);
793 aio_task_pool_wait_all(aio
);
796 * We are not really interested in -ECANCELED returned from
797 * block_copy_task_run. If it fails, it means some task already failed
798 * for real reason, let's return first failure.
799 * Still, assert that we don't rewrite failure by success.
801 * Note: ret may be positive here because of block-status result.
803 assert(ret
>= 0 || aio_task_pool_status(aio
) < 0);
804 ret
= aio_task_pool_status(aio
);
806 aio_task_pool_free(aio
);
809 return ret
< 0 ? ret
: found_dirty
;
812 void block_copy_kick(BlockCopyCallState
*call_state
)
814 qemu_co_sleep_wake(&call_state
->sleep
);
820 * Copy requested region, accordingly to dirty bitmap.
821 * Collaborate with parallel block_copy requests: if they succeed it will help
822 * us. If they fail, we will retry not-copied regions. So, if we return error,
823 * it means that some I/O operation failed in context of _this_ block_copy call,
824 * not some parallel operation.
826 static int coroutine_fn
block_copy_common(BlockCopyCallState
*call_state
)
829 BlockCopyState
*s
= call_state
->s
;
831 qemu_co_mutex_lock(&s
->lock
);
832 QLIST_INSERT_HEAD(&s
->calls
, call_state
, list
);
833 qemu_co_mutex_unlock(&s
->lock
);
836 ret
= block_copy_dirty_clusters(call_state
);
838 if (ret
== 0 && !qatomic_read(&call_state
->cancelled
)) {
839 WITH_QEMU_LOCK_GUARD(&s
->lock
) {
841 * Check that there is no task we still need to
844 ret
= reqlist_wait_one(&s
->reqs
, call_state
->offset
,
845 call_state
->bytes
, &s
->lock
);
848 * No pending tasks, but check again the bitmap in this
849 * same critical section, since a task might have failed
850 * between this and the critical section in
851 * block_copy_dirty_clusters().
853 * reqlist_wait_one return value 0 also means that it
854 * didn't release the lock. So, we are still in the same
855 * critical section, not interrupted by any concurrent
858 ret
= bdrv_dirty_bitmap_next_dirty(s
->copy_bitmap
,
860 call_state
->bytes
) >= 0;
866 * We retry in two cases:
867 * 1. Some progress done
868 * Something was copied, which means that there were yield points
869 * and some new dirty bits may have appeared (due to failed parallel
870 * block-copy requests).
871 * 2. We have waited for some intersecting block-copy request
872 * It may have failed and produced new dirty bits.
874 } while (ret
> 0 && !qatomic_read(&call_state
->cancelled
));
876 qatomic_store_release(&call_state
->finished
, true);
878 if (call_state
->cb
) {
879 call_state
->cb(call_state
->cb_opaque
);
882 qemu_co_mutex_lock(&s
->lock
);
883 QLIST_REMOVE(call_state
, list
);
884 qemu_co_mutex_unlock(&s
->lock
);
889 static void coroutine_fn
block_copy_async_co_entry(void *opaque
)
891 block_copy_common(opaque
);
894 int coroutine_fn
block_copy(BlockCopyState
*s
, int64_t start
, int64_t bytes
,
895 bool ignore_ratelimit
, uint64_t timeout_ns
,
896 BlockCopyAsyncCallbackFunc cb
,
900 BlockCopyCallState
*call_state
= g_new(BlockCopyCallState
, 1);
902 *call_state
= (BlockCopyCallState
) {
906 .ignore_ratelimit
= ignore_ratelimit
,
907 .max_workers
= BLOCK_COPY_MAX_WORKERS
,
909 .cb_opaque
= cb_opaque
,
912 ret
= qemu_co_timeout(block_copy_async_co_entry
, call_state
, timeout_ns
,
915 assert(ret
== -ETIMEDOUT
);
916 block_copy_call_cancel(call_state
);
917 /* call_state will be freed by running coroutine. */
921 ret
= call_state
->ret
;
927 BlockCopyCallState
*block_copy_async(BlockCopyState
*s
,
928 int64_t offset
, int64_t bytes
,
929 int max_workers
, int64_t max_chunk
,
930 BlockCopyAsyncCallbackFunc cb
,
933 BlockCopyCallState
*call_state
= g_new(BlockCopyCallState
, 1);
935 *call_state
= (BlockCopyCallState
) {
939 .max_workers
= max_workers
,
940 .max_chunk
= max_chunk
,
942 .cb_opaque
= cb_opaque
,
944 .co
= qemu_coroutine_create(block_copy_async_co_entry
, call_state
),
947 qemu_coroutine_enter(call_state
->co
);
952 void block_copy_call_free(BlockCopyCallState
*call_state
)
958 assert(qatomic_read(&call_state
->finished
));
962 bool block_copy_call_finished(BlockCopyCallState
*call_state
)
964 return qatomic_read(&call_state
->finished
);
967 bool block_copy_call_succeeded(BlockCopyCallState
*call_state
)
969 return qatomic_load_acquire(&call_state
->finished
) &&
970 !qatomic_read(&call_state
->cancelled
) &&
971 call_state
->ret
== 0;
974 bool block_copy_call_failed(BlockCopyCallState
*call_state
)
976 return qatomic_load_acquire(&call_state
->finished
) &&
977 !qatomic_read(&call_state
->cancelled
) &&
981 bool block_copy_call_cancelled(BlockCopyCallState
*call_state
)
983 return qatomic_read(&call_state
->cancelled
);
986 int block_copy_call_status(BlockCopyCallState
*call_state
, bool *error_is_read
)
988 assert(qatomic_load_acquire(&call_state
->finished
));
990 *error_is_read
= call_state
->error_is_read
;
992 return call_state
->ret
;
996 * Note that cancelling and finishing are racy.
997 * User can cancel a block-copy that is already finished.
999 void block_copy_call_cancel(BlockCopyCallState
*call_state
)
1001 qatomic_set(&call_state
->cancelled
, true);
1002 block_copy_kick(call_state
);
1005 BdrvDirtyBitmap
*block_copy_dirty_bitmap(BlockCopyState
*s
)
1007 return s
->copy_bitmap
;
1010 int64_t block_copy_cluster_size(BlockCopyState
*s
)
1012 return s
->cluster_size
;
1015 void block_copy_set_skip_unallocated(BlockCopyState
*s
, bool skip
)
1017 qatomic_set(&s
->skip_unallocated
, skip
);
1020 void block_copy_set_speed(BlockCopyState
*s
, uint64_t speed
)
1022 ratelimit_set_speed(&s
->rate_limit
, speed
, BLOCK_COPY_SLICE_TIME
);
1025 * Note: it's good to kick all call states from here, but it should be done
1026 * only from a coroutine, to not crash if s->calls list changed while
1027 * entering one call. So for now, the only user of this function kicks its
1028 * only one call_state by hand.