blob: 37a34399e03d29d75d432b9c7c2ef62afcb96a07 [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 Axboe7bb48f82007-03-27 15:30:28 +020016static int extend_file(struct thread_data *td, struct fio_file *f)
Jens Axboe25205e92006-10-19 20:50:14 +020017{
Jens Axboeea443652007-03-29 14:52:13 +020018 int r, new_layout = 0, unlink_file = 0, flags;
Jens Axboe25205e92006-10-19 20:50:14 +020019 unsigned long long left;
20 unsigned int bs;
21 char *b;
Jens Axboeb2a15192006-10-18 14:10:42 +020022
Jens Axboe4241ea82007-09-12 08:18:36 +020023 if (read_only) {
24 log_err("fio: refusing extend of file due to read-only\n");
25 return 0;
26 }
27
Jens Axboe507a7022007-03-27 15:52:46 +020028 /*
29 * check if we need to lay the file out complete again. fio
30 * does that for operations involving reads, or for writes
31 * where overwrite is set
32 */
33 if (td_read(td) || (td_write(td) && td->o.overwrite))
34 new_layout = 1;
Jens Axboeea443652007-03-29 14:52:13 +020035 if (td_write(td) && !td->o.overwrite)
36 unlink_file = 1;
Jens Axboe507a7022007-03-27 15:52:46 +020037
Jens Axboe6ae1f572008-02-21 10:20:00 +010038 if (unlink_file || new_layout) {
Zhang, Yanmin982016d2008-02-26 15:35:52 +010039 if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
Jens Axboe7bb48f82007-03-27 15:30:28 +020040 td_verror(td, errno, "unlink");
41 return 1;
42 }
43 }
44
Jens Axboe507a7022007-03-27 15:52:46 +020045 flags = O_WRONLY | O_CREAT;
46 if (new_layout)
47 flags |= O_TRUNC;
48
Jens Axboeee56ad52008-02-01 10:30:20 +010049 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
Jens Axboe507a7022007-03-27 15:52:46 +020050 f->fd = open(f->file_name, flags, 0644);
Jens Axboe53cdc682006-10-18 11:50:58 +020051 if (f->fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010052 td_verror(td, errno, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +020053 return 1;
54 }
55
Shawn Lewisfc74ac12008-01-11 09:45:11 +010056 if (!new_layout)
57 goto done;
58
Jens Axboeee56ad52008-02-01 10:30:20 +010059 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
60 f->real_file_size);
Jens Axboe7bb48f82007-03-27 15:30:28 +020061 if (ftruncate(f->fd, f->real_file_size) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +010062 td_verror(td, errno, "ftruncate");
Jens Axboe53cdc682006-10-18 11:50:58 +020063 goto err;
64 }
65
Jens Axboeee56ad52008-02-01 10:30:20 +010066 dprint(FD_FILE, "fallocate file %s, size %llu\n", f->file_name,
67 f->real_file_size);
Jens Axboe7bb48f82007-03-27 15:30:28 +020068 if (posix_fallocate(f->fd, 0, f->real_file_size) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010069 td_verror(td, errno, "posix_fallocate");
Jens Axboe40f82982006-10-25 11:21:05 +020070 goto err;
71 }
72
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010073 b = malloc(td->o.max_bs[DDIR_WRITE]);
74 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020075
Jens Axboe7bb48f82007-03-27 15:30:28 +020076 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +020077 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010078 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020079 if (bs > left)
80 bs = left;
81
82 r = write(f->fd, b, bs);
83
84 if (r == (int) bs) {
85 left -= bs;
86 continue;
87 } else {
88 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010089 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020090 else
Jens Axboee1161c32007-02-22 19:36:48 +010091 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020092
93 break;
94 }
95 }
96
97 if (td->terminate)
98 unlink(f->file_name);
Jens Axboe98e1ac42008-03-06 11:56:48 +010099 else if (td->o.create_fsync) {
100 if (fsync(f->fd) < 0) {
101 td_verror(td, errno, "fsync");
102 goto err;
103 }
104 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200105
106 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200107done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200108 close(f->fd);
109 f->fd = -1;
110 return 0;
111err:
112 close(f->fd);
113 f->fd = -1;
114 return 1;
115}
116
Jens Axboe7bb48f82007-03-27 15:30:28 +0200117static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100118{
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100119 unsigned long long ret, size_d;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100120 long r;
121
Jens Axboe9c60ce62007-03-15 09:14:47 +0100122 r = os_random_long(&td->file_size_state);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100123 size_d = td->o.file_size_high - td->o.file_size_low;
124 ret = (unsigned long long) ((double) size_d * (r / (RAND_MAX + 1.0)));
125 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100126 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100127 return ret;
128}
129
Jens Axboe53cdc682006-10-18 11:50:58 +0200130static int file_size(struct thread_data *td, struct fio_file *f)
131{
132 struct stat st;
133
Jens Axboe7bb48f82007-03-27 15:30:28 +0200134 if (fstat(f->fd, &st) == -1) {
135 td_verror(td, errno, "fstat");
136 return 1;
137 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200138
Jens Axboe7bb48f82007-03-27 15:30:28 +0200139 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200140 return 0;
141}
142
143static int bdev_size(struct thread_data *td, struct fio_file *f)
144{
145 unsigned long long bytes;
146 int r;
147
148 r = blockdev_size(f->fd, &bytes);
149 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100150 td_verror(td, r, "blockdev_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200151 return 1;
152 }
153
154 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200155 return 0;
156}
157
158static int get_file_size(struct thread_data *td, struct fio_file *f)
159{
160 int ret = 0;
161
Jens Axboe409b3412007-03-28 09:57:01 +0200162 if (f->flags & FIO_SIZE_KNOWN)
163 return 0;
164
Jens Axboe7bb48f82007-03-27 15:30:28 +0200165 if (f->filetype == FIO_TYPE_FILE)
166 ret = file_size(td, f);
167 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200168 ret = bdev_size(td, f);
169 else
170 f->real_file_size = -1;
171
172 if (ret)
173 return ret;
174
175 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100176 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
177 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200178 return 1;
179 }
180
Jens Axboe409b3412007-03-28 09:57:01 +0200181 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200182 return 0;
183}
184
Jens Axboee5b401d2006-10-18 16:03:40 +0200185int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
186{
187 int ret = 0;
188
Jens Axboeee56ad52008-02-01 10:30:20 +0100189 dprint(FD_IO, "invalidate cache (%d)\n", td->o.odirect);
190
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100191 if (td->o.odirect)
Jens Axboeb5af8292007-03-08 12:43:13 +0100192 return 0;
193
Jens Axboee5b401d2006-10-18 16:03:40 +0200194 /*
195 * FIXME: add blockdev flushing too
196 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100197 if (f->mmap)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200198 ret = madvise(f->mmap, f->io_size, MADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100199 else if (f->filetype == FIO_TYPE_FILE) {
200 ret = fadvise(f->fd, f->file_offset, f->io_size,
201 POSIX_FADV_DONTNEED);
202 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100203 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200204 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200205 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100206 log_err("fio: only root may flush block "
207 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200208 root_warn = 1;
209 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200210 ret = 0;
211 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200212 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200213 ret = 0;
214
215 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100216 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200217 return 1;
218 }
219
Jens Axboead2da602007-02-26 12:33:27 +0100220 return ret;
Jens Axboee5b401d2006-10-18 16:03:40 +0200221}
222
Jens Axboe6977bcd2008-03-01 15:55:36 +0100223int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200224{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100225 int ret = 0;
226
Jens Axboeee56ad52008-02-01 10:30:20 +0100227 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100228
229 remove_file_hash(f);
230
Jens Axboe6977bcd2008-03-01 15:55:36 +0100231 if (close(f->fd) < 0)
232 ret = errno;
233
Jens Axboeb5af8292007-03-08 12:43:13 +0100234 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100235 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200236}
237
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100238static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200239{
Jens Axboe29c13492008-03-01 19:25:20 +0100240 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100241 int from_hash;
242
243 __f = lookup_file_hash(f->file_name);
244 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100245 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100246 /*
247 * racy, need the __f->lock locked
248 */
249 f->lock = __f->lock;
250 f->lock_owner = __f->lock_owner;
251 f->lock_batch = __f->lock_batch;
252 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100253 from_hash = 1;
254 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100255 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100256 from_hash = 0;
257 }
258
Jens Axboee8670ef2008-03-06 12:06:30 +0100259 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100260 return from_hash;
261}
262
263int generic_open_file(struct thread_data *td, struct fio_file *f)
264{
Jens Axboe66159822007-04-16 21:54:24 +0200265 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200266 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100267 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200268
Jens Axboeee56ad52008-02-01 10:30:20 +0100269 dprint(FD_FILE, "fd open %s\n", f->file_name);
270
Jens Axboe66159822007-04-16 21:54:24 +0200271 if (!strcmp(f->file_name, "-")) {
272 if (td_rw(td)) {
273 log_err("fio: can't read/write to stdin/out\n");
274 return 1;
275 }
276 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200277
278 /*
279 * move output logging to stderr, if we are writing to stdout
280 */
281 if (td_write(td))
282 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200283 }
284
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100285 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100286 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100287 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100288 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200289 if (f->filetype != FIO_TYPE_FILE)
290 flags |= O_NOATIME;
Jens Axboe7abf8332006-11-23 15:01:19 +0100291
Aaron Carroll056f3452007-11-26 09:08:53 +0100292open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200293 if (td_write(td)) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200294 assert(!read_only);
295
Jens Axboe2fd233b2007-03-02 08:44:25 +0100296 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200297
Jens Axboeaf52b342007-03-13 10:07:47 +0100298 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100299 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100300
Jens Axboe66159822007-04-16 21:54:24 +0200301 if (is_std)
302 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100303 else
304 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100305 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200306 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100307 flags |= O_RDWR;
308 else
309 flags |= O_RDONLY;
310
Jens Axboe66159822007-04-16 21:54:24 +0200311 if (is_std)
312 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100313 else
314 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200315 }
316
317 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100318 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100319 int __e = errno;
320
Aaron Carroll056f3452007-11-26 09:08:53 +0100321 if (errno == EPERM && (flags & O_NOATIME)) {
322 flags &= ~O_NOATIME;
323 goto open_again;
324 }
325
Jens Axboee8670ef2008-03-06 12:06:30 +0100326 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100327
328 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200329 }
330
Jens Axboeb5af8292007-03-08 12:43:13 +0100331 if (get_file_size(td, f))
332 goto err;
333
Jens Axboe29c13492008-03-01 19:25:20 +0100334 if (!from_hash && f->fd != -1) {
335 if (add_file_hash(f)) {
336 int ret;
337
338 /*
339 * OK to ignore, we haven't done anything with it
340 */
341 ret = generic_close_file(td, f);
342 goto open_again;
343 }
344 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100345
Jens Axboe53cdc682006-10-18 11:50:58 +0200346 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100347err:
348 close(f->fd);
349 return 1;
350}
351
Jens Axboe21972cd2006-11-23 12:39:16 +0100352int open_files(struct thread_data *td)
353{
354 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100355 unsigned int i;
356 int err = 0;
Jens Axboe21972cd2006-11-23 12:39:16 +0100357
Jens Axboeee56ad52008-02-01 10:30:20 +0100358 dprint(FD_FILE, "open files\n");
359
Jens Axboe21972cd2006-11-23 12:39:16 +0100360 for_each_file(td, f, i) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100361 err = td_io_open_file(td, f);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200362 if (err) {
363 if (td->error == EMFILE) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100364 log_err("fio: limited open files to: %d\n",
365 td->nr_open_files);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200366 td->o.open_files = td->nr_open_files;
367 err = 0;
368 clear_error(td);
369 }
Jens Axboe21972cd2006-11-23 12:39:16 +0100370 break;
Jens Axboe9bf27b42007-03-27 19:49:31 +0200371 }
Jens Axboeb5af8292007-03-08 12:43:13 +0100372
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100373 if (td->o.open_files == td->nr_open_files)
Jens Axboeb5af8292007-03-08 12:43:13 +0100374 break;
Jens Axboe21972cd2006-11-23 12:39:16 +0100375 }
376
Jens Axboe7abf8332006-11-23 15:01:19 +0100377 if (!err)
378 return 0;
379
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100380 for_each_file(td, f, i)
Jens Axboeb5af8292007-03-08 12:43:13 +0100381 td_io_close_file(td, f);
Jens Axboe7abf8332006-11-23 15:01:19 +0100382
Jens Axboe21972cd2006-11-23 12:39:16 +0100383 return err;
384}
385
Jens Axboe7bb48f82007-03-27 15:30:28 +0200386/*
387 * open/close all files, so that ->real_file_size gets set
388 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200389static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200390{
391 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100392 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200393 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200394
395 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100396 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
397 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100398
Jens Axboebab3fd52007-04-02 10:34:18 +0200399 if (td->io_ops->open_file(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200400 if (td->error != ENOENT) {
401 log_err("%s\n", td->verror);
402 err = 1;
403 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200404 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200405 } else {
406 if (td->io_ops->close_file)
407 td->io_ops->close_file(td, f);
408 }
Jens Axboe409b3412007-03-28 09:57:01 +0200409
410 if (f->real_file_size == -1ULL && td->o.size)
411 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200412 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200413
414 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200415}
416
417/*
418 * Open the files and setup files sizes, creating files if necessary.
419 */
420int setup_files(struct thread_data *td)
421{
422 unsigned long long total_size, extend_size;
423 struct fio_file *f;
424 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200425 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200426
Jens Axboeee56ad52008-02-01 10:30:20 +0100427 dprint(FD_FILE, "setup files\n");
428
Jens Axboe53cdc682006-10-18 11:50:58 +0200429 /*
430 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200431 * opening the files and setting f->real_file_size to indicate
432 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200433 */
434 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200435 err = td->io_ops->setup(td);
436 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200437 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200438
Jens Axboef1027062006-10-20 10:14:01 +0200439 if (err)
440 return err;
441
Jens Axboe0a7eb122006-10-20 10:36:42 +0200442 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200443 * check sizes. if the files/devices do not exist and the size
444 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200445 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200446 total_size = 0;
447 for_each_file(td, f, i) {
448 if (f->real_file_size == -1ULL)
449 total_size = -1ULL;
450 else
451 total_size += f->real_file_size;
452 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200453
Jens Axboe7bb48f82007-03-27 15:30:28 +0200454 /*
455 * device/file sizes are zero and no size given, punt
456 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200457 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100458 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200459 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100460 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200461 return 1;
462 }
463
Jens Axboe7bb48f82007-03-27 15:30:28 +0200464 /*
465 * now file sizes are known, so we can set ->io_size. if size= is
466 * not given, ->io_size is just equal to ->real_file_size. if size
467 * is given, ->io_size is size / nr_files.
468 */
469 extend_size = total_size = 0;
470 need_extend = 0;
471 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200472 f->file_offset = td->o.start_offset;
473
Jens Axboe7bb48f82007-03-27 15:30:28 +0200474 if (!td->o.file_size_low) {
475 /*
476 * no file size range given, file size is equal to
477 * total size divided by number of files. if that is
478 * zero, set it to the real file size.
479 */
480 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100481 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100482 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200483 } else if (f->real_file_size < td->o.file_size_low ||
484 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100485 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200486 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200487 /*
488 * file size given. if it's fixed, use that. if it's a
489 * range, generate a random size in-between.
490 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100491 if (td->o.file_size_low == td->o.file_size_high) {
492 f->io_size = td->o.file_size_low
493 - f->file_offset;
494 } else {
495 f->io_size = get_rand_file_size(td)
496 - f->file_offset;
497 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100498 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200499 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200500
501 if (f->io_size == -1ULL)
502 total_size = -1ULL;
503 else
504 total_size += f->io_size;
505
506 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200507 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200508 !(td->io_ops->flags & FIO_DISKLESSIO)) {
509 need_extend++;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200510 extend_size += (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200511 f->flags |= FIO_FILE_EXTEND;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100512 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200513 }
514
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200515 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200516 td->o.size = total_size;
517
518 /*
519 * See if we need to extend some files
520 */
521 if (need_extend) {
522 temp_stall_ts = 1;
Jens Axboef627d8a2007-08-24 10:24:09 +0200523 log_info("%s: Laying out IO file(s) (%u file(s) / %LuMiB)\n",
Jens Axboe7bb48f82007-03-27 15:30:28 +0200524 td->o.name, need_extend, extend_size >> 20);
525
526 for_each_file(td, f, i) {
527 if (!(f->flags & FIO_FILE_EXTEND))
528 continue;
529
Jens Axboe409b3412007-03-28 09:57:01 +0200530 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200531 f->flags &= ~FIO_FILE_EXTEND;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200532 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200533 err = extend_file(td, f);
534 if (err)
535 break;
536 }
537 temp_stall_ts = 0;
538 }
539
540 if (err)
541 return err;
542
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100543 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200544 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200545
Jens Axboeea966f82007-09-03 10:09:37 +0200546 /*
547 * iolog already set the total io size, if we read back
548 * stored entries.
549 */
550 if (!td->o.read_iolog_file)
551 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200552 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200553err_offset:
554 log_err("%s: you need to specify valid offset=\n", td->o.name);
555 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200556}
557
Jens Axboe68727072007-03-15 20:49:25 +0100558int init_random_map(struct thread_data *td)
559{
Jens Axboe509eab12007-12-14 12:42:53 +0100560 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100561 struct fio_file *f;
562 unsigned int i;
563
Jens Axboede8dd112008-03-01 15:34:44 +0100564 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100565 return 0;
566
567 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100568 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
569 (unsigned long long) td->o.rw_min_bs;
570 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
571 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboef17c4392008-03-01 18:40:46 +0100572 f->file_map = smalloc(num_maps * sizeof(long));
Jens Axboe68727072007-03-15 20:49:25 +0100573 if (!f->file_map) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100574 log_err("fio: failed allocating random map. If running"
575 " a large number of jobs, try the 'norandommap'"
576 " option\n");
Jens Axboe68727072007-03-15 20:49:25 +0100577 return 1;
578 }
579 f->num_maps = num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100580 }
581
582 return 0;
583}
584
Jens Axboe53cdc682006-10-18 11:50:58 +0200585void close_files(struct thread_data *td)
586{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200587 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100588 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200589
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100590 for_each_file(td, f, i)
591 td_io_close_file(td, f);
592}
593
594void close_and_free_files(struct thread_data *td)
595{
596 struct fio_file *f;
597 unsigned int i;
598
Jens Axboeee56ad52008-02-01 10:30:20 +0100599 dprint(FD_FILE, "close files\n");
600
Jens Axboe0ab8db82006-10-18 17:16:23 +0200601 for_each_file(td, f, i) {
Jens Axboea9b7b302007-04-19 16:31:16 +0200602 if (td->o.unlink && f->filetype == FIO_TYPE_FILE)
Jens Axboe132ad462006-11-23 12:23:12 +0100603 unlink(f->file_name);
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100604
Jens Axboeb5af8292007-03-08 12:43:13 +0100605 td_io_close_file(td, f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100606
Jens Axboef17c4392008-03-01 18:40:46 +0100607 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100608 f->file_name = NULL;
609
Jens Axboec3439812007-03-20 13:54:53 +0100610 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100611 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100612 f->file_map = NULL;
613 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100614 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200615 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200616
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100617 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100618 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100619 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200620 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100621 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200622}
Jens Axboeaf52b342007-03-13 10:07:47 +0100623
Jens Axboee3bab462007-03-13 11:22:09 +0100624static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100625{
626 struct stat sb;
627
Jens Axboe66159822007-04-16 21:54:24 +0200628 if (!strcmp(f->file_name, "-"))
629 f->filetype = FIO_TYPE_PIPE;
630 else
631 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100632
Jens Axboee3bab462007-03-13 11:22:09 +0100633 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100634 if (S_ISBLK(sb.st_mode))
635 f->filetype = FIO_TYPE_BD;
636 else if (S_ISCHR(sb.st_mode))
637 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200638 else if (S_ISFIFO(sb.st_mode))
639 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100640 }
641}
642
Jens Axboef29b25a2007-07-23 08:56:43 +0200643int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100644{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100645 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100646 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100647 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100648 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100649
Jens Axboeee56ad52008-02-01 10:30:20 +0100650 dprint(FD_FILE, "add file %s\n", fname);
651
Jens Axboef17c4392008-03-01 18:40:46 +0100652 f = smalloc(sizeof(*f));
Jens Axboeaf52b342007-03-13 10:07:47 +0100653 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100654
Jens Axboe9efef3c2008-03-06 10:26:25 +0100655 dprint(FD_FILE, "resize file array to %d files\n", cur_files + 1);
Jens Axboe126d65c2008-03-01 18:04:31 +0100656
Jens Axboe9efef3c2008-03-06 10:26:25 +0100657 td->files = realloc(td->files, (cur_files + 1) * sizeof(f));
Jens Axboe126d65c2008-03-01 18:04:31 +0100658 td->files[cur_files] = f;
659
Jens Axboe07eb79d2007-04-12 13:02:38 +0200660 /*
661 * init function, io engine may not be loaded yet
662 */
663 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
664 f->real_file_size = -1ULL;
665
Jens Axboebd0ee742007-03-23 14:26:23 +0100666 if (td->o.directory)
667 len = sprintf(file_name, "%s/", td->o.directory);
668
669 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100670 f->file_name = smalloc_strdup(file_name);
Jens Axboeaf52b342007-03-13 10:07:47 +0100671
Jens Axboee3bab462007-03-13 11:22:09 +0100672 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100673
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100674 switch (td->o.file_lock_mode) {
675 case FILE_LOCK_NONE:
676 break;
677 case FILE_LOCK_READWRITE:
678 f->lock = fio_mutex_rw_init();
679 break;
680 case FILE_LOCK_EXCLUSIVE:
681 f->lock = fio_mutex_init(1);
682 break;
683 default:
684 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
685 assert(0);
686 }
Jens Axboe29c13492008-03-01 19:25:20 +0100687
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100688 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100689 if (f->filetype == FIO_TYPE_FILE)
690 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200691
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100692 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
693 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100694
Jens Axboef29b25a2007-07-23 08:56:43 +0200695 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100696}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100697
698void get_file(struct fio_file *f)
699{
Jens Axboe8172fe92008-02-01 21:51:02 +0100700 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200701 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100702 f->references++;
703}
704
Jens Axboe6977bcd2008-03-01 15:55:36 +0100705int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100706{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100707 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100708
Jens Axboe8172fe92008-02-01 21:51:02 +0100709 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100710
Jens Axboe0ad920e2007-03-13 11:06:45 +0100711 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100712 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100713
714 assert(f->references);
715 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100716 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100717
Jens Axboed424d4d2007-04-17 09:05:10 +0200718 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +0100719 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +0100720
Jens Axboe0ad920e2007-03-13 11:06:45 +0100721 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100722 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200723
Jens Axboe98e1ac42008-03-06 11:56:48 +0100724 if (!ret)
725 ret = !f_ret;
726
Jens Axboe0ad920e2007-03-13 11:06:45 +0100727 td->nr_open_files--;
728 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100729 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100730}
Jens Axboebbf6b542007-03-13 15:28:55 +0100731
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100732void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100733{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100734 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
735 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100736
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100737 if (f->lock_owner == td && f->lock_batch--)
738 return;
739
740 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
741 if (ddir == DDIR_READ)
742 fio_mutex_down_read(f->lock);
743 else
744 fio_mutex_down_write(f->lock);
745 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
746 fio_mutex_down(f->lock);
747
748 f->lock_owner = td;
749 f->lock_batch = td->o.lockfile_batch;
750 f->lock_ddir = ddir;
751}
752
753void unlock_file(struct thread_data *td, struct fio_file *f)
754{
755 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
756 return;
757 if (f->lock_batch)
758 return;
759
760 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
761 const int is_read = f->lock_ddir == DDIR_READ;
762 int val = fio_mutex_getval(f->lock);
763
764 if ((is_read && val == 1) || (!is_read && val == -1))
765 f->lock_owner = NULL;
766
767 if (is_read)
768 fio_mutex_up_read(f->lock);
769 else
770 fio_mutex_up_write(f->lock);
771 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
772 int val = fio_mutex_getval(f->lock);
773
774 if (val == 0)
775 f->lock_owner = NULL;
776
777 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100778 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100779}
780
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100781void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100782{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100783 if (f->lock_owner != td)
784 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100785
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100786 f->lock_batch = 0;
787 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100788}
789
Jens Axboebbf6b542007-03-13 15:28:55 +0100790static int recurse_dir(struct thread_data *td, const char *dirname)
791{
792 struct dirent *dir;
793 int ret = 0;
794 DIR *D;
795
796 D = opendir(dirname);
797 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200798 char buf[FIO_VERROR_SIZE];
799
800 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
801 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100802 return 1;
803 }
804
805 while ((dir = readdir(D)) != NULL) {
806 char full_path[PATH_MAX];
807 struct stat sb;
808
Jens Axboee85b2b82007-03-14 09:39:06 +0100809 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
810 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100811
Jens Axboebbf6b542007-03-13 15:28:55 +0100812 sprintf(full_path, "%s/%s", dirname, dir->d_name);
813
814 if (lstat(full_path, &sb) == -1) {
815 if (errno != ENOENT) {
816 td_verror(td, errno, "stat");
817 return 1;
818 }
819 }
820
821 if (S_ISREG(sb.st_mode)) {
822 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100823 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100824 continue;
825 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200826 if (!S_ISDIR(sb.st_mode))
827 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100828
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100829 ret = recurse_dir(td, full_path);
830 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +0100831 break;
832 }
833
834 closedir(D);
835 return ret;
836}
837
838int add_dir_files(struct thread_data *td, const char *path)
839{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200840 int ret = recurse_dir(td, path);
841
842 if (!ret)
843 log_info("fio: opendir added %d files\n", td->o.nr_files);
844
845 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100846}
Jens Axboecade3ef2007-03-23 15:29:45 +0100847
848void dup_files(struct thread_data *td, struct thread_data *org)
849{
850 struct fio_file *f;
851 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +0100852
853 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +0100854
855 if (!org->files)
856 return;
857
Jens Axboe9efef3c2008-03-06 10:26:25 +0100858 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +0100859
Jens Axboe9efef3c2008-03-06 10:26:25 +0100860 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100861 struct fio_file *__f;
862
Jens Axboef17c4392008-03-01 18:40:46 +0100863 __f = smalloc(sizeof(*__f));
Jens Axboeb0fe4212008-03-01 18:22:27 +0100864
Jens Axboecade3ef2007-03-23 15:29:45 +0100865 if (f->file_name)
Jens Axboef17c4392008-03-01 18:40:46 +0100866 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboeb0fe4212008-03-01 18:22:27 +0100867
868 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100869 }
870}
Jens Axboef29b25a2007-07-23 08:56:43 +0200871
872/*
873 * Returns the index that matches the filename, or -1 if not there
874 */
875int get_fileno(struct thread_data *td, const char *fname)
876{
877 struct fio_file *f;
878 unsigned int i;
879
880 for_each_file(td, f, i)
881 if (!strcmp(f->file_name, fname))
882 return i;
883
884 return -1;
885}
886
887/*
888 * For log usage, where we add/open/close files automatically
889 */
890void free_release_files(struct thread_data *td)
891{
892 close_files(td);
893 td->files_index = 0;
894 td->nr_normal_files = 0;
895}