filesetup: change random file init to be bool based
[fio.git] / filesetup.c
CommitLineData
53cdc686
JA
1#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <assert.h>
bbf6b540 5#include <dirent.h>
d74ac843 6#include <libgen.h>
53cdc686
JA
7#include <sys/stat.h>
8#include <sys/mman.h>
bbf6b540 9#include <sys/types.h>
53cdc686
JA
10
11#include "fio.h"
f17c4392 12#include "smalloc.h"
4906e0b5 13#include "filehash.h"
bcbfeefa 14#include "options.h"
ecc314ba 15#include "os/os.h"
2316296a 16#include "hash.h"
7ebd796f 17#include "lib/axmap.h"
53cdc686 18
97ac992c 19#ifdef CONFIG_LINUX_FALLOCATE
a596f047
EG
20#include <linux/falloc.h>
21#endif
22
7172cfe8
JA
23static int root_warn;
24
bcbfeefa
CE
25static FLIST_HEAD(filename_list);
26
bf651609
TK
27/*
28 * List entry for filename_list
29 */
30struct file_name {
31 struct flist_head list;
32 char *filename;
33};
34
c592b9fe
JA
35static inline void clear_error(struct thread_data *td)
36{
37 td->error = 0;
38 td->verror[0] = '\0';
39}
40
c75f74fb 41static int native_fallocate(struct thread_data *td, struct fio_file *f)
2c3e17be
SW
42{
43 bool success;
44
45 success = fio_fallocate(f, 0, f->real_file_size);
46 dprint(FD_FILE, "native fallocate of file %s size %llu was "
47 "%ssuccessful\n", f->file_name,
48 (unsigned long long) f->real_file_size,
49 !success ? "un": "");
50
51 if (success)
c0aabe37 52 return false;
2c3e17be
SW
53
54 if (errno == ENOSYS)
55 dprint(FD_FILE, "native fallocate is not implemented\n");
56
c0aabe37 57 return true;
2c3e17be
SW
58}
59
005eb303
JA
60static void fallocate_file(struct thread_data *td, struct fio_file *f)
61{
62 int r;
63
64 if (td->o.fill_device)
65 return;
66
005eb303 67 switch (td->o.fallocate_mode) {
2c3e17be 68 case FIO_FALLOCATE_NATIVE:
c0aabe37 69 native_fallocate(td, f);
2c3e17be 70 break;
005eb303
JA
71 case FIO_FALLOCATE_NONE:
72 break;
2c3e17be 73#ifdef CONFIG_POSIX_FALLOCATE
005eb303
JA
74 case FIO_FALLOCATE_POSIX:
75 dprint(FD_FILE, "posix_fallocate file %s size %llu\n",
76 f->file_name,
77 (unsigned long long) f->real_file_size);
78
79 r = posix_fallocate(f->fd, 0, f->real_file_size);
80 if (r > 0)
81 log_err("fio: posix_fallocate fails: %s\n", strerror(r));
82 break;
2c3e17be 83#endif /* CONFIG_POSIX_FALLOCATE */
005eb303
JA
84#ifdef CONFIG_LINUX_FALLOCATE
85 case FIO_FALLOCATE_KEEP_SIZE:
86 dprint(FD_FILE, "fallocate(FALLOC_FL_KEEP_SIZE) "
87 "file %s size %llu\n", f->file_name,
88 (unsigned long long) f->real_file_size);
89
90 r = fallocate(f->fd, FALLOC_FL_KEEP_SIZE, 0, f->real_file_size);
91 if (r != 0)
92 td_verror(td, errno, "fallocate");
93
94 break;
95#endif /* CONFIG_LINUX_FALLOCATE */
96 default:
97 log_err("fio: unknown fallocate mode: %d\n", td->o.fallocate_mode);
98 assert(0);
99 }
005eb303
JA
100}
101
3baddf24
JA
102/*
103 * Leaves f->fd open on success, caller must close
104 */
7bb48f84 105static int extend_file(struct thread_data *td, struct fio_file *f)
25205e97 106{
005eb303 107 int new_layout = 0, unlink_file = 0, flags;
25205e97 108 unsigned long long left;
323876fb 109 unsigned int bs;
f3e1eb23 110 char *b = NULL;
b2a15192 111
4241ea8f
JA
112 if (read_only) {
113 log_err("fio: refusing extend of file due to read-only\n");
114 return 0;
115 }
116
507a702f
JA
117 /*
118 * check if we need to lay the file out complete again. fio
119 * does that for operations involving reads, or for writes
120 * where overwrite is set
121 */
1417daeb
JA
122 if (td_read(td) ||
123 (td_write(td) && td->o.overwrite && !td->o.file_append) ||
9b87f09b 124 (td_write(td) && td_ioengine_flagged(td, FIO_NOEXTEND)))
507a702f 125 new_layout = 1;
1417daeb 126 if (td_write(td) && !td->o.overwrite && !td->o.file_append)
ea443657 127 unlink_file = 1;
507a702f 128
6ae1f57f 129 if (unlink_file || new_layout) {
2442c935
JA
130 int ret;
131
bd199f2b 132 dprint(FD_FILE, "layout unlink %s\n", f->file_name);
2442c935
JA
133
134 ret = td_io_unlink_file(td, f);
135 if (ret != 0 && ret != ENOENT) {
7bb48f84
JA
136 td_verror(td, errno, "unlink");
137 return 1;
138 }
139 }
140
2378826d
JA
141 flags = O_WRONLY;
142 if (td->o.allow_create)
143 flags |= O_CREAT;
507a702f
JA
144 if (new_layout)
145 flags |= O_TRUNC;
146
9c0f3f32
BC
147#ifdef WIN32
148 flags |= _O_BINARY;
149#endif
150
ee56ad50 151 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
507a702f 152 f->fd = open(f->file_name, flags, 0644);
53cdc686 153 if (f->fd < 0) {
2378826d
JA
154 int err = errno;
155
156 if (err == ENOENT && !td->o.allow_create)
157 log_err("fio: file creation disallowed by "
158 "allow_file_create=0\n");
323876fb 159 else
2378826d 160 td_verror(td, err, "open");
53cdc686
JA
161 return 1;
162 }
163
005eb303 164 fallocate_file(td, f);
9b836561 165
79591fa9
TK
166 /*
167 * If our jobs don't require regular files initially, we're done.
168 */
fc74ac1d
SL
169 if (!new_layout)
170 goto done;
171
5e0074c2
JA
172 /*
173 * The size will be -1ULL when fill_device is used, so don't truncate
174 * or fallocate this file, just write it
175 */
176 if (!td->o.fill_device) {
177 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
4b91ee8f 178 (unsigned long long) f->real_file_size);
5e0074c2 179 if (ftruncate(f->fd, f->real_file_size) == -1) {
3cd4c66f
J
180 if (errno != EFBIG) {
181 td_verror(td, errno, "ftruncate");
182 goto err;
183 }
5e0074c2 184 }
5e0074c2 185 }
40f8298c 186
82d8de31
TK
187 left = f->real_file_size;
188 bs = td->o.max_bs[DDIR_WRITE];
189 if (bs > left)
190 bs = left;
191
323876fb 192 b = malloc(bs);
84af30a1 193 if (!b) {
323876fb 194 td_verror(td, errno, "malloc");
84af30a1
TK
195 goto err;
196 }
53cdc686 197
53cdc686 198 while (left && !td->terminate) {
005eb303
JA
199 ssize_t r;
200
53cdc686
JA
201 if (bs > left)
202 bs = left;
203
cc86c395
JA
204 fill_io_buffer(td, b, bs, bs);
205
53cdc686
JA
206 r = write(f->fd, b, bs);
207
5e0074c2
JA
208 if (r > 0) {
209 left -= r;
53cdc686
JA
210 continue;
211 } else {
5e0074c2
JA
212 if (r < 0) {
213 int __e = errno;
214
215 if (__e == ENOSPC) {
216 if (td->o.fill_device)
217 break;
218 log_info("fio: ENOSPC on laying out "
219 "file, stopping\n");
220 break;
221 }
e1161c32 222 td_verror(td, errno, "write");
5e0074c2 223 } else
e1161c32 224 td_verror(td, EIO, "write");
53cdc686
JA
225
226 break;
227 }
228 }
229
ffdfabd4
JA
230 if (td->terminate) {
231 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
38ef9c90 232 td_io_unlink_file(td, f);
ffdfabd4 233 } else if (td->o.create_fsync) {
98e1ac4e
JA
234 if (fsync(f->fd) < 0) {
235 td_verror(td, errno, "fsync");
236 goto err;
237 }
238 }
0d1cd207 239 if (td->o.fill_device && !td_write(td)) {
d6aed795 240 fio_file_clear_size_known(f);
5e0074c2
JA
241 if (td_io_get_file_size(td, f))
242 goto err;
243 if (f->io_size > f->real_file_size)
244 f->io_size = f->real_file_size;
245 }
53cdc686 246
323876fb 247 free(b);
507a702f 248done:
53cdc686
JA
249 return 0;
250err:
251 close(f->fd);
252 f->fd = -1;
f3e1eb23 253 if (b)
323876fb 254 free(b);
53cdc686
JA
255 return 1;
256}
257
c139f3b4 258static bool pre_read_file(struct thread_data *td, struct fio_file *f)
afad68f7 259{
c139f3b4 260 int r, did_open = 0, old_runstate;
afad68f7
ZY
261 unsigned long long left;
262 unsigned int bs;
c139f3b4 263 bool ret = true;
afad68f7
ZY
264 char *b;
265
736f1188
TK
266 if (td_ioengine_flagged(td, FIO_PIPEIO) ||
267 td_ioengine_flagged(td, FIO_NOIO))
c139f3b4 268 return true;
9c0d2241 269
e658078b 270 if (f->filetype == FIO_TYPE_CHAR)
c139f3b4 271 return true;
e658078b 272
d6aed795 273 if (!fio_file_open(f)) {
b0f65863
JA
274 if (td->io_ops->open_file(td, f)) {
275 log_err("fio: cannot pre-read, failed to open file\n");
c139f3b4 276 return false;
b0f65863
JA
277 }
278 did_open = 1;
279 }
280
8edd973d 281 old_runstate = td_bump_runstate(td, TD_PRE_READING);
b0f65863 282
82d8de31 283 left = f->io_size;
afad68f7 284 bs = td->o.max_bs[DDIR_READ];
82d8de31
TK
285 if (bs > left)
286 bs = left;
287
afad68f7 288 b = malloc(bs);
84af30a1
TK
289 if (!b) {
290 td_verror(td, errno, "malloc");
c139f3b4 291 ret = false;
84af30a1
TK
292 goto error;
293 }
afad68f7
ZY
294 memset(b, 0, bs);
295
ef799a64
JA
296 if (lseek(f->fd, f->file_offset, SEEK_SET) < 0) {
297 td_verror(td, errno, "lseek");
298 log_err("fio: failed to lseek pre-read file\n");
c139f3b4 299 ret = false;
ef799a64
JA
300 goto error;
301 }
302
afad68f7
ZY
303 while (left && !td->terminate) {
304 if (bs > left)
305 bs = left;
306
307 r = read(f->fd, b, bs);
308
309 if (r == (int) bs) {
310 left -= bs;
311 continue;
312 } else {
313 td_verror(td, EIO, "pre_read");
314 break;
315 }
316 }
317
ef799a64 318error:
8edd973d 319 td_restore_runstate(td, old_runstate);
b0f65863
JA
320
321 if (did_open)
322 td->io_ops->close_file(td, f);
ef799a64 323
afad68f7 324 free(b);
ef799a64 325 return ret;
afad68f7
ZY
326}
327
a3f001f5 328unsigned long long get_rand_file_size(struct thread_data *td)
9c60ce64 329{
dc873b6f 330 unsigned long long ret, sized;
c3546b53 331 uint64_t frand_max;
1294c3ec 332 unsigned long r;
9c60ce64 333
c3546b53 334 frand_max = rand_max(&td->file_size_state);
d6b72507 335 r = __rand(&td->file_size_state);
54a21917 336 sized = td->o.file_size_high - td->o.file_size_low;
c3546b53 337 ret = (unsigned long long) ((double) sized * (r / (frand_max + 1.0)));
5ec10eaa 338 ret += td->o.file_size_low;
2dc1bbeb 339 ret -= (ret % td->o.rw_min_bs);
9c60ce64
JA
340 return ret;
341}
342
53cdc686
JA
343static int file_size(struct thread_data *td, struct fio_file *f)
344{
345 struct stat st;
346
df9c26b1 347 if (stat(f->file_name, &st) == -1) {
7bb48f84
JA
348 td_verror(td, errno, "fstat");
349 return 1;
350 }
53cdc686 351
7bb48f84 352 f->real_file_size = st.st_size;
53cdc686
JA
353 return 0;
354}
355
356static int bdev_size(struct thread_data *td, struct fio_file *f)
357{
9b836561 358 unsigned long long bytes = 0;
53cdc686
JA
359 int r;
360
df9c26b1
JA
361 if (td->io_ops->open_file(td, f)) {
362 log_err("fio: failed opening blockdev %s for size check\n",
363 f->file_name);
364 return 1;
365 }
366
ecc314ba 367 r = blockdev_size(f, &bytes);
53cdc686 368 if (r) {
e1161c32 369 td_verror(td, r, "blockdev_size");
df9c26b1 370 goto err;
53cdc686
JA
371 }
372
7ab077ab
JA
373 if (!bytes) {
374 log_err("%s: zero sized block device?\n", f->file_name);
df9c26b1 375 goto err;
7ab077ab
JA
376 }
377
53cdc686 378 f->real_file_size = bytes;
22a57ba8 379 td->io_ops->close_file(td, f);
53cdc686 380 return 0;
df9c26b1
JA
381err:
382 td->io_ops->close_file(td, f);
383 return 1;
53cdc686
JA
384}
385
4ccdccd1
JA
386static int char_size(struct thread_data *td, struct fio_file *f)
387{
388#ifdef FIO_HAVE_CHARDEV_SIZE
9b836561 389 unsigned long long bytes = 0;
4ccdccd1
JA
390 int r;
391
392 if (td->io_ops->open_file(td, f)) {
b3ec877c 393 log_err("fio: failed opening chardev %s for size check\n",
4ccdccd1
JA
394 f->file_name);
395 return 1;
396 }
397
ecc314ba 398 r = chardev_size(f, &bytes);
4ccdccd1
JA
399 if (r) {
400 td_verror(td, r, "chardev_size");
401 goto err;
402 }
403
404 if (!bytes) {
405 log_err("%s: zero sized char device?\n", f->file_name);
406 goto err;
407 }
408
409 f->real_file_size = bytes;
410 td->io_ops->close_file(td, f);
411 return 0;
412err:
413 td->io_ops->close_file(td, f);
414 return 1;
415#else
416 f->real_file_size = -1ULL;
417 return 0;
418#endif
419}
420
53cdc686
JA
421static int get_file_size(struct thread_data *td, struct fio_file *f)
422{
423 int ret = 0;
424
d6aed795 425 if (fio_file_size_known(f))
409b3417
JA
426 return 0;
427
7bb48f84
JA
428 if (f->filetype == FIO_TYPE_FILE)
429 ret = file_size(td, f);
686fbd31 430 else if (f->filetype == FIO_TYPE_BLOCK)
53cdc686 431 ret = bdev_size(td, f);
4ccdccd1
JA
432 else if (f->filetype == FIO_TYPE_CHAR)
433 ret = char_size(td, f);
0f34169a
TK
434 else
435 f->real_file_size = -1ULL;
53cdc686 436
79591fa9
TK
437 /*
438 * Leave ->real_file_size with 0 since it could be expectation
439 * of initial setup for regular files.
440 */
a0cb220b 441 if (ret)
53cdc686
JA
442 return ret;
443
0f34169a
TK
444 /*
445 * If ->real_file_size is -1, a conditional for the message
446 * "offset extends end" is always true, but it makes no sense,
447 * so just return the same value here.
448 */
449 if (f->real_file_size == -1ULL) {
450 log_info("%s: failed to get file size of %s\n", td->o.name,
451 f->file_name);
452 return 1;
453 }
454
455 if (td->o.start_offset && f->file_offset == 0)
456 dprint(FD_FILE, "offset of file %s not initialized yet\n",
457 f->file_name);
957c81b9
TK
458 /*
459 * ->file_offset normally hasn't been initialized yet, so this
0f34169a 460 * is basically always false.
957c81b9 461 */
53cdc686 462 if (f->file_offset > f->real_file_size) {
0f2152c1 463 log_err("%s: offset extends end (%llu > %llu)\n", td->o.name,
4e0a8fa2
JA
464 (unsigned long long) f->file_offset,
465 (unsigned long long) f->real_file_size);
53cdc686
JA
466 return 1;
467 }
468
d6aed795 469 fio_file_set_size_known(f);
53cdc686
JA
470 return 0;
471}
472
3baddf24
JA
473static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
474 unsigned long long off,
475 unsigned long long len)
e5b401d4 476{
942a851a 477 int errval = 0, ret = 0;
e5b401d4 478
c8931876
JA
479#ifdef CONFIG_ESX
480 return 0;
481#endif
482
5e0074c2 483 if (len == -1ULL)
3baddf24
JA
484 len = f->io_size;
485 if (off == -1ULL)
486 off = f->file_offset;
ee56ad50 487
0d1cd207
JA
488 if (len == -1ULL || off == -1ULL)
489 return 0;
490
942a851a 491 if (td->io_ops->invalidate) {
4499dbef
TK
492 dprint(FD_IO, "invalidate %s cache %s\n", td->io_ops->name,
493 f->file_name);
d9b100fc 494 ret = td->io_ops->invalidate(td, f);
942a851a 495 if (ret < 0)
afd118db 496 errval = -ret;
942a851a 497 } else if (f->filetype == FIO_TYPE_FILE) {
4499dbef
TK
498 dprint(FD_IO, "declare unneeded cache %s: %llu/%llu\n",
499 f->file_name, off, len);
ecc314ba 500 ret = posix_fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
0b139881 501 if (ret)
942a851a 502 errval = ret;
686fbd31 503 } else if (f->filetype == FIO_TYPE_BLOCK) {
2b9f9141
KR
504 int retry_count = 0;
505
4499dbef 506 dprint(FD_IO, "drop page cache %s\n", f->file_name);
ecc314ba 507 ret = blockdev_invalidate_cache(f);
2b9f9141
KR
508 while (ret < 0 && errno == EAGAIN && retry_count++ < 25) {
509 /*
510 * Linux multipath devices reject ioctl while
511 * the maps are being updated. That window can
512 * last tens of milliseconds; we'll try up to
513 * a quarter of a second.
514 */
515 usleep(10000);
516 ret = blockdev_invalidate_cache(f);
517 }
7e0e25c9 518 if (ret < 0 && errno == EACCES && geteuid()) {
7172cfe8 519 if (!root_warn) {
5ec10eaa
JA
520 log_err("fio: only root may flush block "
521 "devices. Cache flush bypassed!\n");
7172cfe8
JA
522 root_warn = 1;
523 }
7e0e25c9
JA
524 ret = 0;
525 }
942a851a
JA
526 if (ret < 0)
527 errval = errno;
4499dbef
TK
528 } else if (f->filetype == FIO_TYPE_CHAR ||
529 f->filetype == FIO_TYPE_PIPE) {
530 dprint(FD_IO, "invalidate not supported %s\n", f->file_name);
e5b401d4 531 ret = 0;
4499dbef 532 }
e5b401d4 533
dfe11fd1
JA
534 /*
535 * Cache flushing isn't a fatal condition, and we know it will
536 * happen on some platforms where we don't have the proper
537 * function to flush eg block device caches. So just warn and
538 * continue on our way.
539 */
942a851a 540 if (errval)
22de5d77
TK
541 log_info("fio: cache invalidation of %s failed: %s\n",
542 f->file_name, strerror(errval));
e5b401d4 543
dfe11fd1 544 return 0;
3baddf24
JA
545
546}
547
548int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
549{
d6aed795 550 if (!fio_file_open(f))
a5fb461f
JA
551 return 0;
552
5e0074c2 553 return __file_invalidate_cache(td, f, -1ULL, -1ULL);
e5b401d4
JA
554}
555
6977bcd0 556int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
53cdc686 557{
6977bcd0
JA
558 int ret = 0;
559
ee56ad50 560 dprint(FD_FILE, "fd close %s\n", f->file_name);
4906e0b5
JA
561
562 remove_file_hash(f);
563
6977bcd0
JA
564 if (close(f->fd) < 0)
565 ret = errno;
566
b5af8293 567 f->fd = -1;
e6c4d732
JA
568
569 if (f->shadow_fd != -1) {
570 close(f->shadow_fd);
571 f->shadow_fd = -1;
572 }
573
710bf9c5 574 f->engine_pos = 0;
6977bcd0 575 return ret;
53cdc686
JA
576}
577
1ccc6dc7 578int file_lookup_open(struct fio_file *f, int flags)
53cdc686 579{
29c1349f 580 struct fio_file *__f;
4d4e80f2
JA
581 int from_hash;
582
583 __f = lookup_file_hash(f->file_name);
584 if (__f) {
9efef3c4 585 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
4d4e80f2 586 f->lock = __f->lock;
4d4e80f2
JA
587 from_hash = 1;
588 } else {
9efef3c4 589 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
4d4e80f2
JA
590 from_hash = 0;
591 }
592
9c0f3f32
BC
593#ifdef WIN32
594 flags |= _O_BINARY;
595#endif
596
e8670ef8 597 f->fd = open(f->file_name, flags, 0600);
4d4e80f2
JA
598 return from_hash;
599}
600
e6c4d732
JA
601static int file_close_shadow_fds(struct thread_data *td)
602{
603 struct fio_file *f;
604 int num_closed = 0;
605 unsigned int i;
606
607 for_each_file(td, f, i) {
608 if (f->shadow_fd == -1)
609 continue;
610
611 close(f->shadow_fd);
612 f->shadow_fd = -1;
613 num_closed++;
614 }
615
616 return num_closed;
617}
618
4d4e80f2
JA
619int generic_open_file(struct thread_data *td, struct fio_file *f)
620{
66159828 621 int is_std = 0;
53cdc686 622 int flags = 0;
29c1349f 623 int from_hash = 0;
53cdc686 624
ee56ad50
JA
625 dprint(FD_FILE, "fd open %s\n", f->file_name);
626
66159828
JA
627 if (!strcmp(f->file_name, "-")) {
628 if (td_rw(td)) {
629 log_err("fio: can't read/write to stdin/out\n");
630 return 1;
631 }
632 is_std = 1;
ce98fa66
JA
633
634 /*
635 * move output logging to stderr, if we are writing to stdout
636 */
637 if (td_write(td))
638 f_out = stderr;
66159828
JA
639 }
640
6eaf09d6
SL
641 if (td_trim(td))
642 goto skip_flags;
2dc1bbeb 643 if (td->o.odirect)
2fd233b7 644 flags |= OS_O_DIRECT;
d01612f3
CM
645 if (td->o.oatomic) {
646 if (!FIO_O_ATOMIC) {
647 td_verror(td, EINVAL, "OS does not support atomic IO");
648 return 1;
649 }
650 flags |= OS_O_DIRECT | FIO_O_ATOMIC;
651 }
2dc1bbeb 652 if (td->o.sync_io)
2fd233b7 653 flags |= O_SYNC;
2378826d 654 if (td->o.create_on_open && td->o.allow_create)
814452bd 655 flags |= O_CREAT;
6eaf09d6
SL
656skip_flags:
657 if (f->filetype != FIO_TYPE_FILE)
658 flags |= FIO_O_NOATIME;
53cdc686 659
056f3459 660open_again:
660a1cb5 661 if (td_write(td)) {
17308158
JA
662 if (!read_only)
663 flags |= O_RDWR;
53cdc686 664
2378826d 665 if (f->filetype == FIO_TYPE_FILE && td->o.allow_create)
2fd233b7 666 flags |= O_CREAT;
2fd233b7 667
66159828
JA
668 if (is_std)
669 f->fd = dup(STDOUT_FILENO);
4d4e80f2
JA
670 else
671 from_hash = file_lookup_open(f, flags);
6eaf09d6 672 } else if (td_read(td)) {
4241ea8f 673 if (f->filetype == FIO_TYPE_CHAR && !read_only)
2fd233b7
JA
674 flags |= O_RDWR;
675 else
676 flags |= O_RDONLY;
677
66159828
JA
678 if (is_std)
679 f->fd = dup(STDIN_FILENO);
4d4e80f2
JA
680 else
681 from_hash = file_lookup_open(f, flags);
49cff020
TK
682 } else if (td_trim(td)) {
683 assert(!td_rw(td)); /* should have matched above */
6eaf09d6
SL
684 flags |= O_RDWR;
685 from_hash = file_lookup_open(f, flags);
53cdc686
JA
686 }
687
688 if (f->fd == -1) {
e4e33258 689 char buf[FIO_VERROR_SIZE];
e1161c32
JA
690 int __e = errno;
691
835d9b9e 692 if (__e == EPERM && (flags & FIO_O_NOATIME)) {
5921e80c 693 flags &= ~FIO_O_NOATIME;
056f3459
AC
694 goto open_again;
695 }
e6c4d732
JA
696 if (__e == EMFILE && file_close_shadow_fds(td))
697 goto open_again;
056f3459 698
98ffb8f3 699 snprintf(buf, sizeof(buf), "open(%s)", f->file_name);
e4e33258 700
a93c5f04
JA
701 if (__e == EINVAL && (flags & OS_O_DIRECT)) {
702 log_err("fio: looks like your file system does not " \
703 "support direct=1/buffered=0\n");
704 }
705
e4e33258 706 td_verror(td, __e, buf);
3ce3ad33 707 return 1;
53cdc686
JA
708 }
709
29c1349f
JA
710 if (!from_hash && f->fd != -1) {
711 if (add_file_hash(f)) {
3f0ca9b9 712 int fio_unused ret;
29c1349f
JA
713
714 /*
e6c4d732
JA
715 * Stash away descriptor for later close. This is to
716 * work-around a "feature" on Linux, where a close of
717 * an fd that has been opened for write will trigger
718 * udev to call blkid to check partitions, fs id, etc.
de8f6de9 719 * That pollutes the device cache, which can slow down
e6c4d732 720 * unbuffered accesses.
29c1349f 721 */
e6c4d732
JA
722 if (f->shadow_fd == -1)
723 f->shadow_fd = f->fd;
724 else {
725 /*
726 * OK to ignore, we haven't done anything
727 * with it
728 */
729 ret = generic_close_file(td, f);
730 }
29c1349f
JA
731 goto open_again;
732 }
733 }
4906e0b5 734
53cdc686 735 return 0;
b5af8293
JA
736}
737
79591fa9
TK
738/*
739 * This function i.e. get_file_size() is the default .get_file_size
740 * implementation of majority of I/O engines.
741 */
df9c26b1 742int generic_get_file_size(struct thread_data *td, struct fio_file *f)
21972cde 743{
df9c26b1 744 return get_file_size(td, f);
21972cde
JA
745}
746
7bb48f84
JA
747/*
748 * open/close all files, so that ->real_file_size gets set
749 */
bab3fd58 750static int get_file_sizes(struct thread_data *td)
7bb48f84
JA
751{
752 struct fio_file *f;
753 unsigned int i;
bab3fd58 754 int err = 0;
7bb48f84
JA
755
756 for_each_file(td, f, i) {
08c44a55 757 dprint(FD_FILE, "get file size for %p/%d/%s\n", f, i,
5ec10eaa 758 f->file_name);
9efef3c4 759
99a47c69 760 if (td_io_get_file_size(td, f)) {
40b44f4a
JA
761 if (td->error != ENOENT) {
762 log_err("%s\n", td->verror);
763 err = 1;
3ce3ad33 764 break;
40b44f4a 765 }
541d66d7 766 clear_error(td);
07eb79df 767 }
409b3417 768
79591fa9
TK
769 /*
770 * There are corner cases where we end up with -1 for
771 * ->real_file_size due to unsupported file type, etc.
772 * We then just set to size option value divided by number
773 * of files, similar to the way file ->io_size is set.
774 * stat(2) failure doesn't set ->real_file_size to -1.
775 */
409b3417
JA
776 if (f->real_file_size == -1ULL && td->o.size)
777 f->real_file_size = td->o.size / td->o.nr_files;
7bb48f84 778 }
bab3fd58
JA
779
780 return err;
7bb48f84
JA
781}
782
2e3bd4c2
JA
783struct fio_mount {
784 struct flist_head list;
785 const char *base;
786 char __base[256];
787 unsigned int key;
788};
789
790/*
791 * Get free number of bytes for each file on each unique mount.
792 */
793static unsigned long long get_fs_free_counts(struct thread_data *td)
794{
795 struct flist_head *n, *tmp;
68b0316f 796 unsigned long long ret = 0;
2e3bd4c2
JA
797 struct fio_mount *fm;
798 FLIST_HEAD(list);
799 struct fio_file *f;
800 unsigned int i;
801
802 for_each_file(td, f, i) {
803 struct stat sb;
804 char buf[256];
805
686fbd31 806 if (f->filetype == FIO_TYPE_BLOCK || f->filetype == FIO_TYPE_CHAR) {
4ccdccd1
JA
807 if (f->real_file_size != -1ULL)
808 ret += f->real_file_size;
68b0316f
JA
809 continue;
810 } else if (f->filetype != FIO_TYPE_FILE)
811 continue;
812
da27a4bf
JA
813 buf[255] = '\0';
814 strncpy(buf, f->file_name, 255);
2e3bd4c2
JA
815
816 if (stat(buf, &sb) < 0) {
817 if (errno != ENOENT)
818 break;
819 strcpy(buf, ".");
820 if (stat(buf, &sb) < 0)
821 break;
822 }
823
824 fm = NULL;
825 flist_for_each(n, &list) {
826 fm = flist_entry(n, struct fio_mount, list);
827 if (fm->key == sb.st_dev)
828 break;
829
830 fm = NULL;
831 }
832
833 if (fm)
834 continue;
835
3660ceae
JA
836 fm = calloc(1, sizeof(*fm));
837 strncpy(fm->__base, buf, sizeof(fm->__base) - 1);
2e3bd4c2
JA
838 fm->base = basename(fm->__base);
839 fm->key = sb.st_dev;
840 flist_add(&fm->list, &list);
841 }
842
2e3bd4c2
JA
843 flist_for_each_safe(n, tmp, &list) {
844 unsigned long long sz;
845
846 fm = flist_entry(n, struct fio_mount, list);
847 flist_del(&fm->list);
848
c08ad04c 849 sz = get_fs_free_size(fm->base);
2e3bd4c2
JA
850 if (sz && sz != -1ULL)
851 ret += sz;
852
853 free(fm);
854 }
855
856 return ret;
857}
858
bedc9dc2 859uint64_t get_start_offset(struct thread_data *td, struct fio_file *f)
ce95d651 860{
bedc9dc2 861 struct thread_options *o = &td->o;
872e0415
JA
862 unsigned long long align_bs;
863 unsigned long long offset;
bedc9dc2
JA
864
865 if (o->file_append && f->filetype == FIO_TYPE_FILE)
866 return f->real_file_size;
867
89978a6b 868 if (o->start_offset_percent > 0) {
872e0415 869 /*
83c8b093 870 * if offset_align is provided, set initial offset
872e0415 871 */
83c8b093
JF
872 if (fio_option_is_set(o, start_offset_align)) {
873 align_bs = o->start_offset_align;
872e0415
JA
874 } else {
875 /* else take the minimum block size */
89978a6b
BW
876 align_bs = td_min_bs(td);
877 }
878
879 /* calculate the raw offset */
880 offset = (f->real_file_size * o->start_offset_percent / 100) +
881 (td->subjob_number * o->offset_increment);
882
872e0415
JA
883 /*
884 * block align the offset at the next available boundary at
885 * ceiling(offset / align_bs) * align_bs
886 */
89978a6b
BW
887 offset = (offset / align_bs + (offset % align_bs != 0)) * align_bs;
888
872e0415
JA
889 } else {
890 /* start_offset_percent not set */
f0d13935
JA
891 offset = o->start_offset +
892 td->subjob_number * o->offset_increment;
89978a6b 893 }
872e0415 894
89978a6b 895 return offset;
ce95d651
DE
896}
897
7bb48f84
JA
898/*
899 * Open the files and setup files sizes, creating files if necessary.
900 */
53cdc686
JA
901int setup_files(struct thread_data *td)
902{
7bb48f84 903 unsigned long long total_size, extend_size;
de98bd30 904 struct thread_options *o = &td->o;
53cdc686 905 struct fio_file *f;
002fe734 906 unsigned int i, nr_fs_extra = 0;
000b0803 907 int err = 0, need_extend;
e90391eb 908 int old_state;
002fe734
JA
909 const unsigned int bs = td_min_bs(td);
910 uint64_t fs = 0;
53cdc686 911
ee56ad50
JA
912 dprint(FD_FILE, "setup files\n");
913
8edd973d 914 old_state = td_bump_runstate(td, TD_SETTING_UP);
e90391eb 915
de98bd30 916 if (o->read_iolog_file)
25460cf6 917 goto done;
691c8fb0 918
53cdc686 919 /*
79591fa9
TK
920 * Find out physical size of files or devices for this thread,
921 * before we determine I/O size and range of our targets.
922 * If ioengine defines a setup() method, it's responsible for
7bb48f84
JA
923 * opening the files and setting f->real_file_size to indicate
924 * the valid range for that file.
53cdc686
JA
925 */
926 if (td->io_ops->setup)
7bb48f84
JA
927 err = td->io_ops->setup(td);
928 else
bab3fd58 929 err = get_file_sizes(td);
53cdc686 930
f1027063 931 if (err)
e90391eb 932 goto err_out;
f1027063 933
0a7eb121 934 /*
7bb48f84
JA
935 * check sizes. if the files/devices do not exist and the size
936 * isn't passed to fio, abort.
0a7eb121 937 */
7bb48f84
JA
938 total_size = 0;
939 for_each_file(td, f, i) {
49a416bd 940 f->fileno = i;
7bb48f84
JA
941 if (f->real_file_size == -1ULL)
942 total_size = -1ULL;
943 else
944 total_size += f->real_file_size;
945 }
0a7eb121 946
de98bd30 947 if (o->fill_device)
2e3bd4c2
JA
948 td->fill_device_size = get_fs_free_counts(td);
949
7bb48f84
JA
950 /*
951 * device/file sizes are zero and no size given, punt
952 */
de98bd30 953 if ((!total_size || total_size == -1ULL) && !o->size &&
9b87f09b 954 !td_ioengine_flagged(td, FIO_NOIO) && !o->fill_device &&
de98bd30
JA
955 !(o->nr_files && (o->file_size_low || o->file_size_high))) {
956 log_err("%s: you need to specify size=\n", o->name);
e1161c32 957 td_verror(td, EINVAL, "total_file_size");
e90391eb 958 goto err_out;
53cdc686
JA
959 }
960
002fe734
JA
961 /*
962 * Calculate per-file size and potential extra size for the
79591fa9 963 * first files, if needed (i.e. if we don't have a fixed size).
002fe734 964 */
d1e78e6b 965 if (!o->file_size_low && o->nr_files) {
002fe734
JA
966 uint64_t all_fs;
967
968 fs = o->size / o->nr_files;
969 all_fs = fs * o->nr_files;
970
971 if (all_fs < o->size)
972 nr_fs_extra = (o->size - all_fs) / bs;
973 }
974
7bb48f84
JA
975 /*
976 * now file sizes are known, so we can set ->io_size. if size= is
977 * not given, ->io_size is just equal to ->real_file_size. if size
978 * is given, ->io_size is size / nr_files.
979 */
980 extend_size = total_size = 0;
981 need_extend = 0;
982 for_each_file(td, f, i) {
bedc9dc2 983 f->file_offset = get_start_offset(td, f);
bcdedd0a 984
79591fa9
TK
985 /*
986 * Update ->io_size depending on options specified.
987 * ->file_size_low being 0 means filesize option isn't set.
988 * Non zero ->file_size_low equals ->file_size_high means
989 * filesize option is set in a fixed size format.
990 * Non zero ->file_size_low not equals ->file_size_high means
991 * filesize option is set in a range format.
992 */
de98bd30 993 if (!o->file_size_low) {
7bb48f84 994 /*
79591fa9 995 * no file size or range given, file size is equal to
c4aa2d08 996 * total size divided by number of files. If the size
002fe734
JA
997 * doesn't divide nicely with the min blocksize,
998 * make the first files bigger.
7bb48f84 999 */
002fe734
JA
1000 f->io_size = fs;
1001 if (nr_fs_extra) {
1002 nr_fs_extra--;
1003 f->io_size += bs;
1004 }
1005
c4aa2d08 1006 /*
c6dfd837
TK
1007 * We normally don't come here for regular files, but
1008 * if the result is 0 for a regular file, set it to the
1009 * real file size. This could be size of the existing
1010 * one if it already exists, but otherwise will be set
1011 * to 0. A new file won't be created because
c4aa2d08
TK
1012 * ->io_size + ->file_offset equals ->real_file_size.
1013 */
1014 if (!f->io_size) {
1015 if (f->file_offset > f->real_file_size)
1016 goto err_offset;
273f8c91 1017 f->io_size = f->real_file_size - f->file_offset;
c4aa2d08
TK
1018 if (!f->io_size)
1019 log_info("fio: file %s may be ignored\n",
1020 f->file_name);
1021 }
de98bd30
JA
1022 } else if (f->real_file_size < o->file_size_low ||
1023 f->real_file_size > o->file_size_high) {
1024 if (f->file_offset > o->file_size_low)
bcdedd0a 1025 goto err_offset;
7bb48f84
JA
1026 /*
1027 * file size given. if it's fixed, use that. if it's a
1028 * range, generate a random size in-between.
1029 */
de98bd30
JA
1030 if (o->file_size_low == o->file_size_high)
1031 f->io_size = o->file_size_low - f->file_offset;
1032 else {
5ec10eaa
JA
1033 f->io_size = get_rand_file_size(td)
1034 - f->file_offset;
1035 }
65bdb10a 1036 } else
bcdedd0a 1037 f->io_size = f->real_file_size - f->file_offset;
53cdc686 1038
7bb48f84
JA
1039 if (f->io_size == -1ULL)
1040 total_size = -1ULL;
4d002569 1041 else {
e391c704 1042 if (o->size_percent) {
76e4bb4f
SW
1043 uint64_t file_size;
1044
1045 file_size = f->io_size + f->file_offset;
1046 f->io_size = (file_size *
1047 o->size_percent) / 100;
1048 if (f->io_size > (file_size - f->file_offset))
1049 f->io_size = file_size - f->file_offset;
1050
e391c704
JA
1051 f->io_size -= (f->io_size % td_min_bs(td));
1052 }
7bb48f84 1053 total_size += f->io_size;
4d002569 1054 }
7bb48f84
JA
1055
1056 if (f->filetype == FIO_TYPE_FILE &&
bcdedd0a 1057 (f->io_size + f->file_offset) > f->real_file_size &&
9b87f09b 1058 !td_ioengine_flagged(td, FIO_DISKLESSIO)) {
5fd31680
JA
1059 if (!o->create_on_open) {
1060 need_extend++;
814452bd 1061 extend_size += (f->io_size + f->file_offset);
43558406 1062 fio_file_set_extend(f);
5fd31680 1063 } else
814452bd 1064 f->real_file_size = f->io_size + f->file_offset;
5ec10eaa 1065 }
7bb48f84 1066 }
53cdc686 1067
66347cfa
DE
1068 if (td->o.block_error_hist) {
1069 int len;
1070
1071 assert(td->o.nr_files == 1); /* checked in fixup_options */
1072 f = td->files[0];
1073 len = f->io_size / td->o.bs[DDIR_TRIM];
1074 if (len > MAX_NR_BLOCK_INFOS || len <= 0) {
1075 log_err("fio: cannot calculate block histogram with "
1076 "%d trim blocks, maximum %d\n",
1077 len, MAX_NR_BLOCK_INFOS);
1078 td_verror(td, EINVAL, "block_error_hist");
1079 goto err_out;
1080 }
1081
1082 td->ts.nr_block_infos = len;
8a68c41c 1083 for (i = 0; i < len; i++)
66347cfa
DE
1084 td->ts.block_infos[i] =
1085 BLOCK_INFO(0, BLOCK_STATE_UNINIT);
1086 } else
1087 td->ts.nr_block_infos = 0;
1088
0bc27b0b 1089 if (!o->size || (total_size && o->size > total_size))
de98bd30 1090 o->size = total_size;
21972cde 1091
d1faa06d
JA
1092 if (o->size < td_min_bs(td)) {
1093 log_err("fio: blocksize too large for data set\n");
1094 goto err_out;
1095 }
1096
7bb48f84 1097 /*
79591fa9
TK
1098 * See if we need to extend some files, typically needed when our
1099 * target regular files don't exist yet, but our jobs require them
1100 * initially due to read I/Os.
7bb48f84
JA
1101 */
1102 if (need_extend) {
1103 temp_stall_ts = 1;
7c5f4cdb
TK
1104 if (output_format & FIO_OUTPUT_NORMAL) {
1105 log_info("%s: Laying out IO file%s (%u file%s / %s%lluMiB)\n",
1106 o->name,
1107 need_extend > 1 ? "s" : "",
1108 need_extend,
1109 need_extend > 1 ? "s" : "",
1110 need_extend > 1 ? "total " : "",
1111 extend_size >> 20);
1112 }
7bb48f84
JA
1113
1114 for_each_file(td, f, i) {
5e0074c2 1115 unsigned long long old_len = -1ULL, extend_len = -1ULL;
3baddf24 1116
d6aed795 1117 if (!fio_file_extend(f))
7bb48f84
JA
1118 continue;
1119
409b3417 1120 assert(f->filetype == FIO_TYPE_FILE);
d6aed795 1121 fio_file_clear_extend(f);
de98bd30 1122 if (!o->fill_device) {
5e0074c2 1123 old_len = f->real_file_size;
0b9d69ec
JA
1124 extend_len = f->io_size + f->file_offset -
1125 old_len;
5e0074c2 1126 }
bcdedd0a 1127 f->real_file_size = (f->io_size + f->file_offset);
7bb48f84
JA
1128 err = extend_file(td, f);
1129 if (err)
3baddf24 1130 break;
5e0074c2 1131
3baddf24
JA
1132 err = __file_invalidate_cache(td, f, old_len,
1133 extend_len);
9824f73b
JA
1134
1135 /*
1136 * Shut up static checker
1137 */
1138 if (f->fd != -1)
1139 close(f->fd);
1140
3baddf24
JA
1141 f->fd = -1;
1142 if (err)
7bb48f84
JA
1143 break;
1144 }
1145 temp_stall_ts = 0;
1146 }
1147
1148 if (err)
e90391eb 1149 goto err_out;
7bb48f84 1150
de98bd30
JA
1151 if (!o->zone_size)
1152 o->zone_size = o->size;
7bb48f84 1153
ea966f81
JA
1154 /*
1155 * iolog already set the total io size, if we read back
1156 * stored entries.
1157 */
77731b29 1158 if (!o->read_iolog_file) {
5be9bf09
TK
1159 if (o->io_size)
1160 td->total_io_size = o->io_size * o->loops;
77731b29
JA
1161 else
1162 td->total_io_size = o->size * o->loops;
1163 }
25460cf6
JA
1164
1165done:
de98bd30 1166 if (o->create_only)
25460cf6
JA
1167 td->done = 1;
1168
8edd973d 1169 td_restore_runstate(td, old_state);
7bb48f84 1170 return 0;
bcdedd0a 1171err_offset:
de98bd30 1172 log_err("%s: you need to specify valid offset=\n", o->name);
e90391eb 1173err_out:
8edd973d 1174 td_restore_runstate(td, old_state);
bcdedd0a 1175 return 1;
53cdc686
JA
1176}
1177
c139f3b4 1178bool pre_read_files(struct thread_data *td)
afad68f7
ZY
1179{
1180 struct fio_file *f;
1181 unsigned int i;
1182
1183 dprint(FD_FILE, "pre_read files\n");
1184
1185 for_each_file(td, f, i) {
c139f3b4
JA
1186 if (!pre_read_file(td, f))
1187 return false;
afad68f7
ZY
1188 }
1189
c139f3b4 1190 return true;
afad68f7
ZY
1191}
1192
3a03f0cf 1193static void __init_rand_distribution(struct thread_data *td, struct fio_file *f)
9c6f6316 1194{
2316296a 1195 unsigned int range_size, seed;
9c6f6316 1196 unsigned long nranges;
42da5c8b 1197 uint64_t fsize;
9c6f6316
JA
1198
1199 range_size = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
42da5c8b 1200 fsize = min(f->real_file_size, f->io_size);
9c6f6316 1201
42da5c8b 1202 nranges = (fsize + range_size - 1) / range_size;
9c6f6316 1203
2316296a 1204 seed = jhash(f->file_name, strlen(f->file_name), 0) * td->thread_number;
8425687e
JA
1205 if (!td->o.rand_repeatable)
1206 seed = td->rand_seeds[4];
1207
9c6f6316 1208 if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
888677a4 1209 zipf_init(&f->zipf, nranges, td->o.zipf_theta.u.f, seed);
56d9fa4b 1210 else if (td->o.random_distribution == FIO_RAND_DIST_PARETO)
888677a4 1211 pareto_init(&f->zipf, nranges, td->o.pareto_h.u.f, seed);
56d9fa4b 1212 else if (td->o.random_distribution == FIO_RAND_DIST_GAUSS)
f88cd222 1213 gauss_init(&f->gauss, nranges, td->o.gauss_dev.u.f, seed);
9c6f6316
JA
1214}
1215
4d832322 1216static bool init_rand_distribution(struct thread_data *td)
9c6f6316
JA
1217{
1218 struct fio_file *f;
1219 unsigned int i;
1220 int state;
1221
1222 if (td->o.random_distribution == FIO_RAND_DIST_RANDOM)
4d832322 1223 return false;
9c6f6316 1224
8edd973d
JA
1225 state = td_bump_runstate(td, TD_SETTING_UP);
1226
9c6f6316
JA
1227 for_each_file(td, f, i)
1228 __init_rand_distribution(td, f);
8edd973d
JA
1229
1230 td_restore_runstate(td, state);
4d832322 1231 return true;
9c6f6316
JA
1232}
1233
75f90d5f
JA
1234/*
1235 * Check if the number of blocks exceeds the randomness capability of
1236 * the selected generator. Tausworthe is 32-bit, the others are fullly
1237 * 64-bit capable.
1238 */
1239static int check_rand_gen_limits(struct thread_data *td, struct fio_file *f,
1240 uint64_t blocks)
1241{
1242 if (blocks <= FRAND32_MAX)
1243 return 0;
1244 if (td->o.random_generator != FIO_RAND_GEN_TAUSWORTHE)
1245 return 0;
1246
1247 /*
1248 * If the user hasn't specified a random generator, switch
1249 * to tausworthe64 with informational warning. If the user did
1250 * specify one, just warn.
1251 */
1252 log_info("fio: file %s exceeds 32-bit tausworthe random generator.\n",
1253 f->file_name);
1254
1255 if (!fio_option_is_set(&td->o, random_generator)) {
1256 log_info("fio: Switching to tausworthe64. Use the "
1257 "random_generator= option to get rid of this "
4e795a3e 1258 "warning.\n");
75f90d5f
JA
1259 td->o.random_generator = FIO_RAND_GEN_TAUSWORTHE64;
1260 return 0;
1261 }
1262
1263 /*
1264 * Just make this information to avoid breaking scripts.
1265 */
1266 log_info("fio: Use the random_generator= option to switch to lfsr or "
1267 "tausworthe64.\n");
1268 return 0;
1269}
1270
4d832322 1271bool init_random_map(struct thread_data *td)
68727076 1272{
51ede0b1 1273 unsigned long long blocks;
68727076
JA
1274 struct fio_file *f;
1275 unsigned int i;
1276
9c6f6316 1277 if (init_rand_distribution(td))
4d832322 1278 return true;
3831a843 1279 if (!td_random(td))
4d832322 1280 return true;
68727076
JA
1281
1282 for_each_file(td, f, i) {
42da5c8b 1283 uint64_t fsize = min(f->real_file_size, f->io_size);
38f30c81 1284
42da5c8b 1285 blocks = fsize / (unsigned long long) td->o.rw_min_bs;
53737ae0 1286
75f90d5f 1287 if (check_rand_gen_limits(td, f, blocks))
4d832322 1288 return false;
37fbd7e9 1289
8055e41d 1290 if (td->o.random_generator == FIO_RAND_GEN_LFSR) {
82af46be
JA
1291 unsigned long seed;
1292
1293 seed = td->rand_seeds[FIO_RAND_BLOCK_OFF];
9c0f3f32 1294
967d1b63
JA
1295 if (!lfsr_init(&f->lfsr, blocks, seed, 0)) {
1296 fio_file_set_lfsr(f);
8055e41d 1297 continue;
967d1b63 1298 }
3831a843 1299 } else if (!td->o.norandommap) {
7ebd796f 1300 f->io_axmap = axmap_new(blocks);
967d1b63
JA
1301 if (f->io_axmap) {
1302 fio_file_set_axmap(f);
8055e41d 1303 continue;
967d1b63 1304 }
1cad7121
JA
1305 } else if (td->o.norandommap)
1306 continue;
ceadd59e 1307
2b386d25 1308 if (!td->o.softrandommap) {
5ec10eaa
JA
1309 log_err("fio: failed allocating random map. If running"
1310 " a large number of jobs, try the 'norandommap'"
2b386d25
JA
1311 " option or set 'softrandommap'. Or give"
1312 " a larger --alloc-size to fio.\n");
4d832322 1313 return false;
68727076 1314 }
303032ae
JA
1315
1316 log_info("fio: file %s failed allocating random map. Running "
1317 "job without.\n", f->file_name);
68727076
JA
1318 }
1319
4d832322 1320 return true;
68727076
JA
1321}
1322
53cdc686
JA
1323void close_files(struct thread_data *td)
1324{
0ab8db89 1325 struct fio_file *f;
af52b345 1326 unsigned int i;
53cdc686 1327
2be3eec3
JA
1328 for_each_file(td, f, i) {
1329 if (fio_file_open(f))
1330 td_io_close_file(td, f);
1331 }
24ffd2c2
JA
1332}
1333
1334void close_and_free_files(struct thread_data *td)
1335{
1336 struct fio_file *f;
1337 unsigned int i;
cb9bf647 1338 bool use_free = td_ioengine_flagged(td, FIO_NOFILEHASH);
24ffd2c2 1339
ee56ad50
JA
1340 dprint(FD_FILE, "close files\n");
1341
0ab8db89 1342 for_each_file(td, f, i) {
38ef9c90
CF
1343 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
1344 dprint(FD_FILE, "free unlink %s\n", f->file_name);
1345 td_io_unlink_file(td, f);
1346 }
1347
22a57ba8
JA
1348 if (fio_file_open(f))
1349 td_io_close_file(td, f);
1350
b9fbcf21 1351 remove_file_hash(f);
b3dc7f07 1352
b5f4d8ba
JA
1353 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
1354 dprint(FD_FILE, "free unlink %s\n", f->file_name);
38ef9c90 1355 td_io_unlink_file(td, f);
b5f4d8ba
JA
1356 }
1357
cb9bf647
JB
1358 if (use_free)
1359 free(f->file_name);
1360 else
1361 sfree(f->file_name);
fa1da865 1362 f->file_name = NULL;
967d1b63
JA
1363 if (fio_file_axmap(f)) {
1364 axmap_free(f->io_axmap);
1365 f->io_axmap = NULL;
1366 }
cb9bf647
JB
1367 if (use_free)
1368 free(f);
1369 else
1370 sfree(f);
53cdc686 1371 }
b4a6a59a 1372
2dc1bbeb 1373 td->o.filename = NULL;
cade3ef4 1374 free(td->files);
d7df1d13 1375 free(td->file_locks);
9efef3c4 1376 td->files_index = 0;
b4a6a59a 1377 td->files = NULL;
d7df1d13 1378 td->file_locks = NULL;
27ddbfa0 1379 td->o.file_lock_mode = FILE_LOCK_NONE;
2dc1bbeb 1380 td->o.nr_files = 0;
53cdc686 1381}
af52b345 1382
e3bab463 1383static void get_file_type(struct fio_file *f)
af52b345
JA
1384{
1385 struct stat sb;
1386
66159828
JA
1387 if (!strcmp(f->file_name, "-"))
1388 f->filetype = FIO_TYPE_PIPE;
1389 else
1390 f->filetype = FIO_TYPE_FILE;
af52b345 1391
d5b78f5a 1392#ifdef WIN32
3892182a
BC
1393 /* \\.\ is the device namespace in Windows, where every file is
1394 * a block device */
1395 if (strncmp(f->file_name, "\\\\.\\", 4) == 0)
686fbd31 1396 f->filetype = FIO_TYPE_BLOCK;
d5b78f5a 1397#endif
3892182a 1398
b30d395e 1399 if (!stat(f->file_name, &sb)) {
3892182a 1400 if (S_ISBLK(sb.st_mode))
686fbd31 1401 f->filetype = FIO_TYPE_BLOCK;
af52b345
JA
1402 else if (S_ISCHR(sb.st_mode))
1403 f->filetype = FIO_TYPE_CHAR;
b5605e9d
JA
1404 else if (S_ISFIFO(sb.st_mode))
1405 f->filetype = FIO_TYPE_PIPE;
af52b345
JA
1406 }
1407}
1408
1b2a83dc 1409static bool __is_already_allocated(const char *fname, bool set)
190b8f0c 1410{
90426237 1411 struct flist_head *entry;
1b2a83dc 1412 bool ret;
bcbfeefa 1413
1b2a83dc
JA
1414 ret = file_bloom_exists(fname, set);
1415 if (!ret)
1416 return ret;
90426237
JA
1417
1418 flist_for_each(entry, &filename_list) {
04d6530f 1419 struct file_name *fn;
90426237 1420
04d6530f
JA
1421 fn = flist_entry(entry, struct file_name, list);
1422
1423 if (!strcmp(fn->filename, fname))
1424 return true;
90426237
JA
1425 }
1426
04d6530f 1427 return false;
bcbfeefa
CE
1428}
1429
04d6530f 1430static bool is_already_allocated(const char *fname)
bcbfeefa 1431{
04d6530f 1432 bool ret;
bcbfeefa 1433
90426237 1434 fio_file_hash_lock();
1b2a83dc 1435 ret = __is_already_allocated(fname, false);
90426237 1436 fio_file_hash_unlock();
04d6530f 1437
90426237
JA
1438 return ret;
1439}
bcbfeefa 1440
90426237
JA
1441static void set_already_allocated(const char *fname)
1442{
1443 struct file_name *fn;
1444
1445 fn = malloc(sizeof(struct file_name));
1446 fn->filename = strdup(fname);
1447
1448 fio_file_hash_lock();
1b2a83dc 1449 if (!__is_already_allocated(fname, true)) {
90426237
JA
1450 flist_add_tail(&fn->list, &filename_list);
1451 fn = NULL;
bcbfeefa 1452 }
90426237 1453 fio_file_hash_unlock();
bcbfeefa 1454
90426237
JA
1455 if (fn) {
1456 free(fn->filename);
1457 free(fn);
1458 }
bcbfeefa
CE
1459}
1460
190b8f0c
CF
1461static void free_already_allocated(void)
1462{
bcbfeefa
CE
1463 struct flist_head *entry, *tmp;
1464 struct file_name *fn;
1465
90426237
JA
1466 if (flist_empty(&filename_list))
1467 return;
1468
1469 fio_file_hash_lock();
1470 flist_for_each_safe(entry, tmp, &filename_list) {
1471 fn = flist_entry(entry, struct file_name, list);
1472 free(fn->filename);
1473 flist_del(&fn->list);
1474 free(fn);
bcbfeefa 1475 }
90426237
JA
1476
1477 fio_file_hash_unlock();
bcbfeefa
CE
1478}
1479
7b5cb700
JA
1480static struct fio_file *alloc_new_file(struct thread_data *td)
1481{
1482 struct fio_file *f;
1483
cb9bf647
JB
1484 if (td_ioengine_flagged(td, FIO_NOFILEHASH))
1485 f = calloc(1, sizeof(*f));
1486 else
1487 f = smalloc(sizeof(*f));
7b5cb700 1488 if (!f) {
7b5cb700
JA
1489 assert(0);
1490 return NULL;
1491 }
1492
1493 f->fd = -1;
1494 f->shadow_fd = -1;
1495 fio_file_reset(td, f);
1496 return f;
1497}
1498
04d6530f
JA
1499bool exists_and_not_regfile(const char *filename)
1500{
1501 struct stat sb;
1502
1503 if (lstat(filename, &sb) == -1)
1504 return false;
1505
1506#ifndef WIN32 /* NOT Windows */
1507 if (S_ISREG(sb.st_mode))
1508 return false;
1509#else
1510 /* \\.\ is the device namespace in Windows, where every file
1511 * is a device node */
1512 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
1513 return false;
1514#endif
1515
1516 return true;
1517}
1518
0b801f22 1519static int create_work_dirs(struct thread_data *td, const char *fname)
f1c71016
JB
1520{
1521 char path[PATH_MAX];
1522 char *start, *end;
f1c71016
JB
1523
1524 if (td->o.directory) {
0b801f22
JB
1525 snprintf(path, PATH_MAX, "%s%c%s", td->o.directory,
1526 FIO_OS_PATH_SEPARATOR, fname);
1527 start = strstr(path, fname);
f1c71016 1528 } else {
0b801f22
JB
1529 snprintf(path, PATH_MAX, "%s", fname);
1530 start = path;
f1c71016
JB
1531 }
1532
0b801f22 1533 end = start;
f1c71016
JB
1534 while ((end = strchr(end, FIO_OS_PATH_SEPARATOR)) != NULL) {
1535 if (end == start)
1536 break;
1537 *end = '\0';
1538 errno = 0;
4252396e 1539#ifdef CONFIG_HAVE_MKDIR_TWO
0b801f22 1540 if (mkdir(path, 0600) && errno != EEXIST) {
4252396e
JA
1541#else
1542 if (mkdir(path) && errno != EEXIST) {
1543#endif
f1c71016
JB
1544 log_err("fio: failed to create dir (%s): %d\n",
1545 start, errno);
0b801f22 1546 return 1;
f1c71016
JB
1547 }
1548 *end = FIO_OS_PATH_SEPARATOR;
1549 end++;
1550 }
f1c71016 1551 td->flags |= TD_F_DIRS_CREATED;
0b801f22 1552 return 0;
f1c71016
JB
1553}
1554
5903e7b7 1555int add_file(struct thread_data *td, const char *fname, int numjob, int inc)
af52b345 1556{
7b4e4fe5 1557 int cur_files = td->files_index;
bd0ee748 1558 char file_name[PATH_MAX];
af52b345 1559 struct fio_file *f;
bd0ee748 1560 int len = 0;
af52b345 1561
ee56ad50
JA
1562 dprint(FD_FILE, "add file %s\n", fname);
1563
bcbfeefa 1564 if (td->o.directory)
922a5be8
JA
1565 len = set_name_idx(file_name, PATH_MAX, td->o.directory, numjob,
1566 td->o.unique_filename);
bcbfeefa
CE
1567
1568 sprintf(file_name + len, "%s", fname);
1569
f1c71016 1570 if (strchr(fname, FIO_OS_PATH_SEPARATOR) &&
0b801f22
JB
1571 !(td->flags & TD_F_DIRS_CREATED) &&
1572 create_work_dirs(td, fname))
1573 return 1;
f1c71016 1574
bcbfeefa 1575 /* clean cloned siblings using existing files */
04d6530f
JA
1576 if (numjob && is_already_allocated(file_name) &&
1577 !exists_and_not_regfile(fname))
bcbfeefa
CE
1578 return 0;
1579
7b5cb700 1580 f = alloc_new_file(td);
bd0ee748 1581
fc99bc0d 1582 if (td->files_size <= td->files_index) {
1983e327 1583 unsigned int new_size = td->o.nr_files + 1;
126d65c6 1584
fc99bc0d
JA
1585 dprint(FD_FILE, "resize file array to %d files\n", new_size);
1586
1587 td->files = realloc(td->files, new_size * sizeof(f));
d537c08b
JM
1588 if (td->files == NULL) {
1589 log_err("fio: realloc OOM\n");
1590 assert(0);
1591 }
d7df1d13
JA
1592 if (td->o.file_lock_mode != FILE_LOCK_NONE) {
1593 td->file_locks = realloc(td->file_locks, new_size);
1594 if (!td->file_locks) {
1595 log_err("fio: realloc OOM\n");
1596 assert(0);
1597 }
1598 td->file_locks[cur_files] = FILE_LOCK_NONE;
1599 }
fc99bc0d
JA
1600 td->files_size = new_size;
1601 }
8bb7679e 1602 td->files[cur_files] = f;
89ac1d48 1603 f->fileno = cur_files;
126d65c6 1604
07eb79df
JA
1605 /*
1606 * init function, io engine may not be loaded yet
1607 */
9b87f09b 1608 if (td->io_ops && td_ioengine_flagged(td, FIO_DISKLESSIO))
07eb79df
JA
1609 f->real_file_size = -1ULL;
1610
cb9bf647
JB
1611 if (td_ioengine_flagged(td, FIO_NOFILEHASH))
1612 f->file_name = strdup(file_name);
1613 else
1614 f->file_name = smalloc_strdup(file_name);
81b3c86f 1615 if (!f->file_name)
c48c0be7 1616 assert(0);
0b9d69ec 1617
e3bab463 1618 get_file_type(f);
af52b345 1619
4d4e80f2
JA
1620 switch (td->o.file_lock_mode) {
1621 case FILE_LOCK_NONE:
1622 break;
1623 case FILE_LOCK_READWRITE:
d7df1d13 1624 f->rwlock = fio_rwlock_init();
4d4e80f2
JA
1625 break;
1626 case FILE_LOCK_EXCLUSIVE:
521da527 1627 f->lock = fio_mutex_init(FIO_MUTEX_UNLOCKED);
4d4e80f2
JA
1628 break;
1629 default:
1630 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
1631 assert(0);
1632 }
29c1349f 1633
7b4e4fe5 1634 td->files_index++;
1549441c
JA
1635 if (f->filetype == FIO_TYPE_FILE)
1636 td->nr_normal_files++;
f29b25a3 1637
084a5475
JA
1638 if (td->o.numjobs > 1)
1639 set_already_allocated(file_name);
bcbfeefa 1640
5903e7b7
JA
1641 if (inc)
1642 td->o.nr_files++;
1643
5ec10eaa
JA
1644 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
1645 cur_files);
9efef3c4 1646
f29b25a3 1647 return cur_files;
af52b345 1648}
0ad920e7 1649
49ffb4a2
JA
1650int add_file_exclusive(struct thread_data *td, const char *fname)
1651{
1652 struct fio_file *f;
1653 unsigned int i;
1654
1655 for_each_file(td, f, i) {
1656 if (!strcmp(f->file_name, fname))
1657 return i;
1658 }
1659
5903e7b7 1660 return add_file(td, fname, 0, 1);
49ffb4a2
JA
1661}
1662
0ad920e7
JA
1663void get_file(struct fio_file *f)
1664{
8172fe97 1665 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
d6aed795 1666 assert(fio_file_open(f));
0ad920e7
JA
1667 f->references++;
1668}
1669
6977bcd0 1670int put_file(struct thread_data *td, struct fio_file *f)
0ad920e7 1671{
98e1ac4e 1672 int f_ret = 0, ret = 0;
6977bcd0 1673
8172fe97 1674 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
ee56ad50 1675
22a57ba8
JA
1676 if (!fio_file_open(f)) {
1677 assert(f->fd == -1);
6977bcd0 1678 return 0;
22a57ba8 1679 }
0ad920e7
JA
1680
1681 assert(f->references);
1682 if (--f->references)
6977bcd0 1683 return 0;
0ad920e7 1684
71b84caa 1685 if (should_fsync(td) && td->o.fsync_on_close) {
98e1ac4e 1686 f_ret = fsync(f->fd);
71b84caa
JA
1687 if (f_ret < 0)
1688 f_ret = errno;
1689 }
ebb1415f 1690
0ad920e7 1691 if (td->io_ops->close_file)
6977bcd0 1692 ret = td->io_ops->close_file(td, f);
1020a139 1693
98e1ac4e 1694 if (!ret)
a5fb461f 1695 ret = f_ret;
98e1ac4e 1696
0ad920e7 1697 td->nr_open_files--;
d6aed795 1698 fio_file_clear_open(f);
22a57ba8 1699 assert(f->fd == -1);
6977bcd0 1700 return ret;
0ad920e7 1701}
bbf6b540 1702
4d4e80f2 1703void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
b2bd2bd9 1704{
4d4e80f2
JA
1705 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1706 return;
29c1349f 1707
4d4e80f2
JA
1708 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
1709 if (ddir == DDIR_READ)
d7df1d13 1710 fio_rwlock_read(f->rwlock);
4d4e80f2 1711 else
d7df1d13 1712 fio_rwlock_write(f->rwlock);
4d4e80f2
JA
1713 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1714 fio_mutex_down(f->lock);
1715
d7df1d13 1716 td->file_locks[f->fileno] = td->o.file_lock_mode;
b2bd2bd9
JA
1717}
1718
4d4e80f2 1719void unlock_file(struct thread_data *td, struct fio_file *f)
b2bd2bd9 1720{
4d4e80f2
JA
1721 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1722 return;
4d4e80f2 1723
d7df1d13
JA
1724 if (td->o.file_lock_mode == FILE_LOCK_READWRITE)
1725 fio_rwlock_unlock(f->rwlock);
1726 else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
4d4e80f2 1727 fio_mutex_up(f->lock);
d7df1d13
JA
1728
1729 td->file_locks[f->fileno] = FILE_LOCK_NONE;
b2bd2bd9
JA
1730}
1731
4d4e80f2
JA
1732void unlock_file_all(struct thread_data *td, struct fio_file *f)
1733{
f2a2803a 1734 if (td->o.file_lock_mode == FILE_LOCK_NONE || !td->file_locks)
27ddbfa0 1735 return;
d7df1d13
JA
1736 if (td->file_locks[f->fileno] != FILE_LOCK_NONE)
1737 unlock_file(td, f);
4d4e80f2
JA
1738}
1739
bbf6b540
JA
1740static int recurse_dir(struct thread_data *td, const char *dirname)
1741{
1742 struct dirent *dir;
1743 int ret = 0;
1744 DIR *D;
1745
1746 D = opendir(dirname);
1747 if (!D) {
0ddb270c
JA
1748 char buf[FIO_VERROR_SIZE];
1749
98ffb8f3 1750 snprintf(buf, FIO_VERROR_SIZE, "opendir(%s)", dirname);
0ddb270c 1751 td_verror(td, errno, buf);
bbf6b540
JA
1752 return 1;
1753 }
1754
1755 while ((dir = readdir(D)) != NULL) {
1756 char full_path[PATH_MAX];
1757 struct stat sb;
1758
e85b2b83
JA
1759 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
1760 continue;
96d32d51 1761
53a7af85 1762 sprintf(full_path, "%s%c%s", dirname, FIO_OS_PATH_SEPARATOR, dir->d_name);
bbf6b540
JA
1763
1764 if (lstat(full_path, &sb) == -1) {
1765 if (errno != ENOENT) {
1766 td_verror(td, errno, "stat");
68ace9e0
JA
1767 ret = 1;
1768 break;
bbf6b540
JA
1769 }
1770 }
1771
1772 if (S_ISREG(sb.st_mode)) {
5903e7b7 1773 add_file(td, full_path, 0, 1);
bbf6b540
JA
1774 continue;
1775 }
0ddb270c
JA
1776 if (!S_ISDIR(sb.st_mode))
1777 continue;
bbf6b540 1778
5ec10eaa
JA
1779 ret = recurse_dir(td, full_path);
1780 if (ret)
bbf6b540
JA
1781 break;
1782 }
1783
1784 closedir(D);
1785 return ret;
1786}
1787
1788int add_dir_files(struct thread_data *td, const char *path)
1789{
0ddb270c
JA
1790 int ret = recurse_dir(td, path);
1791
1792 if (!ret)
1793 log_info("fio: opendir added %d files\n", td->o.nr_files);
1794
1795 return ret;
bbf6b540 1796}
cade3ef4
JA
1797
1798void dup_files(struct thread_data *td, struct thread_data *org)
1799{
1800 struct fio_file *f;
1801 unsigned int i;
9efef3c4
JA
1802
1803 dprint(FD_FILE, "dup files: %d\n", org->files_index);
cade3ef4
JA
1804
1805 if (!org->files)
1806 return;
1807
9efef3c4 1808 td->files = malloc(org->files_index * sizeof(f));
cade3ef4 1809
d7df1d13
JA
1810 if (td->o.file_lock_mode != FILE_LOCK_NONE)
1811 td->file_locks = malloc(org->files_index);
1812
9efef3c4 1813 for_each_file(org, f, i) {
b0fe421a
JA
1814 struct fio_file *__f;
1815
7b5cb700 1816 __f = alloc_new_file(td);
0b9d69ec 1817
bc3456fa 1818 if (f->file_name) {
cb9bf647
JB
1819 if (td_ioengine_flagged(td, FIO_NOFILEHASH))
1820 __f->file_name = strdup(f->file_name);
1821 else
1822 __f->file_name = smalloc_strdup(f->file_name);
81b3c86f 1823 if (!__f->file_name)
c48c0be7 1824 assert(0);
0b9d69ec 1825
bc3456fa
AC
1826 __f->filetype = f->filetype;
1827 }
b0fe421a 1828
67ad9242
JA
1829 if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1830 __f->lock = f->lock;
1831 else if (td->o.file_lock_mode == FILE_LOCK_READWRITE)
1832 __f->rwlock = f->rwlock;
1833
b0fe421a 1834 td->files[i] = __f;
cade3ef4
JA
1835 }
1836}
f29b25a3
JA
1837
1838/*
1839 * Returns the index that matches the filename, or -1 if not there
1840 */
1841int get_fileno(struct thread_data *td, const char *fname)
1842{
1843 struct fio_file *f;
1844 unsigned int i;
1845
1846 for_each_file(td, f, i)
1847 if (!strcmp(f->file_name, fname))
1848 return i;
1849
1850 return -1;
1851}
1852
1853/*
1854 * For log usage, where we add/open/close files automatically
1855 */
1856void free_release_files(struct thread_data *td)
1857{
1858 close_files(td);
66ee4002
JA
1859 td->o.nr_files = 0;
1860 td->o.open_files = 0;
f29b25a3
JA
1861 td->files_index = 0;
1862 td->nr_normal_files = 0;
1863}
33c48814
JA
1864
1865void fio_file_reset(struct thread_data *td, struct fio_file *f)
1866{
f1dfb668
JA
1867 int i;
1868
1869 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1870 f->last_pos[i] = f->file_offset;
1871 f->last_start[i] = -1ULL;
1872 }
1873
967d1b63 1874 if (fio_file_axmap(f))
33c48814 1875 axmap_reset(f->io_axmap);
967d1b63 1876 else if (fio_file_lfsr(f))
33c48814
JA
1877 lfsr_reset(&f->lfsr, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
1878}
002fe734 1879
747b3105 1880bool fio_files_done(struct thread_data *td)
002fe734
JA
1881{
1882 struct fio_file *f;
1883 unsigned int i;
1884
1885 for_each_file(td, f, i)
1886 if (!fio_file_done(f))
747b3105 1887 return false;
002fe734 1888
747b3105 1889 return true;
002fe734 1890}
bcbfeefa
CE
1891
1892/* free memory used in initialization phase only */
190b8f0c
CF
1893void filesetup_mem_free(void)
1894{
bcbfeefa
CE
1895 free_already_allocated();
1896}
47534cda
TK
1897
1898/*
1899 * This function is for platforms which support direct I/O but not O_DIRECT.
1900 */
1901int fio_set_directio(struct thread_data *td, struct fio_file *f)
1902{
1903#ifdef FIO_OS_DIRECTIO
2905de74 1904 int ret = fio_set_odirect(f);
47534cda
TK
1905
1906 if (ret) {
1907 td_verror(td, ret, "fio_set_directio");
1908#if defined(__sun__)
1909 if (ret == ENOTTY) { /* ENOTTY suggests RAW device or ZFS */
1910 log_err("fio: doing directIO to RAW devices or ZFS not supported\n");
1911 } else {
1912 log_err("fio: the file system does not seem to support direct IO\n");
1913 }
1914#else
1915 log_err("fio: the file system does not seem to support direct IO\n");
1916#endif
1917 return -1;
1918 }
1919
1920 return 0;
1921#else
51102e0d 1922 log_err("fio: direct IO is not supported on this host operating system\n");
47534cda
TK
1923 return -1;
1924#endif
1925}