raw-posix.c: replace QEMUOptionParameter with QemuOpts
[qemu/ar7.git] / block / raw-posix.c
blobc718e49d841dabc156c71cc91ce27b94645a892a
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/log.h"
27 #include "block/block_int.h"
28 #include "qemu/module.h"
29 #include "trace.h"
30 #include "block/thread-pool.h"
31 #include "qemu/iov.h"
32 #include "raw-aio.h"
34 #if defined(__APPLE__) && (__MACH__)
35 #include <paths.h>
36 #include <sys/param.h>
37 #include <IOKit/IOKitLib.h>
38 #include <IOKit/IOBSD.h>
39 #include <IOKit/storage/IOMediaBSDClient.h>
40 #include <IOKit/storage/IOMedia.h>
41 #include <IOKit/storage/IOCDMedia.h>
42 //#include <IOKit/storage/IOCDTypes.h>
43 #include <CoreFoundation/CoreFoundation.h>
44 #endif
46 #ifdef __sun__
47 #define _POSIX_PTHREAD_SEMANTICS 1
48 #include <sys/dkio.h>
49 #endif
50 #ifdef __linux__
51 #include <sys/types.h>
52 #include <sys/stat.h>
53 #include <sys/ioctl.h>
54 #include <sys/param.h>
55 #include <linux/cdrom.h>
56 #include <linux/fd.h>
57 #include <linux/fs.h>
58 #endif
59 #ifdef CONFIG_FIEMAP
60 #include <linux/fiemap.h>
61 #endif
62 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
63 #include <linux/falloc.h>
64 #endif
65 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
66 #include <sys/disk.h>
67 #include <sys/cdio.h>
68 #endif
70 #ifdef __OpenBSD__
71 #include <sys/ioctl.h>
72 #include <sys/disklabel.h>
73 #include <sys/dkio.h>
74 #endif
76 #ifdef __NetBSD__
77 #include <sys/ioctl.h>
78 #include <sys/disklabel.h>
79 #include <sys/dkio.h>
80 #include <sys/disk.h>
81 #endif
83 #ifdef __DragonFly__
84 #include <sys/ioctl.h>
85 #include <sys/diskslice.h>
86 #endif
88 #ifdef CONFIG_XFS
89 #include <xfs/xfs.h>
90 #endif
92 //#define DEBUG_FLOPPY
94 //#define DEBUG_BLOCK
95 #if defined(DEBUG_BLOCK)
96 #define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
97 { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
98 #else
99 #define DEBUG_BLOCK_PRINT(formatCstr, ...)
100 #endif
102 /* OS X does not have O_DSYNC */
103 #ifndef O_DSYNC
104 #ifdef O_SYNC
105 #define O_DSYNC O_SYNC
106 #elif defined(O_FSYNC)
107 #define O_DSYNC O_FSYNC
108 #endif
109 #endif
111 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
112 #ifndef O_DIRECT
113 #define O_DIRECT O_DSYNC
114 #endif
116 #define FTYPE_FILE 0
117 #define FTYPE_CD 1
118 #define FTYPE_FD 2
120 /* if the FD is not accessed during that time (in ns), we try to
121 reopen it to see if the disk has been changed */
122 #define FD_OPEN_TIMEOUT (1000000000)
124 #define MAX_BLOCKSIZE 4096
126 typedef struct BDRVRawState {
127 int fd;
128 int type;
129 int open_flags;
130 size_t buf_align;
132 #if defined(__linux__)
133 /* linux floppy specific */
134 int64_t fd_open_time;
135 int64_t fd_error_time;
136 int fd_got_error;
137 int fd_media_changed;
138 #endif
139 #ifdef CONFIG_LINUX_AIO
140 int use_aio;
141 void *aio_ctx;
142 #endif
143 #ifdef CONFIG_XFS
144 bool is_xfs:1;
145 #endif
146 bool has_discard:1;
147 bool has_write_zeroes:1;
148 bool discard_zeroes:1;
149 #ifdef CONFIG_FIEMAP
150 bool skip_fiemap;
151 #endif
152 } BDRVRawState;
154 typedef struct BDRVRawReopenState {
155 int fd;
156 int open_flags;
157 #ifdef CONFIG_LINUX_AIO
158 int use_aio;
159 #endif
160 } BDRVRawReopenState;
162 static int fd_open(BlockDriverState *bs);
163 static int64_t raw_getlength(BlockDriverState *bs);
165 typedef struct RawPosixAIOData {
166 BlockDriverState *bs;
167 int aio_fildes;
168 union {
169 struct iovec *aio_iov;
170 void *aio_ioctl_buf;
172 int aio_niov;
173 uint64_t aio_nbytes;
174 #define aio_ioctl_cmd aio_nbytes /* for QEMU_AIO_IOCTL */
175 off_t aio_offset;
176 int aio_type;
177 } RawPosixAIOData;
179 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
180 static int cdrom_reopen(BlockDriverState *bs);
181 #endif
183 #if defined(__NetBSD__)
184 static int raw_normalize_devicepath(const char **filename)
186 static char namebuf[PATH_MAX];
187 const char *dp, *fname;
188 struct stat sb;
190 fname = *filename;
191 dp = strrchr(fname, '/');
192 if (lstat(fname, &sb) < 0) {
193 fprintf(stderr, "%s: stat failed: %s\n",
194 fname, strerror(errno));
195 return -errno;
198 if (!S_ISBLK(sb.st_mode)) {
199 return 0;
202 if (dp == NULL) {
203 snprintf(namebuf, PATH_MAX, "r%s", fname);
204 } else {
205 snprintf(namebuf, PATH_MAX, "%.*s/r%s",
206 (int)(dp - fname), fname, dp + 1);
208 fprintf(stderr, "%s is a block device", fname);
209 *filename = namebuf;
210 fprintf(stderr, ", using %s\n", *filename);
212 return 0;
214 #else
215 static int raw_normalize_devicepath(const char **filename)
217 return 0;
219 #endif
221 static void raw_probe_alignment(BlockDriverState *bs)
223 BDRVRawState *s = bs->opaque;
224 char *buf;
225 unsigned int sector_size;
227 /* For /dev/sg devices the alignment is not really used.
228 With buffered I/O, we don't have any restrictions. */
229 if (bs->sg || !(s->open_flags & O_DIRECT)) {
230 bs->request_alignment = 1;
231 s->buf_align = 1;
232 return;
235 /* Try a few ioctls to get the right size */
236 bs->request_alignment = 0;
237 s->buf_align = 0;
239 #ifdef BLKSSZGET
240 if (ioctl(s->fd, BLKSSZGET, &sector_size) >= 0) {
241 bs->request_alignment = sector_size;
243 #endif
244 #ifdef DKIOCGETBLOCKSIZE
245 if (ioctl(s->fd, DKIOCGETBLOCKSIZE, &sector_size) >= 0) {
246 bs->request_alignment = sector_size;
248 #endif
249 #ifdef DIOCGSECTORSIZE
250 if (ioctl(s->fd, DIOCGSECTORSIZE, &sector_size) >= 0) {
251 bs->request_alignment = sector_size;
253 #endif
254 #ifdef CONFIG_XFS
255 if (s->is_xfs) {
256 struct dioattr da;
257 if (xfsctl(NULL, s->fd, XFS_IOC_DIOINFO, &da) >= 0) {
258 bs->request_alignment = da.d_miniosz;
259 /* The kernel returns wrong information for d_mem */
260 /* s->buf_align = da.d_mem; */
263 #endif
265 /* If we could not get the sizes so far, we can only guess them */
266 if (!s->buf_align) {
267 size_t align;
268 buf = qemu_memalign(MAX_BLOCKSIZE, 2 * MAX_BLOCKSIZE);
269 for (align = 512; align <= MAX_BLOCKSIZE; align <<= 1) {
270 if (pread(s->fd, buf + align, MAX_BLOCKSIZE, 0) >= 0) {
271 s->buf_align = align;
272 break;
275 qemu_vfree(buf);
278 if (!bs->request_alignment) {
279 size_t align;
280 buf = qemu_memalign(s->buf_align, MAX_BLOCKSIZE);
281 for (align = 512; align <= MAX_BLOCKSIZE; align <<= 1) {
282 if (pread(s->fd, buf, align, 0) >= 0) {
283 bs->request_alignment = align;
284 break;
287 qemu_vfree(buf);
291 static void raw_parse_flags(int bdrv_flags, int *open_flags)
293 assert(open_flags != NULL);
295 *open_flags |= O_BINARY;
296 *open_flags &= ~O_ACCMODE;
297 if (bdrv_flags & BDRV_O_RDWR) {
298 *open_flags |= O_RDWR;
299 } else {
300 *open_flags |= O_RDONLY;
303 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
304 * and O_DIRECT for no caching. */
305 if ((bdrv_flags & BDRV_O_NOCACHE)) {
306 *open_flags |= O_DIRECT;
310 static void raw_detach_aio_context(BlockDriverState *bs)
312 #ifdef CONFIG_LINUX_AIO
313 BDRVRawState *s = bs->opaque;
315 if (s->use_aio) {
316 laio_detach_aio_context(s->aio_ctx, bdrv_get_aio_context(bs));
318 #endif
321 static void raw_attach_aio_context(BlockDriverState *bs,
322 AioContext *new_context)
324 #ifdef CONFIG_LINUX_AIO
325 BDRVRawState *s = bs->opaque;
327 if (s->use_aio) {
328 laio_attach_aio_context(s->aio_ctx, new_context);
330 #endif
333 #ifdef CONFIG_LINUX_AIO
334 static int raw_set_aio(void **aio_ctx, int *use_aio, int bdrv_flags)
336 int ret = -1;
337 assert(aio_ctx != NULL);
338 assert(use_aio != NULL);
340 * Currently Linux do AIO only for files opened with O_DIRECT
341 * specified so check NOCACHE flag too
343 if ((bdrv_flags & (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) ==
344 (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) {
346 /* if non-NULL, laio_init() has already been run */
347 if (*aio_ctx == NULL) {
348 *aio_ctx = laio_init();
349 if (!*aio_ctx) {
350 goto error;
353 *use_aio = 1;
354 } else {
355 *use_aio = 0;
358 ret = 0;
360 error:
361 return ret;
363 #endif
365 static void raw_parse_filename(const char *filename, QDict *options,
366 Error **errp)
368 /* The filename does not have to be prefixed by the protocol name, since
369 * "file" is the default protocol; therefore, the return value of this
370 * function call can be ignored. */
371 strstart(filename, "file:", &filename);
373 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
376 static QemuOptsList raw_runtime_opts = {
377 .name = "raw",
378 .head = QTAILQ_HEAD_INITIALIZER(raw_runtime_opts.head),
379 .desc = {
381 .name = "filename",
382 .type = QEMU_OPT_STRING,
383 .help = "File name of the image",
385 { /* end of list */ }
389 static int raw_open_common(BlockDriverState *bs, QDict *options,
390 int bdrv_flags, int open_flags, Error **errp)
392 BDRVRawState *s = bs->opaque;
393 QemuOpts *opts;
394 Error *local_err = NULL;
395 const char *filename = NULL;
396 int fd, ret;
397 struct stat st;
399 opts = qemu_opts_create(&raw_runtime_opts, NULL, 0, &error_abort);
400 qemu_opts_absorb_qdict(opts, options, &local_err);
401 if (local_err) {
402 error_propagate(errp, local_err);
403 ret = -EINVAL;
404 goto fail;
407 filename = qemu_opt_get(opts, "filename");
409 ret = raw_normalize_devicepath(&filename);
410 if (ret != 0) {
411 error_setg_errno(errp, -ret, "Could not normalize device path");
412 goto fail;
415 s->open_flags = open_flags;
416 raw_parse_flags(bdrv_flags, &s->open_flags);
418 s->fd = -1;
419 fd = qemu_open(filename, s->open_flags, 0644);
420 if (fd < 0) {
421 ret = -errno;
422 if (ret == -EROFS) {
423 ret = -EACCES;
425 goto fail;
427 s->fd = fd;
429 #ifdef CONFIG_LINUX_AIO
430 if (raw_set_aio(&s->aio_ctx, &s->use_aio, bdrv_flags)) {
431 qemu_close(fd);
432 ret = -errno;
433 error_setg_errno(errp, -ret, "Could not set AIO state");
434 goto fail;
436 #endif
438 s->has_discard = true;
439 s->has_write_zeroes = true;
441 if (fstat(s->fd, &st) < 0) {
442 error_setg_errno(errp, errno, "Could not stat file");
443 goto fail;
445 if (S_ISREG(st.st_mode)) {
446 s->discard_zeroes = true;
448 if (S_ISBLK(st.st_mode)) {
449 #ifdef BLKDISCARDZEROES
450 unsigned int arg;
451 if (ioctl(s->fd, BLKDISCARDZEROES, &arg) == 0 && arg) {
452 s->discard_zeroes = true;
454 #endif
455 #ifdef __linux__
456 /* On Linux 3.10, BLKDISCARD leaves stale data in the page cache. Do
457 * not rely on the contents of discarded blocks unless using O_DIRECT.
458 * Same for BLKZEROOUT.
460 if (!(bs->open_flags & BDRV_O_NOCACHE)) {
461 s->discard_zeroes = false;
462 s->has_write_zeroes = false;
464 #endif
467 #ifdef CONFIG_XFS
468 if (platform_test_xfs_fd(s->fd)) {
469 s->is_xfs = true;
471 #endif
473 raw_attach_aio_context(bs, bdrv_get_aio_context(bs));
475 ret = 0;
476 fail:
477 if (filename && (bdrv_flags & BDRV_O_TEMPORARY)) {
478 unlink(filename);
480 qemu_opts_del(opts);
481 return ret;
484 static int raw_open(BlockDriverState *bs, QDict *options, int flags,
485 Error **errp)
487 BDRVRawState *s = bs->opaque;
488 Error *local_err = NULL;
489 int ret;
491 s->type = FTYPE_FILE;
492 ret = raw_open_common(bs, options, flags, 0, &local_err);
493 if (local_err) {
494 error_propagate(errp, local_err);
496 return ret;
499 static int raw_reopen_prepare(BDRVReopenState *state,
500 BlockReopenQueue *queue, Error **errp)
502 BDRVRawState *s;
503 BDRVRawReopenState *raw_s;
504 int ret = 0;
506 assert(state != NULL);
507 assert(state->bs != NULL);
509 s = state->bs->opaque;
511 state->opaque = g_malloc0(sizeof(BDRVRawReopenState));
512 raw_s = state->opaque;
514 #ifdef CONFIG_LINUX_AIO
515 raw_s->use_aio = s->use_aio;
517 /* we can use s->aio_ctx instead of a copy, because the use_aio flag is
518 * valid in the 'false' condition even if aio_ctx is set, and raw_set_aio()
519 * won't override aio_ctx if aio_ctx is non-NULL */
520 if (raw_set_aio(&s->aio_ctx, &raw_s->use_aio, state->flags)) {
521 error_setg(errp, "Could not set AIO state");
522 return -1;
524 #endif
526 if (s->type == FTYPE_FD || s->type == FTYPE_CD) {
527 raw_s->open_flags |= O_NONBLOCK;
530 raw_parse_flags(state->flags, &raw_s->open_flags);
532 raw_s->fd = -1;
534 int fcntl_flags = O_APPEND | O_NONBLOCK;
535 #ifdef O_NOATIME
536 fcntl_flags |= O_NOATIME;
537 #endif
539 #ifdef O_ASYNC
540 /* Not all operating systems have O_ASYNC, and those that don't
541 * will not let us track the state into raw_s->open_flags (typically
542 * you achieve the same effect with an ioctl, for example I_SETSIG
543 * on Solaris). But we do not use O_ASYNC, so that's fine.
545 assert((s->open_flags & O_ASYNC) == 0);
546 #endif
548 if ((raw_s->open_flags & ~fcntl_flags) == (s->open_flags & ~fcntl_flags)) {
549 /* dup the original fd */
550 /* TODO: use qemu fcntl wrapper */
551 #ifdef F_DUPFD_CLOEXEC
552 raw_s->fd = fcntl(s->fd, F_DUPFD_CLOEXEC, 0);
553 #else
554 raw_s->fd = dup(s->fd);
555 if (raw_s->fd != -1) {
556 qemu_set_cloexec(raw_s->fd);
558 #endif
559 if (raw_s->fd >= 0) {
560 ret = fcntl_setfl(raw_s->fd, raw_s->open_flags);
561 if (ret) {
562 qemu_close(raw_s->fd);
563 raw_s->fd = -1;
568 /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
569 if (raw_s->fd == -1) {
570 assert(!(raw_s->open_flags & O_CREAT));
571 raw_s->fd = qemu_open(state->bs->filename, raw_s->open_flags);
572 if (raw_s->fd == -1) {
573 error_setg_errno(errp, errno, "Could not reopen file");
574 ret = -1;
577 return ret;
580 static void raw_reopen_commit(BDRVReopenState *state)
582 BDRVRawReopenState *raw_s = state->opaque;
583 BDRVRawState *s = state->bs->opaque;
585 s->open_flags = raw_s->open_flags;
587 qemu_close(s->fd);
588 s->fd = raw_s->fd;
589 #ifdef CONFIG_LINUX_AIO
590 s->use_aio = raw_s->use_aio;
591 #endif
593 g_free(state->opaque);
594 state->opaque = NULL;
598 static void raw_reopen_abort(BDRVReopenState *state)
600 BDRVRawReopenState *raw_s = state->opaque;
602 /* nothing to do if NULL, we didn't get far enough */
603 if (raw_s == NULL) {
604 return;
607 if (raw_s->fd >= 0) {
608 qemu_close(raw_s->fd);
609 raw_s->fd = -1;
611 g_free(state->opaque);
612 state->opaque = NULL;
615 static int raw_refresh_limits(BlockDriverState *bs)
617 BDRVRawState *s = bs->opaque;
619 raw_probe_alignment(bs);
620 bs->bl.opt_mem_alignment = s->buf_align;
622 return 0;
625 static ssize_t handle_aiocb_ioctl(RawPosixAIOData *aiocb)
627 int ret;
629 ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf);
630 if (ret == -1) {
631 return -errno;
634 return 0;
637 static ssize_t handle_aiocb_flush(RawPosixAIOData *aiocb)
639 int ret;
641 ret = qemu_fdatasync(aiocb->aio_fildes);
642 if (ret == -1) {
643 return -errno;
645 return 0;
648 #ifdef CONFIG_PREADV
650 static bool preadv_present = true;
652 static ssize_t
653 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
655 return preadv(fd, iov, nr_iov, offset);
658 static ssize_t
659 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
661 return pwritev(fd, iov, nr_iov, offset);
664 #else
666 static bool preadv_present = false;
668 static ssize_t
669 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
671 return -ENOSYS;
674 static ssize_t
675 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
677 return -ENOSYS;
680 #endif
682 static ssize_t handle_aiocb_rw_vector(RawPosixAIOData *aiocb)
684 ssize_t len;
686 do {
687 if (aiocb->aio_type & QEMU_AIO_WRITE)
688 len = qemu_pwritev(aiocb->aio_fildes,
689 aiocb->aio_iov,
690 aiocb->aio_niov,
691 aiocb->aio_offset);
692 else
693 len = qemu_preadv(aiocb->aio_fildes,
694 aiocb->aio_iov,
695 aiocb->aio_niov,
696 aiocb->aio_offset);
697 } while (len == -1 && errno == EINTR);
699 if (len == -1) {
700 return -errno;
702 return len;
706 * Read/writes the data to/from a given linear buffer.
708 * Returns the number of bytes handles or -errno in case of an error. Short
709 * reads are only returned if the end of the file is reached.
711 static ssize_t handle_aiocb_rw_linear(RawPosixAIOData *aiocb, char *buf)
713 ssize_t offset = 0;
714 ssize_t len;
716 while (offset < aiocb->aio_nbytes) {
717 if (aiocb->aio_type & QEMU_AIO_WRITE) {
718 len = pwrite(aiocb->aio_fildes,
719 (const char *)buf + offset,
720 aiocb->aio_nbytes - offset,
721 aiocb->aio_offset + offset);
722 } else {
723 len = pread(aiocb->aio_fildes,
724 buf + offset,
725 aiocb->aio_nbytes - offset,
726 aiocb->aio_offset + offset);
728 if (len == -1 && errno == EINTR) {
729 continue;
730 } else if (len == -1) {
731 offset = -errno;
732 break;
733 } else if (len == 0) {
734 break;
736 offset += len;
739 return offset;
742 static ssize_t handle_aiocb_rw(RawPosixAIOData *aiocb)
744 ssize_t nbytes;
745 char *buf;
747 if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) {
749 * If there is just a single buffer, and it is properly aligned
750 * we can just use plain pread/pwrite without any problems.
752 if (aiocb->aio_niov == 1) {
753 return handle_aiocb_rw_linear(aiocb, aiocb->aio_iov->iov_base);
756 * We have more than one iovec, and all are properly aligned.
758 * Try preadv/pwritev first and fall back to linearizing the
759 * buffer if it's not supported.
761 if (preadv_present) {
762 nbytes = handle_aiocb_rw_vector(aiocb);
763 if (nbytes == aiocb->aio_nbytes ||
764 (nbytes < 0 && nbytes != -ENOSYS)) {
765 return nbytes;
767 preadv_present = false;
771 * XXX(hch): short read/write. no easy way to handle the reminder
772 * using these interfaces. For now retry using plain
773 * pread/pwrite?
778 * Ok, we have to do it the hard way, copy all segments into
779 * a single aligned buffer.
781 buf = qemu_blockalign(aiocb->bs, aiocb->aio_nbytes);
782 if (aiocb->aio_type & QEMU_AIO_WRITE) {
783 char *p = buf;
784 int i;
786 for (i = 0; i < aiocb->aio_niov; ++i) {
787 memcpy(p, aiocb->aio_iov[i].iov_base, aiocb->aio_iov[i].iov_len);
788 p += aiocb->aio_iov[i].iov_len;
792 nbytes = handle_aiocb_rw_linear(aiocb, buf);
793 if (!(aiocb->aio_type & QEMU_AIO_WRITE)) {
794 char *p = buf;
795 size_t count = aiocb->aio_nbytes, copy;
796 int i;
798 for (i = 0; i < aiocb->aio_niov && count; ++i) {
799 copy = count;
800 if (copy > aiocb->aio_iov[i].iov_len) {
801 copy = aiocb->aio_iov[i].iov_len;
803 memcpy(aiocb->aio_iov[i].iov_base, p, copy);
804 p += copy;
805 count -= copy;
808 qemu_vfree(buf);
810 return nbytes;
813 #ifdef CONFIG_XFS
814 static int xfs_write_zeroes(BDRVRawState *s, int64_t offset, uint64_t bytes)
816 struct xfs_flock64 fl;
818 memset(&fl, 0, sizeof(fl));
819 fl.l_whence = SEEK_SET;
820 fl.l_start = offset;
821 fl.l_len = bytes;
823 if (xfsctl(NULL, s->fd, XFS_IOC_ZERO_RANGE, &fl) < 0) {
824 DEBUG_BLOCK_PRINT("cannot write zero range (%s)\n", strerror(errno));
825 return -errno;
828 return 0;
831 static int xfs_discard(BDRVRawState *s, int64_t offset, uint64_t bytes)
833 struct xfs_flock64 fl;
835 memset(&fl, 0, sizeof(fl));
836 fl.l_whence = SEEK_SET;
837 fl.l_start = offset;
838 fl.l_len = bytes;
840 if (xfsctl(NULL, s->fd, XFS_IOC_UNRESVSP64, &fl) < 0) {
841 DEBUG_BLOCK_PRINT("cannot punch hole (%s)\n", strerror(errno));
842 return -errno;
845 return 0;
847 #endif
849 static ssize_t handle_aiocb_write_zeroes(RawPosixAIOData *aiocb)
851 int ret = -EOPNOTSUPP;
852 BDRVRawState *s = aiocb->bs->opaque;
854 if (s->has_write_zeroes == 0) {
855 return -ENOTSUP;
858 if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
859 #ifdef BLKZEROOUT
860 do {
861 uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
862 if (ioctl(aiocb->aio_fildes, BLKZEROOUT, range) == 0) {
863 return 0;
865 } while (errno == EINTR);
867 ret = -errno;
868 #endif
869 } else {
870 #ifdef CONFIG_XFS
871 if (s->is_xfs) {
872 return xfs_write_zeroes(s, aiocb->aio_offset, aiocb->aio_nbytes);
874 #endif
877 if (ret == -ENODEV || ret == -ENOSYS || ret == -EOPNOTSUPP ||
878 ret == -ENOTTY) {
879 s->has_write_zeroes = false;
880 ret = -ENOTSUP;
882 return ret;
885 static ssize_t handle_aiocb_discard(RawPosixAIOData *aiocb)
887 int ret = -EOPNOTSUPP;
888 BDRVRawState *s = aiocb->bs->opaque;
890 if (!s->has_discard) {
891 return -ENOTSUP;
894 if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
895 #ifdef BLKDISCARD
896 do {
897 uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
898 if (ioctl(aiocb->aio_fildes, BLKDISCARD, range) == 0) {
899 return 0;
901 } while (errno == EINTR);
903 ret = -errno;
904 #endif
905 } else {
906 #ifdef CONFIG_XFS
907 if (s->is_xfs) {
908 return xfs_discard(s, aiocb->aio_offset, aiocb->aio_nbytes);
910 #endif
912 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
913 do {
914 if (fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
915 aiocb->aio_offset, aiocb->aio_nbytes) == 0) {
916 return 0;
918 } while (errno == EINTR);
920 ret = -errno;
921 #endif
924 if (ret == -ENODEV || ret == -ENOSYS || ret == -EOPNOTSUPP ||
925 ret == -ENOTTY) {
926 s->has_discard = false;
927 ret = -ENOTSUP;
929 return ret;
932 static int aio_worker(void *arg)
934 RawPosixAIOData *aiocb = arg;
935 ssize_t ret = 0;
937 switch (aiocb->aio_type & QEMU_AIO_TYPE_MASK) {
938 case QEMU_AIO_READ:
939 ret = handle_aiocb_rw(aiocb);
940 if (ret >= 0 && ret < aiocb->aio_nbytes && aiocb->bs->growable) {
941 iov_memset(aiocb->aio_iov, aiocb->aio_niov, ret,
942 0, aiocb->aio_nbytes - ret);
944 ret = aiocb->aio_nbytes;
946 if (ret == aiocb->aio_nbytes) {
947 ret = 0;
948 } else if (ret >= 0 && ret < aiocb->aio_nbytes) {
949 ret = -EINVAL;
951 break;
952 case QEMU_AIO_WRITE:
953 ret = handle_aiocb_rw(aiocb);
954 if (ret == aiocb->aio_nbytes) {
955 ret = 0;
956 } else if (ret >= 0 && ret < aiocb->aio_nbytes) {
957 ret = -EINVAL;
959 break;
960 case QEMU_AIO_FLUSH:
961 ret = handle_aiocb_flush(aiocb);
962 break;
963 case QEMU_AIO_IOCTL:
964 ret = handle_aiocb_ioctl(aiocb);
965 break;
966 case QEMU_AIO_DISCARD:
967 ret = handle_aiocb_discard(aiocb);
968 break;
969 case QEMU_AIO_WRITE_ZEROES:
970 ret = handle_aiocb_write_zeroes(aiocb);
971 break;
972 default:
973 fprintf(stderr, "invalid aio request (0x%x)\n", aiocb->aio_type);
974 ret = -EINVAL;
975 break;
978 g_slice_free(RawPosixAIOData, aiocb);
979 return ret;
982 static int paio_submit_co(BlockDriverState *bs, int fd,
983 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
984 int type)
986 RawPosixAIOData *acb = g_slice_new(RawPosixAIOData);
987 ThreadPool *pool;
989 acb->bs = bs;
990 acb->aio_type = type;
991 acb->aio_fildes = fd;
993 if (qiov) {
994 acb->aio_iov = qiov->iov;
995 acb->aio_niov = qiov->niov;
997 acb->aio_nbytes = nb_sectors * 512;
998 acb->aio_offset = sector_num * 512;
1000 trace_paio_submit_co(sector_num, nb_sectors, type);
1001 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
1002 return thread_pool_submit_co(pool, aio_worker, acb);
1005 static BlockDriverAIOCB *paio_submit(BlockDriverState *bs, int fd,
1006 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1007 BlockDriverCompletionFunc *cb, void *opaque, int type)
1009 RawPosixAIOData *acb = g_slice_new(RawPosixAIOData);
1010 ThreadPool *pool;
1012 acb->bs = bs;
1013 acb->aio_type = type;
1014 acb->aio_fildes = fd;
1016 if (qiov) {
1017 acb->aio_iov = qiov->iov;
1018 acb->aio_niov = qiov->niov;
1020 acb->aio_nbytes = nb_sectors * 512;
1021 acb->aio_offset = sector_num * 512;
1023 trace_paio_submit(acb, opaque, sector_num, nb_sectors, type);
1024 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
1025 return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
1028 static BlockDriverAIOCB *raw_aio_submit(BlockDriverState *bs,
1029 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1030 BlockDriverCompletionFunc *cb, void *opaque, int type)
1032 BDRVRawState *s = bs->opaque;
1034 if (fd_open(bs) < 0)
1035 return NULL;
1038 * If O_DIRECT is used the buffer needs to be aligned on a sector
1039 * boundary. Check if this is the case or tell the low-level
1040 * driver that it needs to copy the buffer.
1042 if ((bs->open_flags & BDRV_O_NOCACHE)) {
1043 if (!bdrv_qiov_is_aligned(bs, qiov)) {
1044 type |= QEMU_AIO_MISALIGNED;
1045 #ifdef CONFIG_LINUX_AIO
1046 } else if (s->use_aio) {
1047 return laio_submit(bs, s->aio_ctx, s->fd, sector_num, qiov,
1048 nb_sectors, cb, opaque, type);
1049 #endif
1053 return paio_submit(bs, s->fd, sector_num, qiov, nb_sectors,
1054 cb, opaque, type);
1057 static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
1058 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1059 BlockDriverCompletionFunc *cb, void *opaque)
1061 return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
1062 cb, opaque, QEMU_AIO_READ);
1065 static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
1066 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1067 BlockDriverCompletionFunc *cb, void *opaque)
1069 return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
1070 cb, opaque, QEMU_AIO_WRITE);
1073 static BlockDriverAIOCB *raw_aio_flush(BlockDriverState *bs,
1074 BlockDriverCompletionFunc *cb, void *opaque)
1076 BDRVRawState *s = bs->opaque;
1078 if (fd_open(bs) < 0)
1079 return NULL;
1081 return paio_submit(bs, s->fd, 0, NULL, 0, cb, opaque, QEMU_AIO_FLUSH);
1084 static void raw_close(BlockDriverState *bs)
1086 BDRVRawState *s = bs->opaque;
1088 raw_detach_aio_context(bs);
1090 #ifdef CONFIG_LINUX_AIO
1091 if (s->use_aio) {
1092 laio_cleanup(s->aio_ctx);
1094 #endif
1095 if (s->fd >= 0) {
1096 qemu_close(s->fd);
1097 s->fd = -1;
1101 static int raw_truncate(BlockDriverState *bs, int64_t offset)
1103 BDRVRawState *s = bs->opaque;
1104 struct stat st;
1106 if (fstat(s->fd, &st)) {
1107 return -errno;
1110 if (S_ISREG(st.st_mode)) {
1111 if (ftruncate(s->fd, offset) < 0) {
1112 return -errno;
1114 } else if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1115 if (offset > raw_getlength(bs)) {
1116 return -EINVAL;
1118 } else {
1119 return -ENOTSUP;
1122 return 0;
1125 #ifdef __OpenBSD__
1126 static int64_t raw_getlength(BlockDriverState *bs)
1128 BDRVRawState *s = bs->opaque;
1129 int fd = s->fd;
1130 struct stat st;
1132 if (fstat(fd, &st))
1133 return -1;
1134 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1135 struct disklabel dl;
1137 if (ioctl(fd, DIOCGDINFO, &dl))
1138 return -1;
1139 return (uint64_t)dl.d_secsize *
1140 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
1141 } else
1142 return st.st_size;
1144 #elif defined(__NetBSD__)
1145 static int64_t raw_getlength(BlockDriverState *bs)
1147 BDRVRawState *s = bs->opaque;
1148 int fd = s->fd;
1149 struct stat st;
1151 if (fstat(fd, &st))
1152 return -1;
1153 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1154 struct dkwedge_info dkw;
1156 if (ioctl(fd, DIOCGWEDGEINFO, &dkw) != -1) {
1157 return dkw.dkw_size * 512;
1158 } else {
1159 struct disklabel dl;
1161 if (ioctl(fd, DIOCGDINFO, &dl))
1162 return -1;
1163 return (uint64_t)dl.d_secsize *
1164 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
1166 } else
1167 return st.st_size;
1169 #elif defined(__sun__)
1170 static int64_t raw_getlength(BlockDriverState *bs)
1172 BDRVRawState *s = bs->opaque;
1173 struct dk_minfo minfo;
1174 int ret;
1176 ret = fd_open(bs);
1177 if (ret < 0) {
1178 return ret;
1182 * Use the DKIOCGMEDIAINFO ioctl to read the size.
1184 ret = ioctl(s->fd, DKIOCGMEDIAINFO, &minfo);
1185 if (ret != -1) {
1186 return minfo.dki_lbsize * minfo.dki_capacity;
1190 * There are reports that lseek on some devices fails, but
1191 * irc discussion said that contingency on contingency was overkill.
1193 return lseek(s->fd, 0, SEEK_END);
1195 #elif defined(CONFIG_BSD)
1196 static int64_t raw_getlength(BlockDriverState *bs)
1198 BDRVRawState *s = bs->opaque;
1199 int fd = s->fd;
1200 int64_t size;
1201 struct stat sb;
1202 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1203 int reopened = 0;
1204 #endif
1205 int ret;
1207 ret = fd_open(bs);
1208 if (ret < 0)
1209 return ret;
1211 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1212 again:
1213 #endif
1214 if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
1215 #ifdef DIOCGMEDIASIZE
1216 if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
1217 #elif defined(DIOCGPART)
1219 struct partinfo pi;
1220 if (ioctl(fd, DIOCGPART, &pi) == 0)
1221 size = pi.media_size;
1222 else
1223 size = 0;
1225 if (size == 0)
1226 #endif
1227 #if defined(__APPLE__) && defined(__MACH__)
1228 size = LLONG_MAX;
1229 #else
1230 size = lseek(fd, 0LL, SEEK_END);
1231 #endif
1232 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1233 switch(s->type) {
1234 case FTYPE_CD:
1235 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
1236 if (size == 2048LL * (unsigned)-1)
1237 size = 0;
1238 /* XXX no disc? maybe we need to reopen... */
1239 if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
1240 reopened = 1;
1241 goto again;
1244 #endif
1245 } else {
1246 size = lseek(fd, 0, SEEK_END);
1248 return size;
1250 #else
1251 static int64_t raw_getlength(BlockDriverState *bs)
1253 BDRVRawState *s = bs->opaque;
1254 int ret;
1256 ret = fd_open(bs);
1257 if (ret < 0) {
1258 return ret;
1261 return lseek(s->fd, 0, SEEK_END);
1263 #endif
1265 static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
1267 struct stat st;
1268 BDRVRawState *s = bs->opaque;
1270 if (fstat(s->fd, &st) < 0) {
1271 return -errno;
1273 return (int64_t)st.st_blocks * 512;
1276 static int raw_create(const char *filename, QemuOpts *opts, Error **errp)
1278 int fd;
1279 int result = 0;
1280 int64_t total_size = 0;
1282 strstart(filename, "file:", &filename);
1284 /* Read out options */
1285 total_size =
1286 qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0) / BDRV_SECTOR_SIZE;
1288 fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
1289 0644);
1290 if (fd < 0) {
1291 result = -errno;
1292 error_setg_errno(errp, -result, "Could not create file");
1293 } else {
1294 if (ftruncate(fd, total_size * BDRV_SECTOR_SIZE) != 0) {
1295 result = -errno;
1296 error_setg_errno(errp, -result, "Could not resize file");
1298 if (qemu_close(fd) != 0) {
1299 result = -errno;
1300 error_setg_errno(errp, -result, "Could not close the new file");
1303 return result;
1306 static int64_t try_fiemap(BlockDriverState *bs, off_t start, off_t *data,
1307 off_t *hole, int nb_sectors, int *pnum)
1309 #ifdef CONFIG_FIEMAP
1310 BDRVRawState *s = bs->opaque;
1311 int64_t ret = BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start;
1312 struct {
1313 struct fiemap fm;
1314 struct fiemap_extent fe;
1315 } f;
1317 if (s->skip_fiemap) {
1318 return -ENOTSUP;
1321 f.fm.fm_start = start;
1322 f.fm.fm_length = (int64_t)nb_sectors * BDRV_SECTOR_SIZE;
1323 f.fm.fm_flags = 0;
1324 f.fm.fm_extent_count = 1;
1325 f.fm.fm_reserved = 0;
1326 if (ioctl(s->fd, FS_IOC_FIEMAP, &f) == -1) {
1327 s->skip_fiemap = true;
1328 return -errno;
1331 if (f.fm.fm_mapped_extents == 0) {
1332 /* No extents found, data is beyond f.fm.fm_start + f.fm.fm_length.
1333 * f.fm.fm_start + f.fm.fm_length must be clamped to the file size!
1335 off_t length = lseek(s->fd, 0, SEEK_END);
1336 *hole = f.fm.fm_start;
1337 *data = MIN(f.fm.fm_start + f.fm.fm_length, length);
1338 } else {
1339 *data = f.fe.fe_logical;
1340 *hole = f.fe.fe_logical + f.fe.fe_length;
1341 if (f.fe.fe_flags & FIEMAP_EXTENT_UNWRITTEN) {
1342 ret |= BDRV_BLOCK_ZERO;
1346 return ret;
1347 #else
1348 return -ENOTSUP;
1349 #endif
1352 static int64_t try_seek_hole(BlockDriverState *bs, off_t start, off_t *data,
1353 off_t *hole, int *pnum)
1355 #if defined SEEK_HOLE && defined SEEK_DATA
1356 BDRVRawState *s = bs->opaque;
1358 *hole = lseek(s->fd, start, SEEK_HOLE);
1359 if (*hole == -1) {
1360 /* -ENXIO indicates that sector_num was past the end of the file.
1361 * There is a virtual hole there. */
1362 assert(errno != -ENXIO);
1364 return -errno;
1367 if (*hole > start) {
1368 *data = start;
1369 } else {
1370 /* On a hole. We need another syscall to find its end. */
1371 *data = lseek(s->fd, start, SEEK_DATA);
1372 if (*data == -1) {
1373 *data = lseek(s->fd, 0, SEEK_END);
1377 return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start;
1378 #else
1379 return -ENOTSUP;
1380 #endif
1384 * Returns true iff the specified sector is present in the disk image. Drivers
1385 * not implementing the functionality are assumed to not support backing files,
1386 * hence all their sectors are reported as allocated.
1388 * If 'sector_num' is beyond the end of the disk image the return value is 0
1389 * and 'pnum' is set to 0.
1391 * 'pnum' is set to the number of sectors (including and immediately following
1392 * the specified sector) that are known to be in the same
1393 * allocated/unallocated state.
1395 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
1396 * beyond the end of the disk image it will be clamped.
1398 static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
1399 int64_t sector_num,
1400 int nb_sectors, int *pnum)
1402 off_t start, data = 0, hole = 0;
1403 int64_t ret;
1405 ret = fd_open(bs);
1406 if (ret < 0) {
1407 return ret;
1410 start = sector_num * BDRV_SECTOR_SIZE;
1412 ret = try_fiemap(bs, start, &data, &hole, nb_sectors, pnum);
1413 if (ret < 0) {
1414 ret = try_seek_hole(bs, start, &data, &hole, pnum);
1415 if (ret < 0) {
1416 /* Assume everything is allocated. */
1417 data = 0;
1418 hole = start + nb_sectors * BDRV_SECTOR_SIZE;
1419 ret = BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start;
1423 if (data <= start) {
1424 /* On a data extent, compute sectors to the end of the extent. */
1425 *pnum = MIN(nb_sectors, (hole - start) / BDRV_SECTOR_SIZE);
1426 } else {
1427 /* On a hole, compute sectors to the beginning of the next extent. */
1428 *pnum = MIN(nb_sectors, (data - start) / BDRV_SECTOR_SIZE);
1429 ret &= ~BDRV_BLOCK_DATA;
1430 ret |= BDRV_BLOCK_ZERO;
1433 return ret;
1436 static coroutine_fn BlockDriverAIOCB *raw_aio_discard(BlockDriverState *bs,
1437 int64_t sector_num, int nb_sectors,
1438 BlockDriverCompletionFunc *cb, void *opaque)
1440 BDRVRawState *s = bs->opaque;
1442 return paio_submit(bs, s->fd, sector_num, NULL, nb_sectors,
1443 cb, opaque, QEMU_AIO_DISCARD);
1446 static int coroutine_fn raw_co_write_zeroes(
1447 BlockDriverState *bs, int64_t sector_num,
1448 int nb_sectors, BdrvRequestFlags flags)
1450 BDRVRawState *s = bs->opaque;
1452 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
1453 return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
1454 QEMU_AIO_WRITE_ZEROES);
1455 } else if (s->discard_zeroes) {
1456 return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
1457 QEMU_AIO_DISCARD);
1459 return -ENOTSUP;
1462 static int raw_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1464 BDRVRawState *s = bs->opaque;
1466 bdi->unallocated_blocks_are_zero = s->discard_zeroes;
1467 bdi->can_write_zeroes_with_unmap = s->discard_zeroes;
1468 return 0;
1471 static QemuOptsList raw_create_opts = {
1472 .name = "raw-create-opts",
1473 .head = QTAILQ_HEAD_INITIALIZER(raw_create_opts.head),
1474 .desc = {
1476 .name = BLOCK_OPT_SIZE,
1477 .type = QEMU_OPT_SIZE,
1478 .help = "Virtual disk size"
1480 { /* end of list */ }
1484 static BlockDriver bdrv_file = {
1485 .format_name = "file",
1486 .protocol_name = "file",
1487 .instance_size = sizeof(BDRVRawState),
1488 .bdrv_needs_filename = true,
1489 .bdrv_probe = NULL, /* no probe for protocols */
1490 .bdrv_parse_filename = raw_parse_filename,
1491 .bdrv_file_open = raw_open,
1492 .bdrv_reopen_prepare = raw_reopen_prepare,
1493 .bdrv_reopen_commit = raw_reopen_commit,
1494 .bdrv_reopen_abort = raw_reopen_abort,
1495 .bdrv_close = raw_close,
1496 .bdrv_create2 = raw_create,
1497 .bdrv_has_zero_init = bdrv_has_zero_init_1,
1498 .bdrv_co_get_block_status = raw_co_get_block_status,
1499 .bdrv_co_write_zeroes = raw_co_write_zeroes,
1501 .bdrv_aio_readv = raw_aio_readv,
1502 .bdrv_aio_writev = raw_aio_writev,
1503 .bdrv_aio_flush = raw_aio_flush,
1504 .bdrv_aio_discard = raw_aio_discard,
1505 .bdrv_refresh_limits = raw_refresh_limits,
1507 .bdrv_truncate = raw_truncate,
1508 .bdrv_getlength = raw_getlength,
1509 .bdrv_get_info = raw_get_info,
1510 .bdrv_get_allocated_file_size
1511 = raw_get_allocated_file_size,
1513 .bdrv_detach_aio_context = raw_detach_aio_context,
1514 .bdrv_attach_aio_context = raw_attach_aio_context,
1516 .create_opts = &raw_create_opts,
1519 /***********************************************/
1520 /* host device */
1522 #if defined(__APPLE__) && defined(__MACH__)
1523 static kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator );
1524 static kern_return_t GetBSDPath( io_iterator_t mediaIterator, char *bsdPath, CFIndex maxPathSize );
1526 kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator )
1528 kern_return_t kernResult;
1529 mach_port_t masterPort;
1530 CFMutableDictionaryRef classesToMatch;
1532 kernResult = IOMasterPort( MACH_PORT_NULL, &masterPort );
1533 if ( KERN_SUCCESS != kernResult ) {
1534 printf( "IOMasterPort returned %d\n", kernResult );
1537 classesToMatch = IOServiceMatching( kIOCDMediaClass );
1538 if ( classesToMatch == NULL ) {
1539 printf( "IOServiceMatching returned a NULL dictionary.\n" );
1540 } else {
1541 CFDictionarySetValue( classesToMatch, CFSTR( kIOMediaEjectableKey ), kCFBooleanTrue );
1543 kernResult = IOServiceGetMatchingServices( masterPort, classesToMatch, mediaIterator );
1544 if ( KERN_SUCCESS != kernResult )
1546 printf( "IOServiceGetMatchingServices returned %d\n", kernResult );
1549 return kernResult;
1552 kern_return_t GetBSDPath( io_iterator_t mediaIterator, char *bsdPath, CFIndex maxPathSize )
1554 io_object_t nextMedia;
1555 kern_return_t kernResult = KERN_FAILURE;
1556 *bsdPath = '\0';
1557 nextMedia = IOIteratorNext( mediaIterator );
1558 if ( nextMedia )
1560 CFTypeRef bsdPathAsCFString;
1561 bsdPathAsCFString = IORegistryEntryCreateCFProperty( nextMedia, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 );
1562 if ( bsdPathAsCFString ) {
1563 size_t devPathLength;
1564 strcpy( bsdPath, _PATH_DEV );
1565 strcat( bsdPath, "r" );
1566 devPathLength = strlen( bsdPath );
1567 if ( CFStringGetCString( bsdPathAsCFString, bsdPath + devPathLength, maxPathSize - devPathLength, kCFStringEncodingASCII ) ) {
1568 kernResult = KERN_SUCCESS;
1570 CFRelease( bsdPathAsCFString );
1572 IOObjectRelease( nextMedia );
1575 return kernResult;
1578 #endif
1580 static int hdev_probe_device(const char *filename)
1582 struct stat st;
1584 /* allow a dedicated CD-ROM driver to match with a higher priority */
1585 if (strstart(filename, "/dev/cdrom", NULL))
1586 return 50;
1588 if (stat(filename, &st) >= 0 &&
1589 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
1590 return 100;
1593 return 0;
1596 static int check_hdev_writable(BDRVRawState *s)
1598 #if defined(BLKROGET)
1599 /* Linux block devices can be configured "read-only" using blockdev(8).
1600 * This is independent of device node permissions and therefore open(2)
1601 * with O_RDWR succeeds. Actual writes fail with EPERM.
1603 * bdrv_open() is supposed to fail if the disk is read-only. Explicitly
1604 * check for read-only block devices so that Linux block devices behave
1605 * properly.
1607 struct stat st;
1608 int readonly = 0;
1610 if (fstat(s->fd, &st)) {
1611 return -errno;
1614 if (!S_ISBLK(st.st_mode)) {
1615 return 0;
1618 if (ioctl(s->fd, BLKROGET, &readonly) < 0) {
1619 return -errno;
1622 if (readonly) {
1623 return -EACCES;
1625 #endif /* defined(BLKROGET) */
1626 return 0;
1629 static void hdev_parse_filename(const char *filename, QDict *options,
1630 Error **errp)
1632 /* The prefix is optional, just as for "file". */
1633 strstart(filename, "host_device:", &filename);
1635 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
1638 static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
1639 Error **errp)
1641 BDRVRawState *s = bs->opaque;
1642 Error *local_err = NULL;
1643 int ret;
1644 const char *filename = qdict_get_str(options, "filename");
1646 #if defined(__APPLE__) && defined(__MACH__)
1647 if (strstart(filename, "/dev/cdrom", NULL)) {
1648 kern_return_t kernResult;
1649 io_iterator_t mediaIterator;
1650 char bsdPath[ MAXPATHLEN ];
1651 int fd;
1653 kernResult = FindEjectableCDMedia( &mediaIterator );
1654 kernResult = GetBSDPath( mediaIterator, bsdPath, sizeof( bsdPath ) );
1656 if ( bsdPath[ 0 ] != '\0' ) {
1657 strcat(bsdPath,"s0");
1658 /* some CDs don't have a partition 0 */
1659 fd = qemu_open(bsdPath, O_RDONLY | O_BINARY | O_LARGEFILE);
1660 if (fd < 0) {
1661 bsdPath[strlen(bsdPath)-1] = '1';
1662 } else {
1663 qemu_close(fd);
1665 filename = bsdPath;
1666 qdict_put(options, "filename", qstring_from_str(filename));
1669 if ( mediaIterator )
1670 IOObjectRelease( mediaIterator );
1672 #endif
1674 s->type = FTYPE_FILE;
1675 #if defined(__linux__)
1677 char resolved_path[ MAXPATHLEN ], *temp;
1679 temp = realpath(filename, resolved_path);
1680 if (temp && strstart(temp, "/dev/sg", NULL)) {
1681 bs->sg = 1;
1684 #endif
1686 ret = raw_open_common(bs, options, flags, 0, &local_err);
1687 if (ret < 0) {
1688 if (local_err) {
1689 error_propagate(errp, local_err);
1691 return ret;
1694 if (flags & BDRV_O_RDWR) {
1695 ret = check_hdev_writable(s);
1696 if (ret < 0) {
1697 raw_close(bs);
1698 error_setg_errno(errp, -ret, "The device is not writable");
1699 return ret;
1703 return ret;
1706 #if defined(__linux__)
1707 /* Note: we do not have a reliable method to detect if the floppy is
1708 present. The current method is to try to open the floppy at every
1709 I/O and to keep it opened during a few hundreds of ms. */
1710 static int fd_open(BlockDriverState *bs)
1712 BDRVRawState *s = bs->opaque;
1713 int last_media_present;
1715 if (s->type != FTYPE_FD)
1716 return 0;
1717 last_media_present = (s->fd >= 0);
1718 if (s->fd >= 0 &&
1719 (get_clock() - s->fd_open_time) >= FD_OPEN_TIMEOUT) {
1720 qemu_close(s->fd);
1721 s->fd = -1;
1722 #ifdef DEBUG_FLOPPY
1723 printf("Floppy closed\n");
1724 #endif
1726 if (s->fd < 0) {
1727 if (s->fd_got_error &&
1728 (get_clock() - s->fd_error_time) < FD_OPEN_TIMEOUT) {
1729 #ifdef DEBUG_FLOPPY
1730 printf("No floppy (open delayed)\n");
1731 #endif
1732 return -EIO;
1734 s->fd = qemu_open(bs->filename, s->open_flags & ~O_NONBLOCK);
1735 if (s->fd < 0) {
1736 s->fd_error_time = get_clock();
1737 s->fd_got_error = 1;
1738 if (last_media_present)
1739 s->fd_media_changed = 1;
1740 #ifdef DEBUG_FLOPPY
1741 printf("No floppy\n");
1742 #endif
1743 return -EIO;
1745 #ifdef DEBUG_FLOPPY
1746 printf("Floppy opened\n");
1747 #endif
1749 if (!last_media_present)
1750 s->fd_media_changed = 1;
1751 s->fd_open_time = get_clock();
1752 s->fd_got_error = 0;
1753 return 0;
1756 static int hdev_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1758 BDRVRawState *s = bs->opaque;
1760 return ioctl(s->fd, req, buf);
1763 static BlockDriverAIOCB *hdev_aio_ioctl(BlockDriverState *bs,
1764 unsigned long int req, void *buf,
1765 BlockDriverCompletionFunc *cb, void *opaque)
1767 BDRVRawState *s = bs->opaque;
1768 RawPosixAIOData *acb;
1769 ThreadPool *pool;
1771 if (fd_open(bs) < 0)
1772 return NULL;
1774 acb = g_slice_new(RawPosixAIOData);
1775 acb->bs = bs;
1776 acb->aio_type = QEMU_AIO_IOCTL;
1777 acb->aio_fildes = s->fd;
1778 acb->aio_offset = 0;
1779 acb->aio_ioctl_buf = buf;
1780 acb->aio_ioctl_cmd = req;
1781 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
1782 return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
1785 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1786 static int fd_open(BlockDriverState *bs)
1788 BDRVRawState *s = bs->opaque;
1790 /* this is just to ensure s->fd is sane (its called by io ops) */
1791 if (s->fd >= 0)
1792 return 0;
1793 return -EIO;
1795 #else /* !linux && !FreeBSD */
1797 static int fd_open(BlockDriverState *bs)
1799 return 0;
1802 #endif /* !linux && !FreeBSD */
1804 static coroutine_fn BlockDriverAIOCB *hdev_aio_discard(BlockDriverState *bs,
1805 int64_t sector_num, int nb_sectors,
1806 BlockDriverCompletionFunc *cb, void *opaque)
1808 BDRVRawState *s = bs->opaque;
1810 if (fd_open(bs) < 0) {
1811 return NULL;
1813 return paio_submit(bs, s->fd, sector_num, NULL, nb_sectors,
1814 cb, opaque, QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
1817 static coroutine_fn int hdev_co_write_zeroes(BlockDriverState *bs,
1818 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
1820 BDRVRawState *s = bs->opaque;
1821 int rc;
1823 rc = fd_open(bs);
1824 if (rc < 0) {
1825 return rc;
1827 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
1828 return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
1829 QEMU_AIO_WRITE_ZEROES|QEMU_AIO_BLKDEV);
1830 } else if (s->discard_zeroes) {
1831 return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
1832 QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
1834 return -ENOTSUP;
1837 static int hdev_create(const char *filename, QemuOpts *opts,
1838 Error **errp)
1840 int fd;
1841 int ret = 0;
1842 struct stat stat_buf;
1843 int64_t total_size = 0;
1844 bool has_prefix;
1846 /* This function is used by all three protocol block drivers and therefore
1847 * any of these three prefixes may be given.
1848 * The return value has to be stored somewhere, otherwise this is an error
1849 * due to -Werror=unused-value. */
1850 has_prefix =
1851 strstart(filename, "host_device:", &filename) ||
1852 strstart(filename, "host_cdrom:" , &filename) ||
1853 strstart(filename, "host_floppy:", &filename);
1855 (void)has_prefix;
1857 /* Read out options */
1858 total_size =
1859 qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0) / BDRV_SECTOR_SIZE;
1861 fd = qemu_open(filename, O_WRONLY | O_BINARY);
1862 if (fd < 0) {
1863 ret = -errno;
1864 error_setg_errno(errp, -ret, "Could not open device");
1865 return ret;
1868 if (fstat(fd, &stat_buf) < 0) {
1869 ret = -errno;
1870 error_setg_errno(errp, -ret, "Could not stat device");
1871 } else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode)) {
1872 error_setg(errp,
1873 "The given file is neither a block nor a character device");
1874 ret = -ENODEV;
1875 } else if (lseek(fd, 0, SEEK_END) < total_size * BDRV_SECTOR_SIZE) {
1876 error_setg(errp, "Device is too small");
1877 ret = -ENOSPC;
1880 qemu_close(fd);
1881 return ret;
1884 static BlockDriver bdrv_host_device = {
1885 .format_name = "host_device",
1886 .protocol_name = "host_device",
1887 .instance_size = sizeof(BDRVRawState),
1888 .bdrv_needs_filename = true,
1889 .bdrv_probe_device = hdev_probe_device,
1890 .bdrv_parse_filename = hdev_parse_filename,
1891 .bdrv_file_open = hdev_open,
1892 .bdrv_close = raw_close,
1893 .bdrv_reopen_prepare = raw_reopen_prepare,
1894 .bdrv_reopen_commit = raw_reopen_commit,
1895 .bdrv_reopen_abort = raw_reopen_abort,
1896 .bdrv_create2 = hdev_create,
1897 .create_opts = &raw_create_opts,
1898 .bdrv_co_write_zeroes = hdev_co_write_zeroes,
1900 .bdrv_aio_readv = raw_aio_readv,
1901 .bdrv_aio_writev = raw_aio_writev,
1902 .bdrv_aio_flush = raw_aio_flush,
1903 .bdrv_aio_discard = hdev_aio_discard,
1904 .bdrv_refresh_limits = raw_refresh_limits,
1906 .bdrv_truncate = raw_truncate,
1907 .bdrv_getlength = raw_getlength,
1908 .bdrv_get_info = raw_get_info,
1909 .bdrv_get_allocated_file_size
1910 = raw_get_allocated_file_size,
1912 .bdrv_detach_aio_context = raw_detach_aio_context,
1913 .bdrv_attach_aio_context = raw_attach_aio_context,
1915 /* generic scsi device */
1916 #ifdef __linux__
1917 .bdrv_ioctl = hdev_ioctl,
1918 .bdrv_aio_ioctl = hdev_aio_ioctl,
1919 #endif
1922 #ifdef __linux__
1923 static void floppy_parse_filename(const char *filename, QDict *options,
1924 Error **errp)
1926 /* The prefix is optional, just as for "file". */
1927 strstart(filename, "host_floppy:", &filename);
1929 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
1932 static int floppy_open(BlockDriverState *bs, QDict *options, int flags,
1933 Error **errp)
1935 BDRVRawState *s = bs->opaque;
1936 Error *local_err = NULL;
1937 int ret;
1939 s->type = FTYPE_FD;
1941 /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
1942 ret = raw_open_common(bs, options, flags, O_NONBLOCK, &local_err);
1943 if (ret) {
1944 if (local_err) {
1945 error_propagate(errp, local_err);
1947 return ret;
1950 /* close fd so that we can reopen it as needed */
1951 qemu_close(s->fd);
1952 s->fd = -1;
1953 s->fd_media_changed = 1;
1955 return 0;
1958 static int floppy_probe_device(const char *filename)
1960 int fd, ret;
1961 int prio = 0;
1962 struct floppy_struct fdparam;
1963 struct stat st;
1965 if (strstart(filename, "/dev/fd", NULL) &&
1966 !strstart(filename, "/dev/fdset/", NULL)) {
1967 prio = 50;
1970 fd = qemu_open(filename, O_RDONLY | O_NONBLOCK);
1971 if (fd < 0) {
1972 goto out;
1974 ret = fstat(fd, &st);
1975 if (ret == -1 || !S_ISBLK(st.st_mode)) {
1976 goto outc;
1979 /* Attempt to detect via a floppy specific ioctl */
1980 ret = ioctl(fd, FDGETPRM, &fdparam);
1981 if (ret >= 0)
1982 prio = 100;
1984 outc:
1985 qemu_close(fd);
1986 out:
1987 return prio;
1991 static int floppy_is_inserted(BlockDriverState *bs)
1993 return fd_open(bs) >= 0;
1996 static int floppy_media_changed(BlockDriverState *bs)
1998 BDRVRawState *s = bs->opaque;
1999 int ret;
2002 * XXX: we do not have a true media changed indication.
2003 * It does not work if the floppy is changed without trying to read it.
2005 fd_open(bs);
2006 ret = s->fd_media_changed;
2007 s->fd_media_changed = 0;
2008 #ifdef DEBUG_FLOPPY
2009 printf("Floppy changed=%d\n", ret);
2010 #endif
2011 return ret;
2014 static void floppy_eject(BlockDriverState *bs, bool eject_flag)
2016 BDRVRawState *s = bs->opaque;
2017 int fd;
2019 if (s->fd >= 0) {
2020 qemu_close(s->fd);
2021 s->fd = -1;
2023 fd = qemu_open(bs->filename, s->open_flags | O_NONBLOCK);
2024 if (fd >= 0) {
2025 if (ioctl(fd, FDEJECT, 0) < 0)
2026 perror("FDEJECT");
2027 qemu_close(fd);
2031 static BlockDriver bdrv_host_floppy = {
2032 .format_name = "host_floppy",
2033 .protocol_name = "host_floppy",
2034 .instance_size = sizeof(BDRVRawState),
2035 .bdrv_needs_filename = true,
2036 .bdrv_probe_device = floppy_probe_device,
2037 .bdrv_parse_filename = floppy_parse_filename,
2038 .bdrv_file_open = floppy_open,
2039 .bdrv_close = raw_close,
2040 .bdrv_reopen_prepare = raw_reopen_prepare,
2041 .bdrv_reopen_commit = raw_reopen_commit,
2042 .bdrv_reopen_abort = raw_reopen_abort,
2043 .bdrv_create2 = hdev_create,
2044 .create_opts = &raw_create_opts,
2046 .bdrv_aio_readv = raw_aio_readv,
2047 .bdrv_aio_writev = raw_aio_writev,
2048 .bdrv_aio_flush = raw_aio_flush,
2049 .bdrv_refresh_limits = raw_refresh_limits,
2051 .bdrv_truncate = raw_truncate,
2052 .bdrv_getlength = raw_getlength,
2053 .has_variable_length = true,
2054 .bdrv_get_allocated_file_size
2055 = raw_get_allocated_file_size,
2057 .bdrv_detach_aio_context = raw_detach_aio_context,
2058 .bdrv_attach_aio_context = raw_attach_aio_context,
2060 /* removable device support */
2061 .bdrv_is_inserted = floppy_is_inserted,
2062 .bdrv_media_changed = floppy_media_changed,
2063 .bdrv_eject = floppy_eject,
2065 #endif
2067 #if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2068 static void cdrom_parse_filename(const char *filename, QDict *options,
2069 Error **errp)
2071 /* The prefix is optional, just as for "file". */
2072 strstart(filename, "host_cdrom:", &filename);
2074 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
2076 #endif
2078 #ifdef __linux__
2079 static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
2080 Error **errp)
2082 BDRVRawState *s = bs->opaque;
2083 Error *local_err = NULL;
2084 int ret;
2086 s->type = FTYPE_CD;
2088 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
2089 ret = raw_open_common(bs, options, flags, O_NONBLOCK, &local_err);
2090 if (local_err) {
2091 error_propagate(errp, local_err);
2093 return ret;
2096 static int cdrom_probe_device(const char *filename)
2098 int fd, ret;
2099 int prio = 0;
2100 struct stat st;
2102 fd = qemu_open(filename, O_RDONLY | O_NONBLOCK);
2103 if (fd < 0) {
2104 goto out;
2106 ret = fstat(fd, &st);
2107 if (ret == -1 || !S_ISBLK(st.st_mode)) {
2108 goto outc;
2111 /* Attempt to detect via a CDROM specific ioctl */
2112 ret = ioctl(fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
2113 if (ret >= 0)
2114 prio = 100;
2116 outc:
2117 qemu_close(fd);
2118 out:
2119 return prio;
2122 static int cdrom_is_inserted(BlockDriverState *bs)
2124 BDRVRawState *s = bs->opaque;
2125 int ret;
2127 ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
2128 if (ret == CDS_DISC_OK)
2129 return 1;
2130 return 0;
2133 static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
2135 BDRVRawState *s = bs->opaque;
2137 if (eject_flag) {
2138 if (ioctl(s->fd, CDROMEJECT, NULL) < 0)
2139 perror("CDROMEJECT");
2140 } else {
2141 if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0)
2142 perror("CDROMEJECT");
2146 static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
2148 BDRVRawState *s = bs->opaque;
2150 if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
2152 * Note: an error can happen if the distribution automatically
2153 * mounts the CD-ROM
2155 /* perror("CDROM_LOCKDOOR"); */
2159 static BlockDriver bdrv_host_cdrom = {
2160 .format_name = "host_cdrom",
2161 .protocol_name = "host_cdrom",
2162 .instance_size = sizeof(BDRVRawState),
2163 .bdrv_needs_filename = true,
2164 .bdrv_probe_device = cdrom_probe_device,
2165 .bdrv_parse_filename = cdrom_parse_filename,
2166 .bdrv_file_open = cdrom_open,
2167 .bdrv_close = raw_close,
2168 .bdrv_reopen_prepare = raw_reopen_prepare,
2169 .bdrv_reopen_commit = raw_reopen_commit,
2170 .bdrv_reopen_abort = raw_reopen_abort,
2171 .bdrv_create2 = hdev_create,
2172 .create_opts = &raw_create_opts,
2174 .bdrv_aio_readv = raw_aio_readv,
2175 .bdrv_aio_writev = raw_aio_writev,
2176 .bdrv_aio_flush = raw_aio_flush,
2177 .bdrv_refresh_limits = raw_refresh_limits,
2179 .bdrv_truncate = raw_truncate,
2180 .bdrv_getlength = raw_getlength,
2181 .has_variable_length = true,
2182 .bdrv_get_allocated_file_size
2183 = raw_get_allocated_file_size,
2185 .bdrv_detach_aio_context = raw_detach_aio_context,
2186 .bdrv_attach_aio_context = raw_attach_aio_context,
2188 /* removable device support */
2189 .bdrv_is_inserted = cdrom_is_inserted,
2190 .bdrv_eject = cdrom_eject,
2191 .bdrv_lock_medium = cdrom_lock_medium,
2193 /* generic scsi device */
2194 .bdrv_ioctl = hdev_ioctl,
2195 .bdrv_aio_ioctl = hdev_aio_ioctl,
2197 #endif /* __linux__ */
2199 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
2200 static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
2201 Error **errp)
2203 BDRVRawState *s = bs->opaque;
2204 Error *local_err = NULL;
2205 int ret;
2207 s->type = FTYPE_CD;
2209 ret = raw_open_common(bs, options, flags, 0, &local_err);
2210 if (ret) {
2211 if (local_err) {
2212 error_propagate(errp, local_err);
2214 return ret;
2217 /* make sure the door isn't locked at this time */
2218 ioctl(s->fd, CDIOCALLOW);
2219 return 0;
2222 static int cdrom_probe_device(const char *filename)
2224 if (strstart(filename, "/dev/cd", NULL) ||
2225 strstart(filename, "/dev/acd", NULL))
2226 return 100;
2227 return 0;
2230 static int cdrom_reopen(BlockDriverState *bs)
2232 BDRVRawState *s = bs->opaque;
2233 int fd;
2236 * Force reread of possibly changed/newly loaded disc,
2237 * FreeBSD seems to not notice sometimes...
2239 if (s->fd >= 0)
2240 qemu_close(s->fd);
2241 fd = qemu_open(bs->filename, s->open_flags, 0644);
2242 if (fd < 0) {
2243 s->fd = -1;
2244 return -EIO;
2246 s->fd = fd;
2248 /* make sure the door isn't locked at this time */
2249 ioctl(s->fd, CDIOCALLOW);
2250 return 0;
2253 static int cdrom_is_inserted(BlockDriverState *bs)
2255 return raw_getlength(bs) > 0;
2258 static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
2260 BDRVRawState *s = bs->opaque;
2262 if (s->fd < 0)
2263 return;
2265 (void) ioctl(s->fd, CDIOCALLOW);
2267 if (eject_flag) {
2268 if (ioctl(s->fd, CDIOCEJECT) < 0)
2269 perror("CDIOCEJECT");
2270 } else {
2271 if (ioctl(s->fd, CDIOCCLOSE) < 0)
2272 perror("CDIOCCLOSE");
2275 cdrom_reopen(bs);
2278 static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
2280 BDRVRawState *s = bs->opaque;
2282 if (s->fd < 0)
2283 return;
2284 if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
2286 * Note: an error can happen if the distribution automatically
2287 * mounts the CD-ROM
2289 /* perror("CDROM_LOCKDOOR"); */
2293 static BlockDriver bdrv_host_cdrom = {
2294 .format_name = "host_cdrom",
2295 .protocol_name = "host_cdrom",
2296 .instance_size = sizeof(BDRVRawState),
2297 .bdrv_needs_filename = true,
2298 .bdrv_probe_device = cdrom_probe_device,
2299 .bdrv_parse_filename = cdrom_parse_filename,
2300 .bdrv_file_open = cdrom_open,
2301 .bdrv_close = raw_close,
2302 .bdrv_reopen_prepare = raw_reopen_prepare,
2303 .bdrv_reopen_commit = raw_reopen_commit,
2304 .bdrv_reopen_abort = raw_reopen_abort,
2305 .bdrv_create2 = hdev_create,
2306 .create_opts = &raw_create_opts,
2308 .bdrv_aio_readv = raw_aio_readv,
2309 .bdrv_aio_writev = raw_aio_writev,
2310 .bdrv_aio_flush = raw_aio_flush,
2311 .bdrv_refresh_limits = raw_refresh_limits,
2313 .bdrv_truncate = raw_truncate,
2314 .bdrv_getlength = raw_getlength,
2315 .has_variable_length = true,
2316 .bdrv_get_allocated_file_size
2317 = raw_get_allocated_file_size,
2319 .bdrv_detach_aio_context = raw_detach_aio_context,
2320 .bdrv_attach_aio_context = raw_attach_aio_context,
2322 /* removable device support */
2323 .bdrv_is_inserted = cdrom_is_inserted,
2324 .bdrv_eject = cdrom_eject,
2325 .bdrv_lock_medium = cdrom_lock_medium,
2327 #endif /* __FreeBSD__ */
2329 static void bdrv_file_init(void)
2332 * Register all the drivers. Note that order is important, the driver
2333 * registered last will get probed first.
2335 bdrv_register(&bdrv_file);
2336 bdrv_register(&bdrv_host_device);
2337 #ifdef __linux__
2338 bdrv_register(&bdrv_host_floppy);
2339 bdrv_register(&bdrv_host_cdrom);
2340 #endif
2341 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2342 bdrv_register(&bdrv_host_cdrom);
2343 #endif
2346 block_init(bdrv_file_init);