blob: a3f96a15ef0e2a965406c3c050d57cfa47bbce38 [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 {
157 td_verror(td, EIO, "pre_read");
158 break;
159 }
160 }
161
Jens Axboeb0f65862009-05-20 11:52:15 +0200162 td_set_runstate(td, old_runstate);
163
164 if (did_open)
165 td->io_ops->close_file(td, f);
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200166 free(b);
167 return 0;
168}
169
Jens Axboe7bb48f82007-03-27 15:30:28 +0200170static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100171{
Jens Axboedc873b62008-06-04 20:13:04 +0200172 unsigned long long ret, sized;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100173 long r;
174
Jens Axboe9c60ce62007-03-15 09:14:47 +0100175 r = os_random_long(&td->file_size_state);
Jens Axboedc873b62008-06-04 20:13:04 +0200176 sized = td->o.file_size_high - td->o.file_size_low;
177 ret = (unsigned long long) ((double) sized * (r / (OS_RAND_MAX + 1.0)));
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100178 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100179 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100180 return ret;
181}
182
Jens Axboe53cdc682006-10-18 11:50:58 +0200183static int file_size(struct thread_data *td, struct fio_file *f)
184{
185 struct stat st;
186
Jens Axboedf9c26b2009-03-05 10:13:58 +0100187 if (stat(f->file_name, &st) == -1) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200188 td_verror(td, errno, "fstat");
189 return 1;
190 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200191
Jens Axboe7bb48f82007-03-27 15:30:28 +0200192 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200193 return 0;
194}
195
196static int bdev_size(struct thread_data *td, struct fio_file *f)
197{
198 unsigned long long bytes;
199 int r;
200
Jens Axboedf9c26b2009-03-05 10:13:58 +0100201 if (td->io_ops->open_file(td, f)) {
202 log_err("fio: failed opening blockdev %s for size check\n",
203 f->file_name);
204 return 1;
205 }
206
Jens Axboe53cdc682006-10-18 11:50:58 +0200207 r = blockdev_size(f->fd, &bytes);
208 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100209 td_verror(td, r, "blockdev_size");
Jens Axboedf9c26b2009-03-05 10:13:58 +0100210 goto err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200211 }
212
Jens Axboe7ab077a2009-02-02 15:07:37 +0100213 if (!bytes) {
214 log_err("%s: zero sized block device?\n", f->file_name);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100215 goto err;
Jens Axboe7ab077a2009-02-02 15:07:37 +0100216 }
217
Jens Axboe53cdc682006-10-18 11:50:58 +0200218 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200219 return 0;
Jens Axboedf9c26b2009-03-05 10:13:58 +0100220err:
221 td->io_ops->close_file(td, f);
222 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200223}
224
225static int get_file_size(struct thread_data *td, struct fio_file *f)
226{
227 int ret = 0;
228
Jens Axboe409b3412007-03-28 09:57:01 +0200229 if (f->flags & FIO_SIZE_KNOWN)
230 return 0;
231
Jens Axboe7bb48f82007-03-27 15:30:28 +0200232 if (f->filetype == FIO_TYPE_FILE)
233 ret = file_size(td, f);
234 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200235 ret = bdev_size(td, f);
236 else
237 f->real_file_size = -1;
238
239 if (ret)
240 return ret;
241
242 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100243 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
244 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200245 return 1;
246 }
247
Jens Axboe409b3412007-03-28 09:57:01 +0200248 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200249 return 0;
250}
251
Jens Axboe3baddf22008-04-04 11:10:30 +0200252static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
253 unsigned long long off,
254 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200255{
256 int ret = 0;
257
Jens Axboe58726a12009-06-02 11:27:26 +0200258 if (len == -1ULL) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200259 len = f->io_size;
Jens Axboe58726a12009-06-02 11:27:26 +0200260 if (len == -1ULL && td->o.fill_device)
261 return 0;
262 }
Jens Axboe3baddf22008-04-04 11:10:30 +0200263 if (off == -1ULL)
264 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100265
Jens Axboe3baddf22008-04-04 11:10:30 +0200266 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
267 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100268
Jens Axboee5b401d2006-10-18 16:03:40 +0200269 /*
270 * FIXME: add blockdev flushing too
271 */
Jens Axboeac893112009-06-02 13:06:01 +0200272 if (f->mmap_ptr)
273 ret = madvise(f->mmap_ptr, f->mmap_sz, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100274 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200275 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100276 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100277 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200278 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200279 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100280 log_err("fio: only root may flush block "
281 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200282 root_warn = 1;
283 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200284 ret = 0;
285 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200286 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200287 ret = 0;
288
289 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100290 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200291 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200292 } else if (ret > 0) {
293 td_verror(td, ret, "invalidate_cache");
294 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200295 }
296
Jens Axboead2da602007-02-26 12:33:27 +0100297 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200298
299}
300
301int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
302{
Jens Axboea5fb4612008-05-28 10:54:01 +0200303 if (!(f->flags & FIO_FILE_OPEN))
304 return 0;
305
Jens Axboe3baddf22008-04-04 11:10:30 +0200306 return __file_invalidate_cache(td, f, -1, -1);
Jens Axboee5b401d2006-10-18 16:03:40 +0200307}
308
Jens Axboe6977bcd2008-03-01 15:55:36 +0100309int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200310{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100311 int ret = 0;
312
Jens Axboeee56ad52008-02-01 10:30:20 +0100313 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100314
315 remove_file_hash(f);
316
Jens Axboe6977bcd2008-03-01 15:55:36 +0100317 if (close(f->fd) < 0)
318 ret = errno;
319
Jens Axboeb5af8292007-03-08 12:43:13 +0100320 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100321 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200322}
323
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100324static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200325{
Jens Axboe29c13492008-03-01 19:25:20 +0100326 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100327 int from_hash;
328
329 __f = lookup_file_hash(f->file_name);
330 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100331 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100332 /*
333 * racy, need the __f->lock locked
334 */
335 f->lock = __f->lock;
336 f->lock_owner = __f->lock_owner;
337 f->lock_batch = __f->lock_batch;
338 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100339 from_hash = 1;
340 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100341 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100342 from_hash = 0;
343 }
344
Jens Axboee8670ef2008-03-06 12:06:30 +0100345 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100346 return from_hash;
347}
348
349int generic_open_file(struct thread_data *td, struct fio_file *f)
350{
Jens Axboe66159822007-04-16 21:54:24 +0200351 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200352 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100353 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200354
Jens Axboeee56ad52008-02-01 10:30:20 +0100355 dprint(FD_FILE, "fd open %s\n", f->file_name);
356
Jens Axboe66159822007-04-16 21:54:24 +0200357 if (!strcmp(f->file_name, "-")) {
358 if (td_rw(td)) {
359 log_err("fio: can't read/write to stdin/out\n");
360 return 1;
361 }
362 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200363
364 /*
365 * move output logging to stderr, if we are writing to stdout
366 */
367 if (td_write(td))
368 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200369 }
370
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100371 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100372 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100373 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100374 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200375 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200376 flags |= FIO_O_NOATIME;
Jens Axboe814452b2009-03-04 12:53:13 +0100377 if (td->o.create_on_open)
378 flags |= O_CREAT;
Jens Axboe7abf8332006-11-23 15:01:19 +0100379
Aaron Carroll056f3452007-11-26 09:08:53 +0100380open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200381 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100382 if (!read_only)
383 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200384
Jens Axboeaf52b342007-03-13 10:07:47 +0100385 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100386 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100387
Jens Axboe66159822007-04-16 21:54:24 +0200388 if (is_std)
389 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100390 else
391 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100392 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200393 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100394 flags |= O_RDWR;
395 else
396 flags |= O_RDONLY;
397
Jens Axboe66159822007-04-16 21:54:24 +0200398 if (is_std)
399 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100400 else
401 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200402 }
403
404 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100405 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100406 int __e = errno;
407
Jens Axboe5921e802008-05-30 15:02:38 +0200408 if (errno == EPERM && (flags & FIO_O_NOATIME)) {
409 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100410 goto open_again;
411 }
412
Jens Axboee8670ef2008-03-06 12:06:30 +0100413 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100414
415 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200416 }
417
Jens Axboe29c13492008-03-01 19:25:20 +0100418 if (!from_hash && f->fd != -1) {
419 if (add_file_hash(f)) {
420 int ret;
421
422 /*
423 * OK to ignore, we haven't done anything with it
424 */
425 ret = generic_close_file(td, f);
426 goto open_again;
427 }
428 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100429
Jens Axboe53cdc682006-10-18 11:50:58 +0200430 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100431}
432
Jens Axboedf9c26b2009-03-05 10:13:58 +0100433int generic_get_file_size(struct thread_data *td, struct fio_file *f)
Jens Axboe21972cd2006-11-23 12:39:16 +0100434{
Jens Axboedf9c26b2009-03-05 10:13:58 +0100435 return get_file_size(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100436}
437
Jens Axboe7bb48f82007-03-27 15:30:28 +0200438/*
439 * open/close all files, so that ->real_file_size gets set
440 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200441static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200442{
443 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100444 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200445 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200446
447 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100448 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
449 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100450
Jens Axboe99a47c62009-04-07 22:20:56 +0200451 if (td_io_get_file_size(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200452 if (td->error != ENOENT) {
453 log_err("%s\n", td->verror);
454 err = 1;
455 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200456 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200457 }
Jens Axboe409b3412007-03-28 09:57:01 +0200458
459 if (f->real_file_size == -1ULL && td->o.size)
460 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200461 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200462
463 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200464}
465
466/*
467 * Open the files and setup files sizes, creating files if necessary.
468 */
469int setup_files(struct thread_data *td)
470{
471 unsigned long long total_size, extend_size;
472 struct fio_file *f;
473 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200474 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200475
Jens Axboeee56ad52008-02-01 10:30:20 +0100476 dprint(FD_FILE, "setup files\n");
477
Jens Axboe691c8fb2008-03-07 14:26:26 +0100478 if (td->o.read_iolog_file)
479 return 0;
480
Jens Axboe53cdc682006-10-18 11:50:58 +0200481 /*
482 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200483 * opening the files and setting f->real_file_size to indicate
484 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200485 */
486 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200487 err = td->io_ops->setup(td);
488 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200489 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200490
Jens Axboef1027062006-10-20 10:14:01 +0200491 if (err)
492 return err;
493
Jens Axboe0a7eb122006-10-20 10:36:42 +0200494 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200495 * check sizes. if the files/devices do not exist and the size
496 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200497 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200498 total_size = 0;
499 for_each_file(td, f, i) {
500 if (f->real_file_size == -1ULL)
501 total_size = -1ULL;
502 else
503 total_size += f->real_file_size;
504 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200505
Jens Axboe7bb48f82007-03-27 15:30:28 +0200506 /*
507 * device/file sizes are zero and no size given, punt
508 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200509 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100510 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200511 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100512 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200513 return 1;
514 }
515
Jens Axboe7bb48f82007-03-27 15:30:28 +0200516 /*
517 * now file sizes are known, so we can set ->io_size. if size= is
518 * not given, ->io_size is just equal to ->real_file_size. if size
519 * is given, ->io_size is size / nr_files.
520 */
521 extend_size = total_size = 0;
522 need_extend = 0;
523 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200524 f->file_offset = td->o.start_offset;
525
Jens Axboe7bb48f82007-03-27 15:30:28 +0200526 if (!td->o.file_size_low) {
527 /*
528 * no file size range given, file size is equal to
529 * total size divided by number of files. if that is
530 * zero, set it to the real file size.
531 */
532 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100533 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100534 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200535 } else if (f->real_file_size < td->o.file_size_low ||
536 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100537 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200538 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200539 /*
540 * file size given. if it's fixed, use that. if it's a
541 * range, generate a random size in-between.
542 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100543 if (td->o.file_size_low == td->o.file_size_high) {
544 f->io_size = td->o.file_size_low
545 - f->file_offset;
546 } else {
547 f->io_size = get_rand_file_size(td)
548 - f->file_offset;
549 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100550 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200551 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200552
553 if (f->io_size == -1ULL)
554 total_size = -1ULL;
555 else
556 total_size += f->io_size;
557
558 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200559 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200560 !(td->io_ops->flags & FIO_DISKLESSIO)) {
Jens Axboe814452b2009-03-04 12:53:13 +0100561 if (!td->o.create_on_open) {
562 need_extend++;
563 extend_size += (f->io_size + f->file_offset);
564 } else
565 f->real_file_size = f->io_size + f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200566 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100567 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200568 }
569
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200570 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200571 td->o.size = total_size;
572
573 /*
574 * See if we need to extend some files
575 */
576 if (need_extend) {
577 temp_stall_ts = 1;
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200578 if (!terse_output)
579 log_info("%s: Laying out IO file(s) (%u file(s) /"
580 " %LuMiB)\n", td->o.name, need_extend,
581 extend_size >> 20);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200582
583 for_each_file(td, f, i) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200584 unsigned long long old_len, extend_len;
585
Jens Axboe7bb48f82007-03-27 15:30:28 +0200586 if (!(f->flags & FIO_FILE_EXTEND))
587 continue;
588
Jens Axboe409b3412007-03-28 09:57:01 +0200589 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200590 f->flags &= ~FIO_FILE_EXTEND;
Jens Axboe3baddf22008-04-04 11:10:30 +0200591 old_len = f->real_file_size;
592 extend_len = f->io_size + f->file_offset - old_len;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200593 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200594 err = extend_file(td, f);
595 if (err)
596 break;
Jens Axboe3baddf22008-04-04 11:10:30 +0200597
598 err = __file_invalidate_cache(td, f, old_len,
599 extend_len);
600 close(f->fd);
601 f->fd = -1;
602 if (err)
603 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200604 }
605 temp_stall_ts = 0;
606 }
607
608 if (err)
609 return err;
610
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100611 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200612 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200613
Jens Axboeea966f82007-09-03 10:09:37 +0200614 /*
615 * iolog already set the total io size, if we read back
616 * stored entries.
617 */
618 if (!td->o.read_iolog_file)
619 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200620 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200621err_offset:
622 log_err("%s: you need to specify valid offset=\n", td->o.name);
623 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200624}
625
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200626int pre_read_files(struct thread_data *td)
627{
628 struct fio_file *f;
629 unsigned int i;
630
631 dprint(FD_FILE, "pre_read files\n");
632
633 for_each_file(td, f, i) {
634 pre_read_file(td, f);
635 }
636
637 return 1;
638}
639
Jens Axboe68727072007-03-15 20:49:25 +0100640int init_random_map(struct thread_data *td)
641{
Jens Axboe509eab12007-12-14 12:42:53 +0100642 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100643 struct fio_file *f;
644 unsigned int i;
645
Jens Axboede8dd112008-03-01 15:34:44 +0100646 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100647 return 0;
648
649 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100650 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
651 (unsigned long long) td->o.rw_min_bs;
652 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
653 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200654 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100655 if (f->file_map) {
656 f->num_maps = num_maps;
657 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100658 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100659 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100660 log_err("fio: failed allocating random map. If running"
661 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100662 " option or set 'softrandommap'. Or give"
663 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100664 return 1;
665 }
Jens Axboe303032a2008-03-26 10:11:10 +0100666
667 log_info("fio: file %s failed allocating random map. Running "
668 "job without.\n", f->file_name);
669 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100670 }
671
672 return 0;
673}
674
Jens Axboe53cdc682006-10-18 11:50:58 +0200675void close_files(struct thread_data *td)
676{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200677 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100678 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200679
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100680 for_each_file(td, f, i)
681 td_io_close_file(td, f);
682}
683
684void close_and_free_files(struct thread_data *td)
685{
686 struct fio_file *f;
687 unsigned int i;
688
Jens Axboeee56ad52008-02-01 10:30:20 +0100689 dprint(FD_FILE, "close files\n");
690
Jens Axboe0ab8db82006-10-18 17:16:23 +0200691 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100692 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
693 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100694 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100695 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100696
Jens Axboeb5af8292007-03-08 12:43:13 +0100697 td_io_close_file(td, f);
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +0200698 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100699
Jens Axboef17c4392008-03-01 18:40:46 +0100700 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100701 f->file_name = NULL;
702
Jens Axboec3439812007-03-20 13:54:53 +0100703 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100704 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100705 f->file_map = NULL;
706 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100707 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200708 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200709
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100710 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100711 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100712 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200713 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100714 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200715}
Jens Axboeaf52b342007-03-13 10:07:47 +0100716
Jens Axboee3bab462007-03-13 11:22:09 +0100717static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100718{
719 struct stat sb;
720
Jens Axboe66159822007-04-16 21:54:24 +0200721 if (!strcmp(f->file_name, "-"))
722 f->filetype = FIO_TYPE_PIPE;
723 else
724 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100725
Jens Axboee3bab462007-03-13 11:22:09 +0100726 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100727 if (S_ISBLK(sb.st_mode))
728 f->filetype = FIO_TYPE_BD;
729 else if (S_ISCHR(sb.st_mode))
730 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200731 else if (S_ISFIFO(sb.st_mode))
732 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100733 }
734}
735
Jens Axboef29b25a2007-07-23 08:56:43 +0200736int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100737{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100738 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100739 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100740 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100741 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100742
Jens Axboeee56ad52008-02-01 10:30:20 +0100743 dprint(FD_FILE, "add file %s\n", fname);
744
Jens Axboef17c4392008-03-01 18:40:46 +0100745 f = smalloc(sizeof(*f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200746 if (!f) {
747 log_err("fio: smalloc OOM\n");
748 assert(0);
749 }
750
Jens Axboeaf52b342007-03-13 10:07:47 +0100751 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100752
Jens Axboefc99bc02009-03-04 15:27:42 +0100753 if (td->files_size <= td->files_index) {
Carl Henrik Lunde4b341fc2009-04-20 08:41:37 +0200754 int new_size = td->o.nr_files + 1;
Jens Axboe126d65c2008-03-01 18:04:31 +0100755
Jens Axboefc99bc02009-03-04 15:27:42 +0100756 dprint(FD_FILE, "resize file array to %d files\n", new_size);
757
758 td->files = realloc(td->files, new_size * sizeof(f));
Jens Axboefc99bc02009-03-04 15:27:42 +0100759 td->files_size = new_size;
760 }
Jens Axboe8bb76792009-03-04 15:37:52 +0100761 td->files[cur_files] = f;
Jens Axboe126d65c2008-03-01 18:04:31 +0100762
Jens Axboe07eb79d2007-04-12 13:02:38 +0200763 /*
764 * init function, io engine may not be loaded yet
765 */
766 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
767 f->real_file_size = -1ULL;
768
Jens Axboebd0ee742007-03-23 14:26:23 +0100769 if (td->o.directory)
770 len = sprintf(file_name, "%s/", td->o.directory);
771
772 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100773 f->file_name = smalloc_strdup(file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200774 if (!f->file_name) {
775 log_err("fio: smalloc OOM\n");
776 assert(0);
777 }
778
Jens Axboee3bab462007-03-13 11:22:09 +0100779 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100780
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100781 switch (td->o.file_lock_mode) {
782 case FILE_LOCK_NONE:
783 break;
784 case FILE_LOCK_READWRITE:
785 f->lock = fio_mutex_rw_init();
786 break;
787 case FILE_LOCK_EXCLUSIVE:
788 f->lock = fio_mutex_init(1);
789 break;
790 default:
791 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
792 assert(0);
793 }
Jens Axboe29c13492008-03-01 19:25:20 +0100794
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100795 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100796 if (f->filetype == FIO_TYPE_FILE)
797 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200798
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100799 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
800 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100801
Jens Axboef29b25a2007-07-23 08:56:43 +0200802 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100803}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100804
805void get_file(struct fio_file *f)
806{
Jens Axboe8172fe92008-02-01 21:51:02 +0100807 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200808 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100809 f->references++;
810}
811
Jens Axboe6977bcd2008-03-01 15:55:36 +0100812int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100813{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100814 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100815
Jens Axboe8172fe92008-02-01 21:51:02 +0100816 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100817
Jens Axboe0ad920e2007-03-13 11:06:45 +0100818 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100819 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100820
821 assert(f->references);
822 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100823 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100824
Jens Axboed424d4d2007-04-17 09:05:10 +0200825 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +0100826 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +0100827
Jens Axboe0ad920e2007-03-13 11:06:45 +0100828 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100829 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200830
Jens Axboe98e1ac42008-03-06 11:56:48 +0100831 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +0200832 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +0100833
Jens Axboe0ad920e2007-03-13 11:06:45 +0100834 td->nr_open_files--;
835 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100836 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100837}
Jens Axboebbf6b542007-03-13 15:28:55 +0100838
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100839void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100840{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100841 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
842 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100843
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100844 if (f->lock_owner == td && f->lock_batch--)
845 return;
846
847 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
848 if (ddir == DDIR_READ)
849 fio_mutex_down_read(f->lock);
850 else
851 fio_mutex_down_write(f->lock);
852 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
853 fio_mutex_down(f->lock);
854
855 f->lock_owner = td;
856 f->lock_batch = td->o.lockfile_batch;
857 f->lock_ddir = ddir;
858}
859
860void unlock_file(struct thread_data *td, struct fio_file *f)
861{
862 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
863 return;
864 if (f->lock_batch)
865 return;
866
867 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
868 const int is_read = f->lock_ddir == DDIR_READ;
869 int val = fio_mutex_getval(f->lock);
870
871 if ((is_read && val == 1) || (!is_read && val == -1))
872 f->lock_owner = NULL;
873
874 if (is_read)
875 fio_mutex_up_read(f->lock);
876 else
877 fio_mutex_up_write(f->lock);
878 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
879 int val = fio_mutex_getval(f->lock);
880
881 if (val == 0)
882 f->lock_owner = NULL;
883
884 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100885 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100886}
887
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100888void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100889{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100890 if (f->lock_owner != td)
891 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100892
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100893 f->lock_batch = 0;
894 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100895}
896
Jens Axboebbf6b542007-03-13 15:28:55 +0100897static int recurse_dir(struct thread_data *td, const char *dirname)
898{
899 struct dirent *dir;
900 int ret = 0;
901 DIR *D;
902
903 D = opendir(dirname);
904 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200905 char buf[FIO_VERROR_SIZE];
906
907 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
908 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100909 return 1;
910 }
911
912 while ((dir = readdir(D)) != NULL) {
913 char full_path[PATH_MAX];
914 struct stat sb;
915
Jens Axboee85b2b82007-03-14 09:39:06 +0100916 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
917 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100918
Jens Axboebbf6b542007-03-13 15:28:55 +0100919 sprintf(full_path, "%s/%s", dirname, dir->d_name);
920
921 if (lstat(full_path, &sb) == -1) {
922 if (errno != ENOENT) {
923 td_verror(td, errno, "stat");
924 return 1;
925 }
926 }
927
928 if (S_ISREG(sb.st_mode)) {
929 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100930 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100931 continue;
932 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200933 if (!S_ISDIR(sb.st_mode))
934 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100935
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100936 ret = recurse_dir(td, full_path);
937 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +0100938 break;
939 }
940
941 closedir(D);
942 return ret;
943}
944
945int add_dir_files(struct thread_data *td, const char *path)
946{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200947 int ret = recurse_dir(td, path);
948
949 if (!ret)
950 log_info("fio: opendir added %d files\n", td->o.nr_files);
951
952 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100953}
Jens Axboecade3ef2007-03-23 15:29:45 +0100954
955void dup_files(struct thread_data *td, struct thread_data *org)
956{
957 struct fio_file *f;
958 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +0100959
960 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +0100961
962 if (!org->files)
963 return;
964
Jens Axboe9efef3c2008-03-06 10:26:25 +0100965 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +0100966
Jens Axboe9efef3c2008-03-06 10:26:25 +0100967 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100968 struct fio_file *__f;
969
Jens Axboef17c4392008-03-01 18:40:46 +0100970 __f = smalloc(sizeof(*__f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200971 if (!__f) {
972 log_err("fio: smalloc OOM\n");
973 assert(0);
974 }
975
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200976 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +0100977 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200978 if (!__f->file_name) {
979 log_err("fio: smalloc OOM\n");
980 assert(0);
981 }
982
Aaron Carrollbc3456f2008-06-25 09:20:37 +0200983 __f->filetype = f->filetype;
984 }
Jens Axboeb0fe4212008-03-01 18:22:27 +0100985
986 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100987 }
988}
Jens Axboef29b25a2007-07-23 08:56:43 +0200989
990/*
991 * Returns the index that matches the filename, or -1 if not there
992 */
993int get_fileno(struct thread_data *td, const char *fname)
994{
995 struct fio_file *f;
996 unsigned int i;
997
998 for_each_file(td, f, i)
999 if (!strcmp(f->file_name, fname))
1000 return i;
1001
1002 return -1;
1003}
1004
1005/*
1006 * For log usage, where we add/open/close files automatically
1007 */
1008void free_release_files(struct thread_data *td)
1009{
1010 close_files(td);
1011 td->files_index = 0;
1012 td->nr_normal_files = 0;
1013}