raw-posix.c 56.2 KB
Newer Older
B
bellard 已提交
1
/*
2
 * Block driver for RAW files (posix)
3
 *
B
bellard 已提交
4
 * Copyright (c) 2006 Fabrice Bellard
5
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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
pbrook 已提交
24
#include "qemu-common.h"
25 26
#include "qemu/timer.h"
#include "qemu/log.h"
27
#include "block/block_int.h"
28
#include "qemu/module.h"
29
#include "trace.h"
30
#include "block/thread-pool.h"
31
#include "qemu/iov.h"
32
#include "raw-aio.h"
B
bellard 已提交
33

34
#if defined(__APPLE__) && (__MACH__)
B
bellard 已提交
35 36 37 38 39 40 41 42 43 44 45 46
#include <paths.h>
#include <sys/param.h>
#include <IOKit/IOKitLib.h>
#include <IOKit/IOBSD.h>
#include <IOKit/storage/IOMediaBSDClient.h>
#include <IOKit/storage/IOMedia.h>
#include <IOKit/storage/IOCDMedia.h>
//#include <IOKit/storage/IOCDTypes.h>
#include <CoreFoundation/CoreFoundation.h>
#endif

#ifdef __sun__
47
#define _POSIX_PTHREAD_SEMANTICS 1
B
bellard 已提交
48 49
#include <sys/dkio.h>
#endif
B
bellard 已提交
50
#ifdef __linux__
51 52
#include <sys/types.h>
#include <sys/stat.h>
B
bellard 已提交
53
#include <sys/ioctl.h>
54
#include <sys/param.h>
B
bellard 已提交
55 56
#include <linux/cdrom.h>
#include <linux/fd.h>
57 58 59 60
#include <linux/fs.h>
#endif
#ifdef CONFIG_FIEMAP
#include <linux/fiemap.h>
B
bellard 已提交
61
#endif
62 63 64
#ifdef CONFIG_FALLOCATE_PUNCH_HOLE
#include <linux/falloc.h>
#endif
A
Aurelien Jarno 已提交
65
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
66
#include <sys/disk.h>
B
blueswir1 已提交
67
#include <sys/cdio.h>
68
#endif
B
bellard 已提交
69

70 71 72 73 74 75
#ifdef __OpenBSD__
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <sys/dkio.h>
#endif

76 77 78 79 80 81 82
#ifdef __NetBSD__
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <sys/dkio.h>
#include <sys/disk.h>
#endif

83 84 85 86 87
#ifdef __DragonFly__
#include <sys/ioctl.h>
#include <sys/diskslice.h>
#endif

C
Christoph Hellwig 已提交
88 89 90 91
#ifdef CONFIG_XFS
#include <xfs/xfs.h>
#endif

B
bellard 已提交
92
//#define DEBUG_FLOPPY
B
bellard 已提交
93

P
pbrook 已提交
94
//#define DEBUG_BLOCK
95
#if defined(DEBUG_BLOCK)
96 97
#define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
    { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
T
ths 已提交
98
#else
99
#define DEBUG_BLOCK_PRINT(formatCstr, ...)
T
ths 已提交
100 101
#endif

A
aliguori 已提交
102 103
/* OS X does not have O_DSYNC */
#ifndef O_DSYNC
104
#ifdef O_SYNC
105
#define O_DSYNC O_SYNC
106 107 108
#elif defined(O_FSYNC)
#define O_DSYNC O_FSYNC
#endif
A
aliguori 已提交
109 110
#endif

111 112 113 114 115
/* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
#ifndef O_DIRECT
#define O_DIRECT O_DSYNC
#endif

B
bellard 已提交
116 117 118
#define FTYPE_FILE   0
#define FTYPE_CD     1
#define FTYPE_FD     2
B
bellard 已提交
119

120
/* if the FD is not accessed during that time (in ns), we try to
B
bellard 已提交
121
   reopen it to see if the disk has been changed */
122
#define FD_OPEN_TIMEOUT (1000000000)
B
bellard 已提交
123

124 125
#define MAX_BLOCKSIZE	4096

B
bellard 已提交
126 127 128
typedef struct BDRVRawState {
    int fd;
    int type;
129
    int open_flags;
B
bellard 已提交
130 131 132 133 134 135
#if defined(__linux__)
    /* linux floppy specific */
    int64_t fd_open_time;
    int64_t fd_error_time;
    int fd_got_error;
    int fd_media_changed;
B
bellard 已提交
136
#endif
137
#ifdef CONFIG_LINUX_AIO
138
    int use_aio;
K
Kevin Wolf 已提交
139
    void *aio_ctx;
140
#endif
C
Christoph Hellwig 已提交
141
#ifdef CONFIG_XFS
142
    bool is_xfs:1;
C
Christoph Hellwig 已提交
143
#endif
144
    bool has_discard:1;
145
    bool has_write_zeroes:1;
146
    bool discard_zeroes:1;
B
bellard 已提交
147 148
} BDRVRawState;

J
Jeff Cody 已提交
149 150 151 152 153 154 155 156
typedef struct BDRVRawReopenState {
    int fd;
    int open_flags;
#ifdef CONFIG_LINUX_AIO
    int use_aio;
#endif
} BDRVRawReopenState;

B
bellard 已提交
157
static int fd_open(BlockDriverState *bs);
158
static int64_t raw_getlength(BlockDriverState *bs);
B
bellard 已提交
159

160 161 162 163 164 165 166 167
typedef struct RawPosixAIOData {
    BlockDriverState *bs;
    int aio_fildes;
    union {
        struct iovec *aio_iov;
        void *aio_ioctl_buf;
    };
    int aio_niov;
P
Paolo Bonzini 已提交
168
    uint64_t aio_nbytes;
169 170 171 172 173
#define aio_ioctl_cmd   aio_nbytes /* for QEMU_AIO_IOCTL */
    off_t aio_offset;
    int aio_type;
} RawPosixAIOData;

A
Aurelien Jarno 已提交
174
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
175
static int cdrom_reopen(BlockDriverState *bs);
B
blueswir1 已提交
176 177
#endif

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
#if defined(__NetBSD__)
static int raw_normalize_devicepath(const char **filename)
{
    static char namebuf[PATH_MAX];
    const char *dp, *fname;
    struct stat sb;

    fname = *filename;
    dp = strrchr(fname, '/');
    if (lstat(fname, &sb) < 0) {
        fprintf(stderr, "%s: stat failed: %s\n",
            fname, strerror(errno));
        return -errno;
    }

    if (!S_ISBLK(sb.st_mode)) {
        return 0;
    }

    if (dp == NULL) {
        snprintf(namebuf, PATH_MAX, "r%s", fname);
    } else {
        snprintf(namebuf, PATH_MAX, "%.*s/r%s",
            (int)(dp - fname), fname, dp + 1);
    }
    fprintf(stderr, "%s is a block device", fname);
    *filename = namebuf;
    fprintf(stderr, ", using %s\n", *filename);

    return 0;
}
#else
static int raw_normalize_devicepath(const char **filename)
{
    return 0;
}
#endif

216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
static void raw_parse_flags(int bdrv_flags, int *open_flags)
{
    assert(open_flags != NULL);

    *open_flags |= O_BINARY;
    *open_flags &= ~O_ACCMODE;
    if (bdrv_flags & BDRV_O_RDWR) {
        *open_flags |= O_RDWR;
    } else {
        *open_flags |= O_RDONLY;
    }

    /* Use O_DSYNC for write-through caching, no flags for write-back caching,
     * and O_DIRECT for no caching. */
    if ((bdrv_flags & BDRV_O_NOCACHE)) {
        *open_flags |= O_DIRECT;
    }
}

