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

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

66 67 68 69 70
#ifdef __DragonFly__
#include <sys/ioctl.h>
#include <sys/diskslice.h>
#endif

B
bellard 已提交
71
//#define DEBUG_FLOPPY
B
bellard 已提交
72

P
pbrook 已提交
73
//#define DEBUG_BLOCK
74
#if defined(DEBUG_BLOCK)
75 76
#define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
    { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
T
ths 已提交
77
#else
78
#define DEBUG_BLOCK_PRINT(formatCstr, ...)
T
ths 已提交
79 80
#endif

A
aliguori 已提交
81 82
/* OS X does not have O_DSYNC */
#ifndef O_DSYNC
83
#ifdef O_SYNC
84
#define O_DSYNC O_SYNC
85 86 87
#elif defined(O_FSYNC)
#define O_DSYNC O_FSYNC
#endif
A
aliguori 已提交
88 89
#endif

90 91 92 93 94
/* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
#ifndef O_DIRECT
#define O_DIRECT O_DSYNC
#endif

B
bellard 已提交
95 96 97
#define FTYPE_FILE   0
#define FTYPE_CD     1
#define FTYPE_FD     2
B
bellard 已提交
98

99 100
#define ALIGNED_BUFFER_SIZE (32 * 512)

B
bellard 已提交
101 102 103
/* if the FD is not accessed during that time (in ms), we try to
   reopen it to see if the disk has been changed */
#define FD_OPEN_TIMEOUT 1000
B
bellard 已提交
104

B
bellard 已提交
105 106 107
typedef struct BDRVRawState {
    int fd;
    int type;
T
ths 已提交
108
    unsigned int lseek_err_cnt;
109
    int open_flags;
B
bellard 已提交
110 111 112 113 114 115
#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 已提交
116
#endif
117
#ifdef CONFIG_LINUX_AIO
118
    int use_aio;
K
Kevin Wolf 已提交
119
    void *aio_ctx;
120
#endif
121
    uint8_t* aligned_buf;
B
bellard 已提交
122 123 124
} BDRVRawState;

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

A
Aurelien Jarno 已提交
127
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
128
static int cdrom_reopen(BlockDriverState *bs);
B
blueswir1 已提交
129 130
#endif

131
static int raw_open_common(BlockDriverState *bs, const char *filename,
B
Blue Swirl 已提交
132
                           int bdrv_flags, int open_flags)
B
bellard 已提交
133 134
{
    BDRVRawState *s = bs->opaque;
135
    int fd, ret;
B
bellard 已提交
136

T
ths 已提交
137 138
    s->lseek_err_cnt = 0;

B
Blue Swirl 已提交
139
    s->open_flags = open_flags | O_BINARY;
140
    s->open_flags &= ~O_ACCMODE;
B
Blue Swirl 已提交
141
    if ((bdrv_flags & BDRV_O_ACCESS) == BDRV_O_RDWR) {
142
        s->open_flags |= O_RDWR;
B
bellard 已提交
143
    } else {
144
        s->open_flags |= O_RDONLY;
B
bellard 已提交
145 146
        bs->read_only = 1;
    }
147 148 149

    /* Use O_DSYNC for write-through caching, no flags for write-back caching,
     * and O_DIRECT for no caching. */
B
Blue Swirl 已提交
150
    if ((bdrv_flags & BDRV_O_NOCACHE))
151
        s->open_flags |= O_DIRECT;
B
Blue Swirl 已提交
152
    else if (!(bdrv_flags & BDRV_O_CACHE_WB))
153
        s->open_flags |= O_DSYNC;
B
bellard 已提交
154

155
    s->fd = -1;
K
Kevin Wolf 已提交
156
    fd = qemu_open(filename, s->open_flags, 0644);
B
bellard 已提交
157 158 159 160 161 162
    if (fd < 0) {
        ret = -errno;
        if (ret == -EROFS)
            ret = -EACCES;
        return ret;
    }
B
bellard 已提交
163
    s->fd = fd;
164
    s->aligned_buf = NULL;
165

B
Blue Swirl 已提交
166
    if ((bdrv_flags & BDRV_O_NOCACHE)) {
167
        s->aligned_buf = qemu_blockalign(bs, ALIGNED_BUFFER_SIZE);
168
        if (s->aligned_buf == NULL) {
169
            goto out_close;
170 171
        }
    }
172

173 174 175
#ifdef CONFIG_LINUX_AIO
    if ((bdrv_flags & (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) ==
                      (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) {
176 177 178 179

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

180 181 182 183 184 185 186 187
        s->aio_ctx = laio_init();
        if (!s->aio_ctx) {
            goto out_free_buf;
        }
        s->use_aio = 1;
    } else
#endif
    {
K
Kevin Wolf 已提交
188
        if (paio_init() < 0) {
189 190
            goto out_free_buf;
        }
191
#ifdef CONFIG_LINUX_AIO
192
        s->use_aio = 0;
193
#endif
194 195
    }

B
bellard 已提交
196
    return 0;
197 198 199 200 201 202

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

205 206 207
static int raw_open(BlockDriverState *bs, const char *filename, int flags)
{
    BDRVRawState *s = bs->opaque;
B
Blue Swirl 已提交
208
    int open_flags = 0;
209 210 211

    s->type = FTYPE_FILE;
    if (flags & BDRV_O_CREAT)
B
Blue Swirl 已提交
212
        open_flags = O_CREAT | O_TRUNC;
213

B
Blue Swirl 已提交
214
    return raw_open_common(bs, filename, flags, open_flags);
215 216
}

B
bellard 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
/* 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
        u_int32_t   blockSize = 512;
        if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
            bufsize = blockSize;
        }
#endif
*/

234 235 236 237 238 239 240 241
/*
 * 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 已提交
242 243 244 245
                     uint8_t *buf, int count)
{
    BDRVRawState *s = bs->opaque;
    int ret;
246

B
bellard 已提交
247 248 249 250
    ret = fd_open(bs);
    if (ret < 0)
        return ret;

251
    if (offset >= 0 && lseek(s->fd, offset, SEEK_SET) == (off_t)-1) {
T
ths 已提交
252 253
        ++(s->lseek_err_cnt);
        if(s->lseek_err_cnt <= 10) {
254 255
            DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
                              "] lseek failed : %d = %s\n",
T
ths 已提交
256 257 258 259 260 261 262
                              s->fd, bs->filename, offset, buf, count,
                              bs->total_sectors, errno, strerror(errno));
        }
        return -1;
    }
    s->lseek_err_cnt=0;

B
bellard 已提交
263
    ret = read(s->fd, buf, count);
T
ths 已提交
264 265 266
    if (ret == count)
        goto label__raw_read__success;

267 268 269 270 271 272 273 274 275 276
    /* 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);
            ret = count;
            goto label__raw_read__success;
        }
    }

277 278
    DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
                      "] read failed %d : %d = %s\n",
T
ths 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292
                      s->fd, bs->filename, offset, buf, count,
                      bs->total_sectors, ret, errno, strerror(errno));

    /* Try harder for CDrom. */
    if (bs->type == BDRV_TYPE_CDROM) {
        lseek(s->fd, offset, SEEK_SET);
        ret = read(s->fd, buf, count);
        if (ret == count)
            goto label__raw_read__success;
        lseek(s->fd, offset, SEEK_SET);
        ret = read(s->fd, buf, count);
        if (ret == count)
            goto label__raw_read__success;

293 294
        DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
                          "] retry read failed %d : %d = %s\n",
T
ths 已提交
295 296 297 298 299 300
                          s->fd, bs->filename, offset, buf, count,
                          bs->total_sectors, ret, errno, strerror(errno));
    }

label__raw_read__success:

301
    return  (ret < 0) ? -errno : ret;
B
bellard 已提交
302 303
}

304 305 306 307 308 309 310 311
/*
 * 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_pwrite_aligned(BlockDriverState *bs, int64_t offset,
B
bellard 已提交
312 313 314 315
                      const uint8_t *buf, int count)
{
    BDRVRawState *s = bs->opaque;
    int ret;
316

B
bellard 已提交
317 318
    ret = fd_open(bs);
    if (ret < 0)
319
        return -errno;
B
bellard 已提交
320

321
    if (offset >= 0 && lseek(s->fd, offset, SEEK_SET) == (off_t)-1) {
T
ths 已提交
322 323
        ++(s->lseek_err_cnt);
        if(s->lseek_err_cnt) {
324 325
            DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%"
                              PRId64 "] lseek failed : %d = %s\n",
T
ths 已提交
326 327 328
                              s->fd, bs->filename, offset, buf, count,
                              bs->total_sectors, errno, strerror(errno));
        }
329
        return -EIO;
T
ths 已提交
330 331 332
    }
    s->lseek_err_cnt = 0;

B
bellard 已提交
333
    ret = write(s->fd, buf, count);
T
ths 已提交
334 335 336
    if (ret == count)
        goto label__raw_write__success;

337 338
    DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
                      "] write failed %d : %d = %s\n",
T
ths 已提交
339 340 341 342 343
                      s->fd, bs->filename, offset, buf, count,
                      bs->total_sectors, ret, errno, strerror(errno));

label__raw_write__success:

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

347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419

/*
 * 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;
    int size, ret, shift, sum;

    sum = 0;

    if (s->aligned_buf != NULL)  {

        if (offset & 0x1ff) {
            /* align offset on a 512 bytes boundary */

            shift = offset & 0x1ff;
            size = (shift + count + 0x1ff) & ~0x1ff;
            if (size > ALIGNED_BUFFER_SIZE)
                size = ALIGNED_BUFFER_SIZE;
            ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, size);
            if (ret < 0)
                return ret;

            size = 512 - shift;
            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;
        }
        if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {

            /* read on aligned buffer */

            while (count) {

                size = (count + 0x1ff) & ~0x1ff;
                if (size > ALIGNED_BUFFER_SIZE)
                    size = ALIGNED_BUFFER_SIZE;

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

                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;
}

420 421 422
static int raw_read(BlockDriverState *bs, int64_t sector_num,
                    uint8_t *buf, int nb_sectors)
{
A
aliguori 已提交
423 424 425 426 427 428
    int ret;

    ret = raw_pread(bs, sector_num * 512, buf, nb_sectors * 512);
    if (ret == (nb_sectors * 512))
        ret = 0;
    return ret;
429 430
}

431 432 433 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 459 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 503 504 505 506 507 508
/*
 * 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;
    int size, ret, shift, sum;

    sum = 0;

    if (s->aligned_buf != NULL) {

        if (offset & 0x1ff) {
            /* align offset on a 512 bytes boundary */
            shift = offset & 0x1ff;
            ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, 512);
            if (ret < 0)
                return ret;

            size = 512 - shift;
            if (size > count)
                size = count;
            memcpy(s->aligned_buf + shift, buf, size);

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

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

            if (count == 0)
                return sum;
        }
        if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {

            while ((size = (count & ~0x1ff)) != 0) {

                if (size > ALIGNED_BUFFER_SIZE)
                    size = ALIGNED_BUFFER_SIZE;

                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;
            }
            /* here, count < 512 because (count & ~0x1ff) == 0 */
            if (count) {
                ret = raw_pread_aligned(bs, offset, s->aligned_buf, 512);
                if (ret < 0)
                    return ret;
                 memcpy(s->aligned_buf, buf, count);

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

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

509 510 511
static int raw_write(BlockDriverState *bs, int64_t sector_num,
                     const uint8_t *buf, int nb_sectors)
{
A
aliguori 已提交
512 513 514 515 516
    int ret;
    ret = raw_pwrite(bs, sector_num * 512, buf, nb_sectors * 512);
    if (ret == (nb_sectors * 512))
        ret = 0;
    return ret;
517 518
}

519 520 521 522
/*
 * Check if all memory in this vector is sector aligned.
 */
static int qiov_is_aligned(QEMUIOVector *qiov)
523
{
524
    int i;
B
bellard 已提交
525

526 527 528
    for (i = 0; i < qiov->niov; i++) {
        if ((uintptr_t) qiov->iov[i].iov_base % 512) {
            return 0;
529 530 531
        }
    }

532
    return 1;
533 534
}

535 536 537
static BlockDriverAIOCB *raw_aio_submit(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
        BlockDriverCompletionFunc *cb, void *opaque, int type)
B
bellard 已提交
538
{
539 540
    BDRVRawState *s = bs->opaque;

B
bellard 已提交
541 542 543
    if (fd_open(bs) < 0)
        return NULL;

544 545
    /*
     * If O_DIRECT is used the buffer needs to be aligned on a sector
546 547
     * boundary.  Check if this is the case or telll the low-level
     * driver that it needs to copy the buffer.
548
     */
549 550 551
    if (s->aligned_buf) {
        if (!qiov_is_aligned(qiov)) {
            type |= QEMU_AIO_MISALIGNED;
552
#ifdef CONFIG_LINUX_AIO
553 554
        } else if (s->use_aio) {
            return laio_submit(bs, s->aio_ctx, s->fd, sector_num, qiov,
555 556
                               nb_sectors, cb, opaque, type);
#endif
557
        }
558
    }
559

K
Kevin Wolf 已提交
560
    return paio_submit(bs, s->fd, sector_num, qiov, nb_sectors,
561
                       cb, opaque, type);
B
bellard 已提交
562 563
}

564 565
static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
566
        BlockDriverCompletionFunc *cb, void *opaque)
B
bellard 已提交
567
{
568 569
    return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
                          cb, opaque, QEMU_AIO_READ);
B
bellard 已提交
570 571
}

