]> git.proxmox.com Git - mirror_qemu.git/blame - block/stream.c
Merge remote-tracking branch 'remotes/maxreitz/tags/pull-block-2019-07-02' into staging
[mirror_qemu.git] / block / stream.c
CommitLineData
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
23enum {
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
32typedef struct StreamBlockJob {
33 BlockJob common;
c624b015 34 BlockDriverState *bottom;
1d809098 35 BlockdevOnError on_error;
13d8cc51 36 char *backing_file_str;
e7d22f8b 37 bool bs_read_only;
65854933 38 bool chain_frozen;
4f1043b4
SH
39} StreamBlockJob;
40
03e35d82 41static int coroutine_fn stream_populate(BlockBackend *blk,
8493211c 42 int64_t offset, uint64_t bytes,
4f1043b4
SH
43 void *buf)
44{
8493211c 45 assert(bytes < SIZE_MAX);
4f1043b4
SH
46
47 /* Copy-on-read the unallocated clusters */
f4326aef 48 return blk_co_pread(blk, offset, bytes, buf, BDRV_REQ_COPY_ON_READ);
4f1043b4
SH
49}
50
65854933
AG
51static void stream_abort(Job *job)
52{
53 StreamBlockJob *s = container_of(job, StreamBlockJob, common.job);
54
55 if (s->chain_frozen) {
56 BlockJob *bjob = &s->common;
c624b015 57 bdrv_unfreeze_backing_chain(blk_bs(bjob->blk), s->bottom);
65854933
AG
58 }
59}
60
1b57488a 61static int stream_prepare(Job *job)
f3e69beb 62{
1908a559
KW
63 StreamBlockJob *s = container_of(job, StreamBlockJob, common.job);
64 BlockJob *bjob = &s->common;
1908a559 65 BlockDriverState *bs = blk_bs(bjob->blk);
c624b015 66 BlockDriverState *base = backing_bs(s->bottom);
12fa4af6 67 Error *local_err = NULL;
1b57488a 68 int ret = 0;
f3e69beb 69
c624b015 70 bdrv_unfreeze_backing_chain(bs, s->bottom);
65854933
AG
71 s->chain_frozen = false;
72
1b57488a 73 if (bs->backing) {
f3e69beb
SH
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 }
eb23654d 81 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);
1b57488a 85 return -EPERM;
12fa4af6 86 }
f3e69beb
SH
87 }
88
1b57488a
JS
89 return ret;
90}
91
92static void stream_clean(Job *job)
93{
94 StreamBlockJob *s = container_of(job, StreamBlockJob, common.job);
95 BlockJob *bjob = &s->common;
96 BlockDriverState *bs = blk_bs(bjob->blk);
97
61b49e48 98 /* Reopen the image back in read-only mode if necessary */
e7d22f8b 99 if (s->bs_read_only) {
a170a91f 100 /* Give up write permissions before making it read-only */
1908a559 101 blk_set_perm(bjob->blk, 0, BLK_PERM_ALL, &error_abort);
e7d22f8b 102 bdrv_reopen_set_read_only(bs, true, NULL);
61b49e48
AG
103 }
104
f3e69beb 105 g_free(s->backing_file_str);
f3e69beb
SH
106}
107
f67432a2 108static int coroutine_fn stream_run(Job *job, Error **errp)
4f1043b4 109{
f67432a2 110 StreamBlockJob *s = container_of(job, StreamBlockJob, common.job);
03e35d82
KW
111 BlockBackend *blk = s->common.blk;
112 BlockDriverState *bs = blk_bs(blk);
c624b015 113 bool enable_cor = !backing_bs(s->bottom);
05df8a6a 114 int64_t len;
d535435f 115 int64_t offset = 0;
f14a39cc 116 uint64_t delay_ns = 0;
1d809098 117 int error = 0;
4f1043b4 118 int ret = 0;
51b0a488 119 int64_t n = 0; /* bytes */
4f1043b4
SH
120 void *buf;
121
c624b015
AS
122 if (bs == s->bottom) {
123 /* Nothing to stream */
96a07d5b 124 return 0;
f4a193e7
HR
125 }
126
05df8a6a
KW
127 len = bdrv_getlength(bs);
128 if (len < 0) {
96a07d5b 129 return len;
4f1043b4 130 }
30a5c887 131 job_progress_set_remaining(&s->common.job, len);
4f1043b4 132
4f1043b4
SH
133 buf = qemu_blockalign(bs, STREAM_BUFFER_SIZE);
134
135 /* Turn on copy-on-read for the whole block device so that guest read
136 * requests help us make progress. Only do this when copying the entire
137 * backing chain since the copy-on-read operation does not take base into
138 * account.
139 */
c624b015 140 if (enable_cor) {
4f1043b4
SH
141 bdrv_enable_copy_on_read(bs);
142 }
143
05df8a6a 144 for ( ; offset < len; offset += n) {
f9749f28 145 bool copy;
4513eafe 146
4513eafe 147 /* Note that even when no rate limit is applied we need to yield
c57b6656 148 * with no pending I/O here so that bdrv_drain_all() returns.
4513eafe 149 */
5d43e86e 150 job_sleep_ns(&s->common.job, delay_ns);
daa7f2f9 151 if (job_is_cancelled(&s->common.job)) {
4f1043b4
SH
152 break;
153 }
154
c3e4f43a
SW
155 copy = false;
156
51b0a488 157 ret = bdrv_is_allocated(bs, offset, STREAM_BUFFER_SIZE, &n);
f9749f28
PB
158 if (ret == 1) {
159 /* Allocated in the top, no need to copy. */
d663640c 160 } else if (ret >= 0) {
f9749f28 161 /* Copy if allocated in the intermediate images. Limit to the
d535435f 162 * known-unallocated area [offset, offset+n*BDRV_SECTOR_SIZE). */
c624b015 163 ret = bdrv_is_allocated_above(backing_bs(bs), s->bottom, true,
51b0a488 164 offset, n, &n);
571cd9dc
SH
165 /* Finish early if end of backing file has been reached */
166 if (ret == 0 && n == 0) {
05df8a6a 167 n = len - offset;
571cd9dc
SH
168 }
169
f9749f28
PB
170 copy = (ret == 1);
171 }
51b0a488 172 trace_stream_one_iteration(s, offset, n, ret);
c3e4f43a 173 if (copy) {
51b0a488 174 ret = stream_populate(blk, offset, n, buf);
4f1043b4
SH
175 }
176 if (ret < 0) {
1d809098 177 BlockErrorAction action =
81e254dc 178 block_job_error_action(&s->common, s->on_error, true, -ret);
a589569f 179 if (action == BLOCK_ERROR_ACTION_STOP) {
1d809098
PB
180 n = 0;
181 continue;
182 }
183 if (error == 0) {
184 error = ret;
185 }
a589569f 186 if (action == BLOCK_ERROR_ACTION_REPORT) {
1d809098
PB
187 break;
188 }
4f1043b4 189 }
c8c3080f 190 ret = 0;
4f1043b4
SH
191
192 /* Publish progress */
30a5c887 193 job_progress_update(&s->common.job, n);
dee81d51
KW
194 if (copy) {
195 delay_ns = block_job_ratelimit_get_delay(&s->common, n);
2fe4bba1
KW
196 } else {
197 delay_ns = 0;
f14a39cc 198 }
4f1043b4
SH
199 }
200
c624b015 201 if (enable_cor) {
4f1043b4
SH
202 bdrv_disable_copy_on_read(bs);
203 }
204
4f1043b4 205 qemu_vfree(buf);
f3e69beb 206
96a07d5b
AS
207 /* Do not remove the backing file if an error was there but ignored. */
208 return error;
4f1043b4
SH
209}
210
3fc4b10a 211static const BlockJobDriver stream_job_driver = {
33e9e9bd
KW
212 .job_driver = {
213 .instance_size = sizeof(StreamBlockJob),
252291ea 214 .job_type = JOB_TYPE_STREAM,
80fa2c75 215 .free = block_job_free,
f67432a2 216 .run = stream_run,
1b57488a 217 .prepare = stream_prepare,
65854933 218 .abort = stream_abort,
1b57488a 219 .clean = stream_clean,
b15de828 220 .user_resume = block_job_user_resume,
b69f777d 221 .drain = block_job_drain,
33e9e9bd 222 },
4f1043b4
SH
223};
224
2323322e
AG
225void stream_start(const char *job_id, BlockDriverState *bs,
226 BlockDriverState *base, const char *backing_file_str,
cf6320df
JS
227 int creation_flags, int64_t speed,
228 BlockdevOnError on_error, Error **errp)
4f1043b4
SH
229{
230 StreamBlockJob *s;
61b49e48 231 BlockDriverState *iter;
e7d22f8b 232 bool bs_read_only;
c624b015
AS
233 int basic_flags = BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
234 BlockDriverState *bottom = bdrv_find_overlay(bs, base);
4f1043b4 235
c624b015 236 if (bdrv_freeze_backing_chain(bs, bottom, errp) < 0) {
20509c4b
AG
237 return;
238 }
239
61b49e48 240 /* Make sure that the image is opened in read-write mode */
e7d22f8b
AG
241 bs_read_only = bdrv_is_read_only(bs);
242 if (bs_read_only) {
243 if (bdrv_reopen_set_read_only(bs, false, errp) != 0) {
20509c4b
AG
244 bs_read_only = false;
245 goto fail;
61b49e48
AG
246 }
247 }
248
a170a91f
KW
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. */
75859b94 252 s = block_job_create(job_id, &stream_job_driver, NULL, bs,
c624b015
AS
253 basic_flags | BLK_PERM_GRAPH_MOD,
254 basic_flags | BLK_PERM_WRITE,
cf6320df 255 speed, creation_flags, NULL, NULL, errp);
a170a91f
KW
256 if (!s) {
257 goto fail;
258 }
259
260 /* Block all intermediate nodes between bs and base, because they will
261 * disappear from the chain after this operation. The streaming job reads
c624b015
AS
262 * every block only once, assuming that it doesn't change, so forbid writes
263 * and resizes. Reassign the base node pointer because the backing BS of the
264 * bottom node might change after the call to bdrv_reopen_set_read_only()
265 * due to parallel block jobs running.
266 */
267 base = backing_bs(bottom);
61b49e48 268 for (iter = backing_bs(bs); iter && iter != base; iter = backing_bs(iter)) {
76d554e2 269 block_job_add_bdrv(&s->common, "intermediate node", iter, 0,
c624b015 270 basic_flags, &error_abort);
61b49e48
AG
271 }
272
c624b015 273 s->bottom = bottom;
13d8cc51 274 s->backing_file_str = g_strdup(backing_file_str);
e7d22f8b 275 s->bs_read_only = bs_read_only;
65854933 276 s->chain_frozen = true;
4f1043b4 277
1d809098 278 s->on_error = on_error;
5ccac6f1 279 trace_stream_start(bs, base, s);
da01ff7f 280 job_start(&s->common.job);
a170a91f
KW
281 return;
282
283fail:
e7d22f8b
AG
284 if (bs_read_only) {
285 bdrv_reopen_set_read_only(bs, true, NULL);
a170a91f 286 }
20509c4b 287 bdrv_unfreeze_backing_chain(bs, base);
4f1043b4 288}