Catch NULL td->o.ioengine
[fio.git] / engines / posixaio.c
CommitLineData
2866c82d 1/*
da751ca9
JA
2 * posixaio engine
3 *
4 * IO engine that uses the posix defined aio interface.
2866c82d
JA
5 *
6 */
7#include <stdio.h>
8#include <stdlib.h>
9#include <unistd.h>
10#include <errno.h>
bc733f3b 11#include <fcntl.h>
5f350952
JA
12
13#include "../fio.h"
2866c82d
JA
14
15struct posixaio_data {
16 struct io_u **aio_events;
207cb0f0 17 unsigned int queued;
2866c82d
JA
18};
19
20static int fill_timespec(struct timespec *ts)
21{
5351f564
JA
22#ifdef CONFIG_CLOCK_GETTIME
23#ifdef CONFIG_CLOCK_MONOTONIC
24 clockid_t clk = CLOCK_MONOTONIC;
25#else
26 clockid_t clk = CLOCK_REALTIME;
27#endif
28 if (!clock_gettime(clk, ts))
2866c82d
JA
29 return 0;
30
31 perror("clock_gettime");
2866c82d 32 return 1;
5351f564
JA
33#else
34 struct timeval tv;
35
36 gettimeofday(&tv, NULL);
37 ts->tv_sec = tv.tv_sec;
38 ts->tv_nsec = tv.tv_usec * 1000;
39 return 0;
40#endif
2866c82d
JA
41}
42
43static unsigned long long ts_utime_since_now(struct timespec *t)
44{
45 long long sec, nsec;
46 struct timespec now;
47
48 if (fill_timespec(&now))
49 return 0;
50
51 sec = now.tv_sec - t->tv_sec;
52 nsec = now.tv_nsec - t->tv_nsec;
53 if (sec > 0 && nsec < 0) {
54 sec--;
55 nsec += 1000000000;
56 }
57
58 sec *= 1000000;
59 nsec /= 1000;
60 return sec + nsec;
61}
62
7a16dd02
JA
63static int fio_posixaio_cancel(struct thread_data fio_unused *td,
64 struct io_u *io_u)
2866c82d 65{
53cdc686
JA
66 struct fio_file *f = io_u->file;
67 int r = aio_cancel(f->fd, &io_u->aiocb);
2866c82d 68
2faf9ec8 69 if (r == AIO_ALLDONE || r == AIO_CANCELED)
2866c82d
JA
70 return 0;
71
72 return 1;
73}
74
7a16dd02
JA
75static int fio_posixaio_prep(struct thread_data fio_unused *td,
76 struct io_u *io_u)
2866c82d 77{
e97c1442 78 os_aiocb_t *aiocb = &io_u->aiocb;
53cdc686 79 struct fio_file *f = io_u->file;
2866c82d 80
53cdc686 81 aiocb->aio_fildes = f->fd;
cec6b55d
JA
82 aiocb->aio_buf = io_u->xfer_buf;
83 aiocb->aio_nbytes = io_u->xfer_buflen;
2866c82d 84 aiocb->aio_offset = io_u->offset;
9918be5a 85 aiocb->aio_sigevent.sigev_notify = SIGEV_NONE;
2866c82d
JA
86
87 io_u->seen = 0;
88 return 0;
89}
90
3c77037e
JA
91#define SUSPEND_ENTRIES 8
92
e7d2e616
JA
93static int fio_posixaio_getevents(struct thread_data *td, unsigned int min,
94 unsigned int max, struct timespec *t)
2866c82d
JA
95{
96 struct posixaio_data *pd = td->io_ops->data;
e97c1442 97 os_aiocb_t *suspend_list[SUSPEND_ENTRIES];
01743ee1 98 struct flist_head *entry;
2866c82d 99 struct timespec start;
a3cc770d 100 int have_timeout = 0;
f8326424 101 int suspend_entries;
a3cc770d 102 unsigned int r;
2866c82d
JA
103
104 if (t && !fill_timespec(&start))
105 have_timeout = 1;
5351f564
JA
106 else
107 memset(&start, 0, sizeof(start));
2866c82d
JA
108
109 r = 0;
110restart:
f8326424
JA
111 memset(suspend_list, 0, sizeof(*suspend_list));
112 suspend_entries = 0;
01743ee1
JA
113 flist_for_each(entry, &td->io_u_busylist) {
114 struct io_u *io_u = flist_entry(entry, struct io_u, list);
2866c82d
JA
115 int err;
116
117 if (io_u->seen)
118 continue;
119
120 err = aio_error(&io_u->aiocb);
3c77037e
JA
121 if (err == EINPROGRESS) {
122 if (suspend_entries < SUSPEND_ENTRIES) {
123 suspend_list[suspend_entries] = &io_u->aiocb;
124 suspend_entries++;
125 }
3f344316 126 continue;
3c77037e 127 }
3f344316
JA
128
129 io_u->seen = 1;
207cb0f0 130 pd->queued--;
3f344316
JA
131 pd->aio_events[r++] = io_u;
132
133 if (err == ECANCELED)
134 io_u->resid = io_u->xfer_buflen;
135 else if (!err) {
136 ssize_t retval = aio_return(&io_u->aiocb);
137
138 io_u->resid = io_u->xfer_buflen - retval;
139 } else
140 io_u->error = err;
2866c82d
JA
141 }
142
143 if (r >= min)
144 return r;
145
146 if (have_timeout) {
147 unsigned long long usec;
148
149 usec = (t->tv_sec * 1000000) + (t->tv_nsec / 1000);
150 if (ts_utime_since_now(&start) > usec)
151 return r;
152 }
153
154 /*
3c77037e 155 * must have some in-flight, wait for at least one
2866c82d 156 */
e97c1442 157 aio_suspend((const os_aiocb_t * const *)suspend_list,
3c77037e 158 suspend_entries, t);
2866c82d
JA
159 goto restart;
160}
161
162static struct io_u *fio_posixaio_event(struct thread_data *td, int event)
163{
164 struct posixaio_data *pd = td->io_ops->data;
165
166 return pd->aio_events[event];
167}
168
03e20d68 169static int fio_posixaio_queue(struct thread_data *td,
2866c82d
JA
170 struct io_u *io_u)
171{
207cb0f0 172 struct posixaio_data *pd = td->io_ops->data;
e97c1442 173 os_aiocb_t *aiocb = &io_u->aiocb;
2866c82d
JA
174 int ret;
175
7101d9c2
JA
176 fio_ro_check(td, io_u);
177
2866c82d
JA
178 if (io_u->ddir == DDIR_READ)
179 ret = aio_read(aiocb);
87dc1ab1 180 else if (io_u->ddir == DDIR_WRITE)
2866c82d 181 ret = aio_write(aiocb);
a5f3027c
JA
182 else if (io_u->ddir == DDIR_TRIM) {
183 if (pd->queued)
184 return FIO_Q_BUSY;
185
186 do_io_u_trim(td, io_u);
187 return FIO_Q_COMPLETED;
188 } else {
67bf9823 189#ifdef CONFIG_POSIXAIO_FSYNC
87dc1ab1 190 ret = aio_fsync(O_SYNC, aiocb);
207cb0f0
JA
191#else
192 if (pd->queued)
193 return FIO_Q_BUSY;
194
f011531e 195 do_io_u_sync(td, io_u);
207cb0f0
JA
196 return FIO_Q_COMPLETED;
197#endif
198 }
199
95bcd815 200 if (ret) {
afa16407
JA
201 /*
202 * At least OSX has a very low limit on the number of pending
def1d8e3
JA
203 * IOs, so if it returns EAGAIN, we are out of resources
204 * to queue more. Just return FIO_Q_BUSY to naturally
205 * drop off at this depth.
afa16407
JA
206 */
207 if (errno == EAGAIN)
208 return FIO_Q_BUSY;
209
2866c82d 210 io_u->error = errno;
e1161c32 211 td_verror(td, io_u->error, "xfer");
36167d82 212 return FIO_Q_COMPLETED;
95bcd815 213 }
36167d82 214
207cb0f0 215 pd->queued++;
36167d82 216 return FIO_Q_QUEUED;
2866c82d
JA
217}
218
219static void fio_posixaio_cleanup(struct thread_data *td)
220{
221 struct posixaio_data *pd = td->io_ops->data;
222
223 if (pd) {
224 free(pd->aio_events);
225 free(pd);
2866c82d
JA
226 }
227}
228
229static int fio_posixaio_init(struct thread_data *td)
230{
231 struct posixaio_data *pd = malloc(sizeof(*pd));
232
cb781c75 233 memset(pd, 0, sizeof(*pd));
2dc1bbeb
JA
234 pd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u *));
235 memset(pd->aio_events, 0, td->o.iodepth * sizeof(struct io_u *));
2866c82d
JA
236
237 td->io_ops->data = pd;
238 return 0;
239}
240
5f350952 241static struct ioengine_ops ioengine = {
2866c82d
JA
242 .name = "posixaio",
243 .version = FIO_IOOPS_VERSION,
244 .init = fio_posixaio_init,
245 .prep = fio_posixaio_prep,
246 .queue = fio_posixaio_queue,
247 .cancel = fio_posixaio_cancel,
248 .getevents = fio_posixaio_getevents,
249 .event = fio_posixaio_event,
250 .cleanup = fio_posixaio_cleanup,
b5af8293
JA
251 .open_file = generic_open_file,
252 .close_file = generic_close_file,
df9c26b1 253 .get_file_size = generic_get_file_size,
2866c82d 254};
34cfcdaf 255
5f350952
JA
256static void fio_init fio_posixaio_register(void)
257{
258 register_ioengine(&ioengine);
259}
260
261static void fio_exit fio_posixaio_unregister(void)
262{
263 unregister_ioengine(&ioengine);
264}