Prevent filetype disappearing
[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 <sys/stat.h>
7#include <sys/mman.h>
8#include <sys/types.h>
9
10#include "fio.h"
11#include "smalloc.h"
12#include "filehash.h"
13
14static int root_warn;
15
16/*
17 * Leaves f->fd open on success, caller must close
18 */
19static int extend_file(struct thread_data *td, struct fio_file *f)
20{
21 int r, new_layout = 0, unlink_file = 0, flags;
22 unsigned long long left;
23 unsigned int bs;
24 char *b;
25
26 if (read_only) {
27 log_err("fio: refusing extend of file due to read-only\n");
28 return 0;
29 }
30
31 /*
32 * check if we need to lay the file out complete again. fio
33 * does that for operations involving reads, or for writes
34 * where overwrite is set
35 */
36 if (td_read(td) || (td_write(td) && td->o.overwrite) ||
37 (td_write(td) && td->io_ops->flags & FIO_NOEXTEND))
38 new_layout = 1;
39 if (td_write(td) && !td->o.overwrite)
40 unlink_file = 1;
41
42 if (unlink_file || new_layout) {
43 dprint(FD_FILE, "layout unlink %s\n", f->file_name);
44 if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
45 td_verror(td, errno, "unlink");
46 return 1;
47 }
48 }
49
50 flags = O_WRONLY | O_CREAT;
51 if (new_layout)
52 flags |= O_TRUNC;
53
54 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
55 f->fd = open(f->file_name, flags, 0644);
56 if (f->fd < 0) {
57 td_verror(td, errno, "open");
58 return 1;
59 }
60
61 if (!new_layout)
62 goto done;
63
64 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
65 f->real_file_size);
66 if (ftruncate(f->fd, f->real_file_size) == -1) {
67 td_verror(td, errno, "ftruncate");
68 goto err;
69 }
70
71#ifdef FIO_HAVE_FALLOCATE
72 dprint(FD_FILE, "fallocate file %s, size %llu\n", f->file_name,
73 f->real_file_size);
74 r = posix_fallocate(f->fd, 0, f->real_file_size);
75 if (r < 0)
76 log_err("fio: posix_fallocate fails: %s\n", strerror(-r));
77#endif
78
79 b = malloc(td->o.max_bs[DDIR_WRITE]);
80 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
81
82 left = f->real_file_size;
83 while (left && !td->terminate) {
84 bs = td->o.max_bs[DDIR_WRITE];
85 if (bs > left)
86 bs = left;
87
88 r = write(f->fd, b, bs);
89
90 if (r == (int) bs) {
91 left -= bs;
92 continue;
93 } else {
94 if (r < 0)
95 td_verror(td, errno, "write");
96 else
97 td_verror(td, EIO, "write");
98
99 break;
100 }
101 }
102
103 if (td->terminate) {
104 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
105 unlink(f->file_name);
106 } else if (td->o.create_fsync) {
107 if (fsync(f->fd) < 0) {
108 td_verror(td, errno, "fsync");
109 goto err;
110 }
111 }
112
113 free(b);
114done:
115 return 0;
116err:
117 close(f->fd);
118 f->fd = -1;
119 return 1;
120}
121
122static unsigned long long get_rand_file_size(struct thread_data *td)
123{
124 unsigned long long ret, sized;
125 long r;
126
127 r = os_random_long(&td->file_size_state);
128 sized = td->o.file_size_high - td->o.file_size_low;
129 ret = (unsigned long long) ((double) sized * (r / (OS_RAND_MAX + 1.0)));
130 ret += td->o.file_size_low;
131 ret -= (ret % td->o.rw_min_bs);
132 return ret;
133}
134
135static int file_size(struct thread_data *td, struct fio_file *f)
136{
137 struct stat st;
138
139 if (fstat(f->fd, &st) == -1) {
140 td_verror(td, errno, "fstat");
141 return 1;
142 }
143
144 f->real_file_size = st.st_size;
145 return 0;
146}
147
148static int bdev_size(struct thread_data *td, struct fio_file *f)
149{
150 unsigned long long bytes;
151 int r;
152
153 r = blockdev_size(f->fd, &bytes);
154 if (r) {
155 td_verror(td, r, "blockdev_size");
156 return 1;
157 }
158
159 f->real_file_size = bytes;
160 return 0;
161}
162
163static int get_file_size(struct thread_data *td, struct fio_file *f)
164{
165 int ret = 0;
166
167 if (f->flags & FIO_SIZE_KNOWN)
168 return 0;
169
170 if (f->filetype == FIO_TYPE_FILE)
171 ret = file_size(td, f);
172 else if (f->filetype == FIO_TYPE_BD)
173 ret = bdev_size(td, f);
174 else
175 f->real_file_size = -1;
176
177 if (ret)
178 return ret;
179
180 if (f->file_offset > f->real_file_size) {
181 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
182 f->file_offset, f->real_file_size);
183 return 1;
184 }
185
186 f->flags |= FIO_SIZE_KNOWN;
187 return 0;
188}
189
190static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
191 unsigned long long off,
192 unsigned long long len)
193{
194 int ret = 0;
195
196 if (len == -1ULL)
197 len = f->io_size;
198 if (off == -1ULL)
199 off = f->file_offset;
200
201 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
202 len);
203
204 /*
205 * FIXME: add blockdev flushing too
206 */
207 if (f->mmap)
208 ret = madvise(f->mmap, len, MADV_DONTNEED);
209 else if (f->filetype == FIO_TYPE_FILE) {
210 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
211 } else if (f->filetype == FIO_TYPE_BD) {
212 ret = blockdev_invalidate_cache(f->fd);
213 if (ret < 0 && errno == EACCES && geteuid()) {
214 if (!root_warn) {
215 log_err("fio: only root may flush block "
216 "devices. Cache flush bypassed!\n");
217 root_warn = 1;
218 }
219 ret = 0;
220 }
221 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
222 ret = 0;
223
224 if (ret < 0) {
225 td_verror(td, errno, "invalidate_cache");
226 return 1;
227 } else if (ret > 0) {
228 td_verror(td, ret, "invalidate_cache");
229 return 1;
230 }
231
232 return ret;
233
234}
235
236int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
237{
238 if (!(f->flags & FIO_FILE_OPEN))
239 return 0;
240
241 return __file_invalidate_cache(td, f, -1, -1);
242}
243
244int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
245{
246 int ret = 0;
247
248 dprint(FD_FILE, "fd close %s\n", f->file_name);
249
250 remove_file_hash(f);
251
252 if (close(f->fd) < 0)
253 ret = errno;
254
255 f->fd = -1;
256 return ret;
257}
258
259static int file_lookup_open(struct fio_file *f, int flags)
260{
261 struct fio_file *__f;
262 int from_hash;
263
264 __f = lookup_file_hash(f->file_name);
265 if (__f) {
266 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
267 /*
268 * racy, need the __f->lock locked
269 */
270 f->lock = __f->lock;
271 f->lock_owner = __f->lock_owner;
272 f->lock_batch = __f->lock_batch;
273 f->lock_ddir = __f->lock_ddir;
274 from_hash = 1;
275 } else {
276 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
277 from_hash = 0;
278 }
279
280 f->fd = open(f->file_name, flags, 0600);
281 return from_hash;
282}
283
284int generic_open_file(struct thread_data *td, struct fio_file *f)
285{
286 int is_std = 0;
287 int flags = 0;
288 int from_hash = 0;
289
290 dprint(FD_FILE, "fd open %s\n", f->file_name);
291
292 if (!strcmp(f->file_name, "-")) {
293 if (td_rw(td)) {
294 log_err("fio: can't read/write to stdin/out\n");
295 return 1;
296 }
297 is_std = 1;
298
299 /*
300 * move output logging to stderr, if we are writing to stdout
301 */
302 if (td_write(td))
303 f_out = stderr;
304 }
305
306 if (td->o.odirect)
307 flags |= OS_O_DIRECT;
308 if (td->o.sync_io)
309 flags |= O_SYNC;
310 if (f->filetype != FIO_TYPE_FILE)
311 flags |= FIO_O_NOATIME;
312
313open_again:
314 if (td_write(td)) {
315 if (!read_only)
316 flags |= O_RDWR;
317
318 if (f->filetype == FIO_TYPE_FILE)
319 flags |= O_CREAT;
320
321 if (is_std)
322 f->fd = dup(STDOUT_FILENO);
323 else
324 from_hash = file_lookup_open(f, flags);
325 } else {
326 if (f->filetype == FIO_TYPE_CHAR && !read_only)
327 flags |= O_RDWR;
328 else
329 flags |= O_RDONLY;
330
331 if (is_std)
332 f->fd = dup(STDIN_FILENO);
333 else
334 from_hash = file_lookup_open(f, flags);
335 }
336
337 if (f->fd == -1) {
338 char buf[FIO_VERROR_SIZE];
339 int __e = errno;
340
341 if (errno == EPERM && (flags & FIO_O_NOATIME)) {
342 flags &= ~FIO_O_NOATIME;
343 goto open_again;
344 }
345
346 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
347
348 td_verror(td, __e, buf);
349 }
350
351 if (get_file_size(td, f))
352 goto err;
353
354 if (!from_hash && f->fd != -1) {
355 if (add_file_hash(f)) {
356 int ret;
357
358 /*
359 * OK to ignore, we haven't done anything with it
360 */
361 ret = generic_close_file(td, f);
362 goto open_again;
363 }
364 }
365
366 return 0;
367err:
368 close(f->fd);
369 return 1;
370}
371
372int open_files(struct thread_data *td)
373{
374 struct fio_file *f;
375 unsigned int i;
376 int err = 0;
377
378 dprint(FD_FILE, "open files\n");
379
380 for_each_file(td, f, i) {
381 err = td_io_open_file(td, f);
382 if (err) {
383 if (td->error == EMFILE) {
384 log_err("fio: limited open files to: %d\n",
385 td->nr_open_files);
386 td->o.open_files = td->nr_open_files;
387 err = 0;
388 clear_error(td);
389 }
390 break;
391 }
392
393 if (td->o.open_files == td->nr_open_files)
394 break;
395 }
396
397 if (!err)
398 return 0;
399
400 for_each_file(td, f, i)
401 td_io_close_file(td, f);
402
403 return err;
404}
405
406/*
407 * open/close all files, so that ->real_file_size gets set
408 */
409static int get_file_sizes(struct thread_data *td)
410{
411 struct fio_file *f;
412 unsigned int i;
413 int err = 0;
414
415 for_each_file(td, f, i) {
416 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
417 f->file_name);
418
419 if (td->io_ops->open_file(td, f)) {
420 if (td->error != ENOENT) {
421 log_err("%s\n", td->verror);
422 err = 1;
423 }
424 clear_error(td);
425 } else {
426 if (td->io_ops->close_file)
427 td->io_ops->close_file(td, f);
428 }
429
430 if (f->real_file_size == -1ULL && td->o.size)
431 f->real_file_size = td->o.size / td->o.nr_files;
432 }
433
434 return err;
435}
436
437/*
438 * Open the files and setup files sizes, creating files if necessary.
439 */
440int setup_files(struct thread_data *td)
441{
442 unsigned long long total_size, extend_size;
443 struct fio_file *f;
444 unsigned int i;
445 int err = 0, need_extend;
446
447 dprint(FD_FILE, "setup files\n");
448
449 if (td->o.read_iolog_file)
450 return 0;
451
452 /*
453 * if ioengine defines a setup() method, it's responsible for
454 * opening the files and setting f->real_file_size to indicate
455 * the valid range for that file.
456 */
457 if (td->io_ops->setup)
458 err = td->io_ops->setup(td);
459 else
460 err = get_file_sizes(td);
461
462 if (err)
463 return err;
464
465 /*
466 * check sizes. if the files/devices do not exist and the size
467 * isn't passed to fio, abort.
468 */
469 total_size = 0;
470 for_each_file(td, f, i) {
471 if (f->real_file_size == -1ULL)
472 total_size = -1ULL;
473 else
474 total_size += f->real_file_size;
475 }
476
477 /*
478 * device/file sizes are zero and no size given, punt
479 */
480 if ((!total_size || total_size == -1ULL) && !td->o.size &&
481 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
482 log_err("%s: you need to specify size=\n", td->o.name);
483 td_verror(td, EINVAL, "total_file_size");
484 return 1;
485 }
486
487 /*
488 * now file sizes are known, so we can set ->io_size. if size= is
489 * not given, ->io_size is just equal to ->real_file_size. if size
490 * is given, ->io_size is size / nr_files.
491 */
492 extend_size = total_size = 0;
493 need_extend = 0;
494 for_each_file(td, f, i) {
495 f->file_offset = td->o.start_offset;
496
497 if (!td->o.file_size_low) {
498 /*
499 * no file size range given, file size is equal to
500 * total size divided by number of files. if that is
501 * zero, set it to the real file size.
502 */
503 f->io_size = td->o.size / td->o.nr_files;
504 if (!f->io_size)
505 f->io_size = f->real_file_size - f->file_offset;
506 } else if (f->real_file_size < td->o.file_size_low ||
507 f->real_file_size > td->o.file_size_high) {
508 if (f->file_offset > td->o.file_size_low)
509 goto err_offset;
510 /*
511 * file size given. if it's fixed, use that. if it's a
512 * range, generate a random size in-between.
513 */
514 if (td->o.file_size_low == td->o.file_size_high) {
515 f->io_size = td->o.file_size_low
516 - f->file_offset;
517 } else {
518 f->io_size = get_rand_file_size(td)
519 - f->file_offset;
520 }
521 } else
522 f->io_size = f->real_file_size - f->file_offset;
523
524 if (f->io_size == -1ULL)
525 total_size = -1ULL;
526 else
527 total_size += f->io_size;
528
529 if (f->filetype == FIO_TYPE_FILE &&
530 (f->io_size + f->file_offset) > f->real_file_size &&
531 !(td->io_ops->flags & FIO_DISKLESSIO)) {
532 need_extend++;
533 extend_size += (f->io_size + f->file_offset);
534 f->flags |= FIO_FILE_EXTEND;
535 }
536 }
537
538 if (!td->o.size || td->o.size > total_size)
539 td->o.size = total_size;
540
541 /*
542 * See if we need to extend some files
543 */
544 if (need_extend) {
545 temp_stall_ts = 1;
546 log_info("%s: Laying out IO file(s) (%u file(s) / %LuMiB)\n",
547 td->o.name, need_extend, extend_size >> 20);
548
549 for_each_file(td, f, i) {
550 unsigned long long old_len, extend_len;
551
552 if (!(f->flags & FIO_FILE_EXTEND))
553 continue;
554
555 assert(f->filetype == FIO_TYPE_FILE);
556 f->flags &= ~FIO_FILE_EXTEND;
557 old_len = f->real_file_size;
558 extend_len = f->io_size + f->file_offset - old_len;
559 f->real_file_size = (f->io_size + f->file_offset);
560 err = extend_file(td, f);
561 if (err)
562 break;
563
564 err = __file_invalidate_cache(td, f, old_len,
565 extend_len);
566 close(f->fd);
567 f->fd = -1;
568 if (err)
569 break;
570 }
571 temp_stall_ts = 0;
572 }
573
574 if (err)
575 return err;
576
577 if (!td->o.zone_size)
578 td->o.zone_size = td->o.size;
579
580 /*
581 * iolog already set the total io size, if we read back
582 * stored entries.
583 */
584 if (!td->o.read_iolog_file)
585 td->total_io_size = td->o.size * td->o.loops;
586 return 0;
587err_offset:
588 log_err("%s: you need to specify valid offset=\n", td->o.name);
589 return 1;
590}
591
592int init_random_map(struct thread_data *td)
593{
594 unsigned long long blocks, num_maps;
595 struct fio_file *f;
596 unsigned int i;
597
598 if (td->o.norandommap || !td_random(td))
599 return 0;
600
601 for_each_file(td, f, i) {
602 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
603 (unsigned long long) td->o.rw_min_bs;
604 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
605 (unsigned long long) BLOCKS_PER_MAP;
606 f->file_map = smalloc(num_maps * sizeof(int));
607 if (f->file_map) {
608 f->num_maps = num_maps;
609 continue;
610 }
611 if (!td->o.softrandommap) {
612 log_err("fio: failed allocating random map. If running"
613 " a large number of jobs, try the 'norandommap'"
614 " option or set 'softrandommap'. Or give"
615 " a larger --alloc-size to fio.\n");
616 return 1;
617 }
618
619 log_info("fio: file %s failed allocating random map. Running "
620 "job without.\n", f->file_name);
621 f->num_maps = 0;
622 }
623
624 return 0;
625}
626
627void close_files(struct thread_data *td)
628{
629 struct fio_file *f;
630 unsigned int i;
631
632 for_each_file(td, f, i)
633 td_io_close_file(td, f);
634}
635
636void close_and_free_files(struct thread_data *td)
637{
638 struct fio_file *f;
639 unsigned int i;
640
641 dprint(FD_FILE, "close files\n");
642
643 for_each_file(td, f, i) {
644 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
645 dprint(FD_FILE, "free unlink %s\n", f->file_name);
646 unlink(f->file_name);
647 }
648
649 td_io_close_file(td, f);
650
651 sfree(f->file_name);
652 f->file_name = NULL;
653
654 if (f->file_map) {
655 sfree(f->file_map);
656 f->file_map = NULL;
657 }
658 sfree(f);
659 }
660
661 td->o.filename = NULL;
662 free(td->files);
663 td->files_index = 0;
664 td->files = NULL;
665 td->o.nr_files = 0;
666}
667
668static void get_file_type(struct fio_file *f)
669{
670 struct stat sb;
671
672 if (!strcmp(f->file_name, "-"))
673 f->filetype = FIO_TYPE_PIPE;
674 else
675 f->filetype = FIO_TYPE_FILE;
676
677 if (!lstat(f->file_name, &sb)) {
678 if (S_ISBLK(sb.st_mode))
679 f->filetype = FIO_TYPE_BD;
680 else if (S_ISCHR(sb.st_mode))
681 f->filetype = FIO_TYPE_CHAR;
682 else if (S_ISFIFO(sb.st_mode))
683 f->filetype = FIO_TYPE_PIPE;
684 }
685}
686
687int add_file(struct thread_data *td, const char *fname)
688{
689 int cur_files = td->files_index;
690 char file_name[PATH_MAX];
691 struct fio_file *f;
692 int len = 0;
693
694 dprint(FD_FILE, "add file %s\n", fname);
695
696 f = smalloc(sizeof(*f));
697 f->fd = -1;
698
699 dprint(FD_FILE, "resize file array to %d files\n", cur_files + 1);
700
701 td->files = realloc(td->files, (cur_files + 1) * sizeof(f));
702 td->files[cur_files] = f;
703
704 /*
705 * init function, io engine may not be loaded yet
706 */
707 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
708 f->real_file_size = -1ULL;
709
710 if (td->o.directory)
711 len = sprintf(file_name, "%s/", td->o.directory);
712
713 sprintf(file_name + len, "%s", fname);
714 f->file_name = smalloc_strdup(file_name);
715
716 get_file_type(f);
717
718 switch (td->o.file_lock_mode) {
719 case FILE_LOCK_NONE:
720 break;
721 case FILE_LOCK_READWRITE:
722 f->lock = fio_mutex_rw_init();
723 break;
724 case FILE_LOCK_EXCLUSIVE:
725 f->lock = fio_mutex_init(1);
726 break;
727 default:
728 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
729 assert(0);
730 }
731
732 td->files_index++;
733 if (f->filetype == FIO_TYPE_FILE)
734 td->nr_normal_files++;
735
736 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
737 cur_files);
738
739 return cur_files;
740}
741
742void get_file(struct fio_file *f)
743{
744 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
745 assert(f->flags & FIO_FILE_OPEN);
746 f->references++;
747}
748
749int put_file(struct thread_data *td, struct fio_file *f)
750{
751 int f_ret = 0, ret = 0;
752
753 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
754
755 if (!(f->flags & FIO_FILE_OPEN))
756 return 0;
757
758 assert(f->references);
759 if (--f->references)
760 return 0;
761
762 if (should_fsync(td) && td->o.fsync_on_close)
763 f_ret = fsync(f->fd);
764
765 if (td->io_ops->close_file)
766 ret = td->io_ops->close_file(td, f);
767
768 if (!ret)
769 ret = f_ret;
770
771 td->nr_open_files--;
772 f->flags &= ~FIO_FILE_OPEN;
773 return ret;
774}
775
776void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
777{
778 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
779 return;
780
781 if (f->lock_owner == td && f->lock_batch--)
782 return;
783
784 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
785 if (ddir == DDIR_READ)
786 fio_mutex_down_read(f->lock);
787 else
788 fio_mutex_down_write(f->lock);
789 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
790 fio_mutex_down(f->lock);
791
792 f->lock_owner = td;
793 f->lock_batch = td->o.lockfile_batch;
794 f->lock_ddir = ddir;
795}
796
797void unlock_file(struct thread_data *td, struct fio_file *f)
798{
799 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
800 return;
801 if (f->lock_batch)
802 return;
803
804 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
805 const int is_read = f->lock_ddir == DDIR_READ;
806 int val = fio_mutex_getval(f->lock);
807
808 if ((is_read && val == 1) || (!is_read && val == -1))
809 f->lock_owner = NULL;
810
811 if (is_read)
812 fio_mutex_up_read(f->lock);
813 else
814 fio_mutex_up_write(f->lock);
815 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
816 int val = fio_mutex_getval(f->lock);
817
818 if (val == 0)
819 f->lock_owner = NULL;
820
821 fio_mutex_up(f->lock);
822 }
823}
824
825void unlock_file_all(struct thread_data *td, struct fio_file *f)
826{
827 if (f->lock_owner != td)
828 return;
829
830 f->lock_batch = 0;
831 unlock_file(td, f);
832}
833
834static int recurse_dir(struct thread_data *td, const char *dirname)
835{
836 struct dirent *dir;
837 int ret = 0;
838 DIR *D;
839
840 D = opendir(dirname);
841 if (!D) {
842 char buf[FIO_VERROR_SIZE];
843
844 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
845 td_verror(td, errno, buf);
846 return 1;
847 }
848
849 while ((dir = readdir(D)) != NULL) {
850 char full_path[PATH_MAX];
851 struct stat sb;
852
853 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
854 continue;
855
856 sprintf(full_path, "%s/%s", dirname, dir->d_name);
857
858 if (lstat(full_path, &sb) == -1) {
859 if (errno != ENOENT) {
860 td_verror(td, errno, "stat");
861 return 1;
862 }
863 }
864
865 if (S_ISREG(sb.st_mode)) {
866 add_file(td, full_path);
867 td->o.nr_files++;
868 continue;
869 }
870 if (!S_ISDIR(sb.st_mode))
871 continue;
872
873 ret = recurse_dir(td, full_path);
874 if (ret)
875 break;
876 }
877
878 closedir(D);
879 return ret;
880}
881
882int add_dir_files(struct thread_data *td, const char *path)
883{
884 int ret = recurse_dir(td, path);
885
886 if (!ret)
887 log_info("fio: opendir added %d files\n", td->o.nr_files);
888
889 return ret;
890}
891
892void dup_files(struct thread_data *td, struct thread_data *org)
893{
894 struct fio_file *f;
895 unsigned int i;
896
897 dprint(FD_FILE, "dup files: %d\n", org->files_index);
898
899 if (!org->files)
900 return;
901
902 td->files = malloc(org->files_index * sizeof(f));
903
904 for_each_file(org, f, i) {
905 struct fio_file *__f;
906
907 __f = smalloc(sizeof(*__f));
908
909 if (f->file_name) {
910 __f->file_name = smalloc_strdup(f->file_name);
911 __f->filetype = f->filetype;
912 }
913
914 td->files[i] = __f;
915 }
916}
917
918/*
919 * Returns the index that matches the filename, or -1 if not there
920 */
921int get_fileno(struct thread_data *td, const char *fname)
922{
923 struct fio_file *f;
924 unsigned int i;
925
926 for_each_file(td, f, i)
927 if (!strcmp(f->file_name, fname))
928 return i;
929
930 return -1;
931}
932
933/*
934 * For log usage, where we add/open/close files automatically
935 */
936void free_release_files(struct thread_data *td)
937{
938 close_files(td);
939 td->files_index = 0;
940 td->nr_normal_files = 0;
941}