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"
16 #include "qemu/coroutine.h"
17 #include "qemu/range.h"
19 #include "block/blockjob_int.h"
20 #include "block/block_int.h"
21 #include "sysemu/block-backend.h"
22 #include "qapi/error.h"
23 #include "qapi/qmp/qerror.h"
24 #include "qemu/ratelimit.h"
25 #include "qemu/bitmap.h"
27 #define MAX_IN_FLIGHT 16
28 #define MAX_IO_BYTES (1 << 20) /* 1 Mb */
29 #define DEFAULT_MIRROR_BUF_SIZE (MAX_IN_FLIGHT * MAX_IO_BYTES)
31 /* The mirroring buffer is a list of granularity-sized chunks.
32 * Free chunks are organized in a list.
34 typedef struct MirrorBuffer
{
35 QSIMPLEQ_ENTRY(MirrorBuffer
) next
;
38 typedef struct MirrorOp MirrorOp
;
40 typedef struct MirrorBlockJob
{
43 BlockDriverState
*mirror_top_bs
;
44 BlockDriverState
*base
;
46 /* The name of the graph node to replace */
48 /* The BDS to replace */
49 BlockDriverState
*to_replace
;
50 /* Used to block operations on the drive-mirror-replace target */
51 Error
*replace_blocker
;
53 BlockMirrorBackingMode backing_mode
;
54 MirrorCopyMode copy_mode
;
55 BlockdevOnError on_source_error
, on_target_error
;
57 /* Set when the target is synced (dirty bitmap is clean, nothing
58 * in flight) and the job is running in active mode */
64 unsigned long *cow_bitmap
;
65 BdrvDirtyBitmap
*dirty_bitmap
;
66 BdrvDirtyBitmapIter
*dbi
;
68 QSIMPLEQ_HEAD(, MirrorBuffer
) buf_free
;
71 uint64_t last_pause_ns
;
72 unsigned long *in_flight_bitmap
;
74 int64_t bytes_in_flight
;
75 QTAILQ_HEAD(, MirrorOp
) ops_in_flight
;
78 int target_cluster_size
;
80 bool initial_zeroing_ongoing
;
81 int in_active_write_counter
;
86 typedef struct MirrorBDSOpaque
{
97 /* The pointee is set by mirror_co_read(), mirror_co_zero(), and
98 * mirror_co_discard() before yielding for the first time */
99 int64_t *bytes_handled
;
102 bool is_active_write
;
103 CoQueue waiting_requests
;
105 QTAILQ_ENTRY(MirrorOp
) next
;
108 typedef enum MirrorMethod
{
111 MIRROR_METHOD_DISCARD
,
114 static BlockErrorAction
mirror_error_action(MirrorBlockJob
*s
, bool read
,
118 s
->actively_synced
= false;
120 return block_job_error_action(&s
->common
, s
->on_source_error
,
123 return block_job_error_action(&s
->common
, s
->on_target_error
,
128 static void coroutine_fn
mirror_wait_on_conflicts(MirrorOp
*self
,
133 uint64_t self_start_chunk
= offset
/ s
->granularity
;
134 uint64_t self_end_chunk
= DIV_ROUND_UP(offset
+ bytes
, s
->granularity
);
135 uint64_t self_nb_chunks
= self_end_chunk
- self_start_chunk
;
137 while (find_next_bit(s
->in_flight_bitmap
, self_end_chunk
,
138 self_start_chunk
) < self_end_chunk
&&
143 QTAILQ_FOREACH(op
, &s
->ops_in_flight
, next
) {
144 uint64_t op_start_chunk
= op
->offset
/ s
->granularity
;
145 uint64_t op_nb_chunks
= DIV_ROUND_UP(op
->offset
+ op
->bytes
,
153 if (ranges_overlap(self_start_chunk
, self_nb_chunks
,
154 op_start_chunk
, op_nb_chunks
))
156 qemu_co_queue_wait(&op
->waiting_requests
, NULL
);
163 static void coroutine_fn
mirror_iteration_done(MirrorOp
*op
, int ret
)
165 MirrorBlockJob
*s
= op
->s
;
170 trace_mirror_iteration_done(s
, op
->offset
, op
->bytes
, ret
);
173 s
->bytes_in_flight
-= op
->bytes
;
175 for (i
= 0; i
< op
->qiov
.niov
; i
++) {
176 MirrorBuffer
*buf
= (MirrorBuffer
*) iov
[i
].iov_base
;
177 QSIMPLEQ_INSERT_TAIL(&s
->buf_free
, buf
, next
);
181 chunk_num
= op
->offset
/ s
->granularity
;
182 nb_chunks
= DIV_ROUND_UP(op
->bytes
, s
->granularity
);
184 bitmap_clear(s
->in_flight_bitmap
, chunk_num
, nb_chunks
);
185 QTAILQ_REMOVE(&s
->ops_in_flight
, op
, next
);
188 bitmap_set(s
->cow_bitmap
, chunk_num
, nb_chunks
);
190 if (!s
->initial_zeroing_ongoing
) {
191 job_progress_update(&s
->common
.job
, op
->bytes
);
194 qemu_iovec_destroy(&op
->qiov
);
196 qemu_co_queue_restart_all(&op
->waiting_requests
);
200 static void coroutine_fn
mirror_write_complete(MirrorOp
*op
, int ret
)
202 MirrorBlockJob
*s
= op
->s
;
205 BlockErrorAction action
;
207 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, op
->offset
, op
->bytes
);
208 action
= mirror_error_action(s
, false, -ret
);
209 if (action
== BLOCK_ERROR_ACTION_REPORT
&& s
->ret
>= 0) {
214 mirror_iteration_done(op
, ret
);
217 static void coroutine_fn
mirror_read_complete(MirrorOp
*op
, int ret
)
219 MirrorBlockJob
*s
= op
->s
;
222 BlockErrorAction action
;
224 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, op
->offset
, op
->bytes
);
225 action
= mirror_error_action(s
, true, -ret
);
226 if (action
== BLOCK_ERROR_ACTION_REPORT
&& s
->ret
>= 0) {
230 mirror_iteration_done(op
, ret
);
234 ret
= blk_co_pwritev(s
->target
, op
->offset
, op
->qiov
.size
, &op
->qiov
, 0);
235 mirror_write_complete(op
, ret
);
238 /* Clip bytes relative to offset to not exceed end-of-file */
239 static inline int64_t mirror_clip_bytes(MirrorBlockJob
*s
,
243 return MIN(bytes
, s
->bdev_length
- offset
);
246 /* Round offset and/or bytes to target cluster if COW is needed, and
247 * return the offset of the adjusted tail against original. */
248 static int mirror_cow_align(MirrorBlockJob
*s
, int64_t *offset
,
253 int64_t align_offset
= *offset
;
254 int64_t align_bytes
= *bytes
;
255 int max_bytes
= s
->granularity
* s
->max_iov
;
257 need_cow
= !test_bit(*offset
/ s
->granularity
, s
->cow_bitmap
);
258 need_cow
|= !test_bit((*offset
+ *bytes
- 1) / s
->granularity
,
261 bdrv_round_to_clusters(blk_bs(s
->target
), *offset
, *bytes
,
262 &align_offset
, &align_bytes
);
265 if (align_bytes
> max_bytes
) {
266 align_bytes
= max_bytes
;
268 align_bytes
= QEMU_ALIGN_DOWN(align_bytes
, s
->target_cluster_size
);
271 /* Clipping may result in align_bytes unaligned to chunk boundary, but
272 * that doesn't matter because it's already the end of source image. */
273 align_bytes
= mirror_clip_bytes(s
, align_offset
, align_bytes
);
275 ret
= align_offset
+ align_bytes
- (*offset
+ *bytes
);
276 *offset
= align_offset
;
277 *bytes
= align_bytes
;
282 static inline void coroutine_fn
283 mirror_wait_for_any_operation(MirrorBlockJob
*s
, bool active
)
287 QTAILQ_FOREACH(op
, &s
->ops_in_flight
, next
) {
288 /* Do not wait on pseudo ops, because it may in turn wait on
289 * some other operation to start, which may in fact be the
290 * caller of this function. Since there is only one pseudo op
291 * at any given time, we will always find some real operation
293 if (!op
->is_pseudo_op
&& op
->is_active_write
== active
) {
294 qemu_co_queue_wait(&op
->waiting_requests
, NULL
);
301 static inline void coroutine_fn
302 mirror_wait_for_free_in_flight_slot(MirrorBlockJob
*s
)
304 /* Only non-active operations use up in-flight slots */
305 mirror_wait_for_any_operation(s
, false);
308 /* Perform a mirror copy operation.
310 * *op->bytes_handled is set to the number of bytes copied after and
311 * including offset, excluding any bytes copied prior to offset due
312 * to alignment. This will be op->bytes if no alignment is necessary,
313 * or (new_end - op->offset) if the tail is rounded up or down due to
314 * alignment or buffer limit.
316 static void coroutine_fn
mirror_co_read(void *opaque
)
318 MirrorOp
*op
= opaque
;
319 MirrorBlockJob
*s
= op
->s
;
324 max_bytes
= s
->granularity
* s
->max_iov
;
326 /* We can only handle as much as buf_size at a time. */
327 op
->bytes
= MIN(s
->buf_size
, MIN(max_bytes
, op
->bytes
));
329 assert(op
->bytes
< BDRV_REQUEST_MAX_BYTES
);
330 *op
->bytes_handled
= op
->bytes
;
333 *op
->bytes_handled
+= mirror_cow_align(s
, &op
->offset
, &op
->bytes
);
335 /* Cannot exceed BDRV_REQUEST_MAX_BYTES + INT_MAX */
336 assert(*op
->bytes_handled
<= UINT_MAX
);
337 assert(op
->bytes
<= s
->buf_size
);
338 /* The offset is granularity-aligned because:
339 * 1) Caller passes in aligned values;
340 * 2) mirror_cow_align is used only when target cluster is larger. */
341 assert(QEMU_IS_ALIGNED(op
->offset
, s
->granularity
));
342 /* The range is sector-aligned, since bdrv_getlength() rounds up. */
343 assert(QEMU_IS_ALIGNED(op
->bytes
, BDRV_SECTOR_SIZE
));
344 nb_chunks
= DIV_ROUND_UP(op
->bytes
, s
->granularity
);
346 while (s
->buf_free_count
< nb_chunks
) {
347 trace_mirror_yield_in_flight(s
, op
->offset
, s
->in_flight
);
348 mirror_wait_for_free_in_flight_slot(s
);
351 /* Now make a QEMUIOVector taking enough granularity-sized chunks
354 qemu_iovec_init(&op
->qiov
, nb_chunks
);
355 while (nb_chunks
-- > 0) {
356 MirrorBuffer
*buf
= QSIMPLEQ_FIRST(&s
->buf_free
);
357 size_t remaining
= op
->bytes
- op
->qiov
.size
;
359 QSIMPLEQ_REMOVE_HEAD(&s
->buf_free
, next
);
361 qemu_iovec_add(&op
->qiov
, buf
, MIN(s
->granularity
, remaining
));
364 /* Copy the dirty cluster. */
366 s
->bytes_in_flight
+= op
->bytes
;
367 trace_mirror_one_iteration(s
, op
->offset
, op
->bytes
);
369 ret
= bdrv_co_preadv(s
->mirror_top_bs
->backing
, op
->offset
, op
->bytes
,
371 mirror_read_complete(op
, ret
);
374 static void coroutine_fn
mirror_co_zero(void *opaque
)
376 MirrorOp
*op
= opaque
;
380 op
->s
->bytes_in_flight
+= op
->bytes
;
381 *op
->bytes_handled
= op
->bytes
;
383 ret
= blk_co_pwrite_zeroes(op
->s
->target
, op
->offset
, op
->bytes
,
384 op
->s
->unmap
? BDRV_REQ_MAY_UNMAP
: 0);
385 mirror_write_complete(op
, ret
);
388 static void coroutine_fn
mirror_co_discard(void *opaque
)
390 MirrorOp
*op
= opaque
;
394 op
->s
->bytes_in_flight
+= op
->bytes
;
395 *op
->bytes_handled
= op
->bytes
;
397 ret
= blk_co_pdiscard(op
->s
->target
, op
->offset
, op
->bytes
);
398 mirror_write_complete(op
, ret
);
401 static unsigned mirror_perform(MirrorBlockJob
*s
, int64_t offset
,
402 unsigned bytes
, MirrorMethod mirror_method
)
406 int64_t bytes_handled
= -1;
408 op
= g_new(MirrorOp
, 1);
413 .bytes_handled
= &bytes_handled
,
415 qemu_co_queue_init(&op
->waiting_requests
);
417 switch (mirror_method
) {
418 case MIRROR_METHOD_COPY
:
419 co
= qemu_coroutine_create(mirror_co_read
, op
);
421 case MIRROR_METHOD_ZERO
:
422 co
= qemu_coroutine_create(mirror_co_zero
, op
);
424 case MIRROR_METHOD_DISCARD
:
425 co
= qemu_coroutine_create(mirror_co_discard
, op
);
431 QTAILQ_INSERT_TAIL(&s
->ops_in_flight
, op
, next
);
432 qemu_coroutine_enter(co
);
433 /* At this point, ownership of op has been moved to the coroutine
434 * and the object may already be freed */
436 /* Assert that this value has been set */
437 assert(bytes_handled
>= 0);
439 /* Same assertion as in mirror_co_read() (and for mirror_co_read()
440 * and mirror_co_discard(), bytes_handled == op->bytes, which
441 * is the @bytes parameter given to this function) */
442 assert(bytes_handled
<= UINT_MAX
);
443 return bytes_handled
;
446 static uint64_t coroutine_fn
mirror_iteration(MirrorBlockJob
*s
)
448 BlockDriverState
*source
= s
->mirror_top_bs
->backing
->bs
;
451 uint64_t delay_ns
= 0, ret
= 0;
452 /* At least the first dirty chunk is mirrored in one iteration. */
454 bool write_zeroes_ok
= bdrv_can_write_zeroes_with_unmap(blk_bs(s
->target
));
455 int max_io_bytes
= MAX(s
->buf_size
/ MAX_IN_FLIGHT
, MAX_IO_BYTES
);
457 bdrv_dirty_bitmap_lock(s
->dirty_bitmap
);
458 offset
= bdrv_dirty_iter_next(s
->dbi
);
460 bdrv_set_dirty_iter(s
->dbi
, 0);
461 offset
= bdrv_dirty_iter_next(s
->dbi
);
462 trace_mirror_restart_iter(s
, bdrv_get_dirty_count(s
->dirty_bitmap
));
465 bdrv_dirty_bitmap_unlock(s
->dirty_bitmap
);
467 mirror_wait_on_conflicts(NULL
, s
, offset
, 1);
469 job_pause_point(&s
->common
.job
);
471 /* Find the number of consective dirty chunks following the first dirty
472 * one, and wait for in flight requests in them. */
473 bdrv_dirty_bitmap_lock(s
->dirty_bitmap
);
474 while (nb_chunks
* s
->granularity
< s
->buf_size
) {
476 int64_t next_offset
= offset
+ nb_chunks
* s
->granularity
;
477 int64_t next_chunk
= next_offset
/ s
->granularity
;
478 if (next_offset
>= s
->bdev_length
||
479 !bdrv_get_dirty_locked(source
, s
->dirty_bitmap
, next_offset
)) {
482 if (test_bit(next_chunk
, s
->in_flight_bitmap
)) {
486 next_dirty
= bdrv_dirty_iter_next(s
->dbi
);
487 if (next_dirty
> next_offset
|| next_dirty
< 0) {
488 /* The bitmap iterator's cache is stale, refresh it */
489 bdrv_set_dirty_iter(s
->dbi
, next_offset
);
490 next_dirty
= bdrv_dirty_iter_next(s
->dbi
);
492 assert(next_dirty
== next_offset
);
496 /* Clear dirty bits before querying the block status, because
497 * calling bdrv_block_status_above could yield - if some blocks are
498 * marked dirty in this window, we need to know.
500 bdrv_reset_dirty_bitmap_locked(s
->dirty_bitmap
, offset
,
501 nb_chunks
* s
->granularity
);
502 bdrv_dirty_bitmap_unlock(s
->dirty_bitmap
);
504 /* Before claiming an area in the in-flight bitmap, we have to
505 * create a MirrorOp for it so that conflicting requests can wait
506 * for it. mirror_perform() will create the real MirrorOps later,
507 * for now we just create a pseudo operation that will wake up all
508 * conflicting requests once all real operations have been
510 pseudo_op
= g_new(MirrorOp
, 1);
511 *pseudo_op
= (MirrorOp
){
513 .bytes
= nb_chunks
* s
->granularity
,
514 .is_pseudo_op
= true,
516 qemu_co_queue_init(&pseudo_op
->waiting_requests
);
517 QTAILQ_INSERT_TAIL(&s
->ops_in_flight
, pseudo_op
, next
);
519 bitmap_set(s
->in_flight_bitmap
, offset
/ s
->granularity
, nb_chunks
);
520 while (nb_chunks
> 0 && offset
< s
->bdev_length
) {
523 int64_t io_bytes_acct
;
524 MirrorMethod mirror_method
= MIRROR_METHOD_COPY
;
526 assert(!(offset
% s
->granularity
));
527 ret
= bdrv_block_status_above(source
, NULL
, offset
,
528 nb_chunks
* s
->granularity
,
529 &io_bytes
, NULL
, NULL
);
531 io_bytes
= MIN(nb_chunks
* s
->granularity
, max_io_bytes
);
532 } else if (ret
& BDRV_BLOCK_DATA
) {
533 io_bytes
= MIN(io_bytes
, max_io_bytes
);
536 io_bytes
-= io_bytes
% s
->granularity
;
537 if (io_bytes
< s
->granularity
) {
538 io_bytes
= s
->granularity
;
539 } else if (ret
>= 0 && !(ret
& BDRV_BLOCK_DATA
)) {
540 int64_t target_offset
;
541 int64_t target_bytes
;
542 bdrv_round_to_clusters(blk_bs(s
->target
), offset
, io_bytes
,
543 &target_offset
, &target_bytes
);
544 if (target_offset
== offset
&&
545 target_bytes
== io_bytes
) {
546 mirror_method
= ret
& BDRV_BLOCK_ZERO
?
548 MIRROR_METHOD_DISCARD
;
552 while (s
->in_flight
>= MAX_IN_FLIGHT
) {
553 trace_mirror_yield_in_flight(s
, offset
, s
->in_flight
);
554 mirror_wait_for_free_in_flight_slot(s
);
562 io_bytes
= mirror_clip_bytes(s
, offset
, io_bytes
);
563 io_bytes
= mirror_perform(s
, offset
, io_bytes
, mirror_method
);
564 if (mirror_method
!= MIRROR_METHOD_COPY
&& write_zeroes_ok
) {
567 io_bytes_acct
= io_bytes
;
571 nb_chunks
-= DIV_ROUND_UP(io_bytes
, s
->granularity
);
572 delay_ns
= block_job_ratelimit_get_delay(&s
->common
, io_bytes_acct
);
577 QTAILQ_REMOVE(&s
->ops_in_flight
, pseudo_op
, next
);
578 qemu_co_queue_restart_all(&pseudo_op
->waiting_requests
);
584 static void mirror_free_init(MirrorBlockJob
*s
)
586 int granularity
= s
->granularity
;
587 size_t buf_size
= s
->buf_size
;
588 uint8_t *buf
= s
->buf
;
590 assert(s
->buf_free_count
== 0);
591 QSIMPLEQ_INIT(&s
->buf_free
);
592 while (buf_size
!= 0) {
593 MirrorBuffer
*cur
= (MirrorBuffer
*)buf
;
594 QSIMPLEQ_INSERT_TAIL(&s
->buf_free
, cur
, next
);
596 buf_size
-= granularity
;
601 /* This is also used for the .pause callback. There is no matching
602 * mirror_resume() because mirror_run() will begin iterating again
603 * when the job is resumed.
605 static void coroutine_fn
mirror_wait_for_all_io(MirrorBlockJob
*s
)
607 while (s
->in_flight
> 0) {
608 mirror_wait_for_free_in_flight_slot(s
);
613 * mirror_exit_common: handle both abort() and prepare() cases.
614 * for .prepare, returns 0 on success and -errno on failure.
615 * for .abort cases, denoted by abort = true, MUST return 0.
617 static int mirror_exit_common(Job
*job
)
619 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
.job
);
620 BlockJob
*bjob
= &s
->common
;
621 MirrorBDSOpaque
*bs_opaque
= s
->mirror_top_bs
->opaque
;
622 AioContext
*replace_aio_context
= NULL
;
623 BlockDriverState
*src
= s
->mirror_top_bs
->backing
->bs
;
624 BlockDriverState
*target_bs
= blk_bs(s
->target
);
625 BlockDriverState
*mirror_top_bs
= s
->mirror_top_bs
;
626 Error
*local_err
= NULL
;
627 bool abort
= job
->ret
< 0;
635 if (bdrv_chain_contains(src
, target_bs
)) {
636 bdrv_unfreeze_backing_chain(mirror_top_bs
, target_bs
);
639 bdrv_release_dirty_bitmap(src
, s
->dirty_bitmap
);
641 /* Make sure that the source BDS doesn't go away during bdrv_replace_node,
642 * before we can call bdrv_drained_end */
644 bdrv_ref(mirror_top_bs
);
647 /* Remove target parent that still uses BLK_PERM_WRITE/RESIZE before
648 * inserting target_bs at s->to_replace, where we might not be able to get
651 * Note that blk_unref() alone doesn't necessarily drop permissions because
652 * we might be running nested inside mirror_drain(), which takes an extra
653 * reference, so use an explicit blk_set_perm() first. */
654 blk_set_perm(s
->target
, 0, BLK_PERM_ALL
, &error_abort
);
655 blk_unref(s
->target
);
658 /* We don't access the source any more. Dropping any WRITE/RESIZE is
659 * required before it could become a backing file of target_bs. */
660 bs_opaque
->stop
= true;
661 bdrv_child_refresh_perms(mirror_top_bs
, mirror_top_bs
->backing
,
663 if (!abort
&& s
->backing_mode
== MIRROR_SOURCE_BACKING_CHAIN
) {
664 BlockDriverState
*backing
= s
->is_none_mode
? src
: s
->base
;
665 if (backing_bs(target_bs
) != backing
) {
666 bdrv_set_backing_hd(target_bs
, backing
, &local_err
);
668 error_report_err(local_err
);
675 replace_aio_context
= bdrv_get_aio_context(s
->to_replace
);
676 aio_context_acquire(replace_aio_context
);
679 if (s
->should_complete
&& !abort
) {
680 BlockDriverState
*to_replace
= s
->to_replace
?: src
;
681 bool ro
= bdrv_is_read_only(to_replace
);
683 if (ro
!= bdrv_is_read_only(target_bs
)) {
684 bdrv_reopen_set_read_only(target_bs
, ro
, NULL
);
687 /* The mirror job has no requests in flight any more, but we need to
688 * drain potential other users of the BDS before changing the graph. */
690 bdrv_drained_begin(target_bs
);
691 bdrv_replace_node(to_replace
, target_bs
, &local_err
);
692 bdrv_drained_end(target_bs
);
694 error_report_err(local_err
);
699 bdrv_op_unblock_all(s
->to_replace
, s
->replace_blocker
);
700 error_free(s
->replace_blocker
);
701 bdrv_unref(s
->to_replace
);
703 if (replace_aio_context
) {
704 aio_context_release(replace_aio_context
);
707 bdrv_unref(target_bs
);
710 * Remove the mirror filter driver from the graph. Before this, get rid of
711 * the blockers on the intermediate nodes so that the resulting state is
714 block_job_remove_all_bdrv(bjob
);
715 bdrv_replace_node(mirror_top_bs
, backing_bs(mirror_top_bs
), &error_abort
);
717 /* We just changed the BDS the job BB refers to (with either or both of the
718 * bdrv_replace_node() calls), so switch the BB back so the cleanup does
719 * the right thing. We don't need any permissions any more now. */
720 blk_remove_bs(bjob
->blk
);
721 blk_set_perm(bjob
->blk
, 0, BLK_PERM_ALL
, &error_abort
);
722 blk_insert_bs(bjob
->blk
, mirror_top_bs
, &error_abort
);
724 bs_opaque
->job
= NULL
;
726 bdrv_drained_end(src
);
728 bdrv_unref(mirror_top_bs
);
734 static int mirror_prepare(Job
*job
)
736 return mirror_exit_common(job
);
739 static void mirror_abort(Job
*job
)
741 int ret
= mirror_exit_common(job
);
745 static void coroutine_fn
mirror_throttle(MirrorBlockJob
*s
)
747 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
749 if (now
- s
->last_pause_ns
> BLOCK_JOB_SLICE_TIME
) {
750 s
->last_pause_ns
= now
;
751 job_sleep_ns(&s
->common
.job
, 0);
753 job_pause_point(&s
->common
.job
);
757 static int coroutine_fn
mirror_dirty_init(MirrorBlockJob
*s
)
760 BlockDriverState
*base
= s
->base
;
761 BlockDriverState
*bs
= s
->mirror_top_bs
->backing
->bs
;
762 BlockDriverState
*target_bs
= blk_bs(s
->target
);
766 if (base
== NULL
&& !bdrv_has_zero_init(target_bs
)) {
767 if (!bdrv_can_write_zeroes_with_unmap(target_bs
)) {
768 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, 0, s
->bdev_length
);
772 s
->initial_zeroing_ongoing
= true;
773 for (offset
= 0; offset
< s
->bdev_length
; ) {
774 int bytes
= MIN(s
->bdev_length
- offset
,
775 QEMU_ALIGN_DOWN(INT_MAX
, s
->granularity
));
779 if (job_is_cancelled(&s
->common
.job
)) {
780 s
->initial_zeroing_ongoing
= false;
784 if (s
->in_flight
>= MAX_IN_FLIGHT
) {
785 trace_mirror_yield(s
, UINT64_MAX
, s
->buf_free_count
,
787 mirror_wait_for_free_in_flight_slot(s
);
791 mirror_perform(s
, offset
, bytes
, MIRROR_METHOD_ZERO
);
795 mirror_wait_for_all_io(s
);
796 s
->initial_zeroing_ongoing
= false;
799 /* First part, loop on the sectors and initialize the dirty bitmap. */
800 for (offset
= 0; offset
< s
->bdev_length
; ) {
801 /* Just to make sure we are not exceeding int limit. */
802 int bytes
= MIN(s
->bdev_length
- offset
,
803 QEMU_ALIGN_DOWN(INT_MAX
, s
->granularity
));
807 if (job_is_cancelled(&s
->common
.job
)) {
811 ret
= bdrv_is_allocated_above(bs
, base
, false, offset
, bytes
, &count
);
818 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, offset
, count
);
825 /* Called when going out of the streaming phase to flush the bulk of the
826 * data to the medium, or just before completing.
828 static int mirror_flush(MirrorBlockJob
*s
)
830 int ret
= blk_flush(s
->target
);
832 if (mirror_error_action(s
, false, -ret
) == BLOCK_ERROR_ACTION_REPORT
) {
839 static int coroutine_fn
mirror_run(Job
*job
, Error
**errp
)
841 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
.job
);
842 BlockDriverState
*bs
= s
->mirror_top_bs
->backing
->bs
;
843 BlockDriverState
*target_bs
= blk_bs(s
->target
);
844 bool need_drain
= true;
847 char backing_filename
[2]; /* we only need 2 characters because we are only
848 checking for a NULL string */
851 if (job_is_cancelled(&s
->common
.job
)) {
855 s
->bdev_length
= bdrv_getlength(bs
);
856 if (s
->bdev_length
< 0) {
857 ret
= s
->bdev_length
;
861 /* Active commit must resize the base image if its size differs from the
863 if (s
->base
== blk_bs(s
->target
)) {
866 base_length
= blk_getlength(s
->target
);
867 if (base_length
< 0) {
872 if (s
->bdev_length
> base_length
) {
873 ret
= blk_truncate(s
->target
, s
->bdev_length
, PREALLOC_MODE_OFF
,
881 if (s
->bdev_length
== 0) {
882 /* Transition to the READY state and wait for complete. */
883 job_transition_to_ready(&s
->common
.job
);
885 s
->actively_synced
= true;
886 while (!job_is_cancelled(&s
->common
.job
) && !s
->should_complete
) {
887 job_yield(&s
->common
.job
);
889 s
->common
.job
.cancelled
= false;
893 length
= DIV_ROUND_UP(s
->bdev_length
, s
->granularity
);
894 s
->in_flight_bitmap
= bitmap_new(length
);
896 /* If we have no backing file yet in the destination, we cannot let
897 * the destination do COW. Instead, we copy sectors around the
898 * dirty data if needed. We need a bitmap to do that.
900 bdrv_get_backing_filename(target_bs
, backing_filename
,
901 sizeof(backing_filename
));
902 if (!bdrv_get_info(target_bs
, &bdi
) && bdi
.cluster_size
) {
903 s
->target_cluster_size
= bdi
.cluster_size
;
905 s
->target_cluster_size
= BDRV_SECTOR_SIZE
;
907 if (backing_filename
[0] && !target_bs
->backing
&&
908 s
->granularity
< s
->target_cluster_size
) {
909 s
->buf_size
= MAX(s
->buf_size
, s
->target_cluster_size
);
910 s
->cow_bitmap
= bitmap_new(length
);
912 s
->max_iov
= MIN(bs
->bl
.max_iov
, target_bs
->bl
.max_iov
);
914 s
->buf
= qemu_try_blockalign(bs
, s
->buf_size
);
915 if (s
->buf
== NULL
) {
922 s
->last_pause_ns
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
923 if (!s
->is_none_mode
) {
924 ret
= mirror_dirty_init(s
);
925 if (ret
< 0 || job_is_cancelled(&s
->common
.job
)) {
931 s
->dbi
= bdrv_dirty_iter_new(s
->dirty_bitmap
);
933 uint64_t delay_ns
= 0;
935 bool should_complete
;
937 /* Do not start passive operations while there are active
938 * writes in progress */
939 while (s
->in_active_write_counter
) {
940 mirror_wait_for_any_operation(s
, true);
948 job_pause_point(&s
->common
.job
);
950 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
951 /* cnt is the number of dirty bytes remaining and s->bytes_in_flight is
952 * the number of bytes currently being processed; together those are
953 * the current remaining operation length */
954 job_progress_set_remaining(&s
->common
.job
, s
->bytes_in_flight
+ cnt
);
956 /* Note that even when no rate limit is applied we need to yield
957 * periodically with no pending I/O so that bdrv_drain_all() returns.
958 * We do so every BLKOCK_JOB_SLICE_TIME nanoseconds, or when there is
959 * an error, or when the source is clean, whichever comes first. */
960 delta
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
) - s
->last_pause_ns
;
961 if (delta
< BLOCK_JOB_SLICE_TIME
&&
962 s
->common
.iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
963 if (s
->in_flight
>= MAX_IN_FLIGHT
|| s
->buf_free_count
== 0 ||
964 (cnt
== 0 && s
->in_flight
> 0)) {
965 trace_mirror_yield(s
, cnt
, s
->buf_free_count
, s
->in_flight
);
966 mirror_wait_for_free_in_flight_slot(s
);
968 } else if (cnt
!= 0) {
969 delay_ns
= mirror_iteration(s
);
973 should_complete
= false;
974 if (s
->in_flight
== 0 && cnt
== 0) {
975 trace_mirror_before_flush(s
);
977 if (mirror_flush(s
) < 0) {
978 /* Go check s->ret. */
981 /* We're out of the streaming phase. From now on, if the job
982 * is cancelled we will actually complete all pending I/O and
983 * report completion. This way, block-job-cancel will leave
984 * the target in a consistent state.
986 job_transition_to_ready(&s
->common
.job
);
988 if (s
->copy_mode
!= MIRROR_COPY_MODE_BACKGROUND
) {
989 s
->actively_synced
= true;
993 should_complete
= s
->should_complete
||
994 job_is_cancelled(&s
->common
.job
);
995 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
998 if (cnt
== 0 && should_complete
) {
999 /* The dirty bitmap is not updated while operations are pending.
1000 * If we're about to exit, wait for pending operations before
1001 * calling bdrv_get_dirty_count(bs), or we may exit while the
1002 * source has dirty data to copy!
1004 * Note that I/O can be submitted by the guest while
1005 * mirror_populate runs, so pause it now. Before deciding
1006 * whether to switch to target check one last time if I/O has
1007 * come in the meanwhile, and if not flush the data to disk.
1009 trace_mirror_before_drain(s
, cnt
);
1012 bdrv_drained_begin(bs
);
1013 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
1014 if (cnt
> 0 || mirror_flush(s
) < 0) {
1015 bdrv_drained_end(bs
);
1016 s
->in_drain
= false;
1020 /* The two disks are in sync. Exit and report successful
1023 assert(QLIST_EMPTY(&bs
->tracked_requests
));
1024 s
->common
.job
.cancelled
= false;
1031 if (s
->synced
&& !should_complete
) {
1032 delay_ns
= (s
->in_flight
== 0 &&
1033 cnt
== 0 ? BLOCK_JOB_SLICE_TIME
: 0);
1035 trace_mirror_before_sleep(s
, cnt
, s
->synced
, delay_ns
);
1036 job_sleep_ns(&s
->common
.job
, delay_ns
);
1037 if (job_is_cancelled(&s
->common
.job
) &&
1038 (!s
->synced
|| s
->common
.job
.force_cancel
))
1042 s
->last_pause_ns
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
1046 if (s
->in_flight
> 0) {
1047 /* We get here only if something went wrong. Either the job failed,
1048 * or it was cancelled prematurely so that we do not guarantee that
1049 * the target is a copy of the source.
1051 assert(ret
< 0 || ((s
->common
.job
.force_cancel
|| !s
->synced
) &&
1052 job_is_cancelled(&s
->common
.job
)));
1054 mirror_wait_for_all_io(s
);
1057 assert(s
->in_flight
== 0);
1059 g_free(s
->cow_bitmap
);
1060 g_free(s
->in_flight_bitmap
);
1061 bdrv_dirty_iter_free(s
->dbi
);
1065 bdrv_drained_begin(bs
);
1071 static void mirror_complete(Job
*job
, Error
**errp
)
1073 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
.job
);
1074 BlockDriverState
*target
;
1076 target
= blk_bs(s
->target
);
1079 error_setg(errp
, "The active block job '%s' cannot be completed",
1084 if (s
->backing_mode
== MIRROR_OPEN_BACKING_CHAIN
) {
1087 assert(!target
->backing
);
1088 ret
= bdrv_open_backing_file(target
, NULL
, "backing", errp
);
1094 /* block all operations on to_replace bs */
1096 AioContext
*replace_aio_context
;
1098 s
->to_replace
= bdrv_find_node(s
->replaces
);
1099 if (!s
->to_replace
) {
1100 error_setg(errp
, "Node name '%s' not found", s
->replaces
);
1104 replace_aio_context
= bdrv_get_aio_context(s
->to_replace
);
1105 aio_context_acquire(replace_aio_context
);
1107 /* TODO Translate this into permission system. Current definition of
1108 * GRAPH_MOD would require to request it for the parents; they might
1109 * not even be BlockDriverStates, however, so a BdrvChild can't address
1110 * them. May need redefinition of GRAPH_MOD. */
1111 error_setg(&s
->replace_blocker
,
1112 "block device is in use by block-job-complete");
1113 bdrv_op_block_all(s
->to_replace
, s
->replace_blocker
);
1114 bdrv_ref(s
->to_replace
);
1116 aio_context_release(replace_aio_context
);
1119 s
->should_complete
= true;
1123 static void coroutine_fn
mirror_pause(Job
*job
)
1125 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
.job
);
1127 mirror_wait_for_all_io(s
);
1130 static bool mirror_drained_poll(BlockJob
*job
)
1132 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
1134 /* If the job isn't paused nor cancelled, we can't be sure that it won't
1135 * issue more requests. We make an exception if we've reached this point
1136 * from one of our own drain sections, to avoid a deadlock waiting for
1139 if (!s
->common
.job
.paused
&& !s
->common
.job
.cancelled
&& !s
->in_drain
) {
1143 return !!s
->in_flight
;
1146 static void mirror_drain(BlockJob
*job
)
1148 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
1150 /* Need to keep a reference in case blk_drain triggers execution
1151 * of mirror_complete...
1154 BlockBackend
*target
= s
->target
;
1161 static const BlockJobDriver mirror_job_driver
= {
1163 .instance_size
= sizeof(MirrorBlockJob
),
1164 .job_type
= JOB_TYPE_MIRROR
,
1165 .free
= block_job_free
,
1166 .user_resume
= block_job_user_resume
,
1167 .drain
= block_job_drain
,
1169 .prepare
= mirror_prepare
,
1170 .abort
= mirror_abort
,
1171 .pause
= mirror_pause
,
1172 .complete
= mirror_complete
,
1174 .drained_poll
= mirror_drained_poll
,
1175 .drain
= mirror_drain
,
1178 static const BlockJobDriver commit_active_job_driver
= {
1180 .instance_size
= sizeof(MirrorBlockJob
),
1181 .job_type
= JOB_TYPE_COMMIT
,
1182 .free
= block_job_free
,
1183 .user_resume
= block_job_user_resume
,
1184 .drain
= block_job_drain
,
1186 .prepare
= mirror_prepare
,
1187 .abort
= mirror_abort
,
1188 .pause
= mirror_pause
,
1189 .complete
= mirror_complete
,
1191 .drained_poll
= mirror_drained_poll
,
1192 .drain
= mirror_drain
,
1195 static void coroutine_fn
1196 do_sync_target_write(MirrorBlockJob
*job
, MirrorMethod method
,
1197 uint64_t offset
, uint64_t bytes
,
1198 QEMUIOVector
*qiov
, int flags
)
1200 QEMUIOVector target_qiov
;
1201 uint64_t dirty_offset
= offset
;
1202 uint64_t dirty_bytes
;
1205 qemu_iovec_init(&target_qiov
, qiov
->niov
);
1212 bdrv_dirty_bitmap_lock(job
->dirty_bitmap
);
1213 dirty_bytes
= MIN(offset
+ bytes
- dirty_offset
, INT_MAX
);
1214 valid_area
= bdrv_dirty_bitmap_next_dirty_area(job
->dirty_bitmap
,
1218 bdrv_dirty_bitmap_unlock(job
->dirty_bitmap
);
1222 bdrv_reset_dirty_bitmap_locked(job
->dirty_bitmap
,
1223 dirty_offset
, dirty_bytes
);
1224 bdrv_dirty_bitmap_unlock(job
->dirty_bitmap
);
1226 job_progress_increase_remaining(&job
->common
.job
, dirty_bytes
);
1228 assert(dirty_offset
- offset
<= SIZE_MAX
);
1230 qemu_iovec_reset(&target_qiov
);
1231 qemu_iovec_concat(&target_qiov
, qiov
,
1232 dirty_offset
- offset
, dirty_bytes
);
1236 case MIRROR_METHOD_COPY
:
1237 ret
= blk_co_pwritev(job
->target
, dirty_offset
, dirty_bytes
,
1238 qiov
? &target_qiov
: NULL
, flags
);
1241 case MIRROR_METHOD_ZERO
:
1243 ret
= blk_co_pwrite_zeroes(job
->target
, dirty_offset
, dirty_bytes
,
1247 case MIRROR_METHOD_DISCARD
:
1249 ret
= blk_co_pdiscard(job
->target
, dirty_offset
, dirty_bytes
);
1257 job_progress_update(&job
->common
.job
, dirty_bytes
);
1259 BlockErrorAction action
;
1261 bdrv_set_dirty_bitmap(job
->dirty_bitmap
, dirty_offset
, dirty_bytes
);
1262 job
->actively_synced
= false;
1264 action
= mirror_error_action(job
, false, -ret
);
1265 if (action
== BLOCK_ERROR_ACTION_REPORT
) {
1273 dirty_offset
+= dirty_bytes
;
1277 qemu_iovec_destroy(&target_qiov
);
1281 static MirrorOp
*coroutine_fn
active_write_prepare(MirrorBlockJob
*s
,
1286 uint64_t start_chunk
= offset
/ s
->granularity
;
1287 uint64_t end_chunk
= DIV_ROUND_UP(offset
+ bytes
, s
->granularity
);
1289 op
= g_new(MirrorOp
, 1);
1294 .is_active_write
= true,
1296 qemu_co_queue_init(&op
->waiting_requests
);
1297 QTAILQ_INSERT_TAIL(&s
->ops_in_flight
, op
, next
);
1299 s
->in_active_write_counter
++;
1301 mirror_wait_on_conflicts(op
, s
, offset
, bytes
);
1303 bitmap_set(s
->in_flight_bitmap
, start_chunk
, end_chunk
- start_chunk
);
1308 static void coroutine_fn
active_write_settle(MirrorOp
*op
)
1310 uint64_t start_chunk
= op
->offset
/ op
->s
->granularity
;
1311 uint64_t end_chunk
= DIV_ROUND_UP(op
->offset
+ op
->bytes
,
1312 op
->s
->granularity
);
1314 if (!--op
->s
->in_active_write_counter
&& op
->s
->actively_synced
) {
1315 BdrvChild
*source
= op
->s
->mirror_top_bs
->backing
;
1317 if (QLIST_FIRST(&source
->bs
->parents
) == source
&&
1318 QLIST_NEXT(source
, next_parent
) == NULL
)
1320 /* Assert that we are back in sync once all active write
1321 * operations are settled.
1322 * Note that we can only assert this if the mirror node
1323 * is the source node's only parent. */
1324 assert(!bdrv_get_dirty_count(op
->s
->dirty_bitmap
));
1327 bitmap_clear(op
->s
->in_flight_bitmap
, start_chunk
, end_chunk
- start_chunk
);
1328 QTAILQ_REMOVE(&op
->s
->ops_in_flight
, op
, next
);
1329 qemu_co_queue_restart_all(&op
->waiting_requests
);
1333 static int coroutine_fn
bdrv_mirror_top_preadv(BlockDriverState
*bs
,
1334 uint64_t offset
, uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
1336 return bdrv_co_preadv(bs
->backing
, offset
, bytes
, qiov
, flags
);
1339 static int coroutine_fn
bdrv_mirror_top_do_write(BlockDriverState
*bs
,
1340 MirrorMethod method
, uint64_t offset
, uint64_t bytes
, QEMUIOVector
*qiov
,
1343 MirrorOp
*op
= NULL
;
1344 MirrorBDSOpaque
*s
= bs
->opaque
;
1346 bool copy_to_target
;
1348 copy_to_target
= s
->job
->ret
>= 0 &&
1349 s
->job
->copy_mode
== MIRROR_COPY_MODE_WRITE_BLOCKING
;
1351 if (copy_to_target
) {
1352 op
= active_write_prepare(s
->job
, offset
, bytes
);
1356 case MIRROR_METHOD_COPY
:
1357 ret
= bdrv_co_pwritev(bs
->backing
, offset
, bytes
, qiov
, flags
);
1360 case MIRROR_METHOD_ZERO
:
1361 ret
= bdrv_co_pwrite_zeroes(bs
->backing
, offset
, bytes
, flags
);
1364 case MIRROR_METHOD_DISCARD
:
1365 ret
= bdrv_co_pdiscard(bs
->backing
, offset
, bytes
);
1376 if (copy_to_target
) {
1377 do_sync_target_write(s
->job
, method
, offset
, bytes
, qiov
, flags
);
1381 if (copy_to_target
) {
1382 active_write_settle(op
);
1387 static int coroutine_fn
bdrv_mirror_top_pwritev(BlockDriverState
*bs
,
1388 uint64_t offset
, uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
1390 MirrorBDSOpaque
*s
= bs
->opaque
;
1391 QEMUIOVector bounce_qiov
;
1394 bool copy_to_target
;
1396 copy_to_target
= s
->job
->ret
>= 0 &&
1397 s
->job
->copy_mode
== MIRROR_COPY_MODE_WRITE_BLOCKING
;
1399 if (copy_to_target
) {
1400 /* The guest might concurrently modify the data to write; but
1401 * the data on source and destination must match, so we have
1402 * to use a bounce buffer if we are going to write to the
1404 bounce_buf
= qemu_blockalign(bs
, bytes
);
1405 iov_to_buf_full(qiov
->iov
, qiov
->niov
, 0, bounce_buf
, bytes
);
1407 qemu_iovec_init(&bounce_qiov
, 1);
1408 qemu_iovec_add(&bounce_qiov
, bounce_buf
, bytes
);
1409 qiov
= &bounce_qiov
;
1412 ret
= bdrv_mirror_top_do_write(bs
, MIRROR_METHOD_COPY
, offset
, bytes
, qiov
,
1415 if (copy_to_target
) {
1416 qemu_iovec_destroy(&bounce_qiov
);
1417 qemu_vfree(bounce_buf
);
1423 static int coroutine_fn
bdrv_mirror_top_flush(BlockDriverState
*bs
)
1425 if (bs
->backing
== NULL
) {
1426 /* we can be here after failed bdrv_append in mirror_start_job */
1429 return bdrv_co_flush(bs
->backing
->bs
);
1432 static int coroutine_fn
bdrv_mirror_top_pwrite_zeroes(BlockDriverState
*bs
,
1433 int64_t offset
, int bytes
, BdrvRequestFlags flags
)
1435 return bdrv_mirror_top_do_write(bs
, MIRROR_METHOD_ZERO
, offset
, bytes
, NULL
,
1439 static int coroutine_fn
bdrv_mirror_top_pdiscard(BlockDriverState
*bs
,
1440 int64_t offset
, int bytes
)
1442 return bdrv_mirror_top_do_write(bs
, MIRROR_METHOD_DISCARD
, offset
, bytes
,
1446 static void bdrv_mirror_top_refresh_filename(BlockDriverState
*bs
)
1448 if (bs
->backing
== NULL
) {
1449 /* we can be here after failed bdrv_attach_child in
1450 * bdrv_set_backing_hd */
1453 pstrcpy(bs
->exact_filename
, sizeof(bs
->exact_filename
),
1454 bs
->backing
->bs
->filename
);
1457 static void bdrv_mirror_top_child_perm(BlockDriverState
*bs
, BdrvChild
*c
,
1458 const BdrvChildRole
*role
,
1459 BlockReopenQueue
*reopen_queue
,
1460 uint64_t perm
, uint64_t shared
,
1461 uint64_t *nperm
, uint64_t *nshared
)
1463 MirrorBDSOpaque
*s
= bs
->opaque
;
1467 * If the job is to be stopped, we do not need to forward
1468 * anything to the real image.
1471 *nshared
= BLK_PERM_ALL
;
1475 /* Must be able to forward guest writes to the real image */
1477 if (perm
& BLK_PERM_WRITE
) {
1478 *nperm
|= BLK_PERM_WRITE
;
1481 *nshared
= BLK_PERM_ALL
;
1484 static void bdrv_mirror_top_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
1486 MirrorBDSOpaque
*s
= bs
->opaque
;
1488 if (s
&& s
->job
&& s
->job
->copy_mode
== MIRROR_COPY_MODE_WRITE_BLOCKING
) {
1489 bs
->bl
.request_alignment
= s
->job
->granularity
;
1493 /* Dummy node that provides consistent read to its users without requiring it
1494 * from its backing file and that allows writes on the backing file chain. */
1495 static BlockDriver bdrv_mirror_top
= {
1496 .format_name
= "mirror_top",
1497 .bdrv_co_preadv
= bdrv_mirror_top_preadv
,
1498 .bdrv_co_pwritev
= bdrv_mirror_top_pwritev
,
1499 .bdrv_co_pwrite_zeroes
= bdrv_mirror_top_pwrite_zeroes
,
1500 .bdrv_co_pdiscard
= bdrv_mirror_top_pdiscard
,
1501 .bdrv_co_flush
= bdrv_mirror_top_flush
,
1502 .bdrv_co_block_status
= bdrv_co_block_status_from_backing
,
1503 .bdrv_refresh_filename
= bdrv_mirror_top_refresh_filename
,
1504 .bdrv_child_perm
= bdrv_mirror_top_child_perm
,
1505 .bdrv_refresh_limits
= bdrv_mirror_top_refresh_limits
,
1508 static BlockJob
*mirror_start_job(
1509 const char *job_id
, BlockDriverState
*bs
,
1510 int creation_flags
, BlockDriverState
*target
,
1511 const char *replaces
, int64_t speed
,
1512 uint32_t granularity
, int64_t buf_size
,
1513 BlockMirrorBackingMode backing_mode
,
1514 BlockdevOnError on_source_error
,
1515 BlockdevOnError on_target_error
,
1517 BlockCompletionFunc
*cb
,
1519 const BlockJobDriver
*driver
,
1520 bool is_none_mode
, BlockDriverState
*base
,
1521 bool auto_complete
, const char *filter_node_name
,
1522 bool is_mirror
, MirrorCopyMode copy_mode
,
1526 MirrorBDSOpaque
*bs_opaque
;
1527 BlockDriverState
*mirror_top_bs
;
1528 bool target_graph_mod
;
1529 bool target_is_backing
;
1530 Error
*local_err
= NULL
;
1533 if (granularity
== 0) {
1534 granularity
= bdrv_get_default_bitmap_granularity(target
);
1537 assert(is_power_of_2(granularity
));
1540 error_setg(errp
, "Invalid parameter 'buf-size'");
1544 if (buf_size
== 0) {
1545 buf_size
= DEFAULT_MIRROR_BUF_SIZE
;
1549 error_setg(errp
, "Can't mirror node into itself");
1553 /* In the case of active commit, add dummy driver to provide consistent
1554 * reads on the top, while disabling it in the intermediate nodes, and make
1555 * the backing chain writable. */
1556 mirror_top_bs
= bdrv_new_open_driver(&bdrv_mirror_top
, filter_node_name
,
1558 if (mirror_top_bs
== NULL
) {
1561 if (!filter_node_name
) {
1562 mirror_top_bs
->implicit
= true;
1565 /* So that we can always drop this node */
1566 mirror_top_bs
->never_freeze
= true;
1568 mirror_top_bs
->total_sectors
= bs
->total_sectors
;
1569 mirror_top_bs
->supported_write_flags
= BDRV_REQ_WRITE_UNCHANGED
;
1570 mirror_top_bs
->supported_zero_flags
= BDRV_REQ_WRITE_UNCHANGED
|
1571 BDRV_REQ_NO_FALLBACK
;
1572 bs_opaque
= g_new0(MirrorBDSOpaque
, 1);
1573 mirror_top_bs
->opaque
= bs_opaque
;
1575 /* bdrv_append takes ownership of the mirror_top_bs reference, need to keep
1576 * it alive until block_job_create() succeeds even if bs has no parent. */
1577 bdrv_ref(mirror_top_bs
);
1578 bdrv_drained_begin(bs
);
1579 bdrv_append(mirror_top_bs
, bs
, &local_err
);
1580 bdrv_drained_end(bs
);
1583 bdrv_unref(mirror_top_bs
);
1584 error_propagate(errp
, local_err
);
1588 /* Make sure that the source is not resized while the job is running */
1589 s
= block_job_create(job_id
, driver
, NULL
, mirror_top_bs
,
1590 BLK_PERM_CONSISTENT_READ
,
1591 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
|
1592 BLK_PERM_WRITE
| BLK_PERM_GRAPH_MOD
, speed
,
1593 creation_flags
, cb
, opaque
, errp
);
1599 /* The block job now has a reference to this node */
1600 bdrv_unref(mirror_top_bs
);
1602 s
->mirror_top_bs
= mirror_top_bs
;
1604 /* No resize for the target either; while the mirror is still running, a
1605 * consistent read isn't necessarily possible. We could possibly allow
1606 * writes and graph modifications, though it would likely defeat the
1607 * purpose of a mirror, so leave them blocked for now.
1609 * In the case of active commit, things look a bit different, though,
1610 * because the target is an already populated backing file in active use.
1611 * We can allow anything except resize there.*/
1612 target_is_backing
= bdrv_chain_contains(bs
, target
);
1613 target_graph_mod
= (backing_mode
!= MIRROR_LEAVE_BACKING_CHAIN
);
1614 s
->target
= blk_new(s
->common
.job
.aio_context
,
1615 BLK_PERM_WRITE
| BLK_PERM_RESIZE
|
1616 (target_graph_mod
? BLK_PERM_GRAPH_MOD
: 0),
1617 BLK_PERM_WRITE_UNCHANGED
|
1618 (target_is_backing
? BLK_PERM_CONSISTENT_READ
|
1620 BLK_PERM_GRAPH_MOD
: 0));
1621 ret
= blk_insert_bs(s
->target
, target
, errp
);
1626 /* XXX: Mirror target could be a NBD server of target QEMU in the case
1627 * of non-shared block migration. To allow migration completion, we
1628 * have to allow "inactivate" of the target BB. When that happens, we
1629 * know the job is drained, and the vcpus are stopped, so no write
1630 * operation will be performed. Block layer already has assertions to
1632 blk_set_force_allow_inactivate(s
->target
);
1634 blk_set_allow_aio_context_change(s
->target
, true);
1636 s
->replaces
= g_strdup(replaces
);
1637 s
->on_source_error
= on_source_error
;
1638 s
->on_target_error
= on_target_error
;
1639 s
->is_none_mode
= is_none_mode
;
1640 s
->backing_mode
= backing_mode
;
1641 s
->copy_mode
= copy_mode
;
1643 s
->granularity
= granularity
;
1644 s
->buf_size
= ROUND_UP(buf_size
, granularity
);
1646 if (auto_complete
) {
1647 s
->should_complete
= true;
1651 * Must be called before we start tracking writes, but after
1653 * ((MirrorBlockJob *)
1654 * ((MirrorBDSOpaque *)
1655 * mirror_top_bs->opaque
1659 * has the correct value.
1660 * (We start tracking writes as of the following
1661 * bdrv_create_dirty_bitmap() call.)
1663 bdrv_refresh_limits(mirror_top_bs
, &local_err
);
1665 error_propagate(errp
, local_err
);
1669 s
->dirty_bitmap
= bdrv_create_dirty_bitmap(bs
, granularity
, NULL
, errp
);
1670 if (!s
->dirty_bitmap
) {
1674 ret
= block_job_add_bdrv(&s
->common
, "source", bs
, 0,
1675 BLK_PERM_WRITE_UNCHANGED
| BLK_PERM_WRITE
|
1676 BLK_PERM_CONSISTENT_READ
,
1682 /* Required permissions are already taken with blk_new() */
1683 block_job_add_bdrv(&s
->common
, "target", target
, 0, BLK_PERM_ALL
,
1686 /* In commit_active_start() all intermediate nodes disappear, so
1687 * any jobs in them must be blocked */
1688 if (target_is_backing
) {
1689 BlockDriverState
*iter
;
1690 for (iter
= backing_bs(bs
); iter
!= target
; iter
= backing_bs(iter
)) {
1691 /* XXX BLK_PERM_WRITE needs to be allowed so we don't block
1692 * ourselves at s->base (if writes are blocked for a node, they are
1693 * also blocked for its backing file). The other options would be a
1694 * second filter driver above s->base (== target). */
1695 ret
= block_job_add_bdrv(&s
->common
, "intermediate node", iter
, 0,
1696 BLK_PERM_WRITE_UNCHANGED
| BLK_PERM_WRITE
,
1703 if (bdrv_freeze_backing_chain(mirror_top_bs
, target
, errp
) < 0) {
1708 QTAILQ_INIT(&s
->ops_in_flight
);
1710 trace_mirror_start(bs
, s
, opaque
);
1711 job_start(&s
->common
.job
);
1717 /* Make sure this BDS does not go away until we have completed the graph
1719 bdrv_ref(mirror_top_bs
);
1721 g_free(s
->replaces
);
1722 blk_unref(s
->target
);
1723 bs_opaque
->job
= NULL
;
1724 if (s
->dirty_bitmap
) {
1725 bdrv_release_dirty_bitmap(bs
, s
->dirty_bitmap
);
1727 job_early_fail(&s
->common
.job
);
1730 bs_opaque
->stop
= true;
1731 bdrv_child_refresh_perms(mirror_top_bs
, mirror_top_bs
->backing
,
1733 bdrv_replace_node(mirror_top_bs
, backing_bs(mirror_top_bs
), &error_abort
);
1735 bdrv_unref(mirror_top_bs
);
1740 void mirror_start(const char *job_id
, BlockDriverState
*bs
,
1741 BlockDriverState
*target
, const char *replaces
,
1742 int creation_flags
, int64_t speed
,
1743 uint32_t granularity
, int64_t buf_size
,
1744 MirrorSyncMode mode
, BlockMirrorBackingMode backing_mode
,
1745 BlockdevOnError on_source_error
,
1746 BlockdevOnError on_target_error
,
1747 bool unmap
, const char *filter_node_name
,
1748 MirrorCopyMode copy_mode
, Error
**errp
)
1751 BlockDriverState
*base
;
1753 if (mode
== MIRROR_SYNC_MODE_INCREMENTAL
) {
1754 error_setg(errp
, "Sync mode 'incremental' not supported");
1757 is_none_mode
= mode
== MIRROR_SYNC_MODE_NONE
;
1758 base
= mode
== MIRROR_SYNC_MODE_TOP
? backing_bs(bs
) : NULL
;
1759 mirror_start_job(job_id
, bs
, creation_flags
, target
, replaces
,
1760 speed
, granularity
, buf_size
, backing_mode
,
1761 on_source_error
, on_target_error
, unmap
, NULL
, NULL
,
1762 &mirror_job_driver
, is_none_mode
, base
, false,
1763 filter_node_name
, true, copy_mode
, errp
);
1766 BlockJob
*commit_active_start(const char *job_id
, BlockDriverState
*bs
,
1767 BlockDriverState
*base
, int creation_flags
,
1768 int64_t speed
, BlockdevOnError on_error
,
1769 const char *filter_node_name
,
1770 BlockCompletionFunc
*cb
, void *opaque
,
1771 bool auto_complete
, Error
**errp
)
1773 bool base_read_only
;
1774 Error
*local_err
= NULL
;
1777 base_read_only
= bdrv_is_read_only(base
);
1779 if (base_read_only
) {
1780 if (bdrv_reopen_set_read_only(base
, false, errp
) < 0) {
1785 ret
= mirror_start_job(
1786 job_id
, bs
, creation_flags
, base
, NULL
, speed
, 0, 0,
1787 MIRROR_LEAVE_BACKING_CHAIN
,
1788 on_error
, on_error
, true, cb
, opaque
,
1789 &commit_active_job_driver
, false, base
, auto_complete
,
1790 filter_node_name
, false, MIRROR_COPY_MODE_BACKGROUND
,
1793 error_propagate(errp
, local_err
);
1794 goto error_restore_flags
;
1799 error_restore_flags
:
1800 /* ignore error and errp for bdrv_reopen, because we want to propagate
1801 * the original error */
1802 if (base_read_only
) {
1803 bdrv_reopen_set_read_only(base
, true, NULL
);