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