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"
16 #include "block/blockjob.h"
17 #include "block/block_int.h"
18 #include "sysemu/block-backend.h"
19 #include "qapi/error.h"
20 #include "qapi/qmp/qerror.h"
21 #include "qemu/ratelimit.h"
22 #include "qemu/bitmap.h"
24 #define SLICE_TIME 100000000ULL /* ns */
25 #define MAX_IN_FLIGHT 16
26 #define DEFAULT_MIRROR_BUF_SIZE (10 << 20)
28 /* The mirroring buffer is a list of granularity-sized chunks.
29 * Free chunks are organized in a list.
31 typedef struct MirrorBuffer
{
32 QSIMPLEQ_ENTRY(MirrorBuffer
) next
;
35 typedef struct MirrorBlockJob
{
39 BlockDriverState
*base
;
40 /* The name of the graph node to replace */
42 /* The BDS to replace */
43 BlockDriverState
*to_replace
;
44 /* Used to block operations on the drive-mirror-replace target */
45 Error
*replace_blocker
;
47 BlockMirrorBackingMode backing_mode
;
48 BlockdevOnError on_source_error
, on_target_error
;
54 unsigned long *cow_bitmap
;
55 BdrvDirtyBitmap
*dirty_bitmap
;
58 QSIMPLEQ_HEAD(, MirrorBuffer
) buf_free
;
61 unsigned long *in_flight_bitmap
;
63 int sectors_in_flight
;
67 int target_cluster_sectors
;
71 typedef struct MirrorOp
{
78 static BlockErrorAction
mirror_error_action(MirrorBlockJob
*s
, bool read
,
83 return block_job_error_action(&s
->common
, s
->on_source_error
,
86 return block_job_error_action(&s
->common
, s
->on_target_error
,
91 static void mirror_iteration_done(MirrorOp
*op
, int ret
)
93 MirrorBlockJob
*s
= op
->s
;
96 int i
, nb_chunks
, sectors_per_chunk
;
98 trace_mirror_iteration_done(s
, op
->sector_num
, op
->nb_sectors
, ret
);
101 s
->sectors_in_flight
-= op
->nb_sectors
;
103 for (i
= 0; i
< op
->qiov
.niov
; i
++) {
104 MirrorBuffer
*buf
= (MirrorBuffer
*) iov
[i
].iov_base
;
105 QSIMPLEQ_INSERT_TAIL(&s
->buf_free
, buf
, next
);
109 sectors_per_chunk
= s
->granularity
>> BDRV_SECTOR_BITS
;
110 chunk_num
= op
->sector_num
/ sectors_per_chunk
;
111 nb_chunks
= DIV_ROUND_UP(op
->nb_sectors
, sectors_per_chunk
);
112 bitmap_clear(s
->in_flight_bitmap
, chunk_num
, nb_chunks
);
115 bitmap_set(s
->cow_bitmap
, chunk_num
, nb_chunks
);
117 s
->common
.offset
+= (uint64_t)op
->nb_sectors
* BDRV_SECTOR_SIZE
;
120 qemu_iovec_destroy(&op
->qiov
);
123 if (s
->waiting_for_io
) {
124 qemu_coroutine_enter(s
->common
.co
);
128 static void mirror_write_complete(void *opaque
, int ret
)
130 MirrorOp
*op
= opaque
;
131 MirrorBlockJob
*s
= op
->s
;
133 BlockErrorAction action
;
135 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, op
->sector_num
, op
->nb_sectors
);
136 action
= mirror_error_action(s
, false, -ret
);
137 if (action
== BLOCK_ERROR_ACTION_REPORT
&& s
->ret
>= 0) {
141 mirror_iteration_done(op
, ret
);
144 static void mirror_read_complete(void *opaque
, int ret
)
146 MirrorOp
*op
= opaque
;
147 MirrorBlockJob
*s
= op
->s
;
149 BlockErrorAction action
;
151 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, op
->sector_num
, op
->nb_sectors
);
152 action
= mirror_error_action(s
, true, -ret
);
153 if (action
== BLOCK_ERROR_ACTION_REPORT
&& s
->ret
>= 0) {
157 mirror_iteration_done(op
, ret
);
160 blk_aio_pwritev(s
->target
, op
->sector_num
* BDRV_SECTOR_SIZE
, &op
->qiov
,
161 0, mirror_write_complete
, op
);
164 static inline void mirror_clip_sectors(MirrorBlockJob
*s
,
168 *nb_sectors
= MIN(*nb_sectors
,
169 s
->bdev_length
/ BDRV_SECTOR_SIZE
- sector_num
);
172 /* Round sector_num and/or nb_sectors to target cluster if COW is needed, and
173 * return the offset of the adjusted tail sector against original. */
174 static int mirror_cow_align(MirrorBlockJob
*s
,
180 int chunk_sectors
= s
->granularity
>> BDRV_SECTOR_BITS
;
181 int64_t align_sector_num
= *sector_num
;
182 int align_nb_sectors
= *nb_sectors
;
183 int max_sectors
= chunk_sectors
* s
->max_iov
;
185 need_cow
= !test_bit(*sector_num
/ chunk_sectors
, s
->cow_bitmap
);
186 need_cow
|= !test_bit((*sector_num
+ *nb_sectors
- 1) / chunk_sectors
,
189 bdrv_round_sectors_to_clusters(blk_bs(s
->target
), *sector_num
,
190 *nb_sectors
, &align_sector_num
,
194 if (align_nb_sectors
> max_sectors
) {
195 align_nb_sectors
= max_sectors
;
197 align_nb_sectors
= QEMU_ALIGN_DOWN(align_nb_sectors
,
198 s
->target_cluster_sectors
);
201 /* Clipping may result in align_nb_sectors unaligned to chunk boundary, but
202 * that doesn't matter because it's already the end of source image. */
203 mirror_clip_sectors(s
, align_sector_num
, &align_nb_sectors
);
205 ret
= align_sector_num
+ align_nb_sectors
- (*sector_num
+ *nb_sectors
);
206 *sector_num
= align_sector_num
;
207 *nb_sectors
= align_nb_sectors
;
212 static inline void mirror_wait_for_io(MirrorBlockJob
*s
)
214 assert(!s
->waiting_for_io
);
215 s
->waiting_for_io
= true;
216 qemu_coroutine_yield();
217 s
->waiting_for_io
= false;
220 /* Submit async read while handling COW.
221 * Returns: The number of sectors copied after and including sector_num,
222 * excluding any sectors copied prior to sector_num due to alignment.
223 * This will be nb_sectors if no alignment is necessary, or
224 * (new_end - sector_num) if tail is rounded up or down due to
225 * alignment or buffer limit.
227 static int mirror_do_read(MirrorBlockJob
*s
, int64_t sector_num
,
230 BlockBackend
*source
= s
->common
.blk
;
231 int sectors_per_chunk
, nb_chunks
;
236 sectors_per_chunk
= s
->granularity
>> BDRV_SECTOR_BITS
;
237 max_sectors
= sectors_per_chunk
* s
->max_iov
;
239 /* We can only handle as much as buf_size at a time. */
240 nb_sectors
= MIN(s
->buf_size
>> BDRV_SECTOR_BITS
, nb_sectors
);
241 nb_sectors
= MIN(max_sectors
, nb_sectors
);
246 ret
+= mirror_cow_align(s
, §or_num
, &nb_sectors
);
248 assert(nb_sectors
<< BDRV_SECTOR_BITS
<= s
->buf_size
);
249 /* The sector range must meet granularity because:
250 * 1) Caller passes in aligned values;
251 * 2) mirror_cow_align is used only when target cluster is larger. */
252 assert(!(sector_num
% sectors_per_chunk
));
253 nb_chunks
= DIV_ROUND_UP(nb_sectors
, sectors_per_chunk
);
255 while (s
->buf_free_count
< nb_chunks
) {
256 trace_mirror_yield_in_flight(s
, sector_num
, s
->in_flight
);
257 mirror_wait_for_io(s
);
260 /* Allocate a MirrorOp that is used as an AIO callback. */
261 op
= g_new(MirrorOp
, 1);
263 op
->sector_num
= sector_num
;
264 op
->nb_sectors
= nb_sectors
;
266 /* Now make a QEMUIOVector taking enough granularity-sized chunks
269 qemu_iovec_init(&op
->qiov
, nb_chunks
);
270 while (nb_chunks
-- > 0) {
271 MirrorBuffer
*buf
= QSIMPLEQ_FIRST(&s
->buf_free
);
272 size_t remaining
= nb_sectors
* BDRV_SECTOR_SIZE
- op
->qiov
.size
;
274 QSIMPLEQ_REMOVE_HEAD(&s
->buf_free
, next
);
276 qemu_iovec_add(&op
->qiov
, buf
, MIN(s
->granularity
, remaining
));
279 /* Copy the dirty cluster. */
281 s
->sectors_in_flight
+= nb_sectors
;
282 trace_mirror_one_iteration(s
, sector_num
, nb_sectors
);
284 blk_aio_preadv(source
, sector_num
* BDRV_SECTOR_SIZE
, &op
->qiov
, 0,
285 mirror_read_complete
, op
);
289 static void mirror_do_zero_or_discard(MirrorBlockJob
*s
,
296 /* Allocate a MirrorOp that is used as an AIO callback. The qiov is zeroed
297 * so the freeing in mirror_iteration_done is nop. */
298 op
= g_new0(MirrorOp
, 1);
300 op
->sector_num
= sector_num
;
301 op
->nb_sectors
= nb_sectors
;
304 s
->sectors_in_flight
+= nb_sectors
;
306 blk_aio_pdiscard(s
->target
, sector_num
<< BDRV_SECTOR_BITS
,
307 op
->nb_sectors
<< BDRV_SECTOR_BITS
,
308 mirror_write_complete
, op
);
310 blk_aio_pwrite_zeroes(s
->target
, sector_num
* BDRV_SECTOR_SIZE
,
311 op
->nb_sectors
* BDRV_SECTOR_SIZE
,
312 s
->unmap
? BDRV_REQ_MAY_UNMAP
: 0,
313 mirror_write_complete
, op
);
317 static uint64_t coroutine_fn
mirror_iteration(MirrorBlockJob
*s
)
319 BlockDriverState
*source
= blk_bs(s
->common
.blk
);
320 int64_t sector_num
, first_chunk
;
321 uint64_t delay_ns
= 0;
322 /* At least the first dirty chunk is mirrored in one iteration. */
324 int64_t end
= s
->bdev_length
/ BDRV_SECTOR_SIZE
;
325 int sectors_per_chunk
= s
->granularity
>> BDRV_SECTOR_BITS
;
327 sector_num
= hbitmap_iter_next(&s
->hbi
);
328 if (sector_num
< 0) {
329 bdrv_dirty_iter_init(s
->dirty_bitmap
, &s
->hbi
);
330 sector_num
= hbitmap_iter_next(&s
->hbi
);
331 trace_mirror_restart_iter(s
, bdrv_get_dirty_count(s
->dirty_bitmap
));
332 assert(sector_num
>= 0);
335 first_chunk
= sector_num
/ sectors_per_chunk
;
336 while (test_bit(first_chunk
, s
->in_flight_bitmap
)) {
337 trace_mirror_yield_in_flight(s
, sector_num
, s
->in_flight
);
338 mirror_wait_for_io(s
);
341 block_job_pause_point(&s
->common
);
343 /* Find the number of consective dirty chunks following the first dirty
344 * one, and wait for in flight requests in them. */
345 while (nb_chunks
* sectors_per_chunk
< (s
->buf_size
>> BDRV_SECTOR_BITS
)) {
346 int64_t hbitmap_next
;
347 int64_t next_sector
= sector_num
+ nb_chunks
* sectors_per_chunk
;
348 int64_t next_chunk
= next_sector
/ sectors_per_chunk
;
349 if (next_sector
>= end
||
350 !bdrv_get_dirty(source
, s
->dirty_bitmap
, next_sector
)) {
353 if (test_bit(next_chunk
, s
->in_flight_bitmap
)) {
357 hbitmap_next
= hbitmap_iter_next(&s
->hbi
);
358 if (hbitmap_next
> next_sector
|| hbitmap_next
< 0) {
359 /* The bitmap iterator's cache is stale, refresh it */
360 bdrv_set_dirty_iter(&s
->hbi
, next_sector
);
361 hbitmap_next
= hbitmap_iter_next(&s
->hbi
);
363 assert(hbitmap_next
== next_sector
);
367 /* Clear dirty bits before querying the block status, because
368 * calling bdrv_get_block_status_above could yield - if some blocks are
369 * marked dirty in this window, we need to know.
371 bdrv_reset_dirty_bitmap(s
->dirty_bitmap
, sector_num
,
372 nb_chunks
* sectors_per_chunk
);
373 bitmap_set(s
->in_flight_bitmap
, sector_num
/ sectors_per_chunk
, nb_chunks
);
374 while (nb_chunks
> 0 && sector_num
< end
) {
377 BlockDriverState
*file
;
381 MIRROR_METHOD_DISCARD
382 } mirror_method
= MIRROR_METHOD_COPY
;
384 assert(!(sector_num
% sectors_per_chunk
));
385 ret
= bdrv_get_block_status_above(source
, NULL
, sector_num
,
386 nb_chunks
* sectors_per_chunk
,
389 io_sectors
= nb_chunks
* sectors_per_chunk
;
392 io_sectors
-= io_sectors
% sectors_per_chunk
;
393 if (io_sectors
< sectors_per_chunk
) {
394 io_sectors
= sectors_per_chunk
;
395 } else if (ret
>= 0 && !(ret
& BDRV_BLOCK_DATA
)) {
396 int64_t target_sector_num
;
397 int target_nb_sectors
;
398 bdrv_round_sectors_to_clusters(blk_bs(s
->target
), sector_num
,
399 io_sectors
, &target_sector_num
,
401 if (target_sector_num
== sector_num
&&
402 target_nb_sectors
== io_sectors
) {
403 mirror_method
= ret
& BDRV_BLOCK_ZERO
?
405 MIRROR_METHOD_DISCARD
;
409 mirror_clip_sectors(s
, sector_num
, &io_sectors
);
410 switch (mirror_method
) {
411 case MIRROR_METHOD_COPY
:
412 io_sectors
= mirror_do_read(s
, sector_num
, io_sectors
);
414 case MIRROR_METHOD_ZERO
:
415 mirror_do_zero_or_discard(s
, sector_num
, io_sectors
, false);
417 case MIRROR_METHOD_DISCARD
:
418 mirror_do_zero_or_discard(s
, sector_num
, io_sectors
, true);
424 sector_num
+= io_sectors
;
425 nb_chunks
-= DIV_ROUND_UP(io_sectors
, sectors_per_chunk
);
426 if (s
->common
.speed
) {
427 delay_ns
= ratelimit_calculate_delay(&s
->limit
, io_sectors
);
433 static void mirror_free_init(MirrorBlockJob
*s
)
435 int granularity
= s
->granularity
;
436 size_t buf_size
= s
->buf_size
;
437 uint8_t *buf
= s
->buf
;
439 assert(s
->buf_free_count
== 0);
440 QSIMPLEQ_INIT(&s
->buf_free
);
441 while (buf_size
!= 0) {
442 MirrorBuffer
*cur
= (MirrorBuffer
*)buf
;
443 QSIMPLEQ_INSERT_TAIL(&s
->buf_free
, cur
, next
);
445 buf_size
-= granularity
;
450 static void mirror_drain(MirrorBlockJob
*s
)
452 while (s
->in_flight
> 0) {
453 mirror_wait_for_io(s
);
461 static void mirror_exit(BlockJob
*job
, void *opaque
)
463 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
464 MirrorExitData
*data
= opaque
;
465 AioContext
*replace_aio_context
= NULL
;
466 BlockDriverState
*src
= blk_bs(s
->common
.blk
);
467 BlockDriverState
*target_bs
= blk_bs(s
->target
);
469 /* Make sure that the source BDS doesn't go away before we called
470 * block_job_completed(). */
474 replace_aio_context
= bdrv_get_aio_context(s
->to_replace
);
475 aio_context_acquire(replace_aio_context
);
478 if (s
->should_complete
&& data
->ret
== 0) {
479 BlockDriverState
*to_replace
= src
;
481 to_replace
= s
->to_replace
;
484 if (bdrv_get_flags(target_bs
) != bdrv_get_flags(to_replace
)) {
485 bdrv_reopen(target_bs
, bdrv_get_flags(to_replace
), NULL
);
488 /* The mirror job has no requests in flight any more, but we need to
489 * drain potential other users of the BDS before changing the graph. */
490 bdrv_drained_begin(target_bs
);
491 bdrv_replace_in_backing_chain(to_replace
, target_bs
);
492 bdrv_drained_end(target_bs
);
494 /* We just changed the BDS the job BB refers to */
495 blk_remove_bs(job
->blk
);
496 blk_insert_bs(job
->blk
, src
);
499 bdrv_op_unblock_all(s
->to_replace
, s
->replace_blocker
);
500 error_free(s
->replace_blocker
);
501 bdrv_unref(s
->to_replace
);
503 if (replace_aio_context
) {
504 aio_context_release(replace_aio_context
);
507 bdrv_op_unblock_all(target_bs
, s
->common
.blocker
);
508 blk_unref(s
->target
);
509 block_job_completed(&s
->common
, data
->ret
);
511 bdrv_drained_end(src
);
512 if (qemu_get_aio_context() == bdrv_get_aio_context(src
)) {
513 aio_enable_external(iohandler_get_aio_context());
518 static void coroutine_fn
mirror_run(void *opaque
)
520 MirrorBlockJob
*s
= opaque
;
521 MirrorExitData
*data
;
522 BlockDriverState
*bs
= blk_bs(s
->common
.blk
);
523 BlockDriverState
*target_bs
= blk_bs(s
->target
);
524 int64_t sector_num
, end
, length
;
525 uint64_t last_pause_ns
;
527 char backing_filename
[2]; /* we only need 2 characters because we are only
528 checking for a NULL string */
531 int target_cluster_size
= BDRV_SECTOR_SIZE
;
533 if (block_job_is_cancelled(&s
->common
)) {
537 s
->bdev_length
= bdrv_getlength(bs
);
538 if (s
->bdev_length
< 0) {
539 ret
= s
->bdev_length
;
541 } else if (s
->bdev_length
== 0) {
542 /* Report BLOCK_JOB_READY and wait for complete. */
543 block_job_event_ready(&s
->common
);
545 while (!block_job_is_cancelled(&s
->common
) && !s
->should_complete
) {
546 block_job_yield(&s
->common
);
548 s
->common
.cancelled
= false;
552 length
= DIV_ROUND_UP(s
->bdev_length
, s
->granularity
);
553 s
->in_flight_bitmap
= bitmap_new(length
);
555 /* If we have no backing file yet in the destination, we cannot let
556 * the destination do COW. Instead, we copy sectors around the
557 * dirty data if needed. We need a bitmap to do that.
559 bdrv_get_backing_filename(target_bs
, backing_filename
,
560 sizeof(backing_filename
));
561 if (!bdrv_get_info(target_bs
, &bdi
) && bdi
.cluster_size
) {
562 target_cluster_size
= bdi
.cluster_size
;
564 if (backing_filename
[0] && !target_bs
->backing
565 && s
->granularity
< target_cluster_size
) {
566 s
->buf_size
= MAX(s
->buf_size
, target_cluster_size
);
567 s
->cow_bitmap
= bitmap_new(length
);
569 s
->target_cluster_sectors
= target_cluster_size
>> BDRV_SECTOR_BITS
;
570 s
->max_iov
= MIN(bs
->bl
.max_iov
, target_bs
->bl
.max_iov
);
572 end
= s
->bdev_length
/ BDRV_SECTOR_SIZE
;
573 s
->buf
= qemu_try_blockalign(bs
, s
->buf_size
);
574 if (s
->buf
== NULL
) {
581 last_pause_ns
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
582 if (!s
->is_none_mode
) {
583 /* First part, loop on the sectors and initialize the dirty bitmap. */
584 BlockDriverState
*base
= s
->base
;
585 bool mark_all_dirty
= s
->base
== NULL
&& !bdrv_has_zero_init(target_bs
);
587 for (sector_num
= 0; sector_num
< end
; ) {
588 /* Just to make sure we are not exceeding int limit. */
589 int nb_sectors
= MIN(INT_MAX
>> BDRV_SECTOR_BITS
,
591 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
593 if (now
- last_pause_ns
> SLICE_TIME
) {
595 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, 0);
597 block_job_pause_point(&s
->common
);
600 if (block_job_is_cancelled(&s
->common
)) {
604 ret
= bdrv_is_allocated_above(bs
, base
, sector_num
, nb_sectors
, &n
);
611 if (ret
== 1 || mark_all_dirty
) {
612 bdrv_set_dirty_bitmap(s
->dirty_bitmap
, sector_num
, n
);
618 bdrv_dirty_iter_init(s
->dirty_bitmap
, &s
->hbi
);
620 uint64_t delay_ns
= 0;
622 bool should_complete
;
629 block_job_pause_point(&s
->common
);
631 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
632 /* s->common.offset contains the number of bytes already processed so
633 * far, cnt is the number of dirty sectors remaining and
634 * s->sectors_in_flight is the number of sectors currently being
635 * processed; together those are the current total operation length */
636 s
->common
.len
= s
->common
.offset
+
637 (cnt
+ s
->sectors_in_flight
) * BDRV_SECTOR_SIZE
;
639 /* Note that even when no rate limit is applied we need to yield
640 * periodically with no pending I/O so that bdrv_drain_all() returns.
641 * We do so every SLICE_TIME nanoseconds, or when there is an error,
642 * or when the source is clean, whichever comes first.
644 if (qemu_clock_get_ns(QEMU_CLOCK_REALTIME
) - last_pause_ns
< SLICE_TIME
&&
645 s
->common
.iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
646 if (s
->in_flight
== MAX_IN_FLIGHT
|| s
->buf_free_count
== 0 ||
647 (cnt
== 0 && s
->in_flight
> 0)) {
648 trace_mirror_yield(s
, s
->in_flight
, s
->buf_free_count
, cnt
);
649 mirror_wait_for_io(s
);
651 } else if (cnt
!= 0) {
652 delay_ns
= mirror_iteration(s
);
656 should_complete
= false;
657 if (s
->in_flight
== 0 && cnt
== 0) {
658 trace_mirror_before_flush(s
);
659 ret
= blk_flush(s
->target
);
661 if (mirror_error_action(s
, false, -ret
) ==
662 BLOCK_ERROR_ACTION_REPORT
) {
666 /* We're out of the streaming phase. From now on, if the job
667 * is cancelled we will actually complete all pending I/O and
668 * report completion. This way, block-job-cancel will leave
669 * the target in a consistent state.
672 block_job_event_ready(&s
->common
);
676 should_complete
= s
->should_complete
||
677 block_job_is_cancelled(&s
->common
);
678 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
682 if (cnt
== 0 && should_complete
) {
683 /* The dirty bitmap is not updated while operations are pending.
684 * If we're about to exit, wait for pending operations before
685 * calling bdrv_get_dirty_count(bs), or we may exit while the
686 * source has dirty data to copy!
688 * Note that I/O can be submitted by the guest while
689 * mirror_populate runs.
691 trace_mirror_before_drain(s
, cnt
);
693 cnt
= bdrv_get_dirty_count(s
->dirty_bitmap
);
697 trace_mirror_before_sleep(s
, cnt
, s
->synced
, delay_ns
);
699 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, delay_ns
);
700 if (block_job_is_cancelled(&s
->common
)) {
703 } else if (!should_complete
) {
704 delay_ns
= (s
->in_flight
== 0 && cnt
== 0 ? SLICE_TIME
: 0);
705 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, delay_ns
);
706 } else if (cnt
== 0) {
707 /* The two disks are in sync. Exit and report successful
710 assert(QLIST_EMPTY(&bs
->tracked_requests
));
711 s
->common
.cancelled
= false;
714 last_pause_ns
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
718 if (s
->in_flight
> 0) {
719 /* We get here only if something went wrong. Either the job failed,
720 * or it was cancelled prematurely so that we do not guarantee that
721 * the target is a copy of the source.
723 assert(ret
< 0 || (!s
->synced
&& block_job_is_cancelled(&s
->common
)));
727 assert(s
->in_flight
== 0);
729 g_free(s
->cow_bitmap
);
730 g_free(s
->in_flight_bitmap
);
731 bdrv_release_dirty_bitmap(bs
, s
->dirty_bitmap
);
733 data
= g_malloc(sizeof(*data
));
735 /* Before we switch to target in mirror_exit, make sure data doesn't
737 bdrv_drained_begin(bs
);
738 if (qemu_get_aio_context() == bdrv_get_aio_context(bs
)) {
739 /* FIXME: virtio host notifiers run on iohandler_ctx, therefore the
740 * above bdrv_drained_end isn't enough to quiesce it. This is ugly, we
741 * need a block layer API change to achieve this. */
742 aio_disable_external(iohandler_get_aio_context());
744 block_job_defer_to_main_loop(&s
->common
, mirror_exit
, data
);
747 static void mirror_set_speed(BlockJob
*job
, int64_t speed
, Error
**errp
)
749 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
752 error_setg(errp
, QERR_INVALID_PARAMETER
, "speed");
755 ratelimit_set_speed(&s
->limit
, speed
/ BDRV_SECTOR_SIZE
, SLICE_TIME
);
758 static void mirror_complete(BlockJob
*job
, Error
**errp
)
760 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
761 BlockDriverState
*src
, *target
;
763 src
= blk_bs(job
->blk
);
764 target
= blk_bs(s
->target
);
767 error_setg(errp
, "The active block job '%s' cannot be completed",
772 if (s
->backing_mode
== MIRROR_OPEN_BACKING_CHAIN
) {
775 assert(!target
->backing
);
776 ret
= bdrv_open_backing_file(target
, NULL
, "backing", errp
);
782 /* block all operations on to_replace bs */
784 AioContext
*replace_aio_context
;
786 s
->to_replace
= bdrv_find_node(s
->replaces
);
787 if (!s
->to_replace
) {
788 error_setg(errp
, "Node name '%s' not found", s
->replaces
);
792 replace_aio_context
= bdrv_get_aio_context(s
->to_replace
);
793 aio_context_acquire(replace_aio_context
);
795 error_setg(&s
->replace_blocker
,
796 "block device is in use by block-job-complete");
797 bdrv_op_block_all(s
->to_replace
, s
->replace_blocker
);
798 bdrv_ref(s
->to_replace
);
800 aio_context_release(replace_aio_context
);
803 if (s
->backing_mode
== MIRROR_SOURCE_BACKING_CHAIN
) {
804 BlockDriverState
*backing
= s
->is_none_mode
? src
: s
->base
;
805 if (backing_bs(target
) != backing
) {
806 bdrv_set_backing_hd(target
, backing
);
810 s
->should_complete
= true;
811 block_job_enter(&s
->common
);
814 /* There is no matching mirror_resume() because mirror_run() will begin
815 * iterating again when the job is resumed.
817 static void coroutine_fn
mirror_pause(BlockJob
*job
)
819 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
824 static void mirror_attached_aio_context(BlockJob
*job
, AioContext
*new_context
)
826 MirrorBlockJob
*s
= container_of(job
, MirrorBlockJob
, common
);
828 blk_set_aio_context(s
->target
, new_context
);
831 static const BlockJobDriver mirror_job_driver
= {
832 .instance_size
= sizeof(MirrorBlockJob
),
833 .job_type
= BLOCK_JOB_TYPE_MIRROR
,
834 .set_speed
= mirror_set_speed
,
835 .complete
= mirror_complete
,
836 .pause
= mirror_pause
,
837 .attached_aio_context
= mirror_attached_aio_context
,
840 static const BlockJobDriver commit_active_job_driver
= {
841 .instance_size
= sizeof(MirrorBlockJob
),
842 .job_type
= BLOCK_JOB_TYPE_COMMIT
,
843 .set_speed
= mirror_set_speed
,
844 .complete
= mirror_complete
,
845 .pause
= mirror_pause
,
846 .attached_aio_context
= mirror_attached_aio_context
,
849 static void mirror_start_job(const char *job_id
, BlockDriverState
*bs
,
850 BlockDriverState
*target
, const char *replaces
,
851 int64_t speed
, uint32_t granularity
,
853 BlockMirrorBackingMode backing_mode
,
854 BlockdevOnError on_source_error
,
855 BlockdevOnError on_target_error
,
857 BlockCompletionFunc
*cb
,
858 void *opaque
, Error
**errp
,
859 const BlockJobDriver
*driver
,
860 bool is_none_mode
, BlockDriverState
*base
)
864 if (granularity
== 0) {
865 granularity
= bdrv_get_default_bitmap_granularity(target
);
868 assert ((granularity
& (granularity
- 1)) == 0);
871 error_setg(errp
, "Invalid parameter 'buf-size'");
876 buf_size
= DEFAULT_MIRROR_BUF_SIZE
;
879 s
= block_job_create(job_id
, driver
, bs
, speed
, cb
, opaque
, errp
);
884 s
->target
= blk_new();
885 blk_insert_bs(s
->target
, target
);
887 s
->replaces
= g_strdup(replaces
);
888 s
->on_source_error
= on_source_error
;
889 s
->on_target_error
= on_target_error
;
890 s
->is_none_mode
= is_none_mode
;
891 s
->backing_mode
= backing_mode
;
893 s
->granularity
= granularity
;
894 s
->buf_size
= ROUND_UP(buf_size
, granularity
);
897 s
->dirty_bitmap
= bdrv_create_dirty_bitmap(bs
, granularity
, NULL
, errp
);
898 if (!s
->dirty_bitmap
) {
900 blk_unref(s
->target
);
901 block_job_unref(&s
->common
);
905 bdrv_op_block_all(target
, s
->common
.blocker
);
907 s
->common
.co
= qemu_coroutine_create(mirror_run
, s
);
908 trace_mirror_start(bs
, s
, s
->common
.co
, opaque
);
909 qemu_coroutine_enter(s
->common
.co
);
912 void mirror_start(const char *job_id
, BlockDriverState
*bs
,
913 BlockDriverState
*target
, const char *replaces
,
914 int64_t speed
, uint32_t granularity
, int64_t buf_size
,
915 MirrorSyncMode mode
, BlockMirrorBackingMode backing_mode
,
916 BlockdevOnError on_source_error
,
917 BlockdevOnError on_target_error
,
919 BlockCompletionFunc
*cb
,
920 void *opaque
, Error
**errp
)
923 BlockDriverState
*base
;
925 if (mode
== MIRROR_SYNC_MODE_INCREMENTAL
) {
926 error_setg(errp
, "Sync mode 'incremental' not supported");
929 is_none_mode
= mode
== MIRROR_SYNC_MODE_NONE
;
930 base
= mode
== MIRROR_SYNC_MODE_TOP
? backing_bs(bs
) : NULL
;
931 mirror_start_job(job_id
, bs
, target
, replaces
,
932 speed
, granularity
, buf_size
, backing_mode
,
933 on_source_error
, on_target_error
, unmap
, cb
, opaque
, errp
,
934 &mirror_job_driver
, is_none_mode
, base
);
937 void commit_active_start(const char *job_id
, BlockDriverState
*bs
,
938 BlockDriverState
*base
, int64_t speed
,
939 BlockdevOnError on_error
,
940 BlockCompletionFunc
*cb
,
941 void *opaque
, Error
**errp
)
943 int64_t length
, base_length
;
946 Error
*local_err
= NULL
;
948 orig_base_flags
= bdrv_get_flags(base
);
950 if (bdrv_reopen(base
, bs
->open_flags
, errp
)) {
954 length
= bdrv_getlength(bs
);
956 error_setg_errno(errp
, -length
,
957 "Unable to determine length of %s", bs
->filename
);
958 goto error_restore_flags
;
961 base_length
= bdrv_getlength(base
);
962 if (base_length
< 0) {
963 error_setg_errno(errp
, -base_length
,
964 "Unable to determine length of %s", base
->filename
);
965 goto error_restore_flags
;
968 if (length
> base_length
) {
969 ret
= bdrv_truncate(base
, length
);
971 error_setg_errno(errp
, -ret
,
972 "Top image %s is larger than base image %s, and "
973 "resize of base image failed",
974 bs
->filename
, base
->filename
);
975 goto error_restore_flags
;
979 mirror_start_job(job_id
, bs
, base
, NULL
, speed
, 0, 0,
980 MIRROR_LEAVE_BACKING_CHAIN
,
981 on_error
, on_error
, false, cb
, opaque
, &local_err
,
982 &commit_active_job_driver
, false, base
);
984 error_propagate(errp
, local_err
);
985 goto error_restore_flags
;
991 /* ignore error and errp for bdrv_reopen, because we want to propagate
992 * the original error */
993 bdrv_reopen(base
, orig_base_flags
, NULL
);