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 #define SLICE_TIME 100000000ULL /* ns */
34 typedef struct StreamBlockJob
{
37 BlockDriverState
*base
;
38 BlockdevOnError on_error
;
39 char *backing_file_str
;
43 static int coroutine_fn
stream_populate(BlockBackend
*blk
,
44 int64_t sector_num
, int nb_sectors
,
49 .iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
,
53 qemu_iovec_init_external(&qiov
, &iov
, 1);
55 /* Copy-on-read the unallocated clusters */
56 return blk_co_preadv(blk
, sector_num
* BDRV_SECTOR_SIZE
, qiov
.size
, &qiov
,
57 BDRV_REQ_COPY_ON_READ
);
65 static void stream_complete(BlockJob
*job
, void *opaque
)
67 StreamBlockJob
*s
= container_of(job
, StreamBlockJob
, common
);
68 StreamCompleteData
*data
= opaque
;
69 BlockDriverState
*bs
= blk_bs(job
->blk
);
70 BlockDriverState
*base
= s
->base
;
71 Error
*local_err
= NULL
;
73 if (!block_job_is_cancelled(&s
->common
) && data
->reached_end
&&
75 const char *base_id
= NULL
, *base_fmt
= NULL
;
77 base_id
= s
->backing_file_str
;
79 base_fmt
= base
->drv
->format_name
;
82 data
->ret
= bdrv_change_backing_file(bs
, base_id
, base_fmt
);
83 bdrv_set_backing_hd(bs
, base
, &local_err
);
85 error_report_err(local_err
);
92 /* Reopen the image back in read-only mode if necessary */
93 if (s
->bs_flags
!= bdrv_get_flags(bs
)) {
94 /* Give up write permissions before making it read-only */
95 blk_set_perm(job
->blk
, 0, BLK_PERM_ALL
, &error_abort
);
96 bdrv_reopen(bs
, s
->bs_flags
, NULL
);
99 g_free(s
->backing_file_str
);
100 block_job_completed(&s
->common
, data
->ret
);
104 static void coroutine_fn
stream_run(void *opaque
)
106 StreamBlockJob
*s
= opaque
;
107 StreamCompleteData
*data
;
108 BlockBackend
*blk
= s
->common
.blk
;
109 BlockDriverState
*bs
= blk_bs(blk
);
110 BlockDriverState
*base
= s
->base
;
111 int64_t sector_num
= 0;
113 uint64_t delay_ns
= 0;
123 s
->common
.len
= bdrv_getlength(bs
);
124 if (s
->common
.len
< 0) {
129 end
= s
->common
.len
>> BDRV_SECTOR_BITS
;
130 buf
= qemu_blockalign(bs
, STREAM_BUFFER_SIZE
);
132 /* Turn on copy-on-read for the whole block device so that guest read
133 * requests help us make progress. Only do this when copying the entire
134 * backing chain since the copy-on-read operation does not take base into
138 bdrv_enable_copy_on_read(bs
);
141 for (sector_num
= 0; sector_num
< end
; sector_num
+= n
) {
144 /* Note that even when no rate limit is applied we need to yield
145 * with no pending I/O here so that bdrv_drain_all() returns.
147 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, delay_ns
);
148 if (block_job_is_cancelled(&s
->common
)) {
154 ret
= bdrv_is_allocated(bs
, sector_num
,
155 STREAM_BUFFER_SIZE
/ BDRV_SECTOR_SIZE
, &n
);
157 /* Allocated in the top, no need to copy. */
158 } else if (ret
>= 0) {
159 /* Copy if allocated in the intermediate images. Limit to the
160 * known-unallocated area [sector_num, sector_num+n). */
161 ret
= bdrv_is_allocated_above(backing_bs(bs
), base
,
164 /* Finish early if end of backing file has been reached */
165 if (ret
== 0 && n
== 0) {
166 n
= end
- sector_num
;
171 trace_stream_one_iteration(s
, sector_num
, n
, ret
);
173 ret
= stream_populate(blk
, sector_num
, n
, buf
);
176 BlockErrorAction action
=
177 block_job_error_action(&s
->common
, s
->on_error
, true, -ret
);
178 if (action
== BLOCK_ERROR_ACTION_STOP
) {
185 if (action
== BLOCK_ERROR_ACTION_REPORT
) {
191 /* Publish progress */
192 s
->common
.offset
+= n
* BDRV_SECTOR_SIZE
;
193 if (copy
&& s
->common
.speed
) {
194 delay_ns
= ratelimit_calculate_delay(&s
->limit
, n
);
199 bdrv_disable_copy_on_read(bs
);
202 /* Do not remove the backing file if an error was there but ignored. */
208 /* Modify backing chain and close BDSes in main loop */
209 data
= g_malloc(sizeof(*data
));
211 data
->reached_end
= sector_num
== end
;
212 block_job_defer_to_main_loop(&s
->common
, stream_complete
, data
);
215 static void stream_set_speed(BlockJob
*job
, int64_t speed
, Error
**errp
)
217 StreamBlockJob
*s
= container_of(job
, StreamBlockJob
, common
);
220 error_setg(errp
, QERR_INVALID_PARAMETER
, "speed");
223 ratelimit_set_speed(&s
->limit
, speed
/ BDRV_SECTOR_SIZE
, SLICE_TIME
);
226 static const BlockJobDriver stream_job_driver
= {
227 .instance_size
= sizeof(StreamBlockJob
),
228 .job_type
= BLOCK_JOB_TYPE_STREAM
,
229 .set_speed
= stream_set_speed
,
233 void stream_start(const char *job_id
, BlockDriverState
*bs
,
234 BlockDriverState
*base
, const char *backing_file_str
,
235 int64_t speed
, BlockdevOnError on_error
, Error
**errp
)
238 BlockDriverState
*iter
;
241 /* Make sure that the image is opened in read-write mode */
242 orig_bs_flags
= bdrv_get_flags(bs
);
243 if (!(orig_bs_flags
& BDRV_O_RDWR
)) {
244 if (bdrv_reopen(bs
, orig_bs_flags
| BDRV_O_RDWR
, errp
) != 0) {
249 /* Prevent concurrent jobs trying to modify the graph structure here, we
250 * already have our own plans. Also don't allow resize as the image size is
251 * queried only at the job start and then cached. */
252 s
= block_job_create(job_id
, &stream_job_driver
, bs
,
253 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
|
255 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
|
257 speed
, BLOCK_JOB_DEFAULT
, NULL
, NULL
, errp
);
262 /* Block all intermediate nodes between bs and base, because they will
263 * disappear from the chain after this operation. The streaming job reads
264 * every block only once, assuming that it doesn't change, so block writes
266 for (iter
= backing_bs(bs
); iter
&& iter
!= base
; iter
= backing_bs(iter
)) {
267 block_job_add_bdrv(&s
->common
, "intermediate node", iter
, 0,
268 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE_UNCHANGED
,
273 s
->backing_file_str
= g_strdup(backing_file_str
);
274 s
->bs_flags
= orig_bs_flags
;
276 s
->on_error
= on_error
;
277 trace_stream_start(bs
, base
, s
);
278 block_job_start(&s
->common
);
282 if (orig_bs_flags
!= bdrv_get_flags(bs
)) {
283 bdrv_reopen(bs
, orig_bs_flags
, NULL
);