Full readonly check
[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
63static int fio_libaio_getevents(struct thread_data *td, int min, int max,
64 struct timespec *t)
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;
755200a3
JA
136 int ret, iocbs_nr;
137
138 if (!ld->iocbs_nr)
139 return 0;
140
141 iocbs_nr = ld->iocbs_nr;
7e77dd02 142 io_us = ld->io_us;
755200a3 143 iocbs = ld->iocbs;
2866c82d 144 do {
755200a3
JA
145 ret = io_submit(ld->aio_ctx, iocbs_nr, iocbs);
146 if (ret == iocbs_nr) {
7e77dd02 147 fio_libaio_queued(td, io_us, ret);
755200a3
JA
148 ret = 0;
149 break;
150 } else if (ret > 0) {
7e77dd02
JA
151 fio_libaio_queued(td, io_us, ret);
152 io_us += ret;
755200a3
JA
153 iocbs += ret;
154 iocbs_nr -= ret;
155 continue;
156 } else if (ret == -EAGAIN || !ret)
2866c82d
JA
157 usleep(100);
158 else if (ret == -EINTR)
159 continue;
755200a3 160 else
2866c82d
JA
161 break;
162 } while (1);
163
755200a3
JA
164 if (!ret)
165 ld->iocbs_nr = 0;
2866c82d 166
36167d82 167 return ret;
2866c82d
JA
168}
169
170static int fio_libaio_cancel(struct thread_data *td, struct io_u *io_u)
171{
172 struct libaio_data *ld = td->io_ops->data;
173
174 return io_cancel(ld->aio_ctx, &io_u->iocb, ld->aio_events);
175}
176
177static void fio_libaio_cleanup(struct thread_data *td)
178{
179 struct libaio_data *ld = td->io_ops->data;
180
181 if (ld) {
182 io_destroy(ld->aio_ctx);
7e77dd02
JA
183 free(ld->aio_events);
184 free(ld->iocbs);
185 free(ld->io_us);
2866c82d
JA
186 free(ld);
187 td->io_ops->data = NULL;
188 }
189}
190
191static int fio_libaio_init(struct thread_data *td)
192{
193 struct libaio_data *ld = malloc(sizeof(*ld));
7d059f88 194 static int warn_print;
c1db2dce 195 int err;
2866c82d 196
7d059f88
JA
197 if (td->o.iodepth > 1 && !td->o.odirect && !warn_print) {
198 log_info("fio: libaio engine is only async for non-buffered IO\n");
199 warn_print = 1;
200 }
201
2866c82d 202 memset(ld, 0, sizeof(*ld));
c1db2dce
JA
203
204 err = io_queue_init(td->o.iodepth, &ld->aio_ctx);
205 if (err) {
206 td_verror(td, -err, "io_queue_init");
cb781c75 207 free(ld);
2866c82d
JA
208 return 1;
209 }
210
2dc1bbeb
JA
211 ld->aio_events = malloc(td->o.iodepth * sizeof(struct io_event));
212 memset(ld->aio_events, 0, td->o.iodepth * sizeof(struct io_event));
213 ld->iocbs = malloc(td->o.iodepth * sizeof(struct iocb *));
755200a3 214 memset(ld->iocbs, 0, sizeof(struct iocb *));
2dc1bbeb
JA
215 ld->io_us = malloc(td->o.iodepth * sizeof(struct io_u *));
216 memset(ld->io_us, 0, td->o.iodepth * sizeof(struct io_u *));
755200a3
JA
217 ld->iocbs_nr = 0;
218
2866c82d
JA
219 td->io_ops->data = ld;
220 return 0;
221}
222
5f350952 223static struct ioengine_ops ioengine = {
2866c82d
JA
224 .name = "libaio",
225 .version = FIO_IOOPS_VERSION,
226 .init = fio_libaio_init,
227 .prep = fio_libaio_prep,
228 .queue = fio_libaio_queue,
755200a3 229 .commit = fio_libaio_commit,
2866c82d
JA
230 .cancel = fio_libaio_cancel,
231 .getevents = fio_libaio_getevents,
232 .event = fio_libaio_event,
233 .cleanup = fio_libaio_cleanup,
b5af8293
JA
234 .open_file = generic_open_file,
235 .close_file = generic_close_file,
2866c82d 236};
34cfcdaf
JA
237
238#else /* FIO_HAVE_LIBAIO */
239
240/*
241 * When we have a proper configure system in place, we simply wont build
242 * and install this io engine. For now install a crippled version that
243 * just complains and fails to load.
244 */
245static int fio_libaio_init(struct thread_data fio_unused *td)
246{
247 fprintf(stderr, "fio: libaio not available\n");
248 return 1;
249}
250
5f350952 251static struct ioengine_ops ioengine = {
34cfcdaf
JA
252 .name = "libaio",
253 .version = FIO_IOOPS_VERSION,
254 .init = fio_libaio_init,
255};
256
257#endif
5f350952
JA
258
259static void fio_init fio_libaio_register(void)
260{
261 register_ioengine(&ioengine);
262}
263
264static void fio_exit fio_libaio_unregister(void)
265{
266 unregister_ioengine(&ioengine);
267}