235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
#ifdef CONFIG_LINUX_AIO
static int raw_set_aio(void **aio_ctx, int *use_aio, int bdrv_flags)
{
    int ret = -1;
    assert(aio_ctx != NULL);
    assert(use_aio != NULL);
    /*
     * Currently Linux do AIO only for files opened with O_DIRECT
     * specified so check NOCACHE flag too
     */
    if ((bdrv_flags & (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) ==
                      (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) {

        /* if non-NULL, laio_init() has already been run */
        if (*aio_ctx == NULL) {
            *aio_ctx = laio_init();
            if (!*aio_ctx) {
                goto error;
            }
        }
        *use_aio = 1;
    } else {
        *use_aio = 0;
    }

    ret = 0;

error:
    return ret;
}
#endif

267 268 269 270 271 272 273 274 275 276 277 278 279 280
static QemuOptsList raw_runtime_opts = {
    .name = "raw",
    .head = QTAILQ_HEAD_INITIALIZER(raw_runtime_opts.head),
    .desc = {
        {
            .name = "filename",
            .type = QEMU_OPT_STRING,
            .help = "File name of the image",
        },
        { /* end of list */ }
    },
};

static int raw_open_common(BlockDriverState *bs, QDict *options,
281
                           int bdrv_flags, int open_flags, Error **errp)
B
bellard 已提交
282 283
{
    BDRVRawState *s = bs->opaque;
284 285 286
    QemuOpts *opts;
    Error *local_err = NULL;
    const char *filename;
287
    int fd, ret;
288
    struct stat st;
B
bellard 已提交
289

290 291 292
    opts = qemu_opts_create_nofail(&raw_runtime_opts);
    qemu_opts_absorb_qdict(opts, options, &local_err);
    if (error_is_set(&local_err)) {
293
        error_propagate(errp, local_err);
294 295 296 297 298 299
        ret = -EINVAL;
        goto fail;
    }

    filename = qemu_opt_get(opts, "filename");

300 301
    ret = raw_normalize_devicepath(&filename);
    if (ret != 0) {
302
        error_setg_errno(errp, -ret, "Could not normalize device path");
303
        goto fail;
304 305
    }

306 307
    s->open_flags = open_flags;
    raw_parse_flags(bdrv_flags, &s->open_flags);
B
bellard 已提交
308

309
    s->fd = -1;
K
Kevin Wolf 已提交
310
    fd = qemu_open(filename, s->open_flags, 0644);
B
bellard 已提交
311 312
    if (fd < 0) {
        ret = -errno;
313
        if (ret == -EROFS) {
B
bellard 已提交
314
            ret = -EACCES;
315 316
        }
        goto fail;
B
bellard 已提交
317
    }
B
bellard 已提交
318
    s->fd = fd;
319

320
#ifdef CONFIG_LINUX_AIO
321
    if (raw_set_aio(&s->aio_ctx, &s->use_aio, bdrv_flags)) {
322
        qemu_close(fd);
323
        ret = -errno;
324
        error_setg_errno(errp, -ret, "Could not set AIO state");
325
        goto fail;
326
    }
327
#endif
328

329
    s->has_discard = true;
330
    s->has_write_zeroes = true;
331 332 333 334 335 336 337 338

    if (fstat(s->fd, &st) < 0) {
        error_setg_errno(errp, errno, "Could not stat file");
        goto fail;
    }
    if (S_ISREG(st.st_mode)) {
        s->discard_zeroes = true;
    }
339 340 341 342 343 344 345 346 347 348
    if (S_ISBLK(st.st_mode)) {
#ifdef BLKDISCARDZEROES
        unsigned int arg;
        if (ioctl(s->fd, BLKDISCARDZEROES, &arg) == 0 && arg) {
            s->discard_zeroes = true;
        }
#endif
#ifdef __linux__
        /* On Linux 3.10, BLKDISCARD leaves stale data in the page cache.  Do
         * not rely on the contents of discarded blocks unless using O_DIRECT.
349
         * Same for BLKZEROOUT.
350 351 352
         */
        if (!(bs->open_flags & BDRV_O_NOCACHE)) {
            s->discard_zeroes = false;
353
            s->has_write_zeroes = false;
354 355 356
        }
#endif
    }
357

C
Christoph Hellwig 已提交
358 359
#ifdef CONFIG_XFS
    if (platform_test_xfs_fd(s->fd)) {
360
        s->is_xfs = true;
C
Christoph Hellwig 已提交
361 362 363
    }
#endif

364 365 366 367
    ret = 0;
fail:
    qemu_opts_del(opts);
    return ret;
B
bellard 已提交
368 369
}

M
Max Reitz 已提交
370 371
static int raw_open(BlockDriverState *bs, QDict *options, int flags,
                    Error **errp)
372 373
{
    BDRVRawState *s = bs->opaque;
374 375
    Error *local_err = NULL;
    int ret;
376 377

    s->type = FTYPE_FILE;
378 379 380 381 382
    ret = raw_open_common(bs, options, flags, 0, &local_err);
    if (error_is_set(&local_err)) {
        error_propagate(errp, local_err);
    }
    return ret;
383 384
}

J
Jeff Cody 已提交
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
static int raw_reopen_prepare(BDRVReopenState *state,
                              BlockReopenQueue *queue, Error **errp)
{
    BDRVRawState *s;
    BDRVRawReopenState *raw_s;
    int ret = 0;

    assert(state != NULL);
    assert(state->bs != NULL);

    s = state->bs->opaque;

    state->opaque = g_malloc0(sizeof(BDRVRawReopenState));
    raw_s = state->opaque;

#ifdef CONFIG_LINUX_AIO
    raw_s->use_aio = s->use_aio;

    /* we can use s->aio_ctx instead of a copy, because the use_aio flag is
     * valid in the 'false' condition even if aio_ctx is set, and raw_set_aio()
     * won't override aio_ctx if aio_ctx is non-NULL */
    if (raw_set_aio(&s->aio_ctx, &raw_s->use_aio, state->flags)) {
407
        error_setg(errp, "Could not set AIO state");
J
Jeff Cody 已提交
408 409 410 411
        return -1;
    }
#endif

412 413 414 415
    if (s->type == FTYPE_FD || s->type == FTYPE_CD) {
        raw_s->open_flags |= O_NONBLOCK;
    }

J
Jeff Cody 已提交
416 417 418 419
    raw_parse_flags(state->flags, &raw_s->open_flags);

    raw_s->fd = -1;

420
    int fcntl_flags = O_APPEND | O_NONBLOCK;
J
Jeff Cody 已提交
421 422 423 424
#ifdef O_NOATIME
    fcntl_flags |= O_NOATIME;
#endif

425 426 427 428 429 430 431 432 433
#ifdef O_ASYNC
    /* Not all operating systems have O_ASYNC, and those that don't
     * will not let us track the state into raw_s->open_flags (typically
     * you achieve the same effect with an ioctl, for example I_SETSIG
     * on Solaris). But we do not use O_ASYNC, so that's fine.
     */
    assert((s->open_flags & O_ASYNC) == 0);
#endif

J
Jeff Cody 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
    if ((raw_s->open_flags & ~fcntl_flags) == (s->open_flags & ~fcntl_flags)) {
        /* dup the original fd */
        /* TODO: use qemu fcntl wrapper */
#ifdef F_DUPFD_CLOEXEC
        raw_s->fd = fcntl(s->fd, F_DUPFD_CLOEXEC, 0);
#else
        raw_s->fd = dup(s->fd);
        if (raw_s->fd != -1) {
            qemu_set_cloexec(raw_s->fd);
        }
#endif
        if (raw_s->fd >= 0) {
            ret = fcntl_setfl(raw_s->fd, raw_s->open_flags);
            if (ret) {
                qemu_close(raw_s->fd);
                raw_s->fd = -1;
            }
        }
    }

    /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
    if (raw_s->fd == -1) {
        assert(!(raw_s->open_flags & O_CREAT));
        raw_s->fd = qemu_open(state->bs->filename, raw_s->open_flags);
        if (raw_s->fd == -1) {
459
            error_setg_errno(errp, errno, "Could not reopen file");
J
Jeff Cody 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
            ret = -1;
        }
    }
    return ret;
}


static void raw_reopen_commit(BDRVReopenState *state)
{
    BDRVRawReopenState *raw_s = state->opaque;
    BDRVRawState *s = state->bs->opaque;

    s->open_flags = raw_s->open_flags;

    qemu_close(s->fd);
    s->fd = raw_s->fd;
#ifdef CONFIG_LINUX_AIO
    s->use_aio = raw_s->use_aio;
#endif

    g_free(state->opaque);
    state->opaque = NULL;
}


static void raw_reopen_abort(BDRVReopenState *state)
{
    BDRVRawReopenState *raw_s = state->opaque;

     /* nothing to do if NULL, we didn't get far enough */
    if (raw_s == NULL) {
        return;
    }

    if (raw_s->fd >= 0) {
        qemu_close(raw_s->fd);
        raw_s->fd = -1;
    }
    g_free(state->opaque);
    state->opaque = NULL;
}


B
bellard 已提交
503 504 505 506 507 508 509 510 511 512
/* XXX: use host sector size if necessary with:
#ifdef DIOCGSECTORSIZE
        {
            unsigned int sectorsize = 512;
            if (!ioctl(fd, DIOCGSECTORSIZE, &sectorsize) &&
                sectorsize > bufsize)
                bufsize = sectorsize;
        }
#endif
#ifdef CONFIG_COCOA
513
        uint32_t blockSize = 512;
B
bellard 已提交
514 515 516 517 518 519
        if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
            bufsize = blockSize;
        }
#endif
*/

520 521 522 523 524 525 526 527 528
static ssize_t handle_aiocb_ioctl(RawPosixAIOData *aiocb)
{
    int ret;

    ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf);
    if (ret == -1) {
        return -errno;
    }

P
Paolo Bonzini 已提交
529
    return 0;
530 531 532 533 534 535 536 537 538 539 540 541 542 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 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
}

static ssize_t handle_aiocb_flush(RawPosixAIOData *aiocb)
{
    int ret;

    ret = qemu_fdatasync(aiocb->aio_fildes);
    if (ret == -1) {
        return -errno;
    }
    return 0;
}

#ifdef CONFIG_PREADV

static bool preadv_present = true;

static ssize_t
qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
{
    return preadv(fd, iov, nr_iov, offset);
}

static ssize_t
qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
{
    return pwritev(fd, iov, nr_iov, offset);
}

#else

static bool preadv_present = false;

static ssize_t
qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
{
    return -ENOSYS;
}

static ssize_t
qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
{
    return -ENOSYS;
}

#endif

static ssize_t handle_aiocb_rw_vector(RawPosixAIOData *aiocb)
{
    ssize_t len;

    do {
        if (aiocb->aio_type & QEMU_AIO_WRITE)
            len = qemu_pwritev(aiocb->aio_fildes,
                               aiocb->aio_iov,
                               aiocb->aio_niov,
                               aiocb->aio_offset);
         else
            len = qemu_preadv(aiocb->aio_fildes,
                              aiocb->aio_iov,
                              aiocb->aio_niov,
                              aiocb->aio_offset);
    } while (len == -1 && errno == EINTR);

    if (len == -1) {
        return -errno;
    }
    return len;
}

/*
 * Read/writes the data to/from a given linear buffer.
 *
 * Returns the number of bytes handles or -errno in case of an error. Short
 * reads are only returned if the end of the file is reached.
 */
static ssize_t handle_aiocb_rw_linear(RawPosixAIOData *aiocb, char *buf)
{
    ssize_t offset = 0;
    ssize_t len;

    while (offset < aiocb->aio_nbytes) {
        if (aiocb->aio_type & QEMU_AIO_WRITE) {
            len = pwrite(aiocb->aio_fildes,
                         (const char *)buf + offset,
                         aiocb->aio_nbytes - offset,
                         aiocb->aio_offset + offset);
        } else {
            len = pread(aiocb->aio_fildes,
                        buf + offset,
                        aiocb->aio_nbytes - offset,
                        aiocb->aio_offset + offset);
        }
        if (len == -1 && errno == EINTR) {
            continue;
        } else if (len == -1) {
            offset = -errno;
            break;
        } else if (len == 0) {
            break;
        }
        offset += len;
    }

    return offset;
}

static ssize_t handle_aiocb_rw(RawPosixAIOData *aiocb)
{
    ssize_t nbytes;
    char *buf;

    if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) {
        /*
         * If there is just a single buffer, and it is properly aligned
         * we can just use plain pread/pwrite without any problems.
         */
        if (aiocb->aio_niov == 1) {
             return handle_aiocb_rw_linear(aiocb, aiocb->aio_iov->iov_base);
        }
        /*
         * We have more than one iovec, and all are properly aligned.
         *
         * Try preadv/pwritev first and fall back to linearizing the
         * buffer if it's not supported.
         */
        if (preadv_present) {
            nbytes = handle_aiocb_rw_vector(aiocb);
            if (nbytes == aiocb->aio_nbytes ||
                (nbytes < 0 && nbytes != -ENOSYS)) {
                return nbytes;
            }
            preadv_present = false;
        }

        /*
         * XXX(hch): short read/write.  no easy way to handle the reminder
         * using these interfaces.  For now retry using plain
         * pread/pwrite?
         */
    }

    /*
     * Ok, we have to do it the hard way, copy all segments into
     * a single aligned buffer.
     */
    buf = qemu_blockalign(aiocb->bs, aiocb->aio_nbytes);
    if (aiocb->aio_type & QEMU_AIO_WRITE) {
        char *p = buf;
        int i;

        for (i = 0; i < aiocb->aio_niov; ++i) {
            memcpy(p, aiocb->aio_iov[i].iov_base, aiocb->aio_iov[i].iov_len);
            p += aiocb->aio_iov[i].iov_len;
        }
    }

    nbytes = handle_aiocb_rw_linear(aiocb, buf);
    if (!(aiocb->aio_type & QEMU_AIO_WRITE)) {
        char *p = buf;
        size_t count = aiocb->aio_nbytes, copy;
        int i;

        for (i = 0; i < aiocb->aio_niov && count; ++i) {
            copy = count;
            if (copy > aiocb->aio_iov[i].iov_len) {
                copy = aiocb->aio_iov[i].iov_len;
            }
            memcpy(aiocb->aio_iov[i].iov_base, p, copy);
            p     += copy;
            count -= copy;
        }
    }
    qemu_vfree(buf);

    return nbytes;
}

