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