raw-posix.c 39.7 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"
P
pbrook 已提交
25
#include "qemu-timer.h"
26
#include "qemu-char.h"
27
#include "qemu-log.h"
B
bellard 已提交
28
#include "block_int.h"
29
#include "module.h"
30
#include "block/raw-posix-aio.h"
B
bellard 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44

#ifdef CONFIG_COCOA
#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__
45
#define _POSIX_PTHREAD_SEMANTICS 1
B
bellard 已提交
46 47
#include <sys/dkio.h>
#endif
B
bellard 已提交
48
#ifdef __linux__
49 50
#include <sys/types.h>
#include <sys/stat.h>
B
bellard 已提交
51
#include <sys/ioctl.h>
52
#include <sys/param.h>
B
bellard 已提交
53 54 55
#include <linux/cdrom.h>
#include <linux/fd.h>
#endif
A
Aurelien Jarno 已提交
56
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
57
#include <sys/disk.h>
B
blueswir1 已提交
58
#include <sys/cdio.h>
59
#endif
B
bellard 已提交
60

61 62 63 64 65 66
#ifdef __OpenBSD__
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <sys/dkio.h>
#endif

67 68 69 70 71 72 73
#ifdef __NetBSD__
#include <sys/ioctl.h>
#include <sys/disklabel.h>
#include <sys/dkio.h>
#include <sys/disk.h>
#endif

74 75 76 77 78
#ifdef __DragonFly__
#include <sys/ioctl.h>
#include <sys/diskslice.h>
#endif

C
Christoph Hellwig 已提交
79 80 81 82
#ifdef CONFIG_XFS
#include <xfs/xfs.h>
#endif

B
bellard 已提交
83
//#define DEBUG_FLOPPY
B
bellard 已提交
84

