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