blob: 11695e2f84a0d54158b6ea76614f693aec005b46 [file] [log] [blame]
Jens Axboed6aed792009-06-03 08:41:15 +02001#ifndef FIO_FILE_H
2#define FIO_FILE_H
3
Jens Axboee2e58882011-01-04 08:36:06 +01004#include <string.h>
Bruce Cranecc314b2011-01-04 10:59:30 +01005#include "compiler/compiler.h"
Jens Axboed6aed792009-06-03 08:41:15 +02006#include "io_ddir.h"
Bruce Cranecc314b2011-01-04 10:59:30 +01007#include "flist.h"
Jens Axboe9c6f6312012-11-07 09:15:45 +01008#include "lib/zipf.h"
Jens Axboe7ebd7962012-11-28 21:24:46 +01009#include "lib/axmap.h"
Jens Axboe8055e412012-11-26 08:43:47 +010010#include "lib/lfsr.h"
Jens Axboed6aed792009-06-03 08:41:15 +020011
12/*
13 * The type of object we are working on
14 */
15enum fio_filetype {
16 FIO_TYPE_FILE = 1, /* plain file */
17 FIO_TYPE_BD, /* block device */
18 FIO_TYPE_CHAR, /* character device */
19 FIO_TYPE_PIPE, /* pipe */
20};
21
22enum fio_file_flags {
23 FIO_FILE_open = 1 << 0, /* file is open */
24 FIO_FILE_closing = 1 << 1, /* file being closed */
25 FIO_FILE_extend = 1 << 2, /* needs extend */
26 FIO_FILE_done = 1 << 3, /* io completed to this file */
27 FIO_FILE_size_known = 1 << 4, /* size has been set */
28 FIO_FILE_hashed = 1 << 5, /* file is on hash */
Jens Axboeed47cbf2009-07-03 22:52:38 +020029 FIO_FILE_partial_mmap = 1 << 6, /* can't do full mmap */
Jens Axboed6aed792009-06-03 08:41:15 +020030};
31
32enum file_lock_mode {
33 FILE_LOCK_NONE,
34 FILE_LOCK_EXCLUSIVE,
35 FILE_LOCK_READWRITE,
36};
37
38/*
Jens Axboe590aebd2009-06-03 08:54:00 +020039 * roundrobin available files, or choose one at random, or do each one
40 * serially.
41 */
42enum {
43 FIO_FSERVICE_RANDOM = 1,
44 FIO_FSERVICE_RR = 2,
45 FIO_FSERVICE_SEQ = 3,
46};
47
48/*
Eric Gourioua596f042011-06-17 09:11:45 +020049 * No pre-allocation when laying down files, or call posix_fallocate(), or
50 * call fallocate() with FALLOC_FL_KEEP_SIZE set.
51 */
52enum fio_fallocate_mode {
53 FIO_FALLOCATE_NONE = 1,
54 FIO_FALLOCATE_POSIX = 2,
55 FIO_FALLOCATE_KEEP_SIZE = 3,
56};
57
58/*
Jens Axboed6aed792009-06-03 08:41:15 +020059 * Each thread_data structure has a number of files associated with it,
60 * this structure holds state information for a single file.
61 */
62struct fio_file {
63 struct flist_head hash_list;
64 enum fio_filetype filetype;
65
Jens Axboe9e700a72010-10-08 15:06:33 +020066 void *file_data;
Jens Axboe0e238572010-10-08 11:26:43 +020067 int fd;
Jens Axboee6c4d732012-12-12 08:16:27 +010068 int shadow_fd;
Bruce Cran93bcfd22012-02-20 20:18:19 +010069#ifdef WIN32
Bruce Cran03e20d62011-01-02 20:14:54 +010070 HANDLE hFile;
71 HANDLE ioCP;
72#endif
Jens Axboed6aed792009-06-03 08:41:15 +020073
74 /*
75 * filename and possible memory mapping
76 */
77 char *file_name;
78 unsigned int major, minor;
Shaohua Li89ac1d42012-06-11 08:56:32 +020079 int fileno;
Jens Axboed6aed792009-06-03 08:41:15 +020080
81 void *mmap_ptr;
82 size_t mmap_sz;
83 off_t mmap_off;
84
85 /*
86 * size of the file, offset into file, and io size from that offset
87 */
88 unsigned long long real_file_size;
89 unsigned long long file_offset;
90 unsigned long long io_size;
91
92 unsigned long long last_pos;
Jens Axboe38dad622010-07-20 14:46:00 -060093 unsigned long long last_start;
Jens Axboed6aed792009-06-03 08:41:15 +020094
Jens Axboe44f29692010-03-09 20:09:44 +010095 unsigned long long first_write;
96 unsigned long long last_write;
97
Jens Axboed6aed792009-06-03 08:41:15 +020098 /*
Jens Axboee943b872010-02-02 09:48:13 +010099 * For use by the io engine
100 */
101 unsigned long long file_pos;
102
103 /*
Jens Axboed6aed792009-06-03 08:41:15 +0200104 * if io is protected by a semaphore, this is set
105 */
106 struct fio_mutex *lock;
107 void *lock_owner;
108 unsigned int lock_batch;
109 enum fio_ddir lock_ddir;
110
111 /*
112 * block map for random io
113 */
Jens Axboe7ebd7962012-11-28 21:24:46 +0100114 struct axmap *io_axmap;
Jens Axboed6aed792009-06-03 08:41:15 +0200115
Jens Axboe8055e412012-11-26 08:43:47 +0100116 struct fio_lfsr lfsr;
117
Jens Axboe9c6f6312012-11-07 09:15:45 +0100118 /*
119 * Used for zipf random distribution
120 */
121 struct zipf_state zipf;
122
Jens Axboed6aed792009-06-03 08:41:15 +0200123 int references;
124 enum fio_file_flags flags;
125
126 struct disk_util *du;
127};
128
129#define FILE_FLAG_FNS(name) \
130static inline void fio_file_set_##name(struct fio_file *f) \
131{ \
132 (f)->flags |= FIO_FILE_##name; \
133} \
134static inline void fio_file_clear_##name(struct fio_file *f) \
135{ \
136 (f)->flags &= ~FIO_FILE_##name; \
137} \
138static inline int fio_file_##name(struct fio_file *f) \
139{ \
140 return ((f)->flags & FIO_FILE_##name) != 0; \
141}
142
143FILE_FLAG_FNS(open);
144FILE_FLAG_FNS(closing);
145FILE_FLAG_FNS(extend);
146FILE_FLAG_FNS(done);
147FILE_FLAG_FNS(size_known);
148FILE_FLAG_FNS(hashed);
Jens Axboeed47cbf2009-07-03 22:52:38 +0200149FILE_FLAG_FNS(partial_mmap);
Jens Axboed6aed792009-06-03 08:41:15 +0200150#undef FILE_FLAG_FNS
151
Jens Axboe4cd02b32009-06-03 08:46:38 +0200152/*
153 * File setup/shutdown
154 */
155struct thread_data;
156extern void close_files(struct thread_data *);
157extern void close_and_free_files(struct thread_data *);
Dan Ehrenbergce95d652012-08-16 08:58:21 +0200158extern unsigned long long get_start_offset(struct thread_data *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200159extern int __must_check setup_files(struct thread_data *);
160extern int __must_check file_invalidate_cache(struct thread_data *, struct fio_file *);
161extern int __must_check generic_open_file(struct thread_data *, struct fio_file *);
162extern int __must_check generic_close_file(struct thread_data *, struct fio_file *);
163extern int __must_check generic_get_file_size(struct thread_data *, struct fio_file *);
Dmitry Monakhov1ccc6dc2012-09-19 23:22:53 +0400164extern int __must_check file_lookup_open(struct fio_file *f, int flags);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200165extern int __must_check pre_read_files(struct thread_data *);
166extern int add_file(struct thread_data *, const char *);
Jens Axboe49ffb4a2010-08-24 15:01:37 +0200167extern int add_file_exclusive(struct thread_data *, const char *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200168extern void get_file(struct fio_file *);
169extern int __must_check put_file(struct thread_data *, struct fio_file *);
Jens Axboee8462bd2009-07-06 12:59:04 +0200170extern void put_file_log(struct thread_data *, struct fio_file *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200171extern void lock_file(struct thread_data *, struct fio_file *, enum fio_ddir);
172extern void unlock_file(struct thread_data *, struct fio_file *);
173extern void unlock_file_all(struct thread_data *, struct fio_file *);
174extern int add_dir_files(struct thread_data *, const char *);
175extern int init_random_map(struct thread_data *);
176extern void dup_files(struct thread_data *, struct thread_data *);
177extern int get_fileno(struct thread_data *, const char *);
178extern void free_release_files(struct thread_data *);
179
Jens Axboec592b9f2009-06-03 09:29:28 +0200180static inline void fio_file_reset(struct fio_file *f)
181{
Jens Axboec592b9f2009-06-03 09:29:28 +0200182 f->last_pos = f->file_offset;
Jens Axboe38dad622010-07-20 14:46:00 -0600183 f->last_start = -1ULL;
Jens Axboee943b872010-02-02 09:48:13 +0100184 f->file_pos = -1ULL;
Jens Axboe7ebd7962012-11-28 21:24:46 +0100185 if (f->io_axmap)
186 axmap_reset(f->io_axmap);
Jens Axboec592b9f2009-06-03 09:29:28 +0200187}
188
Jens Axboed6aed792009-06-03 08:41:15 +0200189#endif