]> git.proxmox.com Git - mirror_qemu.git/blame - block/raw-posix.c
block: Reject writethrough mode except at the root
[mirror_qemu.git] / block / raw-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 */
80c71a24 24#include "qemu/osdep.h"
da34e65c 25#include "qapi/error.h"
f348b6d1 26#include "qemu/cutils.h"
d49b6836 27#include "qemu/error-report.h"
1de7afc9
PB
28#include "qemu/timer.h"
29#include "qemu/log.h"
737e150e 30#include "block/block_int.h"
1de7afc9 31#include "qemu/module.h"
de81a169 32#include "trace.h"
737e150e 33#include "block/thread-pool.h"
1de7afc9 34#include "qemu/iov.h"
9f8540ec 35#include "raw-aio.h"
06247428 36#include "qapi/util.h"
d49b6836 37#include "qapi/qmp/qstring.h"
83f64091 38
83affaa6 39#if defined(__APPLE__) && (__MACH__)
83f64091
FB
40#include <paths.h>
41#include <sys/param.h>
42#include <IOKit/IOKitLib.h>
43#include <IOKit/IOBSD.h>
44#include <IOKit/storage/IOMediaBSDClient.h>
45#include <IOKit/storage/IOMedia.h>
46#include <IOKit/storage/IOCDMedia.h>
47//#include <IOKit/storage/IOCDTypes.h>
48#include <CoreFoundation/CoreFoundation.h>
49#endif
50
51#ifdef __sun__
2e9671da 52#define _POSIX_PTHREAD_SEMANTICS 1
83f64091
FB
53#include <sys/dkio.h>
54#endif
19cb3738
FB
55#ifdef __linux__
56#include <sys/ioctl.h>
05acda4d 57#include <sys/param.h>
19cb3738
FB
58#include <linux/cdrom.h>
59#include <linux/fd.h>
5500316d 60#include <linux/fs.h>
1a9335e4 61#include <linux/hdreg.h>
3307ed7b 62#include <scsi/sg.h>
1a9335e4
ET
63#ifdef __s390__
64#include <asm/dasd.h>
65#endif
4ab15590
CL
66#ifndef FS_NOCOW_FL
67#define FS_NOCOW_FL 0x00800000 /* Do not cow file */
68#endif
5500316d 69#endif
b953f075 70#if defined(CONFIG_FALLOCATE_PUNCH_HOLE) || defined(CONFIG_FALLOCATE_ZERO_RANGE)
3d4fa43e
KK
71#include <linux/falloc.h>
72#endif
a167ba50 73#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
1cb6c3fd 74#include <sys/disk.h>
9f23011a 75#include <sys/cdio.h>
1cb6c3fd 76#endif
83f64091 77
128ab2ff
BS
78#ifdef __OpenBSD__
79#include <sys/ioctl.h>
80#include <sys/disklabel.h>
81#include <sys/dkio.h>
82#endif
83
d1f6fd8d
CE
84#ifdef __NetBSD__
85#include <sys/ioctl.h>
86#include <sys/disklabel.h>
87#include <sys/dkio.h>
88#include <sys/disk.h>
89#endif
90
c5e97233
BS
91#ifdef __DragonFly__
92#include <sys/ioctl.h>
93#include <sys/diskslice.h>
94#endif
95
dce512de
CH
96#ifdef CONFIG_XFS
97#include <xfs/xfs.h>
98#endif
99
faf07963 100//#define DEBUG_BLOCK
bcb22555
DA
101
102#ifdef DEBUG_BLOCK
103# define DEBUG_BLOCK_PRINT 1
8c05dbf9 104#else
bcb22555 105# define DEBUG_BLOCK_PRINT 0
8c05dbf9 106#endif
bcb22555
DA
107#define DPRINTF(fmt, ...) \
108do { \
109 if (DEBUG_BLOCK_PRINT) { \
110 printf(fmt, ## __VA_ARGS__); \
111 } \
112} while (0)
8c05dbf9 113
f6465578
AL
114/* OS X does not have O_DSYNC */
115#ifndef O_DSYNC
1c27a8b3 116#ifdef O_SYNC
7ab064d2 117#define O_DSYNC O_SYNC
1c27a8b3
JA
118#elif defined(O_FSYNC)
119#define O_DSYNC O_FSYNC
120#endif
f6465578
AL
121#endif
122
9f7965c7
AL
123/* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
124#ifndef O_DIRECT
125#define O_DIRECT O_DSYNC
126#endif
127
19cb3738
FB
128#define FTYPE_FILE 0
129#define FTYPE_CD 1
83f64091 130
581b9e29
CH
131#define MAX_BLOCKSIZE 4096
132
19cb3738
FB
133typedef struct BDRVRawState {
134 int fd;
135 int type;
0e1d8f4c 136 int open_flags;
c25f53b0
PB
137 size_t buf_align;
138
e44bd6fc 139#ifdef CONFIG_LINUX_AIO
5c6c3a6c 140 int use_aio;
1e5b9d2f 141 void *aio_ctx;
e44bd6fc 142#endif
dce512de 143#ifdef CONFIG_XFS
260a82e5 144 bool is_xfs:1;
dce512de 145#endif
260a82e5 146 bool has_discard:1;
97a2ae34 147 bool has_write_zeroes:1;
260a82e5 148 bool discard_zeroes:1;
d50d8222 149 bool has_fallocate;
3cad8307 150 bool needs_alignment;
19cb3738
FB
151} BDRVRawState;
152
eeb6b45d
JC
153typedef struct BDRVRawReopenState {
154 int fd;
155 int open_flags;
156#ifdef CONFIG_LINUX_AIO
157 int use_aio;
158#endif
159} BDRVRawReopenState;
160
19cb3738 161static int fd_open(BlockDriverState *bs);
22afa7b5 162static int64_t raw_getlength(BlockDriverState *bs);
83f64091 163
de81a169
PB
164typedef struct RawPosixAIOData {
165 BlockDriverState *bs;
166 int aio_fildes;
167 union {
168 struct iovec *aio_iov;
169 void *aio_ioctl_buf;
170 };
171 int aio_niov;
8238010b 172 uint64_t aio_nbytes;
de81a169
PB
173#define aio_ioctl_cmd aio_nbytes /* for QEMU_AIO_IOCTL */
174 off_t aio_offset;
175 int aio_type;
176} RawPosixAIOData;
177
a167ba50 178#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
f3a5d3f8 179static int cdrom_reopen(BlockDriverState *bs);
9f23011a
BS
180#endif
181
1de1ae0a
CE
182#if defined(__NetBSD__)
183static int raw_normalize_devicepath(const char **filename)
184{
185 static char namebuf[PATH_MAX];
186 const char *dp, *fname;
187 struct stat sb;
188
189 fname = *filename;
190 dp = strrchr(fname, '/');
191 if (lstat(fname, &sb) < 0) {
192 fprintf(stderr, "%s: stat failed: %s\n",
193 fname, strerror(errno));
194 return -errno;
195 }
196
197 if (!S_ISBLK(sb.st_mode)) {
198 return 0;
199 }
200
201 if (dp == NULL) {
202 snprintf(namebuf, PATH_MAX, "r%s", fname);
203 } else {
204 snprintf(namebuf, PATH_MAX, "%.*s/r%s",
205 (int)(dp - fname), fname, dp + 1);
206 }
207 fprintf(stderr, "%s is a block device", fname);
208 *filename = namebuf;
209 fprintf(stderr, ", using %s\n", *filename);
210
211 return 0;
212}
213#else
214static int raw_normalize_devicepath(const char **filename)
215{
216 return 0;
217}
218#endif
219
8a4ed0d1
ET
220/*
221 * Get logical block size via ioctl. On success store it in @sector_size_p.
222 */
223static int probe_logical_blocksize(int fd, unsigned int *sector_size_p)
c25f53b0 224{
c25f53b0 225 unsigned int sector_size;
8a4ed0d1 226 bool success = false;
c25f53b0 227
8a4ed0d1 228 errno = ENOTSUP;
c25f53b0
PB
229
230 /* Try a few ioctls to get the right size */
c25f53b0 231#ifdef BLKSSZGET
df26a350 232 if (ioctl(fd, BLKSSZGET, &sector_size) >= 0) {
8a4ed0d1
ET
233 *sector_size_p = sector_size;
234 success = true;
c25f53b0
PB
235 }
236#endif
237#ifdef DKIOCGETBLOCKSIZE
df26a350 238 if (ioctl(fd, DKIOCGETBLOCKSIZE, &sector_size) >= 0) {
8a4ed0d1
ET
239 *sector_size_p = sector_size;
240 success = true;
c25f53b0
PB
241 }
242#endif
243#ifdef DIOCGSECTORSIZE
df26a350 244 if (ioctl(fd, DIOCGSECTORSIZE, &sector_size) >= 0) {
8a4ed0d1
ET
245 *sector_size_p = sector_size;
246 success = true;
c25f53b0
PB
247 }
248#endif
8a4ed0d1
ET
249
250 return success ? 0 : -errno;
251}
252
1a9335e4
ET
253/**
254 * Get physical block size of @fd.
255 * On success, store it in @blk_size and return 0.
256 * On failure, return -errno.
257 */
258static int probe_physical_blocksize(int fd, unsigned int *blk_size)
259{
260#ifdef BLKPBSZGET
261 if (ioctl(fd, BLKPBSZGET, blk_size) < 0) {
262 return -errno;
263 }
264 return 0;
265#else
266 return -ENOTSUP;
267#endif
268}
269
22d182e8
SH
270/* Check if read is allowed with given memory buffer and length.
271 *
272 * This function is used to check O_DIRECT memory buffer and request alignment.
273 */
274static bool raw_is_io_aligned(int fd, void *buf, size_t len)
275{
276 ssize_t ret = pread(fd, buf, len, 0);
277
278 if (ret >= 0) {
279 return true;
280 }
281
282#ifdef __linux__
283 /* The Linux kernel returns EINVAL for misaligned O_DIRECT reads. Ignore
284 * other errors (e.g. real I/O error), which could happen on a failed
285 * drive, since we only care about probing alignment.
286 */
287 if (errno != EINVAL) {
288 return true;
289 }
290#endif
291
292 return false;
293}
294
8a4ed0d1
ET
295static void raw_probe_alignment(BlockDriverState *bs, int fd, Error **errp)
296{
297 BDRVRawState *s = bs->opaque;
298 char *buf;
459b4e66 299 size_t max_align = MAX(MAX_BLOCKSIZE, getpagesize());
8a4ed0d1 300
b192af8a 301 /* For SCSI generic devices the alignment is not really used.
8a4ed0d1 302 With buffered I/O, we don't have any restrictions. */
b192af8a 303 if (bdrv_is_sg(bs) || !s->needs_alignment) {
8a4ed0d1
ET
304 bs->request_alignment = 1;
305 s->buf_align = 1;
306 return;
307 }
308
309 bs->request_alignment = 0;
310 s->buf_align = 0;
311 /* Let's try to use the logical blocksize for the alignment. */
312 if (probe_logical_blocksize(fd, &bs->request_alignment) < 0) {
313 bs->request_alignment = 0;
314 }
c25f53b0
PB
315#ifdef CONFIG_XFS
316 if (s->is_xfs) {
317 struct dioattr da;
df26a350 318 if (xfsctl(NULL, fd, XFS_IOC_DIOINFO, &da) >= 0) {
c25f53b0
PB
319 bs->request_alignment = da.d_miniosz;
320 /* The kernel returns wrong information for d_mem */
321 /* s->buf_align = da.d_mem; */
322 }
323 }
324#endif
325
326 /* If we could not get the sizes so far, we can only guess them */
327 if (!s->buf_align) {
328 size_t align;
459b4e66
DL
329 buf = qemu_memalign(max_align, 2 * max_align);
330 for (align = 512; align <= max_align; align <<= 1) {
331 if (raw_is_io_aligned(fd, buf + align, max_align)) {
c25f53b0
PB
332 s->buf_align = align;
333 break;
334 }
335 }
336 qemu_vfree(buf);
337 }
338
339 if (!bs->request_alignment) {
340 size_t align;
459b4e66
DL
341 buf = qemu_memalign(s->buf_align, max_align);
342 for (align = 512; align <= max_align; align <<= 1) {
22d182e8 343 if (raw_is_io_aligned(fd, buf, align)) {
c25f53b0
PB
344 bs->request_alignment = align;
345 break;
346 }
347 }
348 qemu_vfree(buf);
349 }
df26a350
KW
350
351 if (!s->buf_align || !bs->request_alignment) {
352 error_setg(errp, "Could not find working O_DIRECT alignment. "
353 "Try cache.direct=off.");
354 }
c25f53b0
PB
355}
356
6a8dc042
JC
357static void raw_parse_flags(int bdrv_flags, int *open_flags)
358{
359 assert(open_flags != NULL);
360
361 *open_flags |= O_BINARY;
362 *open_flags &= ~O_ACCMODE;
363 if (bdrv_flags & BDRV_O_RDWR) {
364 *open_flags |= O_RDWR;
365 } else {
366 *open_flags |= O_RDONLY;
367 }
368
369 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
370 * and O_DIRECT for no caching. */
371 if ((bdrv_flags & BDRV_O_NOCACHE)) {
372 *open_flags |= O_DIRECT;
373 }
6a8dc042
JC
374}
375
c2f3426c
SH
376static void raw_detach_aio_context(BlockDriverState *bs)
377{
378#ifdef CONFIG_LINUX_AIO
379 BDRVRawState *s = bs->opaque;
380
381 if (s->use_aio) {
382 laio_detach_aio_context(s->aio_ctx, bdrv_get_aio_context(bs));
383 }
384#endif
385}
386
387static void raw_attach_aio_context(BlockDriverState *bs,
388 AioContext *new_context)
389{
390#ifdef CONFIG_LINUX_AIO
391 BDRVRawState *s = bs->opaque;
392
393 if (s->use_aio) {
394 laio_attach_aio_context(s->aio_ctx, new_context);
395 }
396#endif
397}
398
fc32a72d
JC
399#ifdef CONFIG_LINUX_AIO
400static int raw_set_aio(void **aio_ctx, int *use_aio, int bdrv_flags)
401{
402 int ret = -1;
403 assert(aio_ctx != NULL);
404 assert(use_aio != NULL);
405 /*
406 * Currently Linux do AIO only for files opened with O_DIRECT
407 * specified so check NOCACHE flag too
408 */
409 if ((bdrv_flags & (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) ==
410 (BDRV_O_NOCACHE|BDRV_O_NATIVE_AIO)) {
411
412 /* if non-NULL, laio_init() has already been run */
413 if (*aio_ctx == NULL) {
414 *aio_ctx = laio_init();
415 if (!*aio_ctx) {
416 goto error;
417 }
418 }
419 *use_aio = 1;
420 } else {
421 *use_aio = 0;
422 }
423
424 ret = 0;
425
426error:
427 return ret;
428}
429#endif
430
078896a9
HR
431static void raw_parse_filename(const char *filename, QDict *options,
432 Error **errp)
433{
434 /* The filename does not have to be prefixed by the protocol name, since
435 * "file" is the default protocol; therefore, the return value of this
436 * function call can be ignored. */
437 strstart(filename, "file:", &filename);
438
439 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
440}
441
c66a6157
KW
442static QemuOptsList raw_runtime_opts = {
443 .name = "raw",
444 .head = QTAILQ_HEAD_INITIALIZER(raw_runtime_opts.head),
445 .desc = {
446 {
447 .name = "filename",
448 .type = QEMU_OPT_STRING,
449 .help = "File name of the image",
450 },
451 { /* end of list */ }
452 },
453};
454
455static int raw_open_common(BlockDriverState *bs, QDict *options,
e428e439 456 int bdrv_flags, int open_flags, Error **errp)
83f64091
FB
457{
458 BDRVRawState *s = bs->opaque;
c66a6157
KW
459 QemuOpts *opts;
460 Error *local_err = NULL;
8bfea15d 461 const char *filename = NULL;
0e1d8f4c 462 int fd, ret;
260a82e5 463 struct stat st;
83f64091 464
87ea75d5 465 opts = qemu_opts_create(&raw_runtime_opts, NULL, 0, &error_abort);
c66a6157 466 qemu_opts_absorb_qdict(opts, options, &local_err);
84d18f06 467 if (local_err) {
e428e439 468 error_propagate(errp, local_err);
c66a6157
KW
469 ret = -EINVAL;
470 goto fail;
471 }
472
473 filename = qemu_opt_get(opts, "filename");
474
1de1ae0a
CE
475 ret = raw_normalize_devicepath(&filename);
476 if (ret != 0) {
e428e439 477 error_setg_errno(errp, -ret, "Could not normalize device path");
c66a6157 478 goto fail;
1de1ae0a
CE
479 }
480
6a8dc042
JC
481 s->open_flags = open_flags;
482 raw_parse_flags(bdrv_flags, &s->open_flags);
83f64091 483
90babde0 484 s->fd = -1;
40ff6d7e 485 fd = qemu_open(filename, s->open_flags, 0644);
19cb3738
FB
486 if (fd < 0) {
487 ret = -errno;
c66a6157 488 if (ret == -EROFS) {
19cb3738 489 ret = -EACCES;
c66a6157
KW
490 }
491 goto fail;
19cb3738 492 }
83f64091 493 s->fd = fd;
9ef91a67 494
5c6c3a6c 495#ifdef CONFIG_LINUX_AIO
fc32a72d 496 if (raw_set_aio(&s->aio_ctx, &s->use_aio, bdrv_flags)) {
47e6b251 497 qemu_close(fd);
c66a6157 498 ret = -errno;
e428e439 499 error_setg_errno(errp, -ret, "Could not set AIO state");
c66a6157 500 goto fail;
9ef91a67 501 }
96518254 502 if (!s->use_aio && (bdrv_flags & BDRV_O_NATIVE_AIO)) {
d657c0c2
KW
503 error_setg(errp, "aio=native was specified, but it requires "
504 "cache.direct=on, which was not specified.");
505 ret = -EINVAL;
506 goto fail;
96518254 507 }
1501ecc1
SH
508#else
509 if (bdrv_flags & BDRV_O_NATIVE_AIO) {
d657c0c2
KW
510 error_setg(errp, "aio=native was specified, but is not supported "
511 "in this build.");
512 ret = -EINVAL;
513 goto fail;
1501ecc1
SH
514 }
515#endif /* !defined(CONFIG_LINUX_AIO) */
9ef91a67 516
7ce21016 517 s->has_discard = true;
97a2ae34 518 s->has_write_zeroes = true;
3cad8307
RPM
519 if ((bs->open_flags & BDRV_O_NOCACHE) != 0) {
520 s->needs_alignment = true;
521 }
260a82e5
PB
522
523 if (fstat(s->fd, &st) < 0) {
01212d4e 524 ret = -errno;
260a82e5
PB
525 error_setg_errno(errp, errno, "Could not stat file");
526 goto fail;
527 }
528 if (S_ISREG(st.st_mode)) {
529 s->discard_zeroes = true;
d50d8222 530 s->has_fallocate = true;
260a82e5 531 }
d0b4503e
PB
532 if (S_ISBLK(st.st_mode)) {
533#ifdef BLKDISCARDZEROES
534 unsigned int arg;
535 if (ioctl(s->fd, BLKDISCARDZEROES, &arg) == 0 && arg) {
536 s->discard_zeroes = true;
537 }
538#endif
539#ifdef __linux__
540 /* On Linux 3.10, BLKDISCARD leaves stale data in the page cache. Do
541 * not rely on the contents of discarded blocks unless using O_DIRECT.
97a2ae34 542 * Same for BLKZEROOUT.
d0b4503e
PB
543 */
544 if (!(bs->open_flags & BDRV_O_NOCACHE)) {
545 s->discard_zeroes = false;
97a2ae34 546 s->has_write_zeroes = false;
d0b4503e
PB
547 }
548#endif
549 }
3cad8307
RPM
550#ifdef __FreeBSD__
551 if (S_ISCHR(st.st_mode)) {
552 /*
553 * The file is a char device (disk), which on FreeBSD isn't behind
554 * a pager, so force all requests to be aligned. This is needed
555 * so QEMU makes sure all IO operations on the device are aligned
556 * to sector size, or else FreeBSD will reject them with EINVAL.
557 */
558 s->needs_alignment = true;
559 }
560#endif
260a82e5 561
dce512de
CH
562#ifdef CONFIG_XFS
563 if (platform_test_xfs_fd(s->fd)) {
7ce21016 564 s->is_xfs = true;
dce512de
CH
565 }
566#endif
567
c2f3426c
SH
568 raw_attach_aio_context(bs, bdrv_get_aio_context(bs));
569
c66a6157
KW
570 ret = 0;
571fail:
8bfea15d
KW
572 if (filename && (bdrv_flags & BDRV_O_TEMPORARY)) {
573 unlink(filename);
574 }
c66a6157
KW
575 qemu_opts_del(opts);
576 return ret;
83f64091
FB
577}
578
015a1036
HR
579static int raw_open(BlockDriverState *bs, QDict *options, int flags,
580 Error **errp)
90babde0
CH
581{
582 BDRVRawState *s = bs->opaque;
e428e439
HR
583 Error *local_err = NULL;
584 int ret;
90babde0
CH
585
586 s->type = FTYPE_FILE;
e428e439 587 ret = raw_open_common(bs, options, flags, 0, &local_err);
84d18f06 588 if (local_err) {
e428e439
HR
589 error_propagate(errp, local_err);
590 }
591 return ret;
90babde0
CH
592}
593
eeb6b45d
JC
594static int raw_reopen_prepare(BDRVReopenState *state,
595 BlockReopenQueue *queue, Error **errp)
596{
597 BDRVRawState *s;
598 BDRVRawReopenState *raw_s;
599 int ret = 0;
df26a350 600 Error *local_err = NULL;
eeb6b45d
JC
601
602 assert(state != NULL);
603 assert(state->bs != NULL);
604
605 s = state->bs->opaque;
606
5839e53b 607 state->opaque = g_new0(BDRVRawReopenState, 1);
eeb6b45d
JC
608 raw_s = state->opaque;
609
610#ifdef CONFIG_LINUX_AIO
611 raw_s->use_aio = s->use_aio;
612
613 /* we can use s->aio_ctx instead of a copy, because the use_aio flag is
614 * valid in the 'false' condition even if aio_ctx is set, and raw_set_aio()
615 * won't override aio_ctx if aio_ctx is non-NULL */
616 if (raw_set_aio(&s->aio_ctx, &raw_s->use_aio, state->flags)) {
e428e439 617 error_setg(errp, "Could not set AIO state");
eeb6b45d
JC
618 return -1;
619 }
620#endif
621
f709623b 622 if (s->type == FTYPE_CD) {
1bc6b705
JC
623 raw_s->open_flags |= O_NONBLOCK;
624 }
625
eeb6b45d
JC
626 raw_parse_flags(state->flags, &raw_s->open_flags);
627
628 raw_s->fd = -1;
629
fdf263f6 630 int fcntl_flags = O_APPEND | O_NONBLOCK;
eeb6b45d
JC
631#ifdef O_NOATIME
632 fcntl_flags |= O_NOATIME;
633#endif
634
fdf263f6
AF
635#ifdef O_ASYNC
636 /* Not all operating systems have O_ASYNC, and those that don't
637 * will not let us track the state into raw_s->open_flags (typically
638 * you achieve the same effect with an ioctl, for example I_SETSIG
639 * on Solaris). But we do not use O_ASYNC, so that's fine.
640 */
641 assert((s->open_flags & O_ASYNC) == 0);
642#endif
643
eeb6b45d
JC
644 if ((raw_s->open_flags & ~fcntl_flags) == (s->open_flags & ~fcntl_flags)) {
645 /* dup the original fd */
646 /* TODO: use qemu fcntl wrapper */
647#ifdef F_DUPFD_CLOEXEC
648 raw_s->fd = fcntl(s->fd, F_DUPFD_CLOEXEC, 0);
649#else
650 raw_s->fd = dup(s->fd);
651 if (raw_s->fd != -1) {
652 qemu_set_cloexec(raw_s->fd);
653 }
654#endif
655 if (raw_s->fd >= 0) {
656 ret = fcntl_setfl(raw_s->fd, raw_s->open_flags);
657 if (ret) {
658 qemu_close(raw_s->fd);
659 raw_s->fd = -1;
660 }
661 }
662 }
663
664 /* If we cannot use fcntl, or fcntl failed, fall back to qemu_open() */
665 if (raw_s->fd == -1) {
bdd03cdf
HR
666 const char *normalized_filename = state->bs->filename;
667 ret = raw_normalize_devicepath(&normalized_filename);
668 if (ret < 0) {
669 error_setg_errno(errp, -ret, "Could not normalize device path");
670 } else {
671 assert(!(raw_s->open_flags & O_CREAT));
672 raw_s->fd = qemu_open(normalized_filename, raw_s->open_flags);
673 if (raw_s->fd == -1) {
674 error_setg_errno(errp, errno, "Could not reopen file");
675 ret = -1;
676 }
eeb6b45d
JC
677 }
678 }
df26a350
KW
679
680 /* Fail already reopen_prepare() if we can't get a working O_DIRECT
681 * alignment with the new fd. */
682 if (raw_s->fd != -1) {
683 raw_probe_alignment(state->bs, raw_s->fd, &local_err);
684 if (local_err) {
685 qemu_close(raw_s->fd);
686 raw_s->fd = -1;
687 error_propagate(errp, local_err);
688 ret = -EINVAL;
689 }
690 }
691
eeb6b45d
JC
692 return ret;
693}
694
eeb6b45d
JC
695static void raw_reopen_commit(BDRVReopenState *state)
696{
697 BDRVRawReopenState *raw_s = state->opaque;
698 BDRVRawState *s = state->bs->opaque;
699
700 s->open_flags = raw_s->open_flags;
701
702 qemu_close(s->fd);
703 s->fd = raw_s->fd;
704#ifdef CONFIG_LINUX_AIO
705 s->use_aio = raw_s->use_aio;
706#endif
707
708 g_free(state->opaque);
709 state->opaque = NULL;
710}
711
712
713static void raw_reopen_abort(BDRVReopenState *state)
714{
715 BDRVRawReopenState *raw_s = state->opaque;
716
717 /* nothing to do if NULL, we didn't get far enough */
718 if (raw_s == NULL) {
719 return;
720 }
721
722 if (raw_s->fd >= 0) {
723 qemu_close(raw_s->fd);
724 raw_s->fd = -1;
725 }
726 g_free(state->opaque);
727 state->opaque = NULL;
728}
729
3baca891 730static void raw_refresh_limits(BlockDriverState *bs, Error **errp)
c25f53b0
PB
731{
732 BDRVRawState *s = bs->opaque;
eeb6b45d 733
df26a350 734 raw_probe_alignment(bs, s->fd, errp);
4196d2f0 735 bs->bl.min_mem_alignment = s->buf_align;
459b4e66 736 bs->bl.opt_mem_alignment = MAX(s->buf_align, getpagesize());
c25f53b0 737}
83f64091 738
1a9335e4
ET
739static int check_for_dasd(int fd)
740{
741#ifdef BIODASDINFO2
742 struct dasd_information2_t info = {0};
743
744 return ioctl(fd, BIODASDINFO2, &info);
745#else
746 return -1;
747#endif
748}
749
750/**
751 * Try to get @bs's logical and physical block size.
752 * On success, store them in @bsz and return zero.
753 * On failure, return negative errno.
754 */
755static int hdev_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
756{
757 BDRVRawState *s = bs->opaque;
758 int ret;
759
760 /* If DASD, get blocksizes */
761 if (check_for_dasd(s->fd) < 0) {
762 return -ENOTSUP;
763 }
764 ret = probe_logical_blocksize(s->fd, &bsz->log);
765 if (ret < 0) {
766 return ret;
767 }
768 return probe_physical_blocksize(s->fd, &bsz->phys);
769}
770
771/**
772 * Try to get @bs's geometry: cyls, heads, sectors.
773 * On success, store them in @geo and return 0.
774 * On failure return -errno.
775 * (Allows block driver to assign default geometry values that guest sees)
776 */
777#ifdef __linux__
778static int hdev_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
779{
780 BDRVRawState *s = bs->opaque;
781 struct hd_geometry ioctl_geo = {0};
1a9335e4
ET
782
783 /* If DASD, get its geometry */
784 if (check_for_dasd(s->fd) < 0) {
785 return -ENOTSUP;
786 }
787 if (ioctl(s->fd, HDIO_GETGEO, &ioctl_geo) < 0) {
788 return -errno;
789 }
790 /* HDIO_GETGEO may return success even though geo contains zeros
791 (e.g. certain multipath setups) */
792 if (!ioctl_geo.heads || !ioctl_geo.sectors || !ioctl_geo.cylinders) {
793 return -ENOTSUP;
794 }
795 /* Do not return a geometry for partition */
796 if (ioctl_geo.start != 0) {
797 return -ENOTSUP;
798 }
799 geo->heads = ioctl_geo.heads;
800 geo->sectors = ioctl_geo.sectors;
1a9335e4
ET
801 geo->cylinders = ioctl_geo.cylinders;
802
803 return 0;
804}
805#else /* __linux__ */
806static int hdev_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
807{
808 return -ENOTSUP;
809}
810#endif
811
de81a169
PB
812static ssize_t handle_aiocb_ioctl(RawPosixAIOData *aiocb)
813{
814 int ret;
815
816 ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf);
817 if (ret == -1) {
818 return -errno;
819 }
820
b608c8dc 821 return 0;
de81a169
PB
822}
823
824static ssize_t handle_aiocb_flush(RawPosixAIOData *aiocb)
825{
826 int ret;
827
828 ret = qemu_fdatasync(aiocb->aio_fildes);
829 if (ret == -1) {
830 return -errno;
831 }
832 return 0;
833}
834
835#ifdef CONFIG_PREADV
836
837static bool preadv_present = true;
838
839static ssize_t
840qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
841{
842 return preadv(fd, iov, nr_iov, offset);
843}
844
845static ssize_t
846qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
847{
848 return pwritev(fd, iov, nr_iov, offset);
849}
850
851#else
852
853static bool preadv_present = false;
854
855static ssize_t
856qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
857{
858 return -ENOSYS;
859}
860
861static ssize_t
862qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
863{
864 return -ENOSYS;
865}
866
867#endif
868
869static ssize_t handle_aiocb_rw_vector(RawPosixAIOData *aiocb)
870{
871 ssize_t len;
872
873 do {
874 if (aiocb->aio_type & QEMU_AIO_WRITE)
875 len = qemu_pwritev(aiocb->aio_fildes,
876 aiocb->aio_iov,
877 aiocb->aio_niov,
878 aiocb->aio_offset);
879 else
880 len = qemu_preadv(aiocb->aio_fildes,
881 aiocb->aio_iov,
882 aiocb->aio_niov,
883 aiocb->aio_offset);
884 } while (len == -1 && errno == EINTR);
885
886 if (len == -1) {
887 return -errno;
888 }
889 return len;
890}
891
892/*
893 * Read/writes the data to/from a given linear buffer.
894 *
895 * Returns the number of bytes handles or -errno in case of an error. Short
896 * reads are only returned if the end of the file is reached.
897 */
898static ssize_t handle_aiocb_rw_linear(RawPosixAIOData *aiocb, char *buf)
899{
900 ssize_t offset = 0;
901 ssize_t len;
902
903 while (offset < aiocb->aio_nbytes) {
904 if (aiocb->aio_type & QEMU_AIO_WRITE) {
905 len = pwrite(aiocb->aio_fildes,
906 (const char *)buf + offset,
907 aiocb->aio_nbytes - offset,
908 aiocb->aio_offset + offset);
909 } else {
910 len = pread(aiocb->aio_fildes,
911 buf + offset,
912 aiocb->aio_nbytes - offset,
913 aiocb->aio_offset + offset);
914 }
915 if (len == -1 && errno == EINTR) {
916 continue;
61ed73cf
SH
917 } else if (len == -1 && errno == EINVAL &&
918 (aiocb->bs->open_flags & BDRV_O_NOCACHE) &&
919 !(aiocb->aio_type & QEMU_AIO_WRITE) &&
920 offset > 0) {
921 /* O_DIRECT pread() may fail with EINVAL when offset is unaligned
922 * after a short read. Assume that O_DIRECT short reads only occur
923 * at EOF. Therefore this is a short read, not an I/O error.
924 */
925 break;
de81a169
PB
926 } else if (len == -1) {
927 offset = -errno;
928 break;
929 } else if (len == 0) {
930 break;
931 }
932 offset += len;
933 }
934
935 return offset;
936}
937
938static ssize_t handle_aiocb_rw(RawPosixAIOData *aiocb)
939{
940 ssize_t nbytes;
941 char *buf;
942
943 if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) {
944 /*
945 * If there is just a single buffer, and it is properly aligned
946 * we can just use plain pread/pwrite without any problems.
947 */
948 if (aiocb->aio_niov == 1) {
949 return handle_aiocb_rw_linear(aiocb, aiocb->aio_iov->iov_base);
950 }
951 /*
952 * We have more than one iovec, and all are properly aligned.
953 *
954 * Try preadv/pwritev first and fall back to linearizing the
955 * buffer if it's not supported.
956 */
957 if (preadv_present) {
958 nbytes = handle_aiocb_rw_vector(aiocb);
959 if (nbytes == aiocb->aio_nbytes ||
960 (nbytes < 0 && nbytes != -ENOSYS)) {
961 return nbytes;
962 }
963 preadv_present = false;
964 }
965
966 /*
967 * XXX(hch): short read/write. no easy way to handle the reminder
968 * using these interfaces. For now retry using plain
969 * pread/pwrite?
970 */
971 }
972
973 /*
974 * Ok, we have to do it the hard way, copy all segments into
975 * a single aligned buffer.
976 */
50d4a858
KW
977 buf = qemu_try_blockalign(aiocb->bs, aiocb->aio_nbytes);
978 if (buf == NULL) {
979 return -ENOMEM;
980 }
981
de81a169
PB
982 if (aiocb->aio_type & QEMU_AIO_WRITE) {
983 char *p = buf;
984 int i;
985
986 for (i = 0; i < aiocb->aio_niov; ++i) {
987 memcpy(p, aiocb->aio_iov[i].iov_base, aiocb->aio_iov[i].iov_len);
988 p += aiocb->aio_iov[i].iov_len;
989 }
8eb029c2 990 assert(p - buf == aiocb->aio_nbytes);
de81a169
PB
991 }
992
993 nbytes = handle_aiocb_rw_linear(aiocb, buf);
994 if (!(aiocb->aio_type & QEMU_AIO_WRITE)) {
995 char *p = buf;
996 size_t count = aiocb->aio_nbytes, copy;
997 int i;
998
999 for (i = 0; i < aiocb->aio_niov && count; ++i) {
1000 copy = count;
1001 if (copy > aiocb->aio_iov[i].iov_len) {
1002 copy = aiocb->aio_iov[i].iov_len;
1003 }
1004 memcpy(aiocb->aio_iov[i].iov_base, p, copy);
8eb029c2 1005 assert(count >= copy);
de81a169
PB
1006 p += copy;
1007 count -= copy;
1008 }
8eb029c2 1009 assert(count == 0);
de81a169
PB
1010 }
1011 qemu_vfree(buf);
1012
1013 return nbytes;
1014}
1015
8238010b 1016#ifdef CONFIG_XFS
97a2ae34
PB
1017static int xfs_write_zeroes(BDRVRawState *s, int64_t offset, uint64_t bytes)
1018{
1019 struct xfs_flock64 fl;
bcb22555 1020 int err;
97a2ae34
PB
1021
1022 memset(&fl, 0, sizeof(fl));
1023 fl.l_whence = SEEK_SET;
1024 fl.l_start = offset;
1025 fl.l_len = bytes;
1026
1027 if (xfsctl(NULL, s->fd, XFS_IOC_ZERO_RANGE, &fl) < 0) {
bcb22555
DA
1028 err = errno;
1029 DPRINTF("cannot write zero range (%s)\n", strerror(errno));
1030 return -err;
97a2ae34
PB
1031 }
1032
1033 return 0;
1034}
1035
8238010b
PB
1036static int xfs_discard(BDRVRawState *s, int64_t offset, uint64_t bytes)
1037{
1038 struct xfs_flock64 fl;
bcb22555 1039 int err;
8238010b
PB
1040
1041 memset(&fl, 0, sizeof(fl));
1042 fl.l_whence = SEEK_SET;
1043 fl.l_start = offset;
1044 fl.l_len = bytes;
1045
1046 if (xfsctl(NULL, s->fd, XFS_IOC_UNRESVSP64, &fl) < 0) {
bcb22555
DA
1047 err = errno;
1048 DPRINTF("cannot punch hole (%s)\n", strerror(errno));
1049 return -err;
8238010b
PB
1050 }
1051
1052 return 0;
1053}
1054#endif
1055
1486df0e
DL
1056static int translate_err(int err)
1057{
1058 if (err == -ENODEV || err == -ENOSYS || err == -EOPNOTSUPP ||
1059 err == -ENOTTY) {
1060 err = -ENOTSUP;
1061 }
1062 return err;
1063}
1064
d50d8222 1065#ifdef CONFIG_FALLOCATE
0b991712
DL
1066static int do_fallocate(int fd, int mode, off_t offset, off_t len)
1067{
1068 do {
1069 if (fallocate(fd, mode, offset, len) == 0) {
1070 return 0;
1071 }
1072 } while (errno == EINTR);
1073 return translate_err(-errno);
1074}
1075#endif
1076
37cc9f7f 1077static ssize_t handle_aiocb_write_zeroes_block(RawPosixAIOData *aiocb)
97a2ae34 1078{
37cc9f7f 1079 int ret = -ENOTSUP;
97a2ae34
PB
1080 BDRVRawState *s = aiocb->bs->opaque;
1081
37cc9f7f 1082 if (!s->has_write_zeroes) {
97a2ae34
PB
1083 return -ENOTSUP;
1084 }
1085
97a2ae34 1086#ifdef BLKZEROOUT
37cc9f7f
DL
1087 do {
1088 uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
1089 if (ioctl(aiocb->aio_fildes, BLKZEROOUT, range) == 0) {
1090 return 0;
97a2ae34 1091 }
37cc9f7f
DL
1092 } while (errno == EINTR);
1093
1094 ret = translate_err(-errno);
97a2ae34 1095#endif
97a2ae34 1096
1486df0e 1097 if (ret == -ENOTSUP) {
97a2ae34 1098 s->has_write_zeroes = false;
97a2ae34
PB
1099 }
1100 return ret;
1101}
1102
37cc9f7f
DL
1103static ssize_t handle_aiocb_write_zeroes(RawPosixAIOData *aiocb)
1104{
a6dcf097 1105#if defined(CONFIG_FALLOCATE) || defined(CONFIG_XFS)
37cc9f7f 1106 BDRVRawState *s = aiocb->bs->opaque;
a6dcf097 1107#endif
37cc9f7f
DL
1108
1109 if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
1110 return handle_aiocb_write_zeroes_block(aiocb);
1111 }
1112
1113#ifdef CONFIG_XFS
1114 if (s->is_xfs) {
1115 return xfs_write_zeroes(s, aiocb->aio_offset, aiocb->aio_nbytes);
1116 }
1117#endif
1118
b953f075
DL
1119#ifdef CONFIG_FALLOCATE_ZERO_RANGE
1120 if (s->has_write_zeroes) {
1121 int ret = do_fallocate(s->fd, FALLOC_FL_ZERO_RANGE,
1122 aiocb->aio_offset, aiocb->aio_nbytes);
1123 if (ret == 0 || ret != -ENOTSUP) {
1124 return ret;
1125 }
1126 s->has_write_zeroes = false;
1127 }
1128#endif
1129
1cdc3239
DL
1130#ifdef CONFIG_FALLOCATE_PUNCH_HOLE
1131 if (s->has_discard && s->has_fallocate) {
1132 int ret = do_fallocate(s->fd,
1133 FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
1134 aiocb->aio_offset, aiocb->aio_nbytes);
1135 if (ret == 0) {
1136 ret = do_fallocate(s->fd, 0, aiocb->aio_offset, aiocb->aio_nbytes);
1137 if (ret == 0 || ret != -ENOTSUP) {
1138 return ret;
1139 }
1140 s->has_fallocate = false;
1141 } else if (ret != -ENOTSUP) {
1142 return ret;
1143 } else {
1144 s->has_discard = false;
1145 }
1146 }
1147#endif
1148
d50d8222
DL
1149#ifdef CONFIG_FALLOCATE
1150 if (s->has_fallocate && aiocb->aio_offset >= bdrv_getlength(aiocb->bs)) {
1151 int ret = do_fallocate(s->fd, 0, aiocb->aio_offset, aiocb->aio_nbytes);
1152 if (ret == 0 || ret != -ENOTSUP) {
1153 return ret;
1154 }
1155 s->has_fallocate = false;
1156 }
1157#endif
1158
37cc9f7f
DL
1159 return -ENOTSUP;
1160}
1161
8238010b
PB
1162static ssize_t handle_aiocb_discard(RawPosixAIOData *aiocb)
1163{
1164 int ret = -EOPNOTSUPP;
1165 BDRVRawState *s = aiocb->bs->opaque;
1166
7ce21016
PB
1167 if (!s->has_discard) {
1168 return -ENOTSUP;
8238010b
PB
1169 }
1170
1171 if (aiocb->aio_type & QEMU_AIO_BLKDEV) {
1172#ifdef BLKDISCARD
1173 do {
1174 uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes };
1175 if (ioctl(aiocb->aio_fildes, BLKDISCARD, range) == 0) {
1176 return 0;
1177 }
1178 } while (errno == EINTR);
1179
1180 ret = -errno;
1181#endif
1182 } else {
1183#ifdef CONFIG_XFS
1184 if (s->is_xfs) {
1185 return xfs_discard(s, aiocb->aio_offset, aiocb->aio_nbytes);
1186 }
1187#endif
1188
1189#ifdef CONFIG_FALLOCATE_PUNCH_HOLE
0b991712
DL
1190 ret = do_fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
1191 aiocb->aio_offset, aiocb->aio_nbytes);
8238010b
PB
1192#endif
1193 }
1194
1486df0e
DL
1195 ret = translate_err(ret);
1196 if (ret == -ENOTSUP) {
7ce21016 1197 s->has_discard = false;
8238010b
PB
1198 }
1199 return ret;
1200}
1201
de81a169
PB
1202static int aio_worker(void *arg)
1203{
1204 RawPosixAIOData *aiocb = arg;
1205 ssize_t ret = 0;
1206
1207 switch (aiocb->aio_type & QEMU_AIO_TYPE_MASK) {
1208 case QEMU_AIO_READ:
1209 ret = handle_aiocb_rw(aiocb);
c0191e76 1210 if (ret >= 0 && ret < aiocb->aio_nbytes) {
de81a169
PB
1211 iov_memset(aiocb->aio_iov, aiocb->aio_niov, ret,
1212 0, aiocb->aio_nbytes - ret);
1213
1214 ret = aiocb->aio_nbytes;
1215 }
1216 if (ret == aiocb->aio_nbytes) {
1217 ret = 0;
1218 } else if (ret >= 0 && ret < aiocb->aio_nbytes) {
1219 ret = -EINVAL;
1220 }
1221 break;
1222 case QEMU_AIO_WRITE:
1223 ret = handle_aiocb_rw(aiocb);
1224 if (ret == aiocb->aio_nbytes) {
1225 ret = 0;
1226 } else if (ret >= 0 && ret < aiocb->aio_nbytes) {
1227 ret = -EINVAL;
1228 }
1229 break;
1230 case QEMU_AIO_FLUSH:
1231 ret = handle_aiocb_flush(aiocb);
1232 break;
1233 case QEMU_AIO_IOCTL:
1234 ret = handle_aiocb_ioctl(aiocb);
1235 break;
8238010b
PB
1236 case QEMU_AIO_DISCARD:
1237 ret = handle_aiocb_discard(aiocb);
1238 break;
97a2ae34
PB
1239 case QEMU_AIO_WRITE_ZEROES:
1240 ret = handle_aiocb_write_zeroes(aiocb);
1241 break;
de81a169
PB
1242 default:
1243 fprintf(stderr, "invalid aio request (0x%x)\n", aiocb->aio_type);
1244 ret = -EINVAL;
1245 break;
1246 }
1247
c84b3192 1248 g_free(aiocb);
de81a169
PB
1249 return ret;
1250}
1251
260a82e5
PB
1252static int paio_submit_co(BlockDriverState *bs, int fd,
1253 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1254 int type)
1255{
c84b3192 1256 RawPosixAIOData *acb = g_new(RawPosixAIOData, 1);
260a82e5
PB
1257 ThreadPool *pool;
1258
1259 acb->bs = bs;
1260 acb->aio_type = type;
1261 acb->aio_fildes = fd;
1262
8eb029c2
KW
1263 acb->aio_nbytes = nb_sectors * BDRV_SECTOR_SIZE;
1264 acb->aio_offset = sector_num * BDRV_SECTOR_SIZE;
1265
260a82e5
PB
1266 if (qiov) {
1267 acb->aio_iov = qiov->iov;
1268 acb->aio_niov = qiov->niov;
8eb029c2 1269 assert(qiov->size == acb->aio_nbytes);
260a82e5 1270 }
260a82e5
PB
1271
1272 trace_paio_submit_co(sector_num, nb_sectors, type);
1273 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
1274 return thread_pool_submit_co(pool, aio_worker, acb);
1275}
1276
7c84b1b8 1277static BlockAIOCB *paio_submit(BlockDriverState *bs, int fd,
de81a169 1278 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
097310b5 1279 BlockCompletionFunc *cb, void *opaque, int type)
de81a169 1280{
c84b3192 1281 RawPosixAIOData *acb = g_new(RawPosixAIOData, 1);
c4d9d196 1282 ThreadPool *pool;
de81a169
PB
1283
1284 acb->bs = bs;
1285 acb->aio_type = type;
1286 acb->aio_fildes = fd;
1287
8eb029c2
KW
1288 acb->aio_nbytes = nb_sectors * BDRV_SECTOR_SIZE;
1289 acb->aio_offset = sector_num * BDRV_SECTOR_SIZE;
1290
de81a169
PB
1291 if (qiov) {
1292 acb->aio_iov = qiov->iov;
1293 acb->aio_niov = qiov->niov;
8eb029c2 1294 assert(qiov->size == acb->aio_nbytes);
de81a169 1295 }
de81a169
PB
1296
1297 trace_paio_submit(acb, opaque, sector_num, nb_sectors, type);
c4d9d196
SH
1298 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
1299 return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
de81a169
PB
1300}
1301
7c84b1b8 1302static BlockAIOCB *raw_aio_submit(BlockDriverState *bs,
9ef91a67 1303 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
097310b5 1304 BlockCompletionFunc *cb, void *opaque, int type)
83f64091 1305{
ce1a14dc 1306 BDRVRawState *s = bs->opaque;
ce1a14dc 1307
19cb3738
FB
1308 if (fd_open(bs) < 0)
1309 return NULL;
1310
f141eafe 1311 /*
3cad8307
RPM
1312 * Check if the underlying device requires requests to be aligned,
1313 * and if the request we are trying to submit is aligned or not.
1314 * If this is the case tell the low-level driver that it needs
1315 * to copy the buffer.
f141eafe 1316 */
3cad8307 1317 if (s->needs_alignment) {
c53b1c51 1318 if (!bdrv_qiov_is_aligned(bs, qiov)) {
5c6c3a6c 1319 type |= QEMU_AIO_MISALIGNED;
e44bd6fc 1320#ifdef CONFIG_LINUX_AIO
5c6c3a6c
CH
1321 } else if (s->use_aio) {
1322 return laio_submit(bs, s->aio_ctx, s->fd, sector_num, qiov,
e44bd6fc
SW
1323 nb_sectors, cb, opaque, type);
1324#endif
5c6c3a6c 1325 }
9ef91a67 1326 }
f141eafe 1327
1e5b9d2f 1328 return paio_submit(bs, s->fd, sector_num, qiov, nb_sectors,
9ef91a67 1329 cb, opaque, type);
83f64091
FB
1330}
1331
1b3abdcc
ML
1332static void raw_aio_plug(BlockDriverState *bs)
1333{
1334#ifdef CONFIG_LINUX_AIO
1335 BDRVRawState *s = bs->opaque;
1336 if (s->use_aio) {
1337 laio_io_plug(bs, s->aio_ctx);
1338 }
1339#endif
1340}
1341
1342static void raw_aio_unplug(BlockDriverState *bs)
1343{
1344#ifdef CONFIG_LINUX_AIO
1345 BDRVRawState *s = bs->opaque;
1346 if (s->use_aio) {
1347 laio_io_unplug(bs, s->aio_ctx, true);
1348 }
1349#endif
1350}
1351
1352static void raw_aio_flush_io_queue(BlockDriverState *bs)
1353{
1354#ifdef CONFIG_LINUX_AIO
1355 BDRVRawState *s = bs->opaque;
1356 if (s->use_aio) {
1357 laio_io_unplug(bs, s->aio_ctx, false);
1358 }
1359#endif
1360}
1361
7c84b1b8 1362static BlockAIOCB *raw_aio_readv(BlockDriverState *bs,
f141eafe 1363 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
097310b5 1364 BlockCompletionFunc *cb, void *opaque)
83f64091 1365{
9ef91a67
CH
1366 return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
1367 cb, opaque, QEMU_AIO_READ);
83f64091
FB
1368}
1369
7c84b1b8 1370static BlockAIOCB *raw_aio_writev(BlockDriverState *bs,
f141eafe 1371 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
097310b5 1372 BlockCompletionFunc *cb, void *opaque)
83f64091 1373{
9ef91a67
CH
1374 return raw_aio_submit(bs, sector_num, qiov, nb_sectors,
1375 cb, opaque, QEMU_AIO_WRITE);
83f64091 1376}
53538725 1377
7c84b1b8 1378static BlockAIOCB *raw_aio_flush(BlockDriverState *bs,
097310b5 1379 BlockCompletionFunc *cb, void *opaque)
b2e12bc6
CH
1380{
1381 BDRVRawState *s = bs->opaque;
1382
1383 if (fd_open(bs) < 0)
1384 return NULL;
1385
1e5b9d2f 1386 return paio_submit(bs, s->fd, 0, NULL, 0, cb, opaque, QEMU_AIO_FLUSH);
b2e12bc6
CH
1387}
1388
83f64091
FB
1389static void raw_close(BlockDriverState *bs)
1390{
1391 BDRVRawState *s = bs->opaque;
c2f3426c
SH
1392
1393 raw_detach_aio_context(bs);
1394
abd269b7
SH
1395#ifdef CONFIG_LINUX_AIO
1396 if (s->use_aio) {
1397 laio_cleanup(s->aio_ctx);
1398 }
1399#endif
19cb3738 1400 if (s->fd >= 0) {
2e1e79da 1401 qemu_close(s->fd);
19cb3738
FB
1402 s->fd = -1;
1403 }
83f64091
FB
1404}
1405
1406static int raw_truncate(BlockDriverState *bs, int64_t offset)
1407{
1408 BDRVRawState *s = bs->opaque;
55b949c8
CH
1409 struct stat st;
1410
1411 if (fstat(s->fd, &st)) {
83f64091 1412 return -errno;
55b949c8
CH
1413 }
1414
1415 if (S_ISREG(st.st_mode)) {
1416 if (ftruncate(s->fd, offset) < 0) {
1417 return -errno;
1418 }
1419 } else if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1420 if (offset > raw_getlength(bs)) {
1421 return -EINVAL;
1422 }
1423 } else {
1424 return -ENOTSUP;
1425 }
1426
83f64091
FB
1427 return 0;
1428}
1429
128ab2ff
BS
1430#ifdef __OpenBSD__
1431static int64_t raw_getlength(BlockDriverState *bs)
1432{
1433 BDRVRawState *s = bs->opaque;
1434 int fd = s->fd;
1435 struct stat st;
1436
1437 if (fstat(fd, &st))
aa729704 1438 return -errno;
128ab2ff
BS
1439 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1440 struct disklabel dl;
1441
1442 if (ioctl(fd, DIOCGDINFO, &dl))
aa729704 1443 return -errno;
128ab2ff
BS
1444 return (uint64_t)dl.d_secsize *
1445 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
1446 } else
1447 return st.st_size;
1448}
d1f6fd8d
CE
1449#elif defined(__NetBSD__)
1450static int64_t raw_getlength(BlockDriverState *bs)
1451{
1452 BDRVRawState *s = bs->opaque;
1453 int fd = s->fd;
1454 struct stat st;
1455
1456 if (fstat(fd, &st))
aa729704 1457 return -errno;
d1f6fd8d
CE
1458 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
1459 struct dkwedge_info dkw;
1460
1461 if (ioctl(fd, DIOCGWEDGEINFO, &dkw) != -1) {
1462 return dkw.dkw_size * 512;
1463 } else {
1464 struct disklabel dl;
1465
1466 if (ioctl(fd, DIOCGDINFO, &dl))
aa729704 1467 return -errno;
d1f6fd8d
CE
1468 return (uint64_t)dl.d_secsize *
1469 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
1470 }
1471 } else
1472 return st.st_size;
1473}
50779cc2
CH
1474#elif defined(__sun__)
1475static int64_t raw_getlength(BlockDriverState *bs)
1476{
1477 BDRVRawState *s = bs->opaque;
1478 struct dk_minfo minfo;
1479 int ret;
aa729704 1480 int64_t size;
50779cc2
CH
1481
1482 ret = fd_open(bs);
1483 if (ret < 0) {
1484 return ret;
1485 }
1486
1487 /*
1488 * Use the DKIOCGMEDIAINFO ioctl to read the size.
1489 */
1490 ret = ioctl(s->fd, DKIOCGMEDIAINFO, &minfo);
1491 if (ret != -1) {
1492 return minfo.dki_lbsize * minfo.dki_capacity;
1493 }
1494
1495 /*
1496 * There are reports that lseek on some devices fails, but
1497 * irc discussion said that contingency on contingency was overkill.
1498 */
aa729704
MA
1499 size = lseek(s->fd, 0, SEEK_END);
1500 if (size < 0) {
1501 return -errno;
1502 }
1503 return size;
50779cc2
CH
1504}
1505#elif defined(CONFIG_BSD)
1506static int64_t raw_getlength(BlockDriverState *bs)
83f64091
FB
1507{
1508 BDRVRawState *s = bs->opaque;
1509 int fd = s->fd;
1510 int64_t size;
83f64091 1511 struct stat sb;
a167ba50 1512#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
9f23011a 1513 int reopened = 0;
83f64091 1514#endif
19cb3738
FB
1515 int ret;
1516
1517 ret = fd_open(bs);
1518 if (ret < 0)
1519 return ret;
83f64091 1520
a167ba50 1521#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
9f23011a
BS
1522again:
1523#endif
83f64091
FB
1524 if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
1525#ifdef DIOCGMEDIASIZE
1526 if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
c5e97233
BS
1527#elif defined(DIOCGPART)
1528 {
1529 struct partinfo pi;
1530 if (ioctl(fd, DIOCGPART, &pi) == 0)
1531 size = pi.media_size;
1532 else
1533 size = 0;
1534 }
1535 if (size == 0)
83f64091 1536#endif
83affaa6 1537#if defined(__APPLE__) && defined(__MACH__)
728dacbd
JA
1538 {
1539 uint64_t sectors = 0;
1540 uint32_t sector_size = 0;
1541
1542 if (ioctl(fd, DKIOCGETBLOCKCOUNT, &sectors) == 0
1543 && ioctl(fd, DKIOCGETBLOCKSIZE, &sector_size) == 0) {
1544 size = sectors * sector_size;
1545 } else {
1546 size = lseek(fd, 0LL, SEEK_END);
1547 if (size < 0) {
1548 return -errno;
1549 }
1550 }
1551 }
83f64091
FB
1552#else
1553 size = lseek(fd, 0LL, SEEK_END);
aa729704
MA
1554 if (size < 0) {
1555 return -errno;
1556 }
9f23011a 1557#endif
a167ba50 1558#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
9f23011a
BS
1559 switch(s->type) {
1560 case FTYPE_CD:
1561 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
1562 if (size == 2048LL * (unsigned)-1)
1563 size = 0;
1564 /* XXX no disc? maybe we need to reopen... */
f3a5d3f8 1565 if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
9f23011a
BS
1566 reopened = 1;
1567 goto again;
1568 }
1569 }
83f64091 1570#endif
50779cc2 1571 } else {
83f64091 1572 size = lseek(fd, 0, SEEK_END);
aa729704
MA
1573 if (size < 0) {
1574 return -errno;
1575 }
83f64091 1576 }
83f64091
FB
1577 return size;
1578}
50779cc2
CH
1579#else
1580static int64_t raw_getlength(BlockDriverState *bs)
1581{
1582 BDRVRawState *s = bs->opaque;
1583 int ret;
aa729704 1584 int64_t size;
50779cc2
CH
1585
1586 ret = fd_open(bs);
1587 if (ret < 0) {
1588 return ret;
1589 }
1590
aa729704
MA
1591 size = lseek(s->fd, 0, SEEK_END);
1592 if (size < 0) {
1593 return -errno;
1594 }
1595 return size;
50779cc2 1596}
128ab2ff 1597#endif
83f64091 1598
4a1d5e1f
FZ
1599static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
1600{
1601 struct stat st;
1602 BDRVRawState *s = bs->opaque;
1603
1604 if (fstat(s->fd, &st) < 0) {
1605 return -errno;
1606 }
1607 return (int64_t)st.st_blocks * 512;
1608}
1609
6f482f74 1610static int raw_create(const char *filename, QemuOpts *opts, Error **errp)
83f64091
FB
1611{
1612 int fd;
1e37d059 1613 int result = 0;
0e7e1989 1614 int64_t total_size = 0;
4ab15590 1615 bool nocow = false;
06247428
HT
1616 PreallocMode prealloc;
1617 char *buf = NULL;
1618 Error *local_err = NULL;
83f64091 1619
464d9f64
HR
1620 strstart(filename, "file:", &filename);
1621
0e7e1989 1622 /* Read out options */
180e9526
HT
1623 total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
1624 BDRV_SECTOR_SIZE);
4ab15590 1625 nocow = qemu_opt_get_bool(opts, BLOCK_OPT_NOCOW, false);
06247428
HT
1626 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
1627 prealloc = qapi_enum_parse(PreallocMode_lookup, buf,
7fb1cf16 1628 PREALLOC_MODE__MAX, PREALLOC_MODE_OFF,
06247428
HT
1629 &local_err);
1630 g_free(buf);
1631 if (local_err) {
1632 error_propagate(errp, local_err);
1633 result = -EINVAL;
1634 goto out;
1635 }
83f64091 1636
73ba05d9 1637 fd = qemu_open(filename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
6165f4d8 1638 0644);
1e37d059
SW
1639 if (fd < 0) {
1640 result = -errno;
e428e439 1641 error_setg_errno(errp, -result, "Could not create file");
06247428
HT
1642 goto out;
1643 }
1644
1645 if (nocow) {
4ab15590 1646#ifdef __linux__
06247428
HT
1647 /* Set NOCOW flag to solve performance issue on fs like btrfs.
1648 * This is an optimisation. The FS_IOC_SETFLAGS ioctl return value
1649 * will be ignored since any failure of this operation should not
1650 * block the left work.
1651 */
1652 int attr;
1653 if (ioctl(fd, FS_IOC_GETFLAGS, &attr) == 0) {
1654 attr |= FS_NOCOW_FL;
1655 ioctl(fd, FS_IOC_SETFLAGS, &attr);
4ab15590 1656 }
06247428
HT
1657#endif
1658 }
1659
1660 if (ftruncate(fd, total_size) != 0) {
1661 result = -errno;
1662 error_setg_errno(errp, -result, "Could not resize file");
1663 goto out_close;
1664 }
4ab15590 1665
ed911435
KW
1666 switch (prealloc) {
1667#ifdef CONFIG_POSIX_FALLOCATE
1668 case PREALLOC_MODE_FALLOC:
06247428
HT
1669 /* posix_fallocate() doesn't set errno. */
1670 result = -posix_fallocate(fd, 0, total_size);
1671 if (result != 0) {
1672 error_setg_errno(errp, -result,
1673 "Could not preallocate data for the new file");
1e37d059 1674 }
ed911435
KW
1675 break;
1676#endif
1677 case PREALLOC_MODE_FULL:
1678 {
06247428 1679 int64_t num = 0, left = total_size;
ed911435 1680 buf = g_malloc0(65536);
06247428
HT
1681
1682 while (left > 0) {
1683 num = MIN(left, 65536);
1684 result = write(fd, buf, num);
1685 if (result < 0) {
1686 result = -errno;
1687 error_setg_errno(errp, -result,
1688 "Could not write to the new file");
1689 break;
1690 }
39411cf3 1691 left -= result;
1e37d059 1692 }
731de380 1693 if (result >= 0) {
098ffa66
HR
1694 result = fsync(fd);
1695 if (result < 0) {
1696 result = -errno;
1697 error_setg_errno(errp, -result,
1698 "Could not flush new file to disk");
1699 }
731de380 1700 }
06247428 1701 g_free(buf);
ed911435
KW
1702 break;
1703 }
1704 case PREALLOC_MODE_OFF:
1705 break;
1706 default:
06247428
HT
1707 result = -EINVAL;
1708 error_setg(errp, "Unsupported preallocation mode: %s",
1709 PreallocMode_lookup[prealloc]);
ed911435 1710 break;
1e37d059 1711 }
06247428
HT
1712
1713out_close:
1714 if (qemu_close(fd) != 0 && result == 0) {
1715 result = -errno;
1716 error_setg_errno(errp, -result, "Could not close the new file");
1717 }
1718out:
1e37d059 1719 return result;
83f64091
FB
1720}
1721
d1f06fe6
MA
1722/*
1723 * Find allocation range in @bs around offset @start.
1724 * May change underlying file descriptor's file offset.
1725 * If @start is not in a hole, store @start in @data, and the
1726 * beginning of the next hole in @hole, and return 0.
1727 * If @start is in a non-trailing hole, store @start in @hole and the
1728 * beginning of the next non-hole in @data, and return 0.
1729 * If @start is in a trailing hole or beyond EOF, return -ENXIO.
1730 * If we can't find out, return a negative errno other than -ENXIO.
1731 */
1732static int find_allocation(BlockDriverState *bs, off_t start,
1733 off_t *data, off_t *hole)
4f11aa8a
HR
1734{
1735#if defined SEEK_HOLE && defined SEEK_DATA
94282e71 1736 BDRVRawState *s = bs->opaque;
d1f06fe6 1737 off_t offs;
94282e71 1738
d1f06fe6
MA
1739 /*
1740 * SEEK_DATA cases:
1741 * D1. offs == start: start is in data
1742 * D2. offs > start: start is in a hole, next data at offs
1743 * D3. offs < 0, errno = ENXIO: either start is in a trailing hole
1744 * or start is beyond EOF
1745 * If the latter happens, the file has been truncated behind
1746 * our back since we opened it. All bets are off then.
1747 * Treating like a trailing hole is simplest.
1748 * D4. offs < 0, errno != ENXIO: we learned nothing
1749 */
1750 offs = lseek(s->fd, start, SEEK_DATA);
1751 if (offs < 0) {
1752 return -errno; /* D3 or D4 */
1753 }
1754 assert(offs >= start);
1755
1756 if (offs > start) {
1757 /* D2: in hole, next data at offs */
1758 *hole = start;
1759 *data = offs;
1760 return 0;
5500316d
PB
1761 }
1762
d1f06fe6
MA
1763 /* D1: in data, end not yet known */
1764
1765 /*
1766 * SEEK_HOLE cases:
1767 * H1. offs == start: start is in a hole
1768 * If this happens here, a hole has been dug behind our back
1769 * since the previous lseek().
1770 * H2. offs > start: either start is in data, next hole at offs,
1771 * or start is in trailing hole, EOF at offs
1772 * Linux treats trailing holes like any other hole: offs ==
1773 * start. Solaris seeks to EOF instead: offs > start (blech).
1774 * If that happens here, a hole has been dug behind our back
1775 * since the previous lseek().
1776 * H3. offs < 0, errno = ENXIO: start is beyond EOF
1777 * If this happens, the file has been truncated behind our
1778 * back since we opened it. Treat it like a trailing hole.
1779 * H4. offs < 0, errno != ENXIO: we learned nothing
1780 * Pretend we know nothing at all, i.e. "forget" about D1.
1781 */
1782 offs = lseek(s->fd, start, SEEK_HOLE);
1783 if (offs < 0) {
1784 return -errno; /* D1 and (H3 or H4) */
1785 }
1786 assert(offs >= start);
1787
1788 if (offs > start) {
1789 /*
1790 * D1 and H2: either in data, next hole at offs, or it was in
1791 * data but is now in a trailing hole. In the latter case,
1792 * all bets are off. Treating it as if it there was data all
1793 * the way to EOF is safe, so simply do that.
1794 */
4f11aa8a 1795 *data = start;
d1f06fe6
MA
1796 *hole = offs;
1797 return 0;
5500316d 1798 }
4f11aa8a 1799
d1f06fe6
MA
1800 /* D1 and H1 */
1801 return -EBUSY;
5500316d 1802#else
4f11aa8a 1803 return -ENOTSUP;
5500316d 1804#endif
4f11aa8a
HR
1805}
1806
1807/*
be2ebc6d 1808 * Returns the allocation status of the specified sectors.
4f11aa8a
HR
1809 *
1810 * If 'sector_num' is beyond the end of the disk image the return value is 0
1811 * and 'pnum' is set to 0.
1812 *
1813 * 'pnum' is set to the number of sectors (including and immediately following
1814 * the specified sector) that are known to be in the same
1815 * allocated/unallocated state.
1816 *
1817 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
1818 * beyond the end of the disk image it will be clamped.
1819 */
1820static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs,
1821 int64_t sector_num,
67a0fd2a
FZ
1822 int nb_sectors, int *pnum,
1823 BlockDriverState **file)
4f11aa8a
HR
1824{
1825 off_t start, data = 0, hole = 0;
e6d7ec32 1826 int64_t total_size;
d7f62751 1827 int ret;
4f11aa8a
HR
1828
1829 ret = fd_open(bs);
1830 if (ret < 0) {
1831 return ret;
1832 }
1833
1834 start = sector_num * BDRV_SECTOR_SIZE;
e6d7ec32
HR
1835 total_size = bdrv_getlength(bs);
1836 if (total_size < 0) {
1837 return total_size;
1838 } else if (start >= total_size) {
1839 *pnum = 0;
1840 return 0;
1841 } else if (start + nb_sectors * BDRV_SECTOR_SIZE > total_size) {
1842 nb_sectors = DIV_ROUND_UP(total_size - start, BDRV_SECTOR_SIZE);
1843 }
4f11aa8a 1844
d1f06fe6
MA
1845 ret = find_allocation(bs, start, &data, &hole);
1846 if (ret == -ENXIO) {
1847 /* Trailing hole */
1848 *pnum = nb_sectors;
1849 ret = BDRV_BLOCK_ZERO;
1850 } else if (ret < 0) {
1851 /* No info available, so pretend there are no holes */
1852 *pnum = nb_sectors;
1853 ret = BDRV_BLOCK_DATA;
1854 } else if (data == start) {
f4a769ab
KW
1855 /* On a data extent, compute sectors to the end of the extent,
1856 * possibly including a partial sector at EOF. */
1857 *pnum = MIN(nb_sectors, DIV_ROUND_UP(hole - start, BDRV_SECTOR_SIZE));
d1f06fe6 1858 ret = BDRV_BLOCK_DATA;
5500316d
PB
1859 } else {
1860 /* On a hole, compute sectors to the beginning of the next extent. */
d1f06fe6 1861 assert(hole == start);
5500316d 1862 *pnum = MIN(nb_sectors, (data - start) / BDRV_SECTOR_SIZE);
d1f06fe6 1863 ret = BDRV_BLOCK_ZERO;
5500316d 1864 }
02650acb 1865 *file = bs;
d1f06fe6 1866 return ret | BDRV_BLOCK_OFFSET_VALID | start;
5500316d
PB
1867}
1868
7c84b1b8 1869static coroutine_fn BlockAIOCB *raw_aio_discard(BlockDriverState *bs,
8238010b 1870 int64_t sector_num, int nb_sectors,
097310b5 1871 BlockCompletionFunc *cb, void *opaque)
dce512de 1872{
dce512de
CH
1873 BDRVRawState *s = bs->opaque;
1874
8238010b
PB
1875 return paio_submit(bs, s->fd, sector_num, NULL, nb_sectors,
1876 cb, opaque, QEMU_AIO_DISCARD);
dce512de 1877}
0e7e1989 1878
260a82e5
PB
1879static int coroutine_fn raw_co_write_zeroes(
1880 BlockDriverState *bs, int64_t sector_num,
1881 int nb_sectors, BdrvRequestFlags flags)
1882{
1883 BDRVRawState *s = bs->opaque;
1884
1885 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
97a2ae34
PB
1886 return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
1887 QEMU_AIO_WRITE_ZEROES);
1888 } else if (s->discard_zeroes) {
1889 return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
1890 QEMU_AIO_DISCARD);
260a82e5 1891 }
97a2ae34 1892 return -ENOTSUP;
260a82e5
PB
1893}
1894
1895static int raw_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1896{
1897 BDRVRawState *s = bs->opaque;
1898
1899 bdi->unallocated_blocks_are_zero = s->discard_zeroes;
1900 bdi->can_write_zeroes_with_unmap = s->discard_zeroes;
1901 return 0;
1902}
1903
6f482f74
CL
1904static QemuOptsList raw_create_opts = {
1905 .name = "raw-create-opts",
1906 .head = QTAILQ_HEAD_INITIALIZER(raw_create_opts.head),
1907 .desc = {
1908 {
1909 .name = BLOCK_OPT_SIZE,
1910 .type = QEMU_OPT_SIZE,
1911 .help = "Virtual disk size"
1912 },
4ab15590
CL
1913 {
1914 .name = BLOCK_OPT_NOCOW,
1915 .type = QEMU_OPT_BOOL,
1916 .help = "Turn off copy-on-write (valid only on btrfs)"
1917 },
06247428
HT
1918 {
1919 .name = BLOCK_OPT_PREALLOC,
1920 .type = QEMU_OPT_STRING,
1921 .help = "Preallocation mode (allowed values: off, falloc, full)"
1922 },
6f482f74
CL
1923 { /* end of list */ }
1924 }
0e7e1989
KW
1925};
1926
5f535a94 1927BlockDriver bdrv_file = {
84a12e66
CH
1928 .format_name = "file",
1929 .protocol_name = "file",
856ae5c3 1930 .instance_size = sizeof(BDRVRawState),
030be321 1931 .bdrv_needs_filename = true,
856ae5c3 1932 .bdrv_probe = NULL, /* no probe for protocols */
078896a9 1933 .bdrv_parse_filename = raw_parse_filename,
66f82cee 1934 .bdrv_file_open = raw_open,
eeb6b45d
JC
1935 .bdrv_reopen_prepare = raw_reopen_prepare,
1936 .bdrv_reopen_commit = raw_reopen_commit,
1937 .bdrv_reopen_abort = raw_reopen_abort,
856ae5c3 1938 .bdrv_close = raw_close,
c282e1fd 1939 .bdrv_create = raw_create,
3ac21627 1940 .bdrv_has_zero_init = bdrv_has_zero_init_1,
b6b8a333 1941 .bdrv_co_get_block_status = raw_co_get_block_status,
260a82e5 1942 .bdrv_co_write_zeroes = raw_co_write_zeroes,
3b46e624 1943
f141eafe
AL
1944 .bdrv_aio_readv = raw_aio_readv,
1945 .bdrv_aio_writev = raw_aio_writev,
b2e12bc6 1946 .bdrv_aio_flush = raw_aio_flush,
8238010b 1947 .bdrv_aio_discard = raw_aio_discard,
c25f53b0 1948 .bdrv_refresh_limits = raw_refresh_limits,
1b3abdcc
ML
1949 .bdrv_io_plug = raw_aio_plug,
1950 .bdrv_io_unplug = raw_aio_unplug,
1951 .bdrv_flush_io_queue = raw_aio_flush_io_queue,
3c529d93 1952
83f64091
FB
1953 .bdrv_truncate = raw_truncate,
1954 .bdrv_getlength = raw_getlength,
260a82e5 1955 .bdrv_get_info = raw_get_info,
4a1d5e1f
FZ
1956 .bdrv_get_allocated_file_size
1957 = raw_get_allocated_file_size,
0e7e1989 1958
c2f3426c
SH
1959 .bdrv_detach_aio_context = raw_detach_aio_context,
1960 .bdrv_attach_aio_context = raw_attach_aio_context,
1961
6f482f74 1962 .create_opts = &raw_create_opts,
83f64091
FB
1963};
1964
19cb3738
FB
1965/***********************************************/
1966/* host device */
1967
83affaa6 1968#if defined(__APPLE__) && defined(__MACH__)
19cb3738 1969static kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator );
98caa5bc
JA
1970static kern_return_t GetBSDPath(io_iterator_t mediaIterator, char *bsdPath,
1971 CFIndex maxPathSize, int flags);
19cb3738
FB
1972kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator )
1973{
5fafdf24 1974 kern_return_t kernResult;
19cb3738
FB
1975 mach_port_t masterPort;
1976 CFMutableDictionaryRef classesToMatch;
1977
1978 kernResult = IOMasterPort( MACH_PORT_NULL, &masterPort );
1979 if ( KERN_SUCCESS != kernResult ) {
1980 printf( "IOMasterPort returned %d\n", kernResult );
1981 }
3b46e624 1982
5fafdf24 1983 classesToMatch = IOServiceMatching( kIOCDMediaClass );
19cb3738
FB
1984 if ( classesToMatch == NULL ) {
1985 printf( "IOServiceMatching returned a NULL dictionary.\n" );
1986 } else {
1987 CFDictionarySetValue( classesToMatch, CFSTR( kIOMediaEjectableKey ), kCFBooleanTrue );
1988 }
1989 kernResult = IOServiceGetMatchingServices( masterPort, classesToMatch, mediaIterator );
1990 if ( KERN_SUCCESS != kernResult )
1991 {
1992 printf( "IOServiceGetMatchingServices returned %d\n", kernResult );
1993 }
3b46e624 1994
19cb3738
FB
1995 return kernResult;
1996}
1997
98caa5bc
JA
1998kern_return_t GetBSDPath(io_iterator_t mediaIterator, char *bsdPath,
1999 CFIndex maxPathSize, int flags)
19cb3738
FB
2000{
2001 io_object_t nextMedia;
2002 kern_return_t kernResult = KERN_FAILURE;
2003 *bsdPath = '\0';
2004 nextMedia = IOIteratorNext( mediaIterator );
2005 if ( nextMedia )
2006 {
2007 CFTypeRef bsdPathAsCFString;
2008 bsdPathAsCFString = IORegistryEntryCreateCFProperty( nextMedia, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 );
2009 if ( bsdPathAsCFString ) {
2010 size_t devPathLength;
2011 strcpy( bsdPath, _PATH_DEV );
98caa5bc
JA
2012 if (flags & BDRV_O_NOCACHE) {
2013 strcat(bsdPath, "r");
2014 }
19cb3738
FB
2015 devPathLength = strlen( bsdPath );
2016 if ( CFStringGetCString( bsdPathAsCFString, bsdPath + devPathLength, maxPathSize - devPathLength, kCFStringEncodingASCII ) ) {
2017 kernResult = KERN_SUCCESS;
2018 }
2019 CFRelease( bsdPathAsCFString );
2020 }
2021 IOObjectRelease( nextMedia );
2022 }
3b46e624 2023
19cb3738
FB
2024 return kernResult;
2025}
2026
2027#endif
2028
508c7cb3
CH
2029static int hdev_probe_device(const char *filename)
2030{
2031 struct stat st;
2032
2033 /* allow a dedicated CD-ROM driver to match with a higher priority */
2034 if (strstart(filename, "/dev/cdrom", NULL))
2035 return 50;
2036
2037 if (stat(filename, &st) >= 0 &&
2038 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
2039 return 100;
2040 }
2041
2042 return 0;
2043}
2044
da888d37
SH
2045static int check_hdev_writable(BDRVRawState *s)
2046{
2047#if defined(BLKROGET)
2048 /* Linux block devices can be configured "read-only" using blockdev(8).
2049 * This is independent of device node permissions and therefore open(2)
2050 * with O_RDWR succeeds. Actual writes fail with EPERM.
2051 *
2052 * bdrv_open() is supposed to fail if the disk is read-only. Explicitly
2053 * check for read-only block devices so that Linux block devices behave
2054 * properly.
2055 */
2056 struct stat st;
2057 int readonly = 0;
2058
2059 if (fstat(s->fd, &st)) {
2060 return -errno;
2061 }
2062
2063 if (!S_ISBLK(st.st_mode)) {
2064 return 0;
2065 }
2066
2067 if (ioctl(s->fd, BLKROGET, &readonly) < 0) {
2068 return -errno;
2069 }
2070
2071 if (readonly) {
2072 return -EACCES;
2073 }
2074#endif /* defined(BLKROGET) */
2075 return 0;
2076}
2077
7af803d4
HR
2078static void hdev_parse_filename(const char *filename, QDict *options,
2079 Error **errp)
2080{
2081 /* The prefix is optional, just as for "file". */
2082 strstart(filename, "host_device:", &filename);
2083
2084 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
2085}
2086
3307ed7b
DA
2087static bool hdev_is_sg(BlockDriverState *bs)
2088{
2089
2090#if defined(__linux__)
2091
2092 struct stat st;
2093 struct sg_scsi_id scsiid;
2094 int sg_version;
2095
2096 if (stat(bs->filename, &st) >= 0 && S_ISCHR(st.st_mode) &&
2097 !bdrv_ioctl(bs, SG_GET_VERSION_NUM, &sg_version) &&
2098 !bdrv_ioctl(bs, SG_GET_SCSI_ID, &scsiid)) {
2099 DPRINTF("SG device found: type=%d, version=%d\n",
2100 scsiid.scsi_type, sg_version);
2101 return true;
2102 }
2103
2104#endif
2105
2106 return false;
2107}
2108
015a1036
HR
2109static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
2110 Error **errp)
19cb3738
FB
2111{
2112 BDRVRawState *s = bs->opaque;
e428e439 2113 Error *local_err = NULL;
da888d37 2114 int ret;
a76bab49 2115
83affaa6 2116#if defined(__APPLE__) && defined(__MACH__)
3307ed7b
DA
2117 const char *filename = qdict_get_str(options, "filename");
2118
19cb3738
FB
2119 if (strstart(filename, "/dev/cdrom", NULL)) {
2120 kern_return_t kernResult;
2121 io_iterator_t mediaIterator;
2122 char bsdPath[ MAXPATHLEN ];
2123 int fd;
5fafdf24 2124
19cb3738 2125 kernResult = FindEjectableCDMedia( &mediaIterator );
98caa5bc
JA
2126 kernResult = GetBSDPath(mediaIterator, bsdPath, sizeof(bsdPath),
2127 flags);
19cb3738
FB
2128 if ( bsdPath[ 0 ] != '\0' ) {
2129 strcat(bsdPath,"s0");
2130 /* some CDs don't have a partition 0 */
6165f4d8 2131 fd = qemu_open(bsdPath, O_RDONLY | O_BINARY | O_LARGEFILE);
19cb3738
FB
2132 if (fd < 0) {
2133 bsdPath[strlen(bsdPath)-1] = '1';
2134 } else {
2e1e79da 2135 qemu_close(fd);
19cb3738
FB
2136 }
2137 filename = bsdPath;
a5c5ea3f 2138 qdict_put(options, "filename", qstring_from_str(filename));
19cb3738 2139 }
3b46e624 2140
19cb3738
FB
2141 if ( mediaIterator )
2142 IOObjectRelease( mediaIterator );
2143 }
2144#endif
19cb3738
FB
2145
2146 s->type = FTYPE_FILE;
90babde0 2147
e428e439 2148 ret = raw_open_common(bs, options, flags, 0, &local_err);
da888d37 2149 if (ret < 0) {
84d18f06 2150 if (local_err) {
e428e439
HR
2151 error_propagate(errp, local_err);
2152 }
da888d37
SH
2153 return ret;
2154 }
2155
3307ed7b
DA
2156 /* Since this does ioctl the device must be already opened */
2157 bs->sg = hdev_is_sg(bs);
2158
da888d37
SH
2159 if (flags & BDRV_O_RDWR) {
2160 ret = check_hdev_writable(s);
2161 if (ret < 0) {
2162 raw_close(bs);
e428e439 2163 error_setg_errno(errp, -ret, "The device is not writable");
da888d37
SH
2164 return ret;
2165 }
2166 }
2167
2168 return ret;
19cb3738
FB
2169}
2170
03ff3ca3 2171#if defined(__linux__)
221f715d 2172
7c84b1b8 2173static BlockAIOCB *hdev_aio_ioctl(BlockDriverState *bs,
221f715d 2174 unsigned long int req, void *buf,
097310b5 2175 BlockCompletionFunc *cb, void *opaque)
221f715d 2176{
f141eafe 2177 BDRVRawState *s = bs->opaque;
c208e8c2 2178 RawPosixAIOData *acb;
c4d9d196 2179 ThreadPool *pool;
221f715d 2180
f141eafe
AL
2181 if (fd_open(bs) < 0)
2182 return NULL;
c208e8c2 2183
c84b3192 2184 acb = g_new(RawPosixAIOData, 1);
c208e8c2
PB
2185 acb->bs = bs;
2186 acb->aio_type = QEMU_AIO_IOCTL;
2187 acb->aio_fildes = s->fd;
2188 acb->aio_offset = 0;
2189 acb->aio_ioctl_buf = buf;
2190 acb->aio_ioctl_cmd = req;
c4d9d196
SH
2191 pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
2192 return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
221f715d 2193}
f709623b 2194#endif /* linux */
221f715d 2195
9f23011a
BS
2196static int fd_open(BlockDriverState *bs)
2197{
2198 BDRVRawState *s = bs->opaque;
2199
2200 /* this is just to ensure s->fd is sane (its called by io ops) */
2201 if (s->fd >= 0)
2202 return 0;
2203 return -EIO;
2204}
04eeb8b6 2205
7c84b1b8 2206static coroutine_fn BlockAIOCB *hdev_aio_discard(BlockDriverState *bs,
c36dd8a0 2207 int64_t sector_num, int nb_sectors,
097310b5 2208 BlockCompletionFunc *cb, void *opaque)
c36dd8a0
AF
2209{
2210 BDRVRawState *s = bs->opaque;
2211
2212 if (fd_open(bs) < 0) {
2213 return NULL;
2214 }
2215 return paio_submit(bs, s->fd, sector_num, NULL, nb_sectors,
2216 cb, opaque, QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
2217}
2218
d0b4503e
PB
2219static coroutine_fn int hdev_co_write_zeroes(BlockDriverState *bs,
2220 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
2221{
2222 BDRVRawState *s = bs->opaque;
2223 int rc;
2224
2225 rc = fd_open(bs);
2226 if (rc < 0) {
2227 return rc;
2228 }
2229 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
97a2ae34
PB
2230 return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
2231 QEMU_AIO_WRITE_ZEROES|QEMU_AIO_BLKDEV);
2232 } else if (s->discard_zeroes) {
2233 return paio_submit_co(bs, s->fd, sector_num, NULL, nb_sectors,
2234 QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
d0b4503e 2235 }
97a2ae34 2236 return -ENOTSUP;
d0b4503e
PB
2237}
2238
6f482f74 2239static int hdev_create(const char *filename, QemuOpts *opts,
d5124c00 2240 Error **errp)
93c65b47
AL
2241{
2242 int fd;
2243 int ret = 0;
2244 struct stat stat_buf;
0e7e1989 2245 int64_t total_size = 0;
cc28c6aa
HR
2246 bool has_prefix;
2247
f709623b
HR
2248 /* This function is used by both protocol block drivers and therefore either
2249 * of these prefixes may be given.
cc28c6aa
HR
2250 * The return value has to be stored somewhere, otherwise this is an error
2251 * due to -Werror=unused-value. */
2252 has_prefix =
2253 strstart(filename, "host_device:", &filename) ||
f709623b 2254 strstart(filename, "host_cdrom:" , &filename);
cc28c6aa
HR
2255
2256 (void)has_prefix;
93c65b47 2257
bdd03cdf
HR
2258 ret = raw_normalize_devicepath(&filename);
2259 if (ret < 0) {
2260 error_setg_errno(errp, -ret, "Could not normalize device path");
2261 return ret;
2262 }
2263
0e7e1989 2264 /* Read out options */
180e9526
HT
2265 total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
2266 BDRV_SECTOR_SIZE);
93c65b47 2267
6165f4d8 2268 fd = qemu_open(filename, O_WRONLY | O_BINARY);
e428e439
HR
2269 if (fd < 0) {
2270 ret = -errno;
2271 error_setg_errno(errp, -ret, "Could not open device");
2272 return ret;
2273 }
93c65b47 2274
e428e439 2275 if (fstat(fd, &stat_buf) < 0) {
57e69b7d 2276 ret = -errno;
e428e439
HR
2277 error_setg_errno(errp, -ret, "Could not stat device");
2278 } else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode)) {
2279 error_setg(errp,
2280 "The given file is neither a block nor a character device");
57e69b7d 2281 ret = -ENODEV;
180e9526 2282 } else if (lseek(fd, 0, SEEK_END) < total_size) {
e428e439 2283 error_setg(errp, "Device is too small");
93c65b47 2284 ret = -ENOSPC;
e428e439 2285 }
93c65b47 2286
2e1e79da 2287 qemu_close(fd);
93c65b47
AL
2288 return ret;
2289}
2290
5efa9d5a 2291static BlockDriver bdrv_host_device = {
0b4ce02e 2292 .format_name = "host_device",
84a12e66 2293 .protocol_name = "host_device",
0b4ce02e 2294 .instance_size = sizeof(BDRVRawState),
030be321 2295 .bdrv_needs_filename = true,
0b4ce02e 2296 .bdrv_probe_device = hdev_probe_device,
7af803d4 2297 .bdrv_parse_filename = hdev_parse_filename,
66f82cee 2298 .bdrv_file_open = hdev_open,
0b4ce02e 2299 .bdrv_close = raw_close,
1bc6b705
JC
2300 .bdrv_reopen_prepare = raw_reopen_prepare,
2301 .bdrv_reopen_commit = raw_reopen_commit,
2302 .bdrv_reopen_abort = raw_reopen_abort,
c282e1fd 2303 .bdrv_create = hdev_create,
6f482f74 2304 .create_opts = &raw_create_opts,
d0b4503e 2305 .bdrv_co_write_zeroes = hdev_co_write_zeroes,
3b46e624 2306
f141eafe
AL
2307 .bdrv_aio_readv = raw_aio_readv,
2308 .bdrv_aio_writev = raw_aio_writev,
b2e12bc6 2309 .bdrv_aio_flush = raw_aio_flush,
8238010b 2310 .bdrv_aio_discard = hdev_aio_discard,
c25f53b0 2311 .bdrv_refresh_limits = raw_refresh_limits,
1b3abdcc
ML
2312 .bdrv_io_plug = raw_aio_plug,
2313 .bdrv_io_unplug = raw_aio_unplug,
2314 .bdrv_flush_io_queue = raw_aio_flush_io_queue,
3c529d93 2315
55b949c8 2316 .bdrv_truncate = raw_truncate,
e60f469c 2317 .bdrv_getlength = raw_getlength,
260a82e5 2318 .bdrv_get_info = raw_get_info,
4a1d5e1f
FZ
2319 .bdrv_get_allocated_file_size
2320 = raw_get_allocated_file_size,
1a9335e4
ET
2321 .bdrv_probe_blocksizes = hdev_probe_blocksizes,
2322 .bdrv_probe_geometry = hdev_probe_geometry,
19cb3738 2323
c2f3426c
SH
2324 .bdrv_detach_aio_context = raw_detach_aio_context,
2325 .bdrv_attach_aio_context = raw_attach_aio_context,
2326
f3a5d3f8 2327 /* generic scsi device */
63ec93db 2328#ifdef __linux__
63ec93db
CH
2329 .bdrv_aio_ioctl = hdev_aio_ioctl,
2330#endif
f3a5d3f8
CH
2331};
2332
18fa1c42
HR
2333#if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
2334static void cdrom_parse_filename(const char *filename, QDict *options,
2335 Error **errp)
2336{
2337 /* The prefix is optional, just as for "file". */
2338 strstart(filename, "host_cdrom:", &filename);
2339
2340 qdict_put_obj(options, "filename", QOBJECT(qstring_from_str(filename)));
2341}
2342#endif
2343
2344#ifdef __linux__
015a1036
HR
2345static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
2346 Error **errp)
f3a5d3f8
CH
2347{
2348 BDRVRawState *s = bs->opaque;
e428e439
HR
2349 Error *local_err = NULL;
2350 int ret;
f3a5d3f8 2351
f3a5d3f8
CH
2352 s->type = FTYPE_CD;
2353
19a3da7f 2354 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
e428e439 2355 ret = raw_open_common(bs, options, flags, O_NONBLOCK, &local_err);
84d18f06 2356 if (local_err) {
e428e439
HR
2357 error_propagate(errp, local_err);
2358 }
2359 return ret;
f3a5d3f8
CH
2360}
2361
508c7cb3
CH
2362static int cdrom_probe_device(const char *filename)
2363{
3baf720e
CR
2364 int fd, ret;
2365 int prio = 0;
343f8568 2366 struct stat st;
3baf720e 2367
6165f4d8 2368 fd = qemu_open(filename, O_RDONLY | O_NONBLOCK);
3baf720e
CR
2369 if (fd < 0) {
2370 goto out;
2371 }
343f8568
JS
2372 ret = fstat(fd, &st);
2373 if (ret == -1 || !S_ISBLK(st.st_mode)) {
2374 goto outc;
2375 }
3baf720e
CR
2376
2377 /* Attempt to detect via a CDROM specific ioctl */
2378 ret = ioctl(fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
2379 if (ret >= 0)
2380 prio = 100;
2381
343f8568 2382outc:
2e1e79da 2383 qemu_close(fd);
3baf720e
CR
2384out:
2385 return prio;
508c7cb3
CH
2386}
2387
e031f750 2388static bool cdrom_is_inserted(BlockDriverState *bs)
f3a5d3f8
CH
2389{
2390 BDRVRawState *s = bs->opaque;
2391 int ret;
2392
2393 ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
e031f750 2394 return ret == CDS_DISC_OK;
f3a5d3f8
CH
2395}
2396
f36f3949 2397static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
f3a5d3f8
CH
2398{
2399 BDRVRawState *s = bs->opaque;
2400
2401 if (eject_flag) {
2402 if (ioctl(s->fd, CDROMEJECT, NULL) < 0)
2403 perror("CDROMEJECT");
2404 } else {
2405 if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0)
2406 perror("CDROMEJECT");
2407 }
f3a5d3f8
CH
2408}
2409
025e849a 2410static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
f3a5d3f8
CH
2411{
2412 BDRVRawState *s = bs->opaque;
2413
2414 if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
2415 /*
2416 * Note: an error can happen if the distribution automatically
2417 * mounts the CD-ROM
2418 */
2419 /* perror("CDROM_LOCKDOOR"); */
2420 }
f3a5d3f8
CH
2421}
2422
2423static BlockDriver bdrv_host_cdrom = {
2424 .format_name = "host_cdrom",
84a12e66 2425 .protocol_name = "host_cdrom",
f3a5d3f8 2426 .instance_size = sizeof(BDRVRawState),
030be321 2427 .bdrv_needs_filename = true,
508c7cb3 2428 .bdrv_probe_device = cdrom_probe_device,
18fa1c42 2429 .bdrv_parse_filename = cdrom_parse_filename,
66f82cee 2430 .bdrv_file_open = cdrom_open,
f3a5d3f8 2431 .bdrv_close = raw_close,
1bc6b705
JC
2432 .bdrv_reopen_prepare = raw_reopen_prepare,
2433 .bdrv_reopen_commit = raw_reopen_commit,
2434 .bdrv_reopen_abort = raw_reopen_abort,
c282e1fd 2435 .bdrv_create = hdev_create,
6f482f74 2436 .create_opts = &raw_create_opts,
f3a5d3f8 2437
f3a5d3f8
CH
2438 .bdrv_aio_readv = raw_aio_readv,
2439 .bdrv_aio_writev = raw_aio_writev,
b2e12bc6 2440 .bdrv_aio_flush = raw_aio_flush,
c25f53b0 2441 .bdrv_refresh_limits = raw_refresh_limits,
1b3abdcc
ML
2442 .bdrv_io_plug = raw_aio_plug,
2443 .bdrv_io_unplug = raw_aio_unplug,
2444 .bdrv_flush_io_queue = raw_aio_flush_io_queue,
f3a5d3f8 2445
55b949c8 2446 .bdrv_truncate = raw_truncate,
b94a2610
KW
2447 .bdrv_getlength = raw_getlength,
2448 .has_variable_length = true,
4a1d5e1f
FZ
2449 .bdrv_get_allocated_file_size
2450 = raw_get_allocated_file_size,
f3a5d3f8 2451
c2f3426c
SH
2452 .bdrv_detach_aio_context = raw_detach_aio_context,
2453 .bdrv_attach_aio_context = raw_attach_aio_context,
2454
f3a5d3f8
CH
2455 /* removable device support */
2456 .bdrv_is_inserted = cdrom_is_inserted,
2457 .bdrv_eject = cdrom_eject,
025e849a 2458 .bdrv_lock_medium = cdrom_lock_medium,
f3a5d3f8
CH
2459
2460 /* generic scsi device */
63ec93db 2461 .bdrv_aio_ioctl = hdev_aio_ioctl,
f3a5d3f8
CH
2462};
2463#endif /* __linux__ */
2464
a167ba50 2465#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__)
511018e4
AT
2466static int cdrom_open(BlockDriverState *bs, QDict *options, int flags,
2467 Error **errp)
f3a5d3f8
CH
2468{
2469 BDRVRawState *s = bs->opaque;
e428e439 2470 Error *local_err = NULL;
f3a5d3f8
CH
2471 int ret;
2472
2473 s->type = FTYPE_CD;
2474
e428e439
HR
2475 ret = raw_open_common(bs, options, flags, 0, &local_err);
2476 if (ret) {
84d18f06 2477 if (local_err) {
e428e439
HR
2478 error_propagate(errp, local_err);
2479 }
f3a5d3f8 2480 return ret;
e428e439 2481 }
f3a5d3f8 2482
9b2260cb 2483 /* make sure the door isn't locked at this time */
f3a5d3f8
CH
2484 ioctl(s->fd, CDIOCALLOW);
2485 return 0;
2486}
2487
508c7cb3
CH
2488static int cdrom_probe_device(const char *filename)
2489{
2490 if (strstart(filename, "/dev/cd", NULL) ||
2491 strstart(filename, "/dev/acd", NULL))
2492 return 100;
2493 return 0;
2494}
2495
f3a5d3f8
CH
2496static int cdrom_reopen(BlockDriverState *bs)
2497{
2498 BDRVRawState *s = bs->opaque;
2499 int fd;
2500
2501 /*
2502 * Force reread of possibly changed/newly loaded disc,
2503 * FreeBSD seems to not notice sometimes...
2504 */
2505 if (s->fd >= 0)
2e1e79da 2506 qemu_close(s->fd);
6165f4d8 2507 fd = qemu_open(bs->filename, s->open_flags, 0644);
f3a5d3f8
CH
2508 if (fd < 0) {
2509 s->fd = -1;
2510 return -EIO;
2511 }
2512 s->fd = fd;
2513
9b2260cb 2514 /* make sure the door isn't locked at this time */
f3a5d3f8
CH
2515 ioctl(s->fd, CDIOCALLOW);
2516 return 0;
2517}
2518
e031f750 2519static bool cdrom_is_inserted(BlockDriverState *bs)
f3a5d3f8
CH
2520{
2521 return raw_getlength(bs) > 0;
2522}
2523
f36f3949 2524static void cdrom_eject(BlockDriverState *bs, bool eject_flag)
f3a5d3f8
CH
2525{
2526 BDRVRawState *s = bs->opaque;
2527
2528 if (s->fd < 0)
822e1cd1 2529 return;
f3a5d3f8
CH
2530
2531 (void) ioctl(s->fd, CDIOCALLOW);
2532
2533 if (eject_flag) {
2534 if (ioctl(s->fd, CDIOCEJECT) < 0)
2535 perror("CDIOCEJECT");
2536 } else {
2537 if (ioctl(s->fd, CDIOCCLOSE) < 0)
2538 perror("CDIOCCLOSE");
2539 }
2540
822e1cd1 2541 cdrom_reopen(bs);
f3a5d3f8
CH
2542}
2543
025e849a 2544static void cdrom_lock_medium(BlockDriverState *bs, bool locked)
f3a5d3f8
CH
2545{
2546 BDRVRawState *s = bs->opaque;
2547
2548 if (s->fd < 0)
7bf37fed 2549 return;
f3a5d3f8
CH
2550 if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
2551 /*
2552 * Note: an error can happen if the distribution automatically
2553 * mounts the CD-ROM
2554 */
2555 /* perror("CDROM_LOCKDOOR"); */
2556 }
f3a5d3f8
CH
2557}
2558
2559static BlockDriver bdrv_host_cdrom = {
2560 .format_name = "host_cdrom",
84a12e66 2561 .protocol_name = "host_cdrom",
f3a5d3f8 2562 .instance_size = sizeof(BDRVRawState),
030be321 2563 .bdrv_needs_filename = true,
508c7cb3 2564 .bdrv_probe_device = cdrom_probe_device,
18fa1c42 2565 .bdrv_parse_filename = cdrom_parse_filename,
66f82cee 2566 .bdrv_file_open = cdrom_open,
f3a5d3f8 2567 .bdrv_close = raw_close,
1bc6b705
JC
2568 .bdrv_reopen_prepare = raw_reopen_prepare,
2569 .bdrv_reopen_commit = raw_reopen_commit,
2570 .bdrv_reopen_abort = raw_reopen_abort,
c282e1fd 2571 .bdrv_create = hdev_create,
6f482f74 2572 .create_opts = &raw_create_opts,
f3a5d3f8 2573
f3a5d3f8
CH
2574 .bdrv_aio_readv = raw_aio_readv,
2575 .bdrv_aio_writev = raw_aio_writev,
b2e12bc6 2576 .bdrv_aio_flush = raw_aio_flush,
c25f53b0 2577 .bdrv_refresh_limits = raw_refresh_limits,
1b3abdcc
ML
2578 .bdrv_io_plug = raw_aio_plug,
2579 .bdrv_io_unplug = raw_aio_unplug,
2580 .bdrv_flush_io_queue = raw_aio_flush_io_queue,
f3a5d3f8 2581
55b949c8 2582 .bdrv_truncate = raw_truncate,
b94a2610
KW
2583 .bdrv_getlength = raw_getlength,
2584 .has_variable_length = true,
4a1d5e1f
FZ
2585 .bdrv_get_allocated_file_size
2586 = raw_get_allocated_file_size,
f3a5d3f8 2587
c2f3426c
SH
2588 .bdrv_detach_aio_context = raw_detach_aio_context,
2589 .bdrv_attach_aio_context = raw_attach_aio_context,
2590
19cb3738 2591 /* removable device support */
f3a5d3f8
CH
2592 .bdrv_is_inserted = cdrom_is_inserted,
2593 .bdrv_eject = cdrom_eject,
025e849a 2594 .bdrv_lock_medium = cdrom_lock_medium,
19cb3738 2595};
f3a5d3f8 2596#endif /* __FreeBSD__ */
5efa9d5a 2597
84a12e66 2598static void bdrv_file_init(void)
5efa9d5a 2599{
508c7cb3
CH
2600 /*
2601 * Register all the drivers. Note that order is important, the driver
2602 * registered last will get probed first.
2603 */
84a12e66 2604 bdrv_register(&bdrv_file);
5efa9d5a 2605 bdrv_register(&bdrv_host_device);
f3a5d3f8 2606#ifdef __linux__
f3a5d3f8
CH
2607 bdrv_register(&bdrv_host_cdrom);
2608#endif
a167ba50 2609#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
f3a5d3f8
CH
2610 bdrv_register(&bdrv_host_cdrom);
2611#endif
5efa9d5a
AL
2612}
2613
84a12e66 2614block_init(bdrv_file_init);