4 * Copyright IBM, Corp. 2011
7 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.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/block_int.h"
17 #include "block/blockjob_int.h"
18 #include "qapi/error.h"
19 #include "qapi/qmp/qerror.h"
20 #include "qemu/ratelimit.h"
21 #include "sysemu/block-backend.h"
25 * Size of data buffer for populating the image file. This should be large
26 * enough to process multiple clusters in a single call, so that populating
27 * contiguous regions of the image is efficient.
29 STREAM_BUFFER_SIZE
= 512 * 1024, /* in bytes */
32 typedef struct StreamBlockJob
{
34 BlockDriverState
*base
;
35 BlockdevOnError on_error
;
36 char *backing_file_str
;
40 static int coroutine_fn
stream_populate(BlockBackend
*blk
,
41 int64_t offset
, uint64_t bytes
,
50 assert(bytes
< SIZE_MAX
);
51 qemu_iovec_init_external(&qiov
, &iov
, 1);
53 /* Copy-on-read the unallocated clusters */
54 return blk_co_preadv(blk
, offset
, qiov
.size
, &qiov
, BDRV_REQ_COPY_ON_READ
);
61 static void stream_complete(Job
*job
, void *opaque
)
63 StreamBlockJob
*s
= container_of(job
, StreamBlockJob
, common
.job
);
64 BlockJob
*bjob
= &s
->common
;
65 StreamCompleteData
*data
= opaque
;
66 BlockDriverState
*bs
= blk_bs(bjob
->blk
);
67 BlockDriverState
*base
= s
->base
;
68 Error
*local_err
= NULL
;
70 if (!job_is_cancelled(job
) && bs
->backing
&& data
->ret
== 0) {
71 const char *base_id
= NULL
, *base_fmt
= NULL
;
73 base_id
= s
->backing_file_str
;
75 base_fmt
= base
->drv
->format_name
;
78 data
->ret
= bdrv_change_backing_file(bs
, base_id
, base_fmt
);
79 bdrv_set_backing_hd(bs
, base
, &local_err
);
81 error_report_err(local_err
);
88 /* Reopen the image back in read-only mode if necessary */
89 if (s
->bs_flags
!= bdrv_get_flags(bs
)) {
90 /* Give up write permissions before making it read-only */
91 blk_set_perm(bjob
->blk
, 0, BLK_PERM_ALL
, &error_abort
);
92 bdrv_reopen(bs
, s
->bs_flags
, NULL
);
95 g_free(s
->backing_file_str
);
96 job_completed(job
, data
->ret
, NULL
);
100 static void coroutine_fn
stream_run(void *opaque
)
102 StreamBlockJob
*s
= opaque
;
103 StreamCompleteData
*data
;
104 BlockBackend
*blk
= s
->common
.blk
;
105 BlockDriverState
*bs
= blk_bs(blk
);
106 BlockDriverState
*base
= s
->base
;
109 uint64_t delay_ns
= 0;
112 int64_t n
= 0; /* bytes */
119 len
= bdrv_getlength(bs
);
124 job_progress_set_remaining(&s
->common
.job
, len
);
126 buf
= qemu_blockalign(bs
, STREAM_BUFFER_SIZE
);
128 /* Turn on copy-on-read for the whole block device so that guest read
129 * requests help us make progress. Only do this when copying the entire
130 * backing chain since the copy-on-read operation does not take base into
134 bdrv_enable_copy_on_read(bs
);
137 for ( ; offset
< len
; offset
+= n
) {
140 /* Note that even when no rate limit is applied we need to yield
141 * with no pending I/O here so that bdrv_drain_all() returns.
143 job_sleep_ns(&s
->common
.job
, delay_ns
);
144 if (job_is_cancelled(&s
->common
.job
)) {
150 ret
= bdrv_is_allocated(bs
, offset
, STREAM_BUFFER_SIZE
, &n
);
152 /* Allocated in the top, no need to copy. */
153 } else if (ret
>= 0) {
154 /* Copy if allocated in the intermediate images. Limit to the
155 * known-unallocated area [offset, offset+n*BDRV_SECTOR_SIZE). */
156 ret
= bdrv_is_allocated_above(backing_bs(bs
), base
,
159 /* Finish early if end of backing file has been reached */
160 if (ret
== 0 && n
== 0) {
166 trace_stream_one_iteration(s
, offset
, n
, ret
);
168 ret
= stream_populate(blk
, offset
, n
, buf
);
171 BlockErrorAction action
=
172 block_job_error_action(&s
->common
, s
->on_error
, true, -ret
);
173 if (action
== BLOCK_ERROR_ACTION_STOP
) {
180 if (action
== BLOCK_ERROR_ACTION_REPORT
) {
186 /* Publish progress */
187 job_progress_update(&s
->common
.job
, n
);
189 delay_ns
= block_job_ratelimit_get_delay(&s
->common
, n
);
196 bdrv_disable_copy_on_read(bs
);
199 /* Do not remove the backing file if an error was there but ignored. */
205 /* Modify backing chain and close BDSes in main loop */
206 data
= g_malloc(sizeof(*data
));
208 job_defer_to_main_loop(&s
->common
.job
, stream_complete
, data
);
211 static const BlockJobDriver stream_job_driver
= {
213 .instance_size
= sizeof(StreamBlockJob
),
214 .job_type
= JOB_TYPE_STREAM
,
215 .free
= block_job_free
,
217 .user_resume
= block_job_user_resume
,
218 .drain
= block_job_drain
,
222 void stream_start(const char *job_id
, BlockDriverState
*bs
,
223 BlockDriverState
*base
, const char *backing_file_str
,
224 int64_t speed
, BlockdevOnError on_error
, Error
**errp
)
227 BlockDriverState
*iter
;
230 /* Make sure that the image is opened in read-write mode */
231 orig_bs_flags
= bdrv_get_flags(bs
);
232 if (!(orig_bs_flags
& BDRV_O_RDWR
)) {
233 if (bdrv_reopen(bs
, orig_bs_flags
| BDRV_O_RDWR
, errp
) != 0) {
238 /* Prevent concurrent jobs trying to modify the graph structure here, we
239 * already have our own plans. Also don't allow resize as the image size is
240 * queried only at the job start and then cached. */
241 s
= block_job_create(job_id
, &stream_job_driver
, NULL
, bs
,
242 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
|
244 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
|
246 speed
, JOB_DEFAULT
, NULL
, NULL
, errp
);
251 /* Block all intermediate nodes between bs and base, because they will
252 * disappear from the chain after this operation. The streaming job reads
253 * every block only once, assuming that it doesn't change, so block writes
255 for (iter
= backing_bs(bs
); iter
&& iter
!= base
; iter
= backing_bs(iter
)) {
256 block_job_add_bdrv(&s
->common
, "intermediate node", iter
, 0,
257 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
,
262 s
->backing_file_str
= g_strdup(backing_file_str
);
263 s
->bs_flags
= orig_bs_flags
;
265 s
->on_error
= on_error
;
266 trace_stream_start(bs
, base
, s
);
267 job_start(&s
->common
.job
);
271 if (orig_bs_flags
!= bdrv_get_flags(bs
)) {
272 bdrv_reopen(bs
, orig_bs_flags
, NULL
);