Kill io_u timeout handling
[fio.git] / ioengines.c
CommitLineData
ebac4655
JA
1/*
2 * The io parts of the fio tool, includes workers for sync and mmap'ed
3 * io, as well as both posix and linux libaio support.
4 *
5 * sync io is implemented on top of aio.
6 *
7 * This is not really specific to fio, if the get_io_u/put_io_u and
8 * structures was pulled into this as well it would be a perfectly
9 * generic io engine that could be used for other projects.
10 *
11 */
12#include <stdio.h>
13#include <stdlib.h>
14#include <unistd.h>
5c4e1dbc 15#include <string.h>
2866c82d 16#include <dlfcn.h>
0c6e7517 17#include <assert.h>
8c16d840 18
ebac4655 19#include "fio.h"
ebac4655 20
01743ee1 21static FLIST_HEAD(engine_list);
5f350952 22
8c16d840
JA
23static int check_engine_ops(struct ioengine_ops *ops)
24{
5f350952 25 if (ops->version != FIO_IOOPS_VERSION) {
5ec10eaa
JA
26 log_err("bad ioops version %d (want %d)\n", ops->version,
27 FIO_IOOPS_VERSION);
5f350952
JA
28 return 1;
29 }
30
36167d82
JA
31 if (!ops->queue) {
32 log_err("%s: no queue handler\n", ops->name);
33 return 1;
34 }
35
36 /*
37 * sync engines only need a ->queue()
38 */
39 if (ops->flags & FIO_SYNCIO)
40 return 0;
5ec10eaa 41
8c16d840 42 if (!ops->event) {
36167d82 43 log_err("%s: no event handler\n", ops->name);
8c16d840
JA
44 return 1;
45 }
46 if (!ops->getevents) {
36167d82 47 log_err("%s: no getevents handler\n", ops->name);
8c16d840
JA
48 return 1;
49 }
50 if (!ops->queue) {
36167d82 51 log_err("%s: no queue handler\n", ops->name);
8c16d840
JA
52 return 1;
53 }
5ec10eaa 54
8c16d840
JA
55 return 0;
56}
57
5f350952 58void unregister_ioengine(struct ioengine_ops *ops)
ebac4655 59{
ee56ad50 60 dprint(FD_IO, "ioengine %s unregistered\n", ops->name);
01743ee1
JA
61 flist_del(&ops->list);
62 INIT_FLIST_HEAD(&ops->list);
5f350952
JA
63}
64
b2fdda43 65void register_ioengine(struct ioengine_ops *ops)
5f350952 66{
ee56ad50 67 dprint(FD_IO, "ioengine %s registered\n", ops->name);
01743ee1
JA
68 INIT_FLIST_HEAD(&ops->list);
69 flist_add_tail(&ops->list, &engine_list);
5f350952
JA
70}
71
72static struct ioengine_ops *find_ioengine(const char *name)
73{
74 struct ioengine_ops *ops;
01743ee1 75 struct flist_head *entry;
ebac4655 76
01743ee1
JA
77 flist_for_each(entry, &engine_list) {
78 ops = flist_entry(entry, struct ioengine_ops, list);
bc5b77a8 79 if (!strcmp(name, ops->name))
5f350952
JA
80 return ops;
81 }
82
83 return NULL;
84}
85
86static struct ioengine_ops *dlopen_ioengine(struct thread_data *td,
87 const char *engine_lib)
88{
89 struct ioengine_ops *ops;
90 void *dlhandle;
91
ee56ad50
JA
92 dprint(FD_IO, "dload engine %s\n", engine_lib);
93
2866c82d
JA
94 dlerror();
95 dlhandle = dlopen(engine_lib, RTLD_LAZY);
d4dbaaa8 96 if (!dlhandle) {
e1161c32 97 td_vmsg(td, -1, dlerror(), "dlopen");
d4dbaaa8
JA
98 return NULL;
99 }
8756e4d4 100
da51c050
JA
101 /*
102 * Unlike the included modules, external engines should have a
103 * non-static ioengine structure that we can reference.
104 */
2866c82d 105 ops = dlsym(dlhandle, "ioengine");
d4dbaaa8 106 if (!ops) {
e1161c32 107 td_vmsg(td, -1, dlerror(), "dlsym");
d4dbaaa8
JA
108 dlclose(dlhandle);
109 return NULL;
110 }
8756e4d4 111
5f350952
JA
112 ops->dlhandle = dlhandle;
113 return ops;
114}
115
116struct ioengine_ops *load_ioengine(struct thread_data *td, const char *name)
117{
118 struct ioengine_ops *ops, *ret;
119 char engine[16];
120
ee56ad50
JA
121 dprint(FD_IO, "load ioengine %s\n", name);
122
5f350952
JA
123 strncpy(engine, name, sizeof(engine) - 1);
124
125 /*
126 * linux libaio has alias names, so convert to what we want
127 */
128 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
129 strcpy(engine, "libaio");
130
131 ops = find_ioengine(engine);
132 if (!ops)
133 ops = dlopen_ioengine(td, name);
134
135 if (!ops) {
136 log_err("fio: engine %s not loadable\n", name);
b902ceb5
JA
137 return NULL;
138 }
139
8c16d840
JA
140 /*
141 * Check that the required methods are there.
142 */
5f350952 143 if (check_engine_ops(ops))
8c16d840 144 return NULL;
8c16d840 145
84585003
JA
146 ret = malloc(sizeof(*ret));
147 memcpy(ret, ops, sizeof(*ret));
148 ret->data = NULL;
84585003
JA
149
150 return ret;
8756e4d4
JA
151}
152
2866c82d 153void close_ioengine(struct thread_data *td)
8756e4d4 154{
ee56ad50
JA
155 dprint(FD_IO, "close ioengine %s\n", td->io_ops->name);
156
2992b059 157 if (td->io_ops->cleanup) {
2866c82d 158 td->io_ops->cleanup(td);
2992b059
JA
159 td->io_ops->data = NULL;
160 }
b990b5c0 161
5f350952
JA
162 if (td->io_ops->dlhandle)
163 dlclose(td->io_ops->dlhandle);
164
84585003
JA
165 free(td->io_ops);
166 td->io_ops = NULL;
b990b5c0 167}
10ba535a
JA
168
169int td_io_prep(struct thread_data *td, struct io_u *io_u)
170{
ee56ad50 171 dprint_io_u(io_u, "prep");
7101d9c2
JA
172 fio_ro_check(td, io_u);
173
4d4e80f2 174 lock_file(td, io_u->file, io_u->ddir);
b2bd2bd9 175
2ba1c290
JA
176 if (td->io_ops->prep) {
177 int ret = td->io_ops->prep(td, io_u);
178
179 dprint(FD_IO, "->prep(%p)=%d\n", io_u, ret);
b2bd2bd9 180 if (ret)
4d4e80f2 181 unlock_file(td, io_u->file);
2ba1c290
JA
182 return ret;
183 }
10ba535a
JA
184
185 return 0;
186}
187
e7d2e616 188int td_io_getevents(struct thread_data *td, unsigned int min, unsigned int max,
10ba535a
JA
189 struct timespec *t)
190{
ee56ad50 191 int r = 0;
face81b2 192
ee56ad50
JA
193 if (min > 0 && td->io_ops->commit) {
194 r = td->io_ops->commit(td);
face81b2 195 if (r < 0)
ee56ad50 196 goto out;
face81b2 197 }
4950421a
JA
198 if (max > td->cur_depth)
199 max = td->cur_depth;
200 if (min > max)
201 max = min;
36167d82 202
ee56ad50 203 r = 0;
4950421a 204 if (max && td->io_ops->getevents)
ee56ad50
JA
205 r = td->io_ops->getevents(td, min, max, t);
206out:
838bc709
JA
207 if (r >= 0)
208 io_u_mark_complete(td, r);
ee56ad50
JA
209 dprint(FD_IO, "getevents: %d\n", r);
210 return r;
10ba535a
JA
211}
212
213int td_io_queue(struct thread_data *td, struct io_u *io_u)
214{
7e77dd02
JA
215 int ret;
216
ee56ad50 217 dprint_io_u(io_u, "queue");
7101d9c2
JA
218 fio_ro_check(td, io_u);
219
0c6e7517
JA
220 assert((io_u->flags & IO_U_F_FLIGHT) == 0);
221 io_u->flags |= IO_U_F_FLIGHT;
222
3d7b485f
JA
223 assert(io_u->file->flags & FIO_FILE_OPEN);
224
11786802
JA
225 io_u->error = 0;
226 io_u->resid = 0;
227
433afcb4 228 if (td->io_ops->flags & FIO_SYNCIO) {
5aeb77df 229 fio_gettime(&io_u->issue_time, NULL);
d0c15328
JA
230
231 /*
232 * only used for iolog
233 */
234 if (td->o.read_iolog_file)
235 memcpy(&td->last_issue, &io_u->issue_time,
5ec10eaa 236 sizeof(struct timeval));
433afcb4
JA
237 }
238
755200a3
JA
239 if (io_u->ddir != DDIR_SYNC)
240 td->io_issues[io_u->ddir]++;
241
7e77dd02 242 ret = td->io_ops->queue(td, io_u);
5aeb77df 243
4d4e80f2 244 unlock_file(td, io_u->file);
b2bd2bd9 245
838bc709
JA
246 if (!td->io_ops->commit) {
247 io_u_mark_submit(td, 1);
248 io_u_mark_complete(td, 1);
249 }
250
d8005759
JA
251 if (ret == FIO_Q_COMPLETED) {
252 if (io_u->ddir != DDIR_SYNC) {
253 io_u_mark_depth(td, 1);
254 td->ts.total_io_u[io_u->ddir]++;
255 }
256 } else if (ret == FIO_Q_QUEUED) {
eb7c8ae2
JA
257 int r;
258
d8005759
JA
259 if (io_u->ddir != DDIR_SYNC) {
260 td->io_u_queued++;
261 td->ts.total_io_u[io_u->ddir]++;
262 }
263
264 if (td->io_u_queued >= td->o.iodepth_batch) {
eb7c8ae2
JA
265 r = td_io_commit(td);
266 if (r < 0)
267 return r;
268 }
269 }
cb5ab512 270
433afcb4 271 if ((td->io_ops->flags & FIO_SYNCIO) == 0) {
5aeb77df 272 fio_gettime(&io_u->issue_time, NULL);
d0c15328
JA
273
274 /*
275 * only used for iolog
276 */
277 if (td->o.read_iolog_file)
278 memcpy(&td->last_issue, &io_u->issue_time,
279 sizeof(struct timeval));
433afcb4
JA
280 }
281
7e77dd02 282 return ret;
10ba535a 283}
8c16d840
JA
284
285int td_io_init(struct thread_data *td)
286{
eeb12160 287 int ret = 0;
8c16d840 288
eeb12160
JA
289 if (td->io_ops->init) {
290 ret = td->io_ops->init(td);
5ec10eaa
JA
291 if (ret && td->o.iodepth > 1) {
292 log_err("fio: io engine init failed. Perhaps try"
293 " reducing io depth?\n");
294 }
eeb12160
JA
295 }
296
297 return ret;
8c16d840 298}
755200a3
JA
299
300int td_io_commit(struct thread_data *td)
301{
ee56ad50
JA
302 dprint(FD_IO, "calling ->commit(), depth %d\n", td->cur_depth);
303
d8005759 304 if (!td->cur_depth || !td->io_u_queued)
e1161c32 305 return 0;
cb5ab512 306
d8005759 307 io_u_mark_depth(td, td->io_u_queued);
cb5ab512 308 td->io_u_queued = 0;
d8005759 309
755200a3
JA
310 if (td->io_ops->commit)
311 return td->io_ops->commit(td);
312
313 return 0;
314}
b5af8293
JA
315
316int td_io_open_file(struct thread_data *td, struct fio_file *f)
317{
413d6693
JA
318 if (td->io_ops->open_file(td, f)) {
319 if (td->error == EINVAL && td->o.odirect)
320 log_err("fio: destination does not support O_DIRECT\n");
5ec10eaa
JA
321 if (td->error == EMFILE) {
322 log_err("fio: try reducing/setting openfiles (failed"
323 " at %u of %u)\n", td->nr_open_files,
324 td->o.nr_files);
325 }
413d6693
JA
326
327 return 1;
328 }
329
d5707a35
JA
330 fio_file_reset(f);
331 f->flags |= FIO_FILE_OPEN;
332 f->flags &= ~FIO_FILE_CLOSING;
333
334 td->nr_open_files++;
335 get_file(f);
336
66159828
JA
337 if (f->filetype == FIO_TYPE_PIPE) {
338 if (td_random(td)) {
339 log_err("fio: can't seek on pipes (no random io)\n");
340 goto err;
341 }
342 }
343
413d6693
JA
344 if (td->io_ops->flags & FIO_DISKLESSIO)
345 goto done;
346
347 if (td->o.invalidate_cache && file_invalidate_cache(td, f))
348 goto err;
349
66159828
JA
350 if (td->o.fadvise_hint &&
351 (f->filetype == FIO_TYPE_BD || f->filetype == FIO_TYPE_FILE)) {
413d6693
JA
352 int flags;
353
354 if (td_random(td))
355 flags = POSIX_FADV_RANDOM;
356 else
357 flags = POSIX_FADV_SEQUENTIAL;
358
359 if (fadvise(f->fd, f->file_offset, f->io_size, flags) < 0) {
360 td_verror(td, errno, "fadvise");
361 goto err;
362 }
7bb48f84 363 }
a978ba68 364
413d6693 365 if (f->file_map)
de605666 366 memset(f->file_map, 0, f->num_maps * sizeof(int));
a978ba68 367
e116f2b9
JA
368#ifdef FIO_OS_DIRECTIO
369 /*
370 * Some OS's have a distinct call to mark the file non-buffered,
371 * instead of using O_DIRECT (Solaris)
372 */
373 if (td->o.odirect) {
374 int ret = fio_set_odirect(f->fd);
375
376 if (ret) {
377 td_verror(td, ret, "fio_set_odirect");
378 goto err;
379 }
380 }
381#endif
382
413d6693 383done:
f29b25a3 384 log_file(td, f, FIO_LOG_OPEN_FILE);
413d6693
JA
385 return 0;
386err:
b284075a
JA
387 if (td->io_ops->close_file)
388 td->io_ops->close_file(td, f);
7bb48f84 389 return 1;
b5af8293
JA
390}
391
6977bcd0 392int td_io_close_file(struct thread_data *td, struct fio_file *f)
b5af8293 393{
f29b25a3
JA
394 if (!(f->flags & FIO_FILE_CLOSING))
395 log_file(td, f, FIO_LOG_CLOSE_FILE);
396
0ad920e7
JA
397 /*
398 * mark as closing, do real close when last io on it has completed
399 */
400 f->flags |= FIO_FILE_CLOSING;
401
4d4e80f2 402 unlock_file_all(td, f);
29c1349f 403
6977bcd0 404 return put_file(td, f);
b5af8293 405}