blob: 9b1ad60692e0e7b76bfd3296e9bab64bd566dcd6 [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001/*
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>
Jens Axboe5c4e1db2006-06-07 14:17:08 +020015#include <string.h>
Jens Axboe2866c822006-10-09 15:57:48 +020016#include <dlfcn.h>
Jens Axboe8c16d842006-10-20 11:48:33 +020017
Jens Axboeebac4652005-12-08 15:25:21 +010018#include "fio.h"
19#include "os.h"
20
Jens Axboe8c16d842006-10-20 11:48:33 +020021static int check_engine_ops(struct ioengine_ops *ops)
22{
23 /*
24 * cpu thread doesn't need to provide anything
25 */
26 if (ops->flags & FIO_CPUIO)
27 return 0;
28
29 if (!ops->event) {
30 log_err("%s: no event handler)\n", ops->name);
31 return 1;
32 }
33 if (!ops->getevents) {
34 log_err("%s: no getevents handler)\n", ops->name);
35 return 1;
36 }
37 if (!ops->queue) {
38 log_err("%s: no queue handler)\n", ops->name);
39 return 1;
40 }
41
42 return 0;
43}
44
Jens Axboe2866c822006-10-09 15:57:48 +020045struct ioengine_ops *load_ioengine(struct thread_data *td, char *name)
Jens Axboeebac4652005-12-08 15:25:21 +010046{
Jens Axboe2866c822006-10-09 15:57:48 +020047 char engine[16], engine_lib[256];
Jens Axboe84585002006-10-19 20:26:22 +020048 struct ioengine_ops *ops, *ret;
Jens Axboe2866c822006-10-09 15:57:48 +020049 void *dlhandle;
Jens Axboeebac4652005-12-08 15:25:21 +010050
Jens Axboe2866c822006-10-09 15:57:48 +020051 strcpy(engine, name);
Jens Axboeebac4652005-12-08 15:25:21 +010052
53 /*
Jens Axboe2866c822006-10-09 15:57:48 +020054 * linux libaio has alias names, so convert to what we want
Jens Axboeebac4652005-12-08 15:25:21 +010055 */
Jens Axboe2866c822006-10-09 15:57:48 +020056 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
57 strcpy(engine, "libaio");
58
Jens Axboec1d57252006-10-09 19:56:04 +020059 sprintf(engine_lib, "%s/lib/fio/fio-engine-%s.o", fio_inst_prefix, engine);
Jens Axboe2866c822006-10-09 15:57:48 +020060 dlerror();
61 dlhandle = dlopen(engine_lib, RTLD_LAZY);
Jens Axboed4dbaaa2006-10-09 16:01:27 +020062 if (!dlhandle) {
63 td_vmsg(td, -1, dlerror());
64 return NULL;
65 }
Jens Axboe2866c822006-10-09 15:57:48 +020066
67 ops = dlsym(dlhandle, "ioengine");
Jens Axboed4dbaaa2006-10-09 16:01:27 +020068 if (!ops) {
69 td_vmsg(td, -1, dlerror());
70 dlclose(dlhandle);
71 return NULL;
72 }
Jens Axboe2866c822006-10-09 15:57:48 +020073
Jens Axboeb902ceb2006-10-09 16:11:45 +020074 if (ops->version != FIO_IOOPS_VERSION) {
75 log_err("bad ioops version %d (want %d)\n", ops->version, FIO_IOOPS_VERSION);
76 dlclose(dlhandle);
77 return NULL;
78 }
79
Jens Axboe8c16d842006-10-20 11:48:33 +020080 /*
81 * Check that the required methods are there.
82 */
83 if (check_engine_ops(ops)) {
84 dlclose(dlhandle);
85 return NULL;
86 }
87
Jens Axboe84585002006-10-19 20:26:22 +020088 ret = malloc(sizeof(*ret));
89 memcpy(ret, ops, sizeof(*ret));
90 ret->data = NULL;
91 ret->dlhandle = dlhandle;
92
93 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +010094}
95
Jens Axboe2866c822006-10-09 15:57:48 +020096void close_ioengine(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +010097{
Jens Axboe2866c822006-10-09 15:57:48 +020098 if (td->io_ops->cleanup)
99 td->io_ops->cleanup(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100100
Jens Axboe2866c822006-10-09 15:57:48 +0200101 dlclose(td->io_ops->dlhandle);
Jens Axboe84585002006-10-19 20:26:22 +0200102 free(td->io_ops);
103 td->io_ops = NULL;
Jens Axboeb990b5c2006-09-14 09:48:22 +0200104}
Jens Axboe10ba5352006-10-20 11:39:27 +0200105
106int td_io_prep(struct thread_data *td, struct io_u *io_u)
107{
108 if (td->io_ops->prep && td->io_ops->prep(td, io_u))
109 return 1;
110
111 return 0;
112}
113
114int td_io_sync(struct thread_data *td, struct fio_file *f)
115{
116 if (td->io_ops->sync)
117 return td->io_ops->sync(td, f);
118
119 return 0;
120}
121
122int td_io_getevents(struct thread_data *td, int min, int max,
123 struct timespec *t)
124{
125 return td->io_ops->getevents(td, min, max, t);
126}
127
128int td_io_queue(struct thread_data *td, struct io_u *io_u)
129{
130 gettimeofday(&io_u->issue_time, NULL);
131
132 return td->io_ops->queue(td, io_u);
133}
Jens Axboe8c16d842006-10-20 11:48:33 +0200134
135int td_io_init(struct thread_data *td)
136{
137 if (td->io_ops->init)
138 return td->io_ops->init(td);
139
140 return 0;
141}