P
pbrook 已提交
85
//#define DEBUG_BLOCK
86
#if defined(DEBUG_BLOCK)
87 88
#define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
    { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
T
ths 已提交
89
#else
90
#define DEBUG_BLOCK_PRINT(formatCstr, ...)
T
ths 已提交
91 92
#endif

A
aliguori 已提交
93 94
/* OS X does not have O_DSYNC */
#ifndef O_DSYNC
95
#ifdef O_SYNC
96
#define O_DSYNC O_SYNC
97 98 99
#elif defined(O_FSYNC)
#define O_DSYNC O_FSYNC
#endif
A
aliguori 已提交
100 101
#endif

102 103 104 105 106
/* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
#ifndef O_DIRECT
#define O_DIRECT O_DSYNC
#endif

B
bellard 已提交
107 108 109
#define FTYPE_FILE   0
#define FTYPE_CD     1
#define FTYPE_FD     2
B
bellard 已提交
110

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

115 116
#define MAX_BLOCKSIZE	4096

B
bellard 已提交
117 118 119
typedef struct BDRVRawState {
    int fd;
    int type;
120
    int open_flags;
B
bellard 已提交
121 122 123 124 125 126
#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 已提交
127
#endif
128
#ifdef CONFIG_LINUX_AIO
129
    int use_aio;
K
Kevin Wolf 已提交
130
    void *aio_ctx;
131
#endif
132 133
    uint8_t *aligned_buf;
    unsigned aligned_buf_size;
C
Christoph Hellwig 已提交
134 135 136
#ifdef CONFIG_XFS
    bool is_xfs : 1;
#endif
B
bellard 已提交
137 138 139
} BDRVRawState;

static int fd_open(BlockDriverState *bs);
140
static int64_t raw_getlength(BlockDriverState *bs);
B
bellard 已提交
141

A
Aurelien Jarno 已提交
142
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
143
static int cdrom_reopen(BlockDriverState *bs);
B
blueswir1 已提交
144 145
#endif

146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
#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

184
static int raw_open_common(BlockDriverState *bs, const char *filename,
B
Blue Swirl 已提交
185
                           int bdrv_flags, int open_flags)
B
bellard 已提交
186 187
{
    BDRVRawState *s = bs->opaque;
188
    int fd, ret;
B
bellard 已提交
189

190 191 192 193 194
    ret = raw_normalize_devicepath(&filename);
    if (ret != 0) {
        return ret;
    }

B
Blue Swirl 已提交
195
    s->open_flags = open_flags | O_BINARY;
196
    s->open_flags &= ~O_ACCMODE;
197
    if (bdrv_flags & BDRV_O_RDWR) {
198
        s->open_flags |= O_RDWR;
B
bellard 已提交
199
    } else {
200
        s->open_flags |= O_RDONLY;
B
bellard 已提交
201
    }
202 203 204

    /* Use O_DSYNC for write-through caching, no flags for write-back caching,
     * and O_DIRECT for no caching. */
B
Blue Swirl 已提交
205
    if ((bdrv_flags & BDRV_O_NOCACHE))
206
        s->open_flags |= O_DIRECT;
207
    if (!(bdrv_flags & BDRV_O_CACHE_WB))
208
        s->open_flags |= O_DSYNC;
B
bellard 已提交
209

210
    s->fd = -1;
K
Kevin Wolf 已提交
211
    fd = qemu_open(filename, s->open_flags, 0644);
B
bellard 已提交
212 213 214 215 216 217
    if (fd < 0) {
        ret = -errno;
        if (ret == -EROFS)
            ret = -EACCES;
        return ret;
    }
B
bellard 已提交
218
    s->fd = fd;
219
    s->aligned_buf = NULL;
220

B
Blue Swirl 已提交
221
    if ((bdrv_flags & BDRV_O_NOCACHE)) {
222 223 224 225 226 227
        /*
         * Allocate a buffer for read/modify/write cycles.  Chose the size
         * pessimistically as we don't know the block size yet.
         */
        s->aligned_buf_size = 32 * MAX_BLOCKSIZE;
        s->aligned_buf = qemu_memalign(MAX_BLOCKSIZE, s->aligned_buf_size);
228
        if (s->aligned_buf == NULL) {
229
            goto out_close;
230 231
        }
    }
232

233 234 235
#ifdef CONFIG_LINUX_AIO
    if ((bdrv_flags & (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) ==
                      (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) {
236 237 238 239

        /* We're falling back to POSIX AIO in some cases */
        paio_init();

240 241 242 243 244 245 246 247
        s->aio_ctx = laio_init();
        if (!s->aio_ctx) {
            goto out_free_buf;
        }
        s->use_aio = 1;
    } else
#endif
    {
K
Kevin Wolf 已提交
248
        if (paio_init() < 0) {
249 250
            goto out_free_buf;
        }
251
#ifdef CONFIG_LINUX_AIO
252
        s->use_aio = 0;
253
#endif
254 255
    }

C
Christoph Hellwig 已提交
256 257 258 259 260 261
#ifdef CONFIG_XFS
    if (platform_test_xfs_fd(s->fd)) {
        s->is_xfs = 1;
    }
#endif

B
bellard 已提交
262
    return 0;
263 264 265 266 267 268

out_free_buf:
    qemu_vfree(s->aligned_buf);
out_close:
    close(fd);
    return -errno;
B
bellard 已提交
269 270
}

271 272 273 274 275
static int raw_open(BlockDriverState *bs, const char *filename, int flags)
{
    BDRVRawState *s = bs->opaque;

    s->type = FTYPE_FILE;
C
Christoph Hellwig 已提交
276
    return raw_open_common(bs, filename, flags, 0);
277 278
}

B
bellard 已提交
279 280 281 282 283 284 285 286 287 288
/* 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
289
        uint32_t blockSize = 512;
B
bellard 已提交
290 291 292 293 294 295
        if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
            bufsize = blockSize;
        }
#endif
*/

296 297 298 299 300 301 302 303
/*
 * offset and count are in bytes, but must be multiples of 512 for files
 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
 *
 * This function may be called without alignment if the caller ensures
 * that O_DIRECT is not in effect.
 */
static int raw_pread_aligned(BlockDriverState *bs, int64_t offset,
B
bellard 已提交
304 305 306 307
                     uint8_t *buf, int count)
{
    BDRVRawState *s = bs->opaque;
    int ret;
308

B
bellard 已提交
309 310 311 312
    ret = fd_open(bs);
    if (ret < 0)
        return ret;

313
    ret = pread(s->fd, buf, count, offset);
T
ths 已提交
314
    if (ret == count)
315
        return ret;
T
ths 已提交
316

317 318 319 320 321
    /* Allow reads beyond the end (needed for pwrite) */
    if ((ret == 0) && bs->growable) {
        int64_t size = raw_getlength(bs);
        if (offset >= size) {
            memset(buf, 0, count);
322
            return count;
323 324 325
        }
    }

326 327
    DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
                      "] read failed %d : %d = %s\n",
T
ths 已提交
328 329 330 331
                      s->fd, bs->filename, offset, buf, count,
                      bs->total_sectors, ret, errno, strerror(errno));

    /* Try harder for CDrom. */
332
    if (s->type != FTYPE_FILE) {
333
        ret = pread(s->fd, buf, count, offset);
T
ths 已提交
334
        if (ret == count)
335
            return ret;
336
        ret = pread(s->fd, buf, count, offset);
T
ths 已提交
337
        if (ret == count)
338
            return ret;
T
ths 已提交
339

340 341
        DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
                          "] retry read failed %d : %d = %s\n",
T
ths 已提交
342 343 344 345
                          s->fd, bs->filename, offset, buf, count,
                          bs->total_sectors, ret, errno, strerror(errno));
    }

346
    return  (ret < 0) ? -errno : ret;
B
bellard 已提交
347 348
}

349
/*
350 351 352
 * offset and count are in bytes, but must be multiples of the sector size
 * for files opened with O_DIRECT. buf must be aligned to sector size bytes
 * then.
353 354 355 356 357
 *
 * This function may be called without alignment if the caller ensures
 * that O_DIRECT is not in effect.
 */