P
Paolo Bonzini 已提交
708
#ifdef CONFIG_XFS
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
static int xfs_write_zeroes(BDRVRawState *s, int64_t offset, uint64_t bytes)
{
    struct xfs_flock64 fl;

    memset(&fl, 0, sizeof(fl));
    fl.l_whence = SEEK_SET;
    fl.l_start = offset;
    fl.l_len = bytes;

    if (xfsctl(NULL, s->fd, XFS_IOC_ZERO_RANGE, &fl) < 0) {
        DEBUG_BLOCK_PRINT("cannot write zero range (%s)\n", strerror(errno));
        return -errno;
    }

    return 0;
}

P
Paolo Bonzini 已提交
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
static int xfs_discard(BDRVRawState *s, int64_t offset, uint64_t bytes)
{
    struct xfs_flock64 fl;

    memset(&fl, 0, sizeof(fl));
    fl.l_whence = SEEK_SET;
    fl.l_start = offset;
    fl.l_len = bytes;

    if (xfsctl(NULL, s->fd, XFS_IOC_UNRESVSP64, &fl) < 0) {
        DEBUG_BLOCK_PRINT("cannot punch hole (%s)\n", strerror(errno));
        return -errno;
    }

    return 0;
}
#endif

744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
static ssize_t handle_aiocb_write_zeroes(RawPosixAIOData *aiocb)
{
    int ret = -EOPNOTSUPP;
    BDRVRawState *s = aiocb->bs->opaque;

    if (s->has_write_zeroes == 0) {
        return -ENOTSUP;
    }

    if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
#ifdef BLKZEROOUT
        do {
            uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
            if (ioctl(aiocb->aio_fildes, BLKZEROOUT, range) == 0) {
                return 0;
            }
        } while (errno == EINTR);

        ret = -errno;
#endif
    } else {
#ifdef CONFIG_XFS
        if (s->is_xfs) {
            return xfs_write_zeroes(s, aiocb->aio_offset, aiocb->aio_nbytes);
        }
#endif
    }

    if (ret == -ENODEV || ret == -ENOSYS || ret == -EOPNOTSUPP ||
        ret == -ENOTTY) {
        s->has_write_zeroes = false;
        ret = -ENOTSUP;
    }
    return ret;
}

P
Paolo Bonzini 已提交
780 781 782 783 784
static ssize_t handle_aiocb_discard(RawPosixAIOData *aiocb)
{
    int ret = -EOPNOTSUPP;
    BDRVRawState *s = aiocb->bs->opaque;

785 786
    if (!s->has_discard) {
        return -ENOTSUP;
P
Paolo Bonzini 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
    }

    if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
#ifdef BLKDISCARD
        do {
            uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
            if (ioctl(aiocb->aio_fildes, BLKDISCARD, range) == 0) {
                return 0;
            }
        } while (errno == EINTR);

        ret = -errno;
#endif
    } else {
#ifdef CONFIG_XFS
        if (s->is_xfs) {
            return xfs_discard(s, aiocb->aio_offset, aiocb->aio_nbytes);
        }
#endif

#ifdef CONFIG_FALLOCATE_PUNCH_HOLE
        do {
            if (fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
                          aiocb->aio_offset, aiocb->aio_nbytes) == 0) {
                return 0;
            }
        } while (errno == EINTR);

        ret = -errno;
#endif
    }

    if (ret == -ENODEV || ret == -ENOSYS || ret == -EOPNOTSUPP ||
        ret == -ENOTTY) {
821 822
        s->has_discard = false;
        ret = -ENOTSUP;
P
Paolo Bonzini 已提交
823 824 825 826
    }
    return ret;
}

827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
static int aio_worker(void *arg)
{
    RawPosixAIOData *aiocb = arg;
    ssize_t ret = 0;

    switch (aiocb->aio_type & QEMU_AIO_TYPE_MASK) {
    case QEMU_AIO_READ:
        ret = handle_aiocb_rw(aiocb);
        if (ret >= 0 && ret < aiocb->aio_nbytes && aiocb->bs->growable) {
            iov_memset(aiocb->aio_iov, aiocb->aio_niov, ret,
                      0, aiocb->aio_nbytes - ret);

            ret = aiocb->aio_nbytes;
        }
        if (ret == aiocb->aio_nbytes) {
            ret = 0;
        } else if (ret >= 0 && ret < aiocb->aio_nbytes) {
            ret = -EINVAL;
        }
        break;
    case QEMU_AIO_WRITE:
        ret = handle_aiocb_rw(aiocb);
        if (ret == aiocb->aio_nbytes) {
            ret = 0;
        } else if (ret >= 0 && ret < aiocb->aio_nbytes) {
            ret = -EINVAL;
        }
        break;
    case QEMU_AIO_FLUSH:
        ret = handle_aiocb_flush(aiocb);
        break;
    case QEMU_AIO_IOCTL:
        ret = handle_aiocb_ioctl(aiocb);
        break;
P
Paolo Bonzini 已提交
861 862 863
    case QEMU_AIO_DISCARD:
        ret = handle_aiocb_discard(aiocb);
        break;
864 865 866
    case QEMU_AIO_WRITE_ZEROES:
        ret = handle_aiocb_write_zeroes(aiocb);
        break;
867 868 869 870 871 872 873 874 875 876
    default:
        fprintf(stderr, "invalid aio request (0x%x)\n", aiocb->aio_type);
        ret = -EINVAL;
        break;
    }

    g_slice_free(RawPosixAIOData, aiocb);
    return ret;
}

