block: add bdrv_probe_device method
[qemu/aliguori-queue.git] / block / raw-posix.c
blob5e65da00a792016313e443a311ecac28834aca66
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 "block_int.h"
28 #include "module.h"
29 #ifdef CONFIG_AIO
30 #include "posix-aio-compat.h"
31 #endif
33 #ifdef CONFIG_COCOA
34 #include <paths.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>
43 #endif
45 #ifdef __sun__
46 #define _POSIX_PTHREAD_SEMANTICS 1
47 #include <signal.h>
48 #include <sys/dkio.h>
49 #endif
50 #ifdef __linux__
51 #include <sys/ioctl.h>
52 #include <linux/cdrom.h>
53 #include <linux/fd.h>
54 #endif
55 #ifdef __FreeBSD__
56 #include <signal.h>
57 #include <sys/disk.h>
58 #include <sys/cdio.h>
59 #endif
61 #ifdef __OpenBSD__
62 #include <sys/ioctl.h>
63 #include <sys/disklabel.h>
64 #include <sys/dkio.h>
65 #endif
67 #ifdef __DragonFly__
68 #include <sys/ioctl.h>
69 #include <sys/diskslice.h>
70 #endif
72 //#define DEBUG_FLOPPY
74 //#define DEBUG_BLOCK
75 #if defined(DEBUG_BLOCK)
76 #define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
77 { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
78 #else
79 #define DEBUG_BLOCK_PRINT(formatCstr, ...)
80 #endif
82 /* OS X does not have O_DSYNC */
83 #ifndef O_DSYNC
84 #define O_DSYNC O_SYNC
85 #endif
87 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
88 #ifndef O_DIRECT
89 #define O_DIRECT O_DSYNC
90 #endif
92 #define FTYPE_FILE 0
93 #define FTYPE_CD 1
94 #define FTYPE_FD 2
96 #define ALIGNED_BUFFER_SIZE (32 * 512)
98 /* if the FD is not accessed during that time (in ms), we try to
99 reopen it to see if the disk has been changed */
100 #define FD_OPEN_TIMEOUT 1000
102 typedef struct BDRVRawState {
103 int fd;
104 int type;
105 unsigned int lseek_err_cnt;
106 int open_flags;
107 #if defined(__linux__)
108 /* linux floppy specific */
109 int64_t fd_open_time;
110 int64_t fd_error_time;
111 int fd_got_error;
112 int fd_media_changed;
113 #endif
114 uint8_t* aligned_buf;
115 } BDRVRawState;
117 static int posix_aio_init(void);
119 static int fd_open(BlockDriverState *bs);
121 #if defined(__FreeBSD__)
122 static int cdrom_reopen(BlockDriverState *bs);
123 #endif
125 static int raw_open_common(BlockDriverState *bs, const char *filename,
126 int flags)
128 BDRVRawState *s = bs->opaque;
129 int fd, ret;
131 posix_aio_init();
133 s->lseek_err_cnt = 0;
135 s->open_flags |= O_BINARY;
136 if ((flags & BDRV_O_ACCESS) == O_RDWR) {
137 s->open_flags |= O_RDWR;
138 } else {
139 s->open_flags |= O_RDONLY;
140 bs->read_only = 1;
143 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
144 * and O_DIRECT for no caching. */
145 if ((flags & BDRV_O_NOCACHE))
146 s->open_flags |= O_DIRECT;
147 else if (!(flags & BDRV_O_CACHE_WB))
148 s->open_flags |= O_DSYNC;
150 s->fd = -1;
151 fd = open(filename, s->open_flags, 0644);
152 if (fd < 0) {
153 ret = -errno;
154 if (ret == -EROFS)
155 ret = -EACCES;
156 return ret;
158 s->fd = fd;
159 s->aligned_buf = NULL;
160 if ((flags & BDRV_O_NOCACHE)) {
161 s->aligned_buf = qemu_blockalign(bs, ALIGNED_BUFFER_SIZE);
162 if (s->aligned_buf == NULL) {
163 ret = -errno;
164 close(fd);
165 return ret;
168 return 0;
171 static int raw_open(BlockDriverState *bs, const char *filename, int flags)
173 BDRVRawState *s = bs->opaque;
175 s->type = FTYPE_FILE;
176 if (flags & BDRV_O_CREAT)
177 s->open_flags |= O_CREAT | O_TRUNC;
179 return raw_open_common(bs, filename, flags);
182 /* XXX: use host sector size if necessary with:
183 #ifdef DIOCGSECTORSIZE
185 unsigned int sectorsize = 512;
186 if (!ioctl(fd, DIOCGSECTORSIZE, &sectorsize) &&
187 sectorsize > bufsize)
188 bufsize = sectorsize;
190 #endif
191 #ifdef CONFIG_COCOA
192 u_int32_t blockSize = 512;
193 if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
194 bufsize = blockSize;
196 #endif
200 * offset and count are in bytes, but must be multiples of 512 for files
201 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
203 * This function may be called without alignment if the caller ensures
204 * that O_DIRECT is not in effect.
206 static int raw_pread_aligned(BlockDriverState *bs, int64_t offset,
207 uint8_t *buf, int count)
209 BDRVRawState *s = bs->opaque;
210 int ret;
212 ret = fd_open(bs);
213 if (ret < 0)
214 return ret;
216 if (offset >= 0 && lseek(s->fd, offset, SEEK_SET) == (off_t)-1) {
217 ++(s->lseek_err_cnt);
218 if(s->lseek_err_cnt <= 10) {
219 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
220 "] lseek failed : %d = %s\n",
221 s->fd, bs->filename, offset, buf, count,
222 bs->total_sectors, errno, strerror(errno));
224 return -1;
226 s->lseek_err_cnt=0;
228 ret = read(s->fd, buf, count);
229 if (ret == count)
230 goto label__raw_read__success;
232 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
233 "] read failed %d : %d = %s\n",
234 s->fd, bs->filename, offset, buf, count,
235 bs->total_sectors, ret, errno, strerror(errno));
237 /* Try harder for CDrom. */
238 if (bs->type == BDRV_TYPE_CDROM) {
239 lseek(s->fd, offset, SEEK_SET);
240 ret = read(s->fd, buf, count);
241 if (ret == count)
242 goto label__raw_read__success;
243 lseek(s->fd, offset, SEEK_SET);
244 ret = read(s->fd, buf, count);
245 if (ret == count)
246 goto label__raw_read__success;
248 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
249 "] retry read failed %d : %d = %s\n",
250 s->fd, bs->filename, offset, buf, count,
251 bs->total_sectors, ret, errno, strerror(errno));
254 label__raw_read__success:
256 return (ret < 0) ? -errno : ret;
260 * offset and count are in bytes, but must be multiples of 512 for files
261 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
263 * This function may be called without alignment if the caller ensures
264 * that O_DIRECT is not in effect.
266 static int raw_pwrite_aligned(BlockDriverState *bs, int64_t offset,
267 const uint8_t *buf, int count)
269 BDRVRawState *s = bs->opaque;
270 int ret;
272 ret = fd_open(bs);
273 if (ret < 0)
274 return -errno;
276 if (offset >= 0 && lseek(s->fd, offset, SEEK_SET) == (off_t)-1) {
277 ++(s->lseek_err_cnt);
278 if(s->lseek_err_cnt) {
279 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%"
280 PRId64 "] lseek failed : %d = %s\n",
281 s->fd, bs->filename, offset, buf, count,
282 bs->total_sectors, errno, strerror(errno));
284 return -EIO;
286 s->lseek_err_cnt = 0;
288 ret = write(s->fd, buf, count);
289 if (ret == count)
290 goto label__raw_write__success;
292 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
293 "] write failed %d : %d = %s\n",
294 s->fd, bs->filename, offset, buf, count,
295 bs->total_sectors, ret, errno, strerror(errno));
297 label__raw_write__success:
299 return (ret < 0) ? -errno : ret;
304 * offset and count are in bytes and possibly not aligned. For files opened
305 * with O_DIRECT, necessary alignments are ensured before calling
306 * raw_pread_aligned to do the actual read.
308 static int raw_pread(BlockDriverState *bs, int64_t offset,
309 uint8_t *buf, int count)
311 BDRVRawState *s = bs->opaque;
312 int size, ret, shift, sum;
314 sum = 0;
316 if (s->aligned_buf != NULL) {
318 if (offset & 0x1ff) {
319 /* align offset on a 512 bytes boundary */
321 shift = offset & 0x1ff;
322 size = (shift + count + 0x1ff) & ~0x1ff;
323 if (size > ALIGNED_BUFFER_SIZE)
324 size = ALIGNED_BUFFER_SIZE;
325 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, size);
326 if (ret < 0)
327 return ret;
329 size = 512 - shift;
330 if (size > count)
331 size = count;
332 memcpy(buf, s->aligned_buf + shift, size);
334 buf += size;
335 offset += size;
336 count -= size;
337 sum += size;
339 if (count == 0)
340 return sum;
342 if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {
344 /* read on aligned buffer */
346 while (count) {
348 size = (count + 0x1ff) & ~0x1ff;
349 if (size > ALIGNED_BUFFER_SIZE)
350 size = ALIGNED_BUFFER_SIZE;
352 ret = raw_pread_aligned(bs, offset, s->aligned_buf, size);
353 if (ret < 0)
354 return ret;
356 size = ret;
357 if (size > count)
358 size = count;
360 memcpy(buf, s->aligned_buf, size);
362 buf += size;
363 offset += size;
364 count -= size;
365 sum += size;
368 return sum;
372 return raw_pread_aligned(bs, offset, buf, count) + sum;
375 static int raw_read(BlockDriverState *bs, int64_t sector_num,
376 uint8_t *buf, int nb_sectors)
378 int ret;
380 ret = raw_pread(bs, sector_num * 512, buf, nb_sectors * 512);
381 if (ret == (nb_sectors * 512))
382 ret = 0;
383 return ret;
387 * offset and count are in bytes and possibly not aligned. For files opened
388 * with O_DIRECT, necessary alignments are ensured before calling
389 * raw_pwrite_aligned to do the actual write.
391 static int raw_pwrite(BlockDriverState *bs, int64_t offset,
392 const uint8_t *buf, int count)
394 BDRVRawState *s = bs->opaque;
395 int size, ret, shift, sum;
397 sum = 0;
399 if (s->aligned_buf != NULL) {
401 if (offset & 0x1ff) {
402 /* align offset on a 512 bytes boundary */
403 shift = offset & 0x1ff;
404 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, 512);
405 if (ret < 0)
406 return ret;
408 size = 512 - shift;
409 if (size > count)
410 size = count;
411 memcpy(s->aligned_buf + shift, buf, size);
413 ret = raw_pwrite_aligned(bs, offset - shift, s->aligned_buf, 512);
414 if (ret < 0)
415 return ret;
417 buf += size;
418 offset += size;
419 count -= size;
420 sum += size;
422 if (count == 0)
423 return sum;
425 if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {
427 while ((size = (count & ~0x1ff)) != 0) {
429 if (size > ALIGNED_BUFFER_SIZE)
430 size = ALIGNED_BUFFER_SIZE;
432 memcpy(s->aligned_buf, buf, size);
434 ret = raw_pwrite_aligned(bs, offset, s->aligned_buf, size);
435 if (ret < 0)
436 return ret;
438 buf += ret;
439 offset += ret;
440 count -= ret;
441 sum += ret;
443 /* here, count < 512 because (count & ~0x1ff) == 0 */
444 if (count) {
445 ret = raw_pread_aligned(bs, offset, s->aligned_buf, 512);
446 if (ret < 0)
447 return ret;
448 memcpy(s->aligned_buf, buf, count);
450 ret = raw_pwrite_aligned(bs, offset, s->aligned_buf, 512);
451 if (ret < 0)
452 return ret;
453 if (count < ret)
454 ret = count;
456 sum += ret;
458 return sum;
461 return raw_pwrite_aligned(bs, offset, buf, count) + sum;
464 static int raw_write(BlockDriverState *bs, int64_t sector_num,
465 const uint8_t *buf, int nb_sectors)
467 int ret;
468 ret = raw_pwrite(bs, sector_num * 512, buf, nb_sectors * 512);
469 if (ret == (nb_sectors * 512))
470 ret = 0;
471 return ret;
474 #ifdef CONFIG_AIO
475 /***********************************************************/
476 /* Unix AIO using POSIX AIO */
478 typedef struct RawAIOCB {
479 BlockDriverAIOCB common;
480 struct qemu_paiocb aiocb;
481 struct RawAIOCB *next;
482 int ret;
483 } RawAIOCB;
485 typedef struct PosixAioState
487 int rfd, wfd;
488 RawAIOCB *first_aio;
489 } PosixAioState;
491 static void posix_aio_read(void *opaque)
493 PosixAioState *s = opaque;
494 RawAIOCB *acb, **pacb;
495 int ret;
496 ssize_t len;
498 /* read all bytes from signal pipe */
499 for (;;) {
500 char bytes[16];
502 len = read(s->rfd, bytes, sizeof(bytes));
503 if (len == -1 && errno == EINTR)
504 continue; /* try again */
505 if (len == sizeof(bytes))
506 continue; /* more to read */
507 break;
510 for(;;) {
511 pacb = &s->first_aio;
512 for(;;) {
513 acb = *pacb;
514 if (!acb)
515 goto the_end;
516 ret = qemu_paio_error(&acb->aiocb);
517 if (ret == ECANCELED) {
518 /* remove the request */
519 *pacb = acb->next;
520 qemu_aio_release(acb);
521 } else if (ret != EINPROGRESS) {
522 /* end of aio */
523 if (ret == 0) {
524 ret = qemu_paio_return(&acb->aiocb);
525 if (ret == acb->aiocb.aio_nbytes)
526 ret = 0;
527 else
528 ret = -EINVAL;
529 } else {
530 ret = -ret;
532 /* remove the request */
533 *pacb = acb->next;
534 /* call the callback */
535 acb->common.cb(acb->common.opaque, ret);
536 qemu_aio_release(acb);
537 break;
538 } else {
539 pacb = &acb->next;
543 the_end: ;
546 static int posix_aio_flush(void *opaque)
548 PosixAioState *s = opaque;
549 return !!s->first_aio;
552 static PosixAioState *posix_aio_state;
554 static void aio_signal_handler(int signum)
556 if (posix_aio_state) {
557 char byte = 0;
559 write(posix_aio_state->wfd, &byte, sizeof(byte));
562 qemu_service_io();
565 static int posix_aio_init(void)
567 struct sigaction act;
568 PosixAioState *s;
569 int fds[2];
570 struct qemu_paioinit ai;
572 if (posix_aio_state)
573 return 0;
575 s = qemu_malloc(sizeof(PosixAioState));
577 sigfillset(&act.sa_mask);
578 act.sa_flags = 0; /* do not restart syscalls to interrupt select() */
579 act.sa_handler = aio_signal_handler;
580 sigaction(SIGUSR2, &act, NULL);
582 s->first_aio = NULL;
583 if (pipe(fds) == -1) {
584 fprintf(stderr, "failed to create pipe\n");
585 return -errno;
588 s->rfd = fds[0];
589 s->wfd = fds[1];
591 fcntl(s->rfd, F_SETFL, O_NONBLOCK);
592 fcntl(s->wfd, F_SETFL, O_NONBLOCK);
594 qemu_aio_set_fd_handler(s->rfd, posix_aio_read, NULL, posix_aio_flush, s);
596 memset(&ai, 0, sizeof(ai));
597 ai.aio_threads = 64;
598 ai.aio_num = 64;
599 qemu_paio_init(&ai);
601 posix_aio_state = s;
603 return 0;
606 static void raw_aio_remove(RawAIOCB *acb)
608 RawAIOCB **pacb;
610 /* remove the callback from the queue */
611 pacb = &posix_aio_state->first_aio;
612 for(;;) {
613 if (*pacb == NULL) {
614 fprintf(stderr, "raw_aio_remove: aio request not found!\n");
615 break;
616 } else if (*pacb == acb) {
617 *pacb = acb->next;
618 qemu_aio_release(acb);
619 break;
621 pacb = &(*pacb)->next;
625 static void raw_aio_cancel(BlockDriverAIOCB *blockacb)
627 int ret;
628 RawAIOCB *acb = (RawAIOCB *)blockacb;
630 ret = qemu_paio_cancel(acb->aiocb.aio_fildes, &acb->aiocb);
631 if (ret == QEMU_PAIO_NOTCANCELED) {
632 /* fail safe: if the aio could not be canceled, we wait for
633 it */
634 while (qemu_paio_error(&acb->aiocb) == EINPROGRESS);
637 raw_aio_remove(acb);
640 static AIOPool raw_aio_pool = {
641 .aiocb_size = sizeof(RawAIOCB),
642 .cancel = raw_aio_cancel,
645 static RawAIOCB *raw_aio_setup(BlockDriverState *bs, int64_t sector_num,
646 QEMUIOVector *qiov, int nb_sectors,
647 BlockDriverCompletionFunc *cb, void *opaque)
649 BDRVRawState *s = bs->opaque;
650 RawAIOCB *acb;
652 if (fd_open(bs) < 0)
653 return NULL;
655 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
656 if (!acb)
657 return NULL;
658 acb->aiocb.aio_fildes = s->fd;
659 acb->aiocb.ev_signo = SIGUSR2;
660 acb->aiocb.aio_iov = qiov->iov;
661 acb->aiocb.aio_niov = qiov->niov;
662 acb->aiocb.aio_nbytes = nb_sectors * 512;
663 acb->aiocb.aio_offset = sector_num * 512;
664 acb->aiocb.aio_flags = 0;
667 * If O_DIRECT is used the buffer needs to be aligned on a sector
668 * boundary. Tell the low level code to ensure that in case it's
669 * not done yet.
671 if (s->aligned_buf)
672 acb->aiocb.aio_flags |= QEMU_AIO_SECTOR_ALIGNED;
674 acb->next = posix_aio_state->first_aio;
675 posix_aio_state->first_aio = acb;
676 return acb;
679 static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
680 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
681 BlockDriverCompletionFunc *cb, void *opaque)
683 RawAIOCB *acb;
685 acb = raw_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque);
686 if (!acb)
687 return NULL;
688 if (qemu_paio_read(&acb->aiocb) < 0) {
689 raw_aio_remove(acb);
690 return NULL;
692 return &acb->common;
695 static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
696 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
697 BlockDriverCompletionFunc *cb, void *opaque)
699 RawAIOCB *acb;
701 acb = raw_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque);
702 if (!acb)
703 return NULL;
704 if (qemu_paio_write(&acb->aiocb) < 0) {
705 raw_aio_remove(acb);
706 return NULL;
708 return &acb->common;
710 #else /* CONFIG_AIO */
711 static int posix_aio_init(void)
713 return 0;
715 #endif /* CONFIG_AIO */
718 static void raw_close(BlockDriverState *bs)
720 BDRVRawState *s = bs->opaque;
721 if (s->fd >= 0) {
722 close(s->fd);
723 s->fd = -1;
724 if (s->aligned_buf != NULL)
725 qemu_free(s->aligned_buf);
729 static int raw_truncate(BlockDriverState *bs, int64_t offset)
731 BDRVRawState *s = bs->opaque;
732 if (s->type != FTYPE_FILE)
733 return -ENOTSUP;
734 if (ftruncate(s->fd, offset) < 0)
735 return -errno;
736 return 0;
739 #ifdef __OpenBSD__
740 static int64_t raw_getlength(BlockDriverState *bs)
742 BDRVRawState *s = bs->opaque;
743 int fd = s->fd;
744 struct stat st;
746 if (fstat(fd, &st))
747 return -1;
748 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
749 struct disklabel dl;
751 if (ioctl(fd, DIOCGDINFO, &dl))
752 return -1;
753 return (uint64_t)dl.d_secsize *
754 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
755 } else
756 return st.st_size;
758 #else /* !__OpenBSD__ */
759 static int64_t raw_getlength(BlockDriverState *bs)
761 BDRVRawState *s = bs->opaque;
762 int fd = s->fd;
763 int64_t size;
764 #ifdef HOST_BSD
765 struct stat sb;
766 #ifdef __FreeBSD__
767 int reopened = 0;
768 #endif
769 #endif
770 #ifdef __sun__
771 struct dk_minfo minfo;
772 int rv;
773 #endif
774 int ret;
776 ret = fd_open(bs);
777 if (ret < 0)
778 return ret;
780 #ifdef HOST_BSD
781 #ifdef __FreeBSD__
782 again:
783 #endif
784 if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
785 #ifdef DIOCGMEDIASIZE
786 if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
787 #elif defined(DIOCGPART)
789 struct partinfo pi;
790 if (ioctl(fd, DIOCGPART, &pi) == 0)
791 size = pi.media_size;
792 else
793 size = 0;
795 if (size == 0)
796 #endif
797 #ifdef CONFIG_COCOA
798 size = LONG_LONG_MAX;
799 #else
800 size = lseek(fd, 0LL, SEEK_END);
801 #endif
802 #ifdef __FreeBSD__
803 switch(s->type) {
804 case FTYPE_CD:
805 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
806 if (size == 2048LL * (unsigned)-1)
807 size = 0;
808 /* XXX no disc? maybe we need to reopen... */
809 if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
810 reopened = 1;
811 goto again;
814 #endif
815 } else
816 #endif
817 #ifdef __sun__
819 * use the DKIOCGMEDIAINFO ioctl to read the size.
821 rv = ioctl ( fd, DKIOCGMEDIAINFO, &minfo );
822 if ( rv != -1 ) {
823 size = minfo.dki_lbsize * minfo.dki_capacity;
824 } else /* there are reports that lseek on some devices
825 fails, but irc discussion said that contingency
826 on contingency was overkill */
827 #endif
829 size = lseek(fd, 0, SEEK_END);
831 return size;
833 #endif
835 static int raw_create(const char *filename, QEMUOptionParameter *options)
837 int fd;
838 int64_t total_size = 0;
840 /* Read out options */
841 while (options && options->name) {
842 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
843 total_size = options->value.n / 512;
845 options++;
848 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
849 0644);
850 if (fd < 0)
851 return -EIO;
852 ftruncate(fd, total_size * 512);
853 close(fd);
854 return 0;
857 static void raw_flush(BlockDriverState *bs)
859 BDRVRawState *s = bs->opaque;
860 fsync(s->fd);
864 static QEMUOptionParameter raw_create_options[] = {
866 .name = BLOCK_OPT_SIZE,
867 .type = OPT_SIZE,
868 .help = "Virtual disk size"
870 { NULL }
873 static BlockDriver bdrv_raw = {
874 .format_name = "raw",
875 .instance_size = sizeof(BDRVRawState),
876 .bdrv_probe = NULL, /* no probe for protocols */
877 .bdrv_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,
884 #ifdef CONFIG_AIO
885 .bdrv_aio_readv = raw_aio_readv,
886 .bdrv_aio_writev = raw_aio_writev,
887 #endif
889 .bdrv_truncate = raw_truncate,
890 .bdrv_getlength = raw_getlength,
892 .create_options = raw_create_options,
895 /***********************************************/
896 /* host device */
898 #ifdef CONFIG_COCOA
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" );
916 } else {
917 CFDictionarySetValue( classesToMatch, CFSTR( kIOMediaEjectableKey ), kCFBooleanTrue );
919 kernResult = IOServiceGetMatchingServices( masterPort, classesToMatch, mediaIterator );
920 if ( KERN_SUCCESS != kernResult )
922 printf( "IOServiceGetMatchingServices returned %d\n", kernResult );
925 return 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;
932 *bsdPath = '\0';
933 nextMedia = IOIteratorNext( mediaIterator );
934 if ( nextMedia )
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 );
951 return kernResult;
954 #endif
956 static int hdev_probe_device(const char *filename)
958 struct stat st;
960 /* allow a dedicated CD-ROM driver to match with a higher priority */
961 if (strstart(filename, "/dev/cdrom", NULL))
962 return 50;
964 if (stat(filename, &st) >= 0 &&
965 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
966 return 100;
969 return 0;
972 static int hdev_open(BlockDriverState *bs, const char *filename, int flags)
974 BDRVRawState *s = bs->opaque;
976 #ifdef CONFIG_COCOA
977 if (strstart(filename, "/dev/cdrom", NULL)) {
978 kern_return_t kernResult;
979 io_iterator_t mediaIterator;
980 char bsdPath[ MAXPATHLEN ];
981 int fd;
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);
990 if (fd < 0) {
991 bsdPath[strlen(bsdPath)-1] = '1';
992 } else {
993 close(fd);
995 filename = bsdPath;
998 if ( mediaIterator )
999 IOObjectRelease( mediaIterator );
1001 #endif
1003 s->type = FTYPE_FILE;
1004 #if defined(__linux__) && defined(CONFIG_AIO)
1005 if (strstart(filename, "/dev/sg", NULL)) {
1006 bs->sg = 1;
1008 #endif
1010 return raw_open_common(bs, filename, flags);
1013 #if defined(__linux__)
1014 /* Note: we do not have a reliable method to detect if the floppy is
1015 present. The current method is to try to open the floppy at every
1016 I/O and to keep it opened during a few hundreds of ms. */
1017 static int fd_open(BlockDriverState *bs)
1019 BDRVRawState *s = bs->opaque;
1020 int last_media_present;
1022 if (s->type != FTYPE_FD)
1023 return 0;
1024 last_media_present = (s->fd >= 0);
1025 if (s->fd >= 0 &&
1026 (qemu_get_clock(rt_clock) - s->fd_open_time) >= FD_OPEN_TIMEOUT) {
1027 close(s->fd);
1028 s->fd = -1;
1029 #ifdef DEBUG_FLOPPY
1030 printf("Floppy closed\n");
1031 #endif
1033 if (s->fd < 0) {
1034 if (s->fd_got_error &&
1035 (qemu_get_clock(rt_clock) - s->fd_error_time) < FD_OPEN_TIMEOUT) {
1036 #ifdef DEBUG_FLOPPY
1037 printf("No floppy (open delayed)\n");
1038 #endif
1039 return -EIO;
1041 s->fd = open(bs->filename, s->open_flags & ~O_NONBLOCK);
1042 if (s->fd < 0) {
1043 s->fd_error_time = qemu_get_clock(rt_clock);
1044 s->fd_got_error = 1;
1045 if (last_media_present)
1046 s->fd_media_changed = 1;
1047 #ifdef DEBUG_FLOPPY
1048 printf("No floppy\n");
1049 #endif
1050 return -EIO;
1052 #ifdef DEBUG_FLOPPY
1053 printf("Floppy opened\n");
1054 #endif
1056 if (!last_media_present)
1057 s->fd_media_changed = 1;
1058 s->fd_open_time = qemu_get_clock(rt_clock);
1059 s->fd_got_error = 0;
1060 return 0;
1063 static int raw_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1065 BDRVRawState *s = bs->opaque;
1067 return ioctl(s->fd, req, buf);
1070 #ifdef CONFIG_AIO
1071 static BlockDriverAIOCB *raw_aio_ioctl(BlockDriverState *bs,
1072 unsigned long int req, void *buf,
1073 BlockDriverCompletionFunc *cb, void *opaque)
1075 BDRVRawState *s = bs->opaque;
1076 RawAIOCB *acb;
1078 if (fd_open(bs) < 0)
1079 return NULL;
1081 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
1082 if (!acb)
1083 return NULL;
1084 acb->aiocb.aio_fildes = s->fd;
1085 acb->aiocb.ev_signo = SIGUSR2;
1086 acb->aiocb.aio_offset = 0;
1087 acb->aiocb.aio_flags = 0;
1089 acb->next = posix_aio_state->first_aio;
1090 posix_aio_state->first_aio = acb;
1092 acb->aiocb.aio_ioctl_buf = buf;
1093 acb->aiocb.aio_ioctl_cmd = req;
1094 if (qemu_paio_ioctl(&acb->aiocb) < 0) {
1095 raw_aio_remove(acb);
1096 return NULL;
1099 return &acb->common;
1101 #endif
1103 #elif defined(__FreeBSD__)
1104 static int fd_open(BlockDriverState *bs)
1106 BDRVRawState *s = bs->opaque;
1108 /* this is just to ensure s->fd is sane (its called by io ops) */
1109 if (s->fd >= 0)
1110 return 0;
1111 return -EIO;
1114 static int raw_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1116 return -ENOTSUP;
1118 #else /* !linux && !FreeBSD */
1120 static int fd_open(BlockDriverState *bs)
1122 return 0;
1125 static int raw_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1127 return -ENOTSUP;
1130 static BlockDriverAIOCB *raw_aio_ioctl(BlockDriverState *bs,
1131 unsigned long int req, void *buf,
1132 BlockDriverCompletionFunc *cb, void *opaque)
1134 return NULL;
1136 #endif /* !linux && !FreeBSD */
1138 static int hdev_create(const char *filename, QEMUOptionParameter *options)
1140 int fd;
1141 int ret = 0;
1142 struct stat stat_buf;
1143 int64_t total_size = 0;
1145 /* Read out options */
1146 while (options && options->name) {
1147 if (!strcmp(options->name, "size")) {
1148 total_size = options->value.n / 512;
1150 options++;
1153 fd = open(filename, O_WRONLY | O_BINARY);
1154 if (fd < 0)
1155 return -EIO;
1157 if (fstat(fd, &stat_buf) < 0)
1158 ret = -EIO;
1159 else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode))
1160 ret = -EIO;
1161 else if (lseek(fd, 0, SEEK_END) < total_size * 512)
1162 ret = -ENOSPC;
1164 close(fd);
1165 return ret;
1168 static BlockDriver bdrv_host_device = {
1169 .format_name = "host_device",
1170 .instance_size = sizeof(BDRVRawState),
1171 .bdrv_probe_device = hdev_probe_device,
1172 .bdrv_open = hdev_open,
1173 .bdrv_close = raw_close,
1174 .bdrv_create = hdev_create,
1175 .bdrv_flush = raw_flush,
1177 #ifdef CONFIG_AIO
1178 .bdrv_aio_readv = raw_aio_readv,
1179 .bdrv_aio_writev = raw_aio_writev,
1180 #endif
1182 .bdrv_read = raw_read,
1183 .bdrv_write = raw_write,
1184 .bdrv_getlength = raw_getlength,
1186 /* generic scsi device */
1187 .bdrv_ioctl = raw_ioctl,
1188 #ifdef CONFIG_AIO
1189 .bdrv_aio_ioctl = raw_aio_ioctl,
1190 #endif
1193 #ifdef __linux__
1194 static int floppy_open(BlockDriverState *bs, const char *filename, int flags)
1196 BDRVRawState *s = bs->opaque;
1197 int ret;
1199 posix_aio_init();
1201 s->type = FTYPE_FD;
1202 /* open will not fail even if no floppy is inserted */
1203 s->open_flags |= O_NONBLOCK;
1205 ret = raw_open_common(bs, filename, flags);
1206 if (ret)
1207 return ret;
1209 /* close fd so that we can reopen it as needed */
1210 close(s->fd);
1211 s->fd = -1;
1212 s->fd_media_changed = 1;
1214 return 0;
1217 static int floppy_probe_device(const char *filename)
1219 if (strstart(filename, "/dev/fd", NULL))
1220 return 100;
1221 return 0;
1225 static int floppy_is_inserted(BlockDriverState *bs)
1227 return fd_open(bs) >= 0;
1230 static int floppy_media_changed(BlockDriverState *bs)
1232 BDRVRawState *s = bs->opaque;
1233 int ret;
1236 * XXX: we do not have a true media changed indication.
1237 * It does not work if the floppy is changed without trying to read it.
1239 fd_open(bs);
1240 ret = s->fd_media_changed;
1241 s->fd_media_changed = 0;
1242 #ifdef DEBUG_FLOPPY
1243 printf("Floppy changed=%d\n", ret);
1244 #endif
1245 return ret;
1248 static int floppy_eject(BlockDriverState *bs, int eject_flag)
1250 BDRVRawState *s = bs->opaque;
1251 int fd;
1253 if (s->fd >= 0) {
1254 close(s->fd);
1255 s->fd = -1;
1257 fd = open(bs->filename, s->open_flags | O_NONBLOCK);
1258 if (fd >= 0) {
1259 if (ioctl(fd, FDEJECT, 0) < 0)
1260 perror("FDEJECT");
1261 close(fd);
1264 return 0;
1267 static BlockDriver bdrv_host_floppy = {
1268 .format_name = "host_floppy",
1269 .instance_size = sizeof(BDRVRawState),
1270 .bdrv_probe_device = floppy_probe_device,
1271 .bdrv_open = floppy_open,
1272 .bdrv_close = raw_close,
1273 .bdrv_create = hdev_create,
1274 .bdrv_flush = raw_flush,
1276 #ifdef CONFIG_AIO
1277 .bdrv_aio_readv = raw_aio_readv,
1278 .bdrv_aio_writev = raw_aio_writev,
1279 #endif
1281 .bdrv_read = raw_read,
1282 .bdrv_write = raw_write,
1283 .bdrv_getlength = raw_getlength,
1285 /* removable device support */
1286 .bdrv_is_inserted = floppy_is_inserted,
1287 .bdrv_media_changed = floppy_media_changed,
1288 .bdrv_eject = floppy_eject,
1290 /* generic scsi device */
1291 .bdrv_ioctl = raw_ioctl,
1292 #ifdef CONFIG_AIO
1293 .bdrv_aio_ioctl = raw_aio_ioctl,
1294 #endif
1297 static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
1299 BDRVRawState *s = bs->opaque;
1301 /* open will not fail even if no CD is inserted */
1302 s->open_flags |= O_NONBLOCK;
1303 s->type = FTYPE_CD;
1305 return raw_open_common(bs, filename, flags);
1308 static int cdrom_probe_device(const char *filename)
1310 if (strstart(filename, "/dev/cd", NULL))
1311 return 100;
1312 return 0;
1315 static int cdrom_is_inserted(BlockDriverState *bs)
1317 BDRVRawState *s = bs->opaque;
1318 int ret;
1320 ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
1321 if (ret == CDS_DISC_OK)
1322 return 1;
1323 return 0;
1326 static int cdrom_eject(BlockDriverState *bs, int eject_flag)
1328 BDRVRawState *s = bs->opaque;
1330 if (eject_flag) {
1331 if (ioctl(s->fd, CDROMEJECT, NULL) < 0)
1332 perror("CDROMEJECT");
1333 } else {
1334 if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0)
1335 perror("CDROMEJECT");
1338 return 0;
1341 static int cdrom_set_locked(BlockDriverState *bs, int locked)
1343 BDRVRawState *s = bs->opaque;
1345 if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
1347 * Note: an error can happen if the distribution automatically
1348 * mounts the CD-ROM
1350 /* perror("CDROM_LOCKDOOR"); */
1353 return 0;
1356 static BlockDriver bdrv_host_cdrom = {
1357 .format_name = "host_cdrom",
1358 .instance_size = sizeof(BDRVRawState),
1359 .bdrv_probe_device = cdrom_probe_device,
1360 .bdrv_open = cdrom_open,
1361 .bdrv_close = raw_close,
1362 .bdrv_create = hdev_create,
1363 .bdrv_flush = raw_flush,
1365 #ifdef CONFIG_AIO
1366 .bdrv_aio_readv = raw_aio_readv,
1367 .bdrv_aio_writev = raw_aio_writev,
1368 #endif
1370 .bdrv_read = raw_read,
1371 .bdrv_write = raw_write,
1372 .bdrv_getlength = raw_getlength,
1374 /* removable device support */
1375 .bdrv_is_inserted = cdrom_is_inserted,
1376 .bdrv_eject = cdrom_eject,
1377 .bdrv_set_locked = cdrom_set_locked,
1379 /* generic scsi device */
1380 .bdrv_ioctl = raw_ioctl,
1381 #ifdef CONFIG_AIO
1382 .bdrv_aio_ioctl = raw_aio_ioctl,
1383 #endif
1385 #endif /* __linux__ */
1387 #ifdef __FreeBSD__
1388 static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
1390 BDRVRawState *s = bs->opaque;
1391 int ret;
1393 s->type = FTYPE_CD;
1395 ret = raw_open_common(bs, filename, flags);
1396 if (ret)
1397 return ret;
1399 /* make sure the door isnt locked at this time */
1400 ioctl(s->fd, CDIOCALLOW);
1401 return 0;
1404 static int cdrom_probe_device(const char *filename)
1406 if (strstart(filename, "/dev/cd", NULL) ||
1407 strstart(filename, "/dev/acd", NULL))
1408 return 100;
1409 return 0;
1412 static int cdrom_reopen(BlockDriverState *bs)
1414 BDRVRawState *s = bs->opaque;
1415 int fd;
1418 * Force reread of possibly changed/newly loaded disc,
1419 * FreeBSD seems to not notice sometimes...
1421 if (s->fd >= 0)
1422 close(s->fd);
1423 fd = open(bs->filename, s->open_flags, 0644);
1424 if (fd < 0) {
1425 s->fd = -1;
1426 return -EIO;
1428 s->fd = fd;
1430 /* make sure the door isnt locked at this time */
1431 ioctl(s->fd, CDIOCALLOW);
1432 return 0;
1435 static int cdrom_is_inserted(BlockDriverState *bs)
1437 return raw_getlength(bs) > 0;
1440 static int cdrom_eject(BlockDriverState *bs, int eject_flag)
1442 BDRVRawState *s = bs->opaque;
1444 if (s->fd < 0)
1445 return -ENOTSUP;
1447 (void) ioctl(s->fd, CDIOCALLOW);
1449 if (eject_flag) {
1450 if (ioctl(s->fd, CDIOCEJECT) < 0)
1451 perror("CDIOCEJECT");
1452 } else {
1453 if (ioctl(s->fd, CDIOCCLOSE) < 0)
1454 perror("CDIOCCLOSE");
1457 if (cdrom_reopen(bs) < 0)
1458 return -ENOTSUP;
1459 return 0;
1462 static int cdrom_set_locked(BlockDriverState *bs, int locked)
1464 BDRVRawState *s = bs->opaque;
1466 if (s->fd < 0)
1467 return -ENOTSUP;
1468 if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
1470 * Note: an error can happen if the distribution automatically
1471 * mounts the CD-ROM
1473 /* perror("CDROM_LOCKDOOR"); */
1476 return 0;
1479 static BlockDriver bdrv_host_cdrom = {
1480 .format_name = "host_cdrom",
1481 .instance_size = sizeof(BDRVRawState),
1482 .bdrv_probe_device = cdrom_probe_device,
1483 .bdrv_open = cdrom_open,
1484 .bdrv_close = raw_close,
1485 .bdrv_create = hdev_create,
1486 .bdrv_flush = raw_flush,
1488 #ifdef CONFIG_AIO
1489 .bdrv_aio_readv = raw_aio_readv,
1490 .bdrv_aio_writev = raw_aio_writev,
1491 #endif
1493 .bdrv_read = raw_read,
1494 .bdrv_write = raw_write,
1495 .bdrv_getlength = raw_getlength,
1497 /* removable device support */
1498 .bdrv_is_inserted = cdrom_is_inserted,
1499 .bdrv_eject = cdrom_eject,
1500 .bdrv_set_locked = cdrom_set_locked,
1502 /* generic scsi device */
1503 .bdrv_ioctl = raw_ioctl,
1504 #ifdef CONFIG_AIO
1505 .bdrv_aio_ioctl = raw_aio_ioctl,
1506 #endif
1508 #endif /* __FreeBSD__ */
1510 static void bdrv_raw_init(void)
1513 * Register all the drivers. Note that order is important, the driver
1514 * registered last will get probed first.
1516 bdrv_register(&bdrv_raw);
1517 bdrv_register(&bdrv_host_device);
1518 #ifdef __linux__
1519 bdrv_register(&bdrv_host_floppy);
1520 bdrv_register(&bdrv_host_cdrom);
1521 #endif
1522 #ifdef __FreeBSD__
1523 bdrv_register(&bdrv_host_cdrom);
1524 #endif
1527 block_init(bdrv_raw_init);