static int raw_pwrite_aligned(BlockDriverState *bs, int64_t offset,
B
bellard 已提交
358 359 360 361
                      const uint8_t *buf, int count)
{
    BDRVRawState *s = bs->opaque;
    int ret;
362

B
bellard 已提交
363 364
    ret = fd_open(bs);
    if (ret < 0)
365
        return -errno;
B
bellard 已提交
366

367
    ret = pwrite(s->fd, buf, count, offset);
T
ths 已提交
368
    if (ret == count)
369
        return ret;
T
ths 已提交
370

371 372
    DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
                      "] write failed %d : %d = %s\n",
T
ths 已提交
373 374 375
                      s->fd, bs->filename, offset, buf, count,
                      bs->total_sectors, ret, errno, strerror(errno));

376
    return  (ret < 0) ? -errno : ret;
B
bellard 已提交
377 378
}

379 380 381 382 383 384 385 386 387 388

/*
 * offset and count are in bytes and possibly not aligned. For files opened
 * with O_DIRECT, necessary alignments are ensured before calling
 * raw_pread_aligned to do the actual read.
 */
static int raw_pread(BlockDriverState *bs, int64_t offset,
                     uint8_t *buf, int count)
{
    BDRVRawState *s = bs->opaque;
389
    unsigned sector_mask = bs->buffer_alignment - 1;
390 391 392 393 394 395
    int size, ret, shift, sum;

    sum = 0;

    if (s->aligned_buf != NULL)  {

396 397
        if (offset & sector_mask) {
            /* align offset on a sector size bytes boundary */
398

399 400 401 402
            shift = offset & sector_mask;
            size = (shift + count + sector_mask) & ~sector_mask;
            if (size > s->aligned_buf_size)
                size = s->aligned_buf_size;
403 404 405 406
            ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, size);
            if (ret < 0)
                return ret;

407
            size = bs->buffer_alignment - shift;
408 409 410 411 412 413 414 415 416 417 418 419
            if (size > count)
                size = count;
            memcpy(buf, s->aligned_buf + shift, size);

            buf += size;
            offset += size;
            count -= size;
            sum += size;

            if (count == 0)
                return sum;
        }
420
        if (count & sector_mask || (uintptr_t) buf & sector_mask) {
421 422 423 424 425

            /* read on aligned buffer */

            while (count) {

426 427 428
                size = (count + sector_mask) & ~sector_mask;
                if (size > s->aligned_buf_size)
                    size = s->aligned_buf_size;
429 430

                ret = raw_pread_aligned(bs, offset, s->aligned_buf, size);
431
                if (ret < 0) {
432
                    return ret;
433 434 435 436
                } else if (ret == 0) {
                    fprintf(stderr, "raw_pread: read beyond end of file\n");
                    abort();
                }
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

                size = ret;
                if (size > count)
                    size = count;

                memcpy(buf, s->aligned_buf, size);

                buf += size;
                offset += size;
                count -= size;
                sum += size;
            }

            return sum;
        }
    }

    return raw_pread_aligned(bs, offset, buf, count) + sum;
}

457 458 459
static int raw_read(BlockDriverState *bs, int64_t sector_num,
                    uint8_t *buf, int nb_sectors)
{
A
aliguori 已提交
460 461
    int ret;

462 463 464
    ret = raw_pread(bs, sector_num * BDRV_SECTOR_SIZE, buf,
                    nb_sectors * BDRV_SECTOR_SIZE);
    if (ret == (nb_sectors * BDRV_SECTOR_SIZE))
A
aliguori 已提交
465 466
        ret = 0;
    return ret;
467 468
}

469 470 471 472 473 474 475 476 477
/*
 * offset and count are in bytes and possibly not aligned. For files opened
 * with O_DIRECT, necessary alignments are ensured before calling
 * raw_pwrite_aligned to do the actual write.
 */
static int raw_pwrite(BlockDriverState *bs, int64_t offset,
                      const uint8_t *buf, int count)
{
    BDRVRawState *s = bs->opaque;
478
    unsigned sector_mask = bs->buffer_alignment - 1;
479 480 481 482 483 484
    int size, ret, shift, sum;

    sum = 0;

    if (s->aligned_buf != NULL) {

485 486 487 488 489
        if (offset & sector_mask) {
            /* align offset on a sector size bytes boundary */
            shift = offset & sector_mask;
            ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf,
                                    bs->buffer_alignment);
490 491 492
            if (ret < 0)
                return ret;

493
            size = bs->buffer_alignment - shift;
494 495 496 497
            if (size > count)
                size = count;
            memcpy(s->aligned_buf + shift, buf, size);

498 499
            ret = raw_pwrite_aligned(bs, offset - shift, s->aligned_buf,
                                     bs->buffer_alignment);
500 501 502 503 504 505 506 507 508 509 510
            if (ret < 0)
                return ret;

            buf += size;
            offset += size;
            count -= size;
            sum += size;

            if (count == 0)
                return sum;
        }
511
        if (count & sector_mask || (uintptr_t) buf & sector_mask) {
512

513
            while ((size = (count & ~sector_mask)) != 0) {
514

515 516
                if (size > s->aligned_buf_size)
                    size = s->aligned_buf_size;
517 518 519 520 521 522 523 524 525 526 527 528

                memcpy(s->aligned_buf, buf, size);

                ret = raw_pwrite_aligned(bs, offset, s->aligned_buf, size);
                if (ret < 0)
                    return ret;

                buf += ret;
                offset += ret;
                count -= ret;
                sum += ret;
            }
529
            /* here, count < sector_size because (count & ~sector_mask) == 0 */
530
            if (count) {
531 532
                ret = raw_pread_aligned(bs, offset, s->aligned_buf,
                                     bs->buffer_alignment);
533 534 535 536
                if (ret < 0)
                    return ret;
                 memcpy(s->aligned_buf, buf, count);

537 538
                 ret = raw_pwrite_aligned(bs, offset, s->aligned_buf,
                                     bs->buffer_alignment);
539 540 541 542 543 544 545 546 547 548 549 550 551
                 if (ret < 0)
                     return ret;
                 if (count < ret)
                     ret = count;

                 sum += ret;
            }
            return sum;
        }
    }
    return raw_pwrite_aligned(bs, offset, buf, count) + sum;
}

