blob: 88dc0e90a654f2d49f372194a3caf6fe575684de [file] [log] [blame]
Jens Axboe2866c822006-10-09 15:57:48 +02001/*
Jens Axboeda751ca2007-03-14 10:59:33 +01002 * posixaio engine
3 *
4 * IO engine that uses the posix defined 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 Axboe5f350952006-11-07 15:20:59 +010012
13#include "../fio.h"
14#include "../os.h"
Jens Axboe2866c822006-10-09 15:57:48 +020015
Jens Axboe34cfcda2006-11-03 14:00:45 +010016#ifdef FIO_HAVE_POSIXAIO
17
Jens Axboe2866c822006-10-09 15:57:48 +020018struct posixaio_data {
19 struct io_u **aio_events;
20};
21
22static int fill_timespec(struct timespec *ts)
23{
24#ifdef _POSIX_TIMERS
25 if (!clock_gettime(CLOCK_MONOTONIC, ts))
26 return 0;
27
28 perror("clock_gettime");
29#endif
30 return 1;
31}
32
33static unsigned long long ts_utime_since_now(struct timespec *t)
34{
35 long long sec, nsec;
36 struct timespec now;
37
38 if (fill_timespec(&now))
39 return 0;
40
41 sec = now.tv_sec - t->tv_sec;
42 nsec = now.tv_nsec - t->tv_nsec;
43 if (sec > 0 && nsec < 0) {
44 sec--;
45 nsec += 1000000000;
46 }
47
48 sec *= 1000000;
49 nsec /= 1000;
50 return sec + nsec;
51}
52
Jens Axboe7a16dd02006-10-18 17:21:58 +020053static int fio_posixaio_cancel(struct thread_data fio_unused *td,
54 struct io_u *io_u)
Jens Axboe2866c822006-10-09 15:57:48 +020055{
Jens Axboe53cdc682006-10-18 11:50:58 +020056 struct fio_file *f = io_u->file;
57 int r = aio_cancel(f->fd, &io_u->aiocb);
Jens Axboe2866c822006-10-09 15:57:48 +020058
59 if (r == 1 || r == AIO_CANCELED)
60 return 0;
61
62 return 1;
63}
64
Jens Axboe7a16dd02006-10-18 17:21:58 +020065static int fio_posixaio_prep(struct thread_data fio_unused *td,
66 struct io_u *io_u)
Jens Axboe2866c822006-10-09 15:57:48 +020067{
68 struct aiocb *aiocb = &io_u->aiocb;
Jens Axboe53cdc682006-10-18 11:50:58 +020069 struct fio_file *f = io_u->file;
Jens Axboe2866c822006-10-09 15:57:48 +020070
Jens Axboe53cdc682006-10-18 11:50:58 +020071 aiocb->aio_fildes = f->fd;
Jens Axboecec6b552007-02-06 20:15:38 +010072 aiocb->aio_buf = io_u->xfer_buf;
73 aiocb->aio_nbytes = io_u->xfer_buflen;
Jens Axboe2866c822006-10-09 15:57:48 +020074 aiocb->aio_offset = io_u->offset;
75
76 io_u->seen = 0;
77 return 0;
78}
79
80static int fio_posixaio_getevents(struct thread_data *td, int min, int max,
81 struct timespec *t)
82{
83 struct posixaio_data *pd = td->io_ops->data;
84 struct list_head *entry;
85 struct timespec start;
86 int r, have_timeout = 0;
87
88 if (t && !fill_timespec(&start))
89 have_timeout = 1;
90
91 r = 0;
92restart:
93 list_for_each(entry, &td->io_u_busylist) {
94 struct io_u *io_u = list_entry(entry, struct io_u, list);
95 int err;
96
97 if (io_u->seen)
98 continue;
99
100 err = aio_error(&io_u->aiocb);
Jens Axboe3f344312007-03-14 14:14:48 +0100101 if (err == EINPROGRESS)
102 continue;
103
104 io_u->seen = 1;
105 pd->aio_events[r++] = io_u;
106
107 if (err == ECANCELED)
108 io_u->resid = io_u->xfer_buflen;
109 else if (!err) {
110 ssize_t retval = aio_return(&io_u->aiocb);
111
112 io_u->resid = io_u->xfer_buflen - retval;
113 } else
114 io_u->error = err;
Jens Axboe2866c822006-10-09 15:57:48 +0200115
116 if (r >= max)
117 break;
118 }
119
120 if (r >= min)
121 return r;
122
123 if (have_timeout) {
124 unsigned long long usec;
125
126 usec = (t->tv_sec * 1000000) + (t->tv_nsec / 1000);
127 if (ts_utime_since_now(&start) > usec)
128 return r;
129 }
130
131 /*
132 * hrmpf, we need to wait for more. we should use aio_suspend, for
133 * now just sleep a little and recheck status of busy-and-not-seen
134 */
135 usleep(1000);
136 goto restart;
137}
138
139static struct io_u *fio_posixaio_event(struct thread_data *td, int event)
140{
141 struct posixaio_data *pd = td->io_ops->data;
142
143 return pd->aio_events[event];
144}
145
146static int fio_posixaio_queue(struct thread_data fio_unused *td,
147 struct io_u *io_u)
148{
149 struct aiocb *aiocb = &io_u->aiocb;
150 int ret;
151
152 if (io_u->ddir == DDIR_READ)
153 ret = aio_read(aiocb);
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200154 else if (io_u->ddir == DDIR_WRITE)
Jens Axboe2866c822006-10-09 15:57:48 +0200155 ret = aio_write(aiocb);
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200156 else
157 ret = aio_fsync(O_SYNC, aiocb);
Jens Axboe2866c822006-10-09 15:57:48 +0200158
Jens Axboe95bcd812007-02-11 01:01:57 +0100159 if (ret) {
Jens Axboe2866c822006-10-09 15:57:48 +0200160 io_u->error = errno;
Jens Axboee1161c32007-02-22 19:36:48 +0100161 td_verror(td, io_u->error, "xfer");
Jens Axboe36167d82007-02-18 05:41:31 +0100162 return FIO_Q_COMPLETED;
Jens Axboe95bcd812007-02-11 01:01:57 +0100163 }
Jens Axboe36167d82007-02-18 05:41:31 +0100164
165 return FIO_Q_QUEUED;
Jens Axboe2866c822006-10-09 15:57:48 +0200166}
167
168static void fio_posixaio_cleanup(struct thread_data *td)
169{
170 struct posixaio_data *pd = td->io_ops->data;
171
172 if (pd) {
173 free(pd->aio_events);
174 free(pd);
175 td->io_ops->data = NULL;
176 }
177}
178
179static int fio_posixaio_init(struct thread_data *td)
180{
181 struct posixaio_data *pd = malloc(sizeof(*pd));
182
Jens Axboecb781c72006-11-07 14:02:48 +0100183 memset(pd, 0, sizeof(*pd));
Jens Axboe2866c822006-10-09 15:57:48 +0200184 pd->aio_events = malloc(td->iodepth * sizeof(struct io_u *));
Jens Axboecb781c72006-11-07 14:02:48 +0100185 memset(pd->aio_events, 0, td->iodepth * sizeof(struct io_u *));
Jens Axboe2866c822006-10-09 15:57:48 +0200186
187 td->io_ops->data = pd;
188 return 0;
189}
190
Jens Axboe5f350952006-11-07 15:20:59 +0100191static struct ioengine_ops ioengine = {
Jens Axboe2866c822006-10-09 15:57:48 +0200192 .name = "posixaio",
193 .version = FIO_IOOPS_VERSION,
194 .init = fio_posixaio_init,
195 .prep = fio_posixaio_prep,
196 .queue = fio_posixaio_queue,
197 .cancel = fio_posixaio_cancel,
198 .getevents = fio_posixaio_getevents,
199 .event = fio_posixaio_event,
200 .cleanup = fio_posixaio_cleanup,
Jens Axboeb5af8292007-03-08 12:43:13 +0100201 .open_file = generic_open_file,
202 .close_file = generic_close_file,
Jens Axboe2866c822006-10-09 15:57:48 +0200203};
Jens Axboe34cfcda2006-11-03 14:00:45 +0100204
205#else /* FIO_HAVE_POSIXAIO */
206
207/*
208 * When we have a proper configure system in place, we simply wont build
209 * and install this io engine. For now install a crippled version that
210 * just complains and fails to load.
211 */
212static int fio_posixaio_init(struct thread_data fio_unused *td)
213{
214 fprintf(stderr, "fio: posixaio not available\n");
215 return 1;
216}
217
Jens Axboe5f350952006-11-07 15:20:59 +0100218static struct ioengine_ops ioengine = {
Jens Axboe34cfcda2006-11-03 14:00:45 +0100219 .name = "posixaio",
220 .version = FIO_IOOPS_VERSION,
221 .init = fio_posixaio_init,
222};
223
224#endif
Jens Axboe5f350952006-11-07 15:20:59 +0100225
226static void fio_init fio_posixaio_register(void)
227{
228 register_ioengine(&ioengine);
229}
230
231static void fio_exit fio_posixaio_unregister(void)
232{
233 unregister_ioengine(&ioengine);
234}