572 573
static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
574
        BlockDriverCompletionFunc *cb, void *opaque)
B
bellard 已提交
575
{
576 577
    return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
                          cb, opaque, QEMU_AIO_WRITE);
B
bellard 已提交
578
}
579

580 581 582 583 584 585 586 587
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 已提交
588
    return paio_submit(bs, s->fd, 0, NULL, 0, cb, opaque, QEMU_AIO_FLUSH);
589 590
}

B
bellard 已提交
591 592 593
static void raw_close(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
B
bellard 已提交
594 595 596
    if (s->fd >= 0) {
        close(s->fd);
        s->fd = -1;
597 598
        if (s->aligned_buf != NULL)
            qemu_free(s->aligned_buf);
B
bellard 已提交
599
    }
B
bellard 已提交
600 601 602 603 604
}

static int raw_truncate(BlockDriverState *bs, int64_t offset)
{
    BDRVRawState *s = bs->opaque;
B
bellard 已提交
605 606
    if (s->type != FTYPE_FILE)
        return -ENOTSUP;
B
bellard 已提交
607 608 609 610 611
    if (ftruncate(s->fd, offset) < 0)
        return -errno;
    return 0;
}

612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
#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;
}
#else /* !__OpenBSD__ */
B
bellard 已提交
632 633 634 635 636
static int64_t  raw_getlength(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
    int fd = s->fd;
    int64_t size;
J
Juan Quintela 已提交
637
#ifdef CONFIG_BSD
B
bellard 已提交
638
    struct stat sb;
A
Aurelien Jarno 已提交
639
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
640 641
    int reopened = 0;
#endif
B
bellard 已提交
642 643 644 645 646
#endif
#ifdef __sun__
    struct dk_minfo minfo;
    int rv;
#endif
B
bellard 已提交
647 648 649 650 651
    int ret;

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

J
Juan Quintela 已提交
653
#ifdef CONFIG_BSD
A
Aurelien Jarno 已提交
654
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
655 656
again:
#endif
B
bellard 已提交
657 658 659
    if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
#ifdef DIOCGMEDIASIZE
	if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
660 661 662 663 664 665 666 667 668
#elif defined(DIOCGPART)
        {
                struct partinfo pi;
                if (ioctl(fd, DIOCGPART, &pi) == 0)
                        size = pi.media_size;
                else
                        size = 0;
        }
        if (size == 0)
B
bellard 已提交
669 670 671 672 673
#endif
#ifdef CONFIG_COCOA
        size = LONG_LONG_MAX;
#else
        size = lseek(fd, 0LL, SEEK_END);
B
blueswir1 已提交
674
#endif
A
Aurelien Jarno 已提交
675
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
676 677 678 679 680 681
        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... */
682
            if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
B
blueswir1 已提交
683 684 685 686
                reopened = 1;
                goto again;
            }
        }
