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