blob: faef907aeefd44429896aa156f2fa4944593cac4 [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"
11#include "os.h"
12
Jens Axboe25205e92006-10-19 20:50:14 +020013/*
14 * Check if the file exists and it's large enough.
15 */
16static int file_ok(struct thread_data *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +020017{
Jens Axboeb2a15192006-10-18 14:10:42 +020018 struct stat st;
Jens Axboe53cdc682006-10-18 11:50:58 +020019
Jens Axboeaf52b342007-03-13 10:07:47 +010020 if (f->filetype != FIO_TYPE_FILE ||
Jens Axboeb5af8292007-03-08 12:43:13 +010021 (td->io_ops->flags & FIO_DISKLESSIO))
Jens Axboeb2a15192006-10-18 14:10:42 +020022 return 0;
23
Jens Axboefa01d132007-02-22 14:07:39 +010024 if (lstat(f->file_name, &st) == -1)
Jens Axboe25205e92006-10-19 20:50:14 +020025 return 1;
Jens Axboefa01d132007-02-22 14:07:39 +010026
27 /*
28 * if it's a special file, size is always ok for now
29 */
30 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))
31 return 0;
32 if (st.st_size < (off_t) f->file_size)
Jens Axboe25205e92006-10-19 20:50:14 +020033 return 1;
34
35 return 0;
36}
37
38static int create_file(struct thread_data *td, struct fio_file *f)
39{
40 unsigned long long left;
41 unsigned int bs;
42 char *b;
43 int r;
Jens Axboeb2a15192006-10-18 14:10:42 +020044
Jens Axboe53cdc682006-10-18 11:50:58 +020045 f->fd = open(f->file_name, O_WRONLY | O_CREAT | O_TRUNC, 0644);
46 if (f->fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010047 td_verror(td, errno, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +020048 return 1;
49 }
50
51 if (ftruncate(f->fd, f->file_size) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +010052 td_verror(td, errno, "ftruncate");
Jens Axboe53cdc682006-10-18 11:50:58 +020053 goto err;
54 }
55
Jens Axboe40f82982006-10-25 11:21:05 +020056 if (posix_fallocate(f->fd, 0, f->file_size) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010057 td_verror(td, errno, "posix_fallocate");
Jens Axboe40f82982006-10-25 11:21:05 +020058 goto err;
59 }
60
Jens Axboea00735e2006-11-03 08:58:08 +010061 b = malloc(td->max_bs[DDIR_WRITE]);
62 memset(b, 0, td->max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020063
64 left = f->file_size;
65 while (left && !td->terminate) {
Jens Axboea00735e2006-11-03 08:58:08 +010066 bs = td->max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020067 if (bs > left)
68 bs = left;
69
70 r = write(f->fd, b, bs);
71
72 if (r == (int) bs) {
73 left -= bs;
74 continue;
75 } else {
76 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010077 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020078 else
Jens Axboee1161c32007-02-22 19:36:48 +010079 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020080
81 break;
82 }
83 }
84
85 if (td->terminate)
86 unlink(f->file_name);
87 else if (td->create_fsync)
88 fsync(f->fd);
89
90 free(b);
91 close(f->fd);
92 f->fd = -1;
93 return 0;
94err:
95 close(f->fd);
96 f->fd = -1;
97 return 1;
98}
99
Jens Axboe9c60ce62007-03-15 09:14:47 +0100100static unsigned long long set_rand_file_size(struct thread_data *td,
101 unsigned long long total_size)
102{
103 unsigned long long upper = total_size;
104 unsigned long long ret;
105 long r;
106
107 if (upper > td->file_size_high)
108 upper = td->file_size_high;
109 else if (upper < td->file_size_low)
110 return 0;
111 else if (!upper)
112 return 0;
113
114 r = os_random_long(&td->file_size_state);
115 ret = td->file_size_low + (unsigned long long) ((double) upper * (r / (RAND_MAX + 1.0)));
116 ret -= (ret % td->rw_min_bs);
117 if (ret > upper)
118 ret = upper;
119 return ret;
120}
121
Jens Axboe53cdc682006-10-18 11:50:58 +0200122static int create_files(struct thread_data *td)
123{
124 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100125 int err, need_create, can_extend;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100126 unsigned long long total_file_size, local_file_size;
Jens Axboee407bec2007-03-14 11:21:27 +0100127 unsigned int i, new_files;
Jens Axboe53cdc682006-10-18 11:50:58 +0200128
Jens Axboee407bec2007-03-14 11:21:27 +0100129 new_files = 0;
Jens Axboe96d32d52007-03-14 09:16:09 +0100130 total_file_size = td->total_file_size;
Jens Axboe15494412007-03-13 11:52:47 +0100131 for_each_file(td, f, i) {
Jens Axboe96d32d52007-03-14 09:16:09 +0100132 unsigned long long s;
133
134 f->file_offset = td->start_offset;
135
Jens Axboe15494412007-03-13 11:52:47 +0100136 if (f->filetype != FIO_TYPE_FILE)
137 continue;
138
Jens Axboe96d32d52007-03-14 09:16:09 +0100139 if (f->flags & FIO_FILE_EXISTS) {
140 s = f->file_size;
141 if (s > total_file_size)
142 s = total_file_size;
143
144 total_file_size -= s;
Jens Axboee407bec2007-03-14 11:21:27 +0100145 } else
146 new_files++;
Jens Axboe15494412007-03-13 11:52:47 +0100147 }
Jens Axboef6971252006-11-15 10:00:31 +0100148
Jens Axboe53cdc682006-10-18 11:50:58 +0200149 /*
150 * unless specifically asked for overwrite, let normal io extend it
151 */
Jens Axboe02638822007-03-12 09:25:55 +0100152 can_extend = !td->overwrite && !(td->io_ops->flags & FIO_NOEXTEND);
153 if (can_extend)
Jens Axboe53cdc682006-10-18 11:50:58 +0200154 return 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200155
Jens Axboef1027062006-10-20 10:14:01 +0200156 need_create = 0;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100157 local_file_size = total_file_size;
158 if (!local_file_size)
159 local_file_size = -1;
160
Jens Axboeaf52b342007-03-13 10:07:47 +0100161 for_each_file(td, f, i) {
162 int file_there;
Jens Axboeeff68612007-01-14 05:56:44 +0100163
Jens Axboeaf52b342007-03-13 10:07:47 +0100164 if (f->filetype != FIO_TYPE_FILE)
165 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100166 if (f->flags & FIO_FILE_EXISTS)
167 continue;
168
Jens Axboe9c60ce62007-03-15 09:14:47 +0100169 if (!td->file_size_low)
170 f->file_size = total_file_size / new_files;
171 else {
172 /*
173 * If we don't have enough space left for a file
174 * of the minimum size, bail.
175 */
176 if (local_file_size < td->file_size_low) {
177 log_info("fio: limited to %d files\n", i);
178 new_files -= (td->nr_files - i);
179 td->nr_files = i;
180 break;
181 }
182
183 f->file_size = set_rand_file_size(td, local_file_size);
184 local_file_size -= f->file_size;
185 }
Jens Axboeeff68612007-01-14 05:56:44 +0100186
Jens Axboeaf52b342007-03-13 10:07:47 +0100187 file_there = !file_ok(td, f);
188
189 if (file_there && td_write(td) && !td->overwrite) {
190 unlink(f->file_name);
191 file_there = 0;
Jens Axboeeff68612007-01-14 05:56:44 +0100192 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100193
194 need_create += !file_there;
Jens Axboeeff68612007-01-14 05:56:44 +0100195 }
Jens Axboef1027062006-10-20 10:14:01 +0200196
197 if (!need_create)
198 return 0;
199
Jens Axboe53cdc682006-10-18 11:50:58 +0200200 if (!td->total_file_size) {
201 log_err("Need size for create\n");
Jens Axboee1161c32007-02-22 19:36:48 +0100202 td_verror(td, EINVAL, "file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200203 return 1;
204 }
205
Jens Axboe25205e92006-10-19 20:50:14 +0200206 temp_stall_ts = 1;
Jens Axboe6d861442007-03-15 09:22:23 +0100207 log_info("%s: Laying out IO file(s) (%u files / %LuMiB)\n",
208 td->name, new_files, total_file_size >> 20);
Jens Axboe25205e92006-10-19 20:50:14 +0200209
210 err = 0;
211 for_each_file(td, f, i) {
Jens Axboe9b031dc2006-12-15 16:01:54 +0100212 /*
213 * Only unlink files that we created.
214 */
Jens Axboef11bd942007-03-13 10:16:34 +0100215 f->flags &= ~FIO_FILE_UNLINK;
Jens Axboe25205e92006-10-19 20:50:14 +0200216 if (file_ok(td, f)) {
Jens Axboef11bd942007-03-13 10:16:34 +0100217 if (td->unlink)
218 f->flags |= FIO_FILE_UNLINK;
219
Jens Axboe25205e92006-10-19 20:50:14 +0200220 err = create_file(td, f);
221 if (err)
222 break;
223 }
224 }
225
Jens Axboe53cdc682006-10-18 11:50:58 +0200226 temp_stall_ts = 0;
227 return err;
228}
229
230static int file_size(struct thread_data *td, struct fio_file *f)
231{
232 struct stat st;
233
234 if (td->overwrite) {
235 if (fstat(f->fd, &st) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100236 td_verror(td, errno, "fstat");
Jens Axboe53cdc682006-10-18 11:50:58 +0200237 return 1;
238 }
239
240 f->real_file_size = st.st_size;
241
242 if (!f->file_size || f->file_size > f->real_file_size)
243 f->file_size = f->real_file_size;
Jens Axboe745508d2007-01-08 10:25:51 +0100244 } else
245 f->real_file_size = f->file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200246
Jens Axboe53cdc682006-10-18 11:50:58 +0200247 return 0;
248}
249
250static int bdev_size(struct thread_data *td, struct fio_file *f)
251{
252 unsigned long long bytes;
253 int r;
254
255 r = blockdev_size(f->fd, &bytes);
256 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100257 td_verror(td, r, "blockdev_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200258 return 1;
259 }
260
261 f->real_file_size = bytes;
262
263 /*
264 * no extend possibilities, so limit size to device size if too large
265 */
266 if (!f->file_size || f->file_size > f->real_file_size)
267 f->file_size = f->real_file_size;
268
269 f->file_size -= f->file_offset;
270 return 0;
271}
272
273static int get_file_size(struct thread_data *td, struct fio_file *f)
274{
275 int ret = 0;
276
Jens Axboe96d32d52007-03-14 09:16:09 +0100277 if (f->filetype == FIO_TYPE_FILE) {
278 if (!(f->flags & FIO_FILE_EXISTS))
279 ret = file_size(td, f);
280 } else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200281 ret = bdev_size(td, f);
282 else
283 f->real_file_size = -1;
284
285 if (ret)
286 return ret;
287
288 if (f->file_offset > f->real_file_size) {
289 log_err("%s: offset extends end (%Lu > %Lu)\n", td->name, f->file_offset, f->real_file_size);
290 return 1;
291 }
292
Jens Axboe53cdc682006-10-18 11:50:58 +0200293 return 0;
294}
295
Jens Axboee5b401d2006-10-18 16:03:40 +0200296int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
297{
298 int ret = 0;
299
Jens Axboeda86ccb2007-03-08 12:49:37 +0100300 if (td->odirect)
Jens Axboeb5af8292007-03-08 12:43:13 +0100301 return 0;
302
Jens Axboee5b401d2006-10-18 16:03:40 +0200303 /*
304 * FIXME: add blockdev flushing too
305 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100306 if (f->mmap)
Jens Axboee5b401d2006-10-18 16:03:40 +0200307 ret = madvise(f->mmap, f->file_size, MADV_DONTNEED);
Jens Axboeaf52b342007-03-13 10:07:47 +0100308 else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100309 ret = fadvise(f->fd, f->file_offset, f->file_size, POSIX_FADV_DONTNEED);
Jens Axboeaf52b342007-03-13 10:07:47 +0100310 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100311 ret = blockdev_invalidate_cache(f->fd);
Jens Axboeaf52b342007-03-13 10:07:47 +0100312 } else if (f->filetype == FIO_TYPE_CHAR)
Jens Axboee5b401d2006-10-18 16:03:40 +0200313 ret = 0;
314
315 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100316 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200317 return 1;
318 }
319
Jens Axboead2da602007-02-26 12:33:27 +0100320 return ret;
Jens Axboee5b401d2006-10-18 16:03:40 +0200321}
322
Jens Axboeb5af8292007-03-08 12:43:13 +0100323void generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200324{
Jens Axboeb5af8292007-03-08 12:43:13 +0100325 close(f->fd);
326 f->fd = -1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200327}
328
Jens Axboeb5af8292007-03-08 12:43:13 +0100329int generic_open_file(struct thread_data *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200330{
Jens Axboe53cdc682006-10-18 11:50:58 +0200331 int flags = 0;
332
Jens Axboe2fd233b2007-03-02 08:44:25 +0100333 if (td->odirect)
334 flags |= OS_O_DIRECT;
335 if (td->sync_io)
336 flags |= O_SYNC;
Jens Axboe7abf8332006-11-23 15:01:19 +0100337
Jens Axboe2fd233b2007-03-02 08:44:25 +0100338 if (td_write(td) || td_rw(td)) {
339 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200340
Jens Axboeaf52b342007-03-13 10:07:47 +0100341 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100342 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100343
Jens Axboeb5af8292007-03-08 12:43:13 +0100344 f->fd = open(f->file_name, flags, 0600);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100345 } else {
Jens Axboeaf52b342007-03-13 10:07:47 +0100346 if (f->filetype == FIO_TYPE_CHAR)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100347 flags |= O_RDWR;
348 else
349 flags |= O_RDONLY;
350
Jens Axboeb5af8292007-03-08 12:43:13 +0100351 f->fd = open(f->file_name, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200352 }
353
354 if (f->fd == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100355 int __e = errno;
356
357 td_verror(td, __e, "open");
358 if (__e == EINVAL && td->odirect)
Jens Axboe9d80e112007-02-22 19:37:53 +0100359 log_err("fio: destination does not support O_DIRECT\n");
Jens Axboe8ab53872007-03-13 21:41:38 +0100360 if (__e == EMFILE)
361 log_err("fio: try reducing/setting openfiles (failed at %u of %u)\n", td->nr_open_files, td->nr_files);
Jens Axboe53cdc682006-10-18 11:50:58 +0200362 return 1;
363 }
364
Jens Axboeb5af8292007-03-08 12:43:13 +0100365 if (get_file_size(td, f))
366 goto err;
367
Jens Axboe02638822007-03-12 09:25:55 +0100368 if (td->invalidate_cache && file_invalidate_cache(td, f))
Jens Axboeb5af8292007-03-08 12:43:13 +0100369 goto err;
370
371 if (!td_random(td)) {
372 if (fadvise(f->fd, f->file_offset, f->file_size, POSIX_FADV_SEQUENTIAL) < 0) {
373 td_verror(td, errno, "fadvise");
374 goto err;
375 }
376 } else {
377 if (fadvise(f->fd, f->file_offset, f->file_size, POSIX_FADV_RANDOM) < 0) {
378 td_verror(td, errno, "fadvise");
379 goto err;
380 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100381 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200382
383 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100384err:
385 close(f->fd);
386 return 1;
387}
388
Jens Axboe21972cd2006-11-23 12:39:16 +0100389int open_files(struct thread_data *td)
390{
391 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100392 unsigned int i;
393 int err = 0;
Jens Axboe21972cd2006-11-23 12:39:16 +0100394
395 for_each_file(td, f, i) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100396 err = td_io_open_file(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100397 if (err)
398 break;
Jens Axboeb5af8292007-03-08 12:43:13 +0100399
400 if (td->open_files == td->nr_open_files)
401 break;
Jens Axboe21972cd2006-11-23 12:39:16 +0100402 }
403
Jens Axboe7abf8332006-11-23 15:01:19 +0100404 if (!err)
405 return 0;
406
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100407 for_each_file(td, f, i)
Jens Axboeb5af8292007-03-08 12:43:13 +0100408 td_io_close_file(td, f);
Jens Axboe7abf8332006-11-23 15:01:19 +0100409
Jens Axboe21972cd2006-11-23 12:39:16 +0100410 return err;
411}
412
Jens Axboe53cdc682006-10-18 11:50:58 +0200413int setup_files(struct thread_data *td)
414{
415 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100416 unsigned int i;
417 int err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200418
419 /*
420 * if ioengine defines a setup() method, it's responsible for
421 * setting up everything in the td->files[] area.
422 */
423 if (td->io_ops->setup)
424 return td->io_ops->setup(td);
425
426 if (create_files(td))
427 return 1;
428
Jens Axboe21972cd2006-11-23 12:39:16 +0100429 err = open_files(td);
Jens Axboef1027062006-10-20 10:14:01 +0200430 if (err)
431 return err;
432
Jens Axboe0a7eb122006-10-20 10:36:42 +0200433 /*
434 * Recalculate the total file size now that files are set up.
435 */
436 td->total_file_size = 0;
437 for_each_file(td, f, i)
438 td->total_file_size += f->file_size;
439
Jens Axboef1027062006-10-20 10:14:01 +0200440 td->io_size = td->total_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200441 if (td->io_size == 0) {
442 log_err("%s: no io blocks\n", td->name);
Jens Axboee1161c32007-02-22 19:36:48 +0100443 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200444 return 1;
445 }
446
447 if (!td->zone_size)
448 td->zone_size = td->io_size;
449
450 td->total_io_size = td->io_size * td->loops;
451
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100452 for_each_file(td, f, i)
Jens Axboeb5af8292007-03-08 12:43:13 +0100453 td_io_close_file(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100454
455 return err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200456}
457
458void close_files(struct thread_data *td)
459{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200460 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100461 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200462
Jens Axboe0ab8db82006-10-18 17:16:23 +0200463 for_each_file(td, f, i) {
Jens Axboe1315a682007-03-13 11:25:07 +0100464 if (!f->file_name && (f->flags & FIO_FILE_UNLINK) &&
Jens Axboeaf52b342007-03-13 10:07:47 +0100465 f->filetype == FIO_TYPE_FILE) {
Jens Axboe132ad462006-11-23 12:23:12 +0100466 unlink(f->file_name);
Jens Axboe1315a682007-03-13 11:25:07 +0100467 free(f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100468 f->file_name = NULL;
469 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100470
Jens Axboeb5af8292007-03-08 12:43:13 +0100471 td_io_close_file(td, f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100472
473 if (f->file_map)
474 free(f->file_map);
Jens Axboe53cdc682006-10-18 11:50:58 +0200475 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200476
Jens Axboe132ad462006-11-23 12:23:12 +0100477 td->filename = NULL;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200478 td->files = NULL;
479 td->nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200480}
Jens Axboeaf52b342007-03-13 10:07:47 +0100481
Jens Axboee3bab462007-03-13 11:22:09 +0100482static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100483{
484 struct stat sb;
485
486 f->filetype = FIO_TYPE_FILE;
487
Jens Axboee3bab462007-03-13 11:22:09 +0100488 if (!lstat(f->file_name, &sb)) {
Jens Axboe96d32d52007-03-14 09:16:09 +0100489 f->flags |= FIO_FILE_EXISTS;
490
Jens Axboeaf52b342007-03-13 10:07:47 +0100491 if (S_ISBLK(sb.st_mode))
492 f->filetype = FIO_TYPE_BD;
493 else if (S_ISCHR(sb.st_mode))
494 f->filetype = FIO_TYPE_CHAR;
Jens Axboe96d32d52007-03-14 09:16:09 +0100495 else {
496 /*
497 * might as well do this here, and save a stat later on
498 */
499 f->real_file_size = sb.st_size;
500 f->file_size = f->real_file_size;
501 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100502 }
503}
504
505void add_file(struct thread_data *td, const char *fname)
506{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100507 int cur_files = td->files_index;
Jens Axboeaf52b342007-03-13 10:07:47 +0100508 struct fio_file *f;
509
510 td->files = realloc(td->files, (cur_files + 1) * sizeof(*f));
511
512 f = &td->files[cur_files];
513 memset(f, 0, sizeof(*f));
514 f->fd = -1;
Jens Axboecae61952007-03-13 11:12:14 +0100515 f->file_name = strdup(fname);
Jens Axboeaf52b342007-03-13 10:07:47 +0100516
Jens Axboee3bab462007-03-13 11:22:09 +0100517 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100518
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100519 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100520 if (f->filetype == FIO_TYPE_FILE)
521 td->nr_normal_files++;
Jens Axboeaf52b342007-03-13 10:07:47 +0100522}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100523
524void get_file(struct fio_file *f)
525{
526 f->references++;
527}
528
529void put_file(struct thread_data *td, struct fio_file *f)
530{
531 if (!(f->flags & FIO_FILE_OPEN))
532 return;
533
534 assert(f->references);
535 if (--f->references)
536 return;
537
Jens Axboeebb14152007-03-13 14:42:15 +0100538 if (should_fsync(td) && td->fsync_on_close)
539 fsync(f->fd);
540
Jens Axboe0ad920e2007-03-13 11:06:45 +0100541 if (td->io_ops->close_file)
542 td->io_ops->close_file(td, f);
543 td->nr_open_files--;
544 f->flags &= ~FIO_FILE_OPEN;
545}
Jens Axboebbf6b542007-03-13 15:28:55 +0100546
547static int recurse_dir(struct thread_data *td, const char *dirname)
548{
549 struct dirent *dir;
550 int ret = 0;
551 DIR *D;
552
553 D = opendir(dirname);
554 if (!D) {
555 td_verror(td, errno, "opendir");
556 return 1;
557 }
558
559 while ((dir = readdir(D)) != NULL) {
560 char full_path[PATH_MAX];
561 struct stat sb;
562
Jens Axboee85b2b82007-03-14 09:39:06 +0100563 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
564 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100565
Jens Axboebbf6b542007-03-13 15:28:55 +0100566 sprintf(full_path, "%s/%s", dirname, dir->d_name);
567
568 if (lstat(full_path, &sb) == -1) {
569 if (errno != ENOENT) {
570 td_verror(td, errno, "stat");
571 return 1;
572 }
573 }
574
575 if (S_ISREG(sb.st_mode)) {
576 add_file(td, full_path);
577 td->nr_files++;
578 continue;
579 }
580
Jens Axboebbf6b542007-03-13 15:28:55 +0100581 if ((ret = recurse_dir(td, full_path)) != 0)
582 break;
583 }
584
585 closedir(D);
586 return ret;
587}
588
589int add_dir_files(struct thread_data *td, const char *path)
590{
591 return recurse_dir(td, path);
592}