2 * Block driver for RAW files (posix)
4 * Copyright (c) 2006 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu/osdep.h"
25 #include "qapi/error.h"
26 #include "qemu/cutils.h"
27 #include "qemu/error-report.h"
28 #include "block/block_int.h"
29 #include "qemu/module.h"
31 #include "block/thread-pool.h"
33 #include "block/raw-aio.h"
34 #include "qapi/util.h"
35 #include "qapi/qmp/qstring.h"
37 #if defined(__APPLE__) && (__MACH__)
39 #include <sys/param.h>
40 #include <IOKit/IOKitLib.h>
41 #include <IOKit/IOBSD.h>
42 #include <IOKit/storage/IOMediaBSDClient.h>
43 #include <IOKit/storage/IOMedia.h>
44 #include <IOKit/storage/IOCDMedia.h>
45 //#include <IOKit/storage/IOCDTypes.h>
46 #include <IOKit/storage/IODVDMedia.h>
47 #include <CoreFoundation/CoreFoundation.h>
51 #define _POSIX_PTHREAD_SEMANTICS 1
55 #include <sys/ioctl.h>
56 #include <sys/param.h>
57 #include <linux/cdrom.h>
60 #include <linux/hdreg.h>
66 #define FS_NOCOW_FL 0x00800000 /* Do not cow file */
69 #if defined(CONFIG_FALLOCATE_PUNCH_HOLE) || defined(CONFIG_FALLOCATE_ZERO_RANGE)
70 #include <linux/falloc.h>
72 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
78 #include <sys/ioctl.h>
79 #include <sys/disklabel.h>
84 #include <sys/ioctl.h>
85 #include <sys/disklabel.h>
91 #include <sys/ioctl.h>
92 #include <sys/diskslice.h>
102 # define DEBUG_BLOCK_PRINT 1
104 # define DEBUG_BLOCK_PRINT 0
106 #define DPRINTF(fmt, ...) \
108 if (DEBUG_BLOCK_PRINT) { \
109 printf(fmt, ## __VA_ARGS__); \
113 /* OS X does not have O_DSYNC */
116 #define O_DSYNC O_SYNC
117 #elif defined(O_FSYNC)
118 #define O_DSYNC O_FSYNC
122 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
124 #define O_DIRECT O_DSYNC
130 #define MAX_BLOCKSIZE 4096
132 /* Posix file locking bytes. Libvirt takes byte 0, we start from higher bytes,
133 * leaving a few more bytes for its future use. */
134 #define RAW_LOCK_PERM_BASE 100
135 #define RAW_LOCK_SHARED_BASE 200
137 typedef struct BDRVRawState
{
145 /* The current permissions. */
147 uint64_t shared_perm
;
153 bool has_write_zeroes
:1;
154 bool discard_zeroes
:1;
155 bool use_linux_aio
:1;
156 bool page_cache_inconsistent
:1;
158 bool needs_alignment
;
161 typedef struct BDRVRawReopenState
{
164 } BDRVRawReopenState
;
166 static int fd_open(BlockDriverState
*bs
);
167 static int64_t raw_getlength(BlockDriverState
*bs
);
169 typedef struct RawPosixAIOData
{
170 BlockDriverState
*bs
;
173 struct iovec
*aio_iov
;
178 #define aio_ioctl_cmd aio_nbytes /* for QEMU_AIO_IOCTL */
183 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
184 static int cdrom_reopen(BlockDriverState
*bs
);
187 #if defined(__NetBSD__)
188 static int raw_normalize_devicepath(const char **filename
)
190 static char namebuf
[PATH_MAX
];
191 const char *dp
, *fname
;
195 dp
= strrchr(fname
, '/');
196 if (lstat(fname
, &sb
) < 0) {
197 fprintf(stderr
, "%s: stat failed: %s\n",
198 fname
, strerror(errno
));
202 if (!S_ISBLK(sb
.st_mode
)) {
207 snprintf(namebuf
, PATH_MAX
, "r%s", fname
);
209 snprintf(namebuf
, PATH_MAX
, "%.*s/r%s",
210 (int)(dp
- fname
), fname
, dp
+ 1);
212 fprintf(stderr
, "%s is a block device", fname
);
214 fprintf(stderr
, ", using %s\n", *filename
);
219 static int raw_normalize_devicepath(const char **filename
)
226 * Get logical block size via ioctl. On success store it in @sector_size_p.
228 static int probe_logical_blocksize(int fd
, unsigned int *sector_size_p
)
230 unsigned int sector_size
;
231 bool success
= false;
235 static const unsigned long ioctl_list
[] = {
239 #ifdef DKIOCGETBLOCKSIZE
242 #ifdef DIOCGSECTORSIZE
247 /* Try a few ioctls to get the right size */
248 for (i
= 0; i
< (int)ARRAY_SIZE(ioctl_list
); i
++) {
249 if (ioctl(fd
, ioctl_list
[i
], §or_size
) >= 0) {
250 *sector_size_p
= sector_size
;
255 return success
? 0 : -errno
;
259 * Get physical block size of @fd.
260 * On success, store it in @blk_size and return 0.
261 * On failure, return -errno.
263 static int probe_physical_blocksize(int fd
, unsigned int *blk_size
)
266 if (ioctl(fd
, BLKPBSZGET
, blk_size
) < 0) {
275 /* Check if read is allowed with given memory buffer and length.
277 * This function is used to check O_DIRECT memory buffer and request alignment.
279 static bool raw_is_io_aligned(int fd
, void *buf
, size_t len
)
281 ssize_t ret
= pread(fd
, buf
, len
, 0);
288 /* The Linux kernel returns EINVAL for misaligned O_DIRECT reads. Ignore
289 * other errors (e.g. real I/O error), which could happen on a failed
290 * drive, since we only care about probing alignment.
292 if (errno
!= EINVAL
) {
300 static void raw_probe_alignment(BlockDriverState
*bs
, int fd
, Error
**errp
)
302 BDRVRawState
*s
= bs
->opaque
;
304 size_t max_align
= MAX(MAX_BLOCKSIZE
, getpagesize());
306 /* For SCSI generic devices the alignment is not really used.
307 With buffered I/O, we don't have any restrictions. */
308 if (bdrv_is_sg(bs
) || !s
->needs_alignment
) {
309 bs
->bl
.request_alignment
= 1;
314 bs
->bl
.request_alignment
= 0;
316 /* Let's try to use the logical blocksize for the alignment. */
317 if (probe_logical_blocksize(fd
, &bs
->bl
.request_alignment
) < 0) {
318 bs
->bl
.request_alignment
= 0;
323 if (xfsctl(NULL
, fd
, XFS_IOC_DIOINFO
, &da
) >= 0) {
324 bs
->bl
.request_alignment
= da
.d_miniosz
;
325 /* The kernel returns wrong information for d_mem */
326 /* s->buf_align = da.d_mem; */
331 /* If we could not get the sizes so far, we can only guess them */
334 buf
= qemu_memalign(max_align
, 2 * max_align
);
335 for (align
= 512; align
<= max_align
; align
<<= 1) {
336 if (raw_is_io_aligned(fd
, buf
+ align
, max_align
)) {
337 s
->buf_align
= align
;
344 if (!bs
->bl
.request_alignment
) {
346 buf
= qemu_memalign(s
->buf_align
, max_align
);
347 for (align
= 512; align
<= max_align
; align
<<= 1) {
348 if (raw_is_io_aligned(fd
, buf
, align
)) {
349 bs
->bl
.request_alignment
= align
;
356 if (!s
->buf_align
|| !bs
->bl
.request_alignment
) {
357 error_setg(errp
, "Could not find working O_DIRECT alignment");
358 error_append_hint(errp
, "Try cache.direct=off\n");
362 static void raw_parse_flags(int bdrv_flags
, int *open_flags
)
364 assert(open_flags
!= NULL
);
366 *open_flags
|= O_BINARY
;
367 *open_flags
&= ~O_ACCMODE
;
368 if (bdrv_flags
& BDRV_O_RDWR
) {
369 *open_flags
|= O_RDWR
;
371 *open_flags
|= O_RDONLY
;
374 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
375 * and O_DIRECT for no caching. */
376 if ((bdrv_flags
& BDRV_O_NOCACHE
)) {
377 *open_flags
|= O_DIRECT
;
381 static void raw_parse_filename(const char *filename
, QDict
*options
,
384 /* The filename does not have to be prefixed by the protocol name, since
385 * "file" is the default protocol; therefore, the return value of this
386 * function call can be ignored. */
387 strstart(filename
, "file:", &filename
);
389 qdict_put_str(options
, "filename", filename
);
392 static QemuOptsList raw_runtime_opts
= {
394 .head
= QTAILQ_HEAD_INITIALIZER(raw_runtime_opts
.head
),
398 .type
= QEMU_OPT_STRING
,
399 .help
= "File name of the image",
403 .type
= QEMU_OPT_STRING
,
404 .help
= "host AIO implementation (threads, native)",
408 .type
= QEMU_OPT_STRING
,
409 .help
= "file locking mode (on/off/auto, default: auto)",
411 { /* end of list */ }
415 static int raw_open_common(BlockDriverState
*bs
, QDict
*options
,
416 int bdrv_flags
, int open_flags
, Error
**errp
)
418 BDRVRawState
*s
= bs
->opaque
;
420 Error
*local_err
= NULL
;
421 const char *filename
= NULL
;
422 BlockdevAioOptions aio
, aio_default
;
427 opts
= qemu_opts_create(&raw_runtime_opts
, NULL
, 0, &error_abort
);
428 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
430 error_propagate(errp
, local_err
);
435 filename
= qemu_opt_get(opts
, "filename");
437 ret
= raw_normalize_devicepath(&filename
);
439 error_setg_errno(errp
, -ret
, "Could not normalize device path");
443 aio_default
= (bdrv_flags
& BDRV_O_NATIVE_AIO
)
444 ? BLOCKDEV_AIO_OPTIONS_NATIVE
445 : BLOCKDEV_AIO_OPTIONS_THREADS
;
446 aio
= qapi_enum_parse(BlockdevAioOptions_lookup
, qemu_opt_get(opts
, "aio"),
447 BLOCKDEV_AIO_OPTIONS__MAX
, aio_default
, &local_err
);
449 error_propagate(errp
, local_err
);
453 s
->use_linux_aio
= (aio
== BLOCKDEV_AIO_OPTIONS_NATIVE
);
455 locking
= qapi_enum_parse(OnOffAuto_lookup
, qemu_opt_get(opts
, "locking"),
456 ON_OFF_AUTO__MAX
, ON_OFF_AUTO_AUTO
, &local_err
);
458 error_propagate(errp
, local_err
);
467 "File lock requested but OFD locking syscall is unavailable, "
468 "falling back to POSIX file locks.\n"
469 "Due to the implementation, locks can be lost unexpectedly.\n");
472 case ON_OFF_AUTO_OFF
:
475 case ON_OFF_AUTO_AUTO
:
486 s
->open_flags
= open_flags
;
487 raw_parse_flags(bdrv_flags
, &s
->open_flags
);
490 fd
= qemu_open(filename
, s
->open_flags
, 0644);
493 error_setg_errno(errp
, errno
, "Could not open '%s'", filename
);
503 fd
= qemu_open(filename
, s
->open_flags
);
506 error_setg_errno(errp
, errno
, "Could not open '%s' for locking",
514 s
->shared_perm
= BLK_PERM_ALL
;
516 #ifdef CONFIG_LINUX_AIO
517 /* Currently Linux does AIO only for files opened with O_DIRECT */
518 if (s
->use_linux_aio
&& !(s
->open_flags
& O_DIRECT
)) {
519 error_setg(errp
, "aio=native was specified, but it requires "
520 "cache.direct=on, which was not specified.");
525 if (s
->use_linux_aio
) {
526 error_setg(errp
, "aio=native was specified, but is not supported "
531 #endif /* !defined(CONFIG_LINUX_AIO) */
533 s
->has_discard
= true;
534 s
->has_write_zeroes
= true;
535 bs
->supported_zero_flags
= BDRV_REQ_MAY_UNMAP
;
536 if ((bs
->open_flags
& BDRV_O_NOCACHE
) != 0) {
537 s
->needs_alignment
= true;
540 if (fstat(s
->fd
, &st
) < 0) {
542 error_setg_errno(errp
, errno
, "Could not stat file");
545 if (S_ISREG(st
.st_mode
)) {
546 s
->discard_zeroes
= true;
547 s
->has_fallocate
= true;
549 if (S_ISBLK(st
.st_mode
)) {
550 #ifdef BLKDISCARDZEROES
552 if (ioctl(s
->fd
, BLKDISCARDZEROES
, &arg
) == 0 && arg
) {
553 s
->discard_zeroes
= true;
557 /* On Linux 3.10, BLKDISCARD leaves stale data in the page cache. Do
558 * not rely on the contents of discarded blocks unless using O_DIRECT.
559 * Same for BLKZEROOUT.
561 if (!(bs
->open_flags
& BDRV_O_NOCACHE
)) {
562 s
->discard_zeroes
= false;
563 s
->has_write_zeroes
= false;
568 if (S_ISCHR(st
.st_mode
)) {
570 * The file is a char device (disk), which on FreeBSD isn't behind
571 * a pager, so force all requests to be aligned. This is needed
572 * so QEMU makes sure all IO operations on the device are aligned
573 * to sector size, or else FreeBSD will reject them with EINVAL.
575 s
->needs_alignment
= true;
580 if (platform_test_xfs_fd(s
->fd
)) {
587 if (filename
&& (bdrv_flags
& BDRV_O_TEMPORARY
)) {
594 static int raw_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
597 BDRVRawState
*s
= bs
->opaque
;
599 s
->type
= FTYPE_FILE
;
600 return raw_open_common(bs
, options
, flags
, 0, errp
);
609 #define PERM_FOREACH(i) \
610 for ((i) = 0; (1ULL << (i)) <= BLK_PERM_ALL; i++)
612 /* Lock bytes indicated by @perm_lock_bits and @shared_perm_lock_bits in the
613 * file; if @unlock == true, also unlock the unneeded bytes.
614 * @shared_perm_lock_bits is the mask of all permissions that are NOT shared.
616 static int raw_apply_lock_bytes(BDRVRawState
*s
,
617 uint64_t perm_lock_bits
,
618 uint64_t shared_perm_lock_bits
,
619 bool unlock
, Error
**errp
)
625 int off
= RAW_LOCK_PERM_BASE
+ i
;
626 if (perm_lock_bits
& (1ULL << i
)) {
627 ret
= qemu_lock_fd(s
->lock_fd
, off
, 1, false);
629 error_setg(errp
, "Failed to lock byte %d", off
);
633 ret
= qemu_unlock_fd(s
->lock_fd
, off
, 1);
635 error_setg(errp
, "Failed to unlock byte %d", off
);
641 int off
= RAW_LOCK_SHARED_BASE
+ i
;
642 if (shared_perm_lock_bits
& (1ULL << i
)) {
643 ret
= qemu_lock_fd(s
->lock_fd
, off
, 1, false);
645 error_setg(errp
, "Failed to lock byte %d", off
);
649 ret
= qemu_unlock_fd(s
->lock_fd
, off
, 1);
651 error_setg(errp
, "Failed to unlock byte %d", off
);
659 /* Check "unshared" bytes implied by @perm and ~@shared_perm in the file. */
660 static int raw_check_lock_bytes(BDRVRawState
*s
,
661 uint64_t perm
, uint64_t shared_perm
,
668 int off
= RAW_LOCK_SHARED_BASE
+ i
;
669 uint64_t p
= 1ULL << i
;
671 ret
= qemu_lock_fd_test(s
->lock_fd
, off
, 1, true);
673 char *perm_name
= bdrv_perm_names(p
);
675 "Failed to get \"%s\" lock",
678 error_append_hint(errp
,
679 "Is another process using the image?\n");
685 int off
= RAW_LOCK_PERM_BASE
+ i
;
686 uint64_t p
= 1ULL << i
;
687 if (!(shared_perm
& p
)) {
688 ret
= qemu_lock_fd_test(s
->lock_fd
, off
, 1, true);
690 char *perm_name
= bdrv_perm_names(p
);
692 "Failed to get shared \"%s\" lock",
695 error_append_hint(errp
,
696 "Is another process using the image?\n");
704 static int raw_handle_perm_lock(BlockDriverState
*bs
,
706 uint64_t new_perm
, uint64_t new_shared
,
709 BDRVRawState
*s
= bs
->opaque
;
711 Error
*local_err
= NULL
;
717 if (bdrv_get_flags(bs
) & BDRV_O_INACTIVE
) {
721 assert(s
->lock_fd
> 0);
725 ret
= raw_apply_lock_bytes(s
, s
->perm
| new_perm
,
726 ~s
->shared_perm
| ~new_shared
,
729 ret
= raw_check_lock_bytes(s
, new_perm
, new_shared
, errp
);
735 /* fall through to unlock bytes. */
737 raw_apply_lock_bytes(s
, s
->perm
, ~s
->shared_perm
, true, &local_err
);
739 /* Theoretically the above call only unlocks bytes and it cannot
740 * fail. Something weird happened, report it.
742 error_report_err(local_err
);
746 raw_apply_lock_bytes(s
, new_perm
, ~new_shared
, true, &local_err
);
748 /* Theoretically the above call only unlocks bytes and it cannot
749 * fail. Something weird happened, report it.
751 error_report_err(local_err
);
758 static int raw_reopen_prepare(BDRVReopenState
*state
,
759 BlockReopenQueue
*queue
, Error
**errp
)
762 BDRVRawReopenState
*rs
;
764 Error
*local_err
= NULL
;
766 assert(state
!= NULL
);
767 assert(state
->bs
!= NULL
);
769 s
= state
->bs
->opaque
;
771 state
->opaque
= g_new0(BDRVRawReopenState
, 1);
774 if (s
->type
== FTYPE_CD
) {
775 rs
->open_flags
|= O_NONBLOCK
;
778 raw_parse_flags(state
->flags
, &rs
->open_flags
);
782 int fcntl_flags
= O_APPEND
| O_NONBLOCK
;
784 fcntl_flags
|= O_NOATIME
;
788 /* Not all operating systems have O_ASYNC, and those that don't
789 * will not let us track the state into rs->open_flags (typically
790 * you achieve the same effect with an ioctl, for example I_SETSIG
791 * on Solaris). But we do not use O_ASYNC, so that's fine.
793 assert((s
->open_flags
& O_ASYNC
) == 0);
796 if ((rs
->open_flags
& ~fcntl_flags
) == (s
->open_flags
& ~fcntl_flags
)) {
797 /* dup the original fd */
798 rs
->fd
= qemu_dup(s
->fd
);
800 ret
= fcntl_setfl(rs
->fd
, rs
->open_flags
);
808 /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
810 const char *normalized_filename
= state
->bs
->filename
;
811 ret
= raw_normalize_devicepath(&normalized_filename
);
813 error_setg_errno(errp
, -ret
, "Could not normalize device path");
815 assert(!(rs
->open_flags
& O_CREAT
));
816 rs
->fd
= qemu_open(normalized_filename
, rs
->open_flags
);
818 error_setg_errno(errp
, errno
, "Could not reopen file");
824 /* Fail already reopen_prepare() if we can't get a working O_DIRECT
825 * alignment with the new fd. */
827 raw_probe_alignment(state
->bs
, rs
->fd
, &local_err
);
831 error_propagate(errp
, local_err
);
839 static void raw_reopen_commit(BDRVReopenState
*state
)
841 BDRVRawReopenState
*rs
= state
->opaque
;
842 BDRVRawState
*s
= state
->bs
->opaque
;
844 s
->open_flags
= rs
->open_flags
;
849 g_free(state
->opaque
);
850 state
->opaque
= NULL
;
854 static void raw_reopen_abort(BDRVReopenState
*state
)
856 BDRVRawReopenState
*rs
= state
->opaque
;
858 /* nothing to do if NULL, we didn't get far enough */
867 g_free(state
->opaque
);
868 state
->opaque
= NULL
;
871 static int hdev_get_max_transfer_length(BlockDriverState
*bs
, int fd
)
875 short max_sectors
= 0;
876 if (bs
->sg
&& ioctl(fd
, BLKSECTGET
, &max_bytes
) == 0) {
878 } else if (!bs
->sg
&& ioctl(fd
, BLKSECTGET
, &max_sectors
) == 0) {
879 return max_sectors
<< BDRV_SECTOR_BITS
;
888 static int hdev_get_max_segments(const struct stat
*st
)
898 sysfspath
= g_strdup_printf("/sys/dev/block/%u:%u/queue/max_segments",
899 major(st
->st_rdev
), minor(st
->st_rdev
));
900 fd
= open(sysfspath
, O_RDONLY
);
906 ret
= read(fd
, buf
, sizeof(buf
) - 1);
907 } while (ret
== -1 && errno
== EINTR
);
911 } else if (ret
== 0) {
916 /* The file is ended with '\n', pass 'end' to accept that. */
917 ret
= qemu_strtol(buf
, &end
, 10, &max_segments
);
918 if (ret
== 0 && end
&& *end
== '\n') {
933 static void raw_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
935 BDRVRawState
*s
= bs
->opaque
;
938 if (!fstat(s
->fd
, &st
)) {
939 if (S_ISBLK(st
.st_mode
) || S_ISCHR(st
.st_mode
)) {
940 int ret
= hdev_get_max_transfer_length(bs
, s
->fd
);
941 if (ret
> 0 && ret
<= BDRV_REQUEST_MAX_BYTES
) {
942 bs
->bl
.max_transfer
= pow2floor(ret
);
944 ret
= hdev_get_max_segments(&st
);
946 bs
->bl
.max_transfer
= MIN(bs
->bl
.max_transfer
,
947 ret
* getpagesize());
952 raw_probe_alignment(bs
, s
->fd
, errp
);
953 bs
->bl
.min_mem_alignment
= s
->buf_align
;
954 bs
->bl
.opt_mem_alignment
= MAX(s
->buf_align
, getpagesize());
957 static int check_for_dasd(int fd
)
960 struct dasd_information2_t info
= {0};
962 return ioctl(fd
, BIODASDINFO2
, &info
);
969 * Try to get @bs's logical and physical block size.
970 * On success, store them in @bsz and return zero.
971 * On failure, return negative errno.
973 static int hdev_probe_blocksizes(BlockDriverState
*bs
, BlockSizes
*bsz
)
975 BDRVRawState
*s
= bs
->opaque
;
978 /* If DASD, get blocksizes */
979 if (check_for_dasd(s
->fd
) < 0) {
982 ret
= probe_logical_blocksize(s
->fd
, &bsz
->log
);
986 return probe_physical_blocksize(s
->fd
, &bsz
->phys
);
990 * Try to get @bs's geometry: cyls, heads, sectors.
991 * On success, store them in @geo and return 0.
992 * On failure return -errno.
993 * (Allows block driver to assign default geometry values that guest sees)
996 static int hdev_probe_geometry(BlockDriverState
*bs
, HDGeometry
*geo
)
998 BDRVRawState
*s
= bs
->opaque
;
999 struct hd_geometry ioctl_geo
= {0};
1001 /* If DASD, get its geometry */
1002 if (check_for_dasd(s
->fd
) < 0) {
1005 if (ioctl(s
->fd
, HDIO_GETGEO
, &ioctl_geo
) < 0) {
1008 /* HDIO_GETGEO may return success even though geo contains zeros
1009 (e.g. certain multipath setups) */
1010 if (!ioctl_geo
.heads
|| !ioctl_geo
.sectors
|| !ioctl_geo
.cylinders
) {
1013 /* Do not return a geometry for partition */
1014 if (ioctl_geo
.start
!= 0) {
1017 geo
->heads
= ioctl_geo
.heads
;
1018 geo
->sectors
= ioctl_geo
.sectors
;
1019 geo
->cylinders
= ioctl_geo
.cylinders
;
1023 #else /* __linux__ */
1024 static int hdev_probe_geometry(BlockDriverState
*bs
, HDGeometry
*geo
)
1030 static ssize_t
handle_aiocb_ioctl(RawPosixAIOData
*aiocb
)
1034 ret
= ioctl(aiocb
->aio_fildes
, aiocb
->aio_ioctl_cmd
, aiocb
->aio_ioctl_buf
);
1042 static ssize_t
handle_aiocb_flush(RawPosixAIOData
*aiocb
)
1044 BDRVRawState
*s
= aiocb
->bs
->opaque
;
1047 if (s
->page_cache_inconsistent
) {
1051 ret
= qemu_fdatasync(aiocb
->aio_fildes
);
1053 /* There is no clear definition of the semantics of a failing fsync(),
1054 * so we may have to assume the worst. The sad truth is that this
1055 * assumption is correct for Linux. Some pages are now probably marked
1056 * clean in the page cache even though they are inconsistent with the
1057 * on-disk contents. The next fdatasync() call would succeed, but no
1058 * further writeback attempt will be made. We can't get back to a state
1059 * in which we know what is on disk (we would have to rewrite
1060 * everything that was touched since the last fdatasync() at least), so
1061 * make bdrv_flush() fail permanently. Given that the behaviour isn't
1062 * really defined, I have little hope that other OSes are doing better.
1064 * Obviously, this doesn't affect O_DIRECT, which bypasses the page
1066 if ((s
->open_flags
& O_DIRECT
) == 0) {
1067 s
->page_cache_inconsistent
= true;
1074 #ifdef CONFIG_PREADV
1076 static bool preadv_present
= true;
1079 qemu_preadv(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
1081 return preadv(fd
, iov
, nr_iov
, offset
);
1085 qemu_pwritev(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
1087 return pwritev(fd
, iov
, nr_iov
, offset
);
1092 static bool preadv_present
= false;
1095 qemu_preadv(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
1101 qemu_pwritev(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
1108 static ssize_t
handle_aiocb_rw_vector(RawPosixAIOData
*aiocb
)
1113 if (aiocb
->aio_type
& QEMU_AIO_WRITE
)
1114 len
= qemu_pwritev(aiocb
->aio_fildes
,
1119 len
= qemu_preadv(aiocb
->aio_fildes
,
1123 } while (len
== -1 && errno
== EINTR
);
1132 * Read/writes the data to/from a given linear buffer.
1134 * Returns the number of bytes handles or -errno in case of an error. Short
1135 * reads are only returned if the end of the file is reached.
1137 static ssize_t
handle_aiocb_rw_linear(RawPosixAIOData
*aiocb
, char *buf
)
1142 while (offset
< aiocb
->aio_nbytes
) {
1143 if (aiocb
->aio_type
& QEMU_AIO_WRITE
) {
1144 len
= pwrite(aiocb
->aio_fildes
,
1145 (const char *)buf
+ offset
,
1146 aiocb
->aio_nbytes
- offset
,
1147 aiocb
->aio_offset
+ offset
);
1149 len
= pread(aiocb
->aio_fildes
,
1151 aiocb
->aio_nbytes
- offset
,
1152 aiocb
->aio_offset
+ offset
);
1154 if (len
== -1 && errno
== EINTR
) {
1156 } else if (len
== -1 && errno
== EINVAL
&&
1157 (aiocb
->bs
->open_flags
& BDRV_O_NOCACHE
) &&
1158 !(aiocb
->aio_type
& QEMU_AIO_WRITE
) &&
1160 /* O_DIRECT pread() may fail with EINVAL when offset is unaligned
1161 * after a short read. Assume that O_DIRECT short reads only occur
1162 * at EOF. Therefore this is a short read, not an I/O error.
1165 } else if (len
== -1) {
1168 } else if (len
== 0) {
1177 static ssize_t
handle_aiocb_rw(RawPosixAIOData
*aiocb
)
1182 if (!(aiocb
->aio_type
& QEMU_AIO_MISALIGNED
)) {
1184 * If there is just a single buffer, and it is properly aligned
1185 * we can just use plain pread/pwrite without any problems.
1187 if (aiocb
->aio_niov
== 1) {
1188 return handle_aiocb_rw_linear(aiocb
, aiocb
->aio_iov
->iov_base
);
1191 * We have more than one iovec, and all are properly aligned.
1193 * Try preadv/pwritev first and fall back to linearizing the
1194 * buffer if it's not supported.
1196 if (preadv_present
) {
1197 nbytes
= handle_aiocb_rw_vector(aiocb
);
1198 if (nbytes
== aiocb
->aio_nbytes
||
1199 (nbytes
< 0 && nbytes
!= -ENOSYS
)) {
1202 preadv_present
= false;
1206 * XXX(hch): short read/write. no easy way to handle the reminder
1207 * using these interfaces. For now retry using plain
1213 * Ok, we have to do it the hard way, copy all segments into
1214 * a single aligned buffer.
1216 buf
= qemu_try_blockalign(aiocb
->bs
, aiocb
->aio_nbytes
);
1221 if (aiocb
->aio_type
& QEMU_AIO_WRITE
) {
1225 for (i
= 0; i
< aiocb
->aio_niov
; ++i
) {
1226 memcpy(p
, aiocb
->aio_iov
[i
].iov_base
, aiocb
->aio_iov
[i
].iov_len
);
1227 p
+= aiocb
->aio_iov
[i
].iov_len
;
1229 assert(p
- buf
== aiocb
->aio_nbytes
);
1232 nbytes
= handle_aiocb_rw_linear(aiocb
, buf
);
1233 if (!(aiocb
->aio_type
& QEMU_AIO_WRITE
)) {
1235 size_t count
= aiocb
->aio_nbytes
, copy
;
1238 for (i
= 0; i
< aiocb
->aio_niov
&& count
; ++i
) {
1240 if (copy
> aiocb
->aio_iov
[i
].iov_len
) {
1241 copy
= aiocb
->aio_iov
[i
].iov_len
;
1243 memcpy(aiocb
->aio_iov
[i
].iov_base
, p
, copy
);
1244 assert(count
>= copy
);
1256 static int xfs_write_zeroes(BDRVRawState
*s
, int64_t offset
, uint64_t bytes
)
1258 struct xfs_flock64 fl
;
1261 memset(&fl
, 0, sizeof(fl
));
1262 fl
.l_whence
= SEEK_SET
;
1263 fl
.l_start
= offset
;
1266 if (xfsctl(NULL
, s
->fd
, XFS_IOC_ZERO_RANGE
, &fl
) < 0) {
1268 DPRINTF("cannot write zero range (%s)\n", strerror(errno
));
1275 static int xfs_discard(BDRVRawState
*s
, int64_t offset
, uint64_t bytes
)
1277 struct xfs_flock64 fl
;
1280 memset(&fl
, 0, sizeof(fl
));
1281 fl
.l_whence
= SEEK_SET
;
1282 fl
.l_start
= offset
;
1285 if (xfsctl(NULL
, s
->fd
, XFS_IOC_UNRESVSP64
, &fl
) < 0) {
1287 DPRINTF("cannot punch hole (%s)\n", strerror(errno
));
1295 static int translate_err(int err
)
1297 if (err
== -ENODEV
|| err
== -ENOSYS
|| err
== -EOPNOTSUPP
||
1304 #ifdef CONFIG_FALLOCATE
1305 static int do_fallocate(int fd
, int mode
, off_t offset
, off_t len
)
1308 if (fallocate(fd
, mode
, offset
, len
) == 0) {
1311 } while (errno
== EINTR
);
1312 return translate_err(-errno
);
1316 static ssize_t
handle_aiocb_write_zeroes_block(RawPosixAIOData
*aiocb
)
1319 BDRVRawState
*s
= aiocb
->bs
->opaque
;
1321 if (!s
->has_write_zeroes
) {
1327 uint64_t range
[2] = { aiocb
->aio_offset
, aiocb
->aio_nbytes
};
1328 if (ioctl(aiocb
->aio_fildes
, BLKZEROOUT
, range
) == 0) {
1331 } while (errno
== EINTR
);
1333 ret
= translate_err(-errno
);
1336 if (ret
== -ENOTSUP
) {
1337 s
->has_write_zeroes
= false;
1342 static ssize_t
handle_aiocb_write_zeroes(RawPosixAIOData
*aiocb
)
1344 #if defined(CONFIG_FALLOCATE) || defined(CONFIG_XFS)
1345 BDRVRawState
*s
= aiocb
->bs
->opaque
;
1348 if (aiocb
->aio_type
& QEMU_AIO_BLKDEV
) {
1349 return handle_aiocb_write_zeroes_block(aiocb
);
1354 return xfs_write_zeroes(s
, aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1358 #ifdef CONFIG_FALLOCATE_ZERO_RANGE
1359 if (s
->has_write_zeroes
) {
1360 int ret
= do_fallocate(s
->fd
, FALLOC_FL_ZERO_RANGE
,
1361 aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1362 if (ret
== 0 || ret
!= -ENOTSUP
) {
1365 s
->has_write_zeroes
= false;
1369 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1370 if (s
->has_discard
&& s
->has_fallocate
) {
1371 int ret
= do_fallocate(s
->fd
,
1372 FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
,
1373 aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1375 ret
= do_fallocate(s
->fd
, 0, aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1376 if (ret
== 0 || ret
!= -ENOTSUP
) {
1379 s
->has_fallocate
= false;
1380 } else if (ret
!= -ENOTSUP
) {
1383 s
->has_discard
= false;
1388 #ifdef CONFIG_FALLOCATE
1389 if (s
->has_fallocate
&& aiocb
->aio_offset
>= bdrv_getlength(aiocb
->bs
)) {
1390 int ret
= do_fallocate(s
->fd
, 0, aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1391 if (ret
== 0 || ret
!= -ENOTSUP
) {
1394 s
->has_fallocate
= false;
1401 static ssize_t
handle_aiocb_discard(RawPosixAIOData
*aiocb
)
1403 int ret
= -EOPNOTSUPP
;
1404 BDRVRawState
*s
= aiocb
->bs
->opaque
;
1406 if (!s
->has_discard
) {
1410 if (aiocb
->aio_type
& QEMU_AIO_BLKDEV
) {
1413 uint64_t range
[2] = { aiocb
->aio_offset
, aiocb
->aio_nbytes
};
1414 if (ioctl(aiocb
->aio_fildes
, BLKDISCARD
, range
) == 0) {
1417 } while (errno
== EINTR
);
1424 return xfs_discard(s
, aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1428 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1429 ret
= do_fallocate(s
->fd
, FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
,
1430 aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1434 ret
= translate_err(ret
);
1435 if (ret
== -ENOTSUP
) {
1436 s
->has_discard
= false;
1441 static int aio_worker(void *arg
)
1443 RawPosixAIOData
*aiocb
= arg
;
1446 switch (aiocb
->aio_type
& QEMU_AIO_TYPE_MASK
) {
1448 ret
= handle_aiocb_rw(aiocb
);
1449 if (ret
>= 0 && ret
< aiocb
->aio_nbytes
) {
1450 iov_memset(aiocb
->aio_iov
, aiocb
->aio_niov
, ret
,
1451 0, aiocb
->aio_nbytes
- ret
);
1453 ret
= aiocb
->aio_nbytes
;
1455 if (ret
== aiocb
->aio_nbytes
) {
1457 } else if (ret
>= 0 && ret
< aiocb
->aio_nbytes
) {
1461 case QEMU_AIO_WRITE
:
1462 ret
= handle_aiocb_rw(aiocb
);
1463 if (ret
== aiocb
->aio_nbytes
) {
1465 } else if (ret
>= 0 && ret
< aiocb
->aio_nbytes
) {
1469 case QEMU_AIO_FLUSH
:
1470 ret
= handle_aiocb_flush(aiocb
);
1472 case QEMU_AIO_IOCTL
:
1473 ret
= handle_aiocb_ioctl(aiocb
);
1475 case QEMU_AIO_DISCARD
:
1476 ret
= handle_aiocb_discard(aiocb
);
1478 case QEMU_AIO_WRITE_ZEROES
:
1479 ret
= handle_aiocb_write_zeroes(aiocb
);
1482 fprintf(stderr
, "invalid aio request (0x%x)\n", aiocb
->aio_type
);
1491 static int paio_submit_co(BlockDriverState
*bs
, int fd
,
1492 int64_t offset
, QEMUIOVector
*qiov
,
1493 int count
, int type
)
1495 RawPosixAIOData
*acb
= g_new(RawPosixAIOData
, 1);
1499 acb
->aio_type
= type
;
1500 acb
->aio_fildes
= fd
;
1502 acb
->aio_nbytes
= count
;
1503 acb
->aio_offset
= offset
;
1506 acb
->aio_iov
= qiov
->iov
;
1507 acb
->aio_niov
= qiov
->niov
;
1508 assert(qiov
->size
== count
);
1511 trace_paio_submit_co(offset
, count
, type
);
1512 pool
= aio_get_thread_pool(bdrv_get_aio_context(bs
));
1513 return thread_pool_submit_co(pool
, aio_worker
, acb
);
1516 static BlockAIOCB
*paio_submit(BlockDriverState
*bs
, int fd
,
1517 int64_t offset
, QEMUIOVector
*qiov
, int count
,
1518 BlockCompletionFunc
*cb
, void *opaque
, int type
)
1520 RawPosixAIOData
*acb
= g_new(RawPosixAIOData
, 1);
1524 acb
->aio_type
= type
;
1525 acb
->aio_fildes
= fd
;
1527 acb
->aio_nbytes
= count
;
1528 acb
->aio_offset
= offset
;
1531 acb
->aio_iov
= qiov
->iov
;
1532 acb
->aio_niov
= qiov
->niov
;
1533 assert(qiov
->size
== acb
->aio_nbytes
);
1536 trace_paio_submit(acb
, opaque
, offset
, count
, type
);
1537 pool
= aio_get_thread_pool(bdrv_get_aio_context(bs
));
1538 return thread_pool_submit_aio(pool
, aio_worker
, acb
, cb
, opaque
);
1541 static int coroutine_fn
raw_co_prw(BlockDriverState
*bs
, uint64_t offset
,
1542 uint64_t bytes
, QEMUIOVector
*qiov
, int type
)
1544 BDRVRawState
*s
= bs
->opaque
;
1546 if (fd_open(bs
) < 0)
1550 * Check if the underlying device requires requests to be aligned,
1551 * and if the request we are trying to submit is aligned or not.
1552 * If this is the case tell the low-level driver that it needs
1553 * to copy the buffer.
1555 if (s
->needs_alignment
) {
1556 if (!bdrv_qiov_is_aligned(bs
, qiov
)) {
1557 type
|= QEMU_AIO_MISALIGNED
;
1558 #ifdef CONFIG_LINUX_AIO
1559 } else if (s
->use_linux_aio
) {
1560 LinuxAioState
*aio
= aio_get_linux_aio(bdrv_get_aio_context(bs
));
1561 assert(qiov
->size
== bytes
);
1562 return laio_co_submit(bs
, aio
, s
->fd
, offset
, qiov
, type
);
1567 return paio_submit_co(bs
, s
->fd
, offset
, qiov
, bytes
, type
);
1570 static int coroutine_fn
raw_co_preadv(BlockDriverState
*bs
, uint64_t offset
,
1571 uint64_t bytes
, QEMUIOVector
*qiov
,
1574 return raw_co_prw(bs
, offset
, bytes
, qiov
, QEMU_AIO_READ
);
1577 static int coroutine_fn
raw_co_pwritev(BlockDriverState
*bs
, uint64_t offset
,
1578 uint64_t bytes
, QEMUIOVector
*qiov
,
1582 return raw_co_prw(bs
, offset
, bytes
, qiov
, QEMU_AIO_WRITE
);
1585 static void raw_aio_plug(BlockDriverState
*bs
)
1587 #ifdef CONFIG_LINUX_AIO
1588 BDRVRawState
*s
= bs
->opaque
;
1589 if (s
->use_linux_aio
) {
1590 LinuxAioState
*aio
= aio_get_linux_aio(bdrv_get_aio_context(bs
));
1591 laio_io_plug(bs
, aio
);
1596 static void raw_aio_unplug(BlockDriverState
*bs
)
1598 #ifdef CONFIG_LINUX_AIO
1599 BDRVRawState
*s
= bs
->opaque
;
1600 if (s
->use_linux_aio
) {
1601 LinuxAioState
*aio
= aio_get_linux_aio(bdrv_get_aio_context(bs
));
1602 laio_io_unplug(bs
, aio
);
1607 static BlockAIOCB
*raw_aio_flush(BlockDriverState
*bs
,
1608 BlockCompletionFunc
*cb
, void *opaque
)
1610 BDRVRawState
*s
= bs
->opaque
;
1612 if (fd_open(bs
) < 0)
1615 return paio_submit(bs
, s
->fd
, 0, NULL
, 0, cb
, opaque
, QEMU_AIO_FLUSH
);
1618 static void raw_close(BlockDriverState
*bs
)
1620 BDRVRawState
*s
= bs
->opaque
;
1626 if (s
->lock_fd
>= 0) {
1627 qemu_close(s
->lock_fd
);
1632 static int raw_truncate(BlockDriverState
*bs
, int64_t offset
, Error
**errp
)
1634 BDRVRawState
*s
= bs
->opaque
;
1638 if (fstat(s
->fd
, &st
)) {
1640 error_setg_errno(errp
, -ret
, "Failed to fstat() the file");
1644 if (S_ISREG(st
.st_mode
)) {
1645 if (ftruncate(s
->fd
, offset
) < 0) {
1647 error_setg_errno(errp
, -ret
, "Failed to resize the file");
1650 } else if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
1651 if (offset
> raw_getlength(bs
)) {
1652 error_setg(errp
, "Cannot grow device files");
1656 error_setg(errp
, "Resizing this file is not supported");
1664 static int64_t raw_getlength(BlockDriverState
*bs
)
1666 BDRVRawState
*s
= bs
->opaque
;
1672 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
1673 struct disklabel dl
;
1675 if (ioctl(fd
, DIOCGDINFO
, &dl
))
1677 return (uint64_t)dl
.d_secsize
*
1678 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
1682 #elif defined(__NetBSD__)
1683 static int64_t raw_getlength(BlockDriverState
*bs
)
1685 BDRVRawState
*s
= bs
->opaque
;
1691 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
1692 struct dkwedge_info dkw
;
1694 if (ioctl(fd
, DIOCGWEDGEINFO
, &dkw
) != -1) {
1695 return dkw
.dkw_size
* 512;
1697 struct disklabel dl
;
1699 if (ioctl(fd
, DIOCGDINFO
, &dl
))
1701 return (uint64_t)dl
.d_secsize
*
1702 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
1707 #elif defined(__sun__)
1708 static int64_t raw_getlength(BlockDriverState
*bs
)
1710 BDRVRawState
*s
= bs
->opaque
;
1711 struct dk_minfo minfo
;
1721 * Use the DKIOCGMEDIAINFO ioctl to read the size.
1723 ret
= ioctl(s
->fd
, DKIOCGMEDIAINFO
, &minfo
);
1725 return minfo
.dki_lbsize
* minfo
.dki_capacity
;
1729 * There are reports that lseek on some devices fails, but
1730 * irc discussion said that contingency on contingency was overkill.
1732 size
= lseek(s
->fd
, 0, SEEK_END
);
1738 #elif defined(CONFIG_BSD)
1739 static int64_t raw_getlength(BlockDriverState
*bs
)
1741 BDRVRawState
*s
= bs
->opaque
;
1745 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1754 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1757 if (!fstat(fd
, &sb
) && (S_IFCHR
& sb
.st_mode
)) {
1758 #ifdef DIOCGMEDIASIZE
1759 if (ioctl(fd
, DIOCGMEDIASIZE
, (off_t
*)&size
))
1760 #elif defined(DIOCGPART)
1763 if (ioctl(fd
, DIOCGPART
, &pi
) == 0)
1764 size
= pi
.media_size
;
1770 #if defined(__APPLE__) && defined(__MACH__)
1772 uint64_t sectors
= 0;
1773 uint32_t sector_size
= 0;
1775 if (ioctl(fd
, DKIOCGETBLOCKCOUNT
, §ors
) == 0
1776 && ioctl(fd
, DKIOCGETBLOCKSIZE
, §or_size
) == 0) {
1777 size
= sectors
* sector_size
;
1779 size
= lseek(fd
, 0LL, SEEK_END
);
1786 size
= lseek(fd
, 0LL, SEEK_END
);
1791 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1794 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
1795 if (size
== 2048LL * (unsigned)-1)
1797 /* XXX no disc? maybe we need to reopen... */
1798 if (size
<= 0 && !reopened
&& cdrom_reopen(bs
) >= 0) {
1805 size
= lseek(fd
, 0, SEEK_END
);
1813 static int64_t raw_getlength(BlockDriverState
*bs
)
1815 BDRVRawState
*s
= bs
->opaque
;
1824 size
= lseek(s
->fd
, 0, SEEK_END
);
1832 static int64_t raw_get_allocated_file_size(BlockDriverState
*bs
)
1835 BDRVRawState
*s
= bs
->opaque
;
1837 if (fstat(s
->fd
, &st
) < 0) {
1840 return (int64_t)st
.st_blocks
* 512;
1843 static int raw_create(const char *filename
, QemuOpts
*opts
, Error
**errp
)
1847 int64_t total_size
= 0;
1849 PreallocMode prealloc
;
1851 Error
*local_err
= NULL
;
1853 strstart(filename
, "file:", &filename
);
1855 /* Read out options */
1856 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
1858 nocow
= qemu_opt_get_bool(opts
, BLOCK_OPT_NOCOW
, false);
1859 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
1860 prealloc
= qapi_enum_parse(PreallocMode_lookup
, buf
,
1861 PREALLOC_MODE__MAX
, PREALLOC_MODE_OFF
,
1865 error_propagate(errp
, local_err
);
1870 fd
= qemu_open(filename
, O_RDWR
| O_CREAT
| O_TRUNC
| O_BINARY
,
1874 error_setg_errno(errp
, -result
, "Could not create file");
1880 /* Set NOCOW flag to solve performance issue on fs like btrfs.
1881 * This is an optimisation. The FS_IOC_SETFLAGS ioctl return value
1882 * will be ignored since any failure of this operation should not
1883 * block the left work.
1886 if (ioctl(fd
, FS_IOC_GETFLAGS
, &attr
) == 0) {
1887 attr
|= FS_NOCOW_FL
;
1888 ioctl(fd
, FS_IOC_SETFLAGS
, &attr
);
1894 #ifdef CONFIG_POSIX_FALLOCATE
1895 case PREALLOC_MODE_FALLOC
:
1897 * Truncating before posix_fallocate() makes it about twice slower on
1898 * file systems that do not support fallocate(), trying to check if a
1899 * block is allocated before allocating it, so don't do that here.
1901 result
= -posix_fallocate(fd
, 0, total_size
);
1903 /* posix_fallocate() doesn't set errno. */
1904 error_setg_errno(errp
, -result
,
1905 "Could not preallocate data for the new file");
1909 case PREALLOC_MODE_FULL
:
1912 * Knowing the final size from the beginning could allow the file
1913 * system driver to do less allocations and possibly avoid
1914 * fragmentation of the file.
1916 if (ftruncate(fd
, total_size
) != 0) {
1918 error_setg_errno(errp
, -result
, "Could not resize file");
1922 int64_t num
= 0, left
= total_size
;
1923 buf
= g_malloc0(65536);
1926 num
= MIN(left
, 65536);
1927 result
= write(fd
, buf
, num
);
1930 error_setg_errno(errp
, -result
,
1931 "Could not write to the new file");
1940 error_setg_errno(errp
, -result
,
1941 "Could not flush new file to disk");
1947 case PREALLOC_MODE_OFF
:
1948 if (ftruncate(fd
, total_size
) != 0) {
1950 error_setg_errno(errp
, -result
, "Could not resize file");
1955 error_setg(errp
, "Unsupported preallocation mode: %s",
1956 PreallocMode_lookup
[prealloc
]);
1961 if (qemu_close(fd
) != 0 && result
== 0) {
1963 error_setg_errno(errp
, -result
, "Could not close the new file");
1970 * Find allocation range in @bs around offset @start.
1971 * May change underlying file descriptor's file offset.
1972 * If @start is not in a hole, store @start in @data, and the
1973 * beginning of the next hole in @hole, and return 0.
1974 * If @start is in a non-trailing hole, store @start in @hole and the
1975 * beginning of the next non-hole in @data, and return 0.
1976 * If @start is in a trailing hole or beyond EOF, return -ENXIO.
1977 * If we can't find out, return a negative errno other than -ENXIO.
1979 static int find_allocation(BlockDriverState
*bs
, off_t start
,
1980 off_t
*data
, off_t
*hole
)
1982 #if defined SEEK_HOLE && defined SEEK_DATA
1983 BDRVRawState
*s
= bs
->opaque
;
1988 * D1. offs == start: start is in data
1989 * D2. offs > start: start is in a hole, next data at offs
1990 * D3. offs < 0, errno = ENXIO: either start is in a trailing hole
1991 * or start is beyond EOF
1992 * If the latter happens, the file has been truncated behind
1993 * our back since we opened it. All bets are off then.
1994 * Treating like a trailing hole is simplest.
1995 * D4. offs < 0, errno != ENXIO: we learned nothing
1997 offs
= lseek(s
->fd
, start
, SEEK_DATA
);
1999 return -errno
; /* D3 or D4 */
2001 assert(offs
>= start
);
2004 /* D2: in hole, next data at offs */
2010 /* D1: in data, end not yet known */
2014 * H1. offs == start: start is in a hole
2015 * If this happens here, a hole has been dug behind our back
2016 * since the previous lseek().
2017 * H2. offs > start: either start is in data, next hole at offs,
2018 * or start is in trailing hole, EOF at offs
2019 * Linux treats trailing holes like any other hole: offs ==
2020 * start. Solaris seeks to EOF instead: offs > start (blech).
2021 * If that happens here, a hole has been dug behind our back
2022 * since the previous lseek().
2023 * H3. offs < 0, errno = ENXIO: start is beyond EOF
2024 * If this happens, the file has been truncated behind our
2025 * back since we opened it. Treat it like a trailing hole.
2026 * H4. offs < 0, errno != ENXIO: we learned nothing
2027 * Pretend we know nothing at all, i.e. "forget" about D1.
2029 offs
= lseek(s
->fd
, start
, SEEK_HOLE
);
2031 return -errno
; /* D1 and (H3 or H4) */
2033 assert(offs
>= start
);
2037 * D1 and H2: either in data, next hole at offs, or it was in
2038 * data but is now in a trailing hole. In the latter case,
2039 * all bets are off. Treating it as if it there was data all
2040 * the way to EOF is safe, so simply do that.
2055 * Returns the allocation status of the specified sectors.
2057 * If 'sector_num' is beyond the end of the disk image the return value is 0
2058 * and 'pnum' is set to 0.
2060 * 'pnum' is set to the number of sectors (including and immediately following
2061 * the specified sector) that are known to be in the same
2062 * allocated/unallocated state.
2064 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
2065 * beyond the end of the disk image it will be clamped.
2067 static int64_t coroutine_fn
raw_co_get_block_status(BlockDriverState
*bs
,
2069 int nb_sectors
, int *pnum
,
2070 BlockDriverState
**file
)
2072 off_t start
, data
= 0, hole
= 0;
2081 start
= sector_num
* BDRV_SECTOR_SIZE
;
2082 total_size
= bdrv_getlength(bs
);
2083 if (total_size
< 0) {
2085 } else if (start
>= total_size
) {
2088 } else if (start
+ nb_sectors
* BDRV_SECTOR_SIZE
> total_size
) {
2089 nb_sectors
= DIV_ROUND_UP(total_size
- start
, BDRV_SECTOR_SIZE
);
2092 ret
= find_allocation(bs
, start
, &data
, &hole
);
2093 if (ret
== -ENXIO
) {
2096 ret
= BDRV_BLOCK_ZERO
;
2097 } else if (ret
< 0) {
2098 /* No info available, so pretend there are no holes */
2100 ret
= BDRV_BLOCK_DATA
;
2101 } else if (data
== start
) {
2102 /* On a data extent, compute sectors to the end of the extent,
2103 * possibly including a partial sector at EOF. */
2104 *pnum
= MIN(nb_sectors
, DIV_ROUND_UP(hole
- start
, BDRV_SECTOR_SIZE
));
2105 ret
= BDRV_BLOCK_DATA
;
2107 /* On a hole, compute sectors to the beginning of the next extent. */
2108 assert(hole
== start
);
2109 *pnum
= MIN(nb_sectors
, (data
- start
) / BDRV_SECTOR_SIZE
);
2110 ret
= BDRV_BLOCK_ZERO
;
2113 return ret
| BDRV_BLOCK_OFFSET_VALID
| start
;
2116 static coroutine_fn BlockAIOCB
*raw_aio_pdiscard(BlockDriverState
*bs
,
2117 int64_t offset
, int count
,
2118 BlockCompletionFunc
*cb
, void *opaque
)
2120 BDRVRawState
*s
= bs
->opaque
;
2122 return paio_submit(bs
, s
->fd
, offset
, NULL
, count
,
2123 cb
, opaque
, QEMU_AIO_DISCARD
);
2126 static int coroutine_fn
raw_co_pwrite_zeroes(
2127 BlockDriverState
*bs
, int64_t offset
,
2128 int count
, BdrvRequestFlags flags
)
2130 BDRVRawState
*s
= bs
->opaque
;
2132 if (!(flags
& BDRV_REQ_MAY_UNMAP
)) {
2133 return paio_submit_co(bs
, s
->fd
, offset
, NULL
, count
,
2134 QEMU_AIO_WRITE_ZEROES
);
2135 } else if (s
->discard_zeroes
) {
2136 return paio_submit_co(bs
, s
->fd
, offset
, NULL
, count
,
2142 static int raw_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
2144 BDRVRawState
*s
= bs
->opaque
;
2146 bdi
->unallocated_blocks_are_zero
= s
->discard_zeroes
;
2147 bdi
->can_write_zeroes_with_unmap
= s
->discard_zeroes
;
2151 static QemuOptsList raw_create_opts
= {
2152 .name
= "raw-create-opts",
2153 .head
= QTAILQ_HEAD_INITIALIZER(raw_create_opts
.head
),
2156 .name
= BLOCK_OPT_SIZE
,
2157 .type
= QEMU_OPT_SIZE
,
2158 .help
= "Virtual disk size"
2161 .name
= BLOCK_OPT_NOCOW
,
2162 .type
= QEMU_OPT_BOOL
,
2163 .help
= "Turn off copy-on-write (valid only on btrfs)"
2166 .name
= BLOCK_OPT_PREALLOC
,
2167 .type
= QEMU_OPT_STRING
,
2168 .help
= "Preallocation mode (allowed values: off, falloc, full)"
2170 { /* end of list */ }
2174 static int raw_check_perm(BlockDriverState
*bs
, uint64_t perm
, uint64_t shared
,
2177 return raw_handle_perm_lock(bs
, RAW_PL_PREPARE
, perm
, shared
, errp
);
2180 static void raw_set_perm(BlockDriverState
*bs
, uint64_t perm
, uint64_t shared
)
2182 BDRVRawState
*s
= bs
->opaque
;
2183 raw_handle_perm_lock(bs
, RAW_PL_COMMIT
, perm
, shared
, NULL
);
2185 s
->shared_perm
= shared
;
2188 static void raw_abort_perm_update(BlockDriverState
*bs
)
2190 raw_handle_perm_lock(bs
, RAW_PL_ABORT
, 0, 0, NULL
);
2193 static int raw_inactivate(BlockDriverState
*bs
)
2197 uint64_t shared
= BLK_PERM_ALL
;
2199 ret
= raw_handle_perm_lock(bs
, RAW_PL_PREPARE
, perm
, shared
, NULL
);
2203 raw_handle_perm_lock(bs
, RAW_PL_COMMIT
, perm
, shared
, NULL
);
2208 static void raw_invalidate_cache(BlockDriverState
*bs
, Error
**errp
)
2210 BDRVRawState
*s
= bs
->opaque
;
2213 assert(!(bdrv_get_flags(bs
) & BDRV_O_INACTIVE
));
2214 ret
= raw_handle_perm_lock(bs
, RAW_PL_PREPARE
, s
->perm
, s
->shared_perm
,
2219 raw_handle_perm_lock(bs
, RAW_PL_COMMIT
, s
->perm
, s
->shared_perm
, NULL
);
2222 BlockDriver bdrv_file
= {
2223 .format_name
= "file",
2224 .protocol_name
= "file",
2225 .instance_size
= sizeof(BDRVRawState
),
2226 .bdrv_needs_filename
= true,
2227 .bdrv_probe
= NULL
, /* no probe for protocols */
2228 .bdrv_parse_filename
= raw_parse_filename
,
2229 .bdrv_file_open
= raw_open
,
2230 .bdrv_reopen_prepare
= raw_reopen_prepare
,
2231 .bdrv_reopen_commit
= raw_reopen_commit
,
2232 .bdrv_reopen_abort
= raw_reopen_abort
,
2233 .bdrv_close
= raw_close
,
2234 .bdrv_create
= raw_create
,
2235 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
2236 .bdrv_co_get_block_status
= raw_co_get_block_status
,
2237 .bdrv_co_pwrite_zeroes
= raw_co_pwrite_zeroes
,
2239 .bdrv_co_preadv
= raw_co_preadv
,
2240 .bdrv_co_pwritev
= raw_co_pwritev
,
2241 .bdrv_aio_flush
= raw_aio_flush
,
2242 .bdrv_aio_pdiscard
= raw_aio_pdiscard
,
2243 .bdrv_refresh_limits
= raw_refresh_limits
,
2244 .bdrv_io_plug
= raw_aio_plug
,
2245 .bdrv_io_unplug
= raw_aio_unplug
,
2247 .bdrv_truncate
= raw_truncate
,
2248 .bdrv_getlength
= raw_getlength
,
2249 .bdrv_get_info
= raw_get_info
,
2250 .bdrv_get_allocated_file_size
2251 = raw_get_allocated_file_size
,
2252 .bdrv_inactivate
= raw_inactivate
,
2253 .bdrv_invalidate_cache
= raw_invalidate_cache
,
2254 .bdrv_check_perm
= raw_check_perm
,
2255 .bdrv_set_perm
= raw_set_perm
,
2256 .bdrv_abort_perm_update
= raw_abort_perm_update
,
2257 .create_opts
= &raw_create_opts
,
2260 /***********************************************/
2263 #if defined(__APPLE__) && defined(__MACH__)
2264 static kern_return_t
GetBSDPath(io_iterator_t mediaIterator
, char *bsdPath
,
2265 CFIndex maxPathSize
, int flags
);
2266 static char *FindEjectableOpticalMedia(io_iterator_t
*mediaIterator
)
2268 kern_return_t kernResult
= KERN_FAILURE
;
2269 mach_port_t masterPort
;
2270 CFMutableDictionaryRef classesToMatch
;
2271 const char *matching_array
[] = {kIODVDMediaClass
, kIOCDMediaClass
};
2272 char *mediaType
= NULL
;
2274 kernResult
= IOMasterPort( MACH_PORT_NULL
, &masterPort
);
2275 if ( KERN_SUCCESS
!= kernResult
) {
2276 printf( "IOMasterPort returned %d\n", kernResult
);
2280 for (index
= 0; index
< ARRAY_SIZE(matching_array
); index
++) {
2281 classesToMatch
= IOServiceMatching(matching_array
[index
]);
2282 if (classesToMatch
== NULL
) {
2283 error_report("IOServiceMatching returned NULL for %s",
2284 matching_array
[index
]);
2287 CFDictionarySetValue(classesToMatch
, CFSTR(kIOMediaEjectableKey
),
2289 kernResult
= IOServiceGetMatchingServices(masterPort
, classesToMatch
,
2291 if (kernResult
!= KERN_SUCCESS
) {
2292 error_report("Note: IOServiceGetMatchingServices returned %d",
2297 /* If a match was found, leave the loop */
2298 if (*mediaIterator
!= 0) {
2299 DPRINTF("Matching using %s\n", matching_array
[index
]);
2300 mediaType
= g_strdup(matching_array
[index
]);
2307 kern_return_t
GetBSDPath(io_iterator_t mediaIterator
, char *bsdPath
,
2308 CFIndex maxPathSize
, int flags
)
2310 io_object_t nextMedia
;
2311 kern_return_t kernResult
= KERN_FAILURE
;
2313 nextMedia
= IOIteratorNext( mediaIterator
);
2316 CFTypeRef bsdPathAsCFString
;
2317 bsdPathAsCFString
= IORegistryEntryCreateCFProperty( nextMedia
, CFSTR( kIOBSDNameKey
), kCFAllocatorDefault
, 0 );
2318 if ( bsdPathAsCFString
) {
2319 size_t devPathLength
;
2320 strcpy( bsdPath
, _PATH_DEV
);
2321 if (flags
& BDRV_O_NOCACHE
) {
2322 strcat(bsdPath
, "r");
2324 devPathLength
= strlen( bsdPath
);
2325 if ( CFStringGetCString( bsdPathAsCFString
, bsdPath
+ devPathLength
, maxPathSize
- devPathLength
, kCFStringEncodingASCII
) ) {
2326 kernResult
= KERN_SUCCESS
;
2328 CFRelease( bsdPathAsCFString
);
2330 IOObjectRelease( nextMedia
);
2336 /* Sets up a real cdrom for use in QEMU */
2337 static bool setup_cdrom(char *bsd_path
, Error
**errp
)
2339 int index
, num_of_test_partitions
= 2, fd
;
2340 char test_partition
[MAXPATHLEN
];
2341 bool partition_found
= false;
2343 /* look for a working partition */
2344 for (index
= 0; index
< num_of_test_partitions
; index
++) {
2345 snprintf(test_partition
, sizeof(test_partition
), "%ss%d", bsd_path
,
2347 fd
= qemu_open(test_partition
, O_RDONLY
| O_BINARY
| O_LARGEFILE
);
2349 partition_found
= true;
2355 /* if a working partition on the device was not found */
2356 if (partition_found
== false) {
2357 error_setg(errp
, "Failed to find a working partition on disc");
2359 DPRINTF("Using %s as optical disc\n", test_partition
);
2360 pstrcpy(bsd_path
, MAXPATHLEN
, test_partition
);
2362 return partition_found
;
2365 /* Prints directions on mounting and unmounting a device */
2366 static void print_unmounting_directions(const char *file_name
)
2368 error_report("If device %s is mounted on the desktop, unmount"
2369 " it first before using it in QEMU", file_name
);
2370 error_report("Command to unmount device: diskutil unmountDisk %s",
2372 error_report("Command to mount device: diskutil mountDisk %s", file_name
);
2375 #endif /* defined(__APPLE__) && defined(__MACH__) */
2377 static int hdev_probe_device(const char *filename
)
2381 /* allow a dedicated CD-ROM driver to match with a higher priority */
2382 if (strstart(filename
, "/dev/cdrom", NULL
))
2385 if (stat(filename
, &st
) >= 0 &&
2386 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
2393 static int check_hdev_writable(BDRVRawState
*s
)
2395 #if defined(BLKROGET)
2396 /* Linux block devices can be configured "read-only" using blockdev(8).
2397 * This is independent of device node permissions and therefore open(2)
2398 * with O_RDWR succeeds. Actual writes fail with EPERM.
2400 * bdrv_open() is supposed to fail if the disk is read-only. Explicitly
2401 * check for read-only block devices so that Linux block devices behave
2407 if (fstat(s
->fd
, &st
)) {
2411 if (!S_ISBLK(st
.st_mode
)) {
2415 if (ioctl(s
->fd
, BLKROGET
, &readonly
) < 0) {
2422 #endif /* defined(BLKROGET) */
2426 static void hdev_parse_filename(const char *filename
, QDict
*options
,
2429 /* The prefix is optional, just as for "file". */
2430 strstart(filename
, "host_device:", &filename
);
2432 qdict_put_str(options
, "filename", filename
);
2435 static bool hdev_is_sg(BlockDriverState
*bs
)
2438 #if defined(__linux__)
2440 BDRVRawState
*s
= bs
->opaque
;
2442 struct sg_scsi_id scsiid
;
2446 if (stat(bs
->filename
, &st
) < 0 || !S_ISCHR(st
.st_mode
)) {
2450 ret
= ioctl(s
->fd
, SG_GET_VERSION_NUM
, &sg_version
);
2455 ret
= ioctl(s
->fd
, SG_GET_SCSI_ID
, &scsiid
);
2457 DPRINTF("SG device found: type=%d, version=%d\n",
2458 scsiid
.scsi_type
, sg_version
);
2467 static int hdev_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
2470 BDRVRawState
*s
= bs
->opaque
;
2471 Error
*local_err
= NULL
;
2474 #if defined(__APPLE__) && defined(__MACH__)
2476 * Caution: while qdict_get_str() is fine, getting non-string types
2477 * would require more care. When @options come from -blockdev or
2478 * blockdev_add, its members are typed according to the QAPI
2479 * schema, but when they come from -drive, they're all QString.
2481 const char *filename
= qdict_get_str(options
, "filename");
2482 char bsd_path
[MAXPATHLEN
] = "";
2483 bool error_occurred
= false;
2485 /* If using a real cdrom */
2486 if (strcmp(filename
, "/dev/cdrom") == 0) {
2487 char *mediaType
= NULL
;
2488 kern_return_t ret_val
;
2489 io_iterator_t mediaIterator
= 0;
2491 mediaType
= FindEjectableOpticalMedia(&mediaIterator
);
2492 if (mediaType
== NULL
) {
2493 error_setg(errp
, "Please make sure your CD/DVD is in the optical"
2495 error_occurred
= true;
2496 goto hdev_open_Mac_error
;
2499 ret_val
= GetBSDPath(mediaIterator
, bsd_path
, sizeof(bsd_path
), flags
);
2500 if (ret_val
!= KERN_SUCCESS
) {
2501 error_setg(errp
, "Could not get BSD path for optical drive");
2502 error_occurred
= true;
2503 goto hdev_open_Mac_error
;
2506 /* If a real optical drive was not found */
2507 if (bsd_path
[0] == '\0') {
2508 error_setg(errp
, "Failed to obtain bsd path for optical drive");
2509 error_occurred
= true;
2510 goto hdev_open_Mac_error
;
2513 /* If using a cdrom disc and finding a partition on the disc failed */
2514 if (strncmp(mediaType
, kIOCDMediaClass
, 9) == 0 &&
2515 setup_cdrom(bsd_path
, errp
) == false) {
2516 print_unmounting_directions(bsd_path
);
2517 error_occurred
= true;
2518 goto hdev_open_Mac_error
;
2521 qdict_put_str(options
, "filename", bsd_path
);
2523 hdev_open_Mac_error
:
2525 if (mediaIterator
) {
2526 IOObjectRelease(mediaIterator
);
2528 if (error_occurred
) {
2532 #endif /* defined(__APPLE__) && defined(__MACH__) */
2534 s
->type
= FTYPE_FILE
;
2536 ret
= raw_open_common(bs
, options
, flags
, 0, &local_err
);
2538 error_propagate(errp
, local_err
);
2539 #if defined(__APPLE__) && defined(__MACH__)
2541 filename
= bsd_path
;
2543 /* if a physical device experienced an error while being opened */
2544 if (strncmp(filename
, "/dev/", 5) == 0) {
2545 print_unmounting_directions(filename
);
2547 #endif /* defined(__APPLE__) && defined(__MACH__) */
2551 /* Since this does ioctl the device must be already opened */
2552 bs
->sg
= hdev_is_sg(bs
);
2554 if (flags
& BDRV_O_RDWR
) {
2555 ret
= check_hdev_writable(s
);
2558 error_setg_errno(errp
, -ret
, "The device is not writable");
2566 #if defined(__linux__)
2568 static BlockAIOCB
*hdev_aio_ioctl(BlockDriverState
*bs
,
2569 unsigned long int req
, void *buf
,
2570 BlockCompletionFunc
*cb
, void *opaque
)
2572 BDRVRawState
*s
= bs
->opaque
;
2573 RawPosixAIOData
*acb
;
2576 if (fd_open(bs
) < 0)
2579 acb
= g_new(RawPosixAIOData
, 1);
2581 acb
->aio_type
= QEMU_AIO_IOCTL
;
2582 acb
->aio_fildes
= s
->fd
;
2583 acb
->aio_offset
= 0;
2584 acb
->aio_ioctl_buf
= buf
;
2585 acb
->aio_ioctl_cmd
= req
;
2586 pool
= aio_get_thread_pool(bdrv_get_aio_context(bs
));
2587 return thread_pool_submit_aio(pool
, aio_worker
, acb
, cb
, opaque
);
2591 static int fd_open(BlockDriverState
*bs
)
2593 BDRVRawState
*s
= bs
->opaque
;
2595 /* this is just to ensure s->fd is sane (its called by io ops) */
2601 static coroutine_fn BlockAIOCB
*hdev_aio_pdiscard(BlockDriverState
*bs
,
2602 int64_t offset
, int count
,
2603 BlockCompletionFunc
*cb
, void *opaque
)
2605 BDRVRawState
*s
= bs
->opaque
;
2607 if (fd_open(bs
) < 0) {
2610 return paio_submit(bs
, s
->fd
, offset
, NULL
, count
,
2611 cb
, opaque
, QEMU_AIO_DISCARD
|QEMU_AIO_BLKDEV
);
2614 static coroutine_fn
int hdev_co_pwrite_zeroes(BlockDriverState
*bs
,
2615 int64_t offset
, int count
, BdrvRequestFlags flags
)
2617 BDRVRawState
*s
= bs
->opaque
;
2624 if (!(flags
& BDRV_REQ_MAY_UNMAP
)) {
2625 return paio_submit_co(bs
, s
->fd
, offset
, NULL
, count
,
2626 QEMU_AIO_WRITE_ZEROES
|QEMU_AIO_BLKDEV
);
2627 } else if (s
->discard_zeroes
) {
2628 return paio_submit_co(bs
, s
->fd
, offset
, NULL
, count
,
2629 QEMU_AIO_DISCARD
|QEMU_AIO_BLKDEV
);
2634 static int hdev_create(const char *filename
, QemuOpts
*opts
,
2639 struct stat stat_buf
;
2640 int64_t total_size
= 0;
2643 /* This function is used by both protocol block drivers and therefore either
2644 * of these prefixes may be given.
2645 * The return value has to be stored somewhere, otherwise this is an error
2646 * due to -Werror=unused-value. */
2648 strstart(filename
, "host_device:", &filename
) ||
2649 strstart(filename
, "host_cdrom:" , &filename
);
2653 ret
= raw_normalize_devicepath(&filename
);
2655 error_setg_errno(errp
, -ret
, "Could not normalize device path");
2659 /* Read out options */
2660 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
2663 fd
= qemu_open(filename
, O_WRONLY
| O_BINARY
);
2666 error_setg_errno(errp
, -ret
, "Could not open device");
2670 if (fstat(fd
, &stat_buf
) < 0) {
2672 error_setg_errno(errp
, -ret
, "Could not stat device");
2673 } else if (!S_ISBLK(stat_buf
.st_mode
) && !S_ISCHR(stat_buf
.st_mode
)) {
2675 "The given file is neither a block nor a character device");
2677 } else if (lseek(fd
, 0, SEEK_END
) < total_size
) {
2678 error_setg(errp
, "Device is too small");
2686 static BlockDriver bdrv_host_device
= {
2687 .format_name
= "host_device",
2688 .protocol_name
= "host_device",
2689 .instance_size
= sizeof(BDRVRawState
),
2690 .bdrv_needs_filename
= true,
2691 .bdrv_probe_device
= hdev_probe_device
,
2692 .bdrv_parse_filename
= hdev_parse_filename
,
2693 .bdrv_file_open
= hdev_open
,
2694 .bdrv_close
= raw_close
,
2695 .bdrv_reopen_prepare
= raw_reopen_prepare
,
2696 .bdrv_reopen_commit
= raw_reopen_commit
,
2697 .bdrv_reopen_abort
= raw_reopen_abort
,
2698 .bdrv_create
= hdev_create
,
2699 .create_opts
= &raw_create_opts
,
2700 .bdrv_co_pwrite_zeroes
= hdev_co_pwrite_zeroes
,
2702 .bdrv_co_preadv
= raw_co_preadv
,
2703 .bdrv_co_pwritev
= raw_co_pwritev
,
2704 .bdrv_aio_flush
= raw_aio_flush
,
2705 .bdrv_aio_pdiscard
= hdev_aio_pdiscard
,
2706 .bdrv_refresh_limits
= raw_refresh_limits
,
2707 .bdrv_io_plug
= raw_aio_plug
,
2708 .bdrv_io_unplug
= raw_aio_unplug
,
2710 .bdrv_truncate
= raw_truncate
,
2711 .bdrv_getlength
= raw_getlength
,
2712 .bdrv_get_info
= raw_get_info
,
2713 .bdrv_get_allocated_file_size
2714 = raw_get_allocated_file_size
,
2715 .bdrv_inactivate
= raw_inactivate
,
2716 .bdrv_invalidate_cache
= raw_invalidate_cache
,
2717 .bdrv_check_perm
= raw_check_perm
,
2718 .bdrv_set_perm
= raw_set_perm
,
2719 .bdrv_abort_perm_update
= raw_abort_perm_update
,
2720 .bdrv_probe_blocksizes
= hdev_probe_blocksizes
,
2721 .bdrv_probe_geometry
= hdev_probe_geometry
,
2723 /* generic scsi device */
2725 .bdrv_aio_ioctl
= hdev_aio_ioctl
,
2729 #if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2730 static void cdrom_parse_filename(const char *filename
, QDict
*options
,
2733 /* The prefix is optional, just as for "file". */
2734 strstart(filename
, "host_cdrom:", &filename
);
2736 qdict_put_str(options
, "filename", filename
);
2741 static int cdrom_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
2744 BDRVRawState
*s
= bs
->opaque
;
2748 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
2749 return raw_open_common(bs
, options
, flags
, O_NONBLOCK
, errp
);
2752 static int cdrom_probe_device(const char *filename
)
2758 fd
= qemu_open(filename
, O_RDONLY
| O_NONBLOCK
);
2762 ret
= fstat(fd
, &st
);
2763 if (ret
== -1 || !S_ISBLK(st
.st_mode
)) {
2767 /* Attempt to detect via a CDROM specific ioctl */
2768 ret
= ioctl(fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
2778 static bool cdrom_is_inserted(BlockDriverState
*bs
)
2780 BDRVRawState
*s
= bs
->opaque
;
2783 ret
= ioctl(s
->fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
2784 return ret
== CDS_DISC_OK
;
2787 static void cdrom_eject(BlockDriverState
*bs
, bool eject_flag
)
2789 BDRVRawState
*s
= bs
->opaque
;
2792 if (ioctl(s
->fd
, CDROMEJECT
, NULL
) < 0)
2793 perror("CDROMEJECT");
2795 if (ioctl(s
->fd
, CDROMCLOSETRAY
, NULL
) < 0)
2796 perror("CDROMEJECT");
2800 static void cdrom_lock_medium(BlockDriverState
*bs
, bool locked
)
2802 BDRVRawState
*s
= bs
->opaque
;
2804 if (ioctl(s
->fd
, CDROM_LOCKDOOR
, locked
) < 0) {
2806 * Note: an error can happen if the distribution automatically
2809 /* perror("CDROM_LOCKDOOR"); */
2813 static BlockDriver bdrv_host_cdrom
= {
2814 .format_name
= "host_cdrom",
2815 .protocol_name
= "host_cdrom",
2816 .instance_size
= sizeof(BDRVRawState
),
2817 .bdrv_needs_filename
= true,
2818 .bdrv_probe_device
= cdrom_probe_device
,
2819 .bdrv_parse_filename
= cdrom_parse_filename
,
2820 .bdrv_file_open
= cdrom_open
,
2821 .bdrv_close
= raw_close
,
2822 .bdrv_reopen_prepare
= raw_reopen_prepare
,
2823 .bdrv_reopen_commit
= raw_reopen_commit
,
2824 .bdrv_reopen_abort
= raw_reopen_abort
,
2825 .bdrv_create
= hdev_create
,
2826 .create_opts
= &raw_create_opts
,
2829 .bdrv_co_preadv
= raw_co_preadv
,
2830 .bdrv_co_pwritev
= raw_co_pwritev
,
2831 .bdrv_aio_flush
= raw_aio_flush
,
2832 .bdrv_refresh_limits
= raw_refresh_limits
,
2833 .bdrv_io_plug
= raw_aio_plug
,
2834 .bdrv_io_unplug
= raw_aio_unplug
,
2836 .bdrv_truncate
= raw_truncate
,
2837 .bdrv_getlength
= raw_getlength
,
2838 .has_variable_length
= true,
2839 .bdrv_get_allocated_file_size
2840 = raw_get_allocated_file_size
,
2842 /* removable device support */
2843 .bdrv_is_inserted
= cdrom_is_inserted
,
2844 .bdrv_eject
= cdrom_eject
,
2845 .bdrv_lock_medium
= cdrom_lock_medium
,
2847 /* generic scsi device */
2848 .bdrv_aio_ioctl
= hdev_aio_ioctl
,
2850 #endif /* __linux__ */
2852 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
2853 static int cdrom_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
2856 BDRVRawState
*s
= bs
->opaque
;
2857 Error
*local_err
= NULL
;
2862 ret
= raw_open_common(bs
, options
, flags
, 0, &local_err
);
2864 error_propagate(errp
, local_err
);
2868 /* make sure the door isn't locked at this time */
2869 ioctl(s
->fd
, CDIOCALLOW
);
2873 static int cdrom_probe_device(const char *filename
)
2875 if (strstart(filename
, "/dev/cd", NULL
) ||
2876 strstart(filename
, "/dev/acd", NULL
))
2881 static int cdrom_reopen(BlockDriverState
*bs
)
2883 BDRVRawState
*s
= bs
->opaque
;
2887 * Force reread of possibly changed/newly loaded disc,
2888 * FreeBSD seems to not notice sometimes...
2892 fd
= qemu_open(bs
->filename
, s
->open_flags
, 0644);
2899 /* make sure the door isn't locked at this time */
2900 ioctl(s
->fd
, CDIOCALLOW
);
2904 static bool cdrom_is_inserted(BlockDriverState
*bs
)
2906 return raw_getlength(bs
) > 0;
2909 static void cdrom_eject(BlockDriverState
*bs
, bool eject_flag
)
2911 BDRVRawState
*s
= bs
->opaque
;
2916 (void) ioctl(s
->fd
, CDIOCALLOW
);
2919 if (ioctl(s
->fd
, CDIOCEJECT
) < 0)
2920 perror("CDIOCEJECT");
2922 if (ioctl(s
->fd
, CDIOCCLOSE
) < 0)
2923 perror("CDIOCCLOSE");
2929 static void cdrom_lock_medium(BlockDriverState
*bs
, bool locked
)
2931 BDRVRawState
*s
= bs
->opaque
;
2935 if (ioctl(s
->fd
, (locked
? CDIOCPREVENT
: CDIOCALLOW
)) < 0) {
2937 * Note: an error can happen if the distribution automatically
2940 /* perror("CDROM_LOCKDOOR"); */
2944 static BlockDriver bdrv_host_cdrom
= {
2945 .format_name
= "host_cdrom",
2946 .protocol_name
= "host_cdrom",
2947 .instance_size
= sizeof(BDRVRawState
),
2948 .bdrv_needs_filename
= true,
2949 .bdrv_probe_device
= cdrom_probe_device
,
2950 .bdrv_parse_filename
= cdrom_parse_filename
,
2951 .bdrv_file_open
= cdrom_open
,
2952 .bdrv_close
= raw_close
,
2953 .bdrv_reopen_prepare
= raw_reopen_prepare
,
2954 .bdrv_reopen_commit
= raw_reopen_commit
,
2955 .bdrv_reopen_abort
= raw_reopen_abort
,
2956 .bdrv_create
= hdev_create
,
2957 .create_opts
= &raw_create_opts
,
2959 .bdrv_co_preadv
= raw_co_preadv
,
2960 .bdrv_co_pwritev
= raw_co_pwritev
,
2961 .bdrv_aio_flush
= raw_aio_flush
,
2962 .bdrv_refresh_limits
= raw_refresh_limits
,
2963 .bdrv_io_plug
= raw_aio_plug
,
2964 .bdrv_io_unplug
= raw_aio_unplug
,
2966 .bdrv_truncate
= raw_truncate
,
2967 .bdrv_getlength
= raw_getlength
,
2968 .has_variable_length
= true,
2969 .bdrv_get_allocated_file_size
2970 = raw_get_allocated_file_size
,
2972 /* removable device support */
2973 .bdrv_is_inserted
= cdrom_is_inserted
,
2974 .bdrv_eject
= cdrom_eject
,
2975 .bdrv_lock_medium
= cdrom_lock_medium
,
2977 #endif /* __FreeBSD__ */
2979 static void bdrv_file_init(void)
2982 * Register all the drivers. Note that order is important, the driver
2983 * registered last will get probed first.
2985 bdrv_register(&bdrv_file
);
2986 bdrv_register(&bdrv_host_device
);
2988 bdrv_register(&bdrv_host_cdrom
);
2990 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2991 bdrv_register(&bdrv_host_cdrom
);
2995 block_init(bdrv_file_init
);