io.c 77.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Block layer I/O functions
 *
 * Copyright (c) 2003 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

P
Peter Maydell 已提交
25
#include "qemu/osdep.h"
26
#include "trace.h"
27
#include "sysemu/block-backend.h"
28 29
#include "block/blockjob.h"
#include "block/block_int.h"
30
#include "qemu/cutils.h"
31
#include "qapi/error.h"
32
#include "qemu/error-report.h"
33 34 35

#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */

36 37 38 39 40 41 42
static BlockAIOCB *bdrv_co_aio_prw_vector(BdrvChild *child,
                                          int64_t offset,
                                          QEMUIOVector *qiov,
                                          BdrvRequestFlags flags,
                                          BlockCompletionFunc *cb,
                                          void *opaque,
                                          bool is_write);
43
static void coroutine_fn bdrv_co_do_rw(void *opaque);
E
Eric Blake 已提交
44 45
static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
    int64_t offset, int count, BdrvRequestFlags flags);
46

47
static void bdrv_parent_drained_begin(BlockDriverState *bs)
48
{
49
    BdrvChild *c;
50

51 52 53 54
    QLIST_FOREACH(c, &bs->parents, next_parent) {
        if (c->role->drained_begin) {
            c->role->drained_begin(c);
        }
55 56
    }
}
57

58
static void bdrv_parent_drained_end(BlockDriverState *bs)
59
{
60
    BdrvChild *c;
61

62 63 64 65
    QLIST_FOREACH(c, &bs->parents, next_parent) {
        if (c->role->drained_end) {
            c->role->drained_end(c);
        }
66
    }
67 68
}

69 70 71 72 73 74 75 76 77 78 79
static void bdrv_merge_limits(BlockLimits *dst, const BlockLimits *src)
{
    dst->opt_transfer = MAX(dst->opt_transfer, src->opt_transfer);
    dst->max_transfer = MIN_NON_ZERO(dst->max_transfer, src->max_transfer);
    dst->opt_mem_alignment = MAX(dst->opt_mem_alignment,
                                 src->opt_mem_alignment);
    dst->min_mem_alignment = MAX(dst->min_mem_alignment,
                                 src->min_mem_alignment);
    dst->max_iov = MIN_NON_ZERO(dst->max_iov, src->max_iov);
}

80 81 82 83 84 85 86 87 88 89 90
void bdrv_refresh_limits(BlockDriverState *bs, Error **errp)
{
    BlockDriver *drv = bs->drv;
    Error *local_err = NULL;

    memset(&bs->bl, 0, sizeof(bs->bl));

    if (!drv) {
        return;
    }

91
    /* Default alignment based on whether driver has byte interface */
92
    bs->bl.request_alignment = drv->bdrv_co_preadv ? 1 : 512;
93

94 95
    /* Take some limits from the children as a default */
    if (bs->file) {
K
Kevin Wolf 已提交
96
        bdrv_refresh_limits(bs->file->bs, &local_err);
97 98 99 100
        if (local_err) {
            error_propagate(errp, local_err);
            return;
        }
101
        bdrv_merge_limits(&bs->bl, &bs->file->bs->bl);
102
    } else {
103
        bs->bl.min_mem_alignment = 512;
104
        bs->bl.opt_mem_alignment = getpagesize();
105 106 107

        /* Safe default since most protocols use readv()/writev()/etc */
        bs->bl.max_iov = IOV_MAX;
108 109
    }

110 111
    if (bs->backing) {
        bdrv_refresh_limits(bs->backing->bs, &local_err);
112 113 114 115
        if (local_err) {
            error_propagate(errp, local_err);
            return;
        }
116
        bdrv_merge_limits(&bs->bl, &bs->backing->bs->bl);
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
    }

    /* Then let the driver override it */
    if (drv->bdrv_refresh_limits) {
        drv->bdrv_refresh_limits(bs, errp);
    }
}

/**
 * The copy-on-read flag is actually a reference count so multiple users may
 * use the feature without worrying about clobbering its previous state.
 * Copy-on-read stays enabled until all users have called to disable it.
 */
void bdrv_enable_copy_on_read(BlockDriverState *bs)
{
    bs->copy_on_read++;
}

void bdrv_disable_copy_on_read(BlockDriverState *bs)
{
    assert(bs->copy_on_read > 0);
    bs->copy_on_read--;
}

/* Check if any requests are in-flight (including throttled requests) */
142
bool bdrv_requests_pending(BlockDriverState *bs)
143
{
144 145
    BdrvChild *child;

146
    if (atomic_read(&bs->in_flight)) {
147 148
        return true;
    }
149 150 151 152 153

    QLIST_FOREACH(child, &bs->children, next) {
        if (bdrv_requests_pending(child->bs)) {
            return true;
        }
154
    }
155

156 157 158
    return false;
}

159
static bool bdrv_drain_recurse(BlockDriverState *bs)
160 161
{
    BdrvChild *child;
162 163
    bool waited;

P
Paolo Bonzini 已提交
164
    waited = BDRV_POLL_WHILE(bs, atomic_read(&bs->in_flight) > 0);
165 166 167 168

    if (bs->drv && bs->drv->bdrv_drain) {
        bs->drv->bdrv_drain(bs);
    }
169

170
    QLIST_FOREACH(child, &bs->children, next) {
171
        waited |= bdrv_drain_recurse(child->bs);
172
    }
173 174

    return waited;
175 176
}

F
Fam Zheng 已提交
177 178 179 180 181 182 183 184 185 186
typedef struct {
    Coroutine *co;
    BlockDriverState *bs;
    bool done;
} BdrvCoDrainData;

static void bdrv_co_drain_bh_cb(void *opaque)
{
    BdrvCoDrainData *data = opaque;
    Coroutine *co = data->co;
187
    BlockDriverState *bs = data->bs;
F
Fam Zheng 已提交
188

189
    bdrv_dec_in_flight(bs);
190
    bdrv_drained_begin(bs);
F
Fam Zheng 已提交
191
    data->done = true;
192
    aio_co_wake(co);
F
Fam Zheng 已提交
193 194
}

195
static void coroutine_fn bdrv_co_yield_to_drain(BlockDriverState *bs)
F
Fam Zheng 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208
{
    BdrvCoDrainData data;

    /* Calling bdrv_drain() from a BH ensures the current coroutine yields and
     * other coroutines run if they were queued from
     * qemu_co_queue_run_restart(). */

    assert(qemu_in_coroutine());
    data = (BdrvCoDrainData) {
        .co = qemu_coroutine_self(),
        .bs = bs,
        .done = false,
    };
209
    bdrv_inc_in_flight(bs);
P
Paolo Bonzini 已提交
210 211
    aio_bh_schedule_oneshot(bdrv_get_aio_context(bs),
                            bdrv_co_drain_bh_cb, &data);
F
Fam Zheng 已提交
212 213 214 215 216 217 218

    qemu_coroutine_yield();
    /* If we are resumed from some other event (such as an aio completion or a
     * timer callback), it is a bug in the caller that should be fixed. */
    assert(data.done);
}

219 220
void bdrv_drained_begin(BlockDriverState *bs)
{
221 222 223 224 225
    if (qemu_in_coroutine()) {
        bdrv_co_yield_to_drain(bs);
        return;
    }

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
    if (!bs->quiesce_counter++) {
        aio_disable_external(bdrv_get_aio_context(bs));
        bdrv_parent_drained_begin(bs);
    }

    bdrv_drain_recurse(bs);
}

void bdrv_drained_end(BlockDriverState *bs)
{
    assert(bs->quiesce_counter > 0);
    if (--bs->quiesce_counter > 0) {
        return;
    }

    bdrv_parent_drained_end(bs);
    aio_enable_external(bdrv_get_aio_context(bs));
}

245
/*
246 247
 * Wait for pending requests to complete on a single BlockDriverState subtree,
 * and suspend block driver's internal I/O until next request arrives.
248 249 250
 *
 * Note that unlike bdrv_drain_all(), the caller must hold the BlockDriverState
 * AioContext.
251 252 253 254
 *
 * Only this BlockDriverState's AioContext is run, so in-flight requests must
 * not depend on events in other AioContexts.  In that case, use
 * bdrv_drain_all() instead.
255
 */
256
void coroutine_fn bdrv_co_drain(BlockDriverState *bs)
257
{
258 259 260
    assert(qemu_in_coroutine());
    bdrv_drained_begin(bs);
    bdrv_drained_end(bs);
261
}
262

263 264
void bdrv_drain(BlockDriverState *bs)
{
265 266
    bdrv_drained_begin(bs);
    bdrv_drained_end(bs);
267 268 269 270 271 272 273
}

/*
 * Wait for pending requests to complete across all BlockDriverStates
 *
 * This function does not flush data to disk, use bdrv_flush_all() for that
 * after calling this function.
274 275 276 277 278 279
 *
 * This pauses all block jobs and disables external clients. It must
 * be paired with bdrv_drain_all_end().
 *
 * NOTE: no new block jobs or BlockDriverStates can be created between
 * the bdrv_drain_all_begin() and bdrv_drain_all_end() calls.
280
 */
281
void bdrv_drain_all_begin(void)
282 283
{
    /* Always run first iteration so any pending completion BHs run */
284
    bool waited = true;
K
Kevin Wolf 已提交
285
    BlockDriverState *bs;
K
Kevin Wolf 已提交
286
    BdrvNextIterator it;
287
    BlockJob *job = NULL;
288
    GSList *aio_ctxs = NULL, *ctx;
289

290 291 292 293 294 295 296 297
    while ((job = block_job_next(job))) {
        AioContext *aio_context = blk_get_aio_context(job->blk);

        aio_context_acquire(aio_context);
        block_job_pause(job);
        aio_context_release(aio_context);
    }

K
Kevin Wolf 已提交
298
    for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
299 300 301
        AioContext *aio_context = bdrv_get_aio_context(bs);

        aio_context_acquire(aio_context);
302
        bdrv_parent_drained_begin(bs);
303
        aio_disable_external(aio_context);
304
        aio_context_release(aio_context);
305

306
        if (!g_slist_find(aio_ctxs, aio_context)) {
307 308
            aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
        }
309 310
    }

311 312 313 314 315 316
    /* Note that completion of an asynchronous I/O operation can trigger any
     * number of other I/O operations on other devices---for example a
     * coroutine can submit an I/O request to another device in response to
     * request completion.  Therefore we must keep looping until there was no
     * more activity rather than simply draining each device independently.
     */
317 318
    while (waited) {
        waited = false;
319

320 321
        for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
            AioContext *aio_context = ctx->data;
322 323

            aio_context_acquire(aio_context);
K
Kevin Wolf 已提交
324
            for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
325
                if (aio_context == bdrv_get_aio_context(bs)) {
326
                    waited |= bdrv_drain_recurse(bs);
327 328
                }
            }
329 330 331 332
            aio_context_release(aio_context);
        }
    }

333 334 335 336 337 338 339 340 341
    g_slist_free(aio_ctxs);
}

void bdrv_drain_all_end(void)
{
    BlockDriverState *bs;
    BdrvNextIterator it;
    BlockJob *job = NULL;

K
Kevin Wolf 已提交
342
    for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
343 344 345
        AioContext *aio_context = bdrv_get_aio_context(bs);

        aio_context_acquire(aio_context);
346
        aio_enable_external(aio_context);
347
        bdrv_parent_drained_end(bs);
348 349
        aio_context_release(aio_context);
    }
350 351 352 353 354 355 356 357

    while ((job = block_job_next(job))) {
        AioContext *aio_context = blk_get_aio_context(job->blk);

        aio_context_acquire(aio_context);
        block_job_resume(job);
        aio_context_release(aio_context);
    }
