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