blob: d7fbfc3d00275fee2dc76f831c1dc84dca3d03c3 [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 Axboeee56ad52008-02-01 10:30:20 +010071 dprint(FD_FILE, "fallocate file %s, size %llu\n", f->file_name,
72 f->real_file_size);
Jens Axboe739097e2008-05-30 22:58:37 +020073 r = posix_fallocate(f->fd, 0, f->real_file_size);
74 if (r < 0)
75 td_verror(td, -r, "posix_fallocate");
Jens Axboe40f82982006-10-25 11:21:05 +020076
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010077 b = malloc(td->o.max_bs[DDIR_WRITE]);
78 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020079
Jens Axboe7bb48f82007-03-27 15:30:28 +020080 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +020081 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010082 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020083 if (bs > left)
84 bs = left;
85
86 r = write(f->fd, b, bs);
87
88 if (r == (int) bs) {
89 left -= bs;
90 continue;
91 } else {
92 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010093 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020094 else
Jens Axboee1161c32007-02-22 19:36:48 +010095 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020096
97 break;
98 }
99 }
100
Jens Axboeffdfabd2008-03-26 09:18:14 +0100101 if (td->terminate) {
102 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
Jens Axboe53cdc682006-10-18 11:50:58 +0200103 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100104 } else if (td->o.create_fsync) {
Jens Axboe98e1ac42008-03-06 11:56:48 +0100105 if (fsync(f->fd) < 0) {
106 td_verror(td, errno, "fsync");
107 goto err;
108 }
109 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200110
111 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200112done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200113 return 0;
114err:
115 close(f->fd);
116 f->fd = -1;
117 return 1;
118}
119
Jens Axboe7bb48f82007-03-27 15:30:28 +0200120static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100121{
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100122 unsigned long long ret, size_d;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100123 long r;
124
Jens Axboe9c60ce62007-03-15 09:14:47 +0100125 r = os_random_long(&td->file_size_state);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100126 size_d = td->o.file_size_high - td->o.file_size_low;
127 ret = (unsigned long long) ((double) size_d * (r / (RAND_MAX + 1.0)));
128 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100129 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100130 return ret;
131}
132
Jens Axboe53cdc682006-10-18 11:50:58 +0200133static int file_size(struct thread_data *td, struct fio_file *f)
134{
135 struct stat st;
136
Jens Axboe7bb48f82007-03-27 15:30:28 +0200137 if (fstat(f->fd, &st) == -1) {
138 td_verror(td, errno, "fstat");
139 return 1;
140 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200141
Jens Axboe7bb48f82007-03-27 15:30:28 +0200142 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200143 return 0;
144}
145
146static int bdev_size(struct thread_data *td, struct fio_file *f)
147{
148 unsigned long long bytes;
149 int r;
150
151 r = blockdev_size(f->fd, &bytes);
152 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100153 td_verror(td, r, "blockdev_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200154 return 1;
155 }
156
157 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200158 return 0;
159}
160
161static int get_file_size(struct thread_data *td, struct fio_file *f)
162{
163 int ret = 0;
164
Jens Axboe409b3412007-03-28 09:57:01 +0200165 if (f->flags & FIO_SIZE_KNOWN)
166 return 0;
167
Jens Axboe7bb48f82007-03-27 15:30:28 +0200168 if (f->filetype == FIO_TYPE_FILE)
169 ret = file_size(td, f);
170 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200171 ret = bdev_size(td, f);
172 else
173 f->real_file_size = -1;
174
175 if (ret)
176 return ret;
177
178 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100179 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
180 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200181 return 1;
182 }
183
Jens Axboe409b3412007-03-28 09:57:01 +0200184 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200185 return 0;
186}
187
Jens Axboe3baddf22008-04-04 11:10:30 +0200188static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
189 unsigned long long off,
190 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200191{
192 int ret = 0;
193
Jens Axboe3baddf22008-04-04 11:10:30 +0200194 if (len == -1ULL)
195 len = f->io_size;
196 if (off == -1ULL)
197 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100198
Jens Axboe3baddf22008-04-04 11:10:30 +0200199 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
200 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100201
Jens Axboee5b401d2006-10-18 16:03:40 +0200202 /*
203 * FIXME: add blockdev flushing too
204 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100205 if (f->mmap)
Jens Axboe3baddf22008-04-04 11:10:30 +0200206 ret = madvise(f->mmap, len, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100207 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200208 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100209 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100210 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200211 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200212 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100213 log_err("fio: only root may flush block "
214 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200215 root_warn = 1;
216 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200217 ret = 0;
218 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200219 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200220 ret = 0;
221
222 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100223 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200224 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200225 } else if (ret > 0) {
226 td_verror(td, ret, "invalidate_cache");
227 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200228 }
229
Jens Axboead2da602007-02-26 12:33:27 +0100230 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200231
232}
233
234int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
235{
Jens Axboea5fb4612008-05-28 10:54:01 +0200236 if (!(f->flags & FIO_FILE_OPEN))
237 return 0;
238
Jens Axboe3baddf22008-04-04 11:10:30 +0200239 return __file_invalidate_cache(td, f, -1, -1);
Jens Axboee5b401d2006-10-18 16:03:40 +0200240}
241
Jens Axboe6977bcd2008-03-01 15:55:36 +0100242int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200243{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100244 int ret = 0;
245
Jens Axboeee56ad52008-02-01 10:30:20 +0100246 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100247
248 remove_file_hash(f);
249
Jens Axboe6977bcd2008-03-01 15:55:36 +0100250 if (close(f->fd) < 0)
251 ret = errno;
252
Jens Axboeb5af8292007-03-08 12:43:13 +0100253 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100254 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200255}
256
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100257static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200258{
Jens Axboe29c13492008-03-01 19:25:20 +0100259 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100260 int from_hash;
261
262 __f = lookup_file_hash(f->file_name);
263 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100264 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100265 /*
266 * racy, need the __f->lock locked
267 */
268 f->lock = __f->lock;
269 f->lock_owner = __f->lock_owner;
270 f->lock_batch = __f->lock_batch;
271 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100272 from_hash = 1;
273 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100274 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100275 from_hash = 0;
276 }
277
Jens Axboee8670ef2008-03-06 12:06:30 +0100278 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100279 return from_hash;
280}
281
282int generic_open_file(struct thread_data *td, struct fio_file *f)
283{
Jens Axboe66159822007-04-16 21:54:24 +0200284 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200285 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100286 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200287
Jens Axboeee56ad52008-02-01 10:30:20 +0100288 dprint(FD_FILE, "fd open %s\n", f->file_name);
289
Jens Axboe66159822007-04-16 21:54:24 +0200290 if (!strcmp(f->file_name, "-")) {
291 if (td_rw(td)) {
292 log_err("fio: can't read/write to stdin/out\n");
293 return 1;
294 }
295 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200296
297 /*
298 * move output logging to stderr, if we are writing to stdout
299 */
300 if (td_write(td))
301 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200302 }
303
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100304 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100305 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100306 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100307 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200308 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200309 flags |= FIO_O_NOATIME;
Jens Axboe7abf8332006-11-23 15:01:19 +0100310
Aaron Carroll056f3452007-11-26 09:08:53 +0100311open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200312 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100313 if (!read_only)
314 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200315
Jens Axboeaf52b342007-03-13 10:07:47 +0100316 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100317 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100318
Jens Axboe66159822007-04-16 21:54:24 +0200319 if (is_std)
320 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100321 else
322 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100323 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200324 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100325 flags |= O_RDWR;
326 else
327 flags |= O_RDONLY;
328
Jens Axboe66159822007-04-16 21:54:24 +0200329 if (is_std)
330 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100331 else
332 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200333 }
334
335 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100336 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100337 int __e = errno;
338
Jens Axboe5921e802008-05-30 15:02:38 +0200339 if (errno == EPERM && (flags & FIO_O_NOATIME)) {
340 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100341 goto open_again;
342 }
343
Jens Axboee8670ef2008-03-06 12:06:30 +0100344 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100345
346 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200347 }
348
Jens Axboeb5af8292007-03-08 12:43:13 +0100349 if (get_file_size(td, f))
350 goto err;
351
Jens Axboe29c13492008-03-01 19:25:20 +0100352 if (!from_hash && f->fd != -1) {
353 if (add_file_hash(f)) {
354 int ret;
355
356 /*
357 * OK to ignore, we haven't done anything with it
358 */
359 ret = generic_close_file(td, f);
360 goto open_again;
361 }
362 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100363
Jens Axboe53cdc682006-10-18 11:50:58 +0200364 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100365err:
366 close(f->fd);
367 return 1;
368}
369
Jens Axboe21972cd2006-11-23 12:39:16 +0100370int open_files(struct thread_data *td)
371{
372 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100373 unsigned int i;
374 int err = 0;
Jens Axboe21972cd2006-11-23 12:39:16 +0100375
Jens Axboeee56ad52008-02-01 10:30:20 +0100376 dprint(FD_FILE, "open files\n");
377
Jens Axboe21972cd2006-11-23 12:39:16 +0100378 for_each_file(td, f, i) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100379 err = td_io_open_file(td, f);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200380 if (err) {
381 if (td->error == EMFILE) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100382 log_err("fio: limited open files to: %d\n",
383 td->nr_open_files);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200384 td->o.open_files = td->nr_open_files;
385 err = 0;
386 clear_error(td);
387 }
Jens Axboe21972cd2006-11-23 12:39:16 +0100388 break;
Jens Axboe9bf27b42007-03-27 19:49:31 +0200389 }
Jens Axboeb5af8292007-03-08 12:43:13 +0100390
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100391 if (td->o.open_files == td->nr_open_files)
Jens Axboeb5af8292007-03-08 12:43:13 +0100392 break;
Jens Axboe21972cd2006-11-23 12:39:16 +0100393 }
394
Jens Axboe7abf8332006-11-23 15:01:19 +0100395 if (!err)
396 return 0;
397
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100398 for_each_file(td, f, i)
Jens Axboeb5af8292007-03-08 12:43:13 +0100399 td_io_close_file(td, f);
Jens Axboe7abf8332006-11-23 15:01:19 +0100400
Jens Axboe21972cd2006-11-23 12:39:16 +0100401 return err;
402}
403
Jens Axboe7bb48f82007-03-27 15:30:28 +0200404/*
405 * open/close all files, so that ->real_file_size gets set
406 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200407static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200408{
409 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100410 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200411 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200412
413 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100414 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
415 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100416
Jens Axboebab3fd52007-04-02 10:34:18 +0200417 if (td->io_ops->open_file(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200418 if (td->error != ENOENT) {
419 log_err("%s\n", td->verror);
420 err = 1;
421 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200422 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200423 } else {
424 if (td->io_ops->close_file)
425 td->io_ops->close_file(td, f);
426 }
Jens Axboe409b3412007-03-28 09:57:01 +0200427
428 if (f->real_file_size == -1ULL && td->o.size)
429 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200430 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200431
432 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200433}
434
435/*
436 * Open the files and setup files sizes, creating files if necessary.
437 */
438int setup_files(struct thread_data *td)
439{
440 unsigned long long total_size, extend_size;
441 struct fio_file *f;
442 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200443 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200444
Jens Axboeee56ad52008-02-01 10:30:20 +0100445 dprint(FD_FILE, "setup files\n");
446
Jens Axboe691c8fb2008-03-07 14:26:26 +0100447 if (td->o.read_iolog_file)
448 return 0;
449
Jens Axboe53cdc682006-10-18 11:50:58 +0200450 /*
451 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200452 * opening the files and setting f->real_file_size to indicate
453 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200454 */
455 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200456 err = td->io_ops->setup(td);
457 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200458 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200459
Jens Axboef1027062006-10-20 10:14:01 +0200460 if (err)
461 return err;
462
Jens Axboe0a7eb122006-10-20 10:36:42 +0200463 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200464 * check sizes. if the files/devices do not exist and the size
465 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200466 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200467 total_size = 0;
468 for_each_file(td, f, i) {
469 if (f->real_file_size == -1ULL)
470 total_size = -1ULL;
471 else
472 total_size += f->real_file_size;
473 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200474
Jens Axboe7bb48f82007-03-27 15:30:28 +0200475 /*
476 * device/file sizes are zero and no size given, punt
477 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200478 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100479 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200480 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100481 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200482 return 1;
483 }
484
Jens Axboe7bb48f82007-03-27 15:30:28 +0200485 /*
486 * now file sizes are known, so we can set ->io_size. if size= is
487 * not given, ->io_size is just equal to ->real_file_size. if size
488 * is given, ->io_size is size / nr_files.
489 */
490 extend_size = total_size = 0;
491 need_extend = 0;
492 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200493 f->file_offset = td->o.start_offset;
494
Jens Axboe7bb48f82007-03-27 15:30:28 +0200495 if (!td->o.file_size_low) {
496 /*
497 * no file size range given, file size is equal to
498 * total size divided by number of files. if that is
499 * zero, set it to the real file size.
500 */
501 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100502 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100503 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200504 } else if (f->real_file_size < td->o.file_size_low ||
505 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100506 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200507 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200508 /*
509 * file size given. if it's fixed, use that. if it's a
510 * range, generate a random size in-between.
511 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100512 if (td->o.file_size_low == td->o.file_size_high) {
513 f->io_size = td->o.file_size_low
514 - f->file_offset;
515 } else {
516 f->io_size = get_rand_file_size(td)
517 - f->file_offset;
518 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100519 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200520 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200521
522 if (f->io_size == -1ULL)
523 total_size = -1ULL;
524 else
525 total_size += f->io_size;
526
527 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200528 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200529 !(td->io_ops->flags & FIO_DISKLESSIO)) {
530 need_extend++;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200531 extend_size += (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200532 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100533 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200534 }
535
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200536 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200537 td->o.size = total_size;
538
539 /*
540 * See if we need to extend some files
541 */
542 if (need_extend) {
543 temp_stall_ts = 1;
Jens Axboef627d8a2007-08-24 10:24:09 +0200544 log_info("%s: Laying out IO file(s) (%u file(s) / %LuMiB)\n",
Jens Axboe7bb48f82007-03-27 15:30:28 +0200545 td->o.name, need_extend, extend_size >> 20);
546
547 for_each_file(td, f, i) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200548 unsigned long long old_len, extend_len;
549
Jens Axboe7bb48f82007-03-27 15:30:28 +0200550 if (!(f->flags & FIO_FILE_EXTEND))
551 continue;
552
Jens Axboe409b3412007-03-28 09:57:01 +0200553 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200554 f->flags &= ~FIO_FILE_EXTEND;
Jens Axboe3baddf22008-04-04 11:10:30 +0200555 old_len = f->real_file_size;
556 extend_len = f->io_size + f->file_offset - old_len;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200557 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200558 err = extend_file(td, f);
559 if (err)
560 break;
Jens Axboe3baddf22008-04-04 11:10:30 +0200561
562 err = __file_invalidate_cache(td, f, old_len,
563 extend_len);
564 close(f->fd);
565 f->fd = -1;
566 if (err)
567 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200568 }
569 temp_stall_ts = 0;
570 }
571
572 if (err)
573 return err;
574
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100575 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200576 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200577
Jens Axboeea966f82007-09-03 10:09:37 +0200578 /*
579 * iolog already set the total io size, if we read back
580 * stored entries.
581 */
582 if (!td->o.read_iolog_file)
583 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200584 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200585err_offset:
586 log_err("%s: you need to specify valid offset=\n", td->o.name);
587 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200588}
589
Jens Axboe68727072007-03-15 20:49:25 +0100590int init_random_map(struct thread_data *td)
591{
Jens Axboe509eab12007-12-14 12:42:53 +0100592 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100593 struct fio_file *f;
594 unsigned int i;
595
Jens Axboede8dd112008-03-01 15:34:44 +0100596 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100597 return 0;
598
599 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100600 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
601 (unsigned long long) td->o.rw_min_bs;
602 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
603 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200604 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100605 if (f->file_map) {
606 f->num_maps = num_maps;
607 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100608 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100609 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100610 log_err("fio: failed allocating random map. If running"
611 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100612 " option or set 'softrandommap'. Or give"
613 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100614 return 1;
615 }
Jens Axboe303032a2008-03-26 10:11:10 +0100616
617 log_info("fio: file %s failed allocating random map. Running "
618 "job without.\n", f->file_name);
619 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100620 }
621
622 return 0;
623}
624
Jens Axboe53cdc682006-10-18 11:50:58 +0200625void close_files(struct thread_data *td)
626{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200627 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100628 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200629
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100630 for_each_file(td, f, i)
631 td_io_close_file(td, f);
632}
633
634void close_and_free_files(struct thread_data *td)
635{
636 struct fio_file *f;
637 unsigned int i;
638
Jens Axboeee56ad52008-02-01 10:30:20 +0100639 dprint(FD_FILE, "close files\n");
640
Jens Axboe0ab8db82006-10-18 17:16:23 +0200641 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100642 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
643 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100644 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100645 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100646
Jens Axboeb5af8292007-03-08 12:43:13 +0100647 td_io_close_file(td, f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100648
Jens Axboef17c4392008-03-01 18:40:46 +0100649 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100650 f->file_name = NULL;
651
Jens Axboec3439812007-03-20 13:54:53 +0100652 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100653 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100654 f->file_map = NULL;
655 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100656 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200657 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200658
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100659 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100660 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100661 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200662 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100663 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200664}
Jens Axboeaf52b342007-03-13 10:07:47 +0100665
Jens Axboee3bab462007-03-13 11:22:09 +0100666static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100667{
668 struct stat sb;
669
Jens Axboe66159822007-04-16 21:54:24 +0200670 if (!strcmp(f->file_name, "-"))
671 f->filetype = FIO_TYPE_PIPE;
672 else
673 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100674
Jens Axboee3bab462007-03-13 11:22:09 +0100675 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100676 if (S_ISBLK(sb.st_mode))
677 f->filetype = FIO_TYPE_BD;
678 else if (S_ISCHR(sb.st_mode))
679 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200680 else if (S_ISFIFO(sb.st_mode))
681 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100682 }
683}
684
Jens Axboef29b25a2007-07-23 08:56:43 +0200685int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100686{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100687 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100688 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100689 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100690 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100691
Jens Axboeee56ad52008-02-01 10:30:20 +0100692 dprint(FD_FILE, "add file %s\n", fname);
693
Jens Axboef17c4392008-03-01 18:40:46 +0100694 f = smalloc(sizeof(*f));
Jens Axboeaf52b342007-03-13 10:07:47 +0100695 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100696
Jens Axboe9efef3c2008-03-06 10:26:25 +0100697 dprint(FD_FILE, "resize file array to %d files\n", cur_files + 1);
Jens Axboe126d65c2008-03-01 18:04:31 +0100698
Jens Axboe9efef3c2008-03-06 10:26:25 +0100699 td->files = realloc(td->files, (cur_files + 1) * sizeof(f));
Jens Axboe126d65c2008-03-01 18:04:31 +0100700 td->files[cur_files] = f;
701
Jens Axboe07eb79d2007-04-12 13:02:38 +0200702 /*
703 * init function, io engine may not be loaded yet
704 */
705 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
706 f->real_file_size = -1ULL;
707
Jens Axboebd0ee742007-03-23 14:26:23 +0100708 if (td->o.directory)
709 len = sprintf(file_name, "%s/", td->o.directory);
710
711 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100712 f->file_name = smalloc_strdup(file_name);
Jens Axboeaf52b342007-03-13 10:07:47 +0100713
Jens Axboee3bab462007-03-13 11:22:09 +0100714 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100715
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100716 switch (td->o.file_lock_mode) {
717 case FILE_LOCK_NONE:
718 break;
719 case FILE_LOCK_READWRITE:
720 f->lock = fio_mutex_rw_init();
721 break;
722 case FILE_LOCK_EXCLUSIVE:
723 f->lock = fio_mutex_init(1);
724 break;
725 default:
726 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
727 assert(0);
728 }
Jens Axboe29c13492008-03-01 19:25:20 +0100729
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100730 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100731 if (f->filetype == FIO_TYPE_FILE)
732 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200733
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100734 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
735 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100736
Jens Axboef29b25a2007-07-23 08:56:43 +0200737 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100738}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100739
740void get_file(struct fio_file *f)
741{
Jens Axboe8172fe92008-02-01 21:51:02 +0100742 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200743 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100744 f->references++;
745}
746
Jens Axboe6977bcd2008-03-01 15:55:36 +0100747int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100748{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100749 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100750
Jens Axboe8172fe92008-02-01 21:51:02 +0100751 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100752
Jens Axboe0ad920e2007-03-13 11:06:45 +0100753 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100754 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100755
756 assert(f->references);
757 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100758 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100759
Jens Axboed424d4d2007-04-17 09:05:10 +0200760 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +0100761 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +0100762
Jens Axboe0ad920e2007-03-13 11:06:45 +0100763 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100764 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200765
Jens Axboe98e1ac42008-03-06 11:56:48 +0100766 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +0200767 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +0100768
Jens Axboe0ad920e2007-03-13 11:06:45 +0100769 td->nr_open_files--;
770 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100771 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100772}
Jens Axboebbf6b542007-03-13 15:28:55 +0100773
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100774void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100775{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100776 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
777 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100778
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100779 if (f->lock_owner == td && f->lock_batch--)
780 return;
781
782 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
783 if (ddir == DDIR_READ)
784 fio_mutex_down_read(f->lock);
785 else
786 fio_mutex_down_write(f->lock);
787 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
788 fio_mutex_down(f->lock);
789
790 f->lock_owner = td;
791 f->lock_batch = td->o.lockfile_batch;
792 f->lock_ddir = ddir;
793}
794
795void unlock_file(struct thread_data *td, struct fio_file *f)
796{
797 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
798 return;
799 if (f->lock_batch)
800 return;
801
802 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
803 const int is_read = f->lock_ddir == DDIR_READ;
804 int val = fio_mutex_getval(f->lock);
805
806 if ((is_read && val == 1) || (!is_read && val == -1))
807 f->lock_owner = NULL;
808
809 if (is_read)
810 fio_mutex_up_read(f->lock);
811 else
812 fio_mutex_up_write(f->lock);
813 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
814 int val = fio_mutex_getval(f->lock);
815
816 if (val == 0)
817 f->lock_owner = NULL;
818
819 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100820 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100821}
822
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100823void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100824{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100825 if (f->lock_owner != td)
826 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100827
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100828 f->lock_batch = 0;
829 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100830}
831
Jens Axboebbf6b542007-03-13 15:28:55 +0100832static int recurse_dir(struct thread_data *td, const char *dirname)
833{
834 struct dirent *dir;
835 int ret = 0;
836 DIR *D;
837
838 D = opendir(dirname);
839 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200840 char buf[FIO_VERROR_SIZE];
841
842 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
843 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100844 return 1;
845 }
846
847 while ((dir = readdir(D)) != NULL) {
848 char full_path[PATH_MAX];
849 struct stat sb;
850
Jens Axboee85b2b82007-03-14 09:39:06 +0100851 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
852 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100853
Jens Axboebbf6b542007-03-13 15:28:55 +0100854 sprintf(full_path, "%s/%s", dirname, dir->d_name);
855
856 if (lstat(full_path, &sb) == -1) {
857 if (errno != ENOENT) {
858 td_verror(td, errno, "stat");
859 return 1;
860 }
861 }
862
863 if (S_ISREG(sb.st_mode)) {
864 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100865 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100866 continue;
867 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200868 if (!S_ISDIR(sb.st_mode))
869 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100870
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100871 ret = recurse_dir(td, full_path);
872 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +0100873 break;
874 }
875
876 closedir(D);
877 return ret;
878}
879
880int add_dir_files(struct thread_data *td, const char *path)
881{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200882 int ret = recurse_dir(td, path);
883
884 if (!ret)
885 log_info("fio: opendir added %d files\n", td->o.nr_files);
886
887 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100888}
Jens Axboecade3ef2007-03-23 15:29:45 +0100889
890void dup_files(struct thread_data *td, struct thread_data *org)
891{
892 struct fio_file *f;
893 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +0100894
895 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +0100896
897 if (!org->files)
898 return;
899
Jens Axboe9efef3c2008-03-06 10:26:25 +0100900 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +0100901
Jens Axboe9efef3c2008-03-06 10:26:25 +0100902 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100903 struct fio_file *__f;
904
Jens Axboef17c4392008-03-01 18:40:46 +0100905 __f = smalloc(sizeof(*__f));
Jens Axboeb0fe4212008-03-01 18:22:27 +0100906
Jens Axboecade3ef2007-03-23 15:29:45 +0100907 if (f->file_name)
Jens Axboef17c4392008-03-01 18:40:46 +0100908 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboeb0fe4212008-03-01 18:22:27 +0100909
910 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100911 }
912}
Jens Axboef29b25a2007-07-23 08:56:43 +0200913
914/*
915 * Returns the index that matches the filename, or -1 if not there
916 */
917int get_fileno(struct thread_data *td, const char *fname)
918{
919 struct fio_file *f;
920 unsigned int i;
921
922 for_each_file(td, f, i)
923 if (!strcmp(f->file_name, fname))
924 return i;
925
926 return -1;
927}
928
929/*
930 * For log usage, where we add/open/close files automatically
931 */
932void free_release_files(struct thread_data *td)
933{
934 close_files(td);
935 td->files_index = 0;
936 td->nr_normal_files = 0;
937}