blob: 612e79474dc4b43c0707d6a43dccf3d98a2f9e8f [file] [log] [blame]
Jens Axboe53cdc682006-10-18 11:50:58 +02001#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <assert.h>
Jens Axboebbf6b542007-03-13 15:28:55 +01005#include <dirent.h>
YAMAMOTO Takashid74ac842010-06-09 09:44:53 +02006#include <libgen.h>
Jens Axboe53cdc682006-10-18 11:50:58 +02007#include <sys/stat.h>
8#include <sys/mman.h>
Jens Axboebbf6b542007-03-13 15:28:55 +01009#include <sys/types.h>
Jens Axboe53cdc682006-10-18 11:50:58 +020010
11#include "fio.h"
Jens Axboef17c4392008-03-01 18:40:46 +010012#include "smalloc.h"
Jens Axboe4906e0b2008-03-01 18:59:51 +010013#include "filehash.h"
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -080014#include "options.h"
Bruce Cranecc314b2011-01-04 10:59:30 +010015#include "os/os.h"
Jens Axboe23162962012-11-07 19:47:47 +010016#include "hash.h"
Jens Axboe7ebd7962012-11-28 21:24:46 +010017#include "lib/axmap.h"
Jens Axboe53cdc682006-10-18 11:50:58 +020018
Jens Axboe97ac9922013-01-24 15:00:25 -070019#ifdef CONFIG_LINUX_FALLOCATE
Eric Gourioua596f042011-06-17 09:11:45 +020020#include <linux/falloc.h>
21#endif
22
Jens Axboe7172cfe2007-07-23 14:36:00 +020023static int root_warn;
24
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -080025static FLIST_HEAD(filename_list);
26
Elliott Hugheseda3a602017-05-19 18:53:02 -070027/*
28 * List entry for filename_list
29 */
30struct file_name {
31 struct flist_head list;
32 char *filename;
33};
34
Jens Axboec592b9f2009-06-03 09:29:28 +020035static inline void clear_error(struct thread_data *td)
36{
37 td->error = 0;
38 td->verror[0] = '\0';
39}
40
Jens Axboe3baddf22008-04-04 11:10:30 +020041/*
42 * Leaves f->fd open on success, caller must close
43 */
Jens Axboe7bb48f82007-03-27 15:30:28 +020044static int extend_file(struct thread_data *td, struct fio_file *f)
Jens Axboe25205e92006-10-19 20:50:14 +020045{
Jens Axboeea443652007-03-29 14:52:13 +020046 int r, new_layout = 0, unlink_file = 0, flags;
Jens Axboe25205e92006-10-19 20:50:14 +020047 unsigned long long left;
48 unsigned int bs;
Jens Axboef3e1eb22014-04-11 11:28:54 -060049 char *b = NULL;
Jens Axboeb2a15192006-10-18 14:10:42 +020050
Jens Axboe4241ea82007-09-12 08:18:36 +020051 if (read_only) {
52 log_err("fio: refusing extend of file due to read-only\n");
53 return 0;
54 }
55
Jens Axboe507a7022007-03-27 15:52:46 +020056 /*
57 * check if we need to lay the file out complete again. fio
58 * does that for operations involving reads, or for writes
59 * where overwrite is set
60 */
Jens Axboe1417dae2014-03-20 09:33:13 -060061 if (td_read(td) ||
62 (td_write(td) && td->o.overwrite && !td->o.file_append) ||
Elliott Hugheseda3a602017-05-19 18:53:02 -070063 (td_write(td) && td_ioengine_flagged(td, FIO_NOEXTEND)))
Jens Axboe507a7022007-03-27 15:52:46 +020064 new_layout = 1;
Jens Axboe1417dae2014-03-20 09:33:13 -060065 if (td_write(td) && !td->o.overwrite && !td->o.file_append)
Jens Axboeea443652007-03-29 14:52:13 +020066 unlink_file = 1;
Jens Axboe507a7022007-03-27 15:52:46 +020067
Jens Axboe6ae1f572008-02-21 10:20:00 +010068 if (unlink_file || new_layout) {
Elliott Hugheseda3a602017-05-19 18:53:02 -070069 int ret;
70
Jens Axboebd199f22008-03-26 09:57:18 +010071 dprint(FD_FILE, "layout unlink %s\n", f->file_name);
Elliott Hugheseda3a602017-05-19 18:53:02 -070072
73 ret = td_io_unlink_file(td, f);
74 if (ret != 0 && ret != ENOENT) {
Jens Axboe7bb48f82007-03-27 15:30:28 +020075 td_verror(td, errno, "unlink");
76 return 1;
77 }
78 }
79
Elliott Hugheseda3a602017-05-19 18:53:02 -070080 flags = O_WRONLY;
81 if (td->o.allow_create)
82 flags |= O_CREAT;
Jens Axboe507a7022007-03-27 15:52:46 +020083 if (new_layout)
84 flags |= O_TRUNC;
85
Bruce Cran9c0f3f32014-04-28 15:54:43 -060086#ifdef WIN32
87 flags |= _O_BINARY;
88#endif
89
Jens Axboeee56ad52008-02-01 10:30:20 +010090 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
Jens Axboe507a7022007-03-27 15:52:46 +020091 f->fd = open(f->file_name, flags, 0644);
Jens Axboe53cdc682006-10-18 11:50:58 +020092 if (f->fd < 0) {
Elliott Hugheseda3a602017-05-19 18:53:02 -070093 int err = errno;
94
95 if (err == ENOENT && !td->o.allow_create)
96 log_err("fio: file creation disallowed by "
97 "allow_file_create=0\n");
98 else
99 td_verror(td, err, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +0200100 return 1;
101 }
102
Jens Axboe97ac9922013-01-24 15:00:25 -0700103#ifdef CONFIG_POSIX_FALLOCATE
Eric Gourioua596f042011-06-17 09:11:45 +0200104 if (!td->o.fill_device) {
105 switch (td->o.fallocate_mode) {
106 case FIO_FALLOCATE_NONE:
107 break;
108 case FIO_FALLOCATE_POSIX:
109 dprint(FD_FILE, "posix_fallocate file %s size %llu\n",
Jens Axboe4b91ee82013-02-25 10:18:33 +0100110 f->file_name,
111 (unsigned long long) f->real_file_size);
Jens Axboe7bc8c2c2010-01-28 11:31:31 +0100112
Eric Gourioua596f042011-06-17 09:11:45 +0200113 r = posix_fallocate(f->fd, 0, f->real_file_size);
114 if (r > 0) {
115 log_err("fio: posix_fallocate fails: %s\n",
116 strerror(r));
117 }
118 break;
Jens Axboe97ac9922013-01-24 15:00:25 -0700119#ifdef CONFIG_LINUX_FALLOCATE
Eric Gourioua596f042011-06-17 09:11:45 +0200120 case FIO_FALLOCATE_KEEP_SIZE:
121 dprint(FD_FILE,
122 "fallocate(FALLOC_FL_KEEP_SIZE) "
Jens Axboe4b91ee82013-02-25 10:18:33 +0100123 "file %s size %llu\n", f->file_name,
124 (unsigned long long) f->real_file_size);
Eric Gourioua596f042011-06-17 09:11:45 +0200125
126 r = fallocate(f->fd, FALLOC_FL_KEEP_SIZE, 0,
127 f->real_file_size);
Jens Axboe888677a2013-04-10 22:19:46 +0200128 if (r != 0)
Eric Gourioua596f042011-06-17 09:11:45 +0200129 td_verror(td, errno, "fallocate");
Jens Axboe888677a2013-04-10 22:19:46 +0200130
Eric Gourioua596f042011-06-17 09:11:45 +0200131 break;
Jens Axboe97ac9922013-01-24 15:00:25 -0700132#endif /* CONFIG_LINUX_FALLOCATE */
Eric Gourioua596f042011-06-17 09:11:45 +0200133 default:
134 log_err("fio: unknown fallocate mode: %d\n",
135 td->o.fallocate_mode);
136 assert(0);
Jens Axboe7bc8c2c2010-01-28 11:31:31 +0100137 }
138 }
Jens Axboe97ac9922013-01-24 15:00:25 -0700139#endif /* CONFIG_POSIX_FALLOCATE */
Bruce Cran9b836562011-01-08 19:49:54 +0100140
Elliott Hugheseda3a602017-05-19 18:53:02 -0700141 /*
142 * If our jobs don't require regular files initially, we're done.
143 */
Shawn Lewisfc74ac12008-01-11 09:45:11 +0100144 if (!new_layout)
145 goto done;
146
Jens Axboe5e0074c2009-06-02 21:40:09 +0200147 /*
148 * The size will be -1ULL when fill_device is used, so don't truncate
149 * or fallocate this file, just write it
150 */
151 if (!td->o.fill_device) {
152 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
Jens Axboe4b91ee82013-02-25 10:18:33 +0100153 (unsigned long long) f->real_file_size);
Jens Axboe5e0074c2009-06-02 21:40:09 +0200154 if (ftruncate(f->fd, f->real_file_size) == -1) {
John3cd4c662013-12-29 19:20:35 -0700155 if (errno != EFBIG) {
156 td_verror(td, errno, "ftruncate");
157 goto err;
158 }
Jens Axboe5e0074c2009-06-02 21:40:09 +0200159 }
Jens Axboe5e0074c2009-06-02 21:40:09 +0200160 }
Jens Axboe40f82982006-10-25 11:21:05 +0200161
Jens Axboe7bb48f82007-03-27 15:30:28 +0200162 left = f->real_file_size;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700163 bs = td->o.max_bs[DDIR_WRITE];
164 if (bs > left)
165 bs = left;
166
167 b = malloc(bs);
168 if (!b) {
169 td_verror(td, errno, "malloc");
170 goto err;
171 }
172
Jens Axboe53cdc682006-10-18 11:50:58 +0200173 while (left && !td->terminate) {
Jens Axboe53cdc682006-10-18 11:50:58 +0200174 if (bs > left)
175 bs = left;
176
Jens Axboecc86c392013-05-03 15:12:33 +0200177 fill_io_buffer(td, b, bs, bs);
178
Jens Axboe53cdc682006-10-18 11:50:58 +0200179 r = write(f->fd, b, bs);
180
Jens Axboe5e0074c2009-06-02 21:40:09 +0200181 if (r > 0) {
182 left -= r;
Jens Axboe53cdc682006-10-18 11:50:58 +0200183 continue;
184 } else {
Jens Axboe5e0074c2009-06-02 21:40:09 +0200185 if (r < 0) {
186 int __e = errno;
187
188 if (__e == ENOSPC) {
189 if (td->o.fill_device)
190 break;
191 log_info("fio: ENOSPC on laying out "
192 "file, stopping\n");
193 break;
194 }
Jens Axboee1161c32007-02-22 19:36:48 +0100195 td_verror(td, errno, "write");
Jens Axboe5e0074c2009-06-02 21:40:09 +0200196 } else
Jens Axboee1161c32007-02-22 19:36:48 +0100197 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +0200198
199 break;
200 }
201 }
202
Jens Axboeffdfabd2008-03-26 09:18:14 +0100203 if (td->terminate) {
204 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
Castor Fu9187a262014-08-19 09:28:53 -0700205 td_io_unlink_file(td, f);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100206 } else if (td->o.create_fsync) {
Jens Axboe98e1ac42008-03-06 11:56:48 +0100207 if (fsync(f->fd) < 0) {
208 td_verror(td, errno, "fsync");
209 goto err;
210 }
211 }
Jens Axboe0d1cd202009-06-05 22:11:52 +0200212 if (td->o.fill_device && !td_write(td)) {
Jens Axboed6aed792009-06-03 08:41:15 +0200213 fio_file_clear_size_known(f);
Jens Axboe5e0074c2009-06-02 21:40:09 +0200214 if (td_io_get_file_size(td, f))
215 goto err;
216 if (f->io_size > f->real_file_size)
217 f->io_size = f->real_file_size;
218 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200219
220 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200221done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200222 return 0;
223err:
224 close(f->fd);
225 f->fd = -1;
Jens Axboef3e1eb22014-04-11 11:28:54 -0600226 if (b)
227 free(b);
Jens Axboe53cdc682006-10-18 11:50:58 +0200228 return 1;
229}
230
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200231static int pre_read_file(struct thread_data *td, struct fio_file *f)
232{
Jens Axboeef799a62014-04-01 17:01:30 -0600233 int ret = 0, r, did_open = 0, old_runstate;
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200234 unsigned long long left;
235 unsigned int bs;
236 char *b;
237
Elliott Hugheseda3a602017-05-19 18:53:02 -0700238 if (td_ioengine_flagged(td, FIO_PIPEIO) ||
239 td_ioengine_flagged(td, FIO_NOIO))
240 return 0;
241
242 if (f->filetype == FIO_TYPE_CHAR)
Jens Axboe9c0d2242009-07-01 12:26:28 +0200243 return 0;
244
Jens Axboed6aed792009-06-03 08:41:15 +0200245 if (!fio_file_open(f)) {
Jens Axboeb0f65862009-05-20 11:52:15 +0200246 if (td->io_ops->open_file(td, f)) {
247 log_err("fio: cannot pre-read, failed to open file\n");
248 return 1;
249 }
250 did_open = 1;
251 }
252
Jens Axboe8edd9732014-03-01 08:24:03 -0700253 old_runstate = td_bump_runstate(td, TD_PRE_READING);
Jens Axboeb0f65862009-05-20 11:52:15 +0200254
Elliott Hugheseda3a602017-05-19 18:53:02 -0700255 left = f->io_size;
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200256 bs = td->o.max_bs[DDIR_READ];
Elliott Hugheseda3a602017-05-19 18:53:02 -0700257 if (bs > left)
258 bs = left;
259
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200260 b = malloc(bs);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700261 if (!b) {
262 td_verror(td, errno, "malloc");
263 ret = 1;
264 goto error;
265 }
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200266 memset(b, 0, bs);
267
Jens Axboeef799a62014-04-01 17:01:30 -0600268 if (lseek(f->fd, f->file_offset, SEEK_SET) < 0) {
269 td_verror(td, errno, "lseek");
270 log_err("fio: failed to lseek pre-read file\n");
271 ret = 1;
272 goto error;
273 }
274
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200275 while (left && !td->terminate) {
276 if (bs > left)
277 bs = left;
278
279 r = read(f->fd, b, bs);
280
281 if (r == (int) bs) {
282 left -= bs;
283 continue;
284 } else {
285 td_verror(td, EIO, "pre_read");
286 break;
287 }
288 }
289
Jens Axboeef799a62014-04-01 17:01:30 -0600290error:
Jens Axboe8edd9732014-03-01 08:24:03 -0700291 td_restore_runstate(td, old_runstate);
Jens Axboeb0f65862009-05-20 11:52:15 +0200292
293 if (did_open)
294 td->io_ops->close_file(td, f);
Jens Axboeef799a62014-04-01 17:01:30 -0600295
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200296 free(b);
Jens Axboeef799a62014-04-01 17:01:30 -0600297 return ret;
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200298}
299
Elliott Hugheseda3a602017-05-19 18:53:02 -0700300unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100301{
Jens Axboedc873b62008-06-04 20:13:04 +0200302 unsigned long long ret, sized;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700303 uint64_t frand_max;
Jens Axboe1294c3e2011-05-11 08:15:18 +0200304 unsigned long r;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100305
Elliott Hugheseda3a602017-05-19 18:53:02 -0700306 frand_max = rand_max(&td->file_size_state);
Jens Axboef6787012014-11-05 18:39:23 -0700307 r = __rand(&td->file_size_state);
Jens Axboe559073f2014-11-05 18:34:02 -0700308 sized = td->o.file_size_high - td->o.file_size_low;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700309 ret = (unsigned long long) ((double) sized * (r / (frand_max + 1.0)));
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100310 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100311 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100312 return ret;
313}
314
Jens Axboe53cdc682006-10-18 11:50:58 +0200315static int file_size(struct thread_data *td, struct fio_file *f)
316{
317 struct stat st;
318
Jens Axboedf9c26b2009-03-05 10:13:58 +0100319 if (stat(f->file_name, &st) == -1) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200320 td_verror(td, errno, "fstat");
321 return 1;
322 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200323
Jens Axboe7bb48f82007-03-27 15:30:28 +0200324 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200325 return 0;
326}
327
328static int bdev_size(struct thread_data *td, struct fio_file *f)
329{
Bruce Cran9b836562011-01-08 19:49:54 +0100330 unsigned long long bytes = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200331 int r;
332
Jens Axboedf9c26b2009-03-05 10:13:58 +0100333 if (td->io_ops->open_file(td, f)) {
334 log_err("fio: failed opening blockdev %s for size check\n",
335 f->file_name);
336 return 1;
337 }
338
Bruce Cranecc314b2011-01-04 10:59:30 +0100339 r = blockdev_size(f, &bytes);
Jens Axboe53cdc682006-10-18 11:50:58 +0200340 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100341 td_verror(td, r, "blockdev_size");
Jens Axboedf9c26b2009-03-05 10:13:58 +0100342 goto err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200343 }
344
Jens Axboe7ab077a2009-02-02 15:07:37 +0100345 if (!bytes) {
346 log_err("%s: zero sized block device?\n", f->file_name);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100347 goto err;
Jens Axboe7ab077a2009-02-02 15:07:37 +0100348 }
349
Jens Axboe53cdc682006-10-18 11:50:58 +0200350 f->real_file_size = bytes;
Jens Axboe22a57ba2009-06-09 14:34:35 +0200351 td->io_ops->close_file(td, f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200352 return 0;
Jens Axboedf9c26b2009-03-05 10:13:58 +0100353err:
354 td->io_ops->close_file(td, f);
355 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200356}
357
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200358static int char_size(struct thread_data *td, struct fio_file *f)
359{
360#ifdef FIO_HAVE_CHARDEV_SIZE
Bruce Cran9b836562011-01-08 19:49:54 +0100361 unsigned long long bytes = 0;
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200362 int r;
363
364 if (td->io_ops->open_file(td, f)) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700365 log_err("fio: failed opening chardev %s for size check\n",
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200366 f->file_name);
367 return 1;
368 }
369
Bruce Cranecc314b2011-01-04 10:59:30 +0100370 r = chardev_size(f, &bytes);
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200371 if (r) {
372 td_verror(td, r, "chardev_size");
373 goto err;
374 }
375
376 if (!bytes) {
377 log_err("%s: zero sized char device?\n", f->file_name);
378 goto err;
379 }
380
381 f->real_file_size = bytes;
382 td->io_ops->close_file(td, f);
383 return 0;
384err:
385 td->io_ops->close_file(td, f);
386 return 1;
387#else
388 f->real_file_size = -1ULL;
389 return 0;
390#endif
391}
392
Jens Axboe53cdc682006-10-18 11:50:58 +0200393static int get_file_size(struct thread_data *td, struct fio_file *f)
394{
395 int ret = 0;
396
Jens Axboed6aed792009-06-03 08:41:15 +0200397 if (fio_file_size_known(f))
Jens Axboe409b3412007-03-28 09:57:01 +0200398 return 0;
399
Jens Axboe7bb48f82007-03-27 15:30:28 +0200400 if (f->filetype == FIO_TYPE_FILE)
401 ret = file_size(td, f);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700402 else if (f->filetype == FIO_TYPE_BLOCK)
Jens Axboe53cdc682006-10-18 11:50:58 +0200403 ret = bdev_size(td, f);
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200404 else if (f->filetype == FIO_TYPE_CHAR)
405 ret = char_size(td, f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200406 else
Elliott Hugheseda3a602017-05-19 18:53:02 -0700407 f->real_file_size = -1ULL;
Jens Axboe53cdc682006-10-18 11:50:58 +0200408
Elliott Hugheseda3a602017-05-19 18:53:02 -0700409 /*
410 * Leave ->real_file_size with 0 since it could be expectation
411 * of initial setup for regular files.
412 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200413 if (ret)
414 return ret;
415
Elliott Hugheseda3a602017-05-19 18:53:02 -0700416 /*
417 * If ->real_file_size is -1, a conditional for the message
418 * "offset extends end" is always true, but it makes no sense,
419 * so just return the same value here.
420 */
421 if (f->real_file_size == -1ULL) {
422 log_info("%s: failed to get file size of %s\n", td->o.name,
423 f->file_name);
424 return 1;
425 }
426
427 if (td->o.start_offset && f->file_offset == 0)
428 dprint(FD_FILE, "offset of file %s not initialized yet\n",
429 f->file_name);
430 /*
431 * ->file_offset normally hasn't been initialized yet, so this
432 * is basically always false.
433 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200434 if (f->file_offset > f->real_file_size) {
Bruce Cran0f2152c2010-12-15 10:33:03 +0100435 log_err("%s: offset extends end (%llu > %llu)\n", td->o.name,
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200436 (unsigned long long) f->file_offset,
437 (unsigned long long) f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200438 return 1;
439 }
440
Jens Axboed6aed792009-06-03 08:41:15 +0200441 fio_file_set_size_known(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200442 return 0;
443}
444
Jens Axboe3baddf22008-04-04 11:10:30 +0200445static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
446 unsigned long long off,
447 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200448{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700449 int errval = 0, ret = 0;
Jens Axboee5b401d2006-10-18 16:03:40 +0200450
Jens Axboeef7035a2014-06-18 15:30:09 -0700451#ifdef CONFIG_ESX
452 return 0;
453#endif
454
Jens Axboe5e0074c2009-06-02 21:40:09 +0200455 if (len == -1ULL)
Jens Axboe3baddf22008-04-04 11:10:30 +0200456 len = f->io_size;
457 if (off == -1ULL)
458 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100459
Jens Axboe0d1cd202009-06-05 22:11:52 +0200460 if (len == -1ULL || off == -1ULL)
461 return 0;
462
Elliott Hugheseda3a602017-05-19 18:53:02 -0700463 if (td->io_ops->invalidate) {
464 dprint(FD_IO, "invalidate %s cache %s\n", td->io_ops->name,
465 f->file_name);
Jens Axboe1be9f212014-05-19 19:57:05 -0600466 ret = td->io_ops->invalidate(td, f);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700467 if (ret < 0)
468 errval = -ret;
469 } else if (f->filetype == FIO_TYPE_FILE) {
470 dprint(FD_IO, "declare unneeded cache %s: %llu/%llu\n",
471 f->file_name, off, len);
Bruce Cranecc314b2011-01-04 10:59:30 +0100472 ret = posix_fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700473 if (ret)
474 errval = ret;
475 } else if (f->filetype == FIO_TYPE_BLOCK) {
476 int retry_count = 0;
477
478 dprint(FD_IO, "drop page cache %s\n", f->file_name);
Bruce Cranecc314b2011-01-04 10:59:30 +0100479 ret = blockdev_invalidate_cache(f);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700480 while (ret < 0 && errno == EAGAIN && retry_count++ < 25) {
481 /*
482 * Linux multipath devices reject ioctl while
483 * the maps are being updated. That window can
484 * last tens of milliseconds; we'll try up to
485 * a quarter of a second.
486 */
487 usleep(10000);
488 ret = blockdev_invalidate_cache(f);
489 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200490 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200491 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100492 log_err("fio: only root may flush block "
493 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200494 root_warn = 1;
495 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200496 ret = 0;
497 }
Elliott Hugheseda3a602017-05-19 18:53:02 -0700498 if (ret < 0)
499 errval = errno;
500 else if (ret) /* probably not supported */
501 errval = ret;
502 } else if (f->filetype == FIO_TYPE_CHAR ||
503 f->filetype == FIO_TYPE_PIPE) {
504 dprint(FD_IO, "invalidate not supported %s\n", f->file_name);
Jens Axboee5b401d2006-10-18 16:03:40 +0200505 ret = 0;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700506 }
Jens Axboee5b401d2006-10-18 16:03:40 +0200507
Jens Axboedfe11fd2014-04-10 08:59:43 -0600508 /*
509 * Cache flushing isn't a fatal condition, and we know it will
510 * happen on some platforms where we don't have the proper
511 * function to flush eg block device caches. So just warn and
512 * continue on our way.
513 */
Elliott Hugheseda3a602017-05-19 18:53:02 -0700514 if (errval)
515 log_info("fio: cache invalidation of %s failed: %s\n",
516 f->file_name, strerror(errval));
Jens Axboee5b401d2006-10-18 16:03:40 +0200517
Jens Axboedfe11fd2014-04-10 08:59:43 -0600518 return 0;
Jens Axboe3baddf22008-04-04 11:10:30 +0200519
520}
521
522int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
523{
Jens Axboed6aed792009-06-03 08:41:15 +0200524 if (!fio_file_open(f))
Jens Axboea5fb4612008-05-28 10:54:01 +0200525 return 0;
526
Jens Axboe5e0074c2009-06-02 21:40:09 +0200527 return __file_invalidate_cache(td, f, -1ULL, -1ULL);
Jens Axboee5b401d2006-10-18 16:03:40 +0200528}
529
Jens Axboe6977bcd2008-03-01 15:55:36 +0100530int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200531{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100532 int ret = 0;
533
Jens Axboeee56ad52008-02-01 10:30:20 +0100534 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100535
536 remove_file_hash(f);
537
Jens Axboe6977bcd2008-03-01 15:55:36 +0100538 if (close(f->fd) < 0)
539 ret = errno;
540
Jens Axboeb5af8292007-03-08 12:43:13 +0100541 f->fd = -1;
Jens Axboee6c4d732012-12-12 08:16:27 +0100542
543 if (f->shadow_fd != -1) {
544 close(f->shadow_fd);
545 f->shadow_fd = -1;
546 }
547
Elliott Hugheseda3a602017-05-19 18:53:02 -0700548 f->engine_pos = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100549 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200550}
551
Dmitry Monakhov1ccc6dc2012-09-19 23:22:53 +0400552int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200553{
Jens Axboe29c13492008-03-01 19:25:20 +0100554 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100555 int from_hash;
556
557 __f = lookup_file_hash(f->file_name);
558 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100559 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100560 f->lock = __f->lock;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100561 from_hash = 1;
562 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100563 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100564 from_hash = 0;
565 }
566
Bruce Cran9c0f3f32014-04-28 15:54:43 -0600567#ifdef WIN32
568 flags |= _O_BINARY;
569#endif
570
Jens Axboee8670ef2008-03-06 12:06:30 +0100571 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100572 return from_hash;
573}
574
Jens Axboee6c4d732012-12-12 08:16:27 +0100575static int file_close_shadow_fds(struct thread_data *td)
576{
577 struct fio_file *f;
578 int num_closed = 0;
579 unsigned int i;
580
581 for_each_file(td, f, i) {
582 if (f->shadow_fd == -1)
583 continue;
584
585 close(f->shadow_fd);
586 f->shadow_fd = -1;
587 num_closed++;
588 }
589
590 return num_closed;
591}
592
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100593int generic_open_file(struct thread_data *td, struct fio_file *f)
594{
Jens Axboe66159822007-04-16 21:54:24 +0200595 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200596 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100597 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200598
Jens Axboeee56ad52008-02-01 10:30:20 +0100599 dprint(FD_FILE, "fd open %s\n", f->file_name);
600
Jens Axboe66159822007-04-16 21:54:24 +0200601 if (!strcmp(f->file_name, "-")) {
602 if (td_rw(td)) {
603 log_err("fio: can't read/write to stdin/out\n");
604 return 1;
605 }
606 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200607
608 /*
609 * move output logging to stderr, if we are writing to stdout
610 */
611 if (td_write(td))
612 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200613 }
614
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200615 if (td_trim(td))
616 goto skip_flags;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100617 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100618 flags |= OS_O_DIRECT;
Chris Masond01612f2013-11-15 15:52:58 -0700619 if (td->o.oatomic) {
620 if (!FIO_O_ATOMIC) {
621 td_verror(td, EINVAL, "OS does not support atomic IO");
622 return 1;
623 }
624 flags |= OS_O_DIRECT | FIO_O_ATOMIC;
625 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100626 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100627 flags |= O_SYNC;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700628 if (td->o.create_on_open && td->o.allow_create)
Jens Axboe814452b2009-03-04 12:53:13 +0100629 flags |= O_CREAT;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200630skip_flags:
631 if (f->filetype != FIO_TYPE_FILE)
632 flags |= FIO_O_NOATIME;
Jens Axboe7abf8332006-11-23 15:01:19 +0100633
Aaron Carroll056f3452007-11-26 09:08:53 +0100634open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200635 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100636 if (!read_only)
637 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200638
Elliott Hugheseda3a602017-05-19 18:53:02 -0700639 if (f->filetype == FIO_TYPE_FILE && td->o.allow_create)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100640 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100641
Jens Axboe66159822007-04-16 21:54:24 +0200642 if (is_std)
643 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100644 else
645 from_hash = file_lookup_open(f, flags);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200646 } else if (td_read(td)) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200647 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100648 flags |= O_RDWR;
649 else
650 flags |= O_RDONLY;
651
Jens Axboe66159822007-04-16 21:54:24 +0200652 if (is_std)
653 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100654 else
655 from_hash = file_lookup_open(f, flags);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700656 } else if (td_trim(td)) {
657 assert(!td_rw(td)); /* should have matched above */
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200658 flags |= O_RDWR;
659 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200660 }
661
662 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100663 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100664 int __e = errno;
665
Jens Axboe835d9b92009-06-09 15:23:38 +0200666 if (__e == EPERM && (flags & FIO_O_NOATIME)) {
Jens Axboe5921e802008-05-30 15:02:38 +0200667 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100668 goto open_again;
669 }
Jens Axboee6c4d732012-12-12 08:16:27 +0100670 if (__e == EMFILE && file_close_shadow_fds(td))
671 goto open_again;
Aaron Carroll056f3452007-11-26 09:08:53 +0100672
Ken Raeburn98ffb8f2013-01-30 22:31:09 +0100673 snprintf(buf, sizeof(buf), "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100674
Jens Axboea93c5f02012-06-11 08:53:53 +0200675 if (__e == EINVAL && (flags & OS_O_DIRECT)) {
676 log_err("fio: looks like your file system does not " \
677 "support direct=1/buffered=0\n");
678 }
679
Jens Axboee4e33252007-03-21 13:07:54 +0100680 td_verror(td, __e, buf);
Andreas Gruenbacher34329ca2014-07-09 19:37:33 +0200681 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200682 }
683
Jens Axboe29c13492008-03-01 19:25:20 +0100684 if (!from_hash && f->fd != -1) {
685 if (add_file_hash(f)) {
Jens Axboe3f0ca9b2011-05-24 21:36:24 +0200686 int fio_unused ret;
Jens Axboe29c13492008-03-01 19:25:20 +0100687
688 /*
Jens Axboee6c4d732012-12-12 08:16:27 +0100689 * Stash away descriptor for later close. This is to
690 * work-around a "feature" on Linux, where a close of
691 * an fd that has been opened for write will trigger
692 * udev to call blkid to check partitions, fs id, etc.
Anatol Pomozovde8f6de2013-09-26 16:31:34 -0700693 * That pollutes the device cache, which can slow down
Jens Axboee6c4d732012-12-12 08:16:27 +0100694 * unbuffered accesses.
Jens Axboe29c13492008-03-01 19:25:20 +0100695 */
Jens Axboee6c4d732012-12-12 08:16:27 +0100696 if (f->shadow_fd == -1)
697 f->shadow_fd = f->fd;
698 else {
699 /*
700 * OK to ignore, we haven't done anything
701 * with it
702 */
703 ret = generic_close_file(td, f);
704 }
Jens Axboe29c13492008-03-01 19:25:20 +0100705 goto open_again;
706 }
707 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100708
Jens Axboe53cdc682006-10-18 11:50:58 +0200709 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100710}
711
Elliott Hugheseda3a602017-05-19 18:53:02 -0700712/*
713 * This function i.e. get_file_size() is the default .get_file_size
714 * implementation of majority of I/O engines.
715 */
Jens Axboedf9c26b2009-03-05 10:13:58 +0100716int generic_get_file_size(struct thread_data *td, struct fio_file *f)
Jens Axboe21972cd2006-11-23 12:39:16 +0100717{
Jens Axboedf9c26b2009-03-05 10:13:58 +0100718 return get_file_size(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100719}
720
Jens Axboe7bb48f82007-03-27 15:30:28 +0200721/*
722 * open/close all files, so that ->real_file_size gets set
723 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200724static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200725{
726 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100727 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200728 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200729
730 for_each_file(td, f, i) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700731 dprint(FD_FILE, "get file size for %p/%d/%s\n", f, i,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100732 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100733
Jens Axboe99a47c62009-04-07 22:20:56 +0200734 if (td_io_get_file_size(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200735 if (td->error != ENOENT) {
736 log_err("%s\n", td->verror);
737 err = 1;
Andreas Gruenbacher34329ca2014-07-09 19:37:33 +0200738 break;
Jens Axboe40b44f42007-04-11 12:43:35 +0200739 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200740 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200741 }
Jens Axboe409b3412007-03-28 09:57:01 +0200742
Elliott Hugheseda3a602017-05-19 18:53:02 -0700743 /*
744 * There are corner cases where we end up with -1 for
745 * ->real_file_size due to unsupported file type, etc.
746 * We then just set to size option value divided by number
747 * of files, similar to the way file ->io_size is set.
748 * stat(2) failure doesn't set ->real_file_size to -1.
749 */
Jens Axboe409b3412007-03-28 09:57:01 +0200750 if (f->real_file_size == -1ULL && td->o.size)
751 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200752 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200753
754 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200755}
756
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200757struct fio_mount {
758 struct flist_head list;
759 const char *base;
760 char __base[256];
761 unsigned int key;
762};
763
764/*
765 * Get free number of bytes for each file on each unique mount.
766 */
767static unsigned long long get_fs_free_counts(struct thread_data *td)
768{
769 struct flist_head *n, *tmp;
Jens Axboe68b03162010-06-24 09:22:41 +0200770 unsigned long long ret = 0;
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200771 struct fio_mount *fm;
772 FLIST_HEAD(list);
773 struct fio_file *f;
774 unsigned int i;
775
776 for_each_file(td, f, i) {
777 struct stat sb;
778 char buf[256];
779
Elliott Hugheseda3a602017-05-19 18:53:02 -0700780 if (f->filetype == FIO_TYPE_BLOCK || f->filetype == FIO_TYPE_CHAR) {
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200781 if (f->real_file_size != -1ULL)
782 ret += f->real_file_size;
Jens Axboe68b03162010-06-24 09:22:41 +0200783 continue;
784 } else if (f->filetype != FIO_TYPE_FILE)
785 continue;
786
Jens Axboeda27a4b2014-04-14 08:45:13 -0600787 buf[255] = '\0';
788 strncpy(buf, f->file_name, 255);
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200789
790 if (stat(buf, &sb) < 0) {
791 if (errno != ENOENT)
792 break;
793 strcpy(buf, ".");
794 if (stat(buf, &sb) < 0)
795 break;
796 }
797
798 fm = NULL;
799 flist_for_each(n, &list) {
800 fm = flist_entry(n, struct fio_mount, list);
801 if (fm->key == sb.st_dev)
802 break;
803
804 fm = NULL;
805 }
806
807 if (fm)
808 continue;
809
Jens Axboe3660cea2014-04-15 08:18:08 -0600810 fm = calloc(1, sizeof(*fm));
811 strncpy(fm->__base, buf, sizeof(fm->__base) - 1);
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200812 fm->base = basename(fm->__base);
813 fm->key = sb.st_dev;
814 flist_add(&fm->list, &list);
815 }
816
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200817 flist_for_each_safe(n, tmp, &list) {
818 unsigned long long sz;
819
820 fm = flist_entry(n, struct fio_mount, list);
821 flist_del(&fm->list);
822
Elliott Hugheseda3a602017-05-19 18:53:02 -0700823 sz = get_fs_free_size(fm->base);
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200824 if (sz && sz != -1ULL)
825 ret += sz;
826
827 free(fm);
828 }
829
830 return ret;
831}
832
Jens Axboebedc9dc2014-03-17 12:51:09 -0600833uint64_t get_start_offset(struct thread_data *td, struct fio_file *f)
Dan Ehrenbergce95d652012-08-16 08:58:21 +0200834{
Jens Axboebedc9dc2014-03-17 12:51:09 -0600835 struct thread_options *o = &td->o;
836
837 if (o->file_append && f->filetype == FIO_TYPE_FILE)
838 return f->real_file_size;
839
Dan Ehrenbergce95d652012-08-16 08:58:21 +0200840 return td->o.start_offset +
Jiri Horky5a65b4e2014-07-25 09:55:03 +0200841 td->subjob_number * td->o.offset_increment;
Dan Ehrenbergce95d652012-08-16 08:58:21 +0200842}
843
Jens Axboe7bb48f82007-03-27 15:30:28 +0200844/*
845 * Open the files and setup files sizes, creating files if necessary.
846 */
847int setup_files(struct thread_data *td)
848{
849 unsigned long long total_size, extend_size;
Jens Axboede98bd32013-04-05 11:09:20 +0200850 struct thread_options *o = &td->o;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200851 struct fio_file *f;
Jens Axboe002fe732014-02-11 08:31:13 -0700852 unsigned int i, nr_fs_extra = 0;
Jens Axboe000b0802007-03-27 15:56:10 +0200853 int err = 0, need_extend;
Jens Axboee90391e2013-04-13 20:40:53 +0200854 int old_state;
Jens Axboe002fe732014-02-11 08:31:13 -0700855 const unsigned int bs = td_min_bs(td);
856 uint64_t fs = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200857
Jens Axboeee56ad52008-02-01 10:30:20 +0100858 dprint(FD_FILE, "setup files\n");
859
Jens Axboe8edd9732014-03-01 08:24:03 -0700860 old_state = td_bump_runstate(td, TD_SETTING_UP);
Jens Axboee90391e2013-04-13 20:40:53 +0200861
Jens Axboede98bd32013-04-05 11:09:20 +0200862 if (o->read_iolog_file)
Jens Axboe25460cf2012-05-02 13:58:02 +0200863 goto done;
Jens Axboe691c8fb2008-03-07 14:26:26 +0100864
Jens Axboe53cdc682006-10-18 11:50:58 +0200865 /*
Elliott Hugheseda3a602017-05-19 18:53:02 -0700866 * Find out physical size of files or devices for this thread,
867 * before we determine I/O size and range of our targets.
868 * If ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200869 * opening the files and setting f->real_file_size to indicate
870 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200871 */
872 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200873 err = td->io_ops->setup(td);
874 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200875 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200876
Jens Axboef1027062006-10-20 10:14:01 +0200877 if (err)
Jens Axboee90391e2013-04-13 20:40:53 +0200878 goto err_out;
Jens Axboef1027062006-10-20 10:14:01 +0200879
Jens Axboe0a7eb122006-10-20 10:36:42 +0200880 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200881 * check sizes. if the files/devices do not exist and the size
882 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200883 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200884 total_size = 0;
885 for_each_file(td, f, i) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700886 f->fileno = i;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200887 if (f->real_file_size == -1ULL)
888 total_size = -1ULL;
889 else
890 total_size += f->real_file_size;
891 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200892
Jens Axboede98bd32013-04-05 11:09:20 +0200893 if (o->fill_device)
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200894 td->fill_device_size = get_fs_free_counts(td);
895
Jens Axboe7bb48f82007-03-27 15:30:28 +0200896 /*
897 * device/file sizes are zero and no size given, punt
898 */
Jens Axboede98bd32013-04-05 11:09:20 +0200899 if ((!total_size || total_size == -1ULL) && !o->size &&
Elliott Hugheseda3a602017-05-19 18:53:02 -0700900 !td_ioengine_flagged(td, FIO_NOIO) && !o->fill_device &&
Jens Axboede98bd32013-04-05 11:09:20 +0200901 !(o->nr_files && (o->file_size_low || o->file_size_high))) {
902 log_err("%s: you need to specify size=\n", o->name);
Jens Axboee1161c32007-02-22 19:36:48 +0100903 td_verror(td, EINVAL, "total_file_size");
Jens Axboee90391e2013-04-13 20:40:53 +0200904 goto err_out;
Jens Axboe53cdc682006-10-18 11:50:58 +0200905 }
906
Jens Axboe7bb48f82007-03-27 15:30:28 +0200907 /*
Jens Axboe002fe732014-02-11 08:31:13 -0700908 * Calculate per-file size and potential extra size for the
Elliott Hugheseda3a602017-05-19 18:53:02 -0700909 * first files, if needed (i.e. if we don't have a fixed size).
Jens Axboe002fe732014-02-11 08:31:13 -0700910 */
Jens Axboed1e78e62014-04-06 09:56:10 -0600911 if (!o->file_size_low && o->nr_files) {
Jens Axboe002fe732014-02-11 08:31:13 -0700912 uint64_t all_fs;
913
914 fs = o->size / o->nr_files;
915 all_fs = fs * o->nr_files;
916
917 if (all_fs < o->size)
918 nr_fs_extra = (o->size - all_fs) / bs;
919 }
920
921 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200922 * now file sizes are known, so we can set ->io_size. if size= is
923 * not given, ->io_size is just equal to ->real_file_size. if size
924 * is given, ->io_size is size / nr_files.
925 */
926 extend_size = total_size = 0;
927 need_extend = 0;
928 for_each_file(td, f, i) {
Jens Axboebedc9dc2014-03-17 12:51:09 -0600929 f->file_offset = get_start_offset(td, f);
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200930
Elliott Hugheseda3a602017-05-19 18:53:02 -0700931 /*
932 * Update ->io_size depending on options specified.
933 * ->file_size_low being 0 means filesize option isn't set.
934 * Non zero ->file_size_low equals ->file_size_high means
935 * filesize option is set in a fixed size format.
936 * Non zero ->file_size_low not equals ->file_size_high means
937 * filesize option is set in a range format.
938 */
Jens Axboede98bd32013-04-05 11:09:20 +0200939 if (!o->file_size_low) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200940 /*
Elliott Hugheseda3a602017-05-19 18:53:02 -0700941 * no file size or range given, file size is equal to
942 * total size divided by number of files. If the size
Jens Axboe002fe732014-02-11 08:31:13 -0700943 * doesn't divide nicely with the min blocksize,
944 * make the first files bigger.
Jens Axboe7bb48f82007-03-27 15:30:28 +0200945 */
Jens Axboe002fe732014-02-11 08:31:13 -0700946 f->io_size = fs;
947 if (nr_fs_extra) {
948 nr_fs_extra--;
949 f->io_size += bs;
950 }
951
Elliott Hugheseda3a602017-05-19 18:53:02 -0700952 /*
953 * We normally don't come here for regular files, but
954 * if the result is 0 for a regular file, set it to the
955 * real file size. This could be size of the existing
956 * one if it already exists, but otherwise will be set
957 * to 0. A new file won't be created because
958 * ->io_size + ->file_offset equals ->real_file_size.
959 */
960 if (!f->io_size) {
961 if (f->file_offset > f->real_file_size)
962 goto err_offset;
Jens Axboe273f8c92008-01-25 14:02:15 +0100963 f->io_size = f->real_file_size - f->file_offset;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700964 if (!f->io_size)
965 log_info("fio: file %s may be ignored\n",
966 f->file_name);
967 }
Jens Axboede98bd32013-04-05 11:09:20 +0200968 } else if (f->real_file_size < o->file_size_low ||
969 f->real_file_size > o->file_size_high) {
970 if (f->file_offset > o->file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200971 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200972 /*
973 * file size given. if it's fixed, use that. if it's a
974 * range, generate a random size in-between.
975 */
Jens Axboede98bd32013-04-05 11:09:20 +0200976 if (o->file_size_low == o->file_size_high)
977 f->io_size = o->file_size_low - f->file_offset;
978 else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100979 f->io_size = get_rand_file_size(td)
980 - f->file_offset;
981 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100982 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200983 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200984
985 if (f->io_size == -1ULL)
986 total_size = -1ULL;
Shaohua Li4d002562012-09-21 08:32:32 +0200987 else {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700988 if (o->size_percent) {
989 f->io_size = (f->io_size * o->size_percent) / 100;
990 f->io_size -= (f->io_size % td_min_bs(td));
991 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200992 total_size += f->io_size;
Shaohua Li4d002562012-09-21 08:32:32 +0200993 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200994
995 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200996 (f->io_size + f->file_offset) > f->real_file_size &&
Elliott Hugheseda3a602017-05-19 18:53:02 -0700997 !td_ioengine_flagged(td, FIO_DISKLESSIO)) {
Jens Axboede98bd32013-04-05 11:09:20 +0200998 if (!o->create_on_open) {
Jens Axboe814452b2009-03-04 12:53:13 +0100999 need_extend++;
1000 extend_size += (f->io_size + f->file_offset);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001001 fio_file_set_extend(f);
Jens Axboe814452b2009-03-04 12:53:13 +01001002 } else
1003 f->real_file_size = f->io_size + f->file_offset;
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001004 }
Jens Axboe7bb48f82007-03-27 15:30:28 +02001005 }
1006
Elliott Hugheseda3a602017-05-19 18:53:02 -07001007 if (td->o.block_error_hist) {
1008 int len;
1009
1010 assert(td->o.nr_files == 1); /* checked in fixup_options */
1011 f = td->files[0];
1012 len = f->io_size / td->o.bs[DDIR_TRIM];
1013 if (len > MAX_NR_BLOCK_INFOS || len <= 0) {
1014 log_err("fio: cannot calculate block histogram with "
1015 "%d trim blocks, maximum %d\n",
1016 len, MAX_NR_BLOCK_INFOS);
1017 td_verror(td, EINVAL, "block_error_hist");
1018 goto err_out;
1019 }
1020
1021 td->ts.nr_block_infos = len;
1022 for (i = 0; i < len; i++)
1023 td->ts.block_infos[i] =
1024 BLOCK_INFO(0, BLOCK_STATE_UNINIT);
1025 } else
1026 td->ts.nr_block_infos = 0;
1027
Jens Axboea85066d2014-09-29 21:23:51 -06001028 if (!o->size || (total_size && o->size > total_size))
Jens Axboede98bd32013-04-05 11:09:20 +02001029 o->size = total_size;
Jens Axboe7bb48f82007-03-27 15:30:28 +02001030
Jens Axboed1faa062014-04-16 23:51:27 +02001031 if (o->size < td_min_bs(td)) {
1032 log_err("fio: blocksize too large for data set\n");
1033 goto err_out;
1034 }
1035
Jens Axboe7bb48f82007-03-27 15:30:28 +02001036 /*
Elliott Hugheseda3a602017-05-19 18:53:02 -07001037 * See if we need to extend some files, typically needed when our
1038 * target regular files don't exist yet, but our jobs require them
1039 * initially due to read I/Os.
Jens Axboe7bb48f82007-03-27 15:30:28 +02001040 */
1041 if (need_extend) {
1042 temp_stall_ts = 1;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001043 if (output_format & FIO_OUTPUT_NORMAL) {
1044 log_info("%s: Laying out IO file%s (%u file%s / %s%lluMiB)\n",
1045 o->name,
1046 need_extend > 1 ? "s" : "",
1047 need_extend,
1048 need_extend > 1 ? "s" : "",
1049 need_extend > 1 ? "total " : "",
1050 extend_size >> 20);
1051 }
Jens Axboe7bb48f82007-03-27 15:30:28 +02001052
1053 for_each_file(td, f, i) {
Jens Axboe5e0074c2009-06-02 21:40:09 +02001054 unsigned long long old_len = -1ULL, extend_len = -1ULL;
Jens Axboe3baddf22008-04-04 11:10:30 +02001055
Jens Axboed6aed792009-06-03 08:41:15 +02001056 if (!fio_file_extend(f))
Jens Axboe7bb48f82007-03-27 15:30:28 +02001057 continue;
1058
Jens Axboe409b3412007-03-28 09:57:01 +02001059 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboed6aed792009-06-03 08:41:15 +02001060 fio_file_clear_extend(f);
Jens Axboede98bd32013-04-05 11:09:20 +02001061 if (!o->fill_device) {
Jens Axboe5e0074c2009-06-02 21:40:09 +02001062 old_len = f->real_file_size;
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001063 extend_len = f->io_size + f->file_offset -
1064 old_len;
Jens Axboe5e0074c2009-06-02 21:40:09 +02001065 }
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +02001066 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +02001067 err = extend_file(td, f);
1068 if (err)
1069 break;
Jens Axboe5e0074c2009-06-02 21:40:09 +02001070
Jens Axboe3baddf22008-04-04 11:10:30 +02001071 err = __file_invalidate_cache(td, f, old_len,
1072 extend_len);
Jens Axboe9824f732014-04-14 12:05:22 -06001073
1074 /*
1075 * Shut up static checker
1076 */
1077 if (f->fd != -1)
1078 close(f->fd);
1079
Jens Axboe3baddf22008-04-04 11:10:30 +02001080 f->fd = -1;
1081 if (err)
1082 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +02001083 }
1084 temp_stall_ts = 0;
1085 }
1086
1087 if (err)
Jens Axboee90391e2013-04-13 20:40:53 +02001088 goto err_out;
Jens Axboe7bb48f82007-03-27 15:30:28 +02001089
Jens Axboede98bd32013-04-05 11:09:20 +02001090 if (!o->zone_size)
1091 o->zone_size = o->size;
Jens Axboe53cdc682006-10-18 11:50:58 +02001092
Jens Axboeea966f82007-09-03 10:09:37 +02001093 /*
1094 * iolog already set the total io size, if we read back
1095 * stored entries.
1096 */
Jens Axboe77731b22014-04-28 12:08:47 -06001097 if (!o->read_iolog_file) {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001098 if (o->io_size)
1099 td->total_io_size = o->io_size * o->loops;
Jens Axboe77731b22014-04-28 12:08:47 -06001100 else
1101 td->total_io_size = o->size * o->loops;
1102 }
Jens Axboe25460cf2012-05-02 13:58:02 +02001103
1104done:
Jens Axboede98bd32013-04-05 11:09:20 +02001105 if (o->create_only)
Jens Axboe25460cf2012-05-02 13:58:02 +02001106 td->done = 1;
1107
Jens Axboe8edd9732014-03-01 08:24:03 -07001108 td_restore_runstate(td, old_state);
Jens Axboe7bb48f82007-03-27 15:30:28 +02001109 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +02001110err_offset:
Jens Axboede98bd32013-04-05 11:09:20 +02001111 log_err("%s: you need to specify valid offset=\n", o->name);
Jens Axboee90391e2013-04-13 20:40:53 +02001112err_out:
Jens Axboe8edd9732014-03-01 08:24:03 -07001113 td_restore_runstate(td, old_state);
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +02001114 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +02001115}
1116
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001117int pre_read_files(struct thread_data *td)
1118{
1119 struct fio_file *f;
1120 unsigned int i;
1121
1122 dprint(FD_FILE, "pre_read files\n");
1123
1124 for_each_file(td, f, i) {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001125 if (pre_read_file(td, f))
1126 return -1;
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001127 }
1128
Elliott Hugheseda3a602017-05-19 18:53:02 -07001129 return 0;
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001130}
1131
Jens Axboe9c6f6312012-11-07 09:15:45 +01001132static int __init_rand_distribution(struct thread_data *td, struct fio_file *f)
1133{
Jens Axboe23162962012-11-07 19:47:47 +01001134 unsigned int range_size, seed;
Jens Axboe9c6f6312012-11-07 09:15:45 +01001135 unsigned long nranges;
Jens Axboe4d6922b2014-11-12 11:11:20 -07001136 uint64_t fsize;
Jens Axboe9c6f6312012-11-07 09:15:45 +01001137
1138 range_size = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
Jens Axboe4d6922b2014-11-12 11:11:20 -07001139 fsize = min(f->real_file_size, f->io_size);
Jens Axboe9c6f6312012-11-07 09:15:45 +01001140
Jens Axboe4d6922b2014-11-12 11:11:20 -07001141 nranges = (fsize + range_size - 1) / range_size;
Jens Axboe9c6f6312012-11-07 09:15:45 +01001142
Jens Axboe23162962012-11-07 19:47:47 +01001143 seed = jhash(f->file_name, strlen(f->file_name), 0) * td->thread_number;
Jens Axboe84256872012-11-17 10:06:36 -07001144 if (!td->o.rand_repeatable)
1145 seed = td->rand_seeds[4];
1146
Jens Axboe9c6f6312012-11-07 09:15:45 +01001147 if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
Jens Axboe888677a2013-04-10 22:19:46 +02001148 zipf_init(&f->zipf, nranges, td->o.zipf_theta.u.f, seed);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001149 else if (td->o.random_distribution == FIO_RAND_DIST_PARETO)
Jens Axboe888677a2013-04-10 22:19:46 +02001150 pareto_init(&f->zipf, nranges, td->o.pareto_h.u.f, seed);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001151 else if (td->o.random_distribution == FIO_RAND_DIST_GAUSS)
1152 gauss_init(&f->gauss, nranges, td->o.gauss_dev.u.f, seed);
Jens Axboe9c6f6312012-11-07 09:15:45 +01001153
1154 return 1;
1155}
1156
1157static int init_rand_distribution(struct thread_data *td)
1158{
1159 struct fio_file *f;
1160 unsigned int i;
1161 int state;
1162
1163 if (td->o.random_distribution == FIO_RAND_DIST_RANDOM)
1164 return 0;
1165
Jens Axboe8edd9732014-03-01 08:24:03 -07001166 state = td_bump_runstate(td, TD_SETTING_UP);
1167
Jens Axboe9c6f6312012-11-07 09:15:45 +01001168 for_each_file(td, f, i)
1169 __init_rand_distribution(td, f);
Jens Axboe8edd9732014-03-01 08:24:03 -07001170
1171 td_restore_runstate(td, state);
Jens Axboe9c6f6312012-11-07 09:15:45 +01001172
1173 return 1;
1174}
1175
Elliott Hugheseda3a602017-05-19 18:53:02 -07001176/*
1177 * Check if the number of blocks exceeds the randomness capability of
1178 * the selected generator. Tausworthe is 32-bit, the others are fullly
1179 * 64-bit capable.
1180 */
1181static int check_rand_gen_limits(struct thread_data *td, struct fio_file *f,
1182 uint64_t blocks)
1183{
1184 if (blocks <= FRAND32_MAX)
1185 return 0;
1186 if (td->o.random_generator != FIO_RAND_GEN_TAUSWORTHE)
1187 return 0;
1188
1189 /*
1190 * If the user hasn't specified a random generator, switch
1191 * to tausworthe64 with informational warning. If the user did
1192 * specify one, just warn.
1193 */
1194 log_info("fio: file %s exceeds 32-bit tausworthe random generator.\n",
1195 f->file_name);
1196
1197 if (!fio_option_is_set(&td->o, random_generator)) {
1198 log_info("fio: Switching to tausworthe64. Use the "
1199 "random_generator= option to get rid of this "
1200 "warning.\n");
1201 td->o.random_generator = FIO_RAND_GEN_TAUSWORTHE64;
1202 return 0;
1203 }
1204
1205 /*
1206 * Just make this information to avoid breaking scripts.
1207 */
1208 log_info("fio: Use the random_generator= option to switch to lfsr or "
1209 "tausworthe64.\n");
1210 return 0;
1211}
1212
Jens Axboe68727072007-03-15 20:49:25 +01001213int init_random_map(struct thread_data *td)
1214{
Jens Axboe51ede0b2012-11-22 13:50:29 +01001215 unsigned long long blocks;
Jens Axboe68727072007-03-15 20:49:25 +01001216 struct fio_file *f;
1217 unsigned int i;
1218
Jens Axboe9c6f6312012-11-07 09:15:45 +01001219 if (init_rand_distribution(td))
1220 return 0;
Jens Axboe3831a842012-11-26 19:59:14 +01001221 if (!td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +01001222 return 0;
1223
1224 for_each_file(td, f, i) {
Jens Axboe4d6922b2014-11-12 11:11:20 -07001225 uint64_t fsize = min(f->real_file_size, f->io_size);
Jens Axboe38f30c82013-01-11 14:03:05 +01001226
Jens Axboe4d6922b2014-11-12 11:11:20 -07001227 blocks = fsize / (unsigned long long) td->o.rw_min_bs;
Jens Axboe53737ae2013-02-21 15:18:17 +01001228
Elliott Hugheseda3a602017-05-19 18:53:02 -07001229 if (check_rand_gen_limits(td, f, blocks))
1230 return 1;
1231
Jens Axboe8055e412012-11-26 08:43:47 +01001232 if (td->o.random_generator == FIO_RAND_GEN_LFSR) {
Jens Axboe82af46b2012-12-04 13:12:25 +01001233 unsigned long seed;
1234
1235 seed = td->rand_seeds[FIO_RAND_BLOCK_OFF];
Bruce Cran9c0f3f32014-04-28 15:54:43 -06001236
Jens Axboed55dd042014-12-15 09:38:43 -07001237 if (!lfsr_init(&f->lfsr, blocks, seed, 0)) {
1238 fio_file_set_lfsr(f);
Jens Axboe8055e412012-11-26 08:43:47 +01001239 continue;
Jens Axboed55dd042014-12-15 09:38:43 -07001240 }
Jens Axboe3831a842012-11-26 19:59:14 +01001241 } else if (!td->o.norandommap) {
Jens Axboe7ebd7962012-11-28 21:24:46 +01001242 f->io_axmap = axmap_new(blocks);
Jens Axboed55dd042014-12-15 09:38:43 -07001243 if (f->io_axmap) {
1244 fio_file_set_axmap(f);
Jens Axboe8055e412012-11-26 08:43:47 +01001245 continue;
Jens Axboed55dd042014-12-15 09:38:43 -07001246 }
Jens Axboe1cad7122012-11-29 21:37:11 +01001247 } else if (td->o.norandommap)
1248 continue;
Jens Axboeceadd592012-02-02 08:41:28 +01001249
Jens Axboe2b386d22008-03-26 10:32:57 +01001250 if (!td->o.softrandommap) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001251 log_err("fio: failed allocating random map. If running"
1252 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +01001253 " option or set 'softrandommap'. Or give"
1254 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +01001255 return 1;
1256 }
Jens Axboe303032a2008-03-26 10:11:10 +01001257
1258 log_info("fio: file %s failed allocating random map. Running "
1259 "job without.\n", f->file_name);
Jens Axboe68727072007-03-15 20:49:25 +01001260 }
1261
1262 return 0;
1263}
1264
Jens Axboe53cdc682006-10-18 11:50:58 +02001265void close_files(struct thread_data *td)
1266{
Jens Axboe0ab8db82006-10-18 17:16:23 +02001267 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +01001268 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +02001269
Jens Axboe2be3eec2009-06-10 09:05:13 +02001270 for_each_file(td, f, i) {
1271 if (fio_file_open(f))
1272 td_io_close_file(td, f);
1273 }
Jens Axboe24ffd2c2008-03-01 15:47:08 +01001274}
1275
1276void close_and_free_files(struct thread_data *td)
1277{
1278 struct fio_file *f;
1279 unsigned int i;
1280
Jens Axboeee56ad52008-02-01 10:30:20 +01001281 dprint(FD_FILE, "close files\n");
1282
Jens Axboe0ab8db82006-10-18 17:16:23 +02001283 for_each_file(td, f, i) {
Castor Fu9187a262014-08-19 09:28:53 -07001284 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
1285 dprint(FD_FILE, "free unlink %s\n", f->file_name);
1286 td_io_unlink_file(td, f);
1287 }
1288
Jens Axboe22a57ba2009-06-09 14:34:35 +02001289 if (fio_file_open(f))
1290 td_io_close_file(td, f);
1291
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +02001292 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +01001293
Jens Axboeb5f4d8b2014-03-20 08:28:11 -06001294 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
1295 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Castor Fu9187a262014-08-19 09:28:53 -07001296 td_io_unlink_file(td, f);
Jens Axboeb5f4d8b2014-03-20 08:28:11 -06001297 }
1298
Jens Axboef17c4392008-03-01 18:40:46 +01001299 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +01001300 f->file_name = NULL;
Jens Axboed55dd042014-12-15 09:38:43 -07001301 if (fio_file_axmap(f)) {
1302 axmap_free(f->io_axmap);
1303 f->io_axmap = NULL;
1304 }
Jens Axboe78d99e62008-03-01 18:41:50 +01001305 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +02001306 }
Jens Axboeb4a6a592006-10-20 13:54:47 +02001307
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001308 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +01001309 free(td->files);
Jens Axboed7df1d12013-03-20 19:57:01 -06001310 free(td->file_locks);
Jens Axboe9efef3c2008-03-06 10:26:25 +01001311 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +02001312 td->files = NULL;
Jens Axboed7df1d12013-03-20 19:57:01 -06001313 td->file_locks = NULL;
Jens Axboe27ddbfa2014-01-22 16:27:32 -08001314 td->o.file_lock_mode = FILE_LOCK_NONE;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001315 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +02001316}
Jens Axboeaf52b342007-03-13 10:07:47 +01001317
Jens Axboee3bab462007-03-13 11:22:09 +01001318static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +01001319{
1320 struct stat sb;
1321
Jens Axboe66159822007-04-16 21:54:24 +02001322 if (!strcmp(f->file_name, "-"))
1323 f->filetype = FIO_TYPE_PIPE;
1324 else
1325 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +01001326
Elliott Hugheseda3a602017-05-19 18:53:02 -07001327#ifdef WIN32
Bruce Cran38921822012-02-22 17:55:16 +00001328 /* \\.\ is the device namespace in Windows, where every file is
1329 * a block device */
1330 if (strncmp(f->file_name, "\\\\.\\", 4) == 0)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001331 f->filetype = FIO_TYPE_BLOCK;
1332#endif
Bruce Cran38921822012-02-22 17:55:16 +00001333
Jens Axboeb30d3952010-02-06 23:36:26 +01001334 if (!stat(f->file_name, &sb)) {
Bruce Cran38921822012-02-22 17:55:16 +00001335 if (S_ISBLK(sb.st_mode))
Elliott Hugheseda3a602017-05-19 18:53:02 -07001336 f->filetype = FIO_TYPE_BLOCK;
Jens Axboeaf52b342007-03-13 10:07:47 +01001337 else if (S_ISCHR(sb.st_mode))
1338 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +02001339 else if (S_ISFIFO(sb.st_mode))
1340 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +01001341 }
1342}
1343
Elliott Hugheseda3a602017-05-19 18:53:02 -07001344static bool __is_already_allocated(const char *fname, bool set)
Jens Axboe90426232014-04-01 12:28:47 -06001345{
1346 struct flist_head *entry;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001347 bool ret;
Jens Axboe90426232014-04-01 12:28:47 -06001348
Elliott Hugheseda3a602017-05-19 18:53:02 -07001349 ret = file_bloom_exists(fname, set);
1350 if (!ret)
1351 return ret;
Jens Axboe90426232014-04-01 12:28:47 -06001352
1353 flist_for_each(entry, &filename_list) {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001354 struct file_name *fn;
Jens Axboe90426232014-04-01 12:28:47 -06001355
Elliott Hugheseda3a602017-05-19 18:53:02 -07001356 fn = flist_entry(entry, struct file_name, list);
1357
1358 if (!strcmp(fn->filename, fname))
1359 return true;
Jens Axboe90426232014-04-01 12:28:47 -06001360 }
1361
Elliott Hugheseda3a602017-05-19 18:53:02 -07001362 return false;
Jens Axboe90426232014-04-01 12:28:47 -06001363}
1364
Elliott Hugheseda3a602017-05-19 18:53:02 -07001365static bool is_already_allocated(const char *fname)
Jens Axboe90426232014-04-01 12:28:47 -06001366{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001367 bool ret;
Jens Axboe90426232014-04-01 12:28:47 -06001368
1369 fio_file_hash_lock();
Elliott Hugheseda3a602017-05-19 18:53:02 -07001370 ret = __is_already_allocated(fname, false);
Jens Axboe90426232014-04-01 12:28:47 -06001371 fio_file_hash_unlock();
Elliott Hugheseda3a602017-05-19 18:53:02 -07001372
Jens Axboe90426232014-04-01 12:28:47 -06001373 return ret;
1374}
1375
Castor Fu190b8f02014-03-20 10:59:29 -07001376static void set_already_allocated(const char *fname)
1377{
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001378 struct file_name *fn;
1379
1380 fn = malloc(sizeof(struct file_name));
1381 fn->filename = strdup(fname);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001382
Jens Axboe90426232014-04-01 12:28:47 -06001383 fio_file_hash_lock();
Elliott Hugheseda3a602017-05-19 18:53:02 -07001384 if (!__is_already_allocated(fname, true)) {
Jens Axboe90426232014-04-01 12:28:47 -06001385 flist_add_tail(&fn->list, &filename_list);
1386 fn = NULL;
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001387 }
Jens Axboe90426232014-04-01 12:28:47 -06001388 fio_file_hash_unlock();
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001389
Jens Axboe90426232014-04-01 12:28:47 -06001390 if (fn) {
1391 free(fn->filename);
1392 free(fn);
1393 }
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001394}
1395
Castor Fu190b8f02014-03-20 10:59:29 -07001396static void free_already_allocated(void)
1397{
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001398 struct flist_head *entry, *tmp;
1399 struct file_name *fn;
1400
Jens Axboe90426232014-04-01 12:28:47 -06001401 if (flist_empty(&filename_list))
1402 return;
1403
1404 fio_file_hash_lock();
1405 flist_for_each_safe(entry, tmp, &filename_list) {
1406 fn = flist_entry(entry, struct file_name, list);
1407 free(fn->filename);
1408 flist_del(&fn->list);
1409 free(fn);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001410 }
Jens Axboe90426232014-04-01 12:28:47 -06001411
1412 fio_file_hash_unlock();
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001413}
1414
Jens Axboe7b5cb702014-04-01 16:37:03 -06001415static struct fio_file *alloc_new_file(struct thread_data *td)
1416{
1417 struct fio_file *f;
1418
1419 f = smalloc(sizeof(*f));
1420 if (!f) {
Jens Axboe7b5cb702014-04-01 16:37:03 -06001421 assert(0);
1422 return NULL;
1423 }
1424
1425 f->fd = -1;
1426 f->shadow_fd = -1;
1427 fio_file_reset(td, f);
1428 return f;
1429}
1430
Elliott Hugheseda3a602017-05-19 18:53:02 -07001431bool exists_and_not_regfile(const char *filename)
1432{
1433 struct stat sb;
1434
1435 if (lstat(filename, &sb) == -1)
1436 return false;
1437
1438#ifndef WIN32 /* NOT Windows */
1439 if (S_ISREG(sb.st_mode))
1440 return false;
1441#else
1442 /* \\.\ is the device namespace in Windows, where every file
1443 * is a device node */
1444 if (S_ISREG(sb.st_mode) && strncmp(filename, "\\\\.\\", 4) != 0)
1445 return false;
1446#endif
1447
1448 return true;
1449}
1450
Jens Axboe5903e7b2014-02-26 13:42:13 -08001451int add_file(struct thread_data *td, const char *fname, int numjob, int inc)
Jens Axboeaf52b342007-03-13 10:07:47 +01001452{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +01001453 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +01001454 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +01001455 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +01001456 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +01001457
Jens Axboeee56ad52008-02-01 10:30:20 +01001458 dprint(FD_FILE, "add file %s\n", fname);
1459
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001460 if (td->o.directory)
Elliott Hugheseda3a602017-05-19 18:53:02 -07001461 len = set_name_idx(file_name, PATH_MAX, td->o.directory, numjob,
1462 td->o.unique_filename);
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001463
1464 sprintf(file_name + len, "%s", fname);
1465
1466 /* clean cloned siblings using existing files */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001467 if (numjob && is_already_allocated(file_name) &&
1468 !exists_and_not_regfile(fname))
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001469 return 0;
1470
Jens Axboe7b5cb702014-04-01 16:37:03 -06001471 f = alloc_new_file(td);
Jens Axboebd0ee742007-03-23 14:26:23 +01001472
Jens Axboefc99bc02009-03-04 15:27:42 +01001473 if (td->files_size <= td->files_index) {
Jianpeng Ma1983e322013-01-10 13:19:27 +01001474 unsigned int new_size = td->o.nr_files + 1;
Jens Axboe126d65c2008-03-01 18:04:31 +01001475
Jens Axboefc99bc02009-03-04 15:27:42 +01001476 dprint(FD_FILE, "resize file array to %d files\n", new_size);
1477
1478 td->files = realloc(td->files, new_size * sizeof(f));
Jianpeng Mad537c082013-01-11 08:52:55 +01001479 if (td->files == NULL) {
1480 log_err("fio: realloc OOM\n");
1481 assert(0);
1482 }
Jens Axboed7df1d12013-03-20 19:57:01 -06001483 if (td->o.file_lock_mode != FILE_LOCK_NONE) {
1484 td->file_locks = realloc(td->file_locks, new_size);
1485 if (!td->file_locks) {
1486 log_err("fio: realloc OOM\n");
1487 assert(0);
1488 }
1489 td->file_locks[cur_files] = FILE_LOCK_NONE;
1490 }
Jens Axboefc99bc02009-03-04 15:27:42 +01001491 td->files_size = new_size;
1492 }
Jens Axboe8bb76792009-03-04 15:37:52 +01001493 td->files[cur_files] = f;
Shaohua Li89ac1d42012-06-11 08:56:32 +02001494 f->fileno = cur_files;
Jens Axboe126d65c2008-03-01 18:04:31 +01001495
Jens Axboe07eb79d2007-04-12 13:02:38 +02001496 /*
1497 * init function, io engine may not be loaded yet
1498 */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001499 if (td->io_ops && td_ioengine_flagged(td, FIO_DISKLESSIO))
Jens Axboe07eb79d2007-04-12 13:02:38 +02001500 f->real_file_size = -1ULL;
1501
Jens Axboef17c4392008-03-01 18:40:46 +01001502 f->file_name = smalloc_strdup(file_name);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001503 if (!f->file_name)
Jens Axboec48c0be2008-07-31 19:55:02 +02001504 assert(0);
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001505
Jens Axboee3bab462007-03-13 11:22:09 +01001506 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +01001507
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001508 switch (td->o.file_lock_mode) {
1509 case FILE_LOCK_NONE:
1510 break;
1511 case FILE_LOCK_READWRITE:
Jens Axboed7df1d12013-03-20 19:57:01 -06001512 f->rwlock = fio_rwlock_init();
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001513 break;
1514 case FILE_LOCK_EXCLUSIVE:
Jens Axboe521da522012-08-02 11:21:36 +02001515 f->lock = fio_mutex_init(FIO_MUTEX_UNLOCKED);
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001516 break;
1517 default:
1518 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
1519 assert(0);
1520 }
Jens Axboe29c13492008-03-01 19:25:20 +01001521
Jens Axboe7b4e4fe2007-03-13 12:51:40 +01001522 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +01001523 if (f->filetype == FIO_TYPE_FILE)
1524 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +02001525
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001526 set_already_allocated(file_name);
1527
Jens Axboe5903e7b2014-02-26 13:42:13 -08001528 if (inc)
1529 td->o.nr_files++;
1530
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001531 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
1532 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +01001533
Jens Axboef29b25a2007-07-23 08:56:43 +02001534 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +01001535}
Jens Axboe0ad920e2007-03-13 11:06:45 +01001536
Jens Axboe49ffb4a2010-08-24 15:01:37 +02001537int add_file_exclusive(struct thread_data *td, const char *fname)
1538{
1539 struct fio_file *f;
1540 unsigned int i;
1541
1542 for_each_file(td, f, i) {
1543 if (!strcmp(f->file_name, fname))
1544 return i;
1545 }
1546
Jens Axboe5903e7b2014-02-26 13:42:13 -08001547 return add_file(td, fname, 0, 1);
Jens Axboe49ffb4a2010-08-24 15:01:37 +02001548}
1549
Jens Axboe0ad920e2007-03-13 11:06:45 +01001550void get_file(struct fio_file *f)
1551{
Jens Axboe8172fe92008-02-01 21:51:02 +01001552 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboed6aed792009-06-03 08:41:15 +02001553 assert(fio_file_open(f));
Jens Axboe0ad920e2007-03-13 11:06:45 +01001554 f->references++;
1555}
1556
Jens Axboe6977bcd2008-03-01 15:55:36 +01001557int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +01001558{
Jens Axboe98e1ac42008-03-06 11:56:48 +01001559 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +01001560
Jens Axboe8172fe92008-02-01 21:51:02 +01001561 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +01001562
Jens Axboe22a57ba2009-06-09 14:34:35 +02001563 if (!fio_file_open(f)) {
1564 assert(f->fd == -1);
Jens Axboe6977bcd2008-03-01 15:55:36 +01001565 return 0;
Jens Axboe22a57ba2009-06-09 14:34:35 +02001566 }
Jens Axboe0ad920e2007-03-13 11:06:45 +01001567
1568 assert(f->references);
1569 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +01001570 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +01001571
Jens Axboe71b84ca2014-04-14 12:01:45 -06001572 if (should_fsync(td) && td->o.fsync_on_close) {
Jens Axboe98e1ac42008-03-06 11:56:48 +01001573 f_ret = fsync(f->fd);
Jens Axboe71b84ca2014-04-14 12:01:45 -06001574 if (f_ret < 0)
1575 f_ret = errno;
1576 }
Jens Axboeebb14152007-03-13 14:42:15 +01001577
Jens Axboe0ad920e2007-03-13 11:06:45 +01001578 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +01001579 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +02001580
Jens Axboe98e1ac42008-03-06 11:56:48 +01001581 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +02001582 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +01001583
Jens Axboe0ad920e2007-03-13 11:06:45 +01001584 td->nr_open_files--;
Jens Axboed6aed792009-06-03 08:41:15 +02001585 fio_file_clear_open(f);
Jens Axboe22a57ba2009-06-09 14:34:35 +02001586 assert(f->fd == -1);
Jens Axboe6977bcd2008-03-01 15:55:36 +01001587 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +01001588}
Jens Axboebbf6b542007-03-13 15:28:55 +01001589
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001590void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001591{
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001592 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1593 return;
Jens Axboe29c13492008-03-01 19:25:20 +01001594
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001595 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
1596 if (ddir == DDIR_READ)
Jens Axboed7df1d12013-03-20 19:57:01 -06001597 fio_rwlock_read(f->rwlock);
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001598 else
Jens Axboed7df1d12013-03-20 19:57:01 -06001599 fio_rwlock_write(f->rwlock);
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001600 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1601 fio_mutex_down(f->lock);
1602
Jens Axboed7df1d12013-03-20 19:57:01 -06001603 td->file_locks[f->fileno] = td->o.file_lock_mode;
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001604}
1605
1606void unlock_file(struct thread_data *td, struct fio_file *f)
1607{
1608 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1609 return;
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001610
Jens Axboed7df1d12013-03-20 19:57:01 -06001611 if (td->o.file_lock_mode == FILE_LOCK_READWRITE)
1612 fio_rwlock_unlock(f->rwlock);
1613 else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001614 fio_mutex_up(f->lock);
Jens Axboed7df1d12013-03-20 19:57:01 -06001615
1616 td->file_locks[f->fileno] = FILE_LOCK_NONE;
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001617}
1618
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001619void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001620{
Jens Axboef2a28032014-02-11 09:12:06 -07001621 if (td->o.file_lock_mode == FILE_LOCK_NONE || !td->file_locks)
Jens Axboe27ddbfa2014-01-22 16:27:32 -08001622 return;
Jens Axboed7df1d12013-03-20 19:57:01 -06001623 if (td->file_locks[f->fileno] != FILE_LOCK_NONE)
1624 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001625}
1626
Jens Axboebbf6b542007-03-13 15:28:55 +01001627static int recurse_dir(struct thread_data *td, const char *dirname)
1628{
1629 struct dirent *dir;
1630 int ret = 0;
1631 DIR *D;
1632
1633 D = opendir(dirname);
1634 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +02001635 char buf[FIO_VERROR_SIZE];
1636
Ken Raeburn98ffb8f2013-01-30 22:31:09 +01001637 snprintf(buf, FIO_VERROR_SIZE, "opendir(%s)", dirname);
Jens Axboe0ddb2702007-03-27 19:43:53 +02001638 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +01001639 return 1;
1640 }
1641
1642 while ((dir = readdir(D)) != NULL) {
1643 char full_path[PATH_MAX];
1644 struct stat sb;
1645
Jens Axboee85b2b82007-03-14 09:39:06 +01001646 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
1647 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +01001648
Bruce Cranb9fd7882012-02-20 17:01:46 +00001649 sprintf(full_path, "%s%s%s", dirname, FIO_OS_PATH_SEPARATOR, dir->d_name);
Jens Axboebbf6b542007-03-13 15:28:55 +01001650
1651 if (lstat(full_path, &sb) == -1) {
1652 if (errno != ENOENT) {
1653 td_verror(td, errno, "stat");
Jens Axboe68ace9e2014-04-11 11:24:00 -06001654 ret = 1;
1655 break;
Jens Axboebbf6b542007-03-13 15:28:55 +01001656 }
1657 }
1658
1659 if (S_ISREG(sb.st_mode)) {
Jens Axboe5903e7b2014-02-26 13:42:13 -08001660 add_file(td, full_path, 0, 1);
Jens Axboebbf6b542007-03-13 15:28:55 +01001661 continue;
1662 }
Jens Axboe0ddb2702007-03-27 19:43:53 +02001663 if (!S_ISDIR(sb.st_mode))
1664 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +01001665
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001666 ret = recurse_dir(td, full_path);
1667 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +01001668 break;
1669 }
1670
1671 closedir(D);
1672 return ret;
1673}
1674
1675int add_dir_files(struct thread_data *td, const char *path)
1676{
Jens Axboe0ddb2702007-03-27 19:43:53 +02001677 int ret = recurse_dir(td, path);
1678
1679 if (!ret)
1680 log_info("fio: opendir added %d files\n", td->o.nr_files);
1681
1682 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +01001683}
Jens Axboecade3ef2007-03-23 15:29:45 +01001684
1685void dup_files(struct thread_data *td, struct thread_data *org)
1686{
1687 struct fio_file *f;
1688 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +01001689
1690 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +01001691
1692 if (!org->files)
1693 return;
1694
Jens Axboe9efef3c2008-03-06 10:26:25 +01001695 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +01001696
Jens Axboed7df1d12013-03-20 19:57:01 -06001697 if (td->o.file_lock_mode != FILE_LOCK_NONE)
1698 td->file_locks = malloc(org->files_index);
1699
Jens Axboe9efef3c2008-03-06 10:26:25 +01001700 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +01001701 struct fio_file *__f;
1702
Jens Axboe7b5cb702014-04-01 16:37:03 -06001703 __f = alloc_new_file(td);
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001704
Aaron Carrollbc3456f2008-06-25 09:20:37 +02001705 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +01001706 __f->file_name = smalloc_strdup(f->file_name);
Elliott Hugheseda3a602017-05-19 18:53:02 -07001707 if (!__f->file_name)
Jens Axboec48c0be2008-07-31 19:55:02 +02001708 assert(0);
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001709
Aaron Carrollbc3456f2008-06-25 09:20:37 +02001710 __f->filetype = f->filetype;
1711 }
Jens Axboeb0fe4212008-03-01 18:22:27 +01001712
Jens Axboe67ad9242014-02-07 10:56:15 -07001713 if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1714 __f->lock = f->lock;
1715 else if (td->o.file_lock_mode == FILE_LOCK_READWRITE)
1716 __f->rwlock = f->rwlock;
1717
Jens Axboeb0fe4212008-03-01 18:22:27 +01001718 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +01001719 }
1720}
Jens Axboef29b25a2007-07-23 08:56:43 +02001721
1722/*
1723 * Returns the index that matches the filename, or -1 if not there
1724 */
1725int get_fileno(struct thread_data *td, const char *fname)
1726{
1727 struct fio_file *f;
1728 unsigned int i;
1729
1730 for_each_file(td, f, i)
1731 if (!strcmp(f->file_name, fname))
1732 return i;
1733
1734 return -1;
1735}
1736
1737/*
1738 * For log usage, where we add/open/close files automatically
1739 */
1740void free_release_files(struct thread_data *td)
1741{
1742 close_files(td);
Jens Axboe4c8e9f32014-06-09 19:52:05 -06001743 td->o.nr_files = 0;
1744 td->o.open_files = 0;
Jens Axboef29b25a2007-07-23 08:56:43 +02001745 td->files_index = 0;
1746 td->nr_normal_files = 0;
1747}
Jens Axboe33c48812013-01-21 09:46:06 -07001748
1749void fio_file_reset(struct thread_data *td, struct fio_file *f)
1750{
Jens Axboe08a99be2014-12-14 19:01:24 -07001751 int i;
1752
1753 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1754 f->last_pos[i] = f->file_offset;
1755 f->last_start[i] = -1ULL;
1756 }
1757
Jens Axboed55dd042014-12-15 09:38:43 -07001758 if (fio_file_axmap(f))
Jens Axboe33c48812013-01-21 09:46:06 -07001759 axmap_reset(f->io_axmap);
Jens Axboed55dd042014-12-15 09:38:43 -07001760 else if (fio_file_lfsr(f))
Jens Axboe33c48812013-01-21 09:46:06 -07001761 lfsr_reset(&f->lfsr, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
1762}
Jens Axboe002fe732014-02-11 08:31:13 -07001763
Elliott Hugheseda3a602017-05-19 18:53:02 -07001764bool fio_files_done(struct thread_data *td)
Jens Axboe002fe732014-02-11 08:31:13 -07001765{
1766 struct fio_file *f;
1767 unsigned int i;
1768
1769 for_each_file(td, f, i)
1770 if (!fio_file_done(f))
Elliott Hugheseda3a602017-05-19 18:53:02 -07001771 return false;
Jens Axboe002fe732014-02-11 08:31:13 -07001772
Elliott Hugheseda3a602017-05-19 18:53:02 -07001773 return true;
Jens Axboe002fe732014-02-11 08:31:13 -07001774}
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001775
1776/* free memory used in initialization phase only */
Castor Fu190b8f02014-03-20 10:59:29 -07001777void filesetup_mem_free(void)
1778{
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001779 free_already_allocated();
1780}