xref: /qemu/block/file-posix.c (revision c7bb41b4)
1 /*
2  * Block driver for RAW files (posix)
3  *
4  * Copyright (c) 2006 Fabrice Bellard
5  *
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:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 
25 #include "qemu/osdep.h"
26 #include "qemu-common.h"
27 #include "qapi/error.h"
28 #include "qemu/cutils.h"
29 #include "qemu/error-report.h"
30 #include "block/block_int.h"
31 #include "qemu/module.h"
32 #include "qemu/option.h"
33 #include "qemu/units.h"
34 #include "trace.h"
35 #include "block/thread-pool.h"
36 #include "qemu/iov.h"
37 #include "block/raw-aio.h"
38 #include "qapi/qmp/qdict.h"
39 #include "qapi/qmp/qstring.h"
40 
41 #include "scsi/pr-manager.h"
42 #include "scsi/constants.h"
43 
44 #if defined(__APPLE__) && (__MACH__)
45 #include <paths.h>
46 #include <sys/param.h>
47 #include <IOKit/IOKitLib.h>
48 #include <IOKit/IOBSD.h>
49 #include <IOKit/storage/IOMediaBSDClient.h>
50 #include <IOKit/storage/IOMedia.h>
51 #include <IOKit/storage/IOCDMedia.h>
52 //#include <IOKit/storage/IOCDTypes.h>
53 #include <IOKit/storage/IODVDMedia.h>
54 #include <CoreFoundation/CoreFoundation.h>
55 #endif
56 
57 #ifdef __sun__
58 #define _POSIX_PTHREAD_SEMANTICS 1
59 #include <sys/dkio.h>
60 #endif
61 #ifdef __linux__
62 #include <sys/ioctl.h>
63 #include <sys/param.h>
64 #include <sys/syscall.h>
65 #include <sys/vfs.h>
66 #include <linux/cdrom.h>
67 #include <linux/fd.h>
68 #include <linux/fs.h>
69 #include <linux/hdreg.h>
70 #include <linux/magic.h>
71 #include <scsi/sg.h>
72 #ifdef __s390__
73 #include <asm/dasd.h>
74 #endif
75 #ifndef FS_NOCOW_FL
76 #define FS_NOCOW_FL                     0x00800000 /* Do not cow file */
77 #endif
78 #endif
79 #if defined(CONFIG_FALLOCATE_PUNCH_HOLE) || defined(CONFIG_FALLOCATE_ZERO_RANGE)
80 #include <linux/falloc.h>
81 #endif
82 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
83 #include <sys/disk.h>
84 #include <sys/cdio.h>
85 #endif
86 
87 #ifdef __OpenBSD__
88 #include <sys/ioctl.h>
89 #include <sys/disklabel.h>
90 #include <sys/dkio.h>
91 #endif
92 
93 #ifdef __NetBSD__
94 #include <sys/ioctl.h>
95 #include <sys/disklabel.h>
96 #include <sys/dkio.h>
97 #include <sys/disk.h>
98 #endif
99 
100 #ifdef __DragonFly__
101 #include <sys/ioctl.h>
102 #include <sys/diskslice.h>
103 #endif
104 
105 #ifdef CONFIG_XFS
106 #include <xfs/xfs.h>
107 #endif
108 
109 /* OS X does not have O_DSYNC */
110 #ifndef O_DSYNC
111 #ifdef O_SYNC
112 #define O_DSYNC O_SYNC
113 #elif defined(O_FSYNC)
114 #define O_DSYNC O_FSYNC
115 #endif
116 #endif
117 
118 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
119 #ifndef O_DIRECT
120 #define O_DIRECT O_DSYNC
121 #endif
122 
123 #define FTYPE_FILE   0
124 #define FTYPE_CD     1
125 
126 #define MAX_BLOCKSIZE	4096
127 
128 /* Posix file locking bytes. Libvirt takes byte 0, we start from higher bytes,
129  * leaving a few more bytes for its future use. */
130 #define RAW_LOCK_PERM_BASE             100
131 #define RAW_LOCK_SHARED_BASE           200
132 
133 typedef struct BDRVRawState {
134     int fd;
135     bool use_lock;
136     int type;
137     int open_flags;
138     size_t buf_align;
139 
140     /* The current permissions. */
141     uint64_t perm;
142     uint64_t shared_perm;
143 
144     /* The perms bits whose corresponding bytes are already locked in
145      * s->fd. */
146     uint64_t locked_perm;
147     uint64_t locked_shared_perm;
148 
149     int perm_change_fd;
150     int perm_change_flags;
151     BDRVReopenState *reopen_state;
152 
153 #ifdef CONFIG_XFS
154     bool is_xfs:1;
155 #endif
156     bool has_discard:1;
157     bool has_write_zeroes:1;
158     bool discard_zeroes:1;
159     bool use_linux_aio:1;
160     bool use_linux_io_uring:1;
161     int page_cache_inconsistent; /* errno from fdatasync failure */
162     bool has_fallocate;
163     bool needs_alignment;
164     bool drop_cache;
165     bool check_cache_dropped;
166     struct {
167         uint64_t discard_nb_ok;
168         uint64_t discard_nb_failed;
169         uint64_t discard_bytes_ok;
170     } stats;
171 
172     PRManager *pr_mgr;
173 } BDRVRawState;
174 
175 typedef struct BDRVRawReopenState {
176     int open_flags;
177     bool drop_cache;
178     bool check_cache_dropped;
179 } BDRVRawReopenState;
180 
181 static int fd_open(BlockDriverState *bs);
182 static int64_t raw_getlength(BlockDriverState *bs);
183 
184 typedef struct RawPosixAIOData {
185     BlockDriverState *bs;
186     int aio_type;
187     int aio_fildes;
188 
189     off_t aio_offset;
190     uint64_t aio_nbytes;
191 
192     union {
193         struct {
194             struct iovec *iov;
195             int niov;
196         } io;
197         struct {
198             uint64_t cmd;
199             void *buf;
200         } ioctl;
201         struct {
202             int aio_fd2;
203             off_t aio_offset2;
204         } copy_range;
205         struct {
206             PreallocMode prealloc;
207             Error **errp;
208         } truncate;
209     };
210 } RawPosixAIOData;
211 
212 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
213 static int cdrom_reopen(BlockDriverState *bs);
214 #endif
215 
216 /*
217  * Elide EAGAIN and EACCES details when failing to lock, as this
218  * indicates that the specified file region is already locked by
219  * another process, which is considered a common scenario.
220  */
221 #define raw_lock_error_setg_errno(errp, err, fmt, ...)                  \
222     do {                                                                \
223         if ((err) == EAGAIN || (err) == EACCES) {                       \
224             error_setg((errp), (fmt), ## __VA_ARGS__);                  \
225         } else {                                                        \
226             error_setg_errno((errp), (err), (fmt), ## __VA_ARGS__);     \
227         }                                                               \
228     } while (0)
229 
230 #if defined(__NetBSD__)
231 static int raw_normalize_devicepath(const char **filename, Error **errp)
232 {
233     static char namebuf[PATH_MAX];
234     const char *dp, *fname;
235     struct stat sb;
236 
237     fname = *filename;
238     dp = strrchr(fname, '/');
239     if (lstat(fname, &sb) < 0) {
240         error_setg_file_open(errp, errno, fname);
241         return -errno;
242     }
243 
244     if (!S_ISBLK(sb.st_mode)) {
245         return 0;
246     }
247 
248     if (dp == NULL) {
249         snprintf(namebuf, PATH_MAX, "r%s", fname);
250     } else {
251         snprintf(namebuf, PATH_MAX, "%.*s/r%s",
252             (int)(dp - fname), fname, dp + 1);
253     }
254     *filename = namebuf;
255     warn_report("%s is a block device, using %s", fname, *filename);
256 
257     return 0;
258 }
259 #else
260 static int raw_normalize_devicepath(const char **filename, Error **errp)
261 {
262     return 0;
263 }
264 #endif
265 
266 /*
267  * Get logical block size via ioctl. On success store it in @sector_size_p.
268  */
269 static int probe_logical_blocksize(int fd, unsigned int *sector_size_p)
270 {
271     unsigned int sector_size;
272     bool success = false;
273     int i;
274 
275     errno = ENOTSUP;
276     static const unsigned long ioctl_list[] = {
277 #ifdef BLKSSZGET
278         BLKSSZGET,
279 #endif
280 #ifdef DKIOCGETBLOCKSIZE
281         DKIOCGETBLOCKSIZE,
282 #endif
283 #ifdef DIOCGSECTORSIZE
284         DIOCGSECTORSIZE,
285 #endif
286     };
287 
288     /* Try a few ioctls to get the right size */
289     for (i = 0; i < (int)ARRAY_SIZE(ioctl_list); i++) {
290         if (ioctl(fd, ioctl_list[i], &sector_size) >= 0) {
291             *sector_size_p = sector_size;
292             success = true;
293         }
294     }
295 
296     return success ? 0 : -errno;
297 }
298 
299 /**
300  * Get physical block size of @fd.
301  * On success, store it in @blk_size and return 0.
302  * On failure, return -errno.
303  */
304 static int probe_physical_blocksize(int fd, unsigned int *blk_size)
305 {
306 #ifdef BLKPBSZGET
307     if (ioctl(fd, BLKPBSZGET, blk_size) < 0) {
308         return -errno;
309     }
310     return 0;
311 #else
312     return -ENOTSUP;
313 #endif
314 }
315 
316 /*
317  * Returns true if no alignment restrictions are necessary even for files
318  * opened with O_DIRECT.
319  *
320  * raw_probe_alignment() probes the required alignment and assume that 1 means
321  * the probing failed, so it falls back to a safe default of 4k. This can be
322  * avoided if we know that byte alignment is okay for the file.
323  */
324 static bool dio_byte_aligned(int fd)
325 {
326 #ifdef __linux__
327     struct statfs buf;
328     int ret;
329 
330     ret = fstatfs(fd, &buf);
331     if (ret == 0 && buf.f_type == NFS_SUPER_MAGIC) {
332         return true;
333     }
334 #endif
335     return false;
336 }
337 
338 /* Check if read is allowed with given memory buffer and length.
339  *
340  * This function is used to check O_DIRECT memory buffer and request alignment.
341  */
342 static bool raw_is_io_aligned(int fd, void *buf, size_t len)
343 {
344     ssize_t ret = pread(fd, buf, len, 0);
345 
346     if (ret >= 0) {
347         return true;
348     }
349 
350 #ifdef __linux__
351     /* The Linux kernel returns EINVAL for misaligned O_DIRECT reads.  Ignore
352      * other errors (e.g. real I/O error), which could happen on a failed
353      * drive, since we only care about probing alignment.
354      */
355     if (errno != EINVAL) {
356         return true;
357     }
358 #endif
359 
360     return false;
361 }
362 
363 static void raw_probe_alignment(BlockDriverState *bs, int fd, Error **errp)
364 {
365     BDRVRawState *s = bs->opaque;
366     char *buf;
367     size_t max_align = MAX(MAX_BLOCKSIZE, qemu_real_host_page_size);
368     size_t alignments[] = {1, 512, 1024, 2048, 4096};
369 
370     /* For SCSI generic devices the alignment is not really used.
371        With buffered I/O, we don't have any restrictions. */
372     if (bdrv_is_sg(bs) || !s->needs_alignment) {
373         bs->bl.request_alignment = 1;
374         s->buf_align = 1;
375         return;
376     }
377 
378     bs->bl.request_alignment = 0;
379     s->buf_align = 0;
380     /* Let's try to use the logical blocksize for the alignment. */
381     if (probe_logical_blocksize(fd, &bs->bl.request_alignment) < 0) {
382         bs->bl.request_alignment = 0;
383     }
384 #ifdef CONFIG_XFS
385     if (s->is_xfs) {
386         struct dioattr da;
387         if (xfsctl(NULL, fd, XFS_IOC_DIOINFO, &da) >= 0) {
388             bs->bl.request_alignment = da.d_miniosz;
389             /* The kernel returns wrong information for d_mem */
390             /* s->buf_align = da.d_mem; */
391         }
392     }
393 #endif
394 
395     /*
396      * If we could not get the sizes so far, we can only guess them. First try
397      * to detect request alignment, since it is more likely to succeed. Then
398      * try to detect buf_align, which cannot be detected in some cases (e.g.
399      * Gluster). If buf_align cannot be detected, we fallback to the value of
400      * request_alignment.
401      */
402 
403     if (!bs->bl.request_alignment) {
404         int i;
405         size_t align;
406         buf = qemu_memalign(max_align, max_align);
407         for (i = 0; i < ARRAY_SIZE(alignments); i++) {
408             align = alignments[i];
409             if (raw_is_io_aligned(fd, buf, align)) {
410                 /* Fallback to safe value. */
411                 bs->bl.request_alignment = (align != 1) ? align : max_align;
412                 break;
413             }
414         }
415         qemu_vfree(buf);
416     }
417 
418     if (!s->buf_align) {
419         int i;
420         size_t align;
421         buf = qemu_memalign(max_align, 2 * max_align);
422         for (i = 0; i < ARRAY_SIZE(alignments); i++) {
423             align = alignments[i];
424             if (raw_is_io_aligned(fd, buf + align, max_align)) {
425                 /* Fallback to request_alignment. */
426                 s->buf_align = (align != 1) ? align : bs->bl.request_alignment;
427                 break;
428             }
429         }
430         qemu_vfree(buf);
431     }
432 
433     if (!s->buf_align || !bs->bl.request_alignment) {
434         error_setg(errp, "Could not find working O_DIRECT alignment");
435         error_append_hint(errp, "Try cache.direct=off\n");
436     }
437 }
438 
439 static int check_hdev_writable(int fd)
440 {
441 #if defined(BLKROGET)
442     /* Linux block devices can be configured "read-only" using blockdev(8).
443      * This is independent of device node permissions and therefore open(2)
444      * with O_RDWR succeeds.  Actual writes fail with EPERM.
445      *
446      * bdrv_open() is supposed to fail if the disk is read-only.  Explicitly
447      * check for read-only block devices so that Linux block devices behave
448      * properly.
449      */
450     struct stat st;
451     int readonly = 0;
452 
453     if (fstat(fd, &st)) {
454         return -errno;
455     }
456 
457     if (!S_ISBLK(st.st_mode)) {
458         return 0;
459     }
460 
461     if (ioctl(fd, BLKROGET, &readonly) < 0) {
462         return -errno;
463     }
464 
465     if (readonly) {
466         return -EACCES;
467     }
468 #endif /* defined(BLKROGET) */
469     return 0;
470 }
471 
472 static void raw_parse_flags(int bdrv_flags, int *open_flags, bool has_writers)
473 {
474     bool read_write = false;
475     assert(open_flags != NULL);
476 
477     *open_flags |= O_BINARY;
478     *open_flags &= ~O_ACCMODE;
479 
480     if (bdrv_flags & BDRV_O_AUTO_RDONLY) {
481         read_write = has_writers;
482     } else if (bdrv_flags & BDRV_O_RDWR) {
483         read_write = true;
484     }
485 
486     if (read_write) {
487         *open_flags |= O_RDWR;
488     } else {
489         *open_flags |= O_RDONLY;
490     }
491 
492     /* Use O_DSYNC for write-through caching, no flags for write-back caching,
493      * and O_DIRECT for no caching. */
494     if ((bdrv_flags & BDRV_O_NOCACHE)) {
495         *open_flags |= O_DIRECT;
496     }
497 }
498 
499 static void raw_parse_filename(const char *filename, QDict *options,
500                                Error **errp)
501 {
502     bdrv_parse_filename_strip_prefix(filename, "file:", options);
503 }
504 
505 static QemuOptsList raw_runtime_opts = {
506     .name = "raw",
507     .head = QTAILQ_HEAD_INITIALIZER(raw_runtime_opts.head),
508     .desc = {
509         {
510             .name = "filename",
511             .type = QEMU_OPT_STRING,
512             .help = "File name of the image",
513         },
514         {
515             .name = "aio",
516             .type = QEMU_OPT_STRING,
517             .help = "host AIO implementation (threads, native, io_uring)",
518         },
519         {
520             .name = "locking",
521             .type = QEMU_OPT_STRING,
522             .help = "file locking mode (on/off/auto, default: auto)",
523         },
524         {
525             .name = "pr-manager",
526             .type = QEMU_OPT_STRING,
527             .help = "id of persistent reservation manager object (default: none)",
528         },
529 #if defined(__linux__)
530         {
531             .name = "drop-cache",
532             .type = QEMU_OPT_BOOL,
533             .help = "invalidate page cache during live migration (default: on)",
534         },
535 #endif
536         {
537             .name = "x-check-cache-dropped",
538             .type = QEMU_OPT_BOOL,
539             .help = "check that page cache was dropped on live migration (default: off)"
540         },
541         { /* end of list */ }
542     },
543 };
544 
545 static const char *const mutable_opts[] = { "x-check-cache-dropped", NULL };
546 
547 static int raw_open_common(BlockDriverState *bs, QDict *options,
548                            int bdrv_flags, int open_flags,
549                            bool device, Error **errp)
550 {
551     BDRVRawState *s = bs->opaque;
552     QemuOpts *opts;
553     Error *local_err = NULL;
554     const char *filename = NULL;
555     const char *str;
556     BlockdevAioOptions aio, aio_default;
557     int fd, ret;
558     struct stat st;
559     OnOffAuto locking;
560 
561     opts = qemu_opts_create(&raw_runtime_opts, NULL, 0, &error_abort);
562     if (!qemu_opts_absorb_qdict(opts, options, errp)) {
563         ret = -EINVAL;
564         goto fail;
565     }
566 
567     filename = qemu_opt_get(opts, "filename");
568 
569     ret = raw_normalize_devicepath(&filename, errp);
570     if (ret != 0) {
571         goto fail;
572     }
573 
574     if (bdrv_flags & BDRV_O_NATIVE_AIO) {
575         aio_default = BLOCKDEV_AIO_OPTIONS_NATIVE;
576 #ifdef CONFIG_LINUX_IO_URING
577     } else if (bdrv_flags & BDRV_O_IO_URING) {
578         aio_default = BLOCKDEV_AIO_OPTIONS_IO_URING;
579 #endif
580     } else {
581         aio_default = BLOCKDEV_AIO_OPTIONS_THREADS;
582     }
583 
584     aio = qapi_enum_parse(&BlockdevAioOptions_lookup,
585                           qemu_opt_get(opts, "aio"),
586                           aio_default, &local_err);
587     if (local_err) {
588         error_propagate(errp, local_err);
589         ret = -EINVAL;
590         goto fail;
591     }
592 
593     s->use_linux_aio = (aio == BLOCKDEV_AIO_OPTIONS_NATIVE);
594 #ifdef CONFIG_LINUX_IO_URING
595     s->use_linux_io_uring = (aio == BLOCKDEV_AIO_OPTIONS_IO_URING);
596 #endif
597 
598     locking = qapi_enum_parse(&OnOffAuto_lookup,
599                               qemu_opt_get(opts, "locking"),
600                               ON_OFF_AUTO_AUTO, &local_err);
601     if (local_err) {
602         error_propagate(errp, local_err);
603         ret = -EINVAL;
604         goto fail;
605     }
606     switch (locking) {
607     case ON_OFF_AUTO_ON:
608         s->use_lock = true;
609         if (!qemu_has_ofd_lock()) {
610             warn_report("File lock requested but OFD locking syscall is "
611                         "unavailable, falling back to POSIX file locks");
612             error_printf("Due to the implementation, locks can be lost "
613                          "unexpectedly.\n");
614         }
615         break;
616     case ON_OFF_AUTO_OFF:
617         s->use_lock = false;
618         break;
619     case ON_OFF_AUTO_AUTO:
620         s->use_lock = qemu_has_ofd_lock();
621         break;
622     default:
623         abort();
624     }
625 
626     str = qemu_opt_get(opts, "pr-manager");
627     if (str) {
628         s->pr_mgr = pr_manager_lookup(str, &local_err);
629         if (local_err) {
630             error_propagate(errp, local_err);
631             ret = -EINVAL;
632             goto fail;
633         }
634     }
635 
636     s->drop_cache = qemu_opt_get_bool(opts, "drop-cache", true);
637     s->check_cache_dropped = qemu_opt_get_bool(opts, "x-check-cache-dropped",
638                                                false);
639 
640     s->open_flags = open_flags;
641     raw_parse_flags(bdrv_flags, &s->open_flags, false);
642 
643     s->fd = -1;
644     fd = qemu_open(filename, s->open_flags, errp);
645     ret = fd < 0 ? -errno : 0;
646 
647     if (ret < 0) {
648         if (ret == -EROFS) {
649             ret = -EACCES;
650         }
651         goto fail;
652     }
653     s->fd = fd;
654 
655     /* Check s->open_flags rather than bdrv_flags due to auto-read-only */
656     if (s->open_flags & O_RDWR) {
657         ret = check_hdev_writable(s->fd);
658         if (ret < 0) {
659             error_setg_errno(errp, -ret, "The device is not writable");
660             goto fail;
661         }
662     }
663 
664     s->perm = 0;
665     s->shared_perm = BLK_PERM_ALL;
666 
667 #ifdef CONFIG_LINUX_AIO
668      /* Currently Linux does AIO only for files opened with O_DIRECT */
669     if (s->use_linux_aio) {
670         if (!(s->open_flags & O_DIRECT)) {
671             error_setg(errp, "aio=native was specified, but it requires "
672                              "cache.direct=on, which was not specified.");
673             ret = -EINVAL;
674             goto fail;
675         }
676         if (!aio_setup_linux_aio(bdrv_get_aio_context(bs), errp)) {
677             error_prepend(errp, "Unable to use native AIO: ");
678             goto fail;
679         }
680     }
681 #else
682     if (s->use_linux_aio) {
683         error_setg(errp, "aio=native was specified, but is not supported "
684                          "in this build.");
685         ret = -EINVAL;
686         goto fail;
687     }
688 #endif /* !defined(CONFIG_LINUX_AIO) */
689 
690 #ifdef CONFIG_LINUX_IO_URING
691     if (s->use_linux_io_uring) {
692         if (!aio_setup_linux_io_uring(bdrv_get_aio_context(bs), errp)) {
693             error_prepend(errp, "Unable to use io_uring: ");
694             goto fail;
695         }
696     }
697 #else
698     if (s->use_linux_io_uring) {
699         error_setg(errp, "aio=io_uring was specified, but is not supported "
700                          "in this build.");
701         ret = -EINVAL;
702         goto fail;
703     }
704 #endif /* !defined(CONFIG_LINUX_IO_URING) */
705 
706     s->has_discard = true;
707     s->has_write_zeroes = true;
708     if ((bs->open_flags & BDRV_O_NOCACHE) != 0 && !dio_byte_aligned(s->fd)) {
709         s->needs_alignment = true;
710     }
711 
712     if (fstat(s->fd, &st) < 0) {
713         ret = -errno;
714         error_setg_errno(errp, errno, "Could not stat file");
715         goto fail;
716     }
717 
718     if (!device) {
719         if (!S_ISREG(st.st_mode)) {
720             error_setg(errp, "'%s' driver requires '%s' to be a regular file",
721                        bs->drv->format_name, bs->filename);
722             ret = -EINVAL;
723             goto fail;
724         } else {
725             s->discard_zeroes = true;
726             s->has_fallocate = true;
727         }
728     } else {
729         if (!(S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
730             error_setg(errp, "'%s' driver requires '%s' to be either "
731                        "a character or block device",
732                        bs->drv->format_name, bs->filename);
733             ret = -EINVAL;
734             goto fail;
735         }
736     }
737 
738     if (S_ISBLK(st.st_mode)) {
739 #ifdef BLKDISCARDZEROES
740         unsigned int arg;
741         if (ioctl(s->fd, BLKDISCARDZEROES, &arg) == 0 && arg) {
742             s->discard_zeroes = true;
743         }
744 #endif
745 #ifdef __linux__
746         /* On Linux 3.10, BLKDISCARD leaves stale data in the page cache.  Do
747          * not rely on the contents of discarded blocks unless using O_DIRECT.
748          * Same for BLKZEROOUT.
749          */
750         if (!(bs->open_flags & BDRV_O_NOCACHE)) {
751             s->discard_zeroes = false;
752             s->has_write_zeroes = false;
753         }
754 #endif
755     }
756 #ifdef __FreeBSD__
757     if (S_ISCHR(st.st_mode)) {
758         /*
759          * The file is a char device (disk), which on FreeBSD isn't behind
760          * a pager, so force all requests to be aligned. This is needed
761          * so QEMU makes sure all IO operations on the device are aligned
762          * to sector size, or else FreeBSD will reject them with EINVAL.
763          */
764         s->needs_alignment = true;
765     }
766 #endif
767 
768 #ifdef CONFIG_XFS
769     if (platform_test_xfs_fd(s->fd)) {
770         s->is_xfs = true;
771     }
772 #endif
773 
774     bs->supported_zero_flags = BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK;
775     if (S_ISREG(st.st_mode)) {
776         /* When extending regular files, we get zeros from the OS */
777         bs->supported_truncate_flags = BDRV_REQ_ZERO_WRITE;
778     }
779     ret = 0;
780 fail:
781     if (ret < 0 && s->fd != -1) {
782         qemu_close(s->fd);
783     }
784     if (filename && (bdrv_flags & BDRV_O_TEMPORARY)) {
785         unlink(filename);
786     }
787     qemu_opts_del(opts);
788     return ret;
789 }
790 
791 static int raw_open(BlockDriverState *bs, QDict *options, int flags,
792                     Error **errp)
793 {
794     BDRVRawState *s = bs->opaque;
795 
796     s->type = FTYPE_FILE;
797     return raw_open_common(bs, options, flags, 0, false, errp);
798 }
799 
800 typedef enum {
801     RAW_PL_PREPARE,
802     RAW_PL_COMMIT,
803     RAW_PL_ABORT,
804 } RawPermLockOp;
805 
806 #define PERM_FOREACH(i) \
807     for ((i) = 0; (1ULL << (i)) <= BLK_PERM_ALL; i++)
808 
809 /* Lock bytes indicated by @perm_lock_bits and @shared_perm_lock_bits in the
810  * file; if @unlock == true, also unlock the unneeded bytes.
811  * @shared_perm_lock_bits is the mask of all permissions that are NOT shared.
812  */
813 static int raw_apply_lock_bytes(BDRVRawState *s, int fd,
814                                 uint64_t perm_lock_bits,
815                                 uint64_t shared_perm_lock_bits,
816                                 bool unlock, Error **errp)
817 {
818     int ret;
819     int i;
820     uint64_t locked_perm, locked_shared_perm;
821 
822     if (s) {
823         locked_perm = s->locked_perm;
824         locked_shared_perm = s->locked_shared_perm;
825     } else {
826         /*
827          * We don't have the previous bits, just lock/unlock for each of the
828          * requested bits.
829          */
830         if (unlock) {
831             locked_perm = BLK_PERM_ALL;
832             locked_shared_perm = BLK_PERM_ALL;
833         } else {
834             locked_perm = 0;
835             locked_shared_perm = 0;
836         }
837     }
838 
839     PERM_FOREACH(i) {
840         int off = RAW_LOCK_PERM_BASE + i;
841         uint64_t bit = (1ULL << i);
842         if ((perm_lock_bits & bit) && !(locked_perm & bit)) {
843             ret = qemu_lock_fd(fd, off, 1, false);
844             if (ret) {
845                 raw_lock_error_setg_errno(errp, -ret, "Failed to lock byte %d",
846                                           off);
847                 return ret;
848             } else if (s) {
849                 s->locked_perm |= bit;
850             }
851         } else if (unlock && (locked_perm & bit) && !(perm_lock_bits & bit)) {
852             ret = qemu_unlock_fd(fd, off, 1);
853             if (ret) {
854                 error_setg_errno(errp, -ret, "Failed to unlock byte %d", off);
855                 return ret;
856             } else if (s) {
857                 s->locked_perm &= ~bit;
858             }
859         }
860     }
861     PERM_FOREACH(i) {
862         int off = RAW_LOCK_SHARED_BASE + i;
863         uint64_t bit = (1ULL << i);
864         if ((shared_perm_lock_bits & bit) && !(locked_shared_perm & bit)) {
865             ret = qemu_lock_fd(fd, off, 1, false);
866             if (ret) {
867                 raw_lock_error_setg_errno(errp, -ret, "Failed to lock byte %d",
868                                           off);
869                 return ret;
870             } else if (s) {
871                 s->locked_shared_perm |= bit;
872             }
873         } else if (unlock && (locked_shared_perm & bit) &&
874                    !(shared_perm_lock_bits & bit)) {
875             ret = qemu_unlock_fd(fd, off, 1);
876             if (ret) {
877                 error_setg_errno(errp, -ret, "Failed to unlock byte %d", off);
878                 return ret;
879             } else if (s) {
880                 s->locked_shared_perm &= ~bit;
881             }
882         }
883     }
884     return 0;
885 }
886 
887 /* Check "unshared" bytes implied by @perm and ~@shared_perm in the file. */
888 static int raw_check_lock_bytes(int fd, uint64_t perm, uint64_t shared_perm,
889                                 Error **errp)
890 {
891     int ret;
892     int i;
893 
894     PERM_FOREACH(i) {
895         int off = RAW_LOCK_SHARED_BASE + i;
896         uint64_t p = 1ULL << i;
897         if (perm & p) {
898             ret = qemu_lock_fd_test(fd, off, 1, true);
899             if (ret) {
900                 char *perm_name = bdrv_perm_names(p);
901 
902                 raw_lock_error_setg_errno(errp, -ret,
903                                           "Failed to get \"%s\" lock",
904                                           perm_name);
905                 g_free(perm_name);
906                 return ret;
907             }
908         }
909     }
910     PERM_FOREACH(i) {
911         int off = RAW_LOCK_PERM_BASE + i;
912         uint64_t p = 1ULL << i;
913         if (!(shared_perm & p)) {
914             ret = qemu_lock_fd_test(fd, off, 1, true);
915             if (ret) {
916                 char *perm_name = bdrv_perm_names(p);
917 
918                 raw_lock_error_setg_errno(errp, -ret,
919                                           "Failed to get shared \"%s\" lock",
920                                           perm_name);
921                 g_free(perm_name);
922                 return ret;
923             }
924         }
925     }
926     return 0;
927 }
928 
929 static int raw_handle_perm_lock(BlockDriverState *bs,
930                                 RawPermLockOp op,
931                                 uint64_t new_perm, uint64_t new_shared,
932                                 Error **errp)
933 {
934     BDRVRawState *s = bs->opaque;
935     int ret = 0;
936     Error *local_err = NULL;
937 
938     if (!s->use_lock) {
939         return 0;
940     }
941 
942     if (bdrv_get_flags(bs) & BDRV_O_INACTIVE) {
943         return 0;
944     }
945 
946     switch (op) {
947     case RAW_PL_PREPARE:
948         if ((s->perm | new_perm) == s->perm &&
949             (s->shared_perm & new_shared) == s->shared_perm)
950         {
951             /*
952              * We are going to unlock bytes, it should not fail. If it fail due
953              * to some fs-dependent permission-unrelated reasons (which occurs
954              * sometimes on NFS and leads to abort in bdrv_replace_child) we
955              * can't prevent such errors by any check here. And we ignore them
956              * anyway in ABORT and COMMIT.
957              */
958             return 0;
959         }
960         ret = raw_apply_lock_bytes(s, s->fd, s->perm | new_perm,
961                                    ~s->shared_perm | ~new_shared,
962                                    false, errp);
963         if (!ret) {
964             ret = raw_check_lock_bytes(s->fd, new_perm, new_shared, errp);
965             if (!ret) {
966                 return 0;
967             }
968             error_append_hint(errp,
969                               "Is another process using the image [%s]?\n",
970                               bs->filename);
971         }
972         /* fall through to unlock bytes. */
973     case RAW_PL_ABORT:
974         raw_apply_lock_bytes(s, s->fd, s->perm, ~s->shared_perm,
975                              true, &local_err);
976         if (local_err) {
977             /* Theoretically the above call only unlocks bytes and it cannot
978              * fail. Something weird happened, report it.
979              */
980             warn_report_err(local_err);
981         }
982         break;
983     case RAW_PL_COMMIT:
984         raw_apply_lock_bytes(s, s->fd, new_perm, ~new_shared,
985                              true, &local_err);
986         if (local_err) {
987             /* Theoretically the above call only unlocks bytes and it cannot
988              * fail. Something weird happened, report it.
989              */
990             warn_report_err(local_err);
991         }
992         break;
993     }
994     return ret;
995 }
996 
997 static int raw_reconfigure_getfd(BlockDriverState *bs, int flags,
998                                  int *open_flags, uint64_t perm, bool force_dup,
999                                  Error **errp)
1000 {
1001     BDRVRawState *s = bs->opaque;
1002     int fd = -1;
1003     int ret;
1004     bool has_writers = perm &
1005         (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED | BLK_PERM_RESIZE);
1006     int fcntl_flags = O_APPEND | O_NONBLOCK;
1007 #ifdef O_NOATIME
1008     fcntl_flags |= O_NOATIME;
1009 #endif
1010 
1011     *open_flags = 0;
1012     if (s->type == FTYPE_CD) {
1013         *open_flags |= O_NONBLOCK;
1014     }
1015 
1016     raw_parse_flags(flags, open_flags, has_writers);
1017 
1018 #ifdef O_ASYNC
1019     /* Not all operating systems have O_ASYNC, and those that don't
1020      * will not let us track the state into rs->open_flags (typically
1021      * you achieve the same effect with an ioctl, for example I_SETSIG
1022      * on Solaris). But we do not use O_ASYNC, so that's fine.
1023      */
1024     assert((s->open_flags & O_ASYNC) == 0);
1025 #endif
1026 
1027     if (!force_dup && *open_flags == s->open_flags) {
1028         /* We're lucky, the existing fd is fine */
1029         return s->fd;
1030     }
1031 
1032     if ((*open_flags & ~fcntl_flags) == (s->open_flags & ~fcntl_flags)) {
1033         /* dup the original fd */
1034         fd = qemu_dup(s->fd);
1035         if (fd >= 0) {
1036             ret = fcntl_setfl(fd, *open_flags);
1037             if (ret) {
1038                 qemu_close(fd);
1039                 fd = -1;
1040             }
1041         }
1042     }
1043 
1044     /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
1045     if (fd == -1) {
1046         const char *normalized_filename = bs->filename;
1047         ret = raw_normalize_devicepath(&normalized_filename, errp);
1048         if (ret >= 0) {
1049             fd = qemu_open(normalized_filename, *open_flags, errp);
1050             if (fd == -1) {
1051                 return -1;
1052             }
1053         }
1054     }
1055 
1056     if (fd != -1 && (*open_flags & O_RDWR)) {
1057         ret = check_hdev_writable(fd);
1058         if (ret < 0) {
1059             qemu_close(fd);
1060             error_setg_errno(errp, -ret, "The device is not writable");
1061             return -1;
1062         }
1063     }
1064 
1065     return fd;
1066 }
1067 
1068 static int raw_reopen_prepare(BDRVReopenState *state,
1069                               BlockReopenQueue *queue, Error **errp)
1070 {
1071     BDRVRawState *s;
1072     BDRVRawReopenState *rs;
1073     QemuOpts *opts;
1074     int ret;
1075 
1076     assert(state != NULL);
1077     assert(state->bs != NULL);
1078 
1079     s = state->bs->opaque;
1080 
1081     state->opaque = g_new0(BDRVRawReopenState, 1);
1082     rs = state->opaque;
1083 
1084     /* Handle options changes */
1085     opts = qemu_opts_create(&raw_runtime_opts, NULL, 0, &error_abort);
1086     if (!qemu_opts_absorb_qdict(opts, state->options, errp)) {
1087         ret = -EINVAL;
1088         goto out;
1089     }
1090 
1091     rs->drop_cache = qemu_opt_get_bool_del(opts, "drop-cache", true);
1092     rs->check_cache_dropped =
1093         qemu_opt_get_bool_del(opts, "x-check-cache-dropped", false);
1094 
1095     /* This driver's reopen function doesn't currently allow changing
1096      * other options, so let's put them back in the original QDict and
1097      * bdrv_reopen_prepare() will detect changes and complain. */
1098     qemu_opts_to_qdict(opts, state->options);
1099 
1100     /*
1101      * As part of reopen prepare we also want to create new fd by
1102      * raw_reconfigure_getfd(). But it wants updated "perm", when in
1103      * bdrv_reopen_multiple() .bdrv_reopen_prepare() callback called prior to
1104      * permission update. Happily, permission update is always a part (a seprate
1105      * stage) of bdrv_reopen_multiple() so we can rely on this fact and
1106      * reconfigure fd in raw_check_perm().
1107      */
1108 
1109     s->reopen_state = state;
1110     ret = 0;
1111 
1112 out:
1113     qemu_opts_del(opts);
1114     return ret;
1115 }
1116 
1117 static void raw_reopen_commit(BDRVReopenState *state)
1118 {
1119     BDRVRawReopenState *rs = state->opaque;
1120     BDRVRawState *s = state->bs->opaque;
1121 
1122     s->drop_cache = rs->drop_cache;
1123     s->check_cache_dropped = rs->check_cache_dropped;
1124     s->open_flags = rs->open_flags;
1125     g_free(state->opaque);
1126     state->opaque = NULL;
1127 
1128     assert(s->reopen_state == state);
1129     s->reopen_state = NULL;
1130 }
1131 
1132 
1133 static void raw_reopen_abort(BDRVReopenState *state)
1134 {
1135     BDRVRawReopenState *rs = state->opaque;
1136     BDRVRawState *s = state->bs->opaque;
1137 
1138      /* nothing to do if NULL, we didn't get far enough */
1139     if (rs == NULL) {
1140         return;
1141     }
1142 
1143     g_free(state->opaque);
1144     state->opaque = NULL;
1145 
1146     assert(s->reopen_state == state);
1147     s->reopen_state = NULL;
1148 }
1149 
1150 static int sg_get_max_transfer_length(int fd)
1151 {
1152 #ifdef BLKSECTGET
1153     int max_bytes = 0;
1154 
1155     if (ioctl(fd, BLKSECTGET, &max_bytes) == 0) {
1156         return max_bytes;
1157     } else {
1158         return -errno;
1159     }
1160 #else
1161     return -ENOSYS;
1162 #endif
1163 }
1164 
1165 static int sg_get_max_segments(int fd)
1166 {
1167 #ifdef CONFIG_LINUX
1168     char buf[32];
1169     const char *end;
1170     char *sysfspath = NULL;
1171     int ret;
1172     int sysfd = -1;
1173     long max_segments;
1174     struct stat st;
1175 
1176     if (fstat(fd, &st)) {
1177         ret = -errno;
1178         goto out;
1179     }
1180 
1181     sysfspath = g_strdup_printf("/sys/dev/block/%u:%u/queue/max_segments",
1182                                 major(st.st_rdev), minor(st.st_rdev));
1183     sysfd = open(sysfspath, O_RDONLY);
1184     if (sysfd == -1) {
1185         ret = -errno;
1186         goto out;
1187     }
1188     do {
1189         ret = read(sysfd, buf, sizeof(buf) - 1);
1190     } while (ret == -1 && errno == EINTR);
1191     if (ret < 0) {
1192         ret = -errno;
1193         goto out;
1194     } else if (ret == 0) {
1195         ret = -EIO;
1196         goto out;
1197     }
1198     buf[ret] = 0;
1199     /* The file is ended with '\n', pass 'end' to accept that. */
1200     ret = qemu_strtol(buf, &end, 10, &max_segments);
1201     if (ret == 0 && end && *end == '\n') {
1202         ret = max_segments;
1203     }
1204 
1205 out:
1206     if (sysfd != -1) {
1207         close(sysfd);
1208     }
1209     g_free(sysfspath);
1210     return ret;
1211 #else
1212     return -ENOTSUP;
1213 #endif
1214 }
1215 
1216 static void raw_refresh_limits(BlockDriverState *bs, Error **errp)
1217 {
1218     BDRVRawState *s = bs->opaque;
1219 
1220     if (bs->sg) {
1221         int ret = sg_get_max_transfer_length(s->fd);
1222 
1223         if (ret > 0 && ret <= BDRV_REQUEST_MAX_BYTES) {
1224             bs->bl.max_transfer = pow2floor(ret);
1225         }
1226 
1227         ret = sg_get_max_segments(s->fd);
1228         if (ret > 0) {
1229             bs->bl.max_transfer = MIN(bs->bl.max_transfer,
1230                                       ret * qemu_real_host_page_size);
1231         }
1232     }
1233 
1234     raw_probe_alignment(bs, s->fd, errp);
1235     bs->bl.min_mem_alignment = s->buf_align;
1236     bs->bl.opt_mem_alignment = MAX(s->buf_align, qemu_real_host_page_size);
1237 }
1238 
1239 static int check_for_dasd(int fd)
1240 {
1241 #ifdef BIODASDINFO2
1242     struct dasd_information2_t info = {0};
1243 
1244     return ioctl(fd, BIODASDINFO2, &info);
1245 #else
1246     return -1;
1247 #endif
1248 }
1249 
1250 /**
1251  * Try to get @bs's logical and physical block size.
1252  * On success, store them in @bsz and return zero.
1253  * On failure, return negative errno.
1254  */
1255 static int hdev_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
1256 {
1257     BDRVRawState *s = bs->opaque;
1258     int ret;
1259 
1260     /* If DASD, get blocksizes */
1261     if (check_for_dasd(s->fd) < 0) {
1262         return -ENOTSUP;
1263     }
1264     ret = probe_logical_blocksize(s->fd, &bsz->log);
1265     if (ret < 0) {
1266         return ret;
1267     }
1268     return probe_physical_blocksize(s->fd, &bsz->phys);
1269 }
1270 
1271 /**
1272  * Try to get @bs's geometry: cyls, heads, sectors.
1273  * On success, store them in @geo and return 0.
1274  * On failure return -errno.
1275  * (Allows block driver to assign default geometry values that guest sees)
1276  */
1277 #ifdef __linux__
1278 static int hdev_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
1279 {
1280     BDRVRawState *s = bs->opaque;
1281     struct hd_geometry ioctl_geo = {0};
1282 
1283     /* If DASD, get its geometry */
1284     if (check_for_dasd(s->fd) < 0) {
1285         return -ENOTSUP;
1286     }
1287     if (ioctl(s->fd, HDIO_GETGEO, &ioctl_geo) < 0) {
1288         return -errno;
1289     }
1290     /* HDIO_GETGEO may return success even though geo contains zeros
1291        (e.g. certain multipath setups) */
1292     if (!ioctl_geo.heads || !ioctl_geo.sectors || !ioctl_geo.cylinders) {
1293         return -ENOTSUP;
1294     }
1295     /* Do not return a geometry for partition */
1296     if (ioctl_geo.start != 0) {
1297         return -ENOTSUP;
1298     }
1299     geo->heads = ioctl_geo.heads;
1300     geo->sectors = ioctl_geo.sectors;
1301     geo->cylinders = ioctl_geo.cylinders;
1302 
1303     return 0;
1304 }
1305 #else /* __linux__ */
1306 static int hdev_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
1307 {
1308     return -ENOTSUP;
1309 }
1310 #endif
1311 
1312 #if defined(__linux__)
1313 static int handle_aiocb_ioctl(void *opaque)
1314 {
1315     RawPosixAIOData *aiocb = opaque;
1316     int ret;
1317 
1318     ret = ioctl(aiocb->aio_fildes, aiocb->ioctl.cmd, aiocb->ioctl.buf);
1319     if (ret == -1) {
1320         return -errno;
1321     }
1322 
1323     return 0;
1324 }
1325 #endif /* linux */
1326 
1327 static int handle_aiocb_flush(void *opaque)
1328 {
1329     RawPosixAIOData *aiocb = opaque;
1330     BDRVRawState *s = aiocb->bs->opaque;
1331     int ret;
1332 
1333     if (s->page_cache_inconsistent) {
1334         return -s->page_cache_inconsistent;
1335     }
1336 
1337     ret = qemu_fdatasync(aiocb->aio_fildes);
1338     if (ret == -1) {
1339         trace_file_flush_fdatasync_failed(errno);
1340 
1341         /* There is no clear definition of the semantics of a failing fsync(),
1342          * so we may have to assume the worst. The sad truth is that this
1343          * assumption is correct for Linux. Some pages are now probably marked
1344          * clean in the page cache even though they are inconsistent with the
1345          * on-disk contents. The next fdatasync() call would succeed, but no
1346          * further writeback attempt will be made. We can't get back to a state
1347          * in which we know what is on disk (we would have to rewrite
1348          * everything that was touched since the last fdatasync() at least), so
1349          * make bdrv_flush() fail permanently. Given that the behaviour isn't
1350          * really defined, I have little hope that other OSes are doing better.
1351          *
1352          * Obviously, this doesn't affect O_DIRECT, which bypasses the page
1353          * cache. */
1354         if ((s->open_flags & O_DIRECT) == 0) {
1355             s->page_cache_inconsistent = errno;
1356         }
1357         return -errno;
1358     }
1359     return 0;
1360 }
1361 
1362 #ifdef CONFIG_PREADV
1363 
1364 static bool preadv_present = true;
1365 
1366 static ssize_t
1367 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
1368 {
1369     return preadv(fd, iov, nr_iov, offset);
1370 }
1371 
1372 static ssize_t
1373 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
1374 {
1375     return pwritev(fd, iov, nr_iov, offset);
1376 }
1377 
1378 #else
1379 
1380 static bool preadv_present = false;
1381 
1382 static ssize_t
1383 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
1384 {
1385     return -ENOSYS;
1386 }
1387 
1388 static ssize_t
1389 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
1390 {
1391     return -ENOSYS;
1392 }
1393 
1394 #endif
1395 
1396 static ssize_t handle_aiocb_rw_vector(RawPosixAIOData *aiocb)
1397 {
1398     ssize_t len;
1399 
1400     do {
1401         if (aiocb->aio_type & QEMU_AIO_WRITE)
1402             len = qemu_pwritev(aiocb->aio_fildes,
1403                                aiocb->io.iov,
1404                                aiocb->io.niov,
1405                                aiocb->aio_offset);
1406          else
1407             len = qemu_preadv(aiocb->aio_fildes,
1408                               aiocb->io.iov,
1409                               aiocb->io.niov,
1410                               aiocb->aio_offset);
1411     } while (len == -1 && errno == EINTR);
1412 
1413     if (len == -1) {
1414         return -errno;
1415     }
1416     return len;
1417 }
1418 
1419 /*
1420  * Read/writes the data to/from a given linear buffer.
1421  *
1422  * Returns the number of bytes handles or -errno in case of an error. Short
1423  * reads are only returned if the end of the file is reached.
1424  */
1425 static ssize_t handle_aiocb_rw_linear(RawPosixAIOData *aiocb, char *buf)
1426 {
1427     ssize_t offset = 0;
1428     ssize_t len;
1429 
1430     while (offset < aiocb->aio_nbytes) {
1431         if (aiocb->aio_type & QEMU_AIO_WRITE) {
1432             len = pwrite(aiocb->aio_fildes,
1433                          (const char *)buf + offset,
1434                          aiocb->aio_nbytes - offset,
1435                          aiocb->aio_offset + offset);
1436         } else {
1437             len = pread(aiocb->aio_fildes,
1438                         buf + offset,
1439                         aiocb->aio_nbytes - offset,
1440                         aiocb->aio_offset + offset);
1441         }
1442         if (len == -1 && errno == EINTR) {
1443             continue;
1444         } else if (len == -1 && errno == EINVAL &&
1445                    (aiocb->bs->open_flags & BDRV_O_NOCACHE) &&
1446                    !(aiocb->aio_type & QEMU_AIO_WRITE) &&
1447                    offset > 0) {
1448             /* O_DIRECT pread() may fail with EINVAL when offset is unaligned
1449              * after a short read.  Assume that O_DIRECT short reads only occur
1450              * at EOF.  Therefore this is a short read, not an I/O error.
1451              */
1452             break;
1453         } else if (len == -1) {
1454             offset = -errno;
1455             break;
1456         } else if (len == 0) {
1457             break;
1458         }
1459         offset += len;
1460     }
1461 
1462     return offset;
1463 }
1464 
1465 static int handle_aiocb_rw(void *opaque)
1466 {
1467     RawPosixAIOData *aiocb = opaque;
1468     ssize_t nbytes;
1469     char *buf;
1470 
1471     if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) {
1472         /*
1473          * If there is just a single buffer, and it is properly aligned
1474          * we can just use plain pread/pwrite without any problems.
1475          */
1476         if (aiocb->io.niov == 1) {
1477             nbytes = handle_aiocb_rw_linear(aiocb, aiocb->io.iov->iov_base);
1478             goto out;
1479         }
1480         /*
1481          * We have more than one iovec, and all are properly aligned.
1482          *
1483          * Try preadv/pwritev first and fall back to linearizing the
1484          * buffer if it's not supported.
1485          */
1486         if (preadv_present) {
1487             nbytes = handle_aiocb_rw_vector(aiocb);
1488             if (nbytes == aiocb->aio_nbytes ||
1489                 (nbytes < 0 && nbytes != -ENOSYS)) {
1490                 goto out;
1491             }
1492             preadv_present = false;
1493         }
1494 
1495         /*
1496          * XXX(hch): short read/write.  no easy way to handle the reminder
1497          * using these interfaces.  For now retry using plain
1498          * pread/pwrite?
1499          */
1500     }
1501 
1502     /*
1503      * Ok, we have to do it the hard way, copy all segments into
1504      * a single aligned buffer.
1505      */
1506     buf = qemu_try_blockalign(aiocb->bs, aiocb->aio_nbytes);
1507     if (buf == NULL) {
1508         nbytes = -ENOMEM;
1509         goto out;
1510     }
1511 
1512     if (aiocb->aio_type & QEMU_AIO_WRITE) {
1513         char *p = buf;
1514         int i;
1515 
1516         for (i = 0; i < aiocb->io.niov; ++i) {
1517             memcpy(p, aiocb->io.iov[i].iov_base, aiocb->io.iov[i].iov_len);
1518             p += aiocb->io.iov[i].iov_len;
1519         }
1520         assert(p - buf == aiocb->aio_nbytes);
1521     }
1522 
1523     nbytes = handle_aiocb_rw_linear(aiocb, buf);
1524     if (!(aiocb->aio_type & QEMU_AIO_WRITE)) {
1525         char *p = buf;
1526         size_t count = aiocb->aio_nbytes, copy;
1527         int i;
1528 
1529         for (i = 0; i < aiocb->io.niov && count; ++i) {
1530             copy = count;
1531             if (copy > aiocb->io.iov[i].iov_len) {
1532                 copy = aiocb->io.iov[i].iov_len;
1533             }
1534             memcpy(aiocb->io.iov[i].iov_base, p, copy);
1535             assert(count >= copy);
1536             p     += copy;
1537             count -= copy;
1538         }
1539         assert(count == 0);
1540     }
1541     qemu_vfree(buf);
1542 
1543 out:
1544     if (nbytes == aiocb->aio_nbytes) {
1545         return 0;
1546     } else if (nbytes >= 0 && nbytes < aiocb->aio_nbytes) {
1547         if (aiocb->aio_type & QEMU_AIO_WRITE) {
1548             return -EINVAL;
1549         } else {
1550             iov_memset(aiocb->io.iov, aiocb->io.niov, nbytes,
1551                       0, aiocb->aio_nbytes - nbytes);
1552             return 0;
1553         }
1554     } else {
1555         assert(nbytes < 0);
1556         return nbytes;
1557     }
1558 }
1559 
1560 static int translate_err(int err)
1561 {
1562     if (err == -ENODEV || err == -ENOSYS || err == -EOPNOTSUPP ||
1563         err == -ENOTTY) {
1564         err = -ENOTSUP;
1565     }
1566     return err;
1567 }
1568 
1569 #ifdef CONFIG_FALLOCATE
1570 static int do_fallocate(int fd, int mode, off_t offset, off_t len)
1571 {
1572     do {
1573         if (fallocate(fd, mode, offset, len) == 0) {
1574             return 0;
1575         }
1576     } while (errno == EINTR);
1577     return translate_err(-errno);
1578 }
1579 #endif
1580 
1581 static ssize_t handle_aiocb_write_zeroes_block(RawPosixAIOData *aiocb)
1582 {
1583     int ret = -ENOTSUP;
1584     BDRVRawState *s = aiocb->bs->opaque;
1585 
1586     if (!s->has_write_zeroes) {
1587         return -ENOTSUP;
1588     }
1589 
1590 #ifdef BLKZEROOUT
1591     /* The BLKZEROOUT implementation in the kernel doesn't set
1592      * BLKDEV_ZERO_NOFALLBACK, so we can't call this if we have to avoid slow
1593      * fallbacks. */
1594     if (!(aiocb->aio_type & QEMU_AIO_NO_FALLBACK)) {
1595         do {
1596             uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
1597             if (ioctl(aiocb->aio_fildes, BLKZEROOUT, range) == 0) {
1598                 return 0;
1599             }
1600         } while (errno == EINTR);
1601 
1602         ret = translate_err(-errno);
1603         if (ret == -ENOTSUP) {
1604             s->has_write_zeroes = false;
1605         }
1606     }
1607 #endif
1608 
1609     return ret;
1610 }
1611 
1612 static int handle_aiocb_write_zeroes(void *opaque)
1613 {
1614     RawPosixAIOData *aiocb = opaque;
1615 #ifdef CONFIG_FALLOCATE
1616     BDRVRawState *s = aiocb->bs->opaque;
1617     int64_t len;
1618 #endif
1619 
1620     if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
1621         return handle_aiocb_write_zeroes_block(aiocb);
1622     }
1623 
1624 #ifdef CONFIG_FALLOCATE_ZERO_RANGE
1625     if (s->has_write_zeroes) {
1626         int ret = do_fallocate(s->fd, FALLOC_FL_ZERO_RANGE,
1627                                aiocb->aio_offset, aiocb->aio_nbytes);
1628         if (ret == -ENOTSUP) {
1629             s->has_write_zeroes = false;
1630         } else if (ret == 0 || ret != -EINVAL) {
1631             return ret;
1632         }
1633         /*
1634          * Note: Some file systems do not like unaligned byte ranges, and
1635          * return EINVAL in such a case, though they should not do it according
1636          * to the man-page of fallocate(). Thus we simply ignore this return
1637          * value and try the other fallbacks instead.
1638          */
1639     }
1640 #endif
1641 
1642 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1643     if (s->has_discard && s->has_fallocate) {
1644         int ret = do_fallocate(s->fd,
1645                                FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
1646                                aiocb->aio_offset, aiocb->aio_nbytes);
1647         if (ret == 0) {
1648             ret = do_fallocate(s->fd, 0, aiocb->aio_offset, aiocb->aio_nbytes);
1649             if (ret == 0 || ret != -ENOTSUP) {
1650                 return ret;
1651             }
1652             s->has_fallocate = false;
1653         } else if (ret == -EINVAL) {
1654             /*
1655              * Some file systems like older versions of GPFS do not like un-
1656              * aligned byte ranges, and return EINVAL in such a case, though
1657              * they should not do it according to the man-page of fallocate().
1658              * Warn about the bad filesystem and try the final fallback instead.
1659              */
1660             warn_report_once("Your file system is misbehaving: "
1661                              "fallocate(FALLOC_FL_PUNCH_HOLE) returned EINVAL. "
1662                              "Please report this bug to your file sytem "
1663                              "vendor.");
1664         } else if (ret != -ENOTSUP) {
1665             return ret;
1666         } else {
1667             s->has_discard = false;
1668         }
1669     }
1670 #endif
1671 
1672 #ifdef CONFIG_FALLOCATE
1673     /* Last resort: we are trying to extend the file with zeroed data. This
1674      * can be done via fallocate(fd, 0) */
1675     len = bdrv_getlength(aiocb->bs);
1676     if (s->has_fallocate && len >= 0 && aiocb->aio_offset >= len) {
1677         int ret = do_fallocate(s->fd, 0, aiocb->aio_offset, aiocb->aio_nbytes);
1678         if (ret == 0 || ret != -ENOTSUP) {
1679             return ret;
1680         }
1681         s->has_fallocate = false;
1682     }
1683 #endif
1684 
1685     return -ENOTSUP;
1686 }
1687 
1688 static int handle_aiocb_write_zeroes_unmap(void *opaque)
1689 {
1690     RawPosixAIOData *aiocb = opaque;
1691     BDRVRawState *s G_GNUC_UNUSED = aiocb->bs->opaque;
1692 
1693     /* First try to write zeros and unmap at the same time */
1694 
1695 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1696     int ret = do_fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
1697                            aiocb->aio_offset, aiocb->aio_nbytes);
1698     switch (ret) {
1699     case -ENOTSUP:
1700     case -EINVAL:
1701     case -EBUSY:
1702         break;
1703     default:
1704         return ret;
1705     }
1706 #endif
1707 
1708     /* If we couldn't manage to unmap while guaranteed that the area reads as
1709      * all-zero afterwards, just write zeroes without unmapping */
1710     return handle_aiocb_write_zeroes(aiocb);
1711 }
1712 
1713 #ifndef HAVE_COPY_FILE_RANGE
1714 static off_t copy_file_range(int in_fd, off_t *in_off, int out_fd,
1715                              off_t *out_off, size_t len, unsigned int flags)
1716 {
1717 #ifdef __NR_copy_file_range
1718     return syscall(__NR_copy_file_range, in_fd, in_off, out_fd,
1719                    out_off, len, flags);
1720 #else
1721     errno = ENOSYS;
1722     return -1;
1723 #endif
1724 }
1725 #endif
1726 
1727 static int handle_aiocb_copy_range(void *opaque)
1728 {
1729     RawPosixAIOData *aiocb = opaque;
1730     uint64_t bytes = aiocb->aio_nbytes;
1731     off_t in_off = aiocb->aio_offset;
1732     off_t out_off = aiocb->copy_range.aio_offset2;
1733 
1734     while (bytes) {
1735         ssize_t ret = copy_file_range(aiocb->aio_fildes, &in_off,
1736                                       aiocb->copy_range.aio_fd2, &out_off,
1737                                       bytes, 0);
1738         trace_file_copy_file_range(aiocb->bs, aiocb->aio_fildes, in_off,
1739                                    aiocb->copy_range.aio_fd2, out_off, bytes,
1740                                    0, ret);
1741         if (ret == 0) {
1742             /* No progress (e.g. when beyond EOF), let the caller fall back to
1743              * buffer I/O. */
1744             return -ENOSPC;
1745         }
1746         if (ret < 0) {
1747             switch (errno) {
1748             case ENOSYS:
1749                 return -ENOTSUP;
1750             case EINTR:
1751                 continue;
1752             default:
1753                 return -errno;
1754             }
1755         }
1756         bytes -= ret;
1757     }
1758     return 0;
1759 }
1760 
1761 static int handle_aiocb_discard(void *opaque)
1762 {
1763     RawPosixAIOData *aiocb = opaque;
1764     int ret = -EOPNOTSUPP;
1765     BDRVRawState *s = aiocb->bs->opaque;
1766 
1767     if (!s->has_discard) {
1768         return -ENOTSUP;
1769     }
1770 
1771     if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
1772 #ifdef BLKDISCARD
1773         do {
1774             uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
1775             if (ioctl(aiocb->aio_fildes, BLKDISCARD, range) == 0) {
1776                 return 0;
1777             }
1778         } while (errno == EINTR);
1779 
1780         ret = -errno;
1781 #endif
1782     } else {
1783 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1784         ret = do_fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
1785                            aiocb->aio_offset, aiocb->aio_nbytes);
1786 #endif
1787     }
1788 
1789     ret = translate_err(ret);
1790     if (ret == -ENOTSUP) {
1791         s->has_discard = false;
1792     }
1793     return ret;
1794 }
1795 
1796 /*
1797  * Help alignment probing by allocating the first block.
1798  *
1799  * When reading with direct I/O from unallocated area on Gluster backed by XFS,
1800  * reading succeeds regardless of request length. In this case we fallback to
1801  * safe alignment which is not optimal. Allocating the first block avoids this
1802  * fallback.
1803  *
1804  * fd may be opened with O_DIRECT, but we don't know the buffer alignment or
1805  * request alignment, so we use safe values.
1806  *
1807  * Returns: 0 on success, -errno on failure. Since this is an optimization,
1808  * caller may ignore failures.
1809  */
1810 static int allocate_first_block(int fd, size_t max_size)
1811 {
1812     size_t write_size = (max_size < MAX_BLOCKSIZE)
1813         ? BDRV_SECTOR_SIZE
1814         : MAX_BLOCKSIZE;
1815     size_t max_align = MAX(MAX_BLOCKSIZE, qemu_real_host_page_size);
1816     void *buf;
1817     ssize_t n;
1818     int ret;
1819 
1820     buf = qemu_memalign(max_align, write_size);
1821     memset(buf, 0, write_size);
1822 
1823     do {
1824         n = pwrite(fd, buf, write_size, 0);
1825     } while (n == -1 && errno == EINTR);
1826 
1827     ret = (n == -1) ? -errno : 0;
1828 
1829     qemu_vfree(buf);
1830     return ret;
1831 }
1832 
1833 static int handle_aiocb_truncate(void *opaque)
1834 {
1835     RawPosixAIOData *aiocb = opaque;
1836     int result = 0;
1837     int64_t current_length = 0;
1838     char *buf = NULL;
1839     struct stat st;
1840     int fd = aiocb->aio_fildes;
1841     int64_t offset = aiocb->aio_offset;
1842     PreallocMode prealloc = aiocb->truncate.prealloc;
1843     Error **errp = aiocb->truncate.errp;
1844 
1845     if (fstat(fd, &st) < 0) {
1846         result = -errno;
1847         error_setg_errno(errp, -result, "Could not stat file");
1848         return result;
1849     }
1850 
1851     current_length = st.st_size;
1852     if (current_length > offset && prealloc != PREALLOC_MODE_OFF) {
1853         error_setg(errp, "Cannot use preallocation for shrinking files");
1854         return -ENOTSUP;
1855     }
1856 
1857     switch (prealloc) {
1858 #ifdef CONFIG_POSIX_FALLOCATE
1859     case PREALLOC_MODE_FALLOC:
1860         /*
1861          * Truncating before posix_fallocate() makes it about twice slower on
1862          * file systems that do not support fallocate(), trying to check if a
1863          * block is allocated before allocating it, so don't do that here.
1864          */
1865         if (offset != current_length) {
1866             result = -posix_fallocate(fd, current_length,
1867                                       offset - current_length);
1868             if (result != 0) {
1869                 /* posix_fallocate() doesn't set errno. */
1870                 error_setg_errno(errp, -result,
1871                                  "Could not preallocate new data");
1872             } else if (current_length == 0) {
1873                 /*
1874                  * posix_fallocate() uses fallocate() if the filesystem
1875                  * supports it, or fallback to manually writing zeroes. If
1876                  * fallocate() was used, unaligned reads from the fallocated
1877                  * area in raw_probe_alignment() will succeed, hence we need to
1878                  * allocate the first block.
1879                  *
1880                  * Optimize future alignment probing; ignore failures.
1881                  */
1882                 allocate_first_block(fd, offset);
1883             }
1884         } else {
1885             result = 0;
1886         }
1887         goto out;
1888 #endif
1889     case PREALLOC_MODE_FULL:
1890     {
1891         int64_t num = 0, left = offset - current_length;
1892         off_t seek_result;
1893 
1894         /*
1895          * Knowing the final size from the beginning could allow the file
1896          * system driver to do less allocations and possibly avoid
1897          * fragmentation of the file.
1898          */
1899         if (ftruncate(fd, offset) != 0) {
1900             result = -errno;
1901             error_setg_errno(errp, -result, "Could not resize file");
1902             goto out;
1903         }
1904 
1905         buf = g_malloc0(65536);
1906 
1907         seek_result = lseek(fd, current_length, SEEK_SET);
1908         if (seek_result < 0) {
1909             result = -errno;
1910             error_setg_errno(errp, -result,
1911                              "Failed to seek to the old end of file");
1912             goto out;
1913         }
1914 
1915         while (left > 0) {
1916             num = MIN(left, 65536);
1917             result = write(fd, buf, num);
1918             if (result < 0) {
1919                 if (errno == EINTR) {
1920                     continue;
1921                 }
1922                 result = -errno;
1923                 error_setg_errno(errp, -result,
1924                                  "Could not write zeros for preallocation");
1925                 goto out;
1926             }
1927             left -= result;
1928         }
1929         if (result >= 0) {
1930             result = fsync(fd);
1931             if (result < 0) {
1932                 result = -errno;
1933                 error_setg_errno(errp, -result,
1934                                  "Could not flush file to disk");
1935                 goto out;
1936             }
1937         }
1938         goto out;
1939     }
1940     case PREALLOC_MODE_OFF:
1941         if (ftruncate(fd, offset) != 0) {
1942             result = -errno;
1943             error_setg_errno(errp, -result, "Could not resize file");
1944         } else if (current_length == 0 && offset > current_length) {
1945             /* Optimize future alignment probing; ignore failures. */
1946             allocate_first_block(fd, offset);
1947         }
1948         return result;
1949     default:
1950         result = -ENOTSUP;
1951         error_setg(errp, "Unsupported preallocation mode: %s",
1952                    PreallocMode_str(prealloc));
1953         return result;
1954     }
1955 
1956 out:
1957     if (result < 0) {
1958         if (ftruncate(fd, current_length) < 0) {
1959             error_report("Failed to restore old file length: %s",
1960                          strerror(errno));
1961         }
1962     }
1963 
1964     g_free(buf);
1965     return result;
1966 }
1967 
1968 static int coroutine_fn raw_thread_pool_submit(BlockDriverState *bs,
1969                                                ThreadPoolFunc func, void *arg)
1970 {
1971     /* @bs can be NULL, bdrv_get_aio_context() returns the main context then */
1972     ThreadPool *pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
1973     return thread_pool_submit_co(pool, func, arg);
1974 }
1975 
1976 static int coroutine_fn raw_co_prw(BlockDriverState *bs, uint64_t offset,
1977                                    uint64_t bytes, QEMUIOVector *qiov, int type)
1978 {
1979     BDRVRawState *s = bs->opaque;
1980     RawPosixAIOData acb;
1981 
1982     if (fd_open(bs) < 0)
1983         return -EIO;
1984 
1985     /*
1986      * When using O_DIRECT, the request must be aligned to be able to use
1987      * either libaio or io_uring interface. If not fail back to regular thread
1988      * pool read/write code which emulates this for us if we
1989      * set QEMU_AIO_MISALIGNED.
1990      */
1991     if (s->needs_alignment && !bdrv_qiov_is_aligned(bs, qiov)) {
1992         type |= QEMU_AIO_MISALIGNED;
1993 #ifdef CONFIG_LINUX_IO_URING
1994     } else if (s->use_linux_io_uring) {
1995         LuringState *aio = aio_get_linux_io_uring(bdrv_get_aio_context(bs));
1996         assert(qiov->size == bytes);
1997         return luring_co_submit(bs, aio, s->fd, offset, qiov, type);
1998 #endif
1999 #ifdef CONFIG_LINUX_AIO
2000     } else if (s->use_linux_aio) {
2001         LinuxAioState *aio = aio_get_linux_aio(bdrv_get_aio_context(bs));
2002         assert(qiov->size == bytes);
2003         return laio_co_submit(bs, aio, s->fd, offset, qiov, type);
2004 #endif
2005     }
2006 
2007     acb = (RawPosixAIOData) {
2008         .bs             = bs,
2009         .aio_fildes     = s->fd,
2010         .aio_type       = type,
2011         .aio_offset     = offset,
2012         .aio_nbytes     = bytes,
2013         .io             = {
2014             .iov            = qiov->iov,
2015             .niov           = qiov->niov,
2016         },
2017     };
2018 
2019     assert(qiov->size == bytes);
2020     return raw_thread_pool_submit(bs, handle_aiocb_rw, &acb);
2021 }
2022 
2023 static int coroutine_fn raw_co_preadv(BlockDriverState *bs, uint64_t offset,
2024                                       uint64_t bytes, QEMUIOVector *qiov,
2025                                       int flags)
2026 {
2027     return raw_co_prw(bs, offset, bytes, qiov, QEMU_AIO_READ);
2028 }
2029 
2030 static int coroutine_fn raw_co_pwritev(BlockDriverState *bs, uint64_t offset,
2031                                        uint64_t bytes, QEMUIOVector *qiov,
2032                                        int flags)
2033 {
2034     assert(flags == 0);
2035     return raw_co_prw(bs, offset, bytes, qiov, QEMU_AIO_WRITE);
2036 }
2037 
2038 static void raw_aio_plug(BlockDriverState *bs)
2039 {
2040     BDRVRawState __attribute__((unused)) *s = bs->opaque;
2041 #ifdef CONFIG_LINUX_AIO
2042     if (s->use_linux_aio) {
2043         LinuxAioState *aio = aio_get_linux_aio(bdrv_get_aio_context(bs));
2044         laio_io_plug(bs, aio);
2045     }
2046 #endif
2047 #ifdef CONFIG_LINUX_IO_URING
2048     if (s->use_linux_io_uring) {
2049         LuringState *aio = aio_get_linux_io_uring(bdrv_get_aio_context(bs));
2050         luring_io_plug(bs, aio);
2051     }
2052 #endif
2053 }
2054 
2055 static void raw_aio_unplug(BlockDriverState *bs)
2056 {
2057     BDRVRawState __attribute__((unused)) *s = bs->opaque;
2058 #ifdef CONFIG_LINUX_AIO
2059     if (s->use_linux_aio) {
2060         LinuxAioState *aio = aio_get_linux_aio(bdrv_get_aio_context(bs));
2061         laio_io_unplug(bs, aio);
2062     }
2063 #endif
2064 #ifdef CONFIG_LINUX_IO_URING
2065     if (s->use_linux_io_uring) {
2066         LuringState *aio = aio_get_linux_io_uring(bdrv_get_aio_context(bs));
2067         luring_io_unplug(bs, aio);
2068     }
2069 #endif
2070 }
2071 
2072 static int raw_co_flush_to_disk(BlockDriverState *bs)
2073 {
2074     BDRVRawState *s = bs->opaque;
2075     RawPosixAIOData acb;
2076     int ret;
2077 
2078     ret = fd_open(bs);
2079     if (ret < 0) {
2080         return ret;
2081     }
2082 
2083     acb = (RawPosixAIOData) {
2084         .bs             = bs,
2085         .aio_fildes     = s->fd,
2086         .aio_type       = QEMU_AIO_FLUSH,
2087     };
2088 
2089 #ifdef CONFIG_LINUX_IO_URING
2090     if (s->use_linux_io_uring) {
2091         LuringState *aio = aio_get_linux_io_uring(bdrv_get_aio_context(bs));
2092         return luring_co_submit(bs, aio, s->fd, 0, NULL, QEMU_AIO_FLUSH);
2093     }
2094 #endif
2095     return raw_thread_pool_submit(bs, handle_aiocb_flush, &acb);
2096 }
2097 
2098 static void raw_aio_attach_aio_context(BlockDriverState *bs,
2099                                        AioContext *new_context)
2100 {
2101     BDRVRawState __attribute__((unused)) *s = bs->opaque;
2102 #ifdef CONFIG_LINUX_AIO
2103     if (s->use_linux_aio) {
2104         Error *local_err = NULL;
2105         if (!aio_setup_linux_aio(new_context, &local_err)) {
2106             error_reportf_err(local_err, "Unable to use native AIO, "
2107                                          "falling back to thread pool: ");
2108             s->use_linux_aio = false;
2109         }
2110     }
2111 #endif
2112 #ifdef CONFIG_LINUX_IO_URING
2113     if (s->use_linux_io_uring) {
2114         Error *local_err = NULL;
2115         if (!aio_setup_linux_io_uring(new_context, &local_err)) {
2116             error_reportf_err(local_err, "Unable to use linux io_uring, "
2117                                          "falling back to thread pool: ");
2118             s->use_linux_io_uring = false;
2119         }
2120     }
2121 #endif
2122 }
2123 
2124 static void raw_close(BlockDriverState *bs)
2125 {
2126     BDRVRawState *s = bs->opaque;
2127 
2128     if (s->fd >= 0) {
2129         qemu_close(s->fd);
2130         s->fd = -1;
2131     }
2132 }
2133 
2134 /**
2135  * Truncates the given regular file @fd to @offset and, when growing, fills the
2136  * new space according to @prealloc.
2137  *
2138  * Returns: 0 on success, -errno on failure.
2139  */
2140 static int coroutine_fn
2141 raw_regular_truncate(BlockDriverState *bs, int fd, int64_t offset,
2142                      PreallocMode prealloc, Error **errp)
2143 {
2144     RawPosixAIOData acb;
2145 
2146     acb = (RawPosixAIOData) {
2147         .bs             = bs,
2148         .aio_fildes     = fd,
2149         .aio_type       = QEMU_AIO_TRUNCATE,
2150         .aio_offset     = offset,
2151         .truncate       = {
2152             .prealloc       = prealloc,
2153             .errp           = errp,
2154         },
2155     };
2156 
2157     return raw_thread_pool_submit(bs, handle_aiocb_truncate, &acb);
2158 }
2159 
2160 static int coroutine_fn raw_co_truncate(BlockDriverState *bs, int64_t offset,
2161                                         bool exact, PreallocMode prealloc,
2162                                         BdrvRequestFlags flags, Error **errp)
2163 {
2164     BDRVRawState *s = bs->opaque;
2165     struct stat st;
2166     int ret;
2167 
2168     if (fstat(s->fd, &st)) {
2169         ret = -errno;
2170         error_setg_errno(errp, -ret, "Failed to fstat() the file");
2171         return ret;
2172     }
2173 
2174     if (S_ISREG(st.st_mode)) {
2175         /* Always resizes to the exact @offset */
2176         return raw_regular_truncate(bs, s->fd, offset, prealloc, errp);
2177     }
2178 
2179     if (prealloc != PREALLOC_MODE_OFF) {
2180         error_setg(errp, "Preallocation mode '%s' unsupported for this "
2181                    "non-regular file", PreallocMode_str(prealloc));
2182         return -ENOTSUP;
2183     }
2184 
2185     if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
2186         int64_t cur_length = raw_getlength(bs);
2187 
2188         if (offset != cur_length && exact) {
2189             error_setg(errp, "Cannot resize device files");
2190             return -ENOTSUP;
2191         } else if (offset > cur_length) {
2192             error_setg(errp, "Cannot grow device files");
2193             return -EINVAL;
2194         }
2195     } else {
2196         error_setg(errp, "Resizing this file is not supported");
2197         return -ENOTSUP;
2198     }
2199 
2200     return 0;
2201 }
2202 
2203 #ifdef __OpenBSD__
2204 static int64_t raw_getlength(BlockDriverState *bs)
2205 {
2206     BDRVRawState *s = bs->opaque;
2207     int fd = s->fd;
2208     struct stat st;
2209 
2210     if (fstat(fd, &st))
2211         return -errno;
2212     if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
2213         struct disklabel dl;
2214 
2215         if (ioctl(fd, DIOCGDINFO, &dl))
2216             return -errno;
2217         return (uint64_t)dl.d_secsize *
2218             dl.d_partitions[DISKPART(st.st_rdev)].p_size;
2219     } else
2220         return st.st_size;
2221 }
2222 #elif defined(__NetBSD__)
2223 static int64_t raw_getlength(BlockDriverState *bs)
2224 {
2225     BDRVRawState *s = bs->opaque;
2226     int fd = s->fd;
2227     struct stat st;
2228 
2229     if (fstat(fd, &st))
2230         return -errno;
2231     if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
2232         struct dkwedge_info dkw;
2233 
2234         if (ioctl(fd, DIOCGWEDGEINFO, &dkw) != -1) {
2235             return dkw.dkw_size * 512;
2236         } else {
2237             struct disklabel dl;
2238 
2239             if (ioctl(fd, DIOCGDINFO, &dl))
2240                 return -errno;
2241             return (uint64_t)dl.d_secsize *
2242                 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
2243         }
2244     } else
2245         return st.st_size;
2246 }
2247 #elif defined(__sun__)
2248 static int64_t raw_getlength(BlockDriverState *bs)
2249 {
2250     BDRVRawState *s = bs->opaque;
2251     struct dk_minfo minfo;
2252     int ret;
2253     int64_t size;
2254 
2255     ret = fd_open(bs);
2256     if (ret < 0) {
2257         return ret;
2258     }
2259 
2260     /*
2261      * Use the DKIOCGMEDIAINFO ioctl to read the size.
2262      */
2263     ret = ioctl(s->fd, DKIOCGMEDIAINFO, &minfo);
2264     if (ret != -1) {
2265         return minfo.dki_lbsize * minfo.dki_capacity;
2266     }
2267 
2268     /*
2269      * There are reports that lseek on some devices fails, but
2270      * irc discussion said that contingency on contingency was overkill.
2271      */
2272     size = lseek(s->fd, 0, SEEK_END);
2273     if (size < 0) {
2274         return -errno;
2275     }
2276     return size;
2277 }
2278 #elif defined(CONFIG_BSD)
2279 static int64_t raw_getlength(BlockDriverState *bs)
2280 {
2281     BDRVRawState *s = bs->opaque;
2282     int fd = s->fd;
2283     int64_t size;
2284     struct stat sb;
2285 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
2286     int reopened = 0;
2287 #endif
2288     int ret;
2289 
2290     ret = fd_open(bs);
2291     if (ret < 0)
2292         return ret;
2293 
2294 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
2295 again:
2296 #endif
2297     if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
2298 #ifdef DIOCGMEDIASIZE
2299         if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
2300 #elif defined(DIOCGPART)
2301         {
2302                 struct partinfo pi;
2303                 if (ioctl(fd, DIOCGPART, &pi) == 0)
2304                         size = pi.media_size;
2305                 else
2306                         size = 0;
2307         }
2308         if (size == 0)
2309 #endif
2310 #if defined(__APPLE__) && defined(__MACH__)
2311         {
2312             uint64_t sectors = 0;
2313             uint32_t sector_size = 0;
2314 
2315             if (ioctl(fd, DKIOCGETBLOCKCOUNT, &sectors) == 0
2316                && ioctl(fd, DKIOCGETBLOCKSIZE, &sector_size) == 0) {
2317                 size = sectors * sector_size;
2318             } else {
2319                 size = lseek(fd, 0LL, SEEK_END);
2320                 if (size < 0) {
2321                     return -errno;
2322                 }
2323             }
2324         }
2325 #else
2326         size = lseek(fd, 0LL, SEEK_END);
2327         if (size < 0) {
2328             return -errno;
2329         }
2330 #endif
2331 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2332         switch(s->type) {
2333         case FTYPE_CD:
2334             /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
2335             if (size == 2048LL * (unsigned)-1)
2336                 size = 0;
2337             /* XXX no disc?  maybe we need to reopen... */
2338             if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
2339                 reopened = 1;
2340                 goto again;
2341             }
2342         }
2343 #endif
2344     } else {
2345         size = lseek(fd, 0, SEEK_END);
2346         if (size < 0) {
2347             return -errno;
2348         }
2349     }
2350     return size;
2351 }
2352 #else
2353 static int64_t raw_getlength(BlockDriverState *bs)
2354 {
2355     BDRVRawState *s = bs->opaque;
2356     int ret;
2357     int64_t size;
2358 
2359     ret = fd_open(bs);
2360     if (ret < 0) {
2361         return ret;
2362     }
2363 
2364     size = lseek(s->fd, 0, SEEK_END);
2365     if (size < 0) {
2366         return -errno;
2367     }
2368     return size;
2369 }
2370 #endif
2371 
2372 static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
2373 {
2374     struct stat st;
2375     BDRVRawState *s = bs->opaque;
2376 
2377     if (fstat(s->fd, &st) < 0) {
2378         return -errno;
2379     }
2380     return (int64_t)st.st_blocks * 512;
2381 }
2382 
2383 static int coroutine_fn
2384 raw_co_create(BlockdevCreateOptions *options, Error **errp)
2385 {
2386     BlockdevCreateOptionsFile *file_opts;
2387     Error *local_err = NULL;
2388     int fd;
2389     uint64_t perm, shared;
2390     int result = 0;
2391 
2392     /* Validate options and set default values */
2393     assert(options->driver == BLOCKDEV_DRIVER_FILE);
2394     file_opts = &options->u.file;
2395 
2396     if (!file_opts->has_nocow) {
2397         file_opts->nocow = false;
2398     }
2399     if (!file_opts->has_preallocation) {
2400         file_opts->preallocation = PREALLOC_MODE_OFF;
2401     }
2402     if (!file_opts->has_extent_size_hint) {
2403         file_opts->extent_size_hint = 1 * MiB;
2404     }
2405     if (file_opts->extent_size_hint > UINT32_MAX) {
2406         result = -EINVAL;
2407         error_setg(errp, "Extent size hint is too large");
2408         goto out;
2409     }
2410 
2411     /* Create file */
2412     fd = qemu_create(file_opts->filename, O_RDWR | O_BINARY, 0644, errp);
2413     if (fd < 0) {
2414         result = -errno;
2415         goto out;
2416     }
2417 
2418     /* Take permissions: We want to discard everything, so we need
2419      * BLK_PERM_WRITE; and truncation to the desired size requires
2420      * BLK_PERM_RESIZE.
2421      * On the other hand, we cannot share the RESIZE permission
2422      * because we promise that after this function, the file has the
2423      * size given in the options.  If someone else were to resize it
2424      * concurrently, we could not guarantee that.
2425      * Note that after this function, we can no longer guarantee that
2426      * the file is not touched by a third party, so it may be resized
2427      * then. */
2428     perm = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2429     shared = BLK_PERM_ALL & ~BLK_PERM_RESIZE;
2430 
2431     /* Step one: Take locks */
2432     result = raw_apply_lock_bytes(NULL, fd, perm, ~shared, false, errp);
2433     if (result < 0) {
2434         goto out_close;
2435     }
2436 
2437     /* Step two: Check that nobody else has taken conflicting locks */
2438     result = raw_check_lock_bytes(fd, perm, shared, errp);
2439     if (result < 0) {
2440         error_append_hint(errp,
2441                           "Is another process using the image [%s]?\n",
2442                           file_opts->filename);
2443         goto out_unlock;
2444     }
2445 
2446     /* Clear the file by truncating it to 0 */
2447     result = raw_regular_truncate(NULL, fd, 0, PREALLOC_MODE_OFF, errp);
2448     if (result < 0) {
2449         goto out_unlock;
2450     }
2451 
2452     if (file_opts->nocow) {
2453 #ifdef __linux__
2454         /* Set NOCOW flag to solve performance issue on fs like btrfs.
2455          * This is an optimisation. The FS_IOC_SETFLAGS ioctl return value
2456          * will be ignored since any failure of this operation should not
2457          * block the left work.
2458          */
2459         int attr;
2460         if (ioctl(fd, FS_IOC_GETFLAGS, &attr) == 0) {
2461             attr |= FS_NOCOW_FL;
2462             ioctl(fd, FS_IOC_SETFLAGS, &attr);
2463         }
2464 #endif
2465     }
2466 #ifdef FS_IOC_FSSETXATTR
2467     /*
2468      * Try to set the extent size hint. Failure is not fatal, and a warning is
2469      * only printed if the option was explicitly specified.
2470      */
2471     {
2472         struct fsxattr attr;
2473         result = ioctl(fd, FS_IOC_FSGETXATTR, &attr);
2474         if (result == 0) {
2475             attr.fsx_xflags |= FS_XFLAG_EXTSIZE;
2476             attr.fsx_extsize = file_opts->extent_size_hint;
2477             result = ioctl(fd, FS_IOC_FSSETXATTR, &attr);
2478         }
2479         if (result < 0 && file_opts->has_extent_size_hint &&
2480             file_opts->extent_size_hint)
2481         {
2482             warn_report("Failed to set extent size hint: %s",
2483                         strerror(errno));
2484         }
2485     }
2486 #endif
2487 
2488     /* Resize and potentially preallocate the file to the desired
2489      * final size */
2490     result = raw_regular_truncate(NULL, fd, file_opts->size,
2491                                   file_opts->preallocation, errp);
2492     if (result < 0) {
2493         goto out_unlock;
2494     }
2495 
2496 out_unlock:
2497     raw_apply_lock_bytes(NULL, fd, 0, 0, true, &local_err);
2498     if (local_err) {
2499         /* The above call should not fail, and if it does, that does
2500          * not mean the whole creation operation has failed.  So
2501          * report it the user for their convenience, but do not report
2502          * it to the caller. */
2503         warn_report_err(local_err);
2504     }
2505 
2506 out_close:
2507     if (qemu_close(fd) != 0 && result == 0) {
2508         result = -errno;
2509         error_setg_errno(errp, -result, "Could not close the new file");
2510     }
2511 out:
2512     return result;
2513 }
2514 
2515 static int coroutine_fn raw_co_create_opts(BlockDriver *drv,
2516                                            const char *filename,
2517                                            QemuOpts *opts,
2518                                            Error **errp)
2519 {
2520     BlockdevCreateOptions options;
2521     int64_t total_size = 0;
2522     int64_t extent_size_hint = 0;
2523     bool has_extent_size_hint = false;
2524     bool nocow = false;
2525     PreallocMode prealloc;
2526     char *buf = NULL;
2527     Error *local_err = NULL;
2528 
2529     /* Skip file: protocol prefix */
2530     strstart(filename, "file:", &filename);
2531 
2532     /* Read out options */
2533     total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
2534                           BDRV_SECTOR_SIZE);
2535     if (qemu_opt_get(opts, BLOCK_OPT_EXTENT_SIZE_HINT)) {
2536         has_extent_size_hint = true;
2537         extent_size_hint =
2538             qemu_opt_get_size_del(opts, BLOCK_OPT_EXTENT_SIZE_HINT, -1);
2539     }
2540     nocow = qemu_opt_get_bool(opts, BLOCK_OPT_NOCOW, false);
2541     buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
2542     prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
2543                                PREALLOC_MODE_OFF, &local_err);
2544     g_free(buf);
2545     if (local_err) {
2546         error_propagate(errp, local_err);
2547         return -EINVAL;
2548     }
2549 
2550     options = (BlockdevCreateOptions) {
2551         .driver     = BLOCKDEV_DRIVER_FILE,
2552         .u.file     = {
2553             .filename           = (char *) filename,
2554             .size               = total_size,
2555             .has_preallocation  = true,
2556             .preallocation      = prealloc,
2557             .has_nocow          = true,
2558             .nocow              = nocow,
2559             .has_extent_size_hint = has_extent_size_hint,
2560             .extent_size_hint   = extent_size_hint,
2561         },
2562     };
2563     return raw_co_create(&options, errp);
2564 }
2565 
2566 static int coroutine_fn raw_co_delete_file(BlockDriverState *bs,
2567                                            Error **errp)
2568 {
2569     struct stat st;
2570     int ret;
2571 
2572     if (!(stat(bs->filename, &st) == 0) || !S_ISREG(st.st_mode)) {
2573         error_setg_errno(errp, ENOENT, "%s is not a regular file",
2574                          bs->filename);
2575         return -ENOENT;
2576     }
2577 
2578     ret = unlink(bs->filename);
2579     if (ret < 0) {
2580         ret = -errno;
2581         error_setg_errno(errp, -ret, "Error when deleting file %s",
2582                          bs->filename);
2583     }
2584 
2585     return ret;
2586 }
2587 
2588 /*
2589  * Find allocation range in @bs around offset @start.
2590  * May change underlying file descriptor's file offset.
2591  * If @start is not in a hole, store @start in @data, and the
2592  * beginning of the next hole in @hole, and return 0.
2593  * If @start is in a non-trailing hole, store @start in @hole and the
2594  * beginning of the next non-hole in @data, and return 0.
2595  * If @start is in a trailing hole or beyond EOF, return -ENXIO.
2596  * If we can't find out, return a negative errno other than -ENXIO.
2597  */
2598 static int find_allocation(BlockDriverState *bs, off_t start,
2599                            off_t *data, off_t *hole)
2600 {
2601 #if defined SEEK_HOLE && defined SEEK_DATA
2602     BDRVRawState *s = bs->opaque;
2603     off_t offs;
2604 
2605     /*
2606      * SEEK_DATA cases:
2607      * D1. offs == start: start is in data
2608      * D2. offs > start: start is in a hole, next data at offs
2609      * D3. offs < 0, errno = ENXIO: either start is in a trailing hole
2610      *                              or start is beyond EOF
2611      *     If the latter happens, the file has been truncated behind
2612      *     our back since we opened it.  All bets are off then.
2613      *     Treating like a trailing hole is simplest.
2614      * D4. offs < 0, errno != ENXIO: we learned nothing
2615      */
2616     offs = lseek(s->fd, start, SEEK_DATA);
2617     if (offs < 0) {
2618         return -errno;          /* D3 or D4 */
2619     }
2620 
2621     if (offs < start) {
2622         /* This is not a valid return by lseek().  We are safe to just return
2623          * -EIO in this case, and we'll treat it like D4. */
2624         return -EIO;
2625     }
2626 
2627     if (offs > start) {
2628         /* D2: in hole, next data at offs */
2629         *hole = start;
2630         *data = offs;
2631         return 0;
2632     }
2633 
2634     /* D1: in data, end not yet known */
2635 
2636     /*
2637      * SEEK_HOLE cases:
2638      * H1. offs == start: start is in a hole
2639      *     If this happens here, a hole has been dug behind our back
2640      *     since the previous lseek().
2641      * H2. offs > start: either start is in data, next hole at offs,
2642      *                   or start is in trailing hole, EOF at offs
2643      *     Linux treats trailing holes like any other hole: offs ==
2644      *     start.  Solaris seeks to EOF instead: offs > start (blech).
2645      *     If that happens here, a hole has been dug behind our back
2646      *     since the previous lseek().
2647      * H3. offs < 0, errno = ENXIO: start is beyond EOF
2648      *     If this happens, the file has been truncated behind our
2649      *     back since we opened it.  Treat it like a trailing hole.
2650      * H4. offs < 0, errno != ENXIO: we learned nothing
2651      *     Pretend we know nothing at all, i.e. "forget" about D1.
2652      */
2653     offs = lseek(s->fd, start, SEEK_HOLE);
2654     if (offs < 0) {
2655         return -errno;          /* D1 and (H3 or H4) */
2656     }
2657 
2658     if (offs < start) {
2659         /* This is not a valid return by lseek().  We are safe to just return
2660          * -EIO in this case, and we'll treat it like H4. */
2661         return -EIO;
2662     }
2663 
2664     if (offs > start) {
2665         /*
2666          * D1 and H2: either in data, next hole at offs, or it was in
2667          * data but is now in a trailing hole.  In the latter case,
2668          * all bets are off.  Treating it as if it there was data all
2669          * the way to EOF is safe, so simply do that.
2670          */
2671         *data = start;
2672         *hole = offs;
2673         return 0;
2674     }
2675 
2676     /* D1 and H1 */
2677     return -EBUSY;
2678 #else
2679     return -ENOTSUP;
2680 #endif
2681 }
2682 
2683 /*
2684  * Returns the allocation status of the specified offset.
2685  *
2686  * The block layer guarantees 'offset' and 'bytes' are within bounds.
2687  *
2688  * 'pnum' is set to the number of bytes (including and immediately following
2689  * the specified offset) that are known to be in the same
2690  * allocated/unallocated state.
2691  *
2692  * 'bytes' is the max value 'pnum' should be set to.
2693  */
2694 static int coroutine_fn raw_co_block_status(BlockDriverState *bs,
2695                                             bool want_zero,
2696                                             int64_t offset,
2697                                             int64_t bytes, int64_t *pnum,
2698                                             int64_t *map,
2699                                             BlockDriverState **file)
2700 {
2701     off_t data = 0, hole = 0;
2702     int ret;
2703 
2704     assert(QEMU_IS_ALIGNED(offset | bytes, bs->bl.request_alignment));
2705 
2706     ret = fd_open(bs);
2707     if (ret < 0) {
2708         return ret;
2709     }
2710 
2711     if (!want_zero) {
2712         *pnum = bytes;
2713         *map = offset;
2714         *file = bs;
2715         return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID;
2716     }
2717 
2718     ret = find_allocation(bs, offset, &data, &hole);
2719     if (ret == -ENXIO) {
2720         /* Trailing hole */
2721         *pnum = bytes;
2722         ret = BDRV_BLOCK_ZERO;
2723     } else if (ret < 0) {
2724         /* No info available, so pretend there are no holes */
2725         *pnum = bytes;
2726         ret = BDRV_BLOCK_DATA;
2727     } else if (data == offset) {
2728         /* On a data extent, compute bytes to the end of the extent,
2729          * possibly including a partial sector at EOF. */
2730         *pnum = MIN(bytes, hole - offset);
2731 
2732         /*
2733          * We are not allowed to return partial sectors, though, so
2734          * round up if necessary.
2735          */
2736         if (!QEMU_IS_ALIGNED(*pnum, bs->bl.request_alignment)) {
2737             int64_t file_length = raw_getlength(bs);
2738             if (file_length > 0) {
2739                 /* Ignore errors, this is just a safeguard */
2740                 assert(hole == file_length);
2741             }
2742             *pnum = ROUND_UP(*pnum, bs->bl.request_alignment);
2743         }
2744 
2745         ret = BDRV_BLOCK_DATA;
2746     } else {
2747         /* On a hole, compute bytes to the beginning of the next extent.  */
2748         assert(hole == offset);
2749         *pnum = MIN(bytes, data - offset);
2750         ret = BDRV_BLOCK_ZERO;
2751     }
2752     *map = offset;
2753     *file = bs;
2754     return ret | BDRV_BLOCK_OFFSET_VALID;
2755 }
2756 
2757 #if defined(__linux__)
2758 /* Verify that the file is not in the page cache */
2759 static void check_cache_dropped(BlockDriverState *bs, Error **errp)
2760 {
2761     const size_t window_size = 128 * 1024 * 1024;
2762     BDRVRawState *s = bs->opaque;
2763     void *window = NULL;
2764     size_t length = 0;
2765     unsigned char *vec;
2766     size_t page_size;
2767     off_t offset;
2768     off_t end;
2769 
2770     /* mincore(2) page status information requires 1 byte per page */
2771     page_size = sysconf(_SC_PAGESIZE);
2772     vec = g_malloc(DIV_ROUND_UP(window_size, page_size));
2773 
2774     end = raw_getlength(bs);
2775 
2776     for (offset = 0; offset < end; offset += window_size) {
2777         void *new_window;
2778         size_t new_length;
2779         size_t vec_end;
2780         size_t i;
2781         int ret;
2782 
2783         /* Unmap previous window if size has changed */
2784         new_length = MIN(end - offset, window_size);
2785         if (new_length != length) {
2786             munmap(window, length);
2787             window = NULL;
2788             length = 0;
2789         }
2790 
2791         new_window = mmap(window, new_length, PROT_NONE, MAP_PRIVATE,
2792                           s->fd, offset);
2793         if (new_window == MAP_FAILED) {
2794             error_setg_errno(errp, errno, "mmap failed");
2795             break;
2796         }
2797 
2798         window = new_window;
2799         length = new_length;
2800 
2801         ret = mincore(window, length, vec);
2802         if (ret < 0) {
2803             error_setg_errno(errp, errno, "mincore failed");
2804             break;
2805         }
2806 
2807         vec_end = DIV_ROUND_UP(length, page_size);
2808         for (i = 0; i < vec_end; i++) {
2809             if (vec[i] & 0x1) {
2810                 break;
2811             }
2812         }
2813         if (i < vec_end) {
2814             error_setg(errp, "page cache still in use!");
2815             break;
2816         }
2817     }
2818 
2819     if (window) {
2820         munmap(window, length);
2821     }
2822 
2823     g_free(vec);
2824 }
2825 #endif /* __linux__ */
2826 
2827 static void coroutine_fn raw_co_invalidate_cache(BlockDriverState *bs,
2828                                                  Error **errp)
2829 {
2830     BDRVRawState *s = bs->opaque;
2831     int ret;
2832 
2833     ret = fd_open(bs);
2834     if (ret < 0) {
2835         error_setg_errno(errp, -ret, "The file descriptor is not open");
2836         return;
2837     }
2838 
2839     if (!s->drop_cache) {
2840         return;
2841     }
2842 
2843     if (s->open_flags & O_DIRECT) {
2844         return; /* No host kernel page cache */
2845     }
2846 
2847 #if defined(__linux__)
2848     /* This sets the scene for the next syscall... */
2849     ret = bdrv_co_flush(bs);
2850     if (ret < 0) {
2851         error_setg_errno(errp, -ret, "flush failed");
2852         return;
2853     }
2854 
2855     /* Linux does not invalidate pages that are dirty, locked, or mmapped by a
2856      * process.  These limitations are okay because we just fsynced the file,
2857      * we don't use mmap, and the file should not be in use by other processes.
2858      */
2859     ret = posix_fadvise(s->fd, 0, 0, POSIX_FADV_DONTNEED);
2860     if (ret != 0) { /* the return value is a positive errno */
2861         error_setg_errno(errp, ret, "fadvise failed");
2862         return;
2863     }
2864 
2865     if (s->check_cache_dropped) {
2866         check_cache_dropped(bs, errp);
2867     }
2868 #else /* __linux__ */
2869     /* Do nothing.  Live migration to a remote host with cache.direct=off is
2870      * unsupported on other host operating systems.  Cache consistency issues
2871      * may occur but no error is reported here, partly because that's the
2872      * historical behavior and partly because it's hard to differentiate valid
2873      * configurations that should not cause errors.
2874      */
2875 #endif /* !__linux__ */
2876 }
2877 
2878 static void raw_account_discard(BDRVRawState *s, uint64_t nbytes, int ret)
2879 {
2880     if (ret) {
2881         s->stats.discard_nb_failed++;
2882     } else {
2883         s->stats.discard_nb_ok++;
2884         s->stats.discard_bytes_ok += nbytes;
2885     }
2886 }
2887 
2888 static coroutine_fn int
2889 raw_do_pdiscard(BlockDriverState *bs, int64_t offset, int bytes, bool blkdev)
2890 {
2891     BDRVRawState *s = bs->opaque;
2892     RawPosixAIOData acb;
2893     int ret;
2894 
2895     acb = (RawPosixAIOData) {
2896         .bs             = bs,
2897         .aio_fildes     = s->fd,
2898         .aio_type       = QEMU_AIO_DISCARD,
2899         .aio_offset     = offset,
2900         .aio_nbytes     = bytes,
2901     };
2902 
2903     if (blkdev) {
2904         acb.aio_type |= QEMU_AIO_BLKDEV;
2905     }
2906 
2907     ret = raw_thread_pool_submit(bs, handle_aiocb_discard, &acb);
2908     raw_account_discard(s, bytes, ret);
2909     return ret;
2910 }
2911 
2912 static coroutine_fn int
2913 raw_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes)
2914 {
2915     return raw_do_pdiscard(bs, offset, bytes, false);
2916 }
2917 
2918 static int coroutine_fn
2919 raw_do_pwrite_zeroes(BlockDriverState *bs, int64_t offset, int bytes,
2920                      BdrvRequestFlags flags, bool blkdev)
2921 {
2922     BDRVRawState *s = bs->opaque;
2923     RawPosixAIOData acb;
2924     ThreadPoolFunc *handler;
2925 
2926 #ifdef CONFIG_FALLOCATE
2927     if (offset + bytes > bs->total_sectors * BDRV_SECTOR_SIZE) {
2928         BdrvTrackedRequest *req;
2929 
2930         /*
2931          * This is a workaround for a bug in the Linux XFS driver,
2932          * where writes submitted through the AIO interface will be
2933          * discarded if they happen beyond a concurrently running
2934          * fallocate() that increases the file length (i.e., both the
2935          * write and the fallocate() happen beyond the EOF).
2936          *
2937          * To work around it, we extend the tracked request for this
2938          * zero write until INT64_MAX (effectively infinity), and mark
2939          * it as serializing.
2940          *
2941          * We have to enable this workaround for all filesystems and
2942          * AIO modes (not just XFS with aio=native), because for
2943          * remote filesystems we do not know the host configuration.
2944          */
2945 
2946         req = bdrv_co_get_self_request(bs);
2947         assert(req);
2948         assert(req->type == BDRV_TRACKED_WRITE);
2949         assert(req->offset <= offset);
2950         assert(req->offset + req->bytes >= offset + bytes);
2951 
2952         req->bytes = BDRV_MAX_LENGTH - req->offset;
2953 
2954         bdrv_check_request(req->offset, req->bytes, &error_abort);
2955 
2956         bdrv_make_request_serialising(req, bs->bl.request_alignment);
2957     }
2958 #endif
2959 
2960     acb = (RawPosixAIOData) {
2961         .bs             = bs,
2962         .aio_fildes     = s->fd,
2963         .aio_type       = QEMU_AIO_WRITE_ZEROES,
2964         .aio_offset     = offset,
2965         .aio_nbytes     = bytes,
2966     };
2967 
2968     if (blkdev) {
2969         acb.aio_type |= QEMU_AIO_BLKDEV;
2970     }
2971     if (flags & BDRV_REQ_NO_FALLBACK) {
2972         acb.aio_type |= QEMU_AIO_NO_FALLBACK;
2973     }
2974 
2975     if (flags & BDRV_REQ_MAY_UNMAP) {
2976         acb.aio_type |= QEMU_AIO_DISCARD;
2977         handler = handle_aiocb_write_zeroes_unmap;
2978     } else {
2979         handler = handle_aiocb_write_zeroes;
2980     }
2981 
2982     return raw_thread_pool_submit(bs, handler, &acb);
2983 }
2984 
2985 static int coroutine_fn raw_co_pwrite_zeroes(
2986     BlockDriverState *bs, int64_t offset,
2987     int bytes, BdrvRequestFlags flags)
2988 {
2989     return raw_do_pwrite_zeroes(bs, offset, bytes, flags, false);
2990 }
2991 
2992 static int raw_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2993 {
2994     return 0;
2995 }
2996 
2997 static BlockStatsSpecificFile get_blockstats_specific_file(BlockDriverState *bs)
2998 {
2999     BDRVRawState *s = bs->opaque;
3000     return (BlockStatsSpecificFile) {
3001         .discard_nb_ok = s->stats.discard_nb_ok,
3002         .discard_nb_failed = s->stats.discard_nb_failed,
3003         .discard_bytes_ok = s->stats.discard_bytes_ok,
3004     };
3005 }
3006 
3007 static BlockStatsSpecific *raw_get_specific_stats(BlockDriverState *bs)
3008 {
3009     BlockStatsSpecific *stats = g_new(BlockStatsSpecific, 1);
3010 
3011     stats->driver = BLOCKDEV_DRIVER_FILE;
3012     stats->u.file = get_blockstats_specific_file(bs);
3013 
3014     return stats;
3015 }
3016 
3017 static BlockStatsSpecific *hdev_get_specific_stats(BlockDriverState *bs)
3018 {
3019     BlockStatsSpecific *stats = g_new(BlockStatsSpecific, 1);
3020 
3021     stats->driver = BLOCKDEV_DRIVER_HOST_DEVICE;
3022     stats->u.host_device = get_blockstats_specific_file(bs);
3023 
3024     return stats;
3025 }
3026 
3027 static QemuOptsList raw_create_opts = {
3028     .name = "raw-create-opts",
3029     .head = QTAILQ_HEAD_INITIALIZER(raw_create_opts.head),
3030     .desc = {
3031         {
3032             .name = BLOCK_OPT_SIZE,
3033             .type = QEMU_OPT_SIZE,
3034             .help = "Virtual disk size"
3035         },
3036         {
3037             .name = BLOCK_OPT_NOCOW,
3038             .type = QEMU_OPT_BOOL,
3039             .help = "Turn off copy-on-write (valid only on btrfs)"
3040         },
3041         {
3042             .name = BLOCK_OPT_PREALLOC,
3043             .type = QEMU_OPT_STRING,
3044             .help = "Preallocation mode (allowed values: off"
3045 #ifdef CONFIG_POSIX_FALLOCATE
3046                     ", falloc"
3047 #endif
3048                     ", full)"
3049         },
3050         {
3051             .name = BLOCK_OPT_EXTENT_SIZE_HINT,
3052             .type = QEMU_OPT_SIZE,
3053             .help = "Extent size hint for the image file, 0 to disable"
3054         },
3055         { /* end of list */ }
3056     }
3057 };
3058 
3059 static int raw_check_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared,
3060                           Error **errp)
3061 {
3062     BDRVRawState *s = bs->opaque;
3063     int input_flags = s->reopen_state ? s->reopen_state->flags : bs->open_flags;
3064     int open_flags;
3065     int ret;
3066 
3067     /* We may need a new fd if auto-read-only switches the mode */
3068     ret = raw_reconfigure_getfd(bs, input_flags, &open_flags, perm,
3069                                 false, errp);
3070     if (ret < 0) {
3071         return ret;
3072     } else if (ret != s->fd) {
3073         Error *local_err = NULL;
3074 
3075         /*
3076          * Fail already check_perm() if we can't get a working O_DIRECT
3077          * alignment with the new fd.
3078          */
3079         raw_probe_alignment(bs, ret, &local_err);
3080         if (local_err) {
3081             error_propagate(errp, local_err);
3082             return -EINVAL;
3083         }
3084 
3085         s->perm_change_fd = ret;
3086         s->perm_change_flags = open_flags;
3087     }
3088 
3089     /* Prepare permissions on old fd to avoid conflicts between old and new,
3090      * but keep everything locked that new will need. */
3091     ret = raw_handle_perm_lock(bs, RAW_PL_PREPARE, perm, shared, errp);
3092     if (ret < 0) {
3093         goto fail;
3094     }
3095 
3096     /* Copy locks to the new fd */
3097     if (s->perm_change_fd && s->use_lock) {
3098         ret = raw_apply_lock_bytes(NULL, s->perm_change_fd, perm, ~shared,
3099                                    false, errp);
3100         if (ret < 0) {
3101             raw_handle_perm_lock(bs, RAW_PL_ABORT, 0, 0, NULL);
3102             goto fail;
3103         }
3104     }
3105     return 0;
3106 
3107 fail:
3108     if (s->perm_change_fd) {
3109         qemu_close(s->perm_change_fd);
3110     }
3111     s->perm_change_fd = 0;
3112     return ret;
3113 }
3114 
3115 static void raw_set_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared)
3116 {
3117     BDRVRawState *s = bs->opaque;
3118 
3119     /* For reopen, we have already switched to the new fd (.bdrv_set_perm is
3120      * called after .bdrv_reopen_commit) */
3121     if (s->perm_change_fd && s->fd != s->perm_change_fd) {
3122         qemu_close(s->fd);
3123         s->fd = s->perm_change_fd;
3124         s->open_flags = s->perm_change_flags;
3125     }
3126     s->perm_change_fd = 0;
3127 
3128     raw_handle_perm_lock(bs, RAW_PL_COMMIT, perm, shared, NULL);
3129     s->perm = perm;
3130     s->shared_perm = shared;
3131 }
3132 
3133 static void raw_abort_perm_update(BlockDriverState *bs)
3134 {
3135     BDRVRawState *s = bs->opaque;
3136 
3137     /* For reopen, .bdrv_reopen_abort is called afterwards and will close
3138      * the file descriptor. */
3139     if (s->perm_change_fd) {
3140         qemu_close(s->perm_change_fd);
3141     }
3142     s->perm_change_fd = 0;
3143 
3144     raw_handle_perm_lock(bs, RAW_PL_ABORT, 0, 0, NULL);
3145 }
3146 
3147 static int coroutine_fn raw_co_copy_range_from(
3148         BlockDriverState *bs, BdrvChild *src, uint64_t src_offset,
3149         BdrvChild *dst, uint64_t dst_offset, uint64_t bytes,
3150         BdrvRequestFlags read_flags, BdrvRequestFlags write_flags)
3151 {
3152     return bdrv_co_copy_range_to(src, src_offset, dst, dst_offset, bytes,
3153                                  read_flags, write_flags);
3154 }
3155 
3156 static int coroutine_fn raw_co_copy_range_to(BlockDriverState *bs,
3157                                              BdrvChild *src,
3158                                              uint64_t src_offset,
3159                                              BdrvChild *dst,
3160                                              uint64_t dst_offset,
3161                                              uint64_t bytes,
3162                                              BdrvRequestFlags read_flags,
3163                                              BdrvRequestFlags write_flags)
3164 {
3165     RawPosixAIOData acb;
3166     BDRVRawState *s = bs->opaque;
3167     BDRVRawState *src_s;
3168 
3169     assert(dst->bs == bs);
3170     if (src->bs->drv->bdrv_co_copy_range_to != raw_co_copy_range_to) {
3171         return -ENOTSUP;
3172     }
3173 
3174     src_s = src->bs->opaque;
3175     if (fd_open(src->bs) < 0 || fd_open(dst->bs) < 0) {
3176         return -EIO;
3177     }
3178 
3179     acb = (RawPosixAIOData) {
3180         .bs             = bs,
3181         .aio_type       = QEMU_AIO_COPY_RANGE,
3182         .aio_fildes     = src_s->fd,
3183         .aio_offset     = src_offset,
3184         .aio_nbytes     = bytes,
3185         .copy_range     = {
3186             .aio_fd2        = s->fd,
3187             .aio_offset2    = dst_offset,
3188         },
3189     };
3190 
3191     return raw_thread_pool_submit(bs, handle_aiocb_copy_range, &acb);
3192 }
3193 
3194 BlockDriver bdrv_file = {
3195     .format_name = "file",
3196     .protocol_name = "file",
3197     .instance_size = sizeof(BDRVRawState),
3198     .bdrv_needs_filename = true,
3199     .bdrv_probe = NULL, /* no probe for protocols */
3200     .bdrv_parse_filename = raw_parse_filename,
3201     .bdrv_file_open = raw_open,
3202     .bdrv_reopen_prepare = raw_reopen_prepare,
3203     .bdrv_reopen_commit = raw_reopen_commit,
3204     .bdrv_reopen_abort = raw_reopen_abort,
3205     .bdrv_close = raw_close,
3206     .bdrv_co_create = raw_co_create,
3207     .bdrv_co_create_opts = raw_co_create_opts,
3208     .bdrv_has_zero_init = bdrv_has_zero_init_1,
3209     .bdrv_co_block_status = raw_co_block_status,
3210     .bdrv_co_invalidate_cache = raw_co_invalidate_cache,
3211     .bdrv_co_pwrite_zeroes = raw_co_pwrite_zeroes,
3212     .bdrv_co_delete_file = raw_co_delete_file,
3213 
3214     .bdrv_co_preadv         = raw_co_preadv,
3215     .bdrv_co_pwritev        = raw_co_pwritev,
3216     .bdrv_co_flush_to_disk  = raw_co_flush_to_disk,
3217     .bdrv_co_pdiscard       = raw_co_pdiscard,
3218     .bdrv_co_copy_range_from = raw_co_copy_range_from,
3219     .bdrv_co_copy_range_to  = raw_co_copy_range_to,
3220     .bdrv_refresh_limits = raw_refresh_limits,
3221     .bdrv_io_plug = raw_aio_plug,
3222     .bdrv_io_unplug = raw_aio_unplug,
3223     .bdrv_attach_aio_context = raw_aio_attach_aio_context,
3224 
3225     .bdrv_co_truncate = raw_co_truncate,
3226     .bdrv_getlength = raw_getlength,
3227     .bdrv_get_info = raw_get_info,
3228     .bdrv_get_allocated_file_size
3229                         = raw_get_allocated_file_size,
3230     .bdrv_get_specific_stats = raw_get_specific_stats,
3231     .bdrv_check_perm = raw_check_perm,
3232     .bdrv_set_perm   = raw_set_perm,
3233     .bdrv_abort_perm_update = raw_abort_perm_update,
3234     .create_opts = &raw_create_opts,
3235     .mutable_opts = mutable_opts,
3236 };
3237 
3238 /***********************************************/
3239 /* host device */
3240 
3241 #if defined(__APPLE__) && defined(__MACH__)
3242 static kern_return_t GetBSDPath(io_iterator_t mediaIterator, char *bsdPath,
3243                                 CFIndex maxPathSize, int flags);
3244 static char *FindEjectableOpticalMedia(io_iterator_t *mediaIterator)
3245 {
3246     kern_return_t kernResult = KERN_FAILURE;
3247     mach_port_t     masterPort;
3248     CFMutableDictionaryRef  classesToMatch;
3249     const char *matching_array[] = {kIODVDMediaClass, kIOCDMediaClass};
3250     char *mediaType = NULL;
3251 
3252     kernResult = IOMasterPort( MACH_PORT_NULL, &masterPort );
3253     if ( KERN_SUCCESS != kernResult ) {
3254         printf( "IOMasterPort returned %d\n", kernResult );
3255     }
3256 
3257     int index;
3258     for (index = 0; index < ARRAY_SIZE(matching_array); index++) {
3259         classesToMatch = IOServiceMatching(matching_array[index]);
3260         if (classesToMatch == NULL) {
3261             error_report("IOServiceMatching returned NULL for %s",
3262                          matching_array[index]);
3263             continue;
3264         }
3265         CFDictionarySetValue(classesToMatch, CFSTR(kIOMediaEjectableKey),
3266                              kCFBooleanTrue);
3267         kernResult = IOServiceGetMatchingServices(masterPort, classesToMatch,
3268                                                   mediaIterator);
3269         if (kernResult != KERN_SUCCESS) {
3270             error_report("Note: IOServiceGetMatchingServices returned %d",
3271                          kernResult);
3272             continue;
3273         }
3274 
3275         /* If a match was found, leave the loop */
3276         if (*mediaIterator != 0) {
3277             trace_file_FindEjectableOpticalMedia(matching_array[index]);
3278             mediaType = g_strdup(matching_array[index]);
3279             break;
3280         }
3281     }
3282     return mediaType;
3283 }
3284 
3285 kern_return_t GetBSDPath(io_iterator_t mediaIterator, char *bsdPath,
3286                          CFIndex maxPathSize, int flags)
3287 {
3288     io_object_t     nextMedia;
3289     kern_return_t   kernResult = KERN_FAILURE;
3290     *bsdPath = '\0';
3291     nextMedia = IOIteratorNext( mediaIterator );
3292     if ( nextMedia )
3293     {
3294         CFTypeRef   bsdPathAsCFString;
3295     bsdPathAsCFString = IORegistryEntryCreateCFProperty( nextMedia, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 );
3296         if ( bsdPathAsCFString ) {
3297             size_t devPathLength;
3298             strcpy( bsdPath, _PATH_DEV );
3299             if (flags & BDRV_O_NOCACHE) {
3300                 strcat(bsdPath, "r");
3301             }
3302             devPathLength = strlen( bsdPath );
3303             if ( CFStringGetCString( bsdPathAsCFString, bsdPath + devPathLength, maxPathSize - devPathLength, kCFStringEncodingASCII ) ) {
3304                 kernResult = KERN_SUCCESS;
3305             }
3306             CFRelease( bsdPathAsCFString );
3307         }
3308         IOObjectRelease( nextMedia );
3309     }
3310 
3311     return kernResult;
3312 }
3313 
3314 /* Sets up a real cdrom for use in QEMU */
3315 static bool setup_cdrom(char *bsd_path, Error **errp)
3316 {
3317     int index, num_of_test_partitions = 2, fd;
3318     char test_partition[MAXPATHLEN];
3319     bool partition_found = false;
3320 
3321     /* look for a working partition */
3322     for (index = 0; index < num_of_test_partitions; index++) {
3323         snprintf(test_partition, sizeof(test_partition), "%ss%d", bsd_path,
3324                  index);
3325         fd = qemu_open(test_partition, O_RDONLY | O_BINARY | O_LARGEFILE, NULL);
3326         if (fd >= 0) {
3327             partition_found = true;
3328             qemu_close(fd);
3329             break;
3330         }
3331     }
3332 
3333     /* if a working partition on the device was not found */
3334     if (partition_found == false) {
3335         error_setg(errp, "Failed to find a working partition on disc");
3336     } else {
3337         trace_file_setup_cdrom(test_partition);
3338         pstrcpy(bsd_path, MAXPATHLEN, test_partition);
3339     }
3340     return partition_found;
3341 }
3342 
3343 /* Prints directions on mounting and unmounting a device */
3344 static void print_unmounting_directions(const char *file_name)
3345 {
3346     error_report("If device %s is mounted on the desktop, unmount"
3347                  " it first before using it in QEMU", file_name);
3348     error_report("Command to unmount device: diskutil unmountDisk %s",
3349                  file_name);
3350     error_report("Command to mount device: diskutil mountDisk %s", file_name);
3351 }
3352 
3353 #endif /* defined(__APPLE__) && defined(__MACH__) */
3354 
3355 static int hdev_probe_device(const char *filename)
3356 {
3357     struct stat st;
3358 
3359     /* allow a dedicated CD-ROM driver to match with a higher priority */
3360     if (strstart(filename, "/dev/cdrom", NULL))
3361         return 50;
3362 
3363     if (stat(filename, &st) >= 0 &&
3364             (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
3365         return 100;
3366     }
3367 
3368     return 0;
3369 }
3370 
3371 static void hdev_parse_filename(const char *filename, QDict *options,
3372                                 Error **errp)
3373 {
3374     bdrv_parse_filename_strip_prefix(filename, "host_device:", options);
3375 }
3376 
3377 static bool hdev_is_sg(BlockDriverState *bs)
3378 {
3379 
3380 #if defined(__linux__)
3381 
3382     BDRVRawState *s = bs->opaque;
3383     struct stat st;
3384     struct sg_scsi_id scsiid;
3385     int sg_version;
3386     int ret;
3387 
3388     if (stat(bs->filename, &st) < 0 || !S_ISCHR(st.st_mode)) {
3389         return false;
3390     }
3391 
3392     ret = ioctl(s->fd, SG_GET_VERSION_NUM, &sg_version);
3393     if (ret < 0) {
3394         return false;
3395     }
3396 
3397     ret = ioctl(s->fd, SG_GET_SCSI_ID, &scsiid);
3398     if (ret >= 0) {
3399         trace_file_hdev_is_sg(scsiid.scsi_type, sg_version);
3400         return true;
3401     }
3402 
3403 #endif
3404 
3405     return false;
3406 }
3407 
3408 static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
3409                      Error **errp)
3410 {
3411     BDRVRawState *s = bs->opaque;
3412     int ret;
3413 
3414 #if defined(__APPLE__) && defined(__MACH__)
3415     /*
3416      * Caution: while qdict_get_str() is fine, getting non-string types
3417      * would require more care.  When @options come from -blockdev or
3418      * blockdev_add, its members are typed according to the QAPI
3419      * schema, but when they come from -drive, they're all QString.
3420      */
3421     const char *filename = qdict_get_str(options, "filename");
3422     char bsd_path[MAXPATHLEN] = "";
3423     bool error_occurred = false;
3424 
3425     /* If using a real cdrom */
3426     if (strcmp(filename, "/dev/cdrom") == 0) {
3427         char *mediaType = NULL;
3428         kern_return_t ret_val;
3429         io_iterator_t mediaIterator = 0;
3430 
3431         mediaType = FindEjectableOpticalMedia(&mediaIterator);
3432         if (mediaType == NULL) {
3433             error_setg(errp, "Please make sure your CD/DVD is in the optical"
3434                        " drive");
3435             error_occurred = true;
3436             goto hdev_open_Mac_error;
3437         }
3438 
3439         ret_val = GetBSDPath(mediaIterator, bsd_path, sizeof(bsd_path), flags);
3440         if (ret_val != KERN_SUCCESS) {
3441             error_setg(errp, "Could not get BSD path for optical drive");
3442             error_occurred = true;
3443             goto hdev_open_Mac_error;
3444         }
3445 
3446         /* If a real optical drive was not found */
3447         if (bsd_path[0] == '\0') {
3448             error_setg(errp, "Failed to obtain bsd path for optical drive");
3449             error_occurred = true;
3450             goto hdev_open_Mac_error;
3451         }
3452 
3453         /* If using a cdrom disc and finding a partition on the disc failed */
3454         if (strncmp(mediaType, kIOCDMediaClass, 9) == 0 &&
3455             setup_cdrom(bsd_path, errp) == false) {
3456             print_unmounting_directions(bsd_path);
3457             error_occurred = true;
3458             goto hdev_open_Mac_error;
3459         }
3460 
3461         qdict_put_str(options, "filename", bsd_path);
3462 
3463 hdev_open_Mac_error:
3464         g_free(mediaType);
3465         if (mediaIterator) {
3466             IOObjectRelease(mediaIterator);
3467         }
3468         if (error_occurred) {
3469             return -ENOENT;
3470         }
3471     }
3472 #endif /* defined(__APPLE__) && defined(__MACH__) */
3473 
3474     s->type = FTYPE_FILE;
3475 
3476     ret = raw_open_common(bs, options, flags, 0, true, errp);
3477     if (ret < 0) {
3478 #if defined(__APPLE__) && defined(__MACH__)
3479         if (*bsd_path) {
3480             filename = bsd_path;
3481         }
3482         /* if a physical device experienced an error while being opened */
3483         if (strncmp(filename, "/dev/", 5) == 0) {
3484             print_unmounting_directions(filename);
3485         }
3486 #endif /* defined(__APPLE__) && defined(__MACH__) */
3487         return ret;
3488     }
3489 
3490     /* Since this does ioctl the device must be already opened */
3491     bs->sg = hdev_is_sg(bs);
3492 
3493     return ret;
3494 }
3495 
3496 #if defined(__linux__)
3497 static int coroutine_fn
3498 hdev_co_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
3499 {
3500     BDRVRawState *s = bs->opaque;
3501     RawPosixAIOData acb;
3502     int ret;
3503 
3504     ret = fd_open(bs);
3505     if (ret < 0) {
3506         return ret;
3507     }
3508 
3509     if (req == SG_IO && s->pr_mgr) {
3510         struct sg_io_hdr *io_hdr = buf;
3511         if (io_hdr->cmdp[0] == PERSISTENT_RESERVE_OUT ||
3512             io_hdr->cmdp[0] == PERSISTENT_RESERVE_IN) {
3513             return pr_manager_execute(s->pr_mgr, bdrv_get_aio_context(bs),
3514                                       s->fd, io_hdr);
3515         }
3516     }
3517 
3518     acb = (RawPosixAIOData) {
3519         .bs         = bs,
3520         .aio_type   = QEMU_AIO_IOCTL,
3521         .aio_fildes = s->fd,
3522         .aio_offset = 0,
3523         .ioctl      = {
3524             .buf        = buf,
3525             .cmd        = req,
3526         },
3527     };
3528 
3529     return raw_thread_pool_submit(bs, handle_aiocb_ioctl, &acb);
3530 }
3531 #endif /* linux */
3532 
3533 static int fd_open(BlockDriverState *bs)
3534 {
3535     BDRVRawState *s = bs->opaque;
3536 
3537     /* this is just to ensure s->fd is sane (its called by io ops) */
3538     if (s->fd >= 0)
3539         return 0;
3540     return -EIO;
3541 }
3542 
3543 static coroutine_fn int
3544 hdev_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes)
3545 {
3546     BDRVRawState *s = bs->opaque;
3547     int ret;
3548 
3549     ret = fd_open(bs);
3550     if (ret < 0) {
3551         raw_account_discard(s, bytes, ret);
3552         return ret;
3553     }
3554     return raw_do_pdiscard(bs, offset, bytes, true);
3555 }
3556 
3557 static coroutine_fn int hdev_co_pwrite_zeroes(BlockDriverState *bs,
3558     int64_t offset, int bytes, BdrvRequestFlags flags)
3559 {
3560     int rc;
3561 
3562     rc = fd_open(bs);
3563     if (rc < 0) {
3564         return rc;
3565     }
3566 
3567     return raw_do_pwrite_zeroes(bs, offset, bytes, flags, true);
3568 }
3569 
3570 static BlockDriver bdrv_host_device = {
3571     .format_name        = "host_device",
3572     .protocol_name        = "host_device",
3573     .instance_size      = sizeof(BDRVRawState),
3574     .bdrv_needs_filename = true,
3575     .bdrv_probe_device  = hdev_probe_device,
3576     .bdrv_parse_filename = hdev_parse_filename,
3577     .bdrv_file_open     = hdev_open,
3578     .bdrv_close         = raw_close,
3579     .bdrv_reopen_prepare = raw_reopen_prepare,
3580     .bdrv_reopen_commit  = raw_reopen_commit,
3581     .bdrv_reopen_abort   = raw_reopen_abort,
3582     .bdrv_co_create_opts = bdrv_co_create_opts_simple,
3583     .create_opts         = &bdrv_create_opts_simple,
3584     .mutable_opts        = mutable_opts,
3585     .bdrv_co_invalidate_cache = raw_co_invalidate_cache,
3586     .bdrv_co_pwrite_zeroes = hdev_co_pwrite_zeroes,
3587 
3588     .bdrv_co_preadv         = raw_co_preadv,
3589     .bdrv_co_pwritev        = raw_co_pwritev,
3590     .bdrv_co_flush_to_disk  = raw_co_flush_to_disk,
3591     .bdrv_co_pdiscard       = hdev_co_pdiscard,
3592     .bdrv_co_copy_range_from = raw_co_copy_range_from,
3593     .bdrv_co_copy_range_to  = raw_co_copy_range_to,
3594     .bdrv_refresh_limits = raw_refresh_limits,
3595     .bdrv_io_plug = raw_aio_plug,
3596     .bdrv_io_unplug = raw_aio_unplug,
3597     .bdrv_attach_aio_context = raw_aio_attach_aio_context,
3598 
3599     .bdrv_co_truncate       = raw_co_truncate,
3600     .bdrv_getlength	= raw_getlength,
3601     .bdrv_get_info = raw_get_info,
3602     .bdrv_get_allocated_file_size
3603                         = raw_get_allocated_file_size,
3604     .bdrv_get_specific_stats = hdev_get_specific_stats,
3605     .bdrv_check_perm = raw_check_perm,
3606     .bdrv_set_perm   = raw_set_perm,
3607     .bdrv_abort_perm_update = raw_abort_perm_update,
3608     .bdrv_probe_blocksizes = hdev_probe_blocksizes,
3609     .bdrv_probe_geometry = hdev_probe_geometry,
3610 
3611     /* generic scsi device */
3612 #ifdef __linux__
3613     .bdrv_co_ioctl          = hdev_co_ioctl,
3614 #endif
3615 };
3616 
3617 #if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
3618 static void cdrom_parse_filename(const char *filename, QDict *options,
3619                                  Error **errp)
3620 {
3621     bdrv_parse_filename_strip_prefix(filename, "host_cdrom:", options);
3622 }
3623 #endif
3624 
3625 #ifdef __linux__
3626 static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
3627                       Error **errp)
3628 {
3629     BDRVRawState *s = bs->opaque;
3630 
3631     s->type = FTYPE_CD;
3632 
3633     /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
3634     return raw_open_common(bs, options, flags, O_NONBLOCK, true, errp);
3635 }
3636 
3637 static int cdrom_probe_device(const char *filename)
3638 {
3639     int fd, ret;
3640     int prio = 0;
3641     struct stat st;
3642 
3643     fd = qemu_open(filename, O_RDONLY | O_NONBLOCK, NULL);
3644     if (fd < 0) {
3645         goto out;
3646     }
3647     ret = fstat(fd, &st);
3648     if (ret == -1 || !S_ISBLK(st.st_mode)) {
3649         goto outc;
3650     }
3651 
3652     /* Attempt to detect via a CDROM specific ioctl */
3653     ret = ioctl(fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
3654     if (ret >= 0)
3655         prio = 100;
3656 
3657 outc:
3658     qemu_close(fd);
3659 out:
3660     return prio;
3661 }
3662 
3663 static bool cdrom_is_inserted(BlockDriverState *bs)
3664 {
3665     BDRVRawState *s = bs->opaque;
3666     int ret;
3667 
3668     ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
3669     return ret == CDS_DISC_OK;
3670 }
3671 
3672 static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
3673 {
3674     BDRVRawState *s = bs->opaque;
3675 
3676     if (eject_flag) {
3677         if (ioctl(s->fd, CDROMEJECT, NULL) < 0)
3678             perror("CDROMEJECT");
3679     } else {
3680         if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0)
3681             perror("CDROMEJECT");
3682     }
3683 }
3684 
3685 static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
3686 {
3687     BDRVRawState *s = bs->opaque;
3688 
3689     if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
3690         /*
3691          * Note: an error can happen if the distribution automatically
3692          * mounts the CD-ROM
3693          */
3694         /* perror("CDROM_LOCKDOOR"); */
3695     }
3696 }
3697 
3698 static BlockDriver bdrv_host_cdrom = {
3699     .format_name        = "host_cdrom",
3700     .protocol_name      = "host_cdrom",
3701     .instance_size      = sizeof(BDRVRawState),
3702     .bdrv_needs_filename = true,
3703     .bdrv_probe_device	= cdrom_probe_device,
3704     .bdrv_parse_filename = cdrom_parse_filename,
3705     .bdrv_file_open     = cdrom_open,
3706     .bdrv_close         = raw_close,
3707     .bdrv_reopen_prepare = raw_reopen_prepare,
3708     .bdrv_reopen_commit  = raw_reopen_commit,
3709     .bdrv_reopen_abort   = raw_reopen_abort,
3710     .bdrv_co_create_opts = bdrv_co_create_opts_simple,
3711     .create_opts         = &bdrv_create_opts_simple,
3712     .mutable_opts        = mutable_opts,
3713     .bdrv_co_invalidate_cache = raw_co_invalidate_cache,
3714 
3715     .bdrv_co_preadv         = raw_co_preadv,
3716     .bdrv_co_pwritev        = raw_co_pwritev,
3717     .bdrv_co_flush_to_disk  = raw_co_flush_to_disk,
3718     .bdrv_refresh_limits = raw_refresh_limits,
3719     .bdrv_io_plug = raw_aio_plug,
3720     .bdrv_io_unplug = raw_aio_unplug,
3721     .bdrv_attach_aio_context = raw_aio_attach_aio_context,
3722 
3723     .bdrv_co_truncate    = raw_co_truncate,
3724     .bdrv_getlength      = raw_getlength,
3725     .has_variable_length = true,
3726     .bdrv_get_allocated_file_size
3727                         = raw_get_allocated_file_size,
3728 
3729     /* removable device support */
3730     .bdrv_is_inserted   = cdrom_is_inserted,
3731     .bdrv_eject         = cdrom_eject,
3732     .bdrv_lock_medium   = cdrom_lock_medium,
3733 
3734     /* generic scsi device */
3735     .bdrv_co_ioctl      = hdev_co_ioctl,
3736 };
3737 #endif /* __linux__ */
3738 
3739 #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
3740 static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
3741                       Error **errp)
3742 {
3743     BDRVRawState *s = bs->opaque;
3744     int ret;
3745 
3746     s->type = FTYPE_CD;
3747 
3748     ret = raw_open_common(bs, options, flags, 0, true, errp);
3749     if (ret) {
3750         return ret;
3751     }
3752 
3753     /* make sure the door isn't locked at this time */
3754     ioctl(s->fd, CDIOCALLOW);
3755     return 0;
3756 }
3757 
3758 static int cdrom_probe_device(const char *filename)
3759 {
3760     if (strstart(filename, "/dev/cd", NULL) ||
3761             strstart(filename, "/dev/acd", NULL))
3762         return 100;
3763     return 0;
3764 }
3765 
3766 static int cdrom_reopen(BlockDriverState *bs)
3767 {
3768     BDRVRawState *s = bs->opaque;
3769     int fd;
3770 
3771     /*
3772      * Force reread of possibly changed/newly loaded disc,
3773      * FreeBSD seems to not notice sometimes...
3774      */
3775     if (s->fd >= 0)
3776         qemu_close(s->fd);
3777     fd = qemu_open(bs->filename, s->open_flags, NULL);
3778     if (fd < 0) {
3779         s->fd = -1;
3780         return -EIO;
3781     }
3782     s->fd = fd;
3783 
3784     /* make sure the door isn't locked at this time */
3785     ioctl(s->fd, CDIOCALLOW);
3786     return 0;
3787 }
3788 
3789 static bool cdrom_is_inserted(BlockDriverState *bs)
3790 {
3791     return raw_getlength(bs) > 0;
3792 }
3793 
3794 static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
3795 {
3796     BDRVRawState *s = bs->opaque;
3797 
3798     if (s->fd < 0)
3799         return;
3800 
3801     (void) ioctl(s->fd, CDIOCALLOW);
3802 
3803     if (eject_flag) {
3804         if (ioctl(s->fd, CDIOCEJECT) < 0)
3805             perror("CDIOCEJECT");
3806     } else {
3807         if (ioctl(s->fd, CDIOCCLOSE) < 0)
3808             perror("CDIOCCLOSE");
3809     }
3810 
3811     cdrom_reopen(bs);
3812 }
3813 
3814 static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
3815 {
3816     BDRVRawState *s = bs->opaque;
3817 
3818     if (s->fd < 0)
3819         return;
3820     if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
3821         /*
3822          * Note: an error can happen if the distribution automatically
3823          * mounts the CD-ROM
3824          */
3825         /* perror("CDROM_LOCKDOOR"); */
3826     }
3827 }
3828 
3829 static BlockDriver bdrv_host_cdrom = {
3830     .format_name        = "host_cdrom",
3831     .protocol_name      = "host_cdrom",
3832     .instance_size      = sizeof(BDRVRawState),
3833     .bdrv_needs_filename = true,
3834     .bdrv_probe_device	= cdrom_probe_device,
3835     .bdrv_parse_filename = cdrom_parse_filename,
3836     .bdrv_file_open     = cdrom_open,
3837     .bdrv_close         = raw_close,
3838     .bdrv_reopen_prepare = raw_reopen_prepare,
3839     .bdrv_reopen_commit  = raw_reopen_commit,
3840     .bdrv_reopen_abort   = raw_reopen_abort,
3841     .bdrv_co_create_opts = bdrv_co_create_opts_simple,
3842     .create_opts         = &bdrv_create_opts_simple,
3843     .mutable_opts       = mutable_opts,
3844 
3845     .bdrv_co_preadv         = raw_co_preadv,
3846     .bdrv_co_pwritev        = raw_co_pwritev,
3847     .bdrv_co_flush_to_disk  = raw_co_flush_to_disk,
3848     .bdrv_refresh_limits = raw_refresh_limits,
3849     .bdrv_io_plug = raw_aio_plug,
3850     .bdrv_io_unplug = raw_aio_unplug,
3851     .bdrv_attach_aio_context = raw_aio_attach_aio_context,
3852 
3853     .bdrv_co_truncate    = raw_co_truncate,
3854     .bdrv_getlength      = raw_getlength,
3855     .has_variable_length = true,
3856     .bdrv_get_allocated_file_size
3857                         = raw_get_allocated_file_size,
3858 
3859     /* removable device support */
3860     .bdrv_is_inserted   = cdrom_is_inserted,
3861     .bdrv_eject         = cdrom_eject,
3862     .bdrv_lock_medium   = cdrom_lock_medium,
3863 };
3864 #endif /* __FreeBSD__ */
3865 
3866 static void bdrv_file_init(void)
3867 {
3868     /*
3869      * Register all the drivers.  Note that order is important, the driver
3870      * registered last will get probed first.
3871      */
3872     bdrv_register(&bdrv_file);
3873     bdrv_register(&bdrv_host_device);
3874 #ifdef __linux__
3875     bdrv_register(&bdrv_host_cdrom);
3876 #endif
3877 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
3878     bdrv_register(&bdrv_host_cdrom);
3879 #endif
3880 }
3881 
3882 block_init(bdrv_file_init);
3883