358 359
}

360 361 362 363 364 365
void bdrv_drain_all(void)
{
    bdrv_drain_all_begin();
    bdrv_drain_all_end();
}

366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
/**
 * Remove an active request from the tracked requests list
 *
 * This function should be called when a tracked request is completing.
 */
static void tracked_request_end(BdrvTrackedRequest *req)
{
    if (req->serialising) {
        req->bs->serialising_in_flight--;
    }

    QLIST_REMOVE(req, list);
    qemu_co_queue_restart_all(&req->wait_queue);
}

/**
 * Add an active request to the tracked requests list
 */
static void tracked_request_begin(BdrvTrackedRequest *req,
                                  BlockDriverState *bs,
                                  int64_t offset,
387 388
                                  unsigned int bytes,
                                  enum BdrvTrackedRequestType type)
389 390 391 392 393
{
    *req = (BdrvTrackedRequest){
        .bs = bs,
        .offset         = offset,
        .bytes          = bytes,
394
        .type           = type,
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
        .co             = qemu_coroutine_self(),
        .serialising    = false,
        .overlap_offset = offset,
        .overlap_bytes  = bytes,
    };

    qemu_co_queue_init(&req->wait_queue);

    QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
}

static void mark_request_serialising(BdrvTrackedRequest *req, uint64_t align)
{
    int64_t overlap_offset = req->offset & ~(align - 1);
    unsigned int overlap_bytes = ROUND_UP(req->offset + req->bytes, align)
                               - overlap_offset;

    if (!req->serialising) {
        req->bs->serialising_in_flight++;
        req->serialising = true;
    }

    req->overlap_offset = MIN(req->overlap_offset, overlap_offset);
    req->overlap_bytes = MAX(req->overlap_bytes, overlap_bytes);
}

/**
422
 * Round a region to cluster boundaries (sector-based)
423
 */
424 425 426 427
void bdrv_round_sectors_to_clusters(BlockDriverState *bs,
                                    int64_t sector_num, int nb_sectors,
                                    int64_t *cluster_sector_num,
                                    int *cluster_nb_sectors)
428 429 430 431 432 433 434 435 436 437 438 439 440 441
{
    BlockDriverInfo bdi;

    if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
        *cluster_sector_num = sector_num;
        *cluster_nb_sectors = nb_sectors;
    } else {
        int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE;
        *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c);
        *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num +
                                            nb_sectors, c);
    }
}

442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
/**
 * Round a region to cluster boundaries
 */
void bdrv_round_to_clusters(BlockDriverState *bs,
                            int64_t offset, unsigned int bytes,
                            int64_t *cluster_offset,
                            unsigned int *cluster_bytes)
{
    BlockDriverInfo bdi;

    if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
        *cluster_offset = offset;
        *cluster_bytes = bytes;
    } else {
        int64_t c = bdi.cluster_size;
        *cluster_offset = QEMU_ALIGN_DOWN(offset, c);
        *cluster_bytes = QEMU_ALIGN_UP(offset - *cluster_offset + bytes, c);
    }
}

462 463 464 465 466 467 468
static int bdrv_get_cluster_size(BlockDriverState *bs)
{
    BlockDriverInfo bdi;
    int ret;

    ret = bdrv_get_info(bs, &bdi);
    if (ret < 0 || bdi.cluster_size == 0) {
469
        return bs->bl.request_alignment;
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
    } else {
        return bdi.cluster_size;
    }
}

static bool tracked_request_overlaps(BdrvTrackedRequest *req,
                                     int64_t offset, unsigned int bytes)
{
    /*        aaaa   bbbb */
    if (offset >= req->overlap_offset + req->overlap_bytes) {
        return false;
    }
    /* bbbb   aaaa        */
    if (req->overlap_offset >= offset + bytes) {
        return false;
    }
    return true;
}

489 490 491 492 493
void bdrv_inc_in_flight(BlockDriverState *bs)
{
    atomic_inc(&bs->in_flight);
}

494 495 496 497 498 499 500 501 502 503 504
static void dummy_bh_cb(void *opaque)
{
}

void bdrv_wakeup(BlockDriverState *bs)
{
    if (bs->wakeup) {
        aio_bh_schedule_oneshot(qemu_get_aio_context(), dummy_bh_cb, NULL);
    }
}

505 506 507
void bdrv_dec_in_flight(BlockDriverState *bs)
{
    atomic_dec(&bs->in_flight);
508
    bdrv_wakeup(bs);
509 510
}

511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
static bool coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self)
{
    BlockDriverState *bs = self->bs;
    BdrvTrackedRequest *req;
    bool retry;
    bool waited = false;

    if (!bs->serialising_in_flight) {
        return false;
    }

    do {
        retry = false;
        QLIST_FOREACH(req, &bs->tracked_requests, list) {
            if (req == self || (!req->serialising && !self->serialising)) {
                continue;
            }
            if (tracked_request_overlaps(req, self->overlap_offset,
                                         self->overlap_bytes))
            {
                /* Hitting this means there was a reentrant request, for
                 * example, a block driver issuing nested requests.  This must
                 * never happen since it means deadlock.
                 */
                assert(qemu_coroutine_self() != req->co);

                /* If the request is already (indirectly) waiting for us, or
                 * will wait for us as soon as it wakes up, then just go on
                 * (instead of producing a deadlock in the former case). */
                if (!req->waiting_for) {
                    self->waiting_for = req;
542
                    qemu_co_queue_wait(&req->wait_queue, NULL);
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
                    self->waiting_for = NULL;
                    retry = true;
                    waited = true;
                    break;
                }
            }
        }
    } while (retry);

    return waited;
}

static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
                                   size_t size)
{
    if (size > BDRV_REQUEST_MAX_SECTORS << BDRV_SECTOR_BITS) {
        return -EIO;
    }

    if (!bdrv_is_inserted(bs)) {
        return -ENOMEDIUM;
    }

    if (offset < 0) {
        return -EIO;
    }

    return 0;
}

typedef struct RwCo {
574
    BdrvChild *child;
575 576 577 578 579 580 581 582 583 584 585 586
    int64_t offset;
    QEMUIOVector *qiov;
    bool is_write;
    int ret;
    BdrvRequestFlags flags;
} RwCo;

static void coroutine_fn bdrv_rw_co_entry(void *opaque)
{
    RwCo *rwco = opaque;

    if (!rwco->is_write) {
587
        rwco->ret = bdrv_co_preadv(rwco->child, rwco->offset,
588 589
                                   rwco->qiov->size, rwco->qiov,
                                   rwco->flags);
590
    } else {
591
        rwco->ret = bdrv_co_pwritev(rwco->child, rwco->offset,
592 593
                                    rwco->qiov->size, rwco->qiov,
                                    rwco->flags);
594 595 596 597 598 599
    }
}

/*
 * Process a vectored synchronous request using coroutines
 */
600
static int bdrv_prwv_co(BdrvChild *child, int64_t offset,
601 602 603 604 605
                        QEMUIOVector *qiov, bool is_write,
                        BdrvRequestFlags flags)
{
    Coroutine *co;
    RwCo rwco = {
606
        .child = child,
607 608 609 610 611 612 613 614 615 616 617
        .offset = offset,
        .qiov = qiov,
        .is_write = is_write,
        .ret = NOT_DONE,
        .flags = flags,
    };

    if (qemu_in_coroutine()) {
        /* Fast-path if already in coroutine context */
        bdrv_rw_co_entry(&rwco);
    } else {
618 619
        co = qemu_coroutine_create(bdrv_rw_co_entry, &rwco);
        qemu_coroutine_enter(co);
P
Paolo Bonzini 已提交
620
        BDRV_POLL_WHILE(child->bs, rwco.ret == NOT_DONE);
621 622 623 624 625 626 627
    }
    return rwco.ret;
}

/*
 * Process a synchronous request using coroutines
 */
628
static int bdrv_rw_co(BdrvChild *child, int64_t sector_num, uint8_t *buf,
629 630 631 632 633 634 635 636 637 638 639 640 641
                      int nb_sectors, bool is_write, BdrvRequestFlags flags)
{
    QEMUIOVector qiov;
    struct iovec iov = {
        .iov_base = (void *)buf,
        .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
    };

    if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
        return -EINVAL;
    }

    qemu_iovec_init_external(&qiov, &iov, 1);
642
    return bdrv_prwv_co(child, sector_num << BDRV_SECTOR_BITS,
643 644 645 646
                        &qiov, is_write, flags);
}

/* return < 0 if error. See bdrv_write() for the return codes */
647
int bdrv_read(BdrvChild *child, int64_t sector_num,
648 649
              uint8_t *buf, int nb_sectors)
{
650
    return bdrv_rw_co(child, sector_num, buf, nb_sectors, false, 0);
651 652 653 654 655 656 657 658
}

/* Return < 0 if error. Important errors are:
  -EIO         generic I/O error (may happen for all errors)
  -ENOMEDIUM   No media inserted.
  -EINVAL      Invalid sector number or nb_sectors
  -EACCES      Trying to write a read-only device
*/
659
int bdrv_write(BdrvChild *child, int64_t sector_num,
660 661
               const uint8_t *buf, int nb_sectors)
{
662
    return bdrv_rw_co(child, sector_num, (uint8_t *)buf, nb_sectors, true, 0);
663 664
}

665
int bdrv_pwrite_zeroes(BdrvChild *child, int64_t offset,
666
                       int count, BdrvRequestFlags flags)
667
{
668 669 670 671 672 673 674
    QEMUIOVector qiov;
    struct iovec iov = {
        .iov_base = NULL,
        .iov_len = count,
    };

    qemu_iovec_init_external(&qiov, &iov, 1);
675
    return bdrv_prwv_co(child, offset, &qiov, true,
676
                        BDRV_REQ_ZERO_WRITE | flags);
677 678 679
}

/*
680
 * Completely zero out a block device with the help of bdrv_pwrite_zeroes.
681 682
 * The operation is sped up by checking the block status and only writing
 * zeroes to the device if they currently do not return zeroes. Optional
683
 * flags are passed through to bdrv_pwrite_zeroes (e.g. BDRV_REQ_MAY_UNMAP,
684
 * BDRV_REQ_FUA).
685 686 687
 *
 * Returns < 0 on error, 0 on success. For error codes see bdrv_write().
 */
688
int bdrv_make_zero(BdrvChild *child, BdrvRequestFlags flags)
689 690
{
    int64_t target_sectors, ret, nb_sectors, sector_num = 0;
691
    BlockDriverState *bs = child->bs;
692
    BlockDriverState *file;
693 694 695 696 697 698 699 700 701 702 703 704
    int n;

    target_sectors = bdrv_nb_sectors(bs);
    if (target_sectors < 0) {
        return target_sectors;
    }

    for (;;) {
        nb_sectors = MIN(target_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
        if (nb_sectors <= 0) {
            return 0;
        }
705
        ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &n, &file);
706 707 708 709 710 711 712 713 714
        if (ret < 0) {
            error_report("error getting block status at sector %" PRId64 ": %s",
                         sector_num, strerror(-ret));
            return ret;
        }
        if (ret & BDRV_BLOCK_ZERO) {
            sector_num += n;
            continue;
        }
715
        ret = bdrv_pwrite_zeroes(child, sector_num << BDRV_SECTOR_BITS,
716
                                 n << BDRV_SECTOR_BITS, flags);
717 718 719 720 721 722 723 724 725
        if (ret < 0) {
            error_report("error writing zeroes at sector %" PRId64 ": %s",
                         sector_num, strerror(-ret));
            return ret;
        }
        sector_num += n;
    }
}