552 553 554
static int raw_write(BlockDriverState *bs, int64_t sector_num,
                     const uint8_t *buf, int nb_sectors)
{
A
aliguori 已提交
555
    int ret;
556 557 558
    ret = raw_pwrite(bs, sector_num * BDRV_SECTOR_SIZE, buf,
                     nb_sectors * BDRV_SECTOR_SIZE);
    if (ret == (nb_sectors * BDRV_SECTOR_SIZE))
A
aliguori 已提交
559 560
        ret = 0;
    return ret;
561 562
}

563 564 565
/*
 * Check if all memory in this vector is sector aligned.
 */
566
static int qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
567
{
568
    int i;
B
bellard 已提交
569

570
    for (i = 0; i < qiov->niov; i++) {
571
        if ((uintptr_t) qiov->iov[i].iov_base % bs->buffer_alignment) {
572
            return 0;
573 574 575
        }
    }

576
    return 1;
577 578
}

579 580 581
static BlockDriverAIOCB *raw_aio_submit(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
        BlockDriverCompletionFunc *cb, void *opaque, int type)
B
bellard 已提交
582
{
583 584
    BDRVRawState *s = bs->opaque;

B
bellard 已提交
585 586 587
    if (fd_open(bs) < 0)
        return NULL;

588 589
    /*
     * If O_DIRECT is used the buffer needs to be aligned on a sector
590 591
     * boundary.  Check if this is the case or telll the low-level
     * driver that it needs to copy the buffer.
592
     */
593
    if (s->aligned_buf) {
594
        if (!qiov_is_aligned(bs, qiov)) {
595
            type |= QEMU_AIO_MISALIGNED;
596
#ifdef CONFIG_LINUX_AIO
597 598
        } else if (s->use_aio) {
            return laio_submit(bs, s->aio_ctx, s->fd, sector_num, qiov,
599 600
                               nb_sectors, cb, opaque, type);
#endif
601
        }
602
    }
603

K
Kevin Wolf 已提交
604
    return paio_submit(bs, s->fd, sector_num, qiov, nb_sectors,
605
                       cb, opaque, type);
B
bellard 已提交
606 607
}

608 609
static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
610
        BlockDriverCompletionFunc *cb, void *opaque)
B
bellard 已提交
611
{
612 613
    return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
                          cb, opaque, QEMU_AIO_READ);
B
bellard 已提交
614 615
}

616 617
static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
618
        BlockDriverCompletionFunc *cb, void *opaque)
B
bellard 已提交
619
{
620 621
    return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
                          cb, opaque, QEMU_AIO_WRITE);
B
bellard 已提交
622
}
623

624 625 626 627 628 629 630 631
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 已提交
632
    return paio_submit(bs, s->fd, 0, NULL, 0, cb, opaque, QEMU_AIO_FLUSH);
633 634
}

B
bellard 已提交
635 636 637
static void raw_close(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
B
bellard 已提交
638 639 640
    if (s->fd >= 0) {
        close(s->fd);
        s->fd = -1;
641
        if (s->aligned_buf != NULL)
642
            qemu_vfree(s->aligned_buf);
B
bellard 已提交
643
    }
B
bellard 已提交
644 645 646 647 648
}

static int raw_truncate(BlockDriverState *bs, int64_t offset)
{
    BDRVRawState *s = bs->opaque;
B
bellard 已提交
649 650
    if (s->type != FTYPE_FILE)
        return -ENOTSUP;
B
bellard 已提交
651 652 653 654 655
    if (ftruncate(s->fd, offset) < 0)
        return -errno;
    return 0;
}

