mutex: add magic checks
[fio.git] / ioengines.c
... / ...
CommitLineData
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>
15#include <string.h>
16#include <dlfcn.h>
17#include <fcntl.h>
18#include <assert.h>
19
20#include "fio.h"
21#include "diskutil.h"
22
23static FLIST_HEAD(engine_list);
24
25static int check_engine_ops(struct ioengine_ops *ops)
26{
27 if (ops->version != FIO_IOOPS_VERSION) {
28 log_err("bad ioops version %d (want %d)\n", ops->version,
29 FIO_IOOPS_VERSION);
30 return 1;
31 }
32
33 if (!ops->queue) {
34 log_err("%s: no queue handler\n", ops->name);
35 return 1;
36 }
37
38 /*
39 * sync engines only need a ->queue()
40 */
41 if (ops->flags & FIO_SYNCIO)
42 return 0;
43
44 if (!ops->event) {
45 log_err("%s: no event handler\n", ops->name);
46 return 1;
47 }
48 if (!ops->getevents) {
49 log_err("%s: no getevents handler\n", ops->name);
50 return 1;
51 }
52 if (!ops->queue) {
53 log_err("%s: no queue handler\n", ops->name);
54 return 1;
55 }
56
57 return 0;
58}
59
60void unregister_ioengine(struct ioengine_ops *ops)
61{
62 dprint(FD_IO, "ioengine %s unregistered\n", ops->name);
63 flist_del(&ops->list);
64 INIT_FLIST_HEAD(&ops->list);
65}
66
67void register_ioengine(struct ioengine_ops *ops)
68{
69 dprint(FD_IO, "ioengine %s registered\n", ops->name);
70 INIT_FLIST_HEAD(&ops->list);
71 flist_add_tail(&ops->list, &engine_list);
72}
73
74static struct ioengine_ops *find_ioengine(const char *name)
75{
76 struct ioengine_ops *ops;
77 struct flist_head *entry;
78
79 flist_for_each(entry, &engine_list) {
80 ops = flist_entry(entry, struct ioengine_ops, list);
81 if (!strcmp(name, ops->name))
82 return ops;
83 }
84
85 return NULL;
86}
87
88static struct ioengine_ops *dlopen_ioengine(struct thread_data *td,
89 const char *engine_lib)
90{
91 struct ioengine_ops *ops;
92 void *dlhandle;
93
94 dprint(FD_IO, "dload engine %s\n", engine_lib);
95
96 dlerror();
97 dlhandle = dlopen(engine_lib, RTLD_LAZY);
98 if (!dlhandle) {
99 td_vmsg(td, -1, dlerror(), "dlopen");
100 return NULL;
101 }
102
103 /*
104 * Unlike the included modules, external engines should have a
105 * non-static ioengine structure that we can reference.
106 */
107 ops = dlsym(dlhandle, engine_lib);
108 if (!ops)
109 ops = dlsym(dlhandle, "ioengine");
110 if (!ops) {
111 td_vmsg(td, -1, dlerror(), "dlsym");
112 dlclose(dlhandle);
113 return NULL;
114 }
115
116 ops->dlhandle = dlhandle;
117 return ops;
118}
119
120struct ioengine_ops *load_ioengine(struct thread_data *td, const char *name)
121{
122 struct ioengine_ops *ops, *ret;
123 char engine[16];
124
125 dprint(FD_IO, "load ioengine %s\n", name);
126
127 strncpy(engine, name, sizeof(engine) - 1);
128
129 /*
130 * linux libaio has alias names, so convert to what we want
131 */
132 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
133 strcpy(engine, "libaio");
134
135 ops = find_ioengine(engine);
136 if (!ops)
137 ops = dlopen_ioengine(td, name);
138
139 if (!ops) {
140 log_err("fio: engine %s not loadable\n", name);
141 return NULL;
142 }
143
144 /*
145 * Check that the required methods are there.
146 */
147 if (check_engine_ops(ops))
148 return NULL;
149
150 ret = malloc(sizeof(*ret));
151 memcpy(ret, ops, sizeof(*ret));
152 ret->data = NULL;
153
154 return ret;
155}
156
157/*
158 * For cleaning up an ioengine which never made it to init().
159 */
160void free_ioengine(struct thread_data *td)
161{
162 dprint(FD_IO, "free ioengine %s\n", td->io_ops->name);
163
164 if (td->eo && td->io_ops->options) {
165 options_free(td->io_ops->options, td->eo);
166 free(td->eo);
167 td->eo = NULL;
168 }
169
170 if (td->io_ops->dlhandle)
171 dlclose(td->io_ops->dlhandle);
172
173 free(td->io_ops);
174 td->io_ops = NULL;
175}
176
177void close_ioengine(struct thread_data *td)
178{
179 dprint(FD_IO, "close ioengine %s\n", td->io_ops->name);
180
181 if (td->io_ops->cleanup) {
182 td->io_ops->cleanup(td);
183 td->io_ops->data = NULL;
184 }
185
186 free_ioengine(td);
187}
188
189int td_io_prep(struct thread_data *td, struct io_u *io_u)
190{
191 dprint_io_u(io_u, "prep");
192 fio_ro_check(td, io_u);
193
194 lock_file(td, io_u->file, io_u->ddir);
195
196 if (td->io_ops->prep) {
197 int ret = td->io_ops->prep(td, io_u);
198
199 dprint(FD_IO, "->prep(%p)=%d\n", io_u, ret);
200 if (ret)
201 unlock_file(td, io_u->file);
202 return ret;
203 }
204
205 return 0;
206}
207
208int td_io_getevents(struct thread_data *td, unsigned int min, unsigned int max,
209 struct timespec *t)
210{
211 int r = 0;
212
213 /*
214 * For ioengine=rdma one side operation RDMA_WRITE or RDMA_READ,
215 * server side gets a message from the client
216 * side that the task is finished, and
217 * td->done is set to 1 after td_io_commit(). In this case,
218 * there is no need to reap complete event in server side.
219 */
220 if (td->done)
221 return 0;
222
223 if (min > 0 && td->io_ops->commit) {
224 r = td->io_ops->commit(td);
225 if (r < 0)
226 goto out;
227 }
228 if (max > td->cur_depth)
229 max = td->cur_depth;
230 if (min > max)
231 max = min;
232
233 r = 0;
234 if (max && td->io_ops->getevents)
235 r = td->io_ops->getevents(td, min, max, t);
236out:
237 if (r >= 0) {
238 /*
239 * Reflect that our submitted requests were retrieved with
240 * whatever OS async calls are in the underlying engine.
241 */
242 td->io_u_in_flight -= r;
243 io_u_mark_complete(td, r);
244 } else
245 td_verror(td, r, "get_events");
246
247 dprint(FD_IO, "getevents: %d\n", r);
248 return r;
249}
250
251int td_io_queue(struct thread_data *td, struct io_u *io_u)
252{
253 int ret;
254
255 dprint_io_u(io_u, "queue");
256 fio_ro_check(td, io_u);
257
258 assert((io_u->flags & IO_U_F_FLIGHT) == 0);
259 io_u->flags |= IO_U_F_FLIGHT;
260
261 assert(fio_file_open(io_u->file));
262
263 /*
264 * If using a write iolog, store this entry.
265 */
266 log_io_u(td, io_u);
267
268 io_u->error = 0;
269 io_u->resid = 0;
270
271 if (td->io_ops->flags & FIO_SYNCIO) {
272 if (fio_fill_issue_time(td))
273 fio_gettime(&io_u->issue_time, NULL);
274
275 /*
276 * only used for iolog
277 */
278 if (td->o.read_iolog_file)
279 memcpy(&td->last_issue, &io_u->issue_time,
280 sizeof(struct timeval));
281 }
282
283 if (ddir_rw(acct_ddir(io_u)))
284 td->io_issues[acct_ddir(io_u)]++;
285
286 ret = td->io_ops->queue(td, io_u);
287
288 unlock_file(td, io_u->file);
289
290 /*
291 * Add warning for O_DIRECT so that users have an easier time
292 * spotting potentially bad alignment. If this triggers for the first
293 * IO, then it's likely an alignment problem or because the host fs
294 * does not support O_DIRECT
295 */
296 if (io_u->error == EINVAL && td->io_issues[io_u->ddir & 1] == 1 &&
297 td->o.odirect) {
298
299 log_info("fio: first direct IO errored. File system may not "
300 "support direct IO, or iomem_align= is bad.\n");
301 }
302
303 if (!td->io_ops->commit || ddir_trim(io_u->ddir)) {
304 io_u_mark_submit(td, 1);
305 io_u_mark_complete(td, 1);
306 }
307
308 if (ret == FIO_Q_COMPLETED) {
309 if (ddir_rw(io_u->ddir)) {
310 io_u_mark_depth(td, 1);
311 td->ts.total_io_u[io_u->ddir]++;
312 }
313 } else if (ret == FIO_Q_QUEUED) {
314 int r;
315
316 if (ddir_rw(io_u->ddir)) {
317 td->io_u_queued++;
318 td->ts.total_io_u[io_u->ddir]++;
319 }
320
321 if (td->io_u_queued >= td->o.iodepth_batch) {
322 r = td_io_commit(td);
323 if (r < 0)
324 return r;
325 }
326 }
327
328 if ((td->io_ops->flags & FIO_SYNCIO) == 0) {
329 if (fio_fill_issue_time(td))
330 fio_gettime(&io_u->issue_time, NULL);
331
332 /*
333 * only used for iolog
334 */
335 if (td->o.read_iolog_file)
336 memcpy(&td->last_issue, &io_u->issue_time,
337 sizeof(struct timeval));
338 }
339
340 return ret;
341}
342
343int td_io_init(struct thread_data *td)
344{
345 int ret = 0;
346
347 if (td->io_ops->init) {
348 ret = td->io_ops->init(td);
349 if (ret && td->o.iodepth > 1) {
350 log_err("fio: io engine init failed. Perhaps try"
351 " reducing io depth?\n");
352 }
353 if (!td->error)
354 td->error = ret;
355 }
356
357 return ret;
358}
359
360int td_io_commit(struct thread_data *td)
361{
362 int ret;
363
364 dprint(FD_IO, "calling ->commit(), depth %d\n", td->cur_depth);
365
366 if (!td->cur_depth || !td->io_u_queued)
367 return 0;
368
369 io_u_mark_depth(td, td->io_u_queued);
370
371 if (td->io_ops->commit) {
372 ret = td->io_ops->commit(td);
373 if (ret)
374 td_verror(td, -ret, "io commit");
375 }
376
377 /*
378 * Reflect that events were submitted as async IO requests.
379 */
380 td->io_u_in_flight += td->io_u_queued;
381 td->io_u_queued = 0;
382
383 return 0;
384}
385
386int td_io_open_file(struct thread_data *td, struct fio_file *f)
387{
388 assert(!fio_file_open(f));
389 assert(f->fd == -1);
390
391 if (td->io_ops->open_file(td, f)) {
392 if (td->error == EINVAL && td->o.odirect)
393 log_err("fio: destination does not support O_DIRECT\n");
394 if (td->error == EMFILE) {
395 log_err("fio: try reducing/setting openfiles (failed"
396 " at %u of %u)\n", td->nr_open_files,
397 td->o.nr_files);
398 }
399
400 assert(f->fd == -1);
401 assert(!fio_file_open(f));
402 return 1;
403 }
404
405 fio_file_reset(td, f);
406 fio_file_set_open(f);
407 fio_file_clear_closing(f);
408 disk_util_inc(f->du);
409
410 td->nr_open_files++;
411 get_file(f);
412
413 if (f->filetype == FIO_TYPE_PIPE) {
414 if (td_random(td)) {
415 log_err("fio: can't seek on pipes (no random io)\n");
416 goto err;
417 }
418 }
419
420 if (td->io_ops->flags & FIO_DISKLESSIO)
421 goto done;
422
423 if (td->o.invalidate_cache && file_invalidate_cache(td, f))
424 goto err;
425
426 if (td->o.fadvise_hint &&
427 (f->filetype == FIO_TYPE_BD || f->filetype == FIO_TYPE_FILE)) {
428 int flags;
429
430 if (td_random(td))
431 flags = POSIX_FADV_RANDOM;
432 else
433 flags = POSIX_FADV_SEQUENTIAL;
434
435 if (posix_fadvise(f->fd, f->file_offset, f->io_size, flags) < 0) {
436 td_verror(td, errno, "fadvise");
437 goto err;
438 }
439 }
440
441#ifdef FIO_OS_DIRECTIO
442 /*
443 * Some OS's have a distinct call to mark the file non-buffered,
444 * instead of using O_DIRECT (Solaris)
445 */
446 if (td->o.odirect) {
447 int ret = fio_set_odirect(f->fd);
448
449 if (ret) {
450 td_verror(td, ret, "fio_set_odirect");
451 log_err("fio: the file system does not seem to support direct IO\n");
452 goto err;
453 }
454 }
455#endif
456
457done:
458 log_file(td, f, FIO_LOG_OPEN_FILE);
459 return 0;
460err:
461 disk_util_dec(f->du);
462 if (td->io_ops->close_file)
463 td->io_ops->close_file(td, f);
464 return 1;
465}
466
467int td_io_close_file(struct thread_data *td, struct fio_file *f)
468{
469 if (!fio_file_closing(f))
470 log_file(td, f, FIO_LOG_CLOSE_FILE);
471
472 /*
473 * mark as closing, do real close when last io on it has completed
474 */
475 fio_file_set_closing(f);
476
477 disk_util_dec(f->du);
478 unlock_file_all(td, f);
479
480 return put_file(td, f);
481}
482
483int td_io_get_file_size(struct thread_data *td, struct fio_file *f)
484{
485 if (!td->io_ops->get_file_size)
486 return 0;
487
488 return td->io_ops->get_file_size(td, f);
489}
490
491static int do_sync_file_range(struct thread_data *td, struct fio_file *f)
492{
493 off64_t offset, nbytes;
494
495 offset = f->first_write;
496 nbytes = f->last_write - f->first_write;
497
498 if (!nbytes)
499 return 0;
500
501 return sync_file_range(f->fd, offset, nbytes, td->o.sync_file_range);
502}
503
504int do_io_u_sync(struct thread_data *td, struct io_u *io_u)
505{
506 int ret;
507
508 if (io_u->ddir == DDIR_SYNC) {
509 ret = fsync(io_u->file->fd);
510 } else if (io_u->ddir == DDIR_DATASYNC) {
511#ifdef CONFIG_FDATASYNC
512 ret = fdatasync(io_u->file->fd);
513#else
514 ret = io_u->xfer_buflen;
515 io_u->error = EINVAL;
516#endif
517 } else if (io_u->ddir == DDIR_SYNC_FILE_RANGE)
518 ret = do_sync_file_range(td, io_u->file);
519 else {
520 ret = io_u->xfer_buflen;
521 io_u->error = EINVAL;
522 }
523
524 if (ret < 0)
525 io_u->error = errno;
526
527 return ret;
528}
529
530int do_io_u_trim(struct thread_data *td, struct io_u *io_u)
531{
532#ifndef FIO_HAVE_TRIM
533 io_u->error = EINVAL;
534 return 0;
535#else
536 struct fio_file *f = io_u->file;
537 int ret;
538
539 ret = os_trim(f->fd, io_u->offset, io_u->xfer_buflen);
540 if (!ret)
541 return io_u->xfer_buflen;;
542
543 io_u->error = ret;
544 return 0;
545#endif
546}
547
548int fio_show_ioengine_help(const char *engine)
549{
550 struct flist_head *entry;
551 struct thread_data td;
552 char *sep;
553 int ret = 1;
554
555 if (!engine || !*engine) {
556 log_info("Available IO engines:\n");
557 flist_for_each(entry, &engine_list) {
558 td.io_ops = flist_entry(entry, struct ioengine_ops,
559 list);
560 log_info("\t%s\n", td.io_ops->name);
561 }
562 return 0;
563 }
564 sep = strchr(engine, ',');
565 if (sep) {
566 *sep = 0;
567 sep++;
568 }
569
570 memset(&td, 0, sizeof(td));
571
572 td.io_ops = load_ioengine(&td, engine);
573 if (!td.io_ops) {
574 log_info("IO engine %s not found\n", engine);
575 return 1;
576 }
577
578 if (td.io_ops->options)
579 ret = show_cmd_help(td.io_ops->options, sep);
580 else
581 log_info("IO engine %s has no options\n", td.io_ops->name);
582
583 free_ioengine(&td);
584
585 return ret;
586}