]> git.proxmox.com Git - mirror_qemu.git/blob - block/commit.c
d92af02ead6bba1f2b46244049ffdfa0e950422a
[mirror_qemu.git] / block / commit.c
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
15 #include "qemu/osdep.h"
16 #include "qemu/cutils.h"
17 #include "trace.h"
18 #include "block/block_int.h"
19 #include "block/blockjob_int.h"
20 #include "qapi/error.h"
21 #include "qemu/ratelimit.h"
22 #include "qemu/memalign.h"
23 #include "sysemu/block-backend.h"
24
25 enum {
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
34 typedef struct CommitBlockJob {
35 BlockJob common;
36 BlockDriverState *commit_top_bs;
37 BlockBackend *top;
38 BlockBackend *base;
39 BlockDriverState *base_bs;
40 BlockDriverState *base_overlay;
41 BlockdevOnError on_error;
42 bool base_read_only;
43 bool chain_frozen;
44 char *backing_file_str;
45 } CommitBlockJob;
46
47 static int commit_prepare(Job *job)
48 {
49 CommitBlockJob *s = container_of(job, CommitBlockJob, common.job);
50
51 bdrv_graph_rdlock_main_loop();
52 bdrv_unfreeze_backing_chain(s->commit_top_bs, s->base_bs);
53 s->chain_frozen = false;
54 bdrv_graph_rdunlock_main_loop();
55
56 /* Remove base node parent that still uses BLK_PERM_WRITE/RESIZE before
57 * the normal backing chain can be restored. */
58 blk_unref(s->base);
59 s->base = NULL;
60
61 /* FIXME: bdrv_drop_intermediate treats total failures and partial failures
62 * identically. Further work is needed to disambiguate these cases. */
63 return bdrv_drop_intermediate(s->commit_top_bs, s->base_bs,
64 s->backing_file_str);
65 }
66
67 static void commit_abort(Job *job)
68 {
69 CommitBlockJob *s = container_of(job, CommitBlockJob, common.job);
70 BlockDriverState *top_bs = blk_bs(s->top);
71
72 if (s->chain_frozen) {
73 bdrv_graph_rdlock_main_loop();
74 bdrv_unfreeze_backing_chain(s->commit_top_bs, s->base_bs);
75 bdrv_graph_rdunlock_main_loop();
76 }
77
78 /* Make sure commit_top_bs and top stay around until bdrv_replace_node() */
79 bdrv_ref(top_bs);
80 bdrv_ref(s->commit_top_bs);
81
82 if (s->base) {
83 blk_unref(s->base);
84 }
85
86 /* free the blockers on the intermediate nodes so that bdrv_replace_nodes
87 * can succeed */
88 block_job_remove_all_bdrv(&s->common);
89
90 /* If bdrv_drop_intermediate() failed (or was not invoked), remove the
91 * commit filter driver from the backing chain now. Do this as the final
92 * step so that the 'consistent read' permission can be granted.
93 *
94 * XXX Can (or should) we somehow keep 'consistent read' blocked even
95 * after the failed/cancelled commit job is gone? If we already wrote
96 * something to base, the intermediate images aren't valid any more. */
97 bdrv_replace_node(s->commit_top_bs, s->commit_top_bs->backing->bs,
98 &error_abort);
99
100 bdrv_unref(s->commit_top_bs);
101 bdrv_unref(top_bs);
102 }
103
104 static void commit_clean(Job *job)
105 {
106 CommitBlockJob *s = container_of(job, CommitBlockJob, common.job);
107
108 /* restore base open flags here if appropriate (e.g., change the base back
109 * to r/o). These reopens do not need to be atomic, since we won't abort
110 * even on failure here */
111 if (s->base_read_only) {
112 bdrv_reopen_set_read_only(s->base_bs, true, NULL);
113 }
114
115 g_free(s->backing_file_str);
116 blk_unref(s->top);
117 }
118
119 static int coroutine_fn commit_run(Job *job, Error **errp)
120 {
121 CommitBlockJob *s = container_of(job, CommitBlockJob, common.job);
122 int64_t offset;
123 int ret = 0;
124 int64_t n = 0; /* bytes */
125 QEMU_AUTO_VFREE void *buf = NULL;
126 int64_t len, base_len;
127
128 len = blk_co_getlength(s->top);
129 if (len < 0) {
130 return len;
131 }
132 job_progress_set_remaining(&s->common.job, len);
133
134 base_len = blk_co_getlength(s->base);
135 if (base_len < 0) {
136 return base_len;
137 }
138
139 if (base_len < len) {
140 ret = blk_co_truncate(s->base, len, false, PREALLOC_MODE_OFF, 0, NULL);
141 if (ret) {
142 return ret;
143 }
144 }
145
146 buf = blk_blockalign(s->top, COMMIT_BUFFER_SIZE);
147
148 for (offset = 0; offset < len; offset += n) {
149 bool copy;
150 bool error_in_source = true;
151
152 /* Note that even when no rate limit is applied we need to yield
153 * with no pending I/O here so that bdrv_drain_all() returns.
154 */
155 block_job_ratelimit_sleep(&s->common);
156 if (job_is_cancelled(&s->common.job)) {
157 break;
158 }
159 /* Copy if allocated above the base */
160 ret = blk_co_is_allocated_above(s->top, s->base_overlay, true,
161 offset, COMMIT_BUFFER_SIZE, &n);
162 copy = (ret > 0);
163 trace_commit_one_iteration(s, offset, n, ret);
164 if (copy) {
165 assert(n < SIZE_MAX);
166
167 ret = blk_co_pread(s->top, offset, n, buf, 0);
168 if (ret >= 0) {
169 ret = blk_co_pwrite(s->base, offset, n, buf, 0);
170 if (ret < 0) {
171 error_in_source = false;
172 }
173 }
174 }
175 if (ret < 0) {
176 BlockErrorAction action =
177 block_job_error_action(&s->common, s->on_error,
178 error_in_source, -ret);
179 if (action == BLOCK_ERROR_ACTION_REPORT) {
180 return ret;
181 } else {
182 n = 0;
183 continue;
184 }
185 }
186 /* Publish progress */
187 job_progress_update(&s->common.job, n);
188
189 if (copy) {
190 block_job_ratelimit_processed_bytes(&s->common, n);
191 }
192 }
193
194 return 0;
195 }
196
197 static const BlockJobDriver commit_job_driver = {
198 .job_driver = {
199 .instance_size = sizeof(CommitBlockJob),
200 .job_type = JOB_TYPE_COMMIT,
201 .free = block_job_free,
202 .user_resume = block_job_user_resume,
203 .run = commit_run,
204 .prepare = commit_prepare,
205 .abort = commit_abort,
206 .clean = commit_clean
207 },
208 };
209
210 static int coroutine_fn GRAPH_RDLOCK
211 bdrv_commit_top_preadv(BlockDriverState *bs, int64_t offset, int64_t bytes,
212 QEMUIOVector *qiov, BdrvRequestFlags flags)
213 {
214 return bdrv_co_preadv(bs->backing, offset, bytes, qiov, flags);
215 }
216
217 static void bdrv_commit_top_refresh_filename(BlockDriverState *bs)
218 {
219 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
220 bs->backing->bs->filename);
221 }
222
223 static void bdrv_commit_top_child_perm(BlockDriverState *bs, BdrvChild *c,
224 BdrvChildRole role,
225 BlockReopenQueue *reopen_queue,
226 uint64_t perm, uint64_t shared,
227 uint64_t *nperm, uint64_t *nshared)
228 {
229 *nperm = 0;
230 *nshared = BLK_PERM_ALL;
231 }
232
233 /* Dummy node that provides consistent read to its users without requiring it
234 * from its backing file and that allows writes on the backing file chain. */
235 static BlockDriver bdrv_commit_top = {
236 .format_name = "commit_top",
237 .bdrv_co_preadv = bdrv_commit_top_preadv,
238 .bdrv_refresh_filename = bdrv_commit_top_refresh_filename,
239 .bdrv_child_perm = bdrv_commit_top_child_perm,
240
241 .is_filter = true,
242 .filtered_child_is_backing = true,
243 };
244
245 void commit_start(const char *job_id, BlockDriverState *bs,
246 BlockDriverState *base, BlockDriverState *top,
247 int creation_flags, int64_t speed,
248 BlockdevOnError on_error, const char *backing_file_str,
249 const char *filter_node_name, Error **errp)
250 {
251 CommitBlockJob *s;
252 BlockDriverState *iter;
253 BlockDriverState *commit_top_bs = NULL;
254 BlockDriverState *filtered_base;
255 int64_t base_size, top_size;
256 uint64_t base_perms, iter_shared_perms;
257 int ret;
258
259 GLOBAL_STATE_CODE();
260
261 assert(top != bs);
262 bdrv_graph_rdlock_main_loop();
263 if (bdrv_skip_filters(top) == bdrv_skip_filters(base)) {
264 error_setg(errp, "Invalid files for merge: top and base are the same");
265 bdrv_graph_rdunlock_main_loop();
266 return;
267 }
268 bdrv_graph_rdunlock_main_loop();
269
270 base_size = bdrv_getlength(base);
271 if (base_size < 0) {
272 error_setg_errno(errp, -base_size, "Could not inquire base image size");
273 return;
274 }
275
276 top_size = bdrv_getlength(top);
277 if (top_size < 0) {
278 error_setg_errno(errp, -top_size, "Could not inquire top image size");
279 return;
280 }
281
282 base_perms = BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE;
283 if (base_size < top_size) {
284 base_perms |= BLK_PERM_RESIZE;
285 }
286
287 s = block_job_create(job_id, &commit_job_driver, NULL, bs, 0, BLK_PERM_ALL,
288 speed, creation_flags, NULL, NULL, errp);
289 if (!s) {
290 return;
291 }
292
293 /* convert base to r/w, if necessary */
294 s->base_read_only = bdrv_is_read_only(base);
295 if (s->base_read_only) {
296 if (bdrv_reopen_set_read_only(base, false, errp) != 0) {
297 goto fail;
298 }
299 }
300
301 /* Insert commit_top block node above top, so we can block consistent read
302 * on the backing chain below it */
303 commit_top_bs = bdrv_new_open_driver(&bdrv_commit_top, filter_node_name, 0,
304 errp);
305 if (commit_top_bs == NULL) {
306 goto fail;
307 }
308 if (!filter_node_name) {
309 commit_top_bs->implicit = true;
310 }
311
312 /* So that we can always drop this node */
313 commit_top_bs->never_freeze = true;
314
315 commit_top_bs->total_sectors = top->total_sectors;
316
317 ret = bdrv_append(commit_top_bs, top, errp);
318 bdrv_unref(commit_top_bs); /* referenced by new parents or failed */
319 if (ret < 0) {
320 commit_top_bs = NULL;
321 goto fail;
322 }
323
324 s->commit_top_bs = commit_top_bs;
325
326 /*
327 * Block all nodes between top and base, because they will
328 * disappear from the chain after this operation.
329 * Note that this assumes that the user is fine with removing all
330 * nodes (including R/W filters) between top and base. Assuring
331 * this is the responsibility of the interface (i.e. whoever calls
332 * commit_start()).
333 */
334 bdrv_graph_wrlock(top);
335 s->base_overlay = bdrv_find_overlay(top, base);
336 assert(s->base_overlay);
337
338 /*
339 * The topmost node with
340 * bdrv_skip_filters(filtered_base) == bdrv_skip_filters(base)
341 */
342 filtered_base = bdrv_cow_bs(s->base_overlay);
343 assert(bdrv_skip_filters(filtered_base) == bdrv_skip_filters(base));
344
345 /*
346 * XXX BLK_PERM_WRITE needs to be allowed so we don't block ourselves
347 * at s->base (if writes are blocked for a node, they are also blocked
348 * for its backing file). The other options would be a second filter
349 * driver above s->base.
350 */
351 iter_shared_perms = BLK_PERM_WRITE_UNCHANGED | BLK_PERM_WRITE;
352
353 for (iter = top; iter != base; iter = bdrv_filter_or_cow_bs(iter)) {
354 if (iter == filtered_base) {
355 /*
356 * From here on, all nodes are filters on the base. This
357 * allows us to share BLK_PERM_CONSISTENT_READ.
358 */
359 iter_shared_perms |= BLK_PERM_CONSISTENT_READ;
360 }
361
362 ret = block_job_add_bdrv(&s->common, "intermediate node", iter, 0,
363 iter_shared_perms, errp);
364 if (ret < 0) {
365 bdrv_graph_wrunlock();
366 goto fail;
367 }
368 }
369
370 if (bdrv_freeze_backing_chain(commit_top_bs, base, errp) < 0) {
371 bdrv_graph_wrunlock();
372 goto fail;
373 }
374 s->chain_frozen = true;
375
376 ret = block_job_add_bdrv(&s->common, "base", base, 0, BLK_PERM_ALL, errp);
377 bdrv_graph_wrunlock();
378
379 if (ret < 0) {
380 goto fail;
381 }
382
383 s->base = blk_new(s->common.job.aio_context,
384 base_perms,
385 BLK_PERM_CONSISTENT_READ
386 | BLK_PERM_WRITE_UNCHANGED);
387 ret = blk_insert_bs(s->base, base, errp);
388 if (ret < 0) {
389 goto fail;
390 }
391 blk_set_disable_request_queuing(s->base, true);
392 s->base_bs = base;
393
394 /* Required permissions are already taken with block_job_add_bdrv() */
395 s->top = blk_new(s->common.job.aio_context, 0, BLK_PERM_ALL);
396 ret = blk_insert_bs(s->top, top, errp);
397 if (ret < 0) {
398 goto fail;
399 }
400 blk_set_disable_request_queuing(s->top, true);
401
402 s->backing_file_str = g_strdup(backing_file_str);
403 s->on_error = on_error;
404
405 trace_commit_start(bs, base, top, s);
406 job_start(&s->common.job);
407 return;
408
409 fail:
410 if (s->chain_frozen) {
411 bdrv_graph_rdlock_main_loop();
412 bdrv_unfreeze_backing_chain(commit_top_bs, base);
413 bdrv_graph_rdunlock_main_loop();
414 }
415 if (s->base) {
416 blk_unref(s->base);
417 }
418 if (s->top) {
419 blk_unref(s->top);
420 }
421 if (s->base_read_only) {
422 bdrv_reopen_set_read_only(base, true, NULL);
423 }
424 job_early_fail(&s->common.job);
425 /* commit_top_bs has to be replaced after deleting the block job,
426 * otherwise this would fail because of lack of permissions. */
427 if (commit_top_bs) {
428 bdrv_replace_node(commit_top_bs, top, &error_abort);
429 }
430 }
431
432
433 #define COMMIT_BUF_SIZE (2048 * BDRV_SECTOR_SIZE)
434
435 /* commit COW file into the raw image */
436 int bdrv_commit(BlockDriverState *bs)
437 {
438 BlockBackend *src, *backing;
439 BlockDriverState *backing_file_bs = NULL;
440 BlockDriverState *commit_top_bs = NULL;
441 BlockDriver *drv = bs->drv;
442 AioContext *ctx;
443 int64_t offset, length, backing_length;
444 int ro;
445 int64_t n;
446 int ret = 0;
447 QEMU_AUTO_VFREE uint8_t *buf = NULL;
448 Error *local_err = NULL;
449
450 GLOBAL_STATE_CODE();
451 GRAPH_RDLOCK_GUARD_MAINLOOP();
452
453 if (!drv)
454 return -ENOMEDIUM;
455
456 backing_file_bs = bdrv_cow_bs(bs);
457
458 if (!backing_file_bs) {
459 return -ENOTSUP;
460 }
461
462 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, NULL) ||
463 bdrv_op_is_blocked(backing_file_bs, BLOCK_OP_TYPE_COMMIT_TARGET, NULL))
464 {
465 return -EBUSY;
466 }
467
468 ro = bdrv_is_read_only(backing_file_bs);
469
470 if (ro) {
471 if (bdrv_reopen_set_read_only(backing_file_bs, false, NULL)) {
472 return -EACCES;
473 }
474 }
475
476 ctx = bdrv_get_aio_context(bs);
477 /* WRITE_UNCHANGED is required for bdrv_make_empty() */
478 src = blk_new(ctx, BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED,
479 BLK_PERM_ALL);
480 backing = blk_new(ctx, BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL);
481
482 ret = blk_insert_bs(src, bs, &local_err);
483 if (ret < 0) {
484 error_report_err(local_err);
485 goto ro_cleanup;
486 }
487
488 /* Insert commit_top block node above backing, so we can write to it */
489 commit_top_bs = bdrv_new_open_driver(&bdrv_commit_top, NULL, BDRV_O_RDWR,
490 &local_err);
491 if (commit_top_bs == NULL) {
492 error_report_err(local_err);
493 goto ro_cleanup;
494 }
495
496 bdrv_set_backing_hd(commit_top_bs, backing_file_bs, &error_abort);
497 bdrv_set_backing_hd(bs, commit_top_bs, &error_abort);
498
499 ret = blk_insert_bs(backing, backing_file_bs, &local_err);
500 if (ret < 0) {
501 error_report_err(local_err);
502 goto ro_cleanup;
503 }
504
505 length = blk_getlength(src);
506 if (length < 0) {
507 ret = length;
508 goto ro_cleanup;
509 }
510
511 backing_length = blk_getlength(backing);
512 if (backing_length < 0) {
513 ret = backing_length;
514 goto ro_cleanup;
515 }
516
517 /* If our top snapshot is larger than the backing file image,
518 * grow the backing file image if possible. If not possible,
519 * we must return an error */
520 if (length > backing_length) {
521 ret = blk_truncate(backing, length, false, PREALLOC_MODE_OFF, 0,
522 &local_err);
523 if (ret < 0) {
524 error_report_err(local_err);
525 goto ro_cleanup;
526 }
527 }
528
529 /* blk_try_blockalign() for src will choose an alignment that works for
530 * backing as well, so no need to compare the alignment manually. */
531 buf = blk_try_blockalign(src, COMMIT_BUF_SIZE);
532 if (buf == NULL) {
533 ret = -ENOMEM;
534 goto ro_cleanup;
535 }
536
537 for (offset = 0; offset < length; offset += n) {
538 ret = bdrv_is_allocated(bs, offset, COMMIT_BUF_SIZE, &n);
539 if (ret < 0) {
540 goto ro_cleanup;
541 }
542 if (ret) {
543 ret = blk_pread(src, offset, n, buf, 0);
544 if (ret < 0) {
545 goto ro_cleanup;
546 }
547
548 ret = blk_pwrite(backing, offset, n, buf, 0);
549 if (ret < 0) {
550 goto ro_cleanup;
551 }
552 }
553 }
554
555 ret = blk_make_empty(src, NULL);
556 /* Ignore -ENOTSUP */
557 if (ret < 0 && ret != -ENOTSUP) {
558 goto ro_cleanup;
559 }
560
561 blk_flush(src);
562
563 /*
564 * Make sure all data we wrote to the backing device is actually
565 * stable on disk.
566 */
567 blk_flush(backing);
568
569 ret = 0;
570 ro_cleanup:
571 blk_unref(backing);
572 if (bdrv_cow_bs(bs) != backing_file_bs) {
573 bdrv_set_backing_hd(bs, backing_file_bs, &error_abort);
574 }
575 bdrv_unref(commit_top_bs);
576 blk_unref(src);
577
578 if (ro) {
579 /* ignoring error return here */
580 bdrv_reopen_set_read_only(backing_file_bs, true, NULL);
581 }
582
583 return ret;
584 }