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