B
bellard 已提交
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
#endif
    } else
#endif
#ifdef __sun__
    /*
     * use the DKIOCGMEDIAINFO ioctl to read the size.
     */
    rv = ioctl ( fd, DKIOCGMEDIAINFO, &minfo );
    if ( rv != -1 ) {
        size = minfo.dki_lbsize * minfo.dki_capacity;
    } else /* there are reports that lseek on some devices
              fails, but irc discussion said that contingency
              on contingency was overkill */
#endif
    {
        size = lseek(fd, 0, SEEK_END);
    }
    return size;
}
706
#endif
B
bellard 已提交
707

708
static int raw_create(const char *filename, QEMUOptionParameter *options)
B
bellard 已提交
709 710
{
    int fd;
711
    int result = 0;
712
    int64_t total_size = 0;
B
bellard 已提交
713

714 715 716 717 718 719 720
    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
            total_size = options->value.n / 512;
        }
        options++;
    }
B
bellard 已提交
721

722
    fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
B
bellard 已提交
723
              0644);
724 725 726 727 728 729 730 731 732 733 734
    if (fd < 0) {
        result = -errno;
    } else {
        if (ftruncate(fd, total_size * 512) != 0) {
            result = -errno;
        }
        if (close(fd) != 0) {
            result = -errno;
        }
    }
    return result;
