]> git.proxmox.com Git - mirror_qemu.git/blame - block/commit.c
vfio: express vfio dependencies with Kconfig
[mirror_qemu.git] / block / commit.c
CommitLineData
747ff602
JC
1/*
2 * Live block commit
3 *
4 * Copyright Red Hat, Inc. 2012
5 *
6 * Authors:
7 * Jeff Cody <jcody@redhat.com>
8 * Based on stream.c by Stefan Hajnoczi
9 *
10 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
11 * See the COPYING.LIB file in the top-level directory.
12 *
13 */
14
80c71a24 15#include "qemu/osdep.h"
dcbf37ce 16#include "qemu/cutils.h"
747ff602 17#include "trace.h"
737e150e 18#include "block/block_int.h"
c87621ea 19#include "block/blockjob_int.h"
da34e65c 20#include "qapi/error.h"
cc7a8ea7 21#include "qapi/qmp/qerror.h"
747ff602 22#include "qemu/ratelimit.h"
373340b2 23#include "sysemu/block-backend.h"
747ff602
JC
24
25enum {
26 /*
27 * Size of data buffer for populating the image file. This should be large
28 * enough to process multiple clusters in a single call, so that populating
29 * contiguous regions of the image is efficient.
30 */
31 COMMIT_BUFFER_SIZE = 512 * 1024, /* in bytes */
32};
33
747ff602
JC
34typedef struct CommitBlockJob {
35 BlockJob common;
8dfba279 36 BlockDriverState *commit_top_bs;
4653456a
KW
37 BlockBackend *top;
38 BlockBackend *base;
22dffcbe 39 BlockDriverState *base_bs;
92aa5c6d 40 BlockdevOnError on_error;
e70cdc57 41 bool base_read_only;
54e26900 42 char *backing_file_str;
747ff602
JC
43} CommitBlockJob;
44
4653456a 45static int coroutine_fn commit_populate(BlockBackend *bs, BlockBackend *base,
d8a98584 46 int64_t offset, uint64_t bytes,
747ff602
JC
47 void *buf)
48{
49 int ret = 0;
ee7a883a 50 QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, buf, bytes);
747ff602 51
d8a98584 52 assert(bytes < SIZE_MAX);
4653456a 53
d8a98584 54 ret = blk_co_preadv(bs, offset, qiov.size, &qiov, 0);
4653456a 55 if (ret < 0) {
747ff602
JC
56 return ret;
57 }
58
d8a98584 59 ret = blk_co_pwritev(base, offset, qiov.size, &qiov, 0);
4653456a 60 if (ret < 0) {
747ff602
JC
61 return ret;
62 }
63
64 return 0;
65}
66
22dffcbe 67static int commit_prepare(Job *job)
747ff602 68{
1908a559 69 CommitBlockJob *s = container_of(job, CommitBlockJob, common.job);
19ebd13e 70
8dfba279
KW
71 /* Remove base node parent that still uses BLK_PERM_WRITE/RESIZE before
72 * the normal backing chain can be restored. */
73 blk_unref(s->base);
22dffcbe
JS
74 s->base = NULL;
75
76 /* FIXME: bdrv_drop_intermediate treats total failures and partial failures
77 * identically. Further work is needed to disambiguate these cases. */
78 return bdrv_drop_intermediate(s->commit_top_bs, s->base_bs,
79 s->backing_file_str);
80}
9e85cd5c 81
22dffcbe
JS
82static void commit_abort(Job *job)
83{
84 CommitBlockJob *s = container_of(job, CommitBlockJob, common.job);
85 BlockDriverState *top_bs = blk_bs(s->top);
86
87 /* Make sure commit_top_bs and top stay around until bdrv_replace_node() */
88 bdrv_ref(top_bs);
89 bdrv_ref(s->commit_top_bs);
90
91 if (s->base) {
92 blk_unref(s->base);
9e85cd5c
SH
93 }
94
22dffcbe
JS
95 /* free the blockers on the intermediate nodes so that bdrv_replace_nodes
96 * can succeed */
97 block_job_remove_all_bdrv(&s->common);
98
99 /* If bdrv_drop_intermediate() failed (or was not invoked), remove the
100 * commit filter driver from the backing chain now. Do this as the final
101 * step so that the 'consistent read' permission can be granted.
102 *
103 * XXX Can (or should) we somehow keep 'consistent read' blocked even
104 * after the failed/cancelled commit job is gone? If we already wrote
105 * something to base, the intermediate images aren't valid any more. */
106 bdrv_child_try_set_perm(s->commit_top_bs->backing, 0, BLK_PERM_ALL,
107 &error_abort);
108 bdrv_replace_node(s->commit_top_bs, backing_bs(s->commit_top_bs),
109 &error_abort);
110
111 bdrv_unref(s->commit_top_bs);
112 bdrv_unref(top_bs);
113}
114
115static void commit_clean(Job *job)
116{
117 CommitBlockJob *s = container_of(job, CommitBlockJob, common.job);
118
9e85cd5c
SH
119 /* restore base open flags here if appropriate (e.g., change the base back
120 * to r/o). These reopens do not need to be atomic, since we won't abort
121 * even on failure here */
e70cdc57
AG
122 if (s->base_read_only) {
123 bdrv_reopen_set_read_only(s->base_bs, true, NULL);
9e85cd5c 124 }
22dffcbe 125
9e85cd5c 126 g_free(s->backing_file_str);
4653456a 127 blk_unref(s->top);
9e85cd5c
SH
128}
129
f67432a2 130static int coroutine_fn commit_run(Job *job, Error **errp)
9e85cd5c 131{
f67432a2 132 CommitBlockJob *s = container_of(job, CommitBlockJob, common.job);
317a6676 133 int64_t offset;
f14a39cc 134 uint64_t delay_ns = 0;
747ff602 135 int ret = 0;
51b0a488 136 int64_t n = 0; /* bytes */
9e85cd5c 137 void *buf = NULL;
747ff602 138 int bytes_written = 0;
05df8a6a 139 int64_t len, base_len;
747ff602 140
05df8a6a
KW
141 ret = len = blk_getlength(s->top);
142 if (len < 0) {
9e85cd5c 143 goto out;
747ff602 144 }
30a5c887 145 job_progress_set_remaining(&s->common.job, len);
747ff602 146
4653456a 147 ret = base_len = blk_getlength(s->base);
747ff602 148 if (base_len < 0) {
9e85cd5c 149 goto out;
747ff602
JC
150 }
151
05df8a6a
KW
152 if (base_len < len) {
153 ret = blk_truncate(s->base, len, PREALLOC_MODE_OFF, NULL);
747ff602 154 if (ret) {
9e85cd5c 155 goto out;
747ff602
JC
156 }
157 }
158
4653456a 159 buf = blk_blockalign(s->top, COMMIT_BUFFER_SIZE);
747ff602 160
05df8a6a 161 for (offset = 0; offset < len; offset += n) {
747ff602
JC
162 bool copy;
163
747ff602 164 /* Note that even when no rate limit is applied we need to yield
c57b6656 165 * with no pending I/O here so that bdrv_drain_all() returns.
747ff602 166 */
5d43e86e 167 job_sleep_ns(&s->common.job, delay_ns);
daa7f2f9 168 if (job_is_cancelled(&s->common.job)) {
747ff602
JC
169 break;
170 }
171 /* Copy if allocated above the base */
4653456a 172 ret = bdrv_is_allocated_above(blk_bs(s->top), blk_bs(s->base),
51b0a488 173 offset, COMMIT_BUFFER_SIZE, &n);
747ff602 174 copy = (ret == 1);
51b0a488 175 trace_commit_one_iteration(s, offset, n, ret);
747ff602 176 if (copy) {
51b0a488
EB
177 ret = commit_populate(s->top, s->base, offset, n, buf);
178 bytes_written += n;
747ff602
JC
179 }
180 if (ret < 0) {
1e8fb7f1
KW
181 BlockErrorAction action =
182 block_job_error_action(&s->common, false, s->on_error, -ret);
183 if (action == BLOCK_ERROR_ACTION_REPORT) {
9e85cd5c 184 goto out;
747ff602
JC
185 } else {
186 n = 0;
187 continue;
188 }
189 }
190 /* Publish progress */
30a5c887 191 job_progress_update(&s->common.job, n);
f14a39cc 192
dee81d51
KW
193 if (copy) {
194 delay_ns = block_job_ratelimit_get_delay(&s->common, n);
2fe4bba1
KW
195 } else {
196 delay_ns = 0;
f14a39cc 197 }
747ff602
JC
198 }
199
200 ret = 0;
201
9e85cd5c 202out:
747ff602
JC
203 qemu_vfree(buf);
204
f67432a2 205 return ret;
747ff602
JC
206}
207
3fc4b10a 208static const BlockJobDriver commit_job_driver = {
33e9e9bd
KW
209 .job_driver = {
210 .instance_size = sizeof(CommitBlockJob),
252291ea 211 .job_type = JOB_TYPE_COMMIT,
80fa2c75 212 .free = block_job_free,
b15de828 213 .user_resume = block_job_user_resume,
b69f777d 214 .drain = block_job_drain,
f67432a2 215 .run = commit_run,
22dffcbe
JS
216 .prepare = commit_prepare,
217 .abort = commit_abort,
218 .clean = commit_clean
33e9e9bd 219 },
747ff602
JC
220};
221
8dfba279
KW
222static int coroutine_fn bdrv_commit_top_preadv(BlockDriverState *bs,
223 uint64_t offset, uint64_t bytes, QEMUIOVector *qiov, int flags)
224{
225 return bdrv_co_preadv(bs->backing, offset, bytes, qiov, flags);
226}
227
998b3a1e 228static void bdrv_commit_top_refresh_filename(BlockDriverState *bs)
dcbf37ce 229{
dcbf37ce
KW
230 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
231 bs->backing->bs->filename);
232}
91965658 233
8dfba279
KW
234static void bdrv_commit_top_child_perm(BlockDriverState *bs, BdrvChild *c,
235 const BdrvChildRole *role,
e0995dc3 236 BlockReopenQueue *reopen_queue,
8dfba279
KW
237 uint64_t perm, uint64_t shared,
238 uint64_t *nperm, uint64_t *nshared)
239{
240 *nperm = 0;
241 *nshared = BLK_PERM_ALL;
242}
243
244/* Dummy node that provides consistent read to its users without requiring it
245 * from its backing file and that allows writes on the backing file chain. */
246static BlockDriver bdrv_commit_top = {
91965658
KW
247 .format_name = "commit_top",
248 .bdrv_co_preadv = bdrv_commit_top_preadv,
3e4d0e72 249 .bdrv_co_block_status = bdrv_co_block_status_from_backing,
dcbf37ce 250 .bdrv_refresh_filename = bdrv_commit_top_refresh_filename,
91965658 251 .bdrv_child_perm = bdrv_commit_top_child_perm,
8dfba279
KW
252};
253
fd62c609 254void commit_start(const char *job_id, BlockDriverState *bs,
5360782d
JS
255 BlockDriverState *base, BlockDriverState *top,
256 int creation_flags, int64_t speed,
8254b6d9 257 BlockdevOnError on_error, const char *backing_file_str,
0db832f4 258 const char *filter_node_name, Error **errp)
747ff602
JC
259{
260 CommitBlockJob *s;
3e4c5122 261 BlockDriverState *iter;
8dfba279 262 BlockDriverState *commit_top_bs = NULL;
747ff602 263 Error *local_err = NULL;
d7086422 264 int ret;
747ff602 265
18da7f94 266 assert(top != bs);
747ff602
JC
267 if (top == base) {
268 error_setg(errp, "Invalid files for merge: top and base are the same");
269 return;
270 }
271
75859b94 272 s = block_job_create(job_id, &commit_job_driver, NULL, bs, 0, BLK_PERM_ALL,
5360782d 273 speed, creation_flags, NULL, NULL, errp);
834fe28d
AG
274 if (!s) {
275 return;
276 }
277
bde70715 278 /* convert base to r/w, if necessary */
e70cdc57
AG
279 s->base_read_only = bdrv_is_read_only(base);
280 if (s->base_read_only) {
281 if (bdrv_reopen_set_read_only(base, false, errp) != 0) {
d7086422 282 goto fail;
747ff602
JC
283 }
284 }
285
8dfba279
KW
286 /* Insert commit_top block node above top, so we can block consistent read
287 * on the backing chain below it */
0db832f4
KW
288 commit_top_bs = bdrv_new_open_driver(&bdrv_commit_top, filter_node_name, 0,
289 errp);
8dfba279
KW
290 if (commit_top_bs == NULL) {
291 goto fail;
292 }
d3c8c674
KW
293 if (!filter_node_name) {
294 commit_top_bs->implicit = true;
295 }
0d0676a1 296 commit_top_bs->total_sectors = top->total_sectors;
02be4aeb 297 bdrv_set_aio_context(commit_top_bs, bdrv_get_aio_context(top));
8dfba279 298
b69f00dd
FZ
299 bdrv_set_backing_hd(commit_top_bs, top, &local_err);
300 if (local_err) {
301 bdrv_unref(commit_top_bs);
302 commit_top_bs = NULL;
303 error_propagate(errp, local_err);
304 goto fail;
305 }
61f09cea 306 bdrv_replace_node(top, commit_top_bs, &local_err);
b69f00dd
FZ
307 if (local_err) {
308 bdrv_unref(commit_top_bs);
309 commit_top_bs = NULL;
310 error_propagate(errp, local_err);
311 goto fail;
312 }
8dfba279
KW
313
314 s->commit_top_bs = commit_top_bs;
315 bdrv_unref(commit_top_bs);
747ff602 316
3e4c5122
AG
317 /* Block all nodes between top and base, because they will
318 * disappear from the chain after this operation. */
319 assert(bdrv_chain_contains(top, base));
8dfba279
KW
320 for (iter = top; iter != base; iter = backing_bs(iter)) {
321 /* XXX BLK_PERM_WRITE needs to be allowed so we don't block ourselves
322 * at s->base (if writes are blocked for a node, they are also blocked
323 * for its backing file). The other options would be a second filter
324 * driver above s->base. */
325 ret = block_job_add_bdrv(&s->common, "intermediate node", iter, 0,
326 BLK_PERM_WRITE_UNCHANGED | BLK_PERM_WRITE,
327 errp);
328 if (ret < 0) {
329 goto fail;
330 }
3e4c5122 331 }
8dfba279
KW
332
333 ret = block_job_add_bdrv(&s->common, "base", base, 0, BLK_PERM_ALL, errp);
334 if (ret < 0) {
335 goto fail;
336 }
337
8dfba279
KW
338 s->base = blk_new(BLK_PERM_CONSISTENT_READ
339 | BLK_PERM_WRITE
340 | BLK_PERM_RESIZE,
341 BLK_PERM_CONSISTENT_READ
342 | BLK_PERM_GRAPH_MOD
343 | BLK_PERM_WRITE_UNCHANGED);
d7086422
KW
344 ret = blk_insert_bs(s->base, base, errp);
345 if (ret < 0) {
346 goto fail;
347 }
22dffcbe 348 s->base_bs = base;
4653456a 349
8dfba279 350 /* Required permissions are already taken with block_job_add_bdrv() */
6d0eb64d 351 s->top = blk_new(0, BLK_PERM_ALL);
b247767a 352 ret = blk_insert_bs(s->top, top, errp);
d7086422
KW
353 if (ret < 0) {
354 goto fail;
355 }
4653456a 356
54e26900 357 s->backing_file_str = g_strdup(backing_file_str);
747ff602 358 s->on_error = on_error;
747ff602 359
5ccac6f1 360 trace_commit_start(bs, base, top, s);
da01ff7f 361 job_start(&s->common.job);
d7086422
KW
362 return;
363
364fail:
365 if (s->base) {
366 blk_unref(s->base);
367 }
368 if (s->top) {
369 blk_unref(s->top);
370 }
2468eed3
AG
371 job_early_fail(&s->common.job);
372 /* commit_top_bs has to be replaced after deleting the block job,
373 * otherwise this would fail because of lack of permissions. */
8dfba279 374 if (commit_top_bs) {
bde70715 375 bdrv_replace_node(commit_top_bs, top, &error_abort);
8dfba279 376 }
747ff602 377}
83fd6dd3
KW
378
379
d6a644bb 380#define COMMIT_BUF_SIZE (2048 * BDRV_SECTOR_SIZE)
83fd6dd3
KW
381
382/* commit COW file into the raw image */
383int bdrv_commit(BlockDriverState *bs)
384{
f8e2bd53 385 BlockBackend *src, *backing;
d3f06759
KW
386 BlockDriverState *backing_file_bs = NULL;
387 BlockDriverState *commit_top_bs = NULL;
83fd6dd3 388 BlockDriver *drv = bs->drv;
d6a644bb 389 int64_t offset, length, backing_length;
c742a364 390 int ro;
d6a644bb 391 int64_t n;
83fd6dd3
KW
392 int ret = 0;
393 uint8_t *buf = NULL;
d3f06759 394 Error *local_err = NULL;
83fd6dd3
KW
395
396 if (!drv)
397 return -ENOMEDIUM;
398
399 if (!bs->backing) {
400 return -ENOTSUP;
401 }
402
403 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, NULL) ||
404 bdrv_op_is_blocked(bs->backing->bs, BLOCK_OP_TYPE_COMMIT_TARGET, NULL)) {
405 return -EBUSY;
406 }
407
408 ro = bs->backing->bs->read_only;
83fd6dd3
KW
409
410 if (ro) {
c742a364 411 if (bdrv_reopen_set_read_only(bs->backing->bs, false, NULL)) {
83fd6dd3
KW
412 return -EACCES;
413 }
414 }
415
d3f06759
KW
416 src = blk_new(BLK_PERM_CONSISTENT_READ, BLK_PERM_ALL);
417 backing = blk_new(BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL);
d7086422 418
d3f06759 419 ret = blk_insert_bs(src, bs, &local_err);
d7086422 420 if (ret < 0) {
d3f06759
KW
421 error_report_err(local_err);
422 goto ro_cleanup;
423 }
424
425 /* Insert commit_top block node above backing, so we can write to it */
426 backing_file_bs = backing_bs(bs);
427
428 commit_top_bs = bdrv_new_open_driver(&bdrv_commit_top, NULL, BDRV_O_RDWR,
429 &local_err);
430 if (commit_top_bs == NULL) {
431 error_report_err(local_err);
d7086422
KW
432 goto ro_cleanup;
433 }
02be4aeb 434 bdrv_set_aio_context(commit_top_bs, bdrv_get_aio_context(backing_file_bs));
d7086422 435
12fa4af6
KW
436 bdrv_set_backing_hd(commit_top_bs, backing_file_bs, &error_abort);
437 bdrv_set_backing_hd(bs, commit_top_bs, &error_abort);
d3f06759
KW
438
439 ret = blk_insert_bs(backing, backing_file_bs, &local_err);
d7086422 440 if (ret < 0) {
d3f06759 441 error_report_err(local_err);
d7086422
KW
442 goto ro_cleanup;
443 }
f8e2bd53
KW
444
445 length = blk_getlength(src);
83fd6dd3
KW
446 if (length < 0) {
447 ret = length;
448 goto ro_cleanup;
449 }
450
f8e2bd53 451 backing_length = blk_getlength(backing);
83fd6dd3
KW
452 if (backing_length < 0) {
453 ret = backing_length;
454 goto ro_cleanup;
455 }
456
457 /* If our top snapshot is larger than the backing file image,
458 * grow the backing file image if possible. If not possible,
459 * we must return an error */
460 if (length > backing_length) {
3a691c50 461 ret = blk_truncate(backing, length, PREALLOC_MODE_OFF, &local_err);
83fd6dd3 462 if (ret < 0) {
ed3d2ec9 463 error_report_err(local_err);
83fd6dd3
KW
464 goto ro_cleanup;
465 }
466 }
467
f8e2bd53
KW
468 /* blk_try_blockalign() for src will choose an alignment that works for
469 * backing as well, so no need to compare the alignment manually. */
d6a644bb 470 buf = blk_try_blockalign(src, COMMIT_BUF_SIZE);
83fd6dd3
KW
471 if (buf == NULL) {
472 ret = -ENOMEM;
473 goto ro_cleanup;
474 }
475
d6a644bb
EB
476 for (offset = 0; offset < length; offset += n) {
477 ret = bdrv_is_allocated(bs, offset, COMMIT_BUF_SIZE, &n);
83fd6dd3
KW
478 if (ret < 0) {
479 goto ro_cleanup;
480 }
481 if (ret) {
d6a644bb 482 ret = blk_pread(src, offset, buf, n);
83fd6dd3
KW
483 if (ret < 0) {
484 goto ro_cleanup;
485 }
486
d6a644bb 487 ret = blk_pwrite(backing, offset, buf, n, 0);
83fd6dd3
KW
488 if (ret < 0) {
489 goto ro_cleanup;
490 }
491 }
492 }
493
494 if (drv->bdrv_make_empty) {
495 ret = drv->bdrv_make_empty(bs);
496 if (ret < 0) {
497 goto ro_cleanup;
498 }
f8e2bd53 499 blk_flush(src);
83fd6dd3
KW
500 }
501
502 /*
503 * Make sure all data we wrote to the backing device is actually
504 * stable on disk.
505 */
f8e2bd53 506 blk_flush(backing);
83fd6dd3
KW
507
508 ret = 0;
509ro_cleanup:
510 qemu_vfree(buf);
511
f8e2bd53 512 blk_unref(backing);
d3f06759 513 if (backing_file_bs) {
12fa4af6 514 bdrv_set_backing_hd(bs, backing_file_bs, &error_abort);
d3f06759
KW
515 }
516 bdrv_unref(commit_top_bs);
517 blk_unref(src);
f8e2bd53 518
83fd6dd3
KW
519 if (ro) {
520 /* ignoring error return here */
c742a364 521 bdrv_reopen_set_read_only(bs->backing->bs, true, NULL);
83fd6dd3
KW
522 }
523
524 return ret;
525}