726
int bdrv_preadv(BdrvChild *child, int64_t offset, QEMUIOVector *qiov)
K
Kevin Wolf 已提交
727 728 729
{
    int ret;

730
    ret = bdrv_prwv_co(child, offset, qiov, false, 0);
K
Kevin Wolf 已提交
731 732 733 734 735 736 737
    if (ret < 0) {
        return ret;
    }

    return qiov->size;
}

738
int bdrv_pread(BdrvChild *child, int64_t offset, void *buf, int bytes)
739 740 741 742 743 744 745 746 747 748 749 750
{
    QEMUIOVector qiov;
    struct iovec iov = {
        .iov_base = (void *)buf,
        .iov_len = bytes,
    };

    if (bytes < 0) {
        return -EINVAL;
    }

    qemu_iovec_init_external(&qiov, &iov, 1);
751
    return bdrv_preadv(child, offset, &qiov);
752 753
}

754
int bdrv_pwritev(BdrvChild *child, int64_t offset, QEMUIOVector *qiov)
755 756 757
{
    int ret;

758
    ret = bdrv_prwv_co(child, offset, qiov, true, 0);
759 760 761 762 763 764 765
    if (ret < 0) {
        return ret;
    }

    return qiov->size;
}

766
int bdrv_pwrite(BdrvChild *child, int64_t offset, const void *buf, int bytes)
767 768 769 770 771 772 773 774 775 776 777 778
{
    QEMUIOVector qiov;
    struct iovec iov = {
        .iov_base   = (void *) buf,
        .iov_len    = bytes,
    };

    if (bytes < 0) {
        return -EINVAL;
    }

    qemu_iovec_init_external(&qiov, &iov, 1);
779
    return bdrv_pwritev(child, offset, &qiov);
780 781 782 783 784 785 786 787
}

/*
 * Writes to the file and ensures that no writes are reordered across this
 * request (acts as a barrier)
 *
 * Returns 0 on success, -errno in error cases.
 */
788 789
int bdrv_pwrite_sync(BdrvChild *child, int64_t offset,
                     const void *buf, int count)
790 791 792
{
    int ret;

793
    ret = bdrv_pwrite(child, offset, buf, count);
794 795 796 797
    if (ret < 0) {
        return ret;
    }

798
    ret = bdrv_flush(child->bs);
799 800
    if (ret < 0) {
        return ret;
801 802 803 804 805
    }

    return 0;
}

806 807 808 809 810 811 812 813 814 815
typedef struct CoroutineIOCompletion {
    Coroutine *coroutine;
    int ret;
} CoroutineIOCompletion;

static void bdrv_co_io_em_complete(void *opaque, int ret)
{
    CoroutineIOCompletion *co = opaque;

    co->ret = ret;
816
    aio_co_wake(co->coroutine);
817 818
}

819 820 821 822 823
static int coroutine_fn bdrv_driver_preadv(BlockDriverState *bs,
                                           uint64_t offset, uint64_t bytes,
                                           QEMUIOVector *qiov, int flags)
{
    BlockDriver *drv = bs->drv;
824 825 826
    int64_t sector_num;
    unsigned int nb_sectors;

827 828
    assert(!(flags & ~BDRV_REQ_MASK));

829 830 831 832 833 834
    if (drv->bdrv_co_preadv) {
        return drv->bdrv_co_preadv(bs, offset, bytes, qiov, flags);
    }

    sector_num = offset >> BDRV_SECTOR_BITS;
    nb_sectors = bytes >> BDRV_SECTOR_BITS;
835 836 837 838 839

    assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
    assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
    assert((bytes >> BDRV_SECTOR_BITS) <= BDRV_REQUEST_MAX_SECTORS);

840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
    if (drv->bdrv_co_readv) {
        return drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
    } else {
        BlockAIOCB *acb;
        CoroutineIOCompletion co = {
            .coroutine = qemu_coroutine_self(),
        };

        acb = bs->drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors,
                                      bdrv_co_io_em_complete, &co);
        if (acb == NULL) {
            return -EIO;
        } else {
            qemu_coroutine_yield();
            return co.ret;
        }
    }
857 858
}

859 860 861 862 863
static int coroutine_fn bdrv_driver_pwritev(BlockDriverState *bs,
                                            uint64_t offset, uint64_t bytes,
                                            QEMUIOVector *qiov, int flags)
{
    BlockDriver *drv = bs->drv;
864 865
    int64_t sector_num;
    unsigned int nb_sectors;
866 867
    int ret;

868 869
    assert(!(flags & ~BDRV_REQ_MASK));

870
    if (drv->bdrv_co_pwritev) {
871 872 873
        ret = drv->bdrv_co_pwritev(bs, offset, bytes, qiov,
                                   flags & bs->supported_write_flags);
        flags &= ~bs->supported_write_flags;
874 875 876 877 878 879
        goto emulate_flags;
    }

    sector_num = offset >> BDRV_SECTOR_BITS;
    nb_sectors = bytes >> BDRV_SECTOR_BITS;

880 881 882 883 884 885
    assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
    assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
    assert((bytes >> BDRV_SECTOR_BITS) <= BDRV_REQUEST_MAX_SECTORS);

    if (drv->bdrv_co_writev_flags) {
        ret = drv->bdrv_co_writev_flags(bs, sector_num, nb_sectors, qiov,
886 887
                                        flags & bs->supported_write_flags);
        flags &= ~bs->supported_write_flags;
888
    } else if (drv->bdrv_co_writev) {
889
        assert(!bs->supported_write_flags);
890
        ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
891 892 893 894 895 896 897 898 899
    } else {
        BlockAIOCB *acb;
        CoroutineIOCompletion co = {
            .coroutine = qemu_coroutine_self(),
        };

        acb = bs->drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors,
                                       bdrv_co_io_em_complete, &co);
        if (acb == NULL) {
900
            ret = -EIO;
901 902
        } else {
            qemu_coroutine_yield();
903
            ret = co.ret;
904
        }
905 906
    }

907
emulate_flags:
908
    if (ret == 0 && (flags & BDRV_REQ_FUA)) {
909 910 911 912 913 914
        ret = bdrv_co_flush(bs);
    }

    return ret;
}

915 916 917 918 919 920 921 922 923 924 925 926 927
static int coroutine_fn
bdrv_driver_pwritev_compressed(BlockDriverState *bs, uint64_t offset,
                               uint64_t bytes, QEMUIOVector *qiov)
{
    BlockDriver *drv = bs->drv;

    if (!drv->bdrv_co_pwritev_compressed) {
        return -ENOTSUP;
    }

    return drv->bdrv_co_pwritev_compressed(bs, offset, bytes, qiov);
}

928
static int coroutine_fn bdrv_co_do_copy_on_readv(BdrvChild *child,
929
        int64_t offset, unsigned int bytes, QEMUIOVector *qiov)
930
{
931 932
    BlockDriverState *bs = child->bs;

933 934 935 936 937 938 939 940 941 942
    /* Perform I/O through a temporary buffer so that users who scribble over
     * their read buffer while the operation is in progress do not end up
     * modifying the image file.  This is critical for zero-copy guest I/O
     * where anything might happen inside guest memory.
     */
    void *bounce_buffer;

    BlockDriver *drv = bs->drv;
    struct iovec iov;
    QEMUIOVector bounce_qiov;
943 944
    int64_t cluster_offset;
    unsigned int cluster_bytes;
945 946 947 948 949 950
    size_t skip_bytes;
    int ret;

    /* Cover entire cluster so no additional backing file I/O is required when
     * allocating cluster in the image file.
     */
951
    bdrv_round_to_clusters(bs, offset, bytes, &cluster_offset, &cluster_bytes);
952

953 954
    trace_bdrv_co_do_copy_on_readv(bs, offset, bytes,
                                   cluster_offset, cluster_bytes);
955

956
    iov.iov_len = cluster_bytes;
957 958 959 960 961 962 963 964
    iov.iov_base = bounce_buffer = qemu_try_blockalign(bs, iov.iov_len);
    if (bounce_buffer == NULL) {
        ret = -ENOMEM;
        goto err;
    }

    qemu_iovec_init_external(&bounce_qiov, &iov, 1);

965
    ret = bdrv_driver_preadv(bs, cluster_offset, cluster_bytes,
966
                             &bounce_qiov, 0);
967 968 969 970
    if (ret < 0) {
        goto err;
    }

E
Eric Blake 已提交
971
    if (drv->bdrv_co_pwrite_zeroes &&
972
        buffer_is_zero(bounce_buffer, iov.iov_len)) {
973 974 975
        /* FIXME: Should we (perhaps conditionally) be setting
         * BDRV_REQ_MAY_UNMAP, if it will allow for a sparser copy
         * that still correctly reads as zero? */
976
        ret = bdrv_co_do_pwrite_zeroes(bs, cluster_offset, cluster_bytes, 0);
977 978 979 980
    } else {
        /* This does not change the data on the disk, it is not necessary
         * to flush even in cache=writethrough mode.
         */
981
        ret = bdrv_driver_pwritev(bs, cluster_offset, cluster_bytes,
982
                                  &bounce_qiov, 0);
983 984 985 986 987 988 989 990 991 992
    }

    if (ret < 0) {
        /* It might be okay to ignore write errors for guest requests.  If this
         * is a deliberate copy-on-read then we don't want to ignore the error.
         * Simply report it in all cases.
         */
        goto err;
    }

993 994
    skip_bytes = offset - cluster_offset;
    qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes, bytes);
995 996 997 998 999 1000 1001 1002

err:
    qemu_vfree(bounce_buffer);
    return ret;
}

/*
 * Forwards an already correctly aligned request to the BlockDriver. This
1003 1004
 * handles copy on read, zeroing after EOF, and fragmentation of large
 * reads; any other features must be implemented by the caller.
1005
 */
1006
static int coroutine_fn bdrv_aligned_preadv(BdrvChild *child,
1007 1008 1009
    BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
    int64_t align, QEMUIOVector *qiov, int flags)
{
1010
    BlockDriverState *bs = child->bs;
K
Kevin Wolf 已提交
1011
    int64_t total_bytes, max_bytes;
1012 1013 1014
    int ret = 0;
    uint64_t bytes_remaining = bytes;
    int max_transfer;
1015

1016 1017 1018
    assert(is_power_of_2(align));
    assert((offset & (align - 1)) == 0);
    assert((bytes & (align - 1)) == 0);
1019
    assert(!qiov || bytes == qiov->size);
1020
    assert((bs->open_flags & BDRV_O_NO_IO) == 0);
1021 1022
    max_transfer = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_transfer, INT_MAX),
                                   align);
1023 1024 1025 1026 1027 1028

    /* TODO: We would need a per-BDS .supported_read_flags and
     * potential fallback support, if we ever implement any read flags
     * to pass through to drivers.  For now, there aren't any
     * passthrough flags.  */
    assert(!(flags & ~(BDRV_REQ_NO_SERIALISING | BDRV_REQ_COPY_ON_READ)));
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039

    /* Handle Copy on Read and associated serialisation */
    if (flags & BDRV_REQ_COPY_ON_READ) {
        /* If we touch the same cluster it counts as an overlap.  This
         * guarantees that allocating writes will be serialized and not race
         * with each other for the same cluster.  For example, in copy-on-read
         * it ensures that the CoR read and write operations are atomic and
         * guest writes cannot interleave between them. */
        mark_request_serialising(req, bdrv_get_cluster_size(bs));
    }

1040 1041 1042
    if (!(flags & BDRV_REQ_NO_SERIALISING)) {
        wait_serialising_requests(req);
    }
