]>
Commit | Line | Data |
---|---|---|
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 |
131 | typedef 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 |
164 | typedef struct BDRVRawReopenState { |
165 | int fd; | |
166 | int open_flags; | |
31be8a2a | 167 | bool check_cache_dropped; |
eeb6b45d JC |
168 | } BDRVRawReopenState; |
169 | ||
19cb3738 | 170 | static int fd_open(BlockDriverState *bs); |
22afa7b5 | 171 | static int64_t raw_getlength(BlockDriverState *bs); |
83f64091 | 172 | |
de81a169 PB |
173 | typedef 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 | 202 | static int cdrom_reopen(BlockDriverState *bs); |
9f23011a BS |
203 | #endif |
204 | ||
1de1ae0a | 205 | #if defined(__NetBSD__) |
db0754df | 206 | static 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 | 235 | static 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 | */ | |
244 | static 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], §or_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 | */ | |
279 | static 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 | */ | |
295 | static 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 |
316 | static 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 |
378 | static 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 |
397 | static 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 |
403 | static 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 | ||
436 | static 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; |
648 | fail: | |
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 |
656 | static 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 |
665 | typedef 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 | 678 | static 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 | 751 | static 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 | ||
790 | static 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 |
847 | static 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 |
903 | static int raw_reopen_prepare(BDRVReopenState *state, |
904 | BlockReopenQueue *queue, Error **errp) | |
905 | { | |
906 | BDRVRawState *s; | |
4e6d13c9 | 907 | BDRVRawReopenState *rs; |
31be8a2a | 908 | QemuOpts *opts; |
eeb6b45d | 909 | int ret = 0; |
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) { |
4e6d13c9 FZ |
950 | qemu_close(rs->fd); |
951 | rs->fd = -1; | |
df26a350 KW |
952 | error_propagate(errp, local_err); |
953 | ret = -EINVAL; | |
954 | } | |
955 | } | |
956 | ||
e0c9cf3a | 957 | s->reopen_state = state; |
31be8a2a SH |
958 | out: |
959 | qemu_opts_del(opts); | |
eeb6b45d JC |
960 | return ret; |
961 | } | |
962 | ||
eeb6b45d JC |
963 | static void raw_reopen_commit(BDRVReopenState *state) |
964 | { | |
4e6d13c9 | 965 | BDRVRawReopenState *rs = state->opaque; |
eeb6b45d | 966 | BDRVRawState *s = state->bs->opaque; |
f2e3af29 | 967 | Error *local_err = NULL; |
eeb6b45d | 968 | |
31be8a2a | 969 | s->check_cache_dropped = rs->check_cache_dropped; |
4e6d13c9 | 970 | s->open_flags = rs->open_flags; |
eeb6b45d | 971 | |
f2e3af29 FZ |
972 | /* Copy locks to the new fd before closing the old one. */ |
973 | raw_apply_lock_bytes(NULL, rs->fd, s->locked_perm, | |
577a1339 | 974 | s->locked_shared_perm, false, &local_err); |
f2e3af29 FZ |
975 | if (local_err) { |
976 | /* shouldn't fail in a sane host, but report it just in case. */ | |
977 | error_report_err(local_err); | |
978 | } | |
eeb6b45d | 979 | qemu_close(s->fd); |
4e6d13c9 | 980 | s->fd = rs->fd; |
eeb6b45d JC |
981 | |
982 | g_free(state->opaque); | |
983 | state->opaque = NULL; | |
e0c9cf3a KW |
984 | |
985 | assert(s->reopen_state == state); | |
986 | s->reopen_state = NULL; | |
eeb6b45d JC |
987 | } |
988 | ||
989 | ||
990 | static void raw_reopen_abort(BDRVReopenState *state) | |
991 | { | |
4e6d13c9 | 992 | BDRVRawReopenState *rs = state->opaque; |
e0c9cf3a | 993 | BDRVRawState *s = state->bs->opaque; |
eeb6b45d JC |
994 | |
995 | /* nothing to do if NULL, we didn't get far enough */ | |
4e6d13c9 | 996 | if (rs == NULL) { |
eeb6b45d JC |
997 | return; |
998 | } | |
999 | ||
4e6d13c9 FZ |
1000 | if (rs->fd >= 0) { |
1001 | qemu_close(rs->fd); | |
1002 | rs->fd = -1; | |
eeb6b45d JC |
1003 | } |
1004 | g_free(state->opaque); | |
1005 | state->opaque = NULL; | |
e0c9cf3a KW |
1006 | |
1007 | assert(s->reopen_state == state); | |
1008 | s->reopen_state = NULL; | |
eeb6b45d JC |
1009 | } |
1010 | ||
48265250 | 1011 | static int hdev_get_max_transfer_length(BlockDriverState *bs, int fd) |
6f607174 FZ |
1012 | { |
1013 | #ifdef BLKSECTGET | |
48265250 EF |
1014 | int max_bytes = 0; |
1015 | short max_sectors = 0; | |
1016 | if (bs->sg && ioctl(fd, BLKSECTGET, &max_bytes) == 0) { | |
1017 | return max_bytes; | |
1018 | } else if (!bs->sg && ioctl(fd, BLKSECTGET, &max_sectors) == 0) { | |
1019 | return max_sectors << BDRV_SECTOR_BITS; | |
6f607174 FZ |
1020 | } else { |
1021 | return -errno; | |
1022 | } | |
1023 | #else | |
1024 | return -ENOSYS; | |
1025 | #endif | |
1026 | } | |
1027 | ||
9103f1ce FZ |
1028 | static int hdev_get_max_segments(const struct stat *st) |
1029 | { | |
1030 | #ifdef CONFIG_LINUX | |
1031 | char buf[32]; | |
1032 | const char *end; | |
1033 | char *sysfspath; | |
1034 | int ret; | |
1035 | int fd = -1; | |
1036 | long max_segments; | |
1037 | ||
1038 | sysfspath = g_strdup_printf("/sys/dev/block/%u:%u/queue/max_segments", | |
1039 | major(st->st_rdev), minor(st->st_rdev)); | |
1040 | fd = open(sysfspath, O_RDONLY); | |
1041 | if (fd == -1) { | |
1042 | ret = -errno; | |
1043 | goto out; | |
1044 | } | |
1045 | do { | |
69583490 | 1046 | ret = read(fd, buf, sizeof(buf) - 1); |
9103f1ce FZ |
1047 | } while (ret == -1 && errno == EINTR); |
1048 | if (ret < 0) { | |
1049 | ret = -errno; | |
1050 | goto out; | |
1051 | } else if (ret == 0) { | |
1052 | ret = -EIO; | |
1053 | goto out; | |
1054 | } | |
1055 | buf[ret] = 0; | |
1056 | /* The file is ended with '\n', pass 'end' to accept that. */ | |
1057 | ret = qemu_strtol(buf, &end, 10, &max_segments); | |
1058 | if (ret == 0 && end && *end == '\n') { | |
1059 | ret = max_segments; | |
1060 | } | |
1061 | ||
1062 | out: | |
fed414df FZ |
1063 | if (fd != -1) { |
1064 | close(fd); | |
1065 | } | |
9103f1ce FZ |
1066 | g_free(sysfspath); |
1067 | return ret; | |
1068 | #else | |
1069 | return -ENOTSUP; | |
1070 | #endif | |
1071 | } | |
1072 | ||
3baca891 | 1073 | static void raw_refresh_limits(BlockDriverState *bs, Error **errp) |
c25f53b0 PB |
1074 | { |
1075 | BDRVRawState *s = bs->opaque; | |
6f607174 FZ |
1076 | struct stat st; |
1077 | ||
1078 | if (!fstat(s->fd, &st)) { | |
c4c41a0a | 1079 | if (S_ISBLK(st.st_mode) || S_ISCHR(st.st_mode)) { |
48265250 EF |
1080 | int ret = hdev_get_max_transfer_length(bs, s->fd); |
1081 | if (ret > 0 && ret <= BDRV_REQUEST_MAX_BYTES) { | |
1082 | bs->bl.max_transfer = pow2floor(ret); | |
6f607174 | 1083 | } |
9103f1ce FZ |
1084 | ret = hdev_get_max_segments(&st); |
1085 | if (ret > 0) { | |
1086 | bs->bl.max_transfer = MIN(bs->bl.max_transfer, | |
1087 | ret * getpagesize()); | |
1088 | } | |
6f607174 FZ |
1089 | } |
1090 | } | |
eeb6b45d | 1091 | |
df26a350 | 1092 | raw_probe_alignment(bs, s->fd, errp); |
4196d2f0 | 1093 | bs->bl.min_mem_alignment = s->buf_align; |
459b4e66 | 1094 | bs->bl.opt_mem_alignment = MAX(s->buf_align, getpagesize()); |
c25f53b0 | 1095 | } |
83f64091 | 1096 | |
1a9335e4 ET |
1097 | static int check_for_dasd(int fd) |
1098 | { | |
1099 | #ifdef BIODASDINFO2 | |
1100 | struct dasd_information2_t info = {0}; | |
1101 | ||
1102 | return ioctl(fd, BIODASDINFO2, &info); | |
1103 | #else | |
1104 | return -1; | |
1105 | #endif | |
1106 | } | |
1107 | ||
1108 | /** | |
1109 | * Try to get @bs's logical and physical block size. | |
1110 | * On success, store them in @bsz and return zero. | |
1111 | * On failure, return negative errno. | |
1112 | */ | |
1113 | static int hdev_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) | |
1114 | { | |
1115 | BDRVRawState *s = bs->opaque; | |
1116 | int ret; | |
1117 | ||
1118 | /* If DASD, get blocksizes */ | |
1119 | if (check_for_dasd(s->fd) < 0) { | |
1120 | return -ENOTSUP; | |
1121 | } | |
1122 | ret = probe_logical_blocksize(s->fd, &bsz->log); | |
1123 | if (ret < 0) { | |
1124 | return ret; | |
1125 | } | |
1126 | return probe_physical_blocksize(s->fd, &bsz->phys); | |
1127 | } | |
1128 | ||
1129 | /** | |
1130 | * Try to get @bs's geometry: cyls, heads, sectors. | |
1131 | * On success, store them in @geo and return 0. | |
1132 | * On failure return -errno. | |
1133 | * (Allows block driver to assign default geometry values that guest sees) | |
1134 | */ | |
1135 | #ifdef __linux__ | |
1136 | static int hdev_probe_geometry(BlockDriverState *bs, HDGeometry *geo) | |
1137 | { | |
1138 | BDRVRawState *s = bs->opaque; | |
1139 | struct hd_geometry ioctl_geo = {0}; | |
1a9335e4 ET |
1140 | |
1141 | /* If DASD, get its geometry */ | |
1142 | if (check_for_dasd(s->fd) < 0) { | |
1143 | return -ENOTSUP; | |
1144 | } | |
1145 | if (ioctl(s->fd, HDIO_GETGEO, &ioctl_geo) < 0) { | |
1146 | return -errno; | |
1147 | } | |
1148 | /* HDIO_GETGEO may return success even though geo contains zeros | |
1149 | (e.g. certain multipath setups) */ | |
1150 | if (!ioctl_geo.heads || !ioctl_geo.sectors || !ioctl_geo.cylinders) { | |
1151 | return -ENOTSUP; | |
1152 | } | |
1153 | /* Do not return a geometry for partition */ | |
1154 | if (ioctl_geo.start != 0) { | |
1155 | return -ENOTSUP; | |
1156 | } | |
1157 | geo->heads = ioctl_geo.heads; | |
1158 | geo->sectors = ioctl_geo.sectors; | |
1a9335e4 ET |
1159 | geo->cylinders = ioctl_geo.cylinders; |
1160 | ||
1161 | return 0; | |
1162 | } | |
1163 | #else /* __linux__ */ | |
1164 | static int hdev_probe_geometry(BlockDriverState *bs, HDGeometry *geo) | |
1165 | { | |
1166 | return -ENOTSUP; | |
1167 | } | |
1168 | #endif | |
1169 | ||
03425671 KW |
1170 | #if defined(__linux__) |
1171 | static int handle_aiocb_ioctl(void *opaque) | |
de81a169 | 1172 | { |
03425671 | 1173 | RawPosixAIOData *aiocb = opaque; |
de81a169 PB |
1174 | int ret; |
1175 | ||
d57c44d0 | 1176 | ret = ioctl(aiocb->aio_fildes, aiocb->ioctl.cmd, aiocb->ioctl.buf); |
de81a169 PB |
1177 | if (ret == -1) { |
1178 | return -errno; | |
1179 | } | |
1180 | ||
b608c8dc | 1181 | return 0; |
de81a169 | 1182 | } |
03425671 | 1183 | #endif /* linux */ |
de81a169 | 1184 | |
06dc9bd5 | 1185 | static int handle_aiocb_flush(void *opaque) |
de81a169 | 1186 | { |
06dc9bd5 | 1187 | RawPosixAIOData *aiocb = opaque; |
e5bcf967 | 1188 | BDRVRawState *s = aiocb->bs->opaque; |
de81a169 PB |
1189 | int ret; |
1190 | ||
e5bcf967 KW |
1191 | if (s->page_cache_inconsistent) { |
1192 | return -EIO; | |
1193 | } | |
1194 | ||
de81a169 PB |
1195 | ret = qemu_fdatasync(aiocb->aio_fildes); |
1196 | if (ret == -1) { | |
e5bcf967 KW |
1197 | /* There is no clear definition of the semantics of a failing fsync(), |
1198 | * so we may have to assume the worst. The sad truth is that this | |
1199 | * assumption is correct for Linux. Some pages are now probably marked | |
1200 | * clean in the page cache even though they are inconsistent with the | |
1201 | * on-disk contents. The next fdatasync() call would succeed, but no | |
1202 | * further writeback attempt will be made. We can't get back to a state | |
1203 | * in which we know what is on disk (we would have to rewrite | |
1204 | * everything that was touched since the last fdatasync() at least), so | |
1205 | * make bdrv_flush() fail permanently. Given that the behaviour isn't | |
1206 | * really defined, I have little hope that other OSes are doing better. | |
1207 | * | |
1208 | * Obviously, this doesn't affect O_DIRECT, which bypasses the page | |
1209 | * cache. */ | |
1210 | if ((s->open_flags & O_DIRECT) == 0) { | |
1211 | s->page_cache_inconsistent = true; | |
1212 | } | |
de81a169 PB |
1213 | return -errno; |
1214 | } | |
1215 | return 0; | |
1216 | } | |
1217 | ||
1218 | #ifdef CONFIG_PREADV | |
1219 | ||
1220 | static bool preadv_present = true; | |
1221 | ||
1222 | static ssize_t | |
1223 | qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset) | |
1224 | { | |
1225 | return preadv(fd, iov, nr_iov, offset); | |
1226 | } | |
1227 | ||
1228 | static ssize_t | |
1229 | qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset) | |
1230 | { | |
1231 | return pwritev(fd, iov, nr_iov, offset); | |
1232 | } | |
1233 | ||
1234 | #else | |
1235 | ||
1236 | static bool preadv_present = false; | |
1237 | ||
1238 | static ssize_t | |
1239 | qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset) | |
1240 | { | |
1241 | return -ENOSYS; | |
1242 | } | |
1243 | ||
1244 | static ssize_t | |
1245 | qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset) | |
1246 | { | |
1247 | return -ENOSYS; | |
1248 | } | |
1249 | ||
1250 | #endif | |
1251 | ||
1252 | static ssize_t handle_aiocb_rw_vector(RawPosixAIOData *aiocb) | |
1253 | { | |
1254 | ssize_t len; | |
1255 | ||
1256 | do { | |
1257 | if (aiocb->aio_type & QEMU_AIO_WRITE) | |
1258 | len = qemu_pwritev(aiocb->aio_fildes, | |
d57c44d0 KW |
1259 | aiocb->io.iov, |
1260 | aiocb->io.niov, | |
de81a169 PB |
1261 | aiocb->aio_offset); |
1262 | else | |
1263 | len = qemu_preadv(aiocb->aio_fildes, | |
d57c44d0 KW |
1264 | aiocb->io.iov, |
1265 | aiocb->io.niov, | |
de81a169 PB |
1266 | aiocb->aio_offset); |
1267 | } while (len == -1 && errno == EINTR); | |
1268 | ||
1269 | if (len == -1) { | |
1270 | return -errno; | |
1271 | } | |
1272 | return len; | |
1273 | } | |
1274 | ||
1275 | /* | |
1276 | * Read/writes the data to/from a given linear buffer. | |
1277 | * | |
1278 | * Returns the number of bytes handles or -errno in case of an error. Short | |
1279 | * reads are only returned if the end of the file is reached. | |
1280 | */ | |
1281 | static ssize_t handle_aiocb_rw_linear(RawPosixAIOData *aiocb, char *buf) | |
1282 | { | |
1283 | ssize_t offset = 0; | |
1284 | ssize_t len; | |
1285 | ||
1286 | while (offset < aiocb->aio_nbytes) { | |
1287 | if (aiocb->aio_type & QEMU_AIO_WRITE) { | |
1288 | len = pwrite(aiocb->aio_fildes, | |
1289 | (const char *)buf + offset, | |
1290 | aiocb->aio_nbytes - offset, | |
1291 | aiocb->aio_offset + offset); | |
1292 | } else { | |
1293 | len = pread(aiocb->aio_fildes, | |
1294 | buf + offset, | |
1295 | aiocb->aio_nbytes - offset, | |
1296 | aiocb->aio_offset + offset); | |
1297 | } | |
1298 | if (len == -1 && errno == EINTR) { | |
1299 | continue; | |
61ed73cf SH |
1300 | } else if (len == -1 && errno == EINVAL && |
1301 | (aiocb->bs->open_flags & BDRV_O_NOCACHE) && | |
1302 | !(aiocb->aio_type & QEMU_AIO_WRITE) && | |
1303 | offset > 0) { | |
1304 | /* O_DIRECT pread() may fail with EINVAL when offset is unaligned | |
1305 | * after a short read. Assume that O_DIRECT short reads only occur | |
1306 | * at EOF. Therefore this is a short read, not an I/O error. | |
1307 | */ | |
1308 | break; | |
de81a169 PB |
1309 | } else if (len == -1) { |
1310 | offset = -errno; | |
1311 | break; | |
1312 | } else if (len == 0) { | |
1313 | break; | |
1314 | } | |
1315 | offset += len; | |
1316 | } | |
1317 | ||
1318 | return offset; | |
1319 | } | |
1320 | ||
999e6b69 | 1321 | static int handle_aiocb_rw(void *opaque) |
de81a169 | 1322 | { |
999e6b69 | 1323 | RawPosixAIOData *aiocb = opaque; |
de81a169 PB |
1324 | ssize_t nbytes; |
1325 | char *buf; | |
1326 | ||
1327 | if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) { | |
1328 | /* | |
1329 | * If there is just a single buffer, and it is properly aligned | |
1330 | * we can just use plain pread/pwrite without any problems. | |
1331 | */ | |
d57c44d0 | 1332 | if (aiocb->io.niov == 1) { |
54c7ca1b KW |
1333 | nbytes = handle_aiocb_rw_linear(aiocb, aiocb->io.iov->iov_base); |
1334 | goto out; | |
de81a169 PB |
1335 | } |
1336 | /* | |
1337 | * We have more than one iovec, and all are properly aligned. | |
1338 | * | |
1339 | * Try preadv/pwritev first and fall back to linearizing the | |
1340 | * buffer if it's not supported. | |
1341 | */ | |
1342 | if (preadv_present) { | |
1343 | nbytes = handle_aiocb_rw_vector(aiocb); | |
1344 | if (nbytes == aiocb->aio_nbytes || | |
1345 | (nbytes < 0 && nbytes != -ENOSYS)) { | |
54c7ca1b | 1346 | goto out; |
de81a169 PB |
1347 | } |
1348 | preadv_present = false; | |
1349 | } | |
1350 | ||
1351 | /* | |
1352 | * XXX(hch): short read/write. no easy way to handle the reminder | |
1353 | * using these interfaces. For now retry using plain | |
1354 | * pread/pwrite? | |
1355 | */ | |
1356 | } | |
1357 | ||
1358 | /* | |
1359 | * Ok, we have to do it the hard way, copy all segments into | |
1360 | * a single aligned buffer. | |
1361 | */ | |
50d4a858 KW |
1362 | buf = qemu_try_blockalign(aiocb->bs, aiocb->aio_nbytes); |
1363 | if (buf == NULL) { | |
54c7ca1b KW |
1364 | nbytes = -ENOMEM; |
1365 | goto out; | |
50d4a858 KW |
1366 | } |
1367 | ||
de81a169 PB |
1368 | if (aiocb->aio_type & QEMU_AIO_WRITE) { |
1369 | char *p = buf; | |
1370 | int i; | |
1371 | ||
d57c44d0 KW |
1372 | for (i = 0; i < aiocb->io.niov; ++i) { |
1373 | memcpy(p, aiocb->io.iov[i].iov_base, aiocb->io.iov[i].iov_len); | |
1374 | p += aiocb->io.iov[i].iov_len; | |
de81a169 | 1375 | } |
8eb029c2 | 1376 | assert(p - buf == aiocb->aio_nbytes); |
de81a169 PB |
1377 | } |
1378 | ||
1379 | nbytes = handle_aiocb_rw_linear(aiocb, buf); | |
1380 | if (!(aiocb->aio_type & QEMU_AIO_WRITE)) { | |
1381 | char *p = buf; | |
1382 | size_t count = aiocb->aio_nbytes, copy; | |
1383 | int i; | |
1384 | ||
d57c44d0 | 1385 | for (i = 0; i < aiocb->io.niov && count; ++i) { |
de81a169 | 1386 | copy = count; |
d57c44d0 KW |
1387 | if (copy > aiocb->io.iov[i].iov_len) { |
1388 | copy = aiocb->io.iov[i].iov_len; | |
de81a169 | 1389 | } |
d57c44d0 | 1390 | memcpy(aiocb->io.iov[i].iov_base, p, copy); |
8eb029c2 | 1391 | assert(count >= copy); |
de81a169 PB |
1392 | p += copy; |
1393 | count -= copy; | |
1394 | } | |
8eb029c2 | 1395 | assert(count == 0); |
de81a169 PB |
1396 | } |
1397 | qemu_vfree(buf); | |
1398 | ||
54c7ca1b KW |
1399 | out: |
1400 | if (nbytes == aiocb->aio_nbytes) { | |
1401 | return 0; | |
1402 | } else if (nbytes >= 0 && nbytes < aiocb->aio_nbytes) { | |
1403 | if (aiocb->aio_type & QEMU_AIO_WRITE) { | |
1404 | return -EINVAL; | |
1405 | } else { | |
1406 | iov_memset(aiocb->io.iov, aiocb->io.niov, nbytes, | |
1407 | 0, aiocb->aio_nbytes - nbytes); | |
1408 | return 0; | |
1409 | } | |
1410 | } else { | |
1411 | assert(nbytes < 0); | |
1412 | return nbytes; | |
1413 | } | |
de81a169 PB |
1414 | } |
1415 | ||
8238010b | 1416 | #ifdef CONFIG_XFS |
97a2ae34 PB |
1417 | static int xfs_write_zeroes(BDRVRawState *s, int64_t offset, uint64_t bytes) |
1418 | { | |
1419 | struct xfs_flock64 fl; | |
bcb22555 | 1420 | int err; |
97a2ae34 PB |
1421 | |
1422 | memset(&fl, 0, sizeof(fl)); | |
1423 | fl.l_whence = SEEK_SET; | |
1424 | fl.l_start = offset; | |
1425 | fl.l_len = bytes; | |
1426 | ||
1427 | if (xfsctl(NULL, s->fd, XFS_IOC_ZERO_RANGE, &fl) < 0) { | |
bcb22555 | 1428 | err = errno; |
4f7d28d7 | 1429 | trace_file_xfs_write_zeroes(strerror(errno)); |
bcb22555 | 1430 | return -err; |
97a2ae34 PB |
1431 | } |
1432 | ||
1433 | return 0; | |
1434 | } | |
1435 | ||
8238010b PB |
1436 | static int xfs_discard(BDRVRawState *s, int64_t offset, uint64_t bytes) |
1437 | { | |
1438 | struct xfs_flock64 fl; | |
bcb22555 | 1439 | int err; |
8238010b PB |
1440 | |
1441 | memset(&fl, 0, sizeof(fl)); | |
1442 | fl.l_whence = SEEK_SET; | |
1443 | fl.l_start = offset; | |
1444 | fl.l_len = bytes; | |
1445 | ||
1446 | if (xfsctl(NULL, s->fd, XFS_IOC_UNRESVSP64, &fl) < 0) { | |
bcb22555 | 1447 | err = errno; |
4f7d28d7 | 1448 | trace_file_xfs_discard(strerror(errno)); |
bcb22555 | 1449 | return -err; |
8238010b PB |
1450 | } |
1451 | ||
1452 | return 0; | |
1453 | } | |
1454 | #endif | |
1455 | ||
1486df0e DL |
1456 | static int translate_err(int err) |
1457 | { | |
1458 | if (err == -ENODEV || err == -ENOSYS || err == -EOPNOTSUPP || | |
1459 | err == -ENOTTY) { | |
1460 | err = -ENOTSUP; | |
1461 | } | |
1462 | return err; | |
1463 | } | |
1464 | ||
d50d8222 | 1465 | #ifdef CONFIG_FALLOCATE |
0b991712 DL |
1466 | static int do_fallocate(int fd, int mode, off_t offset, off_t len) |
1467 | { | |
1468 | do { | |
1469 | if (fallocate(fd, mode, offset, len) == 0) { | |
1470 | return 0; | |
1471 | } | |
1472 | } while (errno == EINTR); | |
1473 | return translate_err(-errno); | |
1474 | } | |
1475 | #endif | |
1476 | ||
37cc9f7f | 1477 | static ssize_t handle_aiocb_write_zeroes_block(RawPosixAIOData *aiocb) |
97a2ae34 | 1478 | { |
37cc9f7f | 1479 | int ret = -ENOTSUP; |
97a2ae34 PB |
1480 | BDRVRawState *s = aiocb->bs->opaque; |
1481 | ||
37cc9f7f | 1482 | if (!s->has_write_zeroes) { |
97a2ae34 PB |
1483 | return -ENOTSUP; |
1484 | } | |
1485 | ||
97a2ae34 | 1486 | #ifdef BLKZEROOUT |
37cc9f7f DL |
1487 | do { |
1488 | uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes }; | |
1489 | if (ioctl(aiocb->aio_fildes, BLKZEROOUT, range) == 0) { | |
1490 | return 0; | |
97a2ae34 | 1491 | } |
37cc9f7f DL |
1492 | } while (errno == EINTR); |
1493 | ||
1494 | ret = translate_err(-errno); | |
97a2ae34 | 1495 | #endif |
97a2ae34 | 1496 | |
1486df0e | 1497 | if (ret == -ENOTSUP) { |
97a2ae34 | 1498 | s->has_write_zeroes = false; |
97a2ae34 PB |
1499 | } |
1500 | return ret; | |
1501 | } | |
1502 | ||
7154d8ae | 1503 | static int handle_aiocb_write_zeroes(void *opaque) |
37cc9f7f | 1504 | { |
7154d8ae | 1505 | RawPosixAIOData *aiocb = opaque; |
a6dcf097 | 1506 | #if defined(CONFIG_FALLOCATE) || defined(CONFIG_XFS) |
37cc9f7f | 1507 | BDRVRawState *s = aiocb->bs->opaque; |
a6dcf097 | 1508 | #endif |
70d9110b DL |
1509 | #ifdef CONFIG_FALLOCATE |
1510 | int64_t len; | |
1511 | #endif | |
37cc9f7f DL |
1512 | |
1513 | if (aiocb->aio_type & QEMU_AIO_BLKDEV) { | |
1514 | return handle_aiocb_write_zeroes_block(aiocb); | |
1515 | } | |
1516 | ||
1517 | #ifdef CONFIG_XFS | |
1518 | if (s->is_xfs) { | |
1519 | return xfs_write_zeroes(s, aiocb->aio_offset, aiocb->aio_nbytes); | |
1520 | } | |
1521 | #endif | |
1522 | ||
b953f075 DL |
1523 | #ifdef CONFIG_FALLOCATE_ZERO_RANGE |
1524 | if (s->has_write_zeroes) { | |
1525 | int ret = do_fallocate(s->fd, FALLOC_FL_ZERO_RANGE, | |
1526 | aiocb->aio_offset, aiocb->aio_nbytes); | |
1527 | if (ret == 0 || ret != -ENOTSUP) { | |
1528 | return ret; | |
1529 | } | |
1530 | s->has_write_zeroes = false; | |
1531 | } | |
1532 | #endif | |
1533 | ||
1cdc3239 DL |
1534 | #ifdef CONFIG_FALLOCATE_PUNCH_HOLE |
1535 | if (s->has_discard && s->has_fallocate) { | |
1536 | int ret = do_fallocate(s->fd, | |
1537 | FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, | |
1538 | aiocb->aio_offset, aiocb->aio_nbytes); | |
1539 | if (ret == 0) { | |
1540 | ret = do_fallocate(s->fd, 0, aiocb->aio_offset, aiocb->aio_nbytes); | |
1541 | if (ret == 0 || ret != -ENOTSUP) { | |
1542 | return ret; | |
1543 | } | |
1544 | s->has_fallocate = false; | |
1545 | } else if (ret != -ENOTSUP) { | |
1546 | return ret; | |
1547 | } else { | |
1548 | s->has_discard = false; | |
1549 | } | |
1550 | } | |
1551 | #endif | |
1552 | ||
d50d8222 | 1553 | #ifdef CONFIG_FALLOCATE |
70d9110b DL |
1554 | /* Last resort: we are trying to extend the file with zeroed data. This |
1555 | * can be done via fallocate(fd, 0) */ | |
1556 | len = bdrv_getlength(aiocb->bs); | |
1557 | if (s->has_fallocate && len >= 0 && aiocb->aio_offset >= len) { | |
d50d8222 DL |
1558 | int ret = do_fallocate(s->fd, 0, aiocb->aio_offset, aiocb->aio_nbytes); |
1559 | if (ret == 0 || ret != -ENOTSUP) { | |
1560 | return ret; | |
1561 | } | |
1562 | s->has_fallocate = false; | |
1563 | } | |
1564 | #endif | |
1565 | ||
37cc9f7f DL |
1566 | return -ENOTSUP; |
1567 | } | |
1568 | ||
7154d8ae | 1569 | static int handle_aiocb_write_zeroes_unmap(void *opaque) |
34fa110e | 1570 | { |
7154d8ae | 1571 | RawPosixAIOData *aiocb = opaque; |
34fa110e KW |
1572 | BDRVRawState *s G_GNUC_UNUSED = aiocb->bs->opaque; |
1573 | int ret; | |
1574 | ||
1575 | /* First try to write zeros and unmap at the same time */ | |
1576 | ||
1577 | #ifdef CONFIG_FALLOCATE_PUNCH_HOLE | |
1578 | ret = do_fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, | |
1579 | aiocb->aio_offset, aiocb->aio_nbytes); | |
1580 | if (ret != -ENOTSUP) { | |
1581 | return ret; | |
1582 | } | |
1583 | #endif | |
1584 | ||
1585 | #ifdef CONFIG_XFS | |
1586 | if (s->is_xfs) { | |
1587 | /* xfs_discard() guarantees that the discarded area reads as all-zero | |
1588 | * afterwards, so we can use it here. */ | |
1589 | return xfs_discard(s, aiocb->aio_offset, aiocb->aio_nbytes); | |
1590 | } | |
1591 | #endif | |
1592 | ||
1593 | /* If we couldn't manage to unmap while guaranteed that the area reads as | |
1594 | * all-zero afterwards, just write zeroes without unmapping */ | |
1595 | ret = handle_aiocb_write_zeroes(aiocb); | |
1596 | return ret; | |
1597 | } | |
1598 | ||
1efad060 FZ |
1599 | #ifndef HAVE_COPY_FILE_RANGE |
1600 | static off_t copy_file_range(int in_fd, off_t *in_off, int out_fd, | |
1601 | off_t *out_off, size_t len, unsigned int flags) | |
1602 | { | |
1603 | #ifdef __NR_copy_file_range | |
1604 | return syscall(__NR_copy_file_range, in_fd, in_off, out_fd, | |
1605 | out_off, len, flags); | |
1606 | #else | |
1607 | errno = ENOSYS; | |
1608 | return -1; | |
1609 | #endif | |
1610 | } | |
1611 | #endif | |
1612 | ||
58a209c4 | 1613 | static int handle_aiocb_copy_range(void *opaque) |
1efad060 | 1614 | { |
58a209c4 | 1615 | RawPosixAIOData *aiocb = opaque; |
1efad060 FZ |
1616 | uint64_t bytes = aiocb->aio_nbytes; |
1617 | off_t in_off = aiocb->aio_offset; | |
d57c44d0 | 1618 | off_t out_off = aiocb->copy_range.aio_offset2; |
1efad060 FZ |
1619 | |
1620 | while (bytes) { | |
1621 | ssize_t ret = copy_file_range(aiocb->aio_fildes, &in_off, | |
d57c44d0 | 1622 | aiocb->copy_range.aio_fd2, &out_off, |
1efad060 | 1623 | bytes, 0); |
ecc983a5 | 1624 | trace_file_copy_file_range(aiocb->bs, aiocb->aio_fildes, in_off, |
d57c44d0 KW |
1625 | aiocb->copy_range.aio_fd2, out_off, bytes, |
1626 | 0, ret); | |
c436e3d0 FZ |
1627 | if (ret == 0) { |
1628 | /* No progress (e.g. when beyond EOF), let the caller fall back to | |
1629 | * buffer I/O. */ | |
1630 | return -ENOSPC; | |
1efad060 FZ |
1631 | } |
1632 | if (ret < 0) { | |
c436e3d0 FZ |
1633 | switch (errno) { |
1634 | case ENOSYS: | |
1efad060 | 1635 | return -ENOTSUP; |
c436e3d0 FZ |
1636 | case EINTR: |
1637 | continue; | |
1638 | default: | |
1efad060 FZ |
1639 | return -errno; |
1640 | } | |
1641 | } | |
1efad060 FZ |
1642 | bytes -= ret; |
1643 | } | |
1644 | return 0; | |
1645 | } | |
1646 | ||
46ee0f46 | 1647 | static int handle_aiocb_discard(void *opaque) |
8238010b | 1648 | { |
46ee0f46 | 1649 | RawPosixAIOData *aiocb = opaque; |
8238010b PB |
1650 | int ret = -EOPNOTSUPP; |
1651 | BDRVRawState *s = aiocb->bs->opaque; | |
1652 | ||
7ce21016 PB |
1653 | if (!s->has_discard) { |
1654 | return -ENOTSUP; | |
8238010b PB |
1655 | } |
1656 | ||
1657 | if (aiocb->aio_type & QEMU_AIO_BLKDEV) { | |
1658 | #ifdef BLKDISCARD | |
1659 | do { | |
1660 | uint64_t range[2] = { aiocb->aio_offset, aiocb->aio_nbytes }; | |
1661 | if (ioctl(aiocb->aio_fildes, BLKDISCARD, range) == 0) { | |
1662 | return 0; | |
1663 | } | |
1664 | } while (errno == EINTR); | |
1665 | ||
1666 | ret = -errno; | |
1667 | #endif | |
1668 | } else { | |
1669 | #ifdef CONFIG_XFS | |
1670 | if (s->is_xfs) { | |
1671 | return xfs_discard(s, aiocb->aio_offset, aiocb->aio_nbytes); | |
1672 | } | |
1673 | #endif | |
1674 | ||
1675 | #ifdef CONFIG_FALLOCATE_PUNCH_HOLE | |
0b991712 DL |
1676 | ret = do_fallocate(s->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, |
1677 | aiocb->aio_offset, aiocb->aio_nbytes); | |
8238010b PB |
1678 | #endif |
1679 | } | |
1680 | ||
1486df0e DL |
1681 | ret = translate_err(ret); |
1682 | if (ret == -ENOTSUP) { | |
7ce21016 | 1683 | s->has_discard = false; |
8238010b PB |
1684 | } |
1685 | return ret; | |
1686 | } | |
1687 | ||
29cb4c01 | 1688 | static int handle_aiocb_truncate(void *opaque) |
93f4e2ff | 1689 | { |
29cb4c01 | 1690 | RawPosixAIOData *aiocb = opaque; |
93f4e2ff KW |
1691 | int result = 0; |
1692 | int64_t current_length = 0; | |
1693 | char *buf = NULL; | |
1694 | struct stat st; | |
1695 | int fd = aiocb->aio_fildes; | |
1696 | int64_t offset = aiocb->aio_offset; | |
d57c44d0 KW |
1697 | PreallocMode prealloc = aiocb->truncate.prealloc; |
1698 | Error **errp = aiocb->truncate.errp; | |
93f4e2ff KW |
1699 | |
1700 | if (fstat(fd, &st) < 0) { | |
1701 | result = -errno; | |
1702 | error_setg_errno(errp, -result, "Could not stat file"); | |
1703 | return result; | |
1704 | } | |
1705 | ||
1706 | current_length = st.st_size; | |
d57c44d0 | 1707 | if (current_length > offset && prealloc != PREALLOC_MODE_OFF) { |
93f4e2ff KW |
1708 | error_setg(errp, "Cannot use preallocation for shrinking files"); |
1709 | return -ENOTSUP; | |
1710 | } | |
1711 | ||
d57c44d0 | 1712 | switch (prealloc) { |
93f4e2ff KW |
1713 | #ifdef CONFIG_POSIX_FALLOCATE |
1714 | case PREALLOC_MODE_FALLOC: | |
1715 | /* | |
1716 | * Truncating before posix_fallocate() makes it about twice slower on | |
1717 | * file systems that do not support fallocate(), trying to check if a | |
1718 | * block is allocated before allocating it, so don't do that here. | |
1719 | */ | |
1720 | if (offset != current_length) { | |
1721 | result = -posix_fallocate(fd, current_length, | |
1722 | offset - current_length); | |
1723 | if (result != 0) { | |
1724 | /* posix_fallocate() doesn't set errno. */ | |
1725 | error_setg_errno(errp, -result, | |
1726 | "Could not preallocate new data"); | |
1727 | } | |
1728 | } else { | |
1729 | result = 0; | |
1730 | } | |
1731 | goto out; | |
1732 | #endif | |
1733 | case PREALLOC_MODE_FULL: | |
1734 | { | |
1735 | int64_t num = 0, left = offset - current_length; | |
1736 | off_t seek_result; | |
1737 | ||
1738 | /* | |
1739 | * Knowing the final size from the beginning could allow the file | |
1740 | * system driver to do less allocations and possibly avoid | |
1741 | * fragmentation of the file. | |
1742 | */ | |
1743 | if (ftruncate(fd, offset) != 0) { | |
1744 | result = -errno; | |
1745 | error_setg_errno(errp, -result, "Could not resize file"); | |
1746 | goto out; | |
1747 | } | |
1748 | ||
1749 | buf = g_malloc0(65536); | |
1750 | ||
1751 | seek_result = lseek(fd, current_length, SEEK_SET); | |
1752 | if (seek_result < 0) { | |
1753 | result = -errno; | |
1754 | error_setg_errno(errp, -result, | |
1755 | "Failed to seek to the old end of file"); | |
1756 | goto out; | |
1757 | } | |
1758 | ||
1759 | while (left > 0) { | |
1760 | num = MIN(left, 65536); | |
1761 | result = write(fd, buf, num); | |
1762 | if (result < 0) { | |
a1c81f4f FZ |
1763 | if (errno == EINTR) { |
1764 | continue; | |
1765 | } | |
93f4e2ff KW |
1766 | result = -errno; |
1767 | error_setg_errno(errp, -result, | |
1768 | "Could not write zeros for preallocation"); | |
1769 | goto out; | |
1770 | } | |
1771 | left -= result; | |
1772 | } | |
1773 | if (result >= 0) { | |
1774 | result = fsync(fd); | |
1775 | if (result < 0) { | |
1776 | result = -errno; | |
1777 | error_setg_errno(errp, -result, | |
1778 | "Could not flush file to disk"); | |
1779 | goto out; | |
1780 | } | |
1781 | } | |
1782 | goto out; | |
1783 | } | |
1784 | case PREALLOC_MODE_OFF: | |
1785 | if (ftruncate(fd, offset) != 0) { | |
1786 | result = -errno; | |
1787 | error_setg_errno(errp, -result, "Could not resize file"); | |
1788 | } | |
1789 | return result; | |
1790 | default: | |
1791 | result = -ENOTSUP; | |
1792 | error_setg(errp, "Unsupported preallocation mode: %s", | |
d57c44d0 | 1793 | PreallocMode_str(prealloc)); |
93f4e2ff KW |
1794 | return result; |
1795 | } | |
1796 | ||
1797 | out: | |
1798 | if (result < 0) { | |
1799 | if (ftruncate(fd, current_length) < 0) { | |
1800 | error_report("Failed to restore old file length: %s", | |
1801 | strerror(errno)); | |
1802 | } | |
1803 | } | |
1804 | ||
1805 | g_free(buf); | |
1806 | return result; | |
1807 | } | |
1808 | ||
5d5de250 KW |
1809 | static int coroutine_fn raw_thread_pool_submit(BlockDriverState *bs, |
1810 | ThreadPoolFunc func, void *arg) | |
1811 | { | |
1812 | /* @bs can be NULL, bdrv_get_aio_context() returns the main context then */ | |
1813 | ThreadPool *pool = aio_get_thread_pool(bdrv_get_aio_context(bs)); | |
1814 | return thread_pool_submit_co(pool, func, arg); | |
1815 | } | |
1816 | ||
9d52aa3c KW |
1817 | static int coroutine_fn raw_co_prw(BlockDriverState *bs, uint64_t offset, |
1818 | uint64_t bytes, QEMUIOVector *qiov, int type) | |
83f64091 | 1819 | { |
ce1a14dc | 1820 | BDRVRawState *s = bs->opaque; |
999e6b69 | 1821 | RawPosixAIOData acb; |
ce1a14dc | 1822 | |
19cb3738 | 1823 | if (fd_open(bs) < 0) |
2174f12b | 1824 | return -EIO; |
19cb3738 | 1825 | |
f141eafe | 1826 | /* |
3cad8307 RPM |
1827 | * Check if the underlying device requires requests to be aligned, |
1828 | * and if the request we are trying to submit is aligned or not. | |
1829 | * If this is the case tell the low-level driver that it needs | |
1830 | * to copy the buffer. | |
f141eafe | 1831 | */ |
3cad8307 | 1832 | if (s->needs_alignment) { |
c53b1c51 | 1833 | if (!bdrv_qiov_is_aligned(bs, qiov)) { |
5c6c3a6c | 1834 | type |= QEMU_AIO_MISALIGNED; |
e44bd6fc | 1835 | #ifdef CONFIG_LINUX_AIO |
0a4279d9 | 1836 | } else if (s->use_linux_aio) { |
0187f5c9 | 1837 | LinuxAioState *aio = aio_get_linux_aio(bdrv_get_aio_context(bs)); |
9d52aa3c | 1838 | assert(qiov->size == bytes); |
0187f5c9 | 1839 | return laio_co_submit(bs, aio, s->fd, offset, qiov, type); |
e44bd6fc | 1840 | #endif |
5c6c3a6c | 1841 | } |
9ef91a67 | 1842 | } |
f141eafe | 1843 | |
999e6b69 KW |
1844 | acb = (RawPosixAIOData) { |
1845 | .bs = bs, | |
1846 | .aio_fildes = s->fd, | |
1847 | .aio_type = type, | |
1848 | .aio_offset = offset, | |
1849 | .aio_nbytes = bytes, | |
1850 | .io = { | |
1851 | .iov = qiov->iov, | |
1852 | .niov = qiov->niov, | |
1853 | }, | |
1854 | }; | |
1855 | ||
1856 | assert(qiov->size == bytes); | |
1857 | return raw_thread_pool_submit(bs, handle_aiocb_rw, &acb); | |
2174f12b KW |
1858 | } |
1859 | ||
9d52aa3c KW |
1860 | static int coroutine_fn raw_co_preadv(BlockDriverState *bs, uint64_t offset, |
1861 | uint64_t bytes, QEMUIOVector *qiov, | |
1862 | int flags) | |
2174f12b | 1863 | { |
9d52aa3c | 1864 | return raw_co_prw(bs, offset, bytes, qiov, QEMU_AIO_READ); |
2174f12b KW |
1865 | } |
1866 | ||
9d52aa3c KW |
1867 | static int coroutine_fn raw_co_pwritev(BlockDriverState *bs, uint64_t offset, |
1868 | uint64_t bytes, QEMUIOVector *qiov, | |
1869 | int flags) | |
2174f12b | 1870 | { |
9d52aa3c KW |
1871 | assert(flags == 0); |
1872 | return raw_co_prw(bs, offset, bytes, qiov, QEMU_AIO_WRITE); | |
83f64091 FB |
1873 | } |
1874 | ||
1b3abdcc ML |
1875 | static void raw_aio_plug(BlockDriverState *bs) |
1876 | { | |
1877 | #ifdef CONFIG_LINUX_AIO | |
0a4279d9 KW |
1878 | BDRVRawState *s = bs->opaque; |
1879 | if (s->use_linux_aio) { | |
0187f5c9 PB |
1880 | LinuxAioState *aio = aio_get_linux_aio(bdrv_get_aio_context(bs)); |
1881 | laio_io_plug(bs, aio); | |
1b3abdcc ML |
1882 | } |
1883 | #endif | |
1884 | } | |
1885 | ||
1886 | static void raw_aio_unplug(BlockDriverState *bs) | |
1887 | { | |
1888 | #ifdef CONFIG_LINUX_AIO | |
0a4279d9 KW |
1889 | BDRVRawState *s = bs->opaque; |
1890 | if (s->use_linux_aio) { | |
0187f5c9 PB |
1891 | LinuxAioState *aio = aio_get_linux_aio(bdrv_get_aio_context(bs)); |
1892 | laio_io_unplug(bs, aio); | |
1b3abdcc ML |
1893 | } |
1894 | #endif | |
1895 | } | |
1896 | ||
33d70fb6 | 1897 | static int raw_co_flush_to_disk(BlockDriverState *bs) |
b2e12bc6 CH |
1898 | { |
1899 | BDRVRawState *s = bs->opaque; | |
06dc9bd5 | 1900 | RawPosixAIOData acb; |
33d70fb6 | 1901 | int ret; |
b2e12bc6 | 1902 | |
33d70fb6 KW |
1903 | ret = fd_open(bs); |
1904 | if (ret < 0) { | |
1905 | return ret; | |
1906 | } | |
b2e12bc6 | 1907 | |
06dc9bd5 KW |
1908 | acb = (RawPosixAIOData) { |
1909 | .bs = bs, | |
1910 | .aio_fildes = s->fd, | |
1911 | .aio_type = QEMU_AIO_FLUSH, | |
1912 | }; | |
1913 | ||
1914 | return raw_thread_pool_submit(bs, handle_aiocb_flush, &acb); | |
b2e12bc6 CH |
1915 | } |
1916 | ||
ed6e2161 NA |
1917 | static void raw_aio_attach_aio_context(BlockDriverState *bs, |
1918 | AioContext *new_context) | |
1919 | { | |
1920 | #ifdef CONFIG_LINUX_AIO | |
1921 | BDRVRawState *s = bs->opaque; | |
1922 | if (s->use_linux_aio) { | |
1923 | Error *local_err; | |
1924 | if (!aio_setup_linux_aio(new_context, &local_err)) { | |
1925 | error_reportf_err(local_err, "Unable to use native AIO, " | |
1926 | "falling back to thread pool: "); | |
1927 | s->use_linux_aio = false; | |
1928 | } | |
1929 | } | |
1930 | #endif | |
1931 | } | |
1932 | ||
83f64091 FB |
1933 | static void raw_close(BlockDriverState *bs) |
1934 | { | |
1935 | BDRVRawState *s = bs->opaque; | |
c2f3426c | 1936 | |
19cb3738 | 1937 | if (s->fd >= 0) { |
2e1e79da | 1938 | qemu_close(s->fd); |
19cb3738 FB |
1939 | s->fd = -1; |
1940 | } | |
83f64091 FB |
1941 | } |
1942 | ||
d0bc9e5d HR |
1943 | /** |
1944 | * Truncates the given regular file @fd to @offset and, when growing, fills the | |
1945 | * new space according to @prealloc. | |
1946 | * | |
1947 | * Returns: 0 on success, -errno on failure. | |
1948 | */ | |
93f4e2ff KW |
1949 | static int coroutine_fn |
1950 | raw_regular_truncate(BlockDriverState *bs, int fd, int64_t offset, | |
1951 | PreallocMode prealloc, Error **errp) | |
9f63b07e | 1952 | { |
29cb4c01 | 1953 | RawPosixAIOData acb; |
d0bc9e5d | 1954 | |
29cb4c01 | 1955 | acb = (RawPosixAIOData) { |
93f4e2ff KW |
1956 | .bs = bs, |
1957 | .aio_fildes = fd, | |
1958 | .aio_type = QEMU_AIO_TRUNCATE, | |
1959 | .aio_offset = offset, | |
d57c44d0 KW |
1960 | .truncate = { |
1961 | .prealloc = prealloc, | |
1962 | .errp = errp, | |
1963 | }, | |
93f4e2ff | 1964 | }; |
d0bc9e5d | 1965 | |
29cb4c01 | 1966 | return raw_thread_pool_submit(bs, handle_aiocb_truncate, &acb); |
9f63b07e HR |
1967 | } |
1968 | ||
061ca8a3 KW |
1969 | static int coroutine_fn raw_co_truncate(BlockDriverState *bs, int64_t offset, |
1970 | PreallocMode prealloc, Error **errp) | |
83f64091 FB |
1971 | { |
1972 | BDRVRawState *s = bs->opaque; | |
55b949c8 | 1973 | struct stat st; |
f59adb32 | 1974 | int ret; |
55b949c8 CH |
1975 | |
1976 | if (fstat(s->fd, &st)) { | |
f59adb32 HR |
1977 | ret = -errno; |
1978 | error_setg_errno(errp, -ret, "Failed to fstat() the file"); | |
1979 | return ret; | |
55b949c8 CH |
1980 | } |
1981 | ||
1982 | if (S_ISREG(st.st_mode)) { | |
93f4e2ff | 1983 | return raw_regular_truncate(bs, s->fd, offset, prealloc, errp); |
35d72602 HR |
1984 | } |
1985 | ||
1986 | if (prealloc != PREALLOC_MODE_OFF) { | |
1987 | error_setg(errp, "Preallocation mode '%s' unsupported for this " | |
977c736f | 1988 | "non-regular file", PreallocMode_str(prealloc)); |
35d72602 HR |
1989 | return -ENOTSUP; |
1990 | } | |
1991 | ||
1992 | if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) { | |
f59adb32 HR |
1993 | if (offset > raw_getlength(bs)) { |
1994 | error_setg(errp, "Cannot grow device files"); | |
1995 | return -EINVAL; | |
1996 | } | |
55b949c8 | 1997 | } else { |
f59adb32 | 1998 | error_setg(errp, "Resizing this file is not supported"); |
55b949c8 CH |
1999 | return -ENOTSUP; |
2000 | } | |
2001 | ||
83f64091 FB |
2002 | return 0; |
2003 | } | |
2004 | ||
128ab2ff BS |
2005 | #ifdef __OpenBSD__ |
2006 | static int64_t raw_getlength(BlockDriverState *bs) | |
2007 | { | |
2008 | BDRVRawState *s = bs->opaque; | |
2009 | int fd = s->fd; | |
2010 | struct stat st; | |
2011 | ||
2012 | if (fstat(fd, &st)) | |
aa729704 | 2013 | return -errno; |
128ab2ff BS |
2014 | if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) { |
2015 | struct disklabel dl; | |
2016 | ||
2017 | if (ioctl(fd, DIOCGDINFO, &dl)) | |
aa729704 | 2018 | return -errno; |
128ab2ff BS |
2019 | return (uint64_t)dl.d_secsize * |
2020 | dl.d_partitions[DISKPART(st.st_rdev)].p_size; | |
2021 | } else | |
2022 | return st.st_size; | |
2023 | } | |
d1f6fd8d CE |
2024 | #elif defined(__NetBSD__) |
2025 | static int64_t raw_getlength(BlockDriverState *bs) | |
2026 | { | |
2027 | BDRVRawState *s = bs->opaque; | |
2028 | int fd = s->fd; | |
2029 | struct stat st; | |
2030 | ||
2031 | if (fstat(fd, &st)) | |
aa729704 | 2032 | return -errno; |
d1f6fd8d CE |
2033 | if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) { |
2034 | struct dkwedge_info dkw; | |
2035 | ||
2036 | if (ioctl(fd, DIOCGWEDGEINFO, &dkw) != -1) { | |
2037 | return dkw.dkw_size * 512; | |
2038 | } else { | |
2039 | struct disklabel dl; | |
2040 | ||
2041 | if (ioctl(fd, DIOCGDINFO, &dl)) | |
aa729704 | 2042 | return -errno; |
d1f6fd8d CE |
2043 | return (uint64_t)dl.d_secsize * |
2044 | dl.d_partitions[DISKPART(st.st_rdev)].p_size; | |
2045 | } | |
2046 | } else | |
2047 | return st.st_size; | |
2048 | } | |
50779cc2 CH |
2049 | #elif defined(__sun__) |
2050 | static int64_t raw_getlength(BlockDriverState *bs) | |
2051 | { | |
2052 | BDRVRawState *s = bs->opaque; | |
2053 | struct dk_minfo minfo; | |
2054 | int ret; | |
aa729704 | 2055 | int64_t size; |
50779cc2 CH |
2056 | |
2057 | ret = fd_open(bs); | |
2058 | if (ret < 0) { | |
2059 | return ret; | |
2060 | } | |
2061 | ||
2062 | /* | |
2063 | * Use the DKIOCGMEDIAINFO ioctl to read the size. | |
2064 | */ | |
2065 | ret = ioctl(s->fd, DKIOCGMEDIAINFO, &minfo); | |
2066 | if (ret != -1) { | |
2067 | return minfo.dki_lbsize * minfo.dki_capacity; | |
2068 | } | |
2069 | ||
2070 | /* | |
2071 | * There are reports that lseek on some devices fails, but | |
2072 | * irc discussion said that contingency on contingency was overkill. | |
2073 | */ | |
aa729704 MA |
2074 | size = lseek(s->fd, 0, SEEK_END); |
2075 | if (size < 0) { | |
2076 | return -errno; | |
2077 | } | |
2078 | return size; | |
50779cc2 CH |
2079 | } |
2080 | #elif defined(CONFIG_BSD) | |
2081 | static int64_t raw_getlength(BlockDriverState *bs) | |
83f64091 FB |
2082 | { |
2083 | BDRVRawState *s = bs->opaque; | |
2084 | int fd = s->fd; | |
2085 | int64_t size; | |
83f64091 | 2086 | struct stat sb; |
a167ba50 | 2087 | #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__) |
9f23011a | 2088 | int reopened = 0; |
83f64091 | 2089 | #endif |
19cb3738 FB |
2090 | int ret; |
2091 | ||
2092 | ret = fd_open(bs); | |
2093 | if (ret < 0) | |
2094 | return ret; | |
83f64091 | 2095 | |
a167ba50 | 2096 | #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__) |
9f23011a BS |
2097 | again: |
2098 | #endif | |
83f64091 FB |
2099 | if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) { |
2100 | #ifdef DIOCGMEDIASIZE | |
7d37435b | 2101 | if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size)) |
c5e97233 BS |
2102 | #elif defined(DIOCGPART) |
2103 | { | |
2104 | struct partinfo pi; | |
2105 | if (ioctl(fd, DIOCGPART, &pi) == 0) | |
2106 | size = pi.media_size; | |
2107 | else | |
2108 | size = 0; | |
2109 | } | |
2110 | if (size == 0) | |
83f64091 | 2111 | #endif |
83affaa6 | 2112 | #if defined(__APPLE__) && defined(__MACH__) |
728dacbd JA |
2113 | { |
2114 | uint64_t sectors = 0; | |
2115 | uint32_t sector_size = 0; | |
2116 | ||
2117 | if (ioctl(fd, DKIOCGETBLOCKCOUNT, §ors) == 0 | |
2118 | && ioctl(fd, DKIOCGETBLOCKSIZE, §or_size) == 0) { | |
2119 | size = sectors * sector_size; | |
2120 | } else { | |
2121 | size = lseek(fd, 0LL, SEEK_END); | |
2122 | if (size < 0) { | |
2123 | return -errno; | |
2124 | } | |
2125 | } | |
2126 | } | |
83f64091 FB |
2127 | #else |
2128 | size = lseek(fd, 0LL, SEEK_END); | |
aa729704 MA |
2129 | if (size < 0) { |
2130 | return -errno; | |
2131 | } | |
9f23011a | 2132 | #endif |
a167ba50 | 2133 | #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) |
9f23011a BS |
2134 | switch(s->type) { |
2135 | case FTYPE_CD: | |
2136 | /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */ | |
2137 | if (size == 2048LL * (unsigned)-1) | |
2138 | size = 0; | |
2139 | /* XXX no disc? maybe we need to reopen... */ | |
f3a5d3f8 | 2140 | if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) { |
9f23011a BS |
2141 | reopened = 1; |
2142 | goto again; | |
2143 | } | |
2144 | } | |
83f64091 | 2145 | #endif |
50779cc2 | 2146 | } else { |
83f64091 | 2147 | size = lseek(fd, 0, SEEK_END); |
aa729704 MA |
2148 | if (size < 0) { |
2149 | return -errno; | |
2150 | } | |
83f64091 | 2151 | } |
83f64091 FB |
2152 | return size; |
2153 | } | |
50779cc2 CH |
2154 | #else |
2155 | static int64_t raw_getlength(BlockDriverState *bs) | |
2156 | { | |
2157 | BDRVRawState *s = bs->opaque; | |
2158 | int ret; | |
aa729704 | 2159 | int64_t size; |
50779cc2 CH |
2160 | |
2161 | ret = fd_open(bs); | |
2162 | if (ret < 0) { | |
2163 | return ret; | |
2164 | } | |
2165 | ||
aa729704 MA |
2166 | size = lseek(s->fd, 0, SEEK_END); |
2167 | if (size < 0) { | |
2168 | return -errno; | |
2169 | } | |
2170 | return size; | |
50779cc2 | 2171 | } |
128ab2ff | 2172 | #endif |
83f64091 | 2173 | |
4a1d5e1f FZ |
2174 | static int64_t raw_get_allocated_file_size(BlockDriverState *bs) |
2175 | { | |
2176 | struct stat st; | |
2177 | BDRVRawState *s = bs->opaque; | |
2178 | ||
2179 | if (fstat(s->fd, &st) < 0) { | |
2180 | return -errno; | |
2181 | } | |
2182 | return (int64_t)st.st_blocks * 512; | |
2183 | } | |
2184 | ||
93f4e2ff KW |
2185 | static int coroutine_fn |
2186 | raw_co_create(BlockdevCreateOptions *options, Error **errp) | |
83f64091 | 2187 | { |
927f11e1 | 2188 | BlockdevCreateOptionsFile *file_opts; |
7c20c808 | 2189 | Error *local_err = NULL; |
83f64091 | 2190 | int fd; |
d815efca | 2191 | uint64_t perm, shared; |
1e37d059 | 2192 | int result = 0; |
83f64091 | 2193 | |
927f11e1 KW |
2194 | /* Validate options and set default values */ |
2195 | assert(options->driver == BLOCKDEV_DRIVER_FILE); | |
2196 | file_opts = &options->u.file; | |
464d9f64 | 2197 | |
927f11e1 KW |
2198 | if (!file_opts->has_nocow) { |
2199 | file_opts->nocow = false; | |
2200 | } | |
2201 | if (!file_opts->has_preallocation) { | |
2202 | file_opts->preallocation = PREALLOC_MODE_OFF; | |
06247428 | 2203 | } |
83f64091 | 2204 | |
927f11e1 | 2205 | /* Create file */ |
b8cf1913 | 2206 | fd = qemu_open(file_opts->filename, O_RDWR | O_CREAT | O_BINARY, 0644); |
1e37d059 SW |
2207 | if (fd < 0) { |
2208 | result = -errno; | |
e428e439 | 2209 | error_setg_errno(errp, -result, "Could not create file"); |
06247428 HT |
2210 | goto out; |
2211 | } | |
2212 | ||
b8cf1913 HR |
2213 | /* Take permissions: We want to discard everything, so we need |
2214 | * BLK_PERM_WRITE; and truncation to the desired size requires | |
2215 | * BLK_PERM_RESIZE. | |
2216 | * On the other hand, we cannot share the RESIZE permission | |
2217 | * because we promise that after this function, the file has the | |
2218 | * size given in the options. If someone else were to resize it | |
2219 | * concurrently, we could not guarantee that. | |
2220 | * Note that after this function, we can no longer guarantee that | |
2221 | * the file is not touched by a third party, so it may be resized | |
2222 | * then. */ | |
2223 | perm = BLK_PERM_WRITE | BLK_PERM_RESIZE; | |
2224 | shared = BLK_PERM_ALL & ~BLK_PERM_RESIZE; | |
2225 | ||
2226 | /* Step one: Take locks */ | |
2996ffad | 2227 | result = raw_apply_lock_bytes(NULL, fd, perm, ~shared, false, errp); |
b8cf1913 HR |
2228 | if (result < 0) { |
2229 | goto out_close; | |
2230 | } | |
2231 | ||
2232 | /* Step two: Check that nobody else has taken conflicting locks */ | |
2233 | result = raw_check_lock_bytes(fd, perm, shared, errp); | |
2234 | if (result < 0) { | |
b857431d FZ |
2235 | error_append_hint(errp, |
2236 | "Is another process using the image [%s]?\n", | |
2237 | file_opts->filename); | |
7c20c808 | 2238 | goto out_unlock; |
b8cf1913 HR |
2239 | } |
2240 | ||
2241 | /* Clear the file by truncating it to 0 */ | |
93f4e2ff | 2242 | result = raw_regular_truncate(NULL, fd, 0, PREALLOC_MODE_OFF, errp); |
b8cf1913 | 2243 | if (result < 0) { |
7c20c808 | 2244 | goto out_unlock; |
b8cf1913 HR |
2245 | } |
2246 | ||
927f11e1 | 2247 | if (file_opts->nocow) { |
4ab15590 | 2248 | #ifdef __linux__ |
06247428 HT |
2249 | /* Set NOCOW flag to solve performance issue on fs like btrfs. |
2250 | * This is an optimisation. The FS_IOC_SETFLAGS ioctl return value | |
2251 | * will be ignored since any failure of this operation should not | |
2252 | * block the left work. | |
2253 | */ | |
2254 | int attr; | |
2255 | if (ioctl(fd, FS_IOC_GETFLAGS, &attr) == 0) { | |
2256 | attr |= FS_NOCOW_FL; | |
2257 | ioctl(fd, FS_IOC_SETFLAGS, &attr); | |
4ab15590 | 2258 | } |
06247428 HT |
2259 | #endif |
2260 | } | |
2261 | ||
b8cf1913 HR |
2262 | /* Resize and potentially preallocate the file to the desired |
2263 | * final size */ | |
93f4e2ff KW |
2264 | result = raw_regular_truncate(NULL, fd, file_opts->size, |
2265 | file_opts->preallocation, errp); | |
9f63b07e | 2266 | if (result < 0) { |
7c20c808 HR |
2267 | goto out_unlock; |
2268 | } | |
2269 | ||
2270 | out_unlock: | |
2996ffad | 2271 | raw_apply_lock_bytes(NULL, fd, 0, 0, true, &local_err); |
7c20c808 HR |
2272 | if (local_err) { |
2273 | /* The above call should not fail, and if it does, that does | |
2274 | * not mean the whole creation operation has failed. So | |
2275 | * report it the user for their convenience, but do not report | |
2276 | * it to the caller. */ | |
db0754df | 2277 | warn_report_err(local_err); |
1e37d059 | 2278 | } |
06247428 | 2279 | |
5a1dad9d | 2280 | out_close: |
06247428 HT |
2281 | if (qemu_close(fd) != 0 && result == 0) { |
2282 | result = -errno; | |
2283 | error_setg_errno(errp, -result, "Could not close the new file"); | |
2284 | } | |
2285 | out: | |
1e37d059 | 2286 | return result; |
83f64091 FB |
2287 | } |
2288 | ||
927f11e1 KW |
2289 | static int coroutine_fn raw_co_create_opts(const char *filename, QemuOpts *opts, |
2290 | Error **errp) | |
2291 | { | |
2292 | BlockdevCreateOptions options; | |
2293 | int64_t total_size = 0; | |
2294 | bool nocow = false; | |
2295 | PreallocMode prealloc; | |
2296 | char *buf = NULL; | |
2297 | Error *local_err = NULL; | |
2298 | ||
2299 | /* Skip file: protocol prefix */ | |
2300 | strstart(filename, "file:", &filename); | |
2301 | ||
2302 | /* Read out options */ | |
2303 | total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0), | |
2304 | BDRV_SECTOR_SIZE); | |
2305 | nocow = qemu_opt_get_bool(opts, BLOCK_OPT_NOCOW, false); | |
2306 | buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); | |
2307 | prealloc = qapi_enum_parse(&PreallocMode_lookup, buf, | |
2308 | PREALLOC_MODE_OFF, &local_err); | |
2309 | g_free(buf); | |
2310 | if (local_err) { | |
2311 | error_propagate(errp, local_err); | |
2312 | return -EINVAL; | |
2313 | } | |
2314 | ||
2315 | options = (BlockdevCreateOptions) { | |
2316 | .driver = BLOCKDEV_DRIVER_FILE, | |
2317 | .u.file = { | |
2318 | .filename = (char *) filename, | |
2319 | .size = total_size, | |
2320 | .has_preallocation = true, | |
2321 | .preallocation = prealloc, | |
2322 | .has_nocow = true, | |
2323 | .nocow = nocow, | |
2324 | }, | |
2325 | }; | |
2326 | return raw_co_create(&options, errp); | |
2327 | } | |
2328 | ||
d1f06fe6 MA |
2329 | /* |
2330 | * Find allocation range in @bs around offset @start. | |
2331 | * May change underlying file descriptor's file offset. | |
2332 | * If @start is not in a hole, store @start in @data, and the | |
2333 | * beginning of the next hole in @hole, and return 0. | |
2334 | * If @start is in a non-trailing hole, store @start in @hole and the | |
2335 | * beginning of the next non-hole in @data, and return 0. | |
2336 | * If @start is in a trailing hole or beyond EOF, return -ENXIO. | |
2337 | * If we can't find out, return a negative errno other than -ENXIO. | |
2338 | */ | |
2339 | static int find_allocation(BlockDriverState *bs, off_t start, | |
2340 | off_t *data, off_t *hole) | |
4f11aa8a HR |
2341 | { |
2342 | #if defined SEEK_HOLE && defined SEEK_DATA | |
94282e71 | 2343 | BDRVRawState *s = bs->opaque; |
d1f06fe6 | 2344 | off_t offs; |
94282e71 | 2345 | |
d1f06fe6 MA |
2346 | /* |
2347 | * SEEK_DATA cases: | |
2348 | * D1. offs == start: start is in data | |
2349 | * D2. offs > start: start is in a hole, next data at offs | |
2350 | * D3. offs < 0, errno = ENXIO: either start is in a trailing hole | |
2351 | * or start is beyond EOF | |
2352 | * If the latter happens, the file has been truncated behind | |
2353 | * our back since we opened it. All bets are off then. | |
2354 | * Treating like a trailing hole is simplest. | |
2355 | * D4. offs < 0, errno != ENXIO: we learned nothing | |
2356 | */ | |
2357 | offs = lseek(s->fd, start, SEEK_DATA); | |
2358 | if (offs < 0) { | |
2359 | return -errno; /* D3 or D4 */ | |
2360 | } | |
a03083a0 JC |
2361 | |
2362 | if (offs < start) { | |
2363 | /* This is not a valid return by lseek(). We are safe to just return | |
2364 | * -EIO in this case, and we'll treat it like D4. */ | |
2365 | return -EIO; | |
2366 | } | |
d1f06fe6 MA |
2367 | |
2368 | if (offs > start) { | |
2369 | /* D2: in hole, next data at offs */ | |
2370 | *hole = start; | |
2371 | *data = offs; | |
2372 | return 0; | |
5500316d PB |
2373 | } |
2374 | ||
d1f06fe6 MA |
2375 | /* D1: in data, end not yet known */ |
2376 | ||
2377 | /* | |
2378 | * SEEK_HOLE cases: | |
2379 | * H1. offs == start: start is in a hole | |
2380 | * If this happens here, a hole has been dug behind our back | |
2381 | * since the previous lseek(). | |
2382 | * H2. offs > start: either start is in data, next hole at offs, | |
2383 | * or start is in trailing hole, EOF at offs | |
2384 | * Linux treats trailing holes like any other hole: offs == | |
2385 | * start. Solaris seeks to EOF instead: offs > start (blech). | |
2386 | * If that happens here, a hole has been dug behind our back | |
2387 | * since the previous lseek(). | |
2388 | * H3. offs < 0, errno = ENXIO: start is beyond EOF | |
2389 | * If this happens, the file has been truncated behind our | |
2390 | * back since we opened it. Treat it like a trailing hole. | |
2391 | * H4. offs < 0, errno != ENXIO: we learned nothing | |
2392 | * Pretend we know nothing at all, i.e. "forget" about D1. | |
2393 | */ | |
2394 | offs = lseek(s->fd, start, SEEK_HOLE); | |
2395 | if (offs < 0) { | |
2396 | return -errno; /* D1 and (H3 or H4) */ | |
2397 | } | |
a03083a0 JC |
2398 | |
2399 | if (offs < start) { | |
2400 | /* This is not a valid return by lseek(). We are safe to just return | |
2401 | * -EIO in this case, and we'll treat it like H4. */ | |
2402 | return -EIO; | |
2403 | } | |
d1f06fe6 MA |
2404 | |
2405 | if (offs > start) { | |
2406 | /* | |
2407 | * D1 and H2: either in data, next hole at offs, or it was in | |
2408 | * data but is now in a trailing hole. In the latter case, | |
2409 | * all bets are off. Treating it as if it there was data all | |
2410 | * the way to EOF is safe, so simply do that. | |
2411 | */ | |
4f11aa8a | 2412 | *data = start; |
d1f06fe6 MA |
2413 | *hole = offs; |
2414 | return 0; | |
5500316d | 2415 | } |
4f11aa8a | 2416 | |
d1f06fe6 MA |
2417 | /* D1 and H1 */ |
2418 | return -EBUSY; | |
5500316d | 2419 | #else |
4f11aa8a | 2420 | return -ENOTSUP; |
5500316d | 2421 | #endif |
4f11aa8a HR |
2422 | } |
2423 | ||
2424 | /* | |
a290f085 | 2425 | * Returns the allocation status of the specified offset. |
4f11aa8a | 2426 | * |
a290f085 | 2427 | * The block layer guarantees 'offset' and 'bytes' are within bounds. |
4f11aa8a | 2428 | * |
a290f085 EB |
2429 | * 'pnum' is set to the number of bytes (including and immediately following |
2430 | * the specified offset) that are known to be in the same | |
4f11aa8a HR |
2431 | * allocated/unallocated state. |
2432 | * | |
a290f085 | 2433 | * 'bytes' is the max value 'pnum' should be set to. |
4f11aa8a | 2434 | */ |
a290f085 EB |
2435 | static int coroutine_fn raw_co_block_status(BlockDriverState *bs, |
2436 | bool want_zero, | |
2437 | int64_t offset, | |
2438 | int64_t bytes, int64_t *pnum, | |
2439 | int64_t *map, | |
2440 | BlockDriverState **file) | |
2441 | { | |
2442 | off_t data = 0, hole = 0; | |
d7f62751 | 2443 | int ret; |
4f11aa8a HR |
2444 | |
2445 | ret = fd_open(bs); | |
2446 | if (ret < 0) { | |
2447 | return ret; | |
2448 | } | |
2449 | ||
a290f085 EB |
2450 | if (!want_zero) { |
2451 | *pnum = bytes; | |
2452 | *map = offset; | |
2453 | *file = bs; | |
2454 | return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID; | |
e6d7ec32 | 2455 | } |
4f11aa8a | 2456 | |
a290f085 | 2457 | ret = find_allocation(bs, offset, &data, &hole); |
d1f06fe6 MA |
2458 | if (ret == -ENXIO) { |
2459 | /* Trailing hole */ | |
a290f085 | 2460 | *pnum = bytes; |
d1f06fe6 MA |
2461 | ret = BDRV_BLOCK_ZERO; |
2462 | } else if (ret < 0) { | |
2463 | /* No info available, so pretend there are no holes */ | |
a290f085 | 2464 | *pnum = bytes; |
d1f06fe6 | 2465 | ret = BDRV_BLOCK_DATA; |
a290f085 EB |
2466 | } else if (data == offset) { |
2467 | /* On a data extent, compute bytes to the end of the extent, | |
f4a769ab | 2468 | * possibly including a partial sector at EOF. */ |
a290f085 | 2469 | *pnum = MIN(bytes, hole - offset); |
d1f06fe6 | 2470 | ret = BDRV_BLOCK_DATA; |
5500316d | 2471 | } else { |
a290f085 EB |
2472 | /* On a hole, compute bytes to the beginning of the next extent. */ |
2473 | assert(hole == offset); | |
2474 | *pnum = MIN(bytes, data - offset); | |
d1f06fe6 | 2475 | ret = BDRV_BLOCK_ZERO; |
5500316d | 2476 | } |
a290f085 | 2477 | *map = offset; |
02650acb | 2478 | *file = bs; |
a290f085 | 2479 | return ret | BDRV_BLOCK_OFFSET_VALID; |
5500316d PB |
2480 | } |
2481 | ||
31be8a2a SH |
2482 | #if defined(__linux__) |
2483 | /* Verify that the file is not in the page cache */ | |
2484 | static void check_cache_dropped(BlockDriverState *bs, Error **errp) | |
2485 | { | |
2486 | const size_t window_size = 128 * 1024 * 1024; | |
2487 | BDRVRawState *s = bs->opaque; | |
2488 | void *window = NULL; | |
2489 | size_t length = 0; | |
2490 | unsigned char *vec; | |
2491 | size_t page_size; | |
2492 | off_t offset; | |
2493 | off_t end; | |
2494 | ||
2495 | /* mincore(2) page status information requires 1 byte per page */ | |
2496 | page_size = sysconf(_SC_PAGESIZE); | |
2497 | vec = g_malloc(DIV_ROUND_UP(window_size, page_size)); | |
2498 | ||
2499 | end = raw_getlength(bs); | |
2500 | ||
2501 | for (offset = 0; offset < end; offset += window_size) { | |
2502 | void *new_window; | |
2503 | size_t new_length; | |
2504 | size_t vec_end; | |
2505 | size_t i; | |
2506 | int ret; | |
2507 | ||
2508 | /* Unmap previous window if size has changed */ | |
2509 | new_length = MIN(end - offset, window_size); | |
2510 | if (new_length != length) { | |
2511 | munmap(window, length); | |
2512 | window = NULL; | |
2513 | length = 0; | |
2514 | } | |
2515 | ||
2516 | new_window = mmap(window, new_length, PROT_NONE, MAP_PRIVATE, | |
2517 | s->fd, offset); | |
2518 | if (new_window == MAP_FAILED) { | |
2519 | error_setg_errno(errp, errno, "mmap failed"); | |
2520 | break; | |
2521 | } | |
2522 | ||
2523 | window = new_window; | |
2524 | length = new_length; | |
2525 | ||
2526 | ret = mincore(window, length, vec); | |
2527 | if (ret < 0) { | |
2528 | error_setg_errno(errp, errno, "mincore failed"); | |
2529 | break; | |
2530 | } | |
2531 | ||
2532 | vec_end = DIV_ROUND_UP(length, page_size); | |
2533 | for (i = 0; i < vec_end; i++) { | |
2534 | if (vec[i] & 0x1) { | |
2535 | error_setg(errp, "page cache still in use!"); | |
2536 | break; | |
2537 | } | |
2538 | } | |
2539 | } | |
2540 | ||
2541 | if (window) { | |
2542 | munmap(window, length); | |
2543 | } | |
2544 | ||
2545 | g_free(vec); | |
2546 | } | |
2547 | #endif /* __linux__ */ | |
2548 | ||
dd577a26 SH |
2549 | static void coroutine_fn raw_co_invalidate_cache(BlockDriverState *bs, |
2550 | Error **errp) | |
2551 | { | |
2552 | BDRVRawState *s = bs->opaque; | |
2553 | int ret; | |
2554 | ||
2555 | ret = fd_open(bs); | |
2556 | if (ret < 0) { | |
2557 | error_setg_errno(errp, -ret, "The file descriptor is not open"); | |
2558 | return; | |
2559 | } | |
2560 | ||
2561 | if (s->open_flags & O_DIRECT) { | |
2562 | return; /* No host kernel page cache */ | |
2563 | } | |
2564 | ||
2565 | #if defined(__linux__) | |
2566 | /* This sets the scene for the next syscall... */ | |
2567 | ret = bdrv_co_flush(bs); | |
2568 | if (ret < 0) { | |
2569 | error_setg_errno(errp, -ret, "flush failed"); | |
2570 | return; | |
2571 | } | |
2572 | ||
2573 | /* Linux does not invalidate pages that are dirty, locked, or mmapped by a | |
2574 | * process. These limitations are okay because we just fsynced the file, | |
2575 | * we don't use mmap, and the file should not be in use by other processes. | |
2576 | */ | |
2577 | ret = posix_fadvise(s->fd, 0, 0, POSIX_FADV_DONTNEED); | |
2578 | if (ret != 0) { /* the return value is a positive errno */ | |
2579 | error_setg_errno(errp, ret, "fadvise failed"); | |
2580 | return; | |
2581 | } | |
31be8a2a SH |
2582 | |
2583 | if (s->check_cache_dropped) { | |
2584 | check_cache_dropped(bs, errp); | |
2585 | } | |
dd577a26 SH |
2586 | #else /* __linux__ */ |
2587 | /* Do nothing. Live migration to a remote host with cache.direct=off is | |
2588 | * unsupported on other host operating systems. Cache consistency issues | |
2589 | * may occur but no error is reported here, partly because that's the | |
2590 | * historical behavior and partly because it's hard to differentiate valid | |
2591 | * configurations that should not cause errors. | |
2592 | */ | |
2593 | #endif /* !__linux__ */ | |
2594 | } | |
2595 | ||
33d70fb6 | 2596 | static coroutine_fn int |
46ee0f46 | 2597 | raw_do_pdiscard(BlockDriverState *bs, int64_t offset, int bytes, bool blkdev) |
dce512de | 2598 | { |
dce512de | 2599 | BDRVRawState *s = bs->opaque; |
46ee0f46 KW |
2600 | RawPosixAIOData acb; |
2601 | ||
2602 | acb = (RawPosixAIOData) { | |
2603 | .bs = bs, | |
2604 | .aio_fildes = s->fd, | |
2605 | .aio_type = QEMU_AIO_DISCARD, | |
2606 | .aio_offset = offset, | |
2607 | .aio_nbytes = bytes, | |
2608 | }; | |
dce512de | 2609 | |
46ee0f46 KW |
2610 | if (blkdev) { |
2611 | acb.aio_type |= QEMU_AIO_BLKDEV; | |
2612 | } | |
2613 | ||
2614 | return raw_thread_pool_submit(bs, handle_aiocb_discard, &acb); | |
2615 | } | |
2616 | ||
2617 | static coroutine_fn int | |
2618 | raw_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes) | |
2619 | { | |
2620 | return raw_do_pdiscard(bs, offset, bytes, false); | |
dce512de | 2621 | } |
0e7e1989 | 2622 | |
7154d8ae KW |
2623 | static int coroutine_fn |
2624 | raw_do_pwrite_zeroes(BlockDriverState *bs, int64_t offset, int bytes, | |
2625 | BdrvRequestFlags flags, bool blkdev) | |
260a82e5 PB |
2626 | { |
2627 | BDRVRawState *s = bs->opaque; | |
7154d8ae KW |
2628 | RawPosixAIOData acb; |
2629 | ThreadPoolFunc *handler; | |
2630 | ||
2631 | acb = (RawPosixAIOData) { | |
2632 | .bs = bs, | |
2633 | .aio_fildes = s->fd, | |
2634 | .aio_type = QEMU_AIO_WRITE_ZEROES, | |
2635 | .aio_offset = offset, | |
2636 | .aio_nbytes = bytes, | |
2637 | }; | |
2638 | ||
2639 | if (blkdev) { | |
2640 | acb.aio_type |= QEMU_AIO_BLKDEV; | |
2641 | } | |
260a82e5 | 2642 | |
34fa110e | 2643 | if (flags & BDRV_REQ_MAY_UNMAP) { |
7154d8ae KW |
2644 | acb.aio_type |= QEMU_AIO_DISCARD; |
2645 | handler = handle_aiocb_write_zeroes_unmap; | |
2646 | } else { | |
2647 | handler = handle_aiocb_write_zeroes; | |
260a82e5 | 2648 | } |
34fa110e | 2649 | |
7154d8ae KW |
2650 | return raw_thread_pool_submit(bs, handler, &acb); |
2651 | } | |
2652 | ||
2653 | static int coroutine_fn raw_co_pwrite_zeroes( | |
2654 | BlockDriverState *bs, int64_t offset, | |
2655 | int bytes, BdrvRequestFlags flags) | |
2656 | { | |
2657 | return raw_do_pwrite_zeroes(bs, offset, bytes, flags, false); | |
260a82e5 PB |
2658 | } |
2659 | ||
2660 | static int raw_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) | |
2661 | { | |
2662 | BDRVRawState *s = bs->opaque; | |
2663 | ||
2664 | bdi->unallocated_blocks_are_zero = s->discard_zeroes; | |
260a82e5 PB |
2665 | return 0; |
2666 | } | |
2667 | ||
6f482f74 CL |
2668 | static QemuOptsList raw_create_opts = { |
2669 | .name = "raw-create-opts", | |
2670 | .head = QTAILQ_HEAD_INITIALIZER(raw_create_opts.head), | |
2671 | .desc = { | |
2672 | { | |
2673 | .name = BLOCK_OPT_SIZE, | |
2674 | .type = QEMU_OPT_SIZE, | |
2675 | .help = "Virtual disk size" | |
2676 | }, | |
4ab15590 CL |
2677 | { |
2678 | .name = BLOCK_OPT_NOCOW, | |
2679 | .type = QEMU_OPT_BOOL, | |
2680 | .help = "Turn off copy-on-write (valid only on btrfs)" | |
2681 | }, | |
06247428 HT |
2682 | { |
2683 | .name = BLOCK_OPT_PREALLOC, | |
2684 | .type = QEMU_OPT_STRING, | |
2685 | .help = "Preallocation mode (allowed values: off, falloc, full)" | |
2686 | }, | |
6f482f74 CL |
2687 | { /* end of list */ } |
2688 | } | |
0e7e1989 KW |
2689 | }; |
2690 | ||
244a5668 FZ |
2691 | static int raw_check_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared, |
2692 | Error **errp) | |
2693 | { | |
2694 | return raw_handle_perm_lock(bs, RAW_PL_PREPARE, perm, shared, errp); | |
2695 | } | |
2696 | ||
2697 | static void raw_set_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared) | |
2698 | { | |
2699 | BDRVRawState *s = bs->opaque; | |
2700 | raw_handle_perm_lock(bs, RAW_PL_COMMIT, perm, shared, NULL); | |
2701 | s->perm = perm; | |
2702 | s->shared_perm = shared; | |
2703 | } | |
2704 | ||
2705 | static void raw_abort_perm_update(BlockDriverState *bs) | |
2706 | { | |
2707 | raw_handle_perm_lock(bs, RAW_PL_ABORT, 0, 0, NULL); | |
2708 | } | |
2709 | ||
67b51fb9 VSO |
2710 | static int coroutine_fn raw_co_copy_range_from( |
2711 | BlockDriverState *bs, BdrvChild *src, uint64_t src_offset, | |
2712 | BdrvChild *dst, uint64_t dst_offset, uint64_t bytes, | |
2713 | BdrvRequestFlags read_flags, BdrvRequestFlags write_flags) | |
1efad060 | 2714 | { |
67b51fb9 VSO |
2715 | return bdrv_co_copy_range_to(src, src_offset, dst, dst_offset, bytes, |
2716 | read_flags, write_flags); | |
1efad060 FZ |
2717 | } |
2718 | ||
2719 | static int coroutine_fn raw_co_copy_range_to(BlockDriverState *bs, | |
67b51fb9 VSO |
2720 | BdrvChild *src, |
2721 | uint64_t src_offset, | |
2722 | BdrvChild *dst, | |
2723 | uint64_t dst_offset, | |
2724 | uint64_t bytes, | |
2725 | BdrvRequestFlags read_flags, | |
2726 | BdrvRequestFlags write_flags) | |
1efad060 | 2727 | { |
58a209c4 | 2728 | RawPosixAIOData acb; |
1efad060 FZ |
2729 | BDRVRawState *s = bs->opaque; |
2730 | BDRVRawState *src_s; | |
2731 | ||
2732 | assert(dst->bs == bs); | |
2733 | if (src->bs->drv->bdrv_co_copy_range_to != raw_co_copy_range_to) { | |
2734 | return -ENOTSUP; | |
2735 | } | |
2736 | ||
2737 | src_s = src->bs->opaque; | |
9f850f67 | 2738 | if (fd_open(src->bs) < 0 || fd_open(dst->bs) < 0) { |
1efad060 FZ |
2739 | return -EIO; |
2740 | } | |
58a209c4 KW |
2741 | |
2742 | acb = (RawPosixAIOData) { | |
2743 | .bs = bs, | |
2744 | .aio_type = QEMU_AIO_COPY_RANGE, | |
2745 | .aio_fildes = src_s->fd, | |
2746 | .aio_offset = src_offset, | |
2747 | .aio_nbytes = bytes, | |
2748 | .copy_range = { | |
2749 | .aio_fd2 = s->fd, | |
2750 | .aio_offset2 = dst_offset, | |
2751 | }, | |
2752 | }; | |
2753 | ||
2754 | return raw_thread_pool_submit(bs, handle_aiocb_copy_range, &acb); | |
1efad060 FZ |
2755 | } |
2756 | ||
5f535a94 | 2757 | BlockDriver bdrv_file = { |
84a12e66 CH |
2758 | .format_name = "file", |
2759 | .protocol_name = "file", | |
856ae5c3 | 2760 | .instance_size = sizeof(BDRVRawState), |
030be321 | 2761 | .bdrv_needs_filename = true, |
856ae5c3 | 2762 | .bdrv_probe = NULL, /* no probe for protocols */ |
078896a9 | 2763 | .bdrv_parse_filename = raw_parse_filename, |
66f82cee | 2764 | .bdrv_file_open = raw_open, |
eeb6b45d JC |
2765 | .bdrv_reopen_prepare = raw_reopen_prepare, |
2766 | .bdrv_reopen_commit = raw_reopen_commit, | |
2767 | .bdrv_reopen_abort = raw_reopen_abort, | |
856ae5c3 | 2768 | .bdrv_close = raw_close, |
927f11e1 | 2769 | .bdrv_co_create = raw_co_create, |
efc75e2a | 2770 | .bdrv_co_create_opts = raw_co_create_opts, |
3ac21627 | 2771 | .bdrv_has_zero_init = bdrv_has_zero_init_1, |
a290f085 | 2772 | .bdrv_co_block_status = raw_co_block_status, |
dd577a26 | 2773 | .bdrv_co_invalidate_cache = raw_co_invalidate_cache, |
2ffa76c2 | 2774 | .bdrv_co_pwrite_zeroes = raw_co_pwrite_zeroes, |
3b46e624 | 2775 | |
9d52aa3c KW |
2776 | .bdrv_co_preadv = raw_co_preadv, |
2777 | .bdrv_co_pwritev = raw_co_pwritev, | |
33d70fb6 KW |
2778 | .bdrv_co_flush_to_disk = raw_co_flush_to_disk, |
2779 | .bdrv_co_pdiscard = raw_co_pdiscard, | |
1efad060 FZ |
2780 | .bdrv_co_copy_range_from = raw_co_copy_range_from, |
2781 | .bdrv_co_copy_range_to = raw_co_copy_range_to, | |
c25f53b0 | 2782 | .bdrv_refresh_limits = raw_refresh_limits, |
1b3abdcc ML |
2783 | .bdrv_io_plug = raw_aio_plug, |
2784 | .bdrv_io_unplug = raw_aio_unplug, | |
ed6e2161 | 2785 | .bdrv_attach_aio_context = raw_aio_attach_aio_context, |
3c529d93 | 2786 | |
061ca8a3 | 2787 | .bdrv_co_truncate = raw_co_truncate, |
83f64091 | 2788 | .bdrv_getlength = raw_getlength, |
260a82e5 | 2789 | .bdrv_get_info = raw_get_info, |
4a1d5e1f FZ |
2790 | .bdrv_get_allocated_file_size |
2791 | = raw_get_allocated_file_size, | |
244a5668 FZ |
2792 | .bdrv_check_perm = raw_check_perm, |
2793 | .bdrv_set_perm = raw_set_perm, | |
2794 | .bdrv_abort_perm_update = raw_abort_perm_update, | |
6f482f74 | 2795 | .create_opts = &raw_create_opts, |
83f64091 FB |
2796 | }; |
2797 | ||
19cb3738 FB |
2798 | /***********************************************/ |
2799 | /* host device */ | |
2800 | ||
83affaa6 | 2801 | #if defined(__APPLE__) && defined(__MACH__) |
98caa5bc JA |
2802 | static kern_return_t GetBSDPath(io_iterator_t mediaIterator, char *bsdPath, |
2803 | CFIndex maxPathSize, int flags); | |
d0855f12 | 2804 | static char *FindEjectableOpticalMedia(io_iterator_t *mediaIterator) |
19cb3738 | 2805 | { |
d0855f12 | 2806 | kern_return_t kernResult = KERN_FAILURE; |
19cb3738 FB |
2807 | mach_port_t masterPort; |
2808 | CFMutableDictionaryRef classesToMatch; | |
d0855f12 JA |
2809 | const char *matching_array[] = {kIODVDMediaClass, kIOCDMediaClass}; |
2810 | char *mediaType = NULL; | |
19cb3738 FB |
2811 | |
2812 | kernResult = IOMasterPort( MACH_PORT_NULL, &masterPort ); | |
2813 | if ( KERN_SUCCESS != kernResult ) { | |
2814 | printf( "IOMasterPort returned %d\n", kernResult ); | |
2815 | } | |
3b46e624 | 2816 | |
d0855f12 JA |
2817 | int index; |
2818 | for (index = 0; index < ARRAY_SIZE(matching_array); index++) { | |
2819 | classesToMatch = IOServiceMatching(matching_array[index]); | |
2820 | if (classesToMatch == NULL) { | |
2821 | error_report("IOServiceMatching returned NULL for %s", | |
2822 | matching_array[index]); | |
2823 | continue; | |
2824 | } | |
2825 | CFDictionarySetValue(classesToMatch, CFSTR(kIOMediaEjectableKey), | |
2826 | kCFBooleanTrue); | |
2827 | kernResult = IOServiceGetMatchingServices(masterPort, classesToMatch, | |
2828 | mediaIterator); | |
2829 | if (kernResult != KERN_SUCCESS) { | |
2830 | error_report("Note: IOServiceGetMatchingServices returned %d", | |
2831 | kernResult); | |
2832 | continue; | |
2833 | } | |
3b46e624 | 2834 | |
d0855f12 JA |
2835 | /* If a match was found, leave the loop */ |
2836 | if (*mediaIterator != 0) { | |
4f7d28d7 | 2837 | trace_file_FindEjectableOpticalMedia(matching_array[index]); |
d0855f12 JA |
2838 | mediaType = g_strdup(matching_array[index]); |
2839 | break; | |
2840 | } | |
2841 | } | |
2842 | return mediaType; | |
19cb3738 FB |
2843 | } |
2844 | ||
98caa5bc JA |
2845 | kern_return_t GetBSDPath(io_iterator_t mediaIterator, char *bsdPath, |
2846 | CFIndex maxPathSize, int flags) | |
19cb3738 FB |
2847 | { |
2848 | io_object_t nextMedia; | |
2849 | kern_return_t kernResult = KERN_FAILURE; | |
2850 | *bsdPath = '\0'; | |
2851 | nextMedia = IOIteratorNext( mediaIterator ); | |
2852 | if ( nextMedia ) | |
2853 | { | |
2854 | CFTypeRef bsdPathAsCFString; | |
2855 | bsdPathAsCFString = IORegistryEntryCreateCFProperty( nextMedia, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 ); | |
2856 | if ( bsdPathAsCFString ) { | |
2857 | size_t devPathLength; | |
2858 | strcpy( bsdPath, _PATH_DEV ); | |
98caa5bc JA |
2859 | if (flags & BDRV_O_NOCACHE) { |
2860 | strcat(bsdPath, "r"); | |
2861 | } | |
19cb3738 FB |
2862 | devPathLength = strlen( bsdPath ); |
2863 | if ( CFStringGetCString( bsdPathAsCFString, bsdPath + devPathLength, maxPathSize - devPathLength, kCFStringEncodingASCII ) ) { | |
2864 | kernResult = KERN_SUCCESS; | |
2865 | } | |
2866 | CFRelease( bsdPathAsCFString ); | |
2867 | } | |
2868 | IOObjectRelease( nextMedia ); | |
2869 | } | |
3b46e624 | 2870 | |
19cb3738 FB |
2871 | return kernResult; |
2872 | } | |
2873 | ||
d0855f12 JA |
2874 | /* Sets up a real cdrom for use in QEMU */ |
2875 | static bool setup_cdrom(char *bsd_path, Error **errp) | |
2876 | { | |
2877 | int index, num_of_test_partitions = 2, fd; | |
2878 | char test_partition[MAXPATHLEN]; | |
2879 | bool partition_found = false; | |
2880 | ||
2881 | /* look for a working partition */ | |
2882 | for (index = 0; index < num_of_test_partitions; index++) { | |
2883 | snprintf(test_partition, sizeof(test_partition), "%ss%d", bsd_path, | |
2884 | index); | |
2885 | fd = qemu_open(test_partition, O_RDONLY | O_BINARY | O_LARGEFILE); | |
2886 | if (fd >= 0) { | |
2887 | partition_found = true; | |
2888 | qemu_close(fd); | |
2889 | break; | |
2890 | } | |
2891 | } | |
2892 | ||
2893 | /* if a working partition on the device was not found */ | |
2894 | if (partition_found == false) { | |
2895 | error_setg(errp, "Failed to find a working partition on disc"); | |
2896 | } else { | |
4f7d28d7 | 2897 | trace_file_setup_cdrom(test_partition); |
d0855f12 JA |
2898 | pstrcpy(bsd_path, MAXPATHLEN, test_partition); |
2899 | } | |
2900 | return partition_found; | |
2901 | } | |
2902 | ||
2903 | /* Prints directions on mounting and unmounting a device */ | |
2904 | static void print_unmounting_directions(const char *file_name) | |
2905 | { | |
2906 | error_report("If device %s is mounted on the desktop, unmount" | |
2907 | " it first before using it in QEMU", file_name); | |
2908 | error_report("Command to unmount device: diskutil unmountDisk %s", | |
2909 | file_name); | |
2910 | error_report("Command to mount device: diskutil mountDisk %s", file_name); | |
2911 | } | |
2912 | ||
2913 | #endif /* defined(__APPLE__) && defined(__MACH__) */ | |
19cb3738 | 2914 | |
508c7cb3 CH |
2915 | static int hdev_probe_device(const char *filename) |
2916 | { | |
2917 | struct stat st; | |
2918 | ||
2919 | /* allow a dedicated CD-ROM driver to match with a higher priority */ | |
2920 | if (strstart(filename, "/dev/cdrom", NULL)) | |
2921 | return 50; | |
2922 | ||
2923 | if (stat(filename, &st) >= 0 && | |
2924 | (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) { | |
2925 | return 100; | |
2926 | } | |
2927 | ||
2928 | return 0; | |
2929 | } | |
2930 | ||
da888d37 SH |
2931 | static int check_hdev_writable(BDRVRawState *s) |
2932 | { | |
2933 | #if defined(BLKROGET) | |
2934 | /* Linux block devices can be configured "read-only" using blockdev(8). | |
2935 | * This is independent of device node permissions and therefore open(2) | |
2936 | * with O_RDWR succeeds. Actual writes fail with EPERM. | |
2937 | * | |
2938 | * bdrv_open() is supposed to fail if the disk is read-only. Explicitly | |
2939 | * check for read-only block devices so that Linux block devices behave | |
2940 | * properly. | |
2941 | */ | |
2942 | struct stat st; | |
2943 | int readonly = 0; | |
2944 | ||
2945 | if (fstat(s->fd, &st)) { | |
2946 | return -errno; | |
2947 | } | |
2948 | ||
2949 | if (!S_ISBLK(st.st_mode)) { | |
2950 | return 0; | |
2951 | } | |
2952 | ||
2953 | if (ioctl(s->fd, BLKROGET, &readonly) < 0) { | |
2954 | return -errno; | |
2955 | } | |
2956 | ||
2957 | if (readonly) { | |
2958 | return -EACCES; | |
2959 | } | |
2960 | #endif /* defined(BLKROGET) */ | |
2961 | return 0; | |
2962 | } | |
2963 | ||
7af803d4 HR |
2964 | static void hdev_parse_filename(const char *filename, QDict *options, |
2965 | Error **errp) | |
2966 | { | |
03c320d8 | 2967 | bdrv_parse_filename_strip_prefix(filename, "host_device:", options); |
7af803d4 HR |
2968 | } |
2969 | ||
3307ed7b DA |
2970 | static bool hdev_is_sg(BlockDriverState *bs) |
2971 | { | |
2972 | ||
2973 | #if defined(__linux__) | |
2974 | ||
0d4377b3 | 2975 | BDRVRawState *s = bs->opaque; |
3307ed7b DA |
2976 | struct stat st; |
2977 | struct sg_scsi_id scsiid; | |
2978 | int sg_version; | |
0d4377b3 KW |
2979 | int ret; |
2980 | ||
2981 | if (stat(bs->filename, &st) < 0 || !S_ISCHR(st.st_mode)) { | |
2982 | return false; | |
2983 | } | |
3307ed7b | 2984 | |
0d4377b3 KW |
2985 | ret = ioctl(s->fd, SG_GET_VERSION_NUM, &sg_version); |
2986 | if (ret < 0) { | |
2987 | return false; | |
2988 | } | |
2989 | ||
2990 | ret = ioctl(s->fd, SG_GET_SCSI_ID, &scsiid); | |
2991 | if (ret >= 0) { | |
4f7d28d7 | 2992 | trace_file_hdev_is_sg(scsiid.scsi_type, sg_version); |
3307ed7b DA |
2993 | return true; |
2994 | } | |
2995 | ||
2996 | #endif | |
2997 | ||
2998 | return false; | |
2999 | } | |
3000 | ||
015a1036 HR |
3001 | static int hdev_open(BlockDriverState *bs, QDict *options, int flags, |
3002 | Error **errp) | |
19cb3738 FB |
3003 | { |
3004 | BDRVRawState *s = bs->opaque; | |
e428e439 | 3005 | Error *local_err = NULL; |
da888d37 | 3006 | int ret; |
a76bab49 | 3007 | |
83affaa6 | 3008 | #if defined(__APPLE__) && defined(__MACH__) |
129c7d1c MA |
3009 | /* |
3010 | * Caution: while qdict_get_str() is fine, getting non-string types | |
3011 | * would require more care. When @options come from -blockdev or | |
3012 | * blockdev_add, its members are typed according to the QAPI | |
3013 | * schema, but when they come from -drive, they're all QString. | |
3014 | */ | |
3307ed7b | 3015 | const char *filename = qdict_get_str(options, "filename"); |
d0855f12 JA |
3016 | char bsd_path[MAXPATHLEN] = ""; |
3017 | bool error_occurred = false; | |
3018 | ||
3019 | /* If using a real cdrom */ | |
3020 | if (strcmp(filename, "/dev/cdrom") == 0) { | |
3021 | char *mediaType = NULL; | |
3022 | kern_return_t ret_val; | |
3023 | io_iterator_t mediaIterator = 0; | |
3024 | ||
3025 | mediaType = FindEjectableOpticalMedia(&mediaIterator); | |
3026 | if (mediaType == NULL) { | |
3027 | error_setg(errp, "Please make sure your CD/DVD is in the optical" | |
3028 | " drive"); | |
3029 | error_occurred = true; | |
3030 | goto hdev_open_Mac_error; | |
3031 | } | |
3307ed7b | 3032 | |
d0855f12 JA |
3033 | ret_val = GetBSDPath(mediaIterator, bsd_path, sizeof(bsd_path), flags); |
3034 | if (ret_val != KERN_SUCCESS) { | |
3035 | error_setg(errp, "Could not get BSD path for optical drive"); | |
3036 | error_occurred = true; | |
3037 | goto hdev_open_Mac_error; | |
3038 | } | |
3039 | ||
3040 | /* If a real optical drive was not found */ | |
3041 | if (bsd_path[0] == '\0') { | |
3042 | error_setg(errp, "Failed to obtain bsd path for optical drive"); | |
3043 | error_occurred = true; | |
3044 | goto hdev_open_Mac_error; | |
3045 | } | |
3046 | ||
3047 | /* If using a cdrom disc and finding a partition on the disc failed */ | |
3048 | if (strncmp(mediaType, kIOCDMediaClass, 9) == 0 && | |
3049 | setup_cdrom(bsd_path, errp) == false) { | |
3050 | print_unmounting_directions(bsd_path); | |
3051 | error_occurred = true; | |
3052 | goto hdev_open_Mac_error; | |
19cb3738 | 3053 | } |
3b46e624 | 3054 | |
46f5ac20 | 3055 | qdict_put_str(options, "filename", bsd_path); |
d0855f12 JA |
3056 | |
3057 | hdev_open_Mac_error: | |
3058 | g_free(mediaType); | |
3059 | if (mediaIterator) { | |
3060 | IOObjectRelease(mediaIterator); | |
3061 | } | |
3062 | if (error_occurred) { | |
3063 | return -ENOENT; | |
3064 | } | |
19cb3738 | 3065 | } |
d0855f12 | 3066 | #endif /* defined(__APPLE__) && defined(__MACH__) */ |
19cb3738 FB |
3067 | |
3068 | s->type = FTYPE_FILE; | |
90babde0 | 3069 | |
230ff739 | 3070 | ret = raw_open_common(bs, options, flags, 0, true, &local_err); |
da888d37 | 3071 | if (ret < 0) { |
621ff94d | 3072 | error_propagate(errp, local_err); |
d0855f12 JA |
3073 | #if defined(__APPLE__) && defined(__MACH__) |
3074 | if (*bsd_path) { | |
3075 | filename = bsd_path; | |
3076 | } | |
3077 | /* if a physical device experienced an error while being opened */ | |
3078 | if (strncmp(filename, "/dev/", 5) == 0) { | |
3079 | print_unmounting_directions(filename); | |
3080 | } | |
3081 | #endif /* defined(__APPLE__) && defined(__MACH__) */ | |
da888d37 SH |
3082 | return ret; |
3083 | } | |
3084 | ||
3307ed7b DA |
3085 | /* Since this does ioctl the device must be already opened */ |
3086 | bs->sg = hdev_is_sg(bs); | |
3087 | ||
da888d37 SH |
3088 | if (flags & BDRV_O_RDWR) { |
3089 | ret = check_hdev_writable(s); | |
3090 | if (ret < 0) { | |
3091 | raw_close(bs); | |
e428e439 | 3092 | error_setg_errno(errp, -ret, "The device is not writable"); |
da888d37 SH |
3093 | return ret; |
3094 | } | |
3095 | } | |
3096 | ||
3097 | return ret; | |
19cb3738 FB |
3098 | } |
3099 | ||
03ff3ca3 | 3100 | #if defined(__linux__) |
2f3a7ab3 KW |
3101 | static int coroutine_fn |
3102 | hdev_co_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) | |
221f715d | 3103 | { |
f141eafe | 3104 | BDRVRawState *s = bs->opaque; |
03425671 | 3105 | RawPosixAIOData acb; |
2f3a7ab3 | 3106 | int ret; |
221f715d | 3107 | |
2f3a7ab3 KW |
3108 | ret = fd_open(bs); |
3109 | if (ret < 0) { | |
3110 | return ret; | |
3111 | } | |
c208e8c2 | 3112 | |
7c9e5276 PB |
3113 | if (req == SG_IO && s->pr_mgr) { |
3114 | struct sg_io_hdr *io_hdr = buf; | |
3115 | if (io_hdr->cmdp[0] == PERSISTENT_RESERVE_OUT || | |
3116 | io_hdr->cmdp[0] == PERSISTENT_RESERVE_IN) { | |
3117 | return pr_manager_execute(s->pr_mgr, bdrv_get_aio_context(bs), | |
2f3a7ab3 | 3118 | s->fd, io_hdr); |
7c9e5276 PB |
3119 | } |
3120 | } | |
3121 | ||
03425671 KW |
3122 | acb = (RawPosixAIOData) { |
3123 | .bs = bs, | |
3124 | .aio_type = QEMU_AIO_IOCTL, | |
3125 | .aio_fildes = s->fd, | |
3126 | .aio_offset = 0, | |
3127 | .ioctl = { | |
3128 | .buf = buf, | |
3129 | .cmd = req, | |
3130 | }, | |
3131 | }; | |
3132 | ||
3133 | return raw_thread_pool_submit(bs, handle_aiocb_ioctl, &acb); | |
221f715d | 3134 | } |
f709623b | 3135 | #endif /* linux */ |
221f715d | 3136 | |
9f23011a BS |
3137 | static int fd_open(BlockDriverState *bs) |
3138 | { | |
3139 | BDRVRawState *s = bs->opaque; | |
3140 | ||
3141 | /* this is just to ensure s->fd is sane (its called by io ops) */ | |
3142 | if (s->fd >= 0) | |
3143 | return 0; | |
3144 | return -EIO; | |
3145 | } | |
04eeb8b6 | 3146 | |
33d70fb6 KW |
3147 | static coroutine_fn int |
3148 | hdev_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes) | |
c36dd8a0 | 3149 | { |
33d70fb6 | 3150 | int ret; |
c36dd8a0 | 3151 | |
33d70fb6 KW |
3152 | ret = fd_open(bs); |
3153 | if (ret < 0) { | |
3154 | return ret; | |
c36dd8a0 | 3155 | } |
46ee0f46 | 3156 | return raw_do_pdiscard(bs, offset, bytes, true); |
c36dd8a0 AF |
3157 | } |
3158 | ||
2ffa76c2 | 3159 | static coroutine_fn int hdev_co_pwrite_zeroes(BlockDriverState *bs, |
f5a5ca79 | 3160 | int64_t offset, int bytes, BdrvRequestFlags flags) |
d0b4503e | 3161 | { |
d0b4503e PB |
3162 | int rc; |
3163 | ||
3164 | rc = fd_open(bs); | |
3165 | if (rc < 0) { | |
3166 | return rc; | |
3167 | } | |
34fa110e | 3168 | |
7154d8ae | 3169 | return raw_do_pwrite_zeroes(bs, offset, bytes, flags, true); |
d0b4503e PB |
3170 | } |
3171 | ||
efc75e2a SH |
3172 | static int coroutine_fn hdev_co_create_opts(const char *filename, QemuOpts *opts, |
3173 | Error **errp) | |
93c65b47 AL |
3174 | { |
3175 | int fd; | |
3176 | int ret = 0; | |
3177 | struct stat stat_buf; | |
0e7e1989 | 3178 | int64_t total_size = 0; |
cc28c6aa HR |
3179 | bool has_prefix; |
3180 | ||
f709623b HR |
3181 | /* This function is used by both protocol block drivers and therefore either |
3182 | * of these prefixes may be given. | |
cc28c6aa HR |
3183 | * The return value has to be stored somewhere, otherwise this is an error |
3184 | * due to -Werror=unused-value. */ | |
3185 | has_prefix = | |
3186 | strstart(filename, "host_device:", &filename) || | |
f709623b | 3187 | strstart(filename, "host_cdrom:" , &filename); |
cc28c6aa HR |
3188 | |
3189 | (void)has_prefix; | |
93c65b47 | 3190 | |
db0754df | 3191 | ret = raw_normalize_devicepath(&filename, errp); |
bdd03cdf | 3192 | if (ret < 0) { |
bdd03cdf HR |
3193 | return ret; |
3194 | } | |
3195 | ||
0e7e1989 | 3196 | /* Read out options */ |
180e9526 HT |
3197 | total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0), |
3198 | BDRV_SECTOR_SIZE); | |
93c65b47 | 3199 | |
6165f4d8 | 3200 | fd = qemu_open(filename, O_WRONLY | O_BINARY); |
e428e439 HR |
3201 | if (fd < 0) { |
3202 | ret = -errno; | |
3203 | error_setg_errno(errp, -ret, "Could not open device"); | |
3204 | return ret; | |
3205 | } | |
93c65b47 | 3206 | |
e428e439 | 3207 | if (fstat(fd, &stat_buf) < 0) { |
57e69b7d | 3208 | ret = -errno; |
e428e439 HR |
3209 | error_setg_errno(errp, -ret, "Could not stat device"); |
3210 | } else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode)) { | |
3211 | error_setg(errp, | |
3212 | "The given file is neither a block nor a character device"); | |
57e69b7d | 3213 | ret = -ENODEV; |
180e9526 | 3214 | } else if (lseek(fd, 0, SEEK_END) < total_size) { |
e428e439 | 3215 | error_setg(errp, "Device is too small"); |
93c65b47 | 3216 | ret = -ENOSPC; |
e428e439 | 3217 | } |
93c65b47 | 3218 | |
97ec9117 FZ |
3219 | if (!ret && total_size) { |
3220 | uint8_t buf[BDRV_SECTOR_SIZE] = { 0 }; | |
3221 | int64_t zero_size = MIN(BDRV_SECTOR_SIZE, total_size); | |
3222 | if (lseek(fd, 0, SEEK_SET) == -1) { | |
3223 | ret = -errno; | |
3224 | } else { | |
3225 | ret = qemu_write_full(fd, buf, zero_size); | |
3226 | ret = ret == zero_size ? 0 : -errno; | |
3227 | } | |
3228 | } | |
2e1e79da | 3229 | qemu_close(fd); |
93c65b47 AL |
3230 | return ret; |
3231 | } | |
3232 | ||
5efa9d5a | 3233 | static BlockDriver bdrv_host_device = { |
0b4ce02e | 3234 | .format_name = "host_device", |
84a12e66 | 3235 | .protocol_name = "host_device", |
0b4ce02e | 3236 | .instance_size = sizeof(BDRVRawState), |
030be321 | 3237 | .bdrv_needs_filename = true, |
0b4ce02e | 3238 | .bdrv_probe_device = hdev_probe_device, |
7af803d4 | 3239 | .bdrv_parse_filename = hdev_parse_filename, |
66f82cee | 3240 | .bdrv_file_open = hdev_open, |
0b4ce02e | 3241 | .bdrv_close = raw_close, |
1bc6b705 JC |
3242 | .bdrv_reopen_prepare = raw_reopen_prepare, |
3243 | .bdrv_reopen_commit = raw_reopen_commit, | |
3244 | .bdrv_reopen_abort = raw_reopen_abort, | |
efc75e2a | 3245 | .bdrv_co_create_opts = hdev_co_create_opts, |
6f482f74 | 3246 | .create_opts = &raw_create_opts, |
dd577a26 | 3247 | .bdrv_co_invalidate_cache = raw_co_invalidate_cache, |
2ffa76c2 | 3248 | .bdrv_co_pwrite_zeroes = hdev_co_pwrite_zeroes, |
3b46e624 | 3249 | |
9d52aa3c KW |
3250 | .bdrv_co_preadv = raw_co_preadv, |
3251 | .bdrv_co_pwritev = raw_co_pwritev, | |
33d70fb6 KW |
3252 | .bdrv_co_flush_to_disk = raw_co_flush_to_disk, |
3253 | .bdrv_co_pdiscard = hdev_co_pdiscard, | |
1efad060 FZ |
3254 | .bdrv_co_copy_range_from = raw_co_copy_range_from, |
3255 | .bdrv_co_copy_range_to = raw_co_copy_range_to, | |
c25f53b0 | 3256 | .bdrv_refresh_limits = raw_refresh_limits, |
1b3abdcc ML |
3257 | .bdrv_io_plug = raw_aio_plug, |
3258 | .bdrv_io_unplug = raw_aio_unplug, | |
042b757c | 3259 | .bdrv_attach_aio_context = raw_aio_attach_aio_context, |
3c529d93 | 3260 | |
061ca8a3 | 3261 | .bdrv_co_truncate = raw_co_truncate, |
e60f469c | 3262 | .bdrv_getlength = raw_getlength, |
260a82e5 | 3263 | .bdrv_get_info = raw_get_info, |
4a1d5e1f FZ |
3264 | .bdrv_get_allocated_file_size |
3265 | = raw_get_allocated_file_size, | |
244a5668 FZ |
3266 | .bdrv_check_perm = raw_check_perm, |
3267 | .bdrv_set_perm = raw_set_perm, | |
3268 | .bdrv_abort_perm_update = raw_abort_perm_update, | |
1a9335e4 ET |
3269 | .bdrv_probe_blocksizes = hdev_probe_blocksizes, |
3270 | .bdrv_probe_geometry = hdev_probe_geometry, | |
19cb3738 | 3271 | |
f3a5d3f8 | 3272 | /* generic scsi device */ |
63ec93db | 3273 | #ifdef __linux__ |
2f3a7ab3 | 3274 | .bdrv_co_ioctl = hdev_co_ioctl, |
63ec93db | 3275 | #endif |
f3a5d3f8 CH |
3276 | }; |
3277 | ||
18fa1c42 HR |
3278 | #if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) |
3279 | static void cdrom_parse_filename(const char *filename, QDict *options, | |
3280 | Error **errp) | |
3281 | { | |
03c320d8 | 3282 | bdrv_parse_filename_strip_prefix(filename, "host_cdrom:", options); |
18fa1c42 HR |
3283 | } |
3284 | #endif | |
3285 | ||
3286 | #ifdef __linux__ | |
015a1036 HR |
3287 | static int cdrom_open(BlockDriverState *bs, QDict *options, int flags, |
3288 | Error **errp) | |
f3a5d3f8 CH |
3289 | { |
3290 | BDRVRawState *s = bs->opaque; | |
3291 | ||
f3a5d3f8 CH |
3292 | s->type = FTYPE_CD; |
3293 | ||
19a3da7f | 3294 | /* open will not fail even if no CD is inserted, so add O_NONBLOCK */ |
230ff739 | 3295 | return raw_open_common(bs, options, flags, O_NONBLOCK, true, errp); |
f3a5d3f8 CH |
3296 | } |
3297 | ||
508c7cb3 CH |
3298 | static int cdrom_probe_device(const char *filename) |
3299 | { | |
3baf720e CR |
3300 | int fd, ret; |
3301 | int prio = 0; | |
343f8568 | 3302 | struct stat st; |
3baf720e | 3303 | |
6165f4d8 | 3304 | fd = qemu_open(filename, O_RDONLY | O_NONBLOCK); |
3baf720e CR |
3305 | if (fd < 0) { |
3306 | goto out; | |
3307 | } | |
343f8568 JS |
3308 | ret = fstat(fd, &st); |
3309 | if (ret == -1 || !S_ISBLK(st.st_mode)) { | |
3310 | goto outc; | |
3311 | } | |
3baf720e CR |
3312 | |
3313 | /* Attempt to detect via a CDROM specific ioctl */ | |
3314 | ret = ioctl(fd, CDROM_DRIVE_STATUS, CDSL_CURRENT); | |
3315 | if (ret >= 0) | |
3316 | prio = 100; | |
3317 | ||
343f8568 | 3318 | outc: |
2e1e79da | 3319 | qemu_close(fd); |
3baf720e CR |
3320 | out: |
3321 | return prio; | |
508c7cb3 CH |
3322 | } |
3323 | ||
e031f750 | 3324 | static bool cdrom_is_inserted(BlockDriverState *bs) |
f3a5d3f8 CH |
3325 | { |
3326 | BDRVRawState *s = bs->opaque; | |
3327 | int ret; | |
3328 | ||
3329 | ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT); | |
e031f750 | 3330 | return ret == CDS_DISC_OK; |
f3a5d3f8 CH |
3331 | } |
3332 | ||
f36f3949 | 3333 | static void cdrom_eject(BlockDriverState *bs, bool eject_flag) |
f3a5d3f8 CH |
3334 | { |
3335 | BDRVRawState *s = bs->opaque; | |
3336 | ||
3337 | if (eject_flag) { | |
3338 | if (ioctl(s->fd, CDROMEJECT, NULL) < 0) | |
3339 | perror("CDROMEJECT"); | |
3340 | } else { | |
3341 | if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0) | |
3342 | perror("CDROMEJECT"); | |
3343 | } | |
f3a5d3f8 CH |
3344 | } |
3345 | ||
025e849a | 3346 | static void cdrom_lock_medium(BlockDriverState *bs, bool locked) |
f3a5d3f8 CH |
3347 | { |
3348 | BDRVRawState *s = bs->opaque; | |
3349 | ||
3350 | if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) { | |
3351 | /* | |
3352 | * Note: an error can happen if the distribution automatically | |
3353 | * mounts the CD-ROM | |
3354 | */ | |
3355 | /* perror("CDROM_LOCKDOOR"); */ | |
3356 | } | |
f3a5d3f8 CH |
3357 | } |
3358 | ||
3359 | static BlockDriver bdrv_host_cdrom = { | |
3360 | .format_name = "host_cdrom", | |
84a12e66 | 3361 | .protocol_name = "host_cdrom", |
f3a5d3f8 | 3362 | .instance_size = sizeof(BDRVRawState), |
030be321 | 3363 | .bdrv_needs_filename = true, |
508c7cb3 | 3364 | .bdrv_probe_device = cdrom_probe_device, |
18fa1c42 | 3365 | .bdrv_parse_filename = cdrom_parse_filename, |
66f82cee | 3366 | .bdrv_file_open = cdrom_open, |
f3a5d3f8 | 3367 | .bdrv_close = raw_close, |
1bc6b705 JC |
3368 | .bdrv_reopen_prepare = raw_reopen_prepare, |
3369 | .bdrv_reopen_commit = raw_reopen_commit, | |
3370 | .bdrv_reopen_abort = raw_reopen_abort, | |
efc75e2a | 3371 | .bdrv_co_create_opts = hdev_co_create_opts, |
6f482f74 | 3372 | .create_opts = &raw_create_opts, |
dd577a26 | 3373 | .bdrv_co_invalidate_cache = raw_co_invalidate_cache, |
f3a5d3f8 | 3374 | |
9d52aa3c KW |
3375 | |
3376 | .bdrv_co_preadv = raw_co_preadv, | |
3377 | .bdrv_co_pwritev = raw_co_pwritev, | |
33d70fb6 | 3378 | .bdrv_co_flush_to_disk = raw_co_flush_to_disk, |
c25f53b0 | 3379 | .bdrv_refresh_limits = raw_refresh_limits, |
1b3abdcc ML |
3380 | .bdrv_io_plug = raw_aio_plug, |
3381 | .bdrv_io_unplug = raw_aio_unplug, | |
042b757c | 3382 | .bdrv_attach_aio_context = raw_aio_attach_aio_context, |
f3a5d3f8 | 3383 | |
061ca8a3 | 3384 | .bdrv_co_truncate = raw_co_truncate, |
b94a2610 KW |
3385 | .bdrv_getlength = raw_getlength, |
3386 | .has_variable_length = true, | |
4a1d5e1f FZ |
3387 | .bdrv_get_allocated_file_size |
3388 | = raw_get_allocated_file_size, | |
f3a5d3f8 CH |
3389 | |
3390 | /* removable device support */ | |
3391 | .bdrv_is_inserted = cdrom_is_inserted, | |
3392 | .bdrv_eject = cdrom_eject, | |
025e849a | 3393 | .bdrv_lock_medium = cdrom_lock_medium, |
f3a5d3f8 CH |
3394 | |
3395 | /* generic scsi device */ | |
2f3a7ab3 | 3396 | .bdrv_co_ioctl = hdev_co_ioctl, |
f3a5d3f8 CH |
3397 | }; |
3398 | #endif /* __linux__ */ | |
3399 | ||
a167ba50 | 3400 | #if defined (__FreeBSD__) || defined(__FreeBSD_kernel__) |
511018e4 AT |
3401 | static int cdrom_open(BlockDriverState *bs, QDict *options, int flags, |
3402 | Error **errp) | |
f3a5d3f8 CH |
3403 | { |
3404 | BDRVRawState *s = bs->opaque; | |
e428e439 | 3405 | Error *local_err = NULL; |
f3a5d3f8 CH |
3406 | int ret; |
3407 | ||
3408 | s->type = FTYPE_CD; | |
3409 | ||
230ff739 | 3410 | ret = raw_open_common(bs, options, flags, 0, true, &local_err); |
e428e439 | 3411 | if (ret) { |
621ff94d | 3412 | error_propagate(errp, local_err); |
f3a5d3f8 | 3413 | return ret; |
e428e439 | 3414 | } |
f3a5d3f8 | 3415 | |
9b2260cb | 3416 | /* make sure the door isn't locked at this time */ |
f3a5d3f8 CH |
3417 | ioctl(s->fd, CDIOCALLOW); |
3418 | return 0; | |
3419 | } | |
3420 | ||
508c7cb3 CH |
3421 | static int cdrom_probe_device(const char *filename) |
3422 | { | |
3423 | if (strstart(filename, "/dev/cd", NULL) || | |
3424 | strstart(filename, "/dev/acd", NULL)) | |
3425 | return 100; | |
3426 | return 0; | |
3427 | } | |
3428 | ||
f3a5d3f8 CH |
3429 | static int cdrom_reopen(BlockDriverState *bs) |
3430 | { | |
3431 | BDRVRawState *s = bs->opaque; | |
3432 | int fd; | |
3433 | ||
3434 | /* | |
3435 | * Force reread of possibly changed/newly loaded disc, | |
3436 | * FreeBSD seems to not notice sometimes... | |
3437 | */ | |
3438 | if (s->fd >= 0) | |
2e1e79da | 3439 | qemu_close(s->fd); |
6165f4d8 | 3440 | fd = qemu_open(bs->filename, s->open_flags, 0644); |
f3a5d3f8 CH |
3441 | if (fd < 0) { |
3442 | s->fd = -1; | |
3443 | return -EIO; | |
3444 | } | |
3445 | s->fd = fd; | |
3446 | ||
9b2260cb | 3447 | /* make sure the door isn't locked at this time */ |
f3a5d3f8 CH |
3448 | ioctl(s->fd, CDIOCALLOW); |
3449 | return 0; | |
3450 | } | |
3451 | ||
e031f750 | 3452 | static bool cdrom_is_inserted(BlockDriverState *bs) |
f3a5d3f8 CH |
3453 | { |
3454 | return raw_getlength(bs) > 0; | |
3455 | } | |
3456 | ||
f36f3949 | 3457 | static void cdrom_eject(BlockDriverState *bs, bool eject_flag) |
f3a5d3f8 CH |
3458 | { |
3459 | BDRVRawState *s = bs->opaque; | |
3460 | ||
3461 | if (s->fd < 0) | |
822e1cd1 | 3462 | return; |
f3a5d3f8 CH |
3463 | |
3464 | (void) ioctl(s->fd, CDIOCALLOW); | |
3465 | ||
3466 | if (eject_flag) { | |
3467 | if (ioctl(s->fd, CDIOCEJECT) < 0) | |
3468 | perror("CDIOCEJECT"); | |
3469 | } else { | |
3470 | if (ioctl(s->fd, CDIOCCLOSE) < 0) | |
3471 | perror("CDIOCCLOSE"); | |
3472 | } | |
3473 | ||
822e1cd1 | 3474 | cdrom_reopen(bs); |
f3a5d3f8 CH |
3475 | } |
3476 | ||
025e849a | 3477 | static void cdrom_lock_medium(BlockDriverState *bs, bool locked) |
f3a5d3f8 CH |
3478 | { |
3479 | BDRVRawState *s = bs->opaque; | |
3480 | ||
3481 | if (s->fd < 0) | |
7bf37fed | 3482 | return; |
f3a5d3f8 CH |
3483 | if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) { |
3484 | /* | |
3485 | * Note: an error can happen if the distribution automatically | |
3486 | * mounts the CD-ROM | |
3487 | */ | |
3488 | /* perror("CDROM_LOCKDOOR"); */ | |
3489 | } | |
f3a5d3f8 CH |
3490 | } |
3491 | ||
3492 | static BlockDriver bdrv_host_cdrom = { | |
3493 | .format_name = "host_cdrom", | |
84a12e66 | 3494 | .protocol_name = "host_cdrom", |
f3a5d3f8 | 3495 | .instance_size = sizeof(BDRVRawState), |
030be321 | 3496 | .bdrv_needs_filename = true, |
508c7cb3 | 3497 | .bdrv_probe_device = cdrom_probe_device, |
18fa1c42 | 3498 | .bdrv_parse_filename = cdrom_parse_filename, |
66f82cee | 3499 | .bdrv_file_open = cdrom_open, |
f3a5d3f8 | 3500 | .bdrv_close = raw_close, |
1bc6b705 JC |
3501 | .bdrv_reopen_prepare = raw_reopen_prepare, |
3502 | .bdrv_reopen_commit = raw_reopen_commit, | |
3503 | .bdrv_reopen_abort = raw_reopen_abort, | |
efc75e2a | 3504 | .bdrv_co_create_opts = hdev_co_create_opts, |
6f482f74 | 3505 | .create_opts = &raw_create_opts, |
f3a5d3f8 | 3506 | |
9d52aa3c KW |
3507 | .bdrv_co_preadv = raw_co_preadv, |
3508 | .bdrv_co_pwritev = raw_co_pwritev, | |
33d70fb6 | 3509 | .bdrv_co_flush_to_disk = raw_co_flush_to_disk, |
c25f53b0 | 3510 | .bdrv_refresh_limits = raw_refresh_limits, |
1b3abdcc ML |
3511 | .bdrv_io_plug = raw_aio_plug, |
3512 | .bdrv_io_unplug = raw_aio_unplug, | |
042b757c | 3513 | .bdrv_attach_aio_context = raw_aio_attach_aio_context, |
f3a5d3f8 | 3514 | |
061ca8a3 | 3515 | .bdrv_co_truncate = raw_co_truncate, |
b94a2610 KW |
3516 | .bdrv_getlength = raw_getlength, |
3517 | .has_variable_length = true, | |
4a1d5e1f FZ |
3518 | .bdrv_get_allocated_file_size |
3519 | = raw_get_allocated_file_size, | |
f3a5d3f8 | 3520 | |
19cb3738 | 3521 | /* removable device support */ |
f3a5d3f8 CH |
3522 | .bdrv_is_inserted = cdrom_is_inserted, |
3523 | .bdrv_eject = cdrom_eject, | |
025e849a | 3524 | .bdrv_lock_medium = cdrom_lock_medium, |
19cb3738 | 3525 | }; |
f3a5d3f8 | 3526 | #endif /* __FreeBSD__ */ |
5efa9d5a | 3527 | |
84a12e66 | 3528 | static void bdrv_file_init(void) |
5efa9d5a | 3529 | { |
508c7cb3 CH |
3530 | /* |
3531 | * Register all the drivers. Note that order is important, the driver | |
3532 | * registered last will get probed first. | |
3533 | */ | |
84a12e66 | 3534 | bdrv_register(&bdrv_file); |
5efa9d5a | 3535 | bdrv_register(&bdrv_host_device); |
f3a5d3f8 | 3536 | #ifdef __linux__ |
f3a5d3f8 CH |
3537 | bdrv_register(&bdrv_host_cdrom); |
3538 | #endif | |
a167ba50 | 3539 | #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) |
f3a5d3f8 CH |
3540 | bdrv_register(&bdrv_host_cdrom); |
3541 | #endif | |
5efa9d5a AL |
3542 | } |
3543 | ||
84a12e66 | 3544 | block_init(bdrv_file_init); |