877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
static int paio_submit_co(BlockDriverState *bs, int fd,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
        int type)
{
    RawPosixAIOData *acb = g_slice_new(RawPosixAIOData);
    ThreadPool *pool;

    acb->bs = bs;
    acb->aio_type = type;
    acb->aio_fildes = fd;

    if (qiov) {
        acb->aio_iov = qiov->iov;
        acb->aio_niov = qiov->niov;
    }
    acb->aio_nbytes = nb_sectors * 512;
    acb->aio_offset = sector_num * 512;

    trace_paio_submit_co(sector_num, nb_sectors, type);
    pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
    return thread_pool_submit_co(pool, aio_worker, acb);
}

900 901 902 903 904
static BlockDriverAIOCB *paio_submit(BlockDriverState *bs, int fd,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
        BlockDriverCompletionFunc *cb, void *opaque, int type)
{
    RawPosixAIOData *acb = g_slice_new(RawPosixAIOData);
905
    ThreadPool *pool;
906 907 908 909 910 911 912 913 914 915 916 917 918

    acb->bs = bs;
    acb->aio_type = type;
    acb->aio_fildes = fd;

    if (qiov) {
        acb->aio_iov = qiov->iov;
        acb->aio_niov = qiov->niov;
    }
    acb->aio_nbytes = nb_sectors * 512;
    acb->aio_offset = sector_num * 512;

    trace_paio_submit(acb, opaque, sector_num, nb_sectors, type);
919 920
    pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
    return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
921 922
}

923 924 925
static BlockDriverAIOCB *raw_aio_submit(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
        BlockDriverCompletionFunc *cb, void *opaque, int type)
B
bellard 已提交
926
{
927 928
    BDRVRawState *s = bs->opaque;

B
bellard 已提交
929 930 931
    if (fd_open(bs) < 0)
        return NULL;

932 933
    /*
     * If O_DIRECT is used the buffer needs to be aligned on a sector
F
Frediano Ziglio 已提交
934
     * boundary.  Check if this is the case or tell the low-level
935
     * driver that it needs to copy the buffer.
936
     */
937
    if ((bs->open_flags & BDRV_O_NOCACHE)) {
938
        if (!bdrv_qiov_is_aligned(bs, qiov)) {
939
            type |= QEMU_AIO_MISALIGNED;
940
#ifdef CONFIG_LINUX_AIO
941 942
        } else if (s->use_aio) {
            return laio_submit(bs, s->aio_ctx, s->fd, sector_num, qiov,
943 944
                               nb_sectors, cb, opaque, type);
#endif
945
        }
946
    }
947

K
Kevin Wolf 已提交
948
    return paio_submit(bs, s->fd, sector_num, qiov, nb_sectors,
949
                       cb, opaque, type);
B
bellard 已提交
950 951
}

952 953
static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
954
        BlockDriverCompletionFunc *cb, void *opaque)
B
bellard 已提交
955
{
956 957
    return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
                          cb, opaque, QEMU_AIO_READ);
B
bellard 已提交
958 959
}

960 961
static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
962
        BlockDriverCompletionFunc *cb, void *opaque)
B
bellard 已提交
963
{
964 965
    return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
                          cb, opaque, QEMU_AIO_WRITE);
B
bellard 已提交
966
}
967

968 969 970 971 972 973 974 975
static BlockDriverAIOCB *raw_aio_flush(BlockDriverState *bs,
        BlockDriverCompletionFunc *cb, void *opaque)
{
    BDRVRawState *s = bs->opaque;

    if (fd_open(bs) < 0)
        return NULL;

K
Kevin Wolf 已提交
976
    return paio_submit(bs, s->fd, 0, NULL, 0, cb, opaque, QEMU_AIO_FLUSH);
977 978
}

B
bellard 已提交
979 980 981
static void raw_close(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
B
bellard 已提交
982
    if (s->fd >= 0) {
983
        qemu_close(s->fd);
B
bellard 已提交
984 985
        s->fd = -1;
    }
B
bellard 已提交
986 987 988 989 990
}

static int raw_truncate(BlockDriverState *bs, int64_t offset)
{
    BDRVRawState *s = bs->opaque;
991 992 993
    struct stat st;

    if (fstat(s->fd, &st)) {
B
bellard 已提交
994
        return -errno;
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
    }

    if (S_ISREG(st.st_mode)) {
        if (ftruncate(s->fd, offset) < 0) {
            return -errno;
        }
    } else if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
       if (offset > raw_getlength(bs)) {
           return -EINVAL;
       }
    } else {
        return -ENOTSUP;
    }

B
bellard 已提交
1009 1010 1011
    return 0;
}

1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
#ifdef __OpenBSD__
static int64_t raw_getlength(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    int fd = s->fd;
    struct stat st;

    if (fstat(fd, &st))
        return -1;
    if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
        struct disklabel dl;

        if (ioctl(fd, DIOCGDINFO, &dl))
            return -1;
        return (uint64_t)dl.d_secsize *
            dl.d_partitions[DISKPART(st.st_rdev)].p_size;
    } else
        return st.st_size;
}
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
#elif defined(__NetBSD__)
static int64_t raw_getlength(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    int fd = s->fd;
    struct stat st;

    if (fstat(fd, &st))
        return -1;
    if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
        struct dkwedge_info dkw;

        if (ioctl(fd, DIOCGWEDGEINFO, &dkw) != -1) {
            return dkw.dkw_size * 512;
        } else {
            struct disklabel dl;

            if (ioctl(fd, DIOCGDINFO, &dl))
                return -1;
            return (uint64_t)dl.d_secsize *
                dl.d_partitions[DISKPART(st.st_rdev)].p_size;
        }
    } else
        return st.st_size;
}
C
Christoph Hellwig 已提交
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
#elif defined(__sun__)
static int64_t raw_getlength(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    struct dk_minfo minfo;
    int ret;

    ret = fd_open(bs);
    if (ret < 0) {
        return ret;
    }

    /*
     * Use the DKIOCGMEDIAINFO ioctl to read the size.
     */
    ret = ioctl(s->fd, DKIOCGMEDIAINFO, &minfo);
    if (ret != -1) {
        return minfo.dki_lbsize * minfo.dki_capacity;
    }

    /*
     * There are reports that lseek on some devices fails, but
     * irc discussion said that contingency on contingency was overkill.
     */
    return lseek(s->fd, 0, SEEK_END);
}
#elif defined(CONFIG_BSD)
static int64_t raw_getlength(BlockDriverState *bs)
B
bellard 已提交
1084 1085 1086 1087 1088
{
    BDRVRawState *s = bs->opaque;
    int fd = s->fd;
    int64_t size;
    struct stat sb;
A
Aurelien Jarno 已提交
1089
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
1090
    int reopened = 0;
B
bellard 已提交
1091
#endif
B
bellard 已提交
1092 1093 1094 1095 1096
    int ret;

    ret = fd_open(bs);
    if (ret < 0)
        return ret;
B
bellard 已提交
1097

A
Aurelien Jarno 已提交
1098
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
1099 1100
again:
#endif
B
bellard 已提交
1101 1102 1103
    if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
#ifdef DIOCGMEDIASIZE
	if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
1104 1105 1106 1107 1108 1109 1110 1111 1112
#elif defined(DIOCGPART)
        {
                struct partinfo pi;
                if (ioctl(fd, DIOCGPART, &pi) == 0)
                        size = pi.media_size;
                else
                        size = 0;
        }
        if (size == 0)
B
bellard 已提交
1113
#endif
1114
#if defined(__APPLE__) && defined(__MACH__)
B
bellard 已提交
1115 1116 1117
        size = LONG_LONG_MAX;
#else
        size = lseek(fd, 0LL, SEEK_END);
B
blueswir1 已提交
1118
#endif
A
Aurelien Jarno 已提交
1119
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
1120 1121 1122 1123 1124 1125
        switch(s->type) {
        case FTYPE_CD:
            /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
            if (size == 2048LL * (unsigned)-1)
                size = 0;
            /* XXX no disc?  maybe we need to reopen... */
1126
            if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
B
blueswir1 已提交
1127 1128 1129 1130
                reopened = 1;
                goto again;
            }
        }