1043 1044

    if (flags & BDRV_REQ_COPY_ON_READ) {
1045 1046 1047
        int64_t start_sector = offset >> BDRV_SECTOR_BITS;
        int64_t end_sector = DIV_ROUND_UP(offset + bytes, BDRV_SECTOR_SIZE);
        unsigned int nb_sectors = end_sector - start_sector;
1048 1049
        int pnum;

1050
        ret = bdrv_is_allocated(bs, start_sector, nb_sectors, &pnum);
1051 1052 1053 1054 1055
        if (ret < 0) {
            goto out;
        }

        if (!ret || pnum != nb_sectors) {
1056
            ret = bdrv_co_do_copy_on_readv(child, offset, bytes, qiov);
1057 1058 1059 1060
            goto out;
        }
    }

1061
    /* Forward the request to the BlockDriver, possibly fragmenting it */
K
Kevin Wolf 已提交
1062 1063 1064 1065 1066
    total_bytes = bdrv_getlength(bs);
    if (total_bytes < 0) {
        ret = total_bytes;
        goto out;
    }
1067

K
Kevin Wolf 已提交
1068
    max_bytes = ROUND_UP(MAX(0, total_bytes - offset), align);
1069
    if (bytes <= max_bytes && bytes <= max_transfer) {
K
Kevin Wolf 已提交
1070
        ret = bdrv_driver_preadv(bs, offset, bytes, qiov, 0);
1071 1072
        goto out;
    }
1073

1074 1075
    while (bytes_remaining) {
        int num;
1076

1077 1078
        if (max_bytes) {
            QEMUIOVector local_qiov;
1079

1080 1081 1082 1083
            num = MIN(bytes_remaining, MIN(max_bytes, max_transfer));
            assert(num);
            qemu_iovec_init(&local_qiov, qiov->niov);
            qemu_iovec_concat(&local_qiov, qiov, bytes - bytes_remaining, num);
1084

1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
            ret = bdrv_driver_preadv(bs, offset + bytes - bytes_remaining,
                                     num, &local_qiov, 0);
            max_bytes -= num;
            qemu_iovec_destroy(&local_qiov);
        } else {
            num = bytes_remaining;
            ret = qemu_iovec_memset(qiov, bytes - bytes_remaining, 0,
                                    bytes_remaining);
        }
        if (ret < 0) {
            goto out;
        }
        bytes_remaining -= num;
1098 1099 1100
    }

out:
1101
    return ret < 0 ? ret : 0;
1102 1103 1104 1105 1106
}

/*
 * Handle a read request in coroutine context
 */
1107
int coroutine_fn bdrv_co_preadv(BdrvChild *child,
1108 1109 1110
    int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
    BdrvRequestFlags flags)
{
1111
    BlockDriverState *bs = child->bs;
1112 1113 1114
    BlockDriver *drv = bs->drv;
    BdrvTrackedRequest req;

1115
    uint64_t align = bs->bl.request_alignment;
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
    uint8_t *head_buf = NULL;
    uint8_t *tail_buf = NULL;
    QEMUIOVector local_qiov;
    bool use_local_qiov = false;
    int ret;

    if (!drv) {
        return -ENOMEDIUM;
    }

    ret = bdrv_check_byte_request(bs, offset, bytes);
    if (ret < 0) {
        return ret;
    }

1131 1132
    bdrv_inc_in_flight(bs);

1133
    /* Don't do copy-on-read if we read data before write operation */
1134
    if (bs->copy_on_read && !(flags & BDRV_REQ_NO_SERIALISING)) {
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
        flags |= BDRV_REQ_COPY_ON_READ;
    }

    /* Align read if necessary by padding qiov */
    if (offset & (align - 1)) {
        head_buf = qemu_blockalign(bs, align);
        qemu_iovec_init(&local_qiov, qiov->niov + 2);
        qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
        qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
        use_local_qiov = true;

        bytes += offset & (align - 1);
        offset = offset & ~(align - 1);
    }

    if ((offset + bytes) & (align - 1)) {
        if (!use_local_qiov) {
            qemu_iovec_init(&local_qiov, qiov->niov + 1);
            qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
            use_local_qiov = true;
        }
        tail_buf = qemu_blockalign(bs, align);
        qemu_iovec_add(&local_qiov, tail_buf,
                       align - ((offset + bytes) & (align - 1)));

        bytes = ROUND_UP(bytes, align);
    }

1163
    tracked_request_begin(&req, bs, offset, bytes, BDRV_TRACKED_READ);
1164
    ret = bdrv_aligned_preadv(child, &req, offset, bytes, align,
1165 1166 1167
                              use_local_qiov ? &local_qiov : qiov,
                              flags);
    tracked_request_end(&req);
1168
    bdrv_dec_in_flight(bs);
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178

    if (use_local_qiov) {
        qemu_iovec_destroy(&local_qiov);
        qemu_vfree(head_buf);
        qemu_vfree(tail_buf);
    }

    return ret;
}

1179
static int coroutine_fn bdrv_co_do_readv(BdrvChild *child,
1180 1181 1182 1183 1184 1185 1186
    int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
    BdrvRequestFlags flags)
{
    if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
        return -EINVAL;
    }

1187
    return bdrv_co_preadv(child, sector_num << BDRV_SECTOR_BITS,
1188
                          nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
1189 1190
}

1191 1192
int coroutine_fn bdrv_co_readv(BdrvChild *child, int64_t sector_num,
                               int nb_sectors, QEMUIOVector *qiov)
1193
{
1194
    trace_bdrv_co_readv(child->bs, sector_num, nb_sectors);
1195

1196
    return bdrv_co_do_readv(child, sector_num, nb_sectors, qiov, 0);
1197 1198
}

1199 1200
/* Maximum buffer for write zeroes fallback, in bytes */
#define MAX_WRITE_ZEROES_BOUNCE_BUFFER (32768 << BDRV_SECTOR_BITS)
1201

E
Eric Blake 已提交
1202 1203
static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
    int64_t offset, int count, BdrvRequestFlags flags)
1204 1205 1206 1207 1208
{
    BlockDriver *drv = bs->drv;
    QEMUIOVector qiov;
    struct iovec iov = {0};
    int ret = 0;
1209
    bool need_flush = false;
1210 1211
    int head = 0;
    int tail = 0;
1212

1213
    int max_write_zeroes = MIN_NON_ZERO(bs->bl.max_pwrite_zeroes, INT_MAX);
1214 1215
    int alignment = MAX(bs->bl.pwrite_zeroes_alignment,
                        bs->bl.request_alignment);
1216 1217
    int max_transfer = MIN_NON_ZERO(bs->bl.max_transfer,
                                    MAX_WRITE_ZEROES_BOUNCE_BUFFER);
E
Eric Blake 已提交
1218

1219 1220 1221 1222 1223
    assert(alignment % bs->bl.request_alignment == 0);
    head = offset % alignment;
    tail = (offset + count) % alignment;
    max_write_zeroes = QEMU_ALIGN_DOWN(max_write_zeroes, alignment);
    assert(max_write_zeroes >= bs->bl.request_alignment);
1224

E
Eric Blake 已提交
1225 1226
    while (count > 0 && !ret) {
        int num = count;
1227 1228

        /* Align request.  Block drivers can expect the "bulk" of the request
1229 1230
         * to be aligned, and that unaligned requests do not cross cluster
         * boundaries.
1231
         */
1232
        if (head) {
1233 1234 1235 1236 1237 1238
            /* Make a small request up to the first aligned sector. For
             * convenience, limit this request to max_transfer even if
             * we don't need to fall back to writes.  */
            num = MIN(MIN(count, max_transfer), alignment - head);
            head = (head + num) % alignment;
            assert(num < max_write_zeroes);
E
Eric Blake 已提交
1239
        } else if (tail && num > alignment) {
1240 1241
            /* Shorten the request to the last aligned sector.  */
            num -= tail;
1242 1243 1244 1245 1246 1247 1248 1249 1250
        }

        /* limit request size */
        if (num > max_write_zeroes) {
            num = max_write_zeroes;
        }

        ret = -ENOTSUP;
        /* First try the efficient write zeroes operation */
E
Eric Blake 已提交
1251 1252 1253 1254 1255 1256 1257
        if (drv->bdrv_co_pwrite_zeroes) {
            ret = drv->bdrv_co_pwrite_zeroes(bs, offset, num,
                                             flags & bs->supported_zero_flags);
            if (ret != -ENOTSUP && (flags & BDRV_REQ_FUA) &&
                !(bs->supported_zero_flags & BDRV_REQ_FUA)) {
                need_flush = true;
            }
1258 1259
        } else {
            assert(!bs->supported_zero_flags);
1260 1261 1262 1263
        }

        if (ret == -ENOTSUP) {
            /* Fall back to bounce buffer if write zeroes is unsupported */
1264 1265 1266 1267 1268 1269 1270 1271 1272
            BdrvRequestFlags write_flags = flags & ~BDRV_REQ_ZERO_WRITE;

            if ((flags & BDRV_REQ_FUA) &&
                !(bs->supported_write_flags & BDRV_REQ_FUA)) {
                /* No need for bdrv_driver_pwrite() to do a fallback
                 * flush on each chunk; use just one at the end */
                write_flags &= ~BDRV_REQ_FUA;
                need_flush = true;
            }
1273
            num = MIN(num, max_transfer);
E
Eric Blake 已提交
1274
            iov.iov_len = num;
1275
            if (iov.iov_base == NULL) {
E
Eric Blake 已提交
1276
                iov.iov_base = qemu_try_blockalign(bs, num);
1277 1278 1279 1280
                if (iov.iov_base == NULL) {
                    ret = -ENOMEM;
                    goto fail;
                }
E
Eric Blake 已提交
1281
                memset(iov.iov_base, 0, num);
1282 1283 1284
            }
            qemu_iovec_init_external(&qiov, &iov, 1);

E
Eric Blake 已提交
1285
            ret = bdrv_driver_pwritev(bs, offset, num, &qiov, write_flags);
1286 1287 1288 1289

            /* Keep bounce buffer around if it is big enough for all
             * all future requests.
             */
1290
            if (num < max_transfer) {
1291 1292 1293 1294 1295
                qemu_vfree(iov.iov_base);
                iov.iov_base = NULL;
            }
        }

E
Eric Blake 已提交
1296 1297
        offset += num;
        count -= num;
1298 1299 1300
    }

fail:
1301 1302 1303
    if (ret == 0 && need_flush) {
        ret = bdrv_co_flush(bs);
    }
1304 1305 1306 1307 1308
    qemu_vfree(iov.iov_base);
    return ret;
}

/*
1309 1310
 * Forwards an already correctly aligned write request to the BlockDriver,
 * after possibly fragmenting it.
1311
 */
1312
static int coroutine_fn bdrv_aligned_pwritev(BdrvChild *child,
1313
    BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
1314
    int64_t align, QEMUIOVector *qiov, int flags)
1315
{
1316
    BlockDriverState *bs = child->bs;
1317 1318 1319 1320
    BlockDriver *drv = bs->drv;
    bool waited;
    int ret;

1321 1322
    int64_t start_sector = offset >> BDRV_SECTOR_BITS;
    int64_t end_sector = DIV_ROUND_UP(offset + bytes, BDRV_SECTOR_SIZE);
1323 1324
    uint64_t bytes_remaining = bytes;
    int max_transfer;
1325

1326 1327 1328
    assert(is_power_of_2(align));
    assert((offset & (align - 1)) == 0);
    assert((bytes & (align - 1)) == 0);
1329
    assert(!qiov || bytes == qiov->size);
1330
    assert((bs->open_flags & BDRV_O_NO_IO) == 0);
1331
    assert(!(flags & ~BDRV_REQ_MASK));
1332 1333
    max_transfer = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_transfer, INT_MAX),
                                   align);
