blob: c98bf0c0ac934c0939529c2664c8c82844ce3896 [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 Axboe7bb48f82007-03-27 15:30:28 +020073 if (posix_fallocate(f->fd, 0, f->real_file_size) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010074 td_verror(td, errno, "posix_fallocate");
Jens Axboe40f82982006-10-25 11:21:05 +020075 goto err;
76 }
77
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010078 b = malloc(td->o.max_bs[DDIR_WRITE]);
79 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020080
Jens Axboe7bb48f82007-03-27 15:30:28 +020081 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +020082 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010083 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020084 if (bs > left)
85 bs = left;
86
87 r = write(f->fd, b, bs);
88
89 if (r == (int) bs) {
90 left -= bs;
91 continue;
92 } else {
93 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010094 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020095 else
Jens Axboee1161c32007-02-22 19:36:48 +010096 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020097
98 break;
99 }
100 }
101
Jens Axboeffdfabd2008-03-26 09:18:14 +0100102 if (td->terminate) {
103 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
Jens Axboe53cdc682006-10-18 11:50:58 +0200104 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100105 } else if (td->o.create_fsync) {
Jens Axboe98e1ac42008-03-06 11:56:48 +0100106 if (fsync(f->fd) < 0) {
107 td_verror(td, errno, "fsync");
108 goto err;
109 }
110 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200111
112 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200113done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200114 return 0;
115err:
116 close(f->fd);
117 f->fd = -1;
118 return 1;
119}
120
Jens Axboe7bb48f82007-03-27 15:30:28 +0200121static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100122{
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100123 unsigned long long ret, size_d;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100124 long r;
125
Jens Axboe9c60ce62007-03-15 09:14:47 +0100126 r = os_random_long(&td->file_size_state);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100127 size_d = td->o.file_size_high - td->o.file_size_low;
128 ret = (unsigned long long) ((double) size_d * (r / (RAND_MAX + 1.0)));
129 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100130 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100131 return ret;
132}
133
Jens Axboe53cdc682006-10-18 11:50:58 +0200134static int file_size(struct thread_data *td, struct fio_file *f)
135{
136 struct stat st;
137
Jens Axboe7bb48f82007-03-27 15:30:28 +0200138 if (fstat(f->fd, &st) == -1) {
139 td_verror(td, errno, "fstat");
140 return 1;
141 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200142
Jens Axboe7bb48f82007-03-27 15:30:28 +0200143 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200144 return 0;
145}
146
147static int bdev_size(struct thread_data *td, struct fio_file *f)
148{
149 unsigned long long bytes;
150 int r;
151
152 r = blockdev_size(f->fd, &bytes);
153 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100154 td_verror(td, r, "blockdev_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200155 return 1;
156 }
157
158 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200159 return 0;
160}
161
162static int get_file_size(struct thread_data *td, struct fio_file *f)
163{
164 int ret = 0;
165
Jens Axboe409b3412007-03-28 09:57:01 +0200166 if (f->flags & FIO_SIZE_KNOWN)
167 return 0;
168
Jens Axboe7bb48f82007-03-27 15:30:28 +0200169 if (f->filetype == FIO_TYPE_FILE)
170 ret = file_size(td, f);
171 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200172 ret = bdev_size(td, f);
173 else
174 f->real_file_size = -1;
175
176 if (ret)
177 return ret;
178
179 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100180 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
181 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200182 return 1;
183 }
184
Jens Axboe409b3412007-03-28 09:57:01 +0200185 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200186 return 0;
187}
188
Jens Axboe3baddf22008-04-04 11:10:30 +0200189static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
190 unsigned long long off,
191 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200192{
193 int ret = 0;
194
Jens Axboe3baddf22008-04-04 11:10:30 +0200195 if (len == -1ULL)
196 len = f->io_size;
197 if (off == -1ULL)
198 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100199
Jens Axboe3baddf22008-04-04 11:10:30 +0200200 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
201 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100202
Jens Axboee5b401d2006-10-18 16:03:40 +0200203 /*
204 * FIXME: add blockdev flushing too
205 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100206 if (f->mmap)
Jens Axboe3baddf22008-04-04 11:10:30 +0200207 ret = madvise(f->mmap, len, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100208 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200209 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100210 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100211 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200212 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200213 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100214 log_err("fio: only root may flush block "
215 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200216 root_warn = 1;
217 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200218 ret = 0;
219 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200220 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200221 ret = 0;
222
223 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100224 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200225 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200226 } else if (ret > 0) {
227 td_verror(td, ret, "invalidate_cache");
228 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200229 }
230
Jens Axboead2da602007-02-26 12:33:27 +0100231 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200232
233}
234
235int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
236{
Jens Axboea5fb4612008-05-28 10:54:01 +0200237 if (!(f->flags & FIO_FILE_OPEN))
238 return 0;
239
Jens Axboe3baddf22008-04-04 11:10:30 +0200240 return __file_invalidate_cache(td, f, -1, -1);
Jens Axboee5b401d2006-10-18 16:03:40 +0200241}
242
Jens Axboe6977bcd2008-03-01 15:55:36 +0100243int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200244{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100245 int ret = 0;
246
Jens Axboeee56ad52008-02-01 10:30:20 +0100247 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100248
249 remove_file_hash(f);
250
Jens Axboe6977bcd2008-03-01 15:55:36 +0100251 if (close(f->fd) < 0)
252 ret = errno;
253
Jens Axboeb5af8292007-03-08 12:43:13 +0100254 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100255 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200256}
257
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100258static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200259{
Jens Axboe29c13492008-03-01 19:25:20 +0100260 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100261 int from_hash;
262
263 __f = lookup_file_hash(f->file_name);
264 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100265 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100266 /*
267 * racy, need the __f->lock locked
268 */
269 f->lock = __f->lock;
270 f->lock_owner = __f->lock_owner;
271 f->lock_batch = __f->lock_batch;
272 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100273 from_hash = 1;
274 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100275 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100276 from_hash = 0;
277 }
278
Jens Axboee8670ef2008-03-06 12:06:30 +0100279 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100280 return from_hash;
281}
282
283int generic_open_file(struct thread_data *td, struct fio_file *f)
284{
Jens Axboe66159822007-04-16 21:54:24 +0200285 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200286 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100287 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200288
Jens Axboeee56ad52008-02-01 10:30:20 +0100289 dprint(FD_FILE, "fd open %s\n", f->file_name);
290
Jens Axboe66159822007-04-16 21:54:24 +0200291 if (!strcmp(f->file_name, "-")) {
292 if (td_rw(td)) {
293 log_err("fio: can't read/write to stdin/out\n");
294 return 1;
295 }
296 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200297
298 /*
299 * move output logging to stderr, if we are writing to stdout
300 */
301 if (td_write(td))
302 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200303 }
304
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100305 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100306 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100307 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100308 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200309 if (f->filetype != FIO_TYPE_FILE)
310 flags |= O_NOATIME;
Jens Axboe7abf8332006-11-23 15:01:19 +0100311
Aaron Carroll056f3452007-11-26 09:08:53 +0100312open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200313 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100314 if (!read_only)
315 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200316
Jens Axboeaf52b342007-03-13 10:07:47 +0100317 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100318 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100319
Jens Axboe66159822007-04-16 21:54:24 +0200320 if (is_std)
321 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100322 else
323 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100324 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200325 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100326 flags |= O_RDWR;
327 else
328 flags |= O_RDONLY;
329
Jens Axboe66159822007-04-16 21:54:24 +0200330 if (is_std)
331 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100332 else
333 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200334 }
335
336 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100337 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100338 int __e = errno;
339
Aaron Carroll056f3452007-11-26 09:08:53 +0100340 if (errno == EPERM && (flags & O_NOATIME)) {
341 flags &= ~O_NOATIME;
342 goto open_again;
343 }
344
Jens Axboee8670ef2008-03-06 12:06:30 +0100345 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100346
347 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200348 }
349
Jens Axboeb5af8292007-03-08 12:43:13 +0100350 if (get_file_size(td, f))
351 goto err;
352
Jens Axboe29c13492008-03-01 19:25:20 +0100353 if (!from_hash && f->fd != -1) {
354 if (add_file_hash(f)) {
355 int ret;
356
357 /*
358 * OK to ignore, we haven't done anything with it
359 */
360 ret = generic_close_file(td, f);
361 goto open_again;
362 }
363 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100364
Jens Axboe53cdc682006-10-18 11:50:58 +0200365 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100366err:
367 close(f->fd);
368 return 1;
369}
370
Jens Axboe21972cd2006-11-23 12:39:16 +0100371int open_files(struct thread_data *td)
372{
373 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100374 unsigned int i;
375 int err = 0;
Jens Axboe21972cd2006-11-23 12:39:16 +0100376
Jens Axboeee56ad52008-02-01 10:30:20 +0100377 dprint(FD_FILE, "open files\n");
378
Jens Axboe21972cd2006-11-23 12:39:16 +0100379 for_each_file(td, f, i) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100380 err = td_io_open_file(td, f);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200381 if (err) {
382 if (td->error == EMFILE) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100383 log_err("fio: limited open files to: %d\n",
384 td->nr_open_files);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200385 td->o.open_files = td->nr_open_files;
386 err = 0;
387 clear_error(td);
388 }
Jens Axboe21972cd2006-11-23 12:39:16 +0100389 break;
Jens Axboe9bf27b42007-03-27 19:49:31 +0200390 }
Jens Axboeb5af8292007-03-08 12:43:13 +0100391
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100392 if (td->o.open_files == td->nr_open_files)
Jens Axboeb5af8292007-03-08 12:43:13 +0100393 break;
Jens Axboe21972cd2006-11-23 12:39:16 +0100394 }
395
Jens Axboe7abf8332006-11-23 15:01:19 +0100396 if (!err)
397 return 0;
398
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100399 for_each_file(td, f, i)
Jens Axboeb5af8292007-03-08 12:43:13 +0100400 td_io_close_file(td, f);
Jens Axboe7abf8332006-11-23 15:01:19 +0100401
Jens Axboe21972cd2006-11-23 12:39:16 +0100402 return err;
403}
404
Jens Axboe7bb48f82007-03-27 15:30:28 +0200405/*
406 * open/close all files, so that ->real_file_size gets set
407 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200408static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200409{
410 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100411 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200412 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200413
414 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100415 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
416 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100417
Jens Axboebab3fd52007-04-02 10:34:18 +0200418 if (td->io_ops->open_file(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200419 if (td->error != ENOENT) {
420 log_err("%s\n", td->verror);
421 err = 1;
422 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200423 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200424 } else {
425 if (td->io_ops->close_file)
426 td->io_ops->close_file(td, f);
427 }
Jens Axboe409b3412007-03-28 09:57:01 +0200428
429 if (f->real_file_size == -1ULL && td->o.size)
430 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200431 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200432
433 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200434}
435
436/*
437 * Open the files and setup files sizes, creating files if necessary.
438 */
439int setup_files(struct thread_data *td)
440{
441 unsigned long long total_size, extend_size;
442 struct fio_file *f;
443 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200444 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200445
Jens Axboeee56ad52008-02-01 10:30:20 +0100446 dprint(FD_FILE, "setup files\n");
447
Jens Axboe691c8fb2008-03-07 14:26:26 +0100448 if (td->o.read_iolog_file)
449 return 0;
450
Jens Axboe53cdc682006-10-18 11:50:58 +0200451 /*
452 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200453 * opening the files and setting f->real_file_size to indicate
454 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200455 */
456 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200457 err = td->io_ops->setup(td);
458 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200459 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200460
Jens Axboef1027062006-10-20 10:14:01 +0200461 if (err)
462 return err;
463
Jens Axboe0a7eb122006-10-20 10:36:42 +0200464 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200465 * check sizes. if the files/devices do not exist and the size
466 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200467 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200468 total_size = 0;
469 for_each_file(td, f, i) {
470 if (f->real_file_size == -1ULL)
471 total_size = -1ULL;
472 else
473 total_size += f->real_file_size;
474 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200475
Jens Axboe7bb48f82007-03-27 15:30:28 +0200476 /*
477 * device/file sizes are zero and no size given, punt
478 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200479 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100480 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200481 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100482 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200483 return 1;
484 }
485
Jens Axboe7bb48f82007-03-27 15:30:28 +0200486 /*
487 * now file sizes are known, so we can set ->io_size. if size= is
488 * not given, ->io_size is just equal to ->real_file_size. if size
489 * is given, ->io_size is size / nr_files.
490 */
491 extend_size = total_size = 0;
492 need_extend = 0;
493 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200494 f->file_offset = td->o.start_offset;
495
Jens Axboe7bb48f82007-03-27 15:30:28 +0200496 if (!td->o.file_size_low) {
497 /*
498 * no file size range given, file size is equal to
499 * total size divided by number of files. if that is
500 * zero, set it to the real file size.
501 */
502 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100503 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100504 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200505 } else if (f->real_file_size < td->o.file_size_low ||
506 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100507 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200508 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200509 /*
510 * file size given. if it's fixed, use that. if it's a
511 * range, generate a random size in-between.
512 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100513 if (td->o.file_size_low == td->o.file_size_high) {
514 f->io_size = td->o.file_size_low
515 - f->file_offset;
516 } else {
517 f->io_size = get_rand_file_size(td)
518 - f->file_offset;
519 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100520 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200521 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200522
523 if (f->io_size == -1ULL)
524 total_size = -1ULL;
525 else
526 total_size += f->io_size;
527
528 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200529 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200530 !(td->io_ops->flags & FIO_DISKLESSIO)) {
531 need_extend++;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200532 extend_size += (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200533 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100534 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200535 }
536
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200537 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200538 td->o.size = total_size;
539
540 /*
541 * See if we need to extend some files
542 */
543 if (need_extend) {
544 temp_stall_ts = 1;
Jens Axboef627d8a2007-08-24 10:24:09 +0200545 log_info("%s: Laying out IO file(s) (%u file(s) / %LuMiB)\n",
Jens Axboe7bb48f82007-03-27 15:30:28 +0200546 td->o.name, need_extend, extend_size >> 20);
547
548 for_each_file(td, f, i) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200549 unsigned long long old_len, extend_len;
550
Jens Axboe7bb48f82007-03-27 15:30:28 +0200551 if (!(f->flags & FIO_FILE_EXTEND))
552 continue;
553
Jens Axboe409b3412007-03-28 09:57:01 +0200554 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200555 f->flags &= ~FIO_FILE_EXTEND;
Jens Axboe3baddf22008-04-04 11:10:30 +0200556 old_len = f->real_file_size;
557 extend_len = f->io_size + f->file_offset - old_len;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200558 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200559 err = extend_file(td, f);
560 if (err)
561 break;
Jens Axboe3baddf22008-04-04 11:10:30 +0200562
563 err = __file_invalidate_cache(td, f, old_len,
564 extend_len);
565 close(f->fd);
566 f->fd = -1;
567 if (err)
568 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200569 }
570 temp_stall_ts = 0;
571 }
572
573 if (err)
574 return err;
575
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100576 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200577 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200578
Jens Axboeea966f82007-09-03 10:09:37 +0200579 /*
580 * iolog already set the total io size, if we read back
581 * stored entries.
582 */
583 if (!td->o.read_iolog_file)
584 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200585 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200586err_offset:
587 log_err("%s: you need to specify valid offset=\n", td->o.name);
588 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200589}
590
Jens Axboe68727072007-03-15 20:49:25 +0100591int init_random_map(struct thread_data *td)
592{
Jens Axboe509eab12007-12-14 12:42:53 +0100593 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100594 struct fio_file *f;
595 unsigned int i;
596
Jens Axboede8dd112008-03-01 15:34:44 +0100597 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100598 return 0;
599
600 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100601 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
602 (unsigned long long) td->o.rw_min_bs;
603 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
604 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboef17c4392008-03-01 18:40:46 +0100605 f->file_map = smalloc(num_maps * sizeof(long));
Jens Axboe303032a2008-03-26 10:11:10 +0100606 if (f->file_map) {
607 f->num_maps = num_maps;
608 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100609 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100610 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100611 log_err("fio: failed allocating random map. If running"
612 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100613 " option or set 'softrandommap'. Or give"
614 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100615 return 1;
616 }
Jens Axboe303032a2008-03-26 10:11:10 +0100617
618 log_info("fio: file %s failed allocating random map. Running "
619 "job without.\n", f->file_name);
620 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100621 }
622
623 return 0;
624}
625
Jens Axboe53cdc682006-10-18 11:50:58 +0200626void close_files(struct thread_data *td)
627{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200628 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100629 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200630
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100631 for_each_file(td, f, i)
632 td_io_close_file(td, f);
633}
634
635void close_and_free_files(struct thread_data *td)
636{
637 struct fio_file *f;
638 unsigned int i;
639
Jens Axboeee56ad52008-02-01 10:30:20 +0100640 dprint(FD_FILE, "close files\n");
641
Jens Axboe0ab8db82006-10-18 17:16:23 +0200642 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100643 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
644 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100645 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100646 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100647
Jens Axboeb5af8292007-03-08 12:43:13 +0100648 td_io_close_file(td, f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100649
Jens Axboef17c4392008-03-01 18:40:46 +0100650 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100651 f->file_name = NULL;
652
Jens Axboec3439812007-03-20 13:54:53 +0100653 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100654 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100655 f->file_map = NULL;
656 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100657 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200658 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200659
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100660 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100661 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100662 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200663 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100664 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200665}
Jens Axboeaf52b342007-03-13 10:07:47 +0100666
Jens Axboee3bab462007-03-13 11:22:09 +0100667static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100668{
669 struct stat sb;
670
Jens Axboe66159822007-04-16 21:54:24 +0200671 if (!strcmp(f->file_name, "-"))
672 f->filetype = FIO_TYPE_PIPE;
673 else
674 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100675
Jens Axboee3bab462007-03-13 11:22:09 +0100676 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100677 if (S_ISBLK(sb.st_mode))
678 f->filetype = FIO_TYPE_BD;
679 else if (S_ISCHR(sb.st_mode))
680 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200681 else if (S_ISFIFO(sb.st_mode))
682 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100683 }
684}
685
Jens Axboef29b25a2007-07-23 08:56:43 +0200686int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100687{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100688 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100689 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100690 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100691 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100692
Jens Axboeee56ad52008-02-01 10:30:20 +0100693 dprint(FD_FILE, "add file %s\n", fname);
694
Jens Axboef17c4392008-03-01 18:40:46 +0100695 f = smalloc(sizeof(*f));
Jens Axboeaf52b342007-03-13 10:07:47 +0100696 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100697
Jens Axboe9efef3c2008-03-06 10:26:25 +0100698 dprint(FD_FILE, "resize file array to %d files\n", cur_files + 1);
Jens Axboe126d65c2008-03-01 18:04:31 +0100699
Jens Axboe9efef3c2008-03-06 10:26:25 +0100700 td->files = realloc(td->files, (cur_files + 1) * sizeof(f));
Jens Axboe126d65c2008-03-01 18:04:31 +0100701 td->files[cur_files] = f;
702
Jens Axboe07eb79d2007-04-12 13:02:38 +0200703 /*
704 * init function, io engine may not be loaded yet
705 */
706 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
707 f->real_file_size = -1ULL;
708
Jens Axboebd0ee742007-03-23 14:26:23 +0100709 if (td->o.directory)
710 len = sprintf(file_name, "%s/", td->o.directory);
711
712 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100713 f->file_name = smalloc_strdup(file_name);
Jens Axboeaf52b342007-03-13 10:07:47 +0100714
Jens Axboee3bab462007-03-13 11:22:09 +0100715 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100716
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100717 switch (td->o.file_lock_mode) {
718 case FILE_LOCK_NONE:
719 break;
720 case FILE_LOCK_READWRITE:
721 f->lock = fio_mutex_rw_init();
722 break;
723 case FILE_LOCK_EXCLUSIVE:
724 f->lock = fio_mutex_init(1);
725 break;
726 default:
727 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
728 assert(0);
729 }
Jens Axboe29c13492008-03-01 19:25:20 +0100730
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100731 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100732 if (f->filetype == FIO_TYPE_FILE)
733 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200734
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100735 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
736 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100737
Jens Axboef29b25a2007-07-23 08:56:43 +0200738 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100739}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100740
741void get_file(struct fio_file *f)
742{
Jens Axboe8172fe92008-02-01 21:51:02 +0100743 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200744 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100745 f->references++;
746}
747
Jens Axboe6977bcd2008-03-01 15:55:36 +0100748int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100749{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100750 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100751
Jens Axboe8172fe92008-02-01 21:51:02 +0100752 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100753
Jens Axboe0ad920e2007-03-13 11:06:45 +0100754 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100755 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100756
757 assert(f->references);
758 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100759 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100760
Jens Axboed424d4d2007-04-17 09:05:10 +0200761 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +0100762 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +0100763
Jens Axboe0ad920e2007-03-13 11:06:45 +0100764 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100765 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200766
Jens Axboe98e1ac42008-03-06 11:56:48 +0100767 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +0200768 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +0100769
Jens Axboe0ad920e2007-03-13 11:06:45 +0100770 td->nr_open_files--;
771 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100772 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100773}
Jens Axboebbf6b542007-03-13 15:28:55 +0100774
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100775void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100776{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100777 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
778 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100779
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100780 if (f->lock_owner == td && f->lock_batch--)
781 return;
782
783 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
784 if (ddir == DDIR_READ)
785 fio_mutex_down_read(f->lock);
786 else
787 fio_mutex_down_write(f->lock);
788 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
789 fio_mutex_down(f->lock);
790
791 f->lock_owner = td;
792 f->lock_batch = td->o.lockfile_batch;
793 f->lock_ddir = ddir;
794}
795
796void unlock_file(struct thread_data *td, struct fio_file *f)
797{
798 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
799 return;
800 if (f->lock_batch)
801 return;
802
803 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
804 const int is_read = f->lock_ddir == DDIR_READ;
805 int val = fio_mutex_getval(f->lock);
806
807 if ((is_read && val == 1) || (!is_read && val == -1))
808 f->lock_owner = NULL;
809
810 if (is_read)
811 fio_mutex_up_read(f->lock);
812 else
813 fio_mutex_up_write(f->lock);
814 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
815 int val = fio_mutex_getval(f->lock);
816
817 if (val == 0)
818 f->lock_owner = NULL;
819
820 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100821 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100822}
823
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100824void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100825{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100826 if (f->lock_owner != td)
827 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100828
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100829 f->lock_batch = 0;
830 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100831}
832
Jens Axboebbf6b542007-03-13 15:28:55 +0100833static int recurse_dir(struct thread_data *td, const char *dirname)
834{
835 struct dirent *dir;
836 int ret = 0;
837 DIR *D;
838
839 D = opendir(dirname);
840 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200841 char buf[FIO_VERROR_SIZE];
842
843 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
844 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100845 return 1;
846 }
847
848 while ((dir = readdir(D)) != NULL) {
849 char full_path[PATH_MAX];
850 struct stat sb;
851
Jens Axboee85b2b82007-03-14 09:39:06 +0100852 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
853 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100854
Jens Axboebbf6b542007-03-13 15:28:55 +0100855 sprintf(full_path, "%s/%s", dirname, dir->d_name);
856
857 if (lstat(full_path, &sb) == -1) {
858 if (errno != ENOENT) {
859 td_verror(td, errno, "stat");
860 return 1;
861 }
862 }
863
864 if (S_ISREG(sb.st_mode)) {
865 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100866 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100867 continue;
868 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200869 if (!S_ISDIR(sb.st_mode))
870 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100871
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100872 ret = recurse_dir(td, full_path);
873 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +0100874 break;
875 }
876
877 closedir(D);
878 return ret;
879}
880
881int add_dir_files(struct thread_data *td, const char *path)
882{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200883 int ret = recurse_dir(td, path);
884
885 if (!ret)
886 log_info("fio: opendir added %d files\n", td->o.nr_files);
887
888 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100889}
Jens Axboecade3ef2007-03-23 15:29:45 +0100890
891void dup_files(struct thread_data *td, struct thread_data *org)
892{
893 struct fio_file *f;
894 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +0100895
896 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +0100897
898 if (!org->files)
899 return;
900
Jens Axboe9efef3c2008-03-06 10:26:25 +0100901 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +0100902
Jens Axboe9efef3c2008-03-06 10:26:25 +0100903 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100904 struct fio_file *__f;
905
Jens Axboef17c4392008-03-01 18:40:46 +0100906 __f = smalloc(sizeof(*__f));
Jens Axboeb0fe4212008-03-01 18:22:27 +0100907
Jens Axboecade3ef2007-03-23 15:29:45 +0100908 if (f->file_name)
Jens Axboef17c4392008-03-01 18:40:46 +0100909 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboeb0fe4212008-03-01 18:22:27 +0100910
911 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100912 }
913}
Jens Axboef29b25a2007-07-23 08:56:43 +0200914
915/*
916 * Returns the index that matches the filename, or -1 if not there
917 */
918int get_fileno(struct thread_data *td, const char *fname)
919{
920 struct fio_file *f;
921 unsigned int i;
922
923 for_each_file(td, f, i)
924 if (!strcmp(f->file_name, fname))
925 return i;
926
927 return -1;
928}
929
930/*
931 * For log usage, where we add/open/close files automatically
932 */
933void free_release_files(struct thread_data *td)
934{
935 close_files(td);
936 td->files_index = 0;
937 td->nr_normal_files = 0;
938}