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.h"
18 #include "qapi/qmp/qerror.h"
19 #include "qemu/ratelimit.h"
20 #include "sysemu/block-backend.h"
24 * Size of data buffer for populating the image file. This should be large
25 * enough to process multiple clusters in a single call, so that populating
26 * contiguous regions of the image is efficient.
28 STREAM_BUFFER_SIZE
= 512 * 1024, /* in bytes */
31 #define SLICE_TIME 100000000ULL /* ns */
33 typedef struct StreamBlockJob
{
36 BlockDriverState
*base
;
37 BlockdevOnError on_error
;
38 char *backing_file_str
;
41 static int coroutine_fn
stream_populate(BlockDriverState
*bs
,
42 int64_t sector_num
, int nb_sectors
,
47 .iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
,
51 qemu_iovec_init_external(&qiov
, &iov
, 1);
53 /* Copy-on-read the unallocated clusters */
54 return bdrv_co_copy_on_readv(bs
, sector_num
, nb_sectors
, &qiov
);
62 static void stream_complete(BlockJob
*job
, void *opaque
)
64 StreamBlockJob
*s
= container_of(job
, StreamBlockJob
, common
);
65 StreamCompleteData
*data
= opaque
;
66 BlockDriverState
*base
= s
->base
;
68 if (!block_job_is_cancelled(&s
->common
) && data
->reached_end
&&
70 const char *base_id
= NULL
, *base_fmt
= NULL
;
72 base_id
= s
->backing_file_str
;
74 base_fmt
= base
->drv
->format_name
;
77 data
->ret
= bdrv_change_backing_file(job
->bs
, base_id
, base_fmt
);
78 bdrv_set_backing_hd(job
->bs
, base
);
81 g_free(s
->backing_file_str
);
82 block_job_completed(&s
->common
, data
->ret
);
86 static void coroutine_fn
stream_run(void *opaque
)
88 StreamBlockJob
*s
= opaque
;
89 StreamCompleteData
*data
;
90 BlockDriverState
*bs
= s
->common
.bs
;
91 BlockDriverState
*base
= s
->base
;
92 int64_t sector_num
, end
;
99 block_job_completed(&s
->common
, 0);
103 s
->common
.len
= bdrv_getlength(bs
);
104 if (s
->common
.len
< 0) {
105 block_job_completed(&s
->common
, s
->common
.len
);
109 end
= s
->common
.len
>> BDRV_SECTOR_BITS
;
110 buf
= qemu_blockalign(bs
, STREAM_BUFFER_SIZE
);
112 /* Turn on copy-on-read for the whole block device so that guest read
113 * requests help us make progress. Only do this when copying the entire
114 * backing chain since the copy-on-read operation does not take base into
118 bdrv_enable_copy_on_read(bs
);
121 for (sector_num
= 0; sector_num
< end
; sector_num
+= n
) {
122 uint64_t delay_ns
= 0;
126 /* Note that even when no rate limit is applied we need to yield
127 * with no pending I/O here so that bdrv_drain_all() returns.
129 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, delay_ns
);
130 if (block_job_is_cancelled(&s
->common
)) {
136 ret
= bdrv_is_allocated(bs
, sector_num
,
137 STREAM_BUFFER_SIZE
/ BDRV_SECTOR_SIZE
, &n
);
139 /* Allocated in the top, no need to copy. */
140 } else if (ret
>= 0) {
141 /* Copy if allocated in the intermediate images. Limit to the
142 * known-unallocated area [sector_num, sector_num+n). */
143 ret
= bdrv_is_allocated_above(backing_bs(bs
), base
,
146 /* Finish early if end of backing file has been reached */
147 if (ret
== 0 && n
== 0) {
148 n
= end
- sector_num
;
153 trace_stream_one_iteration(s
, sector_num
, n
, ret
);
155 if (s
->common
.speed
) {
156 delay_ns
= ratelimit_calculate_delay(&s
->limit
, n
);
161 ret
= stream_populate(bs
, sector_num
, n
, buf
);
164 BlockErrorAction action
=
165 block_job_error_action(&s
->common
, s
->common
.bs
, s
->on_error
,
167 if (action
== BLOCK_ERROR_ACTION_STOP
) {
174 if (action
== BLOCK_ERROR_ACTION_REPORT
) {
180 /* Publish progress */
181 s
->common
.offset
+= n
* BDRV_SECTOR_SIZE
;
185 bdrv_disable_copy_on_read(bs
);
188 /* Do not remove the backing file if an error was there but ignored. */
193 /* Modify backing chain and close BDSes in main loop */
194 data
= g_malloc(sizeof(*data
));
196 data
->reached_end
= sector_num
== end
;
197 block_job_defer_to_main_loop(&s
->common
, stream_complete
, data
);
200 static void stream_set_speed(BlockJob
*job
, int64_t speed
, Error
**errp
)
202 StreamBlockJob
*s
= container_of(job
, StreamBlockJob
, common
);
205 error_setg(errp
, QERR_INVALID_PARAMETER
, "speed");
208 ratelimit_set_speed(&s
->limit
, speed
/ BDRV_SECTOR_SIZE
, SLICE_TIME
);
211 static const BlockJobDriver stream_job_driver
= {
212 .instance_size
= sizeof(StreamBlockJob
),
213 .job_type
= BLOCK_JOB_TYPE_STREAM
,
214 .set_speed
= stream_set_speed
,
217 void stream_start(BlockDriverState
*bs
, BlockDriverState
*base
,
218 const char *backing_file_str
, int64_t speed
,
219 BlockdevOnError on_error
,
220 BlockCompletionFunc
*cb
,
221 void *opaque
, Error
**errp
)
225 if ((on_error
== BLOCKDEV_ON_ERROR_STOP
||
226 on_error
== BLOCKDEV_ON_ERROR_ENOSPC
) &&
227 (!bs
->blk
|| !blk_iostatus_is_enabled(bs
->blk
))) {
228 error_setg(errp
, QERR_INVALID_PARAMETER
, "on-error");
232 s
= block_job_create(&stream_job_driver
, bs
, speed
, cb
, opaque
, errp
);
238 s
->backing_file_str
= g_strdup(backing_file_str
);
240 s
->on_error
= on_error
;
241 s
->common
.co
= qemu_coroutine_create(stream_run
);
242 trace_stream_start(bs
, base
, s
, s
->common
.co
, opaque
);
243 qemu_coroutine_enter(s
->common
.co
, s
);