1334 1335 1336 1337 1338 1339 1340 1341 1342

    waited = wait_serialising_requests(req);
    assert(!waited || !req->serialising);
    assert(req->overlap_offset <= offset);
    assert(offset + bytes <= req->overlap_offset + req->overlap_bytes);

    ret = notifier_with_return_list_notify(&bs->before_write_notifiers, req);

    if (!ret && bs->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF &&
E
Eric Blake 已提交
1343
        !(flags & BDRV_REQ_ZERO_WRITE) && drv->bdrv_co_pwrite_zeroes &&
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
        qemu_iovec_is_zero(qiov)) {
        flags |= BDRV_REQ_ZERO_WRITE;
        if (bs->detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP) {
            flags |= BDRV_REQ_MAY_UNMAP;
        }
    }

    if (ret < 0) {
        /* Do nothing, write notifier decided to fail this request */
    } else if (flags & BDRV_REQ_ZERO_WRITE) {
K
Kevin Wolf 已提交
1354
        bdrv_debug_event(bs, BLKDBG_PWRITEV_ZERO);
1355
        ret = bdrv_co_do_pwrite_zeroes(bs, offset, bytes, flags);
1356 1357
    } else if (flags & BDRV_REQ_WRITE_COMPRESSED) {
        ret = bdrv_driver_pwritev_compressed(bs, offset, bytes, qiov);
1358
    } else if (bytes <= max_transfer) {
K
Kevin Wolf 已提交
1359
        bdrv_debug_event(bs, BLKDBG_PWRITEV);
1360
        ret = bdrv_driver_pwritev(bs, offset, bytes, qiov, flags);
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
    } else {
        bdrv_debug_event(bs, BLKDBG_PWRITEV);
        while (bytes_remaining) {
            int num = MIN(bytes_remaining, max_transfer);
            QEMUIOVector local_qiov;
            int local_flags = flags;

            assert(num);
            if (num < bytes_remaining && (flags & BDRV_REQ_FUA) &&
                !(bs->supported_write_flags & BDRV_REQ_FUA)) {
                /* If FUA is going to be emulated by flush, we only
                 * need to flush on the last iteration */
                local_flags &= ~BDRV_REQ_FUA;
            }
            qemu_iovec_init(&local_qiov, qiov->niov);
            qemu_iovec_concat(&local_qiov, qiov, bytes - bytes_remaining, num);

            ret = bdrv_driver_pwritev(bs, offset + bytes - bytes_remaining,
                                      num, &local_qiov, local_flags);
            qemu_iovec_destroy(&local_qiov);
            if (ret < 0) {
                break;
            }
            bytes_remaining -= num;
        }
1386
    }
K
Kevin Wolf 已提交
1387
    bdrv_debug_event(bs, BLKDBG_PWRITEV_DONE);
1388

1389
    ++bs->write_gen;
1390
    bdrv_set_dirty(bs, start_sector, end_sector - start_sector);
1391

1392 1393 1394
    if (bs->wr_highest_offset < offset + bytes) {
        bs->wr_highest_offset = offset + bytes;
    }
1395 1396

    if (ret >= 0) {
1397
        bs->total_sectors = MAX(bs->total_sectors, end_sector);
1398
        ret = 0;
1399 1400 1401 1402 1403
    }

    return ret;
}

1404
static int coroutine_fn bdrv_co_do_zero_pwritev(BdrvChild *child,
1405 1406 1407 1408 1409
                                                int64_t offset,
                                                unsigned int bytes,
                                                BdrvRequestFlags flags,
                                                BdrvTrackedRequest *req)
{
1410
    BlockDriverState *bs = child->bs;
1411 1412 1413
    uint8_t *buf = NULL;
    QEMUIOVector local_qiov;
    struct iovec iov;
1414
    uint64_t align = bs->bl.request_alignment;
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
    unsigned int head_padding_bytes, tail_padding_bytes;
    int ret = 0;

    head_padding_bytes = offset & (align - 1);
    tail_padding_bytes = align - ((offset + bytes) & (align - 1));


    assert(flags & BDRV_REQ_ZERO_WRITE);
    if (head_padding_bytes || tail_padding_bytes) {
        buf = qemu_blockalign(bs, align);
        iov = (struct iovec) {
            .iov_base   = buf,
            .iov_len    = align,
        };
        qemu_iovec_init_external(&local_qiov, &iov, 1);
    }
    if (head_padding_bytes) {
        uint64_t zero_bytes = MIN(bytes, align - head_padding_bytes);

        /* RMW the unaligned part before head. */
        mark_request_serialising(req, align);
        wait_serialising_requests(req);
K
Kevin Wolf 已提交
1437
        bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_HEAD);
1438
        ret = bdrv_aligned_preadv(child, req, offset & ~(align - 1), align,
1439 1440 1441 1442
                                  align, &local_qiov, 0);
        if (ret < 0) {
            goto fail;
        }
K
Kevin Wolf 已提交
1443
        bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
1444 1445

        memset(buf + head_padding_bytes, 0, zero_bytes);
1446
        ret = bdrv_aligned_pwritev(child, req, offset & ~(align - 1), align,
1447
                                   align, &local_qiov,
1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
                                   flags & ~BDRV_REQ_ZERO_WRITE);
        if (ret < 0) {
            goto fail;
        }
        offset += zero_bytes;
        bytes -= zero_bytes;
    }

    assert(!bytes || (offset & (align - 1)) == 0);
    if (bytes >= align) {
        /* Write the aligned part in the middle. */
        uint64_t aligned_bytes = bytes & ~(align - 1);
1460
        ret = bdrv_aligned_pwritev(child, req, offset, aligned_bytes, align,
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474
                                   NULL, flags);
        if (ret < 0) {
            goto fail;
        }
        bytes -= aligned_bytes;
        offset += aligned_bytes;
    }

    assert(!bytes || (offset & (align - 1)) == 0);
    if (bytes) {
        assert(align == tail_padding_bytes + bytes);
        /* RMW the unaligned part after tail. */
        mark_request_serialising(req, align);
        wait_serialising_requests(req);
K
Kevin Wolf 已提交
1475
        bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_TAIL);
1476
        ret = bdrv_aligned_preadv(child, req, offset, align,
1477 1478 1479 1480
                                  align, &local_qiov, 0);
        if (ret < 0) {
            goto fail;
        }
K
Kevin Wolf 已提交
1481
        bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
1482 1483

        memset(buf, 0, bytes);
1484
        ret = bdrv_aligned_pwritev(child, req, offset, align, align,
1485 1486 1487 1488 1489 1490 1491 1492
                                   &local_qiov, flags & ~BDRV_REQ_ZERO_WRITE);
    }
fail:
    qemu_vfree(buf);
    return ret;

}

1493 1494 1495
/*
 * Handle a write request in coroutine context
 */
1496
int coroutine_fn bdrv_co_pwritev(BdrvChild *child,
1497 1498 1499
    int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
    BdrvRequestFlags flags)
{
1500
    BlockDriverState *bs = child->bs;
1501
    BdrvTrackedRequest req;
1502
    uint64_t align = bs->bl.request_alignment;
1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
    uint8_t *head_buf = NULL;
    uint8_t *tail_buf = NULL;
    QEMUIOVector local_qiov;
    bool use_local_qiov = false;
    int ret;

    if (!bs->drv) {
        return -ENOMEDIUM;
    }
    if (bs->read_only) {
1513
        return -EPERM;
1514
    }
1515
    assert(!(bs->open_flags & BDRV_O_INACTIVE));
1516 1517 1518 1519 1520 1521

    ret = bdrv_check_byte_request(bs, offset, bytes);
    if (ret < 0) {
        return ret;
    }

1522
    bdrv_inc_in_flight(bs);
1523 1524 1525 1526 1527
    /*
     * Align write if necessary by performing a read-modify-write cycle.
     * Pad qiov with the read parts and be sure to have a tracked request not
     * only for bdrv_aligned_pwritev, but also for the reads of the RMW cycle.
     */
1528
    tracked_request_begin(&req, bs, offset, bytes, BDRV_TRACKED_WRITE);
1529

1530
    if (!qiov) {
1531
        ret = bdrv_co_do_zero_pwritev(child, offset, bytes, flags, &req);
1532 1533 1534
        goto out;
    }

1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548
    if (offset & (align - 1)) {
        QEMUIOVector head_qiov;
        struct iovec head_iov;

        mark_request_serialising(&req, align);
        wait_serialising_requests(&req);

        head_buf = qemu_blockalign(bs, align);
        head_iov = (struct iovec) {
            .iov_base   = head_buf,
            .iov_len    = align,
        };
        qemu_iovec_init_external(&head_qiov, &head_iov, 1);

K
Kevin Wolf 已提交
1549
        bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_HEAD);
1550
        ret = bdrv_aligned_preadv(child, &req, offset & ~(align - 1), align,
1551 1552 1553 1554
                                  align, &head_qiov, 0);
        if (ret < 0) {
            goto fail;
        }
K
Kevin Wolf 已提交
1555
        bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
1556 1557 1558 1559 1560 1561 1562 1563

        qemu_iovec_init(&local_qiov, qiov->niov + 2);
        qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
        qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
        use_local_qiov = true;

        bytes += offset & (align - 1);
        offset = offset & ~(align - 1);
1564 1565 1566 1567 1568 1569 1570 1571

        /* We have read the tail already if the request is smaller
         * than one aligned block.
         */
        if (bytes < align) {
            qemu_iovec_add(&local_qiov, head_buf + bytes, align - bytes);
            bytes = align;
        }
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590
    }

    if ((offset + bytes) & (align - 1)) {
        QEMUIOVector tail_qiov;
        struct iovec tail_iov;
        size_t tail_bytes;
        bool waited;

        mark_request_serialising(&req, align);
        waited = wait_serialising_requests(&req);
        assert(!waited || !use_local_qiov);

        tail_buf = qemu_blockalign(bs, align);
        tail_iov = (struct iovec) {
            .iov_base   = tail_buf,
            .iov_len    = align,
        };
        qemu_iovec_init_external(&tail_qiov, &tail_iov, 1);

K
Kevin Wolf 已提交
1591
        bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_TAIL);
1592 1593
        ret = bdrv_aligned_preadv(child, &req, (offset + bytes) & ~(align - 1),
                                  align, align, &tail_qiov, 0);
1594 1595 1596
        if (ret < 0) {
            goto fail;
        }
K
Kevin Wolf 已提交
1597
        bdrv_debug_event(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610

        if (!use_local_qiov) {
            qemu_iovec_init(&local_qiov, qiov->niov + 1);
            qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
            use_local_qiov = true;
        }

        tail_bytes = (offset + bytes) & (align - 1);
        qemu_iovec_add(&local_qiov, tail_buf + tail_bytes, align - tail_bytes);

        bytes = ROUND_UP(bytes, align);
    }

1611
    ret = bdrv_aligned_pwritev(child, &req, offset, bytes, align,
1612 1613
                               use_local_qiov ? &local_qiov : qiov,
                               flags);
1614 1615 1616 1617 1618 1619 1620 1621

fail:

    if (use_local_qiov) {
        qemu_iovec_destroy(&local_qiov);
    }
    qemu_vfree(head_buf);
    qemu_vfree(tail_buf);
1622 1623
out:
    tracked_request_end(&req);
1624
    bdrv_dec_in_flight(bs);
1625 1626 1627
    return ret;
}

