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