blob: abc385303d86c466ba34ed261a5624e2546e03de [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 Axboeebac4652005-12-08 15:25:21 +010017#include "fio.h"
18#include "os.h"
19
Jens Axboe2866c822006-10-09 15:57:48 +020020struct ioengine_ops *load_ioengine(struct thread_data *td, char *name)
Jens Axboeebac4652005-12-08 15:25:21 +010021{
Jens Axboe2866c822006-10-09 15:57:48 +020022 char engine[16], engine_lib[256];
Jens Axboe84585002006-10-19 20:26:22 +020023 struct ioengine_ops *ops, *ret;
Jens Axboe2866c822006-10-09 15:57:48 +020024 void *dlhandle;
Jens Axboeebac4652005-12-08 15:25:21 +010025
Jens Axboe2866c822006-10-09 15:57:48 +020026 strcpy(engine, name);
Jens Axboeebac4652005-12-08 15:25:21 +010027
28 /*
Jens Axboe2866c822006-10-09 15:57:48 +020029 * linux libaio has alias names, so convert to what we want
Jens Axboeebac4652005-12-08 15:25:21 +010030 */
Jens Axboe2866c822006-10-09 15:57:48 +020031 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
32 strcpy(engine, "libaio");
33
Jens Axboec1d57252006-10-09 19:56:04 +020034 sprintf(engine_lib, "%s/lib/fio/fio-engine-%s.o", fio_inst_prefix, engine);
Jens Axboe2866c822006-10-09 15:57:48 +020035 dlerror();
36 dlhandle = dlopen(engine_lib, RTLD_LAZY);
Jens Axboed4dbaaa2006-10-09 16:01:27 +020037 if (!dlhandle) {
38 td_vmsg(td, -1, dlerror());
39 return NULL;
40 }
Jens Axboe2866c822006-10-09 15:57:48 +020041
42 ops = dlsym(dlhandle, "ioengine");
Jens Axboed4dbaaa2006-10-09 16:01:27 +020043 if (!ops) {
44 td_vmsg(td, -1, dlerror());
45 dlclose(dlhandle);
46 return NULL;
47 }
Jens Axboe2866c822006-10-09 15:57:48 +020048
Jens Axboeb902ceb2006-10-09 16:11:45 +020049 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
Jens Axboe84585002006-10-19 20:26:22 +020055 ret = malloc(sizeof(*ret));
56 memcpy(ret, ops, sizeof(*ret));
57 ret->data = NULL;
58 ret->dlhandle = dlhandle;
59
60 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +010061}
62
Jens Axboe2866c822006-10-09 15:57:48 +020063void close_ioengine(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +010064{
Jens Axboe2866c822006-10-09 15:57:48 +020065 if (td->io_ops->cleanup)
66 td->io_ops->cleanup(td);
Jens Axboeebac4652005-12-08 15:25:21 +010067
Jens Axboe2866c822006-10-09 15:57:48 +020068 dlclose(td->io_ops->dlhandle);
Jens Axboe84585002006-10-19 20:26:22 +020069 free(td->io_ops);
70 td->io_ops = NULL;
Jens Axboeb990b5c2006-09-14 09:48:22 +020071}