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