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