656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
#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;
}
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
#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 已提交
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
#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 已提交
728 729 730 731 732
{
    BDRVRawState *s = bs->opaque;
    int fd = s->fd;
    int64_t size;
    struct stat sb;
A
Aurelien Jarno 已提交
733
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
734
    int reopened = 0;
B
bellard 已提交
735
#endif
B
bellard 已提交
736 737 738 739 740
    int ret;

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

A
Aurelien Jarno 已提交
742
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
743 744
again:
#endif
B
bellard 已提交
745 746 747
    if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
#ifdef DIOCGMEDIASIZE
	if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
748 749 750 751 752 753 754 755 756
#elif defined(DIOCGPART)
        {
                struct partinfo pi;
                if (ioctl(fd, DIOCGPART, &pi) == 0)
                        size = pi.media_size;
                else
                        size = 0;
        }
        if (size == 0)
B
bellard 已提交
757 758 759 760 761
#endif
#ifdef CONFIG_COCOA
        size = LONG_LONG_MAX;
#else
        size = lseek(fd, 0LL, SEEK_END);
B
blueswir1 已提交
762
#endif
A
Aurelien Jarno 已提交
763
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
764 765 766 767 768 769
        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... */
770
            if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
B
blueswir1 已提交
771 772 773 774
                reopened = 1;
                goto again;
            }
        }
B
bellard 已提交
775
#endif
C
Christoph Hellwig 已提交
776
    } else {
B
bellard 已提交
777 778 779 780
        size = lseek(fd, 0, SEEK_END);
    }
    return size;
}
C
Christoph Hellwig 已提交
781 782 783 784 785 786 787 788 789 790 791 792 793
#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);
}
794
#endif
B
bellard 已提交
795

796 797 798 799 800 801 802 803 804 805 806
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;
}

807
static int raw_create(const char *filename, QEMUOptionParameter *options)
B
bellard 已提交
808 809
{
    int fd;
810
    int result = 0;
811
    int64_t total_size = 0;
B
bellard 已提交
812

813 814 815
    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
816
            total_size = options->value.n / BDRV_SECTOR_SIZE;
817 818 819
        }
        options++;
    }
B
bellard 已提交
820

821
    fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
B
bellard 已提交
822
              0644);
823 824 825
    if (fd < 0) {
        result = -errno;
    } else {
826
        if (ftruncate(fd, total_size * BDRV_SECTOR_SIZE) != 0) {
827 828 829 830 831 832 833
            result = -errno;
        }
        if (close(fd) != 0) {
            result = -errno;
        }
    }
    return result;
B
bellard 已提交
834 835
}

836
static int raw_flush(BlockDriverState *bs)
B
bellard 已提交
837 838
{
    BDRVRawState *s = bs->opaque;
839
    return qemu_fdatasync(s->fd);
B
bellard 已提交
840 841
}

C
Christoph Hellwig 已提交
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872
#ifdef CONFIG_XFS
static int xfs_discard(BDRVRawState *s, int64_t sector_num, int nb_sectors)
{
    struct xfs_flock64 fl;

    memset(&fl, 0, sizeof(fl));
    fl.l_whence = SEEK_SET;
    fl.l_start = sector_num << 9;
    fl.l_len = (int64_t)nb_sectors << 9;

    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

static int raw_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
{
#ifdef CONFIG_XFS
    BDRVRawState *s = bs->opaque;

    if (s->is_xfs) {
        return xfs_discard(s, sector_num, nb_sectors);
    }
#endif

    return 0;
}
873 874

static QEMUOptionParameter raw_create_options[] = {
875 876 877 878 879
    {
        .name = BLOCK_OPT_SIZE,
        .type = OPT_SIZE,
        .help = "Virtual disk size"
    },
880 881 882
    { NULL }
};

883 884 885
static BlockDriver bdrv_file = {
    .format_name = "file",
    .protocol_name = "file",
B
blueswir1 已提交
886 887
    .instance_size = sizeof(BDRVRawState),
    .bdrv_probe = NULL, /* no probe for protocols */
888
    .bdrv_file_open = raw_open,
B
blueswir1 已提交
889 890 891 892 893
    .bdrv_read = raw_read,
    .bdrv_write = raw_write,
    .bdrv_close = raw_close,
    .bdrv_create = raw_create,
    .bdrv_flush = raw_flush,
C
Christoph Hellwig 已提交
894
    .bdrv_discard = raw_discard,
895

896 897
    .bdrv_aio_readv = raw_aio_readv,
    .bdrv_aio_writev = raw_aio_writev,
898
    .bdrv_aio_flush = raw_aio_flush,
899

B
bellard 已提交
900 901
    .bdrv_truncate = raw_truncate,
    .bdrv_getlength = raw_getlength,
902 903
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
904 905

    .create_options = raw_create_options,
B
bellard 已提交
906 907
};

B
bellard 已提交
908 909 910 911 912 913 914 915 916
/***********************************************/
/* host device */

#ifdef CONFIG_COCOA
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 )
{
917
    kern_return_t       kernResult;
B
bellard 已提交
918 919 920 921 922 923 924
    mach_port_t     masterPort;
    CFMutableDictionaryRef  classesToMatch;

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

926
    classesToMatch = IOServiceMatching( kIOCDMediaClass );
B
bellard 已提交
927 928 929 930 931 932 933 934 935 936
    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 );
    }
