blob: ce92ff75305dda0438ec041dcfa7f37c6fb5ce83 [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 Axboe51ede0b2012-11-22 13:50:29 +01009#include "lib/bitmap.h"
Jens Axboed6aed792009-06-03 08:41:15 +020010
11/*
12 * The type of object we are working on
13 */
14enum fio_filetype {
15 FIO_TYPE_FILE = 1, /* plain file */
16 FIO_TYPE_BD, /* block device */
17 FIO_TYPE_CHAR, /* character device */
18 FIO_TYPE_PIPE, /* pipe */
19};
20
21enum fio_file_flags {
22 FIO_FILE_open = 1 << 0, /* file is open */
23 FIO_FILE_closing = 1 << 1, /* file being closed */
24 FIO_FILE_extend = 1 << 2, /* needs extend */
25 FIO_FILE_done = 1 << 3, /* io completed to this file */
26 FIO_FILE_size_known = 1 << 4, /* size has been set */
27 FIO_FILE_hashed = 1 << 5, /* file is on hash */
Jens Axboeed47cbf2009-07-03 22:52:38 +020028 FIO_FILE_partial_mmap = 1 << 6, /* can't do full mmap */
Jens Axboed6aed792009-06-03 08:41:15 +020029};
30
31enum file_lock_mode {
32 FILE_LOCK_NONE,
33 FILE_LOCK_EXCLUSIVE,
34 FILE_LOCK_READWRITE,
35};
36
37/*
Jens Axboe590aebd2009-06-03 08:54:00 +020038 * roundrobin available files, or choose one at random, or do each one
39 * serially.
40 */
41enum {
42 FIO_FSERVICE_RANDOM = 1,
43 FIO_FSERVICE_RR = 2,
44 FIO_FSERVICE_SEQ = 3,
45};
46
47/*
Eric Gourioua596f042011-06-17 09:11:45 +020048 * No pre-allocation when laying down files, or call posix_fallocate(), or
49 * call fallocate() with FALLOC_FL_KEEP_SIZE set.
50 */
51enum fio_fallocate_mode {
52 FIO_FALLOCATE_NONE = 1,
53 FIO_FALLOCATE_POSIX = 2,
54 FIO_FALLOCATE_KEEP_SIZE = 3,
55};
56
57/*
Jens Axboed6aed792009-06-03 08:41:15 +020058 * Each thread_data structure has a number of files associated with it,
59 * this structure holds state information for a single file.
60 */
61struct fio_file {
62 struct flist_head hash_list;
63 enum fio_filetype filetype;
64
Jens Axboe9e700a72010-10-08 15:06:33 +020065 void *file_data;
Jens Axboe0e238572010-10-08 11:26:43 +020066 int fd;
Bruce Cran93bcfd22012-02-20 20:18:19 +010067#ifdef WIN32
Bruce Cran03e20d62011-01-02 20:14:54 +010068 HANDLE hFile;
69 HANDLE ioCP;
70#endif
Jens Axboed6aed792009-06-03 08:41:15 +020071
72 /*
73 * filename and possible memory mapping
74 */
75 char *file_name;
76 unsigned int major, minor;
Shaohua Li89ac1d42012-06-11 08:56:32 +020077 int fileno;
Jens Axboed6aed792009-06-03 08:41:15 +020078
79 void *mmap_ptr;
80 size_t mmap_sz;
81 off_t mmap_off;
82
83 /*
84 * size of the file, offset into file, and io size from that offset
85 */
86 unsigned long long real_file_size;
87 unsigned long long file_offset;
88 unsigned long long io_size;
89
90 unsigned long long last_pos;
Jens Axboe38dad622010-07-20 14:46:00 -060091 unsigned long long last_start;
Jens Axboed6aed792009-06-03 08:41:15 +020092
Jens Axboe44f29692010-03-09 20:09:44 +010093 unsigned long long first_write;
94 unsigned long long last_write;
95
Jens Axboed6aed792009-06-03 08:41:15 +020096 /*
Jens Axboee943b872010-02-02 09:48:13 +010097 * For use by the io engine
98 */
99 unsigned long long file_pos;
100
101 /*
Jens Axboed6aed792009-06-03 08:41:15 +0200102 * if io is protected by a semaphore, this is set
103 */
104 struct fio_mutex *lock;
105 void *lock_owner;
106 unsigned int lock_batch;
107 enum fio_ddir lock_ddir;
108
109 /*
110 * block map for random io
111 */
Jens Axboe51ede0b2012-11-22 13:50:29 +0100112 struct bitmap *io_bitmap;
Jens Axboed6aed792009-06-03 08:41:15 +0200113
Jens Axboe9c6f6312012-11-07 09:15:45 +0100114 /*
115 * Used for zipf random distribution
116 */
117 struct zipf_state zipf;
118
Jens Axboed6aed792009-06-03 08:41:15 +0200119 int references;
120 enum fio_file_flags flags;
121
122 struct disk_util *du;
123};
124
125#define FILE_FLAG_FNS(name) \
126static inline void fio_file_set_##name(struct fio_file *f) \
127{ \
128 (f)->flags |= FIO_FILE_##name; \
129} \
130static inline void fio_file_clear_##name(struct fio_file *f) \
131{ \
132 (f)->flags &= ~FIO_FILE_##name; \
133} \
134static inline int fio_file_##name(struct fio_file *f) \
135{ \
136 return ((f)->flags & FIO_FILE_##name) != 0; \
137}
138
139FILE_FLAG_FNS(open);
140FILE_FLAG_FNS(closing);
141FILE_FLAG_FNS(extend);
142FILE_FLAG_FNS(done);
143FILE_FLAG_FNS(size_known);
144FILE_FLAG_FNS(hashed);
Jens Axboeed47cbf2009-07-03 22:52:38 +0200145FILE_FLAG_FNS(partial_mmap);
Jens Axboed6aed792009-06-03 08:41:15 +0200146#undef FILE_FLAG_FNS
147
Jens Axboe4cd02b32009-06-03 08:46:38 +0200148/*
149 * File setup/shutdown
150 */
151struct thread_data;
152extern void close_files(struct thread_data *);
153extern void close_and_free_files(struct thread_data *);
Dan Ehrenbergce95d652012-08-16 08:58:21 +0200154extern unsigned long long get_start_offset(struct thread_data *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200155extern int __must_check setup_files(struct thread_data *);
156extern int __must_check file_invalidate_cache(struct thread_data *, struct fio_file *);
157extern int __must_check generic_open_file(struct thread_data *, struct fio_file *);
158extern int __must_check generic_close_file(struct thread_data *, struct fio_file *);
159extern int __must_check generic_get_file_size(struct thread_data *, struct fio_file *);
Dmitry Monakhov1ccc6dc2012-09-19 23:22:53 +0400160extern int __must_check file_lookup_open(struct fio_file *f, int flags);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200161extern int __must_check pre_read_files(struct thread_data *);
162extern int add_file(struct thread_data *, const char *);
Jens Axboe49ffb4a2010-08-24 15:01:37 +0200163extern int add_file_exclusive(struct thread_data *, const char *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200164extern void get_file(struct fio_file *);
165extern int __must_check put_file(struct thread_data *, struct fio_file *);
Jens Axboee8462bd2009-07-06 12:59:04 +0200166extern void put_file_log(struct thread_data *, struct fio_file *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200167extern void lock_file(struct thread_data *, struct fio_file *, enum fio_ddir);
168extern void unlock_file(struct thread_data *, struct fio_file *);
169extern void unlock_file_all(struct thread_data *, struct fio_file *);
170extern int add_dir_files(struct thread_data *, const char *);
171extern int init_random_map(struct thread_data *);
172extern void dup_files(struct thread_data *, struct thread_data *);
173extern int get_fileno(struct thread_data *, const char *);
174extern void free_release_files(struct thread_data *);
175
Jens Axboec592b9f2009-06-03 09:29:28 +0200176static inline void fio_file_reset(struct fio_file *f)
177{
Jens Axboec592b9f2009-06-03 09:29:28 +0200178 f->last_pos = f->file_offset;
Jens Axboe38dad622010-07-20 14:46:00 -0600179 f->last_start = -1ULL;
Jens Axboee943b872010-02-02 09:48:13 +0100180 f->file_pos = -1ULL;
Jens Axboe51ede0b2012-11-22 13:50:29 +0100181 if (f->io_bitmap)
182 bitmap_reset(f->io_bitmap);
Jens Axboec592b9f2009-06-03 09:29:28 +0200183}
184
Jens Axboed6aed792009-06-03 08:41:15 +0200185#endif