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