B
bellard 已提交
735 736 737 738 739
}

static void raw_flush(BlockDriverState *bs)
{
    BDRVRawState *s = bs->opaque;
740
    qemu_fdatasync(s->fd);
B
bellard 已提交
741 742
}

743 744

static QEMUOptionParameter raw_create_options[] = {
745 746 747 748 749
    {
        .name = BLOCK_OPT_SIZE,
        .type = OPT_SIZE,
        .help = "Virtual disk size"
    },
750 751 752
    { NULL }
};

753
static BlockDriver bdrv_raw = {
B
blueswir1 已提交
754 755 756 757 758 759 760 761 762
    .format_name = "raw",
    .instance_size = sizeof(BDRVRawState),
    .bdrv_probe = NULL, /* no probe for protocols */
    .bdrv_open = raw_open,
    .bdrv_read = raw_read,
    .bdrv_write = raw_write,
    .bdrv_close = raw_close,
    .bdrv_create = raw_create,
    .bdrv_flush = raw_flush,
763

764 765
    .bdrv_aio_readv = raw_aio_readv,
    .bdrv_aio_writev = raw_aio_writev,
766
    .bdrv_aio_flush = raw_aio_flush,
767

B
bellard 已提交
768 769
    .bdrv_truncate = raw_truncate,
    .bdrv_getlength = raw_getlength,
770 771

    .create_options = raw_create_options,
B
bellard 已提交
772 773
};

