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