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"
26 #include "qemu-char.h"
28 #include "block_int.h"
30 #include "block/raw-posix-aio.h"
34 #include <sys/param.h>
35 #include <IOKit/IOKitLib.h>
36 #include <IOKit/IOBSD.h>
37 #include <IOKit/storage/IOMediaBSDClient.h>
38 #include <IOKit/storage/IOMedia.h>
39 #include <IOKit/storage/IOCDMedia.h>
40 //#include <IOKit/storage/IOCDTypes.h>
41 #include <CoreFoundation/CoreFoundation.h>
45 #define _POSIX_PTHREAD_SEMANTICS 1
49 #include <sys/types.h>
51 #include <sys/ioctl.h>
52 #include <sys/param.h>
53 #include <linux/cdrom.h>
56 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
62 #include <sys/ioctl.h>
63 #include <sys/disklabel.h>
68 #include <sys/ioctl.h>
69 #include <sys/disklabel.h>
75 #include <sys/ioctl.h>
76 #include <sys/diskslice.h>
83 //#define DEBUG_FLOPPY
86 #if defined(DEBUG_BLOCK)
87 #define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
88 { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
90 #define DEBUG_BLOCK_PRINT(formatCstr, ...)
93 /* OS X does not have O_DSYNC */
96 #define O_DSYNC O_SYNC
97 #elif defined(O_FSYNC)
98 #define O_DSYNC O_FSYNC
102 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
104 #define O_DIRECT O_DSYNC
111 /* if the FD is not accessed during that time (in ns), we try to
112 reopen it to see if the disk has been changed */
113 #define FD_OPEN_TIMEOUT (1000000000)
115 #define MAX_BLOCKSIZE 4096
117 typedef struct BDRVRawState
{
121 #if defined(__linux__)
122 /* linux floppy specific */
123 int64_t fd_open_time
;
124 int64_t fd_error_time
;
126 int fd_media_changed
;
128 #ifdef CONFIG_LINUX_AIO
132 uint8_t *aligned_buf
;
133 unsigned aligned_buf_size
;
139 static int fd_open(BlockDriverState
*bs
);
140 static int64_t raw_getlength(BlockDriverState
*bs
);
142 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
143 static int cdrom_reopen(BlockDriverState
*bs
);
146 #if defined(__NetBSD__)
147 static int raw_normalize_devicepath(const char **filename
)
149 static char namebuf
[PATH_MAX
];
150 const char *dp
, *fname
;
154 dp
= strrchr(fname
, '/');
155 if (lstat(fname
, &sb
) < 0) {
156 fprintf(stderr
, "%s: stat failed: %s\n",
157 fname
, strerror(errno
));
161 if (!S_ISBLK(sb
.st_mode
)) {
166 snprintf(namebuf
, PATH_MAX
, "r%s", fname
);
168 snprintf(namebuf
, PATH_MAX
, "%.*s/r%s",
169 (int)(dp
- fname
), fname
, dp
+ 1);
171 fprintf(stderr
, "%s is a block device", fname
);
173 fprintf(stderr
, ", using %s\n", *filename
);
178 static int raw_normalize_devicepath(const char **filename
)
184 static int raw_open_common(BlockDriverState
*bs
, const char *filename
,
185 int bdrv_flags
, int open_flags
)
187 BDRVRawState
*s
= bs
->opaque
;
190 ret
= raw_normalize_devicepath(&filename
);
195 s
->open_flags
= open_flags
| O_BINARY
;
196 s
->open_flags
&= ~O_ACCMODE
;
197 if (bdrv_flags
& BDRV_O_RDWR
) {
198 s
->open_flags
|= O_RDWR
;
200 s
->open_flags
|= O_RDONLY
;
203 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
204 * and O_DIRECT for no caching. */
205 if ((bdrv_flags
& BDRV_O_NOCACHE
))
206 s
->open_flags
|= O_DIRECT
;
207 if (!(bdrv_flags
& BDRV_O_CACHE_WB
))
208 s
->open_flags
|= O_DSYNC
;
211 fd
= qemu_open(filename
, s
->open_flags
, 0644);
219 s
->aligned_buf
= NULL
;
221 if ((bdrv_flags
& BDRV_O_NOCACHE
)) {
223 * Allocate a buffer for read/modify/write cycles. Chose the size
224 * pessimistically as we don't know the block size yet.
226 s
->aligned_buf_size
= 32 * MAX_BLOCKSIZE
;
227 s
->aligned_buf
= qemu_memalign(MAX_BLOCKSIZE
, s
->aligned_buf_size
);
228 if (s
->aligned_buf
== NULL
) {
233 #ifdef CONFIG_LINUX_AIO
234 if ((bdrv_flags
& (BDRV_O_NOCACHE
|BDRV_O_NATIVE_AIO
)) ==
235 (BDRV_O_NOCACHE
|BDRV_O_NATIVE_AIO
)) {
237 /* We're falling back to POSIX AIO in some cases */
240 s
->aio_ctx
= laio_init();
248 if (paio_init() < 0) {
251 #ifdef CONFIG_LINUX_AIO
257 if (platform_test_xfs_fd(s
->fd
)) {
265 qemu_vfree(s
->aligned_buf
);
271 static int raw_open(BlockDriverState
*bs
, const char *filename
, int flags
)
273 BDRVRawState
*s
= bs
->opaque
;
275 s
->type
= FTYPE_FILE
;
276 return raw_open_common(bs
, filename
, flags
, 0);
279 /* XXX: use host sector size if necessary with:
280 #ifdef DIOCGSECTORSIZE
282 unsigned int sectorsize = 512;
283 if (!ioctl(fd, DIOCGSECTORSIZE, §orsize) &&
284 sectorsize > bufsize)
285 bufsize = sectorsize;
289 uint32_t blockSize = 512;
290 if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
297 * offset and count are in bytes, but must be multiples of 512 for files
298 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
300 * This function may be called without alignment if the caller ensures
301 * that O_DIRECT is not in effect.
303 static int raw_pread_aligned(BlockDriverState
*bs
, int64_t offset
,
304 uint8_t *buf
, int count
)
306 BDRVRawState
*s
= bs
->opaque
;
313 ret
= pread(s
->fd
, buf
, count
, offset
);
317 /* Allow reads beyond the end (needed for pwrite) */
318 if ((ret
== 0) && bs
->growable
) {
319 int64_t size
= raw_getlength(bs
);
320 if (offset
>= size
) {
321 memset(buf
, 0, count
);
326 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64
", %p, %d) [%" PRId64
327 "] read failed %d : %d = %s\n",
328 s
->fd
, bs
->filename
, offset
, buf
, count
,
329 bs
->total_sectors
, ret
, errno
, strerror(errno
));
331 /* Try harder for CDrom. */
332 if (s
->type
!= FTYPE_FILE
) {
333 ret
= pread(s
->fd
, buf
, count
, offset
);
336 ret
= pread(s
->fd
, buf
, count
, offset
);
340 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64
", %p, %d) [%" PRId64
341 "] retry read failed %d : %d = %s\n",
342 s
->fd
, bs
->filename
, offset
, buf
, count
,
343 bs
->total_sectors
, ret
, errno
, strerror(errno
));
346 return (ret
< 0) ? -errno
: ret
;
350 * offset and count are in bytes, but must be multiples of the sector size
351 * for files opened with O_DIRECT. buf must be aligned to sector size bytes
354 * This function may be called without alignment if the caller ensures
355 * that O_DIRECT is not in effect.
357 static int raw_pwrite_aligned(BlockDriverState
*bs
, int64_t offset
,
358 const uint8_t *buf
, int count
)
360 BDRVRawState
*s
= bs
->opaque
;
367 ret
= pwrite(s
->fd
, buf
, count
, offset
);
371 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64
", %p, %d) [%" PRId64
372 "] write failed %d : %d = %s\n",
373 s
->fd
, bs
->filename
, offset
, buf
, count
,
374 bs
->total_sectors
, ret
, errno
, strerror(errno
));
376 return (ret
< 0) ? -errno
: ret
;
381 * offset and count are in bytes and possibly not aligned. For files opened
382 * with O_DIRECT, necessary alignments are ensured before calling
383 * raw_pread_aligned to do the actual read.
385 static int raw_pread(BlockDriverState
*bs
, int64_t offset
,
386 uint8_t *buf
, int count
)
388 BDRVRawState
*s
= bs
->opaque
;
389 unsigned sector_mask
= bs
->buffer_alignment
- 1;
390 int size
, ret
, shift
, sum
;
394 if (s
->aligned_buf
!= NULL
) {
396 if (offset
& sector_mask
) {
397 /* align offset on a sector size bytes boundary */
399 shift
= offset
& sector_mask
;
400 size
= (shift
+ count
+ sector_mask
) & ~sector_mask
;
401 if (size
> s
->aligned_buf_size
)
402 size
= s
->aligned_buf_size
;
403 ret
= raw_pread_aligned(bs
, offset
- shift
, s
->aligned_buf
, size
);
407 size
= bs
->buffer_alignment
- shift
;
410 memcpy(buf
, s
->aligned_buf
+ shift
, size
);
420 if (count
& sector_mask
|| (uintptr_t) buf
& sector_mask
) {
422 /* read on aligned buffer */
426 size
= (count
+ sector_mask
) & ~sector_mask
;
427 if (size
> s
->aligned_buf_size
)
428 size
= s
->aligned_buf_size
;
430 ret
= raw_pread_aligned(bs
, offset
, s
->aligned_buf
, size
);
433 } else if (ret
== 0) {
434 fprintf(stderr
, "raw_pread: read beyond end of file\n");
442 memcpy(buf
, s
->aligned_buf
, size
);
454 return raw_pread_aligned(bs
, offset
, buf
, count
) + sum
;
457 static int raw_read(BlockDriverState
*bs
, int64_t sector_num
,
458 uint8_t *buf
, int nb_sectors
)
462 ret
= raw_pread(bs
, sector_num
* BDRV_SECTOR_SIZE
, buf
,
463 nb_sectors
* BDRV_SECTOR_SIZE
);
464 if (ret
== (nb_sectors
* BDRV_SECTOR_SIZE
))
470 * offset and count are in bytes and possibly not aligned. For files opened
471 * with O_DIRECT, necessary alignments are ensured before calling
472 * raw_pwrite_aligned to do the actual write.
474 static int raw_pwrite(BlockDriverState
*bs
, int64_t offset
,
475 const uint8_t *buf
, int count
)
477 BDRVRawState
*s
= bs
->opaque
;
478 unsigned sector_mask
= bs
->buffer_alignment
- 1;
479 int size
, ret
, shift
, sum
;
483 if (s
->aligned_buf
!= NULL
) {
485 if (offset
& sector_mask
) {
486 /* align offset on a sector size bytes boundary */
487 shift
= offset
& sector_mask
;
488 ret
= raw_pread_aligned(bs
, offset
- shift
, s
->aligned_buf
,
489 bs
->buffer_alignment
);
493 size
= bs
->buffer_alignment
- shift
;
496 memcpy(s
->aligned_buf
+ shift
, buf
, size
);
498 ret
= raw_pwrite_aligned(bs
, offset
- shift
, s
->aligned_buf
,
499 bs
->buffer_alignment
);
511 if (count
& sector_mask
|| (uintptr_t) buf
& sector_mask
) {
513 while ((size
= (count
& ~sector_mask
)) != 0) {
515 if (size
> s
->aligned_buf_size
)
516 size
= s
->aligned_buf_size
;
518 memcpy(s
->aligned_buf
, buf
, size
);
520 ret
= raw_pwrite_aligned(bs
, offset
, s
->aligned_buf
, size
);
529 /* here, count < sector_size because (count & ~sector_mask) == 0 */
531 ret
= raw_pread_aligned(bs
, offset
, s
->aligned_buf
,
532 bs
->buffer_alignment
);
535 memcpy(s
->aligned_buf
, buf
, count
);
537 ret
= raw_pwrite_aligned(bs
, offset
, s
->aligned_buf
,
538 bs
->buffer_alignment
);
549 return raw_pwrite_aligned(bs
, offset
, buf
, count
) + sum
;
552 static int raw_write(BlockDriverState
*bs
, int64_t sector_num
,
553 const uint8_t *buf
, int nb_sectors
)
556 ret
= raw_pwrite(bs
, sector_num
* BDRV_SECTOR_SIZE
, buf
,
557 nb_sectors
* BDRV_SECTOR_SIZE
);
558 if (ret
== (nb_sectors
* BDRV_SECTOR_SIZE
))
564 * Check if all memory in this vector is sector aligned.
566 static int qiov_is_aligned(BlockDriverState
*bs
, QEMUIOVector
*qiov
)
570 for (i
= 0; i
< qiov
->niov
; i
++) {
571 if ((uintptr_t) qiov
->iov
[i
].iov_base
% bs
->buffer_alignment
) {
579 static BlockDriverAIOCB
*raw_aio_submit(BlockDriverState
*bs
,
580 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
581 BlockDriverCompletionFunc
*cb
, void *opaque
, int type
)
583 BDRVRawState
*s
= bs
->opaque
;
589 * If O_DIRECT is used the buffer needs to be aligned on a sector
590 * boundary. Check if this is the case or telll the low-level
591 * driver that it needs to copy the buffer.
593 if (s
->aligned_buf
) {
594 if (!qiov_is_aligned(bs
, qiov
)) {
595 type
|= QEMU_AIO_MISALIGNED
;
596 #ifdef CONFIG_LINUX_AIO
597 } else if (s
->use_aio
) {
598 return laio_submit(bs
, s
->aio_ctx
, s
->fd
, sector_num
, qiov
,
599 nb_sectors
, cb
, opaque
, type
);
604 return paio_submit(bs
, s
->fd
, sector_num
, qiov
, nb_sectors
,
608 static BlockDriverAIOCB
*raw_aio_readv(BlockDriverState
*bs
,
609 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
610 BlockDriverCompletionFunc
*cb
, void *opaque
)
612 return raw_aio_submit(bs
, sector_num
, qiov
, nb_sectors
,
613 cb
, opaque
, QEMU_AIO_READ
);
616 static BlockDriverAIOCB
*raw_aio_writev(BlockDriverState
*bs
,
617 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
618 BlockDriverCompletionFunc
*cb
, void *opaque
)
620 return raw_aio_submit(bs
, sector_num
, qiov
, nb_sectors
,
621 cb
, opaque
, QEMU_AIO_WRITE
);
624 static BlockDriverAIOCB
*raw_aio_flush(BlockDriverState
*bs
,
625 BlockDriverCompletionFunc
*cb
, void *opaque
)
627 BDRVRawState
*s
= bs
->opaque
;
632 return paio_submit(bs
, s
->fd
, 0, NULL
, 0, cb
, opaque
, QEMU_AIO_FLUSH
);
635 static void raw_close(BlockDriverState
*bs
)
637 BDRVRawState
*s
= bs
->opaque
;
641 if (s
->aligned_buf
!= NULL
)
642 qemu_vfree(s
->aligned_buf
);
646 static int raw_truncate(BlockDriverState
*bs
, int64_t offset
)
648 BDRVRawState
*s
= bs
->opaque
;
649 if (s
->type
!= FTYPE_FILE
)
651 if (ftruncate(s
->fd
, offset
) < 0)
657 static int64_t raw_getlength(BlockDriverState
*bs
)
659 BDRVRawState
*s
= bs
->opaque
;
665 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
668 if (ioctl(fd
, DIOCGDINFO
, &dl
))
670 return (uint64_t)dl
.d_secsize
*
671 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
675 #elif defined(__NetBSD__)
676 static int64_t raw_getlength(BlockDriverState
*bs
)
678 BDRVRawState
*s
= bs
->opaque
;
684 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
685 struct dkwedge_info dkw
;
687 if (ioctl(fd
, DIOCGWEDGEINFO
, &dkw
) != -1) {
688 return dkw
.dkw_size
* 512;
692 if (ioctl(fd
, DIOCGDINFO
, &dl
))
694 return (uint64_t)dl
.d_secsize
*
695 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
700 #elif defined(__sun__)
701 static int64_t raw_getlength(BlockDriverState
*bs
)
703 BDRVRawState
*s
= bs
->opaque
;
704 struct dk_minfo minfo
;
713 * Use the DKIOCGMEDIAINFO ioctl to read the size.
715 ret
= ioctl(s
->fd
, DKIOCGMEDIAINFO
, &minfo
);
717 return minfo
.dki_lbsize
* minfo
.dki_capacity
;
721 * There are reports that lseek on some devices fails, but
722 * irc discussion said that contingency on contingency was overkill.
724 return lseek(s
->fd
, 0, SEEK_END
);
726 #elif defined(CONFIG_BSD)
727 static int64_t raw_getlength(BlockDriverState
*bs
)
729 BDRVRawState
*s
= bs
->opaque
;
733 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
742 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
745 if (!fstat(fd
, &sb
) && (S_IFCHR
& sb
.st_mode
)) {
746 #ifdef DIOCGMEDIASIZE
747 if (ioctl(fd
, DIOCGMEDIASIZE
, (off_t
*)&size
))
748 #elif defined(DIOCGPART)
751 if (ioctl(fd
, DIOCGPART
, &pi
) == 0)
752 size
= pi
.media_size
;
759 size
= LONG_LONG_MAX
;
761 size
= lseek(fd
, 0LL, SEEK_END
);
763 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
766 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
767 if (size
== 2048LL * (unsigned)-1)
769 /* XXX no disc? maybe we need to reopen... */
770 if (size
<= 0 && !reopened
&& cdrom_reopen(bs
) >= 0) {
777 size
= lseek(fd
, 0, SEEK_END
);
782 static int64_t raw_getlength(BlockDriverState
*bs
)
784 BDRVRawState
*s
= bs
->opaque
;
792 return lseek(s
->fd
, 0, SEEK_END
);
796 static int raw_create(const char *filename
, QEMUOptionParameter
*options
)
800 int64_t total_size
= 0;
802 /* Read out options */
803 while (options
&& options
->name
) {
804 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
805 total_size
= options
->value
.n
/ BDRV_SECTOR_SIZE
;
810 fd
= open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
,
815 if (ftruncate(fd
, total_size
* BDRV_SECTOR_SIZE
) != 0) {
818 if (close(fd
) != 0) {
825 static int raw_flush(BlockDriverState
*bs
)
827 BDRVRawState
*s
= bs
->opaque
;
828 return qemu_fdatasync(s
->fd
);
832 static int xfs_discard(BDRVRawState
*s
, int64_t sector_num
, int nb_sectors
)
834 struct xfs_flock64 fl
;
836 memset(&fl
, 0, sizeof(fl
));
837 fl
.l_whence
= SEEK_SET
;
838 fl
.l_start
= sector_num
<< 9;
839 fl
.l_len
= (int64_t)nb_sectors
<< 9;
841 if (xfsctl(NULL
, s
->fd
, XFS_IOC_UNRESVSP64
, &fl
) < 0) {
842 DEBUG_BLOCK_PRINT("cannot punch hole (%s)\n", strerror(errno
));
850 static int raw_discard(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
)
853 BDRVRawState
*s
= bs
->opaque
;
856 return xfs_discard(s
, sector_num
, nb_sectors
);
863 static QEMUOptionParameter raw_create_options
[] = {
865 .name
= BLOCK_OPT_SIZE
,
867 .help
= "Virtual disk size"
872 static BlockDriver bdrv_file
= {
873 .format_name
= "file",
874 .protocol_name
= "file",
875 .instance_size
= sizeof(BDRVRawState
),
876 .bdrv_probe
= NULL
, /* no probe for protocols */
877 .bdrv_file_open
= raw_open
,
878 .bdrv_read
= raw_read
,
879 .bdrv_write
= raw_write
,
880 .bdrv_close
= raw_close
,
881 .bdrv_create
= raw_create
,
882 .bdrv_flush
= raw_flush
,
883 .bdrv_discard
= raw_discard
,
885 .bdrv_aio_readv
= raw_aio_readv
,
886 .bdrv_aio_writev
= raw_aio_writev
,
887 .bdrv_aio_flush
= raw_aio_flush
,
889 .bdrv_truncate
= raw_truncate
,
890 .bdrv_getlength
= raw_getlength
,
892 .create_options
= raw_create_options
,
895 /***********************************************/
899 static kern_return_t
FindEjectableCDMedia( io_iterator_t
*mediaIterator
);
900 static kern_return_t
GetBSDPath( io_iterator_t mediaIterator
, char *bsdPath
, CFIndex maxPathSize
);
902 kern_return_t
FindEjectableCDMedia( io_iterator_t
*mediaIterator
)
904 kern_return_t kernResult
;
905 mach_port_t masterPort
;
906 CFMutableDictionaryRef classesToMatch
;
908 kernResult
= IOMasterPort( MACH_PORT_NULL
, &masterPort
);
909 if ( KERN_SUCCESS
!= kernResult
) {
910 printf( "IOMasterPort returned %d\n", kernResult
);
913 classesToMatch
= IOServiceMatching( kIOCDMediaClass
);
914 if ( classesToMatch
== NULL
) {
915 printf( "IOServiceMatching returned a NULL dictionary.\n" );
917 CFDictionarySetValue( classesToMatch
, CFSTR( kIOMediaEjectableKey
), kCFBooleanTrue
);
919 kernResult
= IOServiceGetMatchingServices( masterPort
, classesToMatch
, mediaIterator
);
920 if ( KERN_SUCCESS
!= kernResult
)
922 printf( "IOServiceGetMatchingServices returned %d\n", kernResult
);
928 kern_return_t
GetBSDPath( io_iterator_t mediaIterator
, char *bsdPath
, CFIndex maxPathSize
)
930 io_object_t nextMedia
;
931 kern_return_t kernResult
= KERN_FAILURE
;
933 nextMedia
= IOIteratorNext( mediaIterator
);
936 CFTypeRef bsdPathAsCFString
;
937 bsdPathAsCFString
= IORegistryEntryCreateCFProperty( nextMedia
, CFSTR( kIOBSDNameKey
), kCFAllocatorDefault
, 0 );
938 if ( bsdPathAsCFString
) {
939 size_t devPathLength
;
940 strcpy( bsdPath
, _PATH_DEV
);
941 strcat( bsdPath
, "r" );
942 devPathLength
= strlen( bsdPath
);
943 if ( CFStringGetCString( bsdPathAsCFString
, bsdPath
+ devPathLength
, maxPathSize
- devPathLength
, kCFStringEncodingASCII
) ) {
944 kernResult
= KERN_SUCCESS
;
946 CFRelease( bsdPathAsCFString
);
948 IOObjectRelease( nextMedia
);
956 static int hdev_probe_device(const char *filename
)
960 /* allow a dedicated CD-ROM driver to match with a higher priority */
961 if (strstart(filename
, "/dev/cdrom", NULL
))
964 if (stat(filename
, &st
) >= 0 &&
965 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
972 static int hdev_open(BlockDriverState
*bs
, const char *filename
, int flags
)
974 BDRVRawState
*s
= bs
->opaque
;
977 if (strstart(filename
, "/dev/cdrom", NULL
)) {
978 kern_return_t kernResult
;
979 io_iterator_t mediaIterator
;
980 char bsdPath
[ MAXPATHLEN
];
983 kernResult
= FindEjectableCDMedia( &mediaIterator
);
984 kernResult
= GetBSDPath( mediaIterator
, bsdPath
, sizeof( bsdPath
) );
986 if ( bsdPath
[ 0 ] != '\0' ) {
987 strcat(bsdPath
,"s0");
988 /* some CDs don't have a partition 0 */
989 fd
= open(bsdPath
, O_RDONLY
| O_BINARY
| O_LARGEFILE
);
991 bsdPath
[strlen(bsdPath
)-1] = '1';
999 IOObjectRelease( mediaIterator
);
1003 s
->type
= FTYPE_FILE
;
1004 #if defined(__linux__)
1006 char resolved_path
[ MAXPATHLEN
], *temp
;
1008 temp
= realpath(filename
, resolved_path
);
1009 if (temp
&& strstart(temp
, "/dev/sg", NULL
)) {
1015 return raw_open_common(bs
, filename
, flags
, 0);
1018 #if defined(__linux__)
1019 /* Note: we do not have a reliable method to detect if the floppy is
1020 present. The current method is to try to open the floppy at every
1021 I/O and to keep it opened during a few hundreds of ms. */
1022 static int fd_open(BlockDriverState
*bs
)
1024 BDRVRawState
*s
= bs
->opaque
;
1025 int last_media_present
;
1027 if (s
->type
!= FTYPE_FD
)
1029 last_media_present
= (s
->fd
>= 0);
1031 (get_clock() - s
->fd_open_time
) >= FD_OPEN_TIMEOUT
) {
1035 printf("Floppy closed\n");
1039 if (s
->fd_got_error
&&
1040 (get_clock() - s
->fd_error_time
) < FD_OPEN_TIMEOUT
) {
1042 printf("No floppy (open delayed)\n");
1046 s
->fd
= open(bs
->filename
, s
->open_flags
& ~O_NONBLOCK
);
1048 s
->fd_error_time
= get_clock();
1049 s
->fd_got_error
= 1;
1050 if (last_media_present
)
1051 s
->fd_media_changed
= 1;
1053 printf("No floppy\n");
1058 printf("Floppy opened\n");
1061 if (!last_media_present
)
1062 s
->fd_media_changed
= 1;
1063 s
->fd_open_time
= get_clock();
1064 s
->fd_got_error
= 0;
1068 static int hdev_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1070 BDRVRawState
*s
= bs
->opaque
;
1072 return ioctl(s
->fd
, req
, buf
);
1075 static BlockDriverAIOCB
*hdev_aio_ioctl(BlockDriverState
*bs
,
1076 unsigned long int req
, void *buf
,
1077 BlockDriverCompletionFunc
*cb
, void *opaque
)
1079 BDRVRawState
*s
= bs
->opaque
;
1081 if (fd_open(bs
) < 0)
1083 return paio_ioctl(bs
, s
->fd
, req
, buf
, cb
, opaque
);
1086 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1087 static int fd_open(BlockDriverState
*bs
)
1089 BDRVRawState
*s
= bs
->opaque
;
1091 /* this is just to ensure s->fd is sane (its called by io ops) */
1096 #else /* !linux && !FreeBSD */
1098 static int fd_open(BlockDriverState
*bs
)
1103 #endif /* !linux && !FreeBSD */
1105 static int hdev_create(const char *filename
, QEMUOptionParameter
*options
)
1109 struct stat stat_buf
;
1110 int64_t total_size
= 0;
1112 /* Read out options */
1113 while (options
&& options
->name
) {
1114 if (!strcmp(options
->name
, "size")) {
1115 total_size
= options
->value
.n
/ BDRV_SECTOR_SIZE
;
1120 fd
= open(filename
, O_WRONLY
| O_BINARY
);
1124 if (fstat(fd
, &stat_buf
) < 0)
1126 else if (!S_ISBLK(stat_buf
.st_mode
) && !S_ISCHR(stat_buf
.st_mode
))
1128 else if (lseek(fd
, 0, SEEK_END
) < total_size
* BDRV_SECTOR_SIZE
)
1135 static int hdev_has_zero_init(BlockDriverState
*bs
)
1140 static BlockDriver bdrv_host_device
= {
1141 .format_name
= "host_device",
1142 .protocol_name
= "host_device",
1143 .instance_size
= sizeof(BDRVRawState
),
1144 .bdrv_probe_device
= hdev_probe_device
,
1145 .bdrv_file_open
= hdev_open
,
1146 .bdrv_close
= raw_close
,
1147 .bdrv_create
= hdev_create
,
1148 .create_options
= raw_create_options
,
1149 .bdrv_has_zero_init
= hdev_has_zero_init
,
1150 .bdrv_flush
= raw_flush
,
1152 .bdrv_aio_readv
= raw_aio_readv
,
1153 .bdrv_aio_writev
= raw_aio_writev
,
1154 .bdrv_aio_flush
= raw_aio_flush
,
1156 .bdrv_read
= raw_read
,
1157 .bdrv_write
= raw_write
,
1158 .bdrv_getlength
= raw_getlength
,
1160 /* generic scsi device */
1162 .bdrv_ioctl
= hdev_ioctl
,
1163 .bdrv_aio_ioctl
= hdev_aio_ioctl
,
1168 static int floppy_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1170 BDRVRawState
*s
= bs
->opaque
;
1175 /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
1176 ret
= raw_open_common(bs
, filename
, flags
, O_NONBLOCK
);
1180 /* close fd so that we can reopen it as needed */
1183 s
->fd_media_changed
= 1;
1188 static int floppy_probe_device(const char *filename
)
1192 struct floppy_struct fdparam
;
1195 if (strstart(filename
, "/dev/fd", NULL
))
1198 fd
= open(filename
, O_RDONLY
| O_NONBLOCK
);
1202 ret
= fstat(fd
, &st
);
1203 if (ret
== -1 || !S_ISBLK(st
.st_mode
)) {
1207 /* Attempt to detect via a floppy specific ioctl */
1208 ret
= ioctl(fd
, FDGETPRM
, &fdparam
);
1219 static int floppy_is_inserted(BlockDriverState
*bs
)
1221 return fd_open(bs
) >= 0;
1224 static int floppy_media_changed(BlockDriverState
*bs
)
1226 BDRVRawState
*s
= bs
->opaque
;
1230 * XXX: we do not have a true media changed indication.
1231 * It does not work if the floppy is changed without trying to read it.
1234 ret
= s
->fd_media_changed
;
1235 s
->fd_media_changed
= 0;
1237 printf("Floppy changed=%d\n", ret
);
1242 static int floppy_eject(BlockDriverState
*bs
, int eject_flag
)
1244 BDRVRawState
*s
= bs
->opaque
;
1251 fd
= open(bs
->filename
, s
->open_flags
| O_NONBLOCK
);
1253 if (ioctl(fd
, FDEJECT
, 0) < 0)
1261 static BlockDriver bdrv_host_floppy
= {
1262 .format_name
= "host_floppy",
1263 .protocol_name
= "host_floppy",
1264 .instance_size
= sizeof(BDRVRawState
),
1265 .bdrv_probe_device
= floppy_probe_device
,
1266 .bdrv_file_open
= floppy_open
,
1267 .bdrv_close
= raw_close
,
1268 .bdrv_create
= hdev_create
,
1269 .create_options
= raw_create_options
,
1270 .bdrv_has_zero_init
= hdev_has_zero_init
,
1271 .bdrv_flush
= raw_flush
,
1273 .bdrv_aio_readv
= raw_aio_readv
,
1274 .bdrv_aio_writev
= raw_aio_writev
,
1275 .bdrv_aio_flush
= raw_aio_flush
,
1277 .bdrv_read
= raw_read
,
1278 .bdrv_write
= raw_write
,
1279 .bdrv_getlength
= raw_getlength
,
1281 /* removable device support */
1282 .bdrv_is_inserted
= floppy_is_inserted
,
1283 .bdrv_media_changed
= floppy_media_changed
,
1284 .bdrv_eject
= floppy_eject
,
1287 static int cdrom_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1289 BDRVRawState
*s
= bs
->opaque
;
1293 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
1294 return raw_open_common(bs
, filename
, flags
, O_NONBLOCK
);
1297 static int cdrom_probe_device(const char *filename
)
1303 fd
= open(filename
, O_RDONLY
| O_NONBLOCK
);
1307 ret
= fstat(fd
, &st
);
1308 if (ret
== -1 || !S_ISBLK(st
.st_mode
)) {
1312 /* Attempt to detect via a CDROM specific ioctl */
1313 ret
= ioctl(fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
1323 static int cdrom_is_inserted(BlockDriverState
*bs
)
1325 BDRVRawState
*s
= bs
->opaque
;
1328 ret
= ioctl(s
->fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
1329 if (ret
== CDS_DISC_OK
)
1334 static int cdrom_eject(BlockDriverState
*bs
, int eject_flag
)
1336 BDRVRawState
*s
= bs
->opaque
;
1339 if (ioctl(s
->fd
, CDROMEJECT
, NULL
) < 0)
1340 perror("CDROMEJECT");
1342 if (ioctl(s
->fd
, CDROMCLOSETRAY
, NULL
) < 0)
1343 perror("CDROMEJECT");
1349 static int cdrom_set_locked(BlockDriverState
*bs
, int locked
)
1351 BDRVRawState
*s
= bs
->opaque
;
1353 if (ioctl(s
->fd
, CDROM_LOCKDOOR
, locked
) < 0) {
1355 * Note: an error can happen if the distribution automatically
1358 /* perror("CDROM_LOCKDOOR"); */
1364 static BlockDriver bdrv_host_cdrom
= {
1365 .format_name
= "host_cdrom",
1366 .protocol_name
= "host_cdrom",
1367 .instance_size
= sizeof(BDRVRawState
),
1368 .bdrv_probe_device
= cdrom_probe_device
,
1369 .bdrv_file_open
= cdrom_open
,
1370 .bdrv_close
= raw_close
,
1371 .bdrv_create
= hdev_create
,
1372 .create_options
= raw_create_options
,
1373 .bdrv_has_zero_init
= hdev_has_zero_init
,
1374 .bdrv_flush
= raw_flush
,
1376 .bdrv_aio_readv
= raw_aio_readv
,
1377 .bdrv_aio_writev
= raw_aio_writev
,
1378 .bdrv_aio_flush
= raw_aio_flush
,
1380 .bdrv_read
= raw_read
,
1381 .bdrv_write
= raw_write
,
1382 .bdrv_getlength
= raw_getlength
,
1384 /* removable device support */
1385 .bdrv_is_inserted
= cdrom_is_inserted
,
1386 .bdrv_eject
= cdrom_eject
,
1387 .bdrv_set_locked
= cdrom_set_locked
,
1389 /* generic scsi device */
1390 .bdrv_ioctl
= hdev_ioctl
,
1391 .bdrv_aio_ioctl
= hdev_aio_ioctl
,
1393 #endif /* __linux__ */
1395 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1396 static int cdrom_open(BlockDriverState
*bs
, const char *filename
, int flags
)
1398 BDRVRawState
*s
= bs
->opaque
;
1403 ret
= raw_open_common(bs
, filename
, flags
, 0);
1407 /* make sure the door isnt locked at this time */
1408 ioctl(s
->fd
, CDIOCALLOW
);
1412 static int cdrom_probe_device(const char *filename
)
1414 if (strstart(filename
, "/dev/cd", NULL
) ||
1415 strstart(filename
, "/dev/acd", NULL
))
1420 static int cdrom_reopen(BlockDriverState
*bs
)
1422 BDRVRawState
*s
= bs
->opaque
;
1426 * Force reread of possibly changed/newly loaded disc,
1427 * FreeBSD seems to not notice sometimes...
1431 fd
= open(bs
->filename
, s
->open_flags
, 0644);
1438 /* make sure the door isnt locked at this time */
1439 ioctl(s
->fd
, CDIOCALLOW
);
1443 static int cdrom_is_inserted(BlockDriverState
*bs
)
1445 return raw_getlength(bs
) > 0;
1448 static int cdrom_eject(BlockDriverState
*bs
, int eject_flag
)
1450 BDRVRawState
*s
= bs
->opaque
;
1455 (void) ioctl(s
->fd
, CDIOCALLOW
);
1458 if (ioctl(s
->fd
, CDIOCEJECT
) < 0)
1459 perror("CDIOCEJECT");
1461 if (ioctl(s
->fd
, CDIOCCLOSE
) < 0)
1462 perror("CDIOCCLOSE");
1465 if (cdrom_reopen(bs
) < 0)
1470 static int cdrom_set_locked(BlockDriverState
*bs
, int locked
)
1472 BDRVRawState
*s
= bs
->opaque
;
1476 if (ioctl(s
->fd
, (locked
? CDIOCPREVENT
: CDIOCALLOW
)) < 0) {
1478 * Note: an error can happen if the distribution automatically
1481 /* perror("CDROM_LOCKDOOR"); */
1487 static BlockDriver bdrv_host_cdrom
= {
1488 .format_name
= "host_cdrom",
1489 .protocol_name
= "host_cdrom",
1490 .instance_size
= sizeof(BDRVRawState
),
1491 .bdrv_probe_device
= cdrom_probe_device
,
1492 .bdrv_file_open
= cdrom_open
,
1493 .bdrv_close
= raw_close
,
1494 .bdrv_create
= hdev_create
,
1495 .create_options
= raw_create_options
,
1496 .bdrv_has_zero_init
= hdev_has_zero_init
,
1497 .bdrv_flush
= raw_flush
,
1499 .bdrv_aio_readv
= raw_aio_readv
,
1500 .bdrv_aio_writev
= raw_aio_writev
,
1501 .bdrv_aio_flush
= raw_aio_flush
,
1503 .bdrv_read
= raw_read
,
1504 .bdrv_write
= raw_write
,
1505 .bdrv_getlength
= raw_getlength
,
1507 /* removable device support */
1508 .bdrv_is_inserted
= cdrom_is_inserted
,
1509 .bdrv_eject
= cdrom_eject
,
1510 .bdrv_set_locked
= cdrom_set_locked
,
1512 #endif /* __FreeBSD__ */
1514 static void bdrv_file_init(void)
1517 * Register all the drivers. Note that order is important, the driver
1518 * registered last will get probed first.
1520 bdrv_register(&bdrv_file
);
1521 bdrv_register(&bdrv_host_device
);
1523 bdrv_register(&bdrv_host_floppy
);
1524 bdrv_register(&bdrv_host_cdrom
);
1526 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1527 bdrv_register(&bdrv_host_cdrom
);
1531 block_init(bdrv_file_init
);