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