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