blob: 28580188c1e98fc56aeb73d3e465c6d7d63e1cc2 [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>
Jens Axboe53cdc682006-10-18 11:50:58 +02006#include <sys/stat.h>
7#include <sys/mman.h>
Jens Axboebbf6b542007-03-13 15:28:55 +01008#include <sys/types.h>
Jens Axboe53cdc682006-10-18 11:50:58 +02009
10#include "fio.h"
Jens Axboef17c4392008-03-01 18:40:46 +010011#include "smalloc.h"
Jens Axboe4906e0b2008-03-01 18:59:51 +010012#include "filehash.h"
Jens Axboe53cdc682006-10-18 11:50:58 +020013
Jens Axboe7172cfe2007-07-23 14:36:00 +020014static int root_warn;
15
Jens Axboe3baddf22008-04-04 11:10:30 +020016/*
17 * Leaves f->fd open on success, caller must close
18 */
Jens Axboe7bb48f82007-03-27 15:30:28 +020019static int extend_file(struct thread_data *td, struct fio_file *f)
Jens Axboe25205e92006-10-19 20:50:14 +020020{
Jens Axboeea443652007-03-29 14:52:13 +020021 int r, new_layout = 0, unlink_file = 0, flags;
Jens Axboe25205e92006-10-19 20:50:14 +020022 unsigned long long left;
23 unsigned int bs;
24 char *b;
Jens Axboeb2a15192006-10-18 14:10:42 +020025
Jens Axboe4241ea82007-09-12 08:18:36 +020026 if (read_only) {
27 log_err("fio: refusing extend of file due to read-only\n");
28 return 0;
29 }
30
Jens Axboe507a7022007-03-27 15:52:46 +020031 /*
32 * check if we need to lay the file out complete again. fio
33 * does that for operations involving reads, or for writes
34 * where overwrite is set
35 */
Jens Axboeffdfabd2008-03-26 09:18:14 +010036 if (td_read(td) || (td_write(td) && td->o.overwrite) ||
37 (td_write(td) && td->io_ops->flags & FIO_NOEXTEND))
Jens Axboe507a7022007-03-27 15:52:46 +020038 new_layout = 1;
Jens Axboeea443652007-03-29 14:52:13 +020039 if (td_write(td) && !td->o.overwrite)
40 unlink_file = 1;
Jens Axboe507a7022007-03-27 15:52:46 +020041
Jens Axboe6ae1f572008-02-21 10:20:00 +010042 if (unlink_file || new_layout) {
Jens Axboebd199f22008-03-26 09:57:18 +010043 dprint(FD_FILE, "layout unlink %s\n", f->file_name);
Zhang, Yanmin982016d2008-02-26 15:35:52 +010044 if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
Jens Axboe7bb48f82007-03-27 15:30:28 +020045 td_verror(td, errno, "unlink");
46 return 1;
47 }
48 }
49
Jens Axboe507a7022007-03-27 15:52:46 +020050 flags = O_WRONLY | O_CREAT;
51 if (new_layout)
52 flags |= O_TRUNC;
53
Jens Axboeee56ad52008-02-01 10:30:20 +010054 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
Jens Axboe507a7022007-03-27 15:52:46 +020055 f->fd = open(f->file_name, flags, 0644);
Jens Axboe53cdc682006-10-18 11:50:58 +020056 if (f->fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010057 td_verror(td, errno, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +020058 return 1;
59 }
60
Shawn Lewisfc74ac12008-01-11 09:45:11 +010061 if (!new_layout)
62 goto done;
63
Jens Axboeee56ad52008-02-01 10:30:20 +010064 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
65 f->real_file_size);
Jens Axboe7bb48f82007-03-27 15:30:28 +020066 if (ftruncate(f->fd, f->real_file_size) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +010067 td_verror(td, errno, "ftruncate");
Jens Axboe53cdc682006-10-18 11:50:58 +020068 goto err;
69 }
70
Jens Axboefffca022008-06-02 12:23:40 +020071#ifdef FIO_HAVE_FALLOCATE
Jens Axboeee56ad52008-02-01 10:30:20 +010072 dprint(FD_FILE, "fallocate file %s, size %llu\n", f->file_name,
73 f->real_file_size);
Jens Axboe739097e2008-05-30 22:58:37 +020074 r = posix_fallocate(f->fd, 0, f->real_file_size);
75 if (r < 0)
Jens Axboe65942472008-06-02 10:37:36 +020076 log_err("fio: posix_fallocate fails: %s\n", strerror(-r));
Jens Axboefffca022008-06-02 12:23:40 +020077#endif
Jens Axboe40f82982006-10-25 11:21:05 +020078
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010079 b = malloc(td->o.max_bs[DDIR_WRITE]);
80 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020081
Jens Axboe7bb48f82007-03-27 15:30:28 +020082 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +020083 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010084 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020085 if (bs > left)
86 bs = left;
87
88 r = write(f->fd, b, bs);
89
90 if (r == (int) bs) {
91 left -= bs;
92 continue;
93 } else {
94 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010095 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020096 else
Jens Axboee1161c32007-02-22 19:36:48 +010097 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020098
99 break;
100 }
101 }
102
Jens Axboeffdfabd2008-03-26 09:18:14 +0100103 if (td->terminate) {
104 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
Jens Axboe53cdc682006-10-18 11:50:58 +0200105 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100106 } else if (td->o.create_fsync) {
Jens Axboe98e1ac42008-03-06 11:56:48 +0100107 if (fsync(f->fd) < 0) {
108 td_verror(td, errno, "fsync");
109 goto err;
110 }
111 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200112
113 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200114done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200115 return 0;
116err:
117 close(f->fd);
118 f->fd = -1;
119 return 1;
120}
121
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200122static int pre_read_file(struct thread_data *td, struct fio_file *f)
123{
124 int r;
125 unsigned long long left;
126 unsigned int bs;
127 char *b;
128
129 bs = td->o.max_bs[DDIR_READ];
130 b = malloc(bs);
131 memset(b, 0, bs);
132
133 lseek(f->fd, f->file_offset, SEEK_SET);
134 left = f->io_size;
135
136 while (left && !td->terminate) {
137 if (bs > left)
138 bs = left;
139
140 r = read(f->fd, b, bs);
141
142 if (r == (int) bs) {
143 left -= bs;
144 continue;
145 } else {
146 td_verror(td, EIO, "pre_read");
147 break;
148 }
149 }
150
151 free(b);
152 return 0;
153}
154
Jens Axboe7bb48f82007-03-27 15:30:28 +0200155static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100156{
Jens Axboedc873b62008-06-04 20:13:04 +0200157 unsigned long long ret, sized;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100158 long r;
159
Jens Axboe9c60ce62007-03-15 09:14:47 +0100160 r = os_random_long(&td->file_size_state);
Jens Axboedc873b62008-06-04 20:13:04 +0200161 sized = td->o.file_size_high - td->o.file_size_low;
162 ret = (unsigned long long) ((double) sized * (r / (OS_RAND_MAX + 1.0)));
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100163 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100164 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100165 return ret;
166}
167
Jens Axboe53cdc682006-10-18 11:50:58 +0200168static int file_size(struct thread_data *td, struct fio_file *f)
169{
170 struct stat st;
171
Jens Axboedf9c26b2009-03-05 10:13:58 +0100172 if (stat(f->file_name, &st) == -1) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200173 td_verror(td, errno, "fstat");
174 return 1;
175 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200176
Jens Axboe7bb48f82007-03-27 15:30:28 +0200177 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200178 return 0;
179}
180
181static int bdev_size(struct thread_data *td, struct fio_file *f)
182{
183 unsigned long long bytes;
184 int r;
185
Jens Axboedf9c26b2009-03-05 10:13:58 +0100186 if (td->io_ops->open_file(td, f)) {
187 log_err("fio: failed opening blockdev %s for size check\n",
188 f->file_name);
189 return 1;
190 }
191
Jens Axboe53cdc682006-10-18 11:50:58 +0200192 r = blockdev_size(f->fd, &bytes);
193 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100194 td_verror(td, r, "blockdev_size");
Jens Axboedf9c26b2009-03-05 10:13:58 +0100195 goto err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200196 }
197
Jens Axboe7ab077a2009-02-02 15:07:37 +0100198 if (!bytes) {
199 log_err("%s: zero sized block device?\n", f->file_name);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100200 goto err;
Jens Axboe7ab077a2009-02-02 15:07:37 +0100201 }
202
Jens Axboe53cdc682006-10-18 11:50:58 +0200203 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200204 return 0;
Jens Axboedf9c26b2009-03-05 10:13:58 +0100205err:
206 td->io_ops->close_file(td, f);
207 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200208}
209
210static int get_file_size(struct thread_data *td, struct fio_file *f)
211{
212 int ret = 0;
213
Jens Axboe409b3412007-03-28 09:57:01 +0200214 if (f->flags & FIO_SIZE_KNOWN)
215 return 0;
216
Jens Axboe7bb48f82007-03-27 15:30:28 +0200217 if (f->filetype == FIO_TYPE_FILE)
218 ret = file_size(td, f);
219 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200220 ret = bdev_size(td, f);
221 else
222 f->real_file_size = -1;
223
224 if (ret)
225 return ret;
226
227 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100228 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
229 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200230 return 1;
231 }
232
Jens Axboe409b3412007-03-28 09:57:01 +0200233 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200234 return 0;
235}
236
Jens Axboe3baddf22008-04-04 11:10:30 +0200237static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
238 unsigned long long off,
239 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200240{
241 int ret = 0;
242
Jens Axboe3baddf22008-04-04 11:10:30 +0200243 if (len == -1ULL)
244 len = f->io_size;
245 if (off == -1ULL)
246 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100247
Jens Axboe3baddf22008-04-04 11:10:30 +0200248 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
249 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100250
Jens Axboee5b401d2006-10-18 16:03:40 +0200251 /*
252 * FIXME: add blockdev flushing too
253 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100254 if (f->mmap)
Jens Axboe3baddf22008-04-04 11:10:30 +0200255 ret = madvise(f->mmap, len, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100256 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200257 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100258 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100259 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200260 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200261 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100262 log_err("fio: only root may flush block "
263 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200264 root_warn = 1;
265 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200266 ret = 0;
267 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200268 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200269 ret = 0;
270
271 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100272 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200273 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200274 } else if (ret > 0) {
275 td_verror(td, ret, "invalidate_cache");
276 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200277 }
278
Jens Axboead2da602007-02-26 12:33:27 +0100279 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200280
281}
282
283int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
284{
Jens Axboea5fb4612008-05-28 10:54:01 +0200285 if (!(f->flags & FIO_FILE_OPEN))
286 return 0;
287
Jens Axboe3baddf22008-04-04 11:10:30 +0200288 return __file_invalidate_cache(td, f, -1, -1);
Jens Axboee5b401d2006-10-18 16:03:40 +0200289}
290
Jens Axboe6977bcd2008-03-01 15:55:36 +0100291int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200292{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100293 int ret = 0;
294
Jens Axboeee56ad52008-02-01 10:30:20 +0100295 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100296
297 remove_file_hash(f);
298
Jens Axboe6977bcd2008-03-01 15:55:36 +0100299 if (close(f->fd) < 0)
300 ret = errno;
301
Jens Axboeb5af8292007-03-08 12:43:13 +0100302 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100303 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200304}
305
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100306static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200307{
Jens Axboe29c13492008-03-01 19:25:20 +0100308 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100309 int from_hash;
310
311 __f = lookup_file_hash(f->file_name);
312 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100313 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100314 /*
315 * racy, need the __f->lock locked
316 */
317 f->lock = __f->lock;
318 f->lock_owner = __f->lock_owner;
319 f->lock_batch = __f->lock_batch;
320 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100321 from_hash = 1;
322 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100323 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100324 from_hash = 0;
325 }
326
Jens Axboee8670ef2008-03-06 12:06:30 +0100327 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100328 return from_hash;
329}
330
331int generic_open_file(struct thread_data *td, struct fio_file *f)
332{
Jens Axboe66159822007-04-16 21:54:24 +0200333 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200334 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100335 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200336
Jens Axboeee56ad52008-02-01 10:30:20 +0100337 dprint(FD_FILE, "fd open %s\n", f->file_name);
338
Jens Axboe66159822007-04-16 21:54:24 +0200339 if (!strcmp(f->file_name, "-")) {
340 if (td_rw(td)) {
341 log_err("fio: can't read/write to stdin/out\n");
342 return 1;
343 }
344 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200345
346 /*
347 * move output logging to stderr, if we are writing to stdout
348 */
349 if (td_write(td))
350 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200351 }
352
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100353 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100354 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100355 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100356 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200357 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200358 flags |= FIO_O_NOATIME;
Jens Axboe814452b2009-03-04 12:53:13 +0100359 if (td->o.create_on_open)
360 flags |= O_CREAT;
Jens Axboe7abf8332006-11-23 15:01:19 +0100361
Aaron Carroll056f3452007-11-26 09:08:53 +0100362open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200363 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100364 if (!read_only)
365 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200366
Jens Axboeaf52b342007-03-13 10:07:47 +0100367 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100368 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100369
Jens Axboe66159822007-04-16 21:54:24 +0200370 if (is_std)
371 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100372 else
373 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100374 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200375 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100376 flags |= O_RDWR;
377 else
378 flags |= O_RDONLY;
379
Jens Axboe66159822007-04-16 21:54:24 +0200380 if (is_std)
381 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100382 else
383 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200384 }
385
386 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100387 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100388 int __e = errno;
389
Jens Axboe5921e802008-05-30 15:02:38 +0200390 if (errno == EPERM && (flags & FIO_O_NOATIME)) {
391 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100392 goto open_again;
393 }
394
Jens Axboee8670ef2008-03-06 12:06:30 +0100395 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100396
397 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200398 }
399
Jens Axboe29c13492008-03-01 19:25:20 +0100400 if (!from_hash && f->fd != -1) {
401 if (add_file_hash(f)) {
402 int ret;
403
404 /*
405 * OK to ignore, we haven't done anything with it
406 */
407 ret = generic_close_file(td, f);
408 goto open_again;
409 }
410 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100411
Jens Axboe53cdc682006-10-18 11:50:58 +0200412 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100413}
414
Jens Axboedf9c26b2009-03-05 10:13:58 +0100415int generic_get_file_size(struct thread_data *td, struct fio_file *f)
Jens Axboe21972cd2006-11-23 12:39:16 +0100416{
Jens Axboedf9c26b2009-03-05 10:13:58 +0100417 return get_file_size(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100418}
419
Jens Axboe7bb48f82007-03-27 15:30:28 +0200420/*
421 * open/close all files, so that ->real_file_size gets set
422 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200423static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200424{
425 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100426 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200427 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200428
429 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100430 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
431 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100432
Jens Axboe99a47c62009-04-07 22:20:56 +0200433 if (td_io_get_file_size(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200434 if (td->error != ENOENT) {
435 log_err("%s\n", td->verror);
436 err = 1;
437 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200438 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200439 }
Jens Axboe409b3412007-03-28 09:57:01 +0200440
441 if (f->real_file_size == -1ULL && td->o.size)
442 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200443 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200444
445 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200446}
447
448/*
449 * Open the files and setup files sizes, creating files if necessary.
450 */
451int setup_files(struct thread_data *td)
452{
453 unsigned long long total_size, extend_size;
454 struct fio_file *f;
455 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200456 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200457
Jens Axboeee56ad52008-02-01 10:30:20 +0100458 dprint(FD_FILE, "setup files\n");
459
Jens Axboe691c8fb2008-03-07 14:26:26 +0100460 if (td->o.read_iolog_file)
461 return 0;
462
Jens Axboe53cdc682006-10-18 11:50:58 +0200463 /*
464 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200465 * opening the files and setting f->real_file_size to indicate
466 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200467 */
468 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200469 err = td->io_ops->setup(td);
470 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200471 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200472
Jens Axboef1027062006-10-20 10:14:01 +0200473 if (err)
474 return err;
475
Jens Axboe0a7eb122006-10-20 10:36:42 +0200476 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200477 * check sizes. if the files/devices do not exist and the size
478 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200479 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200480 total_size = 0;
481 for_each_file(td, f, i) {
482 if (f->real_file_size == -1ULL)
483 total_size = -1ULL;
484 else
485 total_size += f->real_file_size;
486 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200487
Jens Axboe7bb48f82007-03-27 15:30:28 +0200488 /*
489 * device/file sizes are zero and no size given, punt
490 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200491 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100492 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200493 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100494 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200495 return 1;
496 }
497
Jens Axboe7bb48f82007-03-27 15:30:28 +0200498 /*
499 * now file sizes are known, so we can set ->io_size. if size= is
500 * not given, ->io_size is just equal to ->real_file_size. if size
501 * is given, ->io_size is size / nr_files.
502 */
503 extend_size = total_size = 0;
504 need_extend = 0;
505 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200506 f->file_offset = td->o.start_offset;
507
Jens Axboe7bb48f82007-03-27 15:30:28 +0200508 if (!td->o.file_size_low) {
509 /*
510 * no file size range given, file size is equal to
511 * total size divided by number of files. if that is
512 * zero, set it to the real file size.
513 */
514 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100515 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100516 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200517 } else if (f->real_file_size < td->o.file_size_low ||
518 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100519 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200520 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200521 /*
522 * file size given. if it's fixed, use that. if it's a
523 * range, generate a random size in-between.
524 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100525 if (td->o.file_size_low == td->o.file_size_high) {
526 f->io_size = td->o.file_size_low
527 - f->file_offset;
528 } else {
529 f->io_size = get_rand_file_size(td)
530 - f->file_offset;
531 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100532 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200533 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200534
535 if (f->io_size == -1ULL)
536 total_size = -1ULL;
537 else
538 total_size += f->io_size;
539
540 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200541 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200542 !(td->io_ops->flags & FIO_DISKLESSIO)) {
Jens Axboe814452b2009-03-04 12:53:13 +0100543 if (!td->o.create_on_open) {
544 need_extend++;
545 extend_size += (f->io_size + f->file_offset);
546 } else
547 f->real_file_size = f->io_size + f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200548 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100549 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200550 }
551
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200552 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200553 td->o.size = total_size;
554
555 /*
556 * See if we need to extend some files
557 */
558 if (need_extend) {
559 temp_stall_ts = 1;
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200560 if (!terse_output)
561 log_info("%s: Laying out IO file(s) (%u file(s) /"
562 " %LuMiB)\n", td->o.name, need_extend,
563 extend_size >> 20);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200564
565 for_each_file(td, f, i) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200566 unsigned long long old_len, extend_len;
567
Jens Axboe7bb48f82007-03-27 15:30:28 +0200568 if (!(f->flags & FIO_FILE_EXTEND))
569 continue;
570
Jens Axboe409b3412007-03-28 09:57:01 +0200571 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200572 f->flags &= ~FIO_FILE_EXTEND;
Jens Axboe3baddf22008-04-04 11:10:30 +0200573 old_len = f->real_file_size;
574 extend_len = f->io_size + f->file_offset - old_len;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200575 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200576 err = extend_file(td, f);
577 if (err)
578 break;
Jens Axboe3baddf22008-04-04 11:10:30 +0200579
580 err = __file_invalidate_cache(td, f, old_len,
581 extend_len);
582 close(f->fd);
583 f->fd = -1;
584 if (err)
585 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200586 }
587 temp_stall_ts = 0;
588 }
589
590 if (err)
591 return err;
592
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100593 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200594 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200595
Jens Axboeea966f82007-09-03 10:09:37 +0200596 /*
597 * iolog already set the total io size, if we read back
598 * stored entries.
599 */
600 if (!td->o.read_iolog_file)
601 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200602 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200603err_offset:
604 log_err("%s: you need to specify valid offset=\n", td->o.name);
605 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200606}
607
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200608int pre_read_files(struct thread_data *td)
609{
610 struct fio_file *f;
611 unsigned int i;
612
613 dprint(FD_FILE, "pre_read files\n");
614
615 for_each_file(td, f, i) {
616 pre_read_file(td, f);
617 }
618
619 return 1;
620}
621
Jens Axboe68727072007-03-15 20:49:25 +0100622int init_random_map(struct thread_data *td)
623{
Jens Axboe509eab12007-12-14 12:42:53 +0100624 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100625 struct fio_file *f;
626 unsigned int i;
627
Jens Axboede8dd112008-03-01 15:34:44 +0100628 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100629 return 0;
630
631 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100632 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
633 (unsigned long long) td->o.rw_min_bs;
634 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
635 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200636 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100637 if (f->file_map) {
638 f->num_maps = num_maps;
639 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100640 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100641 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100642 log_err("fio: failed allocating random map. If running"
643 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100644 " option or set 'softrandommap'. Or give"
645 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100646 return 1;
647 }
Jens Axboe303032a2008-03-26 10:11:10 +0100648
649 log_info("fio: file %s failed allocating random map. Running "
650 "job without.\n", f->file_name);
651 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100652 }
653
654 return 0;
655}
656
Jens Axboe53cdc682006-10-18 11:50:58 +0200657void close_files(struct thread_data *td)
658{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200659 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100660 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200661
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100662 for_each_file(td, f, i)
663 td_io_close_file(td, f);
664}
665
666void close_and_free_files(struct thread_data *td)
667{
668 struct fio_file *f;
669 unsigned int i;
670
Jens Axboeee56ad52008-02-01 10:30:20 +0100671 dprint(FD_FILE, "close files\n");
672
Jens Axboe0ab8db82006-10-18 17:16:23 +0200673 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100674 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
675 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100676 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100677 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100678
Jens Axboeb5af8292007-03-08 12:43:13 +0100679 td_io_close_file(td, f);
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +0200680 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100681
Jens Axboef17c4392008-03-01 18:40:46 +0100682 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100683 f->file_name = NULL;
684
Jens Axboec3439812007-03-20 13:54:53 +0100685 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100686 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100687 f->file_map = NULL;
688 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100689 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200690 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200691
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100692 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100693 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100694 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200695 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100696 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200697}
Jens Axboeaf52b342007-03-13 10:07:47 +0100698
Jens Axboee3bab462007-03-13 11:22:09 +0100699static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100700{
701 struct stat sb;
702
Jens Axboe66159822007-04-16 21:54:24 +0200703 if (!strcmp(f->file_name, "-"))
704 f->filetype = FIO_TYPE_PIPE;
705 else
706 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100707
Jens Axboee3bab462007-03-13 11:22:09 +0100708 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100709 if (S_ISBLK(sb.st_mode))
710 f->filetype = FIO_TYPE_BD;
711 else if (S_ISCHR(sb.st_mode))
712 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200713 else if (S_ISFIFO(sb.st_mode))
714 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100715 }
716}
717
Jens Axboef29b25a2007-07-23 08:56:43 +0200718int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100719{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100720 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100721 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100722 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100723 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100724
Jens Axboeee56ad52008-02-01 10:30:20 +0100725 dprint(FD_FILE, "add file %s\n", fname);
726
Jens Axboef17c4392008-03-01 18:40:46 +0100727 f = smalloc(sizeof(*f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200728 if (!f) {
729 log_err("fio: smalloc OOM\n");
730 assert(0);
731 }
732
Jens Axboeaf52b342007-03-13 10:07:47 +0100733 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100734
Jens Axboefc99bc02009-03-04 15:27:42 +0100735 if (td->files_size <= td->files_index) {
Carl Henrik Lunde4b341fc2009-04-20 08:41:37 +0200736 int new_size = td->o.nr_files + 1;
Jens Axboe126d65c2008-03-01 18:04:31 +0100737
Jens Axboefc99bc02009-03-04 15:27:42 +0100738 dprint(FD_FILE, "resize file array to %d files\n", new_size);
739
740 td->files = realloc(td->files, new_size * sizeof(f));
Jens Axboefc99bc02009-03-04 15:27:42 +0100741 td->files_size = new_size;
742 }
Jens Axboe8bb76792009-03-04 15:37:52 +0100743 td->files[cur_files] = f;
Jens Axboe126d65c2008-03-01 18:04:31 +0100744
Jens Axboe07eb79d2007-04-12 13:02:38 +0200745 /*
746 * init function, io engine may not be loaded yet
747 */
748 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
749 f->real_file_size = -1ULL;
750
Jens Axboebd0ee742007-03-23 14:26:23 +0100751 if (td->o.directory)
752 len = sprintf(file_name, "%s/", td->o.directory);
753
754 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100755 f->file_name = smalloc_strdup(file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200756 if (!f->file_name) {
757 log_err("fio: smalloc OOM\n");
758 assert(0);
759 }
760
Jens Axboee3bab462007-03-13 11:22:09 +0100761 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100762
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100763 switch (td->o.file_lock_mode) {
764 case FILE_LOCK_NONE:
765 break;
766 case FILE_LOCK_READWRITE:
767 f->lock = fio_mutex_rw_init();
768 break;
769 case FILE_LOCK_EXCLUSIVE:
770 f->lock = fio_mutex_init(1);
771 break;
772 default:
773 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
774 assert(0);
775 }
Jens Axboe29c13492008-03-01 19:25:20 +0100776
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100777 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100778 if (f->filetype == FIO_TYPE_FILE)
779 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200780
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100781 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
782 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100783
Jens Axboef29b25a2007-07-23 08:56:43 +0200784 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100785}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100786
787void get_file(struct fio_file *f)
788{
Jens Axboe8172fe92008-02-01 21:51:02 +0100789 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200790 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100791 f->references++;
792}
793
Jens Axboe6977bcd2008-03-01 15:55:36 +0100794int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100795{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100796 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100797
Jens Axboe8172fe92008-02-01 21:51:02 +0100798 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100799
Jens Axboe0ad920e2007-03-13 11:06:45 +0100800 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100801 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100802
803 assert(f->references);
804 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100805 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100806
Jens Axboed424d4d2007-04-17 09:05:10 +0200807 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +0100808 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +0100809
Jens Axboe0ad920e2007-03-13 11:06:45 +0100810 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100811 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200812
Jens Axboe98e1ac42008-03-06 11:56:48 +0100813 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +0200814 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +0100815
Jens Axboe0ad920e2007-03-13 11:06:45 +0100816 td->nr_open_files--;
817 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100818 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100819}
Jens Axboebbf6b542007-03-13 15:28:55 +0100820
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100821void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100822{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100823 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
824 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100825
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100826 if (f->lock_owner == td && f->lock_batch--)
827 return;
828
829 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
830 if (ddir == DDIR_READ)
831 fio_mutex_down_read(f->lock);
832 else
833 fio_mutex_down_write(f->lock);
834 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
835 fio_mutex_down(f->lock);
836
837 f->lock_owner = td;
838 f->lock_batch = td->o.lockfile_batch;
839 f->lock_ddir = ddir;
840}
841
842void unlock_file(struct thread_data *td, struct fio_file *f)
843{
844 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
845 return;
846 if (f->lock_batch)
847 return;
848
849 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
850 const int is_read = f->lock_ddir == DDIR_READ;
851 int val = fio_mutex_getval(f->lock);
852
853 if ((is_read && val == 1) || (!is_read && val == -1))
854 f->lock_owner = NULL;
855
856 if (is_read)
857 fio_mutex_up_read(f->lock);
858 else
859 fio_mutex_up_write(f->lock);
860 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
861 int val = fio_mutex_getval(f->lock);
862
863 if (val == 0)
864 f->lock_owner = NULL;
865
866 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100867 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100868}
869
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100870void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100871{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100872 if (f->lock_owner != td)
873 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100874
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100875 f->lock_batch = 0;
876 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100877}
878
Jens Axboebbf6b542007-03-13 15:28:55 +0100879static int recurse_dir(struct thread_data *td, const char *dirname)
880{
881 struct dirent *dir;
882 int ret = 0;
883 DIR *D;
884
885 D = opendir(dirname);
886 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200887 char buf[FIO_VERROR_SIZE];
888
889 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
890 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100891 return 1;
892 }
893
894 while ((dir = readdir(D)) != NULL) {
895 char full_path[PATH_MAX];
896 struct stat sb;
897
Jens Axboee85b2b82007-03-14 09:39:06 +0100898 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
899 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100900
Jens Axboebbf6b542007-03-13 15:28:55 +0100901 sprintf(full_path, "%s/%s", dirname, dir->d_name);
902
903 if (lstat(full_path, &sb) == -1) {
904 if (errno != ENOENT) {
905 td_verror(td, errno, "stat");
906 return 1;
907 }
908 }
909
910 if (S_ISREG(sb.st_mode)) {
911 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100912 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100913 continue;
914 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200915 if (!S_ISDIR(sb.st_mode))
916 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100917
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100918 ret = recurse_dir(td, full_path);
919 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +0100920 break;
921 }
922
923 closedir(D);
924 return ret;
925}
926
927int add_dir_files(struct thread_data *td, const char *path)
928{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200929 int ret = recurse_dir(td, path);
930
931 if (!ret)
932 log_info("fio: opendir added %d files\n", td->o.nr_files);
933
934 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100935}
Jens Axboecade3ef2007-03-23 15:29:45 +0100936
937void dup_files(struct thread_data *td, struct thread_data *org)
938{
939 struct fio_file *f;
940 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +0100941
942 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +0100943
944 if (!org->files)
945 return;
946
Jens Axboe9efef3c2008-03-06 10:26:25 +0100947 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +0100948
Jens Axboe9efef3c2008-03-06 10:26:25 +0100949 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100950 struct fio_file *__f;
951
Jens Axboef17c4392008-03-01 18:40:46 +0100952 __f = smalloc(sizeof(*__f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200953 if (!__f) {
954 log_err("fio: smalloc OOM\n");
955 assert(0);
956 }
957
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200958 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +0100959 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200960 if (!__f->file_name) {
961 log_err("fio: smalloc OOM\n");
962 assert(0);
963 }
964
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200965 __f->filetype = f->filetype;
966 }
Jens Axboeb0fe4212008-03-01 18:22:27 +0100967
968 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100969 }
970}
Jens Axboef29b25a2007-07-23 08:56:43 +0200971
972/*
973 * Returns the index that matches the filename, or -1 if not there
974 */
975int get_fileno(struct thread_data *td, const char *fname)
976{
977 struct fio_file *f;
978 unsigned int i;
979
980 for_each_file(td, f, i)
981 if (!strcmp(f->file_name, fname))
982 return i;
983
984 return -1;
985}
986
987/*
988 * For log usage, where we add/open/close files automatically
989 */
990void free_release_files(struct thread_data *td)
991{
992 close_files(td);
993 td->files_index = 0;
994 td->nr_normal_files = 0;
995}