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