raw-posix: Use qemu_dup
[qemu.git] / block / raw-posix.c
blobd1c3bd8e47076e8ac939b3c908c06d3916566a96
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/osdep.h"
25 #include "qapi/error.h"
26 #include "qemu/cutils.h"
27 #include "qemu/error-report.h"
28 #include "qemu/timer.h"
29 #include "qemu/log.h"
30 #include "block/block_int.h"
31 #include "qemu/module.h"
32 #include "trace.h"
33 #include "block/thread-pool.h"
34 #include "qemu/iov.h"
35 #include "raw-aio.h"
36 #include "qapi/util.h"
37 #include "qapi/qmp/qstring.h"
39 #if defined(__APPLE__) && (__MACH__)
40 #include <paths.h>
41 #include <sys/param.h>
42 #include <IOKit/IOKitLib.h>
43 #include <IOKit/IOBSD.h>
44 #include <IOKit/storage/IOMediaBSDClient.h>
45 #include <IOKit/storage/IOMedia.h>
46 #include <IOKit/storage/IOCDMedia.h>
47 //#include <IOKit/storage/IOCDTypes.h>
48 #include <IOKit/storage/IODVDMedia.h>
49 #include <CoreFoundation/CoreFoundation.h>
50 #endif
52 #ifdef __sun__
53 #define _POSIX_PTHREAD_SEMANTICS 1
54 #include <sys/dkio.h>
55 #endif
56 #ifdef __linux__
57 #include <sys/ioctl.h>
58 #include <sys/param.h>
59 #include <linux/cdrom.h>
60 #include <linux/fd.h>
61 #include <linux/fs.h>
62 #include <linux/hdreg.h>
63 #include <scsi/sg.h>
64 #ifdef __s390__
65 #include <asm/dasd.h>
66 #endif
67 #ifndef FS_NOCOW_FL
68 #define FS_NOCOW_FL 0x00800000 /* Do not cow file */
69 #endif
70 #endif
71 #if defined(CONFIG_FALLOCATE_PUNCH_HOLE) || defined(CONFIG_FALLOCATE_ZERO_RANGE)
72 #include <linux/falloc.h>
73 #endif
74 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
75 #include <sys/disk.h>
76 #include <sys/cdio.h>
77 #endif
79 #ifdef __OpenBSD__
80 #include <sys/ioctl.h>
81 #include <sys/disklabel.h>
82 #include <sys/dkio.h>
83 #endif
85 #ifdef __NetBSD__
86 #include <sys/ioctl.h>
87 #include <sys/disklabel.h>
88 #include <sys/dkio.h>
89 #include <sys/disk.h>
90 #endif
92 #ifdef __DragonFly__
93 #include <sys/ioctl.h>
94 #include <sys/diskslice.h>
95 #endif
97 #ifdef CONFIG_XFS
98 #include <xfs/xfs.h>
99 #endif
101 //#define DEBUG_BLOCK
103 #ifdef DEBUG_BLOCK
104 # define DEBUG_BLOCK_PRINT 1
105 #else
106 # define DEBUG_BLOCK_PRINT 0
107 #endif
108 #define DPRINTF(fmt, ...) \
109 do { \
110 if (DEBUG_BLOCK_PRINT) { \
111 printf(fmt, ## __VA_ARGS__); \
113 } while (0)
115 /* OS X does not have O_DSYNC */
116 #ifndef O_DSYNC
117 #ifdef O_SYNC
118 #define O_DSYNC O_SYNC
119 #elif defined(O_FSYNC)
120 #define O_DSYNC O_FSYNC
121 #endif
122 #endif
124 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
125 #ifndef O_DIRECT
126 #define O_DIRECT O_DSYNC
127 #endif
129 #define FTYPE_FILE 0
130 #define FTYPE_CD 1
132 #define MAX_BLOCKSIZE 4096
134 typedef struct BDRVRawState {
135 int fd;
136 int type;
137 int open_flags;
138 size_t buf_align;
140 #ifdef CONFIG_LINUX_AIO
141 int use_aio;
142 LinuxAioState *aio_ctx;
143 #endif
144 #ifdef CONFIG_XFS
145 bool is_xfs:1;
146 #endif
147 bool has_discard:1;
148 bool has_write_zeroes:1;
149 bool discard_zeroes:1;
150 bool has_fallocate;
151 bool needs_alignment;
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
222 * Get logical block size via ioctl. On success store it in @sector_size_p.
224 static int probe_logical_blocksize(int fd, unsigned int *sector_size_p)
226 unsigned int sector_size;
227 bool success = false;
229 errno = ENOTSUP;
231 /* Try a few ioctls to get the right size */
232 #ifdef BLKSSZGET
233 if (ioctl(fd, BLKSSZGET, &sector_size) >= 0) {
234 *sector_size_p = sector_size;
235 success = true;
237 #endif
238 #ifdef DKIOCGETBLOCKSIZE
239 if (ioctl(fd, DKIOCGETBLOCKSIZE, &sector_size) >= 0) {
240 *sector_size_p = sector_size;
241 success = true;
243 #endif
244 #ifdef DIOCGSECTORSIZE
245 if (ioctl(fd, DIOCGSECTORSIZE, &sector_size) >= 0) {
246 *sector_size_p = sector_size;
247 success = true;
249 #endif
251 return success ? 0 : -errno;
255 * Get physical block size of @fd.
256 * On success, store it in @blk_size and return 0.
257 * On failure, return -errno.
259 static int probe_physical_blocksize(int fd, unsigned int *blk_size)
261 #ifdef BLKPBSZGET
262 if (ioctl(fd, BLKPBSZGET, blk_size) < 0) {
263 return -errno;
265 return 0;
266 #else
267 return -ENOTSUP;
268 #endif
271 /* Check if read is allowed with given memory buffer and length.
273 * This function is used to check O_DIRECT memory buffer and request alignment.
275 static bool raw_is_io_aligned(int fd, void *buf, size_t len)
277 ssize_t ret = pread(fd, buf, len, 0);
279 if (ret >= 0) {
280 return true;
283 #ifdef __linux__
284 /* The Linux kernel returns EINVAL for misaligned O_DIRECT reads. Ignore
285 * other errors (e.g. real I/O error), which could happen on a failed
286 * drive, since we only care about probing alignment.
288 if (errno != EINVAL) {
289 return true;
291 #endif
293 return false;
296 static void raw_probe_alignment(BlockDriverState *bs, int fd, Error **errp)
298 BDRVRawState *s = bs->opaque;
299 char *buf;
300 size_t max_align = MAX(MAX_BLOCKSIZE, getpagesize());
302 /* For SCSI generic devices the alignment is not really used.
303 With buffered I/O, we don't have any restrictions. */
304 if (bdrv_is_sg(bs) || !s->needs_alignment) {
305 bs->bl.request_alignment = 1;
306 s->buf_align = 1;
307 return;
310 bs->bl.request_alignment = 0;
311 s->buf_align = 0;
312 /* Let's try to use the logical blocksize for the alignment. */
313 if (probe_logical_blocksize(fd, &bs->bl.request_alignment) < 0) {
314 bs->bl.request_alignment = 0;
316 #ifdef CONFIG_XFS
317 if (s->is_xfs) {
318 struct dioattr da;
319 if (xfsctl(NULL, fd, XFS_IOC_DIOINFO, &da) >= 0) {
320 bs->bl.request_alignment = da.d_miniosz;
321 /* The kernel returns wrong information for d_mem */
322 /* s->buf_align = da.d_mem; */
325 #endif
327 /* If we could not get the sizes so far, we can only guess them */
328 if (!s->buf_align) {
329 size_t align;
330 buf = qemu_memalign(max_align, 2 * max_align);
331 for (align = 512; align <= max_align; align <<= 1) {
332 if (raw_is_io_aligned(fd, buf + align, max_align)) {
333 s->buf_align = align;
334 break;
337 qemu_vfree(buf);
340 if (!bs->bl.request_alignment) {
341 size_t align;
342 buf = qemu_memalign(s->buf_align, max_align);
343 for (align = 512; align <= max_align; align <<= 1) {
344 if (raw_is_io_aligned(fd, buf, align)) {
345 bs->bl.request_alignment = align;
346 break;
349 qemu_vfree(buf);
352 if (!s->buf_align || !bs->bl.request_alignment) {
353 error_setg(errp, "Could not find working O_DIRECT alignment");
354 error_append_hint(errp, "Try cache.direct=off\n");
358 static void raw_parse_flags(int bdrv_flags, int *open_flags)
360 assert(open_flags != NULL);
362 *open_flags |= O_BINARY;
363 *open_flags &= ~O_ACCMODE;
364 if (bdrv_flags & BDRV_O_RDWR) {
365 *open_flags |= O_RDWR;
366 } else {
367 *open_flags |= O_RDONLY;
370 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
371 * and O_DIRECT for no caching. */
372 if ((bdrv_flags & BDRV_O_NOCACHE)) {
373 *open_flags |= O_DIRECT;
377 static void raw_detach_aio_context(BlockDriverState *bs)
379 #ifdef CONFIG_LINUX_AIO
380 BDRVRawState *s = bs->opaque;
382 if (s->use_aio) {
383 laio_detach_aio_context(s->aio_ctx, bdrv_get_aio_context(bs));
385 #endif
388 static void raw_attach_aio_context(BlockDriverState *bs,
389 AioContext *new_context)
391 #ifdef CONFIG_LINUX_AIO
392 BDRVRawState *s = bs->opaque;
394 if (s->use_aio) {
395 laio_attach_aio_context(s->aio_ctx, new_context);
397 #endif
400 #ifdef CONFIG_LINUX_AIO
401 static int raw_set_aio(LinuxAioState **aio_ctx, int *use_aio, int bdrv_flags)
403 int ret = -1;
404 assert(aio_ctx != NULL);
405 assert(use_aio != NULL);
407 * Currently Linux do AIO only for files opened with O_DIRECT
408 * specified so check NOCACHE flag too
410 if ((bdrv_flags & (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) ==
411 (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) {
413 /* if non-NULL, laio_init() has already been run */
414 if (*aio_ctx == NULL) {
415 *aio_ctx = laio_init();
416 if (!*aio_ctx) {
417 goto error;
420 *use_aio = 1;
421 } else {
422 *use_aio = 0;
425 ret = 0;
427 error:
428 return ret;
430 #endif
432 static void raw_parse_filename(const char *filename, QDict *options,
433 Error **errp)
435 /* The filename does not have to be prefixed by the protocol name, since
436 * "file" is the default protocol; therefore, the return value of this
437 * function call can be ignored. */
438 strstart(filename, "file:", &filename);
440 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
443 static QemuOptsList raw_runtime_opts = {
444 .name = "raw",
445 .head = QTAILQ_HEAD_INITIALIZER(raw_runtime_opts.head),
446 .desc = {
448 .name = "filename",
449 .type = QEMU_OPT_STRING,
450 .help = "File name of the image",
452 { /* end of list */ }
456 static int raw_open_common(BlockDriverState *bs, QDict *options,
457 int bdrv_flags, int open_flags, Error **errp)
459 BDRVRawState *s = bs->opaque;
460 QemuOpts *opts;
461 Error *local_err = NULL;
462 const char *filename = NULL;
463 int fd, ret;
464 struct stat st;
466 opts = qemu_opts_create(&raw_runtime_opts, NULL, 0, &error_abort);
467 qemu_opts_absorb_qdict(opts, options, &local_err);
468 if (local_err) {
469 error_propagate(errp, local_err);
470 ret = -EINVAL;
471 goto fail;
474 filename = qemu_opt_get(opts, "filename");
476 ret = raw_normalize_devicepath(&filename);
477 if (ret != 0) {
478 error_setg_errno(errp, -ret, "Could not normalize device path");
479 goto fail;
482 s->open_flags = open_flags;
483 raw_parse_flags(bdrv_flags, &s->open_flags);
485 s->fd = -1;
486 fd = qemu_open(filename, s->open_flags, 0644);
487 if (fd < 0) {
488 ret = -errno;
489 if (ret == -EROFS) {
490 ret = -EACCES;
492 goto fail;
494 s->fd = fd;
496 #ifdef CONFIG_LINUX_AIO
497 if (raw_set_aio(&s->aio_ctx, &s->use_aio, bdrv_flags)) {
498 qemu_close(fd);
499 ret = -errno;
500 error_setg_errno(errp, -ret, "Could not set AIO state");
501 goto fail;
503 if (!s->use_aio && (bdrv_flags & BDRV_O_NATIVE_AIO)) {
504 error_setg(errp, "aio=native was specified, but it requires "
505 "cache.direct=on, which was not specified.");
506 ret = -EINVAL;
507 goto fail;
509 #else
510 if (bdrv_flags & BDRV_O_NATIVE_AIO) {
511 error_setg(errp, "aio=native was specified, but is not supported "
512 "in this build.");
513 ret = -EINVAL;
514 goto fail;
516 #endif /* !defined(CONFIG_LINUX_AIO) */
518 s->has_discard = true;
519 s->has_write_zeroes = true;
520 bs->supported_zero_flags = BDRV_REQ_MAY_UNMAP;
521 if ((bs->open_flags & BDRV_O_NOCACHE) != 0) {
522 s->needs_alignment = true;
525 if (fstat(s->fd, &st) < 0) {
526 ret = -errno;
527 error_setg_errno(errp, errno, "Could not stat file");
528 goto fail;
530 if (S_ISREG(st.st_mode)) {
531 s->discard_zeroes = true;
532 s->has_fallocate = true;
534 if (S_ISBLK(st.st_mode)) {
535 #ifdef BLKDISCARDZEROES
536 unsigned int arg;
537 if (ioctl(s->fd, BLKDISCARDZEROES, &arg) == 0 && arg) {
538 s->discard_zeroes = true;
540 #endif
541 #ifdef __linux__
542 /* On Linux 3.10, BLKDISCARD leaves stale data in the page cache. Do
543 * not rely on the contents of discarded blocks unless using O_DIRECT.
544 * Same for BLKZEROOUT.
546 if (!(bs->open_flags & BDRV_O_NOCACHE)) {
547 s->discard_zeroes = false;
548 s->has_write_zeroes = false;
550 #endif
552 #ifdef __FreeBSD__
553 if (S_ISCHR(st.st_mode)) {
555 * The file is a char device (disk), which on FreeBSD isn't behind
556 * a pager, so force all requests to be aligned. This is needed
557 * so QEMU makes sure all IO operations on the device are aligned
558 * to sector size, or else FreeBSD will reject them with EINVAL.
560 s->needs_alignment = true;
562 #endif
564 #ifdef CONFIG_XFS
565 if (platform_test_xfs_fd(s->fd)) {
566 s->is_xfs = true;
568 #endif
570 raw_attach_aio_context(bs, bdrv_get_aio_context(bs));
572 ret = 0;
573 fail:
574 if (filename && (bdrv_flags & BDRV_O_TEMPORARY)) {
575 unlink(filename);
577 qemu_opts_del(opts);
578 return ret;
581 static int raw_open(BlockDriverState *bs, QDict *options, int flags,
582 Error **errp)
584 BDRVRawState *s = bs->opaque;
586 s->type = FTYPE_FILE;
587 return raw_open_common(bs, options, flags, 0, errp);
590 static int raw_reopen_prepare(BDRVReopenState *state,
591 BlockReopenQueue *queue, Error **errp)
593 BDRVRawState *s;
594 BDRVRawReopenState *raw_s;
595 int ret = 0;
596 Error *local_err = NULL;
598 assert(state != NULL);
599 assert(state->bs != NULL);
601 s = state->bs->opaque;
603 state->opaque = g_new0(BDRVRawReopenState, 1);
604 raw_s = state->opaque;
606 #ifdef CONFIG_LINUX_AIO
607 raw_s->use_aio = s->use_aio;
609 /* we can use s->aio_ctx instead of a copy, because the use_aio flag is
610 * valid in the 'false' condition even if aio_ctx is set, and raw_set_aio()
611 * won't override aio_ctx if aio_ctx is non-NULL */
612 if (raw_set_aio(&s->aio_ctx, &raw_s->use_aio, state->flags)) {
613 error_setg(errp, "Could not set AIO state");
614 return -1;
616 #endif
618 if (s->type == FTYPE_CD) {
619 raw_s->open_flags |= O_NONBLOCK;
622 raw_parse_flags(state->flags, &raw_s->open_flags);
624 raw_s->fd = -1;
626 int fcntl_flags = O_APPEND | O_NONBLOCK;
627 #ifdef O_NOATIME
628 fcntl_flags |= O_NOATIME;
629 #endif
631 #ifdef O_ASYNC
632 /* Not all operating systems have O_ASYNC, and those that don't
633 * will not let us track the state into raw_s->open_flags (typically
634 * you achieve the same effect with an ioctl, for example I_SETSIG
635 * on Solaris). But we do not use O_ASYNC, so that's fine.
637 assert((s->open_flags & O_ASYNC) == 0);
638 #endif
640 if ((raw_s->open_flags & ~fcntl_flags) == (s->open_flags & ~fcntl_flags)) {
641 /* dup the original fd */
642 raw_s->fd = qemu_dup(s->fd);
643 if (raw_s->fd >= 0) {
644 ret = fcntl_setfl(raw_s->fd, raw_s->open_flags);
645 if (ret) {
646 qemu_close(raw_s->fd);
647 raw_s->fd = -1;
652 /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
653 if (raw_s->fd == -1) {
654 const char *normalized_filename = state->bs->filename;
655 ret = raw_normalize_devicepath(&normalized_filename);
656 if (ret < 0) {
657 error_setg_errno(errp, -ret, "Could not normalize device path");
658 } else {
659 assert(!(raw_s->open_flags & O_CREAT));
660 raw_s->fd = qemu_open(normalized_filename, raw_s->open_flags);
661 if (raw_s->fd == -1) {
662 error_setg_errno(errp, errno, "Could not reopen file");
663 ret = -1;
668 /* Fail already reopen_prepare() if we can't get a working O_DIRECT
669 * alignment with the new fd. */
670 if (raw_s->fd != -1) {
671 raw_probe_alignment(state->bs, raw_s->fd, &local_err);
672 if (local_err) {
673 qemu_close(raw_s->fd);
674 raw_s->fd = -1;
675 error_propagate(errp, local_err);
676 ret = -EINVAL;
680 return ret;
683 static void raw_reopen_commit(BDRVReopenState *state)
685 BDRVRawReopenState *raw_s = state->opaque;
686 BDRVRawState *s = state->bs->opaque;
688 s->open_flags = raw_s->open_flags;
690 qemu_close(s->fd);
691 s->fd = raw_s->fd;
692 #ifdef CONFIG_LINUX_AIO
693 s->use_aio = raw_s->use_aio;
694 #endif
696 g_free(state->opaque);
697 state->opaque = NULL;
701 static void raw_reopen_abort(BDRVReopenState *state)
703 BDRVRawReopenState *raw_s = state->opaque;
705 /* nothing to do if NULL, we didn't get far enough */
706 if (raw_s == NULL) {
707 return;
710 if (raw_s->fd >= 0) {
711 qemu_close(raw_s->fd);
712 raw_s->fd = -1;
714 g_free(state->opaque);
715 state->opaque = NULL;
718 static int hdev_get_max_transfer_length(int fd)
720 #ifdef BLKSECTGET
721 int max_sectors = 0;
722 if (ioctl(fd, BLKSECTGET, &max_sectors) == 0) {
723 return max_sectors;
724 } else {
725 return -errno;
727 #else
728 return -ENOSYS;
729 #endif
732 static void raw_refresh_limits(BlockDriverState *bs, Error **errp)
734 BDRVRawState *s = bs->opaque;
735 struct stat st;
737 if (!fstat(s->fd, &st)) {
738 if (S_ISBLK(st.st_mode)) {
739 int ret = hdev_get_max_transfer_length(s->fd);
740 if (ret > 0 && ret <= BDRV_REQUEST_MAX_SECTORS) {
741 bs->bl.max_transfer = pow2floor(ret << BDRV_SECTOR_BITS);
746 raw_probe_alignment(bs, s->fd, errp);
747 bs->bl.min_mem_alignment = s->buf_align;
748 bs->bl.opt_mem_alignment = MAX(s->buf_align, getpagesize());
751 static int check_for_dasd(int fd)
753 #ifdef BIODASDINFO2
754 struct dasd_information2_t info = {0};
756 return ioctl(fd, BIODASDINFO2, &info);
757 #else
758 return -1;
759 #endif
763 * Try to get @bs's logical and physical block size.
764 * On success, store them in @bsz and return zero.
765 * On failure, return negative errno.
767 static int hdev_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
769 BDRVRawState *s = bs->opaque;
770 int ret;
772 /* If DASD, get blocksizes */
773 if (check_for_dasd(s->fd) < 0) {
774 return -ENOTSUP;
776 ret = probe_logical_blocksize(s->fd, &bsz->log);
777 if (ret < 0) {
778 return ret;
780 return probe_physical_blocksize(s->fd, &bsz->phys);
784 * Try to get @bs's geometry: cyls, heads, sectors.
785 * On success, store them in @geo and return 0.
786 * On failure return -errno.
787 * (Allows block driver to assign default geometry values that guest sees)
789 #ifdef __linux__
790 static int hdev_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
792 BDRVRawState *s = bs->opaque;
793 struct hd_geometry ioctl_geo = {0};
795 /* If DASD, get its geometry */
796 if (check_for_dasd(s->fd) < 0) {
797 return -ENOTSUP;
799 if (ioctl(s->fd, HDIO_GETGEO, &ioctl_geo) < 0) {
800 return -errno;
802 /* HDIO_GETGEO may return success even though geo contains zeros
803 (e.g. certain multipath setups) */
804 if (!ioctl_geo.heads || !ioctl_geo.sectors || !ioctl_geo.cylinders) {
805 return -ENOTSUP;
807 /* Do not return a geometry for partition */
808 if (ioctl_geo.start != 0) {
809 return -ENOTSUP;
811 geo->heads = ioctl_geo.heads;
812 geo->sectors = ioctl_geo.sectors;
813 geo->cylinders = ioctl_geo.cylinders;
815 return 0;
817 #else /* __linux__ */
818 static int hdev_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
820 return -ENOTSUP;
822 #endif
824 static ssize_t handle_aiocb_ioctl(RawPosixAIOData *aiocb)
826 int ret;
828 ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf);
829 if (ret == -1) {
830 return -errno;
833 return 0;
836 static ssize_t handle_aiocb_flush(RawPosixAIOData *aiocb)
838 int ret;
840 ret = qemu_fdatasync(aiocb->aio_fildes);
841 if (ret == -1) {
842 return -errno;
844 return 0;
847 #ifdef CONFIG_PREADV
849 static bool preadv_present = true;
851 static ssize_t
852 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
854 return preadv(fd, iov, nr_iov, offset);
857 static ssize_t
858 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
860 return pwritev(fd, iov, nr_iov, offset);
863 #else
865 static bool preadv_present = false;
867 static ssize_t
868 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
870 return -ENOSYS;
873 static ssize_t
874 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
876 return -ENOSYS;
879 #endif
881 static ssize_t handle_aiocb_rw_vector(RawPosixAIOData *aiocb)
883 ssize_t len;
885 do {
886 if (aiocb->aio_type & QEMU_AIO_WRITE)
887 len = qemu_pwritev(aiocb->aio_fildes,
888 aiocb->aio_iov,
889 aiocb->aio_niov,
890 aiocb->aio_offset);
891 else
892 len = qemu_preadv(aiocb->aio_fildes,
893 aiocb->aio_iov,
894 aiocb->aio_niov,
895 aiocb->aio_offset);
896 } while (len == -1 && errno == EINTR);
898 if (len == -1) {
899 return -errno;
901 return len;
905 * Read/writes the data to/from a given linear buffer.
907 * Returns the number of bytes handles or -errno in case of an error. Short
908 * reads are only returned if the end of the file is reached.
910 static ssize_t handle_aiocb_rw_linear(RawPosixAIOData *aiocb, char *buf)
912 ssize_t offset = 0;
913 ssize_t len;
915 while (offset < aiocb->aio_nbytes) {
916 if (aiocb->aio_type & QEMU_AIO_WRITE) {
917 len = pwrite(aiocb->aio_fildes,
918 (const char *)buf + offset,
919 aiocb->aio_nbytes - offset,
920 aiocb->aio_offset + offset);
921 } else {
922 len = pread(aiocb->aio_fildes,
923 buf + offset,
924 aiocb->aio_nbytes - offset,
925 aiocb->aio_offset + offset);
927 if (len == -1 && errno == EINTR) {
928 continue;
929 } else if (len == -1 && errno == EINVAL &&
930 (aiocb->bs->open_flags & BDRV_O_NOCACHE) &&
931 !(aiocb->aio_type & QEMU_AIO_WRITE) &&
932 offset > 0) {
933 /* O_DIRECT pread() may fail with EINVAL when offset is unaligned
934 * after a short read. Assume that O_DIRECT short reads only occur
935 * at EOF. Therefore this is a short read, not an I/O error.
937 break;
938 } else if (len == -1) {
939 offset = -errno;
940 break;
941 } else if (len == 0) {
942 break;
944 offset += len;
947 return offset;
950 static ssize_t handle_aiocb_rw(RawPosixAIOData *aiocb)
952 ssize_t nbytes;
953 char *buf;
955 if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) {
957 * If there is just a single buffer, and it is properly aligned
958 * we can just use plain pread/pwrite without any problems.
960 if (aiocb->aio_niov == 1) {
961 return handle_aiocb_rw_linear(aiocb, aiocb->aio_iov->iov_base);
964 * We have more than one iovec, and all are properly aligned.
966 * Try preadv/pwritev first and fall back to linearizing the
967 * buffer if it's not supported.
969 if (preadv_present) {
970 nbytes = handle_aiocb_rw_vector(aiocb);
971 if (nbytes == aiocb->aio_nbytes ||
972 (nbytes < 0 && nbytes != -ENOSYS)) {
973 return nbytes;
975 preadv_present = false;
979 * XXX(hch): short read/write. no easy way to handle the reminder
980 * using these interfaces. For now retry using plain
981 * pread/pwrite?
986 * Ok, we have to do it the hard way, copy all segments into
987 * a single aligned buffer.
989 buf = qemu_try_blockalign(aiocb->bs, aiocb->aio_nbytes);
990 if (buf == NULL) {
991 return -ENOMEM;
994 if (aiocb->aio_type & QEMU_AIO_WRITE) {
995 char *p = buf;
996 int i;
998 for (i = 0; i < aiocb->aio_niov; ++i) {
999 memcpy(p, aiocb->aio_iov[i].iov_base, aiocb->aio_iov[i].iov_len);
1000 p += aiocb->aio_iov[i].iov_len;
1002 assert(p - buf == aiocb->aio_nbytes);
1005 nbytes = handle_aiocb_rw_linear(aiocb, buf);
1006 if (!(aiocb->aio_type & QEMU_AIO_WRITE)) {
1007 char *p = buf;
1008 size_t count = aiocb->aio_nbytes, copy;
1009 int i;
1011 for (i = 0; i < aiocb->aio_niov && count; ++i) {
1012 copy = count;
1013 if (copy > aiocb->aio_iov[i].iov_len) {
1014 copy = aiocb->aio_iov[i].iov_len;
1016 memcpy(aiocb->aio_iov[i].iov_base, p, copy);
1017 assert(count >= copy);
1018 p += copy;
1019 count -= copy;
1021 assert(count == 0);
1023 qemu_vfree(buf);
1025 return nbytes;
1028 #ifdef CONFIG_XFS
1029 static int xfs_write_zeroes(BDRVRawState *s, int64_t offset, uint64_t bytes)
1031 struct xfs_flock64 fl;
1032 int err;
1034 memset(&fl, 0, sizeof(fl));
1035 fl.l_whence = SEEK_SET;
1036 fl.l_start = offset;
1037 fl.l_len = bytes;
1039 if (xfsctl(NULL, s->fd, XFS_IOC_ZERO_RANGE, &fl) < 0) {
1040 err = errno;
1041 DPRINTF("cannot write zero range (%s)\n", strerror(errno));
1042 return -err;
1045 return 0;
1048 static int xfs_discard(BDRVRawState *s, int64_t offset, uint64_t bytes)
1050 struct xfs_flock64 fl;
1051 int err;
1053 memset(&fl, 0, sizeof(fl));
1054 fl.l_whence = SEEK_SET;
1055 fl.l_start = offset;
1056 fl.l_len = bytes;
1058 if (xfsctl(NULL, s->fd, XFS_IOC_UNRESVSP64, &fl) < 0) {
1059 err = errno;
1060 DPRINTF("cannot punch hole (%s)\n", strerror(errno));
1061 return -err;
1064 return 0;
1066 #endif
1068 static int translate_err(int err)
1070 if (err == -ENODEV || err == -ENOSYS || err == -EOPNOTSUPP ||
1071 err == -ENOTTY) {
1072 err = -ENOTSUP;
1074 return err;
1077 #ifdef CONFIG_FALLOCATE
1078 static int do_fallocate(int fd, int mode, off_t offset, off_t len)
1080 do {
1081 if (fallocate(fd, mode, offset, len) == 0) {
1082 return 0;
1084 } while (errno == EINTR);
1085 return translate_err(-errno);
1087 #endif
1089 static ssize_t handle_aiocb_write_zeroes_block(RawPosixAIOData *aiocb)
1091 int ret = -ENOTSUP;
1092 BDRVRawState *s = aiocb->bs->opaque;
1094 if (!s->has_write_zeroes) {
1095 return -ENOTSUP;
1098 #ifdef BLKZEROOUT
1099 do {
1100 uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
1101 if (ioctl(aiocb->aio_fildes, BLKZEROOUT, range) == 0) {
1102 return 0;
1104 } while (errno == EINTR);
1106 ret = translate_err(-errno);
1107 #endif
1109 if (ret == -ENOTSUP) {
1110 s->has_write_zeroes = false;
1112 return ret;
1115 static ssize_t handle_aiocb_write_zeroes(RawPosixAIOData *aiocb)
1117 #if defined(CONFIG_FALLOCATE) || defined(CONFIG_XFS)
1118 BDRVRawState *s = aiocb->bs->opaque;
1119 #endif
1121 if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
1122 return handle_aiocb_write_zeroes_block(aiocb);
1125 #ifdef CONFIG_XFS
1126 if (s->is_xfs) {
1127 return xfs_write_zeroes(s, aiocb->aio_offset, aiocb->aio_nbytes);
1129 #endif
1131 #ifdef CONFIG_FALLOCATE_ZERO_RANGE
1132 if (s->has_write_zeroes) {
1133 int ret = do_fallocate(s->fd, FALLOC_FL_ZERO_RANGE,
1134 aiocb->aio_offset, aiocb->aio_nbytes);
1135 if (ret == 0 || ret != -ENOTSUP) {
1136 return ret;
1138 s->has_write_zeroes = false;
1140 #endif
1142 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1143 if (s->has_discard && s->has_fallocate) {
1144 int ret = do_fallocate(s->fd,
1145 FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
1146 aiocb->aio_offset, aiocb->aio_nbytes);
1147 if (ret == 0) {
1148 ret = do_fallocate(s->fd, 0, aiocb->aio_offset, aiocb->aio_nbytes);
1149 if (ret == 0 || ret != -ENOTSUP) {
1150 return ret;
1152 s->has_fallocate = false;
1153 } else if (ret != -ENOTSUP) {
1154 return ret;
1155 } else {
1156 s->has_discard = false;
1159 #endif
1161 #ifdef CONFIG_FALLOCATE
1162 if (s->has_fallocate && aiocb->aio_offset >= bdrv_getlength(aiocb->bs)) {
1163 int ret = do_fallocate(s->fd, 0, aiocb->aio_offset, aiocb->aio_nbytes);
1164 if (ret == 0 || ret != -ENOTSUP) {
1165 return ret;
1167 s->has_fallocate = false;
1169 #endif
1171 return -ENOTSUP;
1174 static ssize_t handle_aiocb_discard(RawPosixAIOData *aiocb)
1176 int ret = -EOPNOTSUPP;
1177 BDRVRawState *s = aiocb->bs->opaque;
1179 if (!s->has_discard) {
1180 return -ENOTSUP;
1183 if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
1184 #ifdef BLKDISCARD
1185 do {
1186 uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
1187 if (ioctl(aiocb->aio_fildes, BLKDISCARD, range) == 0) {
1188 return 0;
1190 } while (errno == EINTR);
1192 ret = -errno;
1193 #endif
1194 } else {
1195 #ifdef CONFIG_XFS
1196 if (s->is_xfs) {
1197 return xfs_discard(s, aiocb->aio_offset, aiocb->aio_nbytes);
1199 #endif
1201 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1202 ret = do_fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
1203 aiocb->aio_offset, aiocb->aio_nbytes);
1204 #endif
1207 ret = translate_err(ret);
1208 if (ret == -ENOTSUP) {
1209 s->has_discard = false;
1211 return ret;
1214 static int aio_worker(void *arg)
1216 RawPosixAIOData *aiocb = arg;
1217 ssize_t ret = 0;
1219 switch (aiocb->aio_type & QEMU_AIO_TYPE_MASK) {
1220 case QEMU_AIO_READ:
1221 ret = handle_aiocb_rw(aiocb);
1222 if (ret >= 0 && ret < aiocb->aio_nbytes) {
1223 iov_memset(aiocb->aio_iov, aiocb->aio_niov, ret,
1224 0, aiocb->aio_nbytes - ret);
1226 ret = aiocb->aio_nbytes;
1228 if (ret == aiocb->aio_nbytes) {
1229 ret = 0;
1230 } else if (ret >= 0 && ret < aiocb->aio_nbytes) {
1231 ret = -EINVAL;
1233 break;
1234 case QEMU_AIO_WRITE:
1235 ret = handle_aiocb_rw(aiocb);
1236 if (ret == aiocb->aio_nbytes) {
1237 ret = 0;
1238 } else if (ret >= 0 && ret < aiocb->aio_nbytes) {
1239 ret = -EINVAL;
1241 break;
1242 case QEMU_AIO_FLUSH:
1243 ret = handle_aiocb_flush(aiocb);
1244 break;
1245 case QEMU_AIO_IOCTL:
1246 ret = handle_aiocb_ioctl(aiocb);
1247 break;
1248 case QEMU_AIO_DISCARD:
1249 ret = handle_aiocb_discard(aiocb);
1250 break;
1251 case QEMU_AIO_WRITE_ZEROES:
1252 ret = handle_aiocb_write_zeroes(aiocb);
1253 break;
1254 default:
1255 fprintf(stderr, "invalid aio request (0x%x)\n", aiocb->aio_type);
1256 ret = -EINVAL;
1257 break;
1260 g_free(aiocb);
1261 return ret;
1264 static int paio_submit_co(BlockDriverState *bs, int fd,
1265 int64_t offset, QEMUIOVector *qiov,
1266 int count, int type)
1268 RawPosixAIOData *acb = g_new(RawPosixAIOData, 1);
1269 ThreadPool *pool;
1271 acb->bs = bs;
1272 acb->aio_type = type;
1273 acb->aio_fildes = fd;
1275 acb->aio_nbytes = count;
1276 acb->aio_offset = offset;
1278 if (qiov) {
1279 acb->aio_iov = qiov->iov;
1280 acb->aio_niov = qiov->niov;
1281 assert(qiov->size == count);
1284 trace_paio_submit_co(offset, count, type);
1285 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
1286 return thread_pool_submit_co(pool, aio_worker, acb);
1289 static BlockAIOCB *paio_submit(BlockDriverState *bs, int fd,
1290 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1291 BlockCompletionFunc *cb, void *opaque, int type)
1293 RawPosixAIOData *acb = g_new(RawPosixAIOData, 1);
1294 ThreadPool *pool;
1296 acb->bs = bs;
1297 acb->aio_type = type;
1298 acb->aio_fildes = fd;
1300 acb->aio_nbytes = nb_sectors * BDRV_SECTOR_SIZE;
1301 acb->aio_offset = sector_num * BDRV_SECTOR_SIZE;
1303 if (qiov) {
1304 acb->aio_iov = qiov->iov;
1305 acb->aio_niov = qiov->niov;
1306 assert(qiov->size == acb->aio_nbytes);
1309 trace_paio_submit(acb, opaque, sector_num, nb_sectors, type);
1310 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
1311 return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
1314 static int coroutine_fn raw_co_prw(BlockDriverState *bs, uint64_t offset,
1315 uint64_t bytes, QEMUIOVector *qiov, int type)
1317 BDRVRawState *s = bs->opaque;
1319 if (fd_open(bs) < 0)
1320 return -EIO;
1323 * Check if the underlying device requires requests to be aligned,
1324 * and if the request we are trying to submit is aligned or not.
1325 * If this is the case tell the low-level driver that it needs
1326 * to copy the buffer.
1328 if (s->needs_alignment) {
1329 if (!bdrv_qiov_is_aligned(bs, qiov)) {
1330 type |= QEMU_AIO_MISALIGNED;
1331 #ifdef CONFIG_LINUX_AIO
1332 } else if (s->use_aio) {
1333 assert(qiov->size == bytes);
1334 return laio_co_submit(bs, s->aio_ctx, s->fd, offset, qiov, type);
1335 #endif
1339 return paio_submit_co(bs, s->fd, offset, qiov, bytes, type);
1342 static int coroutine_fn raw_co_preadv(BlockDriverState *bs, uint64_t offset,
1343 uint64_t bytes, QEMUIOVector *qiov,
1344 int flags)
1346 return raw_co_prw(bs, offset, bytes, qiov, QEMU_AIO_READ);
1349 static int coroutine_fn raw_co_pwritev(BlockDriverState *bs, uint64_t offset,
1350 uint64_t bytes, QEMUIOVector *qiov,
1351 int flags)
1353 assert(flags == 0);
1354 return raw_co_prw(bs, offset, bytes, qiov, QEMU_AIO_WRITE);
1357 static void raw_aio_plug(BlockDriverState *bs)
1359 #ifdef CONFIG_LINUX_AIO
1360 BDRVRawState *s = bs->opaque;
1361 if (s->use_aio) {
1362 laio_io_plug(bs, s->aio_ctx);
1364 #endif
1367 static void raw_aio_unplug(BlockDriverState *bs)
1369 #ifdef CONFIG_LINUX_AIO
1370 BDRVRawState *s = bs->opaque;
1371 if (s->use_aio) {
1372 laio_io_unplug(bs, s->aio_ctx);
1374 #endif
1377 static BlockAIOCB *raw_aio_flush(BlockDriverState *bs,
1378 BlockCompletionFunc *cb, void *opaque)
1380 BDRVRawState *s = bs->opaque;
1382 if (fd_open(bs) < 0)
1383 return NULL;
1385 return paio_submit(bs, s->fd, 0, NULL, 0, cb, opaque, QEMU_AIO_FLUSH);
1388 static void raw_close(BlockDriverState *bs)
1390 BDRVRawState *s = bs->opaque;
1392 raw_detach_aio_context(bs);
1394 #ifdef CONFIG_LINUX_AIO
1395 if (s->use_aio) {
1396 laio_cleanup(s->aio_ctx);
1398 #endif
1399 if (s->fd >= 0) {
1400 qemu_close(s->fd);
1401 s->fd = -1;
1405 static int raw_truncate(BlockDriverState *bs, int64_t offset)
1407 BDRVRawState *s = bs->opaque;
1408 struct stat st;
1410 if (fstat(s->fd, &st)) {
1411 return -errno;
1414 if (S_ISREG(st.st_mode)) {
1415 if (ftruncate(s->fd, offset) < 0) {
1416 return -errno;
1418 } else if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1419 if (offset > raw_getlength(bs)) {
1420 return -EINVAL;
1422 } else {
1423 return -ENOTSUP;
1426 return 0;
1429 #ifdef __OpenBSD__
1430 static int64_t raw_getlength(BlockDriverState *bs)
1432 BDRVRawState *s = bs->opaque;
1433 int fd = s->fd;
1434 struct stat st;
1436 if (fstat(fd, &st))
1437 return -errno;
1438 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1439 struct disklabel dl;
1441 if (ioctl(fd, DIOCGDINFO, &dl))
1442 return -errno;
1443 return (uint64_t)dl.d_secsize *
1444 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
1445 } else
1446 return st.st_size;
1448 #elif defined(__NetBSD__)
1449 static int64_t raw_getlength(BlockDriverState *bs)
1451 BDRVRawState *s = bs->opaque;
1452 int fd = s->fd;
1453 struct stat st;
1455 if (fstat(fd, &st))
1456 return -errno;
1457 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1458 struct dkwedge_info dkw;
1460 if (ioctl(fd, DIOCGWEDGEINFO, &dkw) != -1) {
1461 return dkw.dkw_size * 512;
1462 } else {
1463 struct disklabel dl;
1465 if (ioctl(fd, DIOCGDINFO, &dl))
1466 return -errno;
1467 return (uint64_t)dl.d_secsize *
1468 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
1470 } else
1471 return st.st_size;
1473 #elif defined(__sun__)
1474 static int64_t raw_getlength(BlockDriverState *bs)
1476 BDRVRawState *s = bs->opaque;
1477 struct dk_minfo minfo;
1478 int ret;
1479 int64_t size;
1481 ret = fd_open(bs);
1482 if (ret < 0) {
1483 return ret;
1487 * Use the DKIOCGMEDIAINFO ioctl to read the size.
1489 ret = ioctl(s->fd, DKIOCGMEDIAINFO, &minfo);
1490 if (ret != -1) {
1491 return minfo.dki_lbsize * minfo.dki_capacity;
1495 * There are reports that lseek on some devices fails, but
1496 * irc discussion said that contingency on contingency was overkill.
1498 size = lseek(s->fd, 0, SEEK_END);
1499 if (size < 0) {
1500 return -errno;
1502 return size;
1504 #elif defined(CONFIG_BSD)
1505 static int64_t raw_getlength(BlockDriverState *bs)
1507 BDRVRawState *s = bs->opaque;
1508 int fd = s->fd;
1509 int64_t size;
1510 struct stat sb;
1511 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1512 int reopened = 0;
1513 #endif
1514 int ret;
1516 ret = fd_open(bs);
1517 if (ret < 0)
1518 return ret;
1520 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1521 again:
1522 #endif
1523 if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
1524 #ifdef DIOCGMEDIASIZE
1525 if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
1526 #elif defined(DIOCGPART)
1528 struct partinfo pi;
1529 if (ioctl(fd, DIOCGPART, &pi) == 0)
1530 size = pi.media_size;
1531 else
1532 size = 0;
1534 if (size == 0)
1535 #endif
1536 #if defined(__APPLE__) && defined(__MACH__)
1538 uint64_t sectors = 0;
1539 uint32_t sector_size = 0;
1541 if (ioctl(fd, DKIOCGETBLOCKCOUNT, &sectors) == 0
1542 && ioctl(fd, DKIOCGETBLOCKSIZE, &sector_size) == 0) {
1543 size = sectors * sector_size;
1544 } else {
1545 size = lseek(fd, 0LL, SEEK_END);
1546 if (size < 0) {
1547 return -errno;
1551 #else
1552 size = lseek(fd, 0LL, SEEK_END);
1553 if (size < 0) {
1554 return -errno;
1556 #endif
1557 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1558 switch(s->type) {
1559 case FTYPE_CD:
1560 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
1561 if (size == 2048LL * (unsigned)-1)
1562 size = 0;
1563 /* XXX no disc? maybe we need to reopen... */
1564 if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
1565 reopened = 1;
1566 goto again;
1569 #endif
1570 } else {
1571 size = lseek(fd, 0, SEEK_END);
1572 if (size < 0) {
1573 return -errno;
1576 return size;
1578 #else
1579 static int64_t raw_getlength(BlockDriverState *bs)
1581 BDRVRawState *s = bs->opaque;
1582 int ret;
1583 int64_t size;
1585 ret = fd_open(bs);
1586 if (ret < 0) {
1587 return ret;
1590 size = lseek(s->fd, 0, SEEK_END);
1591 if (size < 0) {
1592 return -errno;
1594 return size;
1596 #endif
1598 static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
1600 struct stat st;
1601 BDRVRawState *s = bs->opaque;
1603 if (fstat(s->fd, &st) < 0) {
1604 return -errno;
1606 return (int64_t)st.st_blocks * 512;
1609 static int raw_create(const char *filename, QemuOpts *opts, Error **errp)
1611 int fd;
1612 int result = 0;
1613 int64_t total_size = 0;
1614 bool nocow = false;
1615 PreallocMode prealloc;
1616 char *buf = NULL;
1617 Error *local_err = NULL;
1619 strstart(filename, "file:", &filename);
1621 /* Read out options */
1622 total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
1623 BDRV_SECTOR_SIZE);
1624 nocow = qemu_opt_get_bool(opts, BLOCK_OPT_NOCOW, false);
1625 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
1626 prealloc = qapi_enum_parse(PreallocMode_lookup, buf,
1627 PREALLOC_MODE__MAX, PREALLOC_MODE_OFF,
1628 &local_err);
1629 g_free(buf);
1630 if (local_err) {
1631 error_propagate(errp, local_err);
1632 result = -EINVAL;
1633 goto out;
1636 fd = qemu_open(filename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
1637 0644);
1638 if (fd < 0) {
1639 result = -errno;
1640 error_setg_errno(errp, -result, "Could not create file");
1641 goto out;
1644 if (nocow) {
1645 #ifdef __linux__
1646 /* Set NOCOW flag to solve performance issue on fs like btrfs.
1647 * This is an optimisation. The FS_IOC_SETFLAGS ioctl return value
1648 * will be ignored since any failure of this operation should not
1649 * block the left work.
1651 int attr;
1652 if (ioctl(fd, FS_IOC_GETFLAGS, &attr) == 0) {
1653 attr |= FS_NOCOW_FL;
1654 ioctl(fd, FS_IOC_SETFLAGS, &attr);
1656 #endif
1659 if (ftruncate(fd, total_size) != 0) {
1660 result = -errno;
1661 error_setg_errno(errp, -result, "Could not resize file");
1662 goto out_close;
1665 switch (prealloc) {
1666 #ifdef CONFIG_POSIX_FALLOCATE
1667 case PREALLOC_MODE_FALLOC:
1668 /* posix_fallocate() doesn't set errno. */
1669 result = -posix_fallocate(fd, 0, total_size);
1670 if (result != 0) {
1671 error_setg_errno(errp, -result,
1672 "Could not preallocate data for the new file");
1674 break;
1675 #endif
1676 case PREALLOC_MODE_FULL:
1678 int64_t num = 0, left = total_size;
1679 buf = g_malloc0(65536);
1681 while (left > 0) {
1682 num = MIN(left, 65536);
1683 result = write(fd, buf, num);
1684 if (result < 0) {
1685 result = -errno;
1686 error_setg_errno(errp, -result,
1687 "Could not write to the new file");
1688 break;
1690 left -= result;
1692 if (result >= 0) {
1693 result = fsync(fd);
1694 if (result < 0) {
1695 result = -errno;
1696 error_setg_errno(errp, -result,
1697 "Could not flush new file to disk");
1700 g_free(buf);
1701 break;
1703 case PREALLOC_MODE_OFF:
1704 break;
1705 default:
1706 result = -EINVAL;
1707 error_setg(errp, "Unsupported preallocation mode: %s",
1708 PreallocMode_lookup[prealloc]);
1709 break;
1712 out_close:
1713 if (qemu_close(fd) != 0 && result == 0) {
1714 result = -errno;
1715 error_setg_errno(errp, -result, "Could not close the new file");
1717 out:
1718 return result;
1722 * Find allocation range in @bs around offset @start.
1723 * May change underlying file descriptor's file offset.
1724 * If @start is not in a hole, store @start in @data, and the
1725 * beginning of the next hole in @hole, and return 0.
1726 * If @start is in a non-trailing hole, store @start in @hole and the
1727 * beginning of the next non-hole in @data, and return 0.
1728 * If @start is in a trailing hole or beyond EOF, return -ENXIO.
1729 * If we can't find out, return a negative errno other than -ENXIO.
1731 static int find_allocation(BlockDriverState *bs, off_t start,
1732 off_t *data, off_t *hole)
1734 #if defined SEEK_HOLE && defined SEEK_DATA
1735 BDRVRawState *s = bs->opaque;
1736 off_t offs;
1739 * SEEK_DATA cases:
1740 * D1. offs == start: start is in data
1741 * D2. offs > start: start is in a hole, next data at offs
1742 * D3. offs < 0, errno = ENXIO: either start is in a trailing hole
1743 * or start is beyond EOF
1744 * If the latter happens, the file has been truncated behind
1745 * our back since we opened it. All bets are off then.
1746 * Treating like a trailing hole is simplest.
1747 * D4. offs < 0, errno != ENXIO: we learned nothing
1749 offs = lseek(s->fd, start, SEEK_DATA);
1750 if (offs < 0) {
1751 return -errno; /* D3 or D4 */
1753 assert(offs >= start);
1755 if (offs > start) {
1756 /* D2: in hole, next data at offs */
1757 *hole = start;
1758 *data = offs;
1759 return 0;
1762 /* D1: in data, end not yet known */
1765 * SEEK_HOLE cases:
1766 * H1. offs == start: start is in a hole
1767 * If this happens here, a hole has been dug behind our back
1768 * since the previous lseek().
1769 * H2. offs > start: either start is in data, next hole at offs,
1770 * or start is in trailing hole, EOF at offs
1771 * Linux treats trailing holes like any other hole: offs ==
1772 * start. Solaris seeks to EOF instead: offs > start (blech).
1773 * If that happens here, a hole has been dug behind our back
1774 * since the previous lseek().
1775 * H3. offs < 0, errno = ENXIO: start is beyond EOF
1776 * If this happens, the file has been truncated behind our
1777 * back since we opened it. Treat it like a trailing hole.
1778 * H4. offs < 0, errno != ENXIO: we learned nothing
1779 * Pretend we know nothing at all, i.e. "forget" about D1.
1781 offs = lseek(s->fd, start, SEEK_HOLE);
1782 if (offs < 0) {
1783 return -errno; /* D1 and (H3 or H4) */
1785 assert(offs >= start);
1787 if (offs > start) {
1789 * D1 and H2: either in data, next hole at offs, or it was in
1790 * data but is now in a trailing hole. In the latter case,
1791 * all bets are off. Treating it as if it there was data all
1792 * the way to EOF is safe, so simply do that.
1794 *data = start;
1795 *hole = offs;
1796 return 0;
1799 /* D1 and H1 */
1800 return -EBUSY;
1801 #else
1802 return -ENOTSUP;
1803 #endif
1807 * Returns the allocation status of the specified sectors.
1809 * If 'sector_num' is beyond the end of the disk image the return value is 0
1810 * and 'pnum' is set to 0.
1812 * 'pnum' is set to the number of sectors (including and immediately following
1813 * the specified sector) that are known to be in the same
1814 * allocated/unallocated state.
1816 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
1817 * beyond the end of the disk image it will be clamped.
1819 static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
1820 int64_t sector_num,
1821 int nb_sectors, int *pnum,
1822 BlockDriverState **file)
1824 off_t start, data = 0, hole = 0;
1825 int64_t total_size;
1826 int ret;
1828 ret = fd_open(bs);
1829 if (ret < 0) {
1830 return ret;
1833 start = sector_num * BDRV_SECTOR_SIZE;
1834 total_size = bdrv_getlength(bs);
1835 if (total_size < 0) {
1836 return total_size;
1837 } else if (start >= total_size) {
1838 *pnum = 0;
1839 return 0;
1840 } else if (start + nb_sectors * BDRV_SECTOR_SIZE > total_size) {
1841 nb_sectors = DIV_ROUND_UP(total_size - start, BDRV_SECTOR_SIZE);
1844 ret = find_allocation(bs, start, &data, &hole);
1845 if (ret == -ENXIO) {
1846 /* Trailing hole */
1847 *pnum = nb_sectors;
1848 ret = BDRV_BLOCK_ZERO;
1849 } else if (ret < 0) {
1850 /* No info available, so pretend there are no holes */
1851 *pnum = nb_sectors;
1852 ret = BDRV_BLOCK_DATA;
1853 } else if (data == start) {
1854 /* On a data extent, compute sectors to the end of the extent,
1855 * possibly including a partial sector at EOF. */
1856 *pnum = MIN(nb_sectors, DIV_ROUND_UP(hole - start, BDRV_SECTOR_SIZE));
1857 ret = BDRV_BLOCK_DATA;
1858 } else {
1859 /* On a hole, compute sectors to the beginning of the next extent. */
1860 assert(hole == start);
1861 *pnum = MIN(nb_sectors, (data - start) / BDRV_SECTOR_SIZE);
1862 ret = BDRV_BLOCK_ZERO;
1864 *file = bs;
1865 return ret | BDRV_BLOCK_OFFSET_VALID | start;
1868 static coroutine_fn BlockAIOCB *raw_aio_discard(BlockDriverState *bs,
1869 int64_t sector_num, int nb_sectors,
1870 BlockCompletionFunc *cb, void *opaque)
1872 BDRVRawState *s = bs->opaque;
1874 return paio_submit(bs, s->fd, sector_num, NULL, nb_sectors,
1875 cb, opaque, QEMU_AIO_DISCARD);
1878 static int coroutine_fn raw_co_pwrite_zeroes(
1879 BlockDriverState *bs, int64_t offset,
1880 int count, BdrvRequestFlags flags)
1882 BDRVRawState *s = bs->opaque;
1884 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
1885 return paio_submit_co(bs, s->fd, offset, NULL, count,
1886 QEMU_AIO_WRITE_ZEROES);
1887 } else if (s->discard_zeroes) {
1888 return paio_submit_co(bs, s->fd, offset, NULL, count,
1889 QEMU_AIO_DISCARD);
1891 return -ENOTSUP;
1894 static int raw_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1896 BDRVRawState *s = bs->opaque;
1898 bdi->unallocated_blocks_are_zero = s->discard_zeroes;
1899 bdi->can_write_zeroes_with_unmap = s->discard_zeroes;
1900 return 0;
1903 static QemuOptsList raw_create_opts = {
1904 .name = "raw-create-opts",
1905 .head = QTAILQ_HEAD_INITIALIZER(raw_create_opts.head),
1906 .desc = {
1908 .name = BLOCK_OPT_SIZE,
1909 .type = QEMU_OPT_SIZE,
1910 .help = "Virtual disk size"
1913 .name = BLOCK_OPT_NOCOW,
1914 .type = QEMU_OPT_BOOL,
1915 .help = "Turn off copy-on-write (valid only on btrfs)"
1918 .name = BLOCK_OPT_PREALLOC,
1919 .type = QEMU_OPT_STRING,
1920 .help = "Preallocation mode (allowed values: off, falloc, full)"
1922 { /* end of list */ }
1926 BlockDriver bdrv_file = {
1927 .format_name = "file",
1928 .protocol_name = "file",
1929 .instance_size = sizeof(BDRVRawState),
1930 .bdrv_needs_filename = true,
1931 .bdrv_probe = NULL, /* no probe for protocols */
1932 .bdrv_parse_filename = raw_parse_filename,
1933 .bdrv_file_open = raw_open,
1934 .bdrv_reopen_prepare = raw_reopen_prepare,
1935 .bdrv_reopen_commit = raw_reopen_commit,
1936 .bdrv_reopen_abort = raw_reopen_abort,
1937 .bdrv_close = raw_close,
1938 .bdrv_create = raw_create,
1939 .bdrv_has_zero_init = bdrv_has_zero_init_1,
1940 .bdrv_co_get_block_status = raw_co_get_block_status,
1941 .bdrv_co_pwrite_zeroes = raw_co_pwrite_zeroes,
1943 .bdrv_co_preadv = raw_co_preadv,
1944 .bdrv_co_pwritev = raw_co_pwritev,
1945 .bdrv_aio_flush = raw_aio_flush,
1946 .bdrv_aio_discard = raw_aio_discard,
1947 .bdrv_refresh_limits = raw_refresh_limits,
1948 .bdrv_io_plug = raw_aio_plug,
1949 .bdrv_io_unplug = raw_aio_unplug,
1951 .bdrv_truncate = raw_truncate,
1952 .bdrv_getlength = raw_getlength,
1953 .bdrv_get_info = raw_get_info,
1954 .bdrv_get_allocated_file_size
1955 = raw_get_allocated_file_size,
1957 .bdrv_detach_aio_context = raw_detach_aio_context,
1958 .bdrv_attach_aio_context = raw_attach_aio_context,
1960 .create_opts = &raw_create_opts,
1963 /***********************************************/
1964 /* host device */
1966 #if defined(__APPLE__) && defined(__MACH__)
1967 static kern_return_t GetBSDPath(io_iterator_t mediaIterator, char *bsdPath,
1968 CFIndex maxPathSize, int flags);
1969 static char *FindEjectableOpticalMedia(io_iterator_t *mediaIterator)
1971 kern_return_t kernResult = KERN_FAILURE;
1972 mach_port_t masterPort;
1973 CFMutableDictionaryRef classesToMatch;
1974 const char *matching_array[] = {kIODVDMediaClass, kIOCDMediaClass};
1975 char *mediaType = NULL;
1977 kernResult = IOMasterPort( MACH_PORT_NULL, &masterPort );
1978 if ( KERN_SUCCESS != kernResult ) {
1979 printf( "IOMasterPort returned %d\n", kernResult );
1982 int index;
1983 for (index = 0; index < ARRAY_SIZE(matching_array); index++) {
1984 classesToMatch = IOServiceMatching(matching_array[index]);
1985 if (classesToMatch == NULL) {
1986 error_report("IOServiceMatching returned NULL for %s",
1987 matching_array[index]);
1988 continue;
1990 CFDictionarySetValue(classesToMatch, CFSTR(kIOMediaEjectableKey),
1991 kCFBooleanTrue);
1992 kernResult = IOServiceGetMatchingServices(masterPort, classesToMatch,
1993 mediaIterator);
1994 if (kernResult != KERN_SUCCESS) {
1995 error_report("Note: IOServiceGetMatchingServices returned %d",
1996 kernResult);
1997 continue;
2000 /* If a match was found, leave the loop */
2001 if (*mediaIterator != 0) {
2002 DPRINTF("Matching using %s\n", matching_array[index]);
2003 mediaType = g_strdup(matching_array[index]);
2004 break;
2007 return mediaType;
2010 kern_return_t GetBSDPath(io_iterator_t mediaIterator, char *bsdPath,
2011 CFIndex maxPathSize, int flags)
2013 io_object_t nextMedia;
2014 kern_return_t kernResult = KERN_FAILURE;
2015 *bsdPath = '\0';
2016 nextMedia = IOIteratorNext( mediaIterator );
2017 if ( nextMedia )
2019 CFTypeRef bsdPathAsCFString;
2020 bsdPathAsCFString = IORegistryEntryCreateCFProperty( nextMedia, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 );
2021 if ( bsdPathAsCFString ) {
2022 size_t devPathLength;
2023 strcpy( bsdPath, _PATH_DEV );
2024 if (flags & BDRV_O_NOCACHE) {
2025 strcat(bsdPath, "r");
2027 devPathLength = strlen( bsdPath );
2028 if ( CFStringGetCString( bsdPathAsCFString, bsdPath + devPathLength, maxPathSize - devPathLength, kCFStringEncodingASCII ) ) {
2029 kernResult = KERN_SUCCESS;
2031 CFRelease( bsdPathAsCFString );
2033 IOObjectRelease( nextMedia );
2036 return kernResult;
2039 /* Sets up a real cdrom for use in QEMU */
2040 static bool setup_cdrom(char *bsd_path, Error **errp)
2042 int index, num_of_test_partitions = 2, fd;
2043 char test_partition[MAXPATHLEN];
2044 bool partition_found = false;
2046 /* look for a working partition */
2047 for (index = 0; index < num_of_test_partitions; index++) {
2048 snprintf(test_partition, sizeof(test_partition), "%ss%d", bsd_path,
2049 index);
2050 fd = qemu_open(test_partition, O_RDONLY | O_BINARY | O_LARGEFILE);
2051 if (fd >= 0) {
2052 partition_found = true;
2053 qemu_close(fd);
2054 break;
2058 /* if a working partition on the device was not found */
2059 if (partition_found == false) {
2060 error_setg(errp, "Failed to find a working partition on disc");
2061 } else {
2062 DPRINTF("Using %s as optical disc\n", test_partition);
2063 pstrcpy(bsd_path, MAXPATHLEN, test_partition);
2065 return partition_found;
2068 /* Prints directions on mounting and unmounting a device */
2069 static void print_unmounting_directions(const char *file_name)
2071 error_report("If device %s is mounted on the desktop, unmount"
2072 " it first before using it in QEMU", file_name);
2073 error_report("Command to unmount device: diskutil unmountDisk %s",
2074 file_name);
2075 error_report("Command to mount device: diskutil mountDisk %s", file_name);
2078 #endif /* defined(__APPLE__) && defined(__MACH__) */
2080 static int hdev_probe_device(const char *filename)
2082 struct stat st;
2084 /* allow a dedicated CD-ROM driver to match with a higher priority */
2085 if (strstart(filename, "/dev/cdrom", NULL))
2086 return 50;
2088 if (stat(filename, &st) >= 0 &&
2089 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
2090 return 100;
2093 return 0;
2096 static int check_hdev_writable(BDRVRawState *s)
2098 #if defined(BLKROGET)
2099 /* Linux block devices can be configured "read-only" using blockdev(8).
2100 * This is independent of device node permissions and therefore open(2)
2101 * with O_RDWR succeeds. Actual writes fail with EPERM.
2103 * bdrv_open() is supposed to fail if the disk is read-only. Explicitly
2104 * check for read-only block devices so that Linux block devices behave
2105 * properly.
2107 struct stat st;
2108 int readonly = 0;
2110 if (fstat(s->fd, &st)) {
2111 return -errno;
2114 if (!S_ISBLK(st.st_mode)) {
2115 return 0;
2118 if (ioctl(s->fd, BLKROGET, &readonly) < 0) {
2119 return -errno;
2122 if (readonly) {
2123 return -EACCES;
2125 #endif /* defined(BLKROGET) */
2126 return 0;
2129 static void hdev_parse_filename(const char *filename, QDict *options,
2130 Error **errp)
2132 /* The prefix is optional, just as for "file". */
2133 strstart(filename, "host_device:", &filename);
2135 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
2138 static bool hdev_is_sg(BlockDriverState *bs)
2141 #if defined(__linux__)
2143 struct stat st;
2144 struct sg_scsi_id scsiid;
2145 int sg_version;
2147 if (stat(bs->filename, &st) >= 0 && S_ISCHR(st.st_mode) &&
2148 !bdrv_ioctl(bs, SG_GET_VERSION_NUM, &sg_version) &&
2149 !bdrv_ioctl(bs, SG_GET_SCSI_ID, &scsiid)) {
2150 DPRINTF("SG device found: type=%d, version=%d\n",
2151 scsiid.scsi_type, sg_version);
2152 return true;
2155 #endif
2157 return false;
2160 static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
2161 Error **errp)
2163 BDRVRawState *s = bs->opaque;
2164 Error *local_err = NULL;
2165 int ret;
2167 #if defined(__APPLE__) && defined(__MACH__)
2168 const char *filename = qdict_get_str(options, "filename");
2169 char bsd_path[MAXPATHLEN] = "";
2170 bool error_occurred = false;
2172 /* If using a real cdrom */
2173 if (strcmp(filename, "/dev/cdrom") == 0) {
2174 char *mediaType = NULL;
2175 kern_return_t ret_val;
2176 io_iterator_t mediaIterator = 0;
2178 mediaType = FindEjectableOpticalMedia(&mediaIterator);
2179 if (mediaType == NULL) {
2180 error_setg(errp, "Please make sure your CD/DVD is in the optical"
2181 " drive");
2182 error_occurred = true;
2183 goto hdev_open_Mac_error;
2186 ret_val = GetBSDPath(mediaIterator, bsd_path, sizeof(bsd_path), flags);
2187 if (ret_val != KERN_SUCCESS) {
2188 error_setg(errp, "Could not get BSD path for optical drive");
2189 error_occurred = true;
2190 goto hdev_open_Mac_error;
2193 /* If a real optical drive was not found */
2194 if (bsd_path[0] == '\0') {
2195 error_setg(errp, "Failed to obtain bsd path for optical drive");
2196 error_occurred = true;
2197 goto hdev_open_Mac_error;
2200 /* If using a cdrom disc and finding a partition on the disc failed */
2201 if (strncmp(mediaType, kIOCDMediaClass, 9) == 0 &&
2202 setup_cdrom(bsd_path, errp) == false) {
2203 print_unmounting_directions(bsd_path);
2204 error_occurred = true;
2205 goto hdev_open_Mac_error;
2208 qdict_put(options, "filename", qstring_from_str(bsd_path));
2210 hdev_open_Mac_error:
2211 g_free(mediaType);
2212 if (mediaIterator) {
2213 IOObjectRelease(mediaIterator);
2215 if (error_occurred) {
2216 return -ENOENT;
2219 #endif /* defined(__APPLE__) && defined(__MACH__) */
2221 s->type = FTYPE_FILE;
2223 ret = raw_open_common(bs, options, flags, 0, &local_err);
2224 if (ret < 0) {
2225 error_propagate(errp, local_err);
2226 #if defined(__APPLE__) && defined(__MACH__)
2227 if (*bsd_path) {
2228 filename = bsd_path;
2230 /* if a physical device experienced an error while being opened */
2231 if (strncmp(filename, "/dev/", 5) == 0) {
2232 print_unmounting_directions(filename);
2234 #endif /* defined(__APPLE__) && defined(__MACH__) */
2235 return ret;
2238 /* Since this does ioctl the device must be already opened */
2239 bs->sg = hdev_is_sg(bs);
2241 if (flags & BDRV_O_RDWR) {
2242 ret = check_hdev_writable(s);
2243 if (ret < 0) {
2244 raw_close(bs);
2245 error_setg_errno(errp, -ret, "The device is not writable");
2246 return ret;
2250 return ret;
2253 #if defined(__linux__)
2255 static BlockAIOCB *hdev_aio_ioctl(BlockDriverState *bs,
2256 unsigned long int req, void *buf,
2257 BlockCompletionFunc *cb, void *opaque)
2259 BDRVRawState *s = bs->opaque;
2260 RawPosixAIOData *acb;
2261 ThreadPool *pool;
2263 if (fd_open(bs) < 0)
2264 return NULL;
2266 acb = g_new(RawPosixAIOData, 1);
2267 acb->bs = bs;
2268 acb->aio_type = QEMU_AIO_IOCTL;
2269 acb->aio_fildes = s->fd;
2270 acb->aio_offset = 0;
2271 acb->aio_ioctl_buf = buf;
2272 acb->aio_ioctl_cmd = req;
2273 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
2274 return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
2276 #endif /* linux */
2278 static int fd_open(BlockDriverState *bs)
2280 BDRVRawState *s = bs->opaque;
2282 /* this is just to ensure s->fd is sane (its called by io ops) */
2283 if (s->fd >= 0)
2284 return 0;
2285 return -EIO;
2288 static coroutine_fn BlockAIOCB *hdev_aio_discard(BlockDriverState *bs,
2289 int64_t sector_num, int nb_sectors,
2290 BlockCompletionFunc *cb, void *opaque)
2292 BDRVRawState *s = bs->opaque;
2294 if (fd_open(bs) < 0) {
2295 return NULL;
2297 return paio_submit(bs, s->fd, sector_num, NULL, nb_sectors,
2298 cb, opaque, QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
2301 static coroutine_fn int hdev_co_pwrite_zeroes(BlockDriverState *bs,
2302 int64_t offset, int count, BdrvRequestFlags flags)
2304 BDRVRawState *s = bs->opaque;
2305 int rc;
2307 rc = fd_open(bs);
2308 if (rc < 0) {
2309 return rc;
2311 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
2312 return paio_submit_co(bs, s->fd, offset, NULL, count,
2313 QEMU_AIO_WRITE_ZEROES|QEMU_AIO_BLKDEV);
2314 } else if (s->discard_zeroes) {
2315 return paio_submit_co(bs, s->fd, offset, NULL, count,
2316 QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
2318 return -ENOTSUP;
2321 static int hdev_create(const char *filename, QemuOpts *opts,
2322 Error **errp)
2324 int fd;
2325 int ret = 0;
2326 struct stat stat_buf;
2327 int64_t total_size = 0;
2328 bool has_prefix;
2330 /* This function is used by both protocol block drivers and therefore either
2331 * of these prefixes may be given.
2332 * The return value has to be stored somewhere, otherwise this is an error
2333 * due to -Werror=unused-value. */
2334 has_prefix =
2335 strstart(filename, "host_device:", &filename) ||
2336 strstart(filename, "host_cdrom:" , &filename);
2338 (void)has_prefix;
2340 ret = raw_normalize_devicepath(&filename);
2341 if (ret < 0) {
2342 error_setg_errno(errp, -ret, "Could not normalize device path");
2343 return ret;
2346 /* Read out options */
2347 total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
2348 BDRV_SECTOR_SIZE);
2350 fd = qemu_open(filename, O_WRONLY | O_BINARY);
2351 if (fd < 0) {
2352 ret = -errno;
2353 error_setg_errno(errp, -ret, "Could not open device");
2354 return ret;
2357 if (fstat(fd, &stat_buf) < 0) {
2358 ret = -errno;
2359 error_setg_errno(errp, -ret, "Could not stat device");
2360 } else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode)) {
2361 error_setg(errp,
2362 "The given file is neither a block nor a character device");
2363 ret = -ENODEV;
2364 } else if (lseek(fd, 0, SEEK_END) < total_size) {
2365 error_setg(errp, "Device is too small");
2366 ret = -ENOSPC;
2369 qemu_close(fd);
2370 return ret;
2373 static BlockDriver bdrv_host_device = {
2374 .format_name = "host_device",
2375 .protocol_name = "host_device",
2376 .instance_size = sizeof(BDRVRawState),
2377 .bdrv_needs_filename = true,
2378 .bdrv_probe_device = hdev_probe_device,
2379 .bdrv_parse_filename = hdev_parse_filename,
2380 .bdrv_file_open = hdev_open,
2381 .bdrv_close = raw_close,
2382 .bdrv_reopen_prepare = raw_reopen_prepare,
2383 .bdrv_reopen_commit = raw_reopen_commit,
2384 .bdrv_reopen_abort = raw_reopen_abort,
2385 .bdrv_create = hdev_create,
2386 .create_opts = &raw_create_opts,
2387 .bdrv_co_pwrite_zeroes = hdev_co_pwrite_zeroes,
2389 .bdrv_co_preadv = raw_co_preadv,
2390 .bdrv_co_pwritev = raw_co_pwritev,
2391 .bdrv_aio_flush = raw_aio_flush,
2392 .bdrv_aio_discard = hdev_aio_discard,
2393 .bdrv_refresh_limits = raw_refresh_limits,
2394 .bdrv_io_plug = raw_aio_plug,
2395 .bdrv_io_unplug = raw_aio_unplug,
2397 .bdrv_truncate = raw_truncate,
2398 .bdrv_getlength = raw_getlength,
2399 .bdrv_get_info = raw_get_info,
2400 .bdrv_get_allocated_file_size
2401 = raw_get_allocated_file_size,
2402 .bdrv_probe_blocksizes = hdev_probe_blocksizes,
2403 .bdrv_probe_geometry = hdev_probe_geometry,
2405 .bdrv_detach_aio_context = raw_detach_aio_context,
2406 .bdrv_attach_aio_context = raw_attach_aio_context,
2408 /* generic scsi device */
2409 #ifdef __linux__
2410 .bdrv_aio_ioctl = hdev_aio_ioctl,
2411 #endif
2414 #if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2415 static void cdrom_parse_filename(const char *filename, QDict *options,
2416 Error **errp)
2418 /* The prefix is optional, just as for "file". */
2419 strstart(filename, "host_cdrom:", &filename);
2421 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
2423 #endif
2425 #ifdef __linux__
2426 static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
2427 Error **errp)
2429 BDRVRawState *s = bs->opaque;
2431 s->type = FTYPE_CD;
2433 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
2434 return raw_open_common(bs, options, flags, O_NONBLOCK, errp);
2437 static int cdrom_probe_device(const char *filename)
2439 int fd, ret;
2440 int prio = 0;
2441 struct stat st;
2443 fd = qemu_open(filename, O_RDONLY | O_NONBLOCK);
2444 if (fd < 0) {
2445 goto out;
2447 ret = fstat(fd, &st);
2448 if (ret == -1 || !S_ISBLK(st.st_mode)) {
2449 goto outc;
2452 /* Attempt to detect via a CDROM specific ioctl */
2453 ret = ioctl(fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
2454 if (ret >= 0)
2455 prio = 100;
2457 outc:
2458 qemu_close(fd);
2459 out:
2460 return prio;
2463 static bool cdrom_is_inserted(BlockDriverState *bs)
2465 BDRVRawState *s = bs->opaque;
2466 int ret;
2468 ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
2469 return ret == CDS_DISC_OK;
2472 static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
2474 BDRVRawState *s = bs->opaque;
2476 if (eject_flag) {
2477 if (ioctl(s->fd, CDROMEJECT, NULL) < 0)
2478 perror("CDROMEJECT");
2479 } else {
2480 if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0)
2481 perror("CDROMEJECT");
2485 static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
2487 BDRVRawState *s = bs->opaque;
2489 if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
2491 * Note: an error can happen if the distribution automatically
2492 * mounts the CD-ROM
2494 /* perror("CDROM_LOCKDOOR"); */
2498 static BlockDriver bdrv_host_cdrom = {
2499 .format_name = "host_cdrom",
2500 .protocol_name = "host_cdrom",
2501 .instance_size = sizeof(BDRVRawState),
2502 .bdrv_needs_filename = true,
2503 .bdrv_probe_device = cdrom_probe_device,
2504 .bdrv_parse_filename = cdrom_parse_filename,
2505 .bdrv_file_open = cdrom_open,
2506 .bdrv_close = raw_close,
2507 .bdrv_reopen_prepare = raw_reopen_prepare,
2508 .bdrv_reopen_commit = raw_reopen_commit,
2509 .bdrv_reopen_abort = raw_reopen_abort,
2510 .bdrv_create = hdev_create,
2511 .create_opts = &raw_create_opts,
2514 .bdrv_co_preadv = raw_co_preadv,
2515 .bdrv_co_pwritev = raw_co_pwritev,
2516 .bdrv_aio_flush = raw_aio_flush,
2517 .bdrv_refresh_limits = raw_refresh_limits,
2518 .bdrv_io_plug = raw_aio_plug,
2519 .bdrv_io_unplug = raw_aio_unplug,
2521 .bdrv_truncate = raw_truncate,
2522 .bdrv_getlength = raw_getlength,
2523 .has_variable_length = true,
2524 .bdrv_get_allocated_file_size
2525 = raw_get_allocated_file_size,
2527 .bdrv_detach_aio_context = raw_detach_aio_context,
2528 .bdrv_attach_aio_context = raw_attach_aio_context,
2530 /* removable device support */
2531 .bdrv_is_inserted = cdrom_is_inserted,
2532 .bdrv_eject = cdrom_eject,
2533 .bdrv_lock_medium = cdrom_lock_medium,
2535 /* generic scsi device */
2536 .bdrv_aio_ioctl = hdev_aio_ioctl,
2538 #endif /* __linux__ */
2540 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
2541 static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
2542 Error **errp)
2544 BDRVRawState *s = bs->opaque;
2545 Error *local_err = NULL;
2546 int ret;
2548 s->type = FTYPE_CD;
2550 ret = raw_open_common(bs, options, flags, 0, &local_err);
2551 if (ret) {
2552 error_propagate(errp, local_err);
2553 return ret;
2556 /* make sure the door isn't locked at this time */
2557 ioctl(s->fd, CDIOCALLOW);
2558 return 0;
2561 static int cdrom_probe_device(const char *filename)
2563 if (strstart(filename, "/dev/cd", NULL) ||
2564 strstart(filename, "/dev/acd", NULL))
2565 return 100;
2566 return 0;
2569 static int cdrom_reopen(BlockDriverState *bs)
2571 BDRVRawState *s = bs->opaque;
2572 int fd;
2575 * Force reread of possibly changed/newly loaded disc,
2576 * FreeBSD seems to not notice sometimes...
2578 if (s->fd >= 0)
2579 qemu_close(s->fd);
2580 fd = qemu_open(bs->filename, s->open_flags, 0644);
2581 if (fd < 0) {
2582 s->fd = -1;
2583 return -EIO;
2585 s->fd = fd;
2587 /* make sure the door isn't locked at this time */
2588 ioctl(s->fd, CDIOCALLOW);
2589 return 0;
2592 static bool cdrom_is_inserted(BlockDriverState *bs)
2594 return raw_getlength(bs) > 0;
2597 static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
2599 BDRVRawState *s = bs->opaque;
2601 if (s->fd < 0)
2602 return;
2604 (void) ioctl(s->fd, CDIOCALLOW);
2606 if (eject_flag) {
2607 if (ioctl(s->fd, CDIOCEJECT) < 0)
2608 perror("CDIOCEJECT");
2609 } else {
2610 if (ioctl(s->fd, CDIOCCLOSE) < 0)
2611 perror("CDIOCCLOSE");
2614 cdrom_reopen(bs);
2617 static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
2619 BDRVRawState *s = bs->opaque;
2621 if (s->fd < 0)
2622 return;
2623 if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
2625 * Note: an error can happen if the distribution automatically
2626 * mounts the CD-ROM
2628 /* perror("CDROM_LOCKDOOR"); */
2632 static BlockDriver bdrv_host_cdrom = {
2633 .format_name = "host_cdrom",
2634 .protocol_name = "host_cdrom",
2635 .instance_size = sizeof(BDRVRawState),
2636 .bdrv_needs_filename = true,
2637 .bdrv_probe_device = cdrom_probe_device,
2638 .bdrv_parse_filename = cdrom_parse_filename,
2639 .bdrv_file_open = cdrom_open,
2640 .bdrv_close = raw_close,
2641 .bdrv_reopen_prepare = raw_reopen_prepare,
2642 .bdrv_reopen_commit = raw_reopen_commit,
2643 .bdrv_reopen_abort = raw_reopen_abort,
2644 .bdrv_create = hdev_create,
2645 .create_opts = &raw_create_opts,
2647 .bdrv_co_preadv = raw_co_preadv,
2648 .bdrv_co_pwritev = raw_co_pwritev,
2649 .bdrv_aio_flush = raw_aio_flush,
2650 .bdrv_refresh_limits = raw_refresh_limits,
2651 .bdrv_io_plug = raw_aio_plug,
2652 .bdrv_io_unplug = raw_aio_unplug,
2654 .bdrv_truncate = raw_truncate,
2655 .bdrv_getlength = raw_getlength,
2656 .has_variable_length = true,
2657 .bdrv_get_allocated_file_size
2658 = raw_get_allocated_file_size,
2660 .bdrv_detach_aio_context = raw_detach_aio_context,
2661 .bdrv_attach_aio_context = raw_attach_aio_context,
2663 /* removable device support */
2664 .bdrv_is_inserted = cdrom_is_inserted,
2665 .bdrv_eject = cdrom_eject,
2666 .bdrv_lock_medium = cdrom_lock_medium,
2668 #endif /* __FreeBSD__ */
2670 static void bdrv_file_init(void)
2673 * Register all the drivers. Note that order is important, the driver
2674 * registered last will get probed first.
2676 bdrv_register(&bdrv_file);
2677 bdrv_register(&bdrv_host_device);
2678 #ifdef __linux__
2679 bdrv_register(&bdrv_host_cdrom);
2680 #endif
2681 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2682 bdrv_register(&bdrv_host_cdrom);
2683 #endif
2686 block_init(bdrv_file_init);