Hook up the file hashing
[fio.git] / filesetup.c
CommitLineData
53cdc686
JA
1#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <assert.h>
bbf6b540 5#include <dirent.h>
53cdc686
JA
6#include <sys/stat.h>
7#include <sys/mman.h>
bbf6b540 8#include <sys/types.h>
53cdc686
JA
9
10#include "fio.h"
f17c4392 11#include "smalloc.h"
4906e0b5 12#include "filehash.h"
53cdc686 13
7172cfe8
JA
14static int root_warn;
15
7bb48f84 16static int extend_file(struct thread_data *td, struct fio_file *f)
25205e97 17{
ea443657 18 int r, new_layout = 0, unlink_file = 0, flags;
25205e97
JA
19 unsigned long long left;
20 unsigned int bs;
21 char *b;
b2a15192 22
4241ea8f
JA
23 if (read_only) {
24 log_err("fio: refusing extend of file due to read-only\n");
25 return 0;
26 }
27
507a702f
JA
28 /*
29 * check if we need to lay the file out complete again. fio
30 * does that for operations involving reads, or for writes
31 * where overwrite is set
32 */
33 if (td_read(td) || (td_write(td) && td->o.overwrite))
34 new_layout = 1;
ea443657
JA
35 if (td_write(td) && !td->o.overwrite)
36 unlink_file = 1;
507a702f 37
6ae1f57f 38 if (unlink_file || new_layout) {
982016d6 39 if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
7bb48f84
JA
40 td_verror(td, errno, "unlink");
41 return 1;
42 }
43 }
44
507a702f
JA
45 flags = O_WRONLY | O_CREAT;
46 if (new_layout)
47 flags |= O_TRUNC;
48
ee56ad50 49 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
507a702f 50 f->fd = open(f->file_name, flags, 0644);
53cdc686 51 if (f->fd < 0) {
e1161c32 52 td_verror(td, errno, "open");
53cdc686
JA
53 return 1;
54 }
55
fc74ac1d
SL
56 if (!new_layout)
57 goto done;
58
ee56ad50
JA
59 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
60 f->real_file_size);
7bb48f84 61 if (ftruncate(f->fd, f->real_file_size) == -1) {
e1161c32 62 td_verror(td, errno, "ftruncate");
53cdc686
JA
63 goto err;
64 }
65
ee56ad50
JA
66 dprint(FD_FILE, "fallocate file %s, size %llu\n", f->file_name,
67 f->real_file_size);
7bb48f84 68 if (posix_fallocate(f->fd, 0, f->real_file_size) < 0) {
e1161c32 69 td_verror(td, errno, "posix_fallocate");
40f8298c
JA
70 goto err;
71 }
72
2dc1bbeb
JA
73 b = malloc(td->o.max_bs[DDIR_WRITE]);
74 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
53cdc686 75
7bb48f84 76 left = f->real_file_size;
53cdc686 77 while (left && !td->terminate) {
2dc1bbeb 78 bs = td->o.max_bs[DDIR_WRITE];
53cdc686
JA
79 if (bs > left)
80 bs = left;
81
82 r = write(f->fd, b, bs);
83
84 if (r == (int) bs) {
85 left -= bs;
86 continue;
87 } else {
88 if (r < 0)
e1161c32 89 td_verror(td, errno, "write");
53cdc686 90 else
e1161c32 91 td_verror(td, EIO, "write");
53cdc686
JA
92
93 break;
94 }
95 }
96
97 if (td->terminate)
98 unlink(f->file_name);
2dc1bbeb 99 else if (td->o.create_fsync)
53cdc686
JA
100 fsync(f->fd);
101
102 free(b);
507a702f 103done:
53cdc686
JA
104 close(f->fd);
105 f->fd = -1;
106 return 0;
107err:
108 close(f->fd);
109 f->fd = -1;
110 return 1;
111}
112
7bb48f84 113static unsigned long long get_rand_file_size(struct thread_data *td)
9c60ce64 114{
9c60ce64
JA
115 unsigned long long ret;
116 long r;
117
9c60ce64 118 r = os_random_long(&td->file_size_state);
d11a531f 119 ret = td->o.file_size_low + (unsigned long long) ((double) (td->o.file_size_high - td->o.file_size_low) * (r / (RAND_MAX + 1.0)));
2dc1bbeb 120 ret -= (ret % td->o.rw_min_bs);
9c60ce64
JA
121 return ret;
122}
123
53cdc686
JA
124static int file_size(struct thread_data *td, struct fio_file *f)
125{
126 struct stat st;
127
7bb48f84
JA
128 if (fstat(f->fd, &st) == -1) {
129 td_verror(td, errno, "fstat");
130 return 1;
131 }
53cdc686 132
7bb48f84 133 f->real_file_size = st.st_size;
53cdc686
JA
134 return 0;
135}
136
137static int bdev_size(struct thread_data *td, struct fio_file *f)
138{
139 unsigned long long bytes;
140 int r;
141
142 r = blockdev_size(f->fd, &bytes);
143 if (r) {
e1161c32 144 td_verror(td, r, "blockdev_size");
53cdc686
JA
145 return 1;
146 }
147
148 f->real_file_size = bytes;
53cdc686
JA
149 return 0;
150}
151
152static int get_file_size(struct thread_data *td, struct fio_file *f)
153{
154 int ret = 0;
155
409b3417
JA
156 if (f->flags & FIO_SIZE_KNOWN)
157 return 0;
158
7bb48f84
JA
159 if (f->filetype == FIO_TYPE_FILE)
160 ret = file_size(td, f);
161 else if (f->filetype == FIO_TYPE_BD)
53cdc686
JA
162 ret = bdev_size(td, f);
163 else
164 f->real_file_size = -1;
165
166 if (ret)
167 return ret;
168
169 if (f->file_offset > f->real_file_size) {
2dc1bbeb 170 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name, f->file_offset, f->real_file_size);
53cdc686
JA
171 return 1;
172 }
173
409b3417 174 f->flags |= FIO_SIZE_KNOWN;
53cdc686
JA
175 return 0;
176}
177
e5b401d4
JA
178int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
179{
180 int ret = 0;
181
ee56ad50
JA
182 dprint(FD_IO, "invalidate cache (%d)\n", td->o.odirect);
183
2dc1bbeb 184 if (td->o.odirect)
b5af8293
JA
185 return 0;
186
e5b401d4
JA
187 /*
188 * FIXME: add blockdev flushing too
189 */
b5af8293 190 if (f->mmap)
7bb48f84 191 ret = madvise(f->mmap, f->io_size, MADV_DONTNEED);
467d1b6b 192 else if (f->filetype == FIO_TYPE_FILE)
7bb48f84 193 ret = fadvise(f->fd, f->file_offset, f->io_size, POSIX_FADV_DONTNEED);
7e0e25c9 194 else if (f->filetype == FIO_TYPE_BD) {
b5af8293 195 ret = blockdev_invalidate_cache(f->fd);
7e0e25c9 196 if (ret < 0 && errno == EACCES && geteuid()) {
7172cfe8
JA
197 if (!root_warn) {
198 log_err("fio: only root may flush block devices. Cache flush bypassed!\n");
199 root_warn = 1;
200 }
7e0e25c9
JA
201 ret = 0;
202 }
b5605e9d 203 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
e5b401d4
JA
204 ret = 0;
205
206 if (ret < 0) {
e1161c32 207 td_verror(td, errno, "invalidate_cache");
e5b401d4
JA
208 return 1;
209 }
210
ad2da605 211 return ret;
e5b401d4
JA
212}
213
6977bcd0 214int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
53cdc686 215{
6977bcd0
JA
216 int ret = 0;
217
ee56ad50 218 dprint(FD_FILE, "fd close %s\n", f->file_name);
4906e0b5
JA
219
220 remove_file_hash(f);
221
6977bcd0
JA
222 if (close(f->fd) < 0)
223 ret = errno;
224
b5af8293 225 f->fd = -1;
6977bcd0 226 return ret;
53cdc686
JA
227}
228
b5af8293 229int generic_open_file(struct thread_data *td, struct fio_file *f)
53cdc686 230{
66159828 231 int is_std = 0;
53cdc686
JA
232 int flags = 0;
233
ee56ad50
JA
234 dprint(FD_FILE, "fd open %s\n", f->file_name);
235
66159828
JA
236 if (!strcmp(f->file_name, "-")) {
237 if (td_rw(td)) {
238 log_err("fio: can't read/write to stdin/out\n");
239 return 1;
240 }
241 is_std = 1;
ce98fa66
JA
242
243 /*
244 * move output logging to stderr, if we are writing to stdout
245 */
246 if (td_write(td))
247 f_out = stderr;
66159828
JA
248 }
249
2dc1bbeb 250 if (td->o.odirect)
2fd233b7 251 flags |= OS_O_DIRECT;
2dc1bbeb 252 if (td->o.sync_io)
2fd233b7 253 flags |= O_SYNC;
ad92396c
JA
254 if (f->filetype != FIO_TYPE_FILE)
255 flags |= O_NOATIME;
53cdc686 256
056f3459 257open_again:
660a1cb5 258 if (td_write(td)) {
4241ea8f
JA
259 assert(!read_only);
260
2fd233b7 261 flags |= O_RDWR;
53cdc686 262
af52b345 263 if (f->filetype == FIO_TYPE_FILE)
2fd233b7 264 flags |= O_CREAT;
2fd233b7 265
66159828
JA
266 if (is_std)
267 f->fd = dup(STDOUT_FILENO);
268 else
269 f->fd = open(f->file_name, flags, 0600);
2fd233b7 270 } else {
4241ea8f 271 if (f->filetype == FIO_TYPE_CHAR && !read_only)
2fd233b7
JA
272 flags |= O_RDWR;
273 else
274 flags |= O_RDONLY;
275
66159828
JA
276 if (is_std)
277 f->fd = dup(STDIN_FILENO);
278 else
279 f->fd = open(f->file_name, flags);
53cdc686
JA
280 }
281
282 if (f->fd == -1) {
e4e33258 283 char buf[FIO_VERROR_SIZE];
e1161c32
JA
284 int __e = errno;
285
056f3459
AC
286 if (errno == EPERM && (flags & O_NOATIME)) {
287 flags &= ~O_NOATIME;
288 goto open_again;
289 }
290
e4e33258
JA
291 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
292
293 td_verror(td, __e, buf);
53cdc686
JA
294 }
295
b5af8293
JA
296 if (get_file_size(td, f))
297 goto err;
298
4906e0b5
JA
299 add_file_hash(f);
300
53cdc686 301 return 0;
b5af8293
JA
302err:
303 close(f->fd);
304 return 1;
305}
306
21972cde
JA
307int open_files(struct thread_data *td)
308{
309 struct fio_file *f;
af52b345
JA
310 unsigned int i;
311 int err = 0;
21972cde 312
ee56ad50
JA
313 dprint(FD_FILE, "open files\n");
314
21972cde 315 for_each_file(td, f, i) {
b5af8293 316 err = td_io_open_file(td, f);
9bf27b45
JA
317 if (err) {
318 if (td->error == EMFILE) {
319 log_err("fio: limited open files to: %d\n", td->nr_open_files);
320 td->o.open_files = td->nr_open_files;
321 err = 0;
322 clear_error(td);
323 }
21972cde 324 break;
9bf27b45 325 }
b5af8293 326
2dc1bbeb 327 if (td->o.open_files == td->nr_open_files)
b5af8293 328 break;
21972cde
JA
329 }
330
7abf833d
JA
331 if (!err)
332 return 0;
333
bdb4e2e9 334 for_each_file(td, f, i)
b5af8293 335 td_io_close_file(td, f);
7abf833d 336
21972cde
JA
337 return err;
338}
339
7bb48f84
JA
340/*
341 * open/close all files, so that ->real_file_size gets set
342 */
bab3fd58 343static int get_file_sizes(struct thread_data *td)
7bb48f84
JA
344{
345 struct fio_file *f;
346 unsigned int i;
bab3fd58 347 int err = 0;
7bb48f84
JA
348
349 for_each_file(td, f, i) {
bab3fd58 350 if (td->io_ops->open_file(td, f)) {
40b44f4a
JA
351 if (td->error != ENOENT) {
352 log_err("%s\n", td->verror);
353 err = 1;
354 }
541d66d7 355 clear_error(td);
07eb79df
JA
356 } else {
357 if (td->io_ops->close_file)
358 td->io_ops->close_file(td, f);
359 }
409b3417
JA
360
361 if (f->real_file_size == -1ULL && td->o.size)
362 f->real_file_size = td->o.size / td->o.nr_files;
7bb48f84 363 }
bab3fd58
JA
364
365 return err;
7bb48f84
JA
366}
367
368/*
369 * Open the files and setup files sizes, creating files if necessary.
370 */
53cdc686
JA
371int setup_files(struct thread_data *td)
372{
7bb48f84 373 unsigned long long total_size, extend_size;
53cdc686 374 struct fio_file *f;
af52b345 375 unsigned int i;
000b0803 376 int err = 0, need_extend;
53cdc686 377
ee56ad50
JA
378 dprint(FD_FILE, "setup files\n");
379
53cdc686
JA
380 /*
381 * if ioengine defines a setup() method, it's responsible for
7bb48f84
JA
382 * opening the files and setting f->real_file_size to indicate
383 * the valid range for that file.
53cdc686
JA
384 */
385 if (td->io_ops->setup)
7bb48f84
JA
386 err = td->io_ops->setup(td);
387 else
bab3fd58 388 err = get_file_sizes(td);
53cdc686 389
f1027063
JA
390 if (err)
391 return err;
392
0a7eb121 393 /*
7bb48f84
JA
394 * check sizes. if the files/devices do not exist and the size
395 * isn't passed to fio, abort.
0a7eb121 396 */
7bb48f84
JA
397 total_size = 0;
398 for_each_file(td, f, i) {
399 if (f->real_file_size == -1ULL)
400 total_size = -1ULL;
401 else
402 total_size += f->real_file_size;
403 }
0a7eb121 404
7bb48f84
JA
405 /*
406 * device/file sizes are zero and no size given, punt
407 */
1f809d15 408 if ((!total_size || total_size == -1ULL) && !td->o.size &&
aa31f1f1 409 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
7bb48f84 410 log_err("%s: you need to specify size=\n", td->o.name);
e1161c32 411 td_verror(td, EINVAL, "total_file_size");
53cdc686
JA
412 return 1;
413 }
414
7bb48f84
JA
415 /*
416 * now file sizes are known, so we can set ->io_size. if size= is
417 * not given, ->io_size is just equal to ->real_file_size. if size
418 * is given, ->io_size is size / nr_files.
419 */
420 extend_size = total_size = 0;
421 need_extend = 0;
422 for_each_file(td, f, i) {
bcdedd0a
YHJT
423 f->file_offset = td->o.start_offset;
424
7bb48f84
JA
425 if (!td->o.file_size_low) {
426 /*
427 * no file size range given, file size is equal to
428 * total size divided by number of files. if that is
429 * zero, set it to the real file size.
430 */
431 f->io_size = td->o.size / td->o.nr_files;
65bdb10a 432 if (!f->io_size)
273f8c91 433 f->io_size = f->real_file_size - f->file_offset;
7bb48f84
JA
434 } else if (f->real_file_size < td->o.file_size_low ||
435 f->real_file_size > td->o.file_size_high) {
bcdedd0a
YHJT
436 if (f->file_offset > td->o.file_size_low)
437 goto err_offset;
7bb48f84
JA
438 /*
439 * file size given. if it's fixed, use that. if it's a
440 * range, generate a random size in-between.
441 */
442 if (td->o.file_size_low == td->o.file_size_high)
bcdedd0a 443 f->io_size = td->o.file_size_low - f->file_offset;
7bb48f84 444 else
bcdedd0a 445 f->io_size = get_rand_file_size(td) - f->file_offset;
65bdb10a 446 } else
bcdedd0a 447 f->io_size = f->real_file_size - f->file_offset;
53cdc686 448
7bb48f84
JA
449 if (f->io_size == -1ULL)
450 total_size = -1ULL;
451 else
452 total_size += f->io_size;
453
454 if (f->filetype == FIO_TYPE_FILE &&
bcdedd0a 455 (f->io_size + f->file_offset) > f->real_file_size &&
7bb48f84
JA
456 !(td->io_ops->flags & FIO_DISKLESSIO)) {
457 need_extend++;
bcdedd0a 458 extend_size += (f->io_size + f->file_offset);
7bb48f84 459 f->flags |= FIO_FILE_EXTEND;
bcdedd0a 460 }
7bb48f84 461 }
53cdc686 462
2298290e 463 if (!td->o.size || td->o.size > total_size)
7bb48f84 464 td->o.size = total_size;
21972cde 465
7bb48f84
JA
466 /*
467 * See if we need to extend some files
468 */
469 if (need_extend) {
470 temp_stall_ts = 1;
f627d8ae 471 log_info("%s: Laying out IO file(s) (%u file(s) / %LuMiB)\n",
7bb48f84
JA
472 td->o.name, need_extend, extend_size >> 20);
473
474 for_each_file(td, f, i) {
475 if (!(f->flags & FIO_FILE_EXTEND))
476 continue;
477
409b3417 478 assert(f->filetype == FIO_TYPE_FILE);
7bb48f84 479 f->flags &= ~FIO_FILE_EXTEND;
bcdedd0a 480 f->real_file_size = (f->io_size + f->file_offset);
7bb48f84
JA
481 err = extend_file(td, f);
482 if (err)
483 break;
484 }
485 temp_stall_ts = 0;
486 }
487
488 if (err)
489 return err;
490
491 if (!td->o.zone_size)
492 td->o.zone_size = td->o.size;
493
ea966f81
JA
494 /*
495 * iolog already set the total io size, if we read back
496 * stored entries.
497 */
498 if (!td->o.read_iolog_file)
499 td->total_io_size = td->o.size * td->o.loops;
7bb48f84 500 return 0;
bcdedd0a
YHJT
501err_offset:
502 log_err("%s: you need to specify valid offset=\n", td->o.name);
503 return 1;
53cdc686
JA
504}
505
68727076
JA
506int init_random_map(struct thread_data *td)
507{
509eab12 508 unsigned long long blocks, num_maps;
68727076
JA
509 struct fio_file *f;
510 unsigned int i;
511
de8dd119 512 if (td->o.norandommap || !td_random(td))
68727076
JA
513 return 0;
514
515 for_each_file(td, f, i) {
509eab12
JA
516 blocks = (f->real_file_size + td->o.rw_min_bs - 1) / (unsigned long long) td->o.rw_min_bs;
517 num_maps = (blocks + BLOCKS_PER_MAP-1)/ (unsigned long long) BLOCKS_PER_MAP;
f17c4392 518 f->file_map = smalloc(num_maps * sizeof(long));
68727076
JA
519 if (!f->file_map) {
520 log_err("fio: failed allocating random map. If running a large number of jobs, try the 'norandommap' option\n");
521 return 1;
522 }
523 f->num_maps = num_maps;
68727076
JA
524 }
525
526 return 0;
527}
528
53cdc686
JA
529void close_files(struct thread_data *td)
530{
0ab8db89 531 struct fio_file *f;
af52b345 532 unsigned int i;
53cdc686 533
24ffd2c2
JA
534 for_each_file(td, f, i)
535 td_io_close_file(td, f);
536}
537
538void close_and_free_files(struct thread_data *td)
539{
540 struct fio_file *f;
541 unsigned int i;
542
ee56ad50
JA
543 dprint(FD_FILE, "close files\n");
544
0ab8db89 545 for_each_file(td, f, i) {
a9b7b305 546 if (td->o.unlink && f->filetype == FIO_TYPE_FILE)
132ad46d 547 unlink(f->file_name);
bdb4e2e9 548
b5af8293 549 td_io_close_file(td, f);
b3dc7f07 550
f17c4392 551 sfree(f->file_name);
fa1da865
JA
552 f->file_name = NULL;
553
c343981b 554 if (f->file_map) {
f17c4392 555 sfree(f->file_map);
c343981b
JA
556 f->file_map = NULL;
557 }
78d99e6a 558 sfree(f);
53cdc686 559 }
b4a6a59a 560
2dc1bbeb 561 td->o.filename = NULL;
cade3ef4 562 free(td->files);
b4a6a59a 563 td->files = NULL;
2dc1bbeb 564 td->o.nr_files = 0;
53cdc686 565}
af52b345 566
e3bab463 567static void get_file_type(struct fio_file *f)
af52b345
JA
568{
569 struct stat sb;
570
66159828
JA
571 if (!strcmp(f->file_name, "-"))
572 f->filetype = FIO_TYPE_PIPE;
573 else
574 f->filetype = FIO_TYPE_FILE;
af52b345 575
e3bab463 576 if (!lstat(f->file_name, &sb)) {
af52b345
JA
577 if (S_ISBLK(sb.st_mode))
578 f->filetype = FIO_TYPE_BD;
579 else if (S_ISCHR(sb.st_mode))
580 f->filetype = FIO_TYPE_CHAR;
b5605e9d
JA
581 else if (S_ISFIFO(sb.st_mode))
582 f->filetype = FIO_TYPE_PIPE;
af52b345
JA
583 }
584}
585
f29b25a3 586int add_file(struct thread_data *td, const char *fname)
af52b345 587{
7b4e4fe5 588 int cur_files = td->files_index;
bd0ee748 589 char file_name[PATH_MAX];
af52b345 590 struct fio_file *f;
bd0ee748 591 int len = 0;
af52b345 592
ee56ad50
JA
593 dprint(FD_FILE, "add file %s\n", fname);
594
f17c4392 595 f = smalloc(sizeof(*f));
af52b345 596 f->fd = -1;
bd0ee748 597
126d65c6
JA
598 td->files = realloc(td->files, (cur_files + 1) * sizeof(f));
599
600 td->files[cur_files] = f;
601
07eb79df
JA
602 /*
603 * init function, io engine may not be loaded yet
604 */
605 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
606 f->real_file_size = -1ULL;
607
bd0ee748
JA
608 if (td->o.directory)
609 len = sprintf(file_name, "%s/", td->o.directory);
610
611 sprintf(file_name + len, "%s", fname);
f17c4392 612 f->file_name = smalloc_strdup(file_name);
af52b345 613
e3bab463 614 get_file_type(f);
af52b345 615
7b4e4fe5 616 td->files_index++;
1549441c
JA
617 if (f->filetype == FIO_TYPE_FILE)
618 td->nr_normal_files++;
f29b25a3
JA
619
620 return cur_files;
af52b345 621}
0ad920e7
JA
622
623void get_file(struct fio_file *f)
624{
8172fe97 625 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
97af62ce 626 assert(f->flags & FIO_FILE_OPEN);
0ad920e7
JA
627 f->references++;
628}
629
6977bcd0 630int put_file(struct thread_data *td, struct fio_file *f)
0ad920e7 631{
6977bcd0
JA
632 int ret = 0;
633
8172fe97 634 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
ee56ad50 635
0ad920e7 636 if (!(f->flags & FIO_FILE_OPEN))
6977bcd0 637 return 0;
0ad920e7
JA
638
639 assert(f->references);
640 if (--f->references)
6977bcd0 641 return 0;
0ad920e7 642
d424d4dd 643 if (should_fsync(td) && td->o.fsync_on_close)
ebb1415f
JA
644 fsync(f->fd);
645
0ad920e7 646 if (td->io_ops->close_file)
6977bcd0 647 ret = td->io_ops->close_file(td, f);
1020a139 648
0ad920e7
JA
649 td->nr_open_files--;
650 f->flags &= ~FIO_FILE_OPEN;
6977bcd0 651 return ret;
0ad920e7 652}
bbf6b540 653
b2bd2bd9
JA
654void lock_file(struct thread_data *td, struct fio_file *f)
655{
656}
657
658void unlock_file(struct fio_file *f)
659{
660}
661
bbf6b540
JA
662static int recurse_dir(struct thread_data *td, const char *dirname)
663{
664 struct dirent *dir;
665 int ret = 0;
666 DIR *D;
667
668 D = opendir(dirname);
669 if (!D) {
0ddb270c
JA
670 char buf[FIO_VERROR_SIZE];
671
672 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
673 td_verror(td, errno, buf);
bbf6b540
JA
674 return 1;
675 }
676
677 while ((dir = readdir(D)) != NULL) {
678 char full_path[PATH_MAX];
679 struct stat sb;
680
e85b2b83
JA
681 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
682 continue;
96d32d51 683
bbf6b540
JA
684 sprintf(full_path, "%s/%s", dirname, dir->d_name);
685
686 if (lstat(full_path, &sb) == -1) {
687 if (errno != ENOENT) {
688 td_verror(td, errno, "stat");
689 return 1;
690 }
691 }
692
693 if (S_ISREG(sb.st_mode)) {
694 add_file(td, full_path);
2dc1bbeb 695 td->o.nr_files++;
bbf6b540
JA
696 continue;
697 }
0ddb270c
JA
698 if (!S_ISDIR(sb.st_mode))
699 continue;
bbf6b540 700
bbf6b540
JA
701 if ((ret = recurse_dir(td, full_path)) != 0)
702 break;
703 }
704
705 closedir(D);
706 return ret;
707}
708
709int add_dir_files(struct thread_data *td, const char *path)
710{
0ddb270c
JA
711 int ret = recurse_dir(td, path);
712
713 if (!ret)
714 log_info("fio: opendir added %d files\n", td->o.nr_files);
715
716 return ret;
bbf6b540 717}
cade3ef4
JA
718
719void dup_files(struct thread_data *td, struct thread_data *org)
720{
721 struct fio_file *f;
722 unsigned int i;
723 size_t bytes;
724
725 if (!org->files)
726 return;
727
b0fe421a 728 bytes = org->files_index * sizeof(f);
cade3ef4
JA
729 td->files = malloc(bytes);
730 memcpy(td->files, org->files, bytes);
731
732 for_each_file(td, f, i) {
b0fe421a
JA
733 struct fio_file *__f;
734
f17c4392 735 __f = smalloc(sizeof(*__f));
b0fe421a 736
cade3ef4 737 if (f->file_name)
f17c4392 738 __f->file_name = smalloc_strdup(f->file_name);
b0fe421a
JA
739
740 td->files[i] = __f;
cade3ef4
JA
741 }
742}
f29b25a3
JA
743
744/*
745 * Returns the index that matches the filename, or -1 if not there
746 */
747int get_fileno(struct thread_data *td, const char *fname)
748{
749 struct fio_file *f;
750 unsigned int i;
751
752 for_each_file(td, f, i)
753 if (!strcmp(f->file_name, fname))
754 return i;
755
756 return -1;
757}
758
759/*
760 * For log usage, where we add/open/close files automatically
761 */
762void free_release_files(struct thread_data *td)
763{
764 close_files(td);
765 td->files_index = 0;
766 td->nr_normal_files = 0;
767}