1628
static int coroutine_fn bdrv_co_do_writev(BdrvChild *child,
1629 1630 1631 1632 1633 1634 1635
    int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
    BdrvRequestFlags flags)
{
    if (nb_sectors < 0 || nb_sectors > BDRV_REQUEST_MAX_SECTORS) {
        return -EINVAL;
    }

1636
    return bdrv_co_pwritev(child, sector_num << BDRV_SECTOR_BITS,
1637
                           nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
1638 1639
}

1640
int coroutine_fn bdrv_co_writev(BdrvChild *child, int64_t sector_num,
1641 1642
    int nb_sectors, QEMUIOVector *qiov)
{
1643
    trace_bdrv_co_writev(child->bs, sector_num, nb_sectors);
1644

1645
    return bdrv_co_do_writev(child, sector_num, nb_sectors, qiov, 0);
1646 1647
}

1648 1649
int coroutine_fn bdrv_co_pwrite_zeroes(BdrvChild *child, int64_t offset,
                                       int count, BdrvRequestFlags flags)
1650
{
1651
    trace_bdrv_co_pwrite_zeroes(child->bs, offset, count, flags);
1652

1653
    if (!(child->bs->open_flags & BDRV_O_UNMAP)) {
1654 1655 1656
        flags &= ~BDRV_REQ_MAY_UNMAP;
    }

1657
    return bdrv_co_pwritev(child, offset, count, NULL,
1658
                           BDRV_REQ_ZERO_WRITE | flags);
1659 1660
}

J
John Snow 已提交
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
/*
 * Flush ALL BDSes regardless of if they are reachable via a BlkBackend or not.
 */
int bdrv_flush_all(void)
{
    BdrvNextIterator it;
    BlockDriverState *bs = NULL;
    int result = 0;

    for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
        AioContext *aio_context = bdrv_get_aio_context(bs);
        int ret;

        aio_context_acquire(aio_context);
        ret = bdrv_flush(bs);
        if (ret < 0 && !result) {
            result = ret;
        }
        aio_context_release(aio_context);
    }

    return result;
}


1686 1687 1688
typedef struct BdrvCoGetBlockStatusData {
    BlockDriverState *bs;
    BlockDriverState *base;
1689
    BlockDriverState **file;
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
    int64_t sector_num;
    int nb_sectors;
    int *pnum;
    int64_t ret;
    bool done;
} BdrvCoGetBlockStatusData;

/*
 * Returns the allocation status of the specified sectors.
 * Drivers not implementing the functionality are assumed to not support
 * backing files, hence all their sectors are reported as allocated.
 *
 * If 'sector_num' is beyond the end of the disk image the return value is 0
 * and 'pnum' is set to 0.
 *
 * 'pnum' is set to the number of sectors (including and immediately following
 * the specified sector) that are known to be in the same
 * allocated/unallocated state.
 *
 * 'nb_sectors' is the max value 'pnum' should be set to.  If nb_sectors goes
 * beyond the end of the disk image it will be clamped.
1711 1712 1713
 *
 * If returned value is positive and BDRV_BLOCK_OFFSET_VALID bit is set, 'file'
 * points to the BDS which the sector range is allocated in.
1714 1715 1716
 */
static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
                                                     int64_t sector_num,
1717 1718
                                                     int nb_sectors, int *pnum,
                                                     BlockDriverState **file)
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
{
    int64_t total_sectors;
    int64_t n;
    int64_t ret, ret2;

    total_sectors = bdrv_nb_sectors(bs);
    if (total_sectors < 0) {
        return total_sectors;
    }

    if (sector_num >= total_sectors) {
        *pnum = 0;
        return 0;
    }

    n = total_sectors - sector_num;
    if (n < nb_sectors) {
        nb_sectors = n;
    }

    if (!bs->drv->bdrv_co_get_block_status) {
        *pnum = nb_sectors;
        ret = BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED;
        if (bs->drv->protocol_name) {
            ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE);
        }
        return ret;
    }

1748
    *file = NULL;
1749
    bdrv_inc_in_flight(bs);
1750 1751
    ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum,
                                            file);
1752 1753
    if (ret < 0) {
        *pnum = 0;
1754
        goto out;
1755 1756 1757 1758
    }

    if (ret & BDRV_BLOCK_RAW) {
        assert(ret & BDRV_BLOCK_OFFSET_VALID);
1759 1760 1761
        ret = bdrv_get_block_status(bs->file->bs, ret >> BDRV_SECTOR_BITS,
                                    *pnum, pnum, file);
        goto out;
1762 1763 1764 1765
    }

    if (ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ZERO)) {
        ret |= BDRV_BLOCK_ALLOCATED;
1766
    } else {
1767 1768
        if (bdrv_unallocated_blocks_are_zero(bs)) {
            ret |= BDRV_BLOCK_ZERO;
1769 1770
        } else if (bs->backing) {
            BlockDriverState *bs2 = bs->backing->bs;
1771 1772 1773 1774 1775 1776 1777
            int64_t nb_sectors2 = bdrv_nb_sectors(bs2);
            if (nb_sectors2 >= 0 && sector_num >= nb_sectors2) {
                ret |= BDRV_BLOCK_ZERO;
            }
        }
    }

1778
    if (*file && *file != bs &&
1779 1780
        (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
        (ret & BDRV_BLOCK_OFFSET_VALID)) {
1781
        BlockDriverState *file2;
1782 1783
        int file_pnum;

1784
        ret2 = bdrv_co_get_block_status(*file, ret >> BDRV_SECTOR_BITS,
1785
                                        *pnum, &file_pnum, &file2);
1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802
        if (ret2 >= 0) {
            /* Ignore errors.  This is just providing extra information, it
             * is useful but not necessary.
             */
            if (!file_pnum) {
                /* !file_pnum indicates an offset at or beyond the EOF; it is
                 * perfectly valid for the format block driver to point to such
                 * offsets, so catch it and mark everything as zero */
                ret |= BDRV_BLOCK_ZERO;
            } else {
                /* Limit request to the range reported by the protocol driver */
                *pnum = file_pnum;
                ret |= (ret2 & BDRV_BLOCK_ZERO);
            }
        }
    }

1803 1804
out:
    bdrv_dec_in_flight(bs);
1805 1806 1807
    return ret;
}

1808 1809 1810 1811
static int64_t coroutine_fn bdrv_co_get_block_status_above(BlockDriverState *bs,
        BlockDriverState *base,
        int64_t sector_num,
        int nb_sectors,
1812 1813
        int *pnum,
        BlockDriverState **file)
1814 1815 1816 1817 1818
{
    BlockDriverState *p;
    int64_t ret = 0;

    assert(bs != base);
1819
    for (p = bs; p != base; p = backing_bs(p)) {
1820
        ret = bdrv_co_get_block_status(p, sector_num, nb_sectors, pnum, file);
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832
        if (ret < 0 || ret & BDRV_BLOCK_ALLOCATED) {
            break;
        }
        /* [sector_num, pnum] unallocated on this layer, which could be only
         * the first part of [sector_num, nb_sectors].  */
        nb_sectors = MIN(nb_sectors, *pnum);
    }
    return ret;
}

/* Coroutine wrapper for bdrv_get_block_status_above() */
static void coroutine_fn bdrv_get_block_status_above_co_entry(void *opaque)
1833 1834 1835
{
    BdrvCoGetBlockStatusData *data = opaque;

1836 1837 1838
    data->ret = bdrv_co_get_block_status_above(data->bs, data->base,
                                               data->sector_num,
                                               data->nb_sectors,
1839 1840
                                               data->pnum,
                                               data->file);
1841 1842 1843 1844
    data->done = true;
}

/*
1845
 * Synchronous wrapper around bdrv_co_get_block_status_above().
1846
 *
1847
 * See bdrv_co_get_block_status_above() for details.
1848
 */
1849 1850 1851
int64_t bdrv_get_block_status_above(BlockDriverState *bs,
                                    BlockDriverState *base,
                                    int64_t sector_num,
1852 1853
                                    int nb_sectors, int *pnum,
                                    BlockDriverState **file)
1854 1855 1856 1857
{
    Coroutine *co;
    BdrvCoGetBlockStatusData data = {
        .bs = bs,
1858
        .base = base,
1859
        .file = file,
1860 1861 1862 1863 1864 1865 1866 1867
        .sector_num = sector_num,
        .nb_sectors = nb_sectors,
        .pnum = pnum,
        .done = false,
    };

    if (qemu_in_coroutine()) {
        /* Fast-path if already in coroutine context */
1868
        bdrv_get_block_status_above_co_entry(&data);
1869
    } else {
1870 1871 1872
        co = qemu_coroutine_create(bdrv_get_block_status_above_co_entry,
                                   &data);
        qemu_coroutine_enter(co);
P
Paolo Bonzini 已提交
1873
        BDRV_POLL_WHILE(bs, !data.done);
1874 1875 1876 1877
    }
    return data.ret;
}

1878 1879
int64_t bdrv_get_block_status(BlockDriverState *bs,
                              int64_t sector_num,
1880 1881
                              int nb_sectors, int *pnum,
                              BlockDriverState **file)
1882
{
1883
    return bdrv_get_block_status_above(bs, backing_bs(bs),
1884
                                       sector_num, nb_sectors, pnum, file);
1885 1886
}

1887 1888 1889
int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num,
                                   int nb_sectors, int *pnum)
{
1890 1891 1892
    BlockDriverState *file;
    int64_t ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum,
                                        &file);
1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
    if (ret < 0) {
        return ret;
    }
    return !!(ret & BDRV_BLOCK_ALLOCATED);
}

/*
 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
 *
 * Return true if the given sector is allocated in any image between
 * BASE and TOP (inclusive).  BASE can be NULL to check if the given
 * sector is allocated in any image of the chain.  Return false otherwise.
 *
 * 'pnum' is set to the number of sectors (including and immediately following
 *  the specified sector) that are known to be in the same
 *  allocated/unallocated state.
 *
 */
int bdrv_is_allocated_above(BlockDriverState *top,
                            BlockDriverState *base,
                            int64_t sector_num,
                            int nb_sectors, int *pnum)
{
    BlockDriverState *intermediate;
    int ret, n = nb_sectors;

    intermediate = top;
    while (intermediate && intermediate != base) {
        int pnum_inter;
        ret = bdrv_is_allocated(intermediate, sector_num, nb_sectors,
                                &pnum_inter);
        if (ret < 0) {
            return ret;
        } else if (ret) {
            *pnum = pnum_inter;
            return 1;
        }

        /*
         * [sector_num, nb_sectors] is unallocated on top but intermediate
         * might have
         *
         * [sector_num+x, nr_sectors] allocated.
         */
        if (n > pnum_inter &&
            (intermediate == top ||
             sector_num + pnum_inter < intermediate->total_sectors)) {
            n = pnum_inter;
        }

1943
        intermediate = backing_bs(intermediate);
1944 1945 1946 1947 1948 1949
    }

    *pnum = n;
    return 0;
}

1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995
typedef struct BdrvVmstateCo {
    BlockDriverState    *bs;
    QEMUIOVector        *qiov;
    int64_t             pos;
    bool                is_read;
    int                 ret;
} BdrvVmstateCo;

static int coroutine_fn
bdrv_co_rw_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos,
                   bool is_read)
{
    BlockDriver *drv = bs->drv;

    if (!drv) {
        return -ENOMEDIUM;
    } else if (drv->bdrv_load_vmstate) {
        return is_read ? drv->bdrv_load_vmstate(bs, qiov, pos)
                       : drv->bdrv_save_vmstate(bs, qiov, pos);
    } else if (bs->file) {
        return bdrv_co_rw_vmstate(bs->file->bs, qiov, pos, is_read);
    }

    return -ENOTSUP;
}

static void coroutine_fn bdrv_co_rw_vmstate_entry(void *opaque)
{
    BdrvVmstateCo *co = opaque;
    co->ret = bdrv_co_rw_vmstate(co->bs, co->qiov, co->pos, co->is_read);
}

