blob: 502d79f8be93fae2ec9108025d344212bb284153 [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>
5#include <sys/stat.h>
6#include <sys/mman.h>
7
8#include "fio.h"
9#include "os.h"
10
Jens Axboebdb4e2e2007-03-01 09:54:57 +010011int open_file(struct thread_data *td, struct fio_file *f, int flags, int perm)
12{
13 if (flags & O_CREAT)
14 f->fd = open(f->file_name, flags, perm);
15 else
16 f->fd = open(f->file_name, flags);
17
18 if (f->fd != -1) {
19 td->nr_open_files++;
20 return 0;
21 }
22
23 return 1;
24}
25
26void close_file(struct thread_data *td, struct fio_file *f)
27{
28 if (f->fd != -1) {
29 close(f->fd);
30 f->fd = -1;
31 td->nr_open_files--;
32 }
33}
34
Jens Axboe25205e92006-10-19 20:50:14 +020035/*
36 * Check if the file exists and it's large enough.
37 */
38static int file_ok(struct thread_data *td, struct fio_file *f)
Jens Axboe53cdc682006-10-18 11:50:58 +020039{
Jens Axboeb2a15192006-10-18 14:10:42 +020040 struct stat st;
Jens Axboe53cdc682006-10-18 11:50:58 +020041
Jens Axboe2fd233b2007-03-02 08:44:25 +010042 if (td->filetype != FIO_TYPE_FILE)
Jens Axboeb2a15192006-10-18 14:10:42 +020043 return 0;
44
Jens Axboefa01d132007-02-22 14:07:39 +010045 if (lstat(f->file_name, &st) == -1)
Jens Axboe25205e92006-10-19 20:50:14 +020046 return 1;
Jens Axboefa01d132007-02-22 14:07:39 +010047
48 /*
49 * if it's a special file, size is always ok for now
50 */
51 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))
52 return 0;
53 if (st.st_size < (off_t) f->file_size)
Jens Axboe25205e92006-10-19 20:50:14 +020054 return 1;
55
56 return 0;
57}
58
59static int create_file(struct thread_data *td, struct fio_file *f)
60{
61 unsigned long long left;
62 unsigned int bs;
63 char *b;
64 int r;
Jens Axboeb2a15192006-10-18 14:10:42 +020065
Jens Axboe53cdc682006-10-18 11:50:58 +020066 f->fd = open(f->file_name, O_WRONLY | O_CREAT | O_TRUNC, 0644);
67 if (f->fd < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010068 td_verror(td, errno, "open");
Jens Axboe53cdc682006-10-18 11:50:58 +020069 return 1;
70 }
71
72 if (ftruncate(f->fd, f->file_size) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +010073 td_verror(td, errno, "ftruncate");
Jens Axboe53cdc682006-10-18 11:50:58 +020074 goto err;
75 }
76
Jens Axboe40f82982006-10-25 11:21:05 +020077 if (posix_fallocate(f->fd, 0, f->file_size) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +010078 td_verror(td, errno, "posix_fallocate");
Jens Axboe40f82982006-10-25 11:21:05 +020079 goto err;
80 }
81
Jens Axboea00735e2006-11-03 08:58:08 +010082 b = malloc(td->max_bs[DDIR_WRITE]);
83 memset(b, 0, td->max_bs[DDIR_WRITE]);
Jens Axboe53cdc682006-10-18 11:50:58 +020084
85 left = f->file_size;
86 while (left && !td->terminate) {
Jens Axboea00735e2006-11-03 08:58:08 +010087 bs = td->max_bs[DDIR_WRITE];
Jens Axboe53cdc682006-10-18 11:50:58 +020088 if (bs > left)
89 bs = left;
90
91 r = write(f->fd, b, bs);
92
93 if (r == (int) bs) {
94 left -= bs;
95 continue;
96 } else {
97 if (r < 0)
Jens Axboee1161c32007-02-22 19:36:48 +010098 td_verror(td, errno, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +020099 else
Jens Axboee1161c32007-02-22 19:36:48 +0100100 td_verror(td, EIO, "write");
Jens Axboe53cdc682006-10-18 11:50:58 +0200101
102 break;
103 }
104 }
105
106 if (td->terminate)
107 unlink(f->file_name);
108 else if (td->create_fsync)
109 fsync(f->fd);
110
111 free(b);
112 close(f->fd);
113 f->fd = -1;
114 return 0;
115err:
116 close(f->fd);
117 f->fd = -1;
118 return 1;
119}
120
121static int create_files(struct thread_data *td)
122{
123 struct fio_file *f;
Jens Axboe25205e92006-10-19 20:50:14 +0200124 int i, err, need_create;
Jens Axboe53cdc682006-10-18 11:50:58 +0200125
Jens Axboef6971252006-11-15 10:00:31 +0100126 for_each_file(td, f, i)
127 f->file_size = td->total_file_size / td->nr_files;
128
Jens Axboe53cdc682006-10-18 11:50:58 +0200129 /*
130 * unless specifically asked for overwrite, let normal io extend it
131 */
Jens Axboef6971252006-11-15 10:00:31 +0100132 if (!td->overwrite)
Jens Axboe53cdc682006-10-18 11:50:58 +0200133 return 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200134
Jens Axboef1027062006-10-20 10:14:01 +0200135 need_create = 0;
Jens Axboeeff68612007-01-14 05:56:44 +0100136 if (td->filetype == FIO_TYPE_FILE) {
137 for_each_file(td, f, i) {
138 int file_there = !file_ok(td, f);
139
Jens Axboe413dd452007-02-23 09:26:09 +0100140 if (file_there && td_write(td) && !td->overwrite) {
Jens Axboeeff68612007-01-14 05:56:44 +0100141 unlink(f->file_name);
142 file_there = 0;
143 }
144
145 need_create += !file_there;
146 }
147 }
Jens Axboef1027062006-10-20 10:14:01 +0200148
149 if (!need_create)
150 return 0;
151
Jens Axboe53cdc682006-10-18 11:50:58 +0200152 if (!td->total_file_size) {
153 log_err("Need size for create\n");
Jens Axboee1161c32007-02-22 19:36:48 +0100154 td_verror(td, EINVAL, "file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200155 return 1;
156 }
157
Jens Axboe25205e92006-10-19 20:50:14 +0200158 temp_stall_ts = 1;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100159 fprintf(f_out, "%s: Laying out IO file(s) (%u x %LuMiB == %LuMiB)\n",
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200160 td->name, td->nr_uniq_files,
161 (td->total_file_size >> 20) / td->nr_uniq_files,
Jens Axboe25205e92006-10-19 20:50:14 +0200162 td->total_file_size >> 20);
163
164 err = 0;
165 for_each_file(td, f, i) {
Jens Axboe9b031dc2006-12-15 16:01:54 +0100166 /*
167 * Only unlink files that we created.
168 */
169 f->unlink = 0;
Jens Axboe25205e92006-10-19 20:50:14 +0200170 if (file_ok(td, f)) {
Jens Axboe9b031dc2006-12-15 16:01:54 +0100171 f->unlink = td->unlink;
Jens Axboe25205e92006-10-19 20:50:14 +0200172 err = create_file(td, f);
173 if (err)
174 break;
175 }
176 }
177
Jens Axboe53cdc682006-10-18 11:50:58 +0200178 temp_stall_ts = 0;
179 return err;
180}
181
182static int file_size(struct thread_data *td, struct fio_file *f)
183{
184 struct stat st;
185
186 if (td->overwrite) {
187 if (fstat(f->fd, &st) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100188 td_verror(td, errno, "fstat");
Jens Axboe53cdc682006-10-18 11:50:58 +0200189 return 1;
190 }
191
192 f->real_file_size = st.st_size;
193
194 if (!f->file_size || f->file_size > f->real_file_size)
195 f->file_size = f->real_file_size;
Jens Axboe745508d2007-01-08 10:25:51 +0100196 } else
197 f->real_file_size = f->file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200198
Jens Axboe53cdc682006-10-18 11:50:58 +0200199 return 0;
200}
201
202static int bdev_size(struct thread_data *td, struct fio_file *f)
203{
204 unsigned long long bytes;
205 int r;
206
207 r = blockdev_size(f->fd, &bytes);
208 if (r) {
Jens Axboee1161c32007-02-22 19:36:48 +0100209 td_verror(td, r, "blockdev_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200210 return 1;
211 }
212
213 f->real_file_size = bytes;
214
215 /*
216 * no extend possibilities, so limit size to device size if too large
217 */
218 if (!f->file_size || f->file_size > f->real_file_size)
219 f->file_size = f->real_file_size;
220
221 f->file_size -= f->file_offset;
222 return 0;
223}
224
225static int get_file_size(struct thread_data *td, struct fio_file *f)
226{
227 int ret = 0;
228
229 if (td->filetype == FIO_TYPE_FILE)
230 ret = file_size(td, f);
231 else if (td->filetype == FIO_TYPE_BD)
232 ret = bdev_size(td, f);
233 else
234 f->real_file_size = -1;
235
236 if (ret)
237 return ret;
238
239 if (f->file_offset > f->real_file_size) {
240 log_err("%s: offset extends end (%Lu > %Lu)\n", td->name, f->file_offset, f->real_file_size);
241 return 1;
242 }
243
Jens Axboe53cdc682006-10-18 11:50:58 +0200244 return 0;
245}
246
Jens Axboee5b401d2006-10-18 16:03:40 +0200247int file_invalidate_cache(struct thread_data *td, struct fio_file *f)
248{
249 int ret = 0;
250
251 /*
252 * FIXME: add blockdev flushing too
253 */
254 if (td->io_ops->flags & FIO_MMAPIO)
255 ret = madvise(f->mmap, f->file_size, MADV_DONTNEED);
Jens Axboead2da602007-02-26 12:33:27 +0100256 else if (td->filetype == FIO_TYPE_FILE) {
257 if (!td->odirect)
258 ret = fadvise(f->fd, f->file_offset, f->file_size, POSIX_FADV_DONTNEED);
259 } else if (td->filetype == FIO_TYPE_BD) {
260 if (!td->odirect)
261 ret = blockdev_invalidate_cache(f->fd);
262 } else if (td->filetype == FIO_TYPE_CHAR)
Jens Axboee5b401d2006-10-18 16:03:40 +0200263 ret = 0;
264
265 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100266 td_verror(td, errno, "invalidate_cache");
Jens Axboee5b401d2006-10-18 16:03:40 +0200267 return 1;
268 }
269
Jens Axboead2da602007-02-26 12:33:27 +0100270 return ret;
Jens Axboee5b401d2006-10-18 16:03:40 +0200271}
272
Jens Axboe53cdc682006-10-18 11:50:58 +0200273static int __setup_file_mmap(struct thread_data *td, struct fio_file *f)
274{
275 int flags;
276
277 if (td_rw(td))
278 flags = PROT_READ | PROT_WRITE;
279 else if (td_write(td)) {
280 flags = PROT_WRITE;
281
282 if (td->verify != VERIFY_NONE)
283 flags |= PROT_READ;
284 } else
285 flags = PROT_READ;
286
287 f->mmap = mmap(NULL, f->file_size, flags, MAP_SHARED, f->fd, f->file_offset);
288 if (f->mmap == MAP_FAILED) {
289 f->mmap = NULL;
Jens Axboee1161c32007-02-22 19:36:48 +0100290 td_verror(td, errno, "mmap");
Jens Axboe53cdc682006-10-18 11:50:58 +0200291 return 1;
292 }
293
Jens Axboee5b401d2006-10-18 16:03:40 +0200294 if (td->invalidate_cache && file_invalidate_cache(td, f))
295 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200296
Jens Axboe413dd452007-02-23 09:26:09 +0100297 if (!td_random(td)) {
Jens Axboe53cdc682006-10-18 11:50:58 +0200298 if (madvise(f->mmap, f->file_size, MADV_SEQUENTIAL) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100299 td_verror(td, errno, "madvise");
Jens Axboe53cdc682006-10-18 11:50:58 +0200300 return 1;
301 }
302 } else {
303 if (madvise(f->mmap, f->file_size, MADV_RANDOM) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100304 td_verror(td, errno, "madvise");
Jens Axboe53cdc682006-10-18 11:50:58 +0200305 return 1;
306 }
307 }
308
309 return 0;
310}
311
312static int setup_files_mmap(struct thread_data *td)
313{
314 struct fio_file *f;
315 int i, err = 0;
316
317 for_each_file(td, f, i) {
318 err = __setup_file_mmap(td, f);
319 if (err)
320 break;
321 }
322
323 return err;
324}
325
326static int __setup_file_plain(struct thread_data *td, struct fio_file *f)
327{
Jens Axboee5b401d2006-10-18 16:03:40 +0200328 if (td->invalidate_cache && file_invalidate_cache(td, f))
329 return 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200330
Jens Axboe413dd452007-02-23 09:26:09 +0100331 if (!td_random(td)) {
Jens Axboe53cdc682006-10-18 11:50:58 +0200332 if (fadvise(f->fd, f->file_offset, f->file_size, POSIX_FADV_SEQUENTIAL) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100333 td_verror(td, errno, "fadvise");
Jens Axboe53cdc682006-10-18 11:50:58 +0200334 return 1;
335 }
336 } else {
337 if (fadvise(f->fd, f->file_offset, f->file_size, POSIX_FADV_RANDOM) < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100338 td_verror(td, errno, "fadvise");
Jens Axboe53cdc682006-10-18 11:50:58 +0200339 return 1;
340 }
341 }
342
343 return 0;
344}
345
346static int setup_files_plain(struct thread_data *td)
347{
348 struct fio_file *f;
349 int i, err = 0;
350
351 for_each_file(td, f, i) {
352 err = __setup_file_plain(td, f);
353 if (err)
354 break;
355 }
356
357 return err;
358}
359
360static int setup_file(struct thread_data *td, struct fio_file *f)
361{
Jens Axboe53cdc682006-10-18 11:50:58 +0200362 int flags = 0;
363
Joel Beckera9defc92007-03-01 08:26:38 +0100364 if (td->io_ops->flags & FIO_SELFOPEN)
Jens Axboeed92ac02007-02-06 14:43:52 +0100365 return 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200366
Jens Axboe2fd233b2007-03-02 08:44:25 +0100367 if (td->odirect)
368 flags |= OS_O_DIRECT;
369 if (td->sync_io)
370 flags |= O_SYNC;
Jens Axboe7abf8332006-11-23 15:01:19 +0100371
Jens Axboe2fd233b2007-03-02 08:44:25 +0100372 if (td_write(td) || td_rw(td)) {
373 flags |= O_RDWR;
Jens Axboe53cdc682006-10-18 11:50:58 +0200374
Jens Axboe2fd233b2007-03-02 08:44:25 +0100375 if (td->filetype == FIO_TYPE_FILE) {
376 if (!td->overwrite)
377 flags |= O_TRUNC;
Jens Axboe4d9345a2007-02-07 13:14:57 +0100378
Jens Axboe2fd233b2007-03-02 08:44:25 +0100379 flags |= O_CREAT;
Jens Axboe4d9345a2007-02-07 13:14:57 +0100380 }
Jens Axboe2fd233b2007-03-02 08:44:25 +0100381
382 open_file(td, f, flags, 0600);
383 } else {
384 if (td->filetype == FIO_TYPE_CHAR)
385 flags |= O_RDWR;
386 else
387 flags |= O_RDONLY;
388
389 open_file(td, f, flags, 0);
Jens Axboe53cdc682006-10-18 11:50:58 +0200390 }
391
392 if (f->fd == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100393 int __e = errno;
394
395 td_verror(td, __e, "open");
396 if (__e == EINVAL && td->odirect)
Jens Axboe9d80e112007-02-22 19:37:53 +0100397 log_err("fio: destination does not support O_DIRECT\n");
Jens Axboe53cdc682006-10-18 11:50:58 +0200398 return 1;
399 }
400
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100401 if (get_file_size(td, f)) {
402 close_file(td, f);
Jens Axboe53cdc682006-10-18 11:50:58 +0200403 return 1;
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100404 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200405
406 return 0;
407}
408
Jens Axboe21972cd2006-11-23 12:39:16 +0100409int open_files(struct thread_data *td)
410{
411 struct fio_file *f;
412 int i, err = 0;
413
414 for_each_file(td, f, i) {
415 err = setup_file(td, f);
416 if (err)
417 break;
418 }
419
Jens Axboe7abf8332006-11-23 15:01:19 +0100420 if (!err)
421 return 0;
422
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100423 for_each_file(td, f, i)
424 close_file(td, f);
Jens Axboe7abf8332006-11-23 15:01:19 +0100425
Jens Axboe21972cd2006-11-23 12:39:16 +0100426 return err;
427}
428
Jens Axboe53cdc682006-10-18 11:50:58 +0200429int setup_files(struct thread_data *td)
430{
431 struct fio_file *f;
Jens Axboe21972cd2006-11-23 12:39:16 +0100432 int err, i;
Jens Axboe53cdc682006-10-18 11:50:58 +0200433
434 /*
435 * if ioengine defines a setup() method, it's responsible for
436 * setting up everything in the td->files[] area.
437 */
438 if (td->io_ops->setup)
439 return td->io_ops->setup(td);
440
441 if (create_files(td))
442 return 1;
443
Jens Axboe21972cd2006-11-23 12:39:16 +0100444 err = open_files(td);
Jens Axboef1027062006-10-20 10:14:01 +0200445 if (err)
446 return err;
447
Jens Axboe0a7eb122006-10-20 10:36:42 +0200448 /*
449 * Recalculate the total file size now that files are set up.
450 */
451 td->total_file_size = 0;
452 for_each_file(td, f, i)
453 td->total_file_size += f->file_size;
454
Jens Axboef1027062006-10-20 10:14:01 +0200455 td->io_size = td->total_file_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200456 if (td->io_size == 0) {
457 log_err("%s: no io blocks\n", td->name);
Jens Axboee1161c32007-02-22 19:36:48 +0100458 td_verror(td, EINVAL, "total_file_size");
Jens Axboe53cdc682006-10-18 11:50:58 +0200459 return 1;
460 }
461
462 if (!td->zone_size)
463 td->zone_size = td->io_size;
464
465 td->total_io_size = td->io_size * td->loops;
466
467 if (td->io_ops->flags & FIO_MMAPIO)
Jens Axboe21972cd2006-11-23 12:39:16 +0100468 err = setup_files_mmap(td);
Jens Axboe53cdc682006-10-18 11:50:58 +0200469 else
Jens Axboe21972cd2006-11-23 12:39:16 +0100470 err = setup_files_plain(td);
471
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100472 for_each_file(td, f, i)
473 close_file(td, f);
Jens Axboe21972cd2006-11-23 12:39:16 +0100474
475 return err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200476}
477
478void close_files(struct thread_data *td)
479{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200480 struct fio_file *f;
Jens Axboe53cdc682006-10-18 11:50:58 +0200481 int i;
482
Jens Axboe0ab8db82006-10-18 17:16:23 +0200483 for_each_file(td, f, i) {
Jens Axboe9b031dc2006-12-15 16:01:54 +0100484 if (!td->filename && f->unlink &&
Jens Axboe02bcaa82006-11-24 10:42:00 +0100485 td->filetype == FIO_TYPE_FILE) {
Jens Axboe132ad462006-11-23 12:23:12 +0100486 unlink(f->file_name);
487 free(f->file_name);
488 f->file_name = NULL;
489 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +0100490
491 close_file(td, f);
492
Jens Axboe53cdc682006-10-18 11:50:58 +0200493 if (f->mmap) {
494 munmap(f->mmap, f->file_size);
495 f->mmap = NULL;
496 }
497 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200498
Jens Axboe132ad462006-11-23 12:23:12 +0100499 td->filename = NULL;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200500 free(td->files);
501 td->files = NULL;
502 td->nr_files = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200503}