937

B
bellard 已提交
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962
    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 );
    }
963

B
bellard 已提交
964 965 966 967 968
    return kernResult;
}

#endif

969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984
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;
}

B
bellard 已提交
985 986 987
static int hdev_open(BlockDriverState *bs, const char *filename, int flags)
{
    BDRVRawState *s = bs->opaque;
988

B
bellard 已提交
989 990 991 992 993 994
#ifdef CONFIG_COCOA
    if (strstart(filename, "/dev/cdrom", NULL)) {
        kern_return_t kernResult;
        io_iterator_t mediaIterator;
        char bsdPath[ MAXPATHLEN ];
        int fd;
995

B
bellard 已提交
996 997
        kernResult = FindEjectableCDMedia( &mediaIterator );
        kernResult = GetBSDPath( mediaIterator, bsdPath, sizeof( bsdPath ) );
998

B
bellard 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
        if ( bsdPath[ 0 ] != '\0' ) {
            strcat(bsdPath,"s0");
            /* some CDs don't have a partition 0 */
            fd = open(bsdPath, O_RDONLY | O_BINARY | O_LARGEFILE);
            if (fd < 0) {
                bsdPath[strlen(bsdPath)-1] = '1';
            } else {
                close(fd);
            }
            filename = bsdPath;
        }
1010

B
bellard 已提交
1011 1012 1013 1014 1015 1016
        if ( mediaIterator )
            IOObjectRelease( mediaIterator );
    }
#endif

    s->type = FTYPE_FILE;
C
Christoph Hellwig 已提交
1017
#if defined(__linux__)
1018 1019 1020 1021 1022 1023 1024
    {
        char resolved_path[ MAXPATHLEN ], *temp;

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

B
Blue Swirl 已提交
1028
    return raw_open_common(bs, filename, flags, 0);
B
bellard 已提交
1029 1030
}

1031
#if defined(__linux__)
B
bellard 已提交
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
/* 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);
1043
    if (s->fd >= 0 &&
1044
        (get_clock() - s->fd_open_time) >= FD_OPEN_TIMEOUT) {
B
bellard 已提交
1045 1046 1047 1048 1049 1050 1051
        close(s->fd);
        s->fd = -1;
#ifdef DEBUG_FLOPPY
        printf("Floppy closed\n");
#endif
    }
    if (s->fd < 0) {
1052
        if (s->fd_got_error &&
1053
            (get_clock() - s->fd_error_time) < FD_OPEN_TIMEOUT) {
B
bellard 已提交
1054 1055 1056 1057 1058
#ifdef DEBUG_FLOPPY
            printf("No floppy (open delayed)\n");
#endif
            return -EIO;
        }
1059
        s->fd = open(bs->filename, s->open_flags & ~O_NONBLOCK);
B
bellard 已提交
1060
        if (s->fd < 0) {
1061
            s->fd_error_time = get_clock();
B
bellard 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
            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;
1076
    s->fd_open_time = get_clock();
B
bellard 已提交
1077 1078 1079 1080
    s->fd_got_error = 0;
    return 0;
}

1081
static int hdev_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1082 1083 1084 1085 1086
{
    BDRVRawState *s = bs->opaque;

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

1088
static BlockDriverAIOCB *hdev_aio_ioctl(BlockDriverState *bs,
1089 1090 1091
        unsigned long int req, void *buf,
        BlockDriverCompletionFunc *cb, void *opaque)
{
1092
    BDRVRawState *s = bs->opaque;
1093

1094 1095
    if (fd_open(bs) < 0)
        return NULL;
1096
    return paio_ioctl(bs, s->fd, req, buf, cb, opaque);
1097 1098
}

A
Aurelien Jarno 已提交
1099
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
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 已提交
1110

1111 1112 1113 1114 1115
static int fd_open(BlockDriverState *bs)
{
    return 0;
}

1116
#endif /* !linux && !FreeBSD */
1117

1118
static int hdev_create(const char *filename, QEMUOptionParameter *options)
1119 1120 1121 1122
{
    int fd;
    int ret = 0;
    struct stat stat_buf;
1123
    int64_t total_size = 0;
1124

1125 1126 1127
    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, "size")) {
1128
            total_size = options->value.n / BDRV_SECTOR_SIZE;
1129 1130 1131
        }
        options++;
    }
1132 1133 1134

    fd = open(filename, O_WRONLY | O_BINARY);
    if (fd < 0)
1135
        return -errno;
1136 1137

    if (fstat(fd, &stat_buf) < 0)
1138
        ret = -errno;
C
Christoph Hellwig 已提交
1139
    else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode))
1140
        ret = -ENODEV;
1141
    else if (lseek(fd, 0, SEEK_END) < total_size * BDRV_SECTOR_SIZE)
1142 1143 1144 1145 1146 1147
        ret = -ENOSPC;

    close(fd);
    return ret;
}

K
Kevin Wolf 已提交
1148 1149 1150 1151 1152
static int hdev_has_zero_init(BlockDriverState *bs)
{
    return 0;
}

