]>
Commit | Line | Data |
---|---|---|
4f1043b4 SH |
1 | /* |
2 | * Image streaming | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | |
8 | * | |
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. | |
11 | * | |
12 | */ | |
13 | ||
80c71a24 | 14 | #include "qemu/osdep.h" |
4f1043b4 | 15 | #include "trace.h" |
737e150e | 16 | #include "block/block_int.h" |
c87621ea | 17 | #include "block/blockjob_int.h" |
da34e65c | 18 | #include "qapi/error.h" |
cc7a8ea7 | 19 | #include "qapi/qmp/qerror.h" |
6ef228fc | 20 | #include "qemu/ratelimit.h" |
373340b2 | 21 | #include "sysemu/block-backend.h" |
4f1043b4 SH |
22 | |
23 | enum { | |
24 | /* | |
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. | |
28 | */ | |
29 | STREAM_BUFFER_SIZE = 512 * 1024, /* in bytes */ | |
30 | }; | |
31 | ||
5094a6c0 SH |
32 | #define SLICE_TIME 100000000ULL /* ns */ |
33 | ||
4f1043b4 SH |
34 | typedef struct StreamBlockJob { |
35 | BlockJob common; | |
5094a6c0 | 36 | RateLimit limit; |
4f1043b4 | 37 | BlockDriverState *base; |
1d809098 | 38 | BlockdevOnError on_error; |
13d8cc51 | 39 | char *backing_file_str; |
61b49e48 | 40 | int bs_flags; |
4f1043b4 SH |
41 | } StreamBlockJob; |
42 | ||
03e35d82 | 43 | static int coroutine_fn stream_populate(BlockBackend *blk, |
8493211c | 44 | int64_t offset, uint64_t bytes, |
4f1043b4 SH |
45 | void *buf) |
46 | { | |
47 | struct iovec iov = { | |
48 | .iov_base = buf, | |
8493211c | 49 | .iov_len = bytes, |
4f1043b4 SH |
50 | }; |
51 | QEMUIOVector qiov; | |
52 | ||
8493211c | 53 | assert(bytes < SIZE_MAX); |
4f1043b4 SH |
54 | qemu_iovec_init_external(&qiov, &iov, 1); |
55 | ||
56 | /* Copy-on-read the unallocated clusters */ | |
8493211c | 57 | return blk_co_preadv(blk, offset, qiov.size, &qiov, BDRV_REQ_COPY_ON_READ); |
4f1043b4 SH |
58 | } |
59 | ||
f3e69beb SH |
60 | typedef struct { |
61 | int ret; | |
f3e69beb SH |
62 | } StreamCompleteData; |
63 | ||
64 | static void stream_complete(BlockJob *job, void *opaque) | |
65 | { | |
66 | StreamBlockJob *s = container_of(job, StreamBlockJob, common); | |
67 | StreamCompleteData *data = opaque; | |
03e35d82 | 68 | BlockDriverState *bs = blk_bs(job->blk); |
f3e69beb | 69 | BlockDriverState *base = s->base; |
12fa4af6 | 70 | Error *local_err = NULL; |
f3e69beb | 71 | |
158c6492 | 72 | if (!block_job_is_cancelled(&s->common) && bs->backing && |
f3e69beb SH |
73 | data->ret == 0) { |
74 | const char *base_id = NULL, *base_fmt = NULL; | |
75 | if (base) { | |
76 | base_id = s->backing_file_str; | |
77 | if (base->drv) { | |
78 | base_fmt = base->drv->format_name; | |
79 | } | |
80 | } | |
03e35d82 | 81 | data->ret = bdrv_change_backing_file(bs, base_id, base_fmt); |
12fa4af6 KW |
82 | bdrv_set_backing_hd(bs, base, &local_err); |
83 | if (local_err) { | |
84 | error_report_err(local_err); | |
85 | data->ret = -EPERM; | |
86 | goto out; | |
87 | } | |
f3e69beb SH |
88 | } |
89 | ||
12fa4af6 | 90 | out: |
61b49e48 AG |
91 | /* Reopen the image back in read-only mode if necessary */ |
92 | if (s->bs_flags != bdrv_get_flags(bs)) { | |
a170a91f KW |
93 | /* Give up write permissions before making it read-only */ |
94 | blk_set_perm(job->blk, 0, BLK_PERM_ALL, &error_abort); | |
61b49e48 AG |
95 | bdrv_reopen(bs, s->bs_flags, NULL); |
96 | } | |
97 | ||
f3e69beb SH |
98 | g_free(s->backing_file_str); |
99 | block_job_completed(&s->common, data->ret); | |
100 | g_free(data); | |
101 | } | |
102 | ||
4f1043b4 SH |
103 | static void coroutine_fn stream_run(void *opaque) |
104 | { | |
105 | StreamBlockJob *s = opaque; | |
f3e69beb | 106 | StreamCompleteData *data; |
03e35d82 KW |
107 | BlockBackend *blk = s->common.blk; |
108 | BlockDriverState *bs = blk_bs(blk); | |
c8c3080f | 109 | BlockDriverState *base = s->base; |
d535435f | 110 | int64_t offset = 0; |
f14a39cc | 111 | uint64_t delay_ns = 0; |
1d809098 | 112 | int error = 0; |
4f1043b4 | 113 | int ret = 0; |
51b0a488 | 114 | int64_t n = 0; /* bytes */ |
4f1043b4 SH |
115 | void *buf; |
116 | ||
760e0063 | 117 | if (!bs->backing) { |
6578629e | 118 | goto out; |
f4a193e7 HR |
119 | } |
120 | ||
4f1043b4 SH |
121 | s->common.len = bdrv_getlength(bs); |
122 | if (s->common.len < 0) { | |
6578629e AG |
123 | ret = s->common.len; |
124 | goto out; | |
4f1043b4 SH |
125 | } |
126 | ||
4f1043b4 SH |
127 | buf = qemu_blockalign(bs, STREAM_BUFFER_SIZE); |
128 | ||
129 | /* Turn on copy-on-read for the whole block device so that guest read | |
130 | * requests help us make progress. Only do this when copying the entire | |
131 | * backing chain since the copy-on-read operation does not take base into | |
132 | * account. | |
133 | */ | |
134 | if (!base) { | |
135 | bdrv_enable_copy_on_read(bs); | |
136 | } | |
137 | ||
51b0a488 | 138 | for ( ; offset < s->common.len; offset += n) { |
f9749f28 | 139 | bool copy; |
4513eafe | 140 | |
4513eafe | 141 | /* Note that even when no rate limit is applied we need to yield |
c57b6656 | 142 | * with no pending I/O here so that bdrv_drain_all() returns. |
4513eafe | 143 | */ |
5bf1d5a7 | 144 | block_job_sleep_ns(&s->common, delay_ns); |
4f1043b4 SH |
145 | if (block_job_is_cancelled(&s->common)) { |
146 | break; | |
147 | } | |
148 | ||
c3e4f43a SW |
149 | copy = false; |
150 | ||
51b0a488 | 151 | ret = bdrv_is_allocated(bs, offset, STREAM_BUFFER_SIZE, &n); |
f9749f28 PB |
152 | if (ret == 1) { |
153 | /* Allocated in the top, no need to copy. */ | |
d663640c | 154 | } else if (ret >= 0) { |
f9749f28 | 155 | /* Copy if allocated in the intermediate images. Limit to the |
d535435f | 156 | * known-unallocated area [offset, offset+n*BDRV_SECTOR_SIZE). */ |
760e0063 | 157 | ret = bdrv_is_allocated_above(backing_bs(bs), base, |
51b0a488 | 158 | offset, n, &n); |
571cd9dc SH |
159 | |
160 | /* Finish early if end of backing file has been reached */ | |
161 | if (ret == 0 && n == 0) { | |
51b0a488 | 162 | n = s->common.len - offset; |
571cd9dc SH |
163 | } |
164 | ||
f9749f28 PB |
165 | copy = (ret == 1); |
166 | } | |
51b0a488 | 167 | trace_stream_one_iteration(s, offset, n, ret); |
c3e4f43a | 168 | if (copy) { |
51b0a488 | 169 | ret = stream_populate(blk, offset, n, buf); |
4f1043b4 SH |
170 | } |
171 | if (ret < 0) { | |
1d809098 | 172 | BlockErrorAction action = |
81e254dc | 173 | block_job_error_action(&s->common, s->on_error, true, -ret); |
a589569f | 174 | if (action == BLOCK_ERROR_ACTION_STOP) { |
1d809098 PB |
175 | n = 0; |
176 | continue; | |
177 | } | |
178 | if (error == 0) { | |
179 | error = ret; | |
180 | } | |
a589569f | 181 | if (action == BLOCK_ERROR_ACTION_REPORT) { |
1d809098 PB |
182 | break; |
183 | } | |
4f1043b4 | 184 | } |
c8c3080f | 185 | ret = 0; |
4f1043b4 SH |
186 | |
187 | /* Publish progress */ | |
51b0a488 | 188 | s->common.offset += n; |
f14a39cc | 189 | if (copy && s->common.speed) { |
51b0a488 | 190 | delay_ns = ratelimit_calculate_delay(&s->limit, n); |
f14a39cc | 191 | } |
4f1043b4 SH |
192 | } |
193 | ||
194 | if (!base) { | |
195 | bdrv_disable_copy_on_read(bs); | |
196 | } | |
197 | ||
1d809098 PB |
198 | /* Do not remove the backing file if an error was there but ignored. */ |
199 | ret = error; | |
200 | ||
4f1043b4 | 201 | qemu_vfree(buf); |
f3e69beb | 202 | |
6578629e | 203 | out: |
f3e69beb SH |
204 | /* Modify backing chain and close BDSes in main loop */ |
205 | data = g_malloc(sizeof(*data)); | |
206 | data->ret = ret; | |
f3e69beb | 207 | block_job_defer_to_main_loop(&s->common, stream_complete, data); |
4f1043b4 SH |
208 | } |
209 | ||
882ec7ce | 210 | static void stream_set_speed(BlockJob *job, int64_t speed, Error **errp) |
5094a6c0 SH |
211 | { |
212 | StreamBlockJob *s = container_of(job, StreamBlockJob, common); | |
213 | ||
882ec7ce | 214 | if (speed < 0) { |
c6bd8c70 | 215 | error_setg(errp, QERR_INVALID_PARAMETER, "speed"); |
9e6636c7 | 216 | return; |
5094a6c0 | 217 | } |
f3e4ce4a | 218 | ratelimit_set_speed(&s->limit, speed, SLICE_TIME); |
5094a6c0 SH |
219 | } |
220 | ||
3fc4b10a | 221 | static const BlockJobDriver stream_job_driver = { |
4f1043b4 | 222 | .instance_size = sizeof(StreamBlockJob), |
79e14bf7 | 223 | .job_type = BLOCK_JOB_TYPE_STREAM, |
5094a6c0 | 224 | .set_speed = stream_set_speed, |
a7815a76 | 225 | .start = stream_run, |
4f1043b4 SH |
226 | }; |
227 | ||
2323322e AG |
228 | void stream_start(const char *job_id, BlockDriverState *bs, |
229 | BlockDriverState *base, const char *backing_file_str, | |
8254b6d9 | 230 | int64_t speed, BlockdevOnError on_error, Error **errp) |
4f1043b4 SH |
231 | { |
232 | StreamBlockJob *s; | |
61b49e48 AG |
233 | BlockDriverState *iter; |
234 | int orig_bs_flags; | |
4f1043b4 | 235 | |
61b49e48 AG |
236 | /* Make sure that the image is opened in read-write mode */ |
237 | orig_bs_flags = bdrv_get_flags(bs); | |
238 | if (!(orig_bs_flags & BDRV_O_RDWR)) { | |
239 | if (bdrv_reopen(bs, orig_bs_flags | BDRV_O_RDWR, errp) != 0) { | |
61b49e48 AG |
240 | return; |
241 | } | |
242 | } | |
243 | ||
a170a91f KW |
244 | /* Prevent concurrent jobs trying to modify the graph structure here, we |
245 | * already have our own plans. Also don't allow resize as the image size is | |
246 | * queried only at the job start and then cached. */ | |
75859b94 | 247 | s = block_job_create(job_id, &stream_job_driver, NULL, bs, |
a170a91f KW |
248 | BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED | |
249 | BLK_PERM_GRAPH_MOD, | |
250 | BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED | | |
251 | BLK_PERM_WRITE, | |
252 | speed, BLOCK_JOB_DEFAULT, NULL, NULL, errp); | |
253 | if (!s) { | |
254 | goto fail; | |
255 | } | |
256 | ||
257 | /* Block all intermediate nodes between bs and base, because they will | |
258 | * disappear from the chain after this operation. The streaming job reads | |
259 | * every block only once, assuming that it doesn't change, so block writes | |
260 | * and resizes. */ | |
61b49e48 | 261 | for (iter = backing_bs(bs); iter && iter != base; iter = backing_bs(iter)) { |
76d554e2 | 262 | block_job_add_bdrv(&s->common, "intermediate node", iter, 0, |
a170a91f KW |
263 | BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED, |
264 | &error_abort); | |
61b49e48 AG |
265 | } |
266 | ||
4f1043b4 | 267 | s->base = base; |
13d8cc51 | 268 | s->backing_file_str = g_strdup(backing_file_str); |
61b49e48 | 269 | s->bs_flags = orig_bs_flags; |
4f1043b4 | 270 | |
1d809098 | 271 | s->on_error = on_error; |
5ccac6f1 JS |
272 | trace_stream_start(bs, base, s); |
273 | block_job_start(&s->common); | |
a170a91f KW |
274 | return; |
275 | ||
276 | fail: | |
277 | if (orig_bs_flags != bdrv_get_flags(bs)) { | |
525989a5 | 278 | bdrv_reopen(bs, orig_bs_flags, NULL); |
a170a91f | 279 | } |
4f1043b4 | 280 | } |