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 QemuOptsList raw_runtime_opts
= {
267 .head
= QTAILQ_HEAD_INITIALIZER(raw_runtime_opts
.head
),
271 .type
= QEMU_OPT_STRING
,
272 .help
= "File name of the image",
274 { /* end of list */ }
278 static int raw_open_common(BlockDriverState
*bs
, QDict
*options
,
279 int bdrv_flags
, int open_flags
)
281 BDRVRawState
*s
= bs
->opaque
;
283 Error
*local_err
= NULL
;
284 const char *filename
;
287 opts
= qemu_opts_create_nofail(&raw_runtime_opts
);
288 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
289 if (error_is_set(&local_err
)) {
290 qerror_report_err(local_err
);
291 error_free(local_err
);
296 filename
= qemu_opt_get(opts
, "filename");
298 ret
= raw_normalize_devicepath(&filename
);
303 s
->open_flags
= open_flags
;
304 raw_parse_flags(bdrv_flags
, &s
->open_flags
);
307 fd
= qemu_open(filename
, s
->open_flags
, 0644);
317 #ifdef CONFIG_LINUX_AIO
318 if (raw_set_aio(&s
->aio_ctx
, &s
->use_aio
, bdrv_flags
)) {
327 if (platform_test_xfs_fd(s
->fd
)) {
338 static int raw_open(BlockDriverState
*bs
, QDict
*options
, int flags
)
340 BDRVRawState
*s
= bs
->opaque
;
342 s
->type
= FTYPE_FILE
;
343 return raw_open_common(bs
, options
, flags
, 0);
346 static int raw_reopen_prepare(BDRVReopenState
*state
,
347 BlockReopenQueue
*queue
, Error
**errp
)
350 BDRVRawReopenState
*raw_s
;
353 assert(state
!= NULL
);
354 assert(state
->bs
!= NULL
);
356 s
= state
->bs
->opaque
;
358 state
->opaque
= g_malloc0(sizeof(BDRVRawReopenState
));
359 raw_s
= state
->opaque
;
361 #ifdef CONFIG_LINUX_AIO
362 raw_s
->use_aio
= s
->use_aio
;
364 /* we can use s->aio_ctx instead of a copy, because the use_aio flag is
365 * valid in the 'false' condition even if aio_ctx is set, and raw_set_aio()
366 * won't override aio_ctx if aio_ctx is non-NULL */
367 if (raw_set_aio(&s
->aio_ctx
, &raw_s
->use_aio
, state
->flags
)) {
372 if (s
->type
== FTYPE_FD
|| s
->type
== FTYPE_CD
) {
373 raw_s
->open_flags
|= O_NONBLOCK
;
376 raw_parse_flags(state
->flags
, &raw_s
->open_flags
);
380 int fcntl_flags
= O_APPEND
| O_NONBLOCK
;
382 fcntl_flags
|= O_NOATIME
;
386 /* Not all operating systems have O_ASYNC, and those that don't
387 * will not let us track the state into raw_s->open_flags (typically
388 * you achieve the same effect with an ioctl, for example I_SETSIG
389 * on Solaris). But we do not use O_ASYNC, so that's fine.
391 assert((s
->open_flags
& O_ASYNC
) == 0);
394 if ((raw_s
->open_flags
& ~fcntl_flags
) == (s
->open_flags
& ~fcntl_flags
)) {
395 /* dup the original fd */
396 /* TODO: use qemu fcntl wrapper */
397 #ifdef F_DUPFD_CLOEXEC
398 raw_s
->fd
= fcntl(s
->fd
, F_DUPFD_CLOEXEC
, 0);
400 raw_s
->fd
= dup(s
->fd
);
401 if (raw_s
->fd
!= -1) {
402 qemu_set_cloexec(raw_s
->fd
);
405 if (raw_s
->fd
>= 0) {
406 ret
= fcntl_setfl(raw_s
->fd
, raw_s
->open_flags
);
408 qemu_close(raw_s
->fd
);
414 /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
415 if (raw_s
->fd
== -1) {
416 assert(!(raw_s
->open_flags
& O_CREAT
));
417 raw_s
->fd
= qemu_open(state
->bs
->filename
, raw_s
->open_flags
);
418 if (raw_s
->fd
== -1) {
426 static void raw_reopen_commit(BDRVReopenState
*state
)
428 BDRVRawReopenState
*raw_s
= state
->opaque
;
429 BDRVRawState
*s
= state
->bs
->opaque
;
431 s
->open_flags
= raw_s
->open_flags
;
435 #ifdef CONFIG_LINUX_AIO
436 s
->use_aio
= raw_s
->use_aio
;
439 g_free(state
->opaque
);
440 state
->opaque
= NULL
;
444 static void raw_reopen_abort(BDRVReopenState
*state
)
446 BDRVRawReopenState
*raw_s
= state
->opaque
;
448 /* nothing to do if NULL, we didn't get far enough */
453 if (raw_s
->fd
>= 0) {
454 qemu_close(raw_s
->fd
);
457 g_free(state
->opaque
);
458 state
->opaque
= NULL
;
462 /* XXX: use host sector size if necessary with:
463 #ifdef DIOCGSECTORSIZE
465 unsigned int sectorsize = 512;
466 if (!ioctl(fd, DIOCGSECTORSIZE, §orsize) &&
467 sectorsize > bufsize)
468 bufsize = sectorsize;
472 uint32_t blockSize = 512;
473 if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
479 static ssize_t
handle_aiocb_ioctl(RawPosixAIOData
*aiocb
)
483 ret
= ioctl(aiocb
->aio_fildes
, aiocb
->aio_ioctl_cmd
, aiocb
->aio_ioctl_buf
);
491 static ssize_t
handle_aiocb_flush(RawPosixAIOData
*aiocb
)
495 ret
= qemu_fdatasync(aiocb
->aio_fildes
);
504 static bool preadv_present
= true;
507 qemu_preadv(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
509 return preadv(fd
, iov
, nr_iov
, offset
);
513 qemu_pwritev(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
515 return pwritev(fd
, iov
, nr_iov
, offset
);
520 static bool preadv_present
= false;
523 qemu_preadv(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
529 qemu_pwritev(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
536 static ssize_t
handle_aiocb_rw_vector(RawPosixAIOData
*aiocb
)
541 if (aiocb
->aio_type
& QEMU_AIO_WRITE
)
542 len
= qemu_pwritev(aiocb
->aio_fildes
,
547 len
= qemu_preadv(aiocb
->aio_fildes
,
551 } while (len
== -1 && errno
== EINTR
);
560 * Read/writes the data to/from a given linear buffer.
562 * Returns the number of bytes handles or -errno in case of an error. Short
563 * reads are only returned if the end of the file is reached.
565 static ssize_t
handle_aiocb_rw_linear(RawPosixAIOData
*aiocb
, char *buf
)
570 while (offset
< aiocb
->aio_nbytes
) {
571 if (aiocb
->aio_type
& QEMU_AIO_WRITE
) {
572 len
= pwrite(aiocb
->aio_fildes
,
573 (const char *)buf
+ offset
,
574 aiocb
->aio_nbytes
- offset
,
575 aiocb
->aio_offset
+ offset
);
577 len
= pread(aiocb
->aio_fildes
,
579 aiocb
->aio_nbytes
- offset
,
580 aiocb
->aio_offset
+ offset
);
582 if (len
== -1 && errno
== EINTR
) {
584 } else if (len
== -1) {
587 } else if (len
== 0) {
596 static ssize_t
handle_aiocb_rw(RawPosixAIOData
*aiocb
)
601 if (!(aiocb
->aio_type
& QEMU_AIO_MISALIGNED
)) {
603 * If there is just a single buffer, and it is properly aligned
604 * we can just use plain pread/pwrite without any problems.
606 if (aiocb
->aio_niov
== 1) {
607 return handle_aiocb_rw_linear(aiocb
, aiocb
->aio_iov
->iov_base
);
610 * We have more than one iovec, and all are properly aligned.
612 * Try preadv/pwritev first and fall back to linearizing the
613 * buffer if it's not supported.
615 if (preadv_present
) {
616 nbytes
= handle_aiocb_rw_vector(aiocb
);
617 if (nbytes
== aiocb
->aio_nbytes
||
618 (nbytes
< 0 && nbytes
!= -ENOSYS
)) {
621 preadv_present
= false;
625 * XXX(hch): short read/write. no easy way to handle the reminder
626 * using these interfaces. For now retry using plain
632 * Ok, we have to do it the hard way, copy all segments into
633 * a single aligned buffer.
635 buf
= qemu_blockalign(aiocb
->bs
, aiocb
->aio_nbytes
);
636 if (aiocb
->aio_type
& QEMU_AIO_WRITE
) {
640 for (i
= 0; i
< aiocb
->aio_niov
; ++i
) {
641 memcpy(p
, aiocb
->aio_iov
[i
].iov_base
, aiocb
->aio_iov
[i
].iov_len
);
642 p
+= aiocb
->aio_iov
[i
].iov_len
;
646 nbytes
= handle_aiocb_rw_linear(aiocb
, buf
);
647 if (!(aiocb
->aio_type
& QEMU_AIO_WRITE
)) {
649 size_t count
= aiocb
->aio_nbytes
, copy
;
652 for (i
= 0; i
< aiocb
->aio_niov
&& count
; ++i
) {
654 if (copy
> aiocb
->aio_iov
[i
].iov_len
) {
655 copy
= aiocb
->aio_iov
[i
].iov_len
;
657 memcpy(aiocb
->aio_iov
[i
].iov_base
, p
, copy
);
668 static int xfs_discard(BDRVRawState
*s
, int64_t offset
, uint64_t bytes
)
670 struct xfs_flock64 fl
;
672 memset(&fl
, 0, sizeof(fl
));
673 fl
.l_whence
= SEEK_SET
;
677 if (xfsctl(NULL
, s
->fd
, XFS_IOC_UNRESVSP64
, &fl
) < 0) {
678 DEBUG_BLOCK_PRINT("cannot punch hole (%s)\n", strerror(errno
));
686 static ssize_t
handle_aiocb_discard(RawPosixAIOData
*aiocb
)
688 int ret
= -EOPNOTSUPP
;
689 BDRVRawState
*s
= aiocb
->bs
->opaque
;
691 if (s
->has_discard
== 0) {
695 if (aiocb
->aio_type
& QEMU_AIO_BLKDEV
) {
698 uint64_t range
[2] = { aiocb
->aio_offset
, aiocb
->aio_nbytes
};
699 if (ioctl(aiocb
->aio_fildes
, BLKDISCARD
, range
) == 0) {
702 } while (errno
== EINTR
);
709 return xfs_discard(s
, aiocb
->aio_offset
, aiocb
->aio_nbytes
);
713 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
715 if (fallocate(s
->fd
, FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
,
716 aiocb
->aio_offset
, aiocb
->aio_nbytes
) == 0) {
719 } while (errno
== EINTR
);
725 if (ret
== -ENODEV
|| ret
== -ENOSYS
|| ret
== -EOPNOTSUPP
||
733 static int aio_worker(void *arg
)
735 RawPosixAIOData
*aiocb
= arg
;
738 switch (aiocb
->aio_type
& QEMU_AIO_TYPE_MASK
) {
740 ret
= handle_aiocb_rw(aiocb
);
741 if (ret
>= 0 && ret
< aiocb
->aio_nbytes
&& aiocb
->bs
->growable
) {
742 iov_memset(aiocb
->aio_iov
, aiocb
->aio_niov
, ret
,
743 0, aiocb
->aio_nbytes
- ret
);
745 ret
= aiocb
->aio_nbytes
;
747 if (ret
== aiocb
->aio_nbytes
) {
749 } else if (ret
>= 0 && ret
< aiocb
->aio_nbytes
) {
754 ret
= handle_aiocb_rw(aiocb
);
755 if (ret
== aiocb
->aio_nbytes
) {
757 } else if (ret
>= 0 && ret
< aiocb
->aio_nbytes
) {
762 ret
= handle_aiocb_flush(aiocb
);
765 ret
= handle_aiocb_ioctl(aiocb
);
767 case QEMU_AIO_DISCARD
:
768 ret
= handle_aiocb_discard(aiocb
);
771 fprintf(stderr
, "invalid aio request (0x%x)\n", aiocb
->aio_type
);
776 g_slice_free(RawPosixAIOData
, aiocb
);
780 static BlockDriverAIOCB
*paio_submit(BlockDriverState
*bs
, int fd
,
781 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
782 BlockDriverCompletionFunc
*cb
, void *opaque
, int type
)
784 RawPosixAIOData
*acb
= g_slice_new(RawPosixAIOData
);
788 acb
->aio_type
= type
;
789 acb
->aio_fildes
= fd
;
792 acb
->aio_iov
= qiov
->iov
;
793 acb
->aio_niov
= qiov
->niov
;
795 acb
->aio_nbytes
= nb_sectors
* 512;
796 acb
->aio_offset
= sector_num
* 512;
798 trace_paio_submit(acb
, opaque
, sector_num
, nb_sectors
, type
);
799 pool
= aio_get_thread_pool(bdrv_get_aio_context(bs
));
800 return thread_pool_submit_aio(pool
, aio_worker
, acb
, cb
, opaque
);
803 static BlockDriverAIOCB
*raw_aio_submit(BlockDriverState
*bs
,
804 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
805 BlockDriverCompletionFunc
*cb
, void *opaque
, int type
)
807 BDRVRawState
*s
= bs
->opaque
;
813 * If O_DIRECT is used the buffer needs to be aligned on a sector
814 * boundary. Check if this is the case or tell the low-level
815 * driver that it needs to copy the buffer.
817 if ((bs
->open_flags
& BDRV_O_NOCACHE
)) {
818 if (!bdrv_qiov_is_aligned(bs
, qiov
)) {
819 type
|= QEMU_AIO_MISALIGNED
;
820 #ifdef CONFIG_LINUX_AIO
821 } else if (s
->use_aio
) {
822 return laio_submit(bs
, s
->aio_ctx
, s
->fd
, sector_num
, qiov
,
823 nb_sectors
, cb
, opaque
, type
);
828 return paio_submit(bs
, s
->fd
, sector_num
, qiov
, nb_sectors
,
832 static BlockDriverAIOCB
*raw_aio_readv(BlockDriverState
*bs
,
833 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
834 BlockDriverCompletionFunc
*cb
, void *opaque
)
836 return raw_aio_submit(bs
, sector_num
, qiov
, nb_sectors
,
837 cb
, opaque
, QEMU_AIO_READ
);
840 static BlockDriverAIOCB
*raw_aio_writev(BlockDriverState
*bs
,
841 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
842 BlockDriverCompletionFunc
*cb
, void *opaque
)
844 return raw_aio_submit(bs
, sector_num
, qiov
, nb_sectors
,
845 cb
, opaque
, QEMU_AIO_WRITE
);
848 static BlockDriverAIOCB
*raw_aio_flush(BlockDriverState
*bs
,
849 BlockDriverCompletionFunc
*cb
, void *opaque
)
851 BDRVRawState
*s
= bs
->opaque
;
856 return paio_submit(bs
, s
->fd
, 0, NULL
, 0, cb
, opaque
, QEMU_AIO_FLUSH
);
859 static void raw_close(BlockDriverState
*bs
)
861 BDRVRawState
*s
= bs
->opaque
;
868 static int raw_truncate(BlockDriverState
*bs
, int64_t offset
)
870 BDRVRawState
*s
= bs
->opaque
;
873 if (fstat(s
->fd
, &st
)) {
877 if (S_ISREG(st
.st_mode
)) {
878 if (ftruncate(s
->fd
, offset
) < 0) {
881 } else if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
882 if (offset
> raw_getlength(bs
)) {
893 static int64_t raw_getlength(BlockDriverState
*bs
)
895 BDRVRawState
*s
= bs
->opaque
;
901 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
904 if (ioctl(fd
, DIOCGDINFO
, &dl
))
906 return (uint64_t)dl
.d_secsize
*
907 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
911 #elif defined(__NetBSD__)
912 static int64_t raw_getlength(BlockDriverState
*bs
)
914 BDRVRawState
*s
= bs
->opaque
;
920 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
921 struct dkwedge_info dkw
;
923 if (ioctl(fd
, DIOCGWEDGEINFO
, &dkw
) != -1) {
924 return dkw
.dkw_size
* 512;
928 if (ioctl(fd
, DIOCGDINFO
, &dl
))
930 return (uint64_t)dl
.d_secsize
*
931 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
936 #elif defined(__sun__)
937 static int64_t raw_getlength(BlockDriverState
*bs
)
939 BDRVRawState
*s
= bs
->opaque
;
940 struct dk_minfo minfo
;
949 * Use the DKIOCGMEDIAINFO ioctl to read the size.
951 ret
= ioctl(s
->fd
, DKIOCGMEDIAINFO
, &minfo
);
953 return minfo
.dki_lbsize
* minfo
.dki_capacity
;
957 * There are reports that lseek on some devices fails, but
958 * irc discussion said that contingency on contingency was overkill.
960 return lseek(s
->fd
, 0, SEEK_END
);
962 #elif defined(CONFIG_BSD)
963 static int64_t raw_getlength(BlockDriverState
*bs
)
965 BDRVRawState
*s
= bs
->opaque
;
969 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
978 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
981 if (!fstat(fd
, &sb
) && (S_IFCHR
& sb
.st_mode
)) {
982 #ifdef DIOCGMEDIASIZE
983 if (ioctl(fd
, DIOCGMEDIASIZE
, (off_t
*)&size
))
984 #elif defined(DIOCGPART)
987 if (ioctl(fd
, DIOCGPART
, &pi
) == 0)
988 size
= pi
.media_size
;
994 #if defined(__APPLE__) && defined(__MACH__)
995 size
= LONG_LONG_MAX
;
997 size
= lseek(fd
, 0LL, SEEK_END
);
999 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1002 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
1003 if (size
== 2048LL * (unsigned)-1)
1005 /* XXX no disc? maybe we need to reopen... */
1006 if (size
<= 0 && !reopened
&& cdrom_reopen(bs
) >= 0) {
1013 size
= lseek(fd
, 0, SEEK_END
);
1018 static int64_t raw_getlength(BlockDriverState
*bs
)
1020 BDRVRawState
*s
= bs
->opaque
;
1028 return lseek(s
->fd
, 0, SEEK_END
);
1032 static int64_t raw_get_allocated_file_size(BlockDriverState
*bs
)
1035 BDRVRawState
*s
= bs
->opaque
;
1037 if (fstat(s
->fd
, &st
) < 0) {
1040 return (int64_t)st
.st_blocks
* 512;
1043 static int raw_create(const char *filename
, QEMUOptionParameter
*options
)
1047 int64_t total_size
= 0;
1049 /* Read out options */
1050 while (options
&& options
->name
) {
1051 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
1052 total_size
= options
->value
.n
/ BDRV_SECTOR_SIZE
;
1057 fd
= qemu_open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
,
1062 if (ftruncate(fd
, total_size
* BDRV_SECTOR_SIZE
) != 0) {
1065 if (qemu_close(fd
) != 0) {
1073 * Returns true iff the specified sector is present in the disk image. Drivers
1074 * not implementing the functionality are assumed to not support backing files,
1075 * hence all their sectors are reported as allocated.
1077 * If 'sector_num' is beyond the end of the disk image the return value is 0
1078 * and 'pnum' is set to 0.
1080 * 'pnum' is set to the number of sectors (including and immediately following
1081 * the specified sector) that are known to be in the same
1082 * allocated/unallocated state.
1084 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
1085 * beyond the end of the disk image it will be clamped.
1087 static int64_t coroutine_fn
raw_co_get_block_status(BlockDriverState
*bs
,
1089 int nb_sectors
, int *pnum
)
1091 off_t start
, data
, hole
;
1099 start
= sector_num
* BDRV_SECTOR_SIZE
;
1100 ret
= BDRV_BLOCK_DATA
| BDRV_BLOCK_OFFSET_VALID
| start
;
1102 #ifdef CONFIG_FIEMAP
1104 BDRVRawState
*s
= bs
->opaque
;
1107 struct fiemap_extent fe
;
1110 f
.fm
.fm_start
= start
;
1111 f
.fm
.fm_length
= (int64_t)nb_sectors
* BDRV_SECTOR_SIZE
;
1113 f
.fm
.fm_extent_count
= 1;
1114 f
.fm
.fm_reserved
= 0;
1115 if (ioctl(s
->fd
, FS_IOC_FIEMAP
, &f
) == -1) {
1116 /* Assume everything is allocated. */
1121 if (f
.fm
.fm_mapped_extents
== 0) {
1122 /* No extents found, data is beyond f.fm.fm_start + f.fm.fm_length.
1123 * f.fm.fm_start + f.fm.fm_length must be clamped to the file size!
1125 off_t length
= lseek(s
->fd
, 0, SEEK_END
);
1126 hole
= f
.fm
.fm_start
;
1127 data
= MIN(f
.fm
.fm_start
+ f
.fm
.fm_length
, length
);
1129 data
= f
.fe
.fe_logical
;
1130 hole
= f
.fe
.fe_logical
+ f
.fe
.fe_length
;
1131 if (f
.fe
.fe_flags
& FIEMAP_EXTENT_UNWRITTEN
) {
1132 ret
|= BDRV_BLOCK_ZERO
;
1136 #elif defined SEEK_HOLE && defined SEEK_DATA
1138 BDRVRawState
*s
= bs
->opaque
;
1140 hole
= lseek(s
->fd
, start
, SEEK_HOLE
);
1142 /* -ENXIO indicates that sector_num was past the end of the file.
1143 * There is a virtual hole there. */
1144 assert(errno
!= -ENXIO
);
1146 /* Most likely EINVAL. Assume everything is allocated. */
1154 /* On a hole. We need another syscall to find its end. */
1155 data
= lseek(s
->fd
, start
, SEEK_DATA
);
1157 data
= lseek(s
->fd
, 0, SEEK_END
);
1162 hole
= start
+ nb_sectors
* BDRV_SECTOR_SIZE
;
1165 if (data
<= start
) {
1166 /* On a data extent, compute sectors to the end of the extent. */
1167 *pnum
= MIN(nb_sectors
, (hole
- start
) / BDRV_SECTOR_SIZE
);
1169 /* On a hole, compute sectors to the beginning of the next extent. */
1170 *pnum
= MIN(nb_sectors
, (data
- start
) / BDRV_SECTOR_SIZE
);
1171 ret
&= ~BDRV_BLOCK_DATA
;
1172 ret
|= BDRV_BLOCK_ZERO
;
1178 static coroutine_fn BlockDriverAIOCB
*raw_aio_discard(BlockDriverState
*bs
,
1179 int64_t sector_num
, int nb_sectors
,
1180 BlockDriverCompletionFunc
*cb
, void *opaque
)
1182 BDRVRawState
*s
= bs
->opaque
;
1184 return paio_submit(bs
, s
->fd
, sector_num
, NULL
, nb_sectors
,
1185 cb
, opaque
, QEMU_AIO_DISCARD
);
1188 static QEMUOptionParameter raw_create_options
[] = {
1190 .name
= BLOCK_OPT_SIZE
,
1192 .help
= "Virtual disk size"
1197 static BlockDriver bdrv_file
= {
1198 .format_name
= "file",
1199 .protocol_name
= "file",
1200 .instance_size
= sizeof(BDRVRawState
),
1201 .bdrv_probe
= NULL
, /* no probe for protocols */
1202 .bdrv_file_open
= raw_open
,
1203 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1204 .bdrv_reopen_commit
= raw_reopen_commit
,
1205 .bdrv_reopen_abort
= raw_reopen_abort
,
1206 .bdrv_close
= raw_close
,
1207 .bdrv_create
= raw_create
,
1208 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
1209 .bdrv_co_get_block_status
= raw_co_get_block_status
,
1211 .bdrv_aio_readv
= raw_aio_readv
,
1212 .bdrv_aio_writev
= raw_aio_writev
,
1213 .bdrv_aio_flush
= raw_aio_flush
,
1214 .bdrv_aio_discard
= raw_aio_discard
,
1216 .bdrv_truncate
= raw_truncate
,
1217 .bdrv_getlength
= raw_getlength
,
1218 .bdrv_get_allocated_file_size
1219 = raw_get_allocated_file_size
,
1221 .create_options
= raw_create_options
,
1224 /***********************************************/
1227 #if defined(__APPLE__) && defined(__MACH__)
1228 static kern_return_t
FindEjectableCDMedia( io_iterator_t
*mediaIterator
);
1229 static kern_return_t
GetBSDPath( io_iterator_t mediaIterator
, char *bsdPath
, CFIndex maxPathSize
);
1231 kern_return_t
FindEjectableCDMedia( io_iterator_t
*mediaIterator
)
1233 kern_return_t kernResult
;
1234 mach_port_t masterPort
;
1235 CFMutableDictionaryRef classesToMatch
;
1237 kernResult
= IOMasterPort( MACH_PORT_NULL
, &masterPort
);
1238 if ( KERN_SUCCESS
!= kernResult
) {
1239 printf( "IOMasterPort returned %d\n", kernResult
);
1242 classesToMatch
= IOServiceMatching( kIOCDMediaClass
);
1243 if ( classesToMatch
== NULL
) {
1244 printf( "IOServiceMatching returned a NULL dictionary.\n" );
1246 CFDictionarySetValue( classesToMatch
, CFSTR( kIOMediaEjectableKey
), kCFBooleanTrue
);
1248 kernResult
= IOServiceGetMatchingServices( masterPort
, classesToMatch
, mediaIterator
);
1249 if ( KERN_SUCCESS
!= kernResult
)
1251 printf( "IOServiceGetMatchingServices returned %d\n", kernResult
);
1257 kern_return_t
GetBSDPath( io_iterator_t mediaIterator
, char *bsdPath
, CFIndex maxPathSize
)
1259 io_object_t nextMedia
;
1260 kern_return_t kernResult
= KERN_FAILURE
;
1262 nextMedia
= IOIteratorNext( mediaIterator
);
1265 CFTypeRef bsdPathAsCFString
;
1266 bsdPathAsCFString
= IORegistryEntryCreateCFProperty( nextMedia
, CFSTR( kIOBSDNameKey
), kCFAllocatorDefault
, 0 );
1267 if ( bsdPathAsCFString
) {
1268 size_t devPathLength
;
1269 strcpy( bsdPath
, _PATH_DEV
);
1270 strcat( bsdPath
, "r" );
1271 devPathLength
= strlen( bsdPath
);
1272 if ( CFStringGetCString( bsdPathAsCFString
, bsdPath
+ devPathLength
, maxPathSize
- devPathLength
, kCFStringEncodingASCII
) ) {
1273 kernResult
= KERN_SUCCESS
;
1275 CFRelease( bsdPathAsCFString
);
1277 IOObjectRelease( nextMedia
);
1285 static int hdev_probe_device(const char *filename
)
1289 /* allow a dedicated CD-ROM driver to match with a higher priority */
1290 if (strstart(filename
, "/dev/cdrom", NULL
))
1293 if (stat(filename
, &st
) >= 0 &&
1294 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
1301 static int check_hdev_writable(BDRVRawState
*s
)
1303 #if defined(BLKROGET)
1304 /* Linux block devices can be configured "read-only" using blockdev(8).
1305 * This is independent of device node permissions and therefore open(2)
1306 * with O_RDWR succeeds. Actual writes fail with EPERM.
1308 * bdrv_open() is supposed to fail if the disk is read-only. Explicitly
1309 * check for read-only block devices so that Linux block devices behave
1315 if (fstat(s
->fd
, &st
)) {
1319 if (!S_ISBLK(st
.st_mode
)) {
1323 if (ioctl(s
->fd
, BLKROGET
, &readonly
) < 0) {
1330 #endif /* defined(BLKROGET) */
1334 static int hdev_open(BlockDriverState
*bs
, QDict
*options
, int flags
)
1336 BDRVRawState
*s
= bs
->opaque
;
1338 const char *filename
= qdict_get_str(options
, "filename");
1340 #if defined(__APPLE__) && defined(__MACH__)
1341 if (strstart(filename
, "/dev/cdrom", NULL
)) {
1342 kern_return_t kernResult
;
1343 io_iterator_t mediaIterator
;
1344 char bsdPath
[ MAXPATHLEN
];
1347 kernResult
= FindEjectableCDMedia( &mediaIterator
);
1348 kernResult
= GetBSDPath( mediaIterator
, bsdPath
, sizeof( bsdPath
) );
1350 if ( bsdPath
[ 0 ] != '\0' ) {
1351 strcat(bsdPath
,"s0");
1352 /* some CDs don't have a partition 0 */
1353 fd
= qemu_open(bsdPath
, O_RDONLY
| O_BINARY
| O_LARGEFILE
);
1355 bsdPath
[strlen(bsdPath
)-1] = '1';
1360 qdict_put(options
, "filename", qstring_from_str(filename
));
1363 if ( mediaIterator
)
1364 IOObjectRelease( mediaIterator
);
1368 s
->type
= FTYPE_FILE
;
1369 #if defined(__linux__)
1371 char resolved_path
[ MAXPATHLEN
], *temp
;
1373 temp
= realpath(filename
, resolved_path
);
1374 if (temp
&& strstart(temp
, "/dev/sg", NULL
)) {
1380 ret
= raw_open_common(bs
, options
, flags
, 0);
1385 if (flags
& BDRV_O_RDWR
) {
1386 ret
= check_hdev_writable(s
);
1396 #if defined(__linux__)
1397 /* Note: we do not have a reliable method to detect if the floppy is
1398 present. The current method is to try to open the floppy at every
1399 I/O and to keep it opened during a few hundreds of ms. */
1400 static int fd_open(BlockDriverState
*bs
)
1402 BDRVRawState
*s
= bs
->opaque
;
1403 int last_media_present
;
1405 if (s
->type
!= FTYPE_FD
)
1407 last_media_present
= (s
->fd
>= 0);
1409 (get_clock() - s
->fd_open_time
) >= FD_OPEN_TIMEOUT
) {
1413 printf("Floppy closed\n");
1417 if (s
->fd_got_error
&&
1418 (get_clock() - s
->fd_error_time
) < FD_OPEN_TIMEOUT
) {
1420 printf("No floppy (open delayed)\n");
1424 s
->fd
= qemu_open(bs
->filename
, s
->open_flags
& ~O_NONBLOCK
);
1426 s
->fd_error_time
= get_clock();
1427 s
->fd_got_error
= 1;
1428 if (last_media_present
)
1429 s
->fd_media_changed
= 1;
1431 printf("No floppy\n");
1436 printf("Floppy opened\n");
1439 if (!last_media_present
)
1440 s
->fd_media_changed
= 1;
1441 s
->fd_open_time
= get_clock();
1442 s
->fd_got_error
= 0;
1446 static int hdev_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1448 BDRVRawState
*s
= bs
->opaque
;
1450 return ioctl(s
->fd
, req
, buf
);
1453 static BlockDriverAIOCB
*hdev_aio_ioctl(BlockDriverState
*bs
,
1454 unsigned long int req
, void *buf
,
1455 BlockDriverCompletionFunc
*cb
, void *opaque
)
1457 BDRVRawState
*s
= bs
->opaque
;
1458 RawPosixAIOData
*acb
;
1461 if (fd_open(bs
) < 0)
1464 acb
= g_slice_new(RawPosixAIOData
);
1466 acb
->aio_type
= QEMU_AIO_IOCTL
;
1467 acb
->aio_fildes
= s
->fd
;
1468 acb
->aio_offset
= 0;
1469 acb
->aio_ioctl_buf
= buf
;
1470 acb
->aio_ioctl_cmd
= req
;
1471 pool
= aio_get_thread_pool(bdrv_get_aio_context(bs
));
1472 return thread_pool_submit_aio(pool
, aio_worker
, acb
, cb
, opaque
);
1475 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1476 static int fd_open(BlockDriverState
*bs
)
1478 BDRVRawState
*s
= bs
->opaque
;
1480 /* this is just to ensure s->fd is sane (its called by io ops) */
1485 #else /* !linux && !FreeBSD */
1487 static int fd_open(BlockDriverState
*bs
)
1492 #endif /* !linux && !FreeBSD */
1494 static coroutine_fn BlockDriverAIOCB
*hdev_aio_discard(BlockDriverState
*bs
,
1495 int64_t sector_num
, int nb_sectors
,
1496 BlockDriverCompletionFunc
*cb
, void *opaque
)
1498 BDRVRawState
*s
= bs
->opaque
;
1500 if (fd_open(bs
) < 0) {
1503 return paio_submit(bs
, s
->fd
, sector_num
, NULL
, nb_sectors
,
1504 cb
, opaque
, QEMU_AIO_DISCARD
|QEMU_AIO_BLKDEV
);
1507 static int hdev_create(const char *filename
, QEMUOptionParameter
*options
)
1511 struct stat stat_buf
;
1512 int64_t total_size
= 0;
1514 /* Read out options */
1515 while (options
&& options
->name
) {
1516 if (!strcmp(options
->name
, "size")) {
1517 total_size
= options
->value
.n
/ BDRV_SECTOR_SIZE
;
1522 fd
= qemu_open(filename
, O_WRONLY
| O_BINARY
);
1526 if (fstat(fd
, &stat_buf
) < 0)
1528 else if (!S_ISBLK(stat_buf
.st_mode
) && !S_ISCHR(stat_buf
.st_mode
))
1530 else if (lseek(fd
, 0, SEEK_END
) < total_size
* BDRV_SECTOR_SIZE
)
1537 static BlockDriver bdrv_host_device
= {
1538 .format_name
= "host_device",
1539 .protocol_name
= "host_device",
1540 .instance_size
= sizeof(BDRVRawState
),
1541 .bdrv_probe_device
= hdev_probe_device
,
1542 .bdrv_file_open
= hdev_open
,
1543 .bdrv_close
= raw_close
,
1544 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1545 .bdrv_reopen_commit
= raw_reopen_commit
,
1546 .bdrv_reopen_abort
= raw_reopen_abort
,
1547 .bdrv_create
= hdev_create
,
1548 .create_options
= raw_create_options
,
1550 .bdrv_aio_readv
= raw_aio_readv
,
1551 .bdrv_aio_writev
= raw_aio_writev
,
1552 .bdrv_aio_flush
= raw_aio_flush
,
1553 .bdrv_aio_discard
= hdev_aio_discard
,
1555 .bdrv_truncate
= raw_truncate
,
1556 .bdrv_getlength
= raw_getlength
,
1557 .bdrv_get_allocated_file_size
1558 = raw_get_allocated_file_size
,
1560 /* generic scsi device */
1562 .bdrv_ioctl
= hdev_ioctl
,
1563 .bdrv_aio_ioctl
= hdev_aio_ioctl
,
1568 static int floppy_open(BlockDriverState
*bs
, QDict
*options
, int flags
)
1570 BDRVRawState
*s
= bs
->opaque
;
1575 /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
1576 ret
= raw_open_common(bs
, options
, flags
, O_NONBLOCK
);
1580 /* close fd so that we can reopen it as needed */
1583 s
->fd_media_changed
= 1;
1588 static int floppy_probe_device(const char *filename
)
1592 struct floppy_struct fdparam
;
1595 if (strstart(filename
, "/dev/fd", NULL
) &&
1596 !strstart(filename
, "/dev/fdset/", NULL
)) {
1600 fd
= qemu_open(filename
, O_RDONLY
| O_NONBLOCK
);
1604 ret
= fstat(fd
, &st
);
1605 if (ret
== -1 || !S_ISBLK(st
.st_mode
)) {
1609 /* Attempt to detect via a floppy specific ioctl */
1610 ret
= ioctl(fd
, FDGETPRM
, &fdparam
);
1621 static int floppy_is_inserted(BlockDriverState
*bs
)
1623 return fd_open(bs
) >= 0;
1626 static int floppy_media_changed(BlockDriverState
*bs
)
1628 BDRVRawState
*s
= bs
->opaque
;
1632 * XXX: we do not have a true media changed indication.
1633 * It does not work if the floppy is changed without trying to read it.
1636 ret
= s
->fd_media_changed
;
1637 s
->fd_media_changed
= 0;
1639 printf("Floppy changed=%d\n", ret
);
1644 static void floppy_eject(BlockDriverState
*bs
, bool eject_flag
)
1646 BDRVRawState
*s
= bs
->opaque
;
1653 fd
= qemu_open(bs
->filename
, s
->open_flags
| O_NONBLOCK
);
1655 if (ioctl(fd
, FDEJECT
, 0) < 0)
1661 static BlockDriver bdrv_host_floppy
= {
1662 .format_name
= "host_floppy",
1663 .protocol_name
= "host_floppy",
1664 .instance_size
= sizeof(BDRVRawState
),
1665 .bdrv_probe_device
= floppy_probe_device
,
1666 .bdrv_file_open
= floppy_open
,
1667 .bdrv_close
= raw_close
,
1668 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1669 .bdrv_reopen_commit
= raw_reopen_commit
,
1670 .bdrv_reopen_abort
= raw_reopen_abort
,
1671 .bdrv_create
= hdev_create
,
1672 .create_options
= raw_create_options
,
1674 .bdrv_aio_readv
= raw_aio_readv
,
1675 .bdrv_aio_writev
= raw_aio_writev
,
1676 .bdrv_aio_flush
= raw_aio_flush
,
1678 .bdrv_truncate
= raw_truncate
,
1679 .bdrv_getlength
= raw_getlength
,
1680 .bdrv_get_allocated_file_size
1681 = raw_get_allocated_file_size
,
1683 /* removable device support */
1684 .bdrv_is_inserted
= floppy_is_inserted
,
1685 .bdrv_media_changed
= floppy_media_changed
,
1686 .bdrv_eject
= floppy_eject
,
1689 static int cdrom_open(BlockDriverState
*bs
, QDict
*options
, int flags
)
1691 BDRVRawState
*s
= bs
->opaque
;
1695 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
1696 return raw_open_common(bs
, options
, flags
, O_NONBLOCK
);
1699 static int cdrom_probe_device(const char *filename
)
1705 fd
= qemu_open(filename
, O_RDONLY
| O_NONBLOCK
);
1709 ret
= fstat(fd
, &st
);
1710 if (ret
== -1 || !S_ISBLK(st
.st_mode
)) {
1714 /* Attempt to detect via a CDROM specific ioctl */
1715 ret
= ioctl(fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
1725 static int cdrom_is_inserted(BlockDriverState
*bs
)
1727 BDRVRawState
*s
= bs
->opaque
;
1730 ret
= ioctl(s
->fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
1731 if (ret
== CDS_DISC_OK
)
1736 static void cdrom_eject(BlockDriverState
*bs
, bool eject_flag
)
1738 BDRVRawState
*s
= bs
->opaque
;
1741 if (ioctl(s
->fd
, CDROMEJECT
, NULL
) < 0)
1742 perror("CDROMEJECT");
1744 if (ioctl(s
->fd
, CDROMCLOSETRAY
, NULL
) < 0)
1745 perror("CDROMEJECT");
1749 static void cdrom_lock_medium(BlockDriverState
*bs
, bool locked
)
1751 BDRVRawState
*s
= bs
->opaque
;
1753 if (ioctl(s
->fd
, CDROM_LOCKDOOR
, locked
) < 0) {
1755 * Note: an error can happen if the distribution automatically
1758 /* perror("CDROM_LOCKDOOR"); */
1762 static BlockDriver bdrv_host_cdrom
= {
1763 .format_name
= "host_cdrom",
1764 .protocol_name
= "host_cdrom",
1765 .instance_size
= sizeof(BDRVRawState
),
1766 .bdrv_probe_device
= cdrom_probe_device
,
1767 .bdrv_file_open
= cdrom_open
,
1768 .bdrv_close
= raw_close
,
1769 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1770 .bdrv_reopen_commit
= raw_reopen_commit
,
1771 .bdrv_reopen_abort
= raw_reopen_abort
,
1772 .bdrv_create
= hdev_create
,
1773 .create_options
= raw_create_options
,
1775 .bdrv_aio_readv
= raw_aio_readv
,
1776 .bdrv_aio_writev
= raw_aio_writev
,
1777 .bdrv_aio_flush
= raw_aio_flush
,
1779 .bdrv_truncate
= raw_truncate
,
1780 .bdrv_getlength
= raw_getlength
,
1781 .bdrv_get_allocated_file_size
1782 = raw_get_allocated_file_size
,
1784 /* removable device support */
1785 .bdrv_is_inserted
= cdrom_is_inserted
,
1786 .bdrv_eject
= cdrom_eject
,
1787 .bdrv_lock_medium
= cdrom_lock_medium
,
1789 /* generic scsi device */
1790 .bdrv_ioctl
= hdev_ioctl
,
1791 .bdrv_aio_ioctl
= hdev_aio_ioctl
,
1793 #endif /* __linux__ */
1795 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1796 static int cdrom_open(BlockDriverState
*bs
, QDict
*options
, int flags
)
1798 BDRVRawState
*s
= bs
->opaque
;
1803 ret
= raw_open_common(bs
, options
, flags
, 0);
1807 /* make sure the door isn't locked at this time */
1808 ioctl(s
->fd
, CDIOCALLOW
);
1812 static int cdrom_probe_device(const char *filename
)
1814 if (strstart(filename
, "/dev/cd", NULL
) ||
1815 strstart(filename
, "/dev/acd", NULL
))
1820 static int cdrom_reopen(BlockDriverState
*bs
)
1822 BDRVRawState
*s
= bs
->opaque
;
1826 * Force reread of possibly changed/newly loaded disc,
1827 * FreeBSD seems to not notice sometimes...
1831 fd
= qemu_open(bs
->filename
, s
->open_flags
, 0644);
1838 /* make sure the door isn't locked at this time */
1839 ioctl(s
->fd
, CDIOCALLOW
);
1843 static int cdrom_is_inserted(BlockDriverState
*bs
)
1845 return raw_getlength(bs
) > 0;
1848 static void cdrom_eject(BlockDriverState
*bs
, bool eject_flag
)
1850 BDRVRawState
*s
= bs
->opaque
;
1855 (void) ioctl(s
->fd
, CDIOCALLOW
);
1858 if (ioctl(s
->fd
, CDIOCEJECT
) < 0)
1859 perror("CDIOCEJECT");
1861 if (ioctl(s
->fd
, CDIOCCLOSE
) < 0)
1862 perror("CDIOCCLOSE");
1868 static void cdrom_lock_medium(BlockDriverState
*bs
, bool locked
)
1870 BDRVRawState
*s
= bs
->opaque
;
1874 if (ioctl(s
->fd
, (locked
? CDIOCPREVENT
: CDIOCALLOW
)) < 0) {
1876 * Note: an error can happen if the distribution automatically
1879 /* perror("CDROM_LOCKDOOR"); */
1883 static BlockDriver bdrv_host_cdrom
= {
1884 .format_name
= "host_cdrom",
1885 .protocol_name
= "host_cdrom",
1886 .instance_size
= sizeof(BDRVRawState
),
1887 .bdrv_probe_device
= cdrom_probe_device
,
1888 .bdrv_file_open
= cdrom_open
,
1889 .bdrv_close
= raw_close
,
1890 .bdrv_reopen_prepare
= raw_reopen_prepare
,
1891 .bdrv_reopen_commit
= raw_reopen_commit
,
1892 .bdrv_reopen_abort
= raw_reopen_abort
,
1893 .bdrv_create
= hdev_create
,
1894 .create_options
= raw_create_options
,
1896 .bdrv_aio_readv
= raw_aio_readv
,
1897 .bdrv_aio_writev
= raw_aio_writev
,
1898 .bdrv_aio_flush
= raw_aio_flush
,
1900 .bdrv_truncate
= raw_truncate
,
1901 .bdrv_getlength
= raw_getlength
,
1902 .bdrv_get_allocated_file_size
1903 = raw_get_allocated_file_size
,
1905 /* removable device support */
1906 .bdrv_is_inserted
= cdrom_is_inserted
,
1907 .bdrv_eject
= cdrom_eject
,
1908 .bdrv_lock_medium
= cdrom_lock_medium
,
1910 #endif /* __FreeBSD__ */
1912 #ifdef CONFIG_LINUX_AIO
1914 * Return the file descriptor for Linux AIO
1916 * This function is a layering violation and should be removed when it becomes
1917 * possible to call the block layer outside the global mutex. It allows the
1918 * caller to hijack the file descriptor so I/O can be performed outside the
1921 int raw_get_aio_fd(BlockDriverState
*bs
)
1929 if (bs
->drv
== bdrv_find_format("raw")) {
1933 /* raw-posix has several protocols so just check for raw_aio_readv */
1934 if (bs
->drv
->bdrv_aio_readv
!= raw_aio_readv
) {
1944 #endif /* CONFIG_LINUX_AIO */
1946 static void bdrv_file_init(void)
1949 * Register all the drivers. Note that order is important, the driver
1950 * registered last will get probed first.
1952 bdrv_register(&bdrv_file
);
1953 bdrv_register(&bdrv_host_device
);
1955 bdrv_register(&bdrv_host_floppy
);
1956 bdrv_register(&bdrv_host_cdrom
);
1958 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1959 bdrv_register(&bdrv_host_cdrom
);
1963 block_init(bdrv_file_init
);