blob: 4d1f3a311a18fb4ce6b6fad69258062abe785574 [file] [log] [blame]
Jens Axboe2866c822006-10-09 15:57:48 +02001/*
Jens Axboeda751ca2007-03-14 10:59:33 +01002 * libaio engine
3 *
4 * IO engine using the Linux native aio interface.
Jens Axboe2866c822006-10-09 15:57:48 +02005 *
6 */
7#include <stdio.h>
8#include <stdlib.h>
9#include <unistd.h>
10#include <errno.h>
11#include <assert.h>
Jens Axboe67bf9822013-01-10 11:23:19 +010012#include <libaio.h>
Jens Axboe5f350952006-11-07 15:20:59 +010013
14#include "../fio.h"
Jens Axboe2866c822006-10-09 15:57:48 +020015
Jens Axboe2866c822006-10-09 15:57:48 +020016struct libaio_data {
17 io_context_t aio_ctx;
18 struct io_event *aio_events;
Jens Axboe755200a2007-02-19 13:08:12 +010019 struct iocb **iocbs;
Jens Axboe7e77dd02007-02-20 10:57:34 +010020 struct io_u **io_us;
Jens Axboe755200a2007-02-19 13:08:12 +010021 int iocbs_nr;
Jens Axboe2866c822006-10-09 15:57:48 +020022};
23
Steven Langde890a12011-11-09 14:03:34 +010024struct libaio_options {
25 struct thread_data *td;
26 unsigned int userspace_reap;
27};
28
29static struct fio_option options[] = {
30 {
31 .name = "userspace_reap",
32 .type = FIO_OPT_STR_SET,
33 .off1 = offsetof(struct libaio_options, userspace_reap),
34 .help = "Use alternative user-space reap implementation",
35 },
36 {
37 .name = NULL,
38 },
39};
40
Jens Axboe7a16dd02006-10-18 17:21:58 +020041static int fio_libaio_prep(struct thread_data fio_unused *td, struct io_u *io_u)
Jens Axboe2866c822006-10-09 15:57:48 +020042{
Jens Axboe53cdc682006-10-18 11:50:58 +020043 struct fio_file *f = io_u->file;
44
Jens Axboe2866c822006-10-09 15:57:48 +020045 if (io_u->ddir == DDIR_READ)
Jens Axboecec6b552007-02-06 20:15:38 +010046 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 +020047 else if (io_u->ddir == DDIR_WRITE)
Jens Axboecec6b552007-02-06 20:15:38 +010048 io_prep_pwrite(&io_u->iocb, f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
Jens Axboe5f9099e2009-06-16 22:40:26 +020049 else if (ddir_sync(io_u->ddir))
Jens Axboe87dc1ab2006-10-24 14:41:26 +020050 io_prep_fsync(&io_u->iocb, f->fd);
Jens Axboe2866c822006-10-09 15:57:48 +020051
52 return 0;
53}
54
55static struct io_u *fio_libaio_event(struct thread_data *td, int event)
56{
57 struct libaio_data *ld = td->io_ops->data;
Jens Axboef4234792007-03-02 15:16:03 +010058 struct io_event *ev;
59 struct io_u *io_u;
Jens Axboe2866c822006-10-09 15:57:48 +020060
Jens Axboef4234792007-03-02 15:16:03 +010061 ev = ld->aio_events + event;
Jens Axboe0cc6ee52013-01-02 12:55:41 +010062 io_u = container_of(ev->obj, struct io_u, iocb);
Jens Axboef4234792007-03-02 15:16:03 +010063
64 if (ev->res != io_u->xfer_buflen) {
65 if (ev->res > io_u->xfer_buflen)
66 io_u->error = -ev->res;
67 else
68 io_u->resid = io_u->xfer_buflen - ev->res;
69 } else
70 io_u->error = 0;
71
72 return io_u;
Jens Axboe2866c822006-10-09 15:57:48 +020073}
74
Dan Ehrenberg675012f2011-08-30 20:36:15 -060075struct aio_ring {
76 unsigned id; /** kernel internal index number */
77 unsigned nr; /** number of io_events */
78 unsigned head;
79 unsigned tail;
Jens Axboec44b1ff2011-08-30 20:43:53 -060080
Dan Ehrenberg675012f2011-08-30 20:36:15 -060081 unsigned magic;
82 unsigned compat_features;
83 unsigned incompat_features;
84 unsigned header_length; /** size of aio_ring */
85
86 struct io_event events[0];
87};
88
89#define AIO_RING_MAGIC 0xa10a10a1
90
91static int user_io_getevents(io_context_t aio_ctx, unsigned int max,
Jens Axboec44b1ff2011-08-30 20:43:53 -060092 struct io_event *events)
Dan Ehrenberg675012f2011-08-30 20:36:15 -060093{
94 long i = 0;
95 unsigned head;
Jens Axboec44b1ff2011-08-30 20:43:53 -060096 struct aio_ring *ring = (struct aio_ring*) aio_ctx;
Dan Ehrenberg675012f2011-08-30 20:36:15 -060097
98 while (i < max) {
99 head = ring->head;
100
101 if (head == ring->tail) {
102 /* There are no more completions */
103 break;
104 } else {
105 /* There is another completion to reap */
106 events[i] = ring->events[head];
107 read_barrier();
Jens Axboec44b1ff2011-08-30 20:43:53 -0600108 ring->head = (head + 1) % ring->nr;
Dan Ehrenberg675012f2011-08-30 20:36:15 -0600109 i++;
110 }
111 }
112
113 return i;
114}
115
Jens Axboee7d2e612007-12-11 10:49:39 +0100116static int fio_libaio_getevents(struct thread_data *td, unsigned int min,
117 unsigned int max, struct timespec *t)
Jens Axboe2866c822006-10-09 15:57:48 +0200118{
119 struct libaio_data *ld = td->io_ops->data;
Steven Langde890a12011-11-09 14:03:34 +0100120 struct libaio_options *o = td->eo;
Dan Ehrenberg0b7fdba2011-07-23 13:36:46 +0200121 unsigned actual_min = td->o.iodepth_batch_complete == 0 ? 0 : min;
122 int r, events = 0;
Jens Axboe2866c822006-10-09 15:57:48 +0200123
124 do {
Steven Langde890a12011-11-09 14:03:34 +0100125 if (o->userspace_reap == 1
Dan Ehrenberg675012f2011-08-30 20:36:15 -0600126 && actual_min == 0
127 && ((struct aio_ring *)(ld->aio_ctx))->magic
128 == AIO_RING_MAGIC) {
129 r = user_io_getevents(ld->aio_ctx, max,
130 ld->aio_events + events);
131 } else {
132 r = io_getevents(ld->aio_ctx, actual_min,
133 max, ld->aio_events + events, t);
134 }
Dan Ehrenberg0b7fdba2011-07-23 13:36:46 +0200135 if (r >= 0)
136 events += r;
137 else if (r == -EAGAIN)
Jens Axboe2866c822006-10-09 15:57:48 +0200138 usleep(100);
Dan Ehrenberg0b7fdba2011-07-23 13:36:46 +0200139 } while (events < min);
Jens Axboe2866c822006-10-09 15:57:48 +0200140
Dan Ehrenberg0b7fdba2011-07-23 13:36:46 +0200141 return r < 0 ? r : events;
Jens Axboe2866c822006-10-09 15:57:48 +0200142}
143
144static int fio_libaio_queue(struct thread_data *td, struct io_u *io_u)
145{
146 struct libaio_data *ld = td->io_ops->data;
Jens Axboe2866c822006-10-09 15:57:48 +0200147
Jens Axboe7101d9c2007-09-12 13:12:39 +0200148 fio_ro_check(td, io_u);
149
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100150 if (ld->iocbs_nr == (int) td->o.iodepth)
Jens Axboe755200a2007-02-19 13:08:12 +0100151 return FIO_Q_BUSY;
152
153 /*
154 * fsync is tricky, since it can fail and we need to do it
155 * serialized with other io. the reason is that linux doesn't
156 * support aio fsync yet. So return busy for the case where we
157 * have pending io, to let fio complete those first.
158 */
Jens Axboef0115312010-03-09 21:47:15 +0100159 if (ddir_sync(io_u->ddir)) {
Jens Axboe755200a2007-02-19 13:08:12 +0100160 if (ld->iocbs_nr)
161 return FIO_Q_BUSY;
Jens Axboe755200a2007-02-19 13:08:12 +0100162
Jens Axboef0115312010-03-09 21:47:15 +0100163 do_io_u_sync(td, io_u);
Jens Axboe5f9099e2009-06-16 22:40:26 +0200164 return FIO_Q_COMPLETED;
Jens Axboe755200a2007-02-19 13:08:12 +0100165 }
166
Jens Axboea5f30272010-07-19 16:19:55 -0600167 if (io_u->ddir == DDIR_TRIM) {
168 if (ld->iocbs_nr)
169 return FIO_Q_BUSY;
170
171 do_io_u_trim(td, io_u);
172 return FIO_Q_COMPLETED;
173 }
174
Jens Axboe755200a2007-02-19 13:08:12 +0100175 ld->iocbs[ld->iocbs_nr] = &io_u->iocb;
Jens Axboe7e77dd02007-02-20 10:57:34 +0100176 ld->io_us[ld->iocbs_nr] = io_u;
Jens Axboe755200a2007-02-19 13:08:12 +0100177 ld->iocbs_nr++;
178 return FIO_Q_QUEUED;
179}
180
Jens Axboe7e77dd02007-02-20 10:57:34 +0100181static void fio_libaio_queued(struct thread_data *td, struct io_u **io_us,
182 unsigned int nr)
183{
184 struct timeval now;
185 unsigned int i;
186
Jens Axboe12d9d842008-10-16 21:26:10 +0200187 if (!fio_fill_issue_time(td))
188 return;
189
Jens Axboe7e77dd02007-02-20 10:57:34 +0100190 fio_gettime(&now, NULL);
191
192 for (i = 0; i < nr; i++) {
193 struct io_u *io_u = io_us[i];
194
195 memcpy(&io_u->issue_time, &now, sizeof(now));
196 io_u_queued(td, io_u);
197 }
198}
199
Jens Axboe755200a2007-02-19 13:08:12 +0100200static int fio_libaio_commit(struct thread_data *td)
201{
202 struct libaio_data *ld = td->io_ops->data;
203 struct iocb **iocbs;
Jens Axboe7e77dd02007-02-20 10:57:34 +0100204 struct io_u **io_us;
Jens Axboe5e00c2c2008-01-18 10:26:58 +0100205 int ret;
Jens Axboe755200a2007-02-19 13:08:12 +0100206
207 if (!ld->iocbs_nr)
208 return 0;
209
Jens Axboe7e77dd02007-02-20 10:57:34 +0100210 io_us = ld->io_us;
Jens Axboe755200a2007-02-19 13:08:12 +0100211 iocbs = ld->iocbs;
Jens Axboe2866c822006-10-09 15:57:48 +0200212 do {
Jens Axboe5e00c2c2008-01-18 10:26:58 +0100213 ret = io_submit(ld->aio_ctx, ld->iocbs_nr, iocbs);
214 if (ret > 0) {
Jens Axboe7e77dd02007-02-20 10:57:34 +0100215 fio_libaio_queued(td, io_us, ret);
Jens Axboe838bc702008-05-22 13:08:23 +0200216 io_u_mark_submit(td, ret);
Jens Axboe5e00c2c2008-01-18 10:26:58 +0100217 ld->iocbs_nr -= ret;
Jens Axboe7e77dd02007-02-20 10:57:34 +0100218 io_us += ret;
Jens Axboe755200a2007-02-19 13:08:12 +0100219 iocbs += ret;
Jens Axboe5e00c2c2008-01-18 10:26:58 +0100220 ret = 0;
Jens Axboe838bc702008-05-22 13:08:23 +0200221 } else if (!ret || ret == -EAGAIN || ret == -EINTR) {
222 if (!ret)
223 io_u_mark_submit(td, ret);
Jens Axboe2866c822006-10-09 15:57:48 +0200224 continue;
Jens Axboe838bc702008-05-22 13:08:23 +0200225 } else
Jens Axboe2866c822006-10-09 15:57:48 +0200226 break;
Jens Axboe5e00c2c2008-01-18 10:26:58 +0100227 } while (ld->iocbs_nr);
Jens Axboe2866c822006-10-09 15:57:48 +0200228
Jens Axboe36167d82007-02-18 05:41:31 +0100229 return ret;
Jens Axboe2866c822006-10-09 15:57:48 +0200230}
231
232static int fio_libaio_cancel(struct thread_data *td, struct io_u *io_u)
233{
234 struct libaio_data *ld = td->io_ops->data;
235
236 return io_cancel(ld->aio_ctx, &io_u->iocb, ld->aio_events);
237}
238
239static void fio_libaio_cleanup(struct thread_data *td)
240{
241 struct libaio_data *ld = td->io_ops->data;
242
243 if (ld) {
244 io_destroy(ld->aio_ctx);
Jens Axboe7e77dd02007-02-20 10:57:34 +0100245 free(ld->aio_events);
246 free(ld->iocbs);
247 free(ld->io_us);
Jens Axboe2866c822006-10-09 15:57:48 +0200248 free(ld);
Jens Axboe2866c822006-10-09 15:57:48 +0200249 }
250}
251
252static int fio_libaio_init(struct thread_data *td)
253{
254 struct libaio_data *ld = malloc(sizeof(*ld));
Jens Axboec90e1012012-09-04 11:47:00 -0600255 struct libaio_options *o = td->eo;
256 int err = 0;
Jens Axboe2866c822006-10-09 15:57:48 +0200257
258 memset(ld, 0, sizeof(*ld));
Jens Axboec1db2dc2007-03-20 10:42:07 +0100259
Jens Axboec90e1012012-09-04 11:47:00 -0600260 /*
261 * First try passing in 0 for queue depth, since we don't
262 * care about the user ring. If that fails, the kernel is too old
263 * and we need the right depth.
264 */
265 if (!o->userspace_reap)
Jens Axboec224ec02012-09-06 09:07:44 -0600266 err = io_queue_init(INT_MAX, &ld->aio_ctx);
Jens Axboec90e1012012-09-04 11:47:00 -0600267 if (o->userspace_reap || err == -EINVAL)
268 err = io_queue_init(td->o.iodepth, &ld->aio_ctx);
Jens Axboec1db2dc2007-03-20 10:42:07 +0100269 if (err) {
270 td_verror(td, -err, "io_queue_init");
Jens Axboe75de55a2008-04-10 20:52:40 +0200271 log_err("fio: check /proc/sys/fs/aio-max-nr\n");
Jens Axboecb781c72006-11-07 14:02:48 +0100272 free(ld);
Jens Axboe2866c822006-10-09 15:57:48 +0200273 return 1;
274 }
275
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100276 ld->aio_events = malloc(td->o.iodepth * sizeof(struct io_event));
277 memset(ld->aio_events, 0, td->o.iodepth * sizeof(struct io_event));
278 ld->iocbs = malloc(td->o.iodepth * sizeof(struct iocb *));
Jens Axboe755200a2007-02-19 13:08:12 +0100279 memset(ld->iocbs, 0, sizeof(struct iocb *));
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100280 ld->io_us = malloc(td->o.iodepth * sizeof(struct io_u *));
281 memset(ld->io_us, 0, td->o.iodepth * sizeof(struct io_u *));
Jens Axboe755200a2007-02-19 13:08:12 +0100282 ld->iocbs_nr = 0;
283
Jens Axboe2866c822006-10-09 15:57:48 +0200284 td->io_ops->data = ld;
285 return 0;
286}
287
Jens Axboe5f350952006-11-07 15:20:59 +0100288static struct ioengine_ops ioengine = {
Steven Langde890a12011-11-09 14:03:34 +0100289 .name = "libaio",
290 .version = FIO_IOOPS_VERSION,
291 .init = fio_libaio_init,
292 .prep = fio_libaio_prep,
293 .queue = fio_libaio_queue,
294 .commit = fio_libaio_commit,
295 .cancel = fio_libaio_cancel,
296 .getevents = fio_libaio_getevents,
297 .event = fio_libaio_event,
298 .cleanup = fio_libaio_cleanup,
299 .open_file = generic_open_file,
300 .close_file = generic_close_file,
301 .get_file_size = generic_get_file_size,
302 .options = options,
303 .option_struct_size = sizeof(struct libaio_options),
Jens Axboe2866c822006-10-09 15:57:48 +0200304};
Jens Axboe34cfcda2006-11-03 14:00:45 +0100305
Jens Axboe5f350952006-11-07 15:20:59 +0100306static void fio_init fio_libaio_register(void)
307{
308 register_ioengine(&ioengine);
309}
310
311static void fio_exit fio_libaio_unregister(void)
312{
313 unregister_ioengine(&ioengine);
314}