Merge branch 'master' of ssh://git.kernel.dk/data/git/fio
[fio.git] / file.h
CommitLineData
d6aed795
JA
1#ifndef FIO_FILE_H
2#define FIO_FILE_H
3
e2e58886 4#include <string.h>
ecc314ba 5#include "compiler/compiler.h"
d6aed795 6#include "io_ddir.h"
ecc314ba 7#include "flist.h"
9c6f6316 8#include "lib/zipf.h"
7ebd796f 9#include "lib/axmap.h"
8055e41d 10#include "lib/lfsr.h"
d6aed795
JA
11
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 */
ed47cbf7 29 FIO_FILE_partial_mmap = 1 << 6, /* can't do full mmap */
d6aed795
JA
30};
31
32enum file_lock_mode {
33 FILE_LOCK_NONE,
34 FILE_LOCK_EXCLUSIVE,
35 FILE_LOCK_READWRITE,
36};
37
590aebda
JA
38/*
39 * 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
a596f047
EG
48/*
49 * 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
d6aed795
JA
58/*
59 * 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
0e238572 66 int fd;
e6c4d732 67 int shadow_fd;
93bcfd20 68#ifdef WIN32
03e20d68
BC
69 HANDLE hFile;
70 HANDLE ioCP;
71#endif
d6aed795
JA
72
73 /*
74 * filename and possible memory mapping
75 */
76 char *file_name;
77 unsigned int major, minor;
89ac1d48 78 int fileno;
d6aed795
JA
79
80 void *mmap_ptr;
81 size_t mmap_sz;
82 off_t mmap_off;
83
84 /*
85 * size of the file, offset into file, and io size from that offset
86 */
293b8c1f
JA
87 uint64_t real_file_size;
88 uint64_t file_offset;
89 uint64_t io_size;
d6aed795 90
f1dfb668
JA
91 /*
92 * Track last end and last start of IO for a given data direction
93 */
94 uint64_t last_pos[DDIR_RWDIR_CNT];
95 uint64_t last_start[DDIR_RWDIR_CNT];
d6aed795 96
293b8c1f
JA
97 uint64_t first_write;
98 uint64_t last_write;
44f29692 99
e943b878
JA
100 /*
101 * For use by the io engine
102 */
47f07ddc 103 uint64_t engine_data;
e943b878 104
d6aed795
JA
105 /*
106 * if io is protected by a semaphore, this is set
107 */
d7df1d13
JA
108 union {
109 struct fio_mutex *lock;
110 struct fio_rwlock *rwlock;
111 };
d6aed795
JA
112
113 /*
114 * block map for random io
115 */
7ebd796f 116 struct axmap *io_axmap;
d6aed795 117
8055e41d
JA
118 struct fio_lfsr lfsr;
119
9c6f6316
JA
120 /*
121 * Used for zipf random distribution
122 */
123 struct zipf_state zipf;
124
d6aed795
JA
125 int references;
126 enum fio_file_flags flags;
127
128 struct disk_util *du;
129};
130
bcbfeefa
CE
131struct file_name {
132 struct flist_head list;
133 char *filename;
134};
135
d6aed795
JA
136#define FILE_FLAG_FNS(name) \
137static inline void fio_file_set_##name(struct fio_file *f) \
138{ \
bea5c23d 139 (f)->flags = (enum fio_file_flags) ((f)->flags | FIO_FILE_##name); \
d6aed795
JA
140} \
141static inline void fio_file_clear_##name(struct fio_file *f) \
142{ \
bea5c23d 143 (f)->flags = (enum fio_file_flags) ((f)->flags & ~FIO_FILE_##name); \
d6aed795
JA
144} \
145static inline int fio_file_##name(struct fio_file *f) \
146{ \
147 return ((f)->flags & FIO_FILE_##name) != 0; \
148}
149
150FILE_FLAG_FNS(open);
151FILE_FLAG_FNS(closing);
152FILE_FLAG_FNS(extend);
153FILE_FLAG_FNS(done);
154FILE_FLAG_FNS(size_known);
155FILE_FLAG_FNS(hashed);
ed47cbf7 156FILE_FLAG_FNS(partial_mmap);
d6aed795
JA
157#undef FILE_FLAG_FNS
158
4cd02b3f
JA
159/*
160 * File setup/shutdown
161 */
162struct thread_data;
163extern void close_files(struct thread_data *);
164extern void close_and_free_files(struct thread_data *);
bedc9dc2 165extern uint64_t get_start_offset(struct thread_data *, struct fio_file *);
4cd02b3f
JA
166extern int __must_check setup_files(struct thread_data *);
167extern int __must_check file_invalidate_cache(struct thread_data *, struct fio_file *);
168extern int __must_check generic_open_file(struct thread_data *, struct fio_file *);
169extern int __must_check generic_close_file(struct thread_data *, struct fio_file *);
170extern int __must_check generic_get_file_size(struct thread_data *, struct fio_file *);
1ccc6dc7 171extern int __must_check file_lookup_open(struct fio_file *f, int flags);
4cd02b3f 172extern int __must_check pre_read_files(struct thread_data *);
5903e7b7 173extern int add_file(struct thread_data *, const char *, int, int);
49ffb4a2 174extern int add_file_exclusive(struct thread_data *, const char *);
4cd02b3f
JA
175extern void get_file(struct fio_file *);
176extern int __must_check put_file(struct thread_data *, struct fio_file *);
e8462bd8 177extern void put_file_log(struct thread_data *, struct fio_file *);
4cd02b3f
JA
178extern void lock_file(struct thread_data *, struct fio_file *, enum fio_ddir);
179extern void unlock_file(struct thread_data *, struct fio_file *);
180extern void unlock_file_all(struct thread_data *, struct fio_file *);
181extern int add_dir_files(struct thread_data *, const char *);
182extern int init_random_map(struct thread_data *);
183extern void dup_files(struct thread_data *, struct thread_data *);
184extern int get_fileno(struct thread_data *, const char *);
185extern void free_release_files(struct thread_data *);
bcbfeefa 186extern void filesetup_mem_free(void);
33c48814 187void fio_file_reset(struct thread_data *, struct fio_file *);
002fe734 188int fio_files_done(struct thread_data *);
c592b9fe 189
d6aed795 190#endif