Make io_sample word size agnostic
[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"
ecc314ba 14#include "os/os.h"
2316296a 15#include "hash.h"
7ebd796f 16#include "lib/axmap.h"
53cdc686 17
97ac992c 18#ifdef CONFIG_LINUX_FALLOCATE
a596f047
EG
19#include <linux/falloc.h>
20#endif
21
7172cfe8
JA
22static int root_warn;
23
c592b9fe
JA
24static inline void clear_error(struct thread_data *td)
25{
26 td->error = 0;
27 td->verror[0] = '\0';
28}
29
3baddf24
JA
30/*
31 * Leaves f->fd open on success, caller must close
32 */
7bb48f84 33static int extend_file(struct thread_data *td, struct fio_file *f)
25205e97 34{
ea443657 35 int r, new_layout = 0, unlink_file = 0, flags;
25205e97
JA
36 unsigned long long left;
37 unsigned int bs;
38 char *b;
b2a15192 39
4241ea8f
JA
40 if (read_only) {
41 log_err("fio: refusing extend of file due to read-only\n");
42 return 0;
43 }
44
507a702f
JA
45 /*
46 * check if we need to lay the file out complete again. fio
47 * does that for operations involving reads, or for writes
48 * where overwrite is set
49 */
ffdfabd4
JA
50 if (td_read(td) || (td_write(td) && td->o.overwrite) ||
51 (td_write(td) && td->io_ops->flags & FIO_NOEXTEND))
507a702f 52 new_layout = 1;
ea443657
JA
53 if (td_write(td) && !td->o.overwrite)
54 unlink_file = 1;
507a702f 55
6ae1f57f 56 if (unlink_file || new_layout) {
bd199f2b 57 dprint(FD_FILE, "layout unlink %s\n", f->file_name);
982016d6 58 if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
7bb48f84
JA
59 td_verror(td, errno, "unlink");
60 return 1;
61 }
62 }
63
507a702f
JA
64 flags = O_WRONLY | O_CREAT;
65 if (new_layout)
66 flags |= O_TRUNC;
67
ee56ad50 68 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
507a702f 69 f->fd = open(f->file_name, flags, 0644);
53cdc686 70 if (f->fd < 0) {
e1161c32 71 td_verror(td, errno, "open");
53cdc686
JA
72 return 1;
73 }
74
97ac992c 75#ifdef CONFIG_POSIX_FALLOCATE
a596f047
EG
76 if (!td->o.fill_device) {
77 switch (td->o.fallocate_mode) {
78 case FIO_FALLOCATE_NONE:
79 break;
80 case FIO_FALLOCATE_POSIX:
81 dprint(FD_FILE, "posix_fallocate file %s size %llu\n",
4b91ee8f
JA
82 f->file_name,
83 (unsigned long long) f->real_file_size);
a596f047
EG
84
85 r = posix_fallocate(f->fd, 0, f->real_file_size);
86 if (r > 0) {
87 log_err("fio: posix_fallocate fails: %s\n",
88 strerror(r));
89 }
90 break;
97ac992c 91#ifdef CONFIG_LINUX_FALLOCATE
a596f047
EG
92 case FIO_FALLOCATE_KEEP_SIZE:
93 dprint(FD_FILE,
94 "fallocate(FALLOC_FL_KEEP_SIZE) "
4b91ee8f
JA
95 "file %s size %llu\n", f->file_name,
96 (unsigned long long) f->real_file_size);
7bc8c2cf 97
a596f047
EG
98 r = fallocate(f->fd, FALLOC_FL_KEEP_SIZE, 0,
99 f->real_file_size);
888677a4 100 if (r != 0)
a596f047 101 td_verror(td, errno, "fallocate");
888677a4 102
a596f047 103 break;
97ac992c 104#endif /* CONFIG_LINUX_FALLOCATE */
a596f047
EG
105 default:
106 log_err("fio: unknown fallocate mode: %d\n",
107 td->o.fallocate_mode);
108 assert(0);
7bc8c2cf
JA
109 }
110 }
97ac992c 111#endif /* CONFIG_POSIX_FALLOCATE */
9b836561 112
fc74ac1d
SL
113 if (!new_layout)
114 goto done;
115
5e0074c2
JA
116 /*
117 * The size will be -1ULL when fill_device is used, so don't truncate
118 * or fallocate this file, just write it
119 */
120 if (!td->o.fill_device) {
121 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
4b91ee8f 122 (unsigned long long) f->real_file_size);
5e0074c2
JA
123 if (ftruncate(f->fd, f->real_file_size) == -1) {
124 td_verror(td, errno, "ftruncate");
125 goto err;
126 }
5e0074c2 127 }
40f8298c 128
2dc1bbeb
JA
129 b = malloc(td->o.max_bs[DDIR_WRITE]);
130 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
53cdc686 131
7bb48f84 132 left = f->real_file_size;
53cdc686 133 while (left && !td->terminate) {
2dc1bbeb 134 bs = td->o.max_bs[DDIR_WRITE];
53cdc686
JA
135 if (bs > left)
136 bs = left;
137
138 r = write(f->fd, b, bs);
139
5e0074c2
JA
140 if (r > 0) {
141 left -= r;
53cdc686
JA
142 continue;
143 } else {
5e0074c2
JA
144 if (r < 0) {
145 int __e = errno;
146
147 if (__e == ENOSPC) {
148 if (td->o.fill_device)
149 break;
150 log_info("fio: ENOSPC on laying out "
151 "file, stopping\n");
152 break;
153 }
e1161c32 154 td_verror(td, errno, "write");
5e0074c2 155 } else
e1161c32 156 td_verror(td, EIO, "write");
53cdc686
JA
157
158 break;
159 }
160 }
161
ffdfabd4
JA
162 if (td->terminate) {
163 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
53cdc686 164 unlink(f->file_name);
ffdfabd4 165 } else if (td->o.create_fsync) {
98e1ac4e
JA
166 if (fsync(f->fd) < 0) {
167 td_verror(td, errno, "fsync");
168 goto err;
169 }
170 }
0d1cd207 171 if (td->o.fill_device && !td_write(td)) {
d6aed795 172 fio_file_clear_size_known(f);
5e0074c2
JA
173 if (td_io_get_file_size(td, f))
174 goto err;
175 if (f->io_size > f->real_file_size)
176 f->io_size = f->real_file_size;
177 }
53cdc686
JA
178
179 free(b);
507a702f 180done:
53cdc686
JA
181 return 0;
182err:
183 close(f->fd);
184 f->fd = -1;
185 return 1;
186}
187
afad68f7
ZY
188static int pre_read_file(struct thread_data *td, struct fio_file *f)
189{
b0f65863 190 int r, did_open = 0, old_runstate;
afad68f7
ZY
191 unsigned long long left;
192 unsigned int bs;
193 char *b;
194
9c0d2241
JA
195 if (td->io_ops->flags & FIO_PIPEIO)
196 return 0;
197
d6aed795 198 if (!fio_file_open(f)) {
b0f65863
JA
199 if (td->io_ops->open_file(td, f)) {
200 log_err("fio: cannot pre-read, failed to open file\n");
201 return 1;
202 }
203 did_open = 1;
204 }
205
206 old_runstate = td->runstate;
207 td_set_runstate(td, TD_PRE_READING);
208
afad68f7
ZY
209 bs = td->o.max_bs[DDIR_READ];
210 b = malloc(bs);
211 memset(b, 0, bs);
212
213 lseek(f->fd, f->file_offset, SEEK_SET);
214 left = f->io_size;
215
216 while (left && !td->terminate) {
217 if (bs > left)
218 bs = left;
219
220 r = read(f->fd, b, bs);
221
222 if (r == (int) bs) {
223 left -= bs;
224 continue;
225 } else {
226 td_verror(td, EIO, "pre_read");
227 break;
228 }
229 }
230
b0f65863
JA
231 td_set_runstate(td, old_runstate);
232
233 if (did_open)
234 td->io_ops->close_file(td, f);
afad68f7
ZY
235 free(b);
236 return 0;
237}
238
7bb48f84 239static unsigned long long get_rand_file_size(struct thread_data *td)
9c60ce64 240{
dc873b6f 241 unsigned long long ret, sized;
1294c3ec 242 unsigned long r;
9c60ce64 243
4c07ad86
JA
244 if (td->o.use_os_rand) {
245 r = os_random_long(&td->file_size_state);
246 sized = td->o.file_size_high - td->o.file_size_low;
247 ret = (unsigned long long) ((double) sized * (r / (OS_RAND_MAX + 1.0)));
248 } else {
249 r = __rand(&td->__file_size_state);
250 sized = td->o.file_size_high - td->o.file_size_low;
251 ret = (unsigned long long) ((double) sized * (r / (FRAND_MAX + 1.0)));
252 }
253
5ec10eaa 254 ret += td->o.file_size_low;
2dc1bbeb 255 ret -= (ret % td->o.rw_min_bs);
9c60ce64
JA
256 return ret;
257}
258
53cdc686
JA
259static int file_size(struct thread_data *td, struct fio_file *f)
260{
261 struct stat st;
262
df9c26b1 263 if (stat(f->file_name, &st) == -1) {
7bb48f84
JA
264 td_verror(td, errno, "fstat");
265 return 1;
266 }
53cdc686 267
7bb48f84 268 f->real_file_size = st.st_size;
53cdc686
JA
269 return 0;
270}
271
272static int bdev_size(struct thread_data *td, struct fio_file *f)
273{
9b836561 274 unsigned long long bytes = 0;
53cdc686
JA
275 int r;
276
df9c26b1
JA
277 if (td->io_ops->open_file(td, f)) {
278 log_err("fio: failed opening blockdev %s for size check\n",
279 f->file_name);
280 return 1;
281 }
282
ecc314ba 283 r = blockdev_size(f, &bytes);
53cdc686 284 if (r) {
e1161c32 285 td_verror(td, r, "blockdev_size");
df9c26b1 286 goto err;
53cdc686
JA
287 }
288
7ab077ab
JA
289 if (!bytes) {
290 log_err("%s: zero sized block device?\n", f->file_name);
df9c26b1 291 goto err;
7ab077ab
JA
292 }
293
53cdc686 294 f->real_file_size = bytes;
22a57ba8 295 td->io_ops->close_file(td, f);
53cdc686 296 return 0;
df9c26b1
JA
297err:
298 td->io_ops->close_file(td, f);
299 return 1;
53cdc686
JA
300}
301
4ccdccd1
JA
302static int char_size(struct thread_data *td, struct fio_file *f)
303{
304#ifdef FIO_HAVE_CHARDEV_SIZE
9b836561 305 unsigned long long bytes = 0;
4ccdccd1
JA
306 int r;
307
308 if (td->io_ops->open_file(td, f)) {
309 log_err("fio: failed opening blockdev %s for size check\n",
310 f->file_name);
311 return 1;
312 }
313
ecc314ba 314 r = chardev_size(f, &bytes);
4ccdccd1
JA
315 if (r) {
316 td_verror(td, r, "chardev_size");
317 goto err;
318 }
319
320 if (!bytes) {
321 log_err("%s: zero sized char device?\n", f->file_name);
322 goto err;
323 }
324
325 f->real_file_size = bytes;
326 td->io_ops->close_file(td, f);
327 return 0;
328err:
329 td->io_ops->close_file(td, f);
330 return 1;
331#else
332 f->real_file_size = -1ULL;
333 return 0;
334#endif
335}
336
53cdc686
JA
337static int get_file_size(struct thread_data *td, struct fio_file *f)
338{
339 int ret = 0;
340
d6aed795 341 if (fio_file_size_known(f))
409b3417
JA
342 return 0;
343
7bb48f84
JA
344 if (f->filetype == FIO_TYPE_FILE)
345 ret = file_size(td, f);
346 else if (f->filetype == FIO_TYPE_BD)
53cdc686 347 ret = bdev_size(td, f);
4ccdccd1
JA
348 else if (f->filetype == FIO_TYPE_CHAR)
349 ret = char_size(td, f);
53cdc686
JA
350 else
351 f->real_file_size = -1;
352
353 if (ret)
354 return ret;
355
356 if (f->file_offset > f->real_file_size) {
0f2152c1 357 log_err("%s: offset extends end (%llu > %llu)\n", td->o.name,
5ec10eaa 358 f->file_offset, f->real_file_size);
53cdc686
JA
359 return 1;
360 }
361
d6aed795 362 fio_file_set_size_known(f);
53cdc686
JA
363 return 0;
364}
365
3baddf24
JA
366static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
367 unsigned long long off,
368 unsigned long long len)
e5b401d4
JA
369{
370 int ret = 0;
371
5e0074c2 372 if (len == -1ULL)
3baddf24
JA
373 len = f->io_size;
374 if (off == -1ULL)
375 off = f->file_offset;
ee56ad50 376
0d1cd207
JA
377 if (len == -1ULL || off == -1ULL)
378 return 0;
379
3baddf24
JA
380 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
381 len);
b5af8293 382
e5b401d4
JA
383 /*
384 * FIXME: add blockdev flushing too
385 */
a1c58075 386 if (f->mmap_ptr) {
03e20d68 387 ret = posix_madvise(f->mmap_ptr, f->mmap_sz, POSIX_MADV_DONTNEED);
a1c58075 388#ifdef FIO_MADV_FREE
03e20d68 389 (void) posix_madvise(f->mmap_ptr, f->mmap_sz, FIO_MADV_FREE);
a1c58075
JA
390#endif
391 } else if (f->filetype == FIO_TYPE_FILE) {
ecc314ba 392 ret = posix_fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
5ec10eaa 393 } else if (f->filetype == FIO_TYPE_BD) {
ecc314ba 394 ret = blockdev_invalidate_cache(f);
7e0e25c9 395 if (ret < 0 && errno == EACCES && geteuid()) {
7172cfe8 396 if (!root_warn) {
5ec10eaa
JA
397 log_err("fio: only root may flush block "
398 "devices. Cache flush bypassed!\n");
7172cfe8
JA
399 root_warn = 1;
400 }
7e0e25c9
JA
401 ret = 0;
402 }
b5605e9d 403 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
e5b401d4
JA
404 ret = 0;
405
406 if (ret < 0) {
e1161c32 407 td_verror(td, errno, "invalidate_cache");
e5b401d4 408 return 1;
3baddf24
JA
409 } else if (ret > 0) {
410 td_verror(td, ret, "invalidate_cache");
411 return 1;
e5b401d4
JA
412 }
413
ad2da605 414 return ret;
3baddf24
JA
415
416}
417
418int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
419{
d6aed795 420 if (!fio_file_open(f))
a5fb461f
JA
421 return 0;
422
5e0074c2 423 return __file_invalidate_cache(td, f, -1ULL, -1ULL);
e5b401d4
JA
424}
425
6977bcd0 426int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
53cdc686 427{
6977bcd0
JA
428 int ret = 0;
429
ee56ad50 430 dprint(FD_FILE, "fd close %s\n", f->file_name);
4906e0b5
JA
431
432 remove_file_hash(f);
433
6977bcd0
JA
434 if (close(f->fd) < 0)
435 ret = errno;
436
b5af8293 437 f->fd = -1;
e6c4d732
JA
438
439 if (f->shadow_fd != -1) {
440 close(f->shadow_fd);
441 f->shadow_fd = -1;
442 }
443
6977bcd0 444 return ret;
53cdc686
JA
445}
446
1ccc6dc7 447int file_lookup_open(struct fio_file *f, int flags)
53cdc686 448{
29c1349f 449 struct fio_file *__f;
4d4e80f2
JA
450 int from_hash;
451
452 __f = lookup_file_hash(f->file_name);
453 if (__f) {
9efef3c4 454 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
4d4e80f2
JA
455 /*
456 * racy, need the __f->lock locked
457 */
458 f->lock = __f->lock;
4d4e80f2
JA
459 from_hash = 1;
460 } else {
9efef3c4 461 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
4d4e80f2
JA
462 from_hash = 0;
463 }
464
e8670ef8 465 f->fd = open(f->file_name, flags, 0600);
4d4e80f2
JA
466 return from_hash;
467}
468
e6c4d732
JA
469static int file_close_shadow_fds(struct thread_data *td)
470{
471 struct fio_file *f;
472 int num_closed = 0;
473 unsigned int i;
474
475 for_each_file(td, f, i) {
476 if (f->shadow_fd == -1)
477 continue;
478
479 close(f->shadow_fd);
480 f->shadow_fd = -1;
481 num_closed++;
482 }
483
484 return num_closed;
485}
486
4d4e80f2
JA
487int generic_open_file(struct thread_data *td, struct fio_file *f)
488{
66159828 489 int is_std = 0;
53cdc686 490 int flags = 0;
29c1349f 491 int from_hash = 0;
53cdc686 492
ee56ad50
JA
493 dprint(FD_FILE, "fd open %s\n", f->file_name);
494
6eaf09d6
SL
495 if (td_trim(td) && f->filetype != FIO_TYPE_BD) {
496 log_err("fio: trim only applies to block device\n");
497 return 1;
498 }
499
66159828
JA
500 if (!strcmp(f->file_name, "-")) {
501 if (td_rw(td)) {
502 log_err("fio: can't read/write to stdin/out\n");
503 return 1;
504 }
505 is_std = 1;
ce98fa66
JA
506
507 /*
508 * move output logging to stderr, if we are writing to stdout
509 */
510 if (td_write(td))
511 f_out = stderr;
66159828
JA
512 }
513
6eaf09d6
SL
514 if (td_trim(td))
515 goto skip_flags;
2dc1bbeb 516 if (td->o.odirect)
2fd233b7 517 flags |= OS_O_DIRECT;
2dc1bbeb 518 if (td->o.sync_io)
2fd233b7 519 flags |= O_SYNC;
814452bd
JA
520 if (td->o.create_on_open)
521 flags |= O_CREAT;
6eaf09d6
SL
522skip_flags:
523 if (f->filetype != FIO_TYPE_FILE)
524 flags |= FIO_O_NOATIME;
53cdc686 525
056f3459 526open_again:
660a1cb5 527 if (td_write(td)) {
17308158
JA
528 if (!read_only)
529 flags |= O_RDWR;
53cdc686 530
af52b345 531 if (f->filetype == FIO_TYPE_FILE)
2fd233b7 532 flags |= O_CREAT;
2fd233b7 533
66159828
JA
534 if (is_std)
535 f->fd = dup(STDOUT_FILENO);
4d4e80f2
JA
536 else
537 from_hash = file_lookup_open(f, flags);
6eaf09d6 538 } else if (td_read(td)) {
4241ea8f 539 if (f->filetype == FIO_TYPE_CHAR && !read_only)
2fd233b7
JA
540 flags |= O_RDWR;
541 else
542 flags |= O_RDONLY;
543
66159828
JA
544 if (is_std)
545 f->fd = dup(STDIN_FILENO);
4d4e80f2
JA
546 else
547 from_hash = file_lookup_open(f, flags);
6eaf09d6
SL
548 } else { //td trim
549 flags |= O_RDWR;
550 from_hash = file_lookup_open(f, flags);
53cdc686
JA
551 }
552
553 if (f->fd == -1) {
e4e33258 554 char buf[FIO_VERROR_SIZE];
e1161c32
JA
555 int __e = errno;
556
835d9b9e 557 if (__e == EPERM && (flags & FIO_O_NOATIME)) {
5921e80c 558 flags &= ~FIO_O_NOATIME;
056f3459
AC
559 goto open_again;
560 }
e6c4d732
JA
561 if (__e == EMFILE && file_close_shadow_fds(td))
562 goto open_again;
056f3459 563
98ffb8f3 564 snprintf(buf, sizeof(buf), "open(%s)", f->file_name);
e4e33258 565
a93c5f04
JA
566 if (__e == EINVAL && (flags & OS_O_DIRECT)) {
567 log_err("fio: looks like your file system does not " \
568 "support direct=1/buffered=0\n");
569 }
570
e4e33258 571 td_verror(td, __e, buf);
53cdc686
JA
572 }
573
29c1349f
JA
574 if (!from_hash && f->fd != -1) {
575 if (add_file_hash(f)) {
3f0ca9b9 576 int fio_unused ret;
29c1349f
JA
577
578 /*
e6c4d732
JA
579 * Stash away descriptor for later close. This is to
580 * work-around a "feature" on Linux, where a close of
581 * an fd that has been opened for write will trigger
582 * udev to call blkid to check partitions, fs id, etc.
583 * That polutes the device cache, which can slow down
584 * unbuffered accesses.
29c1349f 585 */
e6c4d732
JA
586 if (f->shadow_fd == -1)
587 f->shadow_fd = f->fd;
588 else {
589 /*
590 * OK to ignore, we haven't done anything
591 * with it
592 */
593 ret = generic_close_file(td, f);
594 }
29c1349f
JA
595 goto open_again;
596 }
597 }
4906e0b5 598
53cdc686 599 return 0;
b5af8293
JA
600}
601
df9c26b1 602int generic_get_file_size(struct thread_data *td, struct fio_file *f)
21972cde 603{
df9c26b1 604 return get_file_size(td, f);
21972cde
JA
605}
606
7bb48f84
JA
607/*
608 * open/close all files, so that ->real_file_size gets set
609 */
bab3fd58 610static int get_file_sizes(struct thread_data *td)
7bb48f84
JA
611{
612 struct fio_file *f;
613 unsigned int i;
bab3fd58 614 int err = 0;
7bb48f84
JA
615
616 for_each_file(td, f, i) {
5ec10eaa
JA
617 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
618 f->file_name);
9efef3c4 619
99a47c69 620 if (td_io_get_file_size(td, f)) {
40b44f4a
JA
621 if (td->error != ENOENT) {
622 log_err("%s\n", td->verror);
623 err = 1;
624 }
541d66d7 625 clear_error(td);
07eb79df 626 }
409b3417
JA
627
628 if (f->real_file_size == -1ULL && td->o.size)
629 f->real_file_size = td->o.size / td->o.nr_files;
7bb48f84 630 }
bab3fd58
JA
631
632 return err;
7bb48f84
JA
633}
634
2e3bd4c2
JA
635struct fio_mount {
636 struct flist_head list;
637 const char *base;
638 char __base[256];
639 unsigned int key;
640};
641
642/*
643 * Get free number of bytes for each file on each unique mount.
644 */
645static unsigned long long get_fs_free_counts(struct thread_data *td)
646{
647 struct flist_head *n, *tmp;
68b0316f 648 unsigned long long ret = 0;
2e3bd4c2
JA
649 struct fio_mount *fm;
650 FLIST_HEAD(list);
651 struct fio_file *f;
652 unsigned int i;
653
654 for_each_file(td, f, i) {
655 struct stat sb;
656 char buf[256];
657
4ccdccd1
JA
658 if (f->filetype == FIO_TYPE_BD || f->filetype == FIO_TYPE_CHAR) {
659 if (f->real_file_size != -1ULL)
660 ret += f->real_file_size;
68b0316f
JA
661 continue;
662 } else if (f->filetype != FIO_TYPE_FILE)
663 continue;
664
2e3bd4c2
JA
665 strcpy(buf, f->file_name);
666
667 if (stat(buf, &sb) < 0) {
668 if (errno != ENOENT)
669 break;
670 strcpy(buf, ".");
671 if (stat(buf, &sb) < 0)
672 break;
673 }
674
675 fm = NULL;
676 flist_for_each(n, &list) {
677 fm = flist_entry(n, struct fio_mount, list);
678 if (fm->key == sb.st_dev)
679 break;
680
681 fm = NULL;
682 }
683
684 if (fm)
685 continue;
686
687 fm = malloc(sizeof(*fm));
688 strcpy(fm->__base, buf);
689 fm->base = basename(fm->__base);
690 fm->key = sb.st_dev;
691 flist_add(&fm->list, &list);
692 }
693
2e3bd4c2
JA
694 flist_for_each_safe(n, tmp, &list) {
695 unsigned long long sz;
696
697 fm = flist_entry(n, struct fio_mount, list);
698 flist_del(&fm->list);
699
700 sz = get_fs_size(fm->base);
701 if (sz && sz != -1ULL)
702 ret += sz;
703
704 free(fm);
705 }
706
707 return ret;
708}
709
293b8c1f 710uint64_t get_start_offset(struct thread_data *td)
ce95d651
DE
711{
712 return td->o.start_offset +
713 (td->thread_number - 1) * td->o.offset_increment;
714}
715
7bb48f84
JA
716/*
717 * Open the files and setup files sizes, creating files if necessary.
718 */
53cdc686
JA
719int setup_files(struct thread_data *td)
720{
7bb48f84 721 unsigned long long total_size, extend_size;
de98bd30 722 struct thread_options *o = &td->o;
53cdc686 723 struct fio_file *f;
af52b345 724 unsigned int i;
000b0803 725 int err = 0, need_extend;
53cdc686 726
ee56ad50
JA
727 dprint(FD_FILE, "setup files\n");
728
de98bd30 729 if (o->read_iolog_file)
25460cf6 730 goto done;
691c8fb0 731
53cdc686
JA
732 /*
733 * if ioengine defines a setup() method, it's responsible for
7bb48f84
JA
734 * opening the files and setting f->real_file_size to indicate
735 * the valid range for that file.
53cdc686
JA
736 */
737 if (td->io_ops->setup)
7bb48f84
JA
738 err = td->io_ops->setup(td);
739 else
bab3fd58 740 err = get_file_sizes(td);
53cdc686 741
f1027063
JA
742 if (err)
743 return err;
744
0a7eb121 745 /*
7bb48f84
JA
746 * check sizes. if the files/devices do not exist and the size
747 * isn't passed to fio, abort.
0a7eb121 748 */
7bb48f84
JA
749 total_size = 0;
750 for_each_file(td, f, i) {
751 if (f->real_file_size == -1ULL)
752 total_size = -1ULL;
753 else
754 total_size += f->real_file_size;
755 }
0a7eb121 756
de98bd30 757 if (o->fill_device)
2e3bd4c2
JA
758 td->fill_device_size = get_fs_free_counts(td);
759
7bb48f84
JA
760 /*
761 * device/file sizes are zero and no size given, punt
762 */
de98bd30
JA
763 if ((!total_size || total_size == -1ULL) && !o->size &&
764 !(td->io_ops->flags & FIO_NOIO) && !o->fill_device &&
765 !(o->nr_files && (o->file_size_low || o->file_size_high))) {
766 log_err("%s: you need to specify size=\n", o->name);
e1161c32 767 td_verror(td, EINVAL, "total_file_size");
53cdc686
JA
768 return 1;
769 }
770
7bb48f84
JA
771 /*
772 * now file sizes are known, so we can set ->io_size. if size= is
773 * not given, ->io_size is just equal to ->real_file_size. if size
774 * is given, ->io_size is size / nr_files.
775 */
776 extend_size = total_size = 0;
777 need_extend = 0;
778 for_each_file(td, f, i) {
ce95d651 779 f->file_offset = get_start_offset(td);
bcdedd0a 780
de98bd30 781 if (!o->file_size_low) {
7bb48f84
JA
782 /*
783 * no file size range given, file size is equal to
784 * total size divided by number of files. if that is
785 * zero, set it to the real file size.
786 */
de98bd30 787 f->io_size = o->size / o->nr_files;
65bdb10a 788 if (!f->io_size)
273f8c91 789 f->io_size = f->real_file_size - f->file_offset;
de98bd30
JA
790 } else if (f->real_file_size < o->file_size_low ||
791 f->real_file_size > o->file_size_high) {
792 if (f->file_offset > o->file_size_low)
bcdedd0a 793 goto err_offset;
7bb48f84
JA
794 /*
795 * file size given. if it's fixed, use that. if it's a
796 * range, generate a random size in-between.
797 */
de98bd30
JA
798 if (o->file_size_low == o->file_size_high)
799 f->io_size = o->file_size_low - f->file_offset;
800 else {
5ec10eaa
JA
801 f->io_size = get_rand_file_size(td)
802 - f->file_offset;
803 }
65bdb10a 804 } else
bcdedd0a 805 f->io_size = f->real_file_size - f->file_offset;
53cdc686 806
7bb48f84
JA
807 if (f->io_size == -1ULL)
808 total_size = -1ULL;
4d002569 809 else {
de98bd30
JA
810 if (o->size_percent)
811 f->io_size = (f->io_size * o->size_percent) / 100;
7bb48f84 812 total_size += f->io_size;
4d002569 813 }
7bb48f84
JA
814
815 if (f->filetype == FIO_TYPE_FILE &&
bcdedd0a 816 (f->io_size + f->file_offset) > f->real_file_size &&
7bb48f84 817 !(td->io_ops->flags & FIO_DISKLESSIO)) {
de98bd30 818 if (!o->create_on_open) {
814452bd
JA
819 need_extend++;
820 extend_size += (f->io_size + f->file_offset);
821 } else
822 f->real_file_size = f->io_size + f->file_offset;
d6aed795 823 fio_file_set_extend(f);
5ec10eaa 824 }
7bb48f84 825 }
53cdc686 826
de98bd30
JA
827 if (!o->size || o->size > total_size)
828 o->size = total_size;
21972cde 829
7bb48f84
JA
830 /*
831 * See if we need to extend some files
832 */
833 if (need_extend) {
834 temp_stall_ts = 1;
f3afa57e 835 if (output_format == FIO_OUTPUT_NORMAL)
a7ba8c5f 836 log_info("%s: Laying out IO file(s) (%u file(s) /"
de98bd30 837 " %lluMB)\n", o->name, need_extend,
a7ba8c5f 838 extend_size >> 20);
7bb48f84
JA
839
840 for_each_file(td, f, i) {
5e0074c2 841 unsigned long long old_len = -1ULL, extend_len = -1ULL;
3baddf24 842
d6aed795 843 if (!fio_file_extend(f))
7bb48f84
JA
844 continue;
845
409b3417 846 assert(f->filetype == FIO_TYPE_FILE);
d6aed795 847 fio_file_clear_extend(f);
de98bd30 848 if (!o->fill_device) {
5e0074c2 849 old_len = f->real_file_size;
0b9d69ec
JA
850 extend_len = f->io_size + f->file_offset -
851 old_len;
5e0074c2 852 }
bcdedd0a 853 f->real_file_size = (f->io_size + f->file_offset);
7bb48f84
JA
854 err = extend_file(td, f);
855 if (err)
3baddf24 856 break;
5e0074c2 857
3baddf24
JA
858 err = __file_invalidate_cache(td, f, old_len,
859 extend_len);
860 close(f->fd);
861 f->fd = -1;
862 if (err)
7bb48f84
JA
863 break;
864 }
865 temp_stall_ts = 0;
866 }
867
868 if (err)
869 return err;
870
de98bd30
JA
871 if (!o->zone_size)
872 o->zone_size = o->size;
7bb48f84 873
ea966f81
JA
874 /*
875 * iolog already set the total io size, if we read back
876 * stored entries.
877 */
de98bd30
JA
878 if (!o->read_iolog_file)
879 td->total_io_size = o->size * o->loops;
25460cf6
JA
880
881done:
de98bd30 882 if (o->create_only)
25460cf6
JA
883 td->done = 1;
884
7bb48f84 885 return 0;
bcdedd0a 886err_offset:
de98bd30 887 log_err("%s: you need to specify valid offset=\n", o->name);
bcdedd0a 888 return 1;
53cdc686
JA
889}
890
afad68f7
ZY
891int pre_read_files(struct thread_data *td)
892{
893 struct fio_file *f;
894 unsigned int i;
895
896 dprint(FD_FILE, "pre_read files\n");
897
898 for_each_file(td, f, i) {
899 pre_read_file(td, f);
900 }
901
902 return 1;
903}
904
9c6f6316
JA
905static int __init_rand_distribution(struct thread_data *td, struct fio_file *f)
906{
2316296a 907 unsigned int range_size, seed;
9c6f6316 908 unsigned long nranges;
21415db9 909 uint64_t file_size;
9c6f6316
JA
910
911 range_size = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
21415db9 912 file_size = min(f->real_file_size, f->io_size);
9c6f6316 913
21415db9 914 nranges = (file_size + range_size - 1) / range_size;
9c6f6316 915
2316296a 916 seed = jhash(f->file_name, strlen(f->file_name), 0) * td->thread_number;
8425687e
JA
917 if (!td->o.rand_repeatable)
918 seed = td->rand_seeds[4];
919
9c6f6316 920 if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
888677a4 921 zipf_init(&f->zipf, nranges, td->o.zipf_theta.u.f, seed);
9c6f6316 922 else
888677a4 923 pareto_init(&f->zipf, nranges, td->o.pareto_h.u.f, seed);
9c6f6316
JA
924
925 return 1;
926}
927
928static int init_rand_distribution(struct thread_data *td)
929{
930 struct fio_file *f;
931 unsigned int i;
932 int state;
933
934 if (td->o.random_distribution == FIO_RAND_DIST_RANDOM)
935 return 0;
936
937 state = td->runstate;
938 td_set_runstate(td, TD_SETTING_UP);
939 for_each_file(td, f, i)
940 __init_rand_distribution(td, f);
941 td_set_runstate(td, state);
942
943 return 1;
944}
945
68727076
JA
946int init_random_map(struct thread_data *td)
947{
51ede0b1 948 unsigned long long blocks;
68727076
JA
949 struct fio_file *f;
950 unsigned int i;
951
9c6f6316
JA
952 if (init_rand_distribution(td))
953 return 0;
3831a843 954 if (!td_random(td))
68727076
JA
955 return 0;
956
957 for_each_file(td, f, i) {
38f30c81
JA
958 uint64_t file_size = min(f->real_file_size, f->io_size);
959
53737ae0
JA
960 blocks = file_size / (unsigned long long) td->o.rw_min_bs;
961
8055e41d 962 if (td->o.random_generator == FIO_RAND_GEN_LFSR) {
82af46be
JA
963 unsigned long seed;
964
965 seed = td->rand_seeds[FIO_RAND_BLOCK_OFF];
966
d474cbc9 967 if (!lfsr_init(&f->lfsr, blocks, seed, seed & 0xF))
8055e41d 968 continue;
3831a843 969 } else if (!td->o.norandommap) {
7ebd796f
JA
970 f->io_axmap = axmap_new(blocks);
971 if (f->io_axmap)
8055e41d 972 continue;
1cad7121
JA
973 } else if (td->o.norandommap)
974 continue;
ceadd59e 975
2b386d25 976 if (!td->o.softrandommap) {
5ec10eaa
JA
977 log_err("fio: failed allocating random map. If running"
978 " a large number of jobs, try the 'norandommap'"
2b386d25
JA
979 " option or set 'softrandommap'. Or give"
980 " a larger --alloc-size to fio.\n");
68727076
JA
981 return 1;
982 }
303032ae
JA
983
984 log_info("fio: file %s failed allocating random map. Running "
985 "job without.\n", f->file_name);
68727076
JA
986 }
987
988 return 0;
989}
990
53cdc686
JA
991void close_files(struct thread_data *td)
992{
0ab8db89 993 struct fio_file *f;
af52b345 994 unsigned int i;
53cdc686 995
2be3eec3
JA
996 for_each_file(td, f, i) {
997 if (fio_file_open(f))
998 td_io_close_file(td, f);
999 }
24ffd2c2
JA
1000}
1001
1002void close_and_free_files(struct thread_data *td)
1003{
1004 struct fio_file *f;
1005 unsigned int i;
1006
ee56ad50
JA
1007 dprint(FD_FILE, "close files\n");
1008
0ab8db89 1009 for_each_file(td, f, i) {
ffdfabd4
JA
1010 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
1011 dprint(FD_FILE, "free unlink %s\n", f->file_name);
132ad46d 1012 unlink(f->file_name);
ffdfabd4 1013 }
bdb4e2e9 1014
22a57ba8
JA
1015 if (fio_file_open(f))
1016 td_io_close_file(td, f);
1017
b9fbcf21 1018 remove_file_hash(f);
b3dc7f07 1019
f17c4392 1020 sfree(f->file_name);
fa1da865 1021 f->file_name = NULL;
7ebd796f
JA
1022 axmap_free(f->io_axmap);
1023 f->io_axmap = NULL;
78d99e6a 1024 sfree(f);
53cdc686 1025 }
b4a6a59a 1026
2dc1bbeb 1027 td->o.filename = NULL;
cade3ef4 1028 free(td->files);
d7df1d13 1029 free(td->file_locks);
9efef3c4 1030 td->files_index = 0;
b4a6a59a 1031 td->files = NULL;
d7df1d13 1032 td->file_locks = NULL;
2dc1bbeb 1033 td->o.nr_files = 0;
53cdc686 1034}
af52b345 1035
e3bab463 1036static void get_file_type(struct fio_file *f)
af52b345
JA
1037{
1038 struct stat sb;
1039
66159828
JA
1040 if (!strcmp(f->file_name, "-"))
1041 f->filetype = FIO_TYPE_PIPE;
1042 else
1043 f->filetype = FIO_TYPE_FILE;
af52b345 1044
3892182a
BC
1045 /* \\.\ is the device namespace in Windows, where every file is
1046 * a block device */
1047 if (strncmp(f->file_name, "\\\\.\\", 4) == 0)
1048 f->filetype = FIO_TYPE_BD;
1049
b30d395e 1050 if (!stat(f->file_name, &sb)) {
3892182a 1051 if (S_ISBLK(sb.st_mode))
af52b345
JA
1052 f->filetype = FIO_TYPE_BD;
1053 else if (S_ISCHR(sb.st_mode))
1054 f->filetype = FIO_TYPE_CHAR;
b5605e9d
JA
1055 else if (S_ISFIFO(sb.st_mode))
1056 f->filetype = FIO_TYPE_PIPE;
af52b345
JA
1057 }
1058}
1059
f29b25a3 1060int add_file(struct thread_data *td, const char *fname)
af52b345 1061{
7b4e4fe5 1062 int cur_files = td->files_index;
bd0ee748 1063 char file_name[PATH_MAX];
af52b345 1064 struct fio_file *f;
bd0ee748 1065 int len = 0;
af52b345 1066
ee56ad50
JA
1067 dprint(FD_FILE, "add file %s\n", fname);
1068
f17c4392 1069 f = smalloc(sizeof(*f));
c48c0be7
JA
1070 if (!f) {
1071 log_err("fio: smalloc OOM\n");
1072 assert(0);
1073 }
0b9d69ec 1074
af52b345 1075 f->fd = -1;
e6c4d732 1076 f->shadow_fd = -1;
33c48814 1077 fio_file_reset(td, f);
bd0ee748 1078
fc99bc0d 1079 if (td->files_size <= td->files_index) {
1983e327 1080 unsigned int new_size = td->o.nr_files + 1;
126d65c6 1081
fc99bc0d
JA
1082 dprint(FD_FILE, "resize file array to %d files\n", new_size);
1083
1084 td->files = realloc(td->files, new_size * sizeof(f));
d537c08b
JM
1085 if (td->files == NULL) {
1086 log_err("fio: realloc OOM\n");
1087 assert(0);
1088 }
d7df1d13
JA
1089 if (td->o.file_lock_mode != FILE_LOCK_NONE) {
1090 td->file_locks = realloc(td->file_locks, new_size);
1091 if (!td->file_locks) {
1092 log_err("fio: realloc OOM\n");
1093 assert(0);
1094 }
1095 td->file_locks[cur_files] = FILE_LOCK_NONE;
1096 }
fc99bc0d
JA
1097 td->files_size = new_size;
1098 }
8bb7679e 1099 td->files[cur_files] = f;
89ac1d48 1100 f->fileno = cur_files;
126d65c6 1101
07eb79df
JA
1102 /*
1103 * init function, io engine may not be loaded yet
1104 */
1105 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
1106 f->real_file_size = -1ULL;
1107
bd0ee748
JA
1108 if (td->o.directory)
1109 len = sprintf(file_name, "%s/", td->o.directory);
1110
1111 sprintf(file_name + len, "%s", fname);
f17c4392 1112 f->file_name = smalloc_strdup(file_name);
c48c0be7
JA
1113 if (!f->file_name) {
1114 log_err("fio: smalloc OOM\n");
1115 assert(0);
1116 }
0b9d69ec 1117
e3bab463 1118 get_file_type(f);
af52b345 1119
4d4e80f2
JA
1120 switch (td->o.file_lock_mode) {
1121 case FILE_LOCK_NONE:
1122 break;
1123 case FILE_LOCK_READWRITE:
d7df1d13 1124 f->rwlock = fio_rwlock_init();
4d4e80f2
JA
1125 break;
1126 case FILE_LOCK_EXCLUSIVE:
521da527 1127 f->lock = fio_mutex_init(FIO_MUTEX_UNLOCKED);
4d4e80f2
JA
1128 break;
1129 default:
1130 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
1131 assert(0);
1132 }
29c1349f 1133
7b4e4fe5 1134 td->files_index++;
1549441c
JA
1135 if (f->filetype == FIO_TYPE_FILE)
1136 td->nr_normal_files++;
f29b25a3 1137
5ec10eaa
JA
1138 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
1139 cur_files);
9efef3c4 1140
f29b25a3 1141 return cur_files;
af52b345 1142}
0ad920e7 1143
49ffb4a2
JA
1144int add_file_exclusive(struct thread_data *td, const char *fname)
1145{
1146 struct fio_file *f;
1147 unsigned int i;
1148
1149 for_each_file(td, f, i) {
1150 if (!strcmp(f->file_name, fname))
1151 return i;
1152 }
1153
1154 return add_file(td, fname);
1155}
1156
0ad920e7
JA
1157void get_file(struct fio_file *f)
1158{
8172fe97 1159 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
d6aed795 1160 assert(fio_file_open(f));
0ad920e7
JA
1161 f->references++;
1162}
1163
6977bcd0 1164int put_file(struct thread_data *td, struct fio_file *f)
0ad920e7 1165{
98e1ac4e 1166 int f_ret = 0, ret = 0;
6977bcd0 1167
8172fe97 1168 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
ee56ad50 1169
22a57ba8
JA
1170 if (!fio_file_open(f)) {
1171 assert(f->fd == -1);
6977bcd0 1172 return 0;
22a57ba8 1173 }
0ad920e7
JA
1174
1175 assert(f->references);
1176 if (--f->references)
6977bcd0 1177 return 0;
0ad920e7 1178
d424d4dd 1179 if (should_fsync(td) && td->o.fsync_on_close)
98e1ac4e 1180 f_ret = fsync(f->fd);
ebb1415f 1181
0ad920e7 1182 if (td->io_ops->close_file)
6977bcd0 1183 ret = td->io_ops->close_file(td, f);
1020a139 1184
98e1ac4e 1185 if (!ret)
a5fb461f 1186 ret = f_ret;
98e1ac4e 1187
0ad920e7 1188 td->nr_open_files--;
d6aed795 1189 fio_file_clear_open(f);
22a57ba8 1190 assert(f->fd == -1);
6977bcd0 1191 return ret;
0ad920e7 1192}
bbf6b540 1193
4d4e80f2 1194void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
b2bd2bd9 1195{
4d4e80f2
JA
1196 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1197 return;
29c1349f 1198
4d4e80f2
JA
1199 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
1200 if (ddir == DDIR_READ)
d7df1d13 1201 fio_rwlock_read(f->rwlock);
4d4e80f2 1202 else
d7df1d13 1203 fio_rwlock_write(f->rwlock);
4d4e80f2
JA
1204 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1205 fio_mutex_down(f->lock);
1206
d7df1d13 1207 td->file_locks[f->fileno] = td->o.file_lock_mode;
b2bd2bd9
JA
1208}
1209
4d4e80f2 1210void unlock_file(struct thread_data *td, struct fio_file *f)
b2bd2bd9 1211{
4d4e80f2
JA
1212 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1213 return;
4d4e80f2 1214
d7df1d13
JA
1215 if (td->o.file_lock_mode == FILE_LOCK_READWRITE)
1216 fio_rwlock_unlock(f->rwlock);
1217 else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
4d4e80f2 1218 fio_mutex_up(f->lock);
d7df1d13
JA
1219
1220 td->file_locks[f->fileno] = FILE_LOCK_NONE;
b2bd2bd9
JA
1221}
1222
4d4e80f2
JA
1223void unlock_file_all(struct thread_data *td, struct fio_file *f)
1224{
d7df1d13
JA
1225 if (td->file_locks[f->fileno] != FILE_LOCK_NONE)
1226 unlock_file(td, f);
4d4e80f2
JA
1227}
1228
bbf6b540
JA
1229static int recurse_dir(struct thread_data *td, const char *dirname)
1230{
1231 struct dirent *dir;
1232 int ret = 0;
1233 DIR *D;
1234
1235 D = opendir(dirname);
1236 if (!D) {
0ddb270c
JA
1237 char buf[FIO_VERROR_SIZE];
1238
98ffb8f3 1239 snprintf(buf, FIO_VERROR_SIZE, "opendir(%s)", dirname);
0ddb270c 1240 td_verror(td, errno, buf);
bbf6b540
JA
1241 return 1;
1242 }
1243
1244 while ((dir = readdir(D)) != NULL) {
1245 char full_path[PATH_MAX];
1246 struct stat sb;
1247
e85b2b83
JA
1248 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
1249 continue;
96d32d51 1250
b9fd788f 1251 sprintf(full_path, "%s%s%s", dirname, FIO_OS_PATH_SEPARATOR, dir->d_name);
bbf6b540
JA
1252
1253 if (lstat(full_path, &sb) == -1) {
1254 if (errno != ENOENT) {
1255 td_verror(td, errno, "stat");
1256 return 1;
1257 }
1258 }
1259
1260 if (S_ISREG(sb.st_mode)) {
1261 add_file(td, full_path);
2dc1bbeb 1262 td->o.nr_files++;
bbf6b540
JA
1263 continue;
1264 }
0ddb270c
JA
1265 if (!S_ISDIR(sb.st_mode))
1266 continue;
bbf6b540 1267
5ec10eaa
JA
1268 ret = recurse_dir(td, full_path);
1269 if (ret)
bbf6b540
JA
1270 break;
1271 }
1272
1273 closedir(D);
1274 return ret;
1275}
1276
1277int add_dir_files(struct thread_data *td, const char *path)
1278{
0ddb270c
JA
1279 int ret = recurse_dir(td, path);
1280
1281 if (!ret)
1282 log_info("fio: opendir added %d files\n", td->o.nr_files);
1283
1284 return ret;
bbf6b540 1285}
cade3ef4
JA
1286
1287void dup_files(struct thread_data *td, struct thread_data *org)
1288{
1289 struct fio_file *f;
1290 unsigned int i;
9efef3c4
JA
1291
1292 dprint(FD_FILE, "dup files: %d\n", org->files_index);
cade3ef4
JA
1293
1294 if (!org->files)
1295 return;
1296
9efef3c4 1297 td->files = malloc(org->files_index * sizeof(f));
cade3ef4 1298
d7df1d13
JA
1299 if (td->o.file_lock_mode != FILE_LOCK_NONE)
1300 td->file_locks = malloc(org->files_index);
1301
9efef3c4 1302 for_each_file(org, f, i) {
b0fe421a
JA
1303 struct fio_file *__f;
1304
f17c4392 1305 __f = smalloc(sizeof(*__f));
c48c0be7
JA
1306 if (!__f) {
1307 log_err("fio: smalloc OOM\n");
1308 assert(0);
1309 }
22a57ba8 1310 __f->fd = -1;
33c48814 1311 fio_file_reset(td, __f);
0b9d69ec 1312
bc3456fa 1313 if (f->file_name) {
f17c4392 1314 __f->file_name = smalloc_strdup(f->file_name);
c48c0be7
JA
1315 if (!__f->file_name) {
1316 log_err("fio: smalloc OOM\n");
1317 assert(0);
1318 }
0b9d69ec 1319
bc3456fa
AC
1320 __f->filetype = f->filetype;
1321 }
b0fe421a
JA
1322
1323 td->files[i] = __f;
cade3ef4
JA
1324 }
1325}
f29b25a3
JA
1326
1327/*
1328 * Returns the index that matches the filename, or -1 if not there
1329 */
1330int get_fileno(struct thread_data *td, const char *fname)
1331{
1332 struct fio_file *f;
1333 unsigned int i;
1334
1335 for_each_file(td, f, i)
1336 if (!strcmp(f->file_name, fname))
1337 return i;
1338
1339 return -1;
1340}
1341
1342/*
1343 * For log usage, where we add/open/close files automatically
1344 */
1345void free_release_files(struct thread_data *td)
1346{
1347 close_files(td);
1348 td->files_index = 0;
1349 td->nr_normal_files = 0;
1350}
33c48814
JA
1351
1352void fio_file_reset(struct thread_data *td, struct fio_file *f)
1353{
1354 f->last_pos = f->file_offset;
1355 f->last_start = -1ULL;
1356 if (f->io_axmap)
1357 axmap_reset(f->io_axmap);
1358 if (td->o.random_generator == FIO_RAND_GEN_LFSR)
1359 lfsr_reset(&f->lfsr, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
1360}