2 * Block driver for RAW files (posix)
4 * Copyright (c) 2006 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu-common.h"
25 #include "qemu/timer.h"
27 #include "block/block_int.h"
28 #include "qemu/module.h"
30 #include "block/thread-pool.h"
34 #if defined(__APPLE__) && (__MACH__)
36 #include <sys/param.h>
37 #include <IOKit/IOKitLib.h>
38 #include <IOKit/IOBSD.h>
39 #include <IOKit/storage/IOMediaBSDClient.h>
40 #include <IOKit/storage/IOMedia.h>
41 #include <IOKit/storage/IOCDMedia.h>
42 //#include <IOKit/storage/IOCDTypes.h>
43 #include <CoreFoundation/CoreFoundation.h>
47 #define _POSIX_PTHREAD_SEMANTICS 1
51 #include <sys/types.h>
53 #include <sys/ioctl.h>
54 #include <sys/param.h>
55 #include <linux/cdrom.h>
60 #include <linux/fiemap.h>
62 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
63 #include <linux/falloc.h>
65 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
71 #include <sys/ioctl.h>
72 #include <sys/disklabel.h>
77 #include <sys/ioctl.h>
78 #include <sys/disklabel.h>
84 #include <sys/ioctl.h>
85 #include <sys/diskslice.h>
92 //#define DEBUG_FLOPPY
95 #if defined(DEBUG_BLOCK)
96 #define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
97 { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
99 #define DEBUG_BLOCK_PRINT(formatCstr, ...)
102 /* OS X does not have O_DSYNC */
105 #define O_DSYNC O_SYNC
106 #elif defined(O_FSYNC)
107 #define O_DSYNC O_FSYNC
111 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
113 #define O_DIRECT O_DSYNC
120 /* if the FD is not accessed during that time (in ns), we try to
121 reopen it to see if the disk has been changed */
122 #define FD_OPEN_TIMEOUT (1000000000)
124 #define MAX_BLOCKSIZE 4096
126 typedef struct BDRVRawState
{
130 #if defined(__linux__)
131 /* linux floppy specific */
132 int64_t fd_open_time
;
133 int64_t fd_error_time
;
135 int fd_media_changed
;
137 #ifdef CONFIG_LINUX_AIO
144 bool has_discard
: 1;
147 typedef struct BDRVRawReopenState
{
150 #ifdef CONFIG_LINUX_AIO
153 } BDRVRawReopenState
;
155 static int fd_open(BlockDriverState
*bs
);
156 static int64_t raw_getlength(BlockDriverState
*bs
);
158 typedef struct RawPosixAIOData
{
159 BlockDriverState
*bs
;
162 struct iovec
*aio_iov
;
167 #define aio_ioctl_cmd aio_nbytes /* for QEMU_AIO_IOCTL */
172 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
173 static int cdrom_reopen(BlockDriverState
*bs
);
176 #if defined(__NetBSD__)
177 static int raw_normalize_devicepath(const char **filename
)
179 static char namebuf
[PATH_MAX
];
180 const char *dp
, *fname
;
184 dp
= strrchr(fname
, '/');
185 if (lstat(fname
, &sb
) < 0) {
186 fprintf(stderr
, "%s: stat failed: %s\n",
187 fname
, strerror(errno
));
191 if (!S_ISBLK(sb
.st_mode
)) {
196 snprintf(namebuf
, PATH_MAX
, "r%s", fname
);
198 snprintf(namebuf
, PATH_MAX
, "%.*s/r%s",
199 (int)(dp
- fname
), fname
, dp
+ 1);
201 fprintf(stderr
, "%s is a block device", fname
);
203 fprintf(stderr
, ", using %s\n", *filename
);
208 static int raw_normalize_devicepath(const char **filename
)
214 static void raw_parse_flags(int bdrv_flags
, int *open_flags
)
216 assert(open_flags
!= NULL
);
218 *open_flags
|= O_BINARY
;
219 *open_flags
&= ~O_ACCMODE
;
220 if (bdrv_flags
& BDRV_O_RDWR
) {
221 *open_flags
|= O_RDWR
;
223 *open_flags
|= O_RDONLY
;
226 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
227 * and O_DIRECT for no caching. */
228 if ((bdrv_flags
& BDRV_O_NOCACHE
)) {
229 *open_flags
|= O_DIRECT
;
233 #ifdef CONFIG_LINUX_AIO
234 static int raw_set_aio(void **aio_ctx
, int *use_aio
, int bdrv_flags
)
237 assert(aio_ctx
!= NULL
);
238 assert(use_aio
!= NULL
);
240 * Currently Linux do AIO only for files opened with O_DIRECT
241 * specified so check NOCACHE flag too
243 if ((bdrv_flags
& (BDRV_O_NOCACHE
|BDRV_O_NATIVE_AIO
)) ==
244 (BDRV_O_NOCACHE
|BDRV_O_NATIVE_AIO
)) {
246 /* if non-NULL, laio_init() has already been run */
247 if (*aio_ctx
== NULL
) {
248 *aio_ctx
= laio_init();
265 static int raw_open_common(BlockDriverState
*bs
, const char *filename
,
266 int bdrv_flags
, int open_flags
)
268 BDRVRawState
*s
= bs
->opaque
;
271 ret
= raw_normalize_devicepath(&filename
);
276 s
->open_flags
= open_flags
;
277 raw_parse_flags(bdrv_flags
, &s
->open_flags
);
280 fd
= qemu_open(filename
, s
->open_flags
, 0644);
289 #ifdef CONFIG_LINUX_AIO
290 if (raw_set_aio(&s
->aio_ctx
, &s
->use_aio
, bdrv_flags
)) {
298 if (platform_test_xfs_fd(s
->fd
)) {
306 static int raw_open(BlockDriverState
*bs
, const char *filename
, int flags
)
308 BDRVRawState
*s
= bs
->opaque
;
310 s
->type
= FTYPE_FILE
;
311 return raw_open_common(bs
, filename
, flags
, 0);
314 static int raw_reopen_prepare(BDRVReopenState
*state
,
315 BlockReopenQueue
*queue
, Error
**errp
)
318 BDRVRawReopenState
*raw_s
;
321 assert(state
!= NULL
);
322 assert(state
->bs
!= NULL
);
324 s
= state
->bs
->opaque
;
326 state
->opaque
= g_malloc0(sizeof(BDRVRawReopenState
));
327 raw_s
= state
->opaque
;
329 #ifdef CONFIG_LINUX_AIO
330 raw_s
->use_aio
= s
->use_aio
;
332 /* we can use s->aio_ctx instead of a copy, because the use_aio flag is
333 * valid in the 'false' condition even if aio_ctx is set, and raw_set_aio()
334 * won't override aio_ctx if aio_ctx is non-NULL */
335 if (raw_set_aio(&s
->aio_ctx
, &raw_s
->use_aio
, state
->flags
)) {
340 if (s
->type
== FTYPE_FD
|| s
->type
== FTYPE_CD
) {
341 raw_s
->open_flags
|= O_NONBLOCK
;
344 raw_parse_flags(state
->flags
, &raw_s
->open_flags
);
348 int fcntl_flags
= O_APPEND
| O_NONBLOCK
;
350 fcntl_flags
|= O_NOATIME
;
354 /* Not all operating systems have O_ASYNC, and those that don't
355 * will not let us track the state into raw_s->open_flags (typically
356 * you achieve the same effect with an ioctl, for example I_SETSIG
357 * on Solaris). But we do not use O_ASYNC, so that's fine.
359 assert((s
->open_flags
& O_ASYNC
) == 0);
362 if ((raw_s
->open_flags
& ~fcntl_flags
) == (s
->open_flags
& ~fcntl_flags
)) {
363 /* dup the original fd */
364 /* TODO: use qemu fcntl wrapper */
365 #ifdef F_DUPFD_CLOEXEC
366 raw_s
->fd
= fcntl(s
->fd
, F_DUPFD_CLOEXEC
, 0);
368 raw_s
->fd
= dup(s
->fd
);
369 if (raw_s
->fd
!= -1) {
370 qemu_set_cloexec(raw_s
->fd
);
373 if (raw_s
->fd
>= 0) {
374 ret
= fcntl_setfl(raw_s
->fd
, raw_s
->open_flags
);
376 qemu_close(raw_s
->fd
);
382 /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
383 if (raw_s
->fd
== -1) {
384 assert(!(raw_s
->open_flags
& O_CREAT
));
385 raw_s
->fd
= qemu_open(state
->bs
->filename
, raw_s
->open_flags
);
386 if (raw_s
->fd
== -1) {
394 static void raw_reopen_commit(BDRVReopenState
*state
)
396 BDRVRawReopenState
*raw_s
= state
->opaque
;
397 BDRVRawState
*s
= state
->bs
->opaque
;
399 s
->open_flags
= raw_s
->open_flags
;
403 #ifdef CONFIG_LINUX_AIO
404 s
->use_aio
= raw_s
->use_aio
;
407 g_free(state
->opaque
);
408 state
->opaque
= NULL
;
412 static void raw_reopen_abort(BDRVReopenState
*state
)
414 BDRVRawReopenState
*raw_s
= state
->opaque
;
416 /* nothing to do if NULL, we didn't get far enough */
421 if (raw_s
->fd
>= 0) {
422 qemu_close(raw_s
->fd
);
425 g_free(state
->opaque
);
426 state
->opaque
= NULL
;
430 /* XXX: use host sector size if necessary with:
431 #ifdef DIOCGSECTORSIZE
433 unsigned int sectorsize = 512;
434 if (!ioctl(fd, DIOCGSECTORSIZE, §orsize) &&
435 sectorsize > bufsize)
436 bufsize = sectorsize;
440 uint32_t blockSize = 512;
441 if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
447 static ssize_t
handle_aiocb_ioctl(RawPosixAIOData
*aiocb
)
451 ret
= ioctl(aiocb
->aio_fildes
, aiocb
->aio_ioctl_cmd
, aiocb
->aio_ioctl_buf
);
459 static ssize_t
handle_aiocb_flush(RawPosixAIOData
*aiocb
)
463 ret
= qemu_fdatasync(aiocb
->aio_fildes
);
472 static bool preadv_present
= true;
475 qemu_preadv(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
477 return preadv(fd
, iov
, nr_iov
, offset
);
481 qemu_pwritev(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
483 return pwritev(fd
, iov
, nr_iov
, offset
);
488 static bool preadv_present
= false;
491 qemu_preadv(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
497 qemu_pwritev(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
504 static ssize_t
handle_aiocb_rw_vector(RawPosixAIOData
*aiocb
)
509 if (aiocb
->aio_type
& QEMU_AIO_WRITE
)
510 len
= qemu_pwritev(aiocb
->aio_fildes
,
515 len
= qemu_preadv(aiocb
->aio_fildes
,
519 } while (len
== -1 && errno
== EINTR
);
528 * Read/writes the data to/from a given linear buffer.
530 * Returns the number of bytes handles or -errno in case of an error. Short
531 * reads are only returned if the end of the file is reached.
533 static ssize_t
handle_aiocb_rw_linear(RawPosixAIOData
*aiocb
, char *buf
)
538 while (offset
< aiocb
->aio_nbytes
) {
539 if (aiocb
->aio_type
& QEMU_AIO_WRITE
) {
540 len
= pwrite(aiocb
->aio_fildes
,
541 (const char *)buf
+ offset
,
542 aiocb
->aio_nbytes
- offset
,
543 aiocb
->aio_offset
+ offset
);
545 len
= pread(aiocb
->aio_fildes
,
547 aiocb
->aio_nbytes
- offset
,
548 aiocb
->aio_offset
+ offset
);
550 if (len
== -1 && errno
== EINTR
) {
552 } else if (len
== -1) {
555 } else if (len
== 0) {
564 static ssize_t
handle_aiocb_rw(RawPosixAIOData
*aiocb
)
569 if (!(aiocb
->aio_type
& QEMU_AIO_MISALIGNED
)) {
571 * If there is just a single buffer, and it is properly aligned
572 * we can just use plain pread/pwrite without any problems.
574 if (aiocb
->aio_niov
== 1) {
575 return handle_aiocb_rw_linear(aiocb
, aiocb
->aio_iov
->iov_base
);
578 * We have more than one iovec, and all are properly aligned.
580 * Try preadv/pwritev first and fall back to linearizing the
581 * buffer if it's not supported.
583 if (preadv_present
) {
584 nbytes
= handle_aiocb_rw_vector(aiocb
);
585 if (nbytes
== aiocb
->aio_nbytes
||
586 (nbytes
< 0 && nbytes
!= -ENOSYS
)) {
589 preadv_present
= false;
593 * XXX(hch): short read/write. no easy way to handle the reminder
594 * using these interfaces. For now retry using plain
600 * Ok, we have to do it the hard way, copy all segments into
601 * a single aligned buffer.
603 buf
= qemu_blockalign(aiocb
->bs
, aiocb
->aio_nbytes
);
604 if (aiocb
->aio_type
& QEMU_AIO_WRITE
) {
608 for (i
= 0; i
< aiocb
->aio_niov
; ++i
) {
609 memcpy(p
, aiocb
->aio_iov
[i
].iov_base
, aiocb
->aio_iov
[i
].iov_len
);
610 p
+= aiocb
->aio_iov
[i
].iov_len
;
614 nbytes
= handle_aiocb_rw_linear(aiocb
, buf
);
615 if (!(aiocb
->aio_type
& QEMU_AIO_WRITE
)) {
617 size_t count
= aiocb
->aio_nbytes
, copy
;
620 for (i
= 0; i
< aiocb
->aio_niov
&& count
; ++i
) {
622 if (copy
> aiocb
->aio_iov
[i
].iov_len
) {
623 copy
= aiocb
->aio_iov
[i
].iov_len
;
625 memcpy(aiocb
->aio_iov
[i
].iov_base
, p
, copy
);
636 static int xfs_discard(BDRVRawState
*s
, int64_t offset
, uint64_t bytes
)
638 struct xfs_flock64 fl
;
640 memset(&fl
, 0, sizeof(fl
));
641 fl
.l_whence
= SEEK_SET
;
645 if (xfsctl(NULL
, s
->fd
, XFS_IOC_UNRESVSP64
, &fl
) < 0) {
646 DEBUG_BLOCK_PRINT("cannot punch hole (%s)\n", strerror(errno
));
654 static ssize_t
handle_aiocb_discard(RawPosixAIOData
*aiocb
)
656 int ret
= -EOPNOTSUPP
;
657 BDRVRawState
*s
= aiocb
->bs
->opaque
;
659 if (s
->has_discard
== 0) {
663 if (aiocb
->aio_type
& QEMU_AIO_BLKDEV
) {
666 uint64_t range
[2] = { aiocb
->aio_offset
, aiocb
->aio_nbytes
};
667 if (ioctl(aiocb
->aio_fildes
, BLKDISCARD
, range
) == 0) {
670 } while (errno
== EINTR
);
677 return xfs_discard(s
, aiocb
->aio_offset
, aiocb
->aio_nbytes
);
681 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
683 if (fallocate(s
->fd
, FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
,
684 aiocb
->aio_offset
, aiocb
->aio_nbytes
) == 0) {
687 } while (errno
== EINTR
);
693 if (ret
== -ENODEV
|| ret
== -ENOSYS
|| ret
== -EOPNOTSUPP
||
701 static int aio_worker(void *arg
)
703 RawPosixAIOData
*aiocb
= arg
;
706 switch (aiocb
->aio_type
& QEMU_AIO_TYPE_MASK
) {
708 ret
= handle_aiocb_rw(aiocb
);
709 if (ret
>= 0 && ret
< aiocb
->aio_nbytes
&& aiocb
->bs
->growable
) {
710 iov_memset(aiocb
->aio_iov
, aiocb
->aio_niov
, ret
,
711 0, aiocb
->aio_nbytes
- ret
);
713 ret
= aiocb
->aio_nbytes
;
715 if (ret
== aiocb
->aio_nbytes
) {
717 } else if (ret
>= 0 && ret
< aiocb
->aio_nbytes
) {
722 ret
= handle_aiocb_rw(aiocb
);
723 if (ret
== aiocb
->aio_nbytes
) {
725 } else if (ret
>= 0 && ret
< aiocb
->aio_nbytes
) {
730 ret
= handle_aiocb_flush(aiocb
);
733 ret
= handle_aiocb_ioctl(aiocb
);
735 case QEMU_AIO_DISCARD
:
736 ret
= handle_aiocb_discard(aiocb
);
739 fprintf(stderr
, "invalid aio request (0x%x)\n", aiocb
->aio_type
);
744 g_slice_free(RawPosixAIOData
, aiocb
);
748 static BlockDriverAIOCB
*paio_submit(BlockDriverState
*bs
, int fd
,
749 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
750 BlockDriverCompletionFunc
*cb
, void *opaque
, int type
)
752 RawPosixAIOData
*acb
= g_slice_new(RawPosixAIOData
);
755 acb
->aio_type
= type
;
756 acb
->aio_fildes
= fd
;
759 acb
->aio_iov
= qiov
->iov
;
760 acb
->aio_niov
= qiov
->niov
;
762 acb
->aio_nbytes
= nb_sectors
* 512;
763 acb
->aio_offset
= sector_num
* 512;
765 trace_paio_submit(acb
, opaque
, sector_num
, nb_sectors
, type
);
766 return thread_pool_submit_aio(aio_worker
, acb
, cb
, opaque
);
769 static BlockDriverAIOCB
*raw_aio_submit(BlockDriverState
*bs
,
770 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
771 BlockDriverCompletionFunc
*cb
, void *opaque
, int type
)
773 BDRVRawState
*s
= bs
->opaque
;
779 * If O_DIRECT is used the buffer needs to be aligned on a sector
780 * boundary. Check if this is the case or tell the low-level
781 * driver that it needs to copy the buffer.
783 if ((bs
->open_flags
& BDRV_O_NOCACHE
)) {
784 if (!bdrv_qiov_is_aligned(bs
, qiov
)) {
785 type
|= QEMU_AIO_MISALIGNED
;
786 #ifdef CONFIG_LINUX_AIO
787 } else if (s
->use_aio
) {
788 return laio_submit(bs
, s
->aio_ctx
, s
->fd
, sector_num
, qiov
,
789 nb_sectors
, cb
, opaque
, type
);
794 return paio_submit(bs
, s
->fd
, sector_num
, qiov
, nb_sectors
,
798 static BlockDriverAIOCB
*raw_aio_readv(BlockDriverState
*bs
,
799 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
800 BlockDriverCompletionFunc
*cb
, void *opaque
)
802 return raw_aio_submit(bs
, sector_num
, qiov
, nb_sectors
,
803 cb
, opaque
, QEMU_AIO_READ
);
806 static BlockDriverAIOCB
*raw_aio_writev(BlockDriverState
*bs
,
807 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
808 BlockDriverCompletionFunc
*cb
, void *opaque
)
810 return raw_aio_submit(bs
, sector_num
, qiov
, nb_sectors
,
811 cb
, opaque
, QEMU_AIO_WRITE
);
814 static BlockDriverAIOCB
*raw_aio_flush(BlockDriverState
*bs
,
815 BlockDriverCompletionFunc
*cb
, void *opaque
)
817 BDRVRawState
*s
= bs
->opaque
;
822 return paio_submit(bs
, s
->fd
, 0, NULL
, 0, cb
, opaque
, QEMU_AIO_FLUSH
);
825 static void raw_close(BlockDriverState
*bs
)
827 BDRVRawState
*s
= bs
->opaque
;
834 static int raw_truncate(BlockDriverState
*bs
, int64_t offset
)
836 BDRVRawState
*s
= bs
->opaque
;
839 if (fstat(s
->fd
, &st
)) {
843 if (S_ISREG(st
.st_mode
)) {
844 if (ftruncate(s
->fd
, offset
) < 0) {
847 } else if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
848 if (offset
> raw_getlength(bs
)) {
859 static int64_t raw_getlength(BlockDriverState
*bs
)
861 BDRVRawState
*s
= bs
->opaque
;
867 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
870 if (ioctl(fd
, DIOCGDINFO
, &dl
))
872 return (uint64_t)dl
.d_secsize
*
873 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
877 #elif defined(__NetBSD__)
878 static int64_t raw_getlength(BlockDriverState
*bs
)
880 BDRVRawState
*s
= bs
->opaque
;
886 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
887 struct dkwedge_info dkw
;
889 if (ioctl(fd
, DIOCGWEDGEINFO
, &dkw
) != -1) {
890 return dkw
.dkw_size
* 512;
894 if (ioctl(fd
, DIOCGDINFO
, &dl
))
896 return (uint64_t)dl
.d_secsize
*
897 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
902 #elif defined(__sun__)
903 static int64_t raw_getlength(BlockDriverState
*bs
)
905 BDRVRawState
*s
= bs
->opaque
;
906 struct dk_minfo minfo
;
915 * Use the DKIOCGMEDIAINFO ioctl to read the size.
917 ret
= ioctl(s
->fd
, DKIOCGMEDIAINFO
, &minfo
);
919 return minfo
.dki_lbsize
* minfo
.dki_capacity
;
923 * There are reports that lseek on some devices fails, but
924 * irc discussion said that contingency on contingency was overkill.
926 return lseek(s
->fd
, 0, SEEK_END
);
928 #elif defined(CONFIG_BSD)
929 static int64_t raw_getlength(BlockDriverState
*bs
)
931 BDRVRawState
*s
= bs
->opaque
;
935 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
944 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
947 if (!fstat(fd
, &sb
) && (S_IFCHR
& sb
.st_mode
)) {
948 #ifdef DIOCGMEDIASIZE
949 if (ioctl(fd
, DIOCGMEDIASIZE
, (off_t
*)&size
))
950 #elif defined(DIOCGPART)
953 if (ioctl(fd
, DIOCGPART
, &pi
) == 0)
954 size
= pi
.media_size
;
960 #if defined(__APPLE__) && defined(__MACH__)
961 size
= LONG_LONG_MAX
;
963 size
= lseek(fd
, 0LL, SEEK_END
);
965 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
968 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
969 if (size
== 2048LL * (unsigned)-1)
971 /* XXX no disc? maybe we need to reopen... */
972 if (size
<= 0 && !reopened
&& cdrom_reopen(bs
) >= 0) {
979 size
= lseek(fd
, 0, SEEK_END
);
984 static int64_t raw_getlength(BlockDriverState
*bs
)
986 BDRVRawState
*s
= bs
->opaque
;
994 return lseek(s
->fd
, 0, SEEK_END
);
998 static int64_t raw_get_allocated_file_size(BlockDriverState
*bs
)
1001 BDRVRawState
*s
= bs
->opaque
;
1003 if (fstat(s
->fd
, &st
) < 0) {
1006 return (int64_t)st
.st_blocks
* 512;
1009 static int raw_create(const char *filename
, QEMUOptionParameter
*options
)
1013 int64_t total_size
= 0;
1015 /* Read out options */
1016 while (options
&& options
->name
) {
1017 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
1018 total_size
= options
->value
.n
/ BDRV_SECTOR_SIZE
;
1023 fd
= qemu_open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
,
1028 if (ftruncate(fd
, total_size
* BDRV_SECTOR_SIZE
) != 0) {
1031 if (qemu_close(fd
) != 0) {
1039 * Returns true iff the specified sector is present in the disk image. Drivers
1040 * not implementing the functionality are assumed to not support backing files,
1041 * hence all their sectors are reported as allocated.
1043 * If 'sector_num' is beyond the end of the disk image the return value is 0
1044 * and 'pnum' is set to 0.
1046 * 'pnum' is set to the number of sectors (including and immediately following
1047 * the specified sector) that are known to be in the same
1048 * allocated/unallocated state.
1050 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
1051 * beyond the end of the disk image it will be clamped.
1053 static int coroutine_fn
raw_co_is_allocated(BlockDriverState
*bs
,
1055 int nb_sectors
, int *pnum
)
1057 off_t start
, data
, hole
;
1065 start
= sector_num
* BDRV_SECTOR_SIZE
;
1067 #ifdef CONFIG_FIEMAP
1069 BDRVRawState
*s
= bs
->opaque
;
1072 struct fiemap_extent fe
;
1075 f
.fm
.fm_start
= start
;
1076 f
.fm
.fm_length
= (int64_t)nb_sectors
* BDRV_SECTOR_SIZE
;
1078 f
.fm
.fm_extent_count
= 1;
1079 f
.fm
.fm_reserved
= 0;
1080 if (ioctl(s
->fd
, FS_IOC_FIEMAP
, &f
) == -1) {
1081 /* Assume everything is allocated. */
1086 if (f
.fm
.fm_mapped_extents
== 0) {
1087 /* No extents found, data is beyond f.fm.fm_start + f.fm.fm_length.
1088 * f.fm.fm_start + f.fm.fm_length must be clamped to the file size!
1090 off_t length
= lseek(s
->fd
, 0, SEEK_END
);
1091 hole
= f
.fm
.fm_start
;
1092 data
= MIN(f
.fm
.fm_start
+ f
.fm
.fm_length
, length
);
1094 data
= f
.fe
.fe_logical
;
1095 hole
= f
.fe
.fe_logical
+ f
.fe
.fe_length
;
1098 #elif defined SEEK_HOLE && defined SEEK_DATA
1100 BDRVRawState
*s
= bs
->opaque
;
1102 hole
= lseek(s
->fd
, start
, SEEK_HOLE
);
1104 /* -ENXIO indicates that sector_num was past the end of the file.
1105 * There is a virtual hole there. */
1106 assert(errno
!= -ENXIO
);
1108 /* Most likely EINVAL. Assume everything is allocated. */
1116 /* On a hole. We need another syscall to find its end. */
1117 data
= lseek(s
->fd
, start
, SEEK_DATA
);
1119 data
= lseek(s
->fd
, 0, SEEK_END
);
1127 if (data
<= start
) {
1128 /* On a data extent, compute sectors to the end of the extent. */
1129 *pnum
= MIN(nb_sectors
, (hole
- start
) / BDRV_SECTOR_SIZE
);
1132 /* On a hole, compute sectors to the beginning of the next extent. */
1133 *pnum
= MIN(nb_sectors
, (data
- start
) / BDRV_SECTOR_SIZE
);
1138 static coroutine_fn BlockDriverAIOCB
*raw_aio_discard(BlockDriverState
*bs
,
1139 int64_t sector_num
, int nb_sectors
,
1140 BlockDriverCompletionFunc
*cb
, void *opaque
)
1142 BDRVRawState
*s
= bs
->opaque
;
1144 return paio_submit(bs
, s
->fd
, sector_num
, NULL
, nb_sectors
,
1145 cb
, opaque
, QEMU_AIO_DISCARD
);
1148 static QEMUOptionParameter raw_create_options
[] = {
1150 .name
= BLOCK_OPT_SIZE
,
1152 .help
= "Virtual disk size"
1157 static BlockDriver bdrv_file
= {
1158 .format_name
= "file",
1159 .protocol_name
= "file",
1160 .instance_size
= sizeof(BDRVRawState
),
1161 .bdrv_probe
= NULL
, /* no probe for protocols */
1162 .bdrv_file_open
= raw_open
,
1163 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1164 .bdrv_reopen_commit
= raw_reopen_commit
,
1165 .bdrv_reopen_abort
= raw_reopen_abort
,
1166 .bdrv_close
= raw_close
,
1167 .bdrv_create
= raw_create
,
1168 .bdrv_co_is_allocated
= raw_co_is_allocated
,
1170 .bdrv_aio_readv
= raw_aio_readv
,
1171 .bdrv_aio_writev
= raw_aio_writev
,
1172 .bdrv_aio_flush
= raw_aio_flush
,
1173 .bdrv_aio_discard
= raw_aio_discard
,
1175 .bdrv_truncate
= raw_truncate
,
1176 .bdrv_getlength
= raw_getlength
,
1177 .bdrv_get_allocated_file_size
1178 = raw_get_allocated_file_size
,
1180 .create_options
= raw_create_options
,
1183 /***********************************************/
1186 #if defined(__APPLE__) && defined(__MACH__)
1187 static kern_return_t
FindEjectableCDMedia( io_iterator_t
*mediaIterator
);
1188 static kern_return_t
GetBSDPath( io_iterator_t mediaIterator
, char *bsdPath
, CFIndex maxPathSize
);
1190 kern_return_t
FindEjectableCDMedia( io_iterator_t
*mediaIterator
)
1192 kern_return_t kernResult
;
1193 mach_port_t masterPort
;
1194 CFMutableDictionaryRef classesToMatch
;
1196 kernResult
= IOMasterPort( MACH_PORT_NULL
, &masterPort
);
1197 if ( KERN_SUCCESS
!= kernResult
) {
1198 printf( "IOMasterPort returned %d\n", kernResult
);
1201 classesToMatch
= IOServiceMatching( kIOCDMediaClass
);
1202 if ( classesToMatch
== NULL
) {
1203 printf( "IOServiceMatching returned a NULL dictionary.\n" );
1205 CFDictionarySetValue( classesToMatch
, CFSTR( kIOMediaEjectableKey
), kCFBooleanTrue
);
1207 kernResult
= IOServiceGetMatchingServices( masterPort
, classesToMatch
, mediaIterator
);
1208 if ( KERN_SUCCESS
!= kernResult
)
1210 printf( "IOServiceGetMatchingServices returned %d\n", kernResult
);
1216 kern_return_t
GetBSDPath( io_iterator_t mediaIterator
, char *bsdPath
, CFIndex maxPathSize
)
1218 io_object_t nextMedia
;
1219 kern_return_t kernResult
= KERN_FAILURE
;
1221 nextMedia
= IOIteratorNext( mediaIterator
);
1224 CFTypeRef bsdPathAsCFString
;
1225 bsdPathAsCFString
= IORegistryEntryCreateCFProperty( nextMedia
, CFSTR( kIOBSDNameKey
), kCFAllocatorDefault
, 0 );
1226 if ( bsdPathAsCFString
) {
1227 size_t devPathLength
;
1228 strcpy( bsdPath
, _PATH_DEV
);
1229 strcat( bsdPath
, "r" );
1230 devPathLength
= strlen( bsdPath
);
1231 if ( CFStringGetCString( bsdPathAsCFString
, bsdPath
+ devPathLength
, maxPathSize
- devPathLength
, kCFStringEncodingASCII
) ) {
1232 kernResult
= KERN_SUCCESS
;
1234 CFRelease( bsdPathAsCFString
);
1236 IOObjectRelease( nextMedia
);
1244 static int hdev_probe_device(const char *filename
)
1248 /* allow a dedicated CD-ROM driver to match with a higher priority */
1249 if (strstart(filename
, "/dev/cdrom", NULL
))
1252 if (stat(filename
, &st
) >= 0 &&
1253 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
1260 static int check_hdev_writable(BDRVRawState
*s
)
1262 #if defined(BLKROGET)
1263 /* Linux block devices can be configured "read-only" using blockdev(8).
1264 * This is independent of device node permissions and therefore open(2)
1265 * with O_RDWR succeeds. Actual writes fail with EPERM.
1267 * bdrv_open() is supposed to fail if the disk is read-only. Explicitly
1268 * check for read-only block devices so that Linux block devices behave
1274 if (fstat(s
->fd
, &st
)) {
1278 if (!S_ISBLK(st
.st_mode
)) {
1282 if (ioctl(s
->fd
, BLKROGET
, &readonly
) < 0) {
1289 #endif /* defined(BLKROGET) */
1293 static int hdev_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1295 BDRVRawState
*s
= bs
->opaque
;
1298 #if defined(__APPLE__) && defined(__MACH__)
1299 if (strstart(filename
, "/dev/cdrom", NULL
)) {
1300 kern_return_t kernResult
;
1301 io_iterator_t mediaIterator
;
1302 char bsdPath
[ MAXPATHLEN
];
1305 kernResult
= FindEjectableCDMedia( &mediaIterator
);
1306 kernResult
= GetBSDPath( mediaIterator
, bsdPath
, sizeof( bsdPath
) );
1308 if ( bsdPath
[ 0 ] != '\0' ) {
1309 strcat(bsdPath
,"s0");
1310 /* some CDs don't have a partition 0 */
1311 fd
= qemu_open(bsdPath
, O_RDONLY
| O_BINARY
| O_LARGEFILE
);
1313 bsdPath
[strlen(bsdPath
)-1] = '1';
1320 if ( mediaIterator
)
1321 IOObjectRelease( mediaIterator
);
1325 s
->type
= FTYPE_FILE
;
1326 #if defined(__linux__)
1328 char resolved_path
[ MAXPATHLEN
], *temp
;
1330 temp
= realpath(filename
, resolved_path
);
1331 if (temp
&& strstart(temp
, "/dev/sg", NULL
)) {
1337 ret
= raw_open_common(bs
, filename
, flags
, 0);
1342 if (flags
& BDRV_O_RDWR
) {
1343 ret
= check_hdev_writable(s
);
1353 #if defined(__linux__)
1354 /* Note: we do not have a reliable method to detect if the floppy is
1355 present. The current method is to try to open the floppy at every
1356 I/O and to keep it opened during a few hundreds of ms. */
1357 static int fd_open(BlockDriverState
*bs
)
1359 BDRVRawState
*s
= bs
->opaque
;
1360 int last_media_present
;
1362 if (s
->type
!= FTYPE_FD
)
1364 last_media_present
= (s
->fd
>= 0);
1366 (get_clock() - s
->fd_open_time
) >= FD_OPEN_TIMEOUT
) {
1370 printf("Floppy closed\n");
1374 if (s
->fd_got_error
&&
1375 (get_clock() - s
->fd_error_time
) < FD_OPEN_TIMEOUT
) {
1377 printf("No floppy (open delayed)\n");
1381 s
->fd
= qemu_open(bs
->filename
, s
->open_flags
& ~O_NONBLOCK
);
1383 s
->fd_error_time
= get_clock();
1384 s
->fd_got_error
= 1;
1385 if (last_media_present
)
1386 s
->fd_media_changed
= 1;
1388 printf("No floppy\n");
1393 printf("Floppy opened\n");
1396 if (!last_media_present
)
1397 s
->fd_media_changed
= 1;
1398 s
->fd_open_time
= get_clock();
1399 s
->fd_got_error
= 0;
1403 static int hdev_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1405 BDRVRawState
*s
= bs
->opaque
;
1407 return ioctl(s
->fd
, req
, buf
);
1410 static BlockDriverAIOCB
*hdev_aio_ioctl(BlockDriverState
*bs
,
1411 unsigned long int req
, void *buf
,
1412 BlockDriverCompletionFunc
*cb
, void *opaque
)
1414 BDRVRawState
*s
= bs
->opaque
;
1415 RawPosixAIOData
*acb
;
1417 if (fd_open(bs
) < 0)
1420 acb
= g_slice_new(RawPosixAIOData
);
1422 acb
->aio_type
= QEMU_AIO_IOCTL
;
1423 acb
->aio_fildes
= s
->fd
;
1424 acb
->aio_offset
= 0;
1425 acb
->aio_ioctl_buf
= buf
;
1426 acb
->aio_ioctl_cmd
= req
;
1427 return thread_pool_submit_aio(aio_worker
, acb
, cb
, opaque
);
1430 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1431 static int fd_open(BlockDriverState
*bs
)
1433 BDRVRawState
*s
= bs
->opaque
;
1435 /* this is just to ensure s->fd is sane (its called by io ops) */
1440 #else /* !linux && !FreeBSD */
1442 static int fd_open(BlockDriverState
*bs
)
1447 #endif /* !linux && !FreeBSD */
1449 static coroutine_fn BlockDriverAIOCB
*hdev_aio_discard(BlockDriverState
*bs
,
1450 int64_t sector_num
, int nb_sectors
,
1451 BlockDriverCompletionFunc
*cb
, void *opaque
)
1453 BDRVRawState
*s
= bs
->opaque
;
1455 if (fd_open(bs
) < 0) {
1458 return paio_submit(bs
, s
->fd
, sector_num
, NULL
, nb_sectors
,
1459 cb
, opaque
, QEMU_AIO_DISCARD
|QEMU_AIO_BLKDEV
);
1462 static int hdev_create(const char *filename
, QEMUOptionParameter
*options
)
1466 struct stat stat_buf
;
1467 int64_t total_size
= 0;
1469 /* Read out options */
1470 while (options
&& options
->name
) {
1471 if (!strcmp(options
->name
, "size")) {
1472 total_size
= options
->value
.n
/ BDRV_SECTOR_SIZE
;
1477 fd
= qemu_open(filename
, O_WRONLY
| O_BINARY
);
1481 if (fstat(fd
, &stat_buf
) < 0)
1483 else if (!S_ISBLK(stat_buf
.st_mode
) && !S_ISCHR(stat_buf
.st_mode
))
1485 else if (lseek(fd
, 0, SEEK_END
) < total_size
* BDRV_SECTOR_SIZE
)
1492 static int hdev_has_zero_init(BlockDriverState
*bs
)
1497 static BlockDriver bdrv_host_device
= {
1498 .format_name
= "host_device",
1499 .protocol_name
= "host_device",
1500 .instance_size
= sizeof(BDRVRawState
),
1501 .bdrv_probe_device
= hdev_probe_device
,
1502 .bdrv_file_open
= hdev_open
,
1503 .bdrv_close
= raw_close
,
1504 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1505 .bdrv_reopen_commit
= raw_reopen_commit
,
1506 .bdrv_reopen_abort
= raw_reopen_abort
,
1507 .bdrv_create
= hdev_create
,
1508 .create_options
= raw_create_options
,
1509 .bdrv_has_zero_init
= hdev_has_zero_init
,
1511 .bdrv_aio_readv
= raw_aio_readv
,
1512 .bdrv_aio_writev
= raw_aio_writev
,
1513 .bdrv_aio_flush
= raw_aio_flush
,
1514 .bdrv_aio_discard
= hdev_aio_discard
,
1516 .bdrv_truncate
= raw_truncate
,
1517 .bdrv_getlength
= raw_getlength
,
1518 .bdrv_get_allocated_file_size
1519 = raw_get_allocated_file_size
,
1521 /* generic scsi device */
1523 .bdrv_ioctl
= hdev_ioctl
,
1524 .bdrv_aio_ioctl
= hdev_aio_ioctl
,
1529 static int floppy_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1531 BDRVRawState
*s
= bs
->opaque
;
1536 /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
1537 ret
= raw_open_common(bs
, filename
, flags
, O_NONBLOCK
);
1541 /* close fd so that we can reopen it as needed */
1544 s
->fd_media_changed
= 1;
1549 static int floppy_probe_device(const char *filename
)
1553 struct floppy_struct fdparam
;
1556 if (strstart(filename
, "/dev/fd", NULL
) &&
1557 !strstart(filename
, "/dev/fdset/", NULL
)) {
1561 fd
= qemu_open(filename
, O_RDONLY
| O_NONBLOCK
);
1565 ret
= fstat(fd
, &st
);
1566 if (ret
== -1 || !S_ISBLK(st
.st_mode
)) {
1570 /* Attempt to detect via a floppy specific ioctl */
1571 ret
= ioctl(fd
, FDGETPRM
, &fdparam
);
1582 static int floppy_is_inserted(BlockDriverState
*bs
)
1584 return fd_open(bs
) >= 0;
1587 static int floppy_media_changed(BlockDriverState
*bs
)
1589 BDRVRawState
*s
= bs
->opaque
;
1593 * XXX: we do not have a true media changed indication.
1594 * It does not work if the floppy is changed without trying to read it.
1597 ret
= s
->fd_media_changed
;
1598 s
->fd_media_changed
= 0;
1600 printf("Floppy changed=%d\n", ret
);
1605 static void floppy_eject(BlockDriverState
*bs
, bool eject_flag
)
1607 BDRVRawState
*s
= bs
->opaque
;
1614 fd
= qemu_open(bs
->filename
, s
->open_flags
| O_NONBLOCK
);
1616 if (ioctl(fd
, FDEJECT
, 0) < 0)
1622 static BlockDriver bdrv_host_floppy
= {
1623 .format_name
= "host_floppy",
1624 .protocol_name
= "host_floppy",
1625 .instance_size
= sizeof(BDRVRawState
),
1626 .bdrv_probe_device
= floppy_probe_device
,
1627 .bdrv_file_open
= floppy_open
,
1628 .bdrv_close
= raw_close
,
1629 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1630 .bdrv_reopen_commit
= raw_reopen_commit
,
1631 .bdrv_reopen_abort
= raw_reopen_abort
,
1632 .bdrv_create
= hdev_create
,
1633 .create_options
= raw_create_options
,
1634 .bdrv_has_zero_init
= hdev_has_zero_init
,
1636 .bdrv_aio_readv
= raw_aio_readv
,
1637 .bdrv_aio_writev
= raw_aio_writev
,
1638 .bdrv_aio_flush
= raw_aio_flush
,
1640 .bdrv_truncate
= raw_truncate
,
1641 .bdrv_getlength
= raw_getlength
,
1642 .bdrv_get_allocated_file_size
1643 = raw_get_allocated_file_size
,
1645 /* removable device support */
1646 .bdrv_is_inserted
= floppy_is_inserted
,
1647 .bdrv_media_changed
= floppy_media_changed
,
1648 .bdrv_eject
= floppy_eject
,
1651 static int cdrom_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1653 BDRVRawState
*s
= bs
->opaque
;
1657 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
1658 return raw_open_common(bs
, filename
, flags
, O_NONBLOCK
);
1661 static int cdrom_probe_device(const char *filename
)
1667 fd
= qemu_open(filename
, O_RDONLY
| O_NONBLOCK
);
1671 ret
= fstat(fd
, &st
);
1672 if (ret
== -1 || !S_ISBLK(st
.st_mode
)) {
1676 /* Attempt to detect via a CDROM specific ioctl */
1677 ret
= ioctl(fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
1687 static int cdrom_is_inserted(BlockDriverState
*bs
)
1689 BDRVRawState
*s
= bs
->opaque
;
1692 ret
= ioctl(s
->fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
1693 if (ret
== CDS_DISC_OK
)
1698 static void cdrom_eject(BlockDriverState
*bs
, bool eject_flag
)
1700 BDRVRawState
*s
= bs
->opaque
;
1703 if (ioctl(s
->fd
, CDROMEJECT
, NULL
) < 0)
1704 perror("CDROMEJECT");
1706 if (ioctl(s
->fd
, CDROMCLOSETRAY
, NULL
) < 0)
1707 perror("CDROMEJECT");
1711 static void cdrom_lock_medium(BlockDriverState
*bs
, bool locked
)
1713 BDRVRawState
*s
= bs
->opaque
;
1715 if (ioctl(s
->fd
, CDROM_LOCKDOOR
, locked
) < 0) {
1717 * Note: an error can happen if the distribution automatically
1720 /* perror("CDROM_LOCKDOOR"); */
1724 static BlockDriver bdrv_host_cdrom
= {
1725 .format_name
= "host_cdrom",
1726 .protocol_name
= "host_cdrom",
1727 .instance_size
= sizeof(BDRVRawState
),
1728 .bdrv_probe_device
= cdrom_probe_device
,
1729 .bdrv_file_open
= cdrom_open
,
1730 .bdrv_close
= raw_close
,
1731 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1732 .bdrv_reopen_commit
= raw_reopen_commit
,
1733 .bdrv_reopen_abort
= raw_reopen_abort
,
1734 .bdrv_create
= hdev_create
,
1735 .create_options
= raw_create_options
,
1736 .bdrv_has_zero_init
= hdev_has_zero_init
,
1738 .bdrv_aio_readv
= raw_aio_readv
,
1739 .bdrv_aio_writev
= raw_aio_writev
,
1740 .bdrv_aio_flush
= raw_aio_flush
,
1742 .bdrv_truncate
= raw_truncate
,
1743 .bdrv_getlength
= raw_getlength
,
1744 .bdrv_get_allocated_file_size
1745 = raw_get_allocated_file_size
,
1747 /* removable device support */
1748 .bdrv_is_inserted
= cdrom_is_inserted
,
1749 .bdrv_eject
= cdrom_eject
,
1750 .bdrv_lock_medium
= cdrom_lock_medium
,
1752 /* generic scsi device */
1753 .bdrv_ioctl
= hdev_ioctl
,
1754 .bdrv_aio_ioctl
= hdev_aio_ioctl
,
1756 #endif /* __linux__ */
1758 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1759 static int cdrom_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1761 BDRVRawState
*s
= bs
->opaque
;
1766 ret
= raw_open_common(bs
, filename
, flags
, 0);
1770 /* make sure the door isn't locked at this time */
1771 ioctl(s
->fd
, CDIOCALLOW
);
1775 static int cdrom_probe_device(const char *filename
)
1777 if (strstart(filename
, "/dev/cd", NULL
) ||
1778 strstart(filename
, "/dev/acd", NULL
))
1783 static int cdrom_reopen(BlockDriverState
*bs
)
1785 BDRVRawState
*s
= bs
->opaque
;
1789 * Force reread of possibly changed/newly loaded disc,
1790 * FreeBSD seems to not notice sometimes...
1794 fd
= qemu_open(bs
->filename
, s
->open_flags
, 0644);
1801 /* make sure the door isn't locked at this time */
1802 ioctl(s
->fd
, CDIOCALLOW
);
1806 static int cdrom_is_inserted(BlockDriverState
*bs
)
1808 return raw_getlength(bs
) > 0;
1811 static void cdrom_eject(BlockDriverState
*bs
, bool eject_flag
)
1813 BDRVRawState
*s
= bs
->opaque
;
1818 (void) ioctl(s
->fd
, CDIOCALLOW
);
1821 if (ioctl(s
->fd
, CDIOCEJECT
) < 0)
1822 perror("CDIOCEJECT");
1824 if (ioctl(s
->fd
, CDIOCCLOSE
) < 0)
1825 perror("CDIOCCLOSE");
1831 static void cdrom_lock_medium(BlockDriverState
*bs
, bool locked
)
1833 BDRVRawState
*s
= bs
->opaque
;
1837 if (ioctl(s
->fd
, (locked
? CDIOCPREVENT
: CDIOCALLOW
)) < 0) {
1839 * Note: an error can happen if the distribution automatically
1842 /* perror("CDROM_LOCKDOOR"); */
1846 static BlockDriver bdrv_host_cdrom
= {
1847 .format_name
= "host_cdrom",
1848 .protocol_name
= "host_cdrom",
1849 .instance_size
= sizeof(BDRVRawState
),
1850 .bdrv_probe_device
= cdrom_probe_device
,
1851 .bdrv_file_open
= cdrom_open
,
1852 .bdrv_close
= raw_close
,
1853 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1854 .bdrv_reopen_commit
= raw_reopen_commit
,
1855 .bdrv_reopen_abort
= raw_reopen_abort
,
1856 .bdrv_create
= hdev_create
,
1857 .create_options
= raw_create_options
,
1858 .bdrv_has_zero_init
= hdev_has_zero_init
,
1860 .bdrv_aio_readv
= raw_aio_readv
,
1861 .bdrv_aio_writev
= raw_aio_writev
,
1862 .bdrv_aio_flush
= raw_aio_flush
,
1864 .bdrv_truncate
= raw_truncate
,
1865 .bdrv_getlength
= raw_getlength
,
1866 .bdrv_get_allocated_file_size
1867 = raw_get_allocated_file_size
,
1869 /* removable device support */
1870 .bdrv_is_inserted
= cdrom_is_inserted
,
1871 .bdrv_eject
= cdrom_eject
,
1872 .bdrv_lock_medium
= cdrom_lock_medium
,
1874 #endif /* __FreeBSD__ */
1876 #ifdef CONFIG_LINUX_AIO
1878 * Return the file descriptor for Linux AIO
1880 * This function is a layering violation and should be removed when it becomes
1881 * possible to call the block layer outside the global mutex. It allows the
1882 * caller to hijack the file descriptor so I/O can be performed outside the
1885 int raw_get_aio_fd(BlockDriverState
*bs
)
1893 if (bs
->drv
== bdrv_find_format("raw")) {
1897 /* raw-posix has several protocols so just check for raw_aio_readv */
1898 if (bs
->drv
->bdrv_aio_readv
!= raw_aio_readv
) {
1908 #endif /* CONFIG_LINUX_AIO */
1910 static void bdrv_file_init(void)
1913 * Register all the drivers. Note that order is important, the driver
1914 * registered last will get probed first.
1916 bdrv_register(&bdrv_file
);
1917 bdrv_register(&bdrv_host_device
);
1919 bdrv_register(&bdrv_host_floppy
);
1920 bdrv_register(&bdrv_host_cdrom
);
1922 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1923 bdrv_register(&bdrv_host_cdrom
);
1927 block_init(bdrv_file_init
);