blob: 9862c7dba06ae26f8f0a99ecf79cd75a61b8f159 [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
Jens Axboe7bb48f82007-03-27 15:30:28 +0200122static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100123{
Jens Axboedc873b62008-06-04 20:13:04 +0200124 unsigned long long ret, sized;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100125 long r;
126
Jens Axboe9c60ce62007-03-15 09:14:47 +0100127 r = os_random_long(&td->file_size_state);
Jens Axboedc873b62008-06-04 20:13:04 +0200128 sized = td->o.file_size_high - td->o.file_size_low;
129 ret = (unsigned long long) ((double) sized * (r / (OS_RAND_MAX + 1.0)));
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100130 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100131 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100132 return ret;
133}
134
Jens Axboe53cdc682006-10-18 11:50:58 +0200135static int file_size(struct thread_data *td, struct fio_file *f)
136{
137 struct stat st;
138
Jens Axboe7bb48f82007-03-27 15:30:28 +0200139 if (fstat(f->fd, &st) == -1) {
140 td_verror(td, errno, "fstat");
141 return 1;
142 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200143
Jens Axboe7bb48f82007-03-27 15:30:28 +0200144 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200145 return 0;
146}
147
148static int bdev_size(struct thread_data *td, struct fio_file *f)
149{
150 unsigned long long bytes;
151 int r;
152
153 r = blockdev_size(f->fd, &bytes);
154 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100155 td_verror(td, r, "blockdev_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200156 return 1;
157 }
158
Jens Axboe7ab077a2009-02-02 15:07:37 +0100159 if (!bytes) {
160 log_err("%s: zero sized block device?\n", f->file_name);
161 return 1;
162 }
163
Jens Axboe53cdc682006-10-18 11:50:58 +0200164 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200165 return 0;
166}
167
168static int get_file_size(struct thread_data *td, struct fio_file *f)
169{
170 int ret = 0;
171
Jens Axboe409b3412007-03-28 09:57:01 +0200172 if (f->flags & FIO_SIZE_KNOWN)
173 return 0;
174
Jens Axboe7bb48f82007-03-27 15:30:28 +0200175 if (f->filetype == FIO_TYPE_FILE)
176 ret = file_size(td, f);
177 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200178 ret = bdev_size(td, f);
179 else
180 f->real_file_size = -1;
181
182 if (ret)
183 return ret;
184
185 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100186 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
187 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200188 return 1;
189 }
190
Jens Axboe409b3412007-03-28 09:57:01 +0200191 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200192 return 0;
193}
194
Jens Axboe3baddf22008-04-04 11:10:30 +0200195static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
196 unsigned long long off,
197 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200198{
199 int ret = 0;
200
Jens Axboe3baddf22008-04-04 11:10:30 +0200201 if (len == -1ULL)
202 len = f->io_size;
203 if (off == -1ULL)
204 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100205
Jens Axboe3baddf22008-04-04 11:10:30 +0200206 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
207 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100208
Jens Axboee5b401d2006-10-18 16:03:40 +0200209 /*
210 * FIXME: add blockdev flushing too
211 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100212 if (f->mmap)
Jens Axboe3baddf22008-04-04 11:10:30 +0200213 ret = madvise(f->mmap, len, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100214 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200215 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100216 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100217 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200218 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200219 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100220 log_err("fio: only root may flush block "
221 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200222 root_warn = 1;
223 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200224 ret = 0;
225 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200226 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200227 ret = 0;
228
229 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100230 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200231 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200232 } else if (ret > 0) {
233 td_verror(td, ret, "invalidate_cache");
234 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200235 }
236
Jens Axboead2da602007-02-26 12:33:27 +0100237 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200238
239}
240
241int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
242{
Jens Axboea5fb4612008-05-28 10:54:01 +0200243 if (!(f->flags & FIO_FILE_OPEN))
244 return 0;
245
Jens Axboe3baddf22008-04-04 11:10:30 +0200246 return __file_invalidate_cache(td, f, -1, -1);
Jens Axboee5b401d2006-10-18 16:03:40 +0200247}
248
Jens Axboe6977bcd2008-03-01 15:55:36 +0100249int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200250{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100251 int ret = 0;
252
Jens Axboeee56ad52008-02-01 10:30:20 +0100253 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100254
255 remove_file_hash(f);
256
Jens Axboe6977bcd2008-03-01 15:55:36 +0100257 if (close(f->fd) < 0)
258 ret = errno;
259
Jens Axboeb5af8292007-03-08 12:43:13 +0100260 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100261 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200262}
263
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100264static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200265{
Jens Axboe29c13492008-03-01 19:25:20 +0100266 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100267 int from_hash;
268
269 __f = lookup_file_hash(f->file_name);
270 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100271 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100272 /*
273 * racy, need the __f->lock locked
274 */
275 f->lock = __f->lock;
276 f->lock_owner = __f->lock_owner;
277 f->lock_batch = __f->lock_batch;
278 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100279 from_hash = 1;
280 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100281 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100282 from_hash = 0;
283 }
284
Jens Axboee8670ef2008-03-06 12:06:30 +0100285 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100286 return from_hash;
287}
288
289int generic_open_file(struct thread_data *td, struct fio_file *f)
290{
Jens Axboe66159822007-04-16 21:54:24 +0200291 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200292 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100293 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200294
Jens Axboeee56ad52008-02-01 10:30:20 +0100295 dprint(FD_FILE, "fd open %s\n", f->file_name);
296
Jens Axboe66159822007-04-16 21:54:24 +0200297 if (!strcmp(f->file_name, "-")) {
298 if (td_rw(td)) {
299 log_err("fio: can't read/write to stdin/out\n");
300 return 1;
301 }
302 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200303
304 /*
305 * move output logging to stderr, if we are writing to stdout
306 */
307 if (td_write(td))
308 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200309 }
310
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100311 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100312 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100313 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100314 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200315 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200316 flags |= FIO_O_NOATIME;
Jens Axboe814452b2009-03-04 12:53:13 +0100317 if (td->o.create_on_open)
318 flags |= O_CREAT;
Jens Axboe7abf8332006-11-23 15:01:19 +0100319
Aaron Carroll056f3452007-11-26 09:08:53 +0100320open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200321 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100322 if (!read_only)
323 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200324
Jens Axboeaf52b342007-03-13 10:07:47 +0100325 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100326 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100327
Jens Axboe66159822007-04-16 21:54:24 +0200328 if (is_std)
329 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100330 else
331 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100332 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200333 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100334 flags |= O_RDWR;
335 else
336 flags |= O_RDONLY;
337
Jens Axboe66159822007-04-16 21:54:24 +0200338 if (is_std)
339 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100340 else
341 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200342 }
343
344 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100345 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100346 int __e = errno;
347
Jens Axboe5921e802008-05-30 15:02:38 +0200348 if (errno == EPERM && (flags & FIO_O_NOATIME)) {
349 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100350 goto open_again;
351 }
352
Jens Axboee8670ef2008-03-06 12:06:30 +0100353 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100354
355 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200356 }
357
Jens Axboeb5af8292007-03-08 12:43:13 +0100358 if (get_file_size(td, f))
359 goto err;
360
Jens Axboe29c13492008-03-01 19:25:20 +0100361 if (!from_hash && f->fd != -1) {
362 if (add_file_hash(f)) {
363 int ret;
364
365 /*
366 * OK to ignore, we haven't done anything with it
367 */
368 ret = generic_close_file(td, f);
369 goto open_again;
370 }
371 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100372
Jens Axboe53cdc682006-10-18 11:50:58 +0200373 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100374err:
375 close(f->fd);
376 return 1;
377}
378
Jens Axboe21972cd2006-11-23 12:39:16 +0100379int open_files(struct thread_data *td)
380{
381 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100382 unsigned int i;
383 int err = 0;
Jens Axboe21972cd2006-11-23 12:39:16 +0100384
Jens Axboeee56ad52008-02-01 10:30:20 +0100385 dprint(FD_FILE, "open files\n");
386
Jens Axboe21972cd2006-11-23 12:39:16 +0100387 for_each_file(td, f, i) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100388 err = td_io_open_file(td, f);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200389 if (err) {
390 if (td->error == EMFILE) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100391 log_err("fio: limited open files to: %d\n",
392 td->nr_open_files);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200393 td->o.open_files = td->nr_open_files;
394 err = 0;
395 clear_error(td);
396 }
Jens Axboe21972cd2006-11-23 12:39:16 +0100397 break;
Jens Axboe9bf27b42007-03-27 19:49:31 +0200398 }
Jens Axboeb5af8292007-03-08 12:43:13 +0100399
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100400 if (td->o.open_files == td->nr_open_files)
Jens Axboeb5af8292007-03-08 12:43:13 +0100401 break;
Jens Axboe21972cd2006-11-23 12:39:16 +0100402 }
403
Jens Axboe7abf8332006-11-23 15:01:19 +0100404 if (!err)
405 return 0;
406
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100407 for_each_file(td, f, i)
Jens Axboeb5af8292007-03-08 12:43:13 +0100408 td_io_close_file(td, f);
Jens Axboe7abf8332006-11-23 15:01:19 +0100409
Jens Axboe21972cd2006-11-23 12:39:16 +0100410 return err;
411}
412
Jens Axboe7bb48f82007-03-27 15:30:28 +0200413/*
414 * open/close all files, so that ->real_file_size gets set
415 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200416static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200417{
418 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100419 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200420 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200421
422 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100423 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
424 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100425
Jens Axboebab3fd52007-04-02 10:34:18 +0200426 if (td->io_ops->open_file(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200427 if (td->error != ENOENT) {
428 log_err("%s\n", td->verror);
429 err = 1;
430 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200431 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200432 } else {
433 if (td->io_ops->close_file)
434 td->io_ops->close_file(td, f);
435 }
Jens Axboe409b3412007-03-28 09:57:01 +0200436
437 if (f->real_file_size == -1ULL && td->o.size)
438 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200439 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200440
441 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200442}
443
444/*
445 * Open the files and setup files sizes, creating files if necessary.
446 */
447int setup_files(struct thread_data *td)
448{
449 unsigned long long total_size, extend_size;
450 struct fio_file *f;
451 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200452 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200453
Jens Axboeee56ad52008-02-01 10:30:20 +0100454 dprint(FD_FILE, "setup files\n");
455
Jens Axboe691c8fb2008-03-07 14:26:26 +0100456 if (td->o.read_iolog_file)
457 return 0;
458
Jens Axboe53cdc682006-10-18 11:50:58 +0200459 /*
460 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200461 * opening the files and setting f->real_file_size to indicate
462 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200463 */
464 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200465 err = td->io_ops->setup(td);
466 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200467 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200468
Jens Axboef1027062006-10-20 10:14:01 +0200469 if (err)
470 return err;
471
Jens Axboe0a7eb122006-10-20 10:36:42 +0200472 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200473 * check sizes. if the files/devices do not exist and the size
474 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200475 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200476 total_size = 0;
477 for_each_file(td, f, i) {
478 if (f->real_file_size == -1ULL)
479 total_size = -1ULL;
480 else
481 total_size += f->real_file_size;
482 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200483
Jens Axboe7bb48f82007-03-27 15:30:28 +0200484 /*
485 * device/file sizes are zero and no size given, punt
486 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200487 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100488 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200489 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100490 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200491 return 1;
492 }
493
Jens Axboe7bb48f82007-03-27 15:30:28 +0200494 /*
495 * now file sizes are known, so we can set ->io_size. if size= is
496 * not given, ->io_size is just equal to ->real_file_size. if size
497 * is given, ->io_size is size / nr_files.
498 */
499 extend_size = total_size = 0;
500 need_extend = 0;
501 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200502 f->file_offset = td->o.start_offset;
503
Jens Axboe7bb48f82007-03-27 15:30:28 +0200504 if (!td->o.file_size_low) {
505 /*
506 * no file size range given, file size is equal to
507 * total size divided by number of files. if that is
508 * zero, set it to the real file size.
509 */
510 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100511 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100512 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200513 } else if (f->real_file_size < td->o.file_size_low ||
514 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100515 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200516 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200517 /*
518 * file size given. if it's fixed, use that. if it's a
519 * range, generate a random size in-between.
520 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100521 if (td->o.file_size_low == td->o.file_size_high) {
522 f->io_size = td->o.file_size_low
523 - f->file_offset;
524 } else {
525 f->io_size = get_rand_file_size(td)
526 - f->file_offset;
527 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100528 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200529 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200530
531 if (f->io_size == -1ULL)
532 total_size = -1ULL;
533 else
534 total_size += f->io_size;
535
536 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200537 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200538 !(td->io_ops->flags & FIO_DISKLESSIO)) {
Jens Axboe814452b2009-03-04 12:53:13 +0100539 if (!td->o.create_on_open) {
540 need_extend++;
541 extend_size += (f->io_size + f->file_offset);
542 } else
543 f->real_file_size = f->io_size + f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200544 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100545 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200546 }
547
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200548 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200549 td->o.size = total_size;
550
551 /*
552 * See if we need to extend some files
553 */
554 if (need_extend) {
555 temp_stall_ts = 1;
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200556 if (!terse_output)
557 log_info("%s: Laying out IO file(s) (%u file(s) /"
558 " %LuMiB)\n", td->o.name, need_extend,
559 extend_size >> 20);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200560
561 for_each_file(td, f, i) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200562 unsigned long long old_len, extend_len;
563
Jens Axboe7bb48f82007-03-27 15:30:28 +0200564 if (!(f->flags & FIO_FILE_EXTEND))
565 continue;
566
Jens Axboe409b3412007-03-28 09:57:01 +0200567 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200568 f->flags &= ~FIO_FILE_EXTEND;
Jens Axboe3baddf22008-04-04 11:10:30 +0200569 old_len = f->real_file_size;
570 extend_len = f->io_size + f->file_offset - old_len;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200571 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200572 err = extend_file(td, f);
573 if (err)
574 break;
Jens Axboe3baddf22008-04-04 11:10:30 +0200575
576 err = __file_invalidate_cache(td, f, old_len,
577 extend_len);
578 close(f->fd);
579 f->fd = -1;
580 if (err)
581 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200582 }
583 temp_stall_ts = 0;
584 }
585
586 if (err)
587 return err;
588
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100589 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200590 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200591
Jens Axboeea966f82007-09-03 10:09:37 +0200592 /*
593 * iolog already set the total io size, if we read back
594 * stored entries.
595 */
596 if (!td->o.read_iolog_file)
597 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200598 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200599err_offset:
600 log_err("%s: you need to specify valid offset=\n", td->o.name);
601 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200602}
603
Jens Axboe68727072007-03-15 20:49:25 +0100604int init_random_map(struct thread_data *td)
605{
Jens Axboe509eab12007-12-14 12:42:53 +0100606 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100607 struct fio_file *f;
608 unsigned int i;
609
Jens Axboede8dd112008-03-01 15:34:44 +0100610 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100611 return 0;
612
613 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100614 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
615 (unsigned long long) td->o.rw_min_bs;
616 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
617 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200618 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100619 if (f->file_map) {
620 f->num_maps = num_maps;
621 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100622 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100623 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100624 log_err("fio: failed allocating random map. If running"
625 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100626 " option or set 'softrandommap'. Or give"
627 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100628 return 1;
629 }
Jens Axboe303032a2008-03-26 10:11:10 +0100630
631 log_info("fio: file %s failed allocating random map. Running "
632 "job without.\n", f->file_name);
633 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100634 }
635
636 return 0;
637}
638
Jens Axboe53cdc682006-10-18 11:50:58 +0200639void close_files(struct thread_data *td)
640{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200641 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100642 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200643
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100644 for_each_file(td, f, i)
645 td_io_close_file(td, f);
646}
647
648void close_and_free_files(struct thread_data *td)
649{
650 struct fio_file *f;
651 unsigned int i;
652
Jens Axboeee56ad52008-02-01 10:30:20 +0100653 dprint(FD_FILE, "close files\n");
654
Jens Axboe0ab8db82006-10-18 17:16:23 +0200655 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100656 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
657 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100658 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100659 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100660
Jens Axboeb5af8292007-03-08 12:43:13 +0100661 td_io_close_file(td, f);
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +0200662 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100663
Jens Axboef17c4392008-03-01 18:40:46 +0100664 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100665 f->file_name = NULL;
666
Jens Axboec3439812007-03-20 13:54:53 +0100667 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100668 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100669 f->file_map = NULL;
670 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100671 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200672 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200673
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100674 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100675 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100676 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200677 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100678 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200679}
Jens Axboeaf52b342007-03-13 10:07:47 +0100680
Jens Axboee3bab462007-03-13 11:22:09 +0100681static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100682{
683 struct stat sb;
684
Jens Axboe66159822007-04-16 21:54:24 +0200685 if (!strcmp(f->file_name, "-"))
686 f->filetype = FIO_TYPE_PIPE;
687 else
688 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100689
Jens Axboee3bab462007-03-13 11:22:09 +0100690 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100691 if (S_ISBLK(sb.st_mode))
692 f->filetype = FIO_TYPE_BD;
693 else if (S_ISCHR(sb.st_mode))
694 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200695 else if (S_ISFIFO(sb.st_mode))
696 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100697 }
698}
699
Jens Axboef29b25a2007-07-23 08:56:43 +0200700int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100701{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100702 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100703 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100704 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100705 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100706
Jens Axboeee56ad52008-02-01 10:30:20 +0100707 dprint(FD_FILE, "add file %s\n", fname);
708
Jens Axboef17c4392008-03-01 18:40:46 +0100709 f = smalloc(sizeof(*f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200710 if (!f) {
711 log_err("fio: smalloc OOM\n");
712 assert(0);
713 }
714
Jens Axboeaf52b342007-03-13 10:07:47 +0100715 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100716
Jens Axboefc99bc02009-03-04 15:27:42 +0100717 if (td->files_size <= td->files_index) {
718 int new_size = td->o.nr_files;
Jens Axboe126d65c2008-03-01 18:04:31 +0100719
Jens Axboefc99bc02009-03-04 15:27:42 +0100720 dprint(FD_FILE, "resize file array to %d files\n", new_size);
721
722 td->files = realloc(td->files, new_size * sizeof(f));
Jens Axboefc99bc02009-03-04 15:27:42 +0100723 td->files_size = new_size;
724 }
Jens Axboe8bb76792009-03-04 15:37:52 +0100725 td->files[cur_files] = f;
Jens Axboe126d65c2008-03-01 18:04:31 +0100726
Jens Axboe07eb79d2007-04-12 13:02:38 +0200727 /*
728 * init function, io engine may not be loaded yet
729 */
730 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
731 f->real_file_size = -1ULL;
732
Jens Axboebd0ee742007-03-23 14:26:23 +0100733 if (td->o.directory)
734 len = sprintf(file_name, "%s/", td->o.directory);
735
736 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100737 f->file_name = smalloc_strdup(file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200738 if (!f->file_name) {
739 log_err("fio: smalloc OOM\n");
740 assert(0);
741 }
742
Jens Axboee3bab462007-03-13 11:22:09 +0100743 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100744
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100745 switch (td->o.file_lock_mode) {
746 case FILE_LOCK_NONE:
747 break;
748 case FILE_LOCK_READWRITE:
749 f->lock = fio_mutex_rw_init();
750 break;
751 case FILE_LOCK_EXCLUSIVE:
752 f->lock = fio_mutex_init(1);
753 break;
754 default:
755 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
756 assert(0);
757 }
Jens Axboe29c13492008-03-01 19:25:20 +0100758
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100759 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100760 if (f->filetype == FIO_TYPE_FILE)
761 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200762
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100763 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
764 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100765
Jens Axboef29b25a2007-07-23 08:56:43 +0200766 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100767}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100768
769void get_file(struct fio_file *f)
770{
Jens Axboe8172fe92008-02-01 21:51:02 +0100771 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200772 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100773 f->references++;
774}
775
Jens Axboe6977bcd2008-03-01 15:55:36 +0100776int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100777{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100778 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100779
Jens Axboe8172fe92008-02-01 21:51:02 +0100780 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100781
Jens Axboe0ad920e2007-03-13 11:06:45 +0100782 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100783 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100784
785 assert(f->references);
786 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100787 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100788
Jens Axboed424d4d2007-04-17 09:05:10 +0200789 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +0100790 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +0100791
Jens Axboe0ad920e2007-03-13 11:06:45 +0100792 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100793 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200794
Jens Axboe98e1ac42008-03-06 11:56:48 +0100795 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +0200796 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +0100797
Jens Axboe0ad920e2007-03-13 11:06:45 +0100798 td->nr_open_files--;
799 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100800 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100801}
Jens Axboebbf6b542007-03-13 15:28:55 +0100802
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100803void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100804{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100805 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
806 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100807
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100808 if (f->lock_owner == td && f->lock_batch--)
809 return;
810
811 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
812 if (ddir == DDIR_READ)
813 fio_mutex_down_read(f->lock);
814 else
815 fio_mutex_down_write(f->lock);
816 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
817 fio_mutex_down(f->lock);
818
819 f->lock_owner = td;
820 f->lock_batch = td->o.lockfile_batch;
821 f->lock_ddir = ddir;
822}
823
824void unlock_file(struct thread_data *td, struct fio_file *f)
825{
826 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
827 return;
828 if (f->lock_batch)
829 return;
830
831 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
832 const int is_read = f->lock_ddir == DDIR_READ;
833 int val = fio_mutex_getval(f->lock);
834
835 if ((is_read && val == 1) || (!is_read && val == -1))
836 f->lock_owner = NULL;
837
838 if (is_read)
839 fio_mutex_up_read(f->lock);
840 else
841 fio_mutex_up_write(f->lock);
842 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
843 int val = fio_mutex_getval(f->lock);
844
845 if (val == 0)
846 f->lock_owner = NULL;
847
848 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100849 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100850}
851
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100852void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100853{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100854 if (f->lock_owner != td)
855 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100856
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100857 f->lock_batch = 0;
858 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100859}
860
Jens Axboebbf6b542007-03-13 15:28:55 +0100861static int recurse_dir(struct thread_data *td, const char *dirname)
862{
863 struct dirent *dir;
864 int ret = 0;
865 DIR *D;
866
867 D = opendir(dirname);
868 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200869 char buf[FIO_VERROR_SIZE];
870
871 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
872 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100873 return 1;
874 }
875
876 while ((dir = readdir(D)) != NULL) {
877 char full_path[PATH_MAX];
878 struct stat sb;
879
Jens Axboee85b2b82007-03-14 09:39:06 +0100880 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
881 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100882
Jens Axboebbf6b542007-03-13 15:28:55 +0100883 sprintf(full_path, "%s/%s", dirname, dir->d_name);
884
885 if (lstat(full_path, &sb) == -1) {
886 if (errno != ENOENT) {
887 td_verror(td, errno, "stat");
888 return 1;
889 }
890 }
891
892 if (S_ISREG(sb.st_mode)) {
893 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100894 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100895 continue;
896 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200897 if (!S_ISDIR(sb.st_mode))
898 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100899
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100900 ret = recurse_dir(td, full_path);
901 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +0100902 break;
903 }
904
905 closedir(D);
906 return ret;
907}
908
909int add_dir_files(struct thread_data *td, const char *path)
910{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200911 int ret = recurse_dir(td, path);
912
913 if (!ret)
914 log_info("fio: opendir added %d files\n", td->o.nr_files);
915
916 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100917}
Jens Axboecade3ef2007-03-23 15:29:45 +0100918
919void dup_files(struct thread_data *td, struct thread_data *org)
920{
921 struct fio_file *f;
922 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +0100923
924 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +0100925
926 if (!org->files)
927 return;
928
Jens Axboe9efef3c2008-03-06 10:26:25 +0100929 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +0100930
Jens Axboe9efef3c2008-03-06 10:26:25 +0100931 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100932 struct fio_file *__f;
933
Jens Axboef17c4392008-03-01 18:40:46 +0100934 __f = smalloc(sizeof(*__f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200935 if (!__f) {
936 log_err("fio: smalloc OOM\n");
937 assert(0);
938 }
939
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200940 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +0100941 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200942 if (!__f->file_name) {
943 log_err("fio: smalloc OOM\n");
944 assert(0);
945 }
946
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200947 __f->filetype = f->filetype;
948 }
Jens Axboeb0fe4212008-03-01 18:22:27 +0100949
950 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100951 }
952}
Jens Axboef29b25a2007-07-23 08:56:43 +0200953
954/*
955 * Returns the index that matches the filename, or -1 if not there
956 */
957int get_fileno(struct thread_data *td, const char *fname)
958{
959 struct fio_file *f;
960 unsigned int i;
961
962 for_each_file(td, f, i)
963 if (!strcmp(f->file_name, fname))
964 return i;
965
966 return -1;
967}
968
969/*
970 * For log usage, where we add/open/close files automatically
971 */
972void free_release_files(struct thread_data *td)
973{
974 close_files(td);
975 td->files_index = 0;
976 td->nr_normal_files = 0;
977}