B
bellard 已提交
774 775 776 777 778 779 780 781 782
/***********************************************/
/* 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 )
{
783
    kern_return_t       kernResult;
B
bellard 已提交
784 785 786 787 788 789 790
    mach_port_t     masterPort;
    CFMutableDictionaryRef  classesToMatch;

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

792
    classesToMatch = IOServiceMatching( kIOCDMediaClass );
B
bellard 已提交
793 794 795 796 797 798 799 800 801 802
    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 );
    }
803

B
bellard 已提交
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
    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 );
    }
829

B
bellard 已提交
830 831 832 833 834
    return kernResult;
}

#endif

835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
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 已提交
851 852 853
static int hdev_open(BlockDriverState *bs, const char *filename, int flags)
{
    BDRVRawState *s = bs->opaque;
854

B
bellard 已提交
855 856 857 858 859 860
#ifdef CONFIG_COCOA
    if (strstart(filename, "/dev/cdrom", NULL)) {
        kern_return_t kernResult;
        io_iterator_t mediaIterator;
        char bsdPath[ MAXPATHLEN ];
        int fd;
861

B
bellard 已提交
862 863
        kernResult = FindEjectableCDMedia( &mediaIterator );
        kernResult = GetBSDPath( mediaIterator, bsdPath, sizeof( bsdPath ) );
864

B
bellard 已提交
865 866 867 868 869 870 871 872 873 874 875
        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;
        }
876

B
bellard 已提交
877 878 879 880 881 882
        if ( mediaIterator )
            IOObjectRelease( mediaIterator );
    }
#endif

    s->type = FTYPE_FILE;
C
Christoph Hellwig 已提交
883
#if defined(__linux__)
884
    if (strstart(filename, "/dev/sg", NULL)) {
885
        bs->sg = 1;
B
bellard 已提交
886 887
    }
#endif
888

B
Blue Swirl 已提交
889
    return raw_open_common(bs, filename, flags, 0);
B
bellard 已提交
890 891
}

892
#if defined(__linux__)
B
bellard 已提交
893 894 895 896 897 898 899 900 901 902 903
/* 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);
904
    if (s->fd >= 0 &&
B
bellard 已提交
905 906 907 908 909 910 911 912
        (qemu_get_clock(rt_clock) - s->fd_open_time) >= FD_OPEN_TIMEOUT) {
        close(s->fd);
        s->fd = -1;
#ifdef DEBUG_FLOPPY
        printf("Floppy closed\n");
#endif
    }
    if (s->fd < 0) {
913
        if (s->fd_got_error &&
B
bellard 已提交
914 915 916 917 918 919
            (qemu_get_clock(rt_clock) - s->fd_error_time) < FD_OPEN_TIMEOUT) {
#ifdef DEBUG_FLOPPY
            printf("No floppy (open delayed)\n");
#endif
            return -EIO;
        }
920
        s->fd = open(bs->filename, s->open_flags & ~O_NONBLOCK);
B
bellard 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941
        if (s->fd < 0) {
            s->fd_error_time = qemu_get_clock(rt_clock);
            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;
    s->fd_open_time = qemu_get_clock(rt_clock);
    s->fd_got_error = 0;
    return 0;
}

942
static int hdev_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
943 944 945 946 947
{
    BDRVRawState *s = bs->opaque;

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

949
static BlockDriverAIOCB *hdev_aio_ioctl(BlockDriverState *bs,
950 951 952
        unsigned long int req, void *buf,
        BlockDriverCompletionFunc *cb, void *opaque)
{
953
    BDRVRawState *s = bs->opaque;
954

955 956
    if (fd_open(bs) < 0)
        return NULL;
957
    return paio_ioctl(bs, s->fd, req, buf, cb, opaque);
958 959
}

A
Aurelien Jarno 已提交
960
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
B
blueswir1 已提交
961 962 963 964 965 966 967 968 969 970
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 已提交
971

972 973 974 975 976
static int fd_open(BlockDriverState *bs)
{
    return 0;
}

977
#endif /* !linux && !FreeBSD */
978