1153
static BlockDriver bdrv_host_device = {
1154
    .format_name        = "host_device",
1155
    .protocol_name        = "host_device",
1156 1157
    .instance_size      = sizeof(BDRVRawState),
    .bdrv_probe_device  = hdev_probe_device,
1158
    .bdrv_file_open     = hdev_open,
1159
    .bdrv_close         = raw_close,
1160
    .bdrv_create        = hdev_create,
1161
    .create_options     = raw_create_options,
K
Kevin Wolf 已提交
1162
    .bdrv_has_zero_init = hdev_has_zero_init,
1163
    .bdrv_flush         = raw_flush,
1164

1165 1166
    .bdrv_aio_readv	= raw_aio_readv,
    .bdrv_aio_writev	= raw_aio_writev,
1167
    .bdrv_aio_flush	= raw_aio_flush,
1168

1169 1170
    .bdrv_read          = raw_read,
    .bdrv_write         = raw_write,
1171
    .bdrv_getlength	= raw_getlength,
1172 1173
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
B
bellard 已提交
1174

1175
    /* generic scsi device */
1176 1177 1178 1179
#ifdef __linux__
    .bdrv_ioctl         = hdev_ioctl,
    .bdrv_aio_ioctl     = hdev_aio_ioctl,
#endif
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
};

#ifdef __linux__
static int floppy_open(BlockDriverState *bs, const char *filename, int flags)
{
    BDRVRawState *s = bs->opaque;
    int ret;

    s->type = FTYPE_FD;

B
Blue Swirl 已提交
1190 1191
    /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
    ret = raw_open_common(bs, filename, flags, O_NONBLOCK);
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
    if (ret)
        return ret;

    /* close fd so that we can reopen it as needed */
    close(s->fd);
    s->fd = -1;
    s->fd_media_changed = 1;

    return 0;
}

1203 1204
static int floppy_probe_device(const char *filename)
{
1205 1206 1207
    int fd, ret;
    int prio = 0;
    struct floppy_struct fdparam;
1208
    struct stat st;
1209

1210
    if (strstart(filename, "/dev/fd", NULL))
1211 1212 1213 1214 1215 1216
        prio = 50;

    fd = open(filename, O_RDONLY | O_NONBLOCK);
    if (fd < 0) {
        goto out;
    }
1217 1218 1219 1220
    ret = fstat(fd, &st);
    if (ret == -1 || !S_ISBLK(st.st_mode)) {
        goto outc;
    }
1221 1222 1223 1224 1225 1226

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

1227
outc:
1228 1229 1230
    close(fd);
out:
    return prio;
1231 1232 1233
}


1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
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;
}

1257
static void floppy_eject(BlockDriverState *bs, int eject_flag)
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
{
    BDRVRawState *s = bs->opaque;
    int fd;

    if (s->fd >= 0) {
        close(s->fd);
        s->fd = -1;
    }
    fd = open(bs->filename, s->open_flags | O_NONBLOCK);
    if (fd >= 0) {
        if (ioctl(fd, FDEJECT, 0) < 0)
            perror("FDEJECT");
        close(fd);
    }
}

static BlockDriver bdrv_host_floppy = {
    .format_name        = "host_floppy",
1276
    .protocol_name      = "host_floppy",
1277
    .instance_size      = sizeof(BDRVRawState),
1278
    .bdrv_probe_device	= floppy_probe_device,
1279
    .bdrv_file_open     = floppy_open,
1280 1281
    .bdrv_close         = raw_close,
    .bdrv_create        = hdev_create,
1282
    .create_options     = raw_create_options,
K
Kevin Wolf 已提交
1283
    .bdrv_has_zero_init = hdev_has_zero_init,
1284 1285 1286 1287
    .bdrv_flush         = raw_flush,

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
1288
    .bdrv_aio_flush	= raw_aio_flush,
1289 1290 1291 1292

    .bdrv_read          = raw_read,
    .bdrv_write         = raw_write,
    .bdrv_getlength	= raw_getlength,
1293 1294
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307

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

static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
{
    BDRVRawState *s = bs->opaque;

    s->type = FTYPE_CD;

B
Blue Swirl 已提交
1308 1309
    /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
    return raw_open_common(bs, filename, flags, O_NONBLOCK);
1310 1311
}

1312 1313
static int cdrom_probe_device(const char *filename)
{
1314 1315
    int fd, ret;
    int prio = 0;
1316
    struct stat st;
1317 1318 1319 1320 1321

    fd = open(filename, O_RDONLY | O_NONBLOCK);
    if (fd < 0) {
        goto out;
    }
1322 1323 1324 1325
    ret = fstat(fd, &st);
    if (ret == -1 || !S_ISBLK(st.st_mode)) {
        goto outc;
    }
1326 1327 1328 1329 1330 1331

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

1332
outc:
1333 1334 1335
    close(fd);
out:
    return prio;
1336 1337
}

1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
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;
}