static inline int
bdrv_rw_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos,
                bool is_read)
{
    if (qemu_in_coroutine()) {
        return bdrv_co_rw_vmstate(bs, qiov, pos, is_read);
    } else {
        BdrvVmstateCo data = {
            .bs         = bs,
            .qiov       = qiov,
            .pos        = pos,
            .is_read    = is_read,
            .ret        = -EINPROGRESS,
        };
1996
        Coroutine *co = qemu_coroutine_create(bdrv_co_rw_vmstate_entry, &data);
1997

1998
        qemu_coroutine_enter(co);
1999 2000 2001 2002 2003 2004 2005
        while (data.ret == -EINPROGRESS) {
            aio_poll(bdrv_get_aio_context(bs), true);
        }
        return data.ret;
    }
}

2006 2007 2008 2009 2010 2011 2012 2013
int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
                      int64_t pos, int size)
{
    QEMUIOVector qiov;
    struct iovec iov = {
        .iov_base   = (void *) buf,
        .iov_len    = size,
    };
2014
    int ret;
2015 2016

    qemu_iovec_init_external(&qiov, &iov, 1);
2017 2018 2019 2020 2021 2022 2023

    ret = bdrv_writev_vmstate(bs, &qiov, pos);
    if (ret < 0) {
        return ret;
    }

    return size;
2024 2025 2026 2027
}

int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
{
2028
    return bdrv_rw_vmstate(bs, qiov, pos, false);
2029 2030 2031 2032
}

int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
                      int64_t pos, int size)
2033 2034 2035 2036 2037 2038
{
    QEMUIOVector qiov;
    struct iovec iov = {
        .iov_base   = buf,
        .iov_len    = size,
    };
2039
    int ret;
2040 2041

    qemu_iovec_init_external(&qiov, &iov, 1);
2042 2043 2044 2045 2046 2047
    ret = bdrv_readv_vmstate(bs, &qiov, pos);
    if (ret < 0) {
        return ret;
    }

    return size;
2048 2049 2050
}

int bdrv_readv_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
2051
{
2052
    return bdrv_rw_vmstate(bs, qiov, pos, true);
2053 2054 2055 2056 2057
}

/**************************************************************/
/* async I/Os */

2058
BlockAIOCB *bdrv_aio_readv(BdrvChild *child, int64_t sector_num,
2059 2060 2061
                           QEMUIOVector *qiov, int nb_sectors,
                           BlockCompletionFunc *cb, void *opaque)
{
2062
    trace_bdrv_aio_readv(child->bs, sector_num, nb_sectors, opaque);
2063

2064 2065 2066
    assert(nb_sectors << BDRV_SECTOR_BITS == qiov->size);
    return bdrv_co_aio_prw_vector(child, sector_num << BDRV_SECTOR_BITS, qiov,
                                  0, cb, opaque, false);
2067 2068
}

2069
BlockAIOCB *bdrv_aio_writev(BdrvChild *child, int64_t sector_num,
2070 2071 2072
                            QEMUIOVector *qiov, int nb_sectors,
                            BlockCompletionFunc *cb, void *opaque)
{
2073
    trace_bdrv_aio_writev(child->bs, sector_num, nb_sectors, opaque);
2074

2075 2076 2077
    assert(nb_sectors << BDRV_SECTOR_BITS == qiov->size);
    return bdrv_co_aio_prw_vector(child, sector_num << BDRV_SECTOR_BITS, qiov,
                                  0, cb, opaque, true);
2078 2079 2080 2081 2082 2083 2084 2085 2086 2087
}

void bdrv_aio_cancel(BlockAIOCB *acb)
{
    qemu_aio_ref(acb);
    bdrv_aio_cancel_async(acb);
    while (acb->refcnt > 1) {
        if (acb->aiocb_info->get_aio_context) {
            aio_poll(acb->aiocb_info->get_aio_context(acb), true);
        } else if (acb->bs) {
2088 2089 2090 2091 2092
            /* qemu_aio_ref and qemu_aio_unref are not thread-safe, so
             * assert that we're not using an I/O thread.  Thread-safe
             * code should use bdrv_aio_cancel_async exclusively.
             */
            assert(bdrv_get_aio_context(acb->bs) == qemu_get_aio_context());
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113
            aio_poll(bdrv_get_aio_context(acb->bs), true);
        } else {
            abort();
        }
    }
    qemu_aio_unref(acb);
}

/* Async version of aio cancel. The caller is not blocked if the acb implements
 * cancel_async, otherwise we do nothing and let the request normally complete.
 * In either case the completion callback must be called. */
void bdrv_aio_cancel_async(BlockAIOCB *acb)
{
    if (acb->aiocb_info->cancel_async) {
        acb->aiocb_info->cancel_async(acb);
    }
}

/**************************************************************/
/* async block device emulation */

2114 2115 2116 2117
typedef struct BlockRequest {
    union {
        /* Used during read, write, trim */
        struct {
2118 2119
            int64_t offset;
            int bytes;
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134
            int flags;
            QEMUIOVector *qiov;
        };
        /* Used during ioctl */
        struct {
            int req;
            void *buf;
        };
    };
    BlockCompletionFunc *cb;
    void *opaque;

    int error;
} BlockRequest;

2135 2136
typedef struct BlockAIOCBCoroutine {
    BlockAIOCB common;
2137
    BdrvChild *child;
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150
    BlockRequest req;
    bool is_write;
    bool need_bh;
    bool *done;
} BlockAIOCBCoroutine;

static const AIOCBInfo bdrv_em_co_aiocb_info = {
    .aiocb_size         = sizeof(BlockAIOCBCoroutine),
};

static void bdrv_co_complete(BlockAIOCBCoroutine *acb)
{
    if (!acb->need_bh) {
2151
        bdrv_dec_in_flight(acb->common.bs);
2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170
        acb->common.cb(acb->common.opaque, acb->req.error);
        qemu_aio_unref(acb);
    }
}

static void bdrv_co_em_bh(void *opaque)
{
    BlockAIOCBCoroutine *acb = opaque;

    assert(!acb->need_bh);
    bdrv_co_complete(acb);
}

static void bdrv_co_maybe_schedule_bh(BlockAIOCBCoroutine *acb)
{
    acb->need_bh = false;
    if (acb->req.error != -EINPROGRESS) {
        BlockDriverState *bs = acb->common.bs;

P
Paolo Bonzini 已提交
2171
        aio_bh_schedule_oneshot(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
2172 2173 2174 2175 2176 2177 2178 2179 2180
    }
}

/* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
static void coroutine_fn bdrv_co_do_rw(void *opaque)
{
    BlockAIOCBCoroutine *acb = opaque;

    if (!acb->is_write) {
2181 2182
        acb->req.error = bdrv_co_preadv(acb->child, acb->req.offset,
            acb->req.qiov->size, acb->req.qiov, acb->req.flags);
2183
    } else {
2184 2185
        acb->req.error = bdrv_co_pwritev(acb->child, acb->req.offset,
            acb->req.qiov->size, acb->req.qiov, acb->req.flags);
2186 2187 2188 2189 2190
    }

    bdrv_co_complete(acb);
}

2191 2192 2193 2194 2195 2196 2197
static BlockAIOCB *bdrv_co_aio_prw_vector(BdrvChild *child,
                                          int64_t offset,
                                          QEMUIOVector *qiov,
                                          BdrvRequestFlags flags,
                                          BlockCompletionFunc *cb,
                                          void *opaque,
                                          bool is_write)
2198 2199 2200 2201
{
    Coroutine *co;
    BlockAIOCBCoroutine *acb;

2202 2203 2204
    /* Matched by bdrv_co_complete's bdrv_dec_in_flight.  */
    bdrv_inc_in_flight(child->bs);

2205 2206
    acb = qemu_aio_get(&bdrv_em_co_aiocb_info, child->bs, cb, opaque);
    acb->child = child;
2207 2208
    acb->need_bh = true;
    acb->req.error = -EINPROGRESS;
2209
    acb->req.offset = offset;
2210 2211 2212 2213
    acb->req.qiov = qiov;
    acb->req.flags = flags;
    acb->is_write = is_write;

2214 2215
    co = qemu_coroutine_create(bdrv_co_do_rw, acb);
    qemu_coroutine_enter(co);
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237

    bdrv_co_maybe_schedule_bh(acb);
    return &acb->common;
}

static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
{
    BlockAIOCBCoroutine *acb = opaque;
    BlockDriverState *bs = acb->common.bs;

    acb->req.error = bdrv_co_flush(bs);
    bdrv_co_complete(acb);
}

BlockAIOCB *bdrv_aio_flush(BlockDriverState *bs,
        BlockCompletionFunc *cb, void *opaque)
{
    trace_bdrv_aio_flush(bs, opaque);

    Coroutine *co;
    BlockAIOCBCoroutine *acb;

2238 2239 2240
    /* Matched by bdrv_co_complete's bdrv_dec_in_flight.  */
    bdrv_inc_in_flight(bs);

2241 2242 2243 2244
    acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
    acb->need_bh = true;
    acb->req.error = -EINPROGRESS;

2245 2246
    co = qemu_coroutine_create(bdrv_aio_flush_co_entry, acb);
    qemu_coroutine_enter(co);
2247 2248 2249 2250 2251 2252 2253 2254

    bdrv_co_maybe_schedule_bh(acb);
    return &acb->common;
}

/**************************************************************/
/* Coroutine block device emulation */

2255 2256 2257 2258 2259 2260
typedef struct FlushCo {
    BlockDriverState *bs;
    int ret;
} FlushCo;


2261 2262
static void coroutine_fn bdrv_flush_co_entry(void *opaque)
{
2263
    FlushCo *rwco = opaque;
2264 2265 2266 2267 2268 2269 2270 2271

    rwco->ret = bdrv_co_flush(rwco->bs);
}

int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
{
    int ret;

2272 2273
    if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs) ||
        bdrv_is_sg(bs)) {
2274 2275 2276
        return 0;
    }

2277
    bdrv_inc_in_flight(bs);
P
Pavel Dovgalyuk 已提交
2278

2279 2280 2281
    int current_gen = bs->write_gen;

    /* Wait until any previous flushes are completed */
2282
    while (bs->active_flush_req) {
2283
        qemu_co_queue_wait(&bs->flush_queue, NULL);
2284 2285
    }

2286
    bs->active_flush_req = true;
2287

P
Pavel Dovgalyuk 已提交
2288 2289 2290 2291 2292 2293
    /* Write back all layers by calling one driver function */
    if (bs->drv->bdrv_co_flush) {
        ret = bs->drv->bdrv_co_flush(bs);
        goto out;
    }

2294 2295 2296 2297 2298
    /* Write back cached data to the OS even with cache=unsafe */
    BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS);
    if (bs->drv->bdrv_co_flush_to_os) {
        ret = bs->drv->bdrv_co_flush_to_os(bs);
        if (ret < 0) {
F
Fam Zheng 已提交
2299
            goto out;
2300 2301 2302 2303 2304 2305 2306 2307
        }
    }

    /* But don't actually force it to the disk with cache=unsafe */
    if (bs->open_flags & BDRV_O_NO_FLUSH) {
        goto flush_parent;
    }

2308 2309 2310 2311 2312
    /* Check if we really need to flush anything */
    if (bs->flushed_gen == current_gen) {
        goto flush_parent;
    }

