blob: 9fd04daae2f6ca2b58a61e68b0d4f816801c61a7 [file] [log] [blame]
Jens Axboe53cdc682006-10-18 11:50:58 +02001#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <assert.h>
Jens Axboebbf6b542007-03-13 15:28:55 +01005#include <dirent.h>
Jens Axboe53cdc682006-10-18 11:50:58 +02006#include <sys/stat.h>
7#include <sys/mman.h>
Jens Axboebbf6b542007-03-13 15:28:55 +01008#include <sys/types.h>
Jens Axboe53cdc682006-10-18 11:50:58 +02009
10#include "fio.h"
Jens Axboef17c4392008-03-01 18:40:46 +010011#include "smalloc.h"
Jens Axboe4906e0b2008-03-01 18:59:51 +010012#include "filehash.h"
Jens Axboe53cdc682006-10-18 11:50:58 +020013
Jens Axboe7172cfe2007-07-23 14:36:00 +020014static int root_warn;
15
Jens Axboe3baddf22008-04-04 11:10:30 +020016/*
17 * Leaves f->fd open on success, caller must close
18 */
Jens Axboe7bb48f82007-03-27 15:30:28 +020019static int extend_file(struct thread_data *td, struct fio_file *f)
Jens Axboe25205e92006-10-19 20:50:14 +020020{
Jens Axboeea443652007-03-29 14:52:13 +020021 int r, new_layout = 0, unlink_file = 0, flags;
Jens Axboe25205e92006-10-19 20:50:14 +020022 unsigned long long left;
23 unsigned int bs;
24 char *b;
Jens Axboeb2a15192006-10-18 14:10:42 +020025
Jens Axboe4241ea82007-09-12 08:18:36 +020026 if (read_only) {
27 log_err("fio: refusing extend of file due to read-only\n");
28 return 0;
29 }
30
Jens Axboe507a7022007-03-27 15:52:46 +020031 /*
32 * check if we need to lay the file out complete again. fio
33 * does that for operations involving reads, or for writes
34 * where overwrite is set
35 */
Jens Axboeffdfabd2008-03-26 09:18:14 +010036 if (td_read(td) || (td_write(td) && td->o.overwrite) ||
37 (td_write(td) && td->io_ops->flags & FIO_NOEXTEND))
Jens Axboe507a7022007-03-27 15:52:46 +020038 new_layout = 1;
Jens Axboeea443652007-03-29 14:52:13 +020039 if (td_write(td) && !td->o.overwrite)
40 unlink_file = 1;
Jens Axboe507a7022007-03-27 15:52:46 +020041
Jens Axboe6ae1f572008-02-21 10:20:00 +010042 if (unlink_file || new_layout) {
Jens Axboebd199f22008-03-26 09:57:18 +010043 dprint(FD_FILE, "layout unlink %s\n", f->file_name);
Zhang, Yanmin982016d2008-02-26 15:35:52 +010044 if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
Jens Axboe7bb48f82007-03-27 15:30:28 +020045 td_verror(td, errno, "unlink");
46 return 1;
47 }
48 }
49
Jens Axboe507a7022007-03-27 15:52:46 +020050 flags = O_WRONLY | O_CREAT;
51 if (new_layout)
52 flags |= O_TRUNC;
53
Jens Axboeee56ad52008-02-01 10:30:20 +010054 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
Jens Axboe507a7022007-03-27 15:52:46 +020055 f->fd = open(f->file_name, flags, 0644);
Jens Axboe53cdc682006-10-18 11:50:58 +020056 if (f->fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010057 td_verror(td, errno, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +020058 return 1;
59 }
60
Shawn Lewisfc74ac12008-01-11 09:45:11 +010061 if (!new_layout)
62 goto done;
63
Jens Axboeee56ad52008-02-01 10:30:20 +010064 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
65 f->real_file_size);
Jens Axboe7bb48f82007-03-27 15:30:28 +020066 if (ftruncate(f->fd, f->real_file_size) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +010067 td_verror(td, errno, "ftruncate");
Jens Axboe53cdc682006-10-18 11:50:58 +020068 goto err;
69 }
70
Jens Axboefffca022008-06-02 12:23:40 +020071#ifdef FIO_HAVE_FALLOCATE
Jens Axboeee56ad52008-02-01 10:30:20 +010072 dprint(FD_FILE, "fallocate file %s, size %llu\n", f->file_name,
73 f->real_file_size);
Jens Axboe739097e2008-05-30 22:58:37 +020074 r = posix_fallocate(f->fd, 0, f->real_file_size);
75 if (r < 0)
Jens Axboe65942472008-06-02 10:37:36 +020076 log_err("fio: posix_fallocate fails: %s\n", strerror(-r));
Jens Axboefffca022008-06-02 12:23:40 +020077#endif
Jens Axboe40f82982006-10-25 11:21:05 +020078
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010079 b = malloc(td->o.max_bs[DDIR_WRITE]);
80 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020081
Jens Axboe7bb48f82007-03-27 15:30:28 +020082 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +020083 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010084 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020085 if (bs > left)
86 bs = left;
87
88 r = write(f->fd, b, bs);
89
90 if (r == (int) bs) {
91 left -= bs;
92 continue;
93 } else {
94 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010095 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020096 else
Jens Axboee1161c32007-02-22 19:36:48 +010097 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020098
99 break;
100 }
101 }
102
Jens Axboeffdfabd2008-03-26 09:18:14 +0100103 if (td->terminate) {
104 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
Jens Axboe53cdc682006-10-18 11:50:58 +0200105 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100106 } else if (td->o.create_fsync) {
Jens Axboe98e1ac42008-03-06 11:56:48 +0100107 if (fsync(f->fd) < 0) {
108 td_verror(td, errno, "fsync");
109 goto err;
110 }
111 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200112
113 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200114done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200115 return 0;
116err:
117 close(f->fd);
118 f->fd = -1;
119 return 1;
120}
121
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200122static int pre_read_file(struct thread_data *td, struct fio_file *f)
123{
Jens Axboeb0f65862009-05-20 11:52:15 +0200124 int r, did_open = 0, old_runstate;
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200125 unsigned long long left;
126 unsigned int bs;
127 char *b;
128
Jens Axboeb0f65862009-05-20 11:52:15 +0200129 if (!(f->flags & FIO_FILE_OPEN)) {
130 if (td->io_ops->open_file(td, f)) {
131 log_err("fio: cannot pre-read, failed to open file\n");
132 return 1;
133 }
134 did_open = 1;
135 }
136
137 old_runstate = td->runstate;
138 td_set_runstate(td, TD_PRE_READING);
139
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200140 bs = td->o.max_bs[DDIR_READ];
141 b = malloc(bs);
142 memset(b, 0, bs);
143
144 lseek(f->fd, f->file_offset, SEEK_SET);
145 left = f->io_size;
146
147 while (left && !td->terminate) {
148 if (bs > left)
149 bs = left;
150
151 r = read(f->fd, b, bs);
152
153 if (r == (int) bs) {
154 left -= bs;
155 continue;
156 } else {
Jens Axboeb0f65862009-05-20 11:52:15 +0200157 printf("r=%d\n", r);
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200158 td_verror(td, EIO, "pre_read");
159 break;
160 }
161 }
162
Jens Axboeb0f65862009-05-20 11:52:15 +0200163 td_set_runstate(td, old_runstate);
164
165 if (did_open)
166 td->io_ops->close_file(td, f);
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200167 free(b);
168 return 0;
169}
170
Jens Axboe7bb48f82007-03-27 15:30:28 +0200171static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100172{
Jens Axboedc873b62008-06-04 20:13:04 +0200173 unsigned long long ret, sized;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100174 long r;
175
Jens Axboe9c60ce62007-03-15 09:14:47 +0100176 r = os_random_long(&td->file_size_state);
Jens Axboedc873b62008-06-04 20:13:04 +0200177 sized = td->o.file_size_high - td->o.file_size_low;
178 ret = (unsigned long long) ((double) sized * (r / (OS_RAND_MAX + 1.0)));
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100179 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100180 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100181 return ret;
182}
183
Jens Axboe53cdc682006-10-18 11:50:58 +0200184static int file_size(struct thread_data *td, struct fio_file *f)
185{
186 struct stat st;
187
Jens Axboedf9c26b2009-03-05 10:13:58 +0100188 if (stat(f->file_name, &st) == -1) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200189 td_verror(td, errno, "fstat");
190 return 1;
191 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200192
Jens Axboe7bb48f82007-03-27 15:30:28 +0200193 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200194 return 0;
195}
196
197static int bdev_size(struct thread_data *td, struct fio_file *f)
198{
199 unsigned long long bytes;
200 int r;
201
Jens Axboedf9c26b2009-03-05 10:13:58 +0100202 if (td->io_ops->open_file(td, f)) {
203 log_err("fio: failed opening blockdev %s for size check\n",
204 f->file_name);
205 return 1;
206 }
207
Jens Axboe53cdc682006-10-18 11:50:58 +0200208 r = blockdev_size(f->fd, &bytes);
209 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100210 td_verror(td, r, "blockdev_size");
Jens Axboedf9c26b2009-03-05 10:13:58 +0100211 goto err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200212 }
213
Jens Axboe7ab077a2009-02-02 15:07:37 +0100214 if (!bytes) {
215 log_err("%s: zero sized block device?\n", f->file_name);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100216 goto err;
Jens Axboe7ab077a2009-02-02 15:07:37 +0100217 }
218
Jens Axboe53cdc682006-10-18 11:50:58 +0200219 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200220 return 0;
Jens Axboedf9c26b2009-03-05 10:13:58 +0100221err:
222 td->io_ops->close_file(td, f);
223 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200224}
225
226static int get_file_size(struct thread_data *td, struct fio_file *f)
227{
228 int ret = 0;
229
Jens Axboe409b3412007-03-28 09:57:01 +0200230 if (f->flags & FIO_SIZE_KNOWN)
231 return 0;
232
Jens Axboe7bb48f82007-03-27 15:30:28 +0200233 if (f->filetype == FIO_TYPE_FILE)
234 ret = file_size(td, f);
235 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200236 ret = bdev_size(td, f);
237 else
238 f->real_file_size = -1;
239
240 if (ret)
241 return ret;
242
243 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100244 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
245 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200246 return 1;
247 }
248
Jens Axboe409b3412007-03-28 09:57:01 +0200249 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200250 return 0;
251}
252
Jens Axboe3baddf22008-04-04 11:10:30 +0200253static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
254 unsigned long long off,
255 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200256{
257 int ret = 0;
258
Jens Axboe3baddf22008-04-04 11:10:30 +0200259 if (len == -1ULL)
260 len = f->io_size;
261 if (off == -1ULL)
262 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100263
Jens Axboe3baddf22008-04-04 11:10:30 +0200264 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
265 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100266
Jens Axboee5b401d2006-10-18 16:03:40 +0200267 /*
268 * FIXME: add blockdev flushing too
269 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100270 if (f->mmap)
Jens Axboe3baddf22008-04-04 11:10:30 +0200271 ret = madvise(f->mmap, len, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100272 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200273 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100274 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100275 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200276 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200277 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100278 log_err("fio: only root may flush block "
279 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200280 root_warn = 1;
281 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200282 ret = 0;
283 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200284 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200285 ret = 0;
286
287 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100288 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200289 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200290 } else if (ret > 0) {
291 td_verror(td, ret, "invalidate_cache");
292 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200293 }
294
Jens Axboead2da602007-02-26 12:33:27 +0100295 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200296
297}
298
299int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
300{
Jens Axboea5fb4612008-05-28 10:54:01 +0200301 if (!(f->flags & FIO_FILE_OPEN))
302 return 0;
303
Jens Axboe3baddf22008-04-04 11:10:30 +0200304 return __file_invalidate_cache(td, f, -1, -1);
Jens Axboee5b401d2006-10-18 16:03:40 +0200305}
306
Jens Axboe6977bcd2008-03-01 15:55:36 +0100307int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200308{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100309 int ret = 0;
310
Jens Axboeee56ad52008-02-01 10:30:20 +0100311 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100312
313 remove_file_hash(f);
314
Jens Axboe6977bcd2008-03-01 15:55:36 +0100315 if (close(f->fd) < 0)
316 ret = errno;
317
Jens Axboeb5af8292007-03-08 12:43:13 +0100318 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100319 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200320}
321
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100322static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200323{
Jens Axboe29c13492008-03-01 19:25:20 +0100324 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100325 int from_hash;
326
327 __f = lookup_file_hash(f->file_name);
328 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100329 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100330 /*
331 * racy, need the __f->lock locked
332 */
333 f->lock = __f->lock;
334 f->lock_owner = __f->lock_owner;
335 f->lock_batch = __f->lock_batch;
336 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100337 from_hash = 1;
338 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100339 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100340 from_hash = 0;
341 }
342
Jens Axboee8670ef2008-03-06 12:06:30 +0100343 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100344 return from_hash;
345}
346
347int generic_open_file(struct thread_data *td, struct fio_file *f)
348{
Jens Axboe66159822007-04-16 21:54:24 +0200349 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200350 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100351 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200352
Jens Axboeee56ad52008-02-01 10:30:20 +0100353 dprint(FD_FILE, "fd open %s\n", f->file_name);
354
Jens Axboe66159822007-04-16 21:54:24 +0200355 if (!strcmp(f->file_name, "-")) {
356 if (td_rw(td)) {
357 log_err("fio: can't read/write to stdin/out\n");
358 return 1;
359 }
360 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200361
362 /*
363 * move output logging to stderr, if we are writing to stdout
364 */
365 if (td_write(td))
366 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200367 }
368
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100369 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100370 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100371 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100372 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200373 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200374 flags |= FIO_O_NOATIME;
Jens Axboe814452b2009-03-04 12:53:13 +0100375 if (td->o.create_on_open)
376 flags |= O_CREAT;
Jens Axboe7abf8332006-11-23 15:01:19 +0100377
Aaron Carroll056f3452007-11-26 09:08:53 +0100378open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200379 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100380 if (!read_only)
381 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200382
Jens Axboeaf52b342007-03-13 10:07:47 +0100383 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100384 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100385
Jens Axboe66159822007-04-16 21:54:24 +0200386 if (is_std)
387 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100388 else
389 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100390 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200391 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100392 flags |= O_RDWR;
393 else
394 flags |= O_RDONLY;
395
Jens Axboe66159822007-04-16 21:54:24 +0200396 if (is_std)
397 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100398 else
399 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200400 }
401
402 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100403 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100404 int __e = errno;
405
Jens Axboe5921e802008-05-30 15:02:38 +0200406 if (errno == EPERM && (flags & FIO_O_NOATIME)) {
407 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100408 goto open_again;
409 }
410
Jens Axboee8670ef2008-03-06 12:06:30 +0100411 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100412
413 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200414 }
415
Jens Axboe29c13492008-03-01 19:25:20 +0100416 if (!from_hash && f->fd != -1) {
417 if (add_file_hash(f)) {
418 int ret;
419
420 /*
421 * OK to ignore, we haven't done anything with it
422 */
423 ret = generic_close_file(td, f);
424 goto open_again;
425 }
426 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100427
Jens Axboe53cdc682006-10-18 11:50:58 +0200428 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100429}
430
Jens Axboedf9c26b2009-03-05 10:13:58 +0100431int generic_get_file_size(struct thread_data *td, struct fio_file *f)
Jens Axboe21972cd2006-11-23 12:39:16 +0100432{
Jens Axboedf9c26b2009-03-05 10:13:58 +0100433 return get_file_size(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100434}
435
Jens Axboe7bb48f82007-03-27 15:30:28 +0200436/*
437 * open/close all files, so that ->real_file_size gets set
438 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200439static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200440{
441 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100442 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200443 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200444
445 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100446 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
447 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100448
Jens Axboe99a47c62009-04-07 22:20:56 +0200449 if (td_io_get_file_size(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200450 if (td->error != ENOENT) {
451 log_err("%s\n", td->verror);
452 err = 1;
453 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200454 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200455 }
Jens Axboe409b3412007-03-28 09:57:01 +0200456
457 if (f->real_file_size == -1ULL && td->o.size)
458 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200459 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200460
461 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200462}
463
464/*
465 * Open the files and setup files sizes, creating files if necessary.
466 */
467int setup_files(struct thread_data *td)
468{
469 unsigned long long total_size, extend_size;
470 struct fio_file *f;
471 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200472 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200473
Jens Axboeee56ad52008-02-01 10:30:20 +0100474 dprint(FD_FILE, "setup files\n");
475
Jens Axboe691c8fb2008-03-07 14:26:26 +0100476 if (td->o.read_iolog_file)
477 return 0;
478
Jens Axboe53cdc682006-10-18 11:50:58 +0200479 /*
480 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200481 * opening the files and setting f->real_file_size to indicate
482 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200483 */
484 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200485 err = td->io_ops->setup(td);
486 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200487 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200488
Jens Axboef1027062006-10-20 10:14:01 +0200489 if (err)
490 return err;
491
Jens Axboe0a7eb122006-10-20 10:36:42 +0200492 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200493 * check sizes. if the files/devices do not exist and the size
494 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200495 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200496 total_size = 0;
497 for_each_file(td, f, i) {
498 if (f->real_file_size == -1ULL)
499 total_size = -1ULL;
500 else
501 total_size += f->real_file_size;
502 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200503
Jens Axboe7bb48f82007-03-27 15:30:28 +0200504 /*
505 * device/file sizes are zero and no size given, punt
506 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200507 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100508 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200509 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100510 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200511 return 1;
512 }
513
Jens Axboe7bb48f82007-03-27 15:30:28 +0200514 /*
515 * now file sizes are known, so we can set ->io_size. if size= is
516 * not given, ->io_size is just equal to ->real_file_size. if size
517 * is given, ->io_size is size / nr_files.
518 */
519 extend_size = total_size = 0;
520 need_extend = 0;
521 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200522 f->file_offset = td->o.start_offset;
523
Jens Axboe7bb48f82007-03-27 15:30:28 +0200524 if (!td->o.file_size_low) {
525 /*
526 * no file size range given, file size is equal to
527 * total size divided by number of files. if that is
528 * zero, set it to the real file size.
529 */
530 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100531 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100532 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200533 } else if (f->real_file_size < td->o.file_size_low ||
534 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100535 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200536 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200537 /*
538 * file size given. if it's fixed, use that. if it's a
539 * range, generate a random size in-between.
540 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100541 if (td->o.file_size_low == td->o.file_size_high) {
542 f->io_size = td->o.file_size_low
543 - f->file_offset;
544 } else {
545 f->io_size = get_rand_file_size(td)
546 - f->file_offset;
547 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100548 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200549 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200550
551 if (f->io_size == -1ULL)
552 total_size = -1ULL;
553 else
554 total_size += f->io_size;
555
556 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200557 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200558 !(td->io_ops->flags & FIO_DISKLESSIO)) {
Jens Axboe814452b2009-03-04 12:53:13 +0100559 if (!td->o.create_on_open) {
560 need_extend++;
561 extend_size += (f->io_size + f->file_offset);
562 } else
563 f->real_file_size = f->io_size + f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200564 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100565 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200566 }
567
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200568 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200569 td->o.size = total_size;
570
571 /*
572 * See if we need to extend some files
573 */
574 if (need_extend) {
575 temp_stall_ts = 1;
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200576 if (!terse_output)
577 log_info("%s: Laying out IO file(s) (%u file(s) /"
578 " %LuMiB)\n", td->o.name, need_extend,
579 extend_size >> 20);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200580
581 for_each_file(td, f, i) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200582 unsigned long long old_len, extend_len;
583
Jens Axboe7bb48f82007-03-27 15:30:28 +0200584 if (!(f->flags & FIO_FILE_EXTEND))
585 continue;
586
Jens Axboe409b3412007-03-28 09:57:01 +0200587 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200588 f->flags &= ~FIO_FILE_EXTEND;
Jens Axboe3baddf22008-04-04 11:10:30 +0200589 old_len = f->real_file_size;
590 extend_len = f->io_size + f->file_offset - old_len;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200591 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200592 err = extend_file(td, f);
593 if (err)
594 break;
Jens Axboe3baddf22008-04-04 11:10:30 +0200595
596 err = __file_invalidate_cache(td, f, old_len,
597 extend_len);
598 close(f->fd);
599 f->fd = -1;
600 if (err)
601 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200602 }
603 temp_stall_ts = 0;
604 }
605
606 if (err)
607 return err;
608
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100609 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200610 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200611
Jens Axboeea966f82007-09-03 10:09:37 +0200612 /*
613 * iolog already set the total io size, if we read back
614 * stored entries.
615 */
616 if (!td->o.read_iolog_file)
617 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200618 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200619err_offset:
620 log_err("%s: you need to specify valid offset=\n", td->o.name);
621 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200622}
623
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200624int pre_read_files(struct thread_data *td)
625{
626 struct fio_file *f;
627 unsigned int i;
628
629 dprint(FD_FILE, "pre_read files\n");
630
631 for_each_file(td, f, i) {
632 pre_read_file(td, f);
633 }
634
635 return 1;
636}
637
Jens Axboe68727072007-03-15 20:49:25 +0100638int init_random_map(struct thread_data *td)
639{
Jens Axboe509eab12007-12-14 12:42:53 +0100640 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100641 struct fio_file *f;
642 unsigned int i;
643
Jens Axboede8dd112008-03-01 15:34:44 +0100644 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100645 return 0;
646
647 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100648 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
649 (unsigned long long) td->o.rw_min_bs;
650 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
651 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200652 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100653 if (f->file_map) {
654 f->num_maps = num_maps;
655 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100656 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100657 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100658 log_err("fio: failed allocating random map. If running"
659 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100660 " option or set 'softrandommap'. Or give"
661 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100662 return 1;
663 }
Jens Axboe303032a2008-03-26 10:11:10 +0100664
665 log_info("fio: file %s failed allocating random map. Running "
666 "job without.\n", f->file_name);
667 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100668 }
669
670 return 0;
671}
672
Jens Axboe53cdc682006-10-18 11:50:58 +0200673void close_files(struct thread_data *td)
674{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200675 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100676 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200677
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100678 for_each_file(td, f, i)
679 td_io_close_file(td, f);
680}
681
682void close_and_free_files(struct thread_data *td)
683{
684 struct fio_file *f;
685 unsigned int i;
686
Jens Axboeee56ad52008-02-01 10:30:20 +0100687 dprint(FD_FILE, "close files\n");
688
Jens Axboe0ab8db82006-10-18 17:16:23 +0200689 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100690 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
691 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100692 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100693 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100694
Jens Axboeb5af8292007-03-08 12:43:13 +0100695 td_io_close_file(td, f);
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +0200696 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100697
Jens Axboef17c4392008-03-01 18:40:46 +0100698 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100699 f->file_name = NULL;
700
Jens Axboec3439812007-03-20 13:54:53 +0100701 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100702 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100703 f->file_map = NULL;
704 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100705 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200706 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200707
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100708 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100709 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100710 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200711 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100712 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200713}
Jens Axboeaf52b342007-03-13 10:07:47 +0100714
Jens Axboee3bab462007-03-13 11:22:09 +0100715static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100716{
717 struct stat sb;
718
Jens Axboe66159822007-04-16 21:54:24 +0200719 if (!strcmp(f->file_name, "-"))
720 f->filetype = FIO_TYPE_PIPE;
721 else
722 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100723
Jens Axboee3bab462007-03-13 11:22:09 +0100724 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100725 if (S_ISBLK(sb.st_mode))
726 f->filetype = FIO_TYPE_BD;
727 else if (S_ISCHR(sb.st_mode))
728 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200729 else if (S_ISFIFO(sb.st_mode))
730 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100731 }
732}
733
Jens Axboef29b25a2007-07-23 08:56:43 +0200734int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100735{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100736 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100737 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100738 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100739 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100740
Jens Axboeee56ad52008-02-01 10:30:20 +0100741 dprint(FD_FILE, "add file %s\n", fname);
742
Jens Axboef17c4392008-03-01 18:40:46 +0100743 f = smalloc(sizeof(*f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200744 if (!f) {
745 log_err("fio: smalloc OOM\n");
746 assert(0);
747 }
748
Jens Axboeaf52b342007-03-13 10:07:47 +0100749 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100750
Jens Axboefc99bc02009-03-04 15:27:42 +0100751 if (td->files_size <= td->files_index) {
Carl Henrik Lunde4b341fc2009-04-20 08:41:37 +0200752 int new_size = td->o.nr_files + 1;
Jens Axboe126d65c2008-03-01 18:04:31 +0100753
Jens Axboefc99bc02009-03-04 15:27:42 +0100754 dprint(FD_FILE, "resize file array to %d files\n", new_size);
755
756 td->files = realloc(td->files, new_size * sizeof(f));
Jens Axboefc99bc02009-03-04 15:27:42 +0100757 td->files_size = new_size;
758 }
Jens Axboe8bb76792009-03-04 15:37:52 +0100759 td->files[cur_files] = f;
Jens Axboe126d65c2008-03-01 18:04:31 +0100760
Jens Axboe07eb79d2007-04-12 13:02:38 +0200761 /*
762 * init function, io engine may not be loaded yet
763 */
764 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
765 f->real_file_size = -1ULL;
766
Jens Axboebd0ee742007-03-23 14:26:23 +0100767 if (td->o.directory)
768 len = sprintf(file_name, "%s/", td->o.directory);
769
770 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100771 f->file_name = smalloc_strdup(file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200772 if (!f->file_name) {
773 log_err("fio: smalloc OOM\n");
774 assert(0);
775 }
776
Jens Axboee3bab462007-03-13 11:22:09 +0100777 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100778
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100779 switch (td->o.file_lock_mode) {
780 case FILE_LOCK_NONE:
781 break;
782 case FILE_LOCK_READWRITE:
783 f->lock = fio_mutex_rw_init();
784 break;
785 case FILE_LOCK_EXCLUSIVE:
786 f->lock = fio_mutex_init(1);
787 break;
788 default:
789 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
790 assert(0);
791 }
Jens Axboe29c13492008-03-01 19:25:20 +0100792
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100793 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100794 if (f->filetype == FIO_TYPE_FILE)
795 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200796
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100797 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
798 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100799
Jens Axboef29b25a2007-07-23 08:56:43 +0200800 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100801}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100802
803void get_file(struct fio_file *f)
804{
Jens Axboe8172fe92008-02-01 21:51:02 +0100805 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200806 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100807 f->references++;
808}
809
Jens Axboe6977bcd2008-03-01 15:55:36 +0100810int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100811{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100812 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100813
Jens Axboe8172fe92008-02-01 21:51:02 +0100814 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100815
Jens Axboe0ad920e2007-03-13 11:06:45 +0100816 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100817 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100818
819 assert(f->references);
820 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100821 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100822
Jens Axboed424d4d2007-04-17 09:05:10 +0200823 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +0100824 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +0100825
Jens Axboe0ad920e2007-03-13 11:06:45 +0100826 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100827 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200828
Jens Axboe98e1ac42008-03-06 11:56:48 +0100829 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +0200830 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +0100831
Jens Axboe0ad920e2007-03-13 11:06:45 +0100832 td->nr_open_files--;
833 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100834 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100835}
Jens Axboebbf6b542007-03-13 15:28:55 +0100836
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100837void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100838{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100839 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
840 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100841
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100842 if (f->lock_owner == td && f->lock_batch--)
843 return;
844
845 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
846 if (ddir == DDIR_READ)
847 fio_mutex_down_read(f->lock);
848 else
849 fio_mutex_down_write(f->lock);
850 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
851 fio_mutex_down(f->lock);
852
853 f->lock_owner = td;
854 f->lock_batch = td->o.lockfile_batch;
855 f->lock_ddir = ddir;
856}
857
858void unlock_file(struct thread_data *td, struct fio_file *f)
859{
860 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
861 return;
862 if (f->lock_batch)
863 return;
864
865 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
866 const int is_read = f->lock_ddir == DDIR_READ;
867 int val = fio_mutex_getval(f->lock);
868
869 if ((is_read && val == 1) || (!is_read && val == -1))
870 f->lock_owner = NULL;
871
872 if (is_read)
873 fio_mutex_up_read(f->lock);
874 else
875 fio_mutex_up_write(f->lock);
876 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
877 int val = fio_mutex_getval(f->lock);
878
879 if (val == 0)
880 f->lock_owner = NULL;
881
882 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100883 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100884}
885
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100886void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100887{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100888 if (f->lock_owner != td)
889 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100890
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100891 f->lock_batch = 0;
892 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100893}
894
Jens Axboebbf6b542007-03-13 15:28:55 +0100895static int recurse_dir(struct thread_data *td, const char *dirname)
896{
897 struct dirent *dir;
898 int ret = 0;
899 DIR *D;
900
901 D = opendir(dirname);
902 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200903 char buf[FIO_VERROR_SIZE];
904
905 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
906 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100907 return 1;
908 }
909
910 while ((dir = readdir(D)) != NULL) {
911 char full_path[PATH_MAX];
912 struct stat sb;
913
Jens Axboee85b2b82007-03-14 09:39:06 +0100914 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
915 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100916
Jens Axboebbf6b542007-03-13 15:28:55 +0100917 sprintf(full_path, "%s/%s", dirname, dir->d_name);
918
919 if (lstat(full_path, &sb) == -1) {
920 if (errno != ENOENT) {
921 td_verror(td, errno, "stat");
922 return 1;
923 }
924 }
925
926 if (S_ISREG(sb.st_mode)) {
927 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100928 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100929 continue;
930 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200931 if (!S_ISDIR(sb.st_mode))
932 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100933
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100934 ret = recurse_dir(td, full_path);
935 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +0100936 break;
937 }
938
939 closedir(D);
940 return ret;
941}
942
943int add_dir_files(struct thread_data *td, const char *path)
944{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200945 int ret = recurse_dir(td, path);
946
947 if (!ret)
948 log_info("fio: opendir added %d files\n", td->o.nr_files);
949
950 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100951}
Jens Axboecade3ef2007-03-23 15:29:45 +0100952
953void dup_files(struct thread_data *td, struct thread_data *org)
954{
955 struct fio_file *f;
956 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +0100957
958 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +0100959
960 if (!org->files)
961 return;
962
Jens Axboe9efef3c2008-03-06 10:26:25 +0100963 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +0100964
Jens Axboe9efef3c2008-03-06 10:26:25 +0100965 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100966 struct fio_file *__f;
967
Jens Axboef17c4392008-03-01 18:40:46 +0100968 __f = smalloc(sizeof(*__f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200969 if (!__f) {
970 log_err("fio: smalloc OOM\n");
971 assert(0);
972 }
973
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200974 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +0100975 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200976 if (!__f->file_name) {
977 log_err("fio: smalloc OOM\n");
978 assert(0);
979 }
980
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200981 __f->filetype = f->filetype;
982 }
Jens Axboeb0fe4212008-03-01 18:22:27 +0100983
984 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100985 }
986}
Jens Axboef29b25a2007-07-23 08:56:43 +0200987
988/*
989 * Returns the index that matches the filename, or -1 if not there
990 */
991int get_fileno(struct thread_data *td, const char *fname)
992{
993 struct fio_file *f;
994 unsigned int i;
995
996 for_each_file(td, f, i)
997 if (!strcmp(f->file_name, fname))
998 return i;
999
1000 return -1;
1001}
1002
1003/*
1004 * For log usage, where we add/open/close files automatically
1005 */
1006void free_release_files(struct thread_data *td)
1007{
1008 close_files(td);
1009 td->files_index = 0;
1010 td->nr_normal_files = 0;
1011}