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