Add vsync io engine
[fio.git] / engines / libaio.c
CommitLineData
2866c82d 1/*
da751ca9
JA
2 * libaio engine
3 *
4 * IO engine using the Linux native aio interface.
2866c82d
JA
5 *
6 */
7#include <stdio.h>
8#include <stdlib.h>
9#include <unistd.h>
10#include <errno.h>
11#include <assert.h>
5f350952
JA
12
13#include "../fio.h"
2866c82d 14
34cfcdaf
JA
15#ifdef FIO_HAVE_LIBAIO
16
2866c82d
JA
17#define ev_to_iou(ev) (struct io_u *) ((unsigned long) (ev)->obj)
18
19struct libaio_data {
20 io_context_t aio_ctx;
21 struct io_event *aio_events;
755200a3 22 struct iocb **iocbs;
7e77dd02 23 struct io_u **io_us;
755200a3 24 int iocbs_nr;
2866c82d
JA
25};
26
7a16dd02 27static int fio_libaio_prep(struct thread_data fio_unused *td, struct io_u *io_u)
2866c82d 28{
53cdc686
JA
29 struct fio_file *f = io_u->file;
30
2866c82d 31 if (io_u->ddir == DDIR_READ)
cec6b55d 32 io_prep_pread(&io_u->iocb, f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
87dc1ab1 33 else if (io_u->ddir == DDIR_WRITE)
cec6b55d 34 io_prep_pwrite(&io_u->iocb, f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
87dc1ab1
JA
35 else if (io_u->ddir == DDIR_SYNC)
36 io_prep_fsync(&io_u->iocb, f->fd);
37 else
38 return 1;
2866c82d
JA
39
40 return 0;
41}
42
43static struct io_u *fio_libaio_event(struct thread_data *td, int event)
44{
45 struct libaio_data *ld = td->io_ops->data;
f423479d
JA
46 struct io_event *ev;
47 struct io_u *io_u;
2866c82d 48
f423479d
JA
49 ev = ld->aio_events + event;
50 io_u = ev_to_iou(ev);
51
52 if (ev->res != io_u->xfer_buflen) {
53 if (ev->res > io_u->xfer_buflen)
54 io_u->error = -ev->res;
55 else
56 io_u->resid = io_u->xfer_buflen - ev->res;
57 } else
58 io_u->error = 0;
59
60 return io_u;
2866c82d
JA
61}
62
e7d2e616
JA
63static int fio_libaio_getevents(struct thread_data *td, unsigned int min,
64 unsigned int max, struct timespec *t)
2866c82d
JA
65{
66 struct libaio_data *ld = td->io_ops->data;
67 long r;
68
69 do {
70 r = io_getevents(ld->aio_ctx, min, max, ld->aio_events, t);
ccbb91cb
JA
71 if (r >= min)
72 break;
73 else if (r == -EAGAIN) {
2866c82d
JA
74 usleep(100);
75 continue;
76 } else if (r == -EINTR)
77 continue;
84585003 78 else if (r != 0)
2866c82d
JA
79 break;
80 } while (1);
81
22819ec2 82 return r;
2866c82d
JA
83}
84
85static int fio_libaio_queue(struct thread_data *td, struct io_u *io_u)
86{
87 struct libaio_data *ld = td->io_ops->data;
2866c82d 88
7101d9c2
JA
89 fio_ro_check(td, io_u);
90
2dc1bbeb 91 if (ld->iocbs_nr == (int) td->o.iodepth)
755200a3
JA
92 return FIO_Q_BUSY;
93
94 /*
95 * fsync is tricky, since it can fail and we need to do it
96 * serialized with other io. the reason is that linux doesn't
97 * support aio fsync yet. So return busy for the case where we
98 * have pending io, to let fio complete those first.
99 */
100 if (io_u->ddir == DDIR_SYNC) {
101 if (ld->iocbs_nr)
102 return FIO_Q_BUSY;
103 if (fsync(io_u->file->fd) < 0)
104 io_u->error = errno;
105
106 return FIO_Q_COMPLETED;
107 }
108
109 ld->iocbs[ld->iocbs_nr] = &io_u->iocb;
7e77dd02 110 ld->io_us[ld->iocbs_nr] = io_u;
755200a3
JA
111 ld->iocbs_nr++;
112 return FIO_Q_QUEUED;
113}
114
7e77dd02
JA
115static void fio_libaio_queued(struct thread_data *td, struct io_u **io_us,
116 unsigned int nr)
117{
118 struct timeval now;
119 unsigned int i;
120
121 fio_gettime(&now, NULL);
122
123 for (i = 0; i < nr; i++) {
124 struct io_u *io_u = io_us[i];
125
126 memcpy(&io_u->issue_time, &now, sizeof(now));
127 io_u_queued(td, io_u);
128 }
129}
130
755200a3
JA
131static int fio_libaio_commit(struct thread_data *td)
132{
133 struct libaio_data *ld = td->io_ops->data;
134 struct iocb **iocbs;
7e77dd02 135 struct io_u **io_us;
5e00c2c4 136 int ret;
755200a3
JA
137
138 if (!ld->iocbs_nr)
139 return 0;
140
7e77dd02 141 io_us = ld->io_us;
755200a3 142 iocbs = ld->iocbs;
2866c82d 143 do {
5e00c2c4
JA
144 ret = io_submit(ld->aio_ctx, ld->iocbs_nr, iocbs);
145 if (ret > 0) {
7e77dd02 146 fio_libaio_queued(td, io_us, ret);
5e00c2c4 147 ld->iocbs_nr -= ret;
7e77dd02 148 io_us += ret;
755200a3 149 iocbs += ret;
5e00c2c4
JA
150 ret = 0;
151 } else if (!ret || ret == -EAGAIN || ret == -EINTR)
2866c82d 152 continue;
755200a3 153 else
2866c82d 154 break;
5e00c2c4 155 } while (ld->iocbs_nr);
2866c82d 156
36167d82 157 return ret;
2866c82d
JA
158}
159
160static int fio_libaio_cancel(struct thread_data *td, struct io_u *io_u)
161{
162 struct libaio_data *ld = td->io_ops->data;
163
164 return io_cancel(ld->aio_ctx, &io_u->iocb, ld->aio_events);
165}
166
167static void fio_libaio_cleanup(struct thread_data *td)
168{
169 struct libaio_data *ld = td->io_ops->data;
170
171 if (ld) {
172 io_destroy(ld->aio_ctx);
7e77dd02
JA
173 free(ld->aio_events);
174 free(ld->iocbs);
175 free(ld->io_us);
2866c82d
JA
176 free(ld);
177 td->io_ops->data = NULL;
178 }
179}
180
181static int fio_libaio_init(struct thread_data *td)
182{
183 struct libaio_data *ld = malloc(sizeof(*ld));
7d059f88 184 static int warn_print;
c1db2dce 185 int err;
2866c82d 186
7d059f88
JA
187 if (td->o.iodepth > 1 && !td->o.odirect && !warn_print) {
188 log_info("fio: libaio engine is only async for non-buffered IO\n");
189 warn_print = 1;
190 }
191
2866c82d 192 memset(ld, 0, sizeof(*ld));
c1db2dce
JA
193
194 err = io_queue_init(td->o.iodepth, &ld->aio_ctx);
195 if (err) {
196 td_verror(td, -err, "io_queue_init");
cb781c75 197 free(ld);
2866c82d
JA
198 return 1;
199 }
200
2dc1bbeb
JA
201 ld->aio_events = malloc(td->o.iodepth * sizeof(struct io_event));
202 memset(ld->aio_events, 0, td->o.iodepth * sizeof(struct io_event));
203 ld->iocbs = malloc(td->o.iodepth * sizeof(struct iocb *));
755200a3 204 memset(ld->iocbs, 0, sizeof(struct iocb *));
2dc1bbeb
JA
205 ld->io_us = malloc(td->o.iodepth * sizeof(struct io_u *));
206 memset(ld->io_us, 0, td->o.iodepth * sizeof(struct io_u *));
755200a3
JA
207 ld->iocbs_nr = 0;
208
2866c82d
JA
209 td->io_ops->data = ld;
210 return 0;
211}
212
5f350952 213static struct ioengine_ops ioengine = {
2866c82d
JA
214 .name = "libaio",
215 .version = FIO_IOOPS_VERSION,
216 .init = fio_libaio_init,
217 .prep = fio_libaio_prep,
218 .queue = fio_libaio_queue,
755200a3 219 .commit = fio_libaio_commit,
2866c82d
JA
220 .cancel = fio_libaio_cancel,
221 .getevents = fio_libaio_getevents,
222 .event = fio_libaio_event,
223 .cleanup = fio_libaio_cleanup,
b5af8293
JA
224 .open_file = generic_open_file,
225 .close_file = generic_close_file,
2866c82d 226};
34cfcdaf
JA
227
228#else /* FIO_HAVE_LIBAIO */
229
230/*
231 * When we have a proper configure system in place, we simply wont build
232 * and install this io engine. For now install a crippled version that
233 * just complains and fails to load.
234 */
235static int fio_libaio_init(struct thread_data fio_unused *td)
236{
237 fprintf(stderr, "fio: libaio not available\n");
238 return 1;
239}
240
5f350952 241static struct ioengine_ops ioengine = {
34cfcdaf
JA
242 .name = "libaio",
243 .version = FIO_IOOPS_VERSION,
244 .init = fio_libaio_init,
245};
246
247#endif
5f350952
JA
248
249static void fio_init fio_libaio_register(void)
250{
251 register_ioengine(&ioengine);
252}
253
254static void fio_exit fio_libaio_unregister(void)
255{
256 unregister_ioengine(&ioengine);
257}