net: use qtailq for vlan and client lists
[qemu/aliguori-queue.git] / block / raw-posix.c
blob20b37a732c1b83f3a3993d463c1f92a2862951e8
1 /*
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
22 * THE SOFTWARE.
24 #include "qemu-common.h"
25 #include "qemu-timer.h"
26 #include "qemu-char.h"
27 #include "qemu-log.h"
28 #include "block_int.h"
29 #include "module.h"
30 #include "block/raw-posix-aio.h"
32 #ifdef CONFIG_COCOA
33 #include <paths.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>
42 #endif
44 #ifdef __sun__
45 #define _POSIX_PTHREAD_SEMANTICS 1
46 #include <signal.h>
47 #include <sys/dkio.h>
48 #endif
49 #ifdef __linux__
50 #include <sys/ioctl.h>
51 #include <linux/cdrom.h>
52 #include <linux/fd.h>
53 #endif
54 #ifdef __FreeBSD__
55 #include <signal.h>
56 #include <sys/disk.h>
57 #include <sys/cdio.h>
58 #endif
60 #ifdef __OpenBSD__
61 #include <sys/ioctl.h>
62 #include <sys/disklabel.h>
63 #include <sys/dkio.h>
64 #endif
66 #ifdef __DragonFly__
67 #include <sys/ioctl.h>
68 #include <sys/diskslice.h>
69 #endif
71 //#define DEBUG_FLOPPY
73 //#define DEBUG_BLOCK
74 #if defined(DEBUG_BLOCK)
75 #define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
76 { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
77 #else
78 #define DEBUG_BLOCK_PRINT(formatCstr, ...)
79 #endif
81 /* OS X does not have O_DSYNC */
82 #ifndef O_DSYNC
83 #ifdef O_SYNC
84 #define O_DSYNC O_SYNC
85 #elif defined(O_FSYNC)
86 #define O_DSYNC O_FSYNC
87 #endif
88 #endif
90 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
91 #ifndef O_DIRECT
92 #define O_DIRECT O_DSYNC
93 #endif
95 #define FTYPE_FILE 0
96 #define FTYPE_CD 1
97 #define FTYPE_FD 2
99 #define ALIGNED_BUFFER_SIZE (32 * 512)
101 /* if the FD is not accessed during that time (in ms), we try to
102 reopen it to see if the disk has been changed */
103 #define FD_OPEN_TIMEOUT 1000
105 typedef struct BDRVRawState {
106 int fd;
107 int type;
108 unsigned int lseek_err_cnt;
109 int open_flags;
110 void *aio_ctx;
111 #if defined(__linux__)
112 /* linux floppy specific */
113 int64_t fd_open_time;
114 int64_t fd_error_time;
115 int fd_got_error;
116 int fd_media_changed;
117 #endif
118 #ifdef CONFIG_LINUX_AIO
119 int use_aio;
120 #endif
121 uint8_t* aligned_buf;
122 } BDRVRawState;
124 static int fd_open(BlockDriverState *bs);
125 static int64_t raw_getlength(BlockDriverState *bs);
127 #if defined(__FreeBSD__)
128 static int cdrom_reopen(BlockDriverState *bs);
129 #endif
131 static int raw_open_common(BlockDriverState *bs, const char *filename,
132 int bdrv_flags, int open_flags)
134 BDRVRawState *s = bs->opaque;
135 int fd, ret;
137 s->lseek_err_cnt = 0;
139 s->open_flags = open_flags | O_BINARY;
140 s->open_flags &= ~O_ACCMODE;
141 if ((bdrv_flags & BDRV_O_ACCESS) == BDRV_O_RDWR) {
142 s->open_flags |= O_RDWR;
143 } else {
144 s->open_flags |= O_RDONLY;
145 bs->read_only = 1;
148 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
149 * and O_DIRECT for no caching. */
150 if ((bdrv_flags & BDRV_O_NOCACHE))
151 s->open_flags |= O_DIRECT;
152 else if (!(bdrv_flags & BDRV_O_CACHE_WB))
153 s->open_flags |= O_DSYNC;
155 s->fd = -1;
156 fd = open(filename, s->open_flags, 0644);
157 if (fd < 0) {
158 ret = -errno;
159 if (ret == -EROFS)
160 ret = -EACCES;
161 return ret;
163 s->fd = fd;
164 s->aligned_buf = NULL;
166 if ((bdrv_flags & BDRV_O_NOCACHE)) {
167 s->aligned_buf = qemu_blockalign(bs, ALIGNED_BUFFER_SIZE);
168 if (s->aligned_buf == NULL) {
169 goto out_close;
173 #ifdef CONFIG_LINUX_AIO
174 if ((bdrv_flags & (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) ==
175 (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) {
176 s->aio_ctx = laio_init();
177 if (!s->aio_ctx) {
178 goto out_free_buf;
180 s->use_aio = 1;
181 } else
182 #endif
184 s->aio_ctx = paio_init();
185 if (!s->aio_ctx) {
186 goto out_free_buf;
188 #ifdef CONFIG_LINUX_AIO
189 s->use_aio = 0;
190 #endif
193 return 0;
195 out_free_buf:
196 qemu_vfree(s->aligned_buf);
197 out_close:
198 close(fd);
199 return -errno;
202 static int raw_open(BlockDriverState *bs, const char *filename, int flags)
204 BDRVRawState *s = bs->opaque;
205 int open_flags = 0;
207 s->type = FTYPE_FILE;
208 if (flags & BDRV_O_CREAT)
209 open_flags = O_CREAT | O_TRUNC;
211 return raw_open_common(bs, filename, flags, open_flags);
214 /* XXX: use host sector size if necessary with:
215 #ifdef DIOCGSECTORSIZE
217 unsigned int sectorsize = 512;
218 if (!ioctl(fd, DIOCGSECTORSIZE, &sectorsize) &&
219 sectorsize > bufsize)
220 bufsize = sectorsize;
222 #endif
223 #ifdef CONFIG_COCOA
224 u_int32_t blockSize = 512;
225 if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
226 bufsize = blockSize;
228 #endif
232 * offset and count are in bytes, but must be multiples of 512 for files
233 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
235 * This function may be called without alignment if the caller ensures
236 * that O_DIRECT is not in effect.
238 static int raw_pread_aligned(BlockDriverState *bs, int64_t offset,
239 uint8_t *buf, int count)
241 BDRVRawState *s = bs->opaque;
242 int ret;
244 ret = fd_open(bs);
245 if (ret < 0)
246 return ret;
248 if (offset >= 0 && lseek(s->fd, offset, SEEK_SET) == (off_t)-1) {
249 ++(s->lseek_err_cnt);
250 if(s->lseek_err_cnt <= 10) {
251 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
252 "] lseek failed : %d = %s\n",
253 s->fd, bs->filename, offset, buf, count,
254 bs->total_sectors, errno, strerror(errno));
256 return -1;
258 s->lseek_err_cnt=0;
260 ret = read(s->fd, buf, count);
261 if (ret == count)
262 goto label__raw_read__success;
264 /* Allow reads beyond the end (needed for pwrite) */
265 if ((ret == 0) && bs->growable) {
266 int64_t size = raw_getlength(bs);
267 if (offset >= size) {
268 memset(buf, 0, count);
269 ret = count;
270 goto label__raw_read__success;
274 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
275 "] read failed %d : %d = %s\n",
276 s->fd, bs->filename, offset, buf, count,
277 bs->total_sectors, ret, errno, strerror(errno));
279 /* Try harder for CDrom. */
280 if (bs->type == BDRV_TYPE_CDROM) {
281 lseek(s->fd, offset, SEEK_SET);
282 ret = read(s->fd, buf, count);
283 if (ret == count)
284 goto label__raw_read__success;
285 lseek(s->fd, offset, SEEK_SET);
286 ret = read(s->fd, buf, count);
287 if (ret == count)
288 goto label__raw_read__success;
290 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
291 "] retry read failed %d : %d = %s\n",
292 s->fd, bs->filename, offset, buf, count,
293 bs->total_sectors, ret, errno, strerror(errno));
296 label__raw_read__success:
298 return (ret < 0) ? -errno : ret;
302 * offset and count are in bytes, but must be multiples of 512 for files
303 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
305 * This function may be called without alignment if the caller ensures
306 * that O_DIRECT is not in effect.
308 static int raw_pwrite_aligned(BlockDriverState *bs, int64_t offset,
309 const uint8_t *buf, int count)
311 BDRVRawState *s = bs->opaque;
312 int ret;
314 ret = fd_open(bs);
315 if (ret < 0)
316 return -errno;
318 if (offset >= 0 && lseek(s->fd, offset, SEEK_SET) == (off_t)-1) {
319 ++(s->lseek_err_cnt);
320 if(s->lseek_err_cnt) {
321 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%"
322 PRId64 "] lseek failed : %d = %s\n",
323 s->fd, bs->filename, offset, buf, count,
324 bs->total_sectors, errno, strerror(errno));
326 return -EIO;
328 s->lseek_err_cnt = 0;
330 ret = write(s->fd, buf, count);
331 if (ret == count)
332 goto label__raw_write__success;
334 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
335 "] write failed %d : %d = %s\n",
336 s->fd, bs->filename, offset, buf, count,
337 bs->total_sectors, ret, errno, strerror(errno));
339 label__raw_write__success:
341 return (ret < 0) ? -errno : ret;
346 * offset and count are in bytes and possibly not aligned. For files opened
347 * with O_DIRECT, necessary alignments are ensured before calling
348 * raw_pread_aligned to do the actual read.
350 static int raw_pread(BlockDriverState *bs, int64_t offset,
351 uint8_t *buf, int count)
353 BDRVRawState *s = bs->opaque;
354 int size, ret, shift, sum;
356 sum = 0;
358 if (s->aligned_buf != NULL) {
360 if (offset & 0x1ff) {
361 /* align offset on a 512 bytes boundary */
363 shift = offset & 0x1ff;
364 size = (shift + count + 0x1ff) & ~0x1ff;
365 if (size > ALIGNED_BUFFER_SIZE)
366 size = ALIGNED_BUFFER_SIZE;
367 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, size);
368 if (ret < 0)
369 return ret;
371 size = 512 - shift;
372 if (size > count)
373 size = count;
374 memcpy(buf, s->aligned_buf + shift, size);
376 buf += size;
377 offset += size;
378 count -= size;
379 sum += size;
381 if (count == 0)
382 return sum;
384 if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {
386 /* read on aligned buffer */
388 while (count) {
390 size = (count + 0x1ff) & ~0x1ff;
391 if (size > ALIGNED_BUFFER_SIZE)
392 size = ALIGNED_BUFFER_SIZE;
394 ret = raw_pread_aligned(bs, offset, s->aligned_buf, size);
395 if (ret < 0)
396 return ret;
398 size = ret;
399 if (size > count)
400 size = count;
402 memcpy(buf, s->aligned_buf, size);
404 buf += size;
405 offset += size;
406 count -= size;
407 sum += size;
410 return sum;
414 return raw_pread_aligned(bs, offset, buf, count) + sum;
417 static int raw_read(BlockDriverState *bs, int64_t sector_num,
418 uint8_t *buf, int nb_sectors)
420 int ret;
422 ret = raw_pread(bs, sector_num * 512, buf, nb_sectors * 512);
423 if (ret == (nb_sectors * 512))
424 ret = 0;
425 return ret;
429 * offset and count are in bytes and possibly not aligned. For files opened
430 * with O_DIRECT, necessary alignments are ensured before calling
431 * raw_pwrite_aligned to do the actual write.
433 static int raw_pwrite(BlockDriverState *bs, int64_t offset,
434 const uint8_t *buf, int count)
436 BDRVRawState *s = bs->opaque;
437 int size, ret, shift, sum;
439 sum = 0;
441 if (s->aligned_buf != NULL) {
443 if (offset & 0x1ff) {
444 /* align offset on a 512 bytes boundary */
445 shift = offset & 0x1ff;
446 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, 512);
447 if (ret < 0)
448 return ret;
450 size = 512 - shift;
451 if (size > count)
452 size = count;
453 memcpy(s->aligned_buf + shift, buf, size);
455 ret = raw_pwrite_aligned(bs, offset - shift, s->aligned_buf, 512);
456 if (ret < 0)
457 return ret;
459 buf += size;
460 offset += size;
461 count -= size;
462 sum += size;
464 if (count == 0)
465 return sum;
467 if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {
469 while ((size = (count & ~0x1ff)) != 0) {
471 if (size > ALIGNED_BUFFER_SIZE)
472 size = ALIGNED_BUFFER_SIZE;
474 memcpy(s->aligned_buf, buf, size);
476 ret = raw_pwrite_aligned(bs, offset, s->aligned_buf, size);
477 if (ret < 0)
478 return ret;
480 buf += ret;
481 offset += ret;
482 count -= ret;
483 sum += ret;
485 /* here, count < 512 because (count & ~0x1ff) == 0 */
486 if (count) {
487 ret = raw_pread_aligned(bs, offset, s->aligned_buf, 512);
488 if (ret < 0)
489 return ret;
490 memcpy(s->aligned_buf, buf, count);
492 ret = raw_pwrite_aligned(bs, offset, s->aligned_buf, 512);
493 if (ret < 0)
494 return ret;
495 if (count < ret)
496 ret = count;
498 sum += ret;
500 return sum;
503 return raw_pwrite_aligned(bs, offset, buf, count) + sum;
506 static int raw_write(BlockDriverState *bs, int64_t sector_num,
507 const uint8_t *buf, int nb_sectors)
509 int ret;
510 ret = raw_pwrite(bs, sector_num * 512, buf, nb_sectors * 512);
511 if (ret == (nb_sectors * 512))
512 ret = 0;
513 return ret;
517 * Check if all memory in this vector is sector aligned.
519 static int qiov_is_aligned(QEMUIOVector *qiov)
521 int i;
523 for (i = 0; i < qiov->niov; i++) {
524 if ((uintptr_t) qiov->iov[i].iov_base % 512) {
525 return 0;
529 return 1;
532 static BlockDriverAIOCB *raw_aio_submit(BlockDriverState *bs,
533 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
534 BlockDriverCompletionFunc *cb, void *opaque, int type)
536 BDRVRawState *s = bs->opaque;
538 if (fd_open(bs) < 0)
539 return NULL;
542 * If O_DIRECT is used the buffer needs to be aligned on a sector
543 * boundary. Check if this is the case or telll the low-level
544 * driver that it needs to copy the buffer.
546 if (s->aligned_buf) {
547 if (!qiov_is_aligned(qiov)) {
548 type |= QEMU_AIO_MISALIGNED;
549 #ifdef CONFIG_LINUX_AIO
550 } else if (s->use_aio) {
551 return laio_submit(bs, s->aio_ctx, s->fd, sector_num, qiov,
552 nb_sectors, cb, opaque, type);
553 #endif
557 return paio_submit(bs, s->aio_ctx, s->fd, sector_num, qiov, nb_sectors,
558 cb, opaque, type);
561 static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
562 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
563 BlockDriverCompletionFunc *cb, void *opaque)
565 return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
566 cb, opaque, QEMU_AIO_READ);
569 static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
570 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
571 BlockDriverCompletionFunc *cb, void *opaque)
573 return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
574 cb, opaque, QEMU_AIO_WRITE);
577 static BlockDriverAIOCB *raw_aio_flush(BlockDriverState *bs,
578 BlockDriverCompletionFunc *cb, void *opaque)
580 BDRVRawState *s = bs->opaque;
582 if (fd_open(bs) < 0)
583 return NULL;
585 return paio_submit(bs, s->aio_ctx, s->fd, 0, NULL, 0,
586 cb, opaque, QEMU_AIO_FLUSH);
589 static void raw_close(BlockDriverState *bs)
591 BDRVRawState *s = bs->opaque;
592 if (s->fd >= 0) {
593 close(s->fd);
594 s->fd = -1;
595 if (s->aligned_buf != NULL)
596 qemu_free(s->aligned_buf);
600 static int raw_truncate(BlockDriverState *bs, int64_t offset)
602 BDRVRawState *s = bs->opaque;
603 if (s->type != FTYPE_FILE)
604 return -ENOTSUP;
605 if (ftruncate(s->fd, offset) < 0)
606 return -errno;
607 return 0;
610 #ifdef __OpenBSD__
611 static int64_t raw_getlength(BlockDriverState *bs)
613 BDRVRawState *s = bs->opaque;
614 int fd = s->fd;
615 struct stat st;
617 if (fstat(fd, &st))
618 return -1;
619 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
620 struct disklabel dl;
622 if (ioctl(fd, DIOCGDINFO, &dl))
623 return -1;
624 return (uint64_t)dl.d_secsize *
625 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
626 } else
627 return st.st_size;
629 #else /* !__OpenBSD__ */
630 static int64_t raw_getlength(BlockDriverState *bs)
632 BDRVRawState *s = bs->opaque;
633 int fd = s->fd;
634 int64_t size;
635 #ifdef CONFIG_BSD
636 struct stat sb;
637 #ifdef __FreeBSD__
638 int reopened = 0;
639 #endif
640 #endif
641 #ifdef __sun__
642 struct dk_minfo minfo;
643 int rv;
644 #endif
645 int ret;
647 ret = fd_open(bs);
648 if (ret < 0)
649 return ret;
651 #ifdef CONFIG_BSD
652 #ifdef __FreeBSD__
653 again:
654 #endif
655 if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
656 #ifdef DIOCGMEDIASIZE
657 if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
658 #elif defined(DIOCGPART)
660 struct partinfo pi;
661 if (ioctl(fd, DIOCGPART, &pi) == 0)
662 size = pi.media_size;
663 else
664 size = 0;
666 if (size == 0)
667 #endif
668 #ifdef CONFIG_COCOA
669 size = LONG_LONG_MAX;
670 #else
671 size = lseek(fd, 0LL, SEEK_END);
672 #endif
673 #ifdef __FreeBSD__
674 switch(s->type) {
675 case FTYPE_CD:
676 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
677 if (size == 2048LL * (unsigned)-1)
678 size = 0;
679 /* XXX no disc? maybe we need to reopen... */
680 if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
681 reopened = 1;
682 goto again;
685 #endif
686 } else
687 #endif
688 #ifdef __sun__
690 * use the DKIOCGMEDIAINFO ioctl to read the size.
692 rv = ioctl ( fd, DKIOCGMEDIAINFO, &minfo );
693 if ( rv != -1 ) {
694 size = minfo.dki_lbsize * minfo.dki_capacity;
695 } else /* there are reports that lseek on some devices
696 fails, but irc discussion said that contingency
697 on contingency was overkill */
698 #endif
700 size = lseek(fd, 0, SEEK_END);
702 return size;
704 #endif
706 static int raw_create(const char *filename, QEMUOptionParameter *options)
708 int fd;
709 int result = 0;
710 int64_t total_size = 0;
712 /* Read out options */
713 while (options && options->name) {
714 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
715 total_size = options->value.n / 512;
717 options++;
720 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
721 0644);
722 if (fd < 0) {
723 result = -errno;
724 } else {
725 if (ftruncate(fd, total_size * 512) != 0) {
726 result = -errno;
728 if (close(fd) != 0) {
729 result = -errno;
732 return result;
735 static void raw_flush(BlockDriverState *bs)
737 BDRVRawState *s = bs->opaque;
738 qemu_fdatasync(s->fd);
742 static QEMUOptionParameter raw_create_options[] = {
744 .name = BLOCK_OPT_SIZE,
745 .type = OPT_SIZE,
746 .help = "Virtual disk size"
748 { NULL }
751 static BlockDriver bdrv_raw = {
752 .format_name = "raw",
753 .instance_size = sizeof(BDRVRawState),
754 .bdrv_probe = NULL, /* no probe for protocols */
755 .bdrv_open = raw_open,
756 .bdrv_read = raw_read,
757 .bdrv_write = raw_write,
758 .bdrv_close = raw_close,
759 .bdrv_create = raw_create,
760 .bdrv_flush = raw_flush,
762 .bdrv_aio_readv = raw_aio_readv,
763 .bdrv_aio_writev = raw_aio_writev,
764 .bdrv_aio_flush = raw_aio_flush,
766 .bdrv_truncate = raw_truncate,
767 .bdrv_getlength = raw_getlength,
769 .create_options = raw_create_options,
772 /***********************************************/
773 /* host device */
775 #ifdef CONFIG_COCOA
776 static kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator );
777 static kern_return_t GetBSDPath( io_iterator_t mediaIterator, char *bsdPath, CFIndex maxPathSize );
779 kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator )
781 kern_return_t kernResult;
782 mach_port_t masterPort;
783 CFMutableDictionaryRef classesToMatch;
785 kernResult = IOMasterPort( MACH_PORT_NULL, &masterPort );
786 if ( KERN_SUCCESS != kernResult ) {
787 printf( "IOMasterPort returned %d\n", kernResult );
790 classesToMatch = IOServiceMatching( kIOCDMediaClass );
791 if ( classesToMatch == NULL ) {
792 printf( "IOServiceMatching returned a NULL dictionary.\n" );
793 } else {
794 CFDictionarySetValue( classesToMatch, CFSTR( kIOMediaEjectableKey ), kCFBooleanTrue );
796 kernResult = IOServiceGetMatchingServices( masterPort, classesToMatch, mediaIterator );
797 if ( KERN_SUCCESS != kernResult )
799 printf( "IOServiceGetMatchingServices returned %d\n", kernResult );
802 return kernResult;
805 kern_return_t GetBSDPath( io_iterator_t mediaIterator, char *bsdPath, CFIndex maxPathSize )
807 io_object_t nextMedia;
808 kern_return_t kernResult = KERN_FAILURE;
809 *bsdPath = '\0';
810 nextMedia = IOIteratorNext( mediaIterator );
811 if ( nextMedia )
813 CFTypeRef bsdPathAsCFString;
814 bsdPathAsCFString = IORegistryEntryCreateCFProperty( nextMedia, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 );
815 if ( bsdPathAsCFString ) {
816 size_t devPathLength;
817 strcpy( bsdPath, _PATH_DEV );
818 strcat( bsdPath, "r" );
819 devPathLength = strlen( bsdPath );
820 if ( CFStringGetCString( bsdPathAsCFString, bsdPath + devPathLength, maxPathSize - devPathLength, kCFStringEncodingASCII ) ) {
821 kernResult = KERN_SUCCESS;
823 CFRelease( bsdPathAsCFString );
825 IOObjectRelease( nextMedia );
828 return kernResult;
831 #endif
833 static int hdev_probe_device(const char *filename)
835 struct stat st;
837 /* allow a dedicated CD-ROM driver to match with a higher priority */
838 if (strstart(filename, "/dev/cdrom", NULL))
839 return 50;
841 if (stat(filename, &st) >= 0 &&
842 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
843 return 100;
846 return 0;
849 static int hdev_open(BlockDriverState *bs, const char *filename, int flags)
851 BDRVRawState *s = bs->opaque;
853 #ifdef CONFIG_COCOA
854 if (strstart(filename, "/dev/cdrom", NULL)) {
855 kern_return_t kernResult;
856 io_iterator_t mediaIterator;
857 char bsdPath[ MAXPATHLEN ];
858 int fd;
860 kernResult = FindEjectableCDMedia( &mediaIterator );
861 kernResult = GetBSDPath( mediaIterator, bsdPath, sizeof( bsdPath ) );
863 if ( bsdPath[ 0 ] != '\0' ) {
864 strcat(bsdPath,"s0");
865 /* some CDs don't have a partition 0 */
866 fd = open(bsdPath, O_RDONLY | O_BINARY | O_LARGEFILE);
867 if (fd < 0) {
868 bsdPath[strlen(bsdPath)-1] = '1';
869 } else {
870 close(fd);
872 filename = bsdPath;
875 if ( mediaIterator )
876 IOObjectRelease( mediaIterator );
878 #endif
880 s->type = FTYPE_FILE;
881 #if defined(__linux__)
882 if (strstart(filename, "/dev/sg", NULL)) {
883 bs->sg = 1;
885 #endif
887 return raw_open_common(bs, filename, flags, 0);
890 #if defined(__linux__)
891 /* Note: we do not have a reliable method to detect if the floppy is
892 present. The current method is to try to open the floppy at every
893 I/O and to keep it opened during a few hundreds of ms. */
894 static int fd_open(BlockDriverState *bs)
896 BDRVRawState *s = bs->opaque;
897 int last_media_present;
899 if (s->type != FTYPE_FD)
900 return 0;
901 last_media_present = (s->fd >= 0);
902 if (s->fd >= 0 &&
903 (qemu_get_clock(rt_clock) - s->fd_open_time) >= FD_OPEN_TIMEOUT) {
904 close(s->fd);
905 s->fd = -1;
906 #ifdef DEBUG_FLOPPY
907 printf("Floppy closed\n");
908 #endif
910 if (s->fd < 0) {
911 if (s->fd_got_error &&
912 (qemu_get_clock(rt_clock) - s->fd_error_time) < FD_OPEN_TIMEOUT) {
913 #ifdef DEBUG_FLOPPY
914 printf("No floppy (open delayed)\n");
915 #endif
916 return -EIO;
918 s->fd = open(bs->filename, s->open_flags & ~O_NONBLOCK);
919 if (s->fd < 0) {
920 s->fd_error_time = qemu_get_clock(rt_clock);
921 s->fd_got_error = 1;
922 if (last_media_present)
923 s->fd_media_changed = 1;
924 #ifdef DEBUG_FLOPPY
925 printf("No floppy\n");
926 #endif
927 return -EIO;
929 #ifdef DEBUG_FLOPPY
930 printf("Floppy opened\n");
931 #endif
933 if (!last_media_present)
934 s->fd_media_changed = 1;
935 s->fd_open_time = qemu_get_clock(rt_clock);
936 s->fd_got_error = 0;
937 return 0;
940 static int hdev_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
942 BDRVRawState *s = bs->opaque;
944 return ioctl(s->fd, req, buf);
947 static BlockDriverAIOCB *hdev_aio_ioctl(BlockDriverState *bs,
948 unsigned long int req, void *buf,
949 BlockDriverCompletionFunc *cb, void *opaque)
951 BDRVRawState *s = bs->opaque;
953 if (fd_open(bs) < 0)
954 return NULL;
955 return paio_ioctl(bs, s->fd, req, buf, cb, opaque);
958 #elif defined(__FreeBSD__)
959 static int fd_open(BlockDriverState *bs)
961 BDRVRawState *s = bs->opaque;
963 /* this is just to ensure s->fd is sane (its called by io ops) */
964 if (s->fd >= 0)
965 return 0;
966 return -EIO;
968 #else /* !linux && !FreeBSD */
970 static int fd_open(BlockDriverState *bs)
972 return 0;
975 #endif /* !linux && !FreeBSD */
977 static int hdev_create(const char *filename, QEMUOptionParameter *options)
979 int fd;
980 int ret = 0;
981 struct stat stat_buf;
982 int64_t total_size = 0;
984 /* Read out options */
985 while (options && options->name) {
986 if (!strcmp(options->name, "size")) {
987 total_size = options->value.n / 512;
989 options++;
992 fd = open(filename, O_WRONLY | O_BINARY);
993 if (fd < 0)
994 return -EIO;
996 if (fstat(fd, &stat_buf) < 0)
997 ret = -EIO;
998 else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode))
999 ret = -EIO;
1000 else if (lseek(fd, 0, SEEK_END) < total_size * 512)
1001 ret = -ENOSPC;
1003 close(fd);
1004 return ret;
1007 static BlockDriver bdrv_host_device = {
1008 .format_name = "host_device",
1009 .instance_size = sizeof(BDRVRawState),
1010 .bdrv_probe_device = hdev_probe_device,
1011 .bdrv_open = hdev_open,
1012 .bdrv_close = raw_close,
1013 .bdrv_create = hdev_create,
1014 .create_options = raw_create_options,
1015 .bdrv_flush = raw_flush,
1017 .bdrv_aio_readv = raw_aio_readv,
1018 .bdrv_aio_writev = raw_aio_writev,
1019 .bdrv_aio_flush = raw_aio_flush,
1021 .bdrv_read = raw_read,
1022 .bdrv_write = raw_write,
1023 .bdrv_getlength = raw_getlength,
1025 /* generic scsi device */
1026 #ifdef __linux__
1027 .bdrv_ioctl = hdev_ioctl,
1028 .bdrv_aio_ioctl = hdev_aio_ioctl,
1029 #endif
1032 #ifdef __linux__
1033 static int floppy_open(BlockDriverState *bs, const char *filename, int flags)
1035 BDRVRawState *s = bs->opaque;
1036 int ret;
1038 s->type = FTYPE_FD;
1040 /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
1041 ret = raw_open_common(bs, filename, flags, O_NONBLOCK);
1042 if (ret)
1043 return ret;
1045 /* close fd so that we can reopen it as needed */
1046 close(s->fd);
1047 s->fd = -1;
1048 s->fd_media_changed = 1;
1050 return 0;
1053 static int floppy_probe_device(const char *filename)
1055 if (strstart(filename, "/dev/fd", NULL))
1056 return 100;
1057 return 0;
1061 static int floppy_is_inserted(BlockDriverState *bs)
1063 return fd_open(bs) >= 0;
1066 static int floppy_media_changed(BlockDriverState *bs)
1068 BDRVRawState *s = bs->opaque;
1069 int ret;
1072 * XXX: we do not have a true media changed indication.
1073 * It does not work if the floppy is changed without trying to read it.
1075 fd_open(bs);
1076 ret = s->fd_media_changed;
1077 s->fd_media_changed = 0;
1078 #ifdef DEBUG_FLOPPY
1079 printf("Floppy changed=%d\n", ret);
1080 #endif
1081 return ret;
1084 static int floppy_eject(BlockDriverState *bs, int eject_flag)
1086 BDRVRawState *s = bs->opaque;
1087 int fd;
1089 if (s->fd >= 0) {
1090 close(s->fd);
1091 s->fd = -1;
1093 fd = open(bs->filename, s->open_flags | O_NONBLOCK);
1094 if (fd >= 0) {
1095 if (ioctl(fd, FDEJECT, 0) < 0)
1096 perror("FDEJECT");
1097 close(fd);
1100 return 0;
1103 static BlockDriver bdrv_host_floppy = {
1104 .format_name = "host_floppy",
1105 .instance_size = sizeof(BDRVRawState),
1106 .bdrv_probe_device = floppy_probe_device,
1107 .bdrv_open = floppy_open,
1108 .bdrv_close = raw_close,
1109 .bdrv_create = hdev_create,
1110 .create_options = raw_create_options,
1111 .bdrv_flush = raw_flush,
1113 .bdrv_aio_readv = raw_aio_readv,
1114 .bdrv_aio_writev = raw_aio_writev,
1115 .bdrv_aio_flush = raw_aio_flush,
1117 .bdrv_read = raw_read,
1118 .bdrv_write = raw_write,
1119 .bdrv_getlength = raw_getlength,
1121 /* removable device support */
1122 .bdrv_is_inserted = floppy_is_inserted,
1123 .bdrv_media_changed = floppy_media_changed,
1124 .bdrv_eject = floppy_eject,
1127 static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
1129 BDRVRawState *s = bs->opaque;
1131 s->type = FTYPE_CD;
1133 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
1134 return raw_open_common(bs, filename, flags, O_NONBLOCK);
1137 static int cdrom_probe_device(const char *filename)
1139 if (strstart(filename, "/dev/cd", NULL))
1140 return 100;
1141 return 0;
1144 static int cdrom_is_inserted(BlockDriverState *bs)
1146 BDRVRawState *s = bs->opaque;
1147 int ret;
1149 ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
1150 if (ret == CDS_DISC_OK)
1151 return 1;
1152 return 0;
1155 static int cdrom_eject(BlockDriverState *bs, int eject_flag)
1157 BDRVRawState *s = bs->opaque;
1159 if (eject_flag) {
1160 if (ioctl(s->fd, CDROMEJECT, NULL) < 0)
1161 perror("CDROMEJECT");
1162 } else {
1163 if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0)
1164 perror("CDROMEJECT");
1167 return 0;
1170 static int cdrom_set_locked(BlockDriverState *bs, int locked)
1172 BDRVRawState *s = bs->opaque;
1174 if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
1176 * Note: an error can happen if the distribution automatically
1177 * mounts the CD-ROM
1179 /* perror("CDROM_LOCKDOOR"); */
1182 return 0;
1185 static BlockDriver bdrv_host_cdrom = {
1186 .format_name = "host_cdrom",
1187 .instance_size = sizeof(BDRVRawState),
1188 .bdrv_probe_device = cdrom_probe_device,
1189 .bdrv_open = cdrom_open,
1190 .bdrv_close = raw_close,
1191 .bdrv_create = hdev_create,
1192 .create_options = raw_create_options,
1193 .bdrv_flush = raw_flush,
1195 .bdrv_aio_readv = raw_aio_readv,
1196 .bdrv_aio_writev = raw_aio_writev,
1197 .bdrv_aio_flush = raw_aio_flush,
1199 .bdrv_read = raw_read,
1200 .bdrv_write = raw_write,
1201 .bdrv_getlength = raw_getlength,
1203 /* removable device support */
1204 .bdrv_is_inserted = cdrom_is_inserted,
1205 .bdrv_eject = cdrom_eject,
1206 .bdrv_set_locked = cdrom_set_locked,
1208 /* generic scsi device */
1209 .bdrv_ioctl = hdev_ioctl,
1210 .bdrv_aio_ioctl = hdev_aio_ioctl,
1212 #endif /* __linux__ */
1214 #ifdef __FreeBSD__
1215 static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
1217 BDRVRawState *s = bs->opaque;
1218 int ret;
1220 s->type = FTYPE_CD;
1222 ret = raw_open_common(bs, filename, flags, 0);
1223 if (ret)
1224 return ret;
1226 /* make sure the door isnt locked at this time */
1227 ioctl(s->fd, CDIOCALLOW);
1228 return 0;
1231 static int cdrom_probe_device(const char *filename)
1233 if (strstart(filename, "/dev/cd", NULL) ||
1234 strstart(filename, "/dev/acd", NULL))
1235 return 100;
1236 return 0;
1239 static int cdrom_reopen(BlockDriverState *bs)
1241 BDRVRawState *s = bs->opaque;
1242 int fd;
1245 * Force reread of possibly changed/newly loaded disc,
1246 * FreeBSD seems to not notice sometimes...
1248 if (s->fd >= 0)
1249 close(s->fd);
1250 fd = open(bs->filename, s->open_flags, 0644);
1251 if (fd < 0) {
1252 s->fd = -1;
1253 return -EIO;
1255 s->fd = fd;
1257 /* make sure the door isnt locked at this time */
1258 ioctl(s->fd, CDIOCALLOW);
1259 return 0;
1262 static int cdrom_is_inserted(BlockDriverState *bs)
1264 return raw_getlength(bs) > 0;
1267 static int cdrom_eject(BlockDriverState *bs, int eject_flag)
1269 BDRVRawState *s = bs->opaque;
1271 if (s->fd < 0)
1272 return -ENOTSUP;
1274 (void) ioctl(s->fd, CDIOCALLOW);
1276 if (eject_flag) {
1277 if (ioctl(s->fd, CDIOCEJECT) < 0)
1278 perror("CDIOCEJECT");
1279 } else {
1280 if (ioctl(s->fd, CDIOCCLOSE) < 0)
1281 perror("CDIOCCLOSE");
1284 if (cdrom_reopen(bs) < 0)
1285 return -ENOTSUP;
1286 return 0;
1289 static int cdrom_set_locked(BlockDriverState *bs, int locked)
1291 BDRVRawState *s = bs->opaque;
1293 if (s->fd < 0)
1294 return -ENOTSUP;
1295 if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
1297 * Note: an error can happen if the distribution automatically
1298 * mounts the CD-ROM
1300 /* perror("CDROM_LOCKDOOR"); */
1303 return 0;
1306 static BlockDriver bdrv_host_cdrom = {
1307 .format_name = "host_cdrom",
1308 .instance_size = sizeof(BDRVRawState),
1309 .bdrv_probe_device = cdrom_probe_device,
1310 .bdrv_open = cdrom_open,
1311 .bdrv_close = raw_close,
1312 .bdrv_create = hdev_create,
1313 .create_options = raw_create_options,
1314 .bdrv_flush = raw_flush,
1316 .bdrv_aio_readv = raw_aio_readv,
1317 .bdrv_aio_writev = raw_aio_writev,
1318 .bdrv_aio_flush = raw_aio_flush,
1320 .bdrv_read = raw_read,
1321 .bdrv_write = raw_write,
1322 .bdrv_getlength = raw_getlength,
1324 /* removable device support */
1325 .bdrv_is_inserted = cdrom_is_inserted,
1326 .bdrv_eject = cdrom_eject,
1327 .bdrv_set_locked = cdrom_set_locked,
1329 #endif /* __FreeBSD__ */
1331 static void bdrv_raw_init(void)
1334 * Register all the drivers. Note that order is important, the driver
1335 * registered last will get probed first.
1337 bdrv_register(&bdrv_raw);
1338 bdrv_register(&bdrv_host_device);
1339 #ifdef __linux__
1340 bdrv_register(&bdrv_host_floppy);
1341 bdrv_register(&bdrv_host_cdrom);
1342 #endif
1343 #ifdef __FreeBSD__
1344 bdrv_register(&bdrv_host_cdrom);
1345 #endif
1348 block_init(bdrv_raw_init);