B
bellard 已提交
1131
#endif
C
Christoph Hellwig 已提交
1132
    } else {
B
bellard 已提交
1133 1134 1135 1136
        size = lseek(fd, 0, SEEK_END);
    }
    return size;
}
C
Christoph Hellwig 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
#else
static int64_t raw_getlength(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    int ret;

    ret = fd_open(bs);
    if (ret < 0) {
        return ret;
    }

    return lseek(s->fd, 0, SEEK_END);
}
1150
#endif
B
bellard 已提交
1151

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
{
    struct stat st;
    BDRVRawState *s = bs->opaque;

    if (fstat(s->fd, &st) < 0) {
        return -errno;
    }
    return (int64_t)st.st_blocks * 512;
}

1163 1164
static int raw_create(const char *filename, QEMUOptionParameter *options,
                      Error **errp)
B
bellard 已提交
1165 1166
{
    int fd;
1167
    int result = 0;
1168
    int64_t total_size = 0;
B
bellard 已提交
1169

1170 1171 1172
    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
1173
            total_size = options->value.n / BDRV_SECTOR_SIZE;
1174 1175 1176
        }
        options++;
    }
B
bellard 已提交
1177

1178 1179
    fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
                   0644);
1180 1181
    if (fd < 0) {
        result = -errno;
1182
        error_setg_errno(errp, -result, "Could not create file");
1183
    } else {
1184
        if (ftruncate(fd, total_size * BDRV_SECTOR_SIZE) != 0) {
1185
            result = -errno;
1186
            error_setg_errno(errp, -result, "Could not resize file");
1187
        }
1188
        if (qemu_close(fd) != 0) {
1189
            result = -errno;
1190
            error_setg_errno(errp, -result, "Could not close the new file");
1191 1192 1193
        }
    }
    return result;
B
bellard 已提交
1194 1195
}

1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
/*
 * Returns true iff the specified sector is present in the disk image. 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.
 */
1211
static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
1212 1213 1214 1215
                                            int64_t sector_num,
                                            int nb_sectors, int *pnum)
{
    off_t start, data, hole;
1216
    int64_t ret;
1217 1218 1219 1220 1221 1222 1223

    ret = fd_open(bs);
    if (ret < 0) {
        return ret;
    }

    start = sector_num * BDRV_SECTOR_SIZE;
1224
    ret = BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start;
1225

1226
#ifdef CONFIG_FIEMAP
1227 1228

    BDRVRawState *s = bs->opaque;
1229 1230 1231 1232
    struct {
        struct fiemap fm;
        struct fiemap_extent fe;
    } f;
1233

1234 1235 1236 1237 1238 1239 1240 1241
    f.fm.fm_start = start;
    f.fm.fm_length = (int64_t)nb_sectors * BDRV_SECTOR_SIZE;
    f.fm.fm_flags = 0;
    f.fm.fm_extent_count = 1;
    f.fm.fm_reserved = 0;
    if (ioctl(s->fd, FS_IOC_FIEMAP, &f) == -1) {
        /* Assume everything is allocated.  */
        *pnum = nb_sectors;
1242
        return ret;
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
    }

    if (f.fm.fm_mapped_extents == 0) {
        /* No extents found, data is beyond f.fm.fm_start + f.fm.fm_length.
         * f.fm.fm_start + f.fm.fm_length must be clamped to the file size!
         */
        off_t length = lseek(s->fd, 0, SEEK_END);
        hole = f.fm.fm_start;
        data = MIN(f.fm.fm_start + f.fm.fm_length, length);
    } else {
        data = f.fe.fe_logical;
        hole = f.fe.fe_logical + f.fe.fe_length;
1255 1256 1257
        if (f.fe.fe_flags & FIEMAP_EXTENT_UNWRITTEN) {
            ret |= BDRV_BLOCK_ZERO;
        }
1258
    }
1259

1260
#elif defined SEEK_HOLE && defined SEEK_DATA
1261 1262 1263

    BDRVRawState *s = bs->opaque;

1264 1265 1266 1267 1268 1269 1270 1271
    hole = lseek(s->fd, start, SEEK_HOLE);
    if (hole == -1) {
        /* -ENXIO indicates that sector_num was past the end of the file.
         * There is a virtual hole there.  */
        assert(errno != -ENXIO);

        /* Most likely EINVAL.  Assume everything is allocated.  */
        *pnum = nb_sectors;
1272
        return ret;
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
    }

    if (hole > start) {
        data = start;
    } else {
        /* On a hole.  We need another syscall to find its end.  */
        data = lseek(s->fd, start, SEEK_DATA);
        if (data == -1) {
            data = lseek(s->fd, 0, SEEK_END);
        }
    }
#else
1285 1286
    data = 0;
    hole = start + nb_sectors * BDRV_SECTOR_SIZE;
1287 1288 1289 1290 1291 1292 1293 1294
#endif

    if (data <= start) {
        /* On a data extent, compute sectors to the end of the extent.  */
        *pnum = MIN(nb_sectors, (hole - start) / BDRV_SECTOR_SIZE);
    } else {
        /* On a hole, compute sectors to the beginning of the next extent.  */
        *pnum = MIN(nb_sectors, (data - start) / BDRV_SECTOR_SIZE);
1295 1296
        ret &= ~BDRV_BLOCK_DATA;
        ret |= BDRV_BLOCK_ZERO;
1297
    }
1298 1299

    return ret;
1300 1301
}

P
Paolo Bonzini 已提交
1302 1303 1304
static coroutine_fn BlockDriverAIOCB *raw_aio_discard(BlockDriverState *bs,
    int64_t sector_num, int nb_sectors,
    BlockDriverCompletionFunc *cb, void *opaque)
C
Christoph Hellwig 已提交
1305 1306 1307
{
    BDRVRawState *s = bs->opaque;

P
Paolo Bonzini 已提交
1308 1309
    return paio_submit(bs, s->fd, sector_num, NULL, nb_sectors,
                       cb, opaque, QEMU_AIO_DISCARD);
C
Christoph Hellwig 已提交
1310
}
1311

1312 1313 1314 1315 1316 1317 1318
static int coroutine_fn raw_co_write_zeroes(
    BlockDriverState *bs, int64_t sector_num,
    int nb_sectors, BdrvRequestFlags flags)
{
    BDRVRawState *s = bs->opaque;

    if (!(flags & BDRV_REQ_MAY_UNMAP)) {
1319 1320 1321 1322 1323
        return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
                              QEMU_AIO_WRITE_ZEROES);
    } else if (s->discard_zeroes) {
        return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
                              QEMU_AIO_DISCARD);
1324
    }
1325
    return -ENOTSUP;
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
}

static int raw_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
{
    BDRVRawState *s = bs->opaque;

    bdi->unallocated_blocks_are_zero = s->discard_zeroes;
    bdi->can_write_zeroes_with_unmap = s->discard_zeroes;
    return 0;
}

1337
static QEMUOptionParameter raw_create_options[] = {
1338 1339 1340 1341 1342
    {
        .name = BLOCK_OPT_SIZE,
        .type = OPT_SIZE,
        .help = "Virtual disk size"
    },
1343 1344 1345
    { NULL }
};

1346 1347 1348
static BlockDriver bdrv_file = {
    .format_name = "file",
    .protocol_name = "file",
B
blueswir1 已提交
1349
    .instance_size = sizeof(BDRVRawState),
1350
    .bdrv_needs_filename = true,
B
blueswir1 已提交
1351
    .bdrv_probe = NULL, /* no probe for protocols */
1352
    .bdrv_file_open = raw_open,
J
Jeff Cody 已提交
1353 1354 1355
    .bdrv_reopen_prepare = raw_reopen_prepare,
    .bdrv_reopen_commit = raw_reopen_commit,
    .bdrv_reopen_abort = raw_reopen_abort,
B
blueswir1 已提交
1356 1357
    .bdrv_close = raw_close,
    .bdrv_create = raw_create,
1358
    .bdrv_has_zero_init = bdrv_has_zero_init_1,
1359
    .bdrv_co_get_block_status = raw_co_get_block_status,
1360
    .bdrv_co_write_zeroes = raw_co_write_zeroes,
1361

1362 1363
    .bdrv_aio_readv = raw_aio_readv,
    .bdrv_aio_writev = raw_aio_writev,
1364
    .bdrv_aio_flush = raw_aio_flush,
P
Paolo Bonzini 已提交
1365
    .bdrv_aio_discard = raw_aio_discard,
1366

B
bellard 已提交
1367 1368
    .bdrv_truncate = raw_truncate,
    .bdrv_getlength = raw_getlength,
1369
    .bdrv_get_info = raw_get_info,
1370 1371
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
1372 1373

    .create_options = raw_create_options,
B
bellard 已提交
1374 1375
};

B
bellard 已提交
1376 1377 1378
/***********************************************/
/* host device */

1379
#if defined(__APPLE__) && defined(__MACH__)
B
bellard 已提交
1380 1381 1382 1383 1384
static kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator );
static kern_return_t GetBSDPath( io_iterator_t mediaIterator, char *bsdPath, CFIndex maxPathSize );

kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator )
{
1385
    kern_return_t       kernResult;
B
bellard 已提交
1386 1387 1388 1389 1390 1391 1392
    mach_port_t     masterPort;
    CFMutableDictionaryRef  classesToMatch;

    kernResult = IOMasterPort( MACH_PORT_NULL, &masterPort );
    if ( KERN_SUCCESS != kernResult ) {
        printf( "IOMasterPort returned %d\n", kernResult );
    }
1393

1394
    classesToMatch = IOServiceMatching( kIOCDMediaClass );
B
bellard 已提交
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
    if ( classesToMatch == NULL ) {
        printf( "IOServiceMatching returned a NULL dictionary.\n" );
    } else {
    CFDictionarySetValue( classesToMatch, CFSTR( kIOMediaEjectableKey ), kCFBooleanTrue );
    }
    kernResult = IOServiceGetMatchingServices( masterPort, classesToMatch, mediaIterator );
    if ( KERN_SUCCESS != kernResult )
    {
        printf( "IOServiceGetMatchingServices returned %d\n", kernResult );
    }
1405

B
bellard 已提交
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
    return kernResult;
}

kern_return_t GetBSDPath( io_iterator_t mediaIterator, char *bsdPath, CFIndex maxPathSize )
{
    io_object_t     nextMedia;
    kern_return_t   kernResult = KERN_FAILURE;
    *bsdPath = '\0';
    nextMedia = IOIteratorNext( mediaIterator );
    if ( nextMedia )
    {
        CFTypeRef   bsdPathAsCFString;
    bsdPathAsCFString = IORegistryEntryCreateCFProperty( nextMedia, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 );
        if ( bsdPathAsCFString ) {
            size_t devPathLength;
            strcpy( bsdPath, _PATH_DEV );
            strcat( bsdPath, "r" );
            devPathLength = strlen( bsdPath );
            if ( CFStringGetCString( bsdPathAsCFString, bsdPath + devPathLength, maxPathSize - devPathLength, kCFStringEncodingASCII ) ) {
                kernResult = KERN_SUCCESS;
            }
            CFRelease( bsdPathAsCFString );
        }
        IOObjectRelease( nextMedia );
    }
1431

B
bellard 已提交
1432 1433 1434 1435 1436
    return kernResult;
}

#endif

1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
static int hdev_probe_device(const char *filename)
{
    struct stat st;

    /* allow a dedicated CD-ROM driver to match with a higher priority */
    if (strstart(filename, "/dev/cdrom", NULL))
        return 50;

    if (stat(filename, &st) >= 0 &&
            (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
        return 100;
    }

    return 0;
}

1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
static int check_hdev_writable(BDRVRawState *s)
{
#if defined(BLKROGET)
    /* Linux block devices can be configured "read-only" using blockdev(8).
     * This is independent of device node permissions and therefore open(2)
     * with O_RDWR succeeds.  Actual writes fail with EPERM.
     *
     * bdrv_open() is supposed to fail if the disk is read-only.  Explicitly
     * check for read-only block devices so that Linux block devices behave
     * properly.
     */
    struct stat st;
    int readonly = 0;

    if (fstat(s->fd, &st)) {
        return -errno;
    }

    if (!S_ISBLK(st.st_mode)) {
        return 0;
    }

    if (ioctl(s->fd, BLKROGET, &readonly) < 0) {
        return -errno;
    }

    if (readonly) {
        return -EACCES;
    }
#endif /* defined(BLKROGET) */
    return 0;
}

M
Max Reitz 已提交
1486 1487
static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
                     Error **errp)
B
bellard 已提交
1488 1489
{
    BDRVRawState *s = bs->opaque;
1490
    Error *local_err = NULL;
1491
    int ret;
1492
    const char *filename = qdict_get_str(options, "filename");
1493

1494
#if defined(__APPLE__) && defined(__MACH__)
B
bellard 已提交
1495 1496 1497 1498 1499
    if (strstart(filename, "/dev/cdrom", NULL)) {
        kern_return_t kernResult;
        io_iterator_t mediaIterator;
        char bsdPath[ MAXPATHLEN ];
        int fd;
1500

B
bellard 已提交
1501 1502
        kernResult = FindEjectableCDMedia( &mediaIterator );
        kernResult = GetBSDPath( mediaIterator, bsdPath, sizeof( bsdPath ) );
1503

B
bellard 已提交
1504 1505 1506
        if ( bsdPath[ 0 ] != '\0' ) {
            strcat(bsdPath,"s0");
            /* some CDs don't have a partition 0 */
1507
            fd = qemu_open(bsdPath, O_RDONLY | O_BINARY | O_LARGEFILE);
B
bellard 已提交
1508 1509 1510
            if (fd < 0) {
                bsdPath[strlen(bsdPath)-1] = '1';
            } else {
1511
                qemu_close(fd);
B
bellard 已提交
1512 1513
            }
            filename = bsdPath;
1514
            qdict_put(options, "filename", qstring_from_str(filename));
B
bellard 已提交
1515
        }
1516

B
bellard 已提交
1517 1518 1519 1520 1521 1522
        if ( mediaIterator )
            IOObjectRelease( mediaIterator );
    }
#endif

    s->type = FTYPE_FILE;
C
Christoph Hellwig 已提交
1523
#if defined(__linux__)
1524 1525 1526 1527 1528 1529 1530
    {
        char resolved_path[ MAXPATHLEN ], *temp;

        temp = realpath(filename, resolved_path);
        if (temp && strstart(temp, "/dev/sg", NULL)) {
            bs->sg = 1;
        }
B
bellard 已提交
1531 1532
    }
#endif
1533

1534
    ret = raw_open_common(bs, options, flags, 0, &local_err);
1535
    if (ret < 0) {
1536 1537 1538
        if (error_is_set(&local_err)) {
            error_propagate(errp, local_err);
        }
1539 1540 1541 1542 1543 1544 1545
        return ret;
    }

    if (flags & BDRV_O_RDWR) {
        ret = check_hdev_writable(s);
        if (ret < 0) {
            raw_close(bs);
1546
            error_setg_errno(errp, -ret, "The device is not writable");
1547 1548 1549 1550 1551
            return ret;
        }
    }

    return ret;
B
bellard 已提交
1552 1553
}

1554
#if defined(__linux__)
B
bellard 已提交
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565
/* Note: we do not have a reliable method to detect if the floppy is
   present. The current method is to try to open the floppy at every
   I/O and to keep it opened during a few hundreds of ms. */
static int fd_open(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    int last_media_present;

    if (s->type != FTYPE_FD)
        return 0;
    last_media_present = (s->fd >= 0);
1566
    if (s->fd >= 0 &&
1567
        (get_clock() - s->fd_open_time) >= FD_OPEN_TIMEOUT) {
1568
        qemu_close(s->fd);
B
bellard 已提交
1569 1570 1571 1572 1573 1574
        s->fd = -1;
#ifdef DEBUG_FLOPPY
        printf("Floppy closed\n");
#endif
    }
    if (s->fd < 0) {
1575
        if (s->fd_got_error &&
1576
            (get_clock() - s->fd_error_time) < FD_OPEN_TIMEOUT) {
B
bellard 已提交
1577 1578 1579 1580 1581
#ifdef DEBUG_FLOPPY
            printf("No floppy (open delayed)\n");
#endif
            return -EIO;
        }
1582
        s->fd = qemu_open(bs->filename, s->open_flags & ~O_NONBLOCK);
B
bellard 已提交
1583
        if (s->fd < 0) {
1584
            s->fd_error_time = get_clock();
B
bellard 已提交
1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
            s->fd_got_error = 1;
            if (last_media_present)
                s->fd_media_changed = 1;
#ifdef DEBUG_FLOPPY
            printf("No floppy\n");
#endif
            return -EIO;
        }
#ifdef DEBUG_FLOPPY
        printf("Floppy opened\n");
#endif
    }
    if (!last_media_present)
        s->fd_media_changed = 1;
1599
    s->fd_open_time = get_clock();
B
bellard 已提交
1600 1601 1602 1603
    s->fd_got_error = 0;
    return 0;
}

1604
static int hdev_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1605 1606 1607 1608 1609
{
    BDRVRawState *s = bs->opaque;

    return ioctl(s->fd, req, buf);
}
1610

1611
static BlockDriverAIOCB *hdev_aio_ioctl(BlockDriverState *bs,
1612 1613 1614
        unsigned long int req, void *buf,
        BlockDriverCompletionFunc *cb, void *opaque)
{
1615
    BDRVRawState *s = bs->opaque;
1616
    RawPosixAIOData *acb;
1617
    ThreadPool *pool;
1618

1619 1620
    if (fd_open(bs) < 0)
        return NULL;
1621 1622 1623 1624 1625 1626 1627 1628

    acb = g_slice_new(RawPosixAIOData);
    acb->bs = bs;
    acb->aio_type = QEMU_AIO_IOCTL;
    acb->aio_fildes = s->fd;
    acb->aio_offset = 0;
    acb->aio_ioctl_buf = buf;
    acb->aio_ioctl_cmd = req;
1629 1630
    pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
    return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
1631 1632
}

