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