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