Don't set FIO_FILE_extend when create_on_open= option is set
[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>
d74ac843 6#include <libgen.h>
53cdc686
JA
7#include <sys/stat.h>
8#include <sys/mman.h>
bbf6b540 9#include <sys/types.h>
53cdc686
JA
10
11#include "fio.h"
f17c4392 12#include "smalloc.h"
4906e0b5 13#include "filehash.h"
bcbfeefa 14#include "options.h"
ecc314ba 15#include "os/os.h"
2316296a 16#include "hash.h"
7ebd796f 17#include "lib/axmap.h"
53cdc686 18
97ac992c 19#ifdef CONFIG_LINUX_FALLOCATE
a596f047
EG
20#include <linux/falloc.h>
21#endif
22
7172cfe8
JA
23static int root_warn;
24
bcbfeefa
CE
25static FLIST_HEAD(filename_list);
26
c592b9fe
JA
27static inline void clear_error(struct thread_data *td)
28{
29 td->error = 0;
30 td->verror[0] = '\0';
31}
32
3baddf24
JA
33/*
34 * Leaves f->fd open on success, caller must close
35 */
7bb48f84 36static int extend_file(struct thread_data *td, struct fio_file *f)
25205e97 37{
ea443657 38 int r, new_layout = 0, unlink_file = 0, flags;
25205e97
JA
39 unsigned long long left;
40 unsigned int bs;
f3e1eb23 41 char *b = NULL;
b2a15192 42
4241ea8f
JA
43 if (read_only) {
44 log_err("fio: refusing extend of file due to read-only\n");
45 return 0;
46 }
47
507a702f
JA
48 /*
49 * check if we need to lay the file out complete again. fio
50 * does that for operations involving reads, or for writes
51 * where overwrite is set
52 */
1417daeb
JA
53 if (td_read(td) ||
54 (td_write(td) && td->o.overwrite && !td->o.file_append) ||
9b87f09b 55 (td_write(td) && td_ioengine_flagged(td, FIO_NOEXTEND)))
507a702f 56 new_layout = 1;
1417daeb 57 if (td_write(td) && !td->o.overwrite && !td->o.file_append)
ea443657 58 unlink_file = 1;
507a702f 59
6ae1f57f 60 if (unlink_file || new_layout) {
2442c935
JA
61 int ret;
62
bd199f2b 63 dprint(FD_FILE, "layout unlink %s\n", f->file_name);
2442c935
JA
64
65 ret = td_io_unlink_file(td, f);
66 if (ret != 0 && ret != ENOENT) {
7bb48f84
JA
67 td_verror(td, errno, "unlink");
68 return 1;
69 }
70 }
71
2378826d
JA
72 flags = O_WRONLY;
73 if (td->o.allow_create)
74 flags |= O_CREAT;
507a702f
JA
75 if (new_layout)
76 flags |= O_TRUNC;
77
9c0f3f32
BC
78#ifdef WIN32
79 flags |= _O_BINARY;
80#endif
81
ee56ad50 82 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
507a702f 83 f->fd = open(f->file_name, flags, 0644);
53cdc686 84 if (f->fd < 0) {
2378826d
JA
85 int err = errno;
86
87 if (err == ENOENT && !td->o.allow_create)
88 log_err("fio: file creation disallowed by "
89 "allow_file_create=0\n");
90 else
91 td_verror(td, err, "open");
53cdc686
JA
92 return 1;
93 }
94
97ac992c 95#ifdef CONFIG_POSIX_FALLOCATE
a596f047
EG
96 if (!td->o.fill_device) {
97 switch (td->o.fallocate_mode) {
98 case FIO_FALLOCATE_NONE:
99 break;
100 case FIO_FALLOCATE_POSIX:
101 dprint(FD_FILE, "posix_fallocate file %s size %llu\n",
4b91ee8f
JA
102 f->file_name,
103 (unsigned long long) f->real_file_size);
a596f047
EG
104
105 r = posix_fallocate(f->fd, 0, f->real_file_size);
106 if (r > 0) {
107 log_err("fio: posix_fallocate fails: %s\n",
108 strerror(r));
109 }
110 break;
97ac992c 111#ifdef CONFIG_LINUX_FALLOCATE
a596f047
EG
112 case FIO_FALLOCATE_KEEP_SIZE:
113 dprint(FD_FILE,
114 "fallocate(FALLOC_FL_KEEP_SIZE) "
4b91ee8f
JA
115 "file %s size %llu\n", f->file_name,
116 (unsigned long long) f->real_file_size);
7bc8c2cf 117
a596f047
EG
118 r = fallocate(f->fd, FALLOC_FL_KEEP_SIZE, 0,
119 f->real_file_size);
888677a4 120 if (r != 0)
a596f047 121 td_verror(td, errno, "fallocate");
888677a4 122
a596f047 123 break;
97ac992c 124#endif /* CONFIG_LINUX_FALLOCATE */
a596f047
EG
125 default:
126 log_err("fio: unknown fallocate mode: %d\n",
127 td->o.fallocate_mode);
128 assert(0);
7bc8c2cf
JA
129 }
130 }
97ac992c 131#endif /* CONFIG_POSIX_FALLOCATE */
9b836561 132
79591fa9
TK
133 /*
134 * If our jobs don't require regular files initially, we're done.
135 */
fc74ac1d
SL
136 if (!new_layout)
137 goto done;
138
5e0074c2
JA
139 /*
140 * The size will be -1ULL when fill_device is used, so don't truncate
141 * or fallocate this file, just write it
142 */
143 if (!td->o.fill_device) {
144 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
4b91ee8f 145 (unsigned long long) f->real_file_size);
5e0074c2 146 if (ftruncate(f->fd, f->real_file_size) == -1) {
3cd4c66f
J
147 if (errno != EFBIG) {
148 td_verror(td, errno, "ftruncate");
149 goto err;
150 }
5e0074c2 151 }
5e0074c2 152 }
40f8298c 153
2dc1bbeb 154 b = malloc(td->o.max_bs[DDIR_WRITE]);
53cdc686 155
7bb48f84 156 left = f->real_file_size;
53cdc686 157 while (left && !td->terminate) {
2dc1bbeb 158 bs = td->o.max_bs[DDIR_WRITE];
53cdc686
JA
159 if (bs > left)
160 bs = left;
161
cc86c395
JA
162 fill_io_buffer(td, b, bs, bs);
163
53cdc686
JA
164 r = write(f->fd, b, bs);
165
5e0074c2
JA
166 if (r > 0) {
167 left -= r;
53cdc686
JA
168 continue;
169 } else {
5e0074c2
JA
170 if (r < 0) {
171 int __e = errno;
172
173 if (__e == ENOSPC) {
174 if (td->o.fill_device)
175 break;
176 log_info("fio: ENOSPC on laying out "
177 "file, stopping\n");
178 break;
179 }
e1161c32 180 td_verror(td, errno, "write");
5e0074c2 181 } else
e1161c32 182 td_verror(td, EIO, "write");
53cdc686
JA
183
184 break;
185 }
186 }
187
ffdfabd4
JA
188 if (td->terminate) {
189 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
38ef9c90 190 td_io_unlink_file(td, f);
ffdfabd4 191 } else if (td->o.create_fsync) {
98e1ac4e
JA
192 if (fsync(f->fd) < 0) {
193 td_verror(td, errno, "fsync");
194 goto err;
195 }
196 }
0d1cd207 197 if (td->o.fill_device && !td_write(td)) {
d6aed795 198 fio_file_clear_size_known(f);
5e0074c2
JA
199 if (td_io_get_file_size(td, f))
200 goto err;
201 if (f->io_size > f->real_file_size)
202 f->io_size = f->real_file_size;
203 }
53cdc686
JA
204
205 free(b);
507a702f 206done:
53cdc686
JA
207 return 0;
208err:
209 close(f->fd);
210 f->fd = -1;
f3e1eb23
JA
211 if (b)
212 free(b);
53cdc686
JA
213 return 1;
214}
215
afad68f7
ZY
216static int pre_read_file(struct thread_data *td, struct fio_file *f)
217{
ef799a64 218 int ret = 0, r, did_open = 0, old_runstate;
afad68f7
ZY
219 unsigned long long left;
220 unsigned int bs;
221 char *b;
222
9b87f09b 223 if (td_ioengine_flagged(td, FIO_PIPEIO))
9c0d2241
JA
224 return 0;
225
d6aed795 226 if (!fio_file_open(f)) {
b0f65863
JA
227 if (td->io_ops->open_file(td, f)) {
228 log_err("fio: cannot pre-read, failed to open file\n");
229 return 1;
230 }
231 did_open = 1;
232 }
233
8edd973d 234 old_runstate = td_bump_runstate(td, TD_PRE_READING);
b0f65863 235
afad68f7
ZY
236 bs = td->o.max_bs[DDIR_READ];
237 b = malloc(bs);
238 memset(b, 0, bs);
239
ef799a64
JA
240 if (lseek(f->fd, f->file_offset, SEEK_SET) < 0) {
241 td_verror(td, errno, "lseek");
242 log_err("fio: failed to lseek pre-read file\n");
243 ret = 1;
244 goto error;
245 }
246
afad68f7
ZY
247 left = f->io_size;
248
249 while (left && !td->terminate) {
250 if (bs > left)
251 bs = left;
252
253 r = read(f->fd, b, bs);
254
255 if (r == (int) bs) {
256 left -= bs;
257 continue;
258 } else {
259 td_verror(td, EIO, "pre_read");
260 break;
261 }
262 }
263
ef799a64 264error:
8edd973d 265 td_restore_runstate(td, old_runstate);
b0f65863
JA
266
267 if (did_open)
268 td->io_ops->close_file(td, f);
ef799a64 269
afad68f7 270 free(b);
ef799a64 271 return ret;
afad68f7
ZY
272}
273
a3f001f5 274unsigned long long get_rand_file_size(struct thread_data *td)
9c60ce64 275{
dc873b6f 276 unsigned long long ret, sized;
c3546b53 277 uint64_t frand_max;
1294c3ec 278 unsigned long r;
9c60ce64 279
c3546b53 280 frand_max = rand_max(&td->file_size_state);
d6b72507 281 r = __rand(&td->file_size_state);
54a21917 282 sized = td->o.file_size_high - td->o.file_size_low;
c3546b53 283 ret = (unsigned long long) ((double) sized * (r / (frand_max + 1.0)));
5ec10eaa 284 ret += td->o.file_size_low;
2dc1bbeb 285 ret -= (ret % td->o.rw_min_bs);
9c60ce64
JA
286 return ret;
287}
288
53cdc686
JA
289static int file_size(struct thread_data *td, struct fio_file *f)
290{
291 struct stat st;
292
df9c26b1 293 if (stat(f->file_name, &st) == -1) {
7bb48f84
JA
294 td_verror(td, errno, "fstat");
295 return 1;
296 }
53cdc686 297
7bb48f84 298 f->real_file_size = st.st_size;
53cdc686
JA
299 return 0;
300}
301
302static int bdev_size(struct thread_data *td, struct fio_file *f)
303{
9b836561 304 unsigned long long bytes = 0;
53cdc686
JA
305 int r;
306
df9c26b1
JA
307 if (td->io_ops->open_file(td, f)) {
308 log_err("fio: failed opening blockdev %s for size check\n",
309 f->file_name);
310 return 1;
311 }
312
ecc314ba 313 r = blockdev_size(f, &bytes);
53cdc686 314 if (r) {
e1161c32 315 td_verror(td, r, "blockdev_size");
df9c26b1 316 goto err;
53cdc686
JA
317 }
318
7ab077ab
JA
319 if (!bytes) {
320 log_err("%s: zero sized block device?\n", f->file_name);
df9c26b1 321 goto err;
7ab077ab
JA
322 }
323
53cdc686 324 f->real_file_size = bytes;
22a57ba8 325 td->io_ops->close_file(td, f);
53cdc686 326 return 0;
df9c26b1
JA
327err:
328 td->io_ops->close_file(td, f);
329 return 1;
53cdc686
JA
330}
331
4ccdccd1
JA
332static int char_size(struct thread_data *td, struct fio_file *f)
333{
334#ifdef FIO_HAVE_CHARDEV_SIZE
9b836561 335 unsigned long long bytes = 0;
4ccdccd1
JA
336 int r;
337
338 if (td->io_ops->open_file(td, f)) {
b3ec877c 339 log_err("fio: failed opening chardev %s for size check\n",
4ccdccd1
JA
340 f->file_name);
341 return 1;
342 }
343
ecc314ba 344 r = chardev_size(f, &bytes);
4ccdccd1
JA
345 if (r) {
346 td_verror(td, r, "chardev_size");
347 goto err;
348 }
349
350 if (!bytes) {
351 log_err("%s: zero sized char device?\n", f->file_name);
352 goto err;
353 }
354
355 f->real_file_size = bytes;
356 td->io_ops->close_file(td, f);
357 return 0;
358err:
359 td->io_ops->close_file(td, f);
360 return 1;
361#else
362 f->real_file_size = -1ULL;
363 return 0;
364#endif
365}
366
53cdc686
JA
367static int get_file_size(struct thread_data *td, struct fio_file *f)
368{
369 int ret = 0;
370
d6aed795 371 if (fio_file_size_known(f))
409b3417
JA
372 return 0;
373
7bb48f84
JA
374 if (f->filetype == FIO_TYPE_FILE)
375 ret = file_size(td, f);
686fbd31 376 else if (f->filetype == FIO_TYPE_BLOCK)
53cdc686 377 ret = bdev_size(td, f);
4ccdccd1
JA
378 else if (f->filetype == FIO_TYPE_CHAR)
379 ret = char_size(td, f);
0f34169a
TK
380 else
381 f->real_file_size = -1ULL;
53cdc686 382
79591fa9
TK
383 /*
384 * Leave ->real_file_size with 0 since it could be expectation
385 * of initial setup for regular files.
386 */
a0cb220b 387 if (ret)
53cdc686
JA
388 return ret;
389
0f34169a
TK
390 /*
391 * If ->real_file_size is -1, a conditional for the message
392 * "offset extends end" is always true, but it makes no sense,
393 * so just return the same value here.
394 */
395 if (f->real_file_size == -1ULL) {
396 log_info("%s: failed to get file size of %s\n", td->o.name,
397 f->file_name);
398 return 1;
399 }
400
401 if (td->o.start_offset && f->file_offset == 0)
402 dprint(FD_FILE, "offset of file %s not initialized yet\n",
403 f->file_name);
957c81b9
TK
404 /*
405 * ->file_offset normally hasn't been initialized yet, so this
0f34169a 406 * is basically always false.
957c81b9 407 */
53cdc686 408 if (f->file_offset > f->real_file_size) {
0f2152c1 409 log_err("%s: offset extends end (%llu > %llu)\n", td->o.name,
4e0a8fa2
JA
410 (unsigned long long) f->file_offset,
411 (unsigned long long) f->real_file_size);
53cdc686
JA
412 return 1;
413 }
414
d6aed795 415 fio_file_set_size_known(f);
53cdc686
JA
416 return 0;
417}
418
3baddf24
JA
419static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
420 unsigned long long off,
421 unsigned long long len)
e5b401d4 422{
942a851a 423 int errval = 0, ret = 0;
e5b401d4 424
c8931876
JA
425#ifdef CONFIG_ESX
426 return 0;
427#endif
428
5e0074c2 429 if (len == -1ULL)
3baddf24
JA
430 len = f->io_size;
431 if (off == -1ULL)
432 off = f->file_offset;
ee56ad50 433
0d1cd207
JA
434 if (len == -1ULL || off == -1ULL)
435 return 0;
436
3baddf24
JA
437 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
438 len);
b5af8293 439
942a851a 440 if (td->io_ops->invalidate) {
d9b100fc 441 ret = td->io_ops->invalidate(td, f);
942a851a
JA
442 if (ret < 0)
443 errval = ret;
444 } else if (f->filetype == FIO_TYPE_FILE) {
ecc314ba 445 ret = posix_fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
0b139881 446 if (ret)
942a851a 447 errval = ret;
686fbd31 448 } else if (f->filetype == FIO_TYPE_BLOCK) {
2b9f9141
KR
449 int retry_count = 0;
450
ecc314ba 451 ret = blockdev_invalidate_cache(f);
2b9f9141
KR
452 while (ret < 0 && errno == EAGAIN && retry_count++ < 25) {
453 /*
454 * Linux multipath devices reject ioctl while
455 * the maps are being updated. That window can
456 * last tens of milliseconds; we'll try up to
457 * a quarter of a second.
458 */
459 usleep(10000);
460 ret = blockdev_invalidate_cache(f);
461 }
7e0e25c9 462 if (ret < 0 && errno == EACCES && geteuid()) {
7172cfe8 463 if (!root_warn) {
5ec10eaa
JA
464 log_err("fio: only root may flush block "
465 "devices. Cache flush bypassed!\n");
7172cfe8
JA
466 root_warn = 1;
467 }
7e0e25c9
JA
468 ret = 0;
469 }
942a851a
JA
470 if (ret < 0)
471 errval = errno;
b5605e9d 472 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
e5b401d4
JA
473 ret = 0;
474
dfe11fd1
JA
475 /*
476 * Cache flushing isn't a fatal condition, and we know it will
477 * happen on some platforms where we don't have the proper
478 * function to flush eg block device caches. So just warn and
479 * continue on our way.
480 */
942a851a
JA
481 if (errval)
482 log_info("fio: cache invalidation of %s failed: %s\n", f->file_name, strerror(errval));
e5b401d4 483
dfe11fd1 484 return 0;
3baddf24
JA
485
486}
487
488int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
489{
d6aed795 490 if (!fio_file_open(f))
a5fb461f
JA
491 return 0;
492
5e0074c2 493 return __file_invalidate_cache(td, f, -1ULL, -1ULL);
e5b401d4
JA
494}
495
6977bcd0 496int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
53cdc686 497{
6977bcd0
JA
498 int ret = 0;
499
ee56ad50 500 dprint(FD_FILE, "fd close %s\n", f->file_name);
4906e0b5
JA
501
502 remove_file_hash(f);
503
6977bcd0
JA
504 if (close(f->fd) < 0)
505 ret = errno;
506
b5af8293 507 f->fd = -1;
e6c4d732
JA
508
509 if (f->shadow_fd != -1) {
510 close(f->shadow_fd);
511 f->shadow_fd = -1;
512 }
513
57e54e08 514 f->engine_data = 0;
6977bcd0 515 return ret;
53cdc686
JA
516}
517
1ccc6dc7 518int file_lookup_open(struct fio_file *f, int flags)
53cdc686 519{
29c1349f 520 struct fio_file *__f;
4d4e80f2
JA
521 int from_hash;
522
523 __f = lookup_file_hash(f->file_name);
524 if (__f) {
9efef3c4 525 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
4d4e80f2 526 f->lock = __f->lock;
4d4e80f2
JA
527 from_hash = 1;
528 } else {
9efef3c4 529 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
4d4e80f2
JA
530 from_hash = 0;
531 }
532
9c0f3f32
BC
533#ifdef WIN32
534 flags |= _O_BINARY;
535#endif
536
e8670ef8 537 f->fd = open(f->file_name, flags, 0600);
4d4e80f2
JA
538 return from_hash;
539}
540
e6c4d732
JA
541static int file_close_shadow_fds(struct thread_data *td)
542{
543 struct fio_file *f;
544 int num_closed = 0;
545 unsigned int i;
546
547 for_each_file(td, f, i) {
548 if (f->shadow_fd == -1)
549 continue;
550
551 close(f->shadow_fd);
552 f->shadow_fd = -1;
553 num_closed++;
554 }
555
556 return num_closed;
557}
558
4d4e80f2
JA
559int generic_open_file(struct thread_data *td, struct fio_file *f)
560{
66159828 561 int is_std = 0;
53cdc686 562 int flags = 0;
29c1349f 563 int from_hash = 0;
53cdc686 564
ee56ad50
JA
565 dprint(FD_FILE, "fd open %s\n", f->file_name);
566
66159828
JA
567 if (!strcmp(f->file_name, "-")) {
568 if (td_rw(td)) {
569 log_err("fio: can't read/write to stdin/out\n");
570 return 1;
571 }
572 is_std = 1;
ce98fa66
JA
573
574 /*
575 * move output logging to stderr, if we are writing to stdout
576 */
577 if (td_write(td))
578 f_out = stderr;
66159828
JA
579 }
580
6eaf09d6
SL
581 if (td_trim(td))
582 goto skip_flags;
2dc1bbeb 583 if (td->o.odirect)
2fd233b7 584 flags |= OS_O_DIRECT;
d01612f3
CM
585 if (td->o.oatomic) {
586 if (!FIO_O_ATOMIC) {
587 td_verror(td, EINVAL, "OS does not support atomic IO");
588 return 1;
589 }
590 flags |= OS_O_DIRECT | FIO_O_ATOMIC;
591 }
2dc1bbeb 592 if (td->o.sync_io)
2fd233b7 593 flags |= O_SYNC;
2378826d 594 if (td->o.create_on_open && td->o.allow_create)
814452bd 595 flags |= O_CREAT;
6eaf09d6
SL
596skip_flags:
597 if (f->filetype != FIO_TYPE_FILE)
598 flags |= FIO_O_NOATIME;
53cdc686 599
056f3459 600open_again:
660a1cb5 601 if (td_write(td)) {
17308158
JA
602 if (!read_only)
603 flags |= O_RDWR;
53cdc686 604
2378826d 605 if (f->filetype == FIO_TYPE_FILE && td->o.allow_create)
2fd233b7 606 flags |= O_CREAT;
2fd233b7 607
66159828
JA
608 if (is_std)
609 f->fd = dup(STDOUT_FILENO);
4d4e80f2
JA
610 else
611 from_hash = file_lookup_open(f, flags);
6eaf09d6 612 } else if (td_read(td)) {
4241ea8f 613 if (f->filetype == FIO_TYPE_CHAR && !read_only)
2fd233b7
JA
614 flags |= O_RDWR;
615 else
616 flags |= O_RDONLY;
617
66159828
JA
618 if (is_std)
619 f->fd = dup(STDIN_FILENO);
4d4e80f2
JA
620 else
621 from_hash = file_lookup_open(f, flags);
49cff020
TK
622 } else if (td_trim(td)) {
623 assert(!td_rw(td)); /* should have matched above */
6eaf09d6
SL
624 flags |= O_RDWR;
625 from_hash = file_lookup_open(f, flags);
53cdc686
JA
626 }
627
628 if (f->fd == -1) {
e4e33258 629 char buf[FIO_VERROR_SIZE];
e1161c32
JA
630 int __e = errno;
631
835d9b9e 632 if (__e == EPERM && (flags & FIO_O_NOATIME)) {
5921e80c 633 flags &= ~FIO_O_NOATIME;
056f3459
AC
634 goto open_again;
635 }
e6c4d732
JA
636 if (__e == EMFILE && file_close_shadow_fds(td))
637 goto open_again;
056f3459 638
98ffb8f3 639 snprintf(buf, sizeof(buf), "open(%s)", f->file_name);
e4e33258 640
a93c5f04
JA
641 if (__e == EINVAL && (flags & OS_O_DIRECT)) {
642 log_err("fio: looks like your file system does not " \
643 "support direct=1/buffered=0\n");
644 }
645
e4e33258 646 td_verror(td, __e, buf);
3ce3ad33 647 return 1;
53cdc686
JA
648 }
649
29c1349f
JA
650 if (!from_hash && f->fd != -1) {
651 if (add_file_hash(f)) {
3f0ca9b9 652 int fio_unused ret;
29c1349f
JA
653
654 /*
e6c4d732
JA
655 * Stash away descriptor for later close. This is to
656 * work-around a "feature" on Linux, where a close of
657 * an fd that has been opened for write will trigger
658 * udev to call blkid to check partitions, fs id, etc.
de8f6de9 659 * That pollutes the device cache, which can slow down
e6c4d732 660 * unbuffered accesses.
29c1349f 661 */
e6c4d732
JA
662 if (f->shadow_fd == -1)
663 f->shadow_fd = f->fd;
664 else {
665 /*
666 * OK to ignore, we haven't done anything
667 * with it
668 */
669 ret = generic_close_file(td, f);
670 }
29c1349f
JA
671 goto open_again;
672 }
673 }
4906e0b5 674
53cdc686 675 return 0;
b5af8293
JA
676}
677
79591fa9
TK
678/*
679 * This function i.e. get_file_size() is the default .get_file_size
680 * implementation of majority of I/O engines.
681 */
df9c26b1 682int generic_get_file_size(struct thread_data *td, struct fio_file *f)
21972cde 683{
df9c26b1 684 return get_file_size(td, f);
21972cde
JA
685}
686
7bb48f84
JA
687/*
688 * open/close all files, so that ->real_file_size gets set
689 */
bab3fd58 690static int get_file_sizes(struct thread_data *td)
7bb48f84
JA
691{
692 struct fio_file *f;
693 unsigned int i;
bab3fd58 694 int err = 0;
7bb48f84
JA
695
696 for_each_file(td, f, i) {
08c44a55 697 dprint(FD_FILE, "get file size for %p/%d/%s\n", f, i,
5ec10eaa 698 f->file_name);
9efef3c4 699
99a47c69 700 if (td_io_get_file_size(td, f)) {
40b44f4a
JA
701 if (td->error != ENOENT) {
702 log_err("%s\n", td->verror);
703 err = 1;
3ce3ad33 704 break;
40b44f4a 705 }
541d66d7 706 clear_error(td);
07eb79df 707 }
409b3417 708
79591fa9
TK
709 /*
710 * There are corner cases where we end up with -1 for
711 * ->real_file_size due to unsupported file type, etc.
712 * We then just set to size option value divided by number
713 * of files, similar to the way file ->io_size is set.
714 * stat(2) failure doesn't set ->real_file_size to -1.
715 */
409b3417
JA
716 if (f->real_file_size == -1ULL && td->o.size)
717 f->real_file_size = td->o.size / td->o.nr_files;
7bb48f84 718 }
bab3fd58
JA
719
720 return err;
7bb48f84
JA
721}
722
2e3bd4c2
JA
723struct fio_mount {
724 struct flist_head list;
725 const char *base;
726 char __base[256];
727 unsigned int key;
728};
729
730/*
731 * Get free number of bytes for each file on each unique mount.
732 */
733static unsigned long long get_fs_free_counts(struct thread_data *td)
734{
735 struct flist_head *n, *tmp;
68b0316f 736 unsigned long long ret = 0;
2e3bd4c2
JA
737 struct fio_mount *fm;
738 FLIST_HEAD(list);
739 struct fio_file *f;
740 unsigned int i;
741
742 for_each_file(td, f, i) {
743 struct stat sb;
744 char buf[256];
745
686fbd31 746 if (f->filetype == FIO_TYPE_BLOCK || f->filetype == FIO_TYPE_CHAR) {
4ccdccd1
JA
747 if (f->real_file_size != -1ULL)
748 ret += f->real_file_size;
68b0316f
JA
749 continue;
750 } else if (f->filetype != FIO_TYPE_FILE)
751 continue;
752
da27a4bf
JA
753 buf[255] = '\0';
754 strncpy(buf, f->file_name, 255);
2e3bd4c2
JA
755
756 if (stat(buf, &sb) < 0) {
757 if (errno != ENOENT)
758 break;
759 strcpy(buf, ".");
760 if (stat(buf, &sb) < 0)
761 break;
762 }
763
764 fm = NULL;
765 flist_for_each(n, &list) {
766 fm = flist_entry(n, struct fio_mount, list);
767 if (fm->key == sb.st_dev)
768 break;
769
770 fm = NULL;
771 }
772
773 if (fm)
774 continue;
775
3660ceae
JA
776 fm = calloc(1, sizeof(*fm));
777 strncpy(fm->__base, buf, sizeof(fm->__base) - 1);
2e3bd4c2
JA
778 fm->base = basename(fm->__base);
779 fm->key = sb.st_dev;
780 flist_add(&fm->list, &list);
781 }
782
2e3bd4c2
JA
783 flist_for_each_safe(n, tmp, &list) {
784 unsigned long long sz;
785
786 fm = flist_entry(n, struct fio_mount, list);
787 flist_del(&fm->list);
788
c08ad04c 789 sz = get_fs_free_size(fm->base);
2e3bd4c2
JA
790 if (sz && sz != -1ULL)
791 ret += sz;
792
793 free(fm);
794 }
795
796 return ret;
797}
798
bedc9dc2 799uint64_t get_start_offset(struct thread_data *td, struct fio_file *f)
ce95d651 800{
bedc9dc2
JA
801 struct thread_options *o = &td->o;
802
803 if (o->file_append && f->filetype == FIO_TYPE_FILE)
804 return f->real_file_size;
805
9bbefaa2
JA
806 return td->o.start_offset +
807 td->subjob_number * td->o.offset_increment;
ce95d651
DE
808}
809
7bb48f84
JA
810/*
811 * Open the files and setup files sizes, creating files if necessary.
812 */
53cdc686
JA
813int setup_files(struct thread_data *td)
814{
7bb48f84 815 unsigned long long total_size, extend_size;
de98bd30 816 struct thread_options *o = &td->o;
53cdc686 817 struct fio_file *f;
002fe734 818 unsigned int i, nr_fs_extra = 0;
000b0803 819 int err = 0, need_extend;
e90391eb 820 int old_state;
002fe734
JA
821 const unsigned int bs = td_min_bs(td);
822 uint64_t fs = 0;
53cdc686 823
ee56ad50
JA
824 dprint(FD_FILE, "setup files\n");
825
8edd973d 826 old_state = td_bump_runstate(td, TD_SETTING_UP);
e90391eb 827
de98bd30 828 if (o->read_iolog_file)
25460cf6 829 goto done;
691c8fb0 830
53cdc686 831 /*
79591fa9
TK
832 * Find out physical size of files or devices for this thread,
833 * before we determine I/O size and range of our targets.
834 * If ioengine defines a setup() method, it's responsible for
7bb48f84
JA
835 * opening the files and setting f->real_file_size to indicate
836 * the valid range for that file.
53cdc686
JA
837 */
838 if (td->io_ops->setup)
7bb48f84
JA
839 err = td->io_ops->setup(td);
840 else
bab3fd58 841 err = get_file_sizes(td);
53cdc686 842
f1027063 843 if (err)
e90391eb 844 goto err_out;
f1027063 845
0a7eb121 846 /*
7bb48f84
JA
847 * check sizes. if the files/devices do not exist and the size
848 * isn't passed to fio, abort.
0a7eb121 849 */
7bb48f84
JA
850 total_size = 0;
851 for_each_file(td, f, i) {
49a416bd 852 f->fileno = i;
7bb48f84
JA
853 if (f->real_file_size == -1ULL)
854 total_size = -1ULL;
855 else
856 total_size += f->real_file_size;
857 }
0a7eb121 858
de98bd30 859 if (o->fill_device)
2e3bd4c2
JA
860 td->fill_device_size = get_fs_free_counts(td);
861
7bb48f84
JA
862 /*
863 * device/file sizes are zero and no size given, punt
864 */
de98bd30 865 if ((!total_size || total_size == -1ULL) && !o->size &&
9b87f09b 866 !td_ioengine_flagged(td, FIO_NOIO) && !o->fill_device &&
de98bd30
JA
867 !(o->nr_files && (o->file_size_low || o->file_size_high))) {
868 log_err("%s: you need to specify size=\n", o->name);
e1161c32 869 td_verror(td, EINVAL, "total_file_size");
e90391eb 870 goto err_out;
53cdc686
JA
871 }
872
002fe734
JA
873 /*
874 * Calculate per-file size and potential extra size for the
79591fa9 875 * first files, if needed (i.e. if we don't have a fixed size).
002fe734 876 */
d1e78e6b 877 if (!o->file_size_low && o->nr_files) {
002fe734
JA
878 uint64_t all_fs;
879
880 fs = o->size / o->nr_files;
881 all_fs = fs * o->nr_files;
882
883 if (all_fs < o->size)
884 nr_fs_extra = (o->size - all_fs) / bs;
885 }
886
7bb48f84
JA
887 /*
888 * now file sizes are known, so we can set ->io_size. if size= is
889 * not given, ->io_size is just equal to ->real_file_size. if size
890 * is given, ->io_size is size / nr_files.
891 */
892 extend_size = total_size = 0;
893 need_extend = 0;
894 for_each_file(td, f, i) {
bedc9dc2 895 f->file_offset = get_start_offset(td, f);
bcdedd0a 896
79591fa9
TK
897 /*
898 * Update ->io_size depending on options specified.
899 * ->file_size_low being 0 means filesize option isn't set.
900 * Non zero ->file_size_low equals ->file_size_high means
901 * filesize option is set in a fixed size format.
902 * Non zero ->file_size_low not equals ->file_size_high means
903 * filesize option is set in a range format.
904 */
de98bd30 905 if (!o->file_size_low) {
7bb48f84 906 /*
79591fa9 907 * no file size or range given, file size is equal to
c4aa2d08 908 * total size divided by number of files. If the size
002fe734
JA
909 * doesn't divide nicely with the min blocksize,
910 * make the first files bigger.
7bb48f84 911 */
002fe734
JA
912 f->io_size = fs;
913 if (nr_fs_extra) {
914 nr_fs_extra--;
915 f->io_size += bs;
916 }
917
c4aa2d08
TK
918 /*
919 * We normally don't come here, but if the result is 0,
920 * set it to the real file size. This could be size of
921 * the existing one if it already exists, but otherwise
922 * will be set to 0. A new file won't be created because
923 * ->io_size + ->file_offset equals ->real_file_size.
924 */
925 if (!f->io_size) {
926 if (f->file_offset > f->real_file_size)
927 goto err_offset;
273f8c91 928 f->io_size = f->real_file_size - f->file_offset;
c4aa2d08
TK
929 log_info("fio: forcing file %s size to %llu\n",
930 f->file_name,
931 (unsigned long long)f->io_size);
932 if (!f->io_size)
933 log_info("fio: file %s may be ignored\n",
934 f->file_name);
935 }
de98bd30
JA
936 } else if (f->real_file_size < o->file_size_low ||
937 f->real_file_size > o->file_size_high) {
938 if (f->file_offset > o->file_size_low)
bcdedd0a 939 goto err_offset;
7bb48f84
JA
940 /*
941 * file size given. if it's fixed, use that. if it's a
942 * range, generate a random size in-between.
943 */
de98bd30
JA
944 if (o->file_size_low == o->file_size_high)
945 f->io_size = o->file_size_low - f->file_offset;
946 else {
5ec10eaa
JA
947 f->io_size = get_rand_file_size(td)
948 - f->file_offset;
949 }
65bdb10a 950 } else
bcdedd0a 951 f->io_size = f->real_file_size - f->file_offset;
53cdc686 952
7bb48f84
JA
953 if (f->io_size == -1ULL)
954 total_size = -1ULL;
4d002569 955 else {
e391c704
JA
956 if (o->size_percent) {
957 f->io_size = (f->io_size * o->size_percent) / 100;
958 f->io_size -= (f->io_size % td_min_bs(td));
959 }
7bb48f84 960 total_size += f->io_size;
4d002569 961 }
7bb48f84
JA
962
963 if (f->filetype == FIO_TYPE_FILE &&
bcdedd0a 964 (f->io_size + f->file_offset) > f->real_file_size &&
9b87f09b 965 !td_ioengine_flagged(td, FIO_DISKLESSIO)) {
5fd31680
JA
966 if (!o->create_on_open) {
967 need_extend++;
814452bd 968 extend_size += (f->io_size + f->file_offset);
43558406 969 fio_file_set_extend(f);
5fd31680 970 } else
814452bd 971 f->real_file_size = f->io_size + f->file_offset;
5ec10eaa 972 }
7bb48f84 973 }
53cdc686 974
66347cfa
DE
975 if (td->o.block_error_hist) {
976 int len;
977
978 assert(td->o.nr_files == 1); /* checked in fixup_options */
979 f = td->files[0];
980 len = f->io_size / td->o.bs[DDIR_TRIM];
981 if (len > MAX_NR_BLOCK_INFOS || len <= 0) {
982 log_err("fio: cannot calculate block histogram with "
983 "%d trim blocks, maximum %d\n",
984 len, MAX_NR_BLOCK_INFOS);
985 td_verror(td, EINVAL, "block_error_hist");
986 goto err_out;
987 }
988
989 td->ts.nr_block_infos = len;
8a68c41c 990 for (i = 0; i < len; i++)
66347cfa
DE
991 td->ts.block_infos[i] =
992 BLOCK_INFO(0, BLOCK_STATE_UNINIT);
993 } else
994 td->ts.nr_block_infos = 0;
995
0bc27b0b 996 if (!o->size || (total_size && o->size > total_size))
de98bd30 997 o->size = total_size;
21972cde 998
d1faa06d
JA
999 if (o->size < td_min_bs(td)) {
1000 log_err("fio: blocksize too large for data set\n");
1001 goto err_out;
1002 }
1003
7bb48f84 1004 /*
79591fa9
TK
1005 * See if we need to extend some files, typically needed when our
1006 * target regular files don't exist yet, but our jobs require them
1007 * initially due to read I/Os.
7bb48f84
JA
1008 */
1009 if (need_extend) {
1010 temp_stall_ts = 1;
129fb2d4 1011 if (output_format & FIO_OUTPUT_NORMAL)
420b104a
RE
1012 log_info("%s: Laying out IO file(s) (%u file(s) / %lluMiB)\n",
1013 o->name, need_extend, extend_size >> 20);
7bb48f84
JA
1014
1015 for_each_file(td, f, i) {
5e0074c2 1016 unsigned long long old_len = -1ULL, extend_len = -1ULL;
3baddf24 1017
d6aed795 1018 if (!fio_file_extend(f))
7bb48f84
JA
1019 continue;
1020
409b3417 1021 assert(f->filetype == FIO_TYPE_FILE);
d6aed795 1022 fio_file_clear_extend(f);
de98bd30 1023 if (!o->fill_device) {
5e0074c2 1024 old_len = f->real_file_size;
0b9d69ec
JA
1025 extend_len = f->io_size + f->file_offset -
1026 old_len;
5e0074c2 1027 }
bcdedd0a 1028 f->real_file_size = (f->io_size + f->file_offset);
7bb48f84
JA
1029 err = extend_file(td, f);
1030 if (err)
3baddf24 1031 break;
5e0074c2 1032
3baddf24
JA
1033 err = __file_invalidate_cache(td, f, old_len,
1034 extend_len);
9824f73b
JA
1035
1036 /*
1037 * Shut up static checker
1038 */
1039 if (f->fd != -1)
1040 close(f->fd);
1041
3baddf24
JA
1042 f->fd = -1;
1043 if (err)
7bb48f84
JA
1044 break;
1045 }
1046 temp_stall_ts = 0;
1047 }
1048
1049 if (err)
e90391eb 1050 goto err_out;
7bb48f84 1051
de98bd30
JA
1052 if (!o->zone_size)
1053 o->zone_size = o->size;
7bb48f84 1054
ea966f81
JA
1055 /*
1056 * iolog already set the total io size, if we read back
1057 * stored entries.
1058 */
77731b29 1059 if (!o->read_iolog_file) {
5be9bf09
TK
1060 if (o->io_size)
1061 td->total_io_size = o->io_size * o->loops;
77731b29
JA
1062 else
1063 td->total_io_size = o->size * o->loops;
1064 }
25460cf6
JA
1065
1066done:
de98bd30 1067 if (o->create_only)
25460cf6
JA
1068 td->done = 1;
1069
8edd973d 1070 td_restore_runstate(td, old_state);
7bb48f84 1071 return 0;
bcdedd0a 1072err_offset:
de98bd30 1073 log_err("%s: you need to specify valid offset=\n", o->name);
e90391eb 1074err_out:
8edd973d 1075 td_restore_runstate(td, old_state);
bcdedd0a 1076 return 1;
53cdc686
JA
1077}
1078
afad68f7
ZY
1079int pre_read_files(struct thread_data *td)
1080{
1081 struct fio_file *f;
1082 unsigned int i;
1083
1084 dprint(FD_FILE, "pre_read files\n");
1085
1086 for_each_file(td, f, i) {
1087 pre_read_file(td, f);
1088 }
1089
1090 return 1;
1091}
1092
9c6f6316
JA
1093static int __init_rand_distribution(struct thread_data *td, struct fio_file *f)
1094{
2316296a 1095 unsigned int range_size, seed;
9c6f6316 1096 unsigned long nranges;
42da5c8b 1097 uint64_t fsize;
9c6f6316
JA
1098
1099 range_size = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
42da5c8b 1100 fsize = min(f->real_file_size, f->io_size);
9c6f6316 1101
42da5c8b 1102 nranges = (fsize + range_size - 1) / range_size;
9c6f6316 1103
2316296a 1104 seed = jhash(f->file_name, strlen(f->file_name), 0) * td->thread_number;
8425687e
JA
1105 if (!td->o.rand_repeatable)
1106 seed = td->rand_seeds[4];
1107
9c6f6316 1108 if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
888677a4 1109 zipf_init(&f->zipf, nranges, td->o.zipf_theta.u.f, seed);
56d9fa4b 1110 else if (td->o.random_distribution == FIO_RAND_DIST_PARETO)
888677a4 1111 pareto_init(&f->zipf, nranges, td->o.pareto_h.u.f, seed);
56d9fa4b 1112 else if (td->o.random_distribution == FIO_RAND_DIST_GAUSS)
f88cd222 1113 gauss_init(&f->gauss, nranges, td->o.gauss_dev.u.f, seed);
9c6f6316
JA
1114
1115 return 1;
1116}
1117
1118static int init_rand_distribution(struct thread_data *td)
1119{
1120 struct fio_file *f;
1121 unsigned int i;
1122 int state;
1123
1124 if (td->o.random_distribution == FIO_RAND_DIST_RANDOM)
1125 return 0;
1126
8edd973d
JA
1127 state = td_bump_runstate(td, TD_SETTING_UP);
1128
9c6f6316
JA
1129 for_each_file(td, f, i)
1130 __init_rand_distribution(td, f);
8edd973d
JA
1131
1132 td_restore_runstate(td, state);
9c6f6316
JA
1133
1134 return 1;
1135}
1136
75f90d5f
JA
1137/*
1138 * Check if the number of blocks exceeds the randomness capability of
1139 * the selected generator. Tausworthe is 32-bit, the others are fullly
1140 * 64-bit capable.
1141 */
1142static int check_rand_gen_limits(struct thread_data *td, struct fio_file *f,
1143 uint64_t blocks)
1144{
1145 if (blocks <= FRAND32_MAX)
1146 return 0;
1147 if (td->o.random_generator != FIO_RAND_GEN_TAUSWORTHE)
1148 return 0;
1149
1150 /*
1151 * If the user hasn't specified a random generator, switch
1152 * to tausworthe64 with informational warning. If the user did
1153 * specify one, just warn.
1154 */
1155 log_info("fio: file %s exceeds 32-bit tausworthe random generator.\n",
1156 f->file_name);
1157
1158 if (!fio_option_is_set(&td->o, random_generator)) {
1159 log_info("fio: Switching to tausworthe64. Use the "
1160 "random_generator= option to get rid of this "
4e795a3e 1161 "warning.\n");
75f90d5f
JA
1162 td->o.random_generator = FIO_RAND_GEN_TAUSWORTHE64;
1163 return 0;
1164 }
1165
1166 /*
1167 * Just make this information to avoid breaking scripts.
1168 */
1169 log_info("fio: Use the random_generator= option to switch to lfsr or "
1170 "tausworthe64.\n");
1171 return 0;
1172}
1173
68727076
JA
1174int init_random_map(struct thread_data *td)
1175{
51ede0b1 1176 unsigned long long blocks;
68727076
JA
1177 struct fio_file *f;
1178 unsigned int i;
1179
9c6f6316
JA
1180 if (init_rand_distribution(td))
1181 return 0;
3831a843 1182 if (!td_random(td))
68727076
JA
1183 return 0;
1184
1185 for_each_file(td, f, i) {
42da5c8b 1186 uint64_t fsize = min(f->real_file_size, f->io_size);
38f30c81 1187
42da5c8b 1188 blocks = fsize / (unsigned long long) td->o.rw_min_bs;
53737ae0 1189
75f90d5f 1190 if (check_rand_gen_limits(td, f, blocks))
37fbd7e9 1191 return 1;
37fbd7e9 1192
8055e41d 1193 if (td->o.random_generator == FIO_RAND_GEN_LFSR) {
82af46be
JA
1194 unsigned long seed;
1195
1196 seed = td->rand_seeds[FIO_RAND_BLOCK_OFF];
9c0f3f32 1197
967d1b63
JA
1198 if (!lfsr_init(&f->lfsr, blocks, seed, 0)) {
1199 fio_file_set_lfsr(f);
8055e41d 1200 continue;
967d1b63 1201 }
3831a843 1202 } else if (!td->o.norandommap) {
7ebd796f 1203 f->io_axmap = axmap_new(blocks);
967d1b63
JA
1204 if (f->io_axmap) {
1205 fio_file_set_axmap(f);
8055e41d 1206 continue;
967d1b63 1207 }
1cad7121
JA
1208 } else if (td->o.norandommap)
1209 continue;
ceadd59e 1210
2b386d25 1211 if (!td->o.softrandommap) {
5ec10eaa
JA
1212 log_err("fio: failed allocating random map. If running"
1213 " a large number of jobs, try the 'norandommap'"
2b386d25
JA
1214 " option or set 'softrandommap'. Or give"
1215 " a larger --alloc-size to fio.\n");
68727076
JA
1216 return 1;
1217 }
303032ae
JA
1218
1219 log_info("fio: file %s failed allocating random map. Running "
1220 "job without.\n", f->file_name);
68727076
JA
1221 }
1222
1223 return 0;
1224}
1225
53cdc686
JA
1226void close_files(struct thread_data *td)
1227{
0ab8db89 1228 struct fio_file *f;
af52b345 1229 unsigned int i;
53cdc686 1230
2be3eec3
JA
1231 for_each_file(td, f, i) {
1232 if (fio_file_open(f))
1233 td_io_close_file(td, f);
1234 }
24ffd2c2
JA
1235}
1236
1237void close_and_free_files(struct thread_data *td)
1238{
1239 struct fio_file *f;
1240 unsigned int i;
1241
ee56ad50
JA
1242 dprint(FD_FILE, "close files\n");
1243
0ab8db89 1244 for_each_file(td, f, i) {
38ef9c90
CF
1245 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
1246 dprint(FD_FILE, "free unlink %s\n", f->file_name);
1247 td_io_unlink_file(td, f);
1248 }
1249
22a57ba8
JA
1250 if (fio_file_open(f))
1251 td_io_close_file(td, f);
1252
b9fbcf21 1253 remove_file_hash(f);
b3dc7f07 1254
b5f4d8ba
JA
1255 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
1256 dprint(FD_FILE, "free unlink %s\n", f->file_name);
38ef9c90 1257 td_io_unlink_file(td, f);
b5f4d8ba
JA
1258 }
1259
f17c4392 1260 sfree(f->file_name);
fa1da865 1261 f->file_name = NULL;
967d1b63
JA
1262 if (fio_file_axmap(f)) {
1263 axmap_free(f->io_axmap);
1264 f->io_axmap = NULL;
1265 }
78d99e6a 1266 sfree(f);
53cdc686 1267 }
b4a6a59a 1268
2dc1bbeb 1269 td->o.filename = NULL;
cade3ef4 1270 free(td->files);
d7df1d13 1271 free(td->file_locks);
9efef3c4 1272 td->files_index = 0;
b4a6a59a 1273 td->files = NULL;
d7df1d13 1274 td->file_locks = NULL;
27ddbfa0 1275 td->o.file_lock_mode = FILE_LOCK_NONE;
2dc1bbeb 1276 td->o.nr_files = 0;
53cdc686 1277}
af52b345 1278
e3bab463 1279static void get_file_type(struct fio_file *f)
af52b345
JA
1280{
1281 struct stat sb;
1282
66159828
JA
1283 if (!strcmp(f->file_name, "-"))
1284 f->filetype = FIO_TYPE_PIPE;
1285 else
1286 f->filetype = FIO_TYPE_FILE;
af52b345 1287
d5b78f5a 1288#ifdef WIN32
3892182a
BC
1289 /* \\.\ is the device namespace in Windows, where every file is
1290 * a block device */
1291 if (strncmp(f->file_name, "\\\\.\\", 4) == 0)
686fbd31 1292 f->filetype = FIO_TYPE_BLOCK;
d5b78f5a 1293#endif
3892182a 1294
b30d395e 1295 if (!stat(f->file_name, &sb)) {
3892182a 1296 if (S_ISBLK(sb.st_mode))
686fbd31 1297 f->filetype = FIO_TYPE_BLOCK;
af52b345
JA
1298 else if (S_ISCHR(sb.st_mode))
1299 f->filetype = FIO_TYPE_CHAR;
b5605e9d
JA
1300 else if (S_ISFIFO(sb.st_mode))
1301 f->filetype = FIO_TYPE_PIPE;
af52b345
JA
1302 }
1303}
1304
1b2a83dc 1305static bool __is_already_allocated(const char *fname, bool set)
190b8f0c 1306{
90426237 1307 struct flist_head *entry;
1b2a83dc 1308 bool ret;
bcbfeefa 1309
1b2a83dc
JA
1310 ret = file_bloom_exists(fname, set);
1311 if (!ret)
1312 return ret;
90426237
JA
1313
1314 flist_for_each(entry, &filename_list) {
04d6530f 1315 struct file_name *fn;
90426237 1316
04d6530f
JA
1317 fn = flist_entry(entry, struct file_name, list);
1318
1319 if (!strcmp(fn->filename, fname))
1320 return true;
90426237
JA
1321 }
1322
04d6530f 1323 return false;
bcbfeefa
CE
1324}
1325
04d6530f 1326static bool is_already_allocated(const char *fname)
bcbfeefa 1327{
04d6530f 1328 bool ret;
bcbfeefa 1329
90426237 1330 fio_file_hash_lock();
1b2a83dc 1331 ret = __is_already_allocated(fname, false);
90426237 1332 fio_file_hash_unlock();
04d6530f 1333
90426237
JA
1334 return ret;
1335}
bcbfeefa 1336
90426237
JA
1337static void set_already_allocated(const char *fname)
1338{
1339 struct file_name *fn;
1340
1341 fn = malloc(sizeof(struct file_name));
1342 fn->filename = strdup(fname);
1343
1344 fio_file_hash_lock();
1b2a83dc 1345 if (!__is_already_allocated(fname, true)) {
90426237
JA
1346 flist_add_tail(&fn->list, &filename_list);
1347 fn = NULL;
bcbfeefa 1348 }
90426237 1349 fio_file_hash_unlock();
bcbfeefa 1350
90426237
JA
1351 if (fn) {
1352 free(fn->filename);
1353 free(fn);
1354 }
bcbfeefa
CE
1355}
1356
190b8f0c
CF
1357static void free_already_allocated(void)
1358{
bcbfeefa
CE
1359 struct flist_head *entry, *tmp;
1360 struct file_name *fn;
1361
90426237
JA
1362 if (flist_empty(&filename_list))
1363 return;
1364
1365 fio_file_hash_lock();
1366 flist_for_each_safe(entry, tmp, &filename_list) {
1367 fn = flist_entry(entry, struct file_name, list);
1368 free(fn->filename);
1369 flist_del(&fn->list);
1370 free(fn);
bcbfeefa 1371 }
90426237
JA
1372
1373 fio_file_hash_unlock();
bcbfeefa
CE
1374}
1375
7b5cb700
JA
1376static struct fio_file *alloc_new_file(struct thread_data *td)
1377{
1378 struct fio_file *f;
1379
1380 f = smalloc(sizeof(*f));
1381 if (!f) {
7b5cb700
JA
1382 assert(0);
1383 return NULL;
1384 }
1385
1386 f->fd = -1;
1387 f->shadow_fd = -1;
1388 fio_file_reset(td, f);
1389 return f;
1390}
1391
04d6530f
JA
1392bool exists_and_not_regfile(const char *filename)
1393{
1394 struct stat sb;
1395
1396 if (lstat(filename, &sb) == -1)
1397 return false;
1398
1399#ifndef WIN32 /* NOT Windows */
1400 if (S_ISREG(sb.st_mode))
1401 return false;
1402#else
1403 /* \\.\ is the device namespace in Windows, where every file
1404 * is a device node */
1405 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
1406 return false;
1407#endif
1408
1409 return true;
1410}
1411
5903e7b7 1412int add_file(struct thread_data *td, const char *fname, int numjob, int inc)
af52b345 1413{
7b4e4fe5 1414 int cur_files = td->files_index;
bd0ee748 1415 char file_name[PATH_MAX];
af52b345 1416 struct fio_file *f;
bd0ee748 1417 int len = 0;
af52b345 1418
ee56ad50
JA
1419 dprint(FD_FILE, "add file %s\n", fname);
1420
bcbfeefa 1421 if (td->o.directory)
922a5be8
JA
1422 len = set_name_idx(file_name, PATH_MAX, td->o.directory, numjob,
1423 td->o.unique_filename);
bcbfeefa
CE
1424
1425 sprintf(file_name + len, "%s", fname);
1426
1427 /* clean cloned siblings using existing files */
04d6530f
JA
1428 if (numjob && is_already_allocated(file_name) &&
1429 !exists_and_not_regfile(fname))
bcbfeefa
CE
1430 return 0;
1431
7b5cb700 1432 f = alloc_new_file(td);
bd0ee748 1433
fc99bc0d 1434 if (td->files_size <= td->files_index) {
1983e327 1435 unsigned int new_size = td->o.nr_files + 1;
126d65c6 1436
fc99bc0d
JA
1437 dprint(FD_FILE, "resize file array to %d files\n", new_size);
1438
1439 td->files = realloc(td->files, new_size * sizeof(f));
d537c08b
JM
1440 if (td->files == NULL) {
1441 log_err("fio: realloc OOM\n");
1442 assert(0);
1443 }
d7df1d13
JA
1444 if (td->o.file_lock_mode != FILE_LOCK_NONE) {
1445 td->file_locks = realloc(td->file_locks, new_size);
1446 if (!td->file_locks) {
1447 log_err("fio: realloc OOM\n");
1448 assert(0);
1449 }
1450 td->file_locks[cur_files] = FILE_LOCK_NONE;
1451 }
fc99bc0d
JA
1452 td->files_size = new_size;
1453 }
8bb7679e 1454 td->files[cur_files] = f;
89ac1d48 1455 f->fileno = cur_files;
126d65c6 1456
07eb79df
JA
1457 /*
1458 * init function, io engine may not be loaded yet
1459 */
9b87f09b 1460 if (td->io_ops && td_ioengine_flagged(td, FIO_DISKLESSIO))
07eb79df
JA
1461 f->real_file_size = -1ULL;
1462
f17c4392 1463 f->file_name = smalloc_strdup(file_name);
81b3c86f 1464 if (!f->file_name)
c48c0be7 1465 assert(0);
0b9d69ec 1466
e3bab463 1467 get_file_type(f);
af52b345 1468
4d4e80f2
JA
1469 switch (td->o.file_lock_mode) {
1470 case FILE_LOCK_NONE:
1471 break;
1472 case FILE_LOCK_READWRITE:
d7df1d13 1473 f->rwlock = fio_rwlock_init();
4d4e80f2
JA
1474 break;
1475 case FILE_LOCK_EXCLUSIVE:
521da527 1476 f->lock = fio_mutex_init(FIO_MUTEX_UNLOCKED);
4d4e80f2
JA
1477 break;
1478 default:
1479 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
1480 assert(0);
1481 }
29c1349f 1482
7b4e4fe5 1483 td->files_index++;
1549441c
JA
1484 if (f->filetype == FIO_TYPE_FILE)
1485 td->nr_normal_files++;
f29b25a3 1486
bcbfeefa
CE
1487 set_already_allocated(file_name);
1488
5903e7b7
JA
1489 if (inc)
1490 td->o.nr_files++;
1491
5ec10eaa
JA
1492 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
1493 cur_files);
9efef3c4 1494
f29b25a3 1495 return cur_files;
af52b345 1496}
0ad920e7 1497
49ffb4a2
JA
1498int add_file_exclusive(struct thread_data *td, const char *fname)
1499{
1500 struct fio_file *f;
1501 unsigned int i;
1502
1503 for_each_file(td, f, i) {
1504 if (!strcmp(f->file_name, fname))
1505 return i;
1506 }
1507
5903e7b7 1508 return add_file(td, fname, 0, 1);
49ffb4a2
JA
1509}
1510
0ad920e7
JA
1511void get_file(struct fio_file *f)
1512{
8172fe97 1513 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
d6aed795 1514 assert(fio_file_open(f));
0ad920e7
JA
1515 f->references++;
1516}
1517
6977bcd0 1518int put_file(struct thread_data *td, struct fio_file *f)
0ad920e7 1519{
98e1ac4e 1520 int f_ret = 0, ret = 0;
6977bcd0 1521
8172fe97 1522 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
ee56ad50 1523
22a57ba8
JA
1524 if (!fio_file_open(f)) {
1525 assert(f->fd == -1);
6977bcd0 1526 return 0;
22a57ba8 1527 }
0ad920e7
JA
1528
1529 assert(f->references);
1530 if (--f->references)
6977bcd0 1531 return 0;
0ad920e7 1532
71b84caa 1533 if (should_fsync(td) && td->o.fsync_on_close) {
98e1ac4e 1534 f_ret = fsync(f->fd);
71b84caa
JA
1535 if (f_ret < 0)
1536 f_ret = errno;
1537 }
ebb1415f 1538
0ad920e7 1539 if (td->io_ops->close_file)
6977bcd0 1540 ret = td->io_ops->close_file(td, f);
1020a139 1541
98e1ac4e 1542 if (!ret)
a5fb461f 1543 ret = f_ret;
98e1ac4e 1544
0ad920e7 1545 td->nr_open_files--;
d6aed795 1546 fio_file_clear_open(f);
22a57ba8 1547 assert(f->fd == -1);
6977bcd0 1548 return ret;
0ad920e7 1549}
bbf6b540 1550
4d4e80f2 1551void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
b2bd2bd9 1552{
4d4e80f2
JA
1553 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1554 return;
29c1349f 1555
4d4e80f2
JA
1556 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
1557 if (ddir == DDIR_READ)
d7df1d13 1558 fio_rwlock_read(f->rwlock);
4d4e80f2 1559 else
d7df1d13 1560 fio_rwlock_write(f->rwlock);
4d4e80f2
JA
1561 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1562 fio_mutex_down(f->lock);
1563
d7df1d13 1564 td->file_locks[f->fileno] = td->o.file_lock_mode;
b2bd2bd9
JA
1565}
1566
4d4e80f2 1567void unlock_file(struct thread_data *td, struct fio_file *f)
b2bd2bd9 1568{
4d4e80f2
JA
1569 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1570 return;
4d4e80f2 1571
d7df1d13
JA
1572 if (td->o.file_lock_mode == FILE_LOCK_READWRITE)
1573 fio_rwlock_unlock(f->rwlock);
1574 else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
4d4e80f2 1575 fio_mutex_up(f->lock);
d7df1d13
JA
1576
1577 td->file_locks[f->fileno] = FILE_LOCK_NONE;
b2bd2bd9
JA
1578}
1579
4d4e80f2
JA
1580void unlock_file_all(struct thread_data *td, struct fio_file *f)
1581{
f2a2803a 1582 if (td->o.file_lock_mode == FILE_LOCK_NONE || !td->file_locks)
27ddbfa0 1583 return;
d7df1d13
JA
1584 if (td->file_locks[f->fileno] != FILE_LOCK_NONE)
1585 unlock_file(td, f);
4d4e80f2
JA
1586}
1587
bbf6b540
JA
1588static int recurse_dir(struct thread_data *td, const char *dirname)
1589{
1590 struct dirent *dir;
1591 int ret = 0;
1592 DIR *D;
1593
1594 D = opendir(dirname);
1595 if (!D) {
0ddb270c
JA
1596 char buf[FIO_VERROR_SIZE];
1597
98ffb8f3 1598 snprintf(buf, FIO_VERROR_SIZE, "opendir(%s)", dirname);
0ddb270c 1599 td_verror(td, errno, buf);
bbf6b540
JA
1600 return 1;
1601 }
1602
1603 while ((dir = readdir(D)) != NULL) {
1604 char full_path[PATH_MAX];
1605 struct stat sb;
1606
e85b2b83
JA
1607 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
1608 continue;
96d32d51 1609
b9fd788f 1610 sprintf(full_path, "%s%s%s", dirname, FIO_OS_PATH_SEPARATOR, dir->d_name);
bbf6b540
JA
1611
1612 if (lstat(full_path, &sb) == -1) {
1613 if (errno != ENOENT) {
1614 td_verror(td, errno, "stat");
68ace9e0
JA
1615 ret = 1;
1616 break;
bbf6b540
JA
1617 }
1618 }
1619
1620 if (S_ISREG(sb.st_mode)) {
5903e7b7 1621 add_file(td, full_path, 0, 1);
bbf6b540
JA
1622 continue;
1623 }
0ddb270c
JA
1624 if (!S_ISDIR(sb.st_mode))
1625 continue;
bbf6b540 1626
5ec10eaa
JA
1627 ret = recurse_dir(td, full_path);
1628 if (ret)
bbf6b540
JA
1629 break;
1630 }
1631
1632 closedir(D);
1633 return ret;
1634}
1635
1636int add_dir_files(struct thread_data *td, const char *path)
1637{
0ddb270c
JA
1638 int ret = recurse_dir(td, path);
1639
1640 if (!ret)
1641 log_info("fio: opendir added %d files\n", td->o.nr_files);
1642
1643 return ret;
bbf6b540 1644}
cade3ef4
JA
1645
1646void dup_files(struct thread_data *td, struct thread_data *org)
1647{
1648 struct fio_file *f;
1649 unsigned int i;
9efef3c4
JA
1650
1651 dprint(FD_FILE, "dup files: %d\n", org->files_index);
cade3ef4
JA
1652
1653 if (!org->files)
1654 return;
1655
9efef3c4 1656 td->files = malloc(org->files_index * sizeof(f));
cade3ef4 1657
d7df1d13
JA
1658 if (td->o.file_lock_mode != FILE_LOCK_NONE)
1659 td->file_locks = malloc(org->files_index);
1660
9efef3c4 1661 for_each_file(org, f, i) {
b0fe421a
JA
1662 struct fio_file *__f;
1663
7b5cb700 1664 __f = alloc_new_file(td);
0b9d69ec 1665
bc3456fa 1666 if (f->file_name) {
f17c4392 1667 __f->file_name = smalloc_strdup(f->file_name);
81b3c86f 1668 if (!__f->file_name)
c48c0be7 1669 assert(0);
0b9d69ec 1670
bc3456fa
AC
1671 __f->filetype = f->filetype;
1672 }
b0fe421a 1673
67ad9242
JA
1674 if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1675 __f->lock = f->lock;
1676 else if (td->o.file_lock_mode == FILE_LOCK_READWRITE)
1677 __f->rwlock = f->rwlock;
1678
b0fe421a 1679 td->files[i] = __f;
cade3ef4
JA
1680 }
1681}
f29b25a3
JA
1682
1683/*
1684 * Returns the index that matches the filename, or -1 if not there
1685 */
1686int get_fileno(struct thread_data *td, const char *fname)
1687{
1688 struct fio_file *f;
1689 unsigned int i;
1690
1691 for_each_file(td, f, i)
1692 if (!strcmp(f->file_name, fname))
1693 return i;
1694
1695 return -1;
1696}
1697
1698/*
1699 * For log usage, where we add/open/close files automatically
1700 */
1701void free_release_files(struct thread_data *td)
1702{
1703 close_files(td);
66ee4002
JA
1704 td->o.nr_files = 0;
1705 td->o.open_files = 0;
f29b25a3
JA
1706 td->files_index = 0;
1707 td->nr_normal_files = 0;
1708}
33c48814
JA
1709
1710void fio_file_reset(struct thread_data *td, struct fio_file *f)
1711{
f1dfb668
JA
1712 int i;
1713
1714 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1715 f->last_pos[i] = f->file_offset;
1716 f->last_start[i] = -1ULL;
1717 }
1718
967d1b63 1719 if (fio_file_axmap(f))
33c48814 1720 axmap_reset(f->io_axmap);
967d1b63 1721 else if (fio_file_lfsr(f))
33c48814
JA
1722 lfsr_reset(&f->lfsr, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
1723}
002fe734 1724
747b3105 1725bool fio_files_done(struct thread_data *td)
002fe734
JA
1726{
1727 struct fio_file *f;
1728 unsigned int i;
1729
1730 for_each_file(td, f, i)
1731 if (!fio_file_done(f))
747b3105 1732 return false;
002fe734 1733
747b3105 1734 return true;
002fe734 1735}
bcbfeefa
CE
1736
1737/* free memory used in initialization phase only */
190b8f0c
CF
1738void filesetup_mem_free(void)
1739{
bcbfeefa
CE
1740 free_already_allocated();
1741}