]> git.proxmox.com Git - mirror_qemu.git/blame - block/stream.c
blockjob: add .start field
[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
5094a6c0
SH
32#define SLICE_TIME 100000000ULL /* ns */
33
4f1043b4
SH
34typedef 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 43static int coroutine_fn stream_populate(BlockBackend *blk,
4f1043b4
SH
44 int64_t sector_num, int nb_sectors,
45 void *buf)
46{
47 struct iovec iov = {
48 .iov_base = buf,
49 .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
50 };
51 QEMUIOVector qiov;
52
53 qemu_iovec_init_external(&qiov, &iov, 1);
54
55 /* Copy-on-read the unallocated clusters */
03e35d82
KW
56 return blk_co_preadv(blk, sector_num * BDRV_SECTOR_SIZE, qiov.size, &qiov,
57 BDRV_REQ_COPY_ON_READ);
4f1043b4
SH
58}
59
f3e69beb
SH
60typedef struct {
61 int ret;
62 bool reached_end;
63} StreamCompleteData;
64
65static void stream_complete(BlockJob *job, void *opaque)
66{
67 StreamBlockJob *s = container_of(job, StreamBlockJob, common);
68 StreamCompleteData *data = opaque;
03e35d82 69 BlockDriverState *bs = blk_bs(job->blk);
f3e69beb
SH
70 BlockDriverState *base = s->base;
71
72 if (!block_job_is_cancelled(&s->common) && data->reached_end &&
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
KW
81 data->ret = bdrv_change_backing_file(bs, base_id, base_fmt);
82 bdrv_set_backing_hd(bs, base);
f3e69beb
SH
83 }
84
61b49e48
AG
85 /* Reopen the image back in read-only mode if necessary */
86 if (s->bs_flags != bdrv_get_flags(bs)) {
87 bdrv_reopen(bs, s->bs_flags, NULL);
88 }
89
f3e69beb
SH
90 g_free(s->backing_file_str);
91 block_job_completed(&s->common, data->ret);
92 g_free(data);
93}
94
4f1043b4
SH
95static void coroutine_fn stream_run(void *opaque)
96{
97 StreamBlockJob *s = opaque;
f3e69beb 98 StreamCompleteData *data;
03e35d82
KW
99 BlockBackend *blk = s->common.blk;
100 BlockDriverState *bs = blk_bs(blk);
c8c3080f 101 BlockDriverState *base = s->base;
6578629e
AG
102 int64_t sector_num = 0;
103 int64_t end = -1;
f14a39cc 104 uint64_t delay_ns = 0;
1d809098 105 int error = 0;
4f1043b4 106 int ret = 0;
04120e3b 107 int n = 0;
4f1043b4
SH
108 void *buf;
109
760e0063 110 if (!bs->backing) {
6578629e 111 goto out;
f4a193e7
HR
112 }
113
4f1043b4
SH
114 s->common.len = bdrv_getlength(bs);
115 if (s->common.len < 0) {
6578629e
AG
116 ret = s->common.len;
117 goto out;
4f1043b4
SH
118 }
119
120 end = s->common.len >> BDRV_SECTOR_BITS;
121 buf = qemu_blockalign(bs, STREAM_BUFFER_SIZE);
122
123 /* Turn on copy-on-read for the whole block device so that guest read
124 * requests help us make progress. Only do this when copying the entire
125 * backing chain since the copy-on-read operation does not take base into
126 * account.
127 */
128 if (!base) {
129 bdrv_enable_copy_on_read(bs);
130 }
131
132 for (sector_num = 0; sector_num < end; sector_num += n) {
f9749f28 133 bool copy;
4513eafe 134
4513eafe 135 /* Note that even when no rate limit is applied we need to yield
c57b6656 136 * with no pending I/O here so that bdrv_drain_all() returns.
4513eafe 137 */
7483d1e5 138 block_job_sleep_ns(&s->common, QEMU_CLOCK_REALTIME, delay_ns);
4f1043b4
SH
139 if (block_job_is_cancelled(&s->common)) {
140 break;
141 }
142
c3e4f43a
SW
143 copy = false;
144
bdad13b9
PB
145 ret = bdrv_is_allocated(bs, sector_num,
146 STREAM_BUFFER_SIZE / BDRV_SECTOR_SIZE, &n);
f9749f28
PB
147 if (ret == 1) {
148 /* Allocated in the top, no need to copy. */
d663640c 149 } else if (ret >= 0) {
f9749f28
PB
150 /* Copy if allocated in the intermediate images. Limit to the
151 * known-unallocated area [sector_num, sector_num+n). */
760e0063 152 ret = bdrv_is_allocated_above(backing_bs(bs), base,
4f578637 153 sector_num, n, &n);
571cd9dc
SH
154
155 /* Finish early if end of backing file has been reached */
156 if (ret == 0 && n == 0) {
157 n = end - sector_num;
158 }
159
f9749f28
PB
160 copy = (ret == 1);
161 }
4f1043b4 162 trace_stream_one_iteration(s, sector_num, n, ret);
c3e4f43a 163 if (copy) {
03e35d82 164 ret = stream_populate(blk, sector_num, n, buf);
4f1043b4
SH
165 }
166 if (ret < 0) {
1d809098 167 BlockErrorAction action =
81e254dc 168 block_job_error_action(&s->common, s->on_error, true, -ret);
a589569f 169 if (action == BLOCK_ERROR_ACTION_STOP) {
1d809098
PB
170 n = 0;
171 continue;
172 }
173 if (error == 0) {
174 error = ret;
175 }
a589569f 176 if (action == BLOCK_ERROR_ACTION_REPORT) {
1d809098
PB
177 break;
178 }
4f1043b4 179 }
c8c3080f 180 ret = 0;
4f1043b4
SH
181
182 /* Publish progress */
183 s->common.offset += n * BDRV_SECTOR_SIZE;
f14a39cc
SS
184 if (copy && s->common.speed) {
185 delay_ns = ratelimit_calculate_delay(&s->limit, n);
186 }
4f1043b4
SH
187 }
188
189 if (!base) {
190 bdrv_disable_copy_on_read(bs);
191 }
192
1d809098
PB
193 /* Do not remove the backing file if an error was there but ignored. */
194 ret = error;
195
4f1043b4 196 qemu_vfree(buf);
f3e69beb 197
6578629e 198out:
f3e69beb
SH
199 /* Modify backing chain and close BDSes in main loop */
200 data = g_malloc(sizeof(*data));
201 data->ret = ret;
202 data->reached_end = sector_num == end;
203 block_job_defer_to_main_loop(&s->common, stream_complete, data);
4f1043b4
SH
204}
205
882ec7ce 206static void stream_set_speed(BlockJob *job, int64_t speed, Error **errp)
5094a6c0
SH
207{
208 StreamBlockJob *s = container_of(job, StreamBlockJob, common);
209
882ec7ce 210 if (speed < 0) {
c6bd8c70 211 error_setg(errp, QERR_INVALID_PARAMETER, "speed");
9e6636c7 212 return;
5094a6c0 213 }
6ef228fc 214 ratelimit_set_speed(&s->limit, speed / BDRV_SECTOR_SIZE, SLICE_TIME);
5094a6c0
SH
215}
216
3fc4b10a 217static const BlockJobDriver stream_job_driver = {
4f1043b4 218 .instance_size = sizeof(StreamBlockJob),
79e14bf7 219 .job_type = BLOCK_JOB_TYPE_STREAM,
5094a6c0 220 .set_speed = stream_set_speed,
a7815a76 221 .start = stream_run,
4f1043b4
SH
222};
223
2323322e
AG
224void stream_start(const char *job_id, BlockDriverState *bs,
225 BlockDriverState *base, const char *backing_file_str,
8254b6d9 226 int64_t speed, BlockdevOnError on_error, Error **errp)
4f1043b4
SH
227{
228 StreamBlockJob *s;
61b49e48
AG
229 BlockDriverState *iter;
230 int orig_bs_flags;
4f1043b4 231
2323322e 232 s = block_job_create(job_id, &stream_job_driver, bs, speed,
8254b6d9 233 BLOCK_JOB_DEFAULT, NULL, NULL, errp);
4f1043b4 234 if (!s) {
fd7f8c65 235 return;
4f1043b4
SH
236 }
237
61b49e48
AG
238 /* Make sure that the image is opened in read-write mode */
239 orig_bs_flags = bdrv_get_flags(bs);
240 if (!(orig_bs_flags & BDRV_O_RDWR)) {
241 if (bdrv_reopen(bs, orig_bs_flags | BDRV_O_RDWR, errp) != 0) {
242 block_job_unref(&s->common);
243 return;
244 }
245 }
246
247 /* Block all intermediate nodes between bs and base, because they
248 * will disappear from the chain after this operation */
249 for (iter = backing_bs(bs); iter && iter != base; iter = backing_bs(iter)) {
250 block_job_add_bdrv(&s->common, iter);
251 }
252
4f1043b4 253 s->base = base;
13d8cc51 254 s->backing_file_str = g_strdup(backing_file_str);
61b49e48 255 s->bs_flags = orig_bs_flags;
4f1043b4 256
1d809098 257 s->on_error = on_error;
a7815a76 258 s->common.co = qemu_coroutine_create(s->common.driver->start, s);
8254b6d9 259 trace_stream_start(bs, base, s, s->common.co);
0b8b8753 260 qemu_coroutine_enter(s->common.co);
4f1043b4 261}