blob: bc9c42877fdaaadf98d1c5ab51520c4e85d3903b [file] [log] [blame]
Jens Axboe2866c822006-10-09 15:57:48 +02001/*
2 * native linux aio io engine
3 *
4 */
5#include <stdio.h>
6#include <stdlib.h>
7#include <unistd.h>
8#include <errno.h>
9#include <assert.h>
Jens Axboe5f350952006-11-07 15:20:59 +010010
11#include "../fio.h"
12#include "../os.h"
Jens Axboe2866c822006-10-09 15:57:48 +020013
Jens Axboe34cfcda2006-11-03 14:00:45 +010014#ifdef FIO_HAVE_LIBAIO
15
Jens Axboe2866c822006-10-09 15:57:48 +020016#define ev_to_iou(ev) (struct io_u *) ((unsigned long) (ev)->obj)
17
18struct libaio_data {
19 io_context_t aio_ctx;
20 struct io_event *aio_events;
Jens Axboe755200a2007-02-19 13:08:12 +010021 struct iocb **iocbs;
Jens Axboe7e77dd02007-02-20 10:57:34 +010022 struct io_u **io_us;
Jens Axboe755200a2007-02-19 13:08:12 +010023 int iocbs_nr;
Jens Axboe2866c822006-10-09 15:57:48 +020024};
25
Jens Axboe7a16dd02006-10-18 17:21:58 +020026static int fio_libaio_prep(struct thread_data fio_unused *td, struct io_u *io_u)
Jens Axboe2866c822006-10-09 15:57:48 +020027{
Jens Axboe53cdc682006-10-18 11:50:58 +020028 struct fio_file *f = io_u->file;
29
Jens Axboe2866c822006-10-09 15:57:48 +020030 if (io_u->ddir == DDIR_READ)
Jens Axboecec6b552007-02-06 20:15:38 +010031 io_prep_pread(&io_u->iocb, f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
Jens Axboe87dc1ab2006-10-24 14:41:26 +020032 else if (io_u->ddir == DDIR_WRITE)
Jens Axboecec6b552007-02-06 20:15:38 +010033 io_prep_pwrite(&io_u->iocb, f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
Jens Axboe87dc1ab2006-10-24 14:41:26 +020034 else if (io_u->ddir == DDIR_SYNC)
35 io_prep_fsync(&io_u->iocb, f->fd);
36 else
37 return 1;
Jens Axboe2866c822006-10-09 15:57:48 +020038
39 return 0;
40}
41
42static struct io_u *fio_libaio_event(struct thread_data *td, int event)
43{
44 struct libaio_data *ld = td->io_ops->data;
Jens Axboef4234792007-03-02 15:16:03 +010045 struct io_event *ev;
46 struct io_u *io_u;
Jens Axboe2866c822006-10-09 15:57:48 +020047
Jens Axboef4234792007-03-02 15:16:03 +010048 ev = ld->aio_events + event;
49 io_u = ev_to_iou(ev);
50
51 if (ev->res != io_u->xfer_buflen) {
52 if (ev->res > io_u->xfer_buflen)
53 io_u->error = -ev->res;
54 else
55 io_u->resid = io_u->xfer_buflen - ev->res;
56 } else
57 io_u->error = 0;
58
59 return io_u;
Jens Axboe2866c822006-10-09 15:57:48 +020060}
61
62static int fio_libaio_getevents(struct thread_data *td, int min, int max,
63 struct timespec *t)
64{
65 struct libaio_data *ld = td->io_ops->data;
66 long r;
67
68 do {
69 r = io_getevents(ld->aio_ctx, min, max, ld->aio_events, t);
Jens Axboeccbb91c2007-01-08 22:27:05 +010070 if (r >= min)
71 break;
72 else if (r == -EAGAIN) {
Jens Axboe2866c822006-10-09 15:57:48 +020073 usleep(100);
74 continue;
75 } else if (r == -EINTR)
76 continue;
Jens Axboe84585002006-10-19 20:26:22 +020077 else if (r != 0)
Jens Axboe2866c822006-10-09 15:57:48 +020078 break;
79 } while (1);
80
Jens Axboe22819ec2007-02-18 07:47:14 +010081 return r;
Jens Axboe2866c822006-10-09 15:57:48 +020082}
83
84static int fio_libaio_queue(struct thread_data *td, struct io_u *io_u)
85{
86 struct libaio_data *ld = td->io_ops->data;
Jens Axboe2866c822006-10-09 15:57:48 +020087
Jens Axboe755200a2007-02-19 13:08:12 +010088 if (ld->iocbs_nr == (int) td->iodepth)
89 return FIO_Q_BUSY;
90
91 /*
92 * fsync is tricky, since it can fail and we need to do it
93 * serialized with other io. the reason is that linux doesn't
94 * support aio fsync yet. So return busy for the case where we
95 * have pending io, to let fio complete those first.
96 */
97 if (io_u->ddir == DDIR_SYNC) {
98 if (ld->iocbs_nr)
99 return FIO_Q_BUSY;
100 if (fsync(io_u->file->fd) < 0)
101 io_u->error = errno;
102
103 return FIO_Q_COMPLETED;
104 }
105
106 ld->iocbs[ld->iocbs_nr] = &io_u->iocb;
Jens Axboe7e77dd02007-02-20 10:57:34 +0100107 ld->io_us[ld->iocbs_nr] = io_u;
Jens Axboe755200a2007-02-19 13:08:12 +0100108 ld->iocbs_nr++;
109 return FIO_Q_QUEUED;
110}
111
Jens Axboe7e77dd02007-02-20 10:57:34 +0100112static void fio_libaio_queued(struct thread_data *td, struct io_u **io_us,
113 unsigned int nr)
114{
115 struct timeval now;
116 unsigned int i;
117
118 fio_gettime(&now, NULL);
119
120 for (i = 0; i < nr; i++) {
121 struct io_u *io_u = io_us[i];
122
123 memcpy(&io_u->issue_time, &now, sizeof(now));
124 io_u_queued(td, io_u);
125 }
126}
127
Jens Axboe755200a2007-02-19 13:08:12 +0100128static int fio_libaio_commit(struct thread_data *td)
129{
130 struct libaio_data *ld = td->io_ops->data;
131 struct iocb **iocbs;
Jens Axboe7e77dd02007-02-20 10:57:34 +0100132 struct io_u **io_us;
Jens Axboe755200a2007-02-19 13:08:12 +0100133 int ret, iocbs_nr;
134
135 if (!ld->iocbs_nr)
136 return 0;
137
138 iocbs_nr = ld->iocbs_nr;
Jens Axboe7e77dd02007-02-20 10:57:34 +0100139 io_us = ld->io_us;
Jens Axboe755200a2007-02-19 13:08:12 +0100140 iocbs = ld->iocbs;
Jens Axboe2866c822006-10-09 15:57:48 +0200141 do {
Jens Axboe755200a2007-02-19 13:08:12 +0100142 ret = io_submit(ld->aio_ctx, iocbs_nr, iocbs);
143 if (ret == iocbs_nr) {
Jens Axboe7e77dd02007-02-20 10:57:34 +0100144 fio_libaio_queued(td, io_us, ret);
Jens Axboe755200a2007-02-19 13:08:12 +0100145 ret = 0;
146 break;
147 } else if (ret > 0) {
Jens Axboe7e77dd02007-02-20 10:57:34 +0100148 fio_libaio_queued(td, io_us, ret);
149 io_us += ret;
Jens Axboe755200a2007-02-19 13:08:12 +0100150 iocbs += ret;
151 iocbs_nr -= ret;
152 continue;
153 } else if (ret == -EAGAIN || !ret)
Jens Axboe2866c822006-10-09 15:57:48 +0200154 usleep(100);
155 else if (ret == -EINTR)
156 continue;
Jens Axboe755200a2007-02-19 13:08:12 +0100157 else
Jens Axboe2866c822006-10-09 15:57:48 +0200158 break;
159 } while (1);
160
Jens Axboe755200a2007-02-19 13:08:12 +0100161 if (!ret)
162 ld->iocbs_nr = 0;
Jens Axboe2866c822006-10-09 15:57:48 +0200163
Jens Axboe36167d82007-02-18 05:41:31 +0100164 return ret;
Jens Axboe2866c822006-10-09 15:57:48 +0200165}
166
167static int fio_libaio_cancel(struct thread_data *td, struct io_u *io_u)
168{
169 struct libaio_data *ld = td->io_ops->data;
170
171 return io_cancel(ld->aio_ctx, &io_u->iocb, ld->aio_events);
172}
173
174static void fio_libaio_cleanup(struct thread_data *td)
175{
176 struct libaio_data *ld = td->io_ops->data;
177
178 if (ld) {
179 io_destroy(ld->aio_ctx);
Jens Axboe7e77dd02007-02-20 10:57:34 +0100180 free(ld->aio_events);
181 free(ld->iocbs);
182 free(ld->io_us);
Jens Axboe2866c822006-10-09 15:57:48 +0200183 free(ld);
184 td->io_ops->data = NULL;
185 }
186}
187
188static int fio_libaio_init(struct thread_data *td)
189{
190 struct libaio_data *ld = malloc(sizeof(*ld));
191
192 memset(ld, 0, sizeof(*ld));
193 if (io_queue_init(td->iodepth, &ld->aio_ctx)) {
Jens Axboee1161c32007-02-22 19:36:48 +0100194 td_verror(td, errno, "io_queue_init");
Jens Axboecb781c72006-11-07 14:02:48 +0100195 free(ld);
Jens Axboe2866c822006-10-09 15:57:48 +0200196 return 1;
197 }
198
199 ld->aio_events = malloc(td->iodepth * sizeof(struct io_event));
Jens Axboe84585002006-10-19 20:26:22 +0200200 memset(ld->aio_events, 0, td->iodepth * sizeof(struct io_event));
Jens Axboe755200a2007-02-19 13:08:12 +0100201 ld->iocbs = malloc(td->iodepth * sizeof(struct iocb *));
202 memset(ld->iocbs, 0, sizeof(struct iocb *));
Jens Axboe7e77dd02007-02-20 10:57:34 +0100203 ld->io_us = malloc(td->iodepth * sizeof(struct io_u *));
204 memset(ld->io_us, 0, td->iodepth * sizeof(struct io_u *));
Jens Axboe755200a2007-02-19 13:08:12 +0100205 ld->iocbs_nr = 0;
206
Jens Axboe2866c822006-10-09 15:57:48 +0200207 td->io_ops->data = ld;
208 return 0;
209}
210
Jens Axboe5f350952006-11-07 15:20:59 +0100211static struct ioengine_ops ioengine = {
Jens Axboe2866c822006-10-09 15:57:48 +0200212 .name = "libaio",
213 .version = FIO_IOOPS_VERSION,
214 .init = fio_libaio_init,
215 .prep = fio_libaio_prep,
216 .queue = fio_libaio_queue,
Jens Axboe755200a2007-02-19 13:08:12 +0100217 .commit = fio_libaio_commit,
Jens Axboe2866c822006-10-09 15:57:48 +0200218 .cancel = fio_libaio_cancel,
219 .getevents = fio_libaio_getevents,
220 .event = fio_libaio_event,
221 .cleanup = fio_libaio_cleanup,
Jens Axboe2866c822006-10-09 15:57:48 +0200222};
Jens Axboe34cfcda2006-11-03 14:00:45 +0100223
224#else /* FIO_HAVE_LIBAIO */
225
226/*
227 * When we have a proper configure system in place, we simply wont build
228 * and install this io engine. For now install a crippled version that
229 * just complains and fails to load.
230 */
231static int fio_libaio_init(struct thread_data fio_unused *td)
232{
233 fprintf(stderr, "fio: libaio not available\n");
234 return 1;
235}
236
Jens Axboe5f350952006-11-07 15:20:59 +0100237static struct ioengine_ops ioengine = {
Jens Axboe34cfcda2006-11-03 14:00:45 +0100238 .name = "libaio",
239 .version = FIO_IOOPS_VERSION,
240 .init = fio_libaio_init,
241};
242
243#endif
Jens Axboe5f350952006-11-07 15:20:59 +0100244
245static void fio_init fio_libaio_register(void)
246{
247 register_ioengine(&ioengine);
248}
249
250static void fio_exit fio_libaio_unregister(void)
251{
252 unregister_ioengine(&ioengine);
253}