979
static int hdev_create(const char *filename, QEMUOptionParameter *options)
980 981 982 983
{
    int fd;
    int ret = 0;
    struct stat stat_buf;
984
    int64_t total_size = 0;
985

986 987 988 989 990 991 992
    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, "size")) {
            total_size = options->value.n / 512;
        }
        options++;
    }
993 994 995 996 997 998 999

    fd = open(filename, O_WRONLY | O_BINARY);
    if (fd < 0)
        return -EIO;

    if (fstat(fd, &stat_buf) < 0)
        ret = -EIO;
C
Christoph Hellwig 已提交
1000
    else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode))
1001 1002 1003 1004 1005 1006 1007 1008
        ret = -EIO;
    else if (lseek(fd, 0, SEEK_END) < total_size * 512)
        ret = -ENOSPC;

    close(fd);
    return ret;
}

1009
static BlockDriver bdrv_host_device = {
1010 1011 1012 1013 1014
    .format_name        = "host_device",
    .instance_size      = sizeof(BDRVRawState),
    .bdrv_probe_device  = hdev_probe_device,
    .bdrv_open          = hdev_open,
    .bdrv_close         = raw_close,
1015
    .bdrv_create        = hdev_create,
1016
    .create_options     = raw_create_options,
1017
    .no_zero_init       = 1,
1018
    .bdrv_flush         = raw_flush,
1019

1020 1021
    .bdrv_aio_readv	= raw_aio_readv,
    .bdrv_aio_writev	= raw_aio_writev,
1022
    .bdrv_aio_flush	= raw_aio_flush,
1023

1024 1025
    .bdrv_read          = raw_read,
    .bdrv_write         = raw_write,
1026
    .bdrv_getlength	= raw_getlength,
B
bellard 已提交
1027

1028
    /* generic scsi device */
1029 1030 1031 1032
#ifdef __linux__
    .bdrv_ioctl         = hdev_ioctl,
    .bdrv_aio_ioctl     = hdev_aio_ioctl,
#endif
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
};

