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