blob: 2ed274988aa43f36474ed63f547cd042d02cf1f5 [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 Axboe5f350952006-11-07 15:20:59 +010021static LIST_HEAD(engine_list);
22
Jens Axboe8c16d842006-10-20 11:48:33 +020023static int check_engine_ops(struct ioengine_ops *ops)
24{
Jens Axboe5f350952006-11-07 15:20:59 +010025 if (ops->version != FIO_IOOPS_VERSION) {
26 log_err("bad ioops version %d (want %d)\n", ops->version, FIO_IOOPS_VERSION);
27 return 1;
28 }
29
Jens Axboe8c16d842006-10-20 11:48:33 +020030 /*
31 * cpu thread doesn't need to provide anything
32 */
33 if (ops->flags & FIO_CPUIO)
34 return 0;
35
36 if (!ops->event) {
37 log_err("%s: no event handler)\n", ops->name);
38 return 1;
39 }
40 if (!ops->getevents) {
41 log_err("%s: no getevents handler)\n", ops->name);
42 return 1;
43 }
44 if (!ops->queue) {
45 log_err("%s: no queue handler)\n", ops->name);
46 return 1;
47 }
48
49 return 0;
50}
51
Jens Axboe5f350952006-11-07 15:20:59 +010052void unregister_ioengine(struct ioengine_ops *ops)
Jens Axboeebac4652005-12-08 15:25:21 +010053{
Jens Axboe5f350952006-11-07 15:20:59 +010054 list_del(&ops->list);
55 INIT_LIST_HEAD(&ops->list);
56}
57
58int register_ioengine(struct ioengine_ops *ops)
59{
Jens Axboe5f350952006-11-07 15:20:59 +010060 INIT_LIST_HEAD(&ops->list);
61 list_add_tail(&ops->list, &engine_list);
62 return 0;
63}
64
65static struct ioengine_ops *find_ioengine(const char *name)
66{
67 struct ioengine_ops *ops;
68 struct list_head *entry;
69 char engine[16];
Jens Axboeebac4652005-12-08 15:25:21 +010070
Jens Axboe0bbab0e2006-11-02 09:18:36 +010071 strncpy(engine, name, sizeof(engine) - 1);
Jens Axboeebac4652005-12-08 15:25:21 +010072
Jens Axboe2866c822006-10-09 15:57:48 +020073 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
74 strcpy(engine, "libaio");
75
Jens Axboe5f350952006-11-07 15:20:59 +010076 list_for_each(entry, &engine_list) {
77 ops = list_entry(entry, struct ioengine_ops, list);
78 if (!strcmp(engine, ops->name))
79 return ops;
80 }
81
82 return NULL;
83}
84
85static struct ioengine_ops *dlopen_ioengine(struct thread_data *td,
86 const char *engine_lib)
87{
88 struct ioengine_ops *ops;
89 void *dlhandle;
90
Jens Axboe2866c822006-10-09 15:57:48 +020091 dlerror();
92 dlhandle = dlopen(engine_lib, RTLD_LAZY);
Jens Axboed4dbaaa2006-10-09 16:01:27 +020093 if (!dlhandle) {
94 td_vmsg(td, -1, dlerror());
95 return NULL;
96 }
Jens Axboe2866c822006-10-09 15:57:48 +020097
Jens Axboeda51c052006-11-07 16:02:11 +010098 /*
99 * Unlike the included modules, external engines should have a
100 * non-static ioengine structure that we can reference.
101 */
Jens Axboe2866c822006-10-09 15:57:48 +0200102 ops = dlsym(dlhandle, "ioengine");
Jens Axboed4dbaaa2006-10-09 16:01:27 +0200103 if (!ops) {
104 td_vmsg(td, -1, dlerror());
105 dlclose(dlhandle);
106 return NULL;
107 }
Jens Axboe2866c822006-10-09 15:57:48 +0200108
Jens Axboe5f350952006-11-07 15:20:59 +0100109 ops->dlhandle = dlhandle;
110 return ops;
111}
112
113struct ioengine_ops *load_ioengine(struct thread_data *td, const char *name)
114{
115 struct ioengine_ops *ops, *ret;
116 char engine[16];
117
118 strncpy(engine, name, sizeof(engine) - 1);
119
120 /*
121 * linux libaio has alias names, so convert to what we want
122 */
123 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
124 strcpy(engine, "libaio");
125
126 ops = find_ioengine(engine);
127 if (!ops)
128 ops = dlopen_ioengine(td, name);
129
130 if (!ops) {
131 log_err("fio: engine %s not loadable\n", name);
Jens Axboeb902ceb2006-10-09 16:11:45 +0200132 return NULL;
133 }
134
Jens Axboe8c16d842006-10-20 11:48:33 +0200135 /*
136 * Check that the required methods are there.
137 */
Jens Axboe5f350952006-11-07 15:20:59 +0100138 if (check_engine_ops(ops))
Jens Axboe8c16d842006-10-20 11:48:33 +0200139 return NULL;
Jens Axboe8c16d842006-10-20 11:48:33 +0200140
Jens Axboe84585002006-10-19 20:26:22 +0200141 ret = malloc(sizeof(*ret));
142 memcpy(ret, ops, sizeof(*ret));
143 ret->data = NULL;
Jens Axboe84585002006-10-19 20:26:22 +0200144
145 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100146}
147
Jens Axboe2866c822006-10-09 15:57:48 +0200148void close_ioengine(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100149{
Jens Axboe2866c822006-10-09 15:57:48 +0200150 if (td->io_ops->cleanup)
151 td->io_ops->cleanup(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100152
Jens Axboe5f350952006-11-07 15:20:59 +0100153 if (td->io_ops->dlhandle)
154 dlclose(td->io_ops->dlhandle);
155
Jens Axboe84585002006-10-19 20:26:22 +0200156 free(td->io_ops);
157 td->io_ops = NULL;
Jens Axboeb990b5c2006-09-14 09:48:22 +0200158}
Jens Axboe10ba5352006-10-20 11:39:27 +0200159
160int td_io_prep(struct thread_data *td, struct io_u *io_u)
161{
162 if (td->io_ops->prep && td->io_ops->prep(td, io_u))
163 return 1;
164
165 return 0;
166}
167
Jens Axboe10ba5352006-10-20 11:39:27 +0200168int td_io_getevents(struct thread_data *td, int min, int max,
169 struct timespec *t)
170{
171 return td->io_ops->getevents(td, min, max, t);
172}
173
174int td_io_queue(struct thread_data *td, struct io_u *io_u)
175{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100176 fio_gettime(&io_u->issue_time, NULL);
Jens Axboe10ba5352006-10-20 11:39:27 +0200177
178 return td->io_ops->queue(td, io_u);
179}
Jens Axboe8c16d842006-10-20 11:48:33 +0200180
181int td_io_init(struct thread_data *td)
182{
183 if (td->io_ops->init)
184 return td->io_ops->init(td);
185
186 return 0;
187}