[PATCH] Cleanup iolog 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>
ebac4655
JA
17#include "fio.h"
18#include "os.h"
19
2866c82d 20struct ioengine_ops *load_ioengine(struct thread_data *td, char *name)
ebac4655 21{
2866c82d 22 char engine[16], engine_lib[256];
84585003 23 struct ioengine_ops *ops, *ret;
2866c82d 24 void *dlhandle;
ebac4655 25
2866c82d 26 strcpy(engine, name);
ebac4655
JA
27
28 /*
2866c82d 29 * linux libaio has alias names, so convert to what we want
ebac4655 30 */
2866c82d
JA
31 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
32 strcpy(engine, "libaio");
ebac4655 33
c1d5725e 34 sprintf(engine_lib, "%s/lib/fio/fio-engine-%s.o", fio_inst_prefix, engine);
2866c82d
JA
35 dlerror();
36 dlhandle = dlopen(engine_lib, RTLD_LAZY);
d4dbaaa8
JA
37 if (!dlhandle) {
38 td_vmsg(td, -1, dlerror());
39 return NULL;
40 }
8756e4d4 41
2866c82d 42 ops = dlsym(dlhandle, "ioengine");
d4dbaaa8
JA
43 if (!ops) {
44 td_vmsg(td, -1, dlerror());
45 dlclose(dlhandle);
46 return NULL;
47 }
8756e4d4 48
b902ceb5
JA
49 if (ops->version != FIO_IOOPS_VERSION) {
50 log_err("bad ioops version %d (want %d)\n", ops->version, FIO_IOOPS_VERSION);
51 dlclose(dlhandle);
52 return NULL;
53 }
54
84585003
JA
55 ret = malloc(sizeof(*ret));
56 memcpy(ret, ops, sizeof(*ret));
57 ret->data = NULL;
58 ret->dlhandle = dlhandle;
59
60 return ret;
8756e4d4
JA
61}
62
2866c82d 63void close_ioengine(struct thread_data *td)
8756e4d4 64{
2866c82d
JA
65 if (td->io_ops->cleanup)
66 td->io_ops->cleanup(td);
b990b5c0 67
2866c82d 68 dlclose(td->io_ops->dlhandle);
84585003
JA
69 free(td->io_ops);
70 td->io_ops = NULL;
b990b5c0 71}