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