4 * Copyright Red Hat, Inc. 2012
7 * Jeff Cody <jcody@redhat.com>
8 * Based on stream.c by Stefan Hajnoczi
10 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
11 * See the COPYING.LIB file in the top-level directory.
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 COMMIT_BUFFER_SIZE
= 512 * 1024, /* in bytes */
31 #define SLICE_TIME 100000000ULL /* ns */
33 typedef struct CommitBlockJob
{
36 BlockDriverState
*active
;
37 BlockDriverState
*top
;
38 BlockDriverState
*base
;
39 BlockdevOnError on_error
;
41 int orig_overlay_flags
;
42 char *backing_file_str
;
45 static int coroutine_fn
commit_populate(BlockDriverState
*bs
,
46 BlockDriverState
*base
,
47 int64_t sector_num
, int nb_sectors
,
52 ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
57 ret
= bdrv_write(base
, sector_num
, buf
, nb_sectors
);
69 static void commit_complete(BlockJob
*job
, void *opaque
)
71 CommitBlockJob
*s
= container_of(job
, CommitBlockJob
, common
);
72 CommitCompleteData
*data
= opaque
;
73 BlockDriverState
*active
= s
->active
;
74 BlockDriverState
*top
= s
->top
;
75 BlockDriverState
*base
= s
->base
;
76 BlockDriverState
*overlay_bs
;
79 if (!block_job_is_cancelled(&s
->common
) && ret
== 0) {
81 ret
= bdrv_drop_intermediate(active
, top
, base
, s
->backing_file_str
);
84 /* restore base open flags here if appropriate (e.g., change the base back
85 * to r/o). These reopens do not need to be atomic, since we won't abort
86 * even on failure here */
87 if (s
->base_flags
!= bdrv_get_flags(base
)) {
88 bdrv_reopen(base
, s
->base_flags
, NULL
);
90 overlay_bs
= bdrv_find_overlay(active
, top
);
91 if (overlay_bs
&& s
->orig_overlay_flags
!= bdrv_get_flags(overlay_bs
)) {
92 bdrv_reopen(overlay_bs
, s
->orig_overlay_flags
, NULL
);
94 g_free(s
->backing_file_str
);
95 block_job_completed(&s
->common
, ret
);
99 static void coroutine_fn
commit_run(void *opaque
)
101 CommitBlockJob
*s
= opaque
;
102 CommitCompleteData
*data
;
103 BlockDriverState
*top
= s
->top
;
104 BlockDriverState
*base
= s
->base
;
105 int64_t sector_num
, end
;
109 int bytes_written
= 0;
112 ret
= s
->common
.len
= bdrv_getlength(top
);
115 if (s
->common
.len
< 0) {
119 ret
= base_len
= bdrv_getlength(base
);
124 if (base_len
< s
->common
.len
) {
125 ret
= bdrv_truncate(base
, s
->common
.len
);
131 end
= s
->common
.len
>> BDRV_SECTOR_BITS
;
132 buf
= qemu_blockalign(top
, COMMIT_BUFFER_SIZE
);
134 for (sector_num
= 0; sector_num
< end
; sector_num
+= n
) {
135 uint64_t delay_ns
= 0;
139 /* Note that even when no rate limit is applied we need to yield
140 * with no pending I/O here so that bdrv_drain_all() returns.
142 block_job_sleep_ns(&s
->common
, QEMU_CLOCK_REALTIME
, delay_ns
);
143 if (block_job_is_cancelled(&s
->common
)) {
146 /* Copy if allocated above the base */
147 ret
= bdrv_is_allocated_above(top
, base
, sector_num
,
148 COMMIT_BUFFER_SIZE
/ BDRV_SECTOR_SIZE
,
151 trace_commit_one_iteration(s
, sector_num
, n
, ret
);
153 if (s
->common
.speed
) {
154 delay_ns
= ratelimit_calculate_delay(&s
->limit
, n
);
159 ret
= commit_populate(top
, base
, sector_num
, n
, buf
);
160 bytes_written
+= n
* BDRV_SECTOR_SIZE
;
163 if (s
->on_error
== BLOCKDEV_ON_ERROR_STOP
||
164 s
->on_error
== BLOCKDEV_ON_ERROR_REPORT
||
165 (s
->on_error
== BLOCKDEV_ON_ERROR_ENOSPC
&& ret
== -ENOSPC
)) {
172 /* Publish progress */
173 s
->common
.offset
+= n
* BDRV_SECTOR_SIZE
;
181 data
= g_malloc(sizeof(*data
));
183 block_job_defer_to_main_loop(&s
->common
, commit_complete
, data
);
186 static void commit_set_speed(BlockJob
*job
, int64_t speed
, Error
**errp
)
188 CommitBlockJob
*s
= container_of(job
, CommitBlockJob
, common
);
191 error_setg(errp
, QERR_INVALID_PARAMETER
, "speed");
194 ratelimit_set_speed(&s
->limit
, speed
/ BDRV_SECTOR_SIZE
, SLICE_TIME
);
197 static const BlockJobDriver commit_job_driver
= {
198 .instance_size
= sizeof(CommitBlockJob
),
199 .job_type
= BLOCK_JOB_TYPE_COMMIT
,
200 .set_speed
= commit_set_speed
,
203 void commit_start(BlockDriverState
*bs
, BlockDriverState
*base
,
204 BlockDriverState
*top
, int64_t speed
,
205 BlockdevOnError on_error
, BlockCompletionFunc
*cb
,
206 void *opaque
, const char *backing_file_str
, Error
**errp
)
209 BlockReopenQueue
*reopen_queue
= NULL
;
210 int orig_overlay_flags
;
212 BlockDriverState
*overlay_bs
;
213 Error
*local_err
= NULL
;
215 if ((on_error
== BLOCKDEV_ON_ERROR_STOP
||
216 on_error
== BLOCKDEV_ON_ERROR_ENOSPC
) &&
217 (!bs
->blk
|| !blk_iostatus_is_enabled(bs
->blk
))) {
218 error_setg(errp
, "Invalid parameter combination");
224 error_setg(errp
, "Invalid files for merge: top and base are the same");
228 overlay_bs
= bdrv_find_overlay(bs
, top
);
230 if (overlay_bs
== NULL
) {
231 error_setg(errp
, "Could not find overlay image for %s:", top
->filename
);
235 orig_base_flags
= bdrv_get_flags(base
);
236 orig_overlay_flags
= bdrv_get_flags(overlay_bs
);
238 /* convert base & overlay_bs to r/w, if necessary */
239 if (!(orig_overlay_flags
& BDRV_O_RDWR
)) {
240 reopen_queue
= bdrv_reopen_queue(reopen_queue
, overlay_bs
, NULL
,
241 orig_overlay_flags
| BDRV_O_RDWR
);
243 if (!(orig_base_flags
& BDRV_O_RDWR
)) {
244 reopen_queue
= bdrv_reopen_queue(reopen_queue
, base
, NULL
,
245 orig_base_flags
| BDRV_O_RDWR
);
248 bdrv_reopen_multiple(reopen_queue
, &local_err
);
249 if (local_err
!= NULL
) {
250 error_propagate(errp
, local_err
);
256 s
= block_job_create(&commit_job_driver
, bs
, speed
, cb
, opaque
, errp
);
265 s
->base_flags
= orig_base_flags
;
266 s
->orig_overlay_flags
= orig_overlay_flags
;
268 s
->backing_file_str
= g_strdup(backing_file_str
);
270 s
->on_error
= on_error
;
271 s
->common
.co
= qemu_coroutine_create(commit_run
);
273 trace_commit_start(bs
, base
, top
, s
, s
->common
.co
, opaque
);
274 qemu_coroutine_enter(s
->common
.co
, s
);