blob: 8630abdee40f7293f1c33894ab88f3569d2f1f20 [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 Axboe53cdc682006-10-18 11:50:58 +020011
Jens Axboe7172cfe2007-07-23 14:36:00 +020012static int root_warn;
13
Jens Axboe7bb48f82007-03-27 15:30:28 +020014static int extend_file(struct thread_data *td, struct fio_file *f)
Jens Axboe25205e92006-10-19 20:50:14 +020015{
Jens Axboeea443652007-03-29 14:52:13 +020016 int r, new_layout = 0, unlink_file = 0, flags;
Jens Axboe25205e92006-10-19 20:50:14 +020017 unsigned long long left;
18 unsigned int bs;
19 char *b;
Jens Axboeb2a15192006-10-18 14:10:42 +020020
Jens Axboe507a7022007-03-27 15:52:46 +020021 /*
22 * check if we need to lay the file out complete again. fio
23 * does that for operations involving reads, or for writes
24 * where overwrite is set
25 */
26 if (td_read(td) || (td_write(td) && td->o.overwrite))
27 new_layout = 1;
Jens Axboeea443652007-03-29 14:52:13 +020028 if (td_write(td) && !td->o.overwrite)
29 unlink_file = 1;
Jens Axboe507a7022007-03-27 15:52:46 +020030
Jens Axboeea443652007-03-29 14:52:13 +020031 if ((unlink_file || new_layout) && (f->flags & FIO_FILE_EXISTS)) {
Jens Axboe7bb48f82007-03-27 15:30:28 +020032 if (unlink(f->file_name) < 0) {
33 td_verror(td, errno, "unlink");
34 return 1;
35 }
36 }
37
Jens Axboe507a7022007-03-27 15:52:46 +020038 flags = O_WRONLY | O_CREAT;
39 if (new_layout)
40 flags |= O_TRUNC;
41
42 f->fd = open(f->file_name, flags, 0644);
Jens Axboe53cdc682006-10-18 11:50:58 +020043 if (f->fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010044 td_verror(td, errno, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +020045 return 1;
46 }
47
Jens Axboe7bb48f82007-03-27 15:30:28 +020048 if (ftruncate(f->fd, f->real_file_size) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +010049 td_verror(td, errno, "ftruncate");
Jens Axboe53cdc682006-10-18 11:50:58 +020050 goto err;
51 }
52
Jens Axboee8be2ad2007-03-29 10:31:51 +020053 if (!new_layout)
54 goto done;
55
Jens Axboe7bb48f82007-03-27 15:30:28 +020056 if (posix_fallocate(f->fd, 0, f->real_file_size) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010057 td_verror(td, errno, "posix_fallocate");
Jens Axboe40f82982006-10-25 11:21:05 +020058 goto err;
59 }
60
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010061 b = malloc(td->o.max_bs[DDIR_WRITE]);
62 memset(b, 0, td->o.max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020063
Jens Axboe7bb48f82007-03-27 15:30:28 +020064 left = f->real_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +020065 while (left && !td->terminate) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010066 bs = td->o.max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020067 if (bs > left)
68 bs = left;
69
70 r = write(f->fd, b, bs);
71
72 if (r == (int) bs) {
73 left -= bs;
74 continue;
75 } else {
76 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010077 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020078 else
Jens Axboee1161c32007-02-22 19:36:48 +010079 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020080
81 break;
82 }
83 }
84
85 if (td->terminate)
86 unlink(f->file_name);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010087 else if (td->o.create_fsync)
Jens Axboe53cdc682006-10-18 11:50:58 +020088 fsync(f->fd);
89
90 free(b);
Jens Axboe507a7022007-03-27 15:52:46 +020091done:
Jens Axboe53cdc682006-10-18 11:50:58 +020092 close(f->fd);
93 f->fd = -1;
94 return 0;
95err:
96 close(f->fd);
97 f->fd = -1;
98 return 1;
99}
100
Jens Axboe7bb48f82007-03-27 15:30:28 +0200101static unsigned long long get_rand_file_size(struct thread_data *td)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100102{
Jens Axboe9c60ce62007-03-15 09:14:47 +0100103 unsigned long long ret;
104 long r;
105
Jens Axboe9c60ce62007-03-15 09:14:47 +0100106 r = os_random_long(&td->file_size_state);
ljzhang,Yaxin Hu,Jianchao Tangd11a5312007-07-27 15:54:10 +0200107 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 +0100108 ret -= (ret % td->o.rw_min_bs);
Jens Axboe9c60ce62007-03-15 09:14:47 +0100109 return ret;
110}
111
Jens Axboe53cdc682006-10-18 11:50:58 +0200112static int file_size(struct thread_data *td, struct fio_file *f)
113{
114 struct stat st;
115
Jens Axboe7bb48f82007-03-27 15:30:28 +0200116 if (fstat(f->fd, &st) == -1) {
117 td_verror(td, errno, "fstat");
118 return 1;
119 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200120
Jens Axboe7bb48f82007-03-27 15:30:28 +0200121 f->real_file_size = st.st_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200122 return 0;
123}
124
125static int bdev_size(struct thread_data *td, struct fio_file *f)
126{
127 unsigned long long bytes;
128 int r;
129
130 r = blockdev_size(f->fd, &bytes);
131 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100132 td_verror(td, r, "blockdev_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200133 return 1;
134 }
135
136 f->real_file_size = bytes;
Jens Axboe53cdc682006-10-18 11:50:58 +0200137 return 0;
138}
139
140static int get_file_size(struct thread_data *td, struct fio_file *f)
141{
142 int ret = 0;
143
Jens Axboe409b3412007-03-28 09:57:01 +0200144 if (f->flags & FIO_SIZE_KNOWN)
145 return 0;
146
Jens Axboe7bb48f82007-03-27 15:30:28 +0200147 if (f->filetype == FIO_TYPE_FILE)
148 ret = file_size(td, f);
149 else if (f->filetype == FIO_TYPE_BD)
Jens Axboe53cdc682006-10-18 11:50:58 +0200150 ret = bdev_size(td, f);
151 else
152 f->real_file_size = -1;
153
154 if (ret)
155 return ret;
156
157 if (f->file_offset > f->real_file_size) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100158 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 +0200159 return 1;
160 }
161
Jens Axboe409b3412007-03-28 09:57:01 +0200162 f->flags |= FIO_SIZE_KNOWN;
Jens Axboe53cdc682006-10-18 11:50:58 +0200163 return 0;
164}
165
Jens Axboee5b401d2006-10-18 16:03:40 +0200166int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
167{
168 int ret = 0;
169
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100170 if (td->o.odirect)
Jens Axboeb5af8292007-03-08 12:43:13 +0100171 return 0;
172
Jens Axboee5b401d2006-10-18 16:03:40 +0200173 /*
174 * FIXME: add blockdev flushing too
175 */
Jens Axboeb5af8292007-03-08 12:43:13 +0100176 if (f->mmap)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200177 ret = madvise(f->mmap, f->io_size, MADV_DONTNEED);
Jens Axboe467d1b62007-03-15 14:11:10 +0100178 else if (f->filetype == FIO_TYPE_FILE)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200179 ret = fadvise(f->fd, f->file_offset, f->io_size, POSIX_FADV_DONTNEED);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200180 else if (f->filetype == FIO_TYPE_BD) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100181 ret = blockdev_invalidate_cache(f->fd);
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200182 if (ret < 0 && errno == EACCES && geteuid()) {
Jens Axboe7172cfe2007-07-23 14:36:00 +0200183 if (!root_warn) {
184 log_err("fio: only root may flush block devices. Cache flush bypassed!\n");
185 root_warn = 1;
186 }
Jens Axboe7e0e25c2007-03-27 12:49:56 +0200187 ret = 0;
188 }
Jens Axboeb5605e92007-04-16 20:42:33 +0200189 } else if (f->filetype == FIO_TYPE_CHAR || f->filetype == FIO_TYPE_PIPE)
Jens Axboee5b401d2006-10-18 16:03:40 +0200190 ret = 0;
191
192 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100193 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200194 return 1;
195 }
196
Jens Axboead2da602007-02-26 12:33:27 +0100197 return ret;
Jens Axboee5b401d2006-10-18 16:03:40 +0200198}
199
Jens Axboeb5af8292007-03-08 12:43:13 +0100200void generic_close_file(struct thread_data fio_unused *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200201{
Jens Axboeb5af8292007-03-08 12:43:13 +0100202 close(f->fd);
203 f->fd = -1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200204}
205
Jens Axboeb5af8292007-03-08 12:43:13 +0100206int generic_open_file(struct thread_data *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +0200207{
Jens Axboe66159822007-04-16 21:54:24 +0200208 int is_std = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200209 int flags = 0;
210
Jens Axboe66159822007-04-16 21:54:24 +0200211 if (!strcmp(f->file_name, "-")) {
212 if (td_rw(td)) {
213 log_err("fio: can't read/write to stdin/out\n");
214 return 1;
215 }
216 is_std = 1;
Jens Axboece98fa62007-04-17 13:27:32 +0200217
218 /*
219 * move output logging to stderr, if we are writing to stdout
220 */
221 if (td_write(td))
222 f_out = stderr;
Jens Axboe66159822007-04-16 21:54:24 +0200223 }
224
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100225 if (td->o.odirect)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100226 flags |= OS_O_DIRECT;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100227 if (td->o.sync_io)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100228 flags |= O_SYNC;
Jens Axboe7abf8332006-11-23 15:01:19 +0100229
Jens Axboe660a1cb2007-04-17 15:37:47 +0200230 if (td_write(td)) {
Jens Axboe2fd233b2007-03-02 08:44:25 +0100231 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200232
Jens Axboeaf52b342007-03-13 10:07:47 +0100233 if (f->filetype == FIO_TYPE_FILE)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100234 flags |= O_CREAT;
Jens Axboe2fd233b2007-03-02 08:44:25 +0100235
Jens Axboe66159822007-04-16 21:54:24 +0200236 if (is_std)
237 f->fd = dup(STDOUT_FILENO);
238 else
239 f->fd = open(f->file_name, flags, 0600);
Jens Axboe2fd233b2007-03-02 08:44:25 +0100240 } else {
Jens Axboeaf52b342007-03-13 10:07:47 +0100241 if (f->filetype == FIO_TYPE_CHAR)
Jens Axboe2fd233b2007-03-02 08:44:25 +0100242 flags |= O_RDWR;
243 else
244 flags |= O_RDONLY;
245
Jens Axboe66159822007-04-16 21:54:24 +0200246 if (is_std)
247 f->fd = dup(STDIN_FILENO);
248 else
249 f->fd = open(f->file_name, flags);
Jens Axboe53cdc682006-10-18 11:50:58 +0200250 }
251
252 if (f->fd == -1) {
Jens Axboee4e33252007-03-21 13:07:54 +0100253 char buf[FIO_VERROR_SIZE];
Jens Axboee1161c32007-02-22 19:36:48 +0100254 int __e = errno;
255
Jens Axboee4e33252007-03-21 13:07:54 +0100256 snprintf(buf, sizeof(buf) - 1, "open(%s)", f->file_name);
257
258 td_verror(td, __e, buf);
Jens Axboe53cdc682006-10-18 11:50:58 +0200259 }
260
Jens Axboeb5af8292007-03-08 12:43:13 +0100261 if (get_file_size(td, f))
262 goto err;
263
Jens Axboe53cdc682006-10-18 11:50:58 +0200264 return 0;
Jens Axboeb5af8292007-03-08 12:43:13 +0100265err:
266 close(f->fd);
267 return 1;
268}
269
Jens Axboe21972cd2006-11-23 12:39:16 +0100270int open_files(struct thread_data *td)
271{
272 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100273 unsigned int i;
274 int err = 0;
Jens Axboe21972cd2006-11-23 12:39:16 +0100275
276 for_each_file(td, f, i) {
Jens Axboeb5af8292007-03-08 12:43:13 +0100277 err = td_io_open_file(td, f);
Jens Axboe9bf27b42007-03-27 19:49:31 +0200278 if (err) {
279 if (td->error == EMFILE) {
280 log_err("fio: limited open files to: %d\n", td->nr_open_files);
281 td->o.open_files = td->nr_open_files;
282 err = 0;
283 clear_error(td);
284 }
Jens Axboe21972cd2006-11-23 12:39:16 +0100285 break;
Jens Axboe9bf27b42007-03-27 19:49:31 +0200286 }
Jens Axboeb5af8292007-03-08 12:43:13 +0100287
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100288 if (td->o.open_files == td->nr_open_files)
Jens Axboeb5af8292007-03-08 12:43:13 +0100289 break;
Jens Axboe21972cd2006-11-23 12:39:16 +0100290 }
291
Jens Axboe7abf8332006-11-23 15:01:19 +0100292 if (!err)
293 return 0;
294
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100295 for_each_file(td, f, i)
Jens Axboeb5af8292007-03-08 12:43:13 +0100296 td_io_close_file(td, f);
Jens Axboe7abf8332006-11-23 15:01:19 +0100297
Jens Axboe21972cd2006-11-23 12:39:16 +0100298 return err;
299}
300
Jens Axboe7bb48f82007-03-27 15:30:28 +0200301/*
302 * open/close all files, so that ->real_file_size gets set
303 */
Jens Axboebab3fd52007-04-02 10:34:18 +0200304static int get_file_sizes(struct thread_data *td)
Jens Axboe53cdc682006-10-18 11:50:58 +0200305{
306 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100307 unsigned int i;
Jens Axboebab3fd52007-04-02 10:34:18 +0200308 int err = 0;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200309
310 for_each_file(td, f, i) {
Jens Axboebab3fd52007-04-02 10:34:18 +0200311 if (td->io_ops->open_file(td, f)) {
Jens Axboe40b44f42007-04-11 12:43:35 +0200312 if (td->error != ENOENT) {
313 log_err("%s\n", td->verror);
314 err = 1;
315 }
Jens Axboe541d66d2007-03-27 19:50:11 +0200316 clear_error(td);
Jens Axboe07eb79d2007-04-12 13:02:38 +0200317 } else {
318 if (td->io_ops->close_file)
319 td->io_ops->close_file(td, f);
320 }
Jens Axboe409b3412007-03-28 09:57:01 +0200321
322 if (f->real_file_size == -1ULL && td->o.size)
323 f->real_file_size = td->o.size / td->o.nr_files;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200324 }
Jens Axboebab3fd52007-04-02 10:34:18 +0200325
326 return err;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200327}
328
329/*
330 * Open the files and setup files sizes, creating files if necessary.
331 */
332int setup_files(struct thread_data *td)
333{
334 unsigned long long total_size, extend_size;
335 struct fio_file *f;
336 unsigned int i;
Jens Axboe000b0802007-03-27 15:56:10 +0200337 int err = 0, need_extend;
Jens Axboe53cdc682006-10-18 11:50:58 +0200338
339 /*
340 * if ioengine defines a setup() method, it's responsible for
Jens Axboe7bb48f82007-03-27 15:30:28 +0200341 * opening the files and setting f->real_file_size to indicate
342 * the valid range for that file.
Jens Axboe53cdc682006-10-18 11:50:58 +0200343 */
344 if (td->io_ops->setup)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200345 err = td->io_ops->setup(td);
346 else
Jens Axboebab3fd52007-04-02 10:34:18 +0200347 err = get_file_sizes(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200348
Jens Axboef1027062006-10-20 10:14:01 +0200349 if (err)
350 return err;
351
Jens Axboe0a7eb122006-10-20 10:36:42 +0200352 /*
Jens Axboe7bb48f82007-03-27 15:30:28 +0200353 * check sizes. if the files/devices do not exist and the size
354 * isn't passed to fio, abort.
Jens Axboe0a7eb122006-10-20 10:36:42 +0200355 */
Jens Axboe7bb48f82007-03-27 15:30:28 +0200356 total_size = 0;
357 for_each_file(td, f, i) {
358 if (f->real_file_size == -1ULL)
359 total_size = -1ULL;
360 else
361 total_size += f->real_file_size;
362 }
Jens Axboe0a7eb122006-10-20 10:36:42 +0200363
Jens Axboe7bb48f82007-03-27 15:30:28 +0200364 /*
365 * device/file sizes are zero and no size given, punt
366 */
Jens Axboe409b3412007-03-28 09:57:01 +0200367 if ((!total_size || total_size == -1ULL) && !td->o.size) {
Jens Axboe7bb48f82007-03-27 15:30:28 +0200368 log_err("%s: you need to specify size=\n", td->o.name);
Jens Axboee1161c32007-02-22 19:36:48 +0100369 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200370 return 1;
371 }
372
Jens Axboe7bb48f82007-03-27 15:30:28 +0200373 /*
374 * now file sizes are known, so we can set ->io_size. if size= is
375 * not given, ->io_size is just equal to ->real_file_size. if size
376 * is given, ->io_size is size / nr_files.
377 */
378 extend_size = total_size = 0;
379 need_extend = 0;
380 for_each_file(td, f, i) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200381 f->file_offset = td->o.start_offset;
382
Jens Axboe7bb48f82007-03-27 15:30:28 +0200383 if (!td->o.file_size_low) {
384 /*
385 * no file size range given, file size is equal to
386 * total size divided by number of files. if that is
387 * zero, set it to the real file size.
388 */
389 f->io_size = td->o.size / td->o.nr_files;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200390 if (!f->io_size) {
391 if (f->file_offset > f->real_file_size)
392 goto err_offset;
393 f->io_size = f->real_file_size - f->file_offset;
394 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200395 } else if (f->real_file_size < td->o.file_size_low ||
396 f->real_file_size > td->o.file_size_high) {
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200397 if (f->file_offset > td->o.file_size_low)
398 goto err_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200399 /*
400 * file size given. if it's fixed, use that. if it's a
401 * range, generate a random size in-between.
402 */
403 if (td->o.file_size_low == td->o.file_size_high)
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200404 f->io_size = td->o.file_size_low - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200405 else
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200406 f->io_size = get_rand_file_size(td) - f->file_offset;
407 } else if (f->file_offset > f->real_file_size)
408 goto err_offset;
409 else
410 f->io_size = f->real_file_size - f->file_offset;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200411
412 if (f->io_size == -1ULL)
413 total_size = -1ULL;
414 else
415 total_size += f->io_size;
416
417 if (f->filetype == FIO_TYPE_FILE &&
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200418 (f->io_size + f->file_offset) > f->real_file_size &&
Jens Axboe7bb48f82007-03-27 15:30:28 +0200419 !(td->io_ops->flags & FIO_DISKLESSIO)) {
420 need_extend++;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200421 extend_size += (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200422 f->flags |= FIO_FILE_EXTEND;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200423 }
Jens Axboe7bb48f82007-03-27 15:30:28 +0200424 }
425
ljzhang,Yaxin Hu,Jianchao Tang22982902007-07-27 13:21:28 +0200426 if (!td->o.size || td->o.size > total_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200427 td->o.size = total_size;
428
429 /*
430 * See if we need to extend some files
431 */
432 if (need_extend) {
433 temp_stall_ts = 1;
Jens Axboef627d8a2007-08-24 10:24:09 +0200434 log_info("%s: Laying out IO file(s) (%u file(s) / %LuMiB)\n",
Jens Axboe7bb48f82007-03-27 15:30:28 +0200435 td->o.name, need_extend, extend_size >> 20);
436
437 for_each_file(td, f, i) {
438 if (!(f->flags & FIO_FILE_EXTEND))
439 continue;
440
Jens Axboe409b3412007-03-28 09:57:01 +0200441 assert(f->filetype == FIO_TYPE_FILE);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200442 f->flags &= ~FIO_FILE_EXTEND;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200443 f->real_file_size = (f->io_size + f->file_offset);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200444 err = extend_file(td, f);
445 if (err)
446 break;
447 }
448 temp_stall_ts = 0;
449 }
450
451 if (err)
452 return err;
453
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100454 if (!td->o.zone_size)
Jens Axboe7bb48f82007-03-27 15:30:28 +0200455 td->o.zone_size = td->o.size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200456
Jens Axboe7bb48f82007-03-27 15:30:28 +0200457 td->total_io_size = td->o.size * td->o.loops;
458 return 0;
ljzhang,Yaxin Hu,Jianchao Tangbcdedd02007-07-27 13:28:26 +0200459err_offset:
460 log_err("%s: you need to specify valid offset=\n", td->o.name);
461 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200462}
463
Jens Axboe68727072007-03-15 20:49:25 +0100464int init_random_map(struct thread_data *td)
465{
466 int num_maps, blocks;
467 struct fio_file *f;
468 unsigned int i;
469
470 if (td->o.norandommap)
471 return 0;
472
473 for_each_file(td, f, i) {
474 blocks = (f->real_file_size + td->o.rw_min_bs - 1) / td->o.rw_min_bs;
475 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
476 f->file_map = malloc(num_maps * sizeof(long));
477 if (!f->file_map) {
478 log_err("fio: failed allocating random map. If running a large number of jobs, try the 'norandommap' option\n");
479 return 1;
480 }
481 f->num_maps = num_maps;
482 memset(f->file_map, 0, num_maps * sizeof(long));
483 }
484
485 return 0;
486}
487
Jens Axboe53cdc682006-10-18 11:50:58 +0200488void close_files(struct thread_data *td)
489{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200490 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100491 unsigned int i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200492
Jens Axboe0ab8db82006-10-18 17:16:23 +0200493 for_each_file(td, f, i) {
Jens Axboea9b7b302007-04-19 16:31:16 +0200494 if (td->o.unlink && f->filetype == FIO_TYPE_FILE)
Jens Axboe132ad462006-11-23 12:23:12 +0100495 unlink(f->file_name);
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100496
Jens Axboeb5af8292007-03-08 12:43:13 +0100497 td_io_close_file(td, f);
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100498
Jens Axboefa1da862007-03-23 15:20:54 +0100499 free(f->file_name);
500 f->file_name = NULL;
501
Jens Axboec3439812007-03-20 13:54:53 +0100502 if (f->file_map) {
Jens Axboeb3dc7f02007-03-09 12:52:15 +0100503 free(f->file_map);
Jens Axboec3439812007-03-20 13:54:53 +0100504 f->file_map = NULL;
505 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200506 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200507
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100508 td->o.filename = NULL;
Jens Axboecade3ef2007-03-23 15:29:45 +0100509 free(td->files);
Jens Axboeb4a6a592006-10-20 13:54:47 +0200510 td->files = NULL;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100511 td->o.nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200512}
Jens Axboeaf52b342007-03-13 10:07:47 +0100513
Jens Axboee3bab462007-03-13 11:22:09 +0100514static void get_file_type(struct fio_file *f)
Jens Axboeaf52b342007-03-13 10:07:47 +0100515{
516 struct stat sb;
517
Jens Axboe66159822007-04-16 21:54:24 +0200518 if (!strcmp(f->file_name, "-"))
519 f->filetype = FIO_TYPE_PIPE;
520 else
521 f->filetype = FIO_TYPE_FILE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100522
Jens Axboee3bab462007-03-13 11:22:09 +0100523 if (!lstat(f->file_name, &sb)) {
Jens Axboeaf52b342007-03-13 10:07:47 +0100524 if (S_ISBLK(sb.st_mode))
525 f->filetype = FIO_TYPE_BD;
526 else if (S_ISCHR(sb.st_mode))
527 f->filetype = FIO_TYPE_CHAR;
Jens Axboeb5605e92007-04-16 20:42:33 +0200528 else if (S_ISFIFO(sb.st_mode))
529 f->filetype = FIO_TYPE_PIPE;
Jens Axboeaf52b342007-03-13 10:07:47 +0100530 }
531}
532
Jens Axboef29b25a2007-07-23 08:56:43 +0200533int add_file(struct thread_data *td, const char *fname)
Jens Axboeaf52b342007-03-13 10:07:47 +0100534{
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100535 int cur_files = td->files_index;
Jens Axboebd0ee742007-03-23 14:26:23 +0100536 char file_name[PATH_MAX];
Jens Axboeaf52b342007-03-13 10:07:47 +0100537 struct fio_file *f;
Jens Axboebd0ee742007-03-23 14:26:23 +0100538 int len = 0;
Jens Axboeaf52b342007-03-13 10:07:47 +0100539
540 td->files = realloc(td->files, (cur_files + 1) * sizeof(*f));
541
542 f = &td->files[cur_files];
543 memset(f, 0, sizeof(*f));
544 f->fd = -1;
Jens Axboebd0ee742007-03-23 14:26:23 +0100545
Jens Axboe07eb79d2007-04-12 13:02:38 +0200546 /*
547 * init function, io engine may not be loaded yet
548 */
549 if (td->io_ops && (td->io_ops->flags & FIO_DISKLESSIO))
550 f->real_file_size = -1ULL;
551
Jens Axboebd0ee742007-03-23 14:26:23 +0100552 if (td->o.directory)
553 len = sprintf(file_name, "%s/", td->o.directory);
554
555 sprintf(file_name + len, "%s", fname);
556 f->file_name = strdup(file_name);
Jens Axboeaf52b342007-03-13 10:07:47 +0100557
Jens Axboee3bab462007-03-13 11:22:09 +0100558 get_file_type(f);
Jens Axboeaf52b342007-03-13 10:07:47 +0100559
Jens Axboe7b4e4fe2007-03-13 12:51:40 +0100560 td->files_index++;
Jens Axboe15494412007-03-13 11:52:47 +0100561 if (f->filetype == FIO_TYPE_FILE)
562 td->nr_normal_files++;
Jens Axboef29b25a2007-07-23 08:56:43 +0200563
564 return cur_files;
Jens Axboeaf52b342007-03-13 10:07:47 +0100565}
Jens Axboe0ad920e2007-03-13 11:06:45 +0100566
567void get_file(struct fio_file *f)
568{
Jens Axboe97af62c2007-05-22 11:12:13 +0200569 assert(f->flags & FIO_FILE_OPEN);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100570 f->references++;
571}
572
573void put_file(struct thread_data *td, struct fio_file *f)
574{
575 if (!(f->flags & FIO_FILE_OPEN))
576 return;
577
578 assert(f->references);
579 if (--f->references)
580 return;
581
Jens Axboed424d4d2007-04-17 09:05:10 +0200582 if (should_fsync(td) && td->o.fsync_on_close)
Jens Axboeebb14152007-03-13 14:42:15 +0100583 fsync(f->fd);
584
Jens Axboe0ad920e2007-03-13 11:06:45 +0100585 if (td->io_ops->close_file)
586 td->io_ops->close_file(td, f);
Jens Axboe1020a132007-03-29 11:15:06 +0200587
Jens Axboe0ad920e2007-03-13 11:06:45 +0100588 td->nr_open_files--;
589 f->flags &= ~FIO_FILE_OPEN;
590}
Jens Axboebbf6b542007-03-13 15:28:55 +0100591
592static int recurse_dir(struct thread_data *td, const char *dirname)
593{
594 struct dirent *dir;
595 int ret = 0;
596 DIR *D;
597
598 D = opendir(dirname);
599 if (!D) {
Jens Axboe0ddb2702007-03-27 19:43:53 +0200600 char buf[FIO_VERROR_SIZE];
601
602 snprintf(buf, FIO_VERROR_SIZE - 1, "opendir(%s)", dirname);
603 td_verror(td, errno, buf);
Jens Axboebbf6b542007-03-13 15:28:55 +0100604 return 1;
605 }
606
607 while ((dir = readdir(D)) != NULL) {
608 char full_path[PATH_MAX];
609 struct stat sb;
610
Jens Axboee85b2b82007-03-14 09:39:06 +0100611 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
612 continue;
Jens Axboe96d32d52007-03-14 09:16:09 +0100613
Jens Axboebbf6b542007-03-13 15:28:55 +0100614 sprintf(full_path, "%s/%s", dirname, dir->d_name);
615
616 if (lstat(full_path, &sb) == -1) {
617 if (errno != ENOENT) {
618 td_verror(td, errno, "stat");
619 return 1;
620 }
621 }
622
623 if (S_ISREG(sb.st_mode)) {
624 add_file(td, full_path);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100625 td->o.nr_files++;
Jens Axboebbf6b542007-03-13 15:28:55 +0100626 continue;
627 }
Jens Axboe0ddb2702007-03-27 19:43:53 +0200628 if (!S_ISDIR(sb.st_mode))
629 continue;
Jens Axboebbf6b542007-03-13 15:28:55 +0100630
Jens Axboebbf6b542007-03-13 15:28:55 +0100631 if ((ret = recurse_dir(td, full_path)) != 0)
632 break;
633 }
634
635 closedir(D);
636 return ret;
637}
638
639int add_dir_files(struct thread_data *td, const char *path)
640{
Jens Axboe0ddb2702007-03-27 19:43:53 +0200641 int ret = recurse_dir(td, path);
642
643 if (!ret)
644 log_info("fio: opendir added %d files\n", td->o.nr_files);
645
646 return ret;
Jens Axboebbf6b542007-03-13 15:28:55 +0100647}
Jens Axboecade3ef2007-03-23 15:29:45 +0100648
649void dup_files(struct thread_data *td, struct thread_data *org)
650{
651 struct fio_file *f;
652 unsigned int i;
653 size_t bytes;
654
655 if (!org->files)
656 return;
657
658 bytes = org->files_index * sizeof(*f);
659 td->files = malloc(bytes);
660 memcpy(td->files, org->files, bytes);
661
662 for_each_file(td, f, i) {
663 if (f->file_name)
664 f->file_name = strdup(f->file_name);
665 }
666}
Jens Axboef29b25a2007-07-23 08:56:43 +0200667
668/*
669 * Returns the index that matches the filename, or -1 if not there
670 */
671int get_fileno(struct thread_data *td, const char *fname)
672{
673 struct fio_file *f;
674 unsigned int i;
675
676 for_each_file(td, f, i)
677 if (!strcmp(f->file_name, fname))
678 return i;
679
680 return -1;
681}
682
683/*
684 * For log usage, where we add/open/close files automatically
685 */
686void free_release_files(struct thread_data *td)
687{
688 close_files(td);
689 td->files_index = 0;
690 td->nr_normal_files = 0;
691}