Fio 1.40
[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);
5f9099ea 35 else if (ddir_sync(io_u->ddir))
87dc1ab1
JA
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;
de9937d1 67 int r;
2866c82d
JA
68
69 do {
70 r = io_getevents(ld->aio_ctx, min, max, ld->aio_events, t);
de9937d1 71 if (r >= (int) min)
ccbb91cb
JA
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 */
f011531e 100 if (ddir_sync(io_u->ddir)) {
755200a3
JA
101 if (ld->iocbs_nr)
102 return FIO_Q_BUSY;
5f9099ea 103
f011531e 104 do_io_u_sync(td, io_u);
755200a3
JA
105 return FIO_Q_COMPLETED;
106 }
107
108 ld->iocbs[ld->iocbs_nr] = &io_u->iocb;
7e77dd02 109 ld->io_us[ld->iocbs_nr] = io_u;
755200a3
JA
110 ld->iocbs_nr++;
111 return FIO_Q_QUEUED;
112}
113
7e77dd02
JA
114static void fio_libaio_queued(struct thread_data *td, struct io_u **io_us,
115 unsigned int nr)
116{
117 struct timeval now;
118 unsigned int i;
119
12d9d841
JA
120 if (!fio_fill_issue_time(td))
121 return;
122
7e77dd02
JA
123 fio_gettime(&now, NULL);
124
125 for (i = 0; i < nr; i++) {
126 struct io_u *io_u = io_us[i];
127
128 memcpy(&io_u->issue_time, &now, sizeof(now));
129 io_u_queued(td, io_u);
130 }
131}
132
755200a3
JA
133static int fio_libaio_commit(struct thread_data *td)
134{
135 struct libaio_data *ld = td->io_ops->data;
136 struct iocb **iocbs;
7e77dd02 137 struct io_u **io_us;
5e00c2c4 138 int ret;
755200a3
JA
139
140 if (!ld->iocbs_nr)
141 return 0;
142
7e77dd02 143 io_us = ld->io_us;
755200a3 144 iocbs = ld->iocbs;
2866c82d 145 do {
5e00c2c4
JA
146 ret = io_submit(ld->aio_ctx, ld->iocbs_nr, iocbs);
147 if (ret > 0) {
7e77dd02 148 fio_libaio_queued(td, io_us, ret);
838bc709 149 io_u_mark_submit(td, ret);
5e00c2c4 150 ld->iocbs_nr -= ret;
7e77dd02 151 io_us += ret;
755200a3 152 iocbs += ret;
5e00c2c4 153 ret = 0;
838bc709
JA
154 } else if (!ret || ret == -EAGAIN || ret == -EINTR) {
155 if (!ret)
156 io_u_mark_submit(td, ret);
2866c82d 157 continue;
838bc709 158 } else
2866c82d 159 break;
5e00c2c4 160 } while (ld->iocbs_nr);
2866c82d 161
36167d82 162 return ret;
2866c82d
JA
163}
164
165static int fio_libaio_cancel(struct thread_data *td, struct io_u *io_u)
166{
167 struct libaio_data *ld = td->io_ops->data;
168
169 return io_cancel(ld->aio_ctx, &io_u->iocb, ld->aio_events);
170}
171
172static void fio_libaio_cleanup(struct thread_data *td)
173{
174 struct libaio_data *ld = td->io_ops->data;
175
176 if (ld) {
177 io_destroy(ld->aio_ctx);
7e77dd02
JA
178 free(ld->aio_events);
179 free(ld->iocbs);
180 free(ld->io_us);
2866c82d 181 free(ld);
2866c82d
JA
182 }
183}
184
185static int fio_libaio_init(struct thread_data *td)
186{
187 struct libaio_data *ld = malloc(sizeof(*ld));
c1db2dce 188 int err;
2866c82d
JA
189
190 memset(ld, 0, sizeof(*ld));
c1db2dce
JA
191
192 err = io_queue_init(td->o.iodepth, &ld->aio_ctx);
193 if (err) {
194 td_verror(td, -err, "io_queue_init");
75de55ac 195 log_err("fio: check /proc/sys/fs/aio-max-nr\n");
cb781c75 196 free(ld);
2866c82d
JA
197 return 1;
198 }
199
2dc1bbeb
JA
200 ld->aio_events = malloc(td->o.iodepth * sizeof(struct io_event));
201 memset(ld->aio_events, 0, td->o.iodepth * sizeof(struct io_event));
202 ld->iocbs = malloc(td->o.iodepth * sizeof(struct iocb *));
755200a3 203 memset(ld->iocbs, 0, sizeof(struct iocb *));
2dc1bbeb
JA
204 ld->io_us = malloc(td->o.iodepth * sizeof(struct io_u *));
205 memset(ld->io_us, 0, td->o.iodepth * sizeof(struct io_u *));
755200a3
JA
206 ld->iocbs_nr = 0;
207
2866c82d
JA
208 td->io_ops->data = ld;
209 return 0;
210}
211
5f350952 212static struct ioengine_ops ioengine = {
2866c82d
JA
213 .name = "libaio",
214 .version = FIO_IOOPS_VERSION,
215 .init = fio_libaio_init,
216 .prep = fio_libaio_prep,
217 .queue = fio_libaio_queue,
755200a3 218 .commit = fio_libaio_commit,
2866c82d
JA
219 .cancel = fio_libaio_cancel,
220 .getevents = fio_libaio_getevents,
221 .event = fio_libaio_event,
222 .cleanup = fio_libaio_cleanup,
b5af8293
JA
223 .open_file = generic_open_file,
224 .close_file = generic_close_file,
df9c26b1 225 .get_file_size = generic_get_file_size,
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}