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