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
25 #include "qemu/osdep.h"
26 #include "qapi/error.h"
27 #include "qemu/cutils.h"
28 #include "qemu/error-report.h"
29 #include "block/block-io.h"
30 #include "block/block_int.h"
31 #include "qemu/module.h"
32 #include "qemu/option.h"
33 #include "qemu/units.h"
34 #include "qemu/memalign.h"
36 #include "block/thread-pool.h"
38 #include "block/raw-aio.h"
39 #include "qapi/qmp/qdict.h"
40 #include "qapi/qmp/qstring.h"
42 #include "scsi/pr-manager.h"
43 #include "scsi/constants.h"
45 #if defined(__APPLE__) && (__MACH__)
46 #include <sys/ioctl.h>
47 #if defined(HAVE_HOST_BLOCK_DEVICE)
49 #include <sys/param.h>
50 #include <sys/mount.h>
51 #include <IOKit/IOKitLib.h>
52 #include <IOKit/IOBSD.h>
53 #include <IOKit/storage/IOMediaBSDClient.h>
54 #include <IOKit/storage/IOMedia.h>
55 #include <IOKit/storage/IOCDMedia.h>
56 //#include <IOKit/storage/IOCDTypes.h>
57 #include <IOKit/storage/IODVDMedia.h>
58 #include <CoreFoundation/CoreFoundation.h>
59 #endif /* defined(HAVE_HOST_BLOCK_DEVICE) */
63 #define _POSIX_PTHREAD_SEMANTICS 1
67 #include <sys/ioctl.h>
68 #include <sys/param.h>
69 #include <sys/syscall.h>
71 #if defined(CONFIG_BLKZONED)
72 #include <linux/blkzoned.h>
74 #include <linux/cdrom.h>
77 #include <linux/hdreg.h>
78 #include <linux/magic.h>
84 #define FS_NOCOW_FL 0x00800000 /* Do not cow file */
87 #if defined(CONFIG_FALLOCATE_PUNCH_HOLE) || defined(CONFIG_FALLOCATE_ZERO_RANGE)
88 #include <linux/falloc.h>
90 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
96 #include <sys/ioctl.h>
97 #include <sys/disklabel.h>
102 #include <sys/ioctl.h>
103 #include <sys/disklabel.h>
104 #include <sys/dkio.h>
105 #include <sys/disk.h>
109 #include <sys/ioctl.h>
110 #include <sys/diskslice.h>
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
{
144 /* The current permissions. */
146 uint64_t shared_perm
;
148 /* The perms bits whose corresponding bytes are already locked in
150 uint64_t locked_perm
;
151 uint64_t locked_shared_perm
;
153 uint64_t aio_max_batch
;
156 int perm_change_flags
;
157 BDRVReopenState
*reopen_state
;
160 bool has_write_zeroes
:1;
161 bool use_linux_aio
:1;
162 bool use_linux_io_uring
:1;
163 int64_t *offset
; /* offset of zone append operation */
164 int page_cache_inconsistent
; /* errno from fdatasync failure */
166 bool needs_alignment
;
167 bool force_alignment
;
169 bool check_cache_dropped
;
171 uint64_t discard_nb_ok
;
172 uint64_t discard_nb_failed
;
173 uint64_t discard_bytes_ok
;
179 typedef struct BDRVRawReopenState
{
182 bool check_cache_dropped
;
183 } BDRVRawReopenState
;
185 static int fd_open(BlockDriverState
*bs
)
187 BDRVRawState
*s
= bs
->opaque
;
189 /* this is just to ensure s->fd is sane (its called by io ops) */
196 static int64_t raw_getlength(BlockDriverState
*bs
);
198 typedef struct RawPosixAIOData
{
199 BlockDriverState
*bs
;
220 PreallocMode prealloc
;
224 unsigned int *nr_zones
;
225 BlockZoneDescriptor
*zones
;
233 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
234 static int cdrom_reopen(BlockDriverState
*bs
);
238 * Elide EAGAIN and EACCES details when failing to lock, as this
239 * indicates that the specified file region is already locked by
240 * another process, which is considered a common scenario.
242 #define raw_lock_error_setg_errno(errp, err, fmt, ...) \
244 if ((err) == EAGAIN || (err) == EACCES) { \
245 error_setg((errp), (fmt), ## __VA_ARGS__); \
247 error_setg_errno((errp), (err), (fmt), ## __VA_ARGS__); \
251 #if defined(__NetBSD__)
252 static int raw_normalize_devicepath(const char **filename
, Error
**errp
)
254 static char namebuf
[PATH_MAX
];
255 const char *dp
, *fname
;
259 dp
= strrchr(fname
, '/');
260 if (lstat(fname
, &sb
) < 0) {
261 error_setg_file_open(errp
, errno
, fname
);
265 if (!S_ISBLK(sb
.st_mode
)) {
270 snprintf(namebuf
, PATH_MAX
, "r%s", fname
);
272 snprintf(namebuf
, PATH_MAX
, "%.*s/r%s",
273 (int)(dp
- fname
), fname
, dp
+ 1);
276 warn_report("%s is a block device, using %s", fname
, *filename
);
281 static int raw_normalize_devicepath(const char **filename
, Error
**errp
)
288 * Get logical block size via ioctl. On success store it in @sector_size_p.
290 static int probe_logical_blocksize(int fd
, unsigned int *sector_size_p
)
292 unsigned int sector_size
;
293 bool success
= false;
297 static const unsigned long ioctl_list
[] = {
301 #ifdef DKIOCGETBLOCKSIZE
304 #ifdef DIOCGSECTORSIZE
309 /* Try a few ioctls to get the right size */
310 for (i
= 0; i
< (int)ARRAY_SIZE(ioctl_list
); i
++) {
311 if (ioctl(fd
, ioctl_list
[i
], §or_size
) >= 0) {
312 *sector_size_p
= sector_size
;
317 return success
? 0 : -errno
;
321 * Get physical block size of @fd.
322 * On success, store it in @blk_size and return 0.
323 * On failure, return -errno.
325 static int probe_physical_blocksize(int fd
, unsigned int *blk_size
)
328 if (ioctl(fd
, BLKPBSZGET
, blk_size
) < 0) {
338 * Returns true if no alignment restrictions are necessary even for files
339 * opened with O_DIRECT.
341 * raw_probe_alignment() probes the required alignment and assume that 1 means
342 * the probing failed, so it falls back to a safe default of 4k. This can be
343 * avoided if we know that byte alignment is okay for the file.
345 static bool dio_byte_aligned(int fd
)
351 ret
= fstatfs(fd
, &buf
);
352 if (ret
== 0 && buf
.f_type
== NFS_SUPER_MAGIC
) {
359 static bool raw_needs_alignment(BlockDriverState
*bs
)
361 BDRVRawState
*s
= bs
->opaque
;
363 if ((bs
->open_flags
& BDRV_O_NOCACHE
) != 0 && !dio_byte_aligned(s
->fd
)) {
367 return s
->force_alignment
;
370 /* Check if read is allowed with given memory buffer and length.
372 * This function is used to check O_DIRECT memory buffer and request alignment.
374 static bool raw_is_io_aligned(int fd
, void *buf
, size_t len
)
376 ssize_t ret
= pread(fd
, buf
, len
, 0);
383 /* The Linux kernel returns EINVAL for misaligned O_DIRECT reads. Ignore
384 * other errors (e.g. real I/O error), which could happen on a failed
385 * drive, since we only care about probing alignment.
387 if (errno
!= EINVAL
) {
395 static void raw_probe_alignment(BlockDriverState
*bs
, int fd
, Error
**errp
)
397 BDRVRawState
*s
= bs
->opaque
;
399 size_t max_align
= MAX(MAX_BLOCKSIZE
, qemu_real_host_page_size());
400 size_t alignments
[] = {1, 512, 1024, 2048, 4096};
402 /* For SCSI generic devices the alignment is not really used.
403 With buffered I/O, we don't have any restrictions. */
404 if (bdrv_is_sg(bs
) || !s
->needs_alignment
) {
405 bs
->bl
.request_alignment
= 1;
410 bs
->bl
.request_alignment
= 0;
412 /* Let's try to use the logical blocksize for the alignment. */
413 if (probe_logical_blocksize(fd
, &bs
->bl
.request_alignment
) < 0) {
414 bs
->bl
.request_alignment
= 0;
419 * The XFS ioctl definitions are shipped in extra packages that might
420 * not always be available. Since we just need the XFS_IOC_DIOINFO ioctl
421 * here, we simply use our own definition instead:
428 if (ioctl(fd
, _IOR('X', 30, struct xfs_dioattr
), &da
) >= 0) {
429 bs
->bl
.request_alignment
= da
.d_miniosz
;
430 /* The kernel returns wrong information for d_mem */
431 /* s->buf_align = da.d_mem; */
436 * If we could not get the sizes so far, we can only guess them. First try
437 * to detect request alignment, since it is more likely to succeed. Then
438 * try to detect buf_align, which cannot be detected in some cases (e.g.
439 * Gluster). If buf_align cannot be detected, we fallback to the value of
443 if (!bs
->bl
.request_alignment
) {
446 buf
= qemu_memalign(max_align
, max_align
);
447 for (i
= 0; i
< ARRAY_SIZE(alignments
); i
++) {
448 align
= alignments
[i
];
449 if (raw_is_io_aligned(fd
, buf
, align
)) {
450 /* Fallback to safe value. */
451 bs
->bl
.request_alignment
= (align
!= 1) ? align
: max_align
;
461 buf
= qemu_memalign(max_align
, 2 * max_align
);
462 for (i
= 0; i
< ARRAY_SIZE(alignments
); i
++) {
463 align
= alignments
[i
];
464 if (raw_is_io_aligned(fd
, buf
+ align
, max_align
)) {
465 /* Fallback to request_alignment. */
466 s
->buf_align
= (align
!= 1) ? align
: bs
->bl
.request_alignment
;
473 if (!s
->buf_align
|| !bs
->bl
.request_alignment
) {
474 error_setg(errp
, "Could not find working O_DIRECT alignment");
475 error_append_hint(errp
, "Try cache.direct=off\n");
479 static int check_hdev_writable(int fd
)
481 #if defined(BLKROGET)
482 /* Linux block devices can be configured "read-only" using blockdev(8).
483 * This is independent of device node permissions and therefore open(2)
484 * with O_RDWR succeeds. Actual writes fail with EPERM.
486 * bdrv_open() is supposed to fail if the disk is read-only. Explicitly
487 * check for read-only block devices so that Linux block devices behave
493 if (fstat(fd
, &st
)) {
497 if (!S_ISBLK(st
.st_mode
)) {
501 if (ioctl(fd
, BLKROGET
, &readonly
) < 0) {
508 #endif /* defined(BLKROGET) */
512 static void raw_parse_flags(int bdrv_flags
, int *open_flags
, bool has_writers
)
514 bool read_write
= false;
515 assert(open_flags
!= NULL
);
517 *open_flags
|= O_BINARY
;
518 *open_flags
&= ~O_ACCMODE
;
520 if (bdrv_flags
& BDRV_O_AUTO_RDONLY
) {
521 read_write
= has_writers
;
522 } else if (bdrv_flags
& BDRV_O_RDWR
) {
527 *open_flags
|= O_RDWR
;
529 *open_flags
|= O_RDONLY
;
532 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
533 * and O_DIRECT for no caching. */
534 if ((bdrv_flags
& BDRV_O_NOCACHE
)) {
535 *open_flags
|= O_DIRECT
;
539 static void raw_parse_filename(const char *filename
, QDict
*options
,
542 bdrv_parse_filename_strip_prefix(filename
, "file:", options
);
545 static QemuOptsList raw_runtime_opts
= {
547 .head
= QTAILQ_HEAD_INITIALIZER(raw_runtime_opts
.head
),
551 .type
= QEMU_OPT_STRING
,
552 .help
= "File name of the image",
556 .type
= QEMU_OPT_STRING
,
557 .help
= "host AIO implementation (threads, native, io_uring)",
560 .name
= "aio-max-batch",
561 .type
= QEMU_OPT_NUMBER
,
562 .help
= "AIO max batch size (0 = auto handled by AIO backend, default: 0)",
566 .type
= QEMU_OPT_STRING
,
567 .help
= "file locking mode (on/off/auto, default: auto)",
570 .name
= "pr-manager",
571 .type
= QEMU_OPT_STRING
,
572 .help
= "id of persistent reservation manager object (default: none)",
574 #if defined(__linux__)
576 .name
= "drop-cache",
577 .type
= QEMU_OPT_BOOL
,
578 .help
= "invalidate page cache during live migration (default: on)",
582 .name
= "x-check-cache-dropped",
583 .type
= QEMU_OPT_BOOL
,
584 .help
= "check that page cache was dropped on live migration (default: off)"
586 { /* end of list */ }
590 static const char *const mutable_opts
[] = { "x-check-cache-dropped", NULL
};
592 static int raw_open_common(BlockDriverState
*bs
, QDict
*options
,
593 int bdrv_flags
, int open_flags
,
594 bool device
, Error
**errp
)
596 BDRVRawState
*s
= bs
->opaque
;
598 Error
*local_err
= NULL
;
599 const char *filename
= NULL
;
601 BlockdevAioOptions aio
, aio_default
;
606 opts
= qemu_opts_create(&raw_runtime_opts
, NULL
, 0, &error_abort
);
607 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
612 filename
= qemu_opt_get(opts
, "filename");
614 ret
= raw_normalize_devicepath(&filename
, errp
);
619 if (bdrv_flags
& BDRV_O_NATIVE_AIO
) {
620 aio_default
= BLOCKDEV_AIO_OPTIONS_NATIVE
;
621 #ifdef CONFIG_LINUX_IO_URING
622 } else if (bdrv_flags
& BDRV_O_IO_URING
) {
623 aio_default
= BLOCKDEV_AIO_OPTIONS_IO_URING
;
626 aio_default
= BLOCKDEV_AIO_OPTIONS_THREADS
;
629 aio
= qapi_enum_parse(&BlockdevAioOptions_lookup
,
630 qemu_opt_get(opts
, "aio"),
631 aio_default
, &local_err
);
633 error_propagate(errp
, local_err
);
638 s
->use_linux_aio
= (aio
== BLOCKDEV_AIO_OPTIONS_NATIVE
);
639 #ifdef CONFIG_LINUX_IO_URING
640 s
->use_linux_io_uring
= (aio
== BLOCKDEV_AIO_OPTIONS_IO_URING
);
643 s
->aio_max_batch
= qemu_opt_get_number(opts
, "aio-max-batch", 0);
645 locking
= qapi_enum_parse(&OnOffAuto_lookup
,
646 qemu_opt_get(opts
, "locking"),
647 ON_OFF_AUTO_AUTO
, &local_err
);
649 error_propagate(errp
, local_err
);
656 if (!qemu_has_ofd_lock()) {
657 warn_report("File lock requested but OFD locking syscall is "
658 "unavailable, falling back to POSIX file locks");
659 error_printf("Due to the implementation, locks can be lost "
663 case ON_OFF_AUTO_OFF
:
666 case ON_OFF_AUTO_AUTO
:
667 s
->use_lock
= qemu_has_ofd_lock();
673 str
= qemu_opt_get(opts
, "pr-manager");
675 s
->pr_mgr
= pr_manager_lookup(str
, &local_err
);
677 error_propagate(errp
, local_err
);
683 s
->drop_cache
= qemu_opt_get_bool(opts
, "drop-cache", true);
684 s
->check_cache_dropped
= qemu_opt_get_bool(opts
, "x-check-cache-dropped",
687 s
->open_flags
= open_flags
;
688 raw_parse_flags(bdrv_flags
, &s
->open_flags
, false);
691 fd
= qemu_open(filename
, s
->open_flags
, errp
);
692 ret
= fd
< 0 ? -errno
: 0;
702 /* Check s->open_flags rather than bdrv_flags due to auto-read-only */
703 if (s
->open_flags
& O_RDWR
) {
704 ret
= check_hdev_writable(s
->fd
);
706 error_setg_errno(errp
, -ret
, "The device is not writable");
712 s
->shared_perm
= BLK_PERM_ALL
;
714 #ifdef CONFIG_LINUX_AIO
715 /* Currently Linux does AIO only for files opened with O_DIRECT */
716 if (s
->use_linux_aio
) {
717 if (!(s
->open_flags
& O_DIRECT
)) {
718 error_setg(errp
, "aio=native was specified, but it requires "
719 "cache.direct=on, which was not specified.");
723 if (!aio_setup_linux_aio(bdrv_get_aio_context(bs
), errp
)) {
724 error_prepend(errp
, "Unable to use native AIO: ");
729 if (s
->use_linux_aio
) {
730 error_setg(errp
, "aio=native was specified, but is not supported "
735 #endif /* !defined(CONFIG_LINUX_AIO) */
737 #ifdef CONFIG_LINUX_IO_URING
738 if (s
->use_linux_io_uring
) {
739 if (!aio_setup_linux_io_uring(bdrv_get_aio_context(bs
), errp
)) {
740 error_prepend(errp
, "Unable to use io_uring: ");
745 if (s
->use_linux_io_uring
) {
746 error_setg(errp
, "aio=io_uring was specified, but is not supported "
751 #endif /* !defined(CONFIG_LINUX_IO_URING) */
753 s
->has_discard
= true;
754 s
->has_write_zeroes
= true;
756 if (fstat(s
->fd
, &st
) < 0) {
758 error_setg_errno(errp
, errno
, "Could not stat file");
763 if (!S_ISREG(st
.st_mode
)) {
764 error_setg(errp
, "'%s' driver requires '%s' to be a regular file",
765 bs
->drv
->format_name
, bs
->filename
);
769 s
->has_fallocate
= true;
772 if (!(S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
773 error_setg(errp
, "'%s' driver requires '%s' to be either "
774 "a character or block device",
775 bs
->drv
->format_name
, bs
->filename
);
780 #ifdef CONFIG_BLKZONED
782 * The kernel page cache does not reliably work for writes to SWR zones
783 * of zoned block device because it can not guarantee the order of writes.
785 if ((bs
->bl
.zoned
!= BLK_Z_NONE
) &&
786 (!(s
->open_flags
& O_DIRECT
))) {
787 error_setg(errp
, "The driver supports zoned devices, and it requires "
788 "cache.direct=on, which was not specified.");
789 return -EINVAL
; /* No host kernel page cache */
793 if (S_ISBLK(st
.st_mode
)) {
795 /* On Linux 3.10, BLKDISCARD leaves stale data in the page cache. Do
796 * not rely on the contents of discarded blocks unless using O_DIRECT.
797 * Same for BLKZEROOUT.
799 if (!(bs
->open_flags
& BDRV_O_NOCACHE
)) {
800 s
->has_write_zeroes
= false;
805 if (S_ISCHR(st
.st_mode
)) {
807 * The file is a char device (disk), which on FreeBSD isn't behind
808 * a pager, so force all requests to be aligned. This is needed
809 * so QEMU makes sure all IO operations on the device are aligned
810 * to sector size, or else FreeBSD will reject them with EINVAL.
812 s
->force_alignment
= true;
815 s
->needs_alignment
= raw_needs_alignment(bs
);
817 bs
->supported_zero_flags
= BDRV_REQ_MAY_UNMAP
| BDRV_REQ_NO_FALLBACK
;
818 if (S_ISREG(st
.st_mode
)) {
819 /* When extending regular files, we get zeros from the OS */
820 bs
->supported_truncate_flags
= BDRV_REQ_ZERO_WRITE
;
824 if (ret
< 0 && s
->fd
!= -1) {
827 if (filename
&& (bdrv_flags
& BDRV_O_TEMPORARY
)) {
834 static int raw_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
837 BDRVRawState
*s
= bs
->opaque
;
839 s
->type
= FTYPE_FILE
;
840 return raw_open_common(bs
, options
, flags
, 0, false, errp
);
849 #define PERM_FOREACH(i) \
850 for ((i) = 0; (1ULL << (i)) <= BLK_PERM_ALL; i++)
852 /* Lock bytes indicated by @perm_lock_bits and @shared_perm_lock_bits in the
853 * file; if @unlock == true, also unlock the unneeded bytes.
854 * @shared_perm_lock_bits is the mask of all permissions that are NOT shared.
856 static int raw_apply_lock_bytes(BDRVRawState
*s
, int fd
,
857 uint64_t perm_lock_bits
,
858 uint64_t shared_perm_lock_bits
,
859 bool unlock
, Error
**errp
)
863 uint64_t locked_perm
, locked_shared_perm
;
866 locked_perm
= s
->locked_perm
;
867 locked_shared_perm
= s
->locked_shared_perm
;
870 * We don't have the previous bits, just lock/unlock for each of the
874 locked_perm
= BLK_PERM_ALL
;
875 locked_shared_perm
= BLK_PERM_ALL
;
878 locked_shared_perm
= 0;
883 int off
= RAW_LOCK_PERM_BASE
+ i
;
884 uint64_t bit
= (1ULL << i
);
885 if ((perm_lock_bits
& bit
) && !(locked_perm
& bit
)) {
886 ret
= qemu_lock_fd(fd
, off
, 1, false);
888 raw_lock_error_setg_errno(errp
, -ret
, "Failed to lock byte %d",
892 s
->locked_perm
|= bit
;
894 } else if (unlock
&& (locked_perm
& bit
) && !(perm_lock_bits
& bit
)) {
895 ret
= qemu_unlock_fd(fd
, off
, 1);
897 error_setg_errno(errp
, -ret
, "Failed to unlock byte %d", off
);
900 s
->locked_perm
&= ~bit
;
905 int off
= RAW_LOCK_SHARED_BASE
+ i
;
906 uint64_t bit
= (1ULL << i
);
907 if ((shared_perm_lock_bits
& bit
) && !(locked_shared_perm
& bit
)) {
908 ret
= qemu_lock_fd(fd
, off
, 1, false);
910 raw_lock_error_setg_errno(errp
, -ret
, "Failed to lock byte %d",
914 s
->locked_shared_perm
|= bit
;
916 } else if (unlock
&& (locked_shared_perm
& bit
) &&
917 !(shared_perm_lock_bits
& bit
)) {
918 ret
= qemu_unlock_fd(fd
, off
, 1);
920 error_setg_errno(errp
, -ret
, "Failed to unlock byte %d", off
);
923 s
->locked_shared_perm
&= ~bit
;
930 /* Check "unshared" bytes implied by @perm and ~@shared_perm in the file. */
931 static int raw_check_lock_bytes(int fd
, uint64_t perm
, uint64_t shared_perm
,
938 int off
= RAW_LOCK_SHARED_BASE
+ i
;
939 uint64_t p
= 1ULL << i
;
941 ret
= qemu_lock_fd_test(fd
, off
, 1, true);
943 char *perm_name
= bdrv_perm_names(p
);
945 raw_lock_error_setg_errno(errp
, -ret
,
946 "Failed to get \"%s\" lock",
954 int off
= RAW_LOCK_PERM_BASE
+ i
;
955 uint64_t p
= 1ULL << i
;
956 if (!(shared_perm
& p
)) {
957 ret
= qemu_lock_fd_test(fd
, off
, 1, true);
959 char *perm_name
= bdrv_perm_names(p
);
961 raw_lock_error_setg_errno(errp
, -ret
,
962 "Failed to get shared \"%s\" lock",
972 static int raw_handle_perm_lock(BlockDriverState
*bs
,
974 uint64_t new_perm
, uint64_t new_shared
,
977 BDRVRawState
*s
= bs
->opaque
;
979 Error
*local_err
= NULL
;
985 if (bdrv_get_flags(bs
) & BDRV_O_INACTIVE
) {
991 if ((s
->perm
| new_perm
) == s
->perm
&&
992 (s
->shared_perm
& new_shared
) == s
->shared_perm
)
995 * We are going to unlock bytes, it should not fail. If it fail due
996 * to some fs-dependent permission-unrelated reasons (which occurs
997 * sometimes on NFS and leads to abort in bdrv_replace_child) we
998 * can't prevent such errors by any check here. And we ignore them
999 * anyway in ABORT and COMMIT.
1003 ret
= raw_apply_lock_bytes(s
, s
->fd
, s
->perm
| new_perm
,
1004 ~s
->shared_perm
| ~new_shared
,
1007 ret
= raw_check_lock_bytes(s
->fd
, new_perm
, new_shared
, errp
);
1011 error_append_hint(errp
,
1012 "Is another process using the image [%s]?\n",
1015 /* fall through to unlock bytes. */
1017 raw_apply_lock_bytes(s
, s
->fd
, s
->perm
, ~s
->shared_perm
,
1020 /* Theoretically the above call only unlocks bytes and it cannot
1021 * fail. Something weird happened, report it.
1023 warn_report_err(local_err
);
1027 raw_apply_lock_bytes(s
, s
->fd
, new_perm
, ~new_shared
,
1030 /* Theoretically the above call only unlocks bytes and it cannot
1031 * fail. Something weird happened, report it.
1033 warn_report_err(local_err
);
1040 /* Sets a specific flag */
1041 static int fcntl_setfl(int fd
, int flag
)
1045 flags
= fcntl(fd
, F_GETFL
);
1049 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1) {
1055 static int raw_reconfigure_getfd(BlockDriverState
*bs
, int flags
,
1056 int *open_flags
, uint64_t perm
, bool force_dup
,
1059 BDRVRawState
*s
= bs
->opaque
;
1062 bool has_writers
= perm
&
1063 (BLK_PERM_WRITE
| BLK_PERM_WRITE_UNCHANGED
| BLK_PERM_RESIZE
);
1064 int fcntl_flags
= O_APPEND
| O_NONBLOCK
;
1066 fcntl_flags
|= O_NOATIME
;
1070 if (s
->type
== FTYPE_CD
) {
1071 *open_flags
|= O_NONBLOCK
;
1074 raw_parse_flags(flags
, open_flags
, has_writers
);
1077 /* Not all operating systems have O_ASYNC, and those that don't
1078 * will not let us track the state into rs->open_flags (typically
1079 * you achieve the same effect with an ioctl, for example I_SETSIG
1080 * on Solaris). But we do not use O_ASYNC, so that's fine.
1082 assert((s
->open_flags
& O_ASYNC
) == 0);
1085 if (!force_dup
&& *open_flags
== s
->open_flags
) {
1086 /* We're lucky, the existing fd is fine */
1090 if ((*open_flags
& ~fcntl_flags
) == (s
->open_flags
& ~fcntl_flags
)) {
1091 /* dup the original fd */
1092 fd
= qemu_dup(s
->fd
);
1094 ret
= fcntl_setfl(fd
, *open_flags
);
1102 /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
1104 const char *normalized_filename
= bs
->filename
;
1105 ret
= raw_normalize_devicepath(&normalized_filename
, errp
);
1107 fd
= qemu_open(normalized_filename
, *open_flags
, errp
);
1114 if (fd
!= -1 && (*open_flags
& O_RDWR
)) {
1115 ret
= check_hdev_writable(fd
);
1118 error_setg_errno(errp
, -ret
, "The device is not writable");
1126 static int raw_reopen_prepare(BDRVReopenState
*state
,
1127 BlockReopenQueue
*queue
, Error
**errp
)
1130 BDRVRawReopenState
*rs
;
1134 assert(state
!= NULL
);
1135 assert(state
->bs
!= NULL
);
1137 s
= state
->bs
->opaque
;
1139 state
->opaque
= g_new0(BDRVRawReopenState
, 1);
1142 /* Handle options changes */
1143 opts
= qemu_opts_create(&raw_runtime_opts
, NULL
, 0, &error_abort
);
1144 if (!qemu_opts_absorb_qdict(opts
, state
->options
, errp
)) {
1149 rs
->drop_cache
= qemu_opt_get_bool_del(opts
, "drop-cache", true);
1150 rs
->check_cache_dropped
=
1151 qemu_opt_get_bool_del(opts
, "x-check-cache-dropped", false);
1153 /* This driver's reopen function doesn't currently allow changing
1154 * other options, so let's put them back in the original QDict and
1155 * bdrv_reopen_prepare() will detect changes and complain. */
1156 qemu_opts_to_qdict(opts
, state
->options
);
1159 * As part of reopen prepare we also want to create new fd by
1160 * raw_reconfigure_getfd(). But it wants updated "perm", when in
1161 * bdrv_reopen_multiple() .bdrv_reopen_prepare() callback called prior to
1162 * permission update. Happily, permission update is always a part
1163 * (a separate stage) of bdrv_reopen_multiple() so we can rely on this
1164 * fact and reconfigure fd in raw_check_perm().
1167 s
->reopen_state
= state
;
1171 qemu_opts_del(opts
);
1175 static void raw_reopen_commit(BDRVReopenState
*state
)
1177 BDRVRawReopenState
*rs
= state
->opaque
;
1178 BDRVRawState
*s
= state
->bs
->opaque
;
1180 s
->drop_cache
= rs
->drop_cache
;
1181 s
->check_cache_dropped
= rs
->check_cache_dropped
;
1182 s
->open_flags
= rs
->open_flags
;
1183 g_free(state
->opaque
);
1184 state
->opaque
= NULL
;
1186 assert(s
->reopen_state
== state
);
1187 s
->reopen_state
= NULL
;
1191 static void raw_reopen_abort(BDRVReopenState
*state
)
1193 BDRVRawReopenState
*rs
= state
->opaque
;
1194 BDRVRawState
*s
= state
->bs
->opaque
;
1196 /* nothing to do if NULL, we didn't get far enough */
1201 g_free(state
->opaque
);
1202 state
->opaque
= NULL
;
1204 assert(s
->reopen_state
== state
);
1205 s
->reopen_state
= NULL
;
1208 static int hdev_get_max_hw_transfer(int fd
, struct stat
*st
)
1211 if (S_ISBLK(st
->st_mode
)) {
1212 unsigned short max_sectors
= 0;
1213 if (ioctl(fd
, BLKSECTGET
, &max_sectors
) == 0) {
1214 return max_sectors
* 512;
1218 if (ioctl(fd
, BLKSECTGET
, &max_bytes
) == 0) {
1229 * Get a sysfs attribute value as character string.
1232 static int get_sysfs_str_val(struct stat
*st
, const char *attribute
,
1234 g_autofree
char *sysfspath
= NULL
;
1237 if (!S_ISBLK(st
->st_mode
)) {
1241 sysfspath
= g_strdup_printf("/sys/dev/block/%u:%u/queue/%s",
1242 major(st
->st_rdev
), minor(st
->st_rdev
),
1244 if (!g_file_get_contents(sysfspath
, val
, &len
, NULL
)) {
1248 /* The file is ended with '\n' */
1251 if (*(p
+ len
- 1) == '\n') {
1252 *(p
+ len
- 1) = '\0';
1258 #if defined(CONFIG_BLKZONED)
1259 static int get_sysfs_zoned_model(struct stat
*st
, BlockZoneModel
*zoned
)
1261 g_autofree
char *val
= NULL
;
1264 ret
= get_sysfs_str_val(st
, "zoned", &val
);
1269 if (strcmp(val
, "host-managed") == 0) {
1271 } else if (strcmp(val
, "host-aware") == 0) {
1273 } else if (strcmp(val
, "none") == 0) {
1274 *zoned
= BLK_Z_NONE
;
1280 #endif /* defined(CONFIG_BLKZONED) */
1283 * Get a sysfs attribute value as a long integer.
1286 static long get_sysfs_long_val(struct stat
*st
, const char *attribute
)
1288 g_autofree
char *str
= NULL
;
1293 ret
= get_sysfs_str_val(st
, attribute
, &str
);
1298 /* The file is ended with '\n', pass 'end' to accept that. */
1299 ret
= qemu_strtol(str
, &end
, 10, &val
);
1300 if (ret
== 0 && end
&& *end
== '\0') {
1307 static int hdev_get_max_segments(int fd
, struct stat
*st
)
1312 if (S_ISCHR(st
->st_mode
)) {
1313 if (ioctl(fd
, SG_GET_SG_TABLESIZE
, &ret
) == 0) {
1318 return get_sysfs_long_val(st
, "max_segments");
1324 #if defined(CONFIG_BLKZONED)
1326 * If the reset_all flag is true, then the wps of zone whose state is
1327 * not readonly or offline should be all reset to the start sector.
1328 * Else, take the real wp of the device.
1330 static int get_zones_wp(BlockDriverState
*bs
, int fd
, int64_t offset
,
1331 unsigned int nrz
, bool reset_all
)
1333 struct blk_zone
*blkz
;
1335 uint64_t sector
= offset
>> BDRV_SECTOR_BITS
;
1336 BlockZoneWps
*wps
= bs
->wps
;
1337 unsigned int j
= offset
/ bs
->bl
.zone_size
;
1338 unsigned int n
= 0, i
= 0;
1340 rep_size
= sizeof(struct blk_zone_report
) + nrz
* sizeof(struct blk_zone
);
1341 g_autofree
struct blk_zone_report
*rep
= NULL
;
1343 rep
= g_malloc(rep_size
);
1344 blkz
= (struct blk_zone
*)(rep
+ 1);
1346 memset(rep
, 0, rep_size
);
1347 rep
->sector
= sector
;
1348 rep
->nr_zones
= nrz
- n
;
1351 ret
= ioctl(fd
, BLKREPORTZONE
, rep
);
1352 } while (ret
!= 0 && errno
== EINTR
);
1354 error_report("%d: ioctl BLKREPORTZONE at %" PRId64
" failed %d",
1359 if (!rep
->nr_zones
) {
1363 for (i
= 0; i
< rep
->nr_zones
; ++i
, ++n
, ++j
) {
1365 * The wp tracking cares only about sequential writes required and
1366 * sequential write preferred zones so that the wp can advance to
1367 * the right location.
1368 * Use the most significant bit of the wp location to indicate the
1369 * zone type: 0 for SWR/SWP zones and 1 for conventional zones.
1371 if (blkz
[i
].type
== BLK_ZONE_TYPE_CONVENTIONAL
) {
1372 wps
->wp
[j
] |= 1ULL << 63;
1374 switch(blkz
[i
].cond
) {
1375 case BLK_ZONE_COND_FULL
:
1376 case BLK_ZONE_COND_READONLY
:
1377 /* Zone not writable */
1378 wps
->wp
[j
] = (blkz
[i
].start
+ blkz
[i
].len
) << BDRV_SECTOR_BITS
;
1380 case BLK_ZONE_COND_OFFLINE
:
1381 /* Zone not writable nor readable */
1382 wps
->wp
[j
] = (blkz
[i
].start
) << BDRV_SECTOR_BITS
;
1386 wps
->wp
[j
] = blkz
[i
].start
<< BDRV_SECTOR_BITS
;
1388 wps
->wp
[j
] = blkz
[i
].wp
<< BDRV_SECTOR_BITS
;
1394 sector
= blkz
[i
- 1].start
+ blkz
[i
- 1].len
;
1400 static void update_zones_wp(BlockDriverState
*bs
, int fd
, int64_t offset
,
1403 if (get_zones_wp(bs
, fd
, offset
, nrz
, 0) < 0) {
1404 error_report("update zone wp failed");
1408 static void raw_refresh_zoned_limits(BlockDriverState
*bs
, struct stat
*st
,
1411 BDRVRawState
*s
= bs
->opaque
;
1412 BlockZoneModel zoned
;
1415 ret
= get_sysfs_zoned_model(st
, &zoned
);
1416 if (ret
< 0 || zoned
== BLK_Z_NONE
) {
1419 bs
->bl
.zoned
= zoned
;
1421 ret
= get_sysfs_long_val(st
, "max_open_zones");
1423 bs
->bl
.max_open_zones
= ret
;
1426 ret
= get_sysfs_long_val(st
, "max_active_zones");
1428 bs
->bl
.max_active_zones
= ret
;
1432 * The zoned device must at least have zone size and nr_zones fields.
1434 ret
= get_sysfs_long_val(st
, "chunk_sectors");
1436 error_setg_errno(errp
, -ret
, "Unable to read chunk_sectors "
1440 error_setg(errp
, "Read 0 from chunk_sectors sysfs attribute");
1443 bs
->bl
.zone_size
= ret
<< BDRV_SECTOR_BITS
;
1445 ret
= get_sysfs_long_val(st
, "nr_zones");
1447 error_setg_errno(errp
, -ret
, "Unable to read nr_zones "
1451 error_setg(errp
, "Read 0 from nr_zones sysfs attribute");
1454 bs
->bl
.nr_zones
= ret
;
1456 ret
= get_sysfs_long_val(st
, "zone_append_max_bytes");
1458 bs
->bl
.max_append_sectors
= ret
>> BDRV_SECTOR_BITS
;
1461 ret
= get_sysfs_long_val(st
, "physical_block_size");
1463 bs
->bl
.write_granularity
= ret
;
1466 /* The refresh_limits() function can be called multiple times. */
1468 bs
->wps
= g_malloc(sizeof(BlockZoneWps
) +
1469 sizeof(int64_t) * bs
->bl
.nr_zones
);
1470 ret
= get_zones_wp(bs
, s
->fd
, 0, bs
->bl
.nr_zones
, 0);
1472 error_setg_errno(errp
, -ret
, "report wps failed");
1475 qemu_co_mutex_init(&bs
->wps
->colock
);
1479 bs
->bl
.zoned
= BLK_Z_NONE
;
1483 #else /* !defined(CONFIG_BLKZONED) */
1484 static void raw_refresh_zoned_limits(BlockDriverState
*bs
, struct stat
*st
,
1487 bs
->bl
.zoned
= BLK_Z_NONE
;
1489 #endif /* !defined(CONFIG_BLKZONED) */
1491 static void raw_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
1493 BDRVRawState
*s
= bs
->opaque
;
1496 s
->needs_alignment
= raw_needs_alignment(bs
);
1497 raw_probe_alignment(bs
, s
->fd
, errp
);
1499 bs
->bl
.min_mem_alignment
= s
->buf_align
;
1500 bs
->bl
.opt_mem_alignment
= MAX(s
->buf_align
, qemu_real_host_page_size());
1503 * Maximum transfers are best effort, so it is okay to ignore any
1504 * errors. That said, based on the man page errors in fstat would be
1505 * very much unexpected; the only possible case seems to be ENOMEM.
1507 if (fstat(s
->fd
, &st
)) {
1511 #if defined(__APPLE__) && (__MACH__)
1514 if (!fstatfs(s
->fd
, &buf
)) {
1515 bs
->bl
.opt_transfer
= buf
.f_iosize
;
1516 bs
->bl
.pdiscard_alignment
= buf
.f_bsize
;
1520 if (bdrv_is_sg(bs
) || S_ISBLK(st
.st_mode
)) {
1521 int ret
= hdev_get_max_hw_transfer(s
->fd
, &st
);
1523 if (ret
> 0 && ret
<= BDRV_REQUEST_MAX_BYTES
) {
1524 bs
->bl
.max_hw_transfer
= ret
;
1527 ret
= hdev_get_max_segments(s
->fd
, &st
);
1529 bs
->bl
.max_hw_iov
= ret
;
1533 raw_refresh_zoned_limits(bs
, &st
, errp
);
1536 static int check_for_dasd(int fd
)
1539 struct dasd_information2_t info
= {0};
1541 return ioctl(fd
, BIODASDINFO2
, &info
);
1548 * Try to get @bs's logical and physical block size.
1549 * On success, store them in @bsz and return zero.
1550 * On failure, return negative errno.
1552 static int hdev_probe_blocksizes(BlockDriverState
*bs
, BlockSizes
*bsz
)
1554 BDRVRawState
*s
= bs
->opaque
;
1557 /* If DASD or zoned devices, get blocksizes */
1558 if (check_for_dasd(s
->fd
) < 0) {
1559 /* zoned devices are not DASD */
1560 if (bs
->bl
.zoned
== BLK_Z_NONE
) {
1564 ret
= probe_logical_blocksize(s
->fd
, &bsz
->log
);
1568 return probe_physical_blocksize(s
->fd
, &bsz
->phys
);
1572 * Try to get @bs's geometry: cyls, heads, sectors.
1573 * On success, store them in @geo and return 0.
1574 * On failure return -errno.
1575 * (Allows block driver to assign default geometry values that guest sees)
1578 static int hdev_probe_geometry(BlockDriverState
*bs
, HDGeometry
*geo
)
1580 BDRVRawState
*s
= bs
->opaque
;
1581 struct hd_geometry ioctl_geo
= {0};
1583 /* If DASD, get its geometry */
1584 if (check_for_dasd(s
->fd
) < 0) {
1587 if (ioctl(s
->fd
, HDIO_GETGEO
, &ioctl_geo
) < 0) {
1590 /* HDIO_GETGEO may return success even though geo contains zeros
1591 (e.g. certain multipath setups) */
1592 if (!ioctl_geo
.heads
|| !ioctl_geo
.sectors
|| !ioctl_geo
.cylinders
) {
1595 /* Do not return a geometry for partition */
1596 if (ioctl_geo
.start
!= 0) {
1599 geo
->heads
= ioctl_geo
.heads
;
1600 geo
->sectors
= ioctl_geo
.sectors
;
1601 geo
->cylinders
= ioctl_geo
.cylinders
;
1605 #else /* __linux__ */
1606 static int hdev_probe_geometry(BlockDriverState
*bs
, HDGeometry
*geo
)
1612 #if defined(__linux__)
1613 static int handle_aiocb_ioctl(void *opaque
)
1615 RawPosixAIOData
*aiocb
= opaque
;
1618 ret
= RETRY_ON_EINTR(
1619 ioctl(aiocb
->aio_fildes
, aiocb
->ioctl
.cmd
, aiocb
->ioctl
.buf
)
1629 static int handle_aiocb_flush(void *opaque
)
1631 RawPosixAIOData
*aiocb
= opaque
;
1632 BDRVRawState
*s
= aiocb
->bs
->opaque
;
1635 if (s
->page_cache_inconsistent
) {
1636 return -s
->page_cache_inconsistent
;
1639 ret
= qemu_fdatasync(aiocb
->aio_fildes
);
1641 trace_file_flush_fdatasync_failed(errno
);
1643 /* There is no clear definition of the semantics of a failing fsync(),
1644 * so we may have to assume the worst. The sad truth is that this
1645 * assumption is correct for Linux. Some pages are now probably marked
1646 * clean in the page cache even though they are inconsistent with the
1647 * on-disk contents. The next fdatasync() call would succeed, but no
1648 * further writeback attempt will be made. We can't get back to a state
1649 * in which we know what is on disk (we would have to rewrite
1650 * everything that was touched since the last fdatasync() at least), so
1651 * make bdrv_flush() fail permanently. Given that the behaviour isn't
1652 * really defined, I have little hope that other OSes are doing better.
1654 * Obviously, this doesn't affect O_DIRECT, which bypasses the page
1656 if ((s
->open_flags
& O_DIRECT
) == 0) {
1657 s
->page_cache_inconsistent
= errno
;
1664 #ifdef CONFIG_PREADV
1666 static bool preadv_present
= true;
1669 qemu_preadv(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
1671 return preadv(fd
, iov
, nr_iov
, offset
);
1675 qemu_pwritev(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
1677 return pwritev(fd
, iov
, nr_iov
, offset
);
1682 static bool preadv_present
= false;
1685 qemu_preadv(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
1691 qemu_pwritev(int fd
, const struct iovec
*iov
, int nr_iov
, off_t offset
)
1698 static ssize_t
handle_aiocb_rw_vector(RawPosixAIOData
*aiocb
)
1702 len
= RETRY_ON_EINTR(
1703 (aiocb
->aio_type
& (QEMU_AIO_WRITE
| QEMU_AIO_ZONE_APPEND
)) ?
1704 qemu_pwritev(aiocb
->aio_fildes
,
1707 aiocb
->aio_offset
) :
1708 qemu_preadv(aiocb
->aio_fildes
,
1721 * Read/writes the data to/from a given linear buffer.
1723 * Returns the number of bytes handles or -errno in case of an error. Short
1724 * reads are only returned if the end of the file is reached.
1726 static ssize_t
handle_aiocb_rw_linear(RawPosixAIOData
*aiocb
, char *buf
)
1731 while (offset
< aiocb
->aio_nbytes
) {
1732 if (aiocb
->aio_type
& (QEMU_AIO_WRITE
| QEMU_AIO_ZONE_APPEND
)) {
1733 len
= pwrite(aiocb
->aio_fildes
,
1734 (const char *)buf
+ offset
,
1735 aiocb
->aio_nbytes
- offset
,
1736 aiocb
->aio_offset
+ offset
);
1738 len
= pread(aiocb
->aio_fildes
,
1740 aiocb
->aio_nbytes
- offset
,
1741 aiocb
->aio_offset
+ offset
);
1743 if (len
== -1 && errno
== EINTR
) {
1745 } else if (len
== -1 && errno
== EINVAL
&&
1746 (aiocb
->bs
->open_flags
& BDRV_O_NOCACHE
) &&
1747 !(aiocb
->aio_type
& QEMU_AIO_WRITE
) &&
1749 /* O_DIRECT pread() may fail with EINVAL when offset is unaligned
1750 * after a short read. Assume that O_DIRECT short reads only occur
1751 * at EOF. Therefore this is a short read, not an I/O error.
1754 } else if (len
== -1) {
1757 } else if (len
== 0) {
1766 static int handle_aiocb_rw(void *opaque
)
1768 RawPosixAIOData
*aiocb
= opaque
;
1772 if (!(aiocb
->aio_type
& QEMU_AIO_MISALIGNED
)) {
1774 * If there is just a single buffer, and it is properly aligned
1775 * we can just use plain pread/pwrite without any problems.
1777 if (aiocb
->io
.niov
== 1) {
1778 nbytes
= handle_aiocb_rw_linear(aiocb
, aiocb
->io
.iov
->iov_base
);
1782 * We have more than one iovec, and all are properly aligned.
1784 * Try preadv/pwritev first and fall back to linearizing the
1785 * buffer if it's not supported.
1787 if (preadv_present
) {
1788 nbytes
= handle_aiocb_rw_vector(aiocb
);
1789 if (nbytes
== aiocb
->aio_nbytes
||
1790 (nbytes
< 0 && nbytes
!= -ENOSYS
)) {
1793 preadv_present
= false;
1797 * XXX(hch): short read/write. no easy way to handle the reminder
1798 * using these interfaces. For now retry using plain
1804 * Ok, we have to do it the hard way, copy all segments into
1805 * a single aligned buffer.
1807 buf
= qemu_try_blockalign(aiocb
->bs
, aiocb
->aio_nbytes
);
1813 if (aiocb
->aio_type
& QEMU_AIO_WRITE
) {
1817 for (i
= 0; i
< aiocb
->io
.niov
; ++i
) {
1818 memcpy(p
, aiocb
->io
.iov
[i
].iov_base
, aiocb
->io
.iov
[i
].iov_len
);
1819 p
+= aiocb
->io
.iov
[i
].iov_len
;
1821 assert(p
- buf
== aiocb
->aio_nbytes
);
1824 nbytes
= handle_aiocb_rw_linear(aiocb
, buf
);
1825 if (!(aiocb
->aio_type
& (QEMU_AIO_WRITE
| QEMU_AIO_ZONE_APPEND
))) {
1827 size_t count
= aiocb
->aio_nbytes
, copy
;
1830 for (i
= 0; i
< aiocb
->io
.niov
&& count
; ++i
) {
1832 if (copy
> aiocb
->io
.iov
[i
].iov_len
) {
1833 copy
= aiocb
->io
.iov
[i
].iov_len
;
1835 memcpy(aiocb
->io
.iov
[i
].iov_base
, p
, copy
);
1836 assert(count
>= copy
);
1845 if (nbytes
== aiocb
->aio_nbytes
) {
1847 } else if (nbytes
>= 0 && nbytes
< aiocb
->aio_nbytes
) {
1848 if (aiocb
->aio_type
& QEMU_AIO_WRITE
) {
1851 iov_memset(aiocb
->io
.iov
, aiocb
->io
.niov
, nbytes
,
1852 0, aiocb
->aio_nbytes
- nbytes
);
1861 #if defined(CONFIG_FALLOCATE) || defined(BLKZEROOUT) || defined(BLKDISCARD)
1862 static int translate_err(int err
)
1864 if (err
== -ENODEV
|| err
== -ENOSYS
|| err
== -EOPNOTSUPP
||
1872 #ifdef CONFIG_FALLOCATE
1873 static int do_fallocate(int fd
, int mode
, off_t offset
, off_t len
)
1876 if (fallocate(fd
, mode
, offset
, len
) == 0) {
1879 } while (errno
== EINTR
);
1880 return translate_err(-errno
);
1884 static ssize_t
handle_aiocb_write_zeroes_block(RawPosixAIOData
*aiocb
)
1887 BDRVRawState
*s
= aiocb
->bs
->opaque
;
1889 if (!s
->has_write_zeroes
) {
1894 /* The BLKZEROOUT implementation in the kernel doesn't set
1895 * BLKDEV_ZERO_NOFALLBACK, so we can't call this if we have to avoid slow
1897 if (!(aiocb
->aio_type
& QEMU_AIO_NO_FALLBACK
)) {
1899 uint64_t range
[2] = { aiocb
->aio_offset
, aiocb
->aio_nbytes
};
1900 if (ioctl(aiocb
->aio_fildes
, BLKZEROOUT
, range
) == 0) {
1903 } while (errno
== EINTR
);
1905 ret
= translate_err(-errno
);
1906 if (ret
== -ENOTSUP
) {
1907 s
->has_write_zeroes
= false;
1915 static int handle_aiocb_write_zeroes(void *opaque
)
1917 RawPosixAIOData
*aiocb
= opaque
;
1918 #ifdef CONFIG_FALLOCATE
1919 BDRVRawState
*s
= aiocb
->bs
->opaque
;
1923 if (aiocb
->aio_type
& QEMU_AIO_BLKDEV
) {
1924 return handle_aiocb_write_zeroes_block(aiocb
);
1927 #ifdef CONFIG_FALLOCATE_ZERO_RANGE
1928 if (s
->has_write_zeroes
) {
1929 int ret
= do_fallocate(s
->fd
, FALLOC_FL_ZERO_RANGE
,
1930 aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1931 if (ret
== -ENOTSUP
) {
1932 s
->has_write_zeroes
= false;
1933 } else if (ret
== 0 || ret
!= -EINVAL
) {
1937 * Note: Some file systems do not like unaligned byte ranges, and
1938 * return EINVAL in such a case, though they should not do it according
1939 * to the man-page of fallocate(). Thus we simply ignore this return
1940 * value and try the other fallbacks instead.
1945 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1946 if (s
->has_discard
&& s
->has_fallocate
) {
1947 int ret
= do_fallocate(s
->fd
,
1948 FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
,
1949 aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1951 ret
= do_fallocate(s
->fd
, 0, aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1952 if (ret
== 0 || ret
!= -ENOTSUP
) {
1955 s
->has_fallocate
= false;
1956 } else if (ret
== -EINVAL
) {
1958 * Some file systems like older versions of GPFS do not like un-
1959 * aligned byte ranges, and return EINVAL in such a case, though
1960 * they should not do it according to the man-page of fallocate().
1961 * Warn about the bad filesystem and try the final fallback instead.
1963 warn_report_once("Your file system is misbehaving: "
1964 "fallocate(FALLOC_FL_PUNCH_HOLE) returned EINVAL. "
1965 "Please report this bug to your file system "
1967 } else if (ret
!= -ENOTSUP
) {
1970 s
->has_discard
= false;
1975 #ifdef CONFIG_FALLOCATE
1976 /* Last resort: we are trying to extend the file with zeroed data. This
1977 * can be done via fallocate(fd, 0) */
1978 len
= raw_getlength(aiocb
->bs
);
1979 if (s
->has_fallocate
&& len
>= 0 && aiocb
->aio_offset
>= len
) {
1980 int ret
= do_fallocate(s
->fd
, 0, aiocb
->aio_offset
, aiocb
->aio_nbytes
);
1981 if (ret
== 0 || ret
!= -ENOTSUP
) {
1984 s
->has_fallocate
= false;
1991 static int handle_aiocb_write_zeroes_unmap(void *opaque
)
1993 RawPosixAIOData
*aiocb
= opaque
;
1994 BDRVRawState
*s G_GNUC_UNUSED
= aiocb
->bs
->opaque
;
1996 /* First try to write zeros and unmap at the same time */
1998 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1999 int ret
= do_fallocate(s
->fd
, FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
,
2000 aiocb
->aio_offset
, aiocb
->aio_nbytes
);
2011 /* If we couldn't manage to unmap while guaranteed that the area reads as
2012 * all-zero afterwards, just write zeroes without unmapping */
2013 return handle_aiocb_write_zeroes(aiocb
);
2016 #ifndef HAVE_COPY_FILE_RANGE
2017 static off_t
copy_file_range(int in_fd
, off_t
*in_off
, int out_fd
,
2018 off_t
*out_off
, size_t len
, unsigned int flags
)
2020 #ifdef __NR_copy_file_range
2021 return syscall(__NR_copy_file_range
, in_fd
, in_off
, out_fd
,
2022 out_off
, len
, flags
);
2031 * parse_zone - Fill a zone descriptor
2033 #if defined(CONFIG_BLKZONED)
2034 static inline int parse_zone(struct BlockZoneDescriptor
*zone
,
2035 const struct blk_zone
*blkz
) {
2036 zone
->start
= blkz
->start
<< BDRV_SECTOR_BITS
;
2037 zone
->length
= blkz
->len
<< BDRV_SECTOR_BITS
;
2038 zone
->wp
= blkz
->wp
<< BDRV_SECTOR_BITS
;
2040 #ifdef HAVE_BLK_ZONE_REP_CAPACITY
2041 zone
->cap
= blkz
->capacity
<< BDRV_SECTOR_BITS
;
2043 zone
->cap
= blkz
->len
<< BDRV_SECTOR_BITS
;
2046 switch (blkz
->type
) {
2047 case BLK_ZONE_TYPE_SEQWRITE_REQ
:
2048 zone
->type
= BLK_ZT_SWR
;
2050 case BLK_ZONE_TYPE_SEQWRITE_PREF
:
2051 zone
->type
= BLK_ZT_SWP
;
2053 case BLK_ZONE_TYPE_CONVENTIONAL
:
2054 zone
->type
= BLK_ZT_CONV
;
2057 error_report("Unsupported zone type: 0x%x", blkz
->type
);
2061 switch (blkz
->cond
) {
2062 case BLK_ZONE_COND_NOT_WP
:
2063 zone
->state
= BLK_ZS_NOT_WP
;
2065 case BLK_ZONE_COND_EMPTY
:
2066 zone
->state
= BLK_ZS_EMPTY
;
2068 case BLK_ZONE_COND_IMP_OPEN
:
2069 zone
->state
= BLK_ZS_IOPEN
;
2071 case BLK_ZONE_COND_EXP_OPEN
:
2072 zone
->state
= BLK_ZS_EOPEN
;
2074 case BLK_ZONE_COND_CLOSED
:
2075 zone
->state
= BLK_ZS_CLOSED
;
2077 case BLK_ZONE_COND_READONLY
:
2078 zone
->state
= BLK_ZS_RDONLY
;
2080 case BLK_ZONE_COND_FULL
:
2081 zone
->state
= BLK_ZS_FULL
;
2083 case BLK_ZONE_COND_OFFLINE
:
2084 zone
->state
= BLK_ZS_OFFLINE
;
2087 error_report("Unsupported zone state: 0x%x", blkz
->cond
);
2094 #if defined(CONFIG_BLKZONED)
2095 static int handle_aiocb_zone_report(void *opaque
)
2097 RawPosixAIOData
*aiocb
= opaque
;
2098 int fd
= aiocb
->aio_fildes
;
2099 unsigned int *nr_zones
= aiocb
->zone_report
.nr_zones
;
2100 BlockZoneDescriptor
*zones
= aiocb
->zone_report
.zones
;
2101 /* zoned block devices use 512-byte sectors */
2102 uint64_t sector
= aiocb
->aio_offset
/ 512;
2104 struct blk_zone
*blkz
;
2108 unsigned int n
= 0, i
= 0;
2111 rep_size
= sizeof(struct blk_zone_report
) + nrz
* sizeof(struct blk_zone
);
2112 g_autofree
struct blk_zone_report
*rep
= NULL
;
2113 rep
= g_malloc(rep_size
);
2115 blkz
= (struct blk_zone
*)(rep
+ 1);
2117 memset(rep
, 0, rep_size
);
2118 rep
->sector
= sector
;
2119 rep
->nr_zones
= nrz
- n
;
2122 ret
= ioctl(fd
, BLKREPORTZONE
, rep
);
2123 } while (ret
!= 0 && errno
== EINTR
);
2125 error_report("%d: ioctl BLKREPORTZONE at %" PRId64
" failed %d",
2130 if (!rep
->nr_zones
) {
2134 for (i
= 0; i
< rep
->nr_zones
; i
++, n
++) {
2135 ret
= parse_zone(&zones
[n
], &blkz
[i
]);
2140 /* The next report should start after the last zone reported */
2141 sector
= blkz
[i
].start
+ blkz
[i
].len
;
2150 #if defined(CONFIG_BLKZONED)
2151 static int handle_aiocb_zone_mgmt(void *opaque
)
2153 RawPosixAIOData
*aiocb
= opaque
;
2154 int fd
= aiocb
->aio_fildes
;
2155 uint64_t sector
= aiocb
->aio_offset
/ 512;
2156 int64_t nr_sectors
= aiocb
->aio_nbytes
/ 512;
2157 struct blk_zone_range range
;
2160 /* Execute the operation */
2161 range
.sector
= sector
;
2162 range
.nr_sectors
= nr_sectors
;
2164 ret
= ioctl(fd
, aiocb
->zone_mgmt
.op
, &range
);
2165 } while (ret
!= 0 && errno
== EINTR
);
2167 return ret
< 0 ? -errno
: ret
;
2171 static int handle_aiocb_copy_range(void *opaque
)
2173 RawPosixAIOData
*aiocb
= opaque
;
2174 uint64_t bytes
= aiocb
->aio_nbytes
;
2175 off_t in_off
= aiocb
->aio_offset
;
2176 off_t out_off
= aiocb
->copy_range
.aio_offset2
;
2179 ssize_t ret
= copy_file_range(aiocb
->aio_fildes
, &in_off
,
2180 aiocb
->copy_range
.aio_fd2
, &out_off
,
2182 trace_file_copy_file_range(aiocb
->bs
, aiocb
->aio_fildes
, in_off
,
2183 aiocb
->copy_range
.aio_fd2
, out_off
, bytes
,
2186 /* No progress (e.g. when beyond EOF), let the caller fall back to
2205 static int handle_aiocb_discard(void *opaque
)
2207 RawPosixAIOData
*aiocb
= opaque
;
2209 BDRVRawState
*s
= aiocb
->bs
->opaque
;
2211 if (!s
->has_discard
) {
2215 if (aiocb
->aio_type
& QEMU_AIO_BLKDEV
) {
2218 uint64_t range
[2] = { aiocb
->aio_offset
, aiocb
->aio_nbytes
};
2219 if (ioctl(aiocb
->aio_fildes
, BLKDISCARD
, range
) == 0) {
2222 } while (errno
== EINTR
);
2224 ret
= translate_err(-errno
);
2227 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
2228 ret
= do_fallocate(s
->fd
, FALLOC_FL_PUNCH_HOLE
| FALLOC_FL_KEEP_SIZE
,
2229 aiocb
->aio_offset
, aiocb
->aio_nbytes
);
2230 ret
= translate_err(ret
);
2231 #elif defined(__APPLE__) && (__MACH__)
2232 fpunchhole_t fpunchhole
;
2233 fpunchhole
.fp_flags
= 0;
2234 fpunchhole
.reserved
= 0;
2235 fpunchhole
.fp_offset
= aiocb
->aio_offset
;
2236 fpunchhole
.fp_length
= aiocb
->aio_nbytes
;
2237 if (fcntl(s
->fd
, F_PUNCHHOLE
, &fpunchhole
) == -1) {
2238 ret
= errno
== ENODEV
? -ENOTSUP
: -errno
;
2245 if (ret
== -ENOTSUP
) {
2246 s
->has_discard
= false;
2252 * Help alignment probing by allocating the first block.
2254 * When reading with direct I/O from unallocated area on Gluster backed by XFS,
2255 * reading succeeds regardless of request length. In this case we fallback to
2256 * safe alignment which is not optimal. Allocating the first block avoids this
2259 * fd may be opened with O_DIRECT, but we don't know the buffer alignment or
2260 * request alignment, so we use safe values.
2262 * Returns: 0 on success, -errno on failure. Since this is an optimization,
2263 * caller may ignore failures.
2265 static int allocate_first_block(int fd
, size_t max_size
)
2267 size_t write_size
= (max_size
< MAX_BLOCKSIZE
)
2270 size_t max_align
= MAX(MAX_BLOCKSIZE
, qemu_real_host_page_size());
2275 buf
= qemu_memalign(max_align
, write_size
);
2276 memset(buf
, 0, write_size
);
2278 n
= RETRY_ON_EINTR(pwrite(fd
, buf
, write_size
, 0));
2280 ret
= (n
== -1) ? -errno
: 0;
2286 static int handle_aiocb_truncate(void *opaque
)
2288 RawPosixAIOData
*aiocb
= opaque
;
2290 int64_t current_length
= 0;
2293 int fd
= aiocb
->aio_fildes
;
2294 int64_t offset
= aiocb
->aio_offset
;
2295 PreallocMode prealloc
= aiocb
->truncate
.prealloc
;
2296 Error
**errp
= aiocb
->truncate
.errp
;
2298 if (fstat(fd
, &st
) < 0) {
2300 error_setg_errno(errp
, -result
, "Could not stat file");
2304 current_length
= st
.st_size
;
2305 if (current_length
> offset
&& prealloc
!= PREALLOC_MODE_OFF
) {
2306 error_setg(errp
, "Cannot use preallocation for shrinking files");
2311 #ifdef CONFIG_POSIX_FALLOCATE
2312 case PREALLOC_MODE_FALLOC
:
2314 * Truncating before posix_fallocate() makes it about twice slower on
2315 * file systems that do not support fallocate(), trying to check if a
2316 * block is allocated before allocating it, so don't do that here.
2318 if (offset
!= current_length
) {
2319 result
= -posix_fallocate(fd
, current_length
,
2320 offset
- current_length
);
2322 /* posix_fallocate() doesn't set errno. */
2323 error_setg_errno(errp
, -result
,
2324 "Could not preallocate new data");
2325 } else if (current_length
== 0) {
2327 * posix_fallocate() uses fallocate() if the filesystem
2328 * supports it, or fallback to manually writing zeroes. If
2329 * fallocate() was used, unaligned reads from the fallocated
2330 * area in raw_probe_alignment() will succeed, hence we need to
2331 * allocate the first block.
2333 * Optimize future alignment probing; ignore failures.
2335 allocate_first_block(fd
, offset
);
2342 case PREALLOC_MODE_FULL
:
2344 int64_t num
= 0, left
= offset
- current_length
;
2348 * Knowing the final size from the beginning could allow the file
2349 * system driver to do less allocations and possibly avoid
2350 * fragmentation of the file.
2352 if (ftruncate(fd
, offset
) != 0) {
2354 error_setg_errno(errp
, -result
, "Could not resize file");
2358 buf
= g_malloc0(65536);
2360 seek_result
= lseek(fd
, current_length
, SEEK_SET
);
2361 if (seek_result
< 0) {
2363 error_setg_errno(errp
, -result
,
2364 "Failed to seek to the old end of file");
2369 num
= MIN(left
, 65536);
2370 result
= write(fd
, buf
, num
);
2372 if (errno
== EINTR
) {
2376 error_setg_errno(errp
, -result
,
2377 "Could not write zeros for preallocation");
2386 error_setg_errno(errp
, -result
,
2387 "Could not flush file to disk");
2393 case PREALLOC_MODE_OFF
:
2394 if (ftruncate(fd
, offset
) != 0) {
2396 error_setg_errno(errp
, -result
, "Could not resize file");
2397 } else if (current_length
== 0 && offset
> current_length
) {
2398 /* Optimize future alignment probing; ignore failures. */
2399 allocate_first_block(fd
, offset
);
2404 error_setg(errp
, "Unsupported preallocation mode: %s",
2405 PreallocMode_str(prealloc
));
2411 if (ftruncate(fd
, current_length
) < 0) {
2412 error_report("Failed to restore old file length: %s",
2421 static int coroutine_fn
raw_thread_pool_submit(ThreadPoolFunc func
, void *arg
)
2423 return thread_pool_submit_co(func
, arg
);
2427 * Check if all memory in this vector is sector aligned.
2429 static bool bdrv_qiov_is_aligned(BlockDriverState
*bs
, QEMUIOVector
*qiov
)
2432 size_t alignment
= bdrv_min_mem_align(bs
);
2433 size_t len
= bs
->bl
.request_alignment
;
2436 for (i
= 0; i
< qiov
->niov
; i
++) {
2437 if ((uintptr_t) qiov
->iov
[i
].iov_base
% alignment
) {
2440 if (qiov
->iov
[i
].iov_len
% len
) {
2448 static int coroutine_fn
raw_co_prw(BlockDriverState
*bs
, uint64_t offset
,
2449 uint64_t bytes
, QEMUIOVector
*qiov
, int type
)
2451 BDRVRawState
*s
= bs
->opaque
;
2452 RawPosixAIOData acb
;
2455 if (fd_open(bs
) < 0)
2457 #if defined(CONFIG_BLKZONED)
2458 if ((type
& (QEMU_AIO_WRITE
| QEMU_AIO_ZONE_APPEND
)) &&
2459 bs
->bl
.zoned
!= BLK_Z_NONE
) {
2460 qemu_co_mutex_lock(&bs
->wps
->colock
);
2461 if (type
& QEMU_AIO_ZONE_APPEND
) {
2462 int index
= offset
/ bs
->bl
.zone_size
;
2463 offset
= bs
->wps
->wp
[index
];
2469 * When using O_DIRECT, the request must be aligned to be able to use
2470 * either libaio or io_uring interface. If not fail back to regular thread
2471 * pool read/write code which emulates this for us if we
2472 * set QEMU_AIO_MISALIGNED.
2474 if (s
->needs_alignment
&& !bdrv_qiov_is_aligned(bs
, qiov
)) {
2475 type
|= QEMU_AIO_MISALIGNED
;
2476 #ifdef CONFIG_LINUX_IO_URING
2477 } else if (s
->use_linux_io_uring
) {
2478 assert(qiov
->size
== bytes
);
2479 ret
= luring_co_submit(bs
, s
->fd
, offset
, qiov
, type
);
2482 #ifdef CONFIG_LINUX_AIO
2483 } else if (s
->use_linux_aio
) {
2484 assert(qiov
->size
== bytes
);
2485 ret
= laio_co_submit(s
->fd
, offset
, qiov
, type
,
2491 acb
= (RawPosixAIOData
) {
2493 .aio_fildes
= s
->fd
,
2495 .aio_offset
= offset
,
2496 .aio_nbytes
= bytes
,
2503 assert(qiov
->size
== bytes
);
2504 ret
= raw_thread_pool_submit(handle_aiocb_rw
, &acb
);
2505 goto out
; /* Avoid the compiler err of unused label */
2508 #if defined(CONFIG_BLKZONED)
2509 if ((type
& (QEMU_AIO_WRITE
| QEMU_AIO_ZONE_APPEND
)) &&
2510 bs
->bl
.zoned
!= BLK_Z_NONE
) {
2511 BlockZoneWps
*wps
= bs
->wps
;
2513 uint64_t *wp
= &wps
->wp
[offset
/ bs
->bl
.zone_size
];
2514 if (!BDRV_ZT_IS_CONV(*wp
)) {
2515 if (type
& QEMU_AIO_ZONE_APPEND
) {
2517 trace_zbd_zone_append_complete(bs
, *s
->offset
2518 >> BDRV_SECTOR_BITS
);
2520 /* Advance the wp if needed */
2521 if (offset
+ bytes
> *wp
) {
2522 *wp
= offset
+ bytes
;
2526 update_zones_wp(bs
, s
->fd
, 0, 1);
2529 qemu_co_mutex_unlock(&wps
->colock
);
2535 static int coroutine_fn
raw_co_preadv(BlockDriverState
*bs
, int64_t offset
,
2536 int64_t bytes
, QEMUIOVector
*qiov
,
2537 BdrvRequestFlags flags
)
2539 return raw_co_prw(bs
, offset
, bytes
, qiov
, QEMU_AIO_READ
);
2542 static int coroutine_fn
raw_co_pwritev(BlockDriverState
*bs
, int64_t offset
,
2543 int64_t bytes
, QEMUIOVector
*qiov
,
2544 BdrvRequestFlags flags
)
2546 return raw_co_prw(bs
, offset
, bytes
, qiov
, QEMU_AIO_WRITE
);
2549 static int coroutine_fn
raw_co_flush_to_disk(BlockDriverState
*bs
)
2551 BDRVRawState
*s
= bs
->opaque
;
2552 RawPosixAIOData acb
;
2560 acb
= (RawPosixAIOData
) {
2562 .aio_fildes
= s
->fd
,
2563 .aio_type
= QEMU_AIO_FLUSH
,
2566 #ifdef CONFIG_LINUX_IO_URING
2567 if (s
->use_linux_io_uring
) {
2568 return luring_co_submit(bs
, s
->fd
, 0, NULL
, QEMU_AIO_FLUSH
);
2571 return raw_thread_pool_submit(handle_aiocb_flush
, &acb
);
2574 static void raw_aio_attach_aio_context(BlockDriverState
*bs
,
2575 AioContext
*new_context
)
2577 BDRVRawState
__attribute__((unused
)) *s
= bs
->opaque
;
2578 #ifdef CONFIG_LINUX_AIO
2579 if (s
->use_linux_aio
) {
2580 Error
*local_err
= NULL
;
2581 if (!aio_setup_linux_aio(new_context
, &local_err
)) {
2582 error_reportf_err(local_err
, "Unable to use native AIO, "
2583 "falling back to thread pool: ");
2584 s
->use_linux_aio
= false;
2588 #ifdef CONFIG_LINUX_IO_URING
2589 if (s
->use_linux_io_uring
) {
2590 Error
*local_err
= NULL
;
2591 if (!aio_setup_linux_io_uring(new_context
, &local_err
)) {
2592 error_reportf_err(local_err
, "Unable to use linux io_uring, "
2593 "falling back to thread pool: ");
2594 s
->use_linux_io_uring
= false;
2600 static void raw_close(BlockDriverState
*bs
)
2602 BDRVRawState
*s
= bs
->opaque
;
2605 #if defined(CONFIG_BLKZONED)
2614 * Truncates the given regular file @fd to @offset and, when growing, fills the
2615 * new space according to @prealloc.
2617 * Returns: 0 on success, -errno on failure.
2619 static int coroutine_fn
2620 raw_regular_truncate(BlockDriverState
*bs
, int fd
, int64_t offset
,
2621 PreallocMode prealloc
, Error
**errp
)
2623 RawPosixAIOData acb
;
2625 acb
= (RawPosixAIOData
) {
2628 .aio_type
= QEMU_AIO_TRUNCATE
,
2629 .aio_offset
= offset
,
2631 .prealloc
= prealloc
,
2636 return raw_thread_pool_submit(handle_aiocb_truncate
, &acb
);
2639 static int coroutine_fn
raw_co_truncate(BlockDriverState
*bs
, int64_t offset
,
2640 bool exact
, PreallocMode prealloc
,
2641 BdrvRequestFlags flags
, Error
**errp
)
2643 BDRVRawState
*s
= bs
->opaque
;
2647 if (fstat(s
->fd
, &st
)) {
2649 error_setg_errno(errp
, -ret
, "Failed to fstat() the file");
2653 if (S_ISREG(st
.st_mode
)) {
2654 /* Always resizes to the exact @offset */
2655 return raw_regular_truncate(bs
, s
->fd
, offset
, prealloc
, errp
);
2658 if (prealloc
!= PREALLOC_MODE_OFF
) {
2659 error_setg(errp
, "Preallocation mode '%s' unsupported for this "
2660 "non-regular file", PreallocMode_str(prealloc
));
2664 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
2665 int64_t cur_length
= raw_getlength(bs
);
2667 if (offset
!= cur_length
&& exact
) {
2668 error_setg(errp
, "Cannot resize device files");
2670 } else if (offset
> cur_length
) {
2671 error_setg(errp
, "Cannot grow device files");
2675 error_setg(errp
, "Resizing this file is not supported");
2683 static int64_t raw_getlength(BlockDriverState
*bs
)
2685 BDRVRawState
*s
= bs
->opaque
;
2691 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
2692 struct disklabel dl
;
2694 if (ioctl(fd
, DIOCGDINFO
, &dl
))
2696 return (uint64_t)dl
.d_secsize
*
2697 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
2701 #elif defined(__NetBSD__)
2702 static int64_t raw_getlength(BlockDriverState
*bs
)
2704 BDRVRawState
*s
= bs
->opaque
;
2710 if (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
)) {
2711 struct dkwedge_info dkw
;
2713 if (ioctl(fd
, DIOCGWEDGEINFO
, &dkw
) != -1) {
2714 return dkw
.dkw_size
* 512;
2716 struct disklabel dl
;
2718 if (ioctl(fd
, DIOCGDINFO
, &dl
))
2720 return (uint64_t)dl
.d_secsize
*
2721 dl
.d_partitions
[DISKPART(st
.st_rdev
)].p_size
;
2726 #elif defined(__sun__)
2727 static int64_t raw_getlength(BlockDriverState
*bs
)
2729 BDRVRawState
*s
= bs
->opaque
;
2730 struct dk_minfo minfo
;
2740 * Use the DKIOCGMEDIAINFO ioctl to read the size.
2742 ret
= ioctl(s
->fd
, DKIOCGMEDIAINFO
, &minfo
);
2744 return minfo
.dki_lbsize
* minfo
.dki_capacity
;
2748 * There are reports that lseek on some devices fails, but
2749 * irc discussion said that contingency on contingency was overkill.
2751 size
= lseek(s
->fd
, 0, SEEK_END
);
2757 #elif defined(CONFIG_BSD)
2758 static int64_t raw_getlength(BlockDriverState
*bs
)
2760 BDRVRawState
*s
= bs
->opaque
;
2764 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
2773 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
2776 if (!fstat(fd
, &sb
) && (S_IFCHR
& sb
.st_mode
)) {
2778 #ifdef DIOCGMEDIASIZE
2779 if (ioctl(fd
, DIOCGMEDIASIZE
, (off_t
*)&size
)) {
2786 if (ioctl(fd
, DIOCGPART
, &pi
) == 0) {
2787 size
= pi
.media_size
;
2791 #if defined(DKIOCGETBLOCKCOUNT) && defined(DKIOCGETBLOCKSIZE)
2793 uint64_t sectors
= 0;
2794 uint32_t sector_size
= 0;
2796 if (ioctl(fd
, DKIOCGETBLOCKCOUNT
, §ors
) == 0
2797 && ioctl(fd
, DKIOCGETBLOCKSIZE
, §or_size
) == 0) {
2798 size
= sectors
* sector_size
;
2803 size
= lseek(fd
, 0LL, SEEK_END
);
2808 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2811 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
2812 if (size
== 2048LL * (unsigned)-1)
2814 /* XXX no disc? maybe we need to reopen... */
2815 if (size
<= 0 && !reopened
&& cdrom_reopen(bs
) >= 0) {
2822 size
= lseek(fd
, 0, SEEK_END
);
2830 static int64_t raw_getlength(BlockDriverState
*bs
)
2832 BDRVRawState
*s
= bs
->opaque
;
2841 size
= lseek(s
->fd
, 0, SEEK_END
);
2849 static int64_t coroutine_fn
raw_co_getlength(BlockDriverState
*bs
)
2851 return raw_getlength(bs
);
2854 static int64_t coroutine_fn
raw_co_get_allocated_file_size(BlockDriverState
*bs
)
2857 BDRVRawState
*s
= bs
->opaque
;
2859 if (fstat(s
->fd
, &st
) < 0) {
2862 return (int64_t)st
.st_blocks
* 512;
2865 static int coroutine_fn
2866 raw_co_create(BlockdevCreateOptions
*options
, Error
**errp
)
2868 BlockdevCreateOptionsFile
*file_opts
;
2869 Error
*local_err
= NULL
;
2871 uint64_t perm
, shared
;
2874 /* Validate options and set default values */
2875 assert(options
->driver
== BLOCKDEV_DRIVER_FILE
);
2876 file_opts
= &options
->u
.file
;
2878 if (!file_opts
->has_nocow
) {
2879 file_opts
->nocow
= false;
2881 if (!file_opts
->has_preallocation
) {
2882 file_opts
->preallocation
= PREALLOC_MODE_OFF
;
2884 if (!file_opts
->has_extent_size_hint
) {
2885 file_opts
->extent_size_hint
= 1 * MiB
;
2887 if (file_opts
->extent_size_hint
> UINT32_MAX
) {
2889 error_setg(errp
, "Extent size hint is too large");
2894 fd
= qemu_create(file_opts
->filename
, O_RDWR
| O_BINARY
, 0644, errp
);
2900 /* Take permissions: We want to discard everything, so we need
2901 * BLK_PERM_WRITE; and truncation to the desired size requires
2903 * On the other hand, we cannot share the RESIZE permission
2904 * because we promise that after this function, the file has the
2905 * size given in the options. If someone else were to resize it
2906 * concurrently, we could not guarantee that.
2907 * Note that after this function, we can no longer guarantee that
2908 * the file is not touched by a third party, so it may be resized
2910 perm
= BLK_PERM_WRITE
| BLK_PERM_RESIZE
;
2911 shared
= BLK_PERM_ALL
& ~BLK_PERM_RESIZE
;
2913 /* Step one: Take locks */
2914 result
= raw_apply_lock_bytes(NULL
, fd
, perm
, ~shared
, false, errp
);
2919 /* Step two: Check that nobody else has taken conflicting locks */
2920 result
= raw_check_lock_bytes(fd
, perm
, shared
, errp
);
2922 error_append_hint(errp
,
2923 "Is another process using the image [%s]?\n",
2924 file_opts
->filename
);
2928 /* Clear the file by truncating it to 0 */
2929 result
= raw_regular_truncate(NULL
, fd
, 0, PREALLOC_MODE_OFF
, errp
);
2934 if (file_opts
->nocow
) {
2936 /* Set NOCOW flag to solve performance issue on fs like btrfs.
2937 * This is an optimisation. The FS_IOC_SETFLAGS ioctl return value
2938 * will be ignored since any failure of this operation should not
2939 * block the left work.
2942 if (ioctl(fd
, FS_IOC_GETFLAGS
, &attr
) == 0) {
2943 attr
|= FS_NOCOW_FL
;
2944 ioctl(fd
, FS_IOC_SETFLAGS
, &attr
);
2948 #ifdef FS_IOC_FSSETXATTR
2950 * Try to set the extent size hint. Failure is not fatal, and a warning is
2951 * only printed if the option was explicitly specified.
2954 struct fsxattr attr
;
2955 result
= ioctl(fd
, FS_IOC_FSGETXATTR
, &attr
);
2957 attr
.fsx_xflags
|= FS_XFLAG_EXTSIZE
;
2958 attr
.fsx_extsize
= file_opts
->extent_size_hint
;
2959 result
= ioctl(fd
, FS_IOC_FSSETXATTR
, &attr
);
2961 if (result
< 0 && file_opts
->has_extent_size_hint
&&
2962 file_opts
->extent_size_hint
)
2964 warn_report("Failed to set extent size hint: %s",
2970 /* Resize and potentially preallocate the file to the desired
2972 result
= raw_regular_truncate(NULL
, fd
, file_opts
->size
,
2973 file_opts
->preallocation
, errp
);
2979 raw_apply_lock_bytes(NULL
, fd
, 0, 0, true, &local_err
);
2981 /* The above call should not fail, and if it does, that does
2982 * not mean the whole creation operation has failed. So
2983 * report it the user for their convenience, but do not report
2984 * it to the caller. */
2985 warn_report_err(local_err
);
2989 if (qemu_close(fd
) != 0 && result
== 0) {
2991 error_setg_errno(errp
, -result
, "Could not close the new file");
2997 static int coroutine_fn GRAPH_RDLOCK
2998 raw_co_create_opts(BlockDriver
*drv
, const char *filename
,
2999 QemuOpts
*opts
, Error
**errp
)
3001 BlockdevCreateOptions options
;
3002 int64_t total_size
= 0;
3003 int64_t extent_size_hint
= 0;
3004 bool has_extent_size_hint
= false;
3006 PreallocMode prealloc
;
3008 Error
*local_err
= NULL
;
3010 /* Skip file: protocol prefix */
3011 strstart(filename
, "file:", &filename
);
3013 /* Read out options */
3014 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
3016 if (qemu_opt_get(opts
, BLOCK_OPT_EXTENT_SIZE_HINT
)) {
3017 has_extent_size_hint
= true;
3019 qemu_opt_get_size_del(opts
, BLOCK_OPT_EXTENT_SIZE_HINT
, -1);
3021 nocow
= qemu_opt_get_bool(opts
, BLOCK_OPT_NOCOW
, false);
3022 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
3023 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, buf
,
3024 PREALLOC_MODE_OFF
, &local_err
);
3027 error_propagate(errp
, local_err
);
3031 options
= (BlockdevCreateOptions
) {
3032 .driver
= BLOCKDEV_DRIVER_FILE
,
3034 .filename
= (char *) filename
,
3036 .has_preallocation
= true,
3037 .preallocation
= prealloc
,
3040 .has_extent_size_hint
= has_extent_size_hint
,
3041 .extent_size_hint
= extent_size_hint
,
3044 return raw_co_create(&options
, errp
);
3047 static int coroutine_fn
raw_co_delete_file(BlockDriverState
*bs
,
3053 if (!(stat(bs
->filename
, &st
) == 0) || !S_ISREG(st
.st_mode
)) {
3054 error_setg_errno(errp
, ENOENT
, "%s is not a regular file",
3059 ret
= unlink(bs
->filename
);
3062 error_setg_errno(errp
, -ret
, "Error when deleting file %s",
3070 * Find allocation range in @bs around offset @start.
3071 * May change underlying file descriptor's file offset.
3072 * If @start is not in a hole, store @start in @data, and the
3073 * beginning of the next hole in @hole, and return 0.
3074 * If @start is in a non-trailing hole, store @start in @hole and the
3075 * beginning of the next non-hole in @data, and return 0.
3076 * If @start is in a trailing hole or beyond EOF, return -ENXIO.
3077 * If we can't find out, return a negative errno other than -ENXIO.
3079 static int find_allocation(BlockDriverState
*bs
, off_t start
,
3080 off_t
*data
, off_t
*hole
)
3082 #if defined SEEK_HOLE && defined SEEK_DATA
3083 BDRVRawState
*s
= bs
->opaque
;
3088 * D1. offs == start: start is in data
3089 * D2. offs > start: start is in a hole, next data at offs
3090 * D3. offs < 0, errno = ENXIO: either start is in a trailing hole
3091 * or start is beyond EOF
3092 * If the latter happens, the file has been truncated behind
3093 * our back since we opened it. All bets are off then.
3094 * Treating like a trailing hole is simplest.
3095 * D4. offs < 0, errno != ENXIO: we learned nothing
3097 offs
= lseek(s
->fd
, start
, SEEK_DATA
);
3099 return -errno
; /* D3 or D4 */
3103 /* This is not a valid return by lseek(). We are safe to just return
3104 * -EIO in this case, and we'll treat it like D4. */
3109 /* D2: in hole, next data at offs */
3115 /* D1: in data, end not yet known */
3119 * H1. offs == start: start is in a hole
3120 * If this happens here, a hole has been dug behind our back
3121 * since the previous lseek().
3122 * H2. offs > start: either start is in data, next hole at offs,
3123 * or start is in trailing hole, EOF at offs
3124 * Linux treats trailing holes like any other hole: offs ==
3125 * start. Solaris seeks to EOF instead: offs > start (blech).
3126 * If that happens here, a hole has been dug behind our back
3127 * since the previous lseek().
3128 * H3. offs < 0, errno = ENXIO: start is beyond EOF
3129 * If this happens, the file has been truncated behind our
3130 * back since we opened it. Treat it like a trailing hole.
3131 * H4. offs < 0, errno != ENXIO: we learned nothing
3132 * Pretend we know nothing at all, i.e. "forget" about D1.
3134 offs
= lseek(s
->fd
, start
, SEEK_HOLE
);
3136 return -errno
; /* D1 and (H3 or H4) */
3140 /* This is not a valid return by lseek(). We are safe to just return
3141 * -EIO in this case, and we'll treat it like H4. */
3147 * D1 and H2: either in data, next hole at offs, or it was in
3148 * data but is now in a trailing hole. In the latter case,
3149 * all bets are off. Treating it as if it there was data all
3150 * the way to EOF is safe, so simply do that.
3165 * Returns the allocation status of the specified offset.
3167 * The block layer guarantees 'offset' and 'bytes' are within bounds.
3169 * 'pnum' is set to the number of bytes (including and immediately following
3170 * the specified offset) that are known to be in the same
3171 * allocated/unallocated state.
3173 * 'bytes' is a soft cap for 'pnum'. If the information is free, 'pnum' may
3176 static int coroutine_fn
raw_co_block_status(BlockDriverState
*bs
,
3179 int64_t bytes
, int64_t *pnum
,
3181 BlockDriverState
**file
)
3183 off_t data
= 0, hole
= 0;
3186 assert(QEMU_IS_ALIGNED(offset
| bytes
, bs
->bl
.request_alignment
));
3197 return BDRV_BLOCK_DATA
| BDRV_BLOCK_OFFSET_VALID
;
3200 ret
= find_allocation(bs
, offset
, &data
, &hole
);
3201 if (ret
== -ENXIO
) {
3204 ret
= BDRV_BLOCK_ZERO
;
3205 } else if (ret
< 0) {
3206 /* No info available, so pretend there are no holes */
3208 ret
= BDRV_BLOCK_DATA
;
3209 } else if (data
== offset
) {
3210 /* On a data extent, compute bytes to the end of the extent,
3211 * possibly including a partial sector at EOF. */
3212 *pnum
= hole
- offset
;
3215 * We are not allowed to return partial sectors, though, so
3216 * round up if necessary.
3218 if (!QEMU_IS_ALIGNED(*pnum
, bs
->bl
.request_alignment
)) {
3219 int64_t file_length
= raw_getlength(bs
);
3220 if (file_length
> 0) {
3221 /* Ignore errors, this is just a safeguard */
3222 assert(hole
== file_length
);
3224 *pnum
= ROUND_UP(*pnum
, bs
->bl
.request_alignment
);
3227 ret
= BDRV_BLOCK_DATA
;
3229 /* On a hole, compute bytes to the beginning of the next extent. */
3230 assert(hole
== offset
);
3231 *pnum
= data
- offset
;
3232 ret
= BDRV_BLOCK_ZERO
;
3236 return ret
| BDRV_BLOCK_OFFSET_VALID
;
3239 #if defined(__linux__)
3240 /* Verify that the file is not in the page cache */
3241 static void check_cache_dropped(BlockDriverState
*bs
, Error
**errp
)
3243 const size_t window_size
= 128 * 1024 * 1024;
3244 BDRVRawState
*s
= bs
->opaque
;
3245 void *window
= NULL
;
3252 /* mincore(2) page status information requires 1 byte per page */
3253 page_size
= sysconf(_SC_PAGESIZE
);
3254 vec
= g_malloc(DIV_ROUND_UP(window_size
, page_size
));
3256 end
= raw_getlength(bs
);
3258 for (offset
= 0; offset
< end
; offset
+= window_size
) {
3265 /* Unmap previous window if size has changed */
3266 new_length
= MIN(end
- offset
, window_size
);
3267 if (new_length
!= length
) {
3268 munmap(window
, length
);
3273 new_window
= mmap(window
, new_length
, PROT_NONE
, MAP_PRIVATE
,
3275 if (new_window
== MAP_FAILED
) {
3276 error_setg_errno(errp
, errno
, "mmap failed");
3280 window
= new_window
;
3281 length
= new_length
;
3283 ret
= mincore(window
, length
, vec
);
3285 error_setg_errno(errp
, errno
, "mincore failed");
3289 vec_end
= DIV_ROUND_UP(length
, page_size
);
3290 for (i
= 0; i
< vec_end
; i
++) {
3296 error_setg(errp
, "page cache still in use!");
3302 munmap(window
, length
);
3307 #endif /* __linux__ */
3309 static void coroutine_fn GRAPH_RDLOCK
3310 raw_co_invalidate_cache(BlockDriverState
*bs
, Error
**errp
)
3312 BDRVRawState
*s
= bs
->opaque
;
3317 error_setg_errno(errp
, -ret
, "The file descriptor is not open");
3321 if (!s
->drop_cache
) {
3325 if (s
->open_flags
& O_DIRECT
) {
3326 return; /* No host kernel page cache */
3329 #if defined(__linux__)
3330 /* This sets the scene for the next syscall... */
3331 ret
= bdrv_co_flush(bs
);
3333 error_setg_errno(errp
, -ret
, "flush failed");
3337 /* Linux does not invalidate pages that are dirty, locked, or mmapped by a
3338 * process. These limitations are okay because we just fsynced the file,
3339 * we don't use mmap, and the file should not be in use by other processes.
3341 ret
= posix_fadvise(s
->fd
, 0, 0, POSIX_FADV_DONTNEED
);
3342 if (ret
!= 0) { /* the return value is a positive errno */
3343 error_setg_errno(errp
, ret
, "fadvise failed");
3347 if (s
->check_cache_dropped
) {
3348 check_cache_dropped(bs
, errp
);
3350 #else /* __linux__ */
3351 /* Do nothing. Live migration to a remote host with cache.direct=off is
3352 * unsupported on other host operating systems. Cache consistency issues
3353 * may occur but no error is reported here, partly because that's the
3354 * historical behavior and partly because it's hard to differentiate valid
3355 * configurations that should not cause errors.
3357 #endif /* !__linux__ */
3360 static void raw_account_discard(BDRVRawState
*s
, uint64_t nbytes
, int ret
)
3363 s
->stats
.discard_nb_failed
++;
3365 s
->stats
.discard_nb_ok
++;
3366 s
->stats
.discard_bytes_ok
+= nbytes
;
3371 * zone report - Get a zone block device's information in the form
3372 * of an array of zone descriptors.
3373 * zones is an array of zone descriptors to hold zone information on reply;
3374 * offset can be any byte within the entire size of the device;
3375 * nr_zones is the maximum number of sectors the command should operate on.
3377 #if defined(CONFIG_BLKZONED)
3378 static int coroutine_fn
raw_co_zone_report(BlockDriverState
*bs
, int64_t offset
,
3379 unsigned int *nr_zones
,
3380 BlockZoneDescriptor
*zones
) {
3381 BDRVRawState
*s
= bs
->opaque
;
3382 RawPosixAIOData acb
= (RawPosixAIOData
) {
3384 .aio_fildes
= s
->fd
,
3385 .aio_type
= QEMU_AIO_ZONE_REPORT
,
3386 .aio_offset
= offset
,
3388 .nr_zones
= nr_zones
,
3393 trace_zbd_zone_report(bs
, *nr_zones
, offset
>> BDRV_SECTOR_BITS
);
3394 return raw_thread_pool_submit(handle_aiocb_zone_report
, &acb
);
3399 * zone management operations - Execute an operation on a zone
3401 #if defined(CONFIG_BLKZONED)
3402 static int coroutine_fn
raw_co_zone_mgmt(BlockDriverState
*bs
, BlockZoneOp op
,
3403 int64_t offset
, int64_t len
) {
3404 BDRVRawState
*s
= bs
->opaque
;
3405 RawPosixAIOData acb
;
3406 int64_t zone_size
, zone_size_mask
;
3407 const char *op_name
;
3410 BlockZoneWps
*wps
= bs
->wps
;
3411 int64_t capacity
= bs
->total_sectors
<< BDRV_SECTOR_BITS
;
3413 zone_size
= bs
->bl
.zone_size
;
3414 zone_size_mask
= zone_size
- 1;
3415 if (offset
& zone_size_mask
) {
3416 error_report("sector offset %" PRId64
" is not aligned to zone size "
3417 "%" PRId64
"", offset
/ 512, zone_size
/ 512);
3421 if (((offset
+ len
) < capacity
&& len
& zone_size_mask
) ||
3422 offset
+ len
> capacity
) {
3423 error_report("number of sectors %" PRId64
" is not aligned to zone size"
3424 " %" PRId64
"", len
/ 512, zone_size
/ 512);
3428 uint32_t i
= offset
/ bs
->bl
.zone_size
;
3429 uint32_t nrz
= len
/ bs
->bl
.zone_size
;
3430 uint64_t *wp
= &wps
->wp
[i
];
3431 if (BDRV_ZT_IS_CONV(*wp
) && len
!= capacity
) {
3432 error_report("zone mgmt operations are not allowed for conventional zones");
3438 op_name
= "BLKOPENZONE";
3442 op_name
= "BLKCLOSEZONE";
3446 op_name
= "BLKFINISHZONE";
3450 op_name
= "BLKRESETZONE";
3454 error_report("Unsupported zone op: 0x%x", op
);
3458 acb
= (RawPosixAIOData
) {
3460 .aio_fildes
= s
->fd
,
3461 .aio_type
= QEMU_AIO_ZONE_MGMT
,
3462 .aio_offset
= offset
,
3469 trace_zbd_zone_mgmt(bs
, op_name
, offset
>> BDRV_SECTOR_BITS
,
3470 len
>> BDRV_SECTOR_BITS
);
3471 ret
= raw_thread_pool_submit(handle_aiocb_zone_mgmt
, &acb
);
3473 update_zones_wp(bs
, s
->fd
, offset
, i
);
3474 error_report("ioctl %s failed %d", op_name
, ret
);
3478 if (zo
== BLKRESETZONE
&& len
== capacity
) {
3479 ret
= get_zones_wp(bs
, s
->fd
, 0, bs
->bl
.nr_zones
, 1);
3481 error_report("reporting single wp failed");
3484 } else if (zo
== BLKRESETZONE
) {
3485 for (unsigned int j
= 0; j
< nrz
; ++j
) {
3486 wp
[j
] = offset
+ j
* zone_size
;
3488 } else if (zo
== BLKFINISHZONE
) {
3489 for (unsigned int j
= 0; j
< nrz
; ++j
) {
3490 /* The zoned device allows the last zone smaller that the
3492 wp
[j
] = MIN(offset
+ (j
+ 1) * zone_size
, offset
+ len
);
3500 #if defined(CONFIG_BLKZONED)
3501 static int coroutine_fn
raw_co_zone_append(BlockDriverState
*bs
,
3504 BdrvRequestFlags flags
) {
3506 int64_t zone_size_mask
= bs
->bl
.zone_size
- 1;
3507 int64_t iov_len
= 0;
3509 BDRVRawState
*s
= bs
->opaque
;
3512 if (*offset
& zone_size_mask
) {
3513 error_report("sector offset %" PRId64
" is not aligned to zone size "
3514 "%" PRId32
"", *offset
/ 512, bs
->bl
.zone_size
/ 512);
3518 int64_t wg
= bs
->bl
.write_granularity
;
3519 int64_t wg_mask
= wg
- 1;
3520 for (int i
= 0; i
< qiov
->niov
; i
++) {
3521 iov_len
= qiov
->iov
[i
].iov_len
;
3522 if (iov_len
& wg_mask
) {
3523 error_report("len of IOVector[%d] %" PRId64
" is not aligned to "
3524 "block size %" PRId64
"", i
, iov_len
, wg
);
3530 trace_zbd_zone_append(bs
, *offset
>> BDRV_SECTOR_BITS
);
3531 return raw_co_prw(bs
, *offset
, len
, qiov
, QEMU_AIO_ZONE_APPEND
);
3535 static coroutine_fn
int
3536 raw_do_pdiscard(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
3539 BDRVRawState
*s
= bs
->opaque
;
3540 RawPosixAIOData acb
;
3543 acb
= (RawPosixAIOData
) {
3545 .aio_fildes
= s
->fd
,
3546 .aio_type
= QEMU_AIO_DISCARD
,
3547 .aio_offset
= offset
,
3548 .aio_nbytes
= bytes
,
3552 acb
.aio_type
|= QEMU_AIO_BLKDEV
;
3555 ret
= raw_thread_pool_submit(handle_aiocb_discard
, &acb
);
3556 raw_account_discard(s
, bytes
, ret
);
3560 static coroutine_fn
int
3561 raw_co_pdiscard(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
)
3563 return raw_do_pdiscard(bs
, offset
, bytes
, false);
3566 static int coroutine_fn
3567 raw_do_pwrite_zeroes(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
3568 BdrvRequestFlags flags
, bool blkdev
)
3570 BDRVRawState
*s
= bs
->opaque
;
3571 RawPosixAIOData acb
;
3572 ThreadPoolFunc
*handler
;
3574 #ifdef CONFIG_FALLOCATE
3575 if (offset
+ bytes
> bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3576 BdrvTrackedRequest
*req
;
3579 * This is a workaround for a bug in the Linux XFS driver,
3580 * where writes submitted through the AIO interface will be
3581 * discarded if they happen beyond a concurrently running
3582 * fallocate() that increases the file length (i.e., both the
3583 * write and the fallocate() happen beyond the EOF).
3585 * To work around it, we extend the tracked request for this
3586 * zero write until INT64_MAX (effectively infinity), and mark
3587 * it as serializing.
3589 * We have to enable this workaround for all filesystems and
3590 * AIO modes (not just XFS with aio=native), because for
3591 * remote filesystems we do not know the host configuration.
3594 req
= bdrv_co_get_self_request(bs
);
3596 assert(req
->type
== BDRV_TRACKED_WRITE
);
3597 assert(req
->offset
<= offset
);
3598 assert(req
->offset
+ req
->bytes
>= offset
+ bytes
);
3600 req
->bytes
= BDRV_MAX_LENGTH
- req
->offset
;
3602 bdrv_check_request(req
->offset
, req
->bytes
, &error_abort
);
3604 bdrv_make_request_serialising(req
, bs
->bl
.request_alignment
);
3608 acb
= (RawPosixAIOData
) {
3610 .aio_fildes
= s
->fd
,
3611 .aio_type
= QEMU_AIO_WRITE_ZEROES
,
3612 .aio_offset
= offset
,
3613 .aio_nbytes
= bytes
,
3617 acb
.aio_type
|= QEMU_AIO_BLKDEV
;
3619 if (flags
& BDRV_REQ_NO_FALLBACK
) {
3620 acb
.aio_type
|= QEMU_AIO_NO_FALLBACK
;
3623 if (flags
& BDRV_REQ_MAY_UNMAP
) {
3624 acb
.aio_type
|= QEMU_AIO_DISCARD
;
3625 handler
= handle_aiocb_write_zeroes_unmap
;
3627 handler
= handle_aiocb_write_zeroes
;
3630 return raw_thread_pool_submit(handler
, &acb
);
3633 static int coroutine_fn
raw_co_pwrite_zeroes(
3634 BlockDriverState
*bs
, int64_t offset
,
3635 int64_t bytes
, BdrvRequestFlags flags
)
3637 return raw_do_pwrite_zeroes(bs
, offset
, bytes
, flags
, false);
3640 static int coroutine_fn
3641 raw_co_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
3646 static ImageInfoSpecific
*raw_get_specific_info(BlockDriverState
*bs
,
3649 ImageInfoSpecificFile
*file_info
= g_new0(ImageInfoSpecificFile
, 1);
3650 ImageInfoSpecific
*spec_info
= g_new(ImageInfoSpecific
, 1);
3652 *spec_info
= (ImageInfoSpecific
){
3653 .type
= IMAGE_INFO_SPECIFIC_KIND_FILE
,
3654 .u
.file
.data
= file_info
,
3657 #ifdef FS_IOC_FSGETXATTR
3659 BDRVRawState
*s
= bs
->opaque
;
3660 struct fsxattr attr
;
3663 ret
= ioctl(s
->fd
, FS_IOC_FSGETXATTR
, &attr
);
3664 if (!ret
&& attr
.fsx_extsize
!= 0) {
3665 file_info
->has_extent_size_hint
= true;
3666 file_info
->extent_size_hint
= attr
.fsx_extsize
;
3674 static BlockStatsSpecificFile
get_blockstats_specific_file(BlockDriverState
*bs
)
3676 BDRVRawState
*s
= bs
->opaque
;
3677 return (BlockStatsSpecificFile
) {
3678 .discard_nb_ok
= s
->stats
.discard_nb_ok
,
3679 .discard_nb_failed
= s
->stats
.discard_nb_failed
,
3680 .discard_bytes_ok
= s
->stats
.discard_bytes_ok
,
3684 static BlockStatsSpecific
*raw_get_specific_stats(BlockDriverState
*bs
)
3686 BlockStatsSpecific
*stats
= g_new(BlockStatsSpecific
, 1);
3688 stats
->driver
= BLOCKDEV_DRIVER_FILE
;
3689 stats
->u
.file
= get_blockstats_specific_file(bs
);
3694 #if defined(HAVE_HOST_BLOCK_DEVICE)
3695 static BlockStatsSpecific
*hdev_get_specific_stats(BlockDriverState
*bs
)
3697 BlockStatsSpecific
*stats
= g_new(BlockStatsSpecific
, 1);
3699 stats
->driver
= BLOCKDEV_DRIVER_HOST_DEVICE
;
3700 stats
->u
.host_device
= get_blockstats_specific_file(bs
);
3704 #endif /* HAVE_HOST_BLOCK_DEVICE */
3706 static QemuOptsList raw_create_opts
= {
3707 .name
= "raw-create-opts",
3708 .head
= QTAILQ_HEAD_INITIALIZER(raw_create_opts
.head
),
3711 .name
= BLOCK_OPT_SIZE
,
3712 .type
= QEMU_OPT_SIZE
,
3713 .help
= "Virtual disk size"
3716 .name
= BLOCK_OPT_NOCOW
,
3717 .type
= QEMU_OPT_BOOL
,
3718 .help
= "Turn off copy-on-write (valid only on btrfs)"
3721 .name
= BLOCK_OPT_PREALLOC
,
3722 .type
= QEMU_OPT_STRING
,
3723 .help
= "Preallocation mode (allowed values: off"
3724 #ifdef CONFIG_POSIX_FALLOCATE
3730 .name
= BLOCK_OPT_EXTENT_SIZE_HINT
,
3731 .type
= QEMU_OPT_SIZE
,
3732 .help
= "Extent size hint for the image file, 0 to disable"
3734 { /* end of list */ }
3738 static int raw_check_perm(BlockDriverState
*bs
, uint64_t perm
, uint64_t shared
,
3741 BDRVRawState
*s
= bs
->opaque
;
3742 int input_flags
= s
->reopen_state
? s
->reopen_state
->flags
: bs
->open_flags
;
3746 /* We may need a new fd if auto-read-only switches the mode */
3747 ret
= raw_reconfigure_getfd(bs
, input_flags
, &open_flags
, perm
,
3751 } else if (ret
!= s
->fd
) {
3752 Error
*local_err
= NULL
;
3755 * Fail already check_perm() if we can't get a working O_DIRECT
3756 * alignment with the new fd.
3758 raw_probe_alignment(bs
, ret
, &local_err
);
3760 error_propagate(errp
, local_err
);
3764 s
->perm_change_fd
= ret
;
3765 s
->perm_change_flags
= open_flags
;
3768 /* Prepare permissions on old fd to avoid conflicts between old and new,
3769 * but keep everything locked that new will need. */
3770 ret
= raw_handle_perm_lock(bs
, RAW_PL_PREPARE
, perm
, shared
, errp
);
3775 /* Copy locks to the new fd */
3776 if (s
->perm_change_fd
&& s
->use_lock
) {
3777 ret
= raw_apply_lock_bytes(NULL
, s
->perm_change_fd
, perm
, ~shared
,
3780 raw_handle_perm_lock(bs
, RAW_PL_ABORT
, 0, 0, NULL
);
3787 if (s
->perm_change_fd
) {
3788 qemu_close(s
->perm_change_fd
);
3790 s
->perm_change_fd
= 0;
3794 static void raw_set_perm(BlockDriverState
*bs
, uint64_t perm
, uint64_t shared
)
3796 BDRVRawState
*s
= bs
->opaque
;
3798 /* For reopen, we have already switched to the new fd (.bdrv_set_perm is
3799 * called after .bdrv_reopen_commit) */
3800 if (s
->perm_change_fd
&& s
->fd
!= s
->perm_change_fd
) {
3802 s
->fd
= s
->perm_change_fd
;
3803 s
->open_flags
= s
->perm_change_flags
;
3805 s
->perm_change_fd
= 0;
3807 raw_handle_perm_lock(bs
, RAW_PL_COMMIT
, perm
, shared
, NULL
);
3809 s
->shared_perm
= shared
;
3812 static void raw_abort_perm_update(BlockDriverState
*bs
)
3814 BDRVRawState
*s
= bs
->opaque
;
3816 /* For reopen, .bdrv_reopen_abort is called afterwards and will close
3817 * the file descriptor. */
3818 if (s
->perm_change_fd
) {
3819 qemu_close(s
->perm_change_fd
);
3821 s
->perm_change_fd
= 0;
3823 raw_handle_perm_lock(bs
, RAW_PL_ABORT
, 0, 0, NULL
);
3826 static int coroutine_fn GRAPH_RDLOCK
raw_co_copy_range_from(
3827 BlockDriverState
*bs
, BdrvChild
*src
, int64_t src_offset
,
3828 BdrvChild
*dst
, int64_t dst_offset
, int64_t bytes
,
3829 BdrvRequestFlags read_flags
, BdrvRequestFlags write_flags
)
3831 return bdrv_co_copy_range_to(src
, src_offset
, dst
, dst_offset
, bytes
,
3832 read_flags
, write_flags
);
3835 static int coroutine_fn GRAPH_RDLOCK
3836 raw_co_copy_range_to(BlockDriverState
*bs
,
3837 BdrvChild
*src
, int64_t src_offset
,
3838 BdrvChild
*dst
, int64_t dst_offset
,
3839 int64_t bytes
, BdrvRequestFlags read_flags
,
3840 BdrvRequestFlags write_flags
)
3842 RawPosixAIOData acb
;
3843 BDRVRawState
*s
= bs
->opaque
;
3844 BDRVRawState
*src_s
;
3846 assert(dst
->bs
== bs
);
3847 if (src
->bs
->drv
->bdrv_co_copy_range_to
!= raw_co_copy_range_to
) {
3851 src_s
= src
->bs
->opaque
;
3852 if (fd_open(src
->bs
) < 0 || fd_open(dst
->bs
) < 0) {
3856 acb
= (RawPosixAIOData
) {
3858 .aio_type
= QEMU_AIO_COPY_RANGE
,
3859 .aio_fildes
= src_s
->fd
,
3860 .aio_offset
= src_offset
,
3861 .aio_nbytes
= bytes
,
3864 .aio_offset2
= dst_offset
,
3868 return raw_thread_pool_submit(handle_aiocb_copy_range
, &acb
);
3871 BlockDriver bdrv_file
= {
3872 .format_name
= "file",
3873 .protocol_name
= "file",
3874 .instance_size
= sizeof(BDRVRawState
),
3875 .bdrv_needs_filename
= true,
3876 .bdrv_probe
= NULL
, /* no probe for protocols */
3877 .bdrv_parse_filename
= raw_parse_filename
,
3878 .bdrv_file_open
= raw_open
,
3879 .bdrv_reopen_prepare
= raw_reopen_prepare
,
3880 .bdrv_reopen_commit
= raw_reopen_commit
,
3881 .bdrv_reopen_abort
= raw_reopen_abort
,
3882 .bdrv_close
= raw_close
,
3883 .bdrv_co_create
= raw_co_create
,
3884 .bdrv_co_create_opts
= raw_co_create_opts
,
3885 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
3886 .bdrv_co_block_status
= raw_co_block_status
,
3887 .bdrv_co_invalidate_cache
= raw_co_invalidate_cache
,
3888 .bdrv_co_pwrite_zeroes
= raw_co_pwrite_zeroes
,
3889 .bdrv_co_delete_file
= raw_co_delete_file
,
3891 .bdrv_co_preadv
= raw_co_preadv
,
3892 .bdrv_co_pwritev
= raw_co_pwritev
,
3893 .bdrv_co_flush_to_disk
= raw_co_flush_to_disk
,
3894 .bdrv_co_pdiscard
= raw_co_pdiscard
,
3895 .bdrv_co_copy_range_from
= raw_co_copy_range_from
,
3896 .bdrv_co_copy_range_to
= raw_co_copy_range_to
,
3897 .bdrv_refresh_limits
= raw_refresh_limits
,
3898 .bdrv_attach_aio_context
= raw_aio_attach_aio_context
,
3900 .bdrv_co_truncate
= raw_co_truncate
,
3901 .bdrv_co_getlength
= raw_co_getlength
,
3902 .bdrv_co_get_info
= raw_co_get_info
,
3903 .bdrv_get_specific_info
= raw_get_specific_info
,
3904 .bdrv_co_get_allocated_file_size
= raw_co_get_allocated_file_size
,
3905 .bdrv_get_specific_stats
= raw_get_specific_stats
,
3906 .bdrv_check_perm
= raw_check_perm
,
3907 .bdrv_set_perm
= raw_set_perm
,
3908 .bdrv_abort_perm_update
= raw_abort_perm_update
,
3909 .create_opts
= &raw_create_opts
,
3910 .mutable_opts
= mutable_opts
,
3913 /***********************************************/
3916 #if defined(HAVE_HOST_BLOCK_DEVICE)
3918 #if defined(__APPLE__) && defined(__MACH__)
3919 static kern_return_t
GetBSDPath(io_iterator_t mediaIterator
, char *bsdPath
,
3920 CFIndex maxPathSize
, int flags
);
3922 #if !defined(MAC_OS_VERSION_12_0) \
3923 || (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_VERSION_12_0)
3924 #define IOMainPort IOMasterPort
3927 static char *FindEjectableOpticalMedia(io_iterator_t
*mediaIterator
)
3929 kern_return_t kernResult
= KERN_FAILURE
;
3930 mach_port_t mainPort
;
3931 CFMutableDictionaryRef classesToMatch
;
3932 const char *matching_array
[] = {kIODVDMediaClass
, kIOCDMediaClass
};
3933 char *mediaType
= NULL
;
3935 kernResult
= IOMainPort(MACH_PORT_NULL
, &mainPort
);
3936 if ( KERN_SUCCESS
!= kernResult
) {
3937 printf("IOMainPort returned %d\n", kernResult
);
3941 for (index
= 0; index
< ARRAY_SIZE(matching_array
); index
++) {
3942 classesToMatch
= IOServiceMatching(matching_array
[index
]);
3943 if (classesToMatch
== NULL
) {
3944 error_report("IOServiceMatching returned NULL for %s",
3945 matching_array
[index
]);
3948 CFDictionarySetValue(classesToMatch
, CFSTR(kIOMediaEjectableKey
),
3950 kernResult
= IOServiceGetMatchingServices(mainPort
, classesToMatch
,
3952 if (kernResult
!= KERN_SUCCESS
) {
3953 error_report("Note: IOServiceGetMatchingServices returned %d",
3958 /* If a match was found, leave the loop */
3959 if (*mediaIterator
!= 0) {
3960 trace_file_FindEjectableOpticalMedia(matching_array
[index
]);
3961 mediaType
= g_strdup(matching_array
[index
]);
3968 kern_return_t
GetBSDPath(io_iterator_t mediaIterator
, char *bsdPath
,
3969 CFIndex maxPathSize
, int flags
)
3971 io_object_t nextMedia
;
3972 kern_return_t kernResult
= KERN_FAILURE
;
3974 nextMedia
= IOIteratorNext( mediaIterator
);
3977 CFTypeRef bsdPathAsCFString
;
3978 bsdPathAsCFString
= IORegistryEntryCreateCFProperty( nextMedia
, CFSTR( kIOBSDNameKey
), kCFAllocatorDefault
, 0 );
3979 if ( bsdPathAsCFString
) {
3980 size_t devPathLength
;
3981 strcpy( bsdPath
, _PATH_DEV
);
3982 if (flags
& BDRV_O_NOCACHE
) {
3983 strcat(bsdPath
, "r");
3985 devPathLength
= strlen( bsdPath
);
3986 if ( CFStringGetCString( bsdPathAsCFString
, bsdPath
+ devPathLength
, maxPathSize
- devPathLength
, kCFStringEncodingASCII
) ) {
3987 kernResult
= KERN_SUCCESS
;
3989 CFRelease( bsdPathAsCFString
);
3991 IOObjectRelease( nextMedia
);
3997 /* Sets up a real cdrom for use in QEMU */
3998 static bool setup_cdrom(char *bsd_path
, Error
**errp
)
4000 int index
, num_of_test_partitions
= 2, fd
;
4001 char test_partition
[MAXPATHLEN
];
4002 bool partition_found
= false;
4004 /* look for a working partition */
4005 for (index
= 0; index
< num_of_test_partitions
; index
++) {
4006 snprintf(test_partition
, sizeof(test_partition
), "%ss%d", bsd_path
,
4008 fd
= qemu_open(test_partition
, O_RDONLY
| O_BINARY
| O_LARGEFILE
, NULL
);
4010 partition_found
= true;
4016 /* if a working partition on the device was not found */
4017 if (partition_found
== false) {
4018 error_setg(errp
, "Failed to find a working partition on disc");
4020 trace_file_setup_cdrom(test_partition
);
4021 pstrcpy(bsd_path
, MAXPATHLEN
, test_partition
);
4023 return partition_found
;
4026 /* Prints directions on mounting and unmounting a device */
4027 static void print_unmounting_directions(const char *file_name
)
4029 error_report("If device %s is mounted on the desktop, unmount"
4030 " it first before using it in QEMU", file_name
);
4031 error_report("Command to unmount device: diskutil unmountDisk %s",
4033 error_report("Command to mount device: diskutil mountDisk %s", file_name
);
4036 #endif /* defined(__APPLE__) && defined(__MACH__) */
4038 static int hdev_probe_device(const char *filename
)
4042 /* allow a dedicated CD-ROM driver to match with a higher priority */
4043 if (strstart(filename
, "/dev/cdrom", NULL
))
4046 if (stat(filename
, &st
) >= 0 &&
4047 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
4054 static void hdev_parse_filename(const char *filename
, QDict
*options
,
4057 bdrv_parse_filename_strip_prefix(filename
, "host_device:", options
);
4060 static bool hdev_is_sg(BlockDriverState
*bs
)
4063 #if defined(__linux__)
4065 BDRVRawState
*s
= bs
->opaque
;
4067 struct sg_scsi_id scsiid
;
4071 if (stat(bs
->filename
, &st
) < 0 || !S_ISCHR(st
.st_mode
)) {
4075 ret
= ioctl(s
->fd
, SG_GET_VERSION_NUM
, &sg_version
);
4080 ret
= ioctl(s
->fd
, SG_GET_SCSI_ID
, &scsiid
);
4082 trace_file_hdev_is_sg(scsiid
.scsi_type
, sg_version
);
4091 static int hdev_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
4094 BDRVRawState
*s
= bs
->opaque
;
4097 #if defined(__APPLE__) && defined(__MACH__)
4099 * Caution: while qdict_get_str() is fine, getting non-string types
4100 * would require more care. When @options come from -blockdev or
4101 * blockdev_add, its members are typed according to the QAPI
4102 * schema, but when they come from -drive, they're all QString.
4104 const char *filename
= qdict_get_str(options
, "filename");
4105 char bsd_path
[MAXPATHLEN
] = "";
4106 bool error_occurred
= false;
4108 /* If using a real cdrom */
4109 if (strcmp(filename
, "/dev/cdrom") == 0) {
4110 char *mediaType
= NULL
;
4111 kern_return_t ret_val
;
4112 io_iterator_t mediaIterator
= 0;
4114 mediaType
= FindEjectableOpticalMedia(&mediaIterator
);
4115 if (mediaType
== NULL
) {
4116 error_setg(errp
, "Please make sure your CD/DVD is in the optical"
4118 error_occurred
= true;
4119 goto hdev_open_Mac_error
;
4122 ret_val
= GetBSDPath(mediaIterator
, bsd_path
, sizeof(bsd_path
), flags
);
4123 if (ret_val
!= KERN_SUCCESS
) {
4124 error_setg(errp
, "Could not get BSD path for optical drive");
4125 error_occurred
= true;
4126 goto hdev_open_Mac_error
;
4129 /* If a real optical drive was not found */
4130 if (bsd_path
[0] == '\0') {
4131 error_setg(errp
, "Failed to obtain bsd path for optical drive");
4132 error_occurred
= true;
4133 goto hdev_open_Mac_error
;
4136 /* If using a cdrom disc and finding a partition on the disc failed */
4137 if (strncmp(mediaType
, kIOCDMediaClass
, 9) == 0 &&
4138 setup_cdrom(bsd_path
, errp
) == false) {
4139 print_unmounting_directions(bsd_path
);
4140 error_occurred
= true;
4141 goto hdev_open_Mac_error
;
4144 qdict_put_str(options
, "filename", bsd_path
);
4146 hdev_open_Mac_error
:
4148 if (mediaIterator
) {
4149 IOObjectRelease(mediaIterator
);
4151 if (error_occurred
) {
4155 #endif /* defined(__APPLE__) && defined(__MACH__) */
4157 s
->type
= FTYPE_FILE
;
4159 ret
= raw_open_common(bs
, options
, flags
, 0, true, errp
);
4161 #if defined(__APPLE__) && defined(__MACH__)
4163 filename
= bsd_path
;
4165 /* if a physical device experienced an error while being opened */
4166 if (strncmp(filename
, "/dev/", 5) == 0) {
4167 print_unmounting_directions(filename
);
4169 #endif /* defined(__APPLE__) && defined(__MACH__) */
4173 /* Since this does ioctl the device must be already opened */
4174 bs
->sg
= hdev_is_sg(bs
);
4179 #if defined(__linux__)
4180 static int coroutine_fn
4181 hdev_co_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
4183 BDRVRawState
*s
= bs
->opaque
;
4184 RawPosixAIOData acb
;
4192 if (req
== SG_IO
&& s
->pr_mgr
) {
4193 struct sg_io_hdr
*io_hdr
= buf
;
4194 if (io_hdr
->cmdp
[0] == PERSISTENT_RESERVE_OUT
||
4195 io_hdr
->cmdp
[0] == PERSISTENT_RESERVE_IN
) {
4196 return pr_manager_execute(s
->pr_mgr
, qemu_get_current_aio_context(),
4201 acb
= (RawPosixAIOData
) {
4203 .aio_type
= QEMU_AIO_IOCTL
,
4204 .aio_fildes
= s
->fd
,
4212 return raw_thread_pool_submit(handle_aiocb_ioctl
, &acb
);
4216 static coroutine_fn
int
4217 hdev_co_pdiscard(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
)
4219 BDRVRawState
*s
= bs
->opaque
;
4224 raw_account_discard(s
, bytes
, ret
);
4227 return raw_do_pdiscard(bs
, offset
, bytes
, true);
4230 static coroutine_fn
int hdev_co_pwrite_zeroes(BlockDriverState
*bs
,
4231 int64_t offset
, int64_t bytes
, BdrvRequestFlags flags
)
4240 return raw_do_pwrite_zeroes(bs
, offset
, bytes
, flags
, true);
4243 static BlockDriver bdrv_host_device
= {
4244 .format_name
= "host_device",
4245 .protocol_name
= "host_device",
4246 .instance_size
= sizeof(BDRVRawState
),
4247 .bdrv_needs_filename
= true,
4248 .bdrv_probe_device
= hdev_probe_device
,
4249 .bdrv_parse_filename
= hdev_parse_filename
,
4250 .bdrv_file_open
= hdev_open
,
4251 .bdrv_close
= raw_close
,
4252 .bdrv_reopen_prepare
= raw_reopen_prepare
,
4253 .bdrv_reopen_commit
= raw_reopen_commit
,
4254 .bdrv_reopen_abort
= raw_reopen_abort
,
4255 .bdrv_co_create_opts
= bdrv_co_create_opts_simple
,
4256 .create_opts
= &bdrv_create_opts_simple
,
4257 .mutable_opts
= mutable_opts
,
4258 .bdrv_co_invalidate_cache
= raw_co_invalidate_cache
,
4259 .bdrv_co_pwrite_zeroes
= hdev_co_pwrite_zeroes
,
4261 .bdrv_co_preadv
= raw_co_preadv
,
4262 .bdrv_co_pwritev
= raw_co_pwritev
,
4263 .bdrv_co_flush_to_disk
= raw_co_flush_to_disk
,
4264 .bdrv_co_pdiscard
= hdev_co_pdiscard
,
4265 .bdrv_co_copy_range_from
= raw_co_copy_range_from
,
4266 .bdrv_co_copy_range_to
= raw_co_copy_range_to
,
4267 .bdrv_refresh_limits
= raw_refresh_limits
,
4268 .bdrv_attach_aio_context
= raw_aio_attach_aio_context
,
4270 .bdrv_co_truncate
= raw_co_truncate
,
4271 .bdrv_co_getlength
= raw_co_getlength
,
4272 .bdrv_co_get_info
= raw_co_get_info
,
4273 .bdrv_get_specific_info
= raw_get_specific_info
,
4274 .bdrv_co_get_allocated_file_size
= raw_co_get_allocated_file_size
,
4275 .bdrv_get_specific_stats
= hdev_get_specific_stats
,
4276 .bdrv_check_perm
= raw_check_perm
,
4277 .bdrv_set_perm
= raw_set_perm
,
4278 .bdrv_abort_perm_update
= raw_abort_perm_update
,
4279 .bdrv_probe_blocksizes
= hdev_probe_blocksizes
,
4280 .bdrv_probe_geometry
= hdev_probe_geometry
,
4282 /* generic scsi device */
4284 .bdrv_co_ioctl
= hdev_co_ioctl
,
4288 #if defined(CONFIG_BLKZONED)
4289 /* zone management operations */
4290 .bdrv_co_zone_report
= raw_co_zone_report
,
4291 .bdrv_co_zone_mgmt
= raw_co_zone_mgmt
,
4292 .bdrv_co_zone_append
= raw_co_zone_append
,
4296 #if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
4297 static void cdrom_parse_filename(const char *filename
, QDict
*options
,
4300 bdrv_parse_filename_strip_prefix(filename
, "host_cdrom:", options
);
4303 static void cdrom_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
4305 bs
->bl
.has_variable_length
= true;
4306 raw_refresh_limits(bs
, errp
);
4311 static int cdrom_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
4314 BDRVRawState
*s
= bs
->opaque
;
4318 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
4319 return raw_open_common(bs
, options
, flags
, O_NONBLOCK
, true, errp
);
4322 static int cdrom_probe_device(const char *filename
)
4328 fd
= qemu_open(filename
, O_RDONLY
| O_NONBLOCK
, NULL
);
4332 ret
= fstat(fd
, &st
);
4333 if (ret
== -1 || !S_ISBLK(st
.st_mode
)) {
4337 /* Attempt to detect via a CDROM specific ioctl */
4338 ret
= ioctl(fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
4348 static bool coroutine_fn
cdrom_co_is_inserted(BlockDriverState
*bs
)
4350 BDRVRawState
*s
= bs
->opaque
;
4353 ret
= ioctl(s
->fd
, CDROM_DRIVE_STATUS
, CDSL_CURRENT
);
4354 return ret
== CDS_DISC_OK
;
4357 static void coroutine_fn
cdrom_co_eject(BlockDriverState
*bs
, bool eject_flag
)
4359 BDRVRawState
*s
= bs
->opaque
;
4362 if (ioctl(s
->fd
, CDROMEJECT
, NULL
) < 0)
4363 perror("CDROMEJECT");
4365 if (ioctl(s
->fd
, CDROMCLOSETRAY
, NULL
) < 0)
4366 perror("CDROMEJECT");
4370 static void coroutine_fn
cdrom_co_lock_medium(BlockDriverState
*bs
, bool locked
)
4372 BDRVRawState
*s
= bs
->opaque
;
4374 if (ioctl(s
->fd
, CDROM_LOCKDOOR
, locked
) < 0) {
4376 * Note: an error can happen if the distribution automatically
4379 /* perror("CDROM_LOCKDOOR"); */
4383 static BlockDriver bdrv_host_cdrom
= {
4384 .format_name
= "host_cdrom",
4385 .protocol_name
= "host_cdrom",
4386 .instance_size
= sizeof(BDRVRawState
),
4387 .bdrv_needs_filename
= true,
4388 .bdrv_probe_device
= cdrom_probe_device
,
4389 .bdrv_parse_filename
= cdrom_parse_filename
,
4390 .bdrv_file_open
= cdrom_open
,
4391 .bdrv_close
= raw_close
,
4392 .bdrv_reopen_prepare
= raw_reopen_prepare
,
4393 .bdrv_reopen_commit
= raw_reopen_commit
,
4394 .bdrv_reopen_abort
= raw_reopen_abort
,
4395 .bdrv_co_create_opts
= bdrv_co_create_opts_simple
,
4396 .create_opts
= &bdrv_create_opts_simple
,
4397 .mutable_opts
= mutable_opts
,
4398 .bdrv_co_invalidate_cache
= raw_co_invalidate_cache
,
4400 .bdrv_co_preadv
= raw_co_preadv
,
4401 .bdrv_co_pwritev
= raw_co_pwritev
,
4402 .bdrv_co_flush_to_disk
= raw_co_flush_to_disk
,
4403 .bdrv_refresh_limits
= cdrom_refresh_limits
,
4404 .bdrv_attach_aio_context
= raw_aio_attach_aio_context
,
4406 .bdrv_co_truncate
= raw_co_truncate
,
4407 .bdrv_co_getlength
= raw_co_getlength
,
4408 .bdrv_co_get_allocated_file_size
= raw_co_get_allocated_file_size
,
4410 /* removable device support */
4411 .bdrv_co_is_inserted
= cdrom_co_is_inserted
,
4412 .bdrv_co_eject
= cdrom_co_eject
,
4413 .bdrv_co_lock_medium
= cdrom_co_lock_medium
,
4415 /* generic scsi device */
4416 .bdrv_co_ioctl
= hdev_co_ioctl
,
4418 #endif /* __linux__ */
4420 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
4421 static int cdrom_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
4424 BDRVRawState
*s
= bs
->opaque
;
4429 ret
= raw_open_common(bs
, options
, flags
, 0, true, errp
);
4434 /* make sure the door isn't locked at this time */
4435 ioctl(s
->fd
, CDIOCALLOW
);
4439 static int cdrom_probe_device(const char *filename
)
4441 if (strstart(filename
, "/dev/cd", NULL
) ||
4442 strstart(filename
, "/dev/acd", NULL
))
4447 static int cdrom_reopen(BlockDriverState
*bs
)
4449 BDRVRawState
*s
= bs
->opaque
;
4453 * Force reread of possibly changed/newly loaded disc,
4454 * FreeBSD seems to not notice sometimes...
4458 fd
= qemu_open(bs
->filename
, s
->open_flags
, NULL
);
4465 /* make sure the door isn't locked at this time */
4466 ioctl(s
->fd
, CDIOCALLOW
);
4470 static bool coroutine_fn
cdrom_co_is_inserted(BlockDriverState
*bs
)
4472 return raw_getlength(bs
) > 0;
4475 static void coroutine_fn
cdrom_co_eject(BlockDriverState
*bs
, bool eject_flag
)
4477 BDRVRawState
*s
= bs
->opaque
;
4482 (void) ioctl(s
->fd
, CDIOCALLOW
);
4485 if (ioctl(s
->fd
, CDIOCEJECT
) < 0)
4486 perror("CDIOCEJECT");
4488 if (ioctl(s
->fd
, CDIOCCLOSE
) < 0)
4489 perror("CDIOCCLOSE");
4495 static void coroutine_fn
cdrom_co_lock_medium(BlockDriverState
*bs
, bool locked
)
4497 BDRVRawState
*s
= bs
->opaque
;
4501 if (ioctl(s
->fd
, (locked
? CDIOCPREVENT
: CDIOCALLOW
)) < 0) {
4503 * Note: an error can happen if the distribution automatically
4506 /* perror("CDROM_LOCKDOOR"); */
4510 static BlockDriver bdrv_host_cdrom
= {
4511 .format_name
= "host_cdrom",
4512 .protocol_name
= "host_cdrom",
4513 .instance_size
= sizeof(BDRVRawState
),
4514 .bdrv_needs_filename
= true,
4515 .bdrv_probe_device
= cdrom_probe_device
,
4516 .bdrv_parse_filename
= cdrom_parse_filename
,
4517 .bdrv_file_open
= cdrom_open
,
4518 .bdrv_close
= raw_close
,
4519 .bdrv_reopen_prepare
= raw_reopen_prepare
,
4520 .bdrv_reopen_commit
= raw_reopen_commit
,
4521 .bdrv_reopen_abort
= raw_reopen_abort
,
4522 .bdrv_co_create_opts
= bdrv_co_create_opts_simple
,
4523 .create_opts
= &bdrv_create_opts_simple
,
4524 .mutable_opts
= mutable_opts
,
4526 .bdrv_co_preadv
= raw_co_preadv
,
4527 .bdrv_co_pwritev
= raw_co_pwritev
,
4528 .bdrv_co_flush_to_disk
= raw_co_flush_to_disk
,
4529 .bdrv_refresh_limits
= cdrom_refresh_limits
,
4530 .bdrv_attach_aio_context
= raw_aio_attach_aio_context
,
4532 .bdrv_co_truncate
= raw_co_truncate
,
4533 .bdrv_co_getlength
= raw_co_getlength
,
4534 .bdrv_co_get_allocated_file_size
= raw_co_get_allocated_file_size
,
4536 /* removable device support */
4537 .bdrv_co_is_inserted
= cdrom_co_is_inserted
,
4538 .bdrv_co_eject
= cdrom_co_eject
,
4539 .bdrv_co_lock_medium
= cdrom_co_lock_medium
,
4541 #endif /* __FreeBSD__ */
4543 #endif /* HAVE_HOST_BLOCK_DEVICE */
4545 static void bdrv_file_init(void)
4548 * Register all the drivers. Note that order is important, the driver
4549 * registered last will get probed first.
4551 bdrv_register(&bdrv_file
);
4552 #if defined(HAVE_HOST_BLOCK_DEVICE)
4553 bdrv_register(&bdrv_host_device
);
4555 bdrv_register(&bdrv_host_cdrom
);
4557 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
4558 bdrv_register(&bdrv_host_cdrom
);
4560 #endif /* HAVE_HOST_BLOCK_DEVICE */
4563 block_init(bdrv_file_init
);