]> git.proxmox.com Git - mirror_qemu.git/blob - block/copy-before-write.c
block/block-copy: block_copy(): add timeout_ns parameter
[mirror_qemu.git] / block / copy-before-write.c
1 /*
2 * copy-before-write filter driver
3 *
4 * The driver performs Copy-Before-Write (CBW) operation: it is injected above
5 * some node, and before each write it copies _old_ data to the target node.
6 *
7 * Copyright (c) 2018-2021 Virtuozzo International GmbH.
8 *
9 * Author:
10 * Sementsov-Ogievskiy Vladimir <vsementsov@virtuozzo.com>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26 #include "qemu/osdep.h"
27 #include "qapi/qmp/qjson.h"
28
29 #include "sysemu/block-backend.h"
30 #include "qemu/cutils.h"
31 #include "qapi/error.h"
32 #include "block/block_int.h"
33 #include "block/qdict.h"
34 #include "block/block-copy.h"
35
36 #include "block/copy-before-write.h"
37 #include "block/reqlist.h"
38
39 #include "qapi/qapi-visit-block-core.h"
40
41 typedef struct BDRVCopyBeforeWriteState {
42 BlockCopyState *bcs;
43 BdrvChild *target;
44 OnCbwError on_cbw_error;
45
46 /*
47 * @lock: protects access to @access_bitmap, @done_bitmap and
48 * @frozen_read_reqs
49 */
50 CoMutex lock;
51
52 /*
53 * @access_bitmap: represents areas allowed for reading by fleecing user.
54 * Reading from non-dirty areas leads to -EACCES.
55 */
56 BdrvDirtyBitmap *access_bitmap;
57
58 /*
59 * @done_bitmap: represents areas that was successfully copied to @target by
60 * copy-before-write operations.
61 */
62 BdrvDirtyBitmap *done_bitmap;
63
64 /*
65 * @frozen_read_reqs: current read requests for fleecing user in bs->file
66 * node. These areas must not be rewritten by guest.
67 */
68 BlockReqList frozen_read_reqs;
69
70 /*
71 * @snapshot_error is normally zero. But on first copy-before-write failure
72 * when @on_cbw_error == ON_CBW_ERROR_BREAK_SNAPSHOT, @snapshot_error takes
73 * value of this error (<0). After that all in-flight and further
74 * snapshot-API requests will fail with that error.
75 */
76 int snapshot_error;
77 } BDRVCopyBeforeWriteState;
78
79 static coroutine_fn int cbw_co_preadv(
80 BlockDriverState *bs, int64_t offset, int64_t bytes,
81 QEMUIOVector *qiov, BdrvRequestFlags flags)
82 {
83 return bdrv_co_preadv(bs->file, offset, bytes, qiov, flags);
84 }
85
86 /*
87 * Do copy-before-write operation.
88 *
89 * On failure guest request must be failed too.
90 *
91 * On success, we also wait for all in-flight fleecing read requests in source
92 * node, and it's guaranteed that after cbw_do_copy_before_write() successful
93 * return there are no such requests and they will never appear.
94 */
95 static coroutine_fn int cbw_do_copy_before_write(BlockDriverState *bs,
96 uint64_t offset, uint64_t bytes, BdrvRequestFlags flags)
97 {
98 BDRVCopyBeforeWriteState *s = bs->opaque;
99 int ret;
100 uint64_t off, end;
101 int64_t cluster_size = block_copy_cluster_size(s->bcs);
102
103 if (flags & BDRV_REQ_WRITE_UNCHANGED) {
104 return 0;
105 }
106
107 if (s->snapshot_error) {
108 return 0;
109 }
110
111 off = QEMU_ALIGN_DOWN(offset, cluster_size);
112 end = QEMU_ALIGN_UP(offset + bytes, cluster_size);
113
114 ret = block_copy(s->bcs, off, end - off, true, 0, NULL, NULL);
115 if (ret < 0 && s->on_cbw_error == ON_CBW_ERROR_BREAK_GUEST_WRITE) {
116 return ret;
117 }
118
119 WITH_QEMU_LOCK_GUARD(&s->lock) {
120 if (ret < 0) {
121 assert(s->on_cbw_error == ON_CBW_ERROR_BREAK_SNAPSHOT);
122 if (!s->snapshot_error) {
123 s->snapshot_error = ret;
124 }
125 } else {
126 bdrv_set_dirty_bitmap(s->done_bitmap, off, end - off);
127 }
128 reqlist_wait_all(&s->frozen_read_reqs, off, end - off, &s->lock);
129 }
130
131 return 0;
132 }
133
134 static int coroutine_fn cbw_co_pdiscard(BlockDriverState *bs,
135 int64_t offset, int64_t bytes)
136 {
137 int ret = cbw_do_copy_before_write(bs, offset, bytes, 0);
138 if (ret < 0) {
139 return ret;
140 }
141
142 return bdrv_co_pdiscard(bs->file, offset, bytes);
143 }
144
145 static int coroutine_fn cbw_co_pwrite_zeroes(BlockDriverState *bs,
146 int64_t offset, int64_t bytes, BdrvRequestFlags flags)
147 {
148 int ret = cbw_do_copy_before_write(bs, offset, bytes, flags);
149 if (ret < 0) {
150 return ret;
151 }
152
153 return bdrv_co_pwrite_zeroes(bs->file, offset, bytes, flags);
154 }
155
156 static coroutine_fn int cbw_co_pwritev(BlockDriverState *bs,
157 int64_t offset,
158 int64_t bytes,
159 QEMUIOVector *qiov,
160 BdrvRequestFlags flags)
161 {
162 int ret = cbw_do_copy_before_write(bs, offset, bytes, flags);
163 if (ret < 0) {
164 return ret;
165 }
166
167 return bdrv_co_pwritev(bs->file, offset, bytes, qiov, flags);
168 }
169
170 static int coroutine_fn cbw_co_flush(BlockDriverState *bs)
171 {
172 if (!bs->file) {
173 return 0;
174 }
175
176 return bdrv_co_flush(bs->file->bs);
177 }
178
179 /*
180 * If @offset not accessible - return NULL.
181 *
182 * Otherwise, set @pnum to some bytes that accessible from @file (@file is set
183 * to bs->file or to s->target). Return newly allocated BlockReq object that
184 * should be than passed to cbw_snapshot_read_unlock().
185 *
186 * It's guaranteed that guest writes will not interact in the region until
187 * cbw_snapshot_read_unlock() called.
188 */
189 static BlockReq *cbw_snapshot_read_lock(BlockDriverState *bs,
190 int64_t offset, int64_t bytes,
191 int64_t *pnum, BdrvChild **file)
192 {
193 BDRVCopyBeforeWriteState *s = bs->opaque;
194 BlockReq *req = g_new(BlockReq, 1);
195 bool done;
196
197 QEMU_LOCK_GUARD(&s->lock);
198
199 if (s->snapshot_error) {
200 g_free(req);
201 return NULL;
202 }
203
204 if (bdrv_dirty_bitmap_next_zero(s->access_bitmap, offset, bytes) != -1) {
205 g_free(req);
206 return NULL;
207 }
208
209 done = bdrv_dirty_bitmap_status(s->done_bitmap, offset, bytes, pnum);
210 if (done) {
211 /*
212 * Special invalid BlockReq, that is handled in
213 * cbw_snapshot_read_unlock(). We don't need to lock something to read
214 * from s->target.
215 */
216 *req = (BlockReq) {.offset = -1, .bytes = -1};
217 *file = s->target;
218 } else {
219 reqlist_init_req(&s->frozen_read_reqs, req, offset, bytes);
220 *file = bs->file;
221 }
222
223 return req;
224 }
225
226 static void cbw_snapshot_read_unlock(BlockDriverState *bs, BlockReq *req)
227 {
228 BDRVCopyBeforeWriteState *s = bs->opaque;
229
230 if (req->offset == -1 && req->bytes == -1) {
231 g_free(req);
232 return;
233 }
234
235 QEMU_LOCK_GUARD(&s->lock);
236
237 reqlist_remove_req(req);
238 g_free(req);
239 }
240
241 static coroutine_fn int
242 cbw_co_preadv_snapshot(BlockDriverState *bs, int64_t offset, int64_t bytes,
243 QEMUIOVector *qiov, size_t qiov_offset)
244 {
245 BlockReq *req;
246 BdrvChild *file;
247 int ret;
248
249 /* TODO: upgrade to async loop using AioTask */
250 while (bytes) {
251 int64_t cur_bytes;
252
253 req = cbw_snapshot_read_lock(bs, offset, bytes, &cur_bytes, &file);
254 if (!req) {
255 return -EACCES;
256 }
257
258 ret = bdrv_co_preadv_part(file, offset, cur_bytes,
259 qiov, qiov_offset, 0);
260 cbw_snapshot_read_unlock(bs, req);
261 if (ret < 0) {
262 return ret;
263 }
264
265 bytes -= cur_bytes;
266 offset += cur_bytes;
267 qiov_offset += cur_bytes;
268 }
269
270 return 0;
271 }
272
273 static int coroutine_fn
274 cbw_co_snapshot_block_status(BlockDriverState *bs,
275 bool want_zero, int64_t offset, int64_t bytes,
276 int64_t *pnum, int64_t *map,
277 BlockDriverState **file)
278 {
279 BDRVCopyBeforeWriteState *s = bs->opaque;
280 BlockReq *req;
281 int ret;
282 int64_t cur_bytes;
283 BdrvChild *child;
284
285 req = cbw_snapshot_read_lock(bs, offset, bytes, &cur_bytes, &child);
286 if (!req) {
287 return -EACCES;
288 }
289
290 ret = bdrv_block_status(child->bs, offset, cur_bytes, pnum, map, file);
291 if (child == s->target) {
292 /*
293 * We refer to s->target only for areas that we've written to it.
294 * And we can not report unallocated blocks in s->target: this will
295 * break generic block-status-above logic, that will go to
296 * copy-before-write filtered child in this case.
297 */
298 assert(ret & BDRV_BLOCK_ALLOCATED);
299 }
300
301 cbw_snapshot_read_unlock(bs, req);
302
303 return ret;
304 }
305
306 static int coroutine_fn cbw_co_pdiscard_snapshot(BlockDriverState *bs,
307 int64_t offset, int64_t bytes)
308 {
309 BDRVCopyBeforeWriteState *s = bs->opaque;
310
311 WITH_QEMU_LOCK_GUARD(&s->lock) {
312 bdrv_reset_dirty_bitmap(s->access_bitmap, offset, bytes);
313 }
314
315 block_copy_reset(s->bcs, offset, bytes);
316
317 return bdrv_co_pdiscard(s->target, offset, bytes);
318 }
319
320 static void cbw_refresh_filename(BlockDriverState *bs)
321 {
322 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
323 bs->file->bs->filename);
324 }
325
326 static void cbw_child_perm(BlockDriverState *bs, BdrvChild *c,
327 BdrvChildRole role,
328 BlockReopenQueue *reopen_queue,
329 uint64_t perm, uint64_t shared,
330 uint64_t *nperm, uint64_t *nshared)
331 {
332 if (!(role & BDRV_CHILD_FILTERED)) {
333 /*
334 * Target child
335 *
336 * Share write to target (child_file), to not interfere
337 * with guest writes to its disk which may be in target backing chain.
338 * Can't resize during a backup block job because we check the size
339 * only upfront.
340 */
341 *nshared = BLK_PERM_ALL & ~BLK_PERM_RESIZE;
342 *nperm = BLK_PERM_WRITE;
343 } else {
344 /* Source child */
345 bdrv_default_perms(bs, c, role, reopen_queue,
346 perm, shared, nperm, nshared);
347
348 if (!QLIST_EMPTY(&bs->parents)) {
349 if (perm & BLK_PERM_WRITE) {
350 *nperm = *nperm | BLK_PERM_CONSISTENT_READ;
351 }
352 *nshared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
353 }
354 }
355 }
356
357 static BlockdevOptions *cbw_parse_options(QDict *options, Error **errp)
358 {
359 BlockdevOptions *opts = NULL;
360 Visitor *v = NULL;
361
362 qdict_put_str(options, "driver", "copy-before-write");
363
364 v = qobject_input_visitor_new_flat_confused(options, errp);
365 if (!v) {
366 goto out;
367 }
368
369 visit_type_BlockdevOptions(v, NULL, &opts, errp);
370 if (!opts) {
371 goto out;
372 }
373
374 /*
375 * Delete options which we are going to parse through BlockdevOptions
376 * object for original options.
377 */
378 qdict_extract_subqdict(options, NULL, "bitmap");
379 qdict_del(options, "on-cbw-error");
380
381 out:
382 visit_free(v);
383 qdict_del(options, "driver");
384
385 return opts;
386 }
387
388 static int cbw_open(BlockDriverState *bs, QDict *options, int flags,
389 Error **errp)
390 {
391 BDRVCopyBeforeWriteState *s = bs->opaque;
392 BdrvDirtyBitmap *bitmap = NULL;
393 int64_t cluster_size;
394 g_autoptr(BlockdevOptions) full_opts = NULL;
395 BlockdevOptionsCbw *opts;
396
397 full_opts = cbw_parse_options(options, errp);
398 if (!full_opts) {
399 return -EINVAL;
400 }
401 assert(full_opts->driver == BLOCKDEV_DRIVER_COPY_BEFORE_WRITE);
402 opts = &full_opts->u.copy_before_write;
403
404 bs->file = bdrv_open_child(NULL, options, "file", bs, &child_of_bds,
405 BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY,
406 false, errp);
407 if (!bs->file) {
408 return -EINVAL;
409 }
410
411 s->target = bdrv_open_child(NULL, options, "target", bs, &child_of_bds,
412 BDRV_CHILD_DATA, false, errp);
413 if (!s->target) {
414 return -EINVAL;
415 }
416
417 if (opts->has_bitmap) {
418 bitmap = block_dirty_bitmap_lookup(opts->bitmap->node,
419 opts->bitmap->name, NULL, errp);
420 if (!bitmap) {
421 return -EINVAL;
422 }
423 }
424 s->on_cbw_error = opts->has_on_cbw_error ? opts->on_cbw_error :
425 ON_CBW_ERROR_BREAK_GUEST_WRITE;
426
427 bs->total_sectors = bs->file->bs->total_sectors;
428 bs->supported_write_flags = BDRV_REQ_WRITE_UNCHANGED |
429 (BDRV_REQ_FUA & bs->file->bs->supported_write_flags);
430 bs->supported_zero_flags = BDRV_REQ_WRITE_UNCHANGED |
431 ((BDRV_REQ_FUA | BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK) &
432 bs->file->bs->supported_zero_flags);
433
434 s->bcs = block_copy_state_new(bs->file, s->target, bitmap, errp);
435 if (!s->bcs) {
436 error_prepend(errp, "Cannot create block-copy-state: ");
437 return -EINVAL;
438 }
439
440 cluster_size = block_copy_cluster_size(s->bcs);
441
442 s->done_bitmap = bdrv_create_dirty_bitmap(bs, cluster_size, NULL, errp);
443 if (!s->done_bitmap) {
444 return -EINVAL;
445 }
446 bdrv_disable_dirty_bitmap(s->done_bitmap);
447
448 /* s->access_bitmap starts equal to bcs bitmap */
449 s->access_bitmap = bdrv_create_dirty_bitmap(bs, cluster_size, NULL, errp);
450 if (!s->access_bitmap) {
451 return -EINVAL;
452 }
453 bdrv_disable_dirty_bitmap(s->access_bitmap);
454 bdrv_dirty_bitmap_merge_internal(s->access_bitmap,
455 block_copy_dirty_bitmap(s->bcs), NULL,
456 true);
457
458 qemu_co_mutex_init(&s->lock);
459 QLIST_INIT(&s->frozen_read_reqs);
460
461 return 0;
462 }
463
464 static void cbw_close(BlockDriverState *bs)
465 {
466 BDRVCopyBeforeWriteState *s = bs->opaque;
467
468 bdrv_release_dirty_bitmap(s->access_bitmap);
469 bdrv_release_dirty_bitmap(s->done_bitmap);
470
471 block_copy_state_free(s->bcs);
472 s->bcs = NULL;
473 }
474
475 BlockDriver bdrv_cbw_filter = {
476 .format_name = "copy-before-write",
477 .instance_size = sizeof(BDRVCopyBeforeWriteState),
478
479 .bdrv_open = cbw_open,
480 .bdrv_close = cbw_close,
481
482 .bdrv_co_preadv = cbw_co_preadv,
483 .bdrv_co_pwritev = cbw_co_pwritev,
484 .bdrv_co_pwrite_zeroes = cbw_co_pwrite_zeroes,
485 .bdrv_co_pdiscard = cbw_co_pdiscard,
486 .bdrv_co_flush = cbw_co_flush,
487
488 .bdrv_co_preadv_snapshot = cbw_co_preadv_snapshot,
489 .bdrv_co_pdiscard_snapshot = cbw_co_pdiscard_snapshot,
490 .bdrv_co_snapshot_block_status = cbw_co_snapshot_block_status,
491
492 .bdrv_refresh_filename = cbw_refresh_filename,
493
494 .bdrv_child_perm = cbw_child_perm,
495
496 .is_filter = true,
497 };
498
499 BlockDriverState *bdrv_cbw_append(BlockDriverState *source,
500 BlockDriverState *target,
501 const char *filter_node_name,
502 BlockCopyState **bcs,
503 Error **errp)
504 {
505 ERRP_GUARD();
506 BDRVCopyBeforeWriteState *state;
507 BlockDriverState *top;
508 QDict *opts;
509
510 assert(source->total_sectors == target->total_sectors);
511 GLOBAL_STATE_CODE();
512
513 opts = qdict_new();
514 qdict_put_str(opts, "driver", "copy-before-write");
515 if (filter_node_name) {
516 qdict_put_str(opts, "node-name", filter_node_name);
517 }
518 qdict_put_str(opts, "file", bdrv_get_node_name(source));
519 qdict_put_str(opts, "target", bdrv_get_node_name(target));
520
521 top = bdrv_insert_node(source, opts, BDRV_O_RDWR, errp);
522 if (!top) {
523 return NULL;
524 }
525
526 state = top->opaque;
527 *bcs = state->bcs;
528
529 return top;
530 }
531
532 void bdrv_cbw_drop(BlockDriverState *bs)
533 {
534 GLOBAL_STATE_CODE();
535 bdrv_drop_filter(bs, &error_abort);
536 bdrv_unref(bs);
537 }
538
539 static void cbw_init(void)
540 {
541 bdrv_register(&bdrv_cbw_filter);
542 }
543
544 block_init(cbw_init);