#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 已提交
1043 1044
    /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
    ret = raw_open_common(bs, filename, flags, O_NONBLOCK);
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
    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;
}

1056 1057
static int floppy_probe_device(const char *filename)
{
1058 1059 1060 1061
    int fd, ret;
    int prio = 0;
    struct floppy_struct fdparam;

1062
    if (strstart(filename, "/dev/fd", NULL))
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
        prio = 50;

    fd = open(filename, O_RDONLY | O_NONBLOCK);
    if (fd < 0) {
        goto out;
    }

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

    close(fd);
out:
    return prio;
1078 1079 1080
}


1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
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;
}

static int floppy_eject(BlockDriverState *bs, int eject_flag)
{
    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);
    }

    return 0;
}

static BlockDriver bdrv_host_floppy = {
    .format_name        = "host_floppy",
    .instance_size      = sizeof(BDRVRawState),
1126
    .bdrv_probe_device	= floppy_probe_device,
1127 1128 1129
    .bdrv_open          = floppy_open,
    .bdrv_close         = raw_close,
    .bdrv_create        = hdev_create,
1130
    .create_options     = raw_create_options,
1131
    .no_zero_init       = 1,
1132 1133 1134 1135
    .bdrv_flush         = raw_flush,

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
1136
    .bdrv_aio_flush	= raw_aio_flush,
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153

    .bdrv_read          = raw_read,
    .bdrv_write         = raw_write,
    .bdrv_getlength	= raw_getlength,

    /* 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 已提交
1154 1155
    /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
    return raw_open_common(bs, filename, flags, O_NONBLOCK);
1156 1157
}

1158 1159
static int cdrom_probe_device(const char *filename)
{
1160 1161 1162
    int fd, ret;
    int prio = 0;

1163
    if (strstart(filename, "/dev/cd", NULL))
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
        prio = 50;

    fd = open(filename, O_RDONLY | O_NONBLOCK);
    if (fd < 0) {
        goto out;
    }

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

    close(fd);
out:
    return prio;
1179 1180
}

1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
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;
}

static int cdrom_eject(BlockDriverState *bs, int eject_flag)
{
    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");
    }

    return 0;
}

static int cdrom_set_locked(BlockDriverState *bs, int locked)
{
    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"); */
    }

    return 0;
}

