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