libaio: don't call io_destroy(), let exit_aio() take care of it
[fio.git] / ioengines.c
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
23 static FLIST_HEAD(engine_list);
24
25 static 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
60 void 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
67 void 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
74 static 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
88 static 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
111         /*
112          * For some external engines (like C++ ones) it is not that trivial
113          * to provide a non-static ionengine structure that we can reference.
114          * Instead we call a method which allocates the required ioengine
115          * structure.
116          */
117         if (!ops) {
118                 get_ioengine_t get_ioengine = dlsym(dlhandle, "get_ioengine");
119
120                 if (get_ioengine)
121                         get_ioengine(&ops);
122         }
123
124         if (!ops) {
125                 td_vmsg(td, -1, dlerror(), "dlsym");
126                 dlclose(dlhandle);
127                 return NULL;
128         }
129
130         ops->dlhandle = dlhandle;
131         return ops;
132 }
133
134 struct ioengine_ops *load_ioengine(struct thread_data *td, const char *name)
135 {
136         struct ioengine_ops *ops, *ret;
137         char engine[16];
138
139         dprint(FD_IO, "load ioengine %s\n", name);
140
141         strncpy(engine, name, sizeof(engine) - 1);
142
143         /*
144          * linux libaio has alias names, so convert to what we want
145          */
146         if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
147                 strcpy(engine, "libaio");
148
149         ops = find_ioengine(engine);
150         if (!ops)
151                 ops = dlopen_ioengine(td, name);
152
153         if (!ops) {
154                 log_err("fio: engine %s not loadable\n", name);
155                 return NULL;
156         }
157
158         /*
159          * Check that the required methods are there.
160          */
161         if (check_engine_ops(ops))
162                 return NULL;
163
164         ret = malloc(sizeof(*ret));
165         memcpy(ret, ops, sizeof(*ret));
166         ret->data = NULL;
167
168         return ret;
169 }
170
171 /*
172  * For cleaning up an ioengine which never made it to init().
173  */
174 void free_ioengine(struct thread_data *td)
175 {
176         dprint(FD_IO, "free ioengine %s\n", td->io_ops->name);
177
178         if (td->eo && td->io_ops->options) {
179                 options_free(td->io_ops->options, td->eo);
180                 free(td->eo);
181                 td->eo = NULL;
182         }
183
184         if (td->io_ops->dlhandle)
185                 dlclose(td->io_ops->dlhandle);
186
187         free(td->io_ops);
188         td->io_ops = NULL;
189 }
190
191 void close_ioengine(struct thread_data *td)
192 {
193         dprint(FD_IO, "close ioengine %s\n", td->io_ops->name);
194
195         if (td->io_ops->cleanup) {
196                 td->io_ops->cleanup(td);
197                 td->io_ops->data = NULL;
198         }
199
200         free_ioengine(td);
201 }
202
203 int td_io_prep(struct thread_data *td, struct io_u *io_u)
204 {
205         dprint_io_u(io_u, "prep");
206         fio_ro_check(td, io_u);
207
208         lock_file(td, io_u->file, io_u->ddir);
209
210         if (td->io_ops->prep) {
211                 int ret = td->io_ops->prep(td, io_u);
212
213                 dprint(FD_IO, "->prep(%p)=%d\n", io_u, ret);
214                 if (ret)
215                         unlock_file(td, io_u->file);
216                 return ret;
217         }
218
219         return 0;
220 }
221
222 int td_io_getevents(struct thread_data *td, unsigned int min, unsigned int max,
223                     const struct timespec *t)
224 {
225         int r = 0;
226
227         /*
228          * For ioengine=rdma one side operation RDMA_WRITE or RDMA_READ,
229          * server side gets a message from the client
230          * side that the task is finished, and
231          * td->done is set to 1 after td_io_commit(). In this case,
232          * there is no need to reap complete event in server side.
233          */
234         if (td->done)
235                 return 0;
236
237         if (min > 0 && td->io_ops->commit) {
238                 r = td->io_ops->commit(td);
239                 if (r < 0)
240                         goto out;
241         }
242         if (max > td->cur_depth)
243                 max = td->cur_depth;
244         if (min > max)
245                 max = min;
246
247         r = 0;
248         if (max && td->io_ops->getevents)
249                 r = td->io_ops->getevents(td, min, max, t);
250 out:
251         if (r >= 0) {
252                 /*
253                  * Reflect that our submitted requests were retrieved with
254                  * whatever OS async calls are in the underlying engine.
255                  */
256                 td->io_u_in_flight -= r;
257                 io_u_mark_complete(td, r);
258         } else
259                 td_verror(td, r, "get_events");
260
261         dprint(FD_IO, "getevents: %d\n", r);
262         return r;
263 }
264
265 int td_io_queue(struct thread_data *td, struct io_u *io_u)
266 {
267         const enum fio_ddir ddir = acct_ddir(io_u);
268         unsigned long buflen = io_u->xfer_buflen;
269         int ret;
270
271         dprint_io_u(io_u, "queue");
272         fio_ro_check(td, io_u);
273
274         assert((io_u->flags & IO_U_F_FLIGHT) == 0);
275         io_u_set(io_u, IO_U_F_FLIGHT);
276
277         assert(fio_file_open(io_u->file));
278
279         /*
280          * If using a write iolog, store this entry.
281          */
282         log_io_u(td, io_u);
283
284         io_u->error = 0;
285         io_u->resid = 0;
286
287         if (td->io_ops->flags & FIO_SYNCIO) {
288                 if (fio_fill_issue_time(td))
289                         fio_gettime(&io_u->issue_time, NULL);
290
291                 /*
292                  * only used for iolog
293                  */
294                 if (td->o.read_iolog_file)
295                         memcpy(&td->last_issue, &io_u->issue_time,
296                                         sizeof(struct timeval));
297         }
298
299         if (ddir_rw(ddir)) {
300                 td->io_issues[ddir]++;
301                 td->io_issue_bytes[ddir] += buflen;
302         }
303
304         ret = td->io_ops->queue(td, io_u);
305
306         unlock_file(td, io_u->file);
307
308         if (ret == FIO_Q_BUSY && ddir_rw(ddir)) {
309                 td->io_issues[ddir]--;
310                 td->io_issue_bytes[ddir] -= buflen;
311         }
312
313         /*
314          * If an error was seen and the io engine didn't propagate it
315          * back to 'td', do so.
316          */
317         if (io_u->error && !td->error)
318                 td_verror(td, io_u->error, "td_io_queue");
319
320         /*
321          * Add warning for O_DIRECT so that users have an easier time
322          * spotting potentially bad alignment. If this triggers for the first
323          * IO, then it's likely an alignment problem or because the host fs
324          * does not support O_DIRECT
325          */
326         if (io_u->error == EINVAL && td->io_issues[io_u->ddir & 1] == 1 &&
327             td->o.odirect) {
328
329                 log_info("fio: first direct IO errored. File system may not "
330                          "support direct IO, or iomem_align= is bad.\n");
331         }
332
333         if (!td->io_ops->commit || io_u->ddir == DDIR_TRIM) {
334                 io_u_mark_submit(td, 1);
335                 io_u_mark_complete(td, 1);
336         }
337
338         if (ret == FIO_Q_COMPLETED) {
339                 if (ddir_rw(io_u->ddir)) {
340                         io_u_mark_depth(td, 1);
341                         td->ts.total_io_u[io_u->ddir]++;
342                 }
343         } else if (ret == FIO_Q_QUEUED) {
344                 int r;
345
346                 if (ddir_rw(io_u->ddir)) {
347                         td->io_u_queued++;
348                         td->ts.total_io_u[io_u->ddir]++;
349                 }
350
351                 if (td->io_u_queued >= td->o.iodepth_batch) {
352                         r = td_io_commit(td);
353                         if (r < 0)
354                                 return r;
355                 }
356         }
357
358         if ((td->io_ops->flags & FIO_SYNCIO) == 0) {
359                 if (fio_fill_issue_time(td))
360                         fio_gettime(&io_u->issue_time, NULL);
361
362                 /*
363                  * only used for iolog
364                  */
365                 if (td->o.read_iolog_file)
366                         memcpy(&td->last_issue, &io_u->issue_time,
367                                         sizeof(struct timeval));
368         }
369
370         return ret;
371 }
372
373 int td_io_init(struct thread_data *td)
374 {
375         int ret = 0;
376
377         if (td->io_ops->init) {
378                 ret = td->io_ops->init(td);
379                 if (ret && td->o.iodepth > 1) {
380                         log_err("fio: io engine init failed. Perhaps try"
381                                 " reducing io depth?\n");
382                 }
383                 if (!td->error)
384                         td->error = ret;
385         }
386
387         if (!ret && (td->io_ops->flags & FIO_NOIO))
388                 td->flags |= TD_F_NOIO;
389
390         return ret;
391 }
392
393 int td_io_commit(struct thread_data *td)
394 {
395         int ret;
396
397         dprint(FD_IO, "calling ->commit(), depth %d\n", td->cur_depth);
398
399         if (!td->cur_depth || !td->io_u_queued)
400                 return 0;
401
402         io_u_mark_depth(td, td->io_u_queued);
403
404         if (td->io_ops->commit) {
405                 ret = td->io_ops->commit(td);
406                 if (ret)
407                         td_verror(td, -ret, "io commit");
408         }
409
410         /*
411          * Reflect that events were submitted as async IO requests.
412          */
413         td->io_u_in_flight += td->io_u_queued;
414         td->io_u_queued = 0;
415
416         return 0;
417 }
418
419 int td_io_open_file(struct thread_data *td, struct fio_file *f)
420 {
421         assert(!fio_file_open(f));
422         assert(f->fd == -1);
423
424         if (td->io_ops->open_file(td, f)) {
425                 if (td->error == EINVAL && td->o.odirect)
426                         log_err("fio: destination does not support O_DIRECT\n");
427                 if (td->error == EMFILE) {
428                         log_err("fio: try reducing/setting openfiles (failed"
429                                 " at %u of %u)\n", td->nr_open_files,
430                                                         td->o.nr_files);
431                 }
432
433                 assert(f->fd == -1);
434                 assert(!fio_file_open(f));
435                 return 1;
436         }
437
438         fio_file_reset(td, f);
439         fio_file_set_open(f);
440         fio_file_clear_closing(f);
441         disk_util_inc(f->du);
442
443         td->nr_open_files++;
444         get_file(f);
445
446         if (f->filetype == FIO_TYPE_PIPE) {
447                 if (td_random(td)) {
448                         log_err("fio: can't seek on pipes (no random io)\n");
449                         goto err;
450                 }
451         }
452
453         if (td->io_ops->flags & FIO_DISKLESSIO)
454                 goto done;
455
456         if (td->o.invalidate_cache && file_invalidate_cache(td, f))
457                 goto err;
458
459         if (td->o.fadvise_hint &&
460             (f->filetype == FIO_TYPE_BD || f->filetype == FIO_TYPE_FILE)) {
461                 int flags;
462
463                 if (td_random(td))
464                         flags = POSIX_FADV_RANDOM;
465                 else
466                         flags = POSIX_FADV_SEQUENTIAL;
467
468                 if (posix_fadvise(f->fd, f->file_offset, f->io_size, flags) < 0) {
469                         td_verror(td, errno, "fadvise");
470                         goto err;
471                 }
472         }
473 #ifdef FIO_HAVE_STREAMID
474         if (td->o.fadvise_stream &&
475             (f->filetype == FIO_TYPE_BD || f->filetype == FIO_TYPE_FILE)) {
476                 off_t stream = td->o.fadvise_stream;
477
478                 if (posix_fadvise(f->fd, stream, f->io_size, POSIX_FADV_STREAMID) < 0) {
479                         td_verror(td, errno, "fadvise streamid");
480                         goto err;
481                 }
482         }
483 #endif
484
485 #ifdef FIO_OS_DIRECTIO
486         /*
487          * Some OS's have a distinct call to mark the file non-buffered,
488          * instead of using O_DIRECT (Solaris)
489          */
490         if (td->o.odirect) {
491                 int ret = fio_set_odirect(f->fd);
492
493                 if (ret) {
494                         td_verror(td, ret, "fio_set_odirect");
495                         log_err("fio: the file system does not seem to support direct IO\n");
496                         goto err;
497                 }
498         }
499 #endif
500
501 done:
502         log_file(td, f, FIO_LOG_OPEN_FILE);
503         return 0;
504 err:
505         disk_util_dec(f->du);
506         if (td->io_ops->close_file)
507                 td->io_ops->close_file(td, f);
508         return 1;
509 }
510
511 int td_io_close_file(struct thread_data *td, struct fio_file *f)
512 {
513         if (!fio_file_closing(f))
514                 log_file(td, f, FIO_LOG_CLOSE_FILE);
515
516         /*
517          * mark as closing, do real close when last io on it has completed
518          */
519         fio_file_set_closing(f);
520
521         disk_util_dec(f->du);
522
523         if (td->o.file_lock_mode != FILE_LOCK_NONE)
524                 unlock_file_all(td, f);
525
526         return put_file(td, f);
527 }
528
529 int td_io_unlink_file(struct thread_data *td, struct fio_file *f)
530 {
531         if (td->io_ops->unlink_file)
532                 return td->io_ops->unlink_file(td, f);
533         else
534                 return unlink(f->file_name);
535 }
536
537 int td_io_get_file_size(struct thread_data *td, struct fio_file *f)
538 {
539         if (!td->io_ops->get_file_size)
540                 return 0;
541
542         return td->io_ops->get_file_size(td, f);
543 }
544
545 static int do_sync_file_range(const struct thread_data *td,
546                               struct fio_file *f)
547 {
548         off64_t offset, nbytes;
549
550         offset = f->first_write;
551         nbytes = f->last_write - f->first_write;
552
553         if (!nbytes)
554                 return 0;
555
556         return sync_file_range(f->fd, offset, nbytes, td->o.sync_file_range);
557 }
558
559 int do_io_u_sync(const struct thread_data *td, struct io_u *io_u)
560 {
561         int ret;
562
563         if (io_u->ddir == DDIR_SYNC) {
564                 ret = fsync(io_u->file->fd);
565         } else if (io_u->ddir == DDIR_DATASYNC) {
566 #ifdef CONFIG_FDATASYNC
567                 ret = fdatasync(io_u->file->fd);
568 #else
569                 ret = io_u->xfer_buflen;
570                 io_u->error = EINVAL;
571 #endif
572         } else if (io_u->ddir == DDIR_SYNC_FILE_RANGE)
573                 ret = do_sync_file_range(td, io_u->file);
574         else {
575                 ret = io_u->xfer_buflen;
576                 io_u->error = EINVAL;
577         }
578
579         if (ret < 0)
580                 io_u->error = errno;
581
582         return ret;
583 }
584
585 int do_io_u_trim(const struct thread_data *td, struct io_u *io_u)
586 {
587 #ifndef FIO_HAVE_TRIM
588         io_u->error = EINVAL;
589         return 0;
590 #else
591         struct fio_file *f = io_u->file;
592         int ret;
593
594         ret = os_trim(f->fd, io_u->offset, io_u->xfer_buflen);
595         if (!ret)
596                 return io_u->xfer_buflen;
597
598         io_u->error = ret;
599         return 0;
600 #endif
601 }
602
603 int fio_show_ioengine_help(const char *engine)
604 {
605         struct flist_head *entry;
606         struct thread_data td;
607         char *sep;
608         int ret = 1;
609
610         if (!engine || !*engine) {
611                 log_info("Available IO engines:\n");
612                 flist_for_each(entry, &engine_list) {
613                         td.io_ops = flist_entry(entry, struct ioengine_ops,
614                                                 list);
615                         log_info("\t%s\n", td.io_ops->name);
616                 }
617                 return 0;
618         }
619         sep = strchr(engine, ',');
620         if (sep) {
621                 *sep = 0;
622                 sep++;
623         }
624
625         memset(&td, 0, sizeof(td));
626
627         td.io_ops = load_ioengine(&td, engine);
628         if (!td.io_ops) {
629                 log_info("IO engine %s not found\n", engine);
630                 return 1;
631         }
632
633         if (td.io_ops->options)
634                 ret = show_cmd_help(td.io_ops->options, sep);
635         else
636                 log_info("IO engine %s has no options\n", td.io_ops->name);
637
638         free_ioengine(&td);
639
640         return ret;
641 }