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