2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342
    BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK);
    if (bs->drv->bdrv_co_flush_to_disk) {
        ret = bs->drv->bdrv_co_flush_to_disk(bs);
    } else if (bs->drv->bdrv_aio_flush) {
        BlockAIOCB *acb;
        CoroutineIOCompletion co = {
            .coroutine = qemu_coroutine_self(),
        };

        acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
        if (acb == NULL) {
            ret = -EIO;
        } else {
            qemu_coroutine_yield();
            ret = co.ret;
        }
    } else {
        /*
         * Some block drivers always operate in either writethrough or unsafe
         * mode and don't support bdrv_flush therefore. Usually qemu doesn't
         * know how the server works (because the behaviour is hardcoded or
         * depends on server-side configuration), so we can't ensure that
         * everything is safe on disk. Returning an error doesn't work because
         * that would break guests even if the server operates in writethrough
         * mode.
         *
         * Let's hope the user knows what he's doing.
         */
        ret = 0;
    }
2343

2344
    if (ret < 0) {
F
Fam Zheng 已提交
2345
        goto out;
2346 2347 2348 2349 2350 2351
    }

    /* Now flush the underlying protocol.  It will also have BDRV_O_NO_FLUSH
     * in the case of cache=unsafe, so there are no useless flushes.
     */
flush_parent:
F
Fam Zheng 已提交
2352 2353
    ret = bs->file ? bdrv_co_flush(bs->file->bs) : 0;
out:
2354
    /* Notify any pending flushes that we have completed */
2355 2356 2357
    if (ret == 0) {
        bs->flushed_gen = current_gen;
    }
2358
    bs->active_flush_req = false;
2359 2360
    /* Return value is ignored - it's ok if wait queue is empty */
    qemu_co_queue_next(&bs->flush_queue);
2361

2362
    bdrv_dec_in_flight(bs);
F
Fam Zheng 已提交
2363
    return ret;
2364 2365 2366 2367 2368
}

int bdrv_flush(BlockDriverState *bs)
{
    Coroutine *co;
2369
    FlushCo flush_co = {
2370 2371 2372 2373 2374 2375
        .bs = bs,
        .ret = NOT_DONE,
    };

    if (qemu_in_coroutine()) {
        /* Fast-path if already in coroutine context */
2376
        bdrv_flush_co_entry(&flush_co);
2377
    } else {
2378 2379
        co = qemu_coroutine_create(bdrv_flush_co_entry, &flush_co);
        qemu_coroutine_enter(co);
P
Paolo Bonzini 已提交
2380
        BDRV_POLL_WHILE(bs, flush_co.ret == NOT_DONE);
2381 2382
    }

2383
    return flush_co.ret;
2384 2385 2386 2387
}

typedef struct DiscardCo {
    BlockDriverState *bs;
2388 2389
    int64_t offset;
    int count;
2390 2391
    int ret;
} DiscardCo;
2392
static void coroutine_fn bdrv_pdiscard_co_entry(void *opaque)
2393 2394 2395
{
    DiscardCo *rwco = opaque;

2396
    rwco->ret = bdrv_co_pdiscard(rwco->bs, rwco->offset, rwco->count);
2397 2398
}

2399 2400
int coroutine_fn bdrv_co_pdiscard(BlockDriverState *bs, int64_t offset,
                                  int count)
2401
{
F
Fam Zheng 已提交
2402
    BdrvTrackedRequest req;
2403
    int max_pdiscard, ret;
2404
    int head, tail, align;
2405 2406 2407 2408 2409

    if (!bs->drv) {
        return -ENOMEDIUM;
    }

2410
    ret = bdrv_check_byte_request(bs, offset, count);
2411 2412 2413
    if (ret < 0) {
        return ret;
    } else if (bs->read_only) {
2414
        return -EPERM;
2415
    }
2416
    assert(!(bs->open_flags & BDRV_O_INACTIVE));
2417 2418 2419 2420 2421 2422

    /* Do nothing if disabled.  */
    if (!(bs->open_flags & BDRV_O_UNMAP)) {
        return 0;
    }

E
Eric Blake 已提交
2423
    if (!bs->drv->bdrv_co_pdiscard && !bs->drv->bdrv_aio_pdiscard) {
2424 2425 2426
        return 0;
    }

2427 2428 2429 2430 2431
    /* Discard is advisory, but some devices track and coalesce
     * unaligned requests, so we must pass everything down rather than
     * round here.  Still, most devices will just silently ignore
     * unaligned requests (by returning -ENOTSUP), so we must fragment
     * the request accordingly.  */
E
Eric Blake 已提交
2432
    align = MAX(bs->bl.pdiscard_alignment, bs->bl.request_alignment);
2433 2434
    assert(align % bs->bl.request_alignment == 0);
    head = offset % align;
2435
    tail = (offset + count) % align;
2436

2437
    bdrv_inc_in_flight(bs);
2438
    tracked_request_begin(&req, bs, offset, count, BDRV_TRACKED_DISCARD);
2439

2440 2441 2442 2443 2444
    ret = notifier_with_return_list_notify(&bs->before_write_notifiers, &req);
    if (ret < 0) {
        goto out;
    }

2445 2446
    max_pdiscard = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_pdiscard, INT_MAX),
                                   align);
2447
    assert(max_pdiscard >= bs->bl.request_alignment);
2448

2449 2450
    while (count > 0) {
        int ret;
2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474
        int num = count;

        if (head) {
            /* Make small requests to get to alignment boundaries. */
            num = MIN(count, align - head);
            if (!QEMU_IS_ALIGNED(num, bs->bl.request_alignment)) {
                num %= bs->bl.request_alignment;
            }
            head = (head + num) % align;
            assert(num < max_pdiscard);
        } else if (tail) {
            if (num > align) {
                /* Shorten the request to the last aligned cluster.  */
                num -= tail;
            } else if (!QEMU_IS_ALIGNED(tail, bs->bl.request_alignment) &&
                       tail > bs->bl.request_alignment) {
                tail %= bs->bl.request_alignment;
                num -= tail;
            }
        }
        /* limit request size */
        if (num > max_pdiscard) {
            num = max_pdiscard;
        }
2475

2476 2477
        if (bs->drv->bdrv_co_pdiscard) {
            ret = bs->drv->bdrv_co_pdiscard(bs, offset, num);
2478 2479 2480 2481 2482 2483
        } else {
            BlockAIOCB *acb;
            CoroutineIOCompletion co = {
                .coroutine = qemu_coroutine_self(),
            };

2484 2485
            acb = bs->drv->bdrv_aio_pdiscard(bs, offset, num,
                                             bdrv_co_io_em_complete, &co);
2486
            if (acb == NULL) {
F
Fam Zheng 已提交
2487 2488
                ret = -EIO;
                goto out;
2489 2490 2491 2492 2493 2494
            } else {
                qemu_coroutine_yield();
                ret = co.ret;
            }
        }
        if (ret && ret != -ENOTSUP) {
F
Fam Zheng 已提交
2495
            goto out;
2496 2497
        }

2498 2499
        offset += num;
        count -= num;
2500
    }
F
Fam Zheng 已提交
2501 2502
    ret = 0;
out:
2503
    ++bs->write_gen;
2504 2505
    bdrv_set_dirty(bs, req.offset >> BDRV_SECTOR_BITS,
                   req.bytes >> BDRV_SECTOR_BITS);
F
Fam Zheng 已提交
2506
    tracked_request_end(&req);
2507
    bdrv_dec_in_flight(bs);
F
Fam Zheng 已提交
2508
    return ret;
2509 2510
}

2511
int bdrv_pdiscard(BlockDriverState *bs, int64_t offset, int count)
2512 2513 2514 2515
{
    Coroutine *co;
    DiscardCo rwco = {
        .bs = bs,
2516 2517
        .offset = offset,
        .count = count,
2518 2519 2520 2521 2522
        .ret = NOT_DONE,
    };

    if (qemu_in_coroutine()) {
        /* Fast-path if already in coroutine context */
2523
        bdrv_pdiscard_co_entry(&rwco);
2524
    } else {
2525
        co = qemu_coroutine_create(bdrv_pdiscard_co_entry, &rwco);
2526
        qemu_coroutine_enter(co);
P
Paolo Bonzini 已提交
2527
        BDRV_POLL_WHILE(bs, rwco.ret == NOT_DONE);
2528 2529 2530 2531 2532
    }

    return rwco.ret;
}

2533
int bdrv_co_ioctl(BlockDriverState *bs, int req, void *buf)
2534 2535
{
    BlockDriver *drv = bs->drv;
2536 2537 2538 2539
    CoroutineIOCompletion co = {
        .coroutine = qemu_coroutine_self(),
    };
    BlockAIOCB *acb;
2540

2541
    bdrv_inc_in_flight(bs);
2542
    if (!drv || (!drv->bdrv_aio_ioctl && !drv->bdrv_co_ioctl)) {
2543 2544 2545 2546
        co.ret = -ENOTSUP;
        goto out;
    }

2547 2548 2549 2550 2551 2552 2553 2554 2555
    if (drv->bdrv_co_ioctl) {
        co.ret = drv->bdrv_co_ioctl(bs, req, buf);
    } else {
        acb = drv->bdrv_aio_ioctl(bs, req, buf, bdrv_co_io_em_complete, &co);
        if (!acb) {
            co.ret = -ENOTSUP;
            goto out;
        }
        qemu_coroutine_yield();
2556 2557
    }
out:
2558
    bdrv_dec_in_flight(bs);
2559 2560 2561
    return co.ret;
}

2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601
void *qemu_blockalign(BlockDriverState *bs, size_t size)
{
    return qemu_memalign(bdrv_opt_mem_align(bs), size);
}

void *qemu_blockalign0(BlockDriverState *bs, size_t size)
{
    return memset(qemu_blockalign(bs, size), 0, size);
}

void *qemu_try_blockalign(BlockDriverState *bs, size_t size)
{
    size_t align = bdrv_opt_mem_align(bs);

    /* Ensure that NULL is never returned on success */
    assert(align > 0);
    if (size == 0) {
        size = align;
    }

    return qemu_try_memalign(align, size);
}

void *qemu_try_blockalign0(BlockDriverState *bs, size_t size)
{
    void *mem = qemu_try_blockalign(bs, size);

    if (mem) {
        memset(mem, 0, size);
    }

    return mem;
}

/*
 * Check if all memory in this vector is sector aligned.
 */
bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
{
    int i;
2602
    size_t alignment = bdrv_min_mem_align(bs);
2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623

    for (i = 0; i < qiov->niov; i++) {
        if ((uintptr_t) qiov->iov[i].iov_base % alignment) {
            return false;
        }
        if (qiov->iov[i].iov_len % alignment) {
            return false;
        }
    }

    return true;
}

void bdrv_add_before_write_notifier(BlockDriverState *bs,
                                    NotifierWithReturn *notifier)
{
    notifier_with_return_list_add(&bs->before_write_notifiers, notifier);
}

void bdrv_io_plug(BlockDriverState *bs)
{
2624 2625 2626 2627 2628 2629
    BdrvChild *child;

    QLIST_FOREACH(child, &bs->children, next) {
        bdrv_io_plug(child->bs);
    }

2630
    if (bs->io_plugged++ == 0) {
2631 2632 2633 2634
        BlockDriver *drv = bs->drv;
        if (drv && drv->bdrv_io_plug) {
            drv->bdrv_io_plug(bs);
        }
2635 2636 2637 2638 2639
    }
}

void bdrv_io_unplug(BlockDriverState *bs)
{
2640 2641 2642
    BdrvChild *child;

    assert(bs->io_plugged);
2643
    if (--bs->io_plugged == 0) {
2644 2645 2646 2647 2648 2649 2650 2651
        BlockDriver *drv = bs->drv;
        if (drv && drv->bdrv_io_unplug) {
            drv->bdrv_io_unplug(bs);
        }
    }

    QLIST_FOREACH(child, &bs->children, next) {
        bdrv_io_unplug(child->bs);
2652 2653
    }
}