xref: /openbmc/qemu/block/stream.c (revision 8e6fe6b8)
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 
14 #include "qemu/osdep.h"
15 #include "trace.h"
16 #include "block/block_int.h"
17 #include "block/blockjob_int.h"
18 #include "qapi/error.h"
19 #include "qapi/qmp/qerror.h"
20 #include "qemu/ratelimit.h"
21 #include "sysemu/block-backend.h"
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 
32 typedef struct StreamBlockJob {
33     BlockJob common;
34     BlockDriverState *base;
35     BlockdevOnError on_error;
36     char *backing_file_str;
37     bool bs_read_only;
38     bool chain_frozen;
39 } StreamBlockJob;
40 
41 static int coroutine_fn stream_populate(BlockBackend *blk,
42                                         int64_t offset, uint64_t bytes,
43                                         void *buf)
44 {
45     assert(bytes < SIZE_MAX);
46 
47     /* Copy-on-read the unallocated clusters */
48     return blk_co_pread(blk, offset, bytes, buf, BDRV_REQ_COPY_ON_READ);
49 }
50 
51 static 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;
57         bdrv_unfreeze_backing_chain(blk_bs(bjob->blk), s->base);
58     }
59 }
60 
61 static int stream_prepare(Job *job)
62 {
63     StreamBlockJob *s = container_of(job, StreamBlockJob, common.job);
64     BlockJob *bjob = &s->common;
65     BlockDriverState *bs = blk_bs(bjob->blk);
66     BlockDriverState *base = s->base;
67     Error *local_err = NULL;
68     int ret = 0;
69 
70     bdrv_unfreeze_backing_chain(bs, base);
71     s->chain_frozen = false;
72 
73     if (bs->backing) {
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         }
81         ret = bdrv_change_backing_file(bs, base_id, base_fmt);
82         bdrv_set_backing_hd(bs, base, &local_err);
83         if (local_err) {
84             error_report_err(local_err);
85             return -EPERM;
86         }
87     }
88 
89     return ret;
90 }
91 
92 static 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 
98     /* Reopen the image back in read-only mode if necessary */
99     if (s->bs_read_only) {
100         /* Give up write permissions before making it read-only */
101         blk_set_perm(bjob->blk, 0, BLK_PERM_ALL, &error_abort);
102         bdrv_reopen_set_read_only(bs, true, NULL);
103     }
104 
105     g_free(s->backing_file_str);
106 }
107 
108 static int coroutine_fn stream_run(Job *job, Error **errp)
109 {
110     StreamBlockJob *s = container_of(job, StreamBlockJob, common.job);
111     BlockBackend *blk = s->common.blk;
112     BlockDriverState *bs = blk_bs(blk);
113     BlockDriverState *base = s->base;
114     int64_t len;
115     int64_t offset = 0;
116     uint64_t delay_ns = 0;
117     int error = 0;
118     int ret = 0;
119     int64_t n = 0; /* bytes */
120     void *buf;
121 
122     if (!bs->backing) {
123         goto out;
124     }
125 
126     len = bdrv_getlength(bs);
127     if (len < 0) {
128         ret = len;
129         goto out;
130     }
131     job_progress_set_remaining(&s->common.job, len);
132 
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      */
140     if (!base) {
141         bdrv_enable_copy_on_read(bs);
142     }
143 
144     for ( ; offset < len; offset += n) {
145         bool copy;
146 
147         /* Note that even when no rate limit is applied we need to yield
148          * with no pending I/O here so that bdrv_drain_all() returns.
149          */
150         job_sleep_ns(&s->common.job, delay_ns);
151         if (job_is_cancelled(&s->common.job)) {
152             break;
153         }
154 
155         copy = false;
156 
157         ret = bdrv_is_allocated(bs, offset, STREAM_BUFFER_SIZE, &n);
158         if (ret == 1) {
159             /* Allocated in the top, no need to copy.  */
160         } else if (ret >= 0) {
161             /* Copy if allocated in the intermediate images.  Limit to the
162              * known-unallocated area [offset, offset+n*BDRV_SECTOR_SIZE).  */
163             ret = bdrv_is_allocated_above(backing_bs(bs), base,
164                                           offset, n, &n);
165 
166             /* Finish early if end of backing file has been reached */
167             if (ret == 0 && n == 0) {
168                 n = len - offset;
169             }
170 
171             copy = (ret == 1);
172         }
173         trace_stream_one_iteration(s, offset, n, ret);
174         if (copy) {
175             ret = stream_populate(blk, offset, n, buf);
176         }
177         if (ret < 0) {
178             BlockErrorAction action =
179                 block_job_error_action(&s->common, s->on_error, true, -ret);
180             if (action == BLOCK_ERROR_ACTION_STOP) {
181                 n = 0;
182                 continue;
183             }
184             if (error == 0) {
185                 error = ret;
186             }
187             if (action == BLOCK_ERROR_ACTION_REPORT) {
188                 break;
189             }
190         }
191         ret = 0;
192 
193         /* Publish progress */
194         job_progress_update(&s->common.job, n);
195         if (copy) {
196             delay_ns = block_job_ratelimit_get_delay(&s->common, n);
197         } else {
198             delay_ns = 0;
199         }
200     }
201 
202     if (!base) {
203         bdrv_disable_copy_on_read(bs);
204     }
205 
206     /* Do not remove the backing file if an error was there but ignored.  */
207     ret = error;
208 
209     qemu_vfree(buf);
210 
211 out:
212     /* Modify backing chain and close BDSes in main loop */
213     return ret;
214 }
215 
216 static const BlockJobDriver stream_job_driver = {
217     .job_driver = {
218         .instance_size = sizeof(StreamBlockJob),
219         .job_type      = JOB_TYPE_STREAM,
220         .free          = block_job_free,
221         .run           = stream_run,
222         .prepare       = stream_prepare,
223         .abort         = stream_abort,
224         .clean         = stream_clean,
225         .user_resume   = block_job_user_resume,
226         .drain         = block_job_drain,
227     },
228 };
229 
230 void stream_start(const char *job_id, BlockDriverState *bs,
231                   BlockDriverState *base, const char *backing_file_str,
232                   int creation_flags, int64_t speed,
233                   BlockdevOnError on_error, Error **errp)
234 {
235     StreamBlockJob *s;
236     BlockDriverState *iter;
237     bool bs_read_only;
238 
239     if (bdrv_freeze_backing_chain(bs, base, errp) < 0) {
240         return;
241     }
242 
243     /* Make sure that the image is opened in read-write mode */
244     bs_read_only = bdrv_is_read_only(bs);
245     if (bs_read_only) {
246         if (bdrv_reopen_set_read_only(bs, false, errp) != 0) {
247             bs_read_only = false;
248             goto fail;
249         }
250     }
251 
252     /* Prevent concurrent jobs trying to modify the graph structure here, we
253      * already have our own plans. Also don't allow resize as the image size is
254      * queried only at the job start and then cached. */
255     s = block_job_create(job_id, &stream_job_driver, NULL, bs,
256                          BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED |
257                          BLK_PERM_GRAPH_MOD,
258                          BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED |
259                          BLK_PERM_WRITE,
260                          speed, creation_flags, NULL, NULL, errp);
261     if (!s) {
262         goto fail;
263     }
264 
265     /* Block all intermediate nodes between bs and base, because they will
266      * disappear from the chain after this operation. The streaming job reads
267      * every block only once, assuming that it doesn't change, so block writes
268      * and resizes. */
269     for (iter = backing_bs(bs); iter && iter != base; iter = backing_bs(iter)) {
270         block_job_add_bdrv(&s->common, "intermediate node", iter, 0,
271                            BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED,
272                            &error_abort);
273     }
274 
275     s->base = base;
276     s->backing_file_str = g_strdup(backing_file_str);
277     s->bs_read_only = bs_read_only;
278     s->chain_frozen = true;
279 
280     s->on_error = on_error;
281     trace_stream_start(bs, base, s);
282     job_start(&s->common.job);
283     return;
284 
285 fail:
286     if (bs_read_only) {
287         bdrv_reopen_set_read_only(bs, true, NULL);
288     }
289     bdrv_unfreeze_backing_chain(bs, base);
290 }
291