goptions: ensure that gopt_str_multi options get freed
[fio.git] / ioengine.h
CommitLineData
dcefb588
JA
1#ifndef FIO_IOENGINE_H
2#define FIO_IOENGINE_H
3
41666588
JA
4#include "compiler/compiler.h"
5#include "io_ddir.h"
ec41265e 6#include "debug.h"
41666588 7#include "file.h"
ec41265e 8
de890a1e 9#define FIO_IOOPS_VERSION 13
dcefb588
JA
10
11enum {
0c41214f
RR
12 IO_U_F_FREE = 1 << 0,
13 IO_U_F_FLIGHT = 1 << 1,
14 IO_U_F_FREE_DEF = 1 << 2,
15 IO_U_F_IN_CUR_DEPTH = 1 << 3,
38dad62d 16 IO_U_F_BUSY_OK = 1 << 4,
0d29de83 17 IO_U_F_TRIMMED = 1 << 5,
1ef2b6be 18 IO_U_F_BARRIER = 1 << 6,
82af2a7c 19 IO_U_F_VER_LIST = 1 << 7,
dcefb588
JA
20};
21
41666588
JA
22struct thread_data;
23
dcefb588
JA
24/*
25 * The io unit
26 */
27struct io_u {
28 union {
29#ifdef FIO_HAVE_LIBAIO
30 struct iocb iocb;
31#endif
32#ifdef FIO_HAVE_POSIXAIO
e97c1442 33 os_aiocb_t aiocb;
dcefb588
JA
34#endif
35#ifdef FIO_HAVE_SGIO
36 struct sg_io_hdr hdr;
37#endif
38#ifdef FIO_HAVE_GUASI
39 guasi_req_t greq;
40#endif
41#ifdef FIO_HAVE_SOLARISAIO
42 aio_result_t resultp;
79a43187
JA
43#endif
44#ifdef FIO_HAVE_BINJECT
45 struct b_user_cmd buc;
21b8aee8 46#endif
47#ifdef FIO_HAVE_RDMA
48 struct ibv_mr *mr;
dcefb588
JA
49#endif
50 void *mmap_data;
51 };
52 struct timeval start_time;
53 struct timeval issue_time;
54
55 /*
56 * Allocated/set buffer and length
57 */
58 void *buf;
59 unsigned long buflen;
60 unsigned long long offset;
61
7d9fb455
JA
62 /*
63 * Initial seed for generating the buffer contents
64 */
65 unsigned long rand_seed;
66
dcefb588
JA
67 /*
68 * IO engine state, may be different from above when we get
69 * partial transfers / residual data counts
70 */
71 void *xfer_buf;
72 unsigned long xfer_buflen;
73
95228507
JA
74 /*
75 * Parameter related to pre-filled buffers and
76 * their size to handle variable block sizes.
77 */
78 unsigned long buf_filled_len;
79
dcefb588
JA
80 unsigned int resid;
81 unsigned int error;
82
83 enum fio_ddir ddir;
84
85 /*
86 * io engine private data
87 */
88 union {
89 unsigned int index;
90 unsigned int seen;
91 void *engine_data;
92 };
93
94 unsigned int flags;
95
96 struct fio_file *file;
97
98 struct flist_head list;
99
100 /*
101 * Callback for io completion
102 */
103 int (*end_io)(struct thread_data *, struct io_u *);
104};
105
106/*
107 * io_ops->queue() return values
108 */
109enum {
110 FIO_Q_COMPLETED = 0, /* completed sync */
111 FIO_Q_QUEUED = 1, /* queued, will complete async */
112 FIO_Q_BUSY = 2, /* no more room, call ->commit() */
113};
114
115struct ioengine_ops {
116 struct flist_head list;
117 char name[16];
118 int version;
119 int flags;
120 int (*setup)(struct thread_data *);
121 int (*init)(struct thread_data *);
122 int (*prep)(struct thread_data *, struct io_u *);
123 int (*queue)(struct thread_data *, struct io_u *);
124 int (*commit)(struct thread_data *);
125 int (*getevents)(struct thread_data *, unsigned int, unsigned int, struct timespec *);
126 struct io_u *(*event)(struct thread_data *, int);
127 int (*cancel)(struct thread_data *, struct io_u *);
128 void (*cleanup)(struct thread_data *);
129 int (*open_file)(struct thread_data *, struct fio_file *);
130 int (*close_file)(struct thread_data *, struct fio_file *);
131 int (*get_file_size)(struct thread_data *, struct fio_file *);
de890a1e
SL
132 int option_struct_size;
133 struct fio_option *options;
dcefb588
JA
134 void *data;
135 void *dlhandle;
136};
137
2b4f4abe
JA
138enum fio_ioengine_flags {
139 FIO_SYNCIO = 1 << 0, /* io engine has synchronous ->queue */
140 FIO_RAWIO = 1 << 1, /* some sort of direct/raw io */
141 FIO_DISKLESSIO = 1 << 2, /* no disk involved */
142 FIO_NOEXTEND = 1 << 3, /* engine can't extend file */
93bcfd20 143 FIO_NODISKUTIL = 1 << 4, /* diskutil can't handle filename */
2b4f4abe
JA
144 FIO_UNIDIR = 1 << 5, /* engine is uni-directional */
145 FIO_NOIO = 1 << 6, /* thread does only pseudo IO */
03e20d68 146 FIO_SIGTERM = 1 << 7, /* needs SIGTERM to exit */
9c0d2241 147 FIO_PIPEIO = 1 << 8, /* input/output no seekable */
1ef2b6be 148 FIO_BARRIER = 1 << 9, /* engine supports barriers */
ca7e0ddb 149 FIO_MEMALIGN = 1 << 10, /* engine wants aligned memory */
2b4f4abe 150};
dcefb588
JA
151
152/*
153 * io engine entry points
154 */
155extern int __must_check td_io_init(struct thread_data *);
156extern int __must_check td_io_prep(struct thread_data *, struct io_u *);
157extern int __must_check td_io_queue(struct thread_data *, struct io_u *);
158extern int __must_check td_io_sync(struct thread_data *, struct fio_file *);
159extern int __must_check td_io_getevents(struct thread_data *, unsigned int, unsigned int, struct timespec *);
160extern int __must_check td_io_commit(struct thread_data *);
161extern int __must_check td_io_open_file(struct thread_data *, struct fio_file *);
162extern int td_io_close_file(struct thread_data *, struct fio_file *);
163extern int __must_check td_io_get_file_size(struct thread_data *, struct fio_file *);
164
165extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
166extern void register_ioengine(struct ioengine_ops *);
167extern void unregister_ioengine(struct ioengine_ops *);
de890a1e 168extern void free_ioengine(struct thread_data *);
dcefb588
JA
169extern void close_ioengine(struct thread_data *);
170
de890a1e
SL
171extern int fio_show_ioengine_help(const char *engine);
172
dcefb588
JA
173/*
174 * io unit handling
175 */
176#define queue_full(td) flist_empty(&(td)->io_u_freelist)
177extern struct io_u *__get_io_u(struct thread_data *);
178extern struct io_u *get_io_u(struct thread_data *);
179extern void put_io_u(struct thread_data *, struct io_u *);
f2bba182 180extern void clear_io_u(struct thread_data *, struct io_u *);
dcefb588 181extern void requeue_io_u(struct thread_data *, struct io_u **);
581e7141
JA
182extern int __must_check io_u_sync_complete(struct thread_data *, struct io_u *, unsigned long *);
183extern int __must_check io_u_queued_complete(struct thread_data *, int, unsigned long *);
dcefb588
JA
184extern void io_u_queued(struct thread_data *, struct io_u *);
185extern void io_u_log_error(struct thread_data *, struct io_u *);
186extern void io_u_mark_depth(struct thread_data *, unsigned int);
9c42684e 187extern void io_u_fill_buffer(struct thread_data *td, struct io_u *, unsigned int, unsigned int);
dcefb588
JA
188void io_u_mark_complete(struct thread_data *, unsigned int);
189void io_u_mark_submit(struct thread_data *, unsigned int);
190
0a28ecda 191int do_io_u_sync(struct thread_data *, struct io_u *);
a5f3027c 192int do_io_u_trim(struct thread_data *, struct io_u *);
44f29692 193
c592b9fe
JA
194#ifdef FIO_INC_DEBUG
195static inline void dprint_io_u(struct io_u *io_u, const char *p)
196{
197 struct fio_file *f = io_u->file;
198
199 dprint(FD_IO, "%s: io_u %p: off=%llu/len=%lu/ddir=%d", p, io_u,
200 (unsigned long long) io_u->offset,
201 io_u->buflen, io_u->ddir);
202 if (fio_debug & (1 << FD_IO)) {
203 if (f)
204 log_info("/%s", f->file_name);
205
206 log_info("\n");
207 }
208}
209#else
210#define dprint_io_u(io_u, p)
211#endif
212
dcefb588 213#endif