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