A
Aurelien Jarno 已提交
1633
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
static int fd_open(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;

    /* this is just to ensure s->fd is sane (its called by io ops) */
    if (s->fd >= 0)
        return 0;
    return -EIO;
}
#else /* !linux && !FreeBSD */
B
bellard 已提交
1644

1645 1646 1647 1648 1649
static int fd_open(BlockDriverState *bs)
{
    return 0;
}

1650
#endif /* !linux && !FreeBSD */
1651

1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664
static coroutine_fn BlockDriverAIOCB *hdev_aio_discard(BlockDriverState *bs,
    int64_t sector_num, int nb_sectors,
    BlockDriverCompletionFunc *cb, void *opaque)
{
    BDRVRawState *s = bs->opaque;

    if (fd_open(bs) < 0) {
        return NULL;
    }
    return paio_submit(bs, s->fd, sector_num, NULL, nb_sectors,
                       cb, opaque, QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
}

1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
static coroutine_fn int hdev_co_write_zeroes(BlockDriverState *bs,
    int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
{
    BDRVRawState *s = bs->opaque;
    int rc;

    rc = fd_open(bs);
    if (rc < 0) {
        return rc;
    }
    if (!(flags & BDRV_REQ_MAY_UNMAP)) {
1676 1677 1678 1679 1680
        return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
                              QEMU_AIO_WRITE_ZEROES|QEMU_AIO_BLKDEV);
    } else if (s->discard_zeroes) {
        return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
                              QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
1681
    }
1682
    return -ENOTSUP;
1683 1684
}

1685 1686
static int hdev_create(const char *filename, QEMUOptionParameter *options,
                       Error **errp)
1687 1688 1689 1690
{
    int fd;
    int ret = 0;
    struct stat stat_buf;
1691
    int64_t total_size = 0;
1692

1693 1694 1695
    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, "size")) {
1696
            total_size = options->value.n / BDRV_SECTOR_SIZE;
1697 1698 1699
        }
        options++;
    }
1700

1701
    fd = qemu_open(filename, O_WRONLY | O_BINARY);
1702 1703 1704 1705 1706
    if (fd < 0) {
        ret = -errno;
        error_setg_errno(errp, -ret, "Could not open device");
        return ret;
    }
1707

1708
    if (fstat(fd, &stat_buf) < 0) {
1709
        ret = -errno;
1710 1711 1712 1713
        error_setg_errno(errp, -ret, "Could not stat device");
    } else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode)) {
        error_setg(errp,
                   "The given file is neither a block nor a character device");
1714
        ret = -ENODEV;
1715 1716
    } else if (lseek(fd, 0, SEEK_END) < total_size * BDRV_SECTOR_SIZE) {
        error_setg(errp, "Device is too small");
1717
        ret = -ENOSPC;
1718
    }
1719

1720
    qemu_close(fd);
1721 1722 1723
    return ret;
}

1724
static BlockDriver bdrv_host_device = {
1725
    .format_name        = "host_device",
1726
    .protocol_name        = "host_device",
1727
    .instance_size      = sizeof(BDRVRawState),
1728
    .bdrv_needs_filename = true,
1729
    .bdrv_probe_device  = hdev_probe_device,
1730
    .bdrv_file_open     = hdev_open,
1731
    .bdrv_close         = raw_close,
1732 1733 1734
    .bdrv_reopen_prepare = raw_reopen_prepare,
    .bdrv_reopen_commit  = raw_reopen_commit,
    .bdrv_reopen_abort   = raw_reopen_abort,
1735
    .bdrv_create        = hdev_create,
1736
    .create_options     = raw_create_options,
1737
    .bdrv_co_write_zeroes = hdev_co_write_zeroes,
1738

1739 1740
    .bdrv_aio_readv	= raw_aio_readv,
    .bdrv_aio_writev	= raw_aio_writev,
1741
    .bdrv_aio_flush	= raw_aio_flush,
P
Paolo Bonzini 已提交
1742
    .bdrv_aio_discard   = hdev_aio_discard,
1743

1744
    .bdrv_truncate      = raw_truncate,
1745
    .bdrv_getlength	= raw_getlength,
1746
    .bdrv_get_info = raw_get_info,
1747 1748
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
B
bellard 已提交
1749

1750
    /* generic scsi device */
1751 1752 1753 1754
#ifdef __linux__
    .bdrv_ioctl         = hdev_ioctl,
    .bdrv_aio_ioctl     = hdev_aio_ioctl,
#endif
1755 1756 1757
};

#ifdef __linux__
M
Max Reitz 已提交
1758 1759
static int floppy_open(BlockDriverState *bs, QDict *options, int flags,
                       Error **errp)
1760 1761
{
    BDRVRawState *s = bs->opaque;
1762
    Error *local_err = NULL;
1763 1764 1765 1766
    int ret;

    s->type = FTYPE_FD;

B
Blue Swirl 已提交
1767
    /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
1768 1769 1770 1771 1772
    ret = raw_open_common(bs, options, flags, O_NONBLOCK, &local_err);
    if (ret) {
        if (error_is_set(&local_err)) {
            error_propagate(errp, local_err);
        }
1773
        return ret;
1774
    }
1775 1776

    /* close fd so that we can reopen it as needed */
1777
    qemu_close(s->fd);
1778 1779 1780 1781 1782 1783
    s->fd = -1;
    s->fd_media_changed = 1;

    return 0;
}

1784 1785
static int floppy_probe_device(const char *filename)
{
1786 1787 1788
    int fd, ret;
    int prio = 0;
    struct floppy_struct fdparam;
1789
    struct stat st;
1790

1791 1792
    if (strstart(filename, "/dev/fd", NULL) &&
        !strstart(filename, "/dev/fdset/", NULL)) {
1793
        prio = 50;
1794
    }
1795

1796
    fd = qemu_open(filename, O_RDONLY | O_NONBLOCK);
1797 1798 1799
    if (fd < 0) {
        goto out;
    }
1800 1801 1802 1803
    ret = fstat(fd, &st);
    if (ret == -1 || !S_ISBLK(st.st_mode)) {
        goto outc;
    }
1804 1805 1806 1807 1808 1809

    /* Attempt to detect via a floppy specific ioctl */
    ret = ioctl(fd, FDGETPRM, &fdparam);
    if (ret >= 0)
        prio = 100;

1810
outc:
1811
    qemu_close(fd);
1812 1813
out:
    return prio;
1814 1815 1816
}


1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
static int floppy_is_inserted(BlockDriverState *bs)
{
    return fd_open(bs) >= 0;
}

static int floppy_media_changed(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    int ret;

    /*
     * XXX: we do not have a true media changed indication.
     * It does not work if the floppy is changed without trying to read it.
     */
    fd_open(bs);
    ret = s->fd_media_changed;
    s->fd_media_changed = 0;
#ifdef DEBUG_FLOPPY
    printf("Floppy changed=%d\n", ret);
#endif
    return ret;
}

1840
static void floppy_eject(BlockDriverState *bs, bool eject_flag)
1841 1842 1843 1844 1845
{
    BDRVRawState *s = bs->opaque;
    int fd;

    if (s->fd >= 0) {
1846
        qemu_close(s->fd);
1847 1848
        s->fd = -1;
    }
1849
    fd = qemu_open(bs->filename, s->open_flags | O_NONBLOCK);
1850 1851 1852
    if (fd >= 0) {
        if (ioctl(fd, FDEJECT, 0) < 0)
            perror("FDEJECT");
1853
        qemu_close(fd);
1854 1855 1856 1857 1858
    }
}

static BlockDriver bdrv_host_floppy = {
    .format_name        = "host_floppy",
1859
    .protocol_name      = "host_floppy",
1860
    .instance_size      = sizeof(BDRVRawState),
1861
    .bdrv_needs_filename = true,
1862
    .bdrv_probe_device	= floppy_probe_device,
1863
    .bdrv_file_open     = floppy_open,
1864
    .bdrv_close         = raw_close,
1865 1866 1867
    .bdrv_reopen_prepare = raw_reopen_prepare,
    .bdrv_reopen_commit  = raw_reopen_commit,
    .bdrv_reopen_abort   = raw_reopen_abort,
1868
    .bdrv_create        = hdev_create,
1869
    .create_options     = raw_create_options,
1870 1871 1872

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
1873
    .bdrv_aio_flush	= raw_aio_flush,
1874

1875
    .bdrv_truncate      = raw_truncate,
1876 1877
    .bdrv_getlength      = raw_getlength,
    .has_variable_length = true,
1878 1879
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
1880 1881 1882 1883 1884 1885 1886

    /* removable device support */
    .bdrv_is_inserted   = floppy_is_inserted,
    .bdrv_media_changed = floppy_media_changed,
    .bdrv_eject         = floppy_eject,
};

M
Max Reitz 已提交
1887 1888
static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
                      Error **errp)
