blob: 81c7683bc4a27cf430c4b821817545901daf1988 [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 Axboe5e0074c2009-06-02 21:40:09 +020064 /*
65 * The size will be -1ULL when fill_device is used, so don't truncate
66 * or fallocate this file, just write it
67 */
68 if (!td->o.fill_device) {
69 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
Jens Axboeee56ad52008-02-01 10:30:20 +010070 f->real_file_size);
Jens Axboe5e0074c2009-06-02 21:40:09 +020071 if (ftruncate(f->fd, f->real_file_size) == -1) {
72 td_verror(td, errno, "ftruncate");
73 goto err;
74 }
Jens Axboe53cdc682006-10-18 11:50:58 +020075
Jens Axboefffca022008-06-02 12:23:40 +020076#ifdef FIO_HAVE_FALLOCATE
Jens Axboe5e0074c2009-06-02 21:40:09 +020077 dprint(FD_FILE, "fallocate file %s, size %llu\n", f->file_name,
Jens Axboeee56ad52008-02-01 10:30:20 +010078 f->real_file_size);
Jens Axboe5e0074c2009-06-02 21:40:09 +020079 r = posix_fallocate(f->fd, 0, f->real_file_size);
80 if (r < 0) {
81 log_err("fio: posix_fallocate fails: %s\n",
82 strerror(-r));
83 }
Jens Axboefffca022008-06-02 12:23:40 +020084#endif
Jens Axboe5e0074c2009-06-02 21:40:09 +020085 }
Jens Axboe40f82982006-10-25 11:21:05 +020086
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010087 b = malloc(td->o.max_bs[DDIR_WRITE]);
88 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020089
Jens Axboe7bb48f82007-03-27 15:30:28 +020090 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +020091 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010092 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020093 if (bs > left)
94 bs = left;
95
96 r = write(f->fd, b, bs);
97
Jens Axboe5e0074c2009-06-02 21:40:09 +020098 if (r > 0) {
99 left -= r;
Jens Axboe53cdc682006-10-18 11:50:58 +0200100 continue;
101 } else {
Jens Axboe5e0074c2009-06-02 21:40:09 +0200102 if (r < 0) {
103 int __e = errno;
104
105 if (__e == ENOSPC) {
106 if (td->o.fill_device)
107 break;
108 log_info("fio: ENOSPC on laying out "
109 "file, stopping\n");
110 break;
111 }
Jens Axboee1161c32007-02-22 19:36:48 +0100112 td_verror(td, errno, "write");
Jens Axboe5e0074c2009-06-02 21:40:09 +0200113 } else
Jens Axboee1161c32007-02-22 19:36:48 +0100114 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +0200115
116 break;
117 }
118 }
119
Jens Axboeffdfabd2008-03-26 09:18:14 +0100120 if (td->terminate) {
121 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
Jens Axboe53cdc682006-10-18 11:50:58 +0200122 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100123 } else if (td->o.create_fsync) {
Jens Axboe98e1ac42008-03-06 11:56:48 +0100124 if (fsync(f->fd) < 0) {
125 td_verror(td, errno, "fsync");
126 goto err;
127 }
128 }
Jens Axboe5e0074c2009-06-02 21:40:09 +0200129 if (td->o.fill_device) {
130 f->flags &= ~FIO_SIZE_KNOWN;
131 if (td_io_get_file_size(td, f))
132 goto err;
133 if (f->io_size > f->real_file_size)
134 f->io_size = f->real_file_size;
135 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200136
137 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200138done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200139 return 0;
140err:
141 close(f->fd);
142 f->fd = -1;
143 return 1;
144}
145
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200146static int pre_read_file(struct thread_data *td, struct fio_file *f)
147{
Jens Axboeb0f65862009-05-20 11:52:15 +0200148 int r, did_open = 0, old_runstate;
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200149 unsigned long long left;
150 unsigned int bs;
151 char *b;
152
Jens Axboeb0f65862009-05-20 11:52:15 +0200153 if (!(f->flags & FIO_FILE_OPEN)) {
154 if (td->io_ops->open_file(td, f)) {
155 log_err("fio: cannot pre-read, failed to open file\n");
156 return 1;
157 }
158 did_open = 1;
159 }
160
161 old_runstate = td->runstate;
162 td_set_runstate(td, TD_PRE_READING);
163
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200164 bs = td->o.max_bs[DDIR_READ];
165 b = malloc(bs);
166 memset(b, 0, bs);
167
168 lseek(f->fd, f->file_offset, SEEK_SET);
169 left = f->io_size;
170
171 while (left && !td->terminate) {
172 if (bs > left)
173 bs = left;
174
175 r = read(f->fd, b, bs);
176
177 if (r == (int) bs) {
178 left -= bs;
179 continue;
180 } else {
181 td_verror(td, EIO, "pre_read");
182 break;
183 }
184 }
185
Jens Axboeb0f65862009-05-20 11:52:15 +0200186 td_set_runstate(td, old_runstate);
187
188 if (did_open)
189 td->io_ops->close_file(td, f);
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200190 free(b);
191 return 0;
192}
193
Jens Axboe7bb48f82007-03-27 15:30:28 +0200194static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100195{
Jens Axboedc873b62008-06-04 20:13:04 +0200196 unsigned long long ret, sized;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100197 long r;
198
Jens Axboe9c60ce62007-03-15 09:14:47 +0100199 r = os_random_long(&td->file_size_state);
Jens Axboedc873b62008-06-04 20:13:04 +0200200 sized = td->o.file_size_high - td->o.file_size_low;
201 ret = (unsigned long long) ((double) sized * (r / (OS_RAND_MAX + 1.0)));
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100202 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100203 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100204 return ret;
205}
206
Jens Axboe53cdc682006-10-18 11:50:58 +0200207static int file_size(struct thread_data *td, struct fio_file *f)
208{
209 struct stat st;
210
Jens Axboedf9c26b2009-03-05 10:13:58 +0100211 if (stat(f->file_name, &st) == -1) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200212 td_verror(td, errno, "fstat");
213 return 1;
214 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200215
Jens Axboe7bb48f82007-03-27 15:30:28 +0200216 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200217 return 0;
218}
219
220static int bdev_size(struct thread_data *td, struct fio_file *f)
221{
222 unsigned long long bytes;
223 int r;
224
Jens Axboedf9c26b2009-03-05 10:13:58 +0100225 if (td->io_ops->open_file(td, f)) {
226 log_err("fio: failed opening blockdev %s for size check\n",
227 f->file_name);
228 return 1;
229 }
230
Jens Axboe53cdc682006-10-18 11:50:58 +0200231 r = blockdev_size(f->fd, &bytes);
232 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100233 td_verror(td, r, "blockdev_size");
Jens Axboedf9c26b2009-03-05 10:13:58 +0100234 goto err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200235 }
236
Jens Axboe7ab077a2009-02-02 15:07:37 +0100237 if (!bytes) {
238 log_err("%s: zero sized block device?\n", f->file_name);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100239 goto err;
Jens Axboe7ab077a2009-02-02 15:07:37 +0100240 }
241
Jens Axboe53cdc682006-10-18 11:50:58 +0200242 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200243 return 0;
Jens Axboedf9c26b2009-03-05 10:13:58 +0100244err:
245 td->io_ops->close_file(td, f);
246 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200247}
248
249static int get_file_size(struct thread_data *td, struct fio_file *f)
250{
251 int ret = 0;
252
Jens Axboe409b3412007-03-28 09:57:01 +0200253 if (f->flags & FIO_SIZE_KNOWN)
254 return 0;
255
Jens Axboe7bb48f82007-03-27 15:30:28 +0200256 if (f->filetype == FIO_TYPE_FILE)
257 ret = file_size(td, f);
258 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200259 ret = bdev_size(td, f);
260 else
261 f->real_file_size = -1;
262
263 if (ret)
264 return ret;
265
266 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100267 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
268 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200269 return 1;
270 }
271
Jens Axboe409b3412007-03-28 09:57:01 +0200272 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200273 return 0;
274}
275
Jens Axboe3baddf22008-04-04 11:10:30 +0200276static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
277 unsigned long long off,
278 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200279{
280 int ret = 0;
281
Jens Axboe5e0074c2009-06-02 21:40:09 +0200282 if (len == -1ULL)
Jens Axboe3baddf22008-04-04 11:10:30 +0200283 len = f->io_size;
284 if (off == -1ULL)
285 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100286
Jens Axboe3baddf22008-04-04 11:10:30 +0200287 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
288 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100289
Jens Axboee5b401d2006-10-18 16:03:40 +0200290 /*
291 * FIXME: add blockdev flushing too
292 */
Jens Axboeac893112009-06-02 13:06:01 +0200293 if (f->mmap_ptr)
294 ret = madvise(f->mmap_ptr, f->mmap_sz, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100295 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200296 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100297 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100298 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200299 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200300 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100301 log_err("fio: only root may flush block "
302 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200303 root_warn = 1;
304 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200305 ret = 0;
306 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200307 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200308 ret = 0;
309
310 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100311 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200312 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200313 } else if (ret > 0) {
314 td_verror(td, ret, "invalidate_cache");
315 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200316 }
317
Jens Axboead2da602007-02-26 12:33:27 +0100318 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200319
320}
321
322int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
323{
Jens Axboea5fb4612008-05-28 10:54:01 +0200324 if (!(f->flags & FIO_FILE_OPEN))
325 return 0;
326
Jens Axboe5e0074c2009-06-02 21:40:09 +0200327 return __file_invalidate_cache(td, f, -1ULL, -1ULL);
Jens Axboee5b401d2006-10-18 16:03:40 +0200328}
329
Jens Axboe6977bcd2008-03-01 15:55:36 +0100330int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200331{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100332 int ret = 0;
333
Jens Axboeee56ad52008-02-01 10:30:20 +0100334 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100335
336 remove_file_hash(f);
337
Jens Axboe6977bcd2008-03-01 15:55:36 +0100338 if (close(f->fd) < 0)
339 ret = errno;
340
Jens Axboeb5af8292007-03-08 12:43:13 +0100341 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100342 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200343}
344
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100345static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200346{
Jens Axboe29c13492008-03-01 19:25:20 +0100347 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100348 int from_hash;
349
350 __f = lookup_file_hash(f->file_name);
351 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100352 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100353 /*
354 * racy, need the __f->lock locked
355 */
356 f->lock = __f->lock;
357 f->lock_owner = __f->lock_owner;
358 f->lock_batch = __f->lock_batch;
359 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100360 from_hash = 1;
361 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100362 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100363 from_hash = 0;
364 }
365
Jens Axboee8670ef2008-03-06 12:06:30 +0100366 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100367 return from_hash;
368}
369
370int generic_open_file(struct thread_data *td, struct fio_file *f)
371{
Jens Axboe66159822007-04-16 21:54:24 +0200372 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200373 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100374 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200375
Jens Axboeee56ad52008-02-01 10:30:20 +0100376 dprint(FD_FILE, "fd open %s\n", f->file_name);
377
Jens Axboe66159822007-04-16 21:54:24 +0200378 if (!strcmp(f->file_name, "-")) {
379 if (td_rw(td)) {
380 log_err("fio: can't read/write to stdin/out\n");
381 return 1;
382 }
383 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200384
385 /*
386 * move output logging to stderr, if we are writing to stdout
387 */
388 if (td_write(td))
389 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200390 }
391
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100392 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100393 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100394 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100395 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200396 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200397 flags |= FIO_O_NOATIME;
Jens Axboe814452b2009-03-04 12:53:13 +0100398 if (td->o.create_on_open)
399 flags |= O_CREAT;
Jens Axboe7abf8332006-11-23 15:01:19 +0100400
Aaron Carroll056f3452007-11-26 09:08:53 +0100401open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200402 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100403 if (!read_only)
404 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200405
Jens Axboeaf52b342007-03-13 10:07:47 +0100406 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100407 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100408
Jens Axboe66159822007-04-16 21:54:24 +0200409 if (is_std)
410 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100411 else
412 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100413 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200414 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100415 flags |= O_RDWR;
416 else
417 flags |= O_RDONLY;
418
Jens Axboe66159822007-04-16 21:54:24 +0200419 if (is_std)
420 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100421 else
422 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200423 }
424
425 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100426 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100427 int __e = errno;
428
Jens Axboe5921e802008-05-30 15:02:38 +0200429 if (errno == EPERM && (flags & FIO_O_NOATIME)) {
430 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100431 goto open_again;
432 }
433
Jens Axboee8670ef2008-03-06 12:06:30 +0100434 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100435
436 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200437 }
438
Jens Axboe29c13492008-03-01 19:25:20 +0100439 if (!from_hash && f->fd != -1) {
440 if (add_file_hash(f)) {
441 int ret;
442
443 /*
444 * OK to ignore, we haven't done anything with it
445 */
446 ret = generic_close_file(td, f);
447 goto open_again;
448 }
449 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100450
Jens Axboe53cdc682006-10-18 11:50:58 +0200451 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100452}
453
Jens Axboedf9c26b2009-03-05 10:13:58 +0100454int generic_get_file_size(struct thread_data *td, struct fio_file *f)
Jens Axboe21972cd2006-11-23 12:39:16 +0100455{
Jens Axboedf9c26b2009-03-05 10:13:58 +0100456 return get_file_size(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100457}
458
Jens Axboe7bb48f82007-03-27 15:30:28 +0200459/*
460 * open/close all files, so that ->real_file_size gets set
461 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200462static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200463{
464 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100465 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200466 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200467
468 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100469 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
470 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100471
Jens Axboe99a47c62009-04-07 22:20:56 +0200472 if (td_io_get_file_size(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200473 if (td->error != ENOENT) {
474 log_err("%s\n", td->verror);
475 err = 1;
476 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200477 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200478 }
Jens Axboe409b3412007-03-28 09:57:01 +0200479
480 if (f->real_file_size == -1ULL && td->o.size)
481 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200482 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200483
484 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200485}
486
487/*
488 * Open the files and setup files sizes, creating files if necessary.
489 */
490int setup_files(struct thread_data *td)
491{
492 unsigned long long total_size, extend_size;
493 struct fio_file *f;
494 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200495 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200496
Jens Axboeee56ad52008-02-01 10:30:20 +0100497 dprint(FD_FILE, "setup files\n");
498
Jens Axboe691c8fb2008-03-07 14:26:26 +0100499 if (td->o.read_iolog_file)
500 return 0;
501
Jens Axboe53cdc682006-10-18 11:50:58 +0200502 /*
503 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200504 * opening the files and setting f->real_file_size to indicate
505 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200506 */
507 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200508 err = td->io_ops->setup(td);
509 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200510 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200511
Jens Axboef1027062006-10-20 10:14:01 +0200512 if (err)
513 return err;
514
Jens Axboe0a7eb122006-10-20 10:36:42 +0200515 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200516 * check sizes. if the files/devices do not exist and the size
517 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200518 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200519 total_size = 0;
520 for_each_file(td, f, i) {
521 if (f->real_file_size == -1ULL)
522 total_size = -1ULL;
523 else
524 total_size += f->real_file_size;
525 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200526
Jens Axboe7bb48f82007-03-27 15:30:28 +0200527 /*
528 * device/file sizes are zero and no size given, punt
529 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200530 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100531 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200532 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100533 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200534 return 1;
535 }
536
Jens Axboe7bb48f82007-03-27 15:30:28 +0200537 /*
538 * now file sizes are known, so we can set ->io_size. if size= is
539 * not given, ->io_size is just equal to ->real_file_size. if size
540 * is given, ->io_size is size / nr_files.
541 */
542 extend_size = total_size = 0;
543 need_extend = 0;
544 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200545 f->file_offset = td->o.start_offset;
546
Jens Axboe7bb48f82007-03-27 15:30:28 +0200547 if (!td->o.file_size_low) {
548 /*
549 * no file size range given, file size is equal to
550 * total size divided by number of files. if that is
551 * zero, set it to the real file size.
552 */
553 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100554 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100555 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200556 } else if (f->real_file_size < td->o.file_size_low ||
557 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100558 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200559 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200560 /*
561 * file size given. if it's fixed, use that. if it's a
562 * range, generate a random size in-between.
563 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100564 if (td->o.file_size_low == td->o.file_size_high) {
565 f->io_size = td->o.file_size_low
566 - f->file_offset;
567 } else {
568 f->io_size = get_rand_file_size(td)
569 - f->file_offset;
570 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100571 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200572 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200573
574 if (f->io_size == -1ULL)
575 total_size = -1ULL;
576 else
577 total_size += f->io_size;
578
579 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200580 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200581 !(td->io_ops->flags & FIO_DISKLESSIO)) {
Jens Axboe814452b2009-03-04 12:53:13 +0100582 if (!td->o.create_on_open) {
583 need_extend++;
584 extend_size += (f->io_size + f->file_offset);
585 } else
586 f->real_file_size = f->io_size + f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200587 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100588 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200589 }
590
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200591 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200592 td->o.size = total_size;
593
594 /*
595 * See if we need to extend some files
596 */
597 if (need_extend) {
598 temp_stall_ts = 1;
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200599 if (!terse_output)
600 log_info("%s: Laying out IO file(s) (%u file(s) /"
601 " %LuMiB)\n", td->o.name, need_extend,
602 extend_size >> 20);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200603
604 for_each_file(td, f, i) {
Jens Axboe5e0074c2009-06-02 21:40:09 +0200605 unsigned long long old_len = -1ULL, extend_len = -1ULL;
Jens Axboe3baddf22008-04-04 11:10:30 +0200606
Jens Axboe7bb48f82007-03-27 15:30:28 +0200607 if (!(f->flags & FIO_FILE_EXTEND))
608 continue;
609
Jens Axboe409b3412007-03-28 09:57:01 +0200610 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200611 f->flags &= ~FIO_FILE_EXTEND;
Jens Axboe5e0074c2009-06-02 21:40:09 +0200612 if (!td->o.fill_device) {
613 old_len = f->real_file_size;
614 extend_len = f->io_size + f->file_offset - old_len;
615 }
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200616 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200617 err = extend_file(td, f);
618 if (err)
619 break;
Jens Axboe5e0074c2009-06-02 21:40:09 +0200620
Jens Axboe3baddf22008-04-04 11:10:30 +0200621 err = __file_invalidate_cache(td, f, old_len,
622 extend_len);
623 close(f->fd);
624 f->fd = -1;
625 if (err)
626 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200627 }
628 temp_stall_ts = 0;
629 }
630
631 if (err)
632 return err;
633
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100634 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200635 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200636
Jens Axboeea966f82007-09-03 10:09:37 +0200637 /*
638 * iolog already set the total io size, if we read back
639 * stored entries.
640 */
641 if (!td->o.read_iolog_file)
642 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200643 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200644err_offset:
645 log_err("%s: you need to specify valid offset=\n", td->o.name);
646 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200647}
648
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200649int pre_read_files(struct thread_data *td)
650{
651 struct fio_file *f;
652 unsigned int i;
653
654 dprint(FD_FILE, "pre_read files\n");
655
656 for_each_file(td, f, i) {
657 pre_read_file(td, f);
658 }
659
660 return 1;
661}
662
Jens Axboe68727072007-03-15 20:49:25 +0100663int init_random_map(struct thread_data *td)
664{
Jens Axboe509eab12007-12-14 12:42:53 +0100665 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100666 struct fio_file *f;
667 unsigned int i;
668
Jens Axboede8dd112008-03-01 15:34:44 +0100669 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100670 return 0;
671
672 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100673 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
674 (unsigned long long) td->o.rw_min_bs;
675 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
676 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200677 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100678 if (f->file_map) {
679 f->num_maps = num_maps;
680 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100681 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100682 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100683 log_err("fio: failed allocating random map. If running"
684 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100685 " option or set 'softrandommap'. Or give"
686 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100687 return 1;
688 }
Jens Axboe303032a2008-03-26 10:11:10 +0100689
690 log_info("fio: file %s failed allocating random map. Running "
691 "job without.\n", f->file_name);
692 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100693 }
694
695 return 0;
696}
697
Jens Axboe53cdc682006-10-18 11:50:58 +0200698void close_files(struct thread_data *td)
699{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200700 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100701 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200702
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100703 for_each_file(td, f, i)
704 td_io_close_file(td, f);
705}
706
707void close_and_free_files(struct thread_data *td)
708{
709 struct fio_file *f;
710 unsigned int i;
711
Jens Axboeee56ad52008-02-01 10:30:20 +0100712 dprint(FD_FILE, "close files\n");
713
Jens Axboe0ab8db82006-10-18 17:16:23 +0200714 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100715 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
716 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100717 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100718 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100719
Jens Axboeb5af8292007-03-08 12:43:13 +0100720 td_io_close_file(td, f);
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +0200721 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100722
Jens Axboef17c4392008-03-01 18:40:46 +0100723 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100724 f->file_name = NULL;
725
Jens Axboec3439812007-03-20 13:54:53 +0100726 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100727 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100728 f->file_map = NULL;
729 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100730 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200731 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200732
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100733 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100734 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100735 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200736 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100737 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200738}
Jens Axboeaf52b342007-03-13 10:07:47 +0100739
Jens Axboee3bab462007-03-13 11:22:09 +0100740static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100741{
742 struct stat sb;
743
Jens Axboe66159822007-04-16 21:54:24 +0200744 if (!strcmp(f->file_name, "-"))
745 f->filetype = FIO_TYPE_PIPE;
746 else
747 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100748
Jens Axboee3bab462007-03-13 11:22:09 +0100749 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100750 if (S_ISBLK(sb.st_mode))
751 f->filetype = FIO_TYPE_BD;
752 else if (S_ISCHR(sb.st_mode))
753 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200754 else if (S_ISFIFO(sb.st_mode))
755 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100756 }
757}
758
Jens Axboef29b25a2007-07-23 08:56:43 +0200759int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100760{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100761 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100762 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100763 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100764 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100765
Jens Axboeee56ad52008-02-01 10:30:20 +0100766 dprint(FD_FILE, "add file %s\n", fname);
767
Jens Axboef17c4392008-03-01 18:40:46 +0100768 f = smalloc(sizeof(*f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200769 if (!f) {
770 log_err("fio: smalloc OOM\n");
771 assert(0);
772 }
773
Jens Axboeaf52b342007-03-13 10:07:47 +0100774 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100775
Jens Axboefc99bc02009-03-04 15:27:42 +0100776 if (td->files_size <= td->files_index) {
Carl Henrik Lunde4b341fc2009-04-20 08:41:37 +0200777 int new_size = td->o.nr_files + 1;
Jens Axboe126d65c2008-03-01 18:04:31 +0100778
Jens Axboefc99bc02009-03-04 15:27:42 +0100779 dprint(FD_FILE, "resize file array to %d files\n", new_size);
780
781 td->files = realloc(td->files, new_size * sizeof(f));
Jens Axboefc99bc02009-03-04 15:27:42 +0100782 td->files_size = new_size;
783 }
Jens Axboe8bb76792009-03-04 15:37:52 +0100784 td->files[cur_files] = f;
Jens Axboe126d65c2008-03-01 18:04:31 +0100785
Jens Axboe07eb79d2007-04-12 13:02:38 +0200786 /*
787 * init function, io engine may not be loaded yet
788 */
789 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
790 f->real_file_size = -1ULL;
791
Jens Axboebd0ee742007-03-23 14:26:23 +0100792 if (td->o.directory)
793 len = sprintf(file_name, "%s/", td->o.directory);
794
795 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100796 f->file_name = smalloc_strdup(file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200797 if (!f->file_name) {
798 log_err("fio: smalloc OOM\n");
799 assert(0);
800 }
801
Jens Axboee3bab462007-03-13 11:22:09 +0100802 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100803
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100804 switch (td->o.file_lock_mode) {
805 case FILE_LOCK_NONE:
806 break;
807 case FILE_LOCK_READWRITE:
808 f->lock = fio_mutex_rw_init();
809 break;
810 case FILE_LOCK_EXCLUSIVE:
811 f->lock = fio_mutex_init(1);
812 break;
813 default:
814 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
815 assert(0);
816 }
Jens Axboe29c13492008-03-01 19:25:20 +0100817
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100818 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100819 if (f->filetype == FIO_TYPE_FILE)
820 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200821
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100822 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
823 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100824
Jens Axboef29b25a2007-07-23 08:56:43 +0200825 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100826}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100827
828void get_file(struct fio_file *f)
829{
Jens Axboe8172fe92008-02-01 21:51:02 +0100830 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200831 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100832 f->references++;
833}
834
Jens Axboe6977bcd2008-03-01 15:55:36 +0100835int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100836{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100837 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100838
Jens Axboe8172fe92008-02-01 21:51:02 +0100839 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100840
Jens Axboe0ad920e2007-03-13 11:06:45 +0100841 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100842 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100843
844 assert(f->references);
845 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100846 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100847
Jens Axboed424d4d2007-04-17 09:05:10 +0200848 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +0100849 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +0100850
Jens Axboe0ad920e2007-03-13 11:06:45 +0100851 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100852 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200853
Jens Axboe98e1ac42008-03-06 11:56:48 +0100854 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +0200855 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +0100856
Jens Axboe0ad920e2007-03-13 11:06:45 +0100857 td->nr_open_files--;
858 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100859 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100860}
Jens Axboebbf6b542007-03-13 15:28:55 +0100861
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100862void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100863{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100864 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
865 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100866
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100867 if (f->lock_owner == td && f->lock_batch--)
868 return;
869
870 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
871 if (ddir == DDIR_READ)
872 fio_mutex_down_read(f->lock);
873 else
874 fio_mutex_down_write(f->lock);
875 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
876 fio_mutex_down(f->lock);
877
878 f->lock_owner = td;
879 f->lock_batch = td->o.lockfile_batch;
880 f->lock_ddir = ddir;
881}
882
883void unlock_file(struct thread_data *td, struct fio_file *f)
884{
885 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
886 return;
887 if (f->lock_batch)
888 return;
889
890 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
891 const int is_read = f->lock_ddir == DDIR_READ;
892 int val = fio_mutex_getval(f->lock);
893
894 if ((is_read && val == 1) || (!is_read && val == -1))
895 f->lock_owner = NULL;
896
897 if (is_read)
898 fio_mutex_up_read(f->lock);
899 else
900 fio_mutex_up_write(f->lock);
901 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
902 int val = fio_mutex_getval(f->lock);
903
904 if (val == 0)
905 f->lock_owner = NULL;
906
907 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100908 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100909}
910
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100911void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100912{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100913 if (f->lock_owner != td)
914 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100915
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100916 f->lock_batch = 0;
917 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100918}
919
Jens Axboebbf6b542007-03-13 15:28:55 +0100920static int recurse_dir(struct thread_data *td, const char *dirname)
921{
922 struct dirent *dir;
923 int ret = 0;
924 DIR *D;
925
926 D = opendir(dirname);
927 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200928 char buf[FIO_VERROR_SIZE];
929
930 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
931 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100932 return 1;
933 }
934
935 while ((dir = readdir(D)) != NULL) {
936 char full_path[PATH_MAX];
937 struct stat sb;
938
Jens Axboee85b2b82007-03-14 09:39:06 +0100939 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
940 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100941
Jens Axboebbf6b542007-03-13 15:28:55 +0100942 sprintf(full_path, "%s/%s", dirname, dir->d_name);
943
944 if (lstat(full_path, &sb) == -1) {
945 if (errno != ENOENT) {
946 td_verror(td, errno, "stat");
947 return 1;
948 }
949 }
950
951 if (S_ISREG(sb.st_mode)) {
952 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100953 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100954 continue;
955 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200956 if (!S_ISDIR(sb.st_mode))
957 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100958
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100959 ret = recurse_dir(td, full_path);
960 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +0100961 break;
962 }
963
964 closedir(D);
965 return ret;
966}
967
968int add_dir_files(struct thread_data *td, const char *path)
969{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200970 int ret = recurse_dir(td, path);
971
972 if (!ret)
973 log_info("fio: opendir added %d files\n", td->o.nr_files);
974
975 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100976}
Jens Axboecade3ef2007-03-23 15:29:45 +0100977
978void dup_files(struct thread_data *td, struct thread_data *org)
979{
980 struct fio_file *f;
981 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +0100982
983 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +0100984
985 if (!org->files)
986 return;
987
Jens Axboe9efef3c2008-03-06 10:26:25 +0100988 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +0100989
Jens Axboe9efef3c2008-03-06 10:26:25 +0100990 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100991 struct fio_file *__f;
992
Jens Axboef17c4392008-03-01 18:40:46 +0100993 __f = smalloc(sizeof(*__f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200994 if (!__f) {
995 log_err("fio: smalloc OOM\n");
996 assert(0);
997 }
998
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200999 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +01001000 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +02001001 if (!__f->file_name) {
1002 log_err("fio: smalloc OOM\n");
1003 assert(0);
1004 }
1005
Aaron Carrollbc3456f2008-06-25 09:20:37 +02001006 __f->filetype = f->filetype;
1007 }
Jens Axboeb0fe4212008-03-01 18:22:27 +01001008
1009 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +01001010 }
1011}
Jens Axboef29b25a2007-07-23 08:56:43 +02001012
1013/*
1014 * Returns the index that matches the filename, or -1 if not there
1015 */
1016int get_fileno(struct thread_data *td, const char *fname)
1017{
1018 struct fio_file *f;
1019 unsigned int i;
1020
1021 for_each_file(td, f, i)
1022 if (!strcmp(f->file_name, fname))
1023 return i;
1024
1025 return -1;
1026}
1027
1028/*
1029 * For log usage, where we add/open/close files automatically
1030 */
1031void free_release_files(struct thread_data *td)
1032{
1033 close_files(td);
1034 td->files_index = 0;
1035 td->nr_normal_files = 0;
1036}