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"
27 #include "block_int.h"
30 #include "posix-aio-compat.h"
35 #include <sys/param.h>
36 #include <IOKit/IOKitLib.h>
37 #include <IOKit/IOBSD.h>
38 #include <IOKit/storage/IOMediaBSDClient.h>
39 #include <IOKit/storage/IOMedia.h>
40 #include <IOKit/storage/IOCDMedia.h>
41 //#include <IOKit/storage/IOCDTypes.h>
42 #include <CoreFoundation/CoreFoundation.h>
46 #define _POSIX_PTHREAD_SEMANTICS 1
51 #include <sys/ioctl.h>
52 #include <linux/cdrom.h>
61 #include <sys/ioctl.h>
62 #include <sys/disklabel.h>
67 #include <sys/ioctl.h>
68 #include <sys/diskslice.h>
71 //#define DEBUG_FLOPPY
74 #if defined(DEBUG_BLOCK)
75 #define DEBUG_BLOCK_PRINT(formatCstr, args...) do { if (qemu_log_enabled()) \
76 { qemu_log(formatCstr, ##args); qemu_log_flush(); } } while (0)
78 #define DEBUG_BLOCK_PRINT(formatCstr, args...)
81 /* OS X does not have O_DSYNC */
83 #define O_DSYNC O_SYNC
86 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
88 #define O_DIRECT O_DSYNC
95 #define ALIGNED_BUFFER_SIZE (32 * 512)
97 /* if the FD is not accessed during that time (in ms), we try to
98 reopen it to see if the disk has been changed */
99 #define FD_OPEN_TIMEOUT 1000
101 typedef struct BDRVRawState
{
104 unsigned int lseek_err_cnt
;
105 #if defined(__linux__)
106 /* linux floppy specific */
108 int64_t fd_open_time
;
109 int64_t fd_error_time
;
111 int fd_media_changed
;
113 uint8_t* aligned_buf
;
116 static int posix_aio_init(void);
118 static int fd_open(BlockDriverState
*bs
);
120 static int raw_open(BlockDriverState
*bs
, const char *filename
, int flags
)
122 BDRVRawState
*s
= bs
->opaque
;
123 int fd
, open_flags
, ret
;
127 s
->lseek_err_cnt
= 0;
129 open_flags
= O_BINARY
;
130 if ((flags
& BDRV_O_ACCESS
) == O_RDWR
) {
131 open_flags
|= O_RDWR
;
133 open_flags
|= O_RDONLY
;
136 if (flags
& BDRV_O_CREAT
)
137 open_flags
|= O_CREAT
| O_TRUNC
;
139 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
140 * and O_DIRECT for no caching. */
141 if ((flags
& BDRV_O_NOCACHE
))
142 open_flags
|= O_DIRECT
;
143 else if (!(flags
& BDRV_O_CACHE_WB
))
144 open_flags
|= O_DSYNC
;
146 s
->type
= FTYPE_FILE
;
148 fd
= open(filename
, open_flags
, 0644);
156 s
->aligned_buf
= NULL
;
157 if ((flags
& BDRV_O_NOCACHE
)) {
158 s
->aligned_buf
= qemu_memalign(512, ALIGNED_BUFFER_SIZE
);
159 if (s
->aligned_buf
== NULL
) {
168 /* XXX: use host sector size if necessary with:
169 #ifdef DIOCGSECTORSIZE
171 unsigned int sectorsize = 512;
172 if (!ioctl(fd, DIOCGSECTORSIZE, §orsize) &&
173 sectorsize > bufsize)
174 bufsize = sectorsize;
178 u_int32_t blockSize = 512;
179 if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
186 * offset and count are in bytes, but must be multiples of 512 for files
187 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
189 * This function may be called without alignment if the caller ensures
190 * that O_DIRECT is not in effect.
192 static int raw_pread_aligned(BlockDriverState
*bs
, int64_t offset
,
193 uint8_t *buf
, int count
)
195 BDRVRawState
*s
= bs
->opaque
;
202 if (offset
>= 0 && lseek(s
->fd
, offset
, SEEK_SET
) == (off_t
)-1) {
203 ++(s
->lseek_err_cnt
);
204 if(s
->lseek_err_cnt
<= 10) {
205 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64
", %p, %d) [%" PRId64
206 "] lseek failed : %d = %s\n",
207 s
->fd
, bs
->filename
, offset
, buf
, count
,
208 bs
->total_sectors
, errno
, strerror(errno
));
214 ret
= read(s
->fd
, buf
, count
);
216 goto label__raw_read__success
;
218 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64
", %p, %d) [%" PRId64
219 "] read failed %d : %d = %s\n",
220 s
->fd
, bs
->filename
, offset
, buf
, count
,
221 bs
->total_sectors
, ret
, errno
, strerror(errno
));
223 /* Try harder for CDrom. */
224 if (bs
->type
== BDRV_TYPE_CDROM
) {
225 lseek(s
->fd
, offset
, SEEK_SET
);
226 ret
= read(s
->fd
, buf
, count
);
228 goto label__raw_read__success
;
229 lseek(s
->fd
, offset
, SEEK_SET
);
230 ret
= read(s
->fd
, buf
, count
);
232 goto label__raw_read__success
;
234 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64
", %p, %d) [%" PRId64
235 "] retry read failed %d : %d = %s\n",
236 s
->fd
, bs
->filename
, offset
, buf
, count
,
237 bs
->total_sectors
, ret
, errno
, strerror(errno
));
240 label__raw_read__success
:
246 * offset and count are in bytes, but must be multiples of 512 for files
247 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
249 * This function may be called without alignment if the caller ensures
250 * that O_DIRECT is not in effect.
252 static int raw_pwrite_aligned(BlockDriverState
*bs
, int64_t offset
,
253 const uint8_t *buf
, int count
)
255 BDRVRawState
*s
= bs
->opaque
;
262 if (offset
>= 0 && lseek(s
->fd
, offset
, SEEK_SET
) == (off_t
)-1) {
263 ++(s
->lseek_err_cnt
);
264 if(s
->lseek_err_cnt
) {
265 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64
", %p, %d) [%"
266 PRId64
"] lseek failed : %d = %s\n",
267 s
->fd
, bs
->filename
, offset
, buf
, count
,
268 bs
->total_sectors
, errno
, strerror(errno
));
272 s
->lseek_err_cnt
= 0;
274 ret
= write(s
->fd
, buf
, count
);
276 goto label__raw_write__success
;
278 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64
", %p, %d) [%" PRId64
279 "] write failed %d : %d = %s\n",
280 s
->fd
, bs
->filename
, offset
, buf
, count
,
281 bs
->total_sectors
, ret
, errno
, strerror(errno
));
283 label__raw_write__success
:
285 return (ret
< 0) ? -errno
: ret
;
290 * offset and count are in bytes and possibly not aligned. For files opened
291 * with O_DIRECT, necessary alignments are ensured before calling
292 * raw_pread_aligned to do the actual read.
294 static int raw_pread(BlockDriverState
*bs
, int64_t offset
,
295 uint8_t *buf
, int count
)
297 BDRVRawState
*s
= bs
->opaque
;
298 int size
, ret
, shift
, sum
;
302 if (s
->aligned_buf
!= NULL
) {
304 if (offset
& 0x1ff) {
305 /* align offset on a 512 bytes boundary */
307 shift
= offset
& 0x1ff;
308 size
= (shift
+ count
+ 0x1ff) & ~0x1ff;
309 if (size
> ALIGNED_BUFFER_SIZE
)
310 size
= ALIGNED_BUFFER_SIZE
;
311 ret
= raw_pread_aligned(bs
, offset
- shift
, s
->aligned_buf
, size
);
318 memcpy(buf
, s
->aligned_buf
+ shift
, size
);
328 if (count
& 0x1ff || (uintptr_t) buf
& 0x1ff) {
330 /* read on aligned buffer */
334 size
= (count
+ 0x1ff) & ~0x1ff;
335 if (size
> ALIGNED_BUFFER_SIZE
)
336 size
= ALIGNED_BUFFER_SIZE
;
338 ret
= raw_pread_aligned(bs
, offset
, s
->aligned_buf
, size
);
346 memcpy(buf
, s
->aligned_buf
, size
);
358 return raw_pread_aligned(bs
, offset
, buf
, count
) + sum
;
362 * offset and count are in bytes and possibly not aligned. For files opened
363 * with O_DIRECT, necessary alignments are ensured before calling
364 * raw_pwrite_aligned to do the actual write.
366 static int raw_pwrite(BlockDriverState
*bs
, int64_t offset
,
367 const uint8_t *buf
, int count
)
369 BDRVRawState
*s
= bs
->opaque
;
370 int size
, ret
, shift
, sum
;
374 if (s
->aligned_buf
!= NULL
) {
376 if (offset
& 0x1ff) {
377 /* align offset on a 512 bytes boundary */
378 shift
= offset
& 0x1ff;
379 ret
= raw_pread_aligned(bs
, offset
- shift
, s
->aligned_buf
, 512);
386 memcpy(s
->aligned_buf
+ shift
, buf
, size
);
388 ret
= raw_pwrite_aligned(bs
, offset
- shift
, s
->aligned_buf
, 512);
400 if (count
& 0x1ff || (uintptr_t) buf
& 0x1ff) {
402 while ((size
= (count
& ~0x1ff)) != 0) {
404 if (size
> ALIGNED_BUFFER_SIZE
)
405 size
= ALIGNED_BUFFER_SIZE
;
407 memcpy(s
->aligned_buf
, buf
, size
);
409 ret
= raw_pwrite_aligned(bs
, offset
, s
->aligned_buf
, size
);
418 /* here, count < 512 because (count & ~0x1ff) == 0 */
420 ret
= raw_pread_aligned(bs
, offset
, s
->aligned_buf
, 512);
423 memcpy(s
->aligned_buf
, buf
, count
);
425 ret
= raw_pwrite_aligned(bs
, offset
, s
->aligned_buf
, 512);
436 return raw_pwrite_aligned(bs
, offset
, buf
, count
) + sum
;
440 /***********************************************************/
441 /* Unix AIO using POSIX AIO */
443 typedef struct RawAIOCB
{
444 BlockDriverAIOCB common
;
445 struct qemu_paiocb aiocb
;
446 struct RawAIOCB
*next
;
450 typedef struct PosixAioState
456 static void posix_aio_read(void *opaque
)
458 PosixAioState
*s
= opaque
;
459 RawAIOCB
*acb
, **pacb
;
463 /* read all bytes from signal pipe */
467 len
= read(s
->rfd
, bytes
, sizeof(bytes
));
468 if (len
== -1 && errno
== EINTR
)
469 continue; /* try again */
470 if (len
== sizeof(bytes
))
471 continue; /* more to read */
476 pacb
= &s
->first_aio
;
481 ret
= qemu_paio_error(&acb
->aiocb
);
482 if (ret
== ECANCELED
) {
483 /* remove the request */
485 qemu_aio_release(acb
);
486 } else if (ret
!= EINPROGRESS
) {
489 ret
= qemu_paio_return(&acb
->aiocb
);
490 if (ret
== acb
->aiocb
.aio_nbytes
)
497 /* remove the request */
499 /* call the callback */
500 acb
->common
.cb(acb
->common
.opaque
, ret
);
501 qemu_aio_release(acb
);
511 static int posix_aio_flush(void *opaque
)
513 PosixAioState
*s
= opaque
;
514 return !!s
->first_aio
;
517 static PosixAioState
*posix_aio_state
;
519 static void aio_signal_handler(int signum
)
521 if (posix_aio_state
) {
524 write(posix_aio_state
->wfd
, &byte
, sizeof(byte
));
530 static int posix_aio_init(void)
532 struct sigaction act
;
535 struct qemu_paioinit ai
;
540 s
= qemu_malloc(sizeof(PosixAioState
));
542 sigfillset(&act
.sa_mask
);
543 act
.sa_flags
= 0; /* do not restart syscalls to interrupt select() */
544 act
.sa_handler
= aio_signal_handler
;
545 sigaction(SIGUSR2
, &act
, NULL
);
548 if (pipe(fds
) == -1) {
549 fprintf(stderr
, "failed to create pipe\n");
556 fcntl(s
->rfd
, F_SETFL
, O_NONBLOCK
);
557 fcntl(s
->wfd
, F_SETFL
, O_NONBLOCK
);
559 qemu_aio_set_fd_handler(s
->rfd
, posix_aio_read
, NULL
, posix_aio_flush
, s
);
561 memset(&ai
, 0, sizeof(ai
));
571 static RawAIOCB
*raw_aio_setup(BlockDriverState
*bs
,
572 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
573 BlockDriverCompletionFunc
*cb
, void *opaque
)
575 BDRVRawState
*s
= bs
->opaque
;
581 acb
= qemu_aio_get(bs
, cb
, opaque
);
584 acb
->aiocb
.aio_fildes
= s
->fd
;
585 acb
->aiocb
.ev_signo
= SIGUSR2
;
586 acb
->aiocb
.aio_buf
= buf
;
588 acb
->aiocb
.aio_nbytes
= -nb_sectors
;
590 acb
->aiocb
.aio_nbytes
= nb_sectors
* 512;
591 acb
->aiocb
.aio_offset
= sector_num
* 512;
592 acb
->next
= posix_aio_state
->first_aio
;
593 posix_aio_state
->first_aio
= acb
;
597 static void raw_aio_em_cb(void* opaque
)
599 RawAIOCB
*acb
= opaque
;
600 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
601 qemu_aio_release(acb
);
604 static void raw_aio_remove(RawAIOCB
*acb
)
608 /* remove the callback from the queue */
609 pacb
= &posix_aio_state
->first_aio
;
612 fprintf(stderr
, "raw_aio_remove: aio request not found!\n");
614 } else if (*pacb
== acb
) {
616 qemu_aio_release(acb
);
619 pacb
= &(*pacb
)->next
;
623 static BlockDriverAIOCB
*raw_aio_read(BlockDriverState
*bs
,
624 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
625 BlockDriverCompletionFunc
*cb
, void *opaque
)
630 * If O_DIRECT is used and the buffer is not aligned fall back
633 BDRVRawState
*s
= bs
->opaque
;
635 if (unlikely(s
->aligned_buf
!= NULL
&& ((uintptr_t) buf
% 512))) {
637 acb
= qemu_aio_get(bs
, cb
, opaque
);
638 acb
->ret
= raw_pread(bs
, 512 * sector_num
, buf
, 512 * nb_sectors
);
639 bh
= qemu_bh_new(raw_aio_em_cb
, acb
);
640 qemu_bh_schedule(bh
);
644 acb
= raw_aio_setup(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
647 if (qemu_paio_read(&acb
->aiocb
) < 0) {
654 static BlockDriverAIOCB
*raw_aio_write(BlockDriverState
*bs
,
655 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
656 BlockDriverCompletionFunc
*cb
, void *opaque
)
661 * If O_DIRECT is used and the buffer is not aligned fall back
664 BDRVRawState
*s
= bs
->opaque
;
666 if (unlikely(s
->aligned_buf
!= NULL
&& ((uintptr_t) buf
% 512))) {
668 acb
= qemu_aio_get(bs
, cb
, opaque
);
669 acb
->ret
= raw_pwrite(bs
, 512 * sector_num
, buf
, 512 * nb_sectors
);
670 bh
= qemu_bh_new(raw_aio_em_cb
, acb
);
671 qemu_bh_schedule(bh
);
675 acb
= raw_aio_setup(bs
, sector_num
, (uint8_t*)buf
, nb_sectors
, cb
, opaque
);
678 if (qemu_paio_write(&acb
->aiocb
) < 0) {
685 static void raw_aio_cancel(BlockDriverAIOCB
*blockacb
)
688 RawAIOCB
*acb
= (RawAIOCB
*)blockacb
;
690 ret
= qemu_paio_cancel(acb
->aiocb
.aio_fildes
, &acb
->aiocb
);
691 if (ret
== QEMU_PAIO_NOTCANCELED
) {
692 /* fail safe: if the aio could not be canceled, we wait for
694 while (qemu_paio_error(&acb
->aiocb
) == EINPROGRESS
);
699 #else /* CONFIG_AIO */
700 static int posix_aio_init(void)
704 #endif /* CONFIG_AIO */
707 static void raw_close(BlockDriverState
*bs
)
709 BDRVRawState
*s
= bs
->opaque
;
713 if (s
->aligned_buf
!= NULL
)
714 qemu_free(s
->aligned_buf
);
718 static int raw_truncate(BlockDriverState
*bs
, int64_t offset
)
720 BDRVRawState
*s
= bs
->opaque
;
721 if (s
->type
!= FTYPE_FILE
)
723 if (ftruncate(s
->fd
, offset
) < 0)
729 static int64_t raw_getlength(BlockDriverState
*bs
)
731 BDRVRawState
*s
= bs
->opaque
;
737 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
740 if (ioctl(fd
, DIOCGDINFO
, &dl
))
742 return (uint64_t)dl
.d_secsize
*
743 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
747 #else /* !__OpenBSD__ */
748 static int64_t raw_getlength(BlockDriverState
*bs
)
750 BDRVRawState
*s
= bs
->opaque
;
757 struct dk_minfo minfo
;
767 if (!fstat(fd
, &sb
) && (S_IFCHR
& sb
.st_mode
)) {
768 #ifdef DIOCGMEDIASIZE
769 if (ioctl(fd
, DIOCGMEDIASIZE
, (off_t
*)&size
))
770 #elif defined(DIOCGPART)
773 if (ioctl(fd
, DIOCGPART
, &pi
) == 0)
774 size
= pi
.media_size
;
781 size
= LONG_LONG_MAX
;
783 size
= lseek(fd
, 0LL, SEEK_END
);
789 * use the DKIOCGMEDIAINFO ioctl to read the size.
791 rv
= ioctl ( fd
, DKIOCGMEDIAINFO
, &minfo
);
793 size
= minfo
.dki_lbsize
* minfo
.dki_capacity
;
794 } else /* there are reports that lseek on some devices
795 fails, but irc discussion said that contingency
796 on contingency was overkill */
799 size
= lseek(fd
, 0, SEEK_END
);
805 static int raw_create(const char *filename
, int64_t total_size
,
806 const char *backing_file
, int flags
)
810 if (flags
|| backing_file
)
813 fd
= open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
,
817 ftruncate(fd
, total_size
* 512);
822 static void raw_flush(BlockDriverState
*bs
)
824 BDRVRawState
*s
= bs
->opaque
;
828 BlockDriver bdrv_raw
= {
830 sizeof(BDRVRawState
),
831 NULL
, /* no probe for protocols */
840 .bdrv_aio_read
= raw_aio_read
,
841 .bdrv_aio_write
= raw_aio_write
,
842 .bdrv_aio_cancel
= raw_aio_cancel
,
843 .aiocb_size
= sizeof(RawAIOCB
),
846 .bdrv_pread
= raw_pread
,
847 .bdrv_pwrite
= raw_pwrite
,
848 .bdrv_truncate
= raw_truncate
,
849 .bdrv_getlength
= raw_getlength
,
852 /***********************************************/
856 static kern_return_t
FindEjectableCDMedia( io_iterator_t
*mediaIterator
);
857 static kern_return_t
GetBSDPath( io_iterator_t mediaIterator
, char *bsdPath
, CFIndex maxPathSize
);
859 kern_return_t
FindEjectableCDMedia( io_iterator_t
*mediaIterator
)
861 kern_return_t kernResult
;
862 mach_port_t masterPort
;
863 CFMutableDictionaryRef classesToMatch
;
865 kernResult
= IOMasterPort( MACH_PORT_NULL
, &masterPort
);
866 if ( KERN_SUCCESS
!= kernResult
) {
867 printf( "IOMasterPort returned %d\n", kernResult
);
870 classesToMatch
= IOServiceMatching( kIOCDMediaClass
);
871 if ( classesToMatch
== NULL
) {
872 printf( "IOServiceMatching returned a NULL dictionary.\n" );
874 CFDictionarySetValue( classesToMatch
, CFSTR( kIOMediaEjectableKey
), kCFBooleanTrue
);
876 kernResult
= IOServiceGetMatchingServices( masterPort
, classesToMatch
, mediaIterator
);
877 if ( KERN_SUCCESS
!= kernResult
)
879 printf( "IOServiceGetMatchingServices returned %d\n", kernResult
);
885 kern_return_t
GetBSDPath( io_iterator_t mediaIterator
, char *bsdPath
, CFIndex maxPathSize
)
887 io_object_t nextMedia
;
888 kern_return_t kernResult
= KERN_FAILURE
;
890 nextMedia
= IOIteratorNext( mediaIterator
);
893 CFTypeRef bsdPathAsCFString
;
894 bsdPathAsCFString
= IORegistryEntryCreateCFProperty( nextMedia
, CFSTR( kIOBSDNameKey
), kCFAllocatorDefault
, 0 );
895 if ( bsdPathAsCFString
) {
896 size_t devPathLength
;
897 strcpy( bsdPath
, _PATH_DEV
);
898 strcat( bsdPath
, "r" );
899 devPathLength
= strlen( bsdPath
);
900 if ( CFStringGetCString( bsdPathAsCFString
, bsdPath
+ devPathLength
, maxPathSize
- devPathLength
, kCFStringEncodingASCII
) ) {
901 kernResult
= KERN_SUCCESS
;
903 CFRelease( bsdPathAsCFString
);
905 IOObjectRelease( nextMedia
);
913 static int hdev_open(BlockDriverState
*bs
, const char *filename
, int flags
)
915 BDRVRawState
*s
= bs
->opaque
;
916 int fd
, open_flags
, ret
;
921 if (strstart(filename
, "/dev/cdrom", NULL
)) {
922 kern_return_t kernResult
;
923 io_iterator_t mediaIterator
;
924 char bsdPath
[ MAXPATHLEN
];
927 kernResult
= FindEjectableCDMedia( &mediaIterator
);
928 kernResult
= GetBSDPath( mediaIterator
, bsdPath
, sizeof( bsdPath
) );
930 if ( bsdPath
[ 0 ] != '\0' ) {
931 strcat(bsdPath
,"s0");
932 /* some CDs don't have a partition 0 */
933 fd
= open(bsdPath
, O_RDONLY
| O_BINARY
| O_LARGEFILE
);
935 bsdPath
[strlen(bsdPath
)-1] = '1';
943 IOObjectRelease( mediaIterator
);
946 open_flags
= O_BINARY
;
947 if ((flags
& BDRV_O_ACCESS
) == O_RDWR
) {
948 open_flags
|= O_RDWR
;
950 open_flags
|= O_RDONLY
;
953 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
954 * and O_DIRECT for no caching. */
955 if ((flags
& BDRV_O_NOCACHE
))
956 open_flags
|= O_DIRECT
;
957 else if (!(flags
& BDRV_O_CACHE_WB
))
958 open_flags
|= O_DSYNC
;
960 s
->type
= FTYPE_FILE
;
961 #if defined(__linux__)
962 if (strstart(filename
, "/dev/cd", NULL
)) {
963 /* open will not fail even if no CD is inserted */
964 open_flags
|= O_NONBLOCK
;
966 } else if (strstart(filename
, "/dev/fd", NULL
)) {
968 s
->fd_open_flags
= open_flags
;
969 /* open will not fail even if no floppy is inserted */
970 open_flags
|= O_NONBLOCK
;
971 } else if (strstart(filename
, "/dev/sg", NULL
)) {
975 fd
= open(filename
, open_flags
, 0644);
983 #if defined(__linux__)
984 /* close fd so that we can reopen it as needed */
985 if (s
->type
== FTYPE_FD
) {
988 s
->fd_media_changed
= 1;
994 #if defined(__linux__)
995 /* Note: we do not have a reliable method to detect if the floppy is
996 present. The current method is to try to open the floppy at every
997 I/O and to keep it opened during a few hundreds of ms. */
998 static int fd_open(BlockDriverState
*bs
)
1000 BDRVRawState
*s
= bs
->opaque
;
1001 int last_media_present
;
1003 if (s
->type
!= FTYPE_FD
)
1005 last_media_present
= (s
->fd
>= 0);
1007 (qemu_get_clock(rt_clock
) - s
->fd_open_time
) >= FD_OPEN_TIMEOUT
) {
1011 printf("Floppy closed\n");
1015 if (s
->fd_got_error
&&
1016 (qemu_get_clock(rt_clock
) - s
->fd_error_time
) < FD_OPEN_TIMEOUT
) {
1018 printf("No floppy (open delayed)\n");
1022 s
->fd
= open(bs
->filename
, s
->fd_open_flags
);
1024 s
->fd_error_time
= qemu_get_clock(rt_clock
);
1025 s
->fd_got_error
= 1;
1026 if (last_media_present
)
1027 s
->fd_media_changed
= 1;
1029 printf("No floppy\n");
1034 printf("Floppy opened\n");
1037 if (!last_media_present
)
1038 s
->fd_media_changed
= 1;
1039 s
->fd_open_time
= qemu_get_clock(rt_clock
);
1040 s
->fd_got_error
= 0;
1044 static int raw_is_inserted(BlockDriverState
*bs
)
1046 BDRVRawState
*s
= bs
->opaque
;
1051 ret
= ioctl(s
->fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
1052 if (ret
== CDS_DISC_OK
)
1065 /* currently only used by fdc.c, but a CD version would be good too */
1066 static int raw_media_changed(BlockDriverState
*bs
)
1068 BDRVRawState
*s
= bs
->opaque
;
1074 /* XXX: we do not have a true media changed indication. It
1075 does not work if the floppy is changed without trying
1078 ret
= s
->fd_media_changed
;
1079 s
->fd_media_changed
= 0;
1081 printf("Floppy changed=%d\n", ret
);
1090 static int raw_eject(BlockDriverState
*bs
, int eject_flag
)
1092 BDRVRawState
*s
= bs
->opaque
;
1097 if (ioctl (s
->fd
, CDROMEJECT
, NULL
) < 0)
1098 perror("CDROMEJECT");
1100 if (ioctl (s
->fd
, CDROMCLOSETRAY
, NULL
) < 0)
1101 perror("CDROMEJECT");
1111 fd
= open(bs
->filename
, s
->fd_open_flags
| O_NONBLOCK
);
1113 if (ioctl(fd
, FDEJECT
, 0) < 0)
1125 static int raw_set_locked(BlockDriverState
*bs
, int locked
)
1127 BDRVRawState
*s
= bs
->opaque
;
1131 if (ioctl (s
->fd
, CDROM_LOCKDOOR
, locked
) < 0) {
1132 /* Note: an error can happen if the distribution automatically
1133 mounts the CD-ROM */
1134 // perror("CDROM_LOCKDOOR");
1143 static int raw_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1145 BDRVRawState
*s
= bs
->opaque
;
1147 return ioctl(s
->fd
, req
, buf
);
1151 static int fd_open(BlockDriverState
*bs
)
1156 static int raw_is_inserted(BlockDriverState
*bs
)
1161 static int raw_media_changed(BlockDriverState
*bs
)
1166 static int raw_eject(BlockDriverState
*bs
, int eject_flag
)
1171 static int raw_set_locked(BlockDriverState
*bs
, int locked
)
1176 static int raw_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1182 BlockDriver bdrv_host_device
= {
1183 .format_name
= "host_device",
1184 .instance_size
= sizeof(BDRVRawState
),
1185 .bdrv_open
= hdev_open
,
1186 .bdrv_close
= raw_close
,
1187 .bdrv_flush
= raw_flush
,
1190 .bdrv_aio_read
= raw_aio_read
,
1191 .bdrv_aio_write
= raw_aio_write
,
1192 .bdrv_aio_cancel
= raw_aio_cancel
,
1193 .aiocb_size
= sizeof(RawAIOCB
),
1196 .bdrv_pread
= raw_pread
,
1197 .bdrv_pwrite
= raw_pwrite
,
1198 .bdrv_getlength
= raw_getlength
,
1200 /* removable device support */
1201 .bdrv_is_inserted
= raw_is_inserted
,
1202 .bdrv_media_changed
= raw_media_changed
,
1203 .bdrv_eject
= raw_eject
,
1204 .bdrv_set_locked
= raw_set_locked
,
1205 /* generic scsi device */
1206 .bdrv_ioctl
= raw_ioctl
,