blob: 5b96c66fa739d0af845fab987452d957542175cc [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>
YAMAMOTO Takashid74ac842010-06-09 09:44:53 +02006#include <libgen.h>
Jens Axboe53cdc682006-10-18 11:50:58 +02007#include <sys/stat.h>
8#include <sys/mman.h>
Jens Axboebbf6b542007-03-13 15:28:55 +01009#include <sys/types.h>
Jens Axboe53cdc682006-10-18 11:50:58 +020010
11#include "fio.h"
Jens Axboef17c4392008-03-01 18:40:46 +010012#include "smalloc.h"
Jens Axboe4906e0b2008-03-01 18:59:51 +010013#include "filehash.h"
Jens Axboe53cdc682006-10-18 11:50:58 +020014
Jens Axboe7172cfe2007-07-23 14:36:00 +020015static int root_warn;
16
Jens Axboec592b9f2009-06-03 09:29:28 +020017static inline void clear_error(struct thread_data *td)
18{
19 td->error = 0;
20 td->verror[0] = '\0';
21}
22
Jens Axboe3baddf22008-04-04 11:10:30 +020023/*
24 * Leaves f->fd open on success, caller must close
25 */
Jens Axboe7bb48f82007-03-27 15:30:28 +020026static int extend_file(struct thread_data *td, struct fio_file *f)
Jens Axboe25205e92006-10-19 20:50:14 +020027{
Jens Axboeea443652007-03-29 14:52:13 +020028 int r, new_layout = 0, unlink_file = 0, flags;
Jens Axboe25205e92006-10-19 20:50:14 +020029 unsigned long long left;
30 unsigned int bs;
31 char *b;
Jens Axboeb2a15192006-10-18 14:10:42 +020032
Jens Axboe4241ea82007-09-12 08:18:36 +020033 if (read_only) {
34 log_err("fio: refusing extend of file due to read-only\n");
35 return 0;
36 }
37
Jens Axboe507a7022007-03-27 15:52:46 +020038 /*
39 * check if we need to lay the file out complete again. fio
40 * does that for operations involving reads, or for writes
41 * where overwrite is set
42 */
Jens Axboeffdfabd2008-03-26 09:18:14 +010043 if (td_read(td) || (td_write(td) && td->o.overwrite) ||
44 (td_write(td) && td->io_ops->flags & FIO_NOEXTEND))
Jens Axboe507a7022007-03-27 15:52:46 +020045 new_layout = 1;
Jens Axboeea443652007-03-29 14:52:13 +020046 if (td_write(td) && !td->o.overwrite)
47 unlink_file = 1;
Jens Axboe507a7022007-03-27 15:52:46 +020048
Jens Axboe6ae1f572008-02-21 10:20:00 +010049 if (unlink_file || new_layout) {
Jens Axboebd199f22008-03-26 09:57:18 +010050 dprint(FD_FILE, "layout unlink %s\n", f->file_name);
Zhang, Yanmin982016d2008-02-26 15:35:52 +010051 if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
Jens Axboe7bb48f82007-03-27 15:30:28 +020052 td_verror(td, errno, "unlink");
53 return 1;
54 }
55 }
56
Jens Axboe507a7022007-03-27 15:52:46 +020057 flags = O_WRONLY | O_CREAT;
58 if (new_layout)
59 flags |= O_TRUNC;
60
Jens Axboeee56ad52008-02-01 10:30:20 +010061 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
Jens Axboe507a7022007-03-27 15:52:46 +020062 f->fd = open(f->file_name, flags, 0644);
Jens Axboe53cdc682006-10-18 11:50:58 +020063 if (f->fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010064 td_verror(td, errno, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +020065 return 1;
66 }
67
Jens Axboe7bc8c2c2010-01-28 11:31:31 +010068#ifdef FIO_HAVE_FALLOCATE
69 if (td->o.fallocate && !td->o.fill_device) {
70 dprint(FD_FILE, "fallocate file %s size %llu\n", f->file_name,
71 f->real_file_size);
72
73 r = posix_fallocate(f->fd, 0, f->real_file_size);
Greg Edwards10accd72010-06-25 09:25:22 -060074 if (r > 0) {
Jens Axboe7bc8c2c2010-01-28 11:31:31 +010075 log_err("fio: posix_fallocate fails: %s\n",
Greg Edwards10accd72010-06-25 09:25:22 -060076 strerror(r));
Jens Axboe7bc8c2c2010-01-28 11:31:31 +010077 }
78 }
79#endif
80
Shawn Lewisfc74ac12008-01-11 09:45:11 +010081 if (!new_layout)
82 goto done;
83
Jens Axboe5e0074c2009-06-02 21:40:09 +020084 /*
85 * The size will be -1ULL when fill_device is used, so don't truncate
86 * or fallocate this file, just write it
87 */
88 if (!td->o.fill_device) {
89 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
Jens Axboeee56ad52008-02-01 10:30:20 +010090 f->real_file_size);
Jens Axboe5e0074c2009-06-02 21:40:09 +020091 if (ftruncate(f->fd, f->real_file_size) == -1) {
92 td_verror(td, errno, "ftruncate");
93 goto err;
94 }
Jens Axboe5e0074c2009-06-02 21:40:09 +020095 }
Jens Axboe40f82982006-10-25 11:21:05 +020096
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010097 b = malloc(td->o.max_bs[DDIR_WRITE]);
98 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020099
Jens Axboe7bb48f82007-03-27 15:30:28 +0200100 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200101 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100102 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +0200103 if (bs > left)
104 bs = left;
105
106 r = write(f->fd, b, bs);
107
Jens Axboe5e0074c2009-06-02 21:40:09 +0200108 if (r > 0) {
109 left -= r;
Jens Axboe53cdc682006-10-18 11:50:58 +0200110 continue;
111 } else {
Jens Axboe5e0074c2009-06-02 21:40:09 +0200112 if (r < 0) {
113 int __e = errno;
114
115 if (__e == ENOSPC) {
116 if (td->o.fill_device)
117 break;
118 log_info("fio: ENOSPC on laying out "
119 "file, stopping\n");
120 break;
121 }
Jens Axboee1161c32007-02-22 19:36:48 +0100122 td_verror(td, errno, "write");
Jens Axboe5e0074c2009-06-02 21:40:09 +0200123 } else
Jens Axboee1161c32007-02-22 19:36:48 +0100124 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +0200125
126 break;
127 }
128 }
129
Jens Axboeffdfabd2008-03-26 09:18:14 +0100130 if (td->terminate) {
131 dprint(FD_FILE, "terminate unlink %s\n", f->file_name);
Jens Axboe53cdc682006-10-18 11:50:58 +0200132 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100133 } else if (td->o.create_fsync) {
Jens Axboe98e1ac42008-03-06 11:56:48 +0100134 if (fsync(f->fd) < 0) {
135 td_verror(td, errno, "fsync");
136 goto err;
137 }
138 }
Jens Axboe0d1cd202009-06-05 22:11:52 +0200139 if (td->o.fill_device && !td_write(td)) {
Jens Axboed6aed792009-06-03 08:41:15 +0200140 fio_file_clear_size_known(f);
Jens Axboe5e0074c2009-06-02 21:40:09 +0200141 if (td_io_get_file_size(td, f))
142 goto err;
143 if (f->io_size > f->real_file_size)
144 f->io_size = f->real_file_size;
145 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200146
147 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200148done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200149 return 0;
150err:
151 close(f->fd);
152 f->fd = -1;
153 return 1;
154}
155
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200156static int pre_read_file(struct thread_data *td, struct fio_file *f)
157{
Jens Axboeb0f65862009-05-20 11:52:15 +0200158 int r, did_open = 0, old_runstate;
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200159 unsigned long long left;
160 unsigned int bs;
161 char *b;
162
Jens Axboe9c0d2242009-07-01 12:26:28 +0200163 if (td->io_ops->flags & FIO_PIPEIO)
164 return 0;
165
Jens Axboed6aed792009-06-03 08:41:15 +0200166 if (!fio_file_open(f)) {
Jens Axboeb0f65862009-05-20 11:52:15 +0200167 if (td->io_ops->open_file(td, f)) {
168 log_err("fio: cannot pre-read, failed to open file\n");
169 return 1;
170 }
171 did_open = 1;
172 }
173
174 old_runstate = td->runstate;
175 td_set_runstate(td, TD_PRE_READING);
176
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200177 bs = td->o.max_bs[DDIR_READ];
178 b = malloc(bs);
179 memset(b, 0, bs);
180
181 lseek(f->fd, f->file_offset, SEEK_SET);
182 left = f->io_size;
183
184 while (left && !td->terminate) {
185 if (bs > left)
186 bs = left;
187
188 r = read(f->fd, b, bs);
189
190 if (r == (int) bs) {
191 left -= bs;
192 continue;
193 } else {
194 td_verror(td, EIO, "pre_read");
195 break;
196 }
197 }
198
Jens Axboeb0f65862009-05-20 11:52:15 +0200199 td_set_runstate(td, old_runstate);
200
201 if (did_open)
202 td->io_ops->close_file(td, f);
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200203 free(b);
204 return 0;
205}
206
Jens Axboe7bb48f82007-03-27 15:30:28 +0200207static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100208{
Jens Axboedc873b62008-06-04 20:13:04 +0200209 unsigned long long ret, sized;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100210 long r;
211
Jens Axboe9c60ce62007-03-15 09:14:47 +0100212 r = os_random_long(&td->file_size_state);
Jens Axboedc873b62008-06-04 20:13:04 +0200213 sized = td->o.file_size_high - td->o.file_size_low;
214 ret = (unsigned long long) ((double) sized * (r / (OS_RAND_MAX + 1.0)));
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100215 ret += td->o.file_size_low;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100216 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100217 return ret;
218}
219
Jens Axboe53cdc682006-10-18 11:50:58 +0200220static int file_size(struct thread_data *td, struct fio_file *f)
221{
222 struct stat st;
223
Jens Axboedf9c26b2009-03-05 10:13:58 +0100224 if (stat(f->file_name, &st) == -1) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200225 td_verror(td, errno, "fstat");
226 return 1;
227 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200228
Jens Axboe7bb48f82007-03-27 15:30:28 +0200229 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200230 return 0;
231}
232
233static int bdev_size(struct thread_data *td, struct fio_file *f)
234{
235 unsigned long long bytes;
236 int r;
237
Jens Axboedf9c26b2009-03-05 10:13:58 +0100238 if (td->io_ops->open_file(td, f)) {
239 log_err("fio: failed opening blockdev %s for size check\n",
240 f->file_name);
241 return 1;
242 }
243
Jens Axboe53cdc682006-10-18 11:50:58 +0200244 r = blockdev_size(f->fd, &bytes);
245 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100246 td_verror(td, r, "blockdev_size");
Jens Axboe0e238572010-10-08 11:26:43 +0200247 printf("fd is %d\n", f->fd);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100248 goto err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200249 }
250
Jens Axboe7ab077a2009-02-02 15:07:37 +0100251 if (!bytes) {
252 log_err("%s: zero sized block device?\n", f->file_name);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100253 goto err;
Jens Axboe7ab077a2009-02-02 15:07:37 +0100254 }
255
Jens Axboe53cdc682006-10-18 11:50:58 +0200256 f->real_file_size = bytes;
Jens Axboe22a57ba2009-06-09 14:34:35 +0200257 td->io_ops->close_file(td, f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200258 return 0;
Jens Axboedf9c26b2009-03-05 10:13:58 +0100259err:
260 td->io_ops->close_file(td, f);
261 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200262}
263
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200264static int char_size(struct thread_data *td, struct fio_file *f)
265{
266#ifdef FIO_HAVE_CHARDEV_SIZE
267 unsigned long long bytes;
268 int r;
269
270 if (td->io_ops->open_file(td, f)) {
271 log_err("fio: failed opening blockdev %s for size check\n",
272 f->file_name);
273 return 1;
274 }
275
276 r = chardev_size(f->fd, &bytes);
277 if (r) {
278 td_verror(td, r, "chardev_size");
279 goto err;
280 }
281
282 if (!bytes) {
283 log_err("%s: zero sized char device?\n", f->file_name);
284 goto err;
285 }
286
287 f->real_file_size = bytes;
288 td->io_ops->close_file(td, f);
289 return 0;
290err:
291 td->io_ops->close_file(td, f);
292 return 1;
293#else
294 f->real_file_size = -1ULL;
295 return 0;
296#endif
297}
298
Jens Axboe53cdc682006-10-18 11:50:58 +0200299static int get_file_size(struct thread_data *td, struct fio_file *f)
300{
301 int ret = 0;
302
Jens Axboed6aed792009-06-03 08:41:15 +0200303 if (fio_file_size_known(f))
Jens Axboe409b3412007-03-28 09:57:01 +0200304 return 0;
305
Jens Axboe7bb48f82007-03-27 15:30:28 +0200306 if (f->filetype == FIO_TYPE_FILE)
307 ret = file_size(td, f);
308 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200309 ret = bdev_size(td, f);
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200310 else if (f->filetype == FIO_TYPE_CHAR)
311 ret = char_size(td, f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200312 else
313 f->real_file_size = -1;
314
315 if (ret)
316 return ret;
317
318 if (f->file_offset > f->real_file_size) {
Bruce Cran0f2152c2010-12-15 10:33:03 +0100319 log_err("%s: offset extends end (%llu > %llu)\n", td->o.name,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100320 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200321 return 1;
322 }
323
Jens Axboed6aed792009-06-03 08:41:15 +0200324 fio_file_set_size_known(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200325 return 0;
326}
327
Jens Axboe3baddf22008-04-04 11:10:30 +0200328static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
329 unsigned long long off,
330 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200331{
332 int ret = 0;
333
Jens Axboe5e0074c2009-06-02 21:40:09 +0200334 if (len == -1ULL)
Jens Axboe3baddf22008-04-04 11:10:30 +0200335 len = f->io_size;
336 if (off == -1ULL)
337 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100338
Jens Axboe0d1cd202009-06-05 22:11:52 +0200339 if (len == -1ULL || off == -1ULL)
340 return 0;
341
Jens Axboe3baddf22008-04-04 11:10:30 +0200342 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
343 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100344
Jens Axboee5b401d2006-10-18 16:03:40 +0200345 /*
346 * FIXME: add blockdev flushing too
347 */
Jens Axboea1c58072009-08-04 23:17:02 +0200348 if (f->mmap_ptr) {
Bruce Cran03e20d62011-01-02 20:14:54 +0100349 ret = posix_madvise(f->mmap_ptr, f->mmap_sz, POSIX_MADV_DONTNEED);
Jens Axboea1c58072009-08-04 23:17:02 +0200350#ifdef FIO_MADV_FREE
Bruce Cran03e20d62011-01-02 20:14:54 +0100351 (void) posix_madvise(f->mmap_ptr, f->mmap_sz, FIO_MADV_FREE);
Jens Axboea1c58072009-08-04 23:17:02 +0200352#endif
353 } else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200354 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100355 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100356 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200357 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200358 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100359 log_err("fio: only root may flush block "
360 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200361 root_warn = 1;
362 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200363 ret = 0;
364 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200365 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200366 ret = 0;
367
368 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100369 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200370 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200371 } else if (ret > 0) {
372 td_verror(td, ret, "invalidate_cache");
373 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200374 }
375
Jens Axboead2da602007-02-26 12:33:27 +0100376 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200377
378}
379
380int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
381{
Jens Axboed6aed792009-06-03 08:41:15 +0200382 if (!fio_file_open(f))
Jens Axboea5fb4612008-05-28 10:54:01 +0200383 return 0;
384
Jens Axboe5e0074c2009-06-02 21:40:09 +0200385 return __file_invalidate_cache(td, f, -1ULL, -1ULL);
Jens Axboee5b401d2006-10-18 16:03:40 +0200386}
387
Jens Axboe6977bcd2008-03-01 15:55:36 +0100388int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200389{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100390 int ret = 0;
391
Jens Axboeee56ad52008-02-01 10:30:20 +0100392 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100393
394 remove_file_hash(f);
395
Jens Axboe6977bcd2008-03-01 15:55:36 +0100396 if (close(f->fd) < 0)
397 ret = errno;
398
Jens Axboeb5af8292007-03-08 12:43:13 +0100399 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100400 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200401}
402
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100403static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200404{
Jens Axboe29c13492008-03-01 19:25:20 +0100405 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100406 int from_hash;
407
408 __f = lookup_file_hash(f->file_name);
409 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100410 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100411 /*
412 * racy, need the __f->lock locked
413 */
414 f->lock = __f->lock;
415 f->lock_owner = __f->lock_owner;
416 f->lock_batch = __f->lock_batch;
417 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100418 from_hash = 1;
419 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100420 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100421 from_hash = 0;
422 }
423
Jens Axboee8670ef2008-03-06 12:06:30 +0100424 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100425 return from_hash;
426}
427
428int generic_open_file(struct thread_data *td, struct fio_file *f)
429{
Jens Axboe66159822007-04-16 21:54:24 +0200430 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200431 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100432 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200433
Jens Axboeee56ad52008-02-01 10:30:20 +0100434 dprint(FD_FILE, "fd open %s\n", f->file_name);
435
Jens Axboe66159822007-04-16 21:54:24 +0200436 if (!strcmp(f->file_name, "-")) {
437 if (td_rw(td)) {
438 log_err("fio: can't read/write to stdin/out\n");
439 return 1;
440 }
441 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200442
443 /*
444 * move output logging to stderr, if we are writing to stdout
445 */
446 if (td_write(td))
447 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200448 }
449
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100450 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100451 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100452 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100453 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200454 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200455 flags |= FIO_O_NOATIME;
Jens Axboe814452b2009-03-04 12:53:13 +0100456 if (td->o.create_on_open)
457 flags |= O_CREAT;
Jens Axboe7abf8332006-11-23 15:01:19 +0100458
Aaron Carroll056f3452007-11-26 09:08:53 +0100459open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200460 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100461 if (!read_only)
462 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200463
Jens Axboeaf52b342007-03-13 10:07:47 +0100464 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100465 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100466
Jens Axboe66159822007-04-16 21:54:24 +0200467 if (is_std)
468 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100469 else
470 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100471 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200472 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100473 flags |= O_RDWR;
474 else
475 flags |= O_RDONLY;
476
Jens Axboe66159822007-04-16 21:54:24 +0200477 if (is_std)
478 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100479 else
480 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200481 }
482
483 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100484 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100485 int __e = errno;
486
Jens Axboe835d9b92009-06-09 15:23:38 +0200487 if (__e == EPERM && (flags & FIO_O_NOATIME)) {
Jens Axboe5921e802008-05-30 15:02:38 +0200488 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100489 goto open_again;
490 }
491
Jens Axboee8670ef2008-03-06 12:06:30 +0100492 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100493
494 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200495 }
496
Jens Axboe29c13492008-03-01 19:25:20 +0100497 if (!from_hash && f->fd != -1) {
498 if (add_file_hash(f)) {
499 int ret;
500
501 /*
502 * OK to ignore, we haven't done anything with it
503 */
504 ret = generic_close_file(td, f);
505 goto open_again;
506 }
507 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100508
Jens Axboe53cdc682006-10-18 11:50:58 +0200509 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100510}
511
Jens Axboedf9c26b2009-03-05 10:13:58 +0100512int generic_get_file_size(struct thread_data *td, struct fio_file *f)
Jens Axboe21972cd2006-11-23 12:39:16 +0100513{
Jens Axboedf9c26b2009-03-05 10:13:58 +0100514 return get_file_size(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100515}
516
Jens Axboe7bb48f82007-03-27 15:30:28 +0200517/*
518 * open/close all files, so that ->real_file_size gets set
519 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200520static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200521{
522 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100523 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200524 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200525
526 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100527 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
528 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100529
Jens Axboe99a47c62009-04-07 22:20:56 +0200530 if (td_io_get_file_size(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200531 if (td->error != ENOENT) {
532 log_err("%s\n", td->verror);
533 err = 1;
534 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200535 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200536 }
Jens Axboe409b3412007-03-28 09:57:01 +0200537
538 if (f->real_file_size == -1ULL && td->o.size)
539 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200540 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200541
542 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200543}
544
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200545struct fio_mount {
546 struct flist_head list;
547 const char *base;
548 char __base[256];
549 unsigned int key;
550};
551
552/*
553 * Get free number of bytes for each file on each unique mount.
554 */
555static unsigned long long get_fs_free_counts(struct thread_data *td)
556{
557 struct flist_head *n, *tmp;
Jens Axboe68b03162010-06-24 09:22:41 +0200558 unsigned long long ret = 0;
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200559 struct fio_mount *fm;
560 FLIST_HEAD(list);
561 struct fio_file *f;
562 unsigned int i;
563
564 for_each_file(td, f, i) {
565 struct stat sb;
566 char buf[256];
567
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200568 if (f->filetype == FIO_TYPE_BD || f->filetype == FIO_TYPE_CHAR) {
569 if (f->real_file_size != -1ULL)
570 ret += f->real_file_size;
Jens Axboe68b03162010-06-24 09:22:41 +0200571 continue;
572 } else if (f->filetype != FIO_TYPE_FILE)
573 continue;
574
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200575 strcpy(buf, f->file_name);
576
577 if (stat(buf, &sb) < 0) {
578 if (errno != ENOENT)
579 break;
580 strcpy(buf, ".");
581 if (stat(buf, &sb) < 0)
582 break;
583 }
584
585 fm = NULL;
586 flist_for_each(n, &list) {
587 fm = flist_entry(n, struct fio_mount, list);
588 if (fm->key == sb.st_dev)
589 break;
590
591 fm = NULL;
592 }
593
594 if (fm)
595 continue;
596
597 fm = malloc(sizeof(*fm));
598 strcpy(fm->__base, buf);
599 fm->base = basename(fm->__base);
600 fm->key = sb.st_dev;
601 flist_add(&fm->list, &list);
602 }
603
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200604 flist_for_each_safe(n, tmp, &list) {
605 unsigned long long sz;
606
607 fm = flist_entry(n, struct fio_mount, list);
608 flist_del(&fm->list);
609
610 sz = get_fs_size(fm->base);
611 if (sz && sz != -1ULL)
612 ret += sz;
613
614 free(fm);
615 }
616
617 return ret;
618}
619
Jens Axboe7bb48f82007-03-27 15:30:28 +0200620/*
621 * Open the files and setup files sizes, creating files if necessary.
622 */
623int setup_files(struct thread_data *td)
624{
625 unsigned long long total_size, extend_size;
626 struct fio_file *f;
627 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200628 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200629
Jens Axboeee56ad52008-02-01 10:30:20 +0100630 dprint(FD_FILE, "setup files\n");
631
Jens Axboe691c8fb2008-03-07 14:26:26 +0100632 if (td->o.read_iolog_file)
633 return 0;
634
Jens Axboe53cdc682006-10-18 11:50:58 +0200635 /*
636 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200637 * opening the files and setting f->real_file_size to indicate
638 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200639 */
640 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200641 err = td->io_ops->setup(td);
642 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200643 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200644
Jens Axboef1027062006-10-20 10:14:01 +0200645 if (err)
646 return err;
647
Jens Axboe0a7eb122006-10-20 10:36:42 +0200648 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200649 * check sizes. if the files/devices do not exist and the size
650 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200651 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200652 total_size = 0;
653 for_each_file(td, f, i) {
654 if (f->real_file_size == -1ULL)
655 total_size = -1ULL;
656 else
657 total_size += f->real_file_size;
658 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200659
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200660 if (td->o.fill_device)
661 td->fill_device_size = get_fs_free_counts(td);
662
Jens Axboe7bb48f82007-03-27 15:30:28 +0200663 /*
664 * device/file sizes are zero and no size given, punt
665 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200666 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100667 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200668 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100669 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200670 return 1;
671 }
672
Jens Axboe7bb48f82007-03-27 15:30:28 +0200673 /*
674 * now file sizes are known, so we can set ->io_size. if size= is
675 * not given, ->io_size is just equal to ->real_file_size. if size
676 * is given, ->io_size is size / nr_files.
677 */
678 extend_size = total_size = 0;
679 need_extend = 0;
680 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200681 f->file_offset = td->o.start_offset;
682
Jens Axboe7bb48f82007-03-27 15:30:28 +0200683 if (!td->o.file_size_low) {
684 /*
685 * no file size range given, file size is equal to
686 * total size divided by number of files. if that is
687 * zero, set it to the real file size.
688 */
689 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100690 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100691 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200692 } else if (f->real_file_size < td->o.file_size_low ||
693 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100694 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200695 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200696 /*
697 * file size given. if it's fixed, use that. if it's a
698 * range, generate a random size in-between.
699 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100700 if (td->o.file_size_low == td->o.file_size_high) {
701 f->io_size = td->o.file_size_low
702 - f->file_offset;
703 } else {
704 f->io_size = get_rand_file_size(td)
705 - f->file_offset;
706 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100707 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200708 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200709
710 if (f->io_size == -1ULL)
711 total_size = -1ULL;
712 else
713 total_size += f->io_size;
714
715 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200716 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200717 !(td->io_ops->flags & FIO_DISKLESSIO)) {
Jens Axboe814452b2009-03-04 12:53:13 +0100718 if (!td->o.create_on_open) {
719 need_extend++;
720 extend_size += (f->io_size + f->file_offset);
721 } else
722 f->real_file_size = f->io_size + f->file_offset;
Jens Axboed6aed792009-06-03 08:41:15 +0200723 fio_file_set_extend(f);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100724 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200725 }
726
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200727 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200728 td->o.size = total_size;
729
730 /*
731 * See if we need to extend some files
732 */
733 if (need_extend) {
734 temp_stall_ts = 1;
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200735 if (!terse_output)
736 log_info("%s: Laying out IO file(s) (%u file(s) /"
Bruce Cran0f2152c2010-12-15 10:33:03 +0100737 " %lluMB)\n", td->o.name, need_extend,
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200738 extend_size >> 20);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200739
740 for_each_file(td, f, i) {
Jens Axboe5e0074c2009-06-02 21:40:09 +0200741 unsigned long long old_len = -1ULL, extend_len = -1ULL;
Jens Axboe3baddf22008-04-04 11:10:30 +0200742
Jens Axboed6aed792009-06-03 08:41:15 +0200743 if (!fio_file_extend(f))
Jens Axboe7bb48f82007-03-27 15:30:28 +0200744 continue;
745
Jens Axboe409b3412007-03-28 09:57:01 +0200746 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboed6aed792009-06-03 08:41:15 +0200747 fio_file_clear_extend(f);
Jens Axboe5e0074c2009-06-02 21:40:09 +0200748 if (!td->o.fill_device) {
749 old_len = f->real_file_size;
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200750 extend_len = f->io_size + f->file_offset -
751 old_len;
Jens Axboe5e0074c2009-06-02 21:40:09 +0200752 }
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200753 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200754 err = extend_file(td, f);
755 if (err)
756 break;
Jens Axboe5e0074c2009-06-02 21:40:09 +0200757
Jens Axboe3baddf22008-04-04 11:10:30 +0200758 err = __file_invalidate_cache(td, f, old_len,
759 extend_len);
760 close(f->fd);
761 f->fd = -1;
762 if (err)
763 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200764 }
765 temp_stall_ts = 0;
766 }
767
768 if (err)
769 return err;
770
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100771 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200772 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200773
Jens Axboeea966f82007-09-03 10:09:37 +0200774 /*
775 * iolog already set the total io size, if we read back
776 * stored entries.
777 */
778 if (!td->o.read_iolog_file)
779 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200780 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200781err_offset:
782 log_err("%s: you need to specify valid offset=\n", td->o.name);
783 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200784}
785
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200786int pre_read_files(struct thread_data *td)
787{
788 struct fio_file *f;
789 unsigned int i;
790
791 dprint(FD_FILE, "pre_read files\n");
792
793 for_each_file(td, f, i) {
794 pre_read_file(td, f);
795 }
796
797 return 1;
798}
799
Jens Axboe68727072007-03-15 20:49:25 +0100800int init_random_map(struct thread_data *td)
801{
Jens Axboe509eab12007-12-14 12:42:53 +0100802 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100803 struct fio_file *f;
804 unsigned int i;
805
Jens Axboede8dd112008-03-01 15:34:44 +0100806 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100807 return 0;
808
809 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100810 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
811 (unsigned long long) td->o.rw_min_bs;
812 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
813 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200814 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100815 if (f->file_map) {
816 f->num_maps = num_maps;
817 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100818 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100819 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100820 log_err("fio: failed allocating random map. If running"
821 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100822 " option or set 'softrandommap'. Or give"
823 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100824 return 1;
825 }
Jens Axboe303032a2008-03-26 10:11:10 +0100826
827 log_info("fio: file %s failed allocating random map. Running "
828 "job without.\n", f->file_name);
829 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100830 }
831
832 return 0;
833}
834
Jens Axboe53cdc682006-10-18 11:50:58 +0200835void close_files(struct thread_data *td)
836{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200837 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100838 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200839
Jens Axboe2be3eec2009-06-10 09:05:13 +0200840 for_each_file(td, f, i) {
841 if (fio_file_open(f))
842 td_io_close_file(td, f);
843 }
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100844}
845
846void close_and_free_files(struct thread_data *td)
847{
848 struct fio_file *f;
849 unsigned int i;
850
Jens Axboeee56ad52008-02-01 10:30:20 +0100851 dprint(FD_FILE, "close files\n");
852
Jens Axboe0ab8db82006-10-18 17:16:23 +0200853 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100854 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
855 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100856 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100857 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100858
Jens Axboe22a57ba2009-06-09 14:34:35 +0200859 if (fio_file_open(f))
860 td_io_close_file(td, f);
861
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +0200862 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100863
Jens Axboef17c4392008-03-01 18:40:46 +0100864 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100865 f->file_name = NULL;
Jens Axboe61eb3132010-03-31 20:05:59 +0200866 sfree(f->file_map);
867 f->file_map = NULL;
Jens Axboe78d99e62008-03-01 18:41:50 +0100868 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200869 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200870
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100871 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100872 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100873 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200874 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100875 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200876}
Jens Axboeaf52b342007-03-13 10:07:47 +0100877
Jens Axboee3bab462007-03-13 11:22:09 +0100878static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100879{
880 struct stat sb;
881
Jens Axboe66159822007-04-16 21:54:24 +0200882 if (!strcmp(f->file_name, "-"))
883 f->filetype = FIO_TYPE_PIPE;
884 else
885 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100886
Jens Axboeb30d3952010-02-06 23:36:26 +0100887 if (!stat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100888 if (S_ISBLK(sb.st_mode))
889 f->filetype = FIO_TYPE_BD;
890 else if (S_ISCHR(sb.st_mode))
891 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200892 else if (S_ISFIFO(sb.st_mode))
893 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100894 }
895}
896
Jens Axboef29b25a2007-07-23 08:56:43 +0200897int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100898{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100899 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100900 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100901 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100902 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100903
Jens Axboeee56ad52008-02-01 10:30:20 +0100904 dprint(FD_FILE, "add file %s\n", fname);
905
Jens Axboef17c4392008-03-01 18:40:46 +0100906 f = smalloc(sizeof(*f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200907 if (!f) {
908 log_err("fio: smalloc OOM\n");
909 assert(0);
910 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200911
Jens Axboeaf52b342007-03-13 10:07:47 +0100912 f->fd = -1;
Jens Axboe38dad622010-07-20 14:46:00 -0600913 fio_file_reset(f);
Jens Axboebd0ee742007-03-23 14:26:23 +0100914
Jens Axboefc99bc02009-03-04 15:27:42 +0100915 if (td->files_size <= td->files_index) {
Carl Henrik Lunde4b341fc2009-04-20 08:41:37 +0200916 int new_size = td->o.nr_files + 1;
Jens Axboe126d65c2008-03-01 18:04:31 +0100917
Jens Axboefc99bc02009-03-04 15:27:42 +0100918 dprint(FD_FILE, "resize file array to %d files\n", new_size);
919
920 td->files = realloc(td->files, new_size * sizeof(f));
Jens Axboefc99bc02009-03-04 15:27:42 +0100921 td->files_size = new_size;
922 }
Jens Axboe8bb76792009-03-04 15:37:52 +0100923 td->files[cur_files] = f;
Jens Axboe126d65c2008-03-01 18:04:31 +0100924
Jens Axboe07eb79d2007-04-12 13:02:38 +0200925 /*
926 * init function, io engine may not be loaded yet
927 */
928 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
929 f->real_file_size = -1ULL;
930
Jens Axboebd0ee742007-03-23 14:26:23 +0100931 if (td->o.directory)
932 len = sprintf(file_name, "%s/", td->o.directory);
933
934 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100935 f->file_name = smalloc_strdup(file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200936 if (!f->file_name) {
937 log_err("fio: smalloc OOM\n");
938 assert(0);
939 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200940
Jens Axboee3bab462007-03-13 11:22:09 +0100941 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100942
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100943 switch (td->o.file_lock_mode) {
944 case FILE_LOCK_NONE:
945 break;
946 case FILE_LOCK_READWRITE:
947 f->lock = fio_mutex_rw_init();
948 break;
949 case FILE_LOCK_EXCLUSIVE:
950 f->lock = fio_mutex_init(1);
951 break;
952 default:
953 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
954 assert(0);
955 }
Jens Axboe29c13492008-03-01 19:25:20 +0100956
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100957 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100958 if (f->filetype == FIO_TYPE_FILE)
959 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200960
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100961 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
962 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100963
Jens Axboef29b25a2007-07-23 08:56:43 +0200964 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100965}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100966
Jens Axboe49ffb4a2010-08-24 15:01:37 +0200967int add_file_exclusive(struct thread_data *td, const char *fname)
968{
969 struct fio_file *f;
970 unsigned int i;
971
972 for_each_file(td, f, i) {
973 if (!strcmp(f->file_name, fname))
974 return i;
975 }
976
977 return add_file(td, fname);
978}
979
Jens Axboe0ad920e2007-03-13 11:06:45 +0100980void get_file(struct fio_file *f)
981{
Jens Axboe8172fe92008-02-01 21:51:02 +0100982 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboed6aed792009-06-03 08:41:15 +0200983 assert(fio_file_open(f));
Jens Axboe0ad920e2007-03-13 11:06:45 +0100984 f->references++;
985}
986
Jens Axboe6977bcd2008-03-01 15:55:36 +0100987int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100988{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100989 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100990
Jens Axboe8172fe92008-02-01 21:51:02 +0100991 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100992
Jens Axboe22a57ba2009-06-09 14:34:35 +0200993 if (!fio_file_open(f)) {
994 assert(f->fd == -1);
Jens Axboe6977bcd2008-03-01 15:55:36 +0100995 return 0;
Jens Axboe22a57ba2009-06-09 14:34:35 +0200996 }
Jens Axboe0ad920e2007-03-13 11:06:45 +0100997
998 assert(f->references);
999 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +01001000 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +01001001
Jens Axboed424d4d2007-04-17 09:05:10 +02001002 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +01001003 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +01001004
Jens Axboe0ad920e2007-03-13 11:06:45 +01001005 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +01001006 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +02001007
Jens Axboe98e1ac42008-03-06 11:56:48 +01001008 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +02001009 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +01001010
Jens Axboe0ad920e2007-03-13 11:06:45 +01001011 td->nr_open_files--;
Jens Axboed6aed792009-06-03 08:41:15 +02001012 fio_file_clear_open(f);
Jens Axboe22a57ba2009-06-09 14:34:35 +02001013 assert(f->fd == -1);
Jens Axboe6977bcd2008-03-01 15:55:36 +01001014 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +01001015}
Jens Axboebbf6b542007-03-13 15:28:55 +01001016
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001017void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001018{
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001019 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1020 return;
Jens Axboe29c13492008-03-01 19:25:20 +01001021
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001022 if (f->lock_owner == td && f->lock_batch--)
1023 return;
1024
1025 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
1026 if (ddir == DDIR_READ)
1027 fio_mutex_down_read(f->lock);
1028 else
1029 fio_mutex_down_write(f->lock);
1030 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1031 fio_mutex_down(f->lock);
1032
1033 f->lock_owner = td;
1034 f->lock_batch = td->o.lockfile_batch;
1035 f->lock_ddir = ddir;
1036}
1037
1038void unlock_file(struct thread_data *td, struct fio_file *f)
1039{
1040 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1041 return;
1042 if (f->lock_batch)
1043 return;
1044
1045 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
1046 const int is_read = f->lock_ddir == DDIR_READ;
1047 int val = fio_mutex_getval(f->lock);
1048
1049 if ((is_read && val == 1) || (!is_read && val == -1))
1050 f->lock_owner = NULL;
1051
1052 if (is_read)
1053 fio_mutex_up_read(f->lock);
1054 else
1055 fio_mutex_up_write(f->lock);
1056 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
1057 int val = fio_mutex_getval(f->lock);
1058
1059 if (val == 0)
1060 f->lock_owner = NULL;
1061
1062 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +01001063 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001064}
1065
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001066void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001067{
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001068 if (f->lock_owner != td)
1069 return;
Jens Axboe29c13492008-03-01 19:25:20 +01001070
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001071 f->lock_batch = 0;
1072 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001073}
1074
Jens Axboebbf6b542007-03-13 15:28:55 +01001075static int recurse_dir(struct thread_data *td, const char *dirname)
1076{
1077 struct dirent *dir;
1078 int ret = 0;
1079 DIR *D;
1080
1081 D = opendir(dirname);
1082 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +02001083 char buf[FIO_VERROR_SIZE];
1084
1085 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
1086 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +01001087 return 1;
1088 }
1089
1090 while ((dir = readdir(D)) != NULL) {
1091 char full_path[PATH_MAX];
1092 struct stat sb;
1093
Jens Axboee85b2b82007-03-14 09:39:06 +01001094 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
1095 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +01001096
Jens Axboebbf6b542007-03-13 15:28:55 +01001097 sprintf(full_path, "%s/%s", dirname, dir->d_name);
1098
1099 if (lstat(full_path, &sb) == -1) {
1100 if (errno != ENOENT) {
1101 td_verror(td, errno, "stat");
1102 return 1;
1103 }
1104 }
1105
1106 if (S_ISREG(sb.st_mode)) {
1107 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001108 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +01001109 continue;
1110 }
Jens Axboe0ddb2702007-03-27 19:43:53 +02001111 if (!S_ISDIR(sb.st_mode))
1112 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +01001113
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001114 ret = recurse_dir(td, full_path);
1115 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +01001116 break;
1117 }
1118
1119 closedir(D);
1120 return ret;
1121}
1122
1123int add_dir_files(struct thread_data *td, const char *path)
1124{
Jens Axboe0ddb2702007-03-27 19:43:53 +02001125 int ret = recurse_dir(td, path);
1126
1127 if (!ret)
1128 log_info("fio: opendir added %d files\n", td->o.nr_files);
1129
1130 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +01001131}
Jens Axboecade3ef2007-03-23 15:29:45 +01001132
1133void dup_files(struct thread_data *td, struct thread_data *org)
1134{
1135 struct fio_file *f;
1136 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +01001137
1138 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +01001139
1140 if (!org->files)
1141 return;
1142
Jens Axboe9efef3c2008-03-06 10:26:25 +01001143 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +01001144
Jens Axboe9efef3c2008-03-06 10:26:25 +01001145 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +01001146 struct fio_file *__f;
1147
Jens Axboef17c4392008-03-01 18:40:46 +01001148 __f = smalloc(sizeof(*__f));
Jens Axboec48c0be2008-07-31 19:55:02 +02001149 if (!__f) {
1150 log_err("fio: smalloc OOM\n");
1151 assert(0);
1152 }
Jens Axboe22a57ba2009-06-09 14:34:35 +02001153 __f->fd = -1;
Jens Axboe38dad622010-07-20 14:46:00 -06001154 fio_file_reset(__f);
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001155
Aaron Carrollbc3456f2008-06-25 09:20:37 +02001156 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +01001157 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +02001158 if (!__f->file_name) {
1159 log_err("fio: smalloc OOM\n");
1160 assert(0);
1161 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001162
Aaron Carrollbc3456f2008-06-25 09:20:37 +02001163 __f->filetype = f->filetype;
1164 }
Jens Axboeb0fe4212008-03-01 18:22:27 +01001165
1166 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +01001167 }
1168}
Jens Axboef29b25a2007-07-23 08:56:43 +02001169
1170/*
1171 * Returns the index that matches the filename, or -1 if not there
1172 */
1173int get_fileno(struct thread_data *td, const char *fname)
1174{
1175 struct fio_file *f;
1176 unsigned int i;
1177
1178 for_each_file(td, f, i)
1179 if (!strcmp(f->file_name, fname))
1180 return i;
1181
1182 return -1;
1183}
1184
1185/*
1186 * For log usage, where we add/open/close files automatically
1187 */
1188void free_release_files(struct thread_data *td)
1189{
1190 close_files(td);
1191 td->files_index = 0;
1192 td->nr_normal_files = 0;
1193}