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