static BlockDriver bdrv_host_cdrom = {
    .format_name        = "host_cdrom",
    .instance_size      = sizeof(BDRVRawState),
1225
    .bdrv_probe_device	= cdrom_probe_device,
1226 1227 1228
    .bdrv_open          = cdrom_open,
    .bdrv_close         = raw_close,
    .bdrv_create        = hdev_create,
1229
    .create_options     = raw_create_options,
1230
    .no_zero_init       = 1,
1231 1232 1233 1234
    .bdrv_flush         = raw_flush,

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
1235
    .bdrv_aio_flush	= raw_aio_flush,
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246

    .bdrv_read          = raw_read,
    .bdrv_write         = raw_write,
    .bdrv_getlength     = raw_getlength,

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

    /* generic scsi device */
1247 1248
    .bdrv_ioctl         = hdev_ioctl,
    .bdrv_aio_ioctl     = hdev_aio_ioctl,
1249 1250 1251
};
#endif /* __linux__ */

A
Aurelien Jarno 已提交
1252
#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1253 1254 1255 1256 1257 1258 1259
static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
{
    BDRVRawState *s = bs->opaque;
    int ret;

    s->type = FTYPE_CD;

B
Blue Swirl 已提交
1260
    ret = raw_open_common(bs, filename, flags, 0);
1261 1262 1263 1264 1265 1266 1267 1268
    if (ret)
        return ret;

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

1269 1270 1271 1272 1273 1274 1275 1276
static int cdrom_probe_device(const char *filename)
{
    if (strstart(filename, "/dev/cd", NULL) ||
            strstart(filename, "/dev/acd", NULL))
        return 100;
    return 0;
}

1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
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;
}

static int cdrom_eject(BlockDriverState *bs, int eject_flag)
{
    BDRVRawState *s = bs->opaque;

    if (s->fd < 0)
        return -ENOTSUP;

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

    if (cdrom_reopen(bs) < 0)
        return -ENOTSUP;
    return 0;
}

static int cdrom_set_locked(BlockDriverState *bs, int locked)
{
    BDRVRawState *s = bs->opaque;

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

    return 0;
}

static BlockDriver bdrv_host_cdrom = {
    .format_name        = "host_cdrom",
    .instance_size      = sizeof(BDRVRawState),
1347
    .bdrv_probe_device	= cdrom_probe_device,
1348 1349 1350
    .bdrv_open          = cdrom_open,
    .bdrv_close         = raw_close,
    .bdrv_create        = hdev_create,
1351
    .create_options     = raw_create_options,
1352
    .no_zero_init       = 1,
1353 1354 1355 1356
    .bdrv_flush         = raw_flush,

    .bdrv_aio_readv     = raw_aio_readv,
    .bdrv_aio_writev    = raw_aio_writev,
1357
    .bdrv_aio_flush	= raw_aio_flush,
1358 1359 1360 1361 1362

    .bdrv_read          = raw_read,
    .bdrv_write         = raw_write,
    .bdrv_getlength     = raw_getlength,

B
bellard 已提交
1363
    /* removable device support */
1364 1365 1366
    .bdrv_is_inserted   = cdrom_is_inserted,
    .bdrv_eject         = cdrom_eject,
    .bdrv_set_locked    = cdrom_set_locked,
B
bellard 已提交
1367
};
1368
#endif /* __FreeBSD__ */
1369 1370 1371

static void bdrv_raw_init(void)
{
1372 1373 1374 1375
    /*
     * Register all the drivers.  Note that order is important, the driver
     * registered last will get probed first.
     */
1376 1377
    bdrv_register(&bdrv_raw);
    bdrv_register(&bdrv_host_device);
1378 1379 1380 1381
#ifdef __linux__
    bdrv_register(&bdrv_host_floppy);
    bdrv_register(&bdrv_host_cdrom);
#endif
A
Aurelien Jarno 已提交
1382
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1383 1384
    bdrv_register(&bdrv_host_cdrom);
#endif
1385 1386 1387
}

block_init(bdrv_raw_init);