blob: af23191fb33d9f78442ba24992024c332fa969bd [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 Axboedf9c26b2009-03-05 10:13:58 +0100139 if (stat(f->file_name, &st) == -1) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200140 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
Jens Axboedf9c26b2009-03-05 10:13:58 +0100153 if (td->io_ops->open_file(td, f)) {
154 log_err("fio: failed opening blockdev %s for size check\n",
155 f->file_name);
156 return 1;
157 }
158
Jens Axboe53cdc682006-10-18 11:50:58 +0200159 r = blockdev_size(f->fd, &bytes);
160 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100161 td_verror(td, r, "blockdev_size");
Jens Axboedf9c26b2009-03-05 10:13:58 +0100162 goto err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200163 }
164
Jens Axboe7ab077a2009-02-02 15:07:37 +0100165 if (!bytes) {
166 log_err("%s: zero sized block device?\n", f->file_name);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100167 goto err;
Jens Axboe7ab077a2009-02-02 15:07:37 +0100168 }
169
Jens Axboe53cdc682006-10-18 11:50:58 +0200170 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200171 return 0;
Jens Axboedf9c26b2009-03-05 10:13:58 +0100172err:
173 td->io_ops->close_file(td, f);
174 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200175}
176
177static int get_file_size(struct thread_data *td, struct fio_file *f)
178{
179 int ret = 0;
180
Jens Axboe409b3412007-03-28 09:57:01 +0200181 if (f->flags & FIO_SIZE_KNOWN)
182 return 0;
183
Jens Axboe7bb48f82007-03-27 15:30:28 +0200184 if (f->filetype == FIO_TYPE_FILE)
185 ret = file_size(td, f);
186 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200187 ret = bdev_size(td, f);
188 else
189 f->real_file_size = -1;
190
191 if (ret)
192 return ret;
193
194 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100195 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
196 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200197 return 1;
198 }
199
Jens Axboe409b3412007-03-28 09:57:01 +0200200 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200201 return 0;
202}
203
Jens Axboe3baddf22008-04-04 11:10:30 +0200204static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
205 unsigned long long off,
206 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200207{
208 int ret = 0;
209
Jens Axboe3baddf22008-04-04 11:10:30 +0200210 if (len == -1ULL)
211 len = f->io_size;
212 if (off == -1ULL)
213 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100214
Jens Axboe3baddf22008-04-04 11:10:30 +0200215 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
216 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100217
Jens Axboee5b401d2006-10-18 16:03:40 +0200218 /*
219 * FIXME: add blockdev flushing too
220 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100221 if (f->mmap)
Jens Axboe3baddf22008-04-04 11:10:30 +0200222 ret = madvise(f->mmap, len, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100223 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200224 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100225 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100226 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200227 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200228 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100229 log_err("fio: only root may flush block "
230 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200231 root_warn = 1;
232 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200233 ret = 0;
234 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200235 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200236 ret = 0;
237
238 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100239 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200240 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200241 } else if (ret > 0) {
242 td_verror(td, ret, "invalidate_cache");
243 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200244 }
245
Jens Axboead2da602007-02-26 12:33:27 +0100246 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200247
248}
249
250int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
251{
Jens Axboea5fb4612008-05-28 10:54:01 +0200252 if (!(f->flags & FIO_FILE_OPEN))
253 return 0;
254
Jens Axboe3baddf22008-04-04 11:10:30 +0200255 return __file_invalidate_cache(td, f, -1, -1);
Jens Axboee5b401d2006-10-18 16:03:40 +0200256}
257
Jens Axboe6977bcd2008-03-01 15:55:36 +0100258int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200259{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100260 int ret = 0;
261
Jens Axboeee56ad52008-02-01 10:30:20 +0100262 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100263
264 remove_file_hash(f);
265
Jens Axboe6977bcd2008-03-01 15:55:36 +0100266 if (close(f->fd) < 0)
267 ret = errno;
268
Jens Axboeb5af8292007-03-08 12:43:13 +0100269 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100270 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200271}
272
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100273static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200274{
Jens Axboe29c13492008-03-01 19:25:20 +0100275 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100276 int from_hash;
277
278 __f = lookup_file_hash(f->file_name);
279 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100280 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100281 /*
282 * racy, need the __f->lock locked
283 */
284 f->lock = __f->lock;
285 f->lock_owner = __f->lock_owner;
286 f->lock_batch = __f->lock_batch;
287 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100288 from_hash = 1;
289 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100290 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100291 from_hash = 0;
292 }
293
Jens Axboee8670ef2008-03-06 12:06:30 +0100294 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100295 return from_hash;
296}
297
298int generic_open_file(struct thread_data *td, struct fio_file *f)
299{
Jens Axboe66159822007-04-16 21:54:24 +0200300 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200301 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100302 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200303
Jens Axboeee56ad52008-02-01 10:30:20 +0100304 dprint(FD_FILE, "fd open %s\n", f->file_name);
305
Jens Axboe66159822007-04-16 21:54:24 +0200306 if (!strcmp(f->file_name, "-")) {
307 if (td_rw(td)) {
308 log_err("fio: can't read/write to stdin/out\n");
309 return 1;
310 }
311 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200312
313 /*
314 * move output logging to stderr, if we are writing to stdout
315 */
316 if (td_write(td))
317 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200318 }
319
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100320 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100321 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100322 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100323 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200324 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200325 flags |= FIO_O_NOATIME;
Jens Axboe814452b2009-03-04 12:53:13 +0100326 if (td->o.create_on_open)
327 flags |= O_CREAT;
Jens Axboe7abf8332006-11-23 15:01:19 +0100328
Aaron Carroll056f3452007-11-26 09:08:53 +0100329open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200330 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100331 if (!read_only)
332 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200333
Jens Axboeaf52b342007-03-13 10:07:47 +0100334 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100335 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100336
Jens Axboe66159822007-04-16 21:54:24 +0200337 if (is_std)
338 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100339 else
340 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100341 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200342 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100343 flags |= O_RDWR;
344 else
345 flags |= O_RDONLY;
346
Jens Axboe66159822007-04-16 21:54:24 +0200347 if (is_std)
348 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100349 else
350 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200351 }
352
353 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100354 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100355 int __e = errno;
356
Jens Axboe5921e802008-05-30 15:02:38 +0200357 if (errno == EPERM && (flags & FIO_O_NOATIME)) {
358 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100359 goto open_again;
360 }
361
Jens Axboee8670ef2008-03-06 12:06:30 +0100362 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100363
364 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200365 }
366
Jens Axboe29c13492008-03-01 19:25:20 +0100367 if (!from_hash && f->fd != -1) {
368 if (add_file_hash(f)) {
369 int ret;
370
371 /*
372 * OK to ignore, we haven't done anything with it
373 */
374 ret = generic_close_file(td, f);
375 goto open_again;
376 }
377 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100378
Jens Axboe53cdc682006-10-18 11:50:58 +0200379 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100380}
381
Jens Axboedf9c26b2009-03-05 10:13:58 +0100382int generic_get_file_size(struct thread_data *td, struct fio_file *f)
Jens Axboe21972cd2006-11-23 12:39:16 +0100383{
Jens Axboedf9c26b2009-03-05 10:13:58 +0100384 return get_file_size(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100385}
386
Jens Axboe7bb48f82007-03-27 15:30:28 +0200387/*
388 * open/close all files, so that ->real_file_size gets set
389 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200390static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200391{
392 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100393 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200394 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200395
396 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100397 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
398 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100399
Jens Axboe99a47c62009-04-07 22:20:56 +0200400 if (td_io_get_file_size(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200401 if (td->error != ENOENT) {
402 log_err("%s\n", td->verror);
403 err = 1;
404 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200405 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200406 }
Jens Axboe409b3412007-03-28 09:57:01 +0200407
408 if (f->real_file_size == -1ULL && td->o.size)
409 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200410 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200411
412 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200413}
414
415/*
416 * Open the files and setup files sizes, creating files if necessary.
417 */
418int setup_files(struct thread_data *td)
419{
420 unsigned long long total_size, extend_size;
421 struct fio_file *f;
422 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200423 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200424
Jens Axboeee56ad52008-02-01 10:30:20 +0100425 dprint(FD_FILE, "setup files\n");
426
Jens Axboe691c8fb2008-03-07 14:26:26 +0100427 if (td->o.read_iolog_file)
428 return 0;
429
Jens Axboe53cdc682006-10-18 11:50:58 +0200430 /*
431 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200432 * opening the files and setting f->real_file_size to indicate
433 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200434 */
435 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200436 err = td->io_ops->setup(td);
437 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200438 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200439
Jens Axboef1027062006-10-20 10:14:01 +0200440 if (err)
441 return err;
442
Jens Axboe0a7eb122006-10-20 10:36:42 +0200443 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200444 * check sizes. if the files/devices do not exist and the size
445 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200446 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200447 total_size = 0;
448 for_each_file(td, f, i) {
449 if (f->real_file_size == -1ULL)
450 total_size = -1ULL;
451 else
452 total_size += f->real_file_size;
453 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200454
Jens Axboe7bb48f82007-03-27 15:30:28 +0200455 /*
456 * device/file sizes are zero and no size given, punt
457 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200458 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100459 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200460 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100461 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200462 return 1;
463 }
464
Jens Axboe7bb48f82007-03-27 15:30:28 +0200465 /*
466 * now file sizes are known, so we can set ->io_size. if size= is
467 * not given, ->io_size is just equal to ->real_file_size. if size
468 * is given, ->io_size is size / nr_files.
469 */
470 extend_size = total_size = 0;
471 need_extend = 0;
472 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200473 f->file_offset = td->o.start_offset;
474
Jens Axboe7bb48f82007-03-27 15:30:28 +0200475 if (!td->o.file_size_low) {
476 /*
477 * no file size range given, file size is equal to
478 * total size divided by number of files. if that is
479 * zero, set it to the real file size.
480 */
481 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100482 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100483 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200484 } else if (f->real_file_size < td->o.file_size_low ||
485 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100486 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200487 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200488 /*
489 * file size given. if it's fixed, use that. if it's a
490 * range, generate a random size in-between.
491 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100492 if (td->o.file_size_low == td->o.file_size_high) {
493 f->io_size = td->o.file_size_low
494 - f->file_offset;
495 } else {
496 f->io_size = get_rand_file_size(td)
497 - f->file_offset;
498 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100499 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200500 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200501
502 if (f->io_size == -1ULL)
503 total_size = -1ULL;
504 else
505 total_size += f->io_size;
506
507 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200508 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200509 !(td->io_ops->flags & FIO_DISKLESSIO)) {
Jens Axboe814452b2009-03-04 12:53:13 +0100510 if (!td->o.create_on_open) {
511 need_extend++;
512 extend_size += (f->io_size + f->file_offset);
513 } else
514 f->real_file_size = f->io_size + f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200515 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100516 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200517 }
518
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200519 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200520 td->o.size = total_size;
521
522 /*
523 * See if we need to extend some files
524 */
525 if (need_extend) {
526 temp_stall_ts = 1;
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200527 if (!terse_output)
528 log_info("%s: Laying out IO file(s) (%u file(s) /"
529 " %LuMiB)\n", td->o.name, need_extend,
530 extend_size >> 20);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200531
532 for_each_file(td, f, i) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200533 unsigned long long old_len, extend_len;
534
Jens Axboe7bb48f82007-03-27 15:30:28 +0200535 if (!(f->flags & FIO_FILE_EXTEND))
536 continue;
537
Jens Axboe409b3412007-03-28 09:57:01 +0200538 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200539 f->flags &= ~FIO_FILE_EXTEND;
Jens Axboe3baddf22008-04-04 11:10:30 +0200540 old_len = f->real_file_size;
541 extend_len = f->io_size + f->file_offset - old_len;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200542 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200543 err = extend_file(td, f);
544 if (err)
545 break;
Jens Axboe3baddf22008-04-04 11:10:30 +0200546
547 err = __file_invalidate_cache(td, f, old_len,
548 extend_len);
549 close(f->fd);
550 f->fd = -1;
551 if (err)
552 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200553 }
554 temp_stall_ts = 0;
555 }
556
557 if (err)
558 return err;
559
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100560 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200561 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200562
Jens Axboeea966f82007-09-03 10:09:37 +0200563 /*
564 * iolog already set the total io size, if we read back
565 * stored entries.
566 */
567 if (!td->o.read_iolog_file)
568 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200569 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200570err_offset:
571 log_err("%s: you need to specify valid offset=\n", td->o.name);
572 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200573}
574
Jens Axboe68727072007-03-15 20:49:25 +0100575int init_random_map(struct thread_data *td)
576{
Jens Axboe509eab12007-12-14 12:42:53 +0100577 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100578 struct fio_file *f;
579 unsigned int i;
580
Jens Axboede8dd112008-03-01 15:34:44 +0100581 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100582 return 0;
583
584 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100585 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
586 (unsigned long long) td->o.rw_min_bs;
587 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
588 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200589 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100590 if (f->file_map) {
591 f->num_maps = num_maps;
592 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100593 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100594 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100595 log_err("fio: failed allocating random map. If running"
596 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100597 " option or set 'softrandommap'. Or give"
598 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100599 return 1;
600 }
Jens Axboe303032a2008-03-26 10:11:10 +0100601
602 log_info("fio: file %s failed allocating random map. Running "
603 "job without.\n", f->file_name);
604 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100605 }
606
607 return 0;
608}
609
Jens Axboe53cdc682006-10-18 11:50:58 +0200610void close_files(struct thread_data *td)
611{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200612 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100613 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200614
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100615 for_each_file(td, f, i)
616 td_io_close_file(td, f);
617}
618
619void close_and_free_files(struct thread_data *td)
620{
621 struct fio_file *f;
622 unsigned int i;
623
Jens Axboeee56ad52008-02-01 10:30:20 +0100624 dprint(FD_FILE, "close files\n");
625
Jens Axboe0ab8db82006-10-18 17:16:23 +0200626 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100627 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
628 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100629 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100630 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100631
Jens Axboeb5af8292007-03-08 12:43:13 +0100632 td_io_close_file(td, f);
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +0200633 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100634
Jens Axboef17c4392008-03-01 18:40:46 +0100635 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100636 f->file_name = NULL;
637
Jens Axboec3439812007-03-20 13:54:53 +0100638 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100639 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100640 f->file_map = NULL;
641 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100642 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200643 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200644
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100645 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100646 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100647 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200648 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100649 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200650}
Jens Axboeaf52b342007-03-13 10:07:47 +0100651
Jens Axboee3bab462007-03-13 11:22:09 +0100652static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100653{
654 struct stat sb;
655
Jens Axboe66159822007-04-16 21:54:24 +0200656 if (!strcmp(f->file_name, "-"))
657 f->filetype = FIO_TYPE_PIPE;
658 else
659 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100660
Jens Axboee3bab462007-03-13 11:22:09 +0100661 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100662 if (S_ISBLK(sb.st_mode))
663 f->filetype = FIO_TYPE_BD;
664 else if (S_ISCHR(sb.st_mode))
665 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200666 else if (S_ISFIFO(sb.st_mode))
667 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100668 }
669}
670
Jens Axboef29b25a2007-07-23 08:56:43 +0200671int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100672{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100673 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100674 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100675 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100676 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100677
Jens Axboeee56ad52008-02-01 10:30:20 +0100678 dprint(FD_FILE, "add file %s\n", fname);
679
Jens Axboef17c4392008-03-01 18:40:46 +0100680 f = smalloc(sizeof(*f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200681 if (!f) {
682 log_err("fio: smalloc OOM\n");
683 assert(0);
684 }
685
Jens Axboeaf52b342007-03-13 10:07:47 +0100686 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100687
Jens Axboefc99bc02009-03-04 15:27:42 +0100688 if (td->files_size <= td->files_index) {
689 int new_size = td->o.nr_files;
Jens Axboe126d65c2008-03-01 18:04:31 +0100690
Jens Axboefc99bc02009-03-04 15:27:42 +0100691 dprint(FD_FILE, "resize file array to %d files\n", new_size);
692
693 td->files = realloc(td->files, new_size * sizeof(f));
Jens Axboefc99bc02009-03-04 15:27:42 +0100694 td->files_size = new_size;
695 }
Jens Axboe8bb76792009-03-04 15:37:52 +0100696 td->files[cur_files] = f;
Jens Axboe126d65c2008-03-01 18:04:31 +0100697
Jens Axboe07eb79d2007-04-12 13:02:38 +0200698 /*
699 * init function, io engine may not be loaded yet
700 */
701 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
702 f->real_file_size = -1ULL;
703
Jens Axboebd0ee742007-03-23 14:26:23 +0100704 if (td->o.directory)
705 len = sprintf(file_name, "%s/", td->o.directory);
706
707 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100708 f->file_name = smalloc_strdup(file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200709 if (!f->file_name) {
710 log_err("fio: smalloc OOM\n");
711 assert(0);
712 }
713
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 Axboec48c0be2008-07-31 19:55:02 +0200906 if (!__f) {
907 log_err("fio: smalloc OOM\n");
908 assert(0);
909 }
910
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200911 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +0100912 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200913 if (!__f->file_name) {
914 log_err("fio: smalloc OOM\n");
915 assert(0);
916 }
917
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200918 __f->filetype = f->filetype;
919 }
Jens Axboeb0fe4212008-03-01 18:22:27 +0100920
921 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100922 }
923}
Jens Axboef29b25a2007-07-23 08:56:43 +0200924
925/*
926 * Returns the index that matches the filename, or -1 if not there
927 */
928int get_fileno(struct thread_data *td, const char *fname)
929{
930 struct fio_file *f;
931 unsigned int i;
932
933 for_each_file(td, f, i)
934 if (!strcmp(f->file_name, fname))
935 return i;
936
937 return -1;
938}
939
940/*
941 * For log usage, where we add/open/close files automatically
942 */
943void free_release_files(struct thread_data *td)
944{
945 close_files(td);
946 td->files_index = 0;
947 td->nr_normal_files = 0;
948}