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