1889 1890
{
    BDRVRawState *s = bs->opaque;
1891 1892
    Error *local_err = NULL;
    int ret;
1893 1894 1895

    s->type = FTYPE_CD;

B
Blue Swirl 已提交
1896
    /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
1897 1898 1899 1900 1901
    ret = raw_open_common(bs, options, flags, O_NONBLOCK, &local_err);
    if (error_is_set(&local_err)) {
        error_propagate(errp, local_err);
    }
    return ret;
1902 1903
}

1904 1905
static int cdrom_probe_device(const char *filename)
{
1906 1907
    int fd, ret;
    int prio = 0;
1908
    struct stat st;
1909

1910
    fd = qemu_open(filename, O_RDONLY | O_NONBLOCK);
1911 1912 1913
    if (fd < 0) {
        goto out;
    }
1914 1915 1916 1917
    ret = fstat(fd, &st);
    if (ret == -1 || !S_ISBLK(st.st_mode)) {
        goto outc;
    }
1918 1919 1920 1921 1922 1923

    /* Attempt to detect via a CDROM specific ioctl */
    ret = ioctl(fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
    if (ret >= 0)
        prio = 100;

1924
outc:
1925
    qemu_close(fd);
1926 1927
out:
    return prio;
1928 1929
}

1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940
static int cdrom_is_inserted(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    int ret;

    ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
    if (ret == CDS_DISC_OK)
        return 1;
    return 0;
}

1941
static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
{
    BDRVRawState *s = bs->opaque;

    if (eject_flag) {
        if (ioctl(s->fd, CDROMEJECT, NULL) < 0)
            perror("CDROMEJECT");
    } else {
        if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0)
            perror("CDROMEJECT");
    }
}

1954
static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
{
    BDRVRawState *s = bs->opaque;

    if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
        /*
         * Note: an error can happen if the distribution automatically
         * mounts the CD-ROM
         */
        /* perror("CDROM_LOCKDOOR"); */
    }
}

static BlockDriver bdrv_host_cdrom = {
    .format_name        = "host_cdrom",
1969
    .protocol_name      = "host_cdrom",
1970
    .instance_size      = sizeof(BDRVRawState),
1971
    .bdrv_needs_filename = true,
1972
    .bdrv_probe_device	= cdrom_probe_device,
1973
    .bdrv_file_open     = cdrom_open,
1974
    .bdrv_close         = raw_close,
1975 1976 1977
    .bdrv_reopen_prepare = raw_reopen_prepare,
    .bdrv_reopen_commit  = raw_reopen_commit,
    .bdrv_reopen_abort   = raw_reopen_abort,
1978
    .bdrv_create        = hdev_create,
1979
    .create_options     = raw_create_options,
1980 1981 1982

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
1983
    .bdrv_aio_flush	= raw_aio_flush,
1984

1985
    .bdrv_truncate      = raw_truncate,
1986 1987
    .bdrv_getlength      = raw_getlength,
    .has_variable_length = true,
1988 1989
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
1990 1991 1992 1993

    /* removable device support */
    .bdrv_is_inserted   = cdrom_is_inserted,
    .bdrv_eject         = cdrom_eject,
1994
    .bdrv_lock_medium   = cdrom_lock_medium,
1995 1996

    /* generic scsi device */
1997 1998
    .bdrv_ioctl         = hdev_ioctl,
    .bdrv_aio_ioctl     = hdev_aio_ioctl,
1999 2000 2001
};
#endif /* __linux__ */

A
Aurelien Jarno 已提交
2002
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
2003 2004
static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
                      Error **errp)
2005 2006
{
    BDRVRawState *s = bs->opaque;
2007
    Error *local_err = NULL;
2008 2009 2010 2011
    int ret;

    s->type = FTYPE_CD;

2012 2013 2014 2015 2016
    ret = raw_open_common(bs, options, flags, 0, &local_err);
    if (ret) {
        if (error_is_set(&local_err)) {
            error_propagate(errp, local_err);
        }
2017
        return ret;
2018
    }
2019

D
Dong Xu Wang 已提交
2020
    /* make sure the door isn't locked at this time */
2021 2022 2023 2024
    ioctl(s->fd, CDIOCALLOW);
    return 0;
}

2025 2026 2027 2028 2029 2030 2031 2032
static int cdrom_probe_device(const char *filename)
{
    if (strstart(filename, "/dev/cd", NULL) ||
            strstart(filename, "/dev/acd", NULL))
        return 100;
    return 0;
}

2033 2034 2035 2036 2037 2038 2039 2040 2041 2042
static int cdrom_reopen(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    int fd;

    /*
     * Force reread of possibly changed/newly loaded disc,
     * FreeBSD seems to not notice sometimes...
     */
    if (s->fd >= 0)
2043
        qemu_close(s->fd);
2044
    fd = qemu_open(bs->filename, s->open_flags, 0644);
2045 2046 2047 2048 2049 2050
    if (fd < 0) {
        s->fd = -1;
        return -EIO;
    }
    s->fd = fd;

D
Dong Xu Wang 已提交
2051
    /* make sure the door isn't locked at this time */
2052 2053 2054 2055 2056 2057 2058 2059 2060
    ioctl(s->fd, CDIOCALLOW);
    return 0;
}

static int cdrom_is_inserted(BlockDriverState *bs)
{
    return raw_getlength(bs) > 0;
}

2061
static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
2062 2063 2064 2065
{
    BDRVRawState *s = bs->opaque;

    if (s->fd < 0)
2066
        return;
2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077

    (void) ioctl(s->fd, CDIOCALLOW);

    if (eject_flag) {
        if (ioctl(s->fd, CDIOCEJECT) < 0)
            perror("CDIOCEJECT");
    } else {
        if (ioctl(s->fd, CDIOCCLOSE) < 0)
            perror("CDIOCCLOSE");
    }

2078
    cdrom_reopen(bs);
2079 2080
}

2081
static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
2082 2083 2084 2085
{
    BDRVRawState *s = bs->opaque;

    if (s->fd < 0)
2086
        return;
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097
    if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
        /*
         * Note: an error can happen if the distribution automatically
         * mounts the CD-ROM
         */
        /* perror("CDROM_LOCKDOOR"); */
    }
}

static BlockDriver bdrv_host_cdrom = {
    .format_name        = "host_cdrom",
2098
    .protocol_name      = "host_cdrom",
2099
    .instance_size      = sizeof(BDRVRawState),
2100
    .bdrv_needs_filename = true,
2101
    .bdrv_probe_device	= cdrom_probe_device,
2102
    .bdrv_file_open     = cdrom_open,
2103
    .bdrv_close         = raw_close,
2104 2105 2106
    .bdrv_reopen_prepare = raw_reopen_prepare,
    .bdrv_reopen_commit  = raw_reopen_commit,
    .bdrv_reopen_abort   = raw_reopen_abort,
2107
    .bdrv_create        = hdev_create,
2108
    .create_options     = raw_create_options,
2109 2110 2111

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
2112
    .bdrv_aio_flush	= raw_aio_flush,
2113

2114
    .bdrv_truncate      = raw_truncate,
2115 2116
    .bdrv_getlength      = raw_getlength,
    .has_variable_length = true,
2117 2118
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
2119

B
bellard 已提交
2120
    /* removable device support */
2121 2122
    .bdrv_is_inserted   = cdrom_is_inserted,
    .bdrv_eject         = cdrom_eject,
2123
    .bdrv_lock_medium   = cdrom_lock_medium,
B
bellard 已提交
2124
};
2125
#endif /* __FreeBSD__ */
2126

2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160
#ifdef CONFIG_LINUX_AIO
/**
 * Return the file descriptor for Linux AIO
 *
 * This function is a layering violation and should be removed when it becomes
 * possible to call the block layer outside the global mutex.  It allows the
 * caller to hijack the file descriptor so I/O can be performed outside the
 * block layer.
 */
int raw_get_aio_fd(BlockDriverState *bs)
{
    BDRVRawState *s;

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

    if (bs->drv == bdrv_find_format("raw")) {
        bs = bs->file;
    }

    /* raw-posix has several protocols so just check for raw_aio_readv */
    if (bs->drv->bdrv_aio_readv != raw_aio_readv) {
        return -ENOTSUP;
    }

    s = bs->opaque;
    if (!s->use_aio) {
        return -ENOTSUP;
    }
    return s->fd;
}
#endif /* CONFIG_LINUX_AIO */

2161
static void bdrv_file_init(void)
2162
{
2163 2164 2165 2166
    /*
     * Register all the drivers.  Note that order is important, the driver
     * registered last will get probed first.
     */
2167
    bdrv_register(&bdrv_file);
2168
    bdrv_register(&bdrv_host_device);
2169 2170 2171 2172
#ifdef __linux__
    bdrv_register(&bdrv_host_floppy);
    bdrv_register(&bdrv_host_cdrom);
#endif
A
Aurelien Jarno 已提交
2173
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2174 2175
    bdrv_register(&bdrv_host_cdrom);
#endif
2176 2177
}

2178
block_init(bdrv_file_init);