blob: 4d2017dbed798d045f3c2727debc64ef5d4238eb [file] [log] [blame]
Jens Axboe53cdc682006-10-18 11:50:58 +02001#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <assert.h>
Jens Axboebbf6b542007-03-13 15:28:55 +01005#include <dirent.h>
Jens Axboe53cdc682006-10-18 11:50:58 +02006#include <sys/stat.h>
7#include <sys/mman.h>
Jens Axboebbf6b542007-03-13 15:28:55 +01008#include <sys/types.h>
Jens Axboe53cdc682006-10-18 11:50:58 +02009
10#include "fio.h"
Jens Axboef17c4392008-03-01 18:40:46 +010011#include "smalloc.h"
Jens Axboe4906e0b2008-03-01 18:59:51 +010012#include "filehash.h"
Jens Axboe53cdc682006-10-18 11:50:58 +020013
Jens Axboe7172cfe2007-07-23 14:36:00 +020014static int root_warn;
15
Jens Axboe7bb48f82007-03-27 15:30:28 +020016static int extend_file(struct thread_data *td, struct fio_file *f)
Jens Axboe25205e92006-10-19 20:50:14 +020017{
Jens Axboeea443652007-03-29 14:52:13 +020018 int r, new_layout = 0, unlink_file = 0, flags;
Jens Axboe25205e92006-10-19 20:50:14 +020019 unsigned long long left;
20 unsigned int bs;
21 char *b;
Jens Axboeb2a15192006-10-18 14:10:42 +020022
Jens Axboe4241ea82007-09-12 08:18:36 +020023 if (read_only) {
24 log_err("fio: refusing extend of file due to read-only\n");
25 return 0;
26 }
27
Jens Axboe507a7022007-03-27 15:52:46 +020028 /*
29 * check if we need to lay the file out complete again. fio
30 * does that for operations involving reads, or for writes
31 * where overwrite is set
32 */
33 if (td_read(td) || (td_write(td) && td->o.overwrite))
34 new_layout = 1;
Jens Axboeea443652007-03-29 14:52:13 +020035 if (td_write(td) && !td->o.overwrite)
36 unlink_file = 1;
Jens Axboe507a7022007-03-27 15:52:46 +020037
Jens Axboe6ae1f572008-02-21 10:20:00 +010038 if (unlink_file || new_layout) {
Zhang, Yanmin982016d2008-02-26 15:35:52 +010039 if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
Jens Axboe7bb48f82007-03-27 15:30:28 +020040 td_verror(td, errno, "unlink");
41 return 1;
42 }
43 }
44
Jens Axboe507a7022007-03-27 15:52:46 +020045 flags = O_WRONLY | O_CREAT;
46 if (new_layout)
47 flags |= O_TRUNC;
48
Jens Axboeee56ad52008-02-01 10:30:20 +010049 dprint(FD_FILE, "open file %s, flags %x\n", f->file_name, flags);
Jens Axboe507a7022007-03-27 15:52:46 +020050 f->fd = open(f->file_name, flags, 0644);
Jens Axboe53cdc682006-10-18 11:50:58 +020051 if (f->fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010052 td_verror(td, errno, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +020053 return 1;
54 }
55
Shawn Lewisfc74ac12008-01-11 09:45:11 +010056 if (!new_layout)
57 goto done;
58
Jens Axboeee56ad52008-02-01 10:30:20 +010059 dprint(FD_FILE, "truncate file %s, size %llu\n", f->file_name,
60 f->real_file_size);
Jens Axboe7bb48f82007-03-27 15:30:28 +020061 if (ftruncate(f->fd, f->real_file_size) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +010062 td_verror(td, errno, "ftruncate");
Jens Axboe53cdc682006-10-18 11:50:58 +020063 goto err;
64 }
65
Jens Axboeee56ad52008-02-01 10:30:20 +010066 dprint(FD_FILE, "fallocate file %s, size %llu\n", f->file_name,
67 f->real_file_size);
Jens Axboe7bb48f82007-03-27 15:30:28 +020068 if (posix_fallocate(f->fd, 0, f->real_file_size) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010069 td_verror(td, errno, "posix_fallocate");
Jens Axboe40f82982006-10-25 11:21:05 +020070 goto err;
71 }
72
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010073 b = malloc(td->o.max_bs[DDIR_WRITE]);
74 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020075
Jens Axboe7bb48f82007-03-27 15:30:28 +020076 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +020077 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010078 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020079 if (bs > left)
80 bs = left;
81
82 r = write(f->fd, b, bs);
83
84 if (r == (int) bs) {
85 left -= bs;
86 continue;
87 } else {
88 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010089 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020090 else
Jens Axboee1161c32007-02-22 19:36:48 +010091 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020092
93 break;
94 }
95 }
96
97 if (td->terminate)
98 unlink(f->file_name);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010099 else if (td->o.create_fsync)
Jens Axboe53cdc682006-10-18 11:50:58 +0200100 fsync(f->fd);
101
102 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +0200103done:
Jens Axboe53cdc682006-10-18 11:50:58 +0200104 close(f->fd);
105 f->fd = -1;
106 return 0;
107err:
108 close(f->fd);
109 f->fd = -1;
110 return 1;
111}
112
Jens Axboe7bb48f82007-03-27 15:30:28 +0200113static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100114{
Jens Axboe9c60ce62007-03-15 09:14:47 +0100115 unsigned long long ret;
116 long r;
117
Jens Axboe9c60ce62007-03-15 09:14:47 +0100118 r = os_random_long(&td->file_size_state);
ljzhang,Yaxin Hu,Jianchao Tangd11a5312007-07-27 15:54:10 +0200119 ret = td->o.file_size_low + (unsigned long long) ((double) (td->o.file_size_high - td->o.file_size_low) * (r / (RAND_MAX + 1.0)));
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100120 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100121 return ret;
122}
123
Jens Axboe53cdc682006-10-18 11:50:58 +0200124static int file_size(struct thread_data *td, struct fio_file *f)
125{
126 struct stat st;
127
Jens Axboe7bb48f82007-03-27 15:30:28 +0200128 if (fstat(f->fd, &st) == -1) {
129 td_verror(td, errno, "fstat");
130 return 1;
131 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200132
Jens Axboe7bb48f82007-03-27 15:30:28 +0200133 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200134 return 0;
135}
136
137static int bdev_size(struct thread_data *td, struct fio_file *f)
138{
139 unsigned long long bytes;
140 int r;
141
142 r = blockdev_size(f->fd, &bytes);
143 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100144 td_verror(td, r, "blockdev_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200145 return 1;
146 }
147
148 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200149 return 0;
150}
151
152static int get_file_size(struct thread_data *td, struct fio_file *f)
153{
154 int ret = 0;
155
Jens Axboe409b3412007-03-28 09:57:01 +0200156 if (f->flags & FIO_SIZE_KNOWN)
157 return 0;
158
Jens Axboe7bb48f82007-03-27 15:30:28 +0200159 if (f->filetype == FIO_TYPE_FILE)
160 ret = file_size(td, f);
161 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200162 ret = bdev_size(td, f);
163 else
164 f->real_file_size = -1;
165
166 if (ret)
167 return ret;
168
169 if (f->file_offset > f->real_file_size) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100170 log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name, f->file_offset, f->real_file_size);
Jens Axboe53cdc682006-10-18 11:50:58 +0200171 return 1;
172 }
173
Jens Axboe409b3412007-03-28 09:57:01 +0200174 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200175 return 0;
176}
177
Jens Axboee5b401d2006-10-18 16:03:40 +0200178int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
179{
180 int ret = 0;
181
Jens Axboeee56ad52008-02-01 10:30:20 +0100182 dprint(FD_IO, "invalidate cache (%d)\n", td->o.odirect);
183
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100184 if (td->o.odirect)
Jens Axboeb5af8292007-03-08 12:43:13 +0100185 return 0;
186
Jens Axboee5b401d2006-10-18 16:03:40 +0200187 /*
188 * FIXME: add blockdev flushing too
189 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100190 if (f->mmap)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200191 ret = madvise(f->mmap, f->io_size, MADV_DONTNEED);
Jens Axboe467d1b62007-03-15 14:11:10 +0100192 else if (f->filetype == FIO_TYPE_FILE)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200193 ret = fadvise(f->fd, f->file_offset, f->io_size, POSIX_FADV_DONTNEED);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200194 else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100195 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200196 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200197 if (!root_warn) {
198 log_err("fio: only root may flush block devices. Cache flush bypassed!\n");
199 root_warn = 1;
200 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200201 ret = 0;
202 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200203 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200204 ret = 0;
205
206 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100207 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200208 return 1;
209 }
210
Jens Axboead2da602007-02-26 12:33:27 +0100211 return ret;
Jens Axboee5b401d2006-10-18 16:03:40 +0200212}
213
Jens Axboe6977bcd2008-03-01 15:55:36 +0100214int generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200215{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100216 int ret = 0;
217
Jens Axboeee56ad52008-02-01 10:30:20 +0100218 dprint(FD_FILE, "fd close %s\n", f->file_name);
Jens Axboe4906e0b2008-03-01 18:59:51 +0100219
220 remove_file_hash(f);
221
Jens Axboe6977bcd2008-03-01 15:55:36 +0100222 if (close(f->fd) < 0)
223 ret = errno;
224
Jens Axboeb5af8292007-03-08 12:43:13 +0100225 f->fd = -1;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100226 return ret;
Jens Axboe53cdc682006-10-18 11:50:58 +0200227}
228
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100229static int file_lookup_open(struct fio_file *f, int flags)
Jens Axboe53cdc682006-10-18 11:50:58 +0200230{
Jens Axboe29c13492008-03-01 19:25:20 +0100231 struct fio_file *__f;
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100232 int from_hash;
233
234 __f = lookup_file_hash(f->file_name);
235 if (__f) {
236 /*
237 * racy, need the __f->lock locked
238 */
239 f->lock = __f->lock;
240 f->lock_owner = __f->lock_owner;
241 f->lock_batch = __f->lock_batch;
242 f->lock_ddir = __f->lock_ddir;
243 f->fd = dup(__f->fd);
244 f->references++;
245 from_hash = 1;
246 } else {
247 f->fd = open(f->file_name, flags, 0600);
248 from_hash = 0;
249 }
250
251 return from_hash;
252}
253
254int generic_open_file(struct thread_data *td, struct fio_file *f)
255{
Jens Axboe66159822007-04-16 21:54:24 +0200256 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200257 int flags = 0;
Jens Axboe29c13492008-03-01 19:25:20 +0100258 int from_hash = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200259
Jens Axboeee56ad52008-02-01 10:30:20 +0100260 dprint(FD_FILE, "fd open %s\n", f->file_name);
261
Jens Axboe66159822007-04-16 21:54:24 +0200262 if (!strcmp(f->file_name, "-")) {
263 if (td_rw(td)) {
264 log_err("fio: can't read/write to stdin/out\n");
265 return 1;
266 }
267 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200268
269 /*
270 * move output logging to stderr, if we are writing to stdout
271 */
272 if (td_write(td))
273 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200274 }
275
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100276 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100277 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100278 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100279 flags |= O_SYNC;
Jens Axboead923962007-10-11 21:41:41 +0200280 if (f->filetype != FIO_TYPE_FILE)
281 flags |= O_NOATIME;
Jens Axboe7abf8332006-11-23 15:01:19 +0100282
Aaron Carroll056f3452007-11-26 09:08:53 +0100283open_again:
Jens Axboe660a1cb2007-04-17 15:37:47 +0200284 if (td_write(td)) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200285 assert(!read_only);
286
Jens Axboe2fd233b2007-03-02 08:44:25 +0100287 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200288
Jens Axboeaf52b342007-03-13 10:07:47 +0100289 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100290 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100291
Jens Axboe66159822007-04-16 21:54:24 +0200292 if (is_std)
293 f->fd = dup(STDOUT_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100294 else
295 from_hash = file_lookup_open(f, flags);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100296 } else {
Jens Axboe4241ea82007-09-12 08:18:36 +0200297 if (f->filetype == FIO_TYPE_CHAR && !read_only)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100298 flags |= O_RDWR;
299 else
300 flags |= O_RDONLY;
301
Jens Axboe66159822007-04-16 21:54:24 +0200302 if (is_std)
303 f->fd = dup(STDIN_FILENO);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100304 else
305 from_hash = file_lookup_open(f, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200306 }
307
308 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100309 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100310 int __e = errno;
311
Aaron Carroll056f3452007-11-26 09:08:53 +0100312 if (errno == EPERM && (flags & O_NOATIME)) {
313 flags &= ~O_NOATIME;
314 goto open_again;
315 }
316
Jens Axboee4e33252007-03-21 13:07:54 +0100317 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
318
319 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200320 }
321
Jens Axboeb5af8292007-03-08 12:43:13 +0100322 if (get_file_size(td, f))
323 goto err;
324
Jens Axboe29c13492008-03-01 19:25:20 +0100325 if (!from_hash && f->fd != -1) {
326 if (add_file_hash(f)) {
327 int ret;
328
329 /*
330 * OK to ignore, we haven't done anything with it
331 */
332 ret = generic_close_file(td, f);
333 goto open_again;
334 }
335 }
Jens Axboe4906e0b2008-03-01 18:59:51 +0100336
Jens Axboe53cdc682006-10-18 11:50:58 +0200337 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100338err:
339 close(f->fd);
340 return 1;
341}
342
Jens Axboe21972cd2006-11-23 12:39:16 +0100343int open_files(struct thread_data *td)
344{
345 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100346 unsigned int i;
347 int err = 0;
Jens Axboe21972cd2006-11-23 12:39:16 +0100348
Jens Axboeee56ad52008-02-01 10:30:20 +0100349 dprint(FD_FILE, "open files\n");
350
Jens Axboe21972cd2006-11-23 12:39:16 +0100351 for_each_file(td, f, i) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100352 err = td_io_open_file(td, f);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200353 if (err) {
354 if (td->error == EMFILE) {
355 log_err("fio: limited open files to: %d\n", td->nr_open_files);
356 td->o.open_files = td->nr_open_files;
357 err = 0;
358 clear_error(td);
359 }
Jens Axboe21972cd2006-11-23 12:39:16 +0100360 break;
Jens Axboe9bf27b42007-03-27 19:49:31 +0200361 }
Jens Axboeb5af8292007-03-08 12:43:13 +0100362
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100363 if (td->o.open_files == td->nr_open_files)
Jens Axboeb5af8292007-03-08 12:43:13 +0100364 break;
Jens Axboe21972cd2006-11-23 12:39:16 +0100365 }
366
Jens Axboe7abf8332006-11-23 15:01:19 +0100367 if (!err)
368 return 0;
369
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100370 for_each_file(td, f, i)
Jens Axboeb5af8292007-03-08 12:43:13 +0100371 td_io_close_file(td, f);
Jens Axboe7abf8332006-11-23 15:01:19 +0100372
Jens Axboe21972cd2006-11-23 12:39:16 +0100373 return err;
374}
375
Jens Axboe7bb48f82007-03-27 15:30:28 +0200376/*
377 * open/close all files, so that ->real_file_size gets set
378 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200379static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200380{
381 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100382 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200383 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200384
385 for_each_file(td, f, i) {
Jens Axboebab3fd52007-04-02 10:34:18 +0200386 if (td->io_ops->open_file(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200387 if (td->error != ENOENT) {
388 log_err("%s\n", td->verror);
389 err = 1;
390 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200391 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200392 } else {
393 if (td->io_ops->close_file)
394 td->io_ops->close_file(td, f);
395 }
Jens Axboe409b3412007-03-28 09:57:01 +0200396
397 if (f->real_file_size == -1ULL && td->o.size)
398 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200399 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200400
401 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200402}
403
404/*
405 * Open the files and setup files sizes, creating files if necessary.
406 */
407int setup_files(struct thread_data *td)
408{
409 unsigned long long total_size, extend_size;
410 struct fio_file *f;
411 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200412 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200413
Jens Axboeee56ad52008-02-01 10:30:20 +0100414 dprint(FD_FILE, "setup files\n");
415
Jens Axboe53cdc682006-10-18 11:50:58 +0200416 /*
417 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200418 * opening the files and setting f->real_file_size to indicate
419 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200420 */
421 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200422 err = td->io_ops->setup(td);
423 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200424 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200425
Jens Axboef1027062006-10-20 10:14:01 +0200426 if (err)
427 return err;
428
Jens Axboe0a7eb122006-10-20 10:36:42 +0200429 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200430 * check sizes. if the files/devices do not exist and the size
431 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200432 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200433 total_size = 0;
434 for_each_file(td, f, i) {
435 if (f->real_file_size == -1ULL)
436 total_size = -1ULL;
437 else
438 total_size += f->real_file_size;
439 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200440
Jens Axboe7bb48f82007-03-27 15:30:28 +0200441 /*
442 * device/file sizes are zero and no size given, punt
443 */
Jens Axboe1f809d12007-10-25 18:34:02 +0200444 if ((!total_size || total_size == -1ULL) && !td->o.size &&
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100445 !(td->io_ops->flags & FIO_NOIO) && !td->o.fill_device) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200446 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100447 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200448 return 1;
449 }
450
Jens Axboe7bb48f82007-03-27 15:30:28 +0200451 /*
452 * now file sizes are known, so we can set ->io_size. if size= is
453 * not given, ->io_size is just equal to ->real_file_size. if size
454 * is given, ->io_size is size / nr_files.
455 */
456 extend_size = total_size = 0;
457 need_extend = 0;
458 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200459 f->file_offset = td->o.start_offset;
460
Jens Axboe7bb48f82007-03-27 15:30:28 +0200461 if (!td->o.file_size_low) {
462 /*
463 * no file size range given, file size is equal to
464 * total size divided by number of files. if that is
465 * zero, set it to the real file size.
466 */
467 f->io_size = td->o.size / td->o.nr_files;
Jens Axboe65bdb102008-01-24 13:13:12 +0100468 if (!f->io_size)
Jens Axboe273f8c92008-01-25 14:02:15 +0100469 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200470 } else if (f->real_file_size < td->o.file_size_low ||
471 f->real_file_size > td->o.file_size_high) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200472 if (f->file_offset > td->o.file_size_low)
473 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200474 /*
475 * file size given. if it's fixed, use that. if it's a
476 * range, generate a random size in-between.
477 */
478 if (td->o.file_size_low == td->o.file_size_high)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200479 f->io_size = td->o.file_size_low - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200480 else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200481 f->io_size = get_rand_file_size(td) - f->file_offset;
Jens Axboe65bdb102008-01-24 13:13:12 +0100482 } else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200483 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200484
485 if (f->io_size == -1ULL)
486 total_size = -1ULL;
487 else
488 total_size += f->io_size;
489
490 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200491 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200492 !(td->io_ops->flags & FIO_DISKLESSIO)) {
493 need_extend++;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200494 extend_size += (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200495 f->flags |= FIO_FILE_EXTEND;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200496 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200497 }
498
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200499 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200500 td->o.size = total_size;
501
502 /*
503 * See if we need to extend some files
504 */
505 if (need_extend) {
506 temp_stall_ts = 1;
Jens Axboef627d8a2007-08-24 10:24:09 +0200507 log_info("%s: Laying out IO file(s) (%u file(s) / %LuMiB)\n",
Jens Axboe7bb48f82007-03-27 15:30:28 +0200508 td->o.name, need_extend, extend_size >> 20);
509
510 for_each_file(td, f, i) {
511 if (!(f->flags & FIO_FILE_EXTEND))
512 continue;
513
Jens Axboe409b3412007-03-28 09:57:01 +0200514 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200515 f->flags &= ~FIO_FILE_EXTEND;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200516 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200517 err = extend_file(td, f);
518 if (err)
519 break;
520 }
521 temp_stall_ts = 0;
522 }
523
524 if (err)
525 return err;
526
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100527 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200528 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200529
Jens Axboeea966f82007-09-03 10:09:37 +0200530 /*
531 * iolog already set the total io size, if we read back
532 * stored entries.
533 */
534 if (!td->o.read_iolog_file)
535 td->total_io_size = td->o.size * td->o.loops;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200536 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200537err_offset:
538 log_err("%s: you need to specify valid offset=\n", td->o.name);
539 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200540}
541
Jens Axboe68727072007-03-15 20:49:25 +0100542int init_random_map(struct thread_data *td)
543{
Jens Axboe509eab12007-12-14 12:42:53 +0100544 unsigned long long blocks, num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100545 struct fio_file *f;
546 unsigned int i;
547
Jens Axboede8dd112008-03-01 15:34:44 +0100548 if (td->o.norandommap || !td_random(td))
Jens Axboe68727072007-03-15 20:49:25 +0100549 return 0;
550
551 for_each_file(td, f, i) {
Jens Axboe509eab12007-12-14 12:42:53 +0100552 blocks = (f->real_file_size + td->o.rw_min_bs - 1) / (unsigned long long) td->o.rw_min_bs;
553 num_maps = (blocks + BLOCKS_PER_MAP-1)/ (unsigned long long) BLOCKS_PER_MAP;
Jens Axboef17c4392008-03-01 18:40:46 +0100554 f->file_map = smalloc(num_maps * sizeof(long));
Jens Axboe68727072007-03-15 20:49:25 +0100555 if (!f->file_map) {
556 log_err("fio: failed allocating random map. If running a large number of jobs, try the 'norandommap' option\n");
557 return 1;
558 }
559 f->num_maps = num_maps;
Jens Axboe68727072007-03-15 20:49:25 +0100560 }
561
562 return 0;
563}
564
Jens Axboe53cdc682006-10-18 11:50:58 +0200565void close_files(struct thread_data *td)
566{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200567 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100568 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200569
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100570 for_each_file(td, f, i)
571 td_io_close_file(td, f);
572}
573
574void close_and_free_files(struct thread_data *td)
575{
576 struct fio_file *f;
577 unsigned int i;
578
Jens Axboeee56ad52008-02-01 10:30:20 +0100579 dprint(FD_FILE, "close files\n");
580
Jens Axboe0ab8db82006-10-18 17:16:23 +0200581 for_each_file(td, f, i) {
Jens Axboea9b7b302007-04-19 16:31:16 +0200582 if (td->o.unlink && f->filetype == FIO_TYPE_FILE)
Jens Axboe132ad462006-11-23 12:23:12 +0100583 unlink(f->file_name);
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100584
Jens Axboeb5af8292007-03-08 12:43:13 +0100585 td_io_close_file(td, f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100586
Jens Axboef17c4392008-03-01 18:40:46 +0100587 sfree(f->file_name);
Jens Axboefa1da862007-03-23 15:20:54 +0100588 f->file_name = NULL;
589
Jens Axboec3439812007-03-20 13:54:53 +0100590 if (f->file_map) {
Jens Axboef17c4392008-03-01 18:40:46 +0100591 sfree(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100592 f->file_map = NULL;
593 }
Jens Axboe78d99e62008-03-01 18:41:50 +0100594 sfree(f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200595 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200596
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100597 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100598 free(td->files);
Jens Axboeb4a6a592006-10-20 13:54:47 +0200599 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100600 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200601}
Jens Axboeaf52b342007-03-13 10:07:47 +0100602
Jens Axboee3bab462007-03-13 11:22:09 +0100603static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100604{
605 struct stat sb;
606
Jens Axboe66159822007-04-16 21:54:24 +0200607 if (!strcmp(f->file_name, "-"))
608 f->filetype = FIO_TYPE_PIPE;
609 else
610 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100611
Jens Axboee3bab462007-03-13 11:22:09 +0100612 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100613 if (S_ISBLK(sb.st_mode))
614 f->filetype = FIO_TYPE_BD;
615 else if (S_ISCHR(sb.st_mode))
616 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200617 else if (S_ISFIFO(sb.st_mode))
618 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100619 }
620}
621
Jens Axboef29b25a2007-07-23 08:56:43 +0200622int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100623{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100624 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100625 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100626 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100627 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100628
Jens Axboeee56ad52008-02-01 10:30:20 +0100629 dprint(FD_FILE, "add file %s\n", fname);
630
Jens Axboef17c4392008-03-01 18:40:46 +0100631 f = smalloc(sizeof(*f));
Jens Axboeaf52b342007-03-13 10:07:47 +0100632 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100633
Jens Axboe126d65c2008-03-01 18:04:31 +0100634 td->files = realloc(td->files, (cur_files + 1) * sizeof(f));
635
636 td->files[cur_files] = f;
637
Jens Axboe07eb79d2007-04-12 13:02:38 +0200638 /*
639 * init function, io engine may not be loaded yet
640 */
641 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
642 f->real_file_size = -1ULL;
643
Jens Axboebd0ee742007-03-23 14:26:23 +0100644 if (td->o.directory)
645 len = sprintf(file_name, "%s/", td->o.directory);
646
647 sprintf(file_name + len, "%s", fname);
Jens Axboef17c4392008-03-01 18:40:46 +0100648 f->file_name = smalloc_strdup(file_name);
Jens Axboeaf52b342007-03-13 10:07:47 +0100649
Jens Axboee3bab462007-03-13 11:22:09 +0100650 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100651
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100652 switch (td->o.file_lock_mode) {
653 case FILE_LOCK_NONE:
654 break;
655 case FILE_LOCK_READWRITE:
656 f->lock = fio_mutex_rw_init();
657 break;
658 case FILE_LOCK_EXCLUSIVE:
659 f->lock = fio_mutex_init(1);
660 break;
661 default:
662 log_err("fio: unknown lock mode: %d\n", td->o.file_lock_mode);
663 assert(0);
664 }
Jens Axboe29c13492008-03-01 19:25:20 +0100665
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100666 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100667 if (f->filetype == FIO_TYPE_FILE)
668 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200669
670 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100671}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100672
673void get_file(struct fio_file *f)
674{
Jens Axboe8172fe92008-02-01 21:51:02 +0100675 dprint(FD_FILE, "get file %s, ref=%d\n", f->file_name, f->references);
Jens Axboe97af62c2007-05-22 11:12:13 +0200676 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100677 f->references++;
678}
679
Jens Axboe6977bcd2008-03-01 15:55:36 +0100680int put_file(struct thread_data *td, struct fio_file *f)
Jens Axboe0ad920e2007-03-13 11:06:45 +0100681{
Jens Axboe6977bcd2008-03-01 15:55:36 +0100682 int ret = 0;
683
Jens Axboe8172fe92008-02-01 21:51:02 +0100684 dprint(FD_FILE, "put file %s, ref=%d\n", f->file_name, f->references);
Jens Axboeee56ad52008-02-01 10:30:20 +0100685
Jens Axboe0ad920e2007-03-13 11:06:45 +0100686 if (!(f->flags & FIO_FILE_OPEN))
Jens Axboe6977bcd2008-03-01 15:55:36 +0100687 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100688
689 assert(f->references);
690 if (--f->references)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100691 return 0;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100692
Jens Axboed424d4d2007-04-17 09:05:10 +0200693 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboeebb14152007-03-13 14:42:15 +0100694 fsync(f->fd);
695
Jens Axboe0ad920e2007-03-13 11:06:45 +0100696 if (td->io_ops->close_file)
Jens Axboe6977bcd2008-03-01 15:55:36 +0100697 ret = td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200698
Jens Axboe0ad920e2007-03-13 11:06:45 +0100699 td->nr_open_files--;
700 f->flags &= ~FIO_FILE_OPEN;
Jens Axboe6977bcd2008-03-01 15:55:36 +0100701 return ret;
Jens Axboe0ad920e2007-03-13 11:06:45 +0100702}
Jens Axboebbf6b542007-03-13 15:28:55 +0100703
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100704void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100705{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100706 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
707 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100708
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100709 if (f->lock_owner == td && f->lock_batch--)
710 return;
711
712 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
713 if (ddir == DDIR_READ)
714 fio_mutex_down_read(f->lock);
715 else
716 fio_mutex_down_write(f->lock);
717 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE)
718 fio_mutex_down(f->lock);
719
720 f->lock_owner = td;
721 f->lock_batch = td->o.lockfile_batch;
722 f->lock_ddir = ddir;
723}
724
725void unlock_file(struct thread_data *td, struct fio_file *f)
726{
727 if (!f->lock || td->o.file_lock_mode == FILE_LOCK_NONE)
728 return;
729 if (f->lock_batch)
730 return;
731
732 if (td->o.file_lock_mode == FILE_LOCK_READWRITE) {
733 const int is_read = f->lock_ddir == DDIR_READ;
734 int val = fio_mutex_getval(f->lock);
735
736 if ((is_read && val == 1) || (!is_read && val == -1))
737 f->lock_owner = NULL;
738
739 if (is_read)
740 fio_mutex_up_read(f->lock);
741 else
742 fio_mutex_up_write(f->lock);
743 } else if (td->o.file_lock_mode == FILE_LOCK_EXCLUSIVE) {
744 int val = fio_mutex_getval(f->lock);
745
746 if (val == 0)
747 f->lock_owner = NULL;
748
749 fio_mutex_up(f->lock);
Jens Axboe29c13492008-03-01 19:25:20 +0100750 }
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100751}
752
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100753void unlock_file_all(struct thread_data *td, struct fio_file *f)
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100754{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100755 if (f->lock_owner != td)
756 return;
Jens Axboe29c13492008-03-01 19:25:20 +0100757
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100758 f->lock_batch = 0;
759 unlock_file(td, f);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100760}
761
Jens Axboebbf6b542007-03-13 15:28:55 +0100762static int recurse_dir(struct thread_data *td, const char *dirname)
763{
764 struct dirent *dir;
765 int ret = 0;
766 DIR *D;
767
768 D = opendir(dirname);
769 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200770 char buf[FIO_VERROR_SIZE];
771
772 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
773 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100774 return 1;
775 }
776
777 while ((dir = readdir(D)) != NULL) {
778 char full_path[PATH_MAX];
779 struct stat sb;
780
Jens Axboee85b2b82007-03-14 09:39:06 +0100781 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
782 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100783
Jens Axboebbf6b542007-03-13 15:28:55 +0100784 sprintf(full_path, "%s/%s", dirname, dir->d_name);
785
786 if (lstat(full_path, &sb) == -1) {
787 if (errno != ENOENT) {
788 td_verror(td, errno, "stat");
789 return 1;
790 }
791 }
792
793 if (S_ISREG(sb.st_mode)) {
794 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100795 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100796 continue;
797 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200798 if (!S_ISDIR(sb.st_mode))
799 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100800
Jens Axboebbf6b542007-03-13 15:28:55 +0100801 if ((ret = recurse_dir(td, full_path)) != 0)
802 break;
803 }
804
805 closedir(D);
806 return ret;
807}
808
809int add_dir_files(struct thread_data *td, const char *path)
810{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200811 int ret = recurse_dir(td, path);
812
813 if (!ret)
814 log_info("fio: opendir added %d files\n", td->o.nr_files);
815
816 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100817}
Jens Axboecade3ef2007-03-23 15:29:45 +0100818
819void dup_files(struct thread_data *td, struct thread_data *org)
820{
821 struct fio_file *f;
822 unsigned int i;
823 size_t bytes;
824
825 if (!org->files)
826 return;
827
Jens Axboeb0fe4212008-03-01 18:22:27 +0100828 bytes = org->files_index * sizeof(f);
Jens Axboecade3ef2007-03-23 15:29:45 +0100829 td->files = malloc(bytes);
830 memcpy(td->files, org->files, bytes);
831
832 for_each_file(td, f, i) {
Jens Axboeb0fe4212008-03-01 18:22:27 +0100833 struct fio_file *__f;
834
Jens Axboef17c4392008-03-01 18:40:46 +0100835 __f = smalloc(sizeof(*__f));
Jens Axboeb0fe4212008-03-01 18:22:27 +0100836
Jens Axboecade3ef2007-03-23 15:29:45 +0100837 if (f->file_name)
Jens Axboef17c4392008-03-01 18:40:46 +0100838 __f->file_name = smalloc_strdup(f->file_name);
Jens Axboeb0fe4212008-03-01 18:22:27 +0100839
840 td->files[i] = __f;
Jens Axboecade3ef2007-03-23 15:29:45 +0100841 }
842}
Jens Axboef29b25a2007-07-23 08:56:43 +0200843
844/*
845 * Returns the index that matches the filename, or -1 if not there
846 */
847int get_fileno(struct thread_data *td, const char *fname)
848{
849 struct fio_file *f;
850 unsigned int i;
851
852 for_each_file(td, f, i)
853 if (!strcmp(f->file_name, fname))
854 return i;
855
856 return -1;
857}
858
859/*
860 * For log usage, where we add/open/close files automatically
861 */
862void free_release_files(struct thread_data *td)
863{
864 close_files(td);
865 td->files_index = 0;
866 td->nr_normal_files = 0;
867}