fix load_ioengine() not to support no "external:" prefix
[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>
ecc314ba 17#include <fcntl.h>
0c6e7517 18#include <assert.h>
8c16d840 19
ebac4655 20#include "fio.h"
7c9b1bce 21#include "diskutil.h"
ebac4655 22
01743ee1 23static FLIST_HEAD(engine_list);
5f350952 24
1cc954ba 25static bool check_engine_ops(struct ioengine_ops *ops)
8c16d840 26{
5f350952 27 if (ops->version != FIO_IOOPS_VERSION) {
5ec10eaa
JA
28 log_err("bad ioops version %d (want %d)\n", ops->version,
29 FIO_IOOPS_VERSION);
1cc954ba 30 return true;
5f350952
JA
31 }
32
36167d82
JA
33 if (!ops->queue) {
34 log_err("%s: no queue handler\n", ops->name);
1cc954ba 35 return true;
36167d82
JA
36 }
37
38 /*
39 * sync engines only need a ->queue()
40 */
41 if (ops->flags & FIO_SYNCIO)
1cc954ba 42 return false;
5ec10eaa 43
1cc954ba
JA
44 if (!ops->event || !ops->getevents) {
45 log_err("%s: no event/getevents handler\n", ops->name);
46 return true;
8c16d840 47 }
5ec10eaa 48
1cc954ba 49 return false;
8c16d840
JA
50}
51
5f350952 52void unregister_ioengine(struct ioengine_ops *ops)
ebac4655 53{
ee56ad50 54 dprint(FD_IO, "ioengine %s unregistered\n", ops->name);
01743ee1
JA
55 flist_del(&ops->list);
56 INIT_FLIST_HEAD(&ops->list);
5f350952
JA
57}
58
b2fdda43 59void register_ioengine(struct ioengine_ops *ops)
5f350952 60{
ee56ad50 61 dprint(FD_IO, "ioengine %s registered\n", ops->name);
01743ee1
JA
62 INIT_FLIST_HEAD(&ops->list);
63 flist_add_tail(&ops->list, &engine_list);
5f350952
JA
64}
65
66static struct ioengine_ops *find_ioengine(const char *name)
67{
68 struct ioengine_ops *ops;
01743ee1 69 struct flist_head *entry;
ebac4655 70
01743ee1
JA
71 flist_for_each(entry, &engine_list) {
72 ops = flist_entry(entry, struct ioengine_ops, list);
bc5b77a8 73 if (!strcmp(name, ops->name))
5f350952
JA
74 return ops;
75 }
76
77 return NULL;
78}
79
80static struct ioengine_ops *dlopen_ioengine(struct thread_data *td,
81 const char *engine_lib)
82{
83 struct ioengine_ops *ops;
84 void *dlhandle;
85
ee56ad50
JA
86 dprint(FD_IO, "dload engine %s\n", engine_lib);
87
2866c82d
JA
88 dlerror();
89 dlhandle = dlopen(engine_lib, RTLD_LAZY);
d4dbaaa8 90 if (!dlhandle) {
e1161c32 91 td_vmsg(td, -1, dlerror(), "dlopen");
d4dbaaa8
JA
92 return NULL;
93 }
8756e4d4 94
da51c050
JA
95 /*
96 * Unlike the included modules, external engines should have a
97 * non-static ioengine structure that we can reference.
98 */
0abea0b7
DM
99 ops = dlsym(dlhandle, engine_lib);
100 if (!ops)
101 ops = dlsym(dlhandle, "ioengine");
a8075704
DG
102
103 /*
104 * For some external engines (like C++ ones) it is not that trivial
105 * to provide a non-static ionengine structure that we can reference.
106 * Instead we call a method which allocates the required ioengine
107 * structure.
108 */
109 if (!ops) {
110 get_ioengine_t get_ioengine = dlsym(dlhandle, "get_ioengine");
111
112 if (get_ioengine)
113 get_ioengine(&ops);
114 }
115
d4dbaaa8 116 if (!ops) {
e1161c32 117 td_vmsg(td, -1, dlerror(), "dlsym");
d4dbaaa8
JA
118 dlclose(dlhandle);
119 return NULL;
120 }
8756e4d4 121
565e784d 122 td->io_ops_dlhandle = dlhandle;
5f350952
JA
123 return ops;
124}
125
4fedf59a 126struct ioengine_ops *load_ioengine(struct thread_data *td)
5f350952 127{
81647a9a
TK
128 struct ioengine_ops *ops = NULL;
129 const char *name = NULL;
130
131 if (strcmp(td->o.ioengine, "external")) {
132 char engine[64];
133
134 name = td->o.ioengine;
135 engine[sizeof(engine) - 1] = '\0';
136 strncpy(engine, name, sizeof(engine) - 1);
137
138 /*
139 * linux libaio has alias names, so convert to what we want
140 */
141 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
142 strcpy(engine, "libaio");
143
144 dprint(FD_IO, "load ioengine %s\n", engine);
145 ops = find_ioengine(engine);
146 } else if (td->o.ioengine_so_path) {
147 name = td->o.ioengine_so_path;
5f350952 148 ops = dlopen_ioengine(td, name);
81647a9a
TK
149 } else
150 log_err("fio: missing external ioengine path\n");
5f350952
JA
151
152 if (!ops) {
153 log_err("fio: engine %s not loadable\n", name);
b902ceb5
JA
154 return NULL;
155 }
156
8c16d840
JA
157 /*
158 * Check that the required methods are there.
159 */
5f350952 160 if (check_engine_ops(ops))
8c16d840 161 return NULL;
8c16d840 162
565e784d 163 return ops;
8756e4d4
JA
164}
165
de890a1e
SL
166/*
167 * For cleaning up an ioengine which never made it to init().
168 */
169void free_ioengine(struct thread_data *td)
8756e4d4 170{
de890a1e 171 dprint(FD_IO, "free ioengine %s\n", td->io_ops->name);
ee56ad50 172
de890a1e
SL
173 if (td->eo && td->io_ops->options) {
174 options_free(td->io_ops->options, td->eo);
175 free(td->eo);
176 td->eo = NULL;
2992b059 177 }
b990b5c0 178
565e784d
TK
179 if (td->io_ops_dlhandle)
180 dlclose(td->io_ops_dlhandle);
5f350952 181
84585003 182 td->io_ops = NULL;
b990b5c0 183}
10ba535a 184
de890a1e
SL
185void close_ioengine(struct thread_data *td)
186{
187 dprint(FD_IO, "close ioengine %s\n", td->io_ops->name);
188
189 if (td->io_ops->cleanup) {
190 td->io_ops->cleanup(td);
565e784d 191 td->io_ops_data = NULL;
de890a1e
SL
192 }
193
194 free_ioengine(td);
195}
196
10ba535a
JA
197int td_io_prep(struct thread_data *td, struct io_u *io_u)
198{
ee56ad50 199 dprint_io_u(io_u, "prep");
7101d9c2
JA
200 fio_ro_check(td, io_u);
201
4d4e80f2 202 lock_file(td, io_u->file, io_u->ddir);
b2bd2bd9 203
2ba1c290
JA
204 if (td->io_ops->prep) {
205 int ret = td->io_ops->prep(td, io_u);
206
207 dprint(FD_IO, "->prep(%p)=%d\n", io_u, ret);
b2bd2bd9 208 if (ret)
4d4e80f2 209 unlock_file(td, io_u->file);
2ba1c290
JA
210 return ret;
211 }
10ba535a
JA
212
213 return 0;
214}
215
e7d2e616 216int td_io_getevents(struct thread_data *td, unsigned int min, unsigned int max,
1f440ece 217 const struct timespec *t)
10ba535a 218{
ee56ad50 219 int r = 0;
face81b2 220
a05d62b2
YR
221 /*
222 * For ioengine=rdma one side operation RDMA_WRITE or RDMA_READ,
223 * server side gets a message from the client
224 * side that the task is finished, and
225 * td->done is set to 1 after td_io_commit(). In this case,
226 * there is no need to reap complete event in server side.
227 */
228 if (td->done)
229 return 0;
230
ee56ad50
JA
231 if (min > 0 && td->io_ops->commit) {
232 r = td->io_ops->commit(td);
face81b2 233 if (r < 0)
ee56ad50 234 goto out;
face81b2 235 }
4950421a
JA
236 if (max > td->cur_depth)
237 max = td->cur_depth;
238 if (min > max)
239 max = min;
36167d82 240
ee56ad50 241 r = 0;
4950421a 242 if (max && td->io_ops->getevents)
ee56ad50
JA
243 r = td->io_ops->getevents(td, min, max, t);
244out:
422f9e4b
RM
245 if (r >= 0) {
246 /*
3fd9efbc 247 * Reflect that our submitted requests were retrieved with
422f9e4b
RM
248 * whatever OS async calls are in the underlying engine.
249 */
250 td->io_u_in_flight -= r;
838bc709 251 io_u_mark_complete(td, r);
422f9e4b 252 } else
7c639b14 253 td_verror(td, r, "get_events");
f3e11d05 254
ee56ad50
JA
255 dprint(FD_IO, "getevents: %d\n", r);
256 return r;
10ba535a
JA
257}
258
259int td_io_queue(struct thread_data *td, struct io_u *io_u)
260{
a9da8ab2
JA
261 const enum fio_ddir ddir = acct_ddir(io_u);
262 unsigned long buflen = io_u->xfer_buflen;
7e77dd02
JA
263 int ret;
264
ee56ad50 265 dprint_io_u(io_u, "queue");
7101d9c2
JA
266 fio_ro_check(td, io_u);
267
0c6e7517 268 assert((io_u->flags & IO_U_F_FLIGHT) == 0);
1651e431 269 io_u_set(td, io_u, IO_U_F_FLIGHT);
0c6e7517 270
d6aed795 271 assert(fio_file_open(io_u->file));
3d7b485f 272
bcd5abfa
JA
273 /*
274 * If using a write iolog, store this entry.
275 */
276 log_io_u(td, io_u);
277
11786802
JA
278 io_u->error = 0;
279 io_u->resid = 0;
280
9b87f09b 281 if (td_ioengine_flagged(td, FIO_SYNCIO)) {
12d9d841 282 if (fio_fill_issue_time(td))
9520ebb9 283 fio_gettime(&io_u->issue_time, NULL);
d0c15328
JA
284
285 /*
286 * only used for iolog
287 */
288 if (td->o.read_iolog_file)
289 memcpy(&td->last_issue, &io_u->issue_time,
8b6a404c 290 sizeof(io_u->issue_time));
433afcb4
JA
291 }
292
a9da8ab2
JA
293 if (ddir_rw(ddir)) {
294 td->io_issues[ddir]++;
295 td->io_issue_bytes[ddir] += buflen;
50a8ce86 296 td->rate_io_issue_bytes[ddir] += buflen;
74d6277f 297 }
755200a3 298
7e77dd02 299 ret = td->io_ops->queue(td, io_u);
5aeb77df 300
4d4e80f2 301 unlock_file(td, io_u->file);
b2bd2bd9 302
a9da8ab2
JA
303 if (ret == FIO_Q_BUSY && ddir_rw(ddir)) {
304 td->io_issues[ddir]--;
305 td->io_issue_bytes[ddir] -= buflen;
50a8ce86 306 td->rate_io_issue_bytes[ddir] -= buflen;
871467d9 307 io_u_clear(td, io_u, IO_U_F_FLIGHT);
cd8a19e6
JA
308 }
309
39a43d34
JA
310 /*
311 * If an error was seen and the io engine didn't propagate it
312 * back to 'td', do so.
313 */
314 if (io_u->error && !td->error)
315 td_verror(td, io_u->error, "td_io_queue");
316
cb211682
JA
317 /*
318 * Add warning for O_DIRECT so that users have an easier time
319 * spotting potentially bad alignment. If this triggers for the first
320 * IO, then it's likely an alignment problem or because the host fs
321 * does not support O_DIRECT
322 */
ff58fced 323 if (io_u->error == EINVAL && td->io_issues[io_u->ddir & 1] == 1 &&
cb211682 324 td->o.odirect) {
214ac7e0 325
cb211682 326 log_info("fio: first direct IO errored. File system may not "
44cc9c8f
JA
327 "support direct IO, or iomem_align= is bad. Try "
328 "setting direct=0.\n");
cb211682
JA
329 }
330
77b451cc 331 if (!td->io_ops->commit || io_u->ddir == DDIR_TRIM) {
838bc709
JA
332 io_u_mark_submit(td, 1);
333 io_u_mark_complete(td, 1);
334 }
335
d8005759 336 if (ret == FIO_Q_COMPLETED) {
ff58fced 337 if (ddir_rw(io_u->ddir)) {
d8005759
JA
338 io_u_mark_depth(td, 1);
339 td->ts.total_io_u[io_u->ddir]++;
6eaf09d6 340 }
d8005759 341 } else if (ret == FIO_Q_QUEUED) {
eb7c8ae2
JA
342 int r;
343
e6727cbd
JA
344 td->io_u_queued++;
345
346 if (ddir_rw(io_u->ddir))
d8005759 347 td->ts.total_io_u[io_u->ddir]++;
d8005759
JA
348
349 if (td->io_u_queued >= td->o.iodepth_batch) {
eb7c8ae2
JA
350 r = td_io_commit(td);
351 if (r < 0)
352 return r;
353 }
354 }
cb5ab512 355
9b87f09b 356 if (!td_ioengine_flagged(td, FIO_SYNCIO)) {
12d9d841 357 if (fio_fill_issue_time(td))
9520ebb9 358 fio_gettime(&io_u->issue_time, NULL);
d0c15328
JA
359
360 /*
361 * only used for iolog
362 */
363 if (td->o.read_iolog_file)
364 memcpy(&td->last_issue, &io_u->issue_time,
8b6a404c 365 sizeof(io_u->issue_time));
433afcb4
JA
366 }
367
7e77dd02 368 return ret;
10ba535a 369}
8c16d840
JA
370
371int td_io_init(struct thread_data *td)
372{
eeb12160 373 int ret = 0;
8c16d840 374
eeb12160
JA
375 if (td->io_ops->init) {
376 ret = td->io_ops->init(td);
356ef1a1
TK
377 if (ret)
378 log_err("fio: io engine %s init failed.%s\n",
379 td->io_ops->name,
380 td->o.iodepth > 1 ?
381 " Perhaps try reducing io depth?" : "");
382 else
383 td->io_ops_init = 1;
7c973896
JA
384 if (!td->error)
385 td->error = ret;
eeb12160
JA
386 }
387
388 return ret;
8c16d840 389}
755200a3
JA
390
391int td_io_commit(struct thread_data *td)
392{
f3e11d05
JA
393 int ret;
394
ee56ad50
JA
395 dprint(FD_IO, "calling ->commit(), depth %d\n", td->cur_depth);
396
d8005759 397 if (!td->cur_depth || !td->io_u_queued)
e1161c32 398 return 0;
cb5ab512 399
3fd9efbc 400 io_u_mark_depth(td, td->io_u_queued);
d8005759 401
f3e11d05
JA
402 if (td->io_ops->commit) {
403 ret = td->io_ops->commit(td);
404 if (ret)
405 td_verror(td, -ret, "io commit");
406 }
3fd9efbc 407
422f9e4b
RM
408 /*
409 * Reflect that events were submitted as async IO requests.
410 */
411 td->io_u_in_flight += td->io_u_queued;
412 td->io_u_queued = 0;
755200a3
JA
413
414 return 0;
415}
b5af8293
JA
416
417int td_io_open_file(struct thread_data *td, struct fio_file *f)
418{
22a57ba8
JA
419 assert(!fio_file_open(f));
420 assert(f->fd == -1);
421
413d6693
JA
422 if (td->io_ops->open_file(td, f)) {
423 if (td->error == EINVAL && td->o.odirect)
424 log_err("fio: destination does not support O_DIRECT\n");
5ec10eaa
JA
425 if (td->error == EMFILE) {
426 log_err("fio: try reducing/setting openfiles (failed"
427 " at %u of %u)\n", td->nr_open_files,
428 td->o.nr_files);
429 }
413d6693 430
22a57ba8
JA
431 assert(f->fd == -1);
432 assert(!fio_file_open(f));
413d6693
JA
433 return 1;
434 }
435
33c48814 436 fio_file_reset(td, f);
d6aed795
JA
437 fio_file_set_open(f);
438 fio_file_clear_closing(f);
c97bd0fa 439 disk_util_inc(f->du);
d5707a35
JA
440
441 td->nr_open_files++;
442 get_file(f);
443
66159828
JA
444 if (f->filetype == FIO_TYPE_PIPE) {
445 if (td_random(td)) {
446 log_err("fio: can't seek on pipes (no random io)\n");
447 goto err;
448 }
449 }
450
9b87f09b 451 if (td_ioengine_flagged(td, FIO_DISKLESSIO))
413d6693
JA
452 goto done;
453
454 if (td->o.invalidate_cache && file_invalidate_cache(td, f))
455 goto err;
456
ecb2083d 457 if (td->o.fadvise_hint != F_ADV_NONE &&
686fbd31 458 (f->filetype == FIO_TYPE_BLOCK || f->filetype == FIO_TYPE_FILE)) {
413d6693
JA
459 int flags;
460
ecb2083d
JA
461 if (td->o.fadvise_hint == F_ADV_TYPE) {
462 if (td_random(td))
463 flags = POSIX_FADV_RANDOM;
464 else
465 flags = POSIX_FADV_SEQUENTIAL;
466 } else if (td->o.fadvise_hint == F_ADV_RANDOM)
413d6693 467 flags = POSIX_FADV_RANDOM;
ecb2083d 468 else if (td->o.fadvise_hint == F_ADV_SEQUENTIAL)
413d6693 469 flags = POSIX_FADV_SEQUENTIAL;
ecb2083d
JA
470 else {
471 log_err("fio: unknown fadvise type %d\n",
472 td->o.fadvise_hint);
473 flags = POSIX_FADV_NORMAL;
474 }
413d6693 475
ecc314ba 476 if (posix_fadvise(f->fd, f->file_offset, f->io_size, flags) < 0) {
413d6693
JA
477 td_verror(td, errno, "fadvise");
478 goto err;
479 }
7bb48f84 480 }
ae8e559e
JA
481#ifdef FIO_HAVE_WRITE_HINT
482 if (fio_option_is_set(&td->o, write_hint) &&
686fbd31 483 (f->filetype == FIO_TYPE_BLOCK || f->filetype == FIO_TYPE_FILE)) {
ae8e559e 484 uint64_t hint = td->o.write_hint;
bd553af6 485 int cmd;
37659335 486
bd553af6
JA
487 /*
488 * For direct IO, we just need/want to set the hint on
489 * the file descriptor. For buffered IO, we need to set
490 * it on the inode.
491 */
492 if (td->o.odirect)
493 cmd = F_SET_FILE_RW_HINT;
494 else
495 cmd = F_SET_RW_HINT;
496
497 if (fcntl(f->fd, cmd, &hint) < 0) {
ae8e559e 498 td_verror(td, errno, "fcntl write hint");
37659335
JA
499 goto err;
500 }
501 }
502#endif
a978ba68 503
47534cda
TK
504 if (td->o.odirect && !OS_O_DIRECT && fio_set_directio(td, f))
505 goto err;
e116f2b9 506
413d6693 507done:
f29b25a3 508 log_file(td, f, FIO_LOG_OPEN_FILE);
413d6693
JA
509 return 0;
510err:
c97bd0fa 511 disk_util_dec(f->du);
b284075a
JA
512 if (td->io_ops->close_file)
513 td->io_ops->close_file(td, f);
7bb48f84 514 return 1;
b5af8293
JA
515}
516
6977bcd0 517int td_io_close_file(struct thread_data *td, struct fio_file *f)
b5af8293 518{
d6aed795 519 if (!fio_file_closing(f))
f29b25a3
JA
520 log_file(td, f, FIO_LOG_CLOSE_FILE);
521
0ad920e7
JA
522 /*
523 * mark as closing, do real close when last io on it has completed
524 */
d6aed795 525 fio_file_set_closing(f);
0ad920e7 526
c97bd0fa 527 disk_util_dec(f->du);
cba5243b
JA
528
529 if (td->o.file_lock_mode != FILE_LOCK_NONE)
530 unlock_file_all(td, f);
29c1349f 531
6977bcd0 532 return put_file(td, f);
b5af8293 533}
df9c26b1 534
38ef9c90
CF
535int td_io_unlink_file(struct thread_data *td, struct fio_file *f)
536{
537 if (td->io_ops->unlink_file)
538 return td->io_ops->unlink_file(td, f);
2442c935
JA
539 else {
540 int ret;
541
542 ret = unlink(f->file_name);
543 if (ret < 0)
544 return errno;
545
546 return 0;
547 }
38ef9c90
CF
548}
549
df9c26b1
JA
550int td_io_get_file_size(struct thread_data *td, struct fio_file *f)
551{
552 if (!td->io_ops->get_file_size)
553 return 0;
554
555 return td->io_ops->get_file_size(td, f);
556}
44f29692 557
de890a1e
SL
558int fio_show_ioengine_help(const char *engine)
559{
560 struct flist_head *entry;
561 struct thread_data td;
755dcbbd 562 struct ioengine_ops *io_ops;
de890a1e
SL
563 char *sep;
564 int ret = 1;
565
566 if (!engine || !*engine) {
567 log_info("Available IO engines:\n");
568 flist_for_each(entry, &engine_list) {
755dcbbd
TK
569 io_ops = flist_entry(entry, struct ioengine_ops, list);
570 log_info("\t%s\n", io_ops->name);
de890a1e
SL
571 }
572 return 0;
573 }
574 sep = strchr(engine, ',');
575 if (sep) {
576 *sep = 0;
577 sep++;
578 }
579
580 memset(&td, 0, sizeof(td));
581
4fedf59a
TK
582 td.o.ioengine = (char *)engine;
583 io_ops = load_ioengine(&td);
755dcbbd 584 if (!io_ops) {
de890a1e
SL
585 log_info("IO engine %s not found\n", engine);
586 return 1;
587 }
588
755dcbbd
TK
589 if (io_ops->options)
590 ret = show_cmd_help(io_ops->options, sep);
de890a1e 591 else
755dcbbd 592 log_info("IO engine %s has no options\n", io_ops->name);
de890a1e
SL
593
594 free_ioengine(&td);
595
596 return ret;
597}