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