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