1349
static void cdrom_eject(BlockDriverState *bs, int eject_flag)
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
{
    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");
    }
}

1362
static void cdrom_set_locked(BlockDriverState *bs, int locked)
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
{
    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",
1377
    .protocol_name      = "host_cdrom",
1378
    .instance_size      = sizeof(BDRVRawState),
1379
    .bdrv_probe_device	= cdrom_probe_device,
1380
    .bdrv_file_open     = cdrom_open,
1381 1382
    .bdrv_close         = raw_close,
    .bdrv_create        = hdev_create,
1383
    .create_options     = raw_create_options,
K
Kevin Wolf 已提交
1384
    .bdrv_has_zero_init = hdev_has_zero_init,
1385 1386 1387 1388
    .bdrv_flush         = raw_flush,

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
1389
    .bdrv_aio_flush	= raw_aio_flush,
1390 1391 1392 1393

    .bdrv_read          = raw_read,
    .bdrv_write         = raw_write,
    .bdrv_getlength     = raw_getlength,
1394 1395
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
1396 1397 1398 1399 1400 1401 1402

    /* removable device support */
    .bdrv_is_inserted   = cdrom_is_inserted,
    .bdrv_eject         = cdrom_eject,
    .bdrv_set_locked    = cdrom_set_locked,

    /* generic scsi device */
1403 1404
    .bdrv_ioctl         = hdev_ioctl,
    .bdrv_aio_ioctl     = hdev_aio_ioctl,
1405 1406 1407
};
#endif /* __linux__ */

A
Aurelien Jarno 已提交
1408
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1409 1410 1411 1412 1413 1414 1415
static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
{
    BDRVRawState *s = bs->opaque;
    int ret;

    s->type = FTYPE_CD;

B
Blue Swirl 已提交
1416
    ret = raw_open_common(bs, filename, flags, 0);
1417 1418 1419 1420 1421 1422 1423 1424
    if (ret)
        return ret;

    /* make sure the door isnt locked at this time */
    ioctl(s->fd, CDIOCALLOW);
    return 0;
}

1425 1426 1427 1428 1429 1430 1431 1432
static int cdrom_probe_device(const char *filename)
{
    if (strstart(filename, "/dev/cd", NULL) ||
            strstart(filename, "/dev/acd", NULL))
        return 100;
    return 0;
}

1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
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)
        close(s->fd);
    fd = open(bs->filename, s->open_flags, 0644);
    if (fd < 0) {
        s->fd = -1;
        return -EIO;
    }
    s->fd = fd;

    /* make sure the door isnt locked at this time */
    ioctl(s->fd, CDIOCALLOW);
    return 0;
}

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

1461
static void cdrom_eject(BlockDriverState *bs, int eject_flag)
1462 1463 1464 1465
{
    BDRVRawState *s = bs->opaque;

    if (s->fd < 0)
1466
        return;
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477

    (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");
    }

1478
    cdrom_reopen(bs);
1479 1480
}

1481
static void cdrom_set_locked(BlockDriverState *bs, int locked)
1482 1483 1484 1485
{
    BDRVRawState *s = bs->opaque;

    if (s->fd < 0)
1486
        return;
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
    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",
1498
    .protocol_name      = "host_cdrom",
1499
    .instance_size      = sizeof(BDRVRawState),
1500
    .bdrv_probe_device	= cdrom_probe_device,
1501
    .bdrv_file_open     = cdrom_open,
1502 1503
    .bdrv_close         = raw_close,
    .bdrv_create        = hdev_create,
1504
    .create_options     = raw_create_options,
K
Kevin Wolf 已提交
1505
    .bdrv_has_zero_init = hdev_has_zero_init,
1506 1507 1508 1509
    .bdrv_flush         = raw_flush,

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
1510
    .bdrv_aio_flush	= raw_aio_flush,
1511 1512 1513 1514

    .bdrv_read          = raw_read,
    .bdrv_write         = raw_write,
    .bdrv_getlength     = raw_getlength,
1515 1516
    .bdrv_get_allocated_file_size
                        = raw_get_allocated_file_size,
1517

B
bellard 已提交
1518
    /* removable device support */
1519 1520 1521
    .bdrv_is_inserted   = cdrom_is_inserted,
    .bdrv_eject         = cdrom_eject,
    .bdrv_set_locked    = cdrom_set_locked,
B
bellard 已提交
1522
};
1523
#endif /* __FreeBSD__ */
1524

1525
static void bdrv_file_init(void)
1526
{
1527 1528 1529 1530
    /*
     * Register all the drivers.  Note that order is important, the driver
     * registered last will get probed first.
     */
1531
    bdrv_register(&bdrv_file);
1532
    bdrv_register(&bdrv_host_device);
1533 1534 1535 1536
#ifdef __linux__
    bdrv_register(&bdrv_host_floppy);
    bdrv_register(&bdrv_host_cdrom);
#endif
A
Aurelien Jarno 已提交
1537
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1538 1539
    bdrv_register(&bdrv_host_cdrom);
#endif
1540 1541
}

1542
block_init(bdrv_file_init);