blob: 5a8105a6032e24b2e45a8a9d028c2a0b7e2552fe [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 Axboedf9c26b2009-03-05 10:13:58 +0100247 goto err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200248 }
249
Jens Axboe7ab077a2009-02-02 15:07:37 +0100250 if (!bytes) {
251 log_err("%s: zero sized block device?\n", f->file_name);
Jens Axboedf9c26b2009-03-05 10:13:58 +0100252 goto err;
Jens Axboe7ab077a2009-02-02 15:07:37 +0100253 }
254
Jens Axboe53cdc682006-10-18 11:50:58 +0200255 f->real_file_size = bytes;
Jens Axboe22a57ba2009-06-09 14:34:35 +0200256 td->io_ops->close_file(td, f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200257 return 0;
Jens Axboedf9c26b2009-03-05 10:13:58 +0100258err:
259 td->io_ops->close_file(td, f);
260 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200261}
262
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200263static int char_size(struct thread_data *td, struct fio_file *f)
264{
265#ifdef FIO_HAVE_CHARDEV_SIZE
266 unsigned long long bytes;
267 int r;
268
269 if (td->io_ops->open_file(td, f)) {
270 log_err("fio: failed opening blockdev %s for size check\n",
271 f->file_name);
272 return 1;
273 }
274
275 r = chardev_size(f->fd, &bytes);
276 if (r) {
277 td_verror(td, r, "chardev_size");
278 goto err;
279 }
280
281 if (!bytes) {
282 log_err("%s: zero sized char device?\n", f->file_name);
283 goto err;
284 }
285
286 f->real_file_size = bytes;
287 td->io_ops->close_file(td, f);
288 return 0;
289err:
290 td->io_ops->close_file(td, f);
291 return 1;
292#else
293 f->real_file_size = -1ULL;
294 return 0;
295#endif
296}
297
Jens Axboe53cdc682006-10-18 11:50:58 +0200298static int get_file_size(struct thread_data *td, struct fio_file *f)
299{
300 int ret = 0;
301
Jens Axboed6aed792009-06-03 08:41:15 +0200302 if (fio_file_size_known(f))
Jens Axboe409b3412007-03-28 09:57:01 +0200303 return 0;
304
Jens Axboe7bb48f82007-03-27 15:30:28 +0200305 if (f->filetype == FIO_TYPE_FILE)
306 ret = file_size(td, f);
307 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200308 ret = bdev_size(td, f);
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200309 else if (f->filetype == FIO_TYPE_CHAR)
310 ret = char_size(td, f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200311 else
312 f->real_file_size = -1;
313
314 if (ret)
315 return ret;
316
317 if (f->file_offset > f->real_file_size) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100318 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
319 f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200320 return 1;
321 }
322
Jens Axboed6aed792009-06-03 08:41:15 +0200323 fio_file_set_size_known(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200324 return 0;
325}
326
Jens Axboe3baddf22008-04-04 11:10:30 +0200327static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f,
328 unsigned long long off,
329 unsigned long long len)
Jens Axboee5b401d2006-10-18 16:03:40 +0200330{
331 int ret = 0;
332
Jens Axboe5e0074c2009-06-02 21:40:09 +0200333 if (len == -1ULL)
Jens Axboe3baddf22008-04-04 11:10:30 +0200334 len = f->io_size;
335 if (off == -1ULL)
336 off = f->file_offset;
Jens Axboeee56ad52008-02-01 10:30:20 +0100337
Jens Axboe0d1cd202009-06-05 22:11:52 +0200338 if (len == -1ULL || off == -1ULL)
339 return 0;
340
Jens Axboe3baddf22008-04-04 11:10:30 +0200341 dprint(FD_IO, "invalidate cache %s: %llu/%llu\n", f->file_name, off,
342 len);
Jens Axboeb5af8292007-03-08 12:43:13 +0100343
Jens Axboee5b401d2006-10-18 16:03:40 +0200344 /*
345 * FIXME: add blockdev flushing too
346 */
Jens Axboea1c58072009-08-04 23:17:02 +0200347 if (f->mmap_ptr) {
Jens Axboeac893112009-06-02 13:06:01 +0200348 ret = madvise(f->mmap_ptr, f->mmap_sz, MADV_DONTNEED);
Jens Axboea1c58072009-08-04 23:17:02 +0200349#ifdef FIO_MADV_FREE
350 (void) madvise(f->mmap_ptr, f->mmap_sz, FIO_MADV_FREE);
351#endif
352 } else if (f->filetype == FIO_TYPE_FILE) {
Jens Axboe3baddf22008-04-04 11:10:30 +0200353 ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100354 } else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100355 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200356 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200357 if (!root_warn) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100358 log_err("fio: only root may flush block "
359 "devices. Cache flush bypassed!\n");
Jens Axboe7172cfe2007-07-23 14:36:00 +0200360 root_warn = 1;
361 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200362 ret = 0;
363 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200364 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200365 ret = 0;
366
367 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100368 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200369 return 1;
Jens Axboe3baddf22008-04-04 11:10:30 +0200370 } else if (ret > 0) {
371 td_verror(td, ret, "invalidate_cache");
372 return 1;
Jens Axboee5b401d2006-10-18 16:03:40 +0200373 }
374
Jens Axboead2da602007-02-26 12:33:27 +0100375 return ret;
Jens Axboe3baddf22008-04-04 11:10:30 +0200376
377}
378
379int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
380{
Jens Axboed6aed792009-06-03 08:41:15 +0200381 if (!fio_file_open(f))
Jens Axboea5fb4612008-05-28 10:54:01 +0200382 return 0;
383
Jens Axboe5e0074c2009-06-02 21:40:09 +0200384 return __file_invalidate_cache(td, f, -1ULL, -1ULL);
Jens Axboee5b401d2006-10-18 16:03:40 +0200385}
386
Jens Axboe6977bcd2008-03-01 15:55:36 +0100387int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200388{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100389 int ret = 0;
390
Jens Axboeee56ad52008-02-01 10:30:20 +0100391 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100392
393 remove_file_hash(f);
394
Jens Axboe6977bcd2008-03-01 15:55:36 +0100395 if (close(f->fd) < 0)
396 ret = errno;
397
Jens Axboeb5af8292007-03-08 12:43:13 +0100398 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100399 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200400}
401
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100402static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200403{
Jens Axboe29c13492008-03-01 19:25:20 +0100404 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100405 int from_hash;
406
407 __f = lookup_file_hash(f->file_name);
408 if (__f) {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100409 dprint(FD_FILE, "found file in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100410 /*
411 * racy, need the __f->lock locked
412 */
413 f->lock = __f->lock;
414 f->lock_owner = __f->lock_owner;
415 f->lock_batch = __f->lock_batch;
416 f->lock_ddir = __f->lock_ddir;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100417 from_hash = 1;
418 } else {
Jens Axboe9efef3c2008-03-06 10:26:25 +0100419 dprint(FD_FILE, "file not found in hash %s\n", f->file_name);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100420 from_hash = 0;
421 }
422
Jens Axboee8670ef2008-03-06 12:06:30 +0100423 f->fd = open(f->file_name, flags, 0600);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100424 return from_hash;
425}
426
427int generic_open_file(struct thread_data *td, struct fio_file *f)
428{
Jens Axboe66159822007-04-16 21:54:24 +0200429 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200430 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100431 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200432
Jens Axboeee56ad52008-02-01 10:30:20 +0100433 dprint(FD_FILE, "fd open %s\n", f->file_name);
434
Jens Axboe66159822007-04-16 21:54:24 +0200435 if (!strcmp(f->file_name, "-")) {
436 if (td_rw(td)) {
437 log_err("fio: can't read/write to stdin/out\n");
438 return 1;
439 }
440 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200441
442 /*
443 * move output logging to stderr, if we are writing to stdout
444 */
445 if (td_write(td))
446 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200447 }
448
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100449 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100450 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100451 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100452 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200453 if (f->filetype != FIO_TYPE_FILE)
Jens Axboe5921e802008-05-30 15:02:38 +0200454 flags |= FIO_O_NOATIME;
Jens Axboe814452b2009-03-04 12:53:13 +0100455 if (td->o.create_on_open)
456 flags |= O_CREAT;
Jens Axboe7abf8332006-11-23 15:01:19 +0100457
Aaron Carroll056f3452007-11-26 09:08:53 +0100458open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200459 if (td_write(td)) {
Jens Axboe17308152008-03-07 13:42:31 +0100460 if (!read_only)
461 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200462
Jens Axboeaf52b342007-03-13 10:07:47 +0100463 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100464 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100465
Jens Axboe66159822007-04-16 21:54:24 +0200466 if (is_std)
467 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100468 else
469 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100470 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200471 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100472 flags |= O_RDWR;
473 else
474 flags |= O_RDONLY;
475
Jens Axboe66159822007-04-16 21:54:24 +0200476 if (is_std)
477 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100478 else
479 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200480 }
481
482 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100483 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100484 int __e = errno;
485
Jens Axboe835d9b92009-06-09 15:23:38 +0200486 if (__e == EPERM && (flags & FIO_O_NOATIME)) {
Jens Axboe5921e802008-05-30 15:02:38 +0200487 flags &= ~FIO_O_NOATIME;
Aaron Carroll056f3452007-11-26 09:08:53 +0100488 goto open_again;
489 }
490
Jens Axboee8670ef2008-03-06 12:06:30 +0100491 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
Jens Axboee4e33252007-03-21 13:07:54 +0100492
493 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200494 }
495
Jens Axboe29c13492008-03-01 19:25:20 +0100496 if (!from_hash && f->fd != -1) {
497 if (add_file_hash(f)) {
498 int ret;
499
500 /*
501 * OK to ignore, we haven't done anything with it
502 */
503 ret = generic_close_file(td, f);
504 goto open_again;
505 }
506 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100507
Jens Axboe53cdc682006-10-18 11:50:58 +0200508 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100509}
510
Jens Axboedf9c26b2009-03-05 10:13:58 +0100511int generic_get_file_size(struct thread_data *td, struct fio_file *f)
Jens Axboe21972cd2006-11-23 12:39:16 +0100512{
Jens Axboedf9c26b2009-03-05 10:13:58 +0100513 return get_file_size(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100514}
515
Jens Axboe7bb48f82007-03-27 15:30:28 +0200516/*
517 * open/close all files, so that ->real_file_size gets set
518 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200519static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200520{
521 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100522 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200523 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200524
525 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100526 dprint(FD_FILE, "get file size for %p/%d/%p\n", f, i,
527 f->file_name);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100528
Jens Axboe99a47c62009-04-07 22:20:56 +0200529 if (td_io_get_file_size(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200530 if (td->error != ENOENT) {
531 log_err("%s\n", td->verror);
532 err = 1;
533 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200534 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200535 }
Jens Axboe409b3412007-03-28 09:57:01 +0200536
537 if (f->real_file_size == -1ULL && td->o.size)
538 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200539 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200540
541 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200542}
543
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200544struct fio_mount {
545 struct flist_head list;
546 const char *base;
547 char __base[256];
548 unsigned int key;
549};
550
551/*
552 * Get free number of bytes for each file on each unique mount.
553 */
554static unsigned long long get_fs_free_counts(struct thread_data *td)
555{
556 struct flist_head *n, *tmp;
Jens Axboe68b03162010-06-24 09:22:41 +0200557 unsigned long long ret = 0;
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200558 struct fio_mount *fm;
559 FLIST_HEAD(list);
560 struct fio_file *f;
561 unsigned int i;
562
563 for_each_file(td, f, i) {
564 struct stat sb;
565 char buf[256];
566
Jens Axboe4ccdccd2010-06-24 10:27:22 +0200567 if (f->filetype == FIO_TYPE_BD || f->filetype == FIO_TYPE_CHAR) {
568 if (f->real_file_size != -1ULL)
569 ret += f->real_file_size;
Jens Axboe68b03162010-06-24 09:22:41 +0200570 continue;
571 } else if (f->filetype != FIO_TYPE_FILE)
572 continue;
573
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200574 strcpy(buf, f->file_name);
575
576 if (stat(buf, &sb) < 0) {
577 if (errno != ENOENT)
578 break;
579 strcpy(buf, ".");
580 if (stat(buf, &sb) < 0)
581 break;
582 }
583
584 fm = NULL;
585 flist_for_each(n, &list) {
586 fm = flist_entry(n, struct fio_mount, list);
587 if (fm->key == sb.st_dev)
588 break;
589
590 fm = NULL;
591 }
592
593 if (fm)
594 continue;
595
596 fm = malloc(sizeof(*fm));
597 strcpy(fm->__base, buf);
598 fm->base = basename(fm->__base);
599 fm->key = sb.st_dev;
600 flist_add(&fm->list, &list);
601 }
602
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200603 flist_for_each_safe(n, tmp, &list) {
604 unsigned long long sz;
605
606 fm = flist_entry(n, struct fio_mount, list);
607 flist_del(&fm->list);
608
609 sz = get_fs_size(fm->base);
610 if (sz && sz != -1ULL)
611 ret += sz;
612
613 free(fm);
614 }
615
616 return ret;
617}
618
Jens Axboe7bb48f82007-03-27 15:30:28 +0200619/*
620 * Open the files and setup files sizes, creating files if necessary.
621 */
622int setup_files(struct thread_data *td)
623{
624 unsigned long long total_size, extend_size;
625 struct fio_file *f;
626 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200627 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200628
Jens Axboeee56ad52008-02-01 10:30:20 +0100629 dprint(FD_FILE, "setup files\n");
630
Jens Axboe691c8fb2008-03-07 14:26:26 +0100631 if (td->o.read_iolog_file)
632 return 0;
633
Jens Axboe53cdc682006-10-18 11:50:58 +0200634 /*
635 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200636 * opening the files and setting f->real_file_size to indicate
637 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200638 */
639 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200640 err = td->io_ops->setup(td);
641 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200642 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200643
Jens Axboef1027062006-10-20 10:14:01 +0200644 if (err)
645 return err;
646
Jens Axboe0a7eb122006-10-20 10:36:42 +0200647 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200648 * check sizes. if the files/devices do not exist and the size
649 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200650 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200651 total_size = 0;
652 for_each_file(td, f, i) {
653 if (f->real_file_size == -1ULL)
654 total_size = -1ULL;
655 else
656 total_size += f->real_file_size;
657 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200658
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200659 if (td->o.fill_device)
660 td->fill_device_size = get_fs_free_counts(td);
661
Jens Axboe7bb48f82007-03-27 15:30:28 +0200662 /*
663 * device/file sizes are zero and no size given, punt
664 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200665 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100666 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200667 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100668 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200669 return 1;
670 }
671
Jens Axboe7bb48f82007-03-27 15:30:28 +0200672 /*
673 * now file sizes are known, so we can set ->io_size. if size= is
674 * not given, ->io_size is just equal to ->real_file_size. if size
675 * is given, ->io_size is size / nr_files.
676 */
677 extend_size = total_size = 0;
678 need_extend = 0;
679 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200680 f->file_offset = td->o.start_offset;
681
Jens Axboe7bb48f82007-03-27 15:30:28 +0200682 if (!td->o.file_size_low) {
683 /*
684 * no file size range given, file size is equal to
685 * total size divided by number of files. if that is
686 * zero, set it to the real file size.
687 */
688 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100689 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100690 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200691 } else if (f->real_file_size < td->o.file_size_low ||
692 f->real_file_size > td->o.file_size_high) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100693 if (f->file_offset > td->o.file_size_low)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200694 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200695 /*
696 * file size given. if it's fixed, use that. if it's a
697 * range, generate a random size in-between.
698 */
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100699 if (td->o.file_size_low == td->o.file_size_high) {
700 f->io_size = td->o.file_size_low
701 - f->file_offset;
702 } else {
703 f->io_size = get_rand_file_size(td)
704 - f->file_offset;
705 }
Jens Axboe65bdb102008-01-24 13:13:12 +0100706 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200707 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200708
709 if (f->io_size == -1ULL)
710 total_size = -1ULL;
711 else
712 total_size += f->io_size;
713
714 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200715 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200716 !(td->io_ops->flags & FIO_DISKLESSIO)) {
Jens Axboe814452b2009-03-04 12:53:13 +0100717 if (!td->o.create_on_open) {
718 need_extend++;
719 extend_size += (f->io_size + f->file_offset);
720 } else
721 f->real_file_size = f->io_size + f->file_offset;
Jens Axboed6aed792009-06-03 08:41:15 +0200722 fio_file_set_extend(f);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100723 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200724 }
725
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200726 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200727 td->o.size = total_size;
728
729 /*
730 * See if we need to extend some files
731 */
732 if (need_extend) {
733 temp_stall_ts = 1;
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200734 if (!terse_output)
735 log_info("%s: Laying out IO file(s) (%u file(s) /"
Jens Axboeb22989b2009-07-17 22:29:23 +0200736 " %LuMB)\n", td->o.name, need_extend,
Shaozhi Shawn Yea7ba8c52008-09-10 09:04:18 +0200737 extend_size >> 20);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200738
739 for_each_file(td, f, i) {
Jens Axboe5e0074c2009-06-02 21:40:09 +0200740 unsigned long long old_len = -1ULL, extend_len = -1ULL;
Jens Axboe3baddf22008-04-04 11:10:30 +0200741
Jens Axboed6aed792009-06-03 08:41:15 +0200742 if (!fio_file_extend(f))
Jens Axboe7bb48f82007-03-27 15:30:28 +0200743 continue;
744
Jens Axboe409b3412007-03-28 09:57:01 +0200745 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboed6aed792009-06-03 08:41:15 +0200746 fio_file_clear_extend(f);
Jens Axboe5e0074c2009-06-02 21:40:09 +0200747 if (!td->o.fill_device) {
748 old_len = f->real_file_size;
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200749 extend_len = f->io_size + f->file_offset -
750 old_len;
Jens Axboe5e0074c2009-06-02 21:40:09 +0200751 }
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200752 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200753 err = extend_file(td, f);
754 if (err)
755 break;
Jens Axboe5e0074c2009-06-02 21:40:09 +0200756
Jens Axboe3baddf22008-04-04 11:10:30 +0200757 err = __file_invalidate_cache(td, f, old_len,
758 extend_len);
759 close(f->fd);
760 f->fd = -1;
761 if (err)
762 break;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200763 }
764 temp_stall_ts = 0;
765 }
766
767 if (err)
768 return err;
769
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100770 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200771 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200772
Jens Axboeea966f82007-09-03 10:09:37 +0200773 /*
774 * iolog already set the total io size, if we read back
775 * stored entries.
776 */
777 if (!td->o.read_iolog_file)
778 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200779 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200780err_offset:
781 log_err("%s: you need to specify valid offset=\n", td->o.name);
782 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200783}
784
Zhang, Yanminafad68f2009-05-20 11:30:55 +0200785int pre_read_files(struct thread_data *td)
786{
787 struct fio_file *f;
788 unsigned int i;
789
790 dprint(FD_FILE, "pre_read files\n");
791
792 for_each_file(td, f, i) {
793 pre_read_file(td, f);
794 }
795
796 return 1;
797}
798
Jens Axboe68727072007-03-15 20:49:25 +0100799int init_random_map(struct thread_data *td)
800{
Jens Axboe509eab12007-12-14 12:42:53 +0100801 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100802 struct fio_file *f;
803 unsigned int i;
804
Jens Axboede8dd112008-03-01 15:34:44 +0100805 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100806 return 0;
807
808 for_each_file(td, f, i) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100809 blocks = (f->real_file_size + td->o.rw_min_bs - 1) /
810 (unsigned long long) td->o.rw_min_bs;
811 num_maps = (blocks + BLOCKS_PER_MAP - 1) /
812 (unsigned long long) BLOCKS_PER_MAP;
Jens Axboede605662008-05-31 00:21:12 +0200813 f->file_map = smalloc(num_maps * sizeof(int));
Jens Axboe303032a2008-03-26 10:11:10 +0100814 if (f->file_map) {
815 f->num_maps = num_maps;
816 continue;
Jens Axboe68727072007-03-15 20:49:25 +0100817 }
Jens Axboe2b386d22008-03-26 10:32:57 +0100818 if (!td->o.softrandommap) {
Jens Axboe68727072007-03-15 20:49:25 +0100819 log_err("fio: failed allocating random map. If running"
820 " a large number of jobs, try the 'norandommap'"
Jens Axboe2b386d22008-03-26 10:32:57 +0100821 " option or set 'softrandommap'. Or give"
822 " a larger --alloc-size to fio.\n");
Jens Axboe68727072007-03-15 20:49:25 +0100823 return 1;
824 }
Jens Axboe303032a2008-03-26 10:11:10 +0100825
826 log_info("fio: file %s failed allocating random map. Running "
827 "job without.\n", f->file_name);
828 f->num_maps = 0;
Jens Axboe68727072007-03-15 20:49:25 +0100829 }
830
831 return 0;
832}
833
Jens Axboe53cdc682006-10-18 11:50:58 +0200834void close_files(struct thread_data *td)
835{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200836 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100837 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200838
Jens Axboe2be3eec2009-06-10 09:05:13 +0200839 for_each_file(td, f, i) {
840 if (fio_file_open(f))
841 td_io_close_file(td, f);
842 }
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100843}
844
845void close_and_free_files(struct thread_data *td)
846{
847 struct fio_file *f;
848 unsigned int i;
849
Jens Axboeee56ad52008-02-01 10:30:20 +0100850 dprint(FD_FILE, "close files\n");
851
Jens Axboe0ab8db82006-10-18 17:16:23 +0200852 for_each_file(td, f, i) {
Jens Axboeffdfabd2008-03-26 09:18:14 +0100853 if (td->o.unlink && f->filetype == FIO_TYPE_FILE) {
854 dprint(FD_FILE, "free unlink %s\n", f->file_name);
Jens Axboe132ad462006-11-23 12:23:12 +0100855 unlink(f->file_name);
Jens Axboeffdfabd2008-03-26 09:18:14 +0100856 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100857
Jens Axboe22a57ba2009-06-09 14:34:35 +0200858 if (fio_file_open(f))
859 td_io_close_file(td, f);
860
Shaozhi Shawn Yeb9fbcf22008-09-10 09:05:17 +0200861 remove_file_hash(f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100862
Jens Axboef17c4392008-03-01 18:40:46 +0100863 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100864 f->file_name = NULL;
Jens Axboe61eb3132010-03-31 20:05:59 +0200865 sfree(f->file_map);
866 f->file_map = NULL;
Jens Axboe78d99e62008-03-01 18:41:50 +0100867 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200868 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200869
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100870 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100871 free(td->files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100872 td->files_index = 0;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200873 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100874 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200875}
Jens Axboeaf52b342007-03-13 10:07:47 +0100876
Jens Axboee3bab462007-03-13 11:22:09 +0100877static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100878{
879 struct stat sb;
880
Jens Axboe66159822007-04-16 21:54:24 +0200881 if (!strcmp(f->file_name, "-"))
882 f->filetype = FIO_TYPE_PIPE;
883 else
884 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100885
Jens Axboeb30d3952010-02-06 23:36:26 +0100886 if (!stat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100887 if (S_ISBLK(sb.st_mode))
888 f->filetype = FIO_TYPE_BD;
889 else if (S_ISCHR(sb.st_mode))
890 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200891 else if (S_ISFIFO(sb.st_mode))
892 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100893 }
894}
895
Jens Axboef29b25a2007-07-23 08:56:43 +0200896int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100897{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100898 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100899 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100900 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100901 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100902
Jens Axboeee56ad52008-02-01 10:30:20 +0100903 dprint(FD_FILE, "add file %s\n", fname);
904
Jens Axboef17c4392008-03-01 18:40:46 +0100905 f = smalloc(sizeof(*f));
Jens Axboec48c0be2008-07-31 19:55:02 +0200906 if (!f) {
907 log_err("fio: smalloc OOM\n");
908 assert(0);
909 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200910
Jens Axboeaf52b342007-03-13 10:07:47 +0100911 f->fd = -1;
Jens Axboe38dad622010-07-20 14:46:00 -0600912 fio_file_reset(f);
Jens Axboebd0ee742007-03-23 14:26:23 +0100913
Jens Axboefc99bc02009-03-04 15:27:42 +0100914 if (td->files_size <= td->files_index) {
Carl Henrik Lunde4b341fc2009-04-20 08:41:37 +0200915 int new_size = td->o.nr_files + 1;
Jens Axboe126d65c2008-03-01 18:04:31 +0100916
Jens Axboefc99bc02009-03-04 15:27:42 +0100917 dprint(FD_FILE, "resize file array to %d files\n", new_size);
918
919 td->files = realloc(td->files, new_size * sizeof(f));
Jens Axboefc99bc02009-03-04 15:27:42 +0100920 td->files_size = new_size;
921 }
Jens Axboe8bb76792009-03-04 15:37:52 +0100922 td->files[cur_files] = f;
Jens Axboe126d65c2008-03-01 18:04:31 +0100923
Jens Axboe07eb79d2007-04-12 13:02:38 +0200924 /*
925 * init function, io engine may not be loaded yet
926 */
927 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
928 f->real_file_size = -1ULL;
929
Jens Axboebd0ee742007-03-23 14:26:23 +0100930 if (td->o.directory)
931 len = sprintf(file_name, "%s/", td->o.directory);
932
933 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100934 f->file_name = smalloc_strdup(file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +0200935 if (!f->file_name) {
936 log_err("fio: smalloc OOM\n");
937 assert(0);
938 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200939
Jens Axboee3bab462007-03-13 11:22:09 +0100940 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100941
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100942 switch (td->o.file_lock_mode) {
943 case FILE_LOCK_NONE:
944 break;
945 case FILE_LOCK_READWRITE:
946 f->lock = fio_mutex_rw_init();
947 break;
948 case FILE_LOCK_EXCLUSIVE:
949 f->lock = fio_mutex_init(1);
950 break;
951 default:
952 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
953 assert(0);
954 }
Jens Axboe29c13492008-03-01 19:25:20 +0100955
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100956 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100957 if (f->filetype == FIO_TYPE_FILE)
958 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200959
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100960 dprint(FD_FILE, "file %p \"%s\" added at %d\n", f, f->file_name,
961 cur_files);
Jens Axboe9efef3c2008-03-06 10:26:25 +0100962
Jens Axboef29b25a2007-07-23 08:56:43 +0200963 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100964}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100965
Jens Axboe49ffb4a2010-08-24 15:01:37 +0200966int add_file_exclusive(struct thread_data *td, const char *fname)
967{
968 struct fio_file *f;
969 unsigned int i;
970
971 for_each_file(td, f, i) {
972 if (!strcmp(f->file_name, fname))
973 return i;
974 }
975
976 return add_file(td, fname);
977}
978
Jens Axboe0ad920e2007-03-13 11:06:45 +0100979void get_file(struct fio_file *f)
980{
Jens Axboe8172fe92008-02-01 21:51:02 +0100981 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboed6aed792009-06-03 08:41:15 +0200982 assert(fio_file_open(f));
Jens Axboe0ad920e2007-03-13 11:06:45 +0100983 f->references++;
984}
985
Jens Axboe6977bcd2008-03-01 15:55:36 +0100986int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100987{
Jens Axboe98e1ac42008-03-06 11:56:48 +0100988 int f_ret = 0, ret = 0;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100989
Jens Axboe8172fe92008-02-01 21:51:02 +0100990 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100991
Jens Axboe22a57ba2009-06-09 14:34:35 +0200992 if (!fio_file_open(f)) {
993 assert(f->fd == -1);
Jens Axboe6977bcd2008-03-01 15:55:36 +0100994 return 0;
Jens Axboe22a57ba2009-06-09 14:34:35 +0200995 }
Jens Axboe0ad920e2007-03-13 11:06:45 +0100996
997 assert(f->references);
998 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100999 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +01001000
Jens Axboed424d4d2007-04-17 09:05:10 +02001001 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboe98e1ac42008-03-06 11:56:48 +01001002 f_ret = fsync(f->fd);
Jens Axboeebb14152007-03-13 14:42:15 +01001003
Jens Axboe0ad920e2007-03-13 11:06:45 +01001004 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +01001005 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +02001006
Jens Axboe98e1ac42008-03-06 11:56:48 +01001007 if (!ret)
Jens Axboea5fb4612008-05-28 10:54:01 +02001008 ret = f_ret;
Jens Axboe98e1ac42008-03-06 11:56:48 +01001009
Jens Axboe0ad920e2007-03-13 11:06:45 +01001010 td->nr_open_files--;
Jens Axboed6aed792009-06-03 08:41:15 +02001011 fio_file_clear_open(f);
Jens Axboe22a57ba2009-06-09 14:34:35 +02001012 assert(f->fd == -1);
Jens Axboe6977bcd2008-03-01 15:55:36 +01001013 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +01001014}
Jens Axboebbf6b542007-03-13 15:28:55 +01001015
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001016void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001017{
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001018 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1019 return;
Jens Axboe29c13492008-03-01 19:25:20 +01001020
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001021 if (f->lock_owner == td && f->lock_batch--)
1022 return;
1023
1024 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
1025 if (ddir == DDIR_READ)
1026 fio_mutex_down_read(f->lock);
1027 else
1028 fio_mutex_down_write(f->lock);
1029 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
1030 fio_mutex_down(f->lock);
1031
1032 f->lock_owner = td;
1033 f->lock_batch = td->o.lockfile_batch;
1034 f->lock_ddir = ddir;
1035}
1036
1037void unlock_file(struct thread_data *td, struct fio_file *f)
1038{
1039 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
1040 return;
1041 if (f->lock_batch)
1042 return;
1043
1044 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
1045 const int is_read = f->lock_ddir == DDIR_READ;
1046 int val = fio_mutex_getval(f->lock);
1047
1048 if ((is_read && val == 1) || (!is_read && val == -1))
1049 f->lock_owner = NULL;
1050
1051 if (is_read)
1052 fio_mutex_up_read(f->lock);
1053 else
1054 fio_mutex_up_write(f->lock);
1055 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
1056 int val = fio_mutex_getval(f->lock);
1057
1058 if (val == 0)
1059 f->lock_owner = NULL;
1060
1061 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +01001062 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001063}
1064
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001065void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001066{
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001067 if (f->lock_owner != td)
1068 return;
Jens Axboe29c13492008-03-01 19:25:20 +01001069
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001070 f->lock_batch = 0;
1071 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +01001072}
1073
Jens Axboebbf6b542007-03-13 15:28:55 +01001074static int recurse_dir(struct thread_data *td, const char *dirname)
1075{
1076 struct dirent *dir;
1077 int ret = 0;
1078 DIR *D;
1079
1080 D = opendir(dirname);
1081 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +02001082 char buf[FIO_VERROR_SIZE];
1083
1084 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
1085 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +01001086 return 1;
1087 }
1088
1089 while ((dir = readdir(D)) != NULL) {
1090 char full_path[PATH_MAX];
1091 struct stat sb;
1092
Jens Axboee85b2b82007-03-14 09:39:06 +01001093 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
1094 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +01001095
Jens Axboebbf6b542007-03-13 15:28:55 +01001096 sprintf(full_path, "%s/%s", dirname, dir->d_name);
1097
1098 if (lstat(full_path, &sb) == -1) {
1099 if (errno != ENOENT) {
1100 td_verror(td, errno, "stat");
1101 return 1;
1102 }
1103 }
1104
1105 if (S_ISREG(sb.st_mode)) {
1106 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001107 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +01001108 continue;
1109 }
Jens Axboe0ddb2702007-03-27 19:43:53 +02001110 if (!S_ISDIR(sb.st_mode))
1111 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +01001112
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001113 ret = recurse_dir(td, full_path);
1114 if (ret)
Jens Axboebbf6b542007-03-13 15:28:55 +01001115 break;
1116 }
1117
1118 closedir(D);
1119 return ret;
1120}
1121
1122int add_dir_files(struct thread_data *td, const char *path)
1123{
Jens Axboe0ddb2702007-03-27 19:43:53 +02001124 int ret = recurse_dir(td, path);
1125
1126 if (!ret)
1127 log_info("fio: opendir added %d files\n", td->o.nr_files);
1128
1129 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +01001130}
Jens Axboecade3ef2007-03-23 15:29:45 +01001131
1132void dup_files(struct thread_data *td, struct thread_data *org)
1133{
1134 struct fio_file *f;
1135 unsigned int i;
Jens Axboe9efef3c2008-03-06 10:26:25 +01001136
1137 dprint(FD_FILE, "dup files: %d\n", org->files_index);
Jens Axboecade3ef2007-03-23 15:29:45 +01001138
1139 if (!org->files)
1140 return;
1141
Jens Axboe9efef3c2008-03-06 10:26:25 +01001142 td->files = malloc(org->files_index * sizeof(f));
Jens Axboecade3ef2007-03-23 15:29:45 +01001143
Jens Axboe9efef3c2008-03-06 10:26:25 +01001144 for_each_file(org, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +01001145 struct fio_file *__f;
1146
Jens Axboef17c4392008-03-01 18:40:46 +01001147 __f = smalloc(sizeof(*__f));
Jens Axboec48c0be2008-07-31 19:55:02 +02001148 if (!__f) {
1149 log_err("fio: smalloc OOM\n");
1150 assert(0);
1151 }
Jens Axboe22a57ba2009-06-09 14:34:35 +02001152 __f->fd = -1;
Jens Axboe38dad622010-07-20 14:46:00 -06001153 fio_file_reset(__f);
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001154
Aaron Carrollbc3456f2008-06-25 09:20:37 +02001155 if (f->file_name) {
Jens Axboef17c4392008-03-01 18:40:46 +01001156 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboec48c0be2008-07-31 19:55:02 +02001157 if (!__f->file_name) {
1158 log_err("fio: smalloc OOM\n");
1159 assert(0);
1160 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001161
Aaron Carrollbc3456f2008-06-25 09:20:37 +02001162 __f->filetype = f->filetype;
1163 }
Jens Axboeb0fe4212008-03-01 18:22:27 +01001164
1165 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +01001166 }
1167}
Jens Axboef29b25a2007-07-23 08:56:43 +02001168
1169/*
1170 * Returns the index that matches the filename, or -1 if not there
1171 */
1172int get_fileno(struct thread_data *td, const char *fname)
1173{
1174 struct fio_file *f;
1175 unsigned int i;
1176
1177 for_each_file(td, f, i)
1178 if (!strcmp(f->file_name, fname))
1179 return i;
1180
1181 return -1;
1182}
1183
1184/*
1185 * For log usage, where we add/open/close files automatically
1186 */
1187void free_release_files(struct thread_data *td)
1188{
1189 close_files(td);
1190 td->files_index = 0;
1191 td->nr_normal_files = 0;
1192}