]> Git Repo - qemu.git/blame - block/io.c
block: Use common req handling for discard
[qemu.git] / block / io.c
CommitLineData
61007b31
SH
1/*
2 * Block layer I/O functions
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
80c71a24 25#include "qemu/osdep.h"
61007b31 26#include "trace.h"
7f0e9da6 27#include "sysemu/block-backend.h"
7719f3c9 28#include "block/aio-wait.h"
61007b31 29#include "block/blockjob.h"
f321dcb5 30#include "block/blockjob_int.h"
61007b31 31#include "block/block_int.h"
f348b6d1 32#include "qemu/cutils.h"
da34e65c 33#include "qapi/error.h"
d49b6836 34#include "qemu/error-report.h"
61007b31
SH
35
36#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
37
cb2e2878
EB
38/* Maximum bounce buffer for copy-on-read and write zeroes, in bytes */
39#define MAX_BOUNCE_BUFFER (32768 << BDRV_SECTOR_BITS)
40
0f12264e
KW
41static AioWait drain_all_aio_wait;
42
7f8f03ef 43static void bdrv_parent_cb_resize(BlockDriverState *bs);
d05aa8bb 44static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
f5a5ca79 45 int64_t offset, int bytes, BdrvRequestFlags flags);
61007b31 46
6cd5c9d7
KW
47void bdrv_parent_drained_begin(BlockDriverState *bs, BdrvChild *ignore,
48 bool ignore_bds_parents)
61007b31 49{
02d21300 50 BdrvChild *c, *next;
27ccdd52 51
02d21300 52 QLIST_FOREACH_SAFE(c, &bs->parents, next_parent, next) {
6cd5c9d7 53 if (c == ignore || (ignore_bds_parents && c->role->parent_is_bds)) {
0152bf40
KW
54 continue;
55 }
4be6a6d1 56 bdrv_parent_drained_begin_single(c, false);
ce0f1412
PB
57 }
58}
61007b31 59
6cd5c9d7
KW
60void bdrv_parent_drained_end(BlockDriverState *bs, BdrvChild *ignore,
61 bool ignore_bds_parents)
ce0f1412 62{
02d21300 63 BdrvChild *c, *next;
27ccdd52 64
02d21300 65 QLIST_FOREACH_SAFE(c, &bs->parents, next_parent, next) {
6cd5c9d7 66 if (c == ignore || (ignore_bds_parents && c->role->parent_is_bds)) {
0152bf40
KW
67 continue;
68 }
c2066af0
KW
69 if (c->role->drained_end) {
70 c->role->drained_end(c);
71 }
27ccdd52 72 }
61007b31
SH
73}
74
4be6a6d1
KW
75static bool bdrv_parent_drained_poll_single(BdrvChild *c)
76{
77 if (c->role->drained_poll) {
78 return c->role->drained_poll(c);
79 }
80 return false;
81}
82
6cd5c9d7
KW
83static bool bdrv_parent_drained_poll(BlockDriverState *bs, BdrvChild *ignore,
84 bool ignore_bds_parents)
89bd0305
KW
85{
86 BdrvChild *c, *next;
87 bool busy = false;
88
89 QLIST_FOREACH_SAFE(c, &bs->parents, next_parent, next) {
6cd5c9d7 90 if (c == ignore || (ignore_bds_parents && c->role->parent_is_bds)) {
89bd0305
KW
91 continue;
92 }
4be6a6d1 93 busy |= bdrv_parent_drained_poll_single(c);
89bd0305
KW
94 }
95
96 return busy;
97}
98
4be6a6d1
KW
99void bdrv_parent_drained_begin_single(BdrvChild *c, bool poll)
100{
101 if (c->role->drained_begin) {
102 c->role->drained_begin(c);
103 }
104 if (poll) {
105 BDRV_POLL_WHILE(c->bs, bdrv_parent_drained_poll_single(c));
106 }
107}
108
d9e0dfa2
EB
109static void bdrv_merge_limits(BlockLimits *dst, const BlockLimits *src)
110{
111 dst->opt_transfer = MAX(dst->opt_transfer, src->opt_transfer);
112 dst->max_transfer = MIN_NON_ZERO(dst->max_transfer, src->max_transfer);
113 dst->opt_mem_alignment = MAX(dst->opt_mem_alignment,
114 src->opt_mem_alignment);
115 dst->min_mem_alignment = MAX(dst->min_mem_alignment,
116 src->min_mem_alignment);
117 dst->max_iov = MIN_NON_ZERO(dst->max_iov, src->max_iov);
118}
119
61007b31
SH
120void bdrv_refresh_limits(BlockDriverState *bs, Error **errp)
121{
122 BlockDriver *drv = bs->drv;
123 Error *local_err = NULL;
124
125 memset(&bs->bl, 0, sizeof(bs->bl));
126
127 if (!drv) {
128 return;
129 }
130
79ba8c98 131 /* Default alignment based on whether driver has byte interface */
e31f6864
EB
132 bs->bl.request_alignment = (drv->bdrv_co_preadv ||
133 drv->bdrv_aio_preadv) ? 1 : 512;
79ba8c98 134
61007b31
SH
135 /* Take some limits from the children as a default */
136 if (bs->file) {
9a4f4c31 137 bdrv_refresh_limits(bs->file->bs, &local_err);
61007b31
SH
138 if (local_err) {
139 error_propagate(errp, local_err);
140 return;
141 }
d9e0dfa2 142 bdrv_merge_limits(&bs->bl, &bs->file->bs->bl);
61007b31 143 } else {
4196d2f0 144 bs->bl.min_mem_alignment = 512;
459b4e66 145 bs->bl.opt_mem_alignment = getpagesize();
bd44feb7
SH
146
147 /* Safe default since most protocols use readv()/writev()/etc */
148 bs->bl.max_iov = IOV_MAX;
61007b31
SH
149 }
150
760e0063
KW
151 if (bs->backing) {
152 bdrv_refresh_limits(bs->backing->bs, &local_err);
61007b31
SH
153 if (local_err) {
154 error_propagate(errp, local_err);
155 return;
156 }
d9e0dfa2 157 bdrv_merge_limits(&bs->bl, &bs->backing->bs->bl);
61007b31
SH
158 }
159
160 /* Then let the driver override it */
161 if (drv->bdrv_refresh_limits) {
162 drv->bdrv_refresh_limits(bs, errp);
163 }
164}
165
166/**
167 * The copy-on-read flag is actually a reference count so multiple users may
168 * use the feature without worrying about clobbering its previous state.
169 * Copy-on-read stays enabled until all users have called to disable it.
170 */
171void bdrv_enable_copy_on_read(BlockDriverState *bs)
172{
d3faa13e 173 atomic_inc(&bs->copy_on_read);
61007b31
SH
174}
175
176void bdrv_disable_copy_on_read(BlockDriverState *bs)
177{
d3faa13e
PB
178 int old = atomic_fetch_dec(&bs->copy_on_read);
179 assert(old >= 1);
61007b31
SH
180}
181
61124f03
PB
182typedef struct {
183 Coroutine *co;
184 BlockDriverState *bs;
185 bool done;
481cad48 186 bool begin;
b0165585 187 bool recursive;
fe4f0614 188 bool poll;
0152bf40 189 BdrvChild *parent;
6cd5c9d7 190 bool ignore_bds_parents;
61124f03
PB
191} BdrvCoDrainData;
192
193static void coroutine_fn bdrv_drain_invoke_entry(void *opaque)
194{
195 BdrvCoDrainData *data = opaque;
196 BlockDriverState *bs = data->bs;
197
481cad48 198 if (data->begin) {
f8ea8dac 199 bs->drv->bdrv_co_drain_begin(bs);
481cad48
MP
200 } else {
201 bs->drv->bdrv_co_drain_end(bs);
202 }
61124f03
PB
203
204 /* Set data->done before reading bs->wakeup. */
205 atomic_mb_set(&data->done, true);
0109e7e6
KW
206 bdrv_dec_in_flight(bs);
207
208 if (data->begin) {
209 g_free(data);
210 }
61124f03
PB
211}
212
db0289b9 213/* Recursively call BlockDriver.bdrv_co_drain_begin/end callbacks */
7d40d9ef 214static void bdrv_drain_invoke(BlockDriverState *bs, bool begin)
61124f03 215{
0109e7e6 216 BdrvCoDrainData *data;
61124f03 217
f8ea8dac 218 if (!bs->drv || (begin && !bs->drv->bdrv_co_drain_begin) ||
481cad48 219 (!begin && !bs->drv->bdrv_co_drain_end)) {
61124f03
PB
220 return;
221 }
222
0109e7e6
KW
223 data = g_new(BdrvCoDrainData, 1);
224 *data = (BdrvCoDrainData) {
225 .bs = bs,
226 .done = false,
227 .begin = begin
228 };
229
230 /* Make sure the driver callback completes during the polling phase for
231 * drain_begin. */
232 bdrv_inc_in_flight(bs);
233 data->co = qemu_coroutine_create(bdrv_drain_invoke_entry, data);
234 aio_co_schedule(bdrv_get_aio_context(bs), data->co);
235
236 if (!begin) {
237 BDRV_POLL_WHILE(bs, !data->done);
238 g_free(data);
239 }
61124f03
PB
240}
241
1cc8e54a 242/* Returns true if BDRV_POLL_WHILE() should go into a blocking aio_poll() */
fe4f0614 243bool bdrv_drain_poll(BlockDriverState *bs, bool recursive,
6cd5c9d7 244 BdrvChild *ignore_parent, bool ignore_bds_parents)
89bd0305 245{
fe4f0614
KW
246 BdrvChild *child, *next;
247
6cd5c9d7 248 if (bdrv_parent_drained_poll(bs, ignore_parent, ignore_bds_parents)) {
89bd0305
KW
249 return true;
250 }
251
fe4f0614
KW
252 if (atomic_read(&bs->in_flight)) {
253 return true;
254 }
255
256 if (recursive) {
6cd5c9d7 257 assert(!ignore_bds_parents);
fe4f0614 258 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
6cd5c9d7 259 if (bdrv_drain_poll(child->bs, recursive, child, false)) {
fe4f0614
KW
260 return true;
261 }
262 }
263 }
264
265 return false;
89bd0305
KW
266}
267
fe4f0614 268static bool bdrv_drain_poll_top_level(BlockDriverState *bs, bool recursive,
89bd0305 269 BdrvChild *ignore_parent)
1cc8e54a
KW
270{
271 /* Execute pending BHs first and check everything else only after the BHs
272 * have executed. */
273 while (aio_poll(bs->aio_context, false));
89bd0305 274
6cd5c9d7 275 return bdrv_drain_poll(bs, recursive, ignore_parent, false);
1cc8e54a
KW
276}
277
b0165585 278static void bdrv_do_drained_begin(BlockDriverState *bs, bool recursive,
6cd5c9d7
KW
279 BdrvChild *parent, bool ignore_bds_parents,
280 bool poll);
b0165585 281static void bdrv_do_drained_end(BlockDriverState *bs, bool recursive,
6cd5c9d7 282 BdrvChild *parent, bool ignore_bds_parents);
0152bf40 283
a77fd4bb
FZ
284static void bdrv_co_drain_bh_cb(void *opaque)
285{
286 BdrvCoDrainData *data = opaque;
287 Coroutine *co = data->co;
99723548 288 BlockDriverState *bs = data->bs;
a77fd4bb 289
c8ca33d0
KW
290 if (bs) {
291 bdrv_dec_in_flight(bs);
292 if (data->begin) {
6cd5c9d7
KW
293 bdrv_do_drained_begin(bs, data->recursive, data->parent,
294 data->ignore_bds_parents, data->poll);
c8ca33d0 295 } else {
6cd5c9d7
KW
296 bdrv_do_drained_end(bs, data->recursive, data->parent,
297 data->ignore_bds_parents);
c8ca33d0 298 }
481cad48 299 } else {
c8ca33d0
KW
300 assert(data->begin);
301 bdrv_drain_all_begin();
481cad48
MP
302 }
303
a77fd4bb 304 data->done = true;
1919631e 305 aio_co_wake(co);
a77fd4bb
FZ
306}
307
481cad48 308static void coroutine_fn bdrv_co_yield_to_drain(BlockDriverState *bs,
b0165585 309 bool begin, bool recursive,
6cd5c9d7
KW
310 BdrvChild *parent,
311 bool ignore_bds_parents,
312 bool poll)
a77fd4bb
FZ
313{
314 BdrvCoDrainData data;
315
316 /* Calling bdrv_drain() from a BH ensures the current coroutine yields and
c40a2545 317 * other coroutines run if they were queued by aio_co_enter(). */
a77fd4bb
FZ
318
319 assert(qemu_in_coroutine());
320 data = (BdrvCoDrainData) {
321 .co = qemu_coroutine_self(),
322 .bs = bs,
323 .done = false,
481cad48 324 .begin = begin,
b0165585 325 .recursive = recursive,
0152bf40 326 .parent = parent,
6cd5c9d7 327 .ignore_bds_parents = ignore_bds_parents,
fe4f0614 328 .poll = poll,
a77fd4bb 329 };
c8ca33d0
KW
330 if (bs) {
331 bdrv_inc_in_flight(bs);
332 }
fffb6e12
PB
333 aio_bh_schedule_oneshot(bdrv_get_aio_context(bs),
334 bdrv_co_drain_bh_cb, &data);
a77fd4bb
FZ
335
336 qemu_coroutine_yield();
337 /* If we are resumed from some other event (such as an aio completion or a
338 * timer callback), it is a bug in the caller that should be fixed. */
339 assert(data.done);
340}
341
dcf94a23 342void bdrv_do_drained_begin_quiesce(BlockDriverState *bs,
6cd5c9d7 343 BdrvChild *parent, bool ignore_bds_parents)
6820643f 344{
dcf94a23 345 assert(!qemu_in_coroutine());
d42cf288 346
60369b86 347 /* Stop things in parent-to-child order */
414c2ec3 348 if (atomic_fetch_inc(&bs->quiesce_counter) == 0) {
6820643f 349 aio_disable_external(bdrv_get_aio_context(bs));
6820643f
KW
350 }
351
6cd5c9d7 352 bdrv_parent_drained_begin(bs, parent, ignore_bds_parents);
7d40d9ef 353 bdrv_drain_invoke(bs, true);
dcf94a23
KW
354}
355
356static void bdrv_do_drained_begin(BlockDriverState *bs, bool recursive,
6cd5c9d7
KW
357 BdrvChild *parent, bool ignore_bds_parents,
358 bool poll)
dcf94a23
KW
359{
360 BdrvChild *child, *next;
361
362 if (qemu_in_coroutine()) {
6cd5c9d7
KW
363 bdrv_co_yield_to_drain(bs, true, recursive, parent, ignore_bds_parents,
364 poll);
dcf94a23
KW
365 return;
366 }
367
6cd5c9d7 368 bdrv_do_drained_begin_quiesce(bs, parent, ignore_bds_parents);
d30b8e64 369
b0165585 370 if (recursive) {
6cd5c9d7 371 assert(!ignore_bds_parents);
d736f119 372 bs->recursive_quiesce_counter++;
b0165585 373 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
6cd5c9d7
KW
374 bdrv_do_drained_begin(child->bs, true, child, ignore_bds_parents,
375 false);
b0165585
KW
376 }
377 }
fe4f0614
KW
378
379 /*
380 * Wait for drained requests to finish.
381 *
382 * Calling BDRV_POLL_WHILE() only once for the top-level node is okay: The
383 * call is needed so things in this AioContext can make progress even
384 * though we don't return to the main AioContext loop - this automatically
385 * includes other nodes in the same AioContext and therefore all child
386 * nodes.
387 */
388 if (poll) {
6cd5c9d7 389 assert(!ignore_bds_parents);
fe4f0614
KW
390 BDRV_POLL_WHILE(bs, bdrv_drain_poll_top_level(bs, recursive, parent));
391 }
6820643f
KW
392}
393
0152bf40
KW
394void bdrv_drained_begin(BlockDriverState *bs)
395{
6cd5c9d7 396 bdrv_do_drained_begin(bs, false, NULL, false, true);
b0165585
KW
397}
398
399void bdrv_subtree_drained_begin(BlockDriverState *bs)
400{
6cd5c9d7 401 bdrv_do_drained_begin(bs, true, NULL, false, true);
0152bf40
KW
402}
403
6cd5c9d7
KW
404static void bdrv_do_drained_end(BlockDriverState *bs, bool recursive,
405 BdrvChild *parent, bool ignore_bds_parents)
6820643f 406{
b0165585 407 BdrvChild *child, *next;
0f115168
KW
408 int old_quiesce_counter;
409
481cad48 410 if (qemu_in_coroutine()) {
6cd5c9d7
KW
411 bdrv_co_yield_to_drain(bs, false, recursive, parent, ignore_bds_parents,
412 false);
481cad48
MP
413 return;
414 }
6820643f 415 assert(bs->quiesce_counter > 0);
0f115168 416 old_quiesce_counter = atomic_fetch_dec(&bs->quiesce_counter);
6820643f 417
60369b86 418 /* Re-enable things in child-to-parent order */
7d40d9ef 419 bdrv_drain_invoke(bs, false);
6cd5c9d7 420 bdrv_parent_drained_end(bs, parent, ignore_bds_parents);
0f115168 421 if (old_quiesce_counter == 1) {
0f115168
KW
422 aio_enable_external(bdrv_get_aio_context(bs));
423 }
b0165585
KW
424
425 if (recursive) {
6cd5c9d7 426 assert(!ignore_bds_parents);
d736f119 427 bs->recursive_quiesce_counter--;
b0165585 428 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
6cd5c9d7 429 bdrv_do_drained_end(child->bs, true, child, ignore_bds_parents);
b0165585
KW
430 }
431 }
6820643f
KW
432}
433
0152bf40
KW
434void bdrv_drained_end(BlockDriverState *bs)
435{
6cd5c9d7 436 bdrv_do_drained_end(bs, false, NULL, false);
b0165585
KW
437}
438
439void bdrv_subtree_drained_end(BlockDriverState *bs)
440{
6cd5c9d7 441 bdrv_do_drained_end(bs, true, NULL, false);
0152bf40
KW
442}
443
d736f119
KW
444void bdrv_apply_subtree_drain(BdrvChild *child, BlockDriverState *new_parent)
445{
446 int i;
447
448 for (i = 0; i < new_parent->recursive_quiesce_counter; i++) {
6cd5c9d7 449 bdrv_do_drained_begin(child->bs, true, child, false, true);
d736f119
KW
450 }
451}
452
453void bdrv_unapply_subtree_drain(BdrvChild *child, BlockDriverState *old_parent)
454{
455 int i;
456
457 for (i = 0; i < old_parent->recursive_quiesce_counter; i++) {
6cd5c9d7 458 bdrv_do_drained_end(child->bs, true, child, false);
d736f119
KW
459 }
460}
461
61007b31 462/*
67da1dc5
FZ
463 * Wait for pending requests to complete on a single BlockDriverState subtree,
464 * and suspend block driver's internal I/O until next request arrives.
61007b31 465 *
61007b31
SH
466 * Note that unlike bdrv_drain_all(), the caller must hold the BlockDriverState
467 * AioContext.
468 */
b6e84c97 469void coroutine_fn bdrv_co_drain(BlockDriverState *bs)
61007b31 470{
6820643f
KW
471 assert(qemu_in_coroutine());
472 bdrv_drained_begin(bs);
473 bdrv_drained_end(bs);
b6e84c97 474}
f406c03c 475
b6e84c97
PB
476void bdrv_drain(BlockDriverState *bs)
477{
6820643f
KW
478 bdrv_drained_begin(bs);
479 bdrv_drained_end(bs);
61007b31
SH
480}
481
c13ad59f
KW
482static void bdrv_drain_assert_idle(BlockDriverState *bs)
483{
484 BdrvChild *child, *next;
485
486 assert(atomic_read(&bs->in_flight) == 0);
487 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
488 bdrv_drain_assert_idle(child->bs);
489 }
490}
491
0f12264e
KW
492unsigned int bdrv_drain_all_count = 0;
493
494static bool bdrv_drain_all_poll(void)
495{
496 BlockDriverState *bs = NULL;
497 bool result = false;
498
499 /* Execute pending BHs first (may modify the graph) and check everything
500 * else only after the BHs have executed. */
501 while (aio_poll(qemu_get_aio_context(), false));
502
503 /* bdrv_drain_poll() can't make changes to the graph and we are holding the
504 * main AioContext lock, so iterating bdrv_next_all_states() is safe. */
505 while ((bs = bdrv_next_all_states(bs))) {
506 AioContext *aio_context = bdrv_get_aio_context(bs);
507 aio_context_acquire(aio_context);
508 result |= bdrv_drain_poll(bs, false, NULL, true);
509 aio_context_release(aio_context);
510 }
511
512 return result;
513}
514
61007b31
SH
515/*
516 * Wait for pending requests to complete across all BlockDriverStates
517 *
518 * This function does not flush data to disk, use bdrv_flush_all() for that
519 * after calling this function.
c0778f66
AG
520 *
521 * This pauses all block jobs and disables external clients. It must
522 * be paired with bdrv_drain_all_end().
523 *
524 * NOTE: no new block jobs or BlockDriverStates can be created between
525 * the bdrv_drain_all_begin() and bdrv_drain_all_end() calls.
61007b31 526 */
c0778f66 527void bdrv_drain_all_begin(void)
61007b31 528{
0f12264e 529 BlockDriverState *bs = NULL;
61007b31 530
c8ca33d0 531 if (qemu_in_coroutine()) {
0f12264e 532 bdrv_co_yield_to_drain(NULL, true, false, NULL, true, true);
c8ca33d0
KW
533 return;
534 }
535
0f12264e
KW
536 /* AIO_WAIT_WHILE() with a NULL context can only be called from the main
537 * loop AioContext, so make sure we're in the main context. */
9a7e86c8 538 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
0f12264e
KW
539 assert(bdrv_drain_all_count < INT_MAX);
540 bdrv_drain_all_count++;
9a7e86c8 541
0f12264e
KW
542 /* Quiesce all nodes, without polling in-flight requests yet. The graph
543 * cannot change during this loop. */
544 while ((bs = bdrv_next_all_states(bs))) {
61007b31
SH
545 AioContext *aio_context = bdrv_get_aio_context(bs);
546
547 aio_context_acquire(aio_context);
0f12264e 548 bdrv_do_drained_begin(bs, false, NULL, true, false);
61007b31
SH
549 aio_context_release(aio_context);
550 }
551
0f12264e
KW
552 /* Now poll the in-flight requests */
553 AIO_WAIT_WHILE(&drain_all_aio_wait, NULL, bdrv_drain_all_poll());
554
555 while ((bs = bdrv_next_all_states(bs))) {
c13ad59f 556 bdrv_drain_assert_idle(bs);
61007b31 557 }
c0778f66
AG
558}
559
560void bdrv_drain_all_end(void)
561{
0f12264e 562 BlockDriverState *bs = NULL;
c0778f66 563
0f12264e 564 while ((bs = bdrv_next_all_states(bs))) {
61007b31
SH
565 AioContext *aio_context = bdrv_get_aio_context(bs);
566
567 aio_context_acquire(aio_context);
0f12264e 568 bdrv_do_drained_end(bs, false, NULL, true);
61007b31
SH
569 aio_context_release(aio_context);
570 }
0f12264e
KW
571
572 assert(bdrv_drain_all_count > 0);
573 bdrv_drain_all_count--;
61007b31
SH
574}
575
c0778f66
AG
576void bdrv_drain_all(void)
577{
578 bdrv_drain_all_begin();
579 bdrv_drain_all_end();
580}
581
61007b31
SH
582/**
583 * Remove an active request from the tracked requests list
584 *
585 * This function should be called when a tracked request is completing.
586 */
587static void tracked_request_end(BdrvTrackedRequest *req)
588{
589 if (req->serialising) {
20fc71b2 590 atomic_dec(&req->bs->serialising_in_flight);
61007b31
SH
591 }
592
3783fa3d 593 qemu_co_mutex_lock(&req->bs->reqs_lock);
61007b31
SH
594 QLIST_REMOVE(req, list);
595 qemu_co_queue_restart_all(&req->wait_queue);
3783fa3d 596 qemu_co_mutex_unlock(&req->bs->reqs_lock);
61007b31
SH
597}
598
599/**
600 * Add an active request to the tracked requests list
601 */
602static void tracked_request_begin(BdrvTrackedRequest *req,
603 BlockDriverState *bs,
604 int64_t offset,
22931a15 605 uint64_t bytes,
ebde595c 606 enum BdrvTrackedRequestType type)
61007b31 607{
22931a15
FZ
608 assert(bytes <= INT64_MAX && offset <= INT64_MAX - bytes);
609
61007b31
SH
610 *req = (BdrvTrackedRequest){
611 .bs = bs,
612 .offset = offset,
613 .bytes = bytes,
ebde595c 614 .type = type,
61007b31
SH
615 .co = qemu_coroutine_self(),
616 .serialising = false,
617 .overlap_offset = offset,
618 .overlap_bytes = bytes,
619 };
620
621 qemu_co_queue_init(&req->wait_queue);
622
3783fa3d 623 qemu_co_mutex_lock(&bs->reqs_lock);
61007b31 624 QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
3783fa3d 625 qemu_co_mutex_unlock(&bs->reqs_lock);
61007b31
SH
626}
627
628static void mark_request_serialising(BdrvTrackedRequest *req, uint64_t align)
629{
630 int64_t overlap_offset = req->offset & ~(align - 1);
22931a15 631 uint64_t overlap_bytes = ROUND_UP(req->offset + req->bytes, align)
61007b31
SH
632 - overlap_offset;
633
634 if (!req->serialising) {
20fc71b2 635 atomic_inc(&req->bs->serialising_in_flight);
61007b31
SH
636 req->serialising = true;
637 }
638
639 req->overlap_offset = MIN(req->overlap_offset, overlap_offset);
640 req->overlap_bytes = MAX(req->overlap_bytes, overlap_bytes);
641}
642
09d2f948
VSO
643static bool is_request_serialising_and_aligned(BdrvTrackedRequest *req)
644{
645 /*
646 * If the request is serialising, overlap_offset and overlap_bytes are set,
647 * so we can check if the request is aligned. Otherwise, don't care and
648 * return false.
649 */
650
651 return req->serialising && (req->offset == req->overlap_offset) &&
652 (req->bytes == req->overlap_bytes);
653}
654
244483e6
KW
655/**
656 * Round a region to cluster boundaries
657 */
658void bdrv_round_to_clusters(BlockDriverState *bs,
7cfd5275 659 int64_t offset, int64_t bytes,
244483e6 660 int64_t *cluster_offset,
7cfd5275 661 int64_t *cluster_bytes)
244483e6
KW
662{
663 BlockDriverInfo bdi;
664
665 if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
666 *cluster_offset = offset;
667 *cluster_bytes = bytes;
668 } else {
669 int64_t c = bdi.cluster_size;
670 *cluster_offset = QEMU_ALIGN_DOWN(offset, c);
671 *cluster_bytes = QEMU_ALIGN_UP(offset - *cluster_offset + bytes, c);
672 }
673}
674
61007b31
SH
675static int bdrv_get_cluster_size(BlockDriverState *bs)
676{
677 BlockDriverInfo bdi;
678 int ret;
679
680 ret = bdrv_get_info(bs, &bdi);
681 if (ret < 0 || bdi.cluster_size == 0) {
a5b8dd2c 682 return bs->bl.request_alignment;
61007b31
SH
683 } else {
684 return bdi.cluster_size;
685 }
686}
687
688static bool tracked_request_overlaps(BdrvTrackedRequest *req,
22931a15 689 int64_t offset, uint64_t bytes)
61007b31
SH
690{
691 /* aaaa bbbb */
692 if (offset >= req->overlap_offset + req->overlap_bytes) {
693 return false;
694 }
695 /* bbbb aaaa */
696 if (req->overlap_offset >= offset + bytes) {
697 return false;
698 }
699 return true;
700}
701
99723548
PB
702void bdrv_inc_in_flight(BlockDriverState *bs)
703{
704 atomic_inc(&bs->in_flight);
705}
706
c9d1a561
PB
707void bdrv_wakeup(BlockDriverState *bs)
708{
7719f3c9 709 aio_wait_kick(bdrv_get_aio_wait(bs));
0f12264e 710 aio_wait_kick(&drain_all_aio_wait);
c9d1a561
PB
711}
712
99723548
PB
713void bdrv_dec_in_flight(BlockDriverState *bs)
714{
715 atomic_dec(&bs->in_flight);
c9d1a561 716 bdrv_wakeup(bs);
99723548
PB
717}
718
61007b31
SH
719static bool coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self)
720{
721 BlockDriverState *bs = self->bs;
722 BdrvTrackedRequest *req;
723 bool retry;
724 bool waited = false;
725
20fc71b2 726 if (!atomic_read(&bs->serialising_in_flight)) {
61007b31
SH
727 return false;
728 }
729
730 do {
731 retry = false;
3783fa3d 732 qemu_co_mutex_lock(&bs->reqs_lock);
61007b31
SH
733 QLIST_FOREACH(req, &bs->tracked_requests, list) {
734 if (req == self || (!req->serialising && !self->serialising)) {
735 continue;
736 }
737 if (tracked_request_overlaps(req, self->overlap_offset,
738 self->overlap_bytes))
739 {
740 /* Hitting this means there was a reentrant request, for
741 * example, a block driver issuing nested requests. This must
742 * never happen since it means deadlock.
743 */
744 assert(qemu_coroutine_self() != req->co);
745
746 /* If the request is already (indirectly) waiting for us, or
747 * will wait for us as soon as it wakes up, then just go on
748 * (instead of producing a deadlock in the former case). */
749 if (!req->waiting_for) {
750 self->waiting_for = req;
3783fa3d 751 qemu_co_queue_wait(&req->wait_queue, &bs->reqs_lock);
61007b31
SH
752 self->waiting_for = NULL;
753 retry = true;
754 waited = true;
755 break;
756 }
757 }
758 }
3783fa3d 759 qemu_co_mutex_unlock(&bs->reqs_lock);
61007b31
SH
760 } while (retry);
761
762 return waited;
763}
764
765static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
766 size_t size)
767{
768 if (size > BDRV_REQUEST_MAX_SECTORS << BDRV_SECTOR_BITS) {
769 return -EIO;
770 }
771
772 if (!bdrv_is_inserted(bs)) {
773 return -ENOMEDIUM;
774 }
775
776 if (offset < 0) {
777 return -EIO;
778 }
779
780 return 0;
781}
782
61007b31 783typedef struct RwCo {
e293b7a3 784 BdrvChild *child;
61007b31
SH
785 int64_t offset;
786 QEMUIOVector *qiov;
787 bool is_write;
788 int ret;
789 BdrvRequestFlags flags;
790} RwCo;
791
792static void coroutine_fn bdrv_rw_co_entry(void *opaque)
793{
794 RwCo *rwco = opaque;
795
796 if (!rwco->is_write) {
a03ef88f 797 rwco->ret = bdrv_co_preadv(rwco->child, rwco->offset,
cab3a356
KW
798 rwco->qiov->size, rwco->qiov,
799 rwco->flags);
61007b31 800 } else {
a03ef88f 801 rwco->ret = bdrv_co_pwritev(rwco->child, rwco->offset,
cab3a356
KW
802 rwco->qiov->size, rwco->qiov,
803 rwco->flags);
61007b31
SH
804 }
805}
806
807/*
808 * Process a vectored synchronous request using coroutines
809 */
e293b7a3 810static int bdrv_prwv_co(BdrvChild *child, int64_t offset,
61007b31
SH
811 QEMUIOVector *qiov, bool is_write,
812 BdrvRequestFlags flags)
813{
814 Coroutine *co;
815 RwCo rwco = {
e293b7a3 816 .child = child,
61007b31
SH
817 .offset = offset,
818 .qiov = qiov,
819 .is_write = is_write,
820 .ret = NOT_DONE,
821 .flags = flags,
822 };
823
61007b31
SH
824 if (qemu_in_coroutine()) {
825 /* Fast-path if already in coroutine context */
826 bdrv_rw_co_entry(&rwco);
827 } else {
0b8b8753 828 co = qemu_coroutine_create(bdrv_rw_co_entry, &rwco);
e92f0e19 829 bdrv_coroutine_enter(child->bs, co);
88b062c2 830 BDRV_POLL_WHILE(child->bs, rwco.ret == NOT_DONE);
61007b31
SH
831 }
832 return rwco.ret;
833}
834
835/*
836 * Process a synchronous request using coroutines
837 */
e293b7a3 838static int bdrv_rw_co(BdrvChild *child, int64_t sector_num, uint8_t *buf,
61007b31
SH
839 int nb_sectors, bool is_write, BdrvRequestFlags flags)
840{
841 QEMUIOVector qiov;
842 struct iovec iov = {
843 .iov_base = (void *)buf,
844 .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
845 };
846
847 if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
848 return -EINVAL;
849 }
850
851 qemu_iovec_init_external(&qiov, &iov, 1);
e293b7a3 852 return bdrv_prwv_co(child, sector_num << BDRV_SECTOR_BITS,
61007b31
SH
853 &qiov, is_write, flags);
854}
855
856/* return < 0 if error. See bdrv_write() for the return codes */
fbcbbf4e 857int bdrv_read(BdrvChild *child, int64_t sector_num,
61007b31
SH
858 uint8_t *buf, int nb_sectors)
859{
e293b7a3 860 return bdrv_rw_co(child, sector_num, buf, nb_sectors, false, 0);
61007b31
SH
861}
862
61007b31
SH
863/* Return < 0 if error. Important errors are:
864 -EIO generic I/O error (may happen for all errors)
865 -ENOMEDIUM No media inserted.
866 -EINVAL Invalid sector number or nb_sectors
867 -EACCES Trying to write a read-only device
868*/
18d51c4b 869int bdrv_write(BdrvChild *child, int64_t sector_num,
61007b31
SH
870 const uint8_t *buf, int nb_sectors)
871{
e293b7a3 872 return bdrv_rw_co(child, sector_num, (uint8_t *)buf, nb_sectors, true, 0);
61007b31
SH
873}
874
720ff280 875int bdrv_pwrite_zeroes(BdrvChild *child, int64_t offset,
f5a5ca79 876 int bytes, BdrvRequestFlags flags)
61007b31 877{
74021bc4
EB
878 QEMUIOVector qiov;
879 struct iovec iov = {
880 .iov_base = NULL,
f5a5ca79 881 .iov_len = bytes,
74021bc4
EB
882 };
883
884 qemu_iovec_init_external(&qiov, &iov, 1);
e293b7a3 885 return bdrv_prwv_co(child, offset, &qiov, true,
74021bc4 886 BDRV_REQ_ZERO_WRITE | flags);
61007b31
SH
887}
888
889/*
74021bc4 890 * Completely zero out a block device with the help of bdrv_pwrite_zeroes.
61007b31
SH
891 * The operation is sped up by checking the block status and only writing
892 * zeroes to the device if they currently do not return zeroes. Optional
74021bc4 893 * flags are passed through to bdrv_pwrite_zeroes (e.g. BDRV_REQ_MAY_UNMAP,
465fe887 894 * BDRV_REQ_FUA).
61007b31
SH
895 *
896 * Returns < 0 on error, 0 on success. For error codes see bdrv_write().
897 */
720ff280 898int bdrv_make_zero(BdrvChild *child, BdrvRequestFlags flags)
61007b31 899{
237d78f8
EB
900 int ret;
901 int64_t target_size, bytes, offset = 0;
720ff280 902 BlockDriverState *bs = child->bs;
61007b31 903
7286d610
EB
904 target_size = bdrv_getlength(bs);
905 if (target_size < 0) {
906 return target_size;
61007b31
SH
907 }
908
909 for (;;) {
7286d610
EB
910 bytes = MIN(target_size - offset, BDRV_REQUEST_MAX_BYTES);
911 if (bytes <= 0) {
61007b31
SH
912 return 0;
913 }
237d78f8 914 ret = bdrv_block_status(bs, offset, bytes, &bytes, NULL, NULL);
61007b31 915 if (ret < 0) {
7286d610
EB
916 error_report("error getting block status at offset %" PRId64 ": %s",
917 offset, strerror(-ret));
61007b31
SH
918 return ret;
919 }
920 if (ret & BDRV_BLOCK_ZERO) {
237d78f8 921 offset += bytes;
61007b31
SH
922 continue;
923 }
237d78f8 924 ret = bdrv_pwrite_zeroes(child, offset, bytes, flags);
61007b31 925 if (ret < 0) {
7286d610
EB
926 error_report("error writing zeroes at offset %" PRId64 ": %s",
927 offset, strerror(-ret));
61007b31
SH
928 return ret;
929 }
237d78f8 930 offset += bytes;
61007b31
SH
931 }
932}
933
cf2ab8fc 934int bdrv_preadv(BdrvChild *child, int64_t offset, QEMUIOVector *qiov)
f1e84741
KW
935{
936 int ret;
937
e293b7a3 938 ret = bdrv_prwv_co(child, offset, qiov, false, 0);
f1e84741
KW
939 if (ret < 0) {
940 return ret;
941 }
942
943 return qiov->size;
944}
945
cf2ab8fc 946int bdrv_pread(BdrvChild *child, int64_t offset, void *buf, int bytes)
61007b31
SH
947{
948 QEMUIOVector qiov;
949 struct iovec iov = {
950 .iov_base = (void *)buf,
951 .iov_len = bytes,
952 };
61007b31
SH
953
954 if (bytes < 0) {
955 return -EINVAL;
956 }
957
958 qemu_iovec_init_external(&qiov, &iov, 1);
cf2ab8fc 959 return bdrv_preadv(child, offset, &qiov);
61007b31
SH
960}
961
d9ca2ea2 962int bdrv_pwritev(BdrvChild *child, int64_t offset, QEMUIOVector *qiov)
61007b31
SH
963{
964 int ret;
965
e293b7a3 966 ret = bdrv_prwv_co(child, offset, qiov, true, 0);
61007b31
SH
967 if (ret < 0) {
968 return ret;
969 }
970
971 return qiov->size;
972}
973
d9ca2ea2 974int bdrv_pwrite(BdrvChild *child, int64_t offset, const void *buf, int bytes)
61007b31
SH
975{
976 QEMUIOVector qiov;
977 struct iovec iov = {
978 .iov_base = (void *) buf,
979 .iov_len = bytes,
980 };
981
982 if (bytes < 0) {
983 return -EINVAL;
984 }
985
986 qemu_iovec_init_external(&qiov, &iov, 1);
d9ca2ea2 987 return bdrv_pwritev(child, offset, &qiov);
61007b31
SH
988}
989
990/*
991 * Writes to the file and ensures that no writes are reordered across this
992 * request (acts as a barrier)
993 *
994 * Returns 0 on success, -errno in error cases.
995 */
d9ca2ea2
KW
996int bdrv_pwrite_sync(BdrvChild *child, int64_t offset,
997 const void *buf, int count)
61007b31
SH
998{
999 int ret;
1000
d9ca2ea2 1001 ret = bdrv_pwrite(child, offset, buf, count);
61007b31
SH
1002 if (ret < 0) {
1003 return ret;
1004 }
1005
d9ca2ea2 1006 ret = bdrv_flush(child->bs);
855a6a93
KW
1007 if (ret < 0) {
1008 return ret;
61007b31
SH
1009 }
1010
1011 return 0;
1012}
1013
08844473
KW
1014typedef struct CoroutineIOCompletion {
1015 Coroutine *coroutine;
1016 int ret;
1017} CoroutineIOCompletion;
1018
1019static void bdrv_co_io_em_complete(void *opaque, int ret)
1020{
1021 CoroutineIOCompletion *co = opaque;
1022
1023 co->ret = ret;
b9e413dd 1024 aio_co_wake(co->coroutine);
08844473
KW
1025}
1026
166fe960
KW
1027static int coroutine_fn bdrv_driver_preadv(BlockDriverState *bs,
1028 uint64_t offset, uint64_t bytes,
1029 QEMUIOVector *qiov, int flags)
1030{
1031 BlockDriver *drv = bs->drv;
3fb06697
KW
1032 int64_t sector_num;
1033 unsigned int nb_sectors;
1034
fa166538
EB
1035 assert(!(flags & ~BDRV_REQ_MASK));
1036
d470ad42
HR
1037 if (!drv) {
1038 return -ENOMEDIUM;
1039 }
1040
3fb06697
KW
1041 if (drv->bdrv_co_preadv) {
1042 return drv->bdrv_co_preadv(bs, offset, bytes, qiov, flags);
1043 }
1044
edfab6a0 1045 if (drv->bdrv_aio_preadv) {
08844473
KW
1046 BlockAIOCB *acb;
1047 CoroutineIOCompletion co = {
1048 .coroutine = qemu_coroutine_self(),
1049 };
1050
edfab6a0
EB
1051 acb = drv->bdrv_aio_preadv(bs, offset, bytes, qiov, flags,
1052 bdrv_co_io_em_complete, &co);
08844473
KW
1053 if (acb == NULL) {
1054 return -EIO;
1055 } else {
1056 qemu_coroutine_yield();
1057 return co.ret;
1058 }
1059 }
edfab6a0
EB
1060
1061 sector_num = offset >> BDRV_SECTOR_BITS;
1062 nb_sectors = bytes >> BDRV_SECTOR_BITS;
1063
1064 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
1065 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
1066 assert((bytes >> BDRV_SECTOR_BITS) <= BDRV_REQUEST_MAX_SECTORS);
1067 assert(drv->bdrv_co_readv);
1068
1069 return drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
166fe960
KW
1070}
1071
78a07294
KW
1072static int coroutine_fn bdrv_driver_pwritev(BlockDriverState *bs,
1073 uint64_t offset, uint64_t bytes,
1074 QEMUIOVector *qiov, int flags)
1075{
1076 BlockDriver *drv = bs->drv;
3fb06697
KW
1077 int64_t sector_num;
1078 unsigned int nb_sectors;
78a07294
KW
1079 int ret;
1080
fa166538
EB
1081 assert(!(flags & ~BDRV_REQ_MASK));
1082
d470ad42
HR
1083 if (!drv) {
1084 return -ENOMEDIUM;
1085 }
1086
3fb06697 1087 if (drv->bdrv_co_pwritev) {
515c2f43
KW
1088 ret = drv->bdrv_co_pwritev(bs, offset, bytes, qiov,
1089 flags & bs->supported_write_flags);
1090 flags &= ~bs->supported_write_flags;
3fb06697
KW
1091 goto emulate_flags;
1092 }
1093
edfab6a0 1094 if (drv->bdrv_aio_pwritev) {
08844473
KW
1095 BlockAIOCB *acb;
1096 CoroutineIOCompletion co = {
1097 .coroutine = qemu_coroutine_self(),
1098 };
1099
edfab6a0
EB
1100 acb = drv->bdrv_aio_pwritev(bs, offset, bytes, qiov,
1101 flags & bs->supported_write_flags,
1102 bdrv_co_io_em_complete, &co);
1103 flags &= ~bs->supported_write_flags;
08844473 1104 if (acb == NULL) {
3fb06697 1105 ret = -EIO;
08844473
KW
1106 } else {
1107 qemu_coroutine_yield();
3fb06697 1108 ret = co.ret;
08844473 1109 }
edfab6a0
EB
1110 goto emulate_flags;
1111 }
1112
1113 sector_num = offset >> BDRV_SECTOR_BITS;
1114 nb_sectors = bytes >> BDRV_SECTOR_BITS;
1115
1116 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
1117 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
1118 assert((bytes >> BDRV_SECTOR_BITS) <= BDRV_REQUEST_MAX_SECTORS);
1119
e18a58b4
EB
1120 assert(drv->bdrv_co_writev);
1121 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov,
1122 flags & bs->supported_write_flags);
1123 flags &= ~bs->supported_write_flags;
78a07294 1124
3fb06697 1125emulate_flags:
4df863f3 1126 if (ret == 0 && (flags & BDRV_REQ_FUA)) {
78a07294
KW
1127 ret = bdrv_co_flush(bs);
1128 }
1129
1130 return ret;
1131}
1132
29a298af
PB
1133static int coroutine_fn
1134bdrv_driver_pwritev_compressed(BlockDriverState *bs, uint64_t offset,
1135 uint64_t bytes, QEMUIOVector *qiov)
1136{
1137 BlockDriver *drv = bs->drv;
1138
d470ad42
HR
1139 if (!drv) {
1140 return -ENOMEDIUM;
1141 }
1142
29a298af
PB
1143 if (!drv->bdrv_co_pwritev_compressed) {
1144 return -ENOTSUP;
1145 }
1146
29a298af
PB
1147 return drv->bdrv_co_pwritev_compressed(bs, offset, bytes, qiov);
1148}
1149
85c97ca7 1150static int coroutine_fn bdrv_co_do_copy_on_readv(BdrvChild *child,
244483e6 1151 int64_t offset, unsigned int bytes, QEMUIOVector *qiov)
61007b31 1152{
85c97ca7
KW
1153 BlockDriverState *bs = child->bs;
1154
61007b31
SH
1155 /* Perform I/O through a temporary buffer so that users who scribble over
1156 * their read buffer while the operation is in progress do not end up
1157 * modifying the image file. This is critical for zero-copy guest I/O
1158 * where anything might happen inside guest memory.
1159 */
1160 void *bounce_buffer;
1161
1162 BlockDriver *drv = bs->drv;
1163 struct iovec iov;
cb2e2878 1164 QEMUIOVector local_qiov;
244483e6 1165 int64_t cluster_offset;
7cfd5275 1166 int64_t cluster_bytes;
61007b31
SH
1167 size_t skip_bytes;
1168 int ret;
cb2e2878
EB
1169 int max_transfer = MIN_NON_ZERO(bs->bl.max_transfer,
1170 BDRV_REQUEST_MAX_BYTES);
1171 unsigned int progress = 0;
61007b31 1172
d470ad42
HR
1173 if (!drv) {
1174 return -ENOMEDIUM;
1175 }
1176
1bf03e66
KW
1177 /* FIXME We cannot require callers to have write permissions when all they
1178 * are doing is a read request. If we did things right, write permissions
1179 * would be obtained anyway, but internally by the copy-on-read code. As
765d9df9 1180 * long as it is implemented here rather than in a separate filter driver,
1bf03e66
KW
1181 * the copy-on-read code doesn't have its own BdrvChild, however, for which
1182 * it could request permissions. Therefore we have to bypass the permission
1183 * system for the moment. */
1184 // assert(child->perm & (BLK_PERM_WRITE_UNCHANGED | BLK_PERM_WRITE));
afa4b293 1185
61007b31 1186 /* Cover entire cluster so no additional backing file I/O is required when
cb2e2878
EB
1187 * allocating cluster in the image file. Note that this value may exceed
1188 * BDRV_REQUEST_MAX_BYTES (even when the original read did not), which
1189 * is one reason we loop rather than doing it all at once.
61007b31 1190 */
244483e6 1191 bdrv_round_to_clusters(bs, offset, bytes, &cluster_offset, &cluster_bytes);
cb2e2878 1192 skip_bytes = offset - cluster_offset;
61007b31 1193
244483e6
KW
1194 trace_bdrv_co_do_copy_on_readv(bs, offset, bytes,
1195 cluster_offset, cluster_bytes);
61007b31 1196
cb2e2878
EB
1197 bounce_buffer = qemu_try_blockalign(bs,
1198 MIN(MIN(max_transfer, cluster_bytes),
1199 MAX_BOUNCE_BUFFER));
61007b31
SH
1200 if (bounce_buffer == NULL) {
1201 ret = -ENOMEM;
1202 goto err;
1203 }
1204
cb2e2878
EB
1205 while (cluster_bytes) {
1206 int64_t pnum;
61007b31 1207
cb2e2878
EB
1208 ret = bdrv_is_allocated(bs, cluster_offset,
1209 MIN(cluster_bytes, max_transfer), &pnum);
1210 if (ret < 0) {
1211 /* Safe to treat errors in querying allocation as if
1212 * unallocated; we'll probably fail again soon on the
1213 * read, but at least that will set a decent errno.
1214 */
1215 pnum = MIN(cluster_bytes, max_transfer);
1216 }
61007b31 1217
b0ddcbbb
KW
1218 /* Stop at EOF if the image ends in the middle of the cluster */
1219 if (ret == 0 && pnum == 0) {
1220 assert(progress >= bytes);
1221 break;
1222 }
1223
cb2e2878 1224 assert(skip_bytes < pnum);
61007b31 1225
cb2e2878
EB
1226 if (ret <= 0) {
1227 /* Must copy-on-read; use the bounce buffer */
1228 iov.iov_base = bounce_buffer;
1229 iov.iov_len = pnum = MIN(pnum, MAX_BOUNCE_BUFFER);
1230 qemu_iovec_init_external(&local_qiov, &iov, 1);
61007b31 1231
cb2e2878
EB
1232 ret = bdrv_driver_preadv(bs, cluster_offset, pnum,
1233 &local_qiov, 0);
1234 if (ret < 0) {
1235 goto err;
1236 }
1237
1238 bdrv_debug_event(bs, BLKDBG_COR_WRITE);
1239 if (drv->bdrv_co_pwrite_zeroes &&
1240 buffer_is_zero(bounce_buffer, pnum)) {
1241 /* FIXME: Should we (perhaps conditionally) be setting
1242 * BDRV_REQ_MAY_UNMAP, if it will allow for a sparser copy
1243 * that still correctly reads as zero? */
7adcf59f
HR
1244 ret = bdrv_co_do_pwrite_zeroes(bs, cluster_offset, pnum,
1245 BDRV_REQ_WRITE_UNCHANGED);
cb2e2878
EB
1246 } else {
1247 /* This does not change the data on the disk, it is not
1248 * necessary to flush even in cache=writethrough mode.
1249 */
1250 ret = bdrv_driver_pwritev(bs, cluster_offset, pnum,
7adcf59f
HR
1251 &local_qiov,
1252 BDRV_REQ_WRITE_UNCHANGED);
cb2e2878
EB
1253 }
1254
1255 if (ret < 0) {
1256 /* It might be okay to ignore write errors for guest
1257 * requests. If this is a deliberate copy-on-read
1258 * then we don't want to ignore the error. Simply
1259 * report it in all cases.
1260 */
1261 goto err;
1262 }
1263
1264 qemu_iovec_from_buf(qiov, progress, bounce_buffer + skip_bytes,
1265 pnum - skip_bytes);
1266 } else {
1267 /* Read directly into the destination */
1268 qemu_iovec_init(&local_qiov, qiov->niov);
1269 qemu_iovec_concat(&local_qiov, qiov, progress, pnum - skip_bytes);
1270 ret = bdrv_driver_preadv(bs, offset + progress, local_qiov.size,
1271 &local_qiov, 0);
1272 qemu_iovec_destroy(&local_qiov);
1273 if (ret < 0) {
1274 goto err;
1275 }
1276 }
1277
1278 cluster_offset += pnum;
1279 cluster_bytes -= pnum;
1280 progress += pnum - skip_bytes;
1281 skip_bytes = 0;
1282 }
1283 ret = 0;
61007b31
SH
1284
1285err:
1286 qemu_vfree(bounce_buffer);
1287 return ret;
1288}
1289
1290/*
1291 * Forwards an already correctly aligned request to the BlockDriver. This
1a62d0ac
EB
1292 * handles copy on read, zeroing after EOF, and fragmentation of large
1293 * reads; any other features must be implemented by the caller.
61007b31 1294 */
85c97ca7 1295static int coroutine_fn bdrv_aligned_preadv(BdrvChild *child,
61007b31
SH
1296 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
1297 int64_t align, QEMUIOVector *qiov, int flags)
1298{
85c97ca7 1299 BlockDriverState *bs = child->bs;
c9d20029 1300 int64_t total_bytes, max_bytes;
1a62d0ac
EB
1301 int ret = 0;
1302 uint64_t bytes_remaining = bytes;
1303 int max_transfer;
61007b31 1304
49c07526
KW
1305 assert(is_power_of_2(align));
1306 assert((offset & (align - 1)) == 0);
1307 assert((bytes & (align - 1)) == 0);
61007b31 1308 assert(!qiov || bytes == qiov->size);
abb06c5a 1309 assert((bs->open_flags & BDRV_O_NO_IO) == 0);
1a62d0ac
EB
1310 max_transfer = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_transfer, INT_MAX),
1311 align);
a604fa2b
EB
1312
1313 /* TODO: We would need a per-BDS .supported_read_flags and
1314 * potential fallback support, if we ever implement any read flags
1315 * to pass through to drivers. For now, there aren't any
1316 * passthrough flags. */
1317 assert(!(flags & ~(BDRV_REQ_NO_SERIALISING | BDRV_REQ_COPY_ON_READ)));
61007b31
SH
1318
1319 /* Handle Copy on Read and associated serialisation */
1320 if (flags & BDRV_REQ_COPY_ON_READ) {
1321 /* If we touch the same cluster it counts as an overlap. This
1322 * guarantees that allocating writes will be serialized and not race
1323 * with each other for the same cluster. For example, in copy-on-read
1324 * it ensures that the CoR read and write operations are atomic and
1325 * guest writes cannot interleave between them. */
1326 mark_request_serialising(req, bdrv_get_cluster_size(bs));
1327 }
1328
09d2f948
VSO
1329 /* BDRV_REQ_SERIALISING is only for write operation */
1330 assert(!(flags & BDRV_REQ_SERIALISING));
1331
61408b25
FZ
1332 if (!(flags & BDRV_REQ_NO_SERIALISING)) {
1333 wait_serialising_requests(req);
1334 }
61007b31
SH
1335
1336 if (flags & BDRV_REQ_COPY_ON_READ) {
d6a644bb 1337 int64_t pnum;
61007b31 1338
88e63df2 1339 ret = bdrv_is_allocated(bs, offset, bytes, &pnum);
61007b31
SH
1340 if (ret < 0) {
1341 goto out;
1342 }
1343
88e63df2 1344 if (!ret || pnum != bytes) {
85c97ca7 1345 ret = bdrv_co_do_copy_on_readv(child, offset, bytes, qiov);
61007b31
SH
1346 goto out;
1347 }
1348 }
1349
1a62d0ac 1350 /* Forward the request to the BlockDriver, possibly fragmenting it */
c9d20029
KW
1351 total_bytes = bdrv_getlength(bs);
1352 if (total_bytes < 0) {
1353 ret = total_bytes;
1354 goto out;
1355 }
61007b31 1356
c9d20029 1357 max_bytes = ROUND_UP(MAX(0, total_bytes - offset), align);
1a62d0ac 1358 if (bytes <= max_bytes && bytes <= max_transfer) {
c9d20029 1359 ret = bdrv_driver_preadv(bs, offset, bytes, qiov, 0);
1a62d0ac
EB
1360 goto out;
1361 }
61007b31 1362
1a62d0ac
EB
1363 while (bytes_remaining) {
1364 int num;
61007b31 1365
1a62d0ac
EB
1366 if (max_bytes) {
1367 QEMUIOVector local_qiov;
61007b31 1368
1a62d0ac
EB
1369 num = MIN(bytes_remaining, MIN(max_bytes, max_transfer));
1370 assert(num);
1371 qemu_iovec_init(&local_qiov, qiov->niov);
1372 qemu_iovec_concat(&local_qiov, qiov, bytes - bytes_remaining, num);
61007b31 1373
1a62d0ac
EB
1374 ret = bdrv_driver_preadv(bs, offset + bytes - bytes_remaining,
1375 num, &local_qiov, 0);
1376 max_bytes -= num;
1377 qemu_iovec_destroy(&local_qiov);
1378 } else {
1379 num = bytes_remaining;
1380 ret = qemu_iovec_memset(qiov, bytes - bytes_remaining, 0,
1381 bytes_remaining);
1382 }
1383 if (ret < 0) {
1384 goto out;
1385 }
1386 bytes_remaining -= num;
61007b31
SH
1387 }
1388
1389out:
1a62d0ac 1390 return ret < 0 ? ret : 0;
61007b31
SH
1391}
1392
61007b31
SH
1393/*
1394 * Handle a read request in coroutine context
1395 */
a03ef88f 1396int coroutine_fn bdrv_co_preadv(BdrvChild *child,
61007b31
SH
1397 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
1398 BdrvRequestFlags flags)
1399{
a03ef88f 1400 BlockDriverState *bs = child->bs;
61007b31
SH
1401 BlockDriver *drv = bs->drv;
1402 BdrvTrackedRequest req;
1403
a5b8dd2c 1404 uint64_t align = bs->bl.request_alignment;
61007b31
SH
1405 uint8_t *head_buf = NULL;
1406 uint8_t *tail_buf = NULL;
1407 QEMUIOVector local_qiov;
1408 bool use_local_qiov = false;
1409 int ret;
1410
f42cf447
DB
1411 trace_bdrv_co_preadv(child->bs, offset, bytes, flags);
1412
61007b31
SH
1413 if (!drv) {
1414 return -ENOMEDIUM;
1415 }
1416
1417 ret = bdrv_check_byte_request(bs, offset, bytes);
1418 if (ret < 0) {
1419 return ret;
1420 }
1421
99723548
PB
1422 bdrv_inc_in_flight(bs);
1423
9568b511 1424 /* Don't do copy-on-read if we read data before write operation */
d3faa13e 1425 if (atomic_read(&bs->copy_on_read) && !(flags & BDRV_REQ_NO_SERIALISING)) {
61007b31
SH
1426 flags |= BDRV_REQ_COPY_ON_READ;
1427 }
1428
61007b31
SH
1429 /* Align read if necessary by padding qiov */
1430 if (offset & (align - 1)) {
1431 head_buf = qemu_blockalign(bs, align);
1432 qemu_iovec_init(&local_qiov, qiov->niov + 2);
1433 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
1434 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
1435 use_local_qiov = true;
1436
1437 bytes += offset & (align - 1);
1438 offset = offset & ~(align - 1);
1439 }
1440
1441 if ((offset + bytes) & (align - 1)) {
1442 if (!use_local_qiov) {
1443 qemu_iovec_init(&local_qiov, qiov->niov + 1);
1444 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
1445 use_local_qiov = true;
1446 }
1447 tail_buf = qemu_blockalign(bs, align);
1448 qemu_iovec_add(&local_qiov, tail_buf,
1449 align - ((offset + bytes) & (align - 1)));
1450
1451 bytes = ROUND_UP(bytes, align);
1452 }
1453
ebde595c 1454 tracked_request_begin(&req, bs, offset, bytes, BDRV_TRACKED_READ);
85c97ca7 1455 ret = bdrv_aligned_preadv(child, &req, offset, bytes, align,
61007b31
SH
1456 use_local_qiov ? &local_qiov : qiov,
1457 flags);
1458 tracked_request_end(&req);
99723548 1459 bdrv_dec_in_flight(bs);
61007b31
SH
1460
1461 if (use_local_qiov) {
1462 qemu_iovec_destroy(&local_qiov);
1463 qemu_vfree(head_buf);
1464 qemu_vfree(tail_buf);
1465 }
1466
1467 return ret;
1468}
1469
d05aa8bb 1470static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
f5a5ca79 1471 int64_t offset, int bytes, BdrvRequestFlags flags)
61007b31
SH
1472{
1473 BlockDriver *drv = bs->drv;
1474 QEMUIOVector qiov;
1475 struct iovec iov = {0};
1476 int ret = 0;
465fe887 1477 bool need_flush = false;
443668ca
DL
1478 int head = 0;
1479 int tail = 0;
61007b31 1480
cf081fca 1481 int max_write_zeroes = MIN_NON_ZERO(bs->bl.max_pwrite_zeroes, INT_MAX);
a5b8dd2c
EB
1482 int alignment = MAX(bs->bl.pwrite_zeroes_alignment,
1483 bs->bl.request_alignment);
cb2e2878 1484 int max_transfer = MIN_NON_ZERO(bs->bl.max_transfer, MAX_BOUNCE_BUFFER);
d05aa8bb 1485
d470ad42
HR
1486 if (!drv) {
1487 return -ENOMEDIUM;
1488 }
1489
b8d0a980
EB
1490 assert(alignment % bs->bl.request_alignment == 0);
1491 head = offset % alignment;
f5a5ca79 1492 tail = (offset + bytes) % alignment;
b8d0a980
EB
1493 max_write_zeroes = QEMU_ALIGN_DOWN(max_write_zeroes, alignment);
1494 assert(max_write_zeroes >= bs->bl.request_alignment);
61007b31 1495
f5a5ca79
MP
1496 while (bytes > 0 && !ret) {
1497 int num = bytes;
61007b31
SH
1498
1499 /* Align request. Block drivers can expect the "bulk" of the request
443668ca
DL
1500 * to be aligned, and that unaligned requests do not cross cluster
1501 * boundaries.
61007b31 1502 */
443668ca 1503 if (head) {
b2f95fee
EB
1504 /* Make a small request up to the first aligned sector. For
1505 * convenience, limit this request to max_transfer even if
1506 * we don't need to fall back to writes. */
f5a5ca79 1507 num = MIN(MIN(bytes, max_transfer), alignment - head);
b2f95fee
EB
1508 head = (head + num) % alignment;
1509 assert(num < max_write_zeroes);
d05aa8bb 1510 } else if (tail && num > alignment) {
443668ca
DL
1511 /* Shorten the request to the last aligned sector. */
1512 num -= tail;
61007b31
SH
1513 }
1514
1515 /* limit request size */
1516 if (num > max_write_zeroes) {
1517 num = max_write_zeroes;
1518 }
1519
1520 ret = -ENOTSUP;
1521 /* First try the efficient write zeroes operation */
d05aa8bb
EB
1522 if (drv->bdrv_co_pwrite_zeroes) {
1523 ret = drv->bdrv_co_pwrite_zeroes(bs, offset, num,
1524 flags & bs->supported_zero_flags);
1525 if (ret != -ENOTSUP && (flags & BDRV_REQ_FUA) &&
1526 !(bs->supported_zero_flags & BDRV_REQ_FUA)) {
1527 need_flush = true;
1528 }
465fe887
EB
1529 } else {
1530 assert(!bs->supported_zero_flags);
61007b31
SH
1531 }
1532
1533 if (ret == -ENOTSUP) {
1534 /* Fall back to bounce buffer if write zeroes is unsupported */
465fe887
EB
1535 BdrvRequestFlags write_flags = flags & ~BDRV_REQ_ZERO_WRITE;
1536
1537 if ((flags & BDRV_REQ_FUA) &&
1538 !(bs->supported_write_flags & BDRV_REQ_FUA)) {
1539 /* No need for bdrv_driver_pwrite() to do a fallback
1540 * flush on each chunk; use just one at the end */
1541 write_flags &= ~BDRV_REQ_FUA;
1542 need_flush = true;
1543 }
5def6b80 1544 num = MIN(num, max_transfer);
d05aa8bb 1545 iov.iov_len = num;
61007b31 1546 if (iov.iov_base == NULL) {
d05aa8bb 1547 iov.iov_base = qemu_try_blockalign(bs, num);
61007b31
SH
1548 if (iov.iov_base == NULL) {
1549 ret = -ENOMEM;
1550 goto fail;
1551 }
d05aa8bb 1552 memset(iov.iov_base, 0, num);
61007b31
SH
1553 }
1554 qemu_iovec_init_external(&qiov, &iov, 1);
1555
d05aa8bb 1556 ret = bdrv_driver_pwritev(bs, offset, num, &qiov, write_flags);
61007b31
SH
1557
1558 /* Keep bounce buffer around if it is big enough for all
1559 * all future requests.
1560 */
5def6b80 1561 if (num < max_transfer) {
61007b31
SH
1562 qemu_vfree(iov.iov_base);
1563 iov.iov_base = NULL;
1564 }
1565 }
1566
d05aa8bb 1567 offset += num;
f5a5ca79 1568 bytes -= num;
61007b31
SH
1569 }
1570
1571fail:
465fe887
EB
1572 if (ret == 0 && need_flush) {
1573 ret = bdrv_co_flush(bs);
1574 }
61007b31
SH
1575 qemu_vfree(iov.iov_base);
1576 return ret;
1577}
1578
85fe2479
FZ
1579static inline int coroutine_fn
1580bdrv_co_write_req_prepare(BdrvChild *child, int64_t offset, uint64_t bytes,
1581 BdrvTrackedRequest *req, int flags)
1582{
1583 BlockDriverState *bs = child->bs;
1584 bool waited;
1585 int64_t end_sector = DIV_ROUND_UP(offset + bytes, BDRV_SECTOR_SIZE);
1586
1587 if (bs->read_only) {
1588 return -EPERM;
1589 }
1590
1591 /* BDRV_REQ_NO_SERIALISING is only for read operation */
1592 assert(!(flags & BDRV_REQ_NO_SERIALISING));
1593 assert(!(bs->open_flags & BDRV_O_INACTIVE));
1594 assert((bs->open_flags & BDRV_O_NO_IO) == 0);
1595 assert(!(flags & ~BDRV_REQ_MASK));
1596
1597 if (flags & BDRV_REQ_SERIALISING) {
1598 mark_request_serialising(req, bdrv_get_cluster_size(bs));
1599 }
1600
1601 waited = wait_serialising_requests(req);
1602
1603 assert(!waited || !req->serialising ||
1604 is_request_serialising_and_aligned(req));
1605 assert(req->overlap_offset <= offset);
1606 assert(offset + bytes <= req->overlap_offset + req->overlap_bytes);
1607
1608 if (flags & BDRV_REQ_WRITE_UNCHANGED) {
1609 assert(child->perm & (BLK_PERM_WRITE_UNCHANGED | BLK_PERM_WRITE));
1610 } else {
1611 assert(child->perm & BLK_PERM_WRITE);
1612 }
1613 assert(end_sector <= bs->total_sectors || child->perm & BLK_PERM_RESIZE);
1614 return notifier_with_return_list_notify(&bs->before_write_notifiers, req);
1615}
1616
1617static inline void coroutine_fn
1618bdrv_co_write_req_finish(BdrvChild *child, int64_t offset, uint64_t bytes,
1619 BdrvTrackedRequest *req, int ret)
1620{
1621 int64_t end_sector = DIV_ROUND_UP(offset + bytes, BDRV_SECTOR_SIZE);
1622 BlockDriverState *bs = child->bs;
1623
1624 atomic_inc(&bs->write_gen);
85fe2479 1625
00695c27
FZ
1626 /*
1627 * Discard cannot extend the image, but in error handling cases, such as
1628 * when reverting a qcow2 cluster allocation, the discarded range can pass
1629 * the end of image file, so we cannot assert about BDRV_TRACKED_DISCARD
1630 * here. Instead, just skip it, since semantically a discard request
1631 * beyond EOF cannot expand the image anyway.
1632 */
7f8f03ef 1633 if (ret == 0 &&
00695c27
FZ
1634 end_sector > bs->total_sectors &&
1635 req->type != BDRV_TRACKED_DISCARD) {
7f8f03ef
FZ
1636 bs->total_sectors = end_sector;
1637 bdrv_parent_cb_resize(bs);
1638 bdrv_dirty_bitmap_truncate(bs, end_sector << BDRV_SECTOR_BITS);
85fe2479 1639 }
00695c27
FZ
1640 if (req->bytes) {
1641 switch (req->type) {
1642 case BDRV_TRACKED_WRITE:
1643 stat64_max(&bs->wr_highest_offset, offset + bytes);
1644 /* fall through, to set dirty bits */
1645 case BDRV_TRACKED_DISCARD:
1646 bdrv_set_dirty(bs, offset, bytes);
1647 break;
1648 default:
1649 break;
1650 }
1651 }
85fe2479
FZ
1652}
1653
61007b31 1654/*
04ed95f4
EB
1655 * Forwards an already correctly aligned write request to the BlockDriver,
1656 * after possibly fragmenting it.
61007b31 1657 */
85c97ca7 1658static int coroutine_fn bdrv_aligned_pwritev(BdrvChild *child,
61007b31 1659 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
cff86b38 1660 int64_t align, QEMUIOVector *qiov, int flags)
61007b31 1661{
85c97ca7 1662 BlockDriverState *bs = child->bs;
61007b31 1663 BlockDriver *drv = bs->drv;
61007b31
SH
1664 int ret;
1665
04ed95f4
EB
1666 uint64_t bytes_remaining = bytes;
1667 int max_transfer;
61007b31 1668
d470ad42
HR
1669 if (!drv) {
1670 return -ENOMEDIUM;
1671 }
1672
d6883bc9
VSO
1673 if (bdrv_has_readonly_bitmaps(bs)) {
1674 return -EPERM;
1675 }
1676
cff86b38
EB
1677 assert(is_power_of_2(align));
1678 assert((offset & (align - 1)) == 0);
1679 assert((bytes & (align - 1)) == 0);
61007b31 1680 assert(!qiov || bytes == qiov->size);
04ed95f4
EB
1681 max_transfer = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_transfer, INT_MAX),
1682 align);
61007b31 1683
85fe2479 1684 ret = bdrv_co_write_req_prepare(child, offset, bytes, req, flags);
61007b31
SH
1685
1686 if (!ret && bs->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF &&
c1499a5e 1687 !(flags & BDRV_REQ_ZERO_WRITE) && drv->bdrv_co_pwrite_zeroes &&
61007b31
SH
1688 qemu_iovec_is_zero(qiov)) {
1689 flags |= BDRV_REQ_ZERO_WRITE;
1690 if (bs->detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP) {
1691 flags |= BDRV_REQ_MAY_UNMAP;
1692 }
1693 }
1694
1695 if (ret < 0) {
1696 /* Do nothing, write notifier decided to fail this request */
1697 } else if (flags & BDRV_REQ_ZERO_WRITE) {
9a4f4c31 1698 bdrv_debug_event(bs, BLKDBG_PWRITEV_ZERO);
9896c876 1699 ret = bdrv_co_do_pwrite_zeroes(bs, offset, bytes, flags);
3ea1a091
PB
1700 } else if (flags & BDRV_REQ_WRITE_COMPRESSED) {
1701 ret = bdrv_driver_pwritev_compressed(bs, offset, bytes, qiov);
04ed95f4 1702 } else if (bytes <= max_transfer) {
9a4f4c31 1703 bdrv_debug_event(bs, BLKDBG_PWRITEV);
78a07294 1704 ret = bdrv_driver_pwritev(bs, offset, bytes, qiov, flags);
04ed95f4
EB
1705 } else {
1706 bdrv_debug_event(bs, BLKDBG_PWRITEV);
1707 while (bytes_remaining) {
1708 int num = MIN(bytes_remaining, max_transfer);
1709 QEMUIOVector local_qiov;
1710 int local_flags = flags;
1711
1712 assert(num);
1713 if (num < bytes_remaining && (flags & BDRV_REQ_FUA) &&
1714 !(bs->supported_write_flags & BDRV_REQ_FUA)) {
1715 /* If FUA is going to be emulated by flush, we only
1716 * need to flush on the last iteration */
1717 local_flags &= ~BDRV_REQ_FUA;
1718 }
1719 qemu_iovec_init(&local_qiov, qiov->niov);
1720 qemu_iovec_concat(&local_qiov, qiov, bytes - bytes_remaining, num);
1721
1722 ret = bdrv_driver_pwritev(bs, offset + bytes - bytes_remaining,
1723 num, &local_qiov, local_flags);
1724 qemu_iovec_destroy(&local_qiov);
1725 if (ret < 0) {
1726 break;
1727 }
1728 bytes_remaining -= num;
1729 }
61007b31 1730 }
9a4f4c31 1731 bdrv_debug_event(bs, BLKDBG_PWRITEV_DONE);
61007b31 1732
61007b31 1733 if (ret >= 0) {
04ed95f4 1734 ret = 0;
61007b31 1735 }
85fe2479 1736 bdrv_co_write_req_finish(child, offset, bytes, req, ret);
61007b31
SH
1737
1738 return ret;
1739}
1740
85c97ca7 1741static int coroutine_fn bdrv_co_do_zero_pwritev(BdrvChild *child,
9eeb6dd1
FZ
1742 int64_t offset,
1743 unsigned int bytes,
1744 BdrvRequestFlags flags,
1745 BdrvTrackedRequest *req)
1746{
85c97ca7 1747 BlockDriverState *bs = child->bs;
9eeb6dd1
FZ
1748 uint8_t *buf = NULL;
1749 QEMUIOVector local_qiov;
1750 struct iovec iov;
a5b8dd2c 1751 uint64_t align = bs->bl.request_alignment;
9eeb6dd1
FZ
1752 unsigned int head_padding_bytes, tail_padding_bytes;
1753 int ret = 0;
1754
1755 head_padding_bytes = offset & (align - 1);
f13ce1be 1756 tail_padding_bytes = (align - (offset + bytes)) & (align - 1);
9eeb6dd1
FZ
1757
1758
1759 assert(flags & BDRV_REQ_ZERO_WRITE);
1760 if (head_padding_bytes || tail_padding_bytes) {
1761 buf = qemu_blockalign(bs, align);
1762 iov = (struct iovec) {
1763 .iov_base = buf,
1764 .iov_len = align,
1765 };
1766 qemu_iovec_init_external(&local_qiov, &iov, 1);
1767 }
1768 if (head_padding_bytes) {
1769 uint64_t zero_bytes = MIN(bytes, align - head_padding_bytes);
1770
1771 /* RMW the unaligned part before head. */
1772 mark_request_serialising(req, align);
1773 wait_serialising_requests(req);
9a4f4c31 1774 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_HEAD);
85c97ca7 1775 ret = bdrv_aligned_preadv(child, req, offset & ~(align - 1), align,
9eeb6dd1
FZ
1776 align, &local_qiov, 0);
1777 if (ret < 0) {
1778 goto fail;
1779 }
9a4f4c31 1780 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
9eeb6dd1
FZ
1781
1782 memset(buf + head_padding_bytes, 0, zero_bytes);
85c97ca7 1783 ret = bdrv_aligned_pwritev(child, req, offset & ~(align - 1), align,
cff86b38 1784 align, &local_qiov,
9eeb6dd1
FZ
1785 flags & ~BDRV_REQ_ZERO_WRITE);
1786 if (ret < 0) {
1787 goto fail;
1788 }
1789 offset += zero_bytes;
1790 bytes -= zero_bytes;
1791 }
1792
1793 assert(!bytes || (offset & (align - 1)) == 0);
1794 if (bytes >= align) {
1795 /* Write the aligned part in the middle. */
1796 uint64_t aligned_bytes = bytes & ~(align - 1);
85c97ca7 1797 ret = bdrv_aligned_pwritev(child, req, offset, aligned_bytes, align,
9eeb6dd1
FZ
1798 NULL, flags);
1799 if (ret < 0) {
1800 goto fail;
1801 }
1802 bytes -= aligned_bytes;
1803 offset += aligned_bytes;
1804 }
1805
1806 assert(!bytes || (offset & (align - 1)) == 0);
1807 if (bytes) {
1808 assert(align == tail_padding_bytes + bytes);
1809 /* RMW the unaligned part after tail. */
1810 mark_request_serialising(req, align);
1811 wait_serialising_requests(req);
9a4f4c31 1812 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_TAIL);
85c97ca7 1813 ret = bdrv_aligned_preadv(child, req, offset, align,
9eeb6dd1
FZ
1814 align, &local_qiov, 0);
1815 if (ret < 0) {
1816 goto fail;
1817 }
9a4f4c31 1818 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
9eeb6dd1
FZ
1819
1820 memset(buf, 0, bytes);
85c97ca7 1821 ret = bdrv_aligned_pwritev(child, req, offset, align, align,
9eeb6dd1
FZ
1822 &local_qiov, flags & ~BDRV_REQ_ZERO_WRITE);
1823 }
1824fail:
1825 qemu_vfree(buf);
1826 return ret;
1827
1828}
1829
61007b31
SH
1830/*
1831 * Handle a write request in coroutine context
1832 */
a03ef88f 1833int coroutine_fn bdrv_co_pwritev(BdrvChild *child,
61007b31
SH
1834 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
1835 BdrvRequestFlags flags)
1836{
a03ef88f 1837 BlockDriverState *bs = child->bs;
61007b31 1838 BdrvTrackedRequest req;
a5b8dd2c 1839 uint64_t align = bs->bl.request_alignment;
61007b31
SH
1840 uint8_t *head_buf = NULL;
1841 uint8_t *tail_buf = NULL;
1842 QEMUIOVector local_qiov;
1843 bool use_local_qiov = false;
1844 int ret;
1845
f42cf447
DB
1846 trace_bdrv_co_pwritev(child->bs, offset, bytes, flags);
1847
61007b31
SH
1848 if (!bs->drv) {
1849 return -ENOMEDIUM;
1850 }
61007b31
SH
1851
1852 ret = bdrv_check_byte_request(bs, offset, bytes);
1853 if (ret < 0) {
1854 return ret;
1855 }
1856
99723548 1857 bdrv_inc_in_flight(bs);
61007b31
SH
1858 /*
1859 * Align write if necessary by performing a read-modify-write cycle.
1860 * Pad qiov with the read parts and be sure to have a tracked request not
1861 * only for bdrv_aligned_pwritev, but also for the reads of the RMW cycle.
1862 */
ebde595c 1863 tracked_request_begin(&req, bs, offset, bytes, BDRV_TRACKED_WRITE);
61007b31 1864
18a59f03 1865 if (flags & BDRV_REQ_ZERO_WRITE) {
85c97ca7 1866 ret = bdrv_co_do_zero_pwritev(child, offset, bytes, flags, &req);
9eeb6dd1
FZ
1867 goto out;
1868 }
1869
61007b31
SH
1870 if (offset & (align - 1)) {
1871 QEMUIOVector head_qiov;
1872 struct iovec head_iov;
1873
1874 mark_request_serialising(&req, align);
1875 wait_serialising_requests(&req);
1876
1877 head_buf = qemu_blockalign(bs, align);
1878 head_iov = (struct iovec) {
1879 .iov_base = head_buf,
1880 .iov_len = align,
1881 };
1882 qemu_iovec_init_external(&head_qiov, &head_iov, 1);
1883
9a4f4c31 1884 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_HEAD);
85c97ca7 1885 ret = bdrv_aligned_preadv(child, &req, offset & ~(align - 1), align,
61007b31
SH
1886 align, &head_qiov, 0);
1887 if (ret < 0) {
1888 goto fail;
1889 }
9a4f4c31 1890 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
61007b31
SH
1891
1892 qemu_iovec_init(&local_qiov, qiov->niov + 2);
1893 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
1894 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
1895 use_local_qiov = true;
1896
1897 bytes += offset & (align - 1);
1898 offset = offset & ~(align - 1);
117bc3fa
PL
1899
1900 /* We have read the tail already if the request is smaller
1901 * than one aligned block.
1902 */
1903 if (bytes < align) {
1904 qemu_iovec_add(&local_qiov, head_buf + bytes, align - bytes);
1905 bytes = align;
1906 }
61007b31
SH
1907 }
1908
1909 if ((offset + bytes) & (align - 1)) {
1910 QEMUIOVector tail_qiov;
1911 struct iovec tail_iov;
1912 size_t tail_bytes;
1913 bool waited;
1914
1915 mark_request_serialising(&req, align);
1916 waited = wait_serialising_requests(&req);
1917 assert(!waited || !use_local_qiov);
1918
1919 tail_buf = qemu_blockalign(bs, align);
1920 tail_iov = (struct iovec) {
1921 .iov_base = tail_buf,
1922 .iov_len = align,
1923 };
1924 qemu_iovec_init_external(&tail_qiov, &tail_iov, 1);
1925
9a4f4c31 1926 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_TAIL);
85c97ca7
KW
1927 ret = bdrv_aligned_preadv(child, &req, (offset + bytes) & ~(align - 1),
1928 align, align, &tail_qiov, 0);
61007b31
SH
1929 if (ret < 0) {
1930 goto fail;
1931 }
9a4f4c31 1932 bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
61007b31
SH
1933
1934 if (!use_local_qiov) {
1935 qemu_iovec_init(&local_qiov, qiov->niov + 1);
1936 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
1937 use_local_qiov = true;
1938 }
1939
1940 tail_bytes = (offset + bytes) & (align - 1);
1941 qemu_iovec_add(&local_qiov, tail_buf + tail_bytes, align - tail_bytes);
1942
1943 bytes = ROUND_UP(bytes, align);
1944 }
1945
85c97ca7 1946 ret = bdrv_aligned_pwritev(child, &req, offset, bytes, align,
3ea1a091
PB
1947 use_local_qiov ? &local_qiov : qiov,
1948 flags);
61007b31
SH
1949
1950fail:
61007b31
SH
1951
1952 if (use_local_qiov) {
1953 qemu_iovec_destroy(&local_qiov);
1954 }
1955 qemu_vfree(head_buf);
1956 qemu_vfree(tail_buf);
9eeb6dd1
FZ
1957out:
1958 tracked_request_end(&req);
99723548 1959 bdrv_dec_in_flight(bs);
61007b31
SH
1960 return ret;
1961}
1962
a03ef88f 1963int coroutine_fn bdrv_co_pwrite_zeroes(BdrvChild *child, int64_t offset,
f5a5ca79 1964 int bytes, BdrvRequestFlags flags)
61007b31 1965{
f5a5ca79 1966 trace_bdrv_co_pwrite_zeroes(child->bs, offset, bytes, flags);
61007b31 1967
a03ef88f 1968 if (!(child->bs->open_flags & BDRV_O_UNMAP)) {
61007b31
SH
1969 flags &= ~BDRV_REQ_MAY_UNMAP;
1970 }
61007b31 1971
f5a5ca79 1972 return bdrv_co_pwritev(child, offset, bytes, NULL,
74021bc4 1973 BDRV_REQ_ZERO_WRITE | flags);
61007b31
SH
1974}
1975
4085f5c7
JS
1976/*
1977 * Flush ALL BDSes regardless of if they are reachable via a BlkBackend or not.
1978 */
1979int bdrv_flush_all(void)
1980{
1981 BdrvNextIterator it;
1982 BlockDriverState *bs = NULL;
1983 int result = 0;
1984
1985 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
1986 AioContext *aio_context = bdrv_get_aio_context(bs);
1987 int ret;
1988
1989 aio_context_acquire(aio_context);
1990 ret = bdrv_flush(bs);
1991 if (ret < 0 && !result) {
1992 result = ret;
1993 }
1994 aio_context_release(aio_context);
1995 }
1996
1997 return result;
1998}
1999
2000
4bcd936e 2001typedef struct BdrvCoBlockStatusData {
61007b31
SH
2002 BlockDriverState *bs;
2003 BlockDriverState *base;
c9ce8c4d 2004 bool want_zero;
4bcd936e
EB
2005 int64_t offset;
2006 int64_t bytes;
2007 int64_t *pnum;
2008 int64_t *map;
c9ce8c4d 2009 BlockDriverState **file;
4bcd936e 2010 int ret;
61007b31 2011 bool done;
4bcd936e 2012} BdrvCoBlockStatusData;
61007b31 2013
3e4d0e72
EB
2014int coroutine_fn bdrv_co_block_status_from_file(BlockDriverState *bs,
2015 bool want_zero,
2016 int64_t offset,
2017 int64_t bytes,
2018 int64_t *pnum,
2019 int64_t *map,
2020 BlockDriverState **file)
f7cc69b3
MP
2021{
2022 assert(bs->file && bs->file->bs);
3e4d0e72
EB
2023 *pnum = bytes;
2024 *map = offset;
f7cc69b3 2025 *file = bs->file->bs;
3e4d0e72 2026 return BDRV_BLOCK_RAW | BDRV_BLOCK_OFFSET_VALID;
f7cc69b3
MP
2027}
2028
3e4d0e72
EB
2029int coroutine_fn bdrv_co_block_status_from_backing(BlockDriverState *bs,
2030 bool want_zero,
2031 int64_t offset,
2032 int64_t bytes,
2033 int64_t *pnum,
2034 int64_t *map,
2035 BlockDriverState **file)
f7cc69b3
MP
2036{
2037 assert(bs->backing && bs->backing->bs);
3e4d0e72
EB
2038 *pnum = bytes;
2039 *map = offset;
f7cc69b3 2040 *file = bs->backing->bs;
3e4d0e72 2041 return BDRV_BLOCK_RAW | BDRV_BLOCK_OFFSET_VALID;
f7cc69b3
MP
2042}
2043
61007b31
SH
2044/*
2045 * Returns the allocation status of the specified sectors.
2046 * Drivers not implementing the functionality are assumed to not support
2047 * backing files, hence all their sectors are reported as allocated.
2048 *
86a3d5c6
EB
2049 * If 'want_zero' is true, the caller is querying for mapping
2050 * purposes, with a focus on valid BDRV_BLOCK_OFFSET_VALID, _DATA, and
2051 * _ZERO where possible; otherwise, the result favors larger 'pnum',
2052 * with a focus on accurate BDRV_BLOCK_ALLOCATED.
c9ce8c4d 2053 *
2e8bc787 2054 * If 'offset' is beyond the end of the disk image the return value is
fb0d8654 2055 * BDRV_BLOCK_EOF and 'pnum' is set to 0.
61007b31 2056 *
2e8bc787 2057 * 'bytes' is the max value 'pnum' should be set to. If bytes goes
fb0d8654
EB
2058 * beyond the end of the disk image it will be clamped; if 'pnum' is set to
2059 * the end of the image, then the returned value will include BDRV_BLOCK_EOF.
67a0fd2a 2060 *
2e8bc787
EB
2061 * 'pnum' is set to the number of bytes (including and immediately
2062 * following the specified offset) that are easily known to be in the
2063 * same allocated/unallocated state. Note that a second call starting
2064 * at the original offset plus returned pnum may have the same status.
2065 * The returned value is non-zero on success except at end-of-file.
2066 *
2067 * Returns negative errno on failure. Otherwise, if the
2068 * BDRV_BLOCK_OFFSET_VALID bit is set, 'map' and 'file' (if non-NULL) are
2069 * set to the host mapping and BDS corresponding to the guest offset.
61007b31 2070 */
2e8bc787
EB
2071static int coroutine_fn bdrv_co_block_status(BlockDriverState *bs,
2072 bool want_zero,
2073 int64_t offset, int64_t bytes,
2074 int64_t *pnum, int64_t *map,
2075 BlockDriverState **file)
2076{
2077 int64_t total_size;
2078 int64_t n; /* bytes */
efa6e2ed 2079 int ret;
2e8bc787 2080 int64_t local_map = 0;
298a1665 2081 BlockDriverState *local_file = NULL;
efa6e2ed
EB
2082 int64_t aligned_offset, aligned_bytes;
2083 uint32_t align;
61007b31 2084
298a1665
EB
2085 assert(pnum);
2086 *pnum = 0;
2e8bc787
EB
2087 total_size = bdrv_getlength(bs);
2088 if (total_size < 0) {
2089 ret = total_size;
298a1665 2090 goto early_out;
61007b31
SH
2091 }
2092
2e8bc787 2093 if (offset >= total_size) {
298a1665
EB
2094 ret = BDRV_BLOCK_EOF;
2095 goto early_out;
61007b31 2096 }
2e8bc787 2097 if (!bytes) {
298a1665
EB
2098 ret = 0;
2099 goto early_out;
9cdcfd9f 2100 }
61007b31 2101
2e8bc787
EB
2102 n = total_size - offset;
2103 if (n < bytes) {
2104 bytes = n;
61007b31
SH
2105 }
2106
d470ad42
HR
2107 /* Must be non-NULL or bdrv_getlength() would have failed */
2108 assert(bs->drv);
636cb512 2109 if (!bs->drv->bdrv_co_block_status) {
2e8bc787 2110 *pnum = bytes;
61007b31 2111 ret = BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED;
2e8bc787 2112 if (offset + bytes == total_size) {
fb0d8654
EB
2113 ret |= BDRV_BLOCK_EOF;
2114 }
61007b31 2115 if (bs->drv->protocol_name) {
2e8bc787
EB
2116 ret |= BDRV_BLOCK_OFFSET_VALID;
2117 local_map = offset;
298a1665 2118 local_file = bs;
61007b31 2119 }
298a1665 2120 goto early_out;
61007b31
SH
2121 }
2122
99723548 2123 bdrv_inc_in_flight(bs);
efa6e2ed
EB
2124
2125 /* Round out to request_alignment boundaries */
86a3d5c6 2126 align = bs->bl.request_alignment;
efa6e2ed
EB
2127 aligned_offset = QEMU_ALIGN_DOWN(offset, align);
2128 aligned_bytes = ROUND_UP(offset + bytes, align) - aligned_offset;
2129
636cb512
EB
2130 ret = bs->drv->bdrv_co_block_status(bs, want_zero, aligned_offset,
2131 aligned_bytes, pnum, &local_map,
2132 &local_file);
2133 if (ret < 0) {
2134 *pnum = 0;
2135 goto out;
efa6e2ed
EB
2136 }
2137
2e8bc787 2138 /*
636cb512 2139 * The driver's result must be a non-zero multiple of request_alignment.
efa6e2ed 2140 * Clamp pnum and adjust map to original request.
2e8bc787 2141 */
636cb512
EB
2142 assert(*pnum && QEMU_IS_ALIGNED(*pnum, align) &&
2143 align > offset - aligned_offset);
efa6e2ed
EB
2144 *pnum -= offset - aligned_offset;
2145 if (*pnum > bytes) {
2146 *pnum = bytes;
61007b31 2147 }
2e8bc787 2148 if (ret & BDRV_BLOCK_OFFSET_VALID) {
efa6e2ed 2149 local_map += offset - aligned_offset;
2e8bc787 2150 }
61007b31
SH
2151
2152 if (ret & BDRV_BLOCK_RAW) {
298a1665 2153 assert(ret & BDRV_BLOCK_OFFSET_VALID && local_file);
2e8bc787
EB
2154 ret = bdrv_co_block_status(local_file, want_zero, local_map,
2155 *pnum, pnum, &local_map, &local_file);
99723548 2156 goto out;
61007b31
SH
2157 }
2158
2159 if (ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ZERO)) {
2160 ret |= BDRV_BLOCK_ALLOCATED;
c9ce8c4d 2161 } else if (want_zero) {
61007b31
SH
2162 if (bdrv_unallocated_blocks_are_zero(bs)) {
2163 ret |= BDRV_BLOCK_ZERO;
760e0063
KW
2164 } else if (bs->backing) {
2165 BlockDriverState *bs2 = bs->backing->bs;
2e8bc787 2166 int64_t size2 = bdrv_getlength(bs2);
c9ce8c4d 2167
2e8bc787 2168 if (size2 >= 0 && offset >= size2) {
61007b31
SH
2169 ret |= BDRV_BLOCK_ZERO;
2170 }
2171 }
2172 }
2173
c9ce8c4d 2174 if (want_zero && local_file && local_file != bs &&
61007b31
SH
2175 (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
2176 (ret & BDRV_BLOCK_OFFSET_VALID)) {
2e8bc787
EB
2177 int64_t file_pnum;
2178 int ret2;
61007b31 2179
2e8bc787
EB
2180 ret2 = bdrv_co_block_status(local_file, want_zero, local_map,
2181 *pnum, &file_pnum, NULL, NULL);
61007b31
SH
2182 if (ret2 >= 0) {
2183 /* Ignore errors. This is just providing extra information, it
2184 * is useful but not necessary.
2185 */
c61e684e
EB
2186 if (ret2 & BDRV_BLOCK_EOF &&
2187 (!file_pnum || ret2 & BDRV_BLOCK_ZERO)) {
2188 /*
2189 * It is valid for the format block driver to read
2190 * beyond the end of the underlying file's current
2191 * size; such areas read as zero.
2192 */
61007b31
SH
2193 ret |= BDRV_BLOCK_ZERO;
2194 } else {
2195 /* Limit request to the range reported by the protocol driver */
2196 *pnum = file_pnum;
2197 ret |= (ret2 & BDRV_BLOCK_ZERO);
2198 }
2199 }
2200 }
2201
99723548
PB
2202out:
2203 bdrv_dec_in_flight(bs);
2e8bc787 2204 if (ret >= 0 && offset + *pnum == total_size) {
fb0d8654
EB
2205 ret |= BDRV_BLOCK_EOF;
2206 }
298a1665
EB
2207early_out:
2208 if (file) {
2209 *file = local_file;
2210 }
2e8bc787
EB
2211 if (map) {
2212 *map = local_map;
2213 }
61007b31
SH
2214 return ret;
2215}
2216
5b648c67
EB
2217static int coroutine_fn bdrv_co_block_status_above(BlockDriverState *bs,
2218 BlockDriverState *base,
2219 bool want_zero,
2220 int64_t offset,
2221 int64_t bytes,
2222 int64_t *pnum,
2223 int64_t *map,
2224 BlockDriverState **file)
ba3f0e25
FZ
2225{
2226 BlockDriverState *p;
5b648c67 2227 int ret = 0;
c61e684e 2228 bool first = true;
ba3f0e25
FZ
2229
2230 assert(bs != base);
760e0063 2231 for (p = bs; p != base; p = backing_bs(p)) {
5b648c67
EB
2232 ret = bdrv_co_block_status(p, want_zero, offset, bytes, pnum, map,
2233 file);
c61e684e
EB
2234 if (ret < 0) {
2235 break;
2236 }
2237 if (ret & BDRV_BLOCK_ZERO && ret & BDRV_BLOCK_EOF && !first) {
2238 /*
2239 * Reading beyond the end of the file continues to read
2240 * zeroes, but we can only widen the result to the
2241 * unallocated length we learned from an earlier
2242 * iteration.
2243 */
5b648c67 2244 *pnum = bytes;
c61e684e
EB
2245 }
2246 if (ret & (BDRV_BLOCK_ZERO | BDRV_BLOCK_DATA)) {
ba3f0e25
FZ
2247 break;
2248 }
5b648c67
EB
2249 /* [offset, pnum] unallocated on this layer, which could be only
2250 * the first part of [offset, bytes]. */
2251 bytes = MIN(bytes, *pnum);
c61e684e 2252 first = false;
ba3f0e25
FZ
2253 }
2254 return ret;
2255}
2256
31826642 2257/* Coroutine wrapper for bdrv_block_status_above() */
5b648c67 2258static void coroutine_fn bdrv_block_status_above_co_entry(void *opaque)
61007b31 2259{
4bcd936e 2260 BdrvCoBlockStatusData *data = opaque;
61007b31 2261
5b648c67
EB
2262 data->ret = bdrv_co_block_status_above(data->bs, data->base,
2263 data->want_zero,
2264 data->offset, data->bytes,
2265 data->pnum, data->map, data->file);
61007b31
SH
2266 data->done = true;
2267}
2268
2269/*
5b648c67 2270 * Synchronous wrapper around bdrv_co_block_status_above().
61007b31 2271 *
5b648c67 2272 * See bdrv_co_block_status_above() for details.
61007b31 2273 */
7ddb99b9
EB
2274static int bdrv_common_block_status_above(BlockDriverState *bs,
2275 BlockDriverState *base,
2276 bool want_zero, int64_t offset,
2277 int64_t bytes, int64_t *pnum,
2278 int64_t *map,
2279 BlockDriverState **file)
61007b31
SH
2280{
2281 Coroutine *co;
4bcd936e 2282 BdrvCoBlockStatusData data = {
61007b31 2283 .bs = bs,
ba3f0e25 2284 .base = base,
c9ce8c4d 2285 .want_zero = want_zero,
7ddb99b9
EB
2286 .offset = offset,
2287 .bytes = bytes,
2288 .pnum = pnum,
2289 .map = map,
c9ce8c4d 2290 .file = file,
61007b31
SH
2291 .done = false,
2292 };
2293
2294 if (qemu_in_coroutine()) {
2295 /* Fast-path if already in coroutine context */
5b648c67 2296 bdrv_block_status_above_co_entry(&data);
61007b31 2297 } else {
5b648c67 2298 co = qemu_coroutine_create(bdrv_block_status_above_co_entry, &data);
e92f0e19 2299 bdrv_coroutine_enter(bs, co);
88b062c2 2300 BDRV_POLL_WHILE(bs, !data.done);
61007b31 2301 }
7ddb99b9 2302 return data.ret;
61007b31
SH
2303}
2304
31826642
EB
2305int bdrv_block_status_above(BlockDriverState *bs, BlockDriverState *base,
2306 int64_t offset, int64_t bytes, int64_t *pnum,
2307 int64_t *map, BlockDriverState **file)
c9ce8c4d 2308{
31826642
EB
2309 return bdrv_common_block_status_above(bs, base, true, offset, bytes,
2310 pnum, map, file);
c9ce8c4d
EB
2311}
2312
237d78f8
EB
2313int bdrv_block_status(BlockDriverState *bs, int64_t offset, int64_t bytes,
2314 int64_t *pnum, int64_t *map, BlockDriverState **file)
ba3f0e25 2315{
31826642
EB
2316 return bdrv_block_status_above(bs, backing_bs(bs),
2317 offset, bytes, pnum, map, file);
ba3f0e25
FZ
2318}
2319
d6a644bb
EB
2320int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t offset,
2321 int64_t bytes, int64_t *pnum)
61007b31 2322{
7ddb99b9
EB
2323 int ret;
2324 int64_t dummy;
d6a644bb 2325
7ddb99b9
EB
2326 ret = bdrv_common_block_status_above(bs, backing_bs(bs), false, offset,
2327 bytes, pnum ? pnum : &dummy, NULL,
c9ce8c4d 2328 NULL);
61007b31
SH
2329 if (ret < 0) {
2330 return ret;
2331 }
2332 return !!(ret & BDRV_BLOCK_ALLOCATED);
2333}
2334
2335/*
2336 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
2337 *
51b0a488
EB
2338 * Return true if (a prefix of) the given range is allocated in any image
2339 * between BASE and TOP (inclusive). BASE can be NULL to check if the given
2340 * offset is allocated in any image of the chain. Return false otherwise,
d6a644bb 2341 * or negative errno on failure.
61007b31 2342 *
51b0a488
EB
2343 * 'pnum' is set to the number of bytes (including and immediately
2344 * following the specified offset) that are known to be in the same
2345 * allocated/unallocated state. Note that a subsequent call starting
2346 * at 'offset + *pnum' may return the same allocation status (in other
2347 * words, the result is not necessarily the maximum possible range);
2348 * but 'pnum' will only be 0 when end of file is reached.
61007b31
SH
2349 *
2350 */
2351int bdrv_is_allocated_above(BlockDriverState *top,
2352 BlockDriverState *base,
51b0a488 2353 int64_t offset, int64_t bytes, int64_t *pnum)
61007b31
SH
2354{
2355 BlockDriverState *intermediate;
51b0a488
EB
2356 int ret;
2357 int64_t n = bytes;
61007b31
SH
2358
2359 intermediate = top;
2360 while (intermediate && intermediate != base) {
d6a644bb 2361 int64_t pnum_inter;
c00716be 2362 int64_t size_inter;
d6a644bb 2363
51b0a488 2364 ret = bdrv_is_allocated(intermediate, offset, bytes, &pnum_inter);
61007b31
SH
2365 if (ret < 0) {
2366 return ret;
d6a644bb 2367 }
d6a644bb 2368 if (ret) {
51b0a488 2369 *pnum = pnum_inter;
61007b31
SH
2370 return 1;
2371 }
2372
51b0a488 2373 size_inter = bdrv_getlength(intermediate);
c00716be
EB
2374 if (size_inter < 0) {
2375 return size_inter;
2376 }
51b0a488
EB
2377 if (n > pnum_inter &&
2378 (intermediate == top || offset + pnum_inter < size_inter)) {
2379 n = pnum_inter;
61007b31
SH
2380 }
2381
760e0063 2382 intermediate = backing_bs(intermediate);
61007b31
SH
2383 }
2384
2385 *pnum = n;
2386 return 0;
2387}
2388
1a8ae822
KW
2389typedef struct BdrvVmstateCo {
2390 BlockDriverState *bs;
2391 QEMUIOVector *qiov;
2392 int64_t pos;
2393 bool is_read;
2394 int ret;
2395} BdrvVmstateCo;
2396
2397static int coroutine_fn
2398bdrv_co_rw_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos,
2399 bool is_read)
2400{
2401 BlockDriver *drv = bs->drv;
dc88a467
SH
2402 int ret = -ENOTSUP;
2403
2404 bdrv_inc_in_flight(bs);
1a8ae822
KW
2405
2406 if (!drv) {
dc88a467 2407 ret = -ENOMEDIUM;
1a8ae822 2408 } else if (drv->bdrv_load_vmstate) {
dc88a467
SH
2409 if (is_read) {
2410 ret = drv->bdrv_load_vmstate(bs, qiov, pos);
2411 } else {
2412 ret = drv->bdrv_save_vmstate(bs, qiov, pos);
2413 }
1a8ae822 2414 } else if (bs->file) {
dc88a467 2415 ret = bdrv_co_rw_vmstate(bs->file->bs, qiov, pos, is_read);
1a8ae822
KW
2416 }
2417
dc88a467
SH
2418 bdrv_dec_in_flight(bs);
2419 return ret;
1a8ae822
KW
2420}
2421
2422static void coroutine_fn bdrv_co_rw_vmstate_entry(void *opaque)
2423{
2424 BdrvVmstateCo *co = opaque;
2425 co->ret = bdrv_co_rw_vmstate(co->bs, co->qiov, co->pos, co->is_read);
2426}
2427
2428static inline int
2429bdrv_rw_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos,
2430 bool is_read)
2431{
2432 if (qemu_in_coroutine()) {
2433 return bdrv_co_rw_vmstate(bs, qiov, pos, is_read);
2434 } else {
2435 BdrvVmstateCo data = {
2436 .bs = bs,
2437 .qiov = qiov,
2438 .pos = pos,
2439 .is_read = is_read,
2440 .ret = -EINPROGRESS,
2441 };
0b8b8753 2442 Coroutine *co = qemu_coroutine_create(bdrv_co_rw_vmstate_entry, &data);
1a8ae822 2443
e92f0e19 2444 bdrv_coroutine_enter(bs, co);
ea17c9d2 2445 BDRV_POLL_WHILE(bs, data.ret == -EINPROGRESS);
1a8ae822
KW
2446 return data.ret;
2447 }
2448}
2449
61007b31
SH
2450int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
2451 int64_t pos, int size)
2452{
2453 QEMUIOVector qiov;
2454 struct iovec iov = {
2455 .iov_base = (void *) buf,
2456 .iov_len = size,
2457 };
b433d942 2458 int ret;
61007b31
SH
2459
2460 qemu_iovec_init_external(&qiov, &iov, 1);
b433d942
KW
2461
2462 ret = bdrv_writev_vmstate(bs, &qiov, pos);
2463 if (ret < 0) {
2464 return ret;
2465 }
2466
2467 return size;
61007b31
SH
2468}
2469
2470int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
2471{
1a8ae822 2472 return bdrv_rw_vmstate(bs, qiov, pos, false);
61007b31
SH
2473}
2474
2475int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
2476 int64_t pos, int size)
5ddda0b8
KW
2477{
2478 QEMUIOVector qiov;
2479 struct iovec iov = {
2480 .iov_base = buf,
2481 .iov_len = size,
2482 };
b433d942 2483 int ret;
5ddda0b8
KW
2484
2485 qemu_iovec_init_external(&qiov, &iov, 1);
b433d942
KW
2486 ret = bdrv_readv_vmstate(bs, &qiov, pos);
2487 if (ret < 0) {
2488 return ret;
2489 }
2490
2491 return size;
5ddda0b8
KW
2492}
2493
2494int bdrv_readv_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
61007b31 2495{
1a8ae822 2496 return bdrv_rw_vmstate(bs, qiov, pos, true);
61007b31
SH
2497}
2498
2499/**************************************************************/
2500/* async I/Os */
2501
61007b31
SH
2502void bdrv_aio_cancel(BlockAIOCB *acb)
2503{
2504 qemu_aio_ref(acb);
2505 bdrv_aio_cancel_async(acb);
2506 while (acb->refcnt > 1) {
2507 if (acb->aiocb_info->get_aio_context) {
2508 aio_poll(acb->aiocb_info->get_aio_context(acb), true);
2509 } else if (acb->bs) {
2f47da5f
PB
2510 /* qemu_aio_ref and qemu_aio_unref are not thread-safe, so
2511 * assert that we're not using an I/O thread. Thread-safe
2512 * code should use bdrv_aio_cancel_async exclusively.
2513 */
2514 assert(bdrv_get_aio_context(acb->bs) == qemu_get_aio_context());
61007b31
SH
2515 aio_poll(bdrv_get_aio_context(acb->bs), true);
2516 } else {
2517 abort();
2518 }
2519 }
2520 qemu_aio_unref(acb);
2521}
2522
2523/* Async version of aio cancel. The caller is not blocked if the acb implements
2524 * cancel_async, otherwise we do nothing and let the request normally complete.
2525 * In either case the completion callback must be called. */
2526void bdrv_aio_cancel_async(BlockAIOCB *acb)
2527{
2528 if (acb->aiocb_info->cancel_async) {
2529 acb->aiocb_info->cancel_async(acb);
2530 }
2531}
2532
61007b31
SH
2533/**************************************************************/
2534/* Coroutine block device emulation */
2535
e293b7a3
KW
2536typedef struct FlushCo {
2537 BlockDriverState *bs;
2538 int ret;
2539} FlushCo;
2540
2541
61007b31
SH
2542static void coroutine_fn bdrv_flush_co_entry(void *opaque)
2543{
e293b7a3 2544 FlushCo *rwco = opaque;
61007b31
SH
2545
2546 rwco->ret = bdrv_co_flush(rwco->bs);
2547}
2548
2549int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
2550{
49ca6259
FZ
2551 int current_gen;
2552 int ret = 0;
2553
2554 bdrv_inc_in_flight(bs);
61007b31 2555
e914404e 2556 if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs) ||
1b6bc94d 2557 bdrv_is_sg(bs)) {
49ca6259 2558 goto early_exit;
61007b31
SH
2559 }
2560
3783fa3d 2561 qemu_co_mutex_lock(&bs->reqs_lock);
47fec599 2562 current_gen = atomic_read(&bs->write_gen);
3ff2f67a
EY
2563
2564 /* Wait until any previous flushes are completed */
99723548 2565 while (bs->active_flush_req) {
3783fa3d 2566 qemu_co_queue_wait(&bs->flush_queue, &bs->reqs_lock);
3ff2f67a
EY
2567 }
2568
3783fa3d 2569 /* Flushes reach this point in nondecreasing current_gen order. */
99723548 2570 bs->active_flush_req = true;
3783fa3d 2571 qemu_co_mutex_unlock(&bs->reqs_lock);
3ff2f67a 2572
c32b82af
PD
2573 /* Write back all layers by calling one driver function */
2574 if (bs->drv->bdrv_co_flush) {
2575 ret = bs->drv->bdrv_co_flush(bs);
2576 goto out;
2577 }
2578
61007b31
SH
2579 /* Write back cached data to the OS even with cache=unsafe */
2580 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS);
2581 if (bs->drv->bdrv_co_flush_to_os) {
2582 ret = bs->drv->bdrv_co_flush_to_os(bs);
2583 if (ret < 0) {
cdb5e315 2584 goto out;
61007b31
SH
2585 }
2586 }
2587
2588 /* But don't actually force it to the disk with cache=unsafe */
2589 if (bs->open_flags & BDRV_O_NO_FLUSH) {
2590 goto flush_parent;
2591 }
2592
3ff2f67a
EY
2593 /* Check if we really need to flush anything */
2594 if (bs->flushed_gen == current_gen) {
2595 goto flush_parent;
2596 }
2597
61007b31 2598 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK);
d470ad42
HR
2599 if (!bs->drv) {
2600 /* bs->drv->bdrv_co_flush() might have ejected the BDS
2601 * (even in case of apparent success) */
2602 ret = -ENOMEDIUM;
2603 goto out;
2604 }
61007b31
SH
2605 if (bs->drv->bdrv_co_flush_to_disk) {
2606 ret = bs->drv->bdrv_co_flush_to_disk(bs);
2607 } else if (bs->drv->bdrv_aio_flush) {
2608 BlockAIOCB *acb;
2609 CoroutineIOCompletion co = {
2610 .coroutine = qemu_coroutine_self(),
2611 };
2612
2613 acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
2614 if (acb == NULL) {
2615 ret = -EIO;
2616 } else {
2617 qemu_coroutine_yield();
2618 ret = co.ret;
2619 }
2620 } else {
2621 /*
2622 * Some block drivers always operate in either writethrough or unsafe
2623 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
2624 * know how the server works (because the behaviour is hardcoded or
2625 * depends on server-side configuration), so we can't ensure that
2626 * everything is safe on disk. Returning an error doesn't work because
2627 * that would break guests even if the server operates in writethrough
2628 * mode.
2629 *
2630 * Let's hope the user knows what he's doing.
2631 */
2632 ret = 0;
2633 }
3ff2f67a 2634
61007b31 2635 if (ret < 0) {
cdb5e315 2636 goto out;
61007b31
SH
2637 }
2638
2639 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
2640 * in the case of cache=unsafe, so there are no useless flushes.
2641 */
2642flush_parent:
cdb5e315
FZ
2643 ret = bs->file ? bdrv_co_flush(bs->file->bs) : 0;
2644out:
3ff2f67a 2645 /* Notify any pending flushes that we have completed */
e6af1e08
KW
2646 if (ret == 0) {
2647 bs->flushed_gen = current_gen;
2648 }
3783fa3d
PB
2649
2650 qemu_co_mutex_lock(&bs->reqs_lock);
99723548 2651 bs->active_flush_req = false;
156af3ac
DL
2652 /* Return value is ignored - it's ok if wait queue is empty */
2653 qemu_co_queue_next(&bs->flush_queue);
3783fa3d 2654 qemu_co_mutex_unlock(&bs->reqs_lock);
3ff2f67a 2655
49ca6259 2656early_exit:
99723548 2657 bdrv_dec_in_flight(bs);
cdb5e315 2658 return ret;
61007b31
SH
2659}
2660
2661int bdrv_flush(BlockDriverState *bs)
2662{
2663 Coroutine *co;
e293b7a3 2664 FlushCo flush_co = {
61007b31
SH
2665 .bs = bs,
2666 .ret = NOT_DONE,
2667 };
2668
2669 if (qemu_in_coroutine()) {
2670 /* Fast-path if already in coroutine context */
e293b7a3 2671 bdrv_flush_co_entry(&flush_co);
61007b31 2672 } else {
0b8b8753 2673 co = qemu_coroutine_create(bdrv_flush_co_entry, &flush_co);
e92f0e19 2674 bdrv_coroutine_enter(bs, co);
88b062c2 2675 BDRV_POLL_WHILE(bs, flush_co.ret == NOT_DONE);
61007b31
SH
2676 }
2677
e293b7a3 2678 return flush_co.ret;
61007b31
SH
2679}
2680
2681typedef struct DiscardCo {
0b9fd3f4 2682 BdrvChild *child;
0c51a893 2683 int64_t offset;
f5a5ca79 2684 int bytes;
61007b31
SH
2685 int ret;
2686} DiscardCo;
0c51a893 2687static void coroutine_fn bdrv_pdiscard_co_entry(void *opaque)
61007b31
SH
2688{
2689 DiscardCo *rwco = opaque;
2690
0b9fd3f4 2691 rwco->ret = bdrv_co_pdiscard(rwco->child, rwco->offset, rwco->bytes);
61007b31
SH
2692}
2693
0b9fd3f4 2694int coroutine_fn bdrv_co_pdiscard(BdrvChild *child, int64_t offset, int bytes)
61007b31 2695{
b1066c87 2696 BdrvTrackedRequest req;
9f1963b3 2697 int max_pdiscard, ret;
3482b9bc 2698 int head, tail, align;
0b9fd3f4 2699 BlockDriverState *bs = child->bs;
61007b31 2700
0b9fd3f4 2701 if (!bs || !bs->drv) {
61007b31
SH
2702 return -ENOMEDIUM;
2703 }
2704
d6883bc9
VSO
2705 if (bdrv_has_readonly_bitmaps(bs)) {
2706 return -EPERM;
2707 }
2708
f5a5ca79 2709 ret = bdrv_check_byte_request(bs, offset, bytes);
61007b31
SH
2710 if (ret < 0) {
2711 return ret;
61007b31
SH
2712 }
2713
61007b31
SH
2714 /* Do nothing if disabled. */
2715 if (!(bs->open_flags & BDRV_O_UNMAP)) {
2716 return 0;
2717 }
2718
02aefe43 2719 if (!bs->drv->bdrv_co_pdiscard && !bs->drv->bdrv_aio_pdiscard) {
61007b31
SH
2720 return 0;
2721 }
2722
3482b9bc
EB
2723 /* Discard is advisory, but some devices track and coalesce
2724 * unaligned requests, so we must pass everything down rather than
2725 * round here. Still, most devices will just silently ignore
2726 * unaligned requests (by returning -ENOTSUP), so we must fragment
2727 * the request accordingly. */
02aefe43 2728 align = MAX(bs->bl.pdiscard_alignment, bs->bl.request_alignment);
b8d0a980
EB
2729 assert(align % bs->bl.request_alignment == 0);
2730 head = offset % align;
f5a5ca79 2731 tail = (offset + bytes) % align;
9f1963b3 2732
99723548 2733 bdrv_inc_in_flight(bs);
f5a5ca79 2734 tracked_request_begin(&req, bs, offset, bytes, BDRV_TRACKED_DISCARD);
50824995 2735
00695c27 2736 ret = bdrv_co_write_req_prepare(child, offset, bytes, &req, 0);
ec050f77
DL
2737 if (ret < 0) {
2738 goto out;
2739 }
2740
9f1963b3
EB
2741 max_pdiscard = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_pdiscard, INT_MAX),
2742 align);
3482b9bc 2743 assert(max_pdiscard >= bs->bl.request_alignment);
61007b31 2744
f5a5ca79 2745 while (bytes > 0) {
f5a5ca79 2746 int num = bytes;
3482b9bc
EB
2747
2748 if (head) {
2749 /* Make small requests to get to alignment boundaries. */
f5a5ca79 2750 num = MIN(bytes, align - head);
3482b9bc
EB
2751 if (!QEMU_IS_ALIGNED(num, bs->bl.request_alignment)) {
2752 num %= bs->bl.request_alignment;
2753 }
2754 head = (head + num) % align;
2755 assert(num < max_pdiscard);
2756 } else if (tail) {
2757 if (num > align) {
2758 /* Shorten the request to the last aligned cluster. */
2759 num -= tail;
2760 } else if (!QEMU_IS_ALIGNED(tail, bs->bl.request_alignment) &&
2761 tail > bs->bl.request_alignment) {
2762 tail %= bs->bl.request_alignment;
2763 num -= tail;
2764 }
2765 }
2766 /* limit request size */
2767 if (num > max_pdiscard) {
2768 num = max_pdiscard;
2769 }
61007b31 2770
d470ad42
HR
2771 if (!bs->drv) {
2772 ret = -ENOMEDIUM;
2773 goto out;
2774 }
47a5486d
EB
2775 if (bs->drv->bdrv_co_pdiscard) {
2776 ret = bs->drv->bdrv_co_pdiscard(bs, offset, num);
61007b31
SH
2777 } else {
2778 BlockAIOCB *acb;
2779 CoroutineIOCompletion co = {
2780 .coroutine = qemu_coroutine_self(),
2781 };
2782
4da444a0
EB
2783 acb = bs->drv->bdrv_aio_pdiscard(bs, offset, num,
2784 bdrv_co_io_em_complete, &co);
61007b31 2785 if (acb == NULL) {
b1066c87
FZ
2786 ret = -EIO;
2787 goto out;
61007b31
SH
2788 } else {
2789 qemu_coroutine_yield();
2790 ret = co.ret;
2791 }
2792 }
2793 if (ret && ret != -ENOTSUP) {
b1066c87 2794 goto out;
61007b31
SH
2795 }
2796
9f1963b3 2797 offset += num;
f5a5ca79 2798 bytes -= num;
61007b31 2799 }
b1066c87
FZ
2800 ret = 0;
2801out:
00695c27 2802 bdrv_co_write_req_finish(child, req.offset, req.bytes, &req, ret);
b1066c87 2803 tracked_request_end(&req);
99723548 2804 bdrv_dec_in_flight(bs);
b1066c87 2805 return ret;
61007b31
SH
2806}
2807
0b9fd3f4 2808int bdrv_pdiscard(BdrvChild *child, int64_t offset, int bytes)
61007b31
SH
2809{
2810 Coroutine *co;
2811 DiscardCo rwco = {
0b9fd3f4 2812 .child = child,
0c51a893 2813 .offset = offset,
f5a5ca79 2814 .bytes = bytes,
61007b31
SH
2815 .ret = NOT_DONE,
2816 };
2817
2818 if (qemu_in_coroutine()) {
2819 /* Fast-path if already in coroutine context */
0c51a893 2820 bdrv_pdiscard_co_entry(&rwco);
61007b31 2821 } else {
0c51a893 2822 co = qemu_coroutine_create(bdrv_pdiscard_co_entry, &rwco);
0b9fd3f4
FZ
2823 bdrv_coroutine_enter(child->bs, co);
2824 BDRV_POLL_WHILE(child->bs, rwco.ret == NOT_DONE);
61007b31
SH
2825 }
2826
2827 return rwco.ret;
2828}
2829
48af776a 2830int bdrv_co_ioctl(BlockDriverState *bs, int req, void *buf)
61007b31
SH
2831{
2832 BlockDriver *drv = bs->drv;
5c5ae76a
FZ
2833 CoroutineIOCompletion co = {
2834 .coroutine = qemu_coroutine_self(),
2835 };
2836 BlockAIOCB *acb;
61007b31 2837
99723548 2838 bdrv_inc_in_flight(bs);
16a389dc 2839 if (!drv || (!drv->bdrv_aio_ioctl && !drv->bdrv_co_ioctl)) {
5c5ae76a
FZ
2840 co.ret = -ENOTSUP;
2841 goto out;
2842 }
2843
16a389dc
KW
2844 if (drv->bdrv_co_ioctl) {
2845 co.ret = drv->bdrv_co_ioctl(bs, req, buf);
2846 } else {
2847 acb = drv->bdrv_aio_ioctl(bs, req, buf, bdrv_co_io_em_complete, &co);
2848 if (!acb) {
2849 co.ret = -ENOTSUP;
2850 goto out;
2851 }
2852 qemu_coroutine_yield();
5c5ae76a 2853 }
5c5ae76a 2854out:
99723548 2855 bdrv_dec_in_flight(bs);
5c5ae76a
FZ
2856 return co.ret;
2857}
2858
61007b31
SH
2859void *qemu_blockalign(BlockDriverState *bs, size_t size)
2860{
2861 return qemu_memalign(bdrv_opt_mem_align(bs), size);
2862}
2863
2864void *qemu_blockalign0(BlockDriverState *bs, size_t size)
2865{
2866 return memset(qemu_blockalign(bs, size), 0, size);
2867}
2868
2869void *qemu_try_blockalign(BlockDriverState *bs, size_t size)
2870{
2871 size_t align = bdrv_opt_mem_align(bs);
2872
2873 /* Ensure that NULL is never returned on success */
2874 assert(align > 0);
2875 if (size == 0) {
2876 size = align;
2877 }
2878
2879 return qemu_try_memalign(align, size);
2880}
2881
2882void *qemu_try_blockalign0(BlockDriverState *bs, size_t size)
2883{
2884 void *mem = qemu_try_blockalign(bs, size);
2885
2886 if (mem) {
2887 memset(mem, 0, size);
2888 }
2889
2890 return mem;
2891}
2892
2893/*
2894 * Check if all memory in this vector is sector aligned.
2895 */
2896bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
2897{
2898 int i;
4196d2f0 2899 size_t alignment = bdrv_min_mem_align(bs);
61007b31
SH
2900
2901 for (i = 0; i < qiov->niov; i++) {
2902 if ((uintptr_t) qiov->iov[i].iov_base % alignment) {
2903 return false;
2904 }
2905 if (qiov->iov[i].iov_len % alignment) {
2906 return false;
2907 }
2908 }
2909
2910 return true;
2911}
2912
2913void bdrv_add_before_write_notifier(BlockDriverState *bs,
2914 NotifierWithReturn *notifier)
2915{
2916 notifier_with_return_list_add(&bs->before_write_notifiers, notifier);
2917}
2918
2919void bdrv_io_plug(BlockDriverState *bs)
2920{
6b98bd64
PB
2921 BdrvChild *child;
2922
2923 QLIST_FOREACH(child, &bs->children, next) {
2924 bdrv_io_plug(child->bs);
2925 }
2926
850d54a2 2927 if (atomic_fetch_inc(&bs->io_plugged) == 0) {
6b98bd64
PB
2928 BlockDriver *drv = bs->drv;
2929 if (drv && drv->bdrv_io_plug) {
2930 drv->bdrv_io_plug(bs);
2931 }
61007b31
SH
2932 }
2933}
2934
2935void bdrv_io_unplug(BlockDriverState *bs)
2936{
6b98bd64
PB
2937 BdrvChild *child;
2938
2939 assert(bs->io_plugged);
850d54a2 2940 if (atomic_fetch_dec(&bs->io_plugged) == 1) {
6b98bd64
PB
2941 BlockDriver *drv = bs->drv;
2942 if (drv && drv->bdrv_io_unplug) {
2943 drv->bdrv_io_unplug(bs);
2944 }
2945 }
2946
2947 QLIST_FOREACH(child, &bs->children, next) {
2948 bdrv_io_unplug(child->bs);
61007b31
SH
2949 }
2950}
23d0ba93
FZ
2951
2952void bdrv_register_buf(BlockDriverState *bs, void *host, size_t size)
2953{
2954 BdrvChild *child;
2955
2956 if (bs->drv && bs->drv->bdrv_register_buf) {
2957 bs->drv->bdrv_register_buf(bs, host, size);
2958 }
2959 QLIST_FOREACH(child, &bs->children, next) {
2960 bdrv_register_buf(child->bs, host, size);
2961 }
2962}
2963
2964void bdrv_unregister_buf(BlockDriverState *bs, void *host)
2965{
2966 BdrvChild *child;
2967
2968 if (bs->drv && bs->drv->bdrv_unregister_buf) {
2969 bs->drv->bdrv_unregister_buf(bs, host);
2970 }
2971 QLIST_FOREACH(child, &bs->children, next) {
2972 bdrv_unregister_buf(child->bs, host);
2973 }
2974}
fcc67678 2975
67b51fb9
VSO
2976static int coroutine_fn bdrv_co_copy_range_internal(
2977 BdrvChild *src, uint64_t src_offset, BdrvChild *dst,
2978 uint64_t dst_offset, uint64_t bytes,
2979 BdrvRequestFlags read_flags, BdrvRequestFlags write_flags,
2980 bool recurse_src)
fcc67678 2981{
999658a0 2982 BdrvTrackedRequest req;
fcc67678
FZ
2983 int ret;
2984
d4d3e5a0 2985 if (!dst || !dst->bs) {
fcc67678
FZ
2986 return -ENOMEDIUM;
2987 }
fcc67678
FZ
2988 ret = bdrv_check_byte_request(dst->bs, dst_offset, bytes);
2989 if (ret) {
2990 return ret;
2991 }
67b51fb9
VSO
2992 if (write_flags & BDRV_REQ_ZERO_WRITE) {
2993 return bdrv_co_pwrite_zeroes(dst, dst_offset, bytes, write_flags);
fcc67678
FZ
2994 }
2995
d4d3e5a0
FZ
2996 if (!src || !src->bs) {
2997 return -ENOMEDIUM;
2998 }
2999 ret = bdrv_check_byte_request(src->bs, src_offset, bytes);
3000 if (ret) {
3001 return ret;
3002 }
3003
fcc67678
FZ
3004 if (!src->bs->drv->bdrv_co_copy_range_from
3005 || !dst->bs->drv->bdrv_co_copy_range_to
3006 || src->bs->encrypted || dst->bs->encrypted) {
3007 return -ENOTSUP;
3008 }
37aec7d7 3009
fcc67678 3010 if (recurse_src) {
999658a0
VSO
3011 bdrv_inc_in_flight(src->bs);
3012 tracked_request_begin(&req, src->bs, src_offset, bytes,
3013 BDRV_TRACKED_READ);
3014
09d2f948
VSO
3015 /* BDRV_REQ_SERIALISING is only for write operation */
3016 assert(!(read_flags & BDRV_REQ_SERIALISING));
67b51fb9 3017 if (!(read_flags & BDRV_REQ_NO_SERIALISING)) {
999658a0
VSO
3018 wait_serialising_requests(&req);
3019 }
3020
37aec7d7
FZ
3021 ret = src->bs->drv->bdrv_co_copy_range_from(src->bs,
3022 src, src_offset,
3023 dst, dst_offset,
67b51fb9
VSO
3024 bytes,
3025 read_flags, write_flags);
999658a0
VSO
3026
3027 tracked_request_end(&req);
3028 bdrv_dec_in_flight(src->bs);
fcc67678 3029 } else {
999658a0
VSO
3030 bdrv_inc_in_flight(dst->bs);
3031 tracked_request_begin(&req, dst->bs, dst_offset, bytes,
3032 BDRV_TRACKED_WRITE);
3033
67b51fb9
VSO
3034 /* BDRV_REQ_NO_SERIALISING is only for read operation */
3035 assert(!(write_flags & BDRV_REQ_NO_SERIALISING));
09d2f948
VSO
3036 if (write_flags & BDRV_REQ_SERIALISING) {
3037 mark_request_serialising(&req, bdrv_get_cluster_size(dst->bs));
3038 }
999658a0
VSO
3039 wait_serialising_requests(&req);
3040
37aec7d7
FZ
3041 ret = dst->bs->drv->bdrv_co_copy_range_to(dst->bs,
3042 src, src_offset,
3043 dst, dst_offset,
67b51fb9
VSO
3044 bytes,
3045 read_flags, write_flags);
999658a0
VSO
3046
3047 tracked_request_end(&req);
3048 bdrv_dec_in_flight(dst->bs);
fcc67678 3049 }
999658a0 3050
37aec7d7 3051 return ret;
fcc67678
FZ
3052}
3053
3054/* Copy range from @src to @dst.
3055 *
3056 * See the comment of bdrv_co_copy_range for the parameter and return value
3057 * semantics. */
3058int coroutine_fn bdrv_co_copy_range_from(BdrvChild *src, uint64_t src_offset,
3059 BdrvChild *dst, uint64_t dst_offset,
67b51fb9
VSO
3060 uint64_t bytes,
3061 BdrvRequestFlags read_flags,
3062 BdrvRequestFlags write_flags)
fcc67678 3063{
ecc983a5
FZ
3064 trace_bdrv_co_copy_range_from(src, src_offset, dst, dst_offset, bytes,
3065 read_flags, write_flags);
fcc67678 3066 return bdrv_co_copy_range_internal(src, src_offset, dst, dst_offset,
67b51fb9 3067 bytes, read_flags, write_flags, true);
fcc67678
FZ
3068}
3069
3070/* Copy range from @src to @dst.
3071 *
3072 * See the comment of bdrv_co_copy_range for the parameter and return value
3073 * semantics. */
3074int coroutine_fn bdrv_co_copy_range_to(BdrvChild *src, uint64_t src_offset,
3075 BdrvChild *dst, uint64_t dst_offset,
67b51fb9
VSO
3076 uint64_t bytes,
3077 BdrvRequestFlags read_flags,
3078 BdrvRequestFlags write_flags)
fcc67678 3079{
ecc983a5
FZ
3080 trace_bdrv_co_copy_range_to(src, src_offset, dst, dst_offset, bytes,
3081 read_flags, write_flags);
fcc67678 3082 return bdrv_co_copy_range_internal(src, src_offset, dst, dst_offset,
67b51fb9 3083 bytes, read_flags, write_flags, false);
fcc67678
FZ
3084}
3085
3086int coroutine_fn bdrv_co_copy_range(BdrvChild *src, uint64_t src_offset,
3087 BdrvChild *dst, uint64_t dst_offset,
67b51fb9
VSO
3088 uint64_t bytes, BdrvRequestFlags read_flags,
3089 BdrvRequestFlags write_flags)
fcc67678 3090{
37aec7d7
FZ
3091 return bdrv_co_copy_range_from(src, src_offset,
3092 dst, dst_offset,
67b51fb9 3093 bytes, read_flags, write_flags);
fcc67678 3094}
3d9f2d2a
KW
3095
3096static void bdrv_parent_cb_resize(BlockDriverState *bs)
3097{
3098 BdrvChild *c;
3099 QLIST_FOREACH(c, &bs->parents, next_parent) {
3100 if (c->role->resize) {
3101 c->role->resize(c);
3102 }
3103 }
3104}
3105
3106/**
3107 * Truncate file to 'offset' bytes (needed only for file protocols)
3108 */
3109int coroutine_fn bdrv_co_truncate(BdrvChild *child, int64_t offset,
3110 PreallocMode prealloc, Error **errp)
3111{
3112 BlockDriverState *bs = child->bs;
3113 BlockDriver *drv = bs->drv;
1bc5f09f
KW
3114 BdrvTrackedRequest req;
3115 int64_t old_size, new_bytes;
3d9f2d2a
KW
3116 int ret;
3117
3118 assert(child->perm & BLK_PERM_RESIZE);
3119
3120 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
3121 if (!drv) {
3122 error_setg(errp, "No medium inserted");
3123 return -ENOMEDIUM;
3124 }
3125 if (offset < 0) {
3126 error_setg(errp, "Image size cannot be negative");
3127 return -EINVAL;
3128 }
3129
1bc5f09f
KW
3130 old_size = bdrv_getlength(bs);
3131 if (old_size < 0) {
3132 error_setg_errno(errp, -old_size, "Failed to get old image size");
3133 return old_size;
3134 }
3135
3136 if (offset > old_size) {
3137 new_bytes = offset - old_size;
3138 } else {
3139 new_bytes = 0;
3140 }
3141
3d9f2d2a 3142 bdrv_inc_in_flight(bs);
1bc5f09f
KW
3143 tracked_request_begin(&req, bs, offset, new_bytes, BDRV_TRACKED_TRUNCATE);
3144
3145 /* If we are growing the image and potentially using preallocation for the
3146 * new area, we need to make sure that no write requests are made to it
3147 * concurrently or they might be overwritten by preallocation. */
3148 if (new_bytes) {
3149 mark_request_serialising(&req, 1);
3150 wait_serialising_requests(&req);
3151 }
3d9f2d2a
KW
3152
3153 if (!drv->bdrv_co_truncate) {
3154 if (bs->file && drv->is_filter) {
3155 ret = bdrv_co_truncate(bs->file, offset, prealloc, errp);
3156 goto out;
3157 }
3158 error_setg(errp, "Image format driver does not support resize");
3159 ret = -ENOTSUP;
3160 goto out;
3161 }
3162 if (bs->read_only) {
3163 error_setg(errp, "Image is read-only");
3164 ret = -EACCES;
3165 goto out;
3166 }
3167
3168 assert(!(bs->open_flags & BDRV_O_INACTIVE));
3169
3170 ret = drv->bdrv_co_truncate(bs, offset, prealloc, errp);
3171 if (ret < 0) {
3172 goto out;
3173 }
3174 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
3175 if (ret < 0) {
3176 error_setg_errno(errp, -ret, "Could not refresh total sector count");
3177 } else {
3178 offset = bs->total_sectors * BDRV_SECTOR_SIZE;
3179 }
3180 bdrv_dirty_bitmap_truncate(bs, offset);
3181 bdrv_parent_cb_resize(bs);
3182 atomic_inc(&bs->write_gen);
3183
3184out:
1bc5f09f 3185 tracked_request_end(&req);
3d9f2d2a 3186 bdrv_dec_in_flight(bs);
1bc5f09f 3187
3d9f2d2a
KW
3188 return ret;
3189}
3190
3191typedef struct TruncateCo {
3192 BdrvChild *child;
3193 int64_t offset;
3194 PreallocMode prealloc;
3195 Error **errp;
3196 int ret;
3197} TruncateCo;
3198
3199static void coroutine_fn bdrv_truncate_co_entry(void *opaque)
3200{
3201 TruncateCo *tco = opaque;
3202 tco->ret = bdrv_co_truncate(tco->child, tco->offset, tco->prealloc,
3203 tco->errp);
3204}
3205
3206int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
3207 Error **errp)
3208{
3209 Coroutine *co;
3210 TruncateCo tco = {
3211 .child = child,
3212 .offset = offset,
3213 .prealloc = prealloc,
3214 .errp = errp,
3215 .ret = NOT_DONE,
3216 };
3217
3218 if (qemu_in_coroutine()) {
3219 /* Fast-path if already in coroutine context */
3220 bdrv_truncate_co_entry(&tco);
3221 } else {
3222 co = qemu_coroutine_create(bdrv_truncate_co_entry, &tco);
3223 qemu_coroutine_enter(co);
3224 BDRV_POLL_WHILE(child->bs, tco.ret == NOT_DONE);
3225 }
3226
3227 return tco.ret;
3228}
This page took 0.76822 seconds and 4 git commands to generate.