4 * Copyright Red Hat, Inc. 2012
7 * Paolo Bonzini <pbonzini@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qemu/cutils.h"
17 #include "block/blockjob_int.h"
18 #include "block/block_int.h"
19 #include "sysemu/block-backend.h"
20 #include "qapi/error.h"
21 #include "qapi/qmp/qerror.h"
22 #include "qemu/ratelimit.h"
23 #include "qemu/bitmap.h"
25 #define SLICE_TIME 100000000ULL /* ns */
26 #define MAX_IN_FLIGHT 16
27 #define MAX_IO_BYTES (1 << 20) /* 1 Mb */
28 #define DEFAULT_MIRROR_BUF_SIZE (MAX_IN_FLIGHT * MAX_IO_BYTES)
30 /* The mirroring buffer is a list of granularity-sized chunks.
31 * Free chunks are organized in a list.
33 typedef struct MirrorBuffer
{
34 QSIMPLEQ_ENTRY(MirrorBuffer
) next
;
37 typedef struct MirrorBlockJob
{
41 BlockDriverState
*mirror_top_bs
;
42 BlockDriverState
*source
;
43 BlockDriverState
*base
;
45 /* The name of the graph node to replace */
47 /* The BDS to replace */
48 BlockDriverState
*to_replace
;
49 /* Used to block operations on the drive-mirror-replace target */
50 Error
*replace_blocker
;
52 BlockMirrorBackingMode backing_mode
;
53 BlockdevOnError on_source_error
, on_target_error
;
59 unsigned long *cow_bitmap
;
60 BdrvDirtyBitmap
*dirty_bitmap
;
61 BdrvDirtyBitmapIter
*dbi
;
63 QSIMPLEQ_HEAD(, MirrorBuffer
) buf_free
;
66 uint64_t last_pause_ns
;
67 unsigned long *in_flight_bitmap
;
69 int64_t bytes_in_flight
;
73 int target_cluster_size
;
75 bool initial_zeroing_ongoing
;
78 typedef struct MirrorOp
{
85 static BlockErrorAction
mirror_error_action(MirrorBlockJob
*s
, bool read
,
90 return block_job_error_action(&s
->common
, s
->on_source_error
,
93 return block_job_error_action(&s
->common
, s
->on_target_error
,
98 static void mirror_iteration_done(MirrorOp
*op
, int ret
)
100 MirrorBlockJob
*s
= op
->s
;
105 trace_mirror_iteration_done(s
, op
->offset
, op
->bytes
, ret
);
108 s
->bytes_in_flight
-= op
->bytes
;
110 for (i
= 0; i
< op
->qiov
.niov
; i
++) {
111 MirrorBuffer
*buf
= (MirrorBuffer
*) iov
[i
].iov_base
;
112 QSIMPLEQ_INSERT_TAIL(&s
->buf_free
, buf
, next
);
116 chunk_num
= op
->offset
/ s
->granularity
;
117 nb_chunks
= DIV_ROUND_UP(op
->bytes
, s
->granularity
);
118 bitmap_clear(s
->in_flight_bitmap
, chunk_num
, nb_chunks
);
121 bitmap_set(s
->cow_bitmap
, chunk_num
, nb_chunks
);
123 if (!s
->initial_zeroing_ongoing
) {
124 s
->common
.offset
+= op
->bytes
;
127 qemu_iovec_destroy(&op
->qiov
);
130 if (s
->waiting_for_io
) {
131 qemu_coroutine_enter(s
->common
.co
);
135 static void mirror_write_complete(void *opaque
, int ret
)
137 MirrorOp
*op
= opaque
;
138 MirrorBlockJob
*s
= op
->s
;
140 aio_context_acquire(blk_get_aio_context(s
->common
.blk
));
142 BlockErrorAction action
;
144 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, op
->offset
>> BDRV_SECTOR_BITS
,
145 op
->bytes
>> BDRV_SECTOR_BITS
);
146 action
= mirror_error_action(s
, false, -ret
);
147 if (action
== BLOCK_ERROR_ACTION_REPORT
&& s
->ret
>= 0) {
151 mirror_iteration_done(op
, ret
);
152 aio_context_release(blk_get_aio_context(s
->common
.blk
));
155 static void mirror_read_complete(void *opaque
, int ret
)
157 MirrorOp
*op
= opaque
;
158 MirrorBlockJob
*s
= op
->s
;
160 aio_context_acquire(blk_get_aio_context(s
->common
.blk
));
162 BlockErrorAction action
;
164 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, op
->offset
>> BDRV_SECTOR_BITS
,
165 op
->bytes
>> BDRV_SECTOR_BITS
);
166 action
= mirror_error_action(s
, true, -ret
);
167 if (action
== BLOCK_ERROR_ACTION_REPORT
&& s
->ret
>= 0) {
171 mirror_iteration_done(op
, ret
);
173 blk_aio_pwritev(s
->target
, op
->offset
, &op
->qiov
,
174 0, mirror_write_complete
, op
);
176 aio_context_release(blk_get_aio_context(s
->common
.blk
));
179 /* Clip bytes relative to offset to not exceed end-of-file */
180 static inline int64_t mirror_clip_bytes(MirrorBlockJob
*s
,
184 return MIN(bytes
, s
->bdev_length
- offset
);
187 /* Round offset and/or bytes to target cluster if COW is needed, and
188 * return the offset of the adjusted tail against original. */
189 static int mirror_cow_align(MirrorBlockJob
*s
, int64_t *offset
,
194 int64_t align_offset
= *offset
;
195 unsigned int align_bytes
= *bytes
;
196 int max_bytes
= s
->granularity
* s
->max_iov
;
198 assert(*bytes
< INT_MAX
);
199 need_cow
= !test_bit(*offset
/ s
->granularity
, s
->cow_bitmap
);
200 need_cow
|= !test_bit((*offset
+ *bytes
- 1) / s
->granularity
,
203 bdrv_round_to_clusters(blk_bs(s
->target
), *offset
, *bytes
,
204 &align_offset
, &align_bytes
);
207 if (align_bytes
> max_bytes
) {
208 align_bytes
= max_bytes
;
210 align_bytes
= QEMU_ALIGN_DOWN(align_bytes
, s
->target_cluster_size
);
213 /* Clipping may result in align_bytes unaligned to chunk boundary, but
214 * that doesn't matter because it's already the end of source image. */
215 align_bytes
= mirror_clip_bytes(s
, align_offset
, align_bytes
);
217 ret
= align_offset
+ align_bytes
- (*offset
+ *bytes
);
218 *offset
= align_offset
;
219 *bytes
= align_bytes
;
224 static inline void mirror_wait_for_io(MirrorBlockJob
*s
)
226 assert(!s
->waiting_for_io
);
227 s
->waiting_for_io
= true;
228 qemu_coroutine_yield();
229 s
->waiting_for_io
= false;
232 /* Submit async read while handling COW.
233 * Returns: The number of bytes copied after and including offset,
234 * excluding any bytes copied prior to offset due to alignment.
235 * This will be @bytes if no alignment is necessary, or
236 * (new_end - offset) if tail is rounded up or down due to
237 * alignment or buffer limit.
239 static uint64_t mirror_do_read(MirrorBlockJob
*s
, int64_t offset
,
242 BlockBackend
*source
= s
->common
.blk
;
248 max_bytes
= s
->granularity
* s
->max_iov
;
250 /* We can only handle as much as buf_size at a time. */
251 bytes
= MIN(s
->buf_size
, MIN(max_bytes
, bytes
));
253 assert(bytes
< BDRV_REQUEST_MAX_BYTES
);
257 ret
+= mirror_cow_align(s
, &offset
, &bytes
);
259 assert(bytes
<= s
->buf_size
);
260 /* The offset is granularity-aligned because:
261 * 1) Caller passes in aligned values;
262 * 2) mirror_cow_align is used only when target cluster is larger. */
263 assert(QEMU_IS_ALIGNED(offset
, s
->granularity
));
264 /* The range is sector-aligned, since bdrv_getlength() rounds up. */
265 assert(QEMU_IS_ALIGNED(bytes
, BDRV_SECTOR_SIZE
));
266 nb_chunks
= DIV_ROUND_UP(bytes
, s
->granularity
);
268 while (s
->buf_free_count
< nb_chunks
) {
269 trace_mirror_yield_in_flight(s
, offset
, s
->in_flight
);
270 mirror_wait_for_io(s
);
273 /* Allocate a MirrorOp that is used as an AIO callback. */
274 op
= g_new(MirrorOp
, 1);
279 /* Now make a QEMUIOVector taking enough granularity-sized chunks
282 qemu_iovec_init(&op
->qiov
, nb_chunks
);
283 while (nb_chunks
-- > 0) {
284 MirrorBuffer
*buf
= QSIMPLEQ_FIRST(&s
->buf_free
);
285 size_t remaining
= bytes
- op
->qiov
.size
;
287 QSIMPLEQ_REMOVE_HEAD(&s
->buf_free
, next
);
289 qemu_iovec_add(&op
->qiov
, buf
, MIN(s
->granularity
, remaining
));
292 /* Copy the dirty cluster. */
294 s
->bytes_in_flight
+= bytes
;
295 trace_mirror_one_iteration(s
, offset
, bytes
);
297 blk_aio_preadv(source
, offset
, &op
->qiov
, 0, mirror_read_complete
, op
);
301 static void mirror_do_zero_or_discard(MirrorBlockJob
*s
,
308 /* Allocate a MirrorOp that is used as an AIO callback. The qiov is zeroed
309 * so the freeing in mirror_iteration_done is nop. */
310 op
= g_new0(MirrorOp
, 1);
316 s
->bytes_in_flight
+= bytes
;
318 blk_aio_pdiscard(s
->target
, offset
,
319 op
->bytes
, mirror_write_complete
, op
);
321 blk_aio_pwrite_zeroes(s
->target
, offset
,
322 op
->bytes
, s
->unmap
? BDRV_REQ_MAY_UNMAP
: 0,
323 mirror_write_complete
, op
);
327 static uint64_t coroutine_fn
mirror_iteration(MirrorBlockJob
*s
)
329 BlockDriverState
*source
= s
->source
;
330 int64_t offset
, first_chunk
;
331 uint64_t delay_ns
= 0;
332 /* At least the first dirty chunk is mirrored in one iteration. */
334 int sectors_per_chunk
= s
->granularity
>> BDRV_SECTOR_BITS
;
335 bool write_zeroes_ok
= bdrv_can_write_zeroes_with_unmap(blk_bs(s
->target
));
336 int max_io_bytes
= MAX(s
->buf_size
/ MAX_IN_FLIGHT
, MAX_IO_BYTES
);
338 bdrv_dirty_bitmap_lock(s
->dirty_bitmap
);
339 offset
= bdrv_dirty_iter_next(s
->dbi
) * BDRV_SECTOR_SIZE
;
341 bdrv_set_dirty_iter(s
->dbi
, 0);
342 offset
= bdrv_dirty_iter_next(s
->dbi
) * BDRV_SECTOR_SIZE
;
343 trace_mirror_restart_iter(s
, bdrv_get_dirty_count(s
->dirty_bitmap
) *
347 bdrv_dirty_bitmap_unlock(s
->dirty_bitmap
);
349 first_chunk
= offset
/ s
->granularity
;
350 while (test_bit(first_chunk
, s
->in_flight_bitmap
)) {
351 trace_mirror_yield_in_flight(s
, offset
, s
->in_flight
);
352 mirror_wait_for_io(s
);
355 block_job_pause_point(&s
->common
);
357 /* Find the number of consective dirty chunks following the first dirty
358 * one, and wait for in flight requests in them. */
359 bdrv_dirty_bitmap_lock(s
->dirty_bitmap
);
360 while (nb_chunks
* s
->granularity
< s
->buf_size
) {
362 int64_t next_offset
= offset
+ nb_chunks
* s
->granularity
;
363 int64_t next_chunk
= next_offset
/ s
->granularity
;
364 if (next_offset
>= s
->bdev_length
||
365 !bdrv_get_dirty_locked(source
, s
->dirty_bitmap
,
366 next_offset
>> BDRV_SECTOR_BITS
)) {
369 if (test_bit(next_chunk
, s
->in_flight_bitmap
)) {
373 next_dirty
= bdrv_dirty_iter_next(s
->dbi
) * BDRV_SECTOR_SIZE
;
374 if (next_dirty
> next_offset
|| next_dirty
< 0) {
375 /* The bitmap iterator's cache is stale, refresh it */
376 bdrv_set_dirty_iter(s
->dbi
, next_offset
>> BDRV_SECTOR_BITS
);
377 next_dirty
= bdrv_dirty_iter_next(s
->dbi
) * BDRV_SECTOR_SIZE
;
379 assert(next_dirty
== next_offset
);
383 /* Clear dirty bits before querying the block status, because
384 * calling bdrv_get_block_status_above could yield - if some blocks are
385 * marked dirty in this window, we need to know.
387 bdrv_reset_dirty_bitmap_locked(s
->dirty_bitmap
, offset
>> BDRV_SECTOR_BITS
,
388 nb_chunks
* sectors_per_chunk
);
389 bdrv_dirty_bitmap_unlock(s
->dirty_bitmap
);
391 bitmap_set(s
->in_flight_bitmap
, offset
/ s
->granularity
, nb_chunks
);
392 while (nb_chunks
> 0 && offset
< s
->bdev_length
) {
395 unsigned int io_bytes
;
396 int64_t io_bytes_acct
;
397 BlockDriverState
*file
;
401 MIRROR_METHOD_DISCARD
402 } mirror_method
= MIRROR_METHOD_COPY
;
404 assert(!(offset
% s
->granularity
));
405 ret
= bdrv_get_block_status_above(source
, NULL
,
406 offset
>> BDRV_SECTOR_BITS
,
407 nb_chunks
* sectors_per_chunk
,
409 io_bytes
= io_sectors
* BDRV_SECTOR_SIZE
;
411 io_bytes
= MIN(nb_chunks
* s
->granularity
, max_io_bytes
);
412 } else if (ret
& BDRV_BLOCK_DATA
) {
413 io_bytes
= MIN(io_bytes
, max_io_bytes
);
416 io_bytes
-= io_bytes
% s
->granularity
;
417 if (io_bytes
< s
->granularity
) {
418 io_bytes
= s
->granularity
;
419 } else if (ret
>= 0 && !(ret
& BDRV_BLOCK_DATA
)) {
420 int64_t target_offset
;
421 unsigned int target_bytes
;
422 bdrv_round_to_clusters(blk_bs(s
->target
), offset
, io_bytes
,
423 &target_offset
, &target_bytes
);
424 if (target_offset
== offset
&&
425 target_bytes
== io_bytes
) {
426 mirror_method
= ret
& BDRV_BLOCK_ZERO
?
428 MIRROR_METHOD_DISCARD
;
432 while (s
->in_flight
>= MAX_IN_FLIGHT
) {
433 trace_mirror_yield_in_flight(s
, offset
, s
->in_flight
);
434 mirror_wait_for_io(s
);
441 io_bytes
= mirror_clip_bytes(s
, offset
, io_bytes
);
442 switch (mirror_method
) {
443 case MIRROR_METHOD_COPY
:
444 io_bytes
= io_bytes_acct
= mirror_do_read(s
, offset
, io_bytes
);
446 case MIRROR_METHOD_ZERO
:
447 case MIRROR_METHOD_DISCARD
:
448 mirror_do_zero_or_discard(s
, offset
, io_bytes
,
449 mirror_method
== MIRROR_METHOD_DISCARD
);
450 if (write_zeroes_ok
) {
453 io_bytes_acct
= io_bytes
;
461 nb_chunks
-= DIV_ROUND_UP(io_bytes
, s
->granularity
);
462 if (s
->common
.speed
) {
463 delay_ns
= ratelimit_calculate_delay(&s
->limit
, io_bytes_acct
);
469 static void mirror_free_init(MirrorBlockJob
*s
)
471 int granularity
= s
->granularity
;
472 size_t buf_size
= s
->buf_size
;
473 uint8_t *buf
= s
->buf
;
475 assert(s
->buf_free_count
== 0);
476 QSIMPLEQ_INIT(&s
->buf_free
);
477 while (buf_size
!= 0) {
478 MirrorBuffer
*cur
= (MirrorBuffer
*)buf
;
479 QSIMPLEQ_INSERT_TAIL(&s
->buf_free
, cur
, next
);
481 buf_size
-= granularity
;
486 /* This is also used for the .pause callback. There is no matching
487 * mirror_resume() because mirror_run() will begin iterating again
488 * when the job is resumed.
490 static void mirror_wait_for_all_io(MirrorBlockJob
*s
)
492 while (s
->in_flight
> 0) {
493 mirror_wait_for_io(s
);
501 static void mirror_exit(BlockJob
*job
, void *opaque
)
503 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
504 MirrorExitData
*data
= opaque
;
505 AioContext
*replace_aio_context
= NULL
;
506 BlockDriverState
*src
= s
->source
;
507 BlockDriverState
*target_bs
= blk_bs(s
->target
);
508 BlockDriverState
*mirror_top_bs
= s
->mirror_top_bs
;
509 Error
*local_err
= NULL
;
511 bdrv_release_dirty_bitmap(src
, s
->dirty_bitmap
);
513 /* Make sure that the source BDS doesn't go away before we called
514 * block_job_completed(). */
516 bdrv_ref(mirror_top_bs
);
519 /* Remove target parent that still uses BLK_PERM_WRITE/RESIZE before
520 * inserting target_bs at s->to_replace, where we might not be able to get
523 * Note that blk_unref() alone doesn't necessarily drop permissions because
524 * we might be running nested inside mirror_drain(), which takes an extra
525 * reference, so use an explicit blk_set_perm() first. */
526 blk_set_perm(s
->target
, 0, BLK_PERM_ALL
, &error_abort
);
527 blk_unref(s
->target
);
530 /* We don't access the source any more. Dropping any WRITE/RESIZE is
531 * required before it could become a backing file of target_bs. */
532 bdrv_child_try_set_perm(mirror_top_bs
->backing
, 0, BLK_PERM_ALL
,
534 if (s
->backing_mode
== MIRROR_SOURCE_BACKING_CHAIN
) {
535 BlockDriverState
*backing
= s
->is_none_mode
? src
: s
->base
;
536 if (backing_bs(target_bs
) != backing
) {
537 bdrv_set_backing_hd(target_bs
, backing
, &local_err
);
539 error_report_err(local_err
);
546 replace_aio_context
= bdrv_get_aio_context(s
->to_replace
);
547 aio_context_acquire(replace_aio_context
);
550 if (s
->should_complete
&& data
->ret
== 0) {
551 BlockDriverState
*to_replace
= src
;
553 to_replace
= s
->to_replace
;
556 if (bdrv_get_flags(target_bs
) != bdrv_get_flags(to_replace
)) {
557 bdrv_reopen(target_bs
, bdrv_get_flags(to_replace
), NULL
);
560 /* The mirror job has no requests in flight any more, but we need to
561 * drain potential other users of the BDS before changing the graph. */
562 bdrv_drained_begin(target_bs
);
563 bdrv_replace_node(to_replace
, target_bs
, &local_err
);
564 bdrv_drained_end(target_bs
);
566 error_report_err(local_err
);
571 bdrv_op_unblock_all(s
->to_replace
, s
->replace_blocker
);
572 error_free(s
->replace_blocker
);
573 bdrv_unref(s
->to_replace
);
575 if (replace_aio_context
) {
576 aio_context_release(replace_aio_context
);
579 bdrv_unref(target_bs
);
581 /* Remove the mirror filter driver from the graph. Before this, get rid of
582 * the blockers on the intermediate nodes so that the resulting state is
583 * valid. Also give up permissions on mirror_top_bs->backing, which might
584 * block the removal. */
585 block_job_remove_all_bdrv(job
);
586 bdrv_child_try_set_perm(mirror_top_bs
->backing
, 0, BLK_PERM_ALL
,
588 bdrv_replace_node(mirror_top_bs
, backing_bs(mirror_top_bs
), &error_abort
);
590 /* We just changed the BDS the job BB refers to (with either or both of the
591 * bdrv_replace_node() calls), so switch the BB back so the cleanup does
592 * the right thing. We don't need any permissions any more now. */
593 blk_remove_bs(job
->blk
);
594 blk_set_perm(job
->blk
, 0, BLK_PERM_ALL
, &error_abort
);
595 blk_insert_bs(job
->blk
, mirror_top_bs
, &error_abort
);
597 block_job_completed(&s
->common
, data
->ret
);
600 bdrv_drained_end(src
);
601 bdrv_unref(mirror_top_bs
);
605 static void mirror_throttle(MirrorBlockJob
*s
)
607 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
609 if (now
- s
->last_pause_ns
> SLICE_TIME
) {
610 s
->last_pause_ns
= now
;
611 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, 0);
613 block_job_pause_point(&s
->common
);
617 static int coroutine_fn
mirror_dirty_init(MirrorBlockJob
*s
)
619 int64_t sector_num
, end
;
620 BlockDriverState
*base
= s
->base
;
621 BlockDriverState
*bs
= s
->source
;
622 BlockDriverState
*target_bs
= blk_bs(s
->target
);
626 end
= s
->bdev_length
/ BDRV_SECTOR_SIZE
;
628 if (base
== NULL
&& !bdrv_has_zero_init(target_bs
)) {
629 if (!bdrv_can_write_zeroes_with_unmap(target_bs
)) {
630 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, 0, end
);
634 s
->initial_zeroing_ongoing
= true;
635 for (sector_num
= 0; sector_num
< end
; ) {
636 int nb_sectors
= MIN(end
- sector_num
,
637 QEMU_ALIGN_DOWN(INT_MAX
, s
->granularity
) >> BDRV_SECTOR_BITS
);
641 if (block_job_is_cancelled(&s
->common
)) {
642 s
->initial_zeroing_ongoing
= false;
646 if (s
->in_flight
>= MAX_IN_FLIGHT
) {
647 trace_mirror_yield(s
, UINT64_MAX
, s
->buf_free_count
,
649 mirror_wait_for_io(s
);
653 mirror_do_zero_or_discard(s
, sector_num
* BDRV_SECTOR_SIZE
,
654 nb_sectors
* BDRV_SECTOR_SIZE
, false);
655 sector_num
+= nb_sectors
;
658 mirror_wait_for_all_io(s
);
659 s
->initial_zeroing_ongoing
= false;
662 /* First part, loop on the sectors and initialize the dirty bitmap. */
663 for (sector_num
= 0; sector_num
< end
; ) {
664 /* Just to make sure we are not exceeding int limit. */
665 int nb_sectors
= MIN(INT_MAX
>> BDRV_SECTOR_BITS
,
670 if (block_job_is_cancelled(&s
->common
)) {
674 ret
= bdrv_is_allocated_above(bs
, base
, sector_num
* BDRV_SECTOR_SIZE
,
675 nb_sectors
* BDRV_SECTOR_SIZE
, &count
);
680 /* TODO: Relax this once bdrv_is_allocated_above and dirty
681 * bitmaps no longer require sector alignment. */
682 assert(QEMU_IS_ALIGNED(count
, BDRV_SECTOR_SIZE
));
683 n
= count
>> BDRV_SECTOR_BITS
;
686 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, sector_num
, n
);
693 /* Called when going out of the streaming phase to flush the bulk of the
694 * data to the medium, or just before completing.
696 static int mirror_flush(MirrorBlockJob
*s
)
698 int ret
= blk_flush(s
->target
);
700 if (mirror_error_action(s
, false, -ret
) == BLOCK_ERROR_ACTION_REPORT
) {
707 static void coroutine_fn
mirror_run(void *opaque
)
709 MirrorBlockJob
*s
= opaque
;
710 MirrorExitData
*data
;
711 BlockDriverState
*bs
= s
->source
;
712 BlockDriverState
*target_bs
= blk_bs(s
->target
);
713 bool need_drain
= true;
716 char backing_filename
[2]; /* we only need 2 characters because we are only
717 checking for a NULL string */
720 if (block_job_is_cancelled(&s
->common
)) {
724 s
->bdev_length
= bdrv_getlength(bs
);
725 if (s
->bdev_length
< 0) {
726 ret
= s
->bdev_length
;
730 /* Active commit must resize the base image if its size differs from the
732 if (s
->base
== blk_bs(s
->target
)) {
735 base_length
= blk_getlength(s
->target
);
736 if (base_length
< 0) {
741 if (s
->bdev_length
> base_length
) {
742 ret
= blk_truncate(s
->target
, s
->bdev_length
, PREALLOC_MODE_OFF
,
750 if (s
->bdev_length
== 0) {
751 /* Report BLOCK_JOB_READY and wait for complete. */
752 block_job_event_ready(&s
->common
);
754 while (!block_job_is_cancelled(&s
->common
) && !s
->should_complete
) {
755 block_job_yield(&s
->common
);
757 s
->common
.cancelled
= false;
761 length
= DIV_ROUND_UP(s
->bdev_length
, s
->granularity
);
762 s
->in_flight_bitmap
= bitmap_new(length
);
764 /* If we have no backing file yet in the destination, we cannot let
765 * the destination do COW. Instead, we copy sectors around the
766 * dirty data if needed. We need a bitmap to do that.
768 bdrv_get_backing_filename(target_bs
, backing_filename
,
769 sizeof(backing_filename
));
770 if (!bdrv_get_info(target_bs
, &bdi
) && bdi
.cluster_size
) {
771 s
->target_cluster_size
= bdi
.cluster_size
;
773 s
->target_cluster_size
= BDRV_SECTOR_SIZE
;
775 if (backing_filename
[0] && !target_bs
->backing
&&
776 s
->granularity
< s
->target_cluster_size
) {
777 s
->buf_size
= MAX(s
->buf_size
, s
->target_cluster_size
);
778 s
->cow_bitmap
= bitmap_new(length
);
780 s
->max_iov
= MIN(bs
->bl
.max_iov
, target_bs
->bl
.max_iov
);
782 s
->buf
= qemu_try_blockalign(bs
, s
->buf_size
);
783 if (s
->buf
== NULL
) {
790 s
->last_pause_ns
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
791 if (!s
->is_none_mode
) {
792 ret
= mirror_dirty_init(s
);
793 if (ret
< 0 || block_job_is_cancelled(&s
->common
)) {
799 s
->dbi
= bdrv_dirty_iter_new(s
->dirty_bitmap
, 0);
801 uint64_t delay_ns
= 0;
803 bool should_complete
;
810 block_job_pause_point(&s
->common
);
812 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
813 /* s->common.offset contains the number of bytes already processed so
814 * far, cnt is the number of dirty sectors remaining and
815 * s->bytes_in_flight is the number of bytes currently being
816 * processed; together those are the current total operation length */
817 s
->common
.len
= s
->common
.offset
+ s
->bytes_in_flight
+
818 cnt
* BDRV_SECTOR_SIZE
;
820 /* Note that even when no rate limit is applied we need to yield
821 * periodically with no pending I/O so that bdrv_drain_all() returns.
822 * We do so every SLICE_TIME nanoseconds, or when there is an error,
823 * or when the source is clean, whichever comes first.
825 delta
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
) - s
->last_pause_ns
;
826 if (delta
< SLICE_TIME
&&
827 s
->common
.iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
828 if (s
->in_flight
>= MAX_IN_FLIGHT
|| s
->buf_free_count
== 0 ||
829 (cnt
== 0 && s
->in_flight
> 0)) {
830 trace_mirror_yield(s
, cnt
* BDRV_SECTOR_SIZE
,
831 s
->buf_free_count
, s
->in_flight
);
832 mirror_wait_for_io(s
);
834 } else if (cnt
!= 0) {
835 delay_ns
= mirror_iteration(s
);
839 should_complete
= false;
840 if (s
->in_flight
== 0 && cnt
== 0) {
841 trace_mirror_before_flush(s
);
843 if (mirror_flush(s
) < 0) {
844 /* Go check s->ret. */
847 /* We're out of the streaming phase. From now on, if the job
848 * is cancelled we will actually complete all pending I/O and
849 * report completion. This way, block-job-cancel will leave
850 * the target in a consistent state.
852 block_job_event_ready(&s
->common
);
856 should_complete
= s
->should_complete
||
857 block_job_is_cancelled(&s
->common
);
858 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
861 if (cnt
== 0 && should_complete
) {
862 /* The dirty bitmap is not updated while operations are pending.
863 * If we're about to exit, wait for pending operations before
864 * calling bdrv_get_dirty_count(bs), or we may exit while the
865 * source has dirty data to copy!
867 * Note that I/O can be submitted by the guest while
868 * mirror_populate runs, so pause it now. Before deciding
869 * whether to switch to target check one last time if I/O has
870 * come in the meanwhile, and if not flush the data to disk.
872 trace_mirror_before_drain(s
, cnt
* BDRV_SECTOR_SIZE
);
874 bdrv_drained_begin(bs
);
875 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
876 if (cnt
> 0 || mirror_flush(s
) < 0) {
877 bdrv_drained_end(bs
);
881 /* The two disks are in sync. Exit and report successful
884 assert(QLIST_EMPTY(&bs
->tracked_requests
));
885 s
->common
.cancelled
= false;
891 trace_mirror_before_sleep(s
, cnt
* BDRV_SECTOR_SIZE
,
892 s
->synced
, delay_ns
);
894 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, delay_ns
);
895 if (block_job_is_cancelled(&s
->common
)) {
898 } else if (!should_complete
) {
899 delay_ns
= (s
->in_flight
== 0 && cnt
== 0 ? SLICE_TIME
: 0);
900 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, delay_ns
);
902 s
->last_pause_ns
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
906 if (s
->in_flight
> 0) {
907 /* We get here only if something went wrong. Either the job failed,
908 * or it was cancelled prematurely so that we do not guarantee that
909 * the target is a copy of the source.
911 assert(ret
< 0 || (!s
->synced
&& block_job_is_cancelled(&s
->common
)));
913 mirror_wait_for_all_io(s
);
916 assert(s
->in_flight
== 0);
918 g_free(s
->cow_bitmap
);
919 g_free(s
->in_flight_bitmap
);
920 bdrv_dirty_iter_free(s
->dbi
);
922 data
= g_malloc(sizeof(*data
));
926 bdrv_drained_begin(bs
);
928 block_job_defer_to_main_loop(&s
->common
, mirror_exit
, data
);
931 static void mirror_set_speed(BlockJob
*job
, int64_t speed
, Error
**errp
)
933 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
936 error_setg(errp
, QERR_INVALID_PARAMETER
, "speed");
939 ratelimit_set_speed(&s
->limit
, speed
, SLICE_TIME
);
942 static void mirror_complete(BlockJob
*job
, Error
**errp
)
944 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
945 BlockDriverState
*target
;
947 target
= blk_bs(s
->target
);
950 error_setg(errp
, "The active block job '%s' cannot be completed",
955 if (s
->backing_mode
== MIRROR_OPEN_BACKING_CHAIN
) {
958 assert(!target
->backing
);
959 ret
= bdrv_open_backing_file(target
, NULL
, "backing", errp
);
965 /* block all operations on to_replace bs */
967 AioContext
*replace_aio_context
;
969 s
->to_replace
= bdrv_find_node(s
->replaces
);
970 if (!s
->to_replace
) {
971 error_setg(errp
, "Node name '%s' not found", s
->replaces
);
975 replace_aio_context
= bdrv_get_aio_context(s
->to_replace
);
976 aio_context_acquire(replace_aio_context
);
978 /* TODO Translate this into permission system. Current definition of
979 * GRAPH_MOD would require to request it for the parents; they might
980 * not even be BlockDriverStates, however, so a BdrvChild can't address
981 * them. May need redefinition of GRAPH_MOD. */
982 error_setg(&s
->replace_blocker
,
983 "block device is in use by block-job-complete");
984 bdrv_op_block_all(s
->to_replace
, s
->replace_blocker
);
985 bdrv_ref(s
->to_replace
);
987 aio_context_release(replace_aio_context
);
990 s
->should_complete
= true;
991 block_job_enter(&s
->common
);
994 static void mirror_pause(BlockJob
*job
)
996 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
998 mirror_wait_for_all_io(s
);
1001 static void mirror_attached_aio_context(BlockJob
*job
, AioContext
*new_context
)
1003 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
1005 blk_set_aio_context(s
->target
, new_context
);
1008 static void mirror_drain(BlockJob
*job
)
1010 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
1012 /* Need to keep a reference in case blk_drain triggers execution
1013 * of mirror_complete...
1016 BlockBackend
*target
= s
->target
;
1023 static const BlockJobDriver mirror_job_driver
= {
1024 .instance_size
= sizeof(MirrorBlockJob
),
1025 .job_type
= BLOCK_JOB_TYPE_MIRROR
,
1026 .set_speed
= mirror_set_speed
,
1027 .start
= mirror_run
,
1028 .complete
= mirror_complete
,
1029 .pause
= mirror_pause
,
1030 .attached_aio_context
= mirror_attached_aio_context
,
1031 .drain
= mirror_drain
,
1034 static const BlockJobDriver commit_active_job_driver
= {
1035 .instance_size
= sizeof(MirrorBlockJob
),
1036 .job_type
= BLOCK_JOB_TYPE_COMMIT
,
1037 .set_speed
= mirror_set_speed
,
1038 .start
= mirror_run
,
1039 .complete
= mirror_complete
,
1040 .pause
= mirror_pause
,
1041 .attached_aio_context
= mirror_attached_aio_context
,
1042 .drain
= mirror_drain
,
1045 static int coroutine_fn
bdrv_mirror_top_preadv(BlockDriverState
*bs
,
1046 uint64_t offset
, uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
1048 return bdrv_co_preadv(bs
->backing
, offset
, bytes
, qiov
, flags
);
1051 static int coroutine_fn
bdrv_mirror_top_pwritev(BlockDriverState
*bs
,
1052 uint64_t offset
, uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
1054 return bdrv_co_pwritev(bs
->backing
, offset
, bytes
, qiov
, flags
);
1057 static int coroutine_fn
bdrv_mirror_top_flush(BlockDriverState
*bs
)
1059 return bdrv_co_flush(bs
->backing
->bs
);
1062 static int64_t coroutine_fn
bdrv_mirror_top_get_block_status(
1063 BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
, int *pnum
,
1064 BlockDriverState
**file
)
1067 *file
= bs
->backing
->bs
;
1068 return BDRV_BLOCK_RAW
| BDRV_BLOCK_OFFSET_VALID
|
1069 (sector_num
<< BDRV_SECTOR_BITS
);
1072 static int coroutine_fn
bdrv_mirror_top_pwrite_zeroes(BlockDriverState
*bs
,
1073 int64_t offset
, int bytes
, BdrvRequestFlags flags
)
1075 return bdrv_co_pwrite_zeroes(bs
->backing
, offset
, bytes
, flags
);
1078 static int coroutine_fn
bdrv_mirror_top_pdiscard(BlockDriverState
*bs
,
1079 int64_t offset
, int bytes
)
1081 return bdrv_co_pdiscard(bs
->backing
->bs
, offset
, bytes
);
1084 static void bdrv_mirror_top_refresh_filename(BlockDriverState
*bs
, QDict
*opts
)
1086 bdrv_refresh_filename(bs
->backing
->bs
);
1087 pstrcpy(bs
->exact_filename
, sizeof(bs
->exact_filename
),
1088 bs
->backing
->bs
->filename
);
1091 static void bdrv_mirror_top_close(BlockDriverState
*bs
)
1095 static void bdrv_mirror_top_child_perm(BlockDriverState
*bs
, BdrvChild
*c
,
1096 const BdrvChildRole
*role
,
1097 uint64_t perm
, uint64_t shared
,
1098 uint64_t *nperm
, uint64_t *nshared
)
1100 /* Must be able to forward guest writes to the real image */
1102 if (perm
& BLK_PERM_WRITE
) {
1103 *nperm
|= BLK_PERM_WRITE
;
1106 *nshared
= BLK_PERM_ALL
;
1109 /* Dummy node that provides consistent read to its users without requiring it
1110 * from its backing file and that allows writes on the backing file chain. */
1111 static BlockDriver bdrv_mirror_top
= {
1112 .format_name
= "mirror_top",
1113 .bdrv_co_preadv
= bdrv_mirror_top_preadv
,
1114 .bdrv_co_pwritev
= bdrv_mirror_top_pwritev
,
1115 .bdrv_co_pwrite_zeroes
= bdrv_mirror_top_pwrite_zeroes
,
1116 .bdrv_co_pdiscard
= bdrv_mirror_top_pdiscard
,
1117 .bdrv_co_flush
= bdrv_mirror_top_flush
,
1118 .bdrv_co_get_block_status
= bdrv_mirror_top_get_block_status
,
1119 .bdrv_refresh_filename
= bdrv_mirror_top_refresh_filename
,
1120 .bdrv_close
= bdrv_mirror_top_close
,
1121 .bdrv_child_perm
= bdrv_mirror_top_child_perm
,
1124 static void mirror_start_job(const char *job_id
, BlockDriverState
*bs
,
1125 int creation_flags
, BlockDriverState
*target
,
1126 const char *replaces
, int64_t speed
,
1127 uint32_t granularity
, int64_t buf_size
,
1128 BlockMirrorBackingMode backing_mode
,
1129 BlockdevOnError on_source_error
,
1130 BlockdevOnError on_target_error
,
1132 BlockCompletionFunc
*cb
,
1134 const BlockJobDriver
*driver
,
1135 bool is_none_mode
, BlockDriverState
*base
,
1136 bool auto_complete
, const char *filter_node_name
,
1140 BlockDriverState
*mirror_top_bs
;
1141 bool target_graph_mod
;
1142 bool target_is_backing
;
1143 Error
*local_err
= NULL
;
1146 if (granularity
== 0) {
1147 granularity
= bdrv_get_default_bitmap_granularity(target
);
1150 assert ((granularity
& (granularity
- 1)) == 0);
1151 /* Granularity must be large enough for sector-based dirty bitmap */
1152 assert(granularity
>= BDRV_SECTOR_SIZE
);
1155 error_setg(errp
, "Invalid parameter 'buf-size'");
1159 if (buf_size
== 0) {
1160 buf_size
= DEFAULT_MIRROR_BUF_SIZE
;
1163 /* In the case of active commit, add dummy driver to provide consistent
1164 * reads on the top, while disabling it in the intermediate nodes, and make
1165 * the backing chain writable. */
1166 mirror_top_bs
= bdrv_new_open_driver(&bdrv_mirror_top
, filter_node_name
,
1168 if (mirror_top_bs
== NULL
) {
1171 mirror_top_bs
->total_sectors
= bs
->total_sectors
;
1172 bdrv_set_aio_context(mirror_top_bs
, bdrv_get_aio_context(bs
));
1174 /* bdrv_append takes ownership of the mirror_top_bs reference, need to keep
1175 * it alive until block_job_create() succeeds even if bs has no parent. */
1176 bdrv_ref(mirror_top_bs
);
1177 bdrv_drained_begin(bs
);
1178 bdrv_append(mirror_top_bs
, bs
, &local_err
);
1179 bdrv_drained_end(bs
);
1182 bdrv_unref(mirror_top_bs
);
1183 error_propagate(errp
, local_err
);
1187 /* Make sure that the source is not resized while the job is running */
1188 s
= block_job_create(job_id
, driver
, mirror_top_bs
,
1189 BLK_PERM_CONSISTENT_READ
,
1190 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
|
1191 BLK_PERM_WRITE
| BLK_PERM_GRAPH_MOD
, speed
,
1192 creation_flags
, cb
, opaque
, errp
);
1196 /* The block job now has a reference to this node */
1197 bdrv_unref(mirror_top_bs
);
1200 s
->mirror_top_bs
= mirror_top_bs
;
1202 /* No resize for the target either; while the mirror is still running, a
1203 * consistent read isn't necessarily possible. We could possibly allow
1204 * writes and graph modifications, though it would likely defeat the
1205 * purpose of a mirror, so leave them blocked for now.
1207 * In the case of active commit, things look a bit different, though,
1208 * because the target is an already populated backing file in active use.
1209 * We can allow anything except resize there.*/
1210 target_is_backing
= bdrv_chain_contains(bs
, target
);
1211 target_graph_mod
= (backing_mode
!= MIRROR_LEAVE_BACKING_CHAIN
);
1212 s
->target
= blk_new(BLK_PERM_WRITE
| BLK_PERM_RESIZE
|
1213 (target_graph_mod
? BLK_PERM_GRAPH_MOD
: 0),
1214 BLK_PERM_WRITE_UNCHANGED
|
1215 (target_is_backing
? BLK_PERM_CONSISTENT_READ
|
1217 BLK_PERM_GRAPH_MOD
: 0));
1218 ret
= blk_insert_bs(s
->target
, target
, errp
);
1223 s
->replaces
= g_strdup(replaces
);
1224 s
->on_source_error
= on_source_error
;
1225 s
->on_target_error
= on_target_error
;
1226 s
->is_none_mode
= is_none_mode
;
1227 s
->backing_mode
= backing_mode
;
1229 s
->granularity
= granularity
;
1230 s
->buf_size
= ROUND_UP(buf_size
, granularity
);
1232 if (auto_complete
) {
1233 s
->should_complete
= true;
1236 s
->dirty_bitmap
= bdrv_create_dirty_bitmap(bs
, granularity
, NULL
, errp
);
1237 if (!s
->dirty_bitmap
) {
1241 /* Required permissions are already taken with blk_new() */
1242 block_job_add_bdrv(&s
->common
, "target", target
, 0, BLK_PERM_ALL
,
1245 /* In commit_active_start() all intermediate nodes disappear, so
1246 * any jobs in them must be blocked */
1247 if (target_is_backing
) {
1248 BlockDriverState
*iter
;
1249 for (iter
= backing_bs(bs
); iter
!= target
; iter
= backing_bs(iter
)) {
1250 /* XXX BLK_PERM_WRITE needs to be allowed so we don't block
1251 * ourselves at s->base (if writes are blocked for a node, they are
1252 * also blocked for its backing file). The other options would be a
1253 * second filter driver above s->base (== target). */
1254 ret
= block_job_add_bdrv(&s
->common
, "intermediate node", iter
, 0,
1255 BLK_PERM_WRITE_UNCHANGED
| BLK_PERM_WRITE
,
1263 trace_mirror_start(bs
, s
, opaque
);
1264 block_job_start(&s
->common
);
1269 /* Make sure this BDS does not go away until we have completed the graph
1271 bdrv_ref(mirror_top_bs
);
1273 g_free(s
->replaces
);
1274 blk_unref(s
->target
);
1275 block_job_early_fail(&s
->common
);
1278 bdrv_child_try_set_perm(mirror_top_bs
->backing
, 0, BLK_PERM_ALL
,
1280 bdrv_replace_node(mirror_top_bs
, backing_bs(mirror_top_bs
), &error_abort
);
1282 bdrv_unref(mirror_top_bs
);
1285 void mirror_start(const char *job_id
, BlockDriverState
*bs
,
1286 BlockDriverState
*target
, const char *replaces
,
1287 int64_t speed
, uint32_t granularity
, int64_t buf_size
,
1288 MirrorSyncMode mode
, BlockMirrorBackingMode backing_mode
,
1289 BlockdevOnError on_source_error
,
1290 BlockdevOnError on_target_error
,
1291 bool unmap
, const char *filter_node_name
, Error
**errp
)
1294 BlockDriverState
*base
;
1296 if (mode
== MIRROR_SYNC_MODE_INCREMENTAL
) {
1297 error_setg(errp
, "Sync mode 'incremental' not supported");
1300 is_none_mode
= mode
== MIRROR_SYNC_MODE_NONE
;
1301 base
= mode
== MIRROR_SYNC_MODE_TOP
? backing_bs(bs
) : NULL
;
1302 mirror_start_job(job_id
, bs
, BLOCK_JOB_DEFAULT
, target
, replaces
,
1303 speed
, granularity
, buf_size
, backing_mode
,
1304 on_source_error
, on_target_error
, unmap
, NULL
, NULL
,
1305 &mirror_job_driver
, is_none_mode
, base
, false,
1306 filter_node_name
, errp
);
1309 void commit_active_start(const char *job_id
, BlockDriverState
*bs
,
1310 BlockDriverState
*base
, int creation_flags
,
1311 int64_t speed
, BlockdevOnError on_error
,
1312 const char *filter_node_name
,
1313 BlockCompletionFunc
*cb
, void *opaque
,
1314 bool auto_complete
, Error
**errp
)
1316 int orig_base_flags
;
1317 Error
*local_err
= NULL
;
1319 orig_base_flags
= bdrv_get_flags(base
);
1321 if (bdrv_reopen(base
, bs
->open_flags
, errp
)) {
1325 mirror_start_job(job_id
, bs
, creation_flags
, base
, NULL
, speed
, 0, 0,
1326 MIRROR_LEAVE_BACKING_CHAIN
,
1327 on_error
, on_error
, true, cb
, opaque
,
1328 &commit_active_job_driver
, false, base
, auto_complete
,
1329 filter_node_name
, &local_err
);
1331 error_propagate(errp
, local_err
);
1332 goto error_restore_flags
;
1337 error_restore_flags
:
1338 /* ignore error and errp for bdrv_reopen, because we want to propagate
1339 * the original error */
1340 bdrv_reopen(base
, orig_base_flags
, NULL
);