Remove binject engine
authorJens Axboe <axboe@kernel.dk>
Sun, 8 Apr 2018 21:42:20 +0000 (15:42 -0600)
committerJens Axboe <axboe@kernel.dk>
Sun, 8 Apr 2018 21:42:20 +0000 (15:42 -0600)
It was an experiment and never submitted upstream, let's just
drop it.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
Makefile
engines/binject.c [deleted file]
io_u.h
options.c
os/binject.h [deleted file]
os/os-android.h
os/os-linux.h

index d45ba6b5585fe43ce793937f0fa5c87828c434b4..cc4b71f0eacea76de9a8c44df5eb889bd2b659d2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -148,7 +148,7 @@ endif
 
 ifeq ($(CONFIG_TARGET_OS), Linux)
   SOURCE += diskutil.c fifo.c blktrace.c cgroup.c trim.c engines/sg.c \
 
 ifeq ($(CONFIG_TARGET_OS), Linux)
   SOURCE += diskutil.c fifo.c blktrace.c cgroup.c trim.c engines/sg.c \
-               engines/binject.c oslib/linux-dev-lookup.c
+               oslib/linux-dev-lookup.c
   LIBS += -lpthread -ldl
   LDFLAGS += -rdynamic
 endif
   LIBS += -lpthread -ldl
   LDFLAGS += -rdynamic
 endif
diff --git a/engines/binject.c b/engines/binject.c
deleted file mode 100644 (file)
index 49042a3..0000000
+++ /dev/null
@@ -1,458 +0,0 @@
-/*
- * binject engine
- *
- * IO engine that uses the Linux binject interface to directly inject
- * bio's to block devices.
- *
- */
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <errno.h>
-#include <assert.h>
-#include <string.h>
-#include <poll.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-
-#include "../fio.h"
-
-#ifdef FIO_HAVE_BINJECT
-
-struct binject_data {
-       struct b_user_cmd *cmds;
-       struct io_u **events;
-       struct pollfd *pfds;
-       int *fd_flags;
-};
-
-struct binject_file {
-       unsigned int bs;
-       int minor;
-       int fd;
-};
-
-static void binject_buc_init(struct binject_data *bd, struct io_u *io_u)
-{
-       struct b_user_cmd *buc = &io_u->buc;
-
-       memset(buc, 0, sizeof(*buc));
-       binject_buc_set_magic(buc);
-
-       buc->buf = (unsigned long) io_u->xfer_buf;
-       buc->len = io_u->xfer_buflen;
-       buc->offset = io_u->offset;
-       buc->usr_ptr = (unsigned long) io_u;
-
-       buc->flags = B_FLAG_NOIDLE | B_FLAG_UNPLUG;
-       assert(buc->buf);
-}
-
-static int pollin_events(struct pollfd *pfds, int fds)
-{
-       int i;
-
-       for (i = 0; i < fds; i++)
-               if (pfds[i].revents & POLLIN)
-                       return 1;
-
-       return 0;
-}
-
-static unsigned int binject_read_commands(struct thread_data *td, void *buf,
-                                         int left, int *err)
-{
-       struct fio_file *f;
-       int i, ret, events;
-       char *p = buf;
-
-one_more:
-       events = 0;
-       for_each_file(td, f, i) {
-               struct binject_file *bf = FILE_ENG_DATA(f);
-
-               ret = read(bf->fd, p, left * sizeof(struct b_user_cmd));
-               if (ret < 0) {
-                       if (errno == EAGAIN)
-                               continue;
-                       *err = -errno;
-                       td_verror(td, errno, "read");
-                       break;
-               } else if (ret) {
-                       p += ret;
-                       events += ret / sizeof(struct b_user_cmd);
-               }
-       }
-
-       if (*err || events)
-               return events;
-
-       usleep(1000);
-       goto one_more;
-}
-
-static int fio_binject_getevents(struct thread_data *td, unsigned int min,
-                                unsigned int max,
-                                const struct timespec fio_unused *t)
-{
-       struct binject_data *bd = td->io_ops_data;
-       int left = max, ret, r = 0, ev_index = 0;
-       void *buf = bd->cmds;
-       unsigned int i, events;
-       struct fio_file *f;
-
-       /*
-        * Fill in the file descriptors
-        */
-       for_each_file(td, f, i) {
-               struct binject_file *bf = FILE_ENG_DATA(f);
-
-               /*
-                * don't block for min events == 0
-                */
-               if (!min)
-                       bd->fd_flags[i] = fio_set_fd_nonblocking(bf->fd, "binject");
-               else
-                       bd->fd_flags[i] = -1;
-
-               bd->pfds[i].fd = bf->fd;
-               bd->pfds[i].events = POLLIN;
-       }
-
-       while (left) {
-               while (!min) {
-                       ret = poll(bd->pfds, td->o.nr_files, -1);
-                       if (ret < 0) {
-                               if (!r)
-                                       r = -errno;
-                               td_verror(td, errno, "poll");
-                               break;
-                       } else if (!ret)
-                               continue;
-
-                       if (pollin_events(bd->pfds, td->o.nr_files))
-                               break;
-               }
-
-               if (r < 0)
-                       break;
-
-               events = binject_read_commands(td, buf, left, &r);
-
-               if (r < 0)
-                       break;
-
-               left -= events;
-               r += events;
-
-               for (i = 0; i < events; i++) {
-                       struct b_user_cmd *buc = (struct b_user_cmd *) buf + i;
-
-                       bd->events[ev_index] = (struct io_u *) (unsigned long) buc->usr_ptr;
-                       ev_index++;
-               }
-       }
-
-       if (!min) {
-               for_each_file(td, f, i) {
-                       struct binject_file *bf = FILE_ENG_DATA(f);
-
-                       if (bd->fd_flags[i] == -1)
-                               continue;
-
-                       if (fcntl(bf->fd, F_SETFL, bd->fd_flags[i]) < 0)
-                               log_err("fio: binject failed to restore fcntl flags: %s\n", strerror(errno));
-               }
-       }
-
-       if (r > 0)
-               assert(ev_index == r);
-
-       return r;
-}
-
-static int fio_binject_doio(struct thread_data *td, struct io_u *io_u)
-{
-       struct b_user_cmd *buc = &io_u->buc;
-       struct binject_file *bf = FILE_ENG_DATA(io_u->file);
-       int ret;
-
-       ret = write(bf->fd, buc, sizeof(*buc));
-       if (ret < 0)
-               return ret;
-
-       return FIO_Q_QUEUED;
-}
-
-static int fio_binject_prep(struct thread_data *td, struct io_u *io_u)
-{
-       struct binject_data *bd = td->io_ops_data;
-       struct b_user_cmd *buc = &io_u->buc;
-       struct binject_file *bf = FILE_ENG_DATA(io_u->file);
-
-       if (io_u->xfer_buflen & (bf->bs - 1)) {
-               log_err("read/write not sector aligned\n");
-               return EINVAL;
-       }
-
-       if (io_u->ddir == DDIR_READ) {
-               binject_buc_init(bd, io_u);
-               buc->type = B_TYPE_READ;
-       } else if (io_u->ddir == DDIR_WRITE) {
-               binject_buc_init(bd, io_u);
-               if (io_u->flags & IO_U_F_BARRIER)
-                       buc->type = B_TYPE_WRITEBARRIER;
-               else
-                       buc->type = B_TYPE_WRITE;
-       } else if (io_u->ddir == DDIR_TRIM) {
-               binject_buc_init(bd, io_u);
-               buc->type = B_TYPE_DISCARD;
-       } else {
-               assert(0);
-       }
-
-       return 0;
-}
-
-static int fio_binject_queue(struct thread_data *td, struct io_u *io_u)
-{
-       int ret;
-
-       fio_ro_check(td, io_u);
-
-       ret = fio_binject_doio(td, io_u);
-
-       if (ret < 0)
-               io_u->error = errno;
-
-       if (io_u->error) {
-               td_verror(td, io_u->error, "xfer");
-               return FIO_Q_COMPLETED;
-       }
-
-       return ret;
-}
-
-static struct io_u *fio_binject_event(struct thread_data *td, int event)
-{
-       struct binject_data *bd = td->io_ops_data;
-
-       return bd->events[event];
-}
-
-static int binject_open_ctl(struct thread_data *td)
-{
-       int fd;
-
-       fd = open("/dev/binject-ctl", O_RDWR);
-       if (fd < 0)
-               td_verror(td, errno, "open binject-ctl");
-
-       return fd;
-}
-
-static void binject_unmap_dev(struct thread_data *td, struct binject_file *bf)
-{
-       struct b_ioctl_cmd bic;
-       int fdb;
-
-       if (bf->fd >= 0) {
-               close(bf->fd);
-               bf->fd = -1;
-       }
-
-       fdb = binject_open_ctl(td);
-       if (fdb < 0)
-               return;
-
-       bic.minor = bf->minor;
-
-       if (ioctl(fdb, B_IOCTL_DEL, &bic) < 0)
-               td_verror(td, errno, "binject dev unmap");
-
-       close(fdb);
-}
-
-static int binject_map_dev(struct thread_data *td, struct binject_file *bf,
-                          int fd)
-{
-       struct b_ioctl_cmd bic;
-       char name[80];
-       struct stat sb;
-       int fdb, dev_there, loops;
-
-       fdb = binject_open_ctl(td);
-       if (fdb < 0)
-               return 1;
-
-       bic.fd = fd;
-
-       if (ioctl(fdb, B_IOCTL_ADD, &bic) < 0) {
-               td_verror(td, errno, "binject dev map");
-               close(fdb);
-               return 1;
-       }
-
-       bf->minor = bic.minor;
-
-       sprintf(name, "/dev/binject%u", bf->minor);
-
-       /*
-        * Wait for udev to create the node...
-        */
-       dev_there = loops = 0;
-       do {
-               if (!stat(name, &sb)) {
-                       dev_there = 1;
-                       break;
-               }
-
-               usleep(10000);
-       } while (++loops < 100);
-
-       close(fdb);
-
-       if (!dev_there) {
-               log_err("fio: timed out waiting for binject dev\n");
-               goto err_unmap;
-       }
-
-       bf->fd = open(name, O_RDWR);
-       if (bf->fd < 0) {
-               td_verror(td, errno, "binject dev open");
-err_unmap:
-               binject_unmap_dev(td, bf);
-               return 1;
-       }
-
-       return 0;
-}
-
-static int fio_binject_close_file(struct thread_data *td, struct fio_file *f)
-{
-       struct binject_file *bf = FILE_ENG_DATA(f);
-
-       if (bf) {
-               binject_unmap_dev(td, bf);
-               free(bf);
-               FILE_SET_ENG_DATA(f, NULL);
-               return generic_close_file(td, f);
-       }
-
-       return 0;
-}
-
-static int fio_binject_open_file(struct thread_data *td, struct fio_file *f)
-{
-       struct binject_file *bf;
-       unsigned int bs;
-       int ret;
-
-       ret = generic_open_file(td, f);
-       if (ret)
-               return 1;
-
-       if (f->filetype != FIO_TYPE_BLOCK) {
-               log_err("fio: binject only works with block devices\n");
-               goto err_close;
-       }
-       if (ioctl(f->fd, BLKSSZGET, &bs) < 0) {
-               td_verror(td, errno, "BLKSSZGET");
-               goto err_close;
-       }
-
-       bf = malloc(sizeof(*bf));
-       bf->bs = bs;
-       bf->minor = bf->fd = -1;
-       FILE_SET_ENG_DATA(f, bf);
-
-       if (binject_map_dev(td, bf, f->fd)) {
-err_close:
-               ret = generic_close_file(td, f);
-               return 1;
-       }
-
-       return 0;
-}
-
-static void fio_binject_cleanup(struct thread_data *td)
-{
-       struct binject_data *bd = td->io_ops_data;
-
-       if (bd) {
-               free(bd->events);
-               free(bd->cmds);
-               free(bd->fd_flags);
-               free(bd->pfds);
-               free(bd);
-       }
-}
-
-static int fio_binject_init(struct thread_data *td)
-{
-       struct binject_data *bd;
-
-       bd = malloc(sizeof(*bd));
-       memset(bd, 0, sizeof(*bd));
-
-       bd->cmds = malloc(td->o.iodepth * sizeof(struct b_user_cmd));
-       memset(bd->cmds, 0, td->o.iodepth * sizeof(struct b_user_cmd));
-
-       bd->events = malloc(td->o.iodepth * sizeof(struct io_u *));
-       memset(bd->events, 0, td->o.iodepth * sizeof(struct io_u *));
-
-       bd->pfds = malloc(sizeof(struct pollfd) * td->o.nr_files);
-       memset(bd->pfds, 0, sizeof(struct pollfd) * td->o.nr_files);
-
-       bd->fd_flags = malloc(sizeof(int) * td->o.nr_files);
-       memset(bd->fd_flags, 0, sizeof(int) * td->o.nr_files);
-
-       td->io_ops_data = bd;
-       return 0;
-}
-
-static struct ioengine_ops ioengine = {
-       .name           = "binject",
-       .version        = FIO_IOOPS_VERSION,
-       .init           = fio_binject_init,
-       .prep           = fio_binject_prep,
-       .queue          = fio_binject_queue,
-       .getevents      = fio_binject_getevents,
-       .event          = fio_binject_event,
-       .cleanup        = fio_binject_cleanup,
-       .open_file      = fio_binject_open_file,
-       .close_file     = fio_binject_close_file,
-       .get_file_size  = generic_get_file_size,
-       .flags          = FIO_RAWIO | FIO_BARRIER | FIO_MEMALIGN,
-};
-
-#else /* FIO_HAVE_BINJECT */
-
-/*
- * When we have a proper configure system in place, we simply wont build
- * and install this io engine. For now install a crippled version that
- * just complains and fails to load.
- */
-static int fio_binject_init(struct thread_data fio_unused *td)
-{
-       log_err("fio: ioengine binject not available\n");
-       return 1;
-}
-
-static struct ioengine_ops ioengine = {
-       .name           = "binject",
-       .version        = FIO_IOOPS_VERSION,
-       .init           = fio_binject_init,
-};
-
-#endif
-
-static void fio_init fio_binject_register(void)
-{
-       register_ioengine(&ioengine);
-}
-
-static void fio_exit fio_binject_unregister(void)
-{
-       unregister_ioengine(&ioengine);
-}
diff --git a/io_u.h b/io_u.h
index aaa7d9723ef68db6bedc9809483a59b3e3efcb39..4f433c3f314989758df380c32399210a86ed9572 100644 (file)
--- a/io_u.h
+++ b/io_u.h
@@ -113,9 +113,6 @@ struct io_u {
 #ifdef CONFIG_SOLARISAIO
                aio_result_t resultp;
 #endif
 #ifdef CONFIG_SOLARISAIO
                aio_result_t resultp;
 #endif
-#ifdef FIO_HAVE_BINJECT
-               struct b_user_cmd buc;
-#endif
 #ifdef CONFIG_RDMA
                struct ibv_mr *mr;
 #endif
 #ifdef CONFIG_RDMA
                struct ibv_mr *mr;
 #endif
index 17d7245f5490cc762153ea48d3960605cc0d5909..fae3943423e9c2d02d22e5ffa8c4b00c9fba128e 100644 (file)
--- a/options.c
+++ b/options.c
@@ -1816,11 +1816,6 @@ struct fio_option fio_options[FIO_MAX_OPTS] = {
                            .help = "GUASI IO engine",
                          },
 #endif
                            .help = "GUASI IO engine",
                          },
 #endif
-#ifdef FIO_HAVE_BINJECT
-                         { .ival = "binject",
-                           .help = "binject direct inject block engine",
-                         },
-#endif
 #ifdef CONFIG_RDMA
                          { .ival = "rdma",
                            .help = "RDMA IO engine",
 #ifdef CONFIG_RDMA
                          { .ival = "rdma",
                            .help = "RDMA IO engine",
diff --git a/os/binject.h b/os/binject.h
deleted file mode 100644 (file)
index 1d862c8..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-#ifndef BINJECT_H
-#define BINJECT_H
-
-#include <linux/types.h>
-
-#define BINJECT_MAGIC          0x89
-#define BINJECT_VER            0x01
-#define BINJECT_MAGIC_SHIFT    8
-#define BINJECT_VER_MASK       ((1 << BINJECT_MAGIC_SHIFT) - 1)
-
-struct b_user_cmd {
-       __u16 magic;    /* INPUT */
-       __u16 type;     /* INPUT */
-       __u32 error;    /* OUTPUT */
-       __u32 flags;    /* INPUT */
-       __u32 len;      /* INPUT */
-       __u64 offset;   /* INPUT */
-       __u64 buf;      /* INPUT */
-       __u64 usr_ptr;  /* PASSED THROUGH */
-       __u64 nsec;     /* OUTPUT */
-};
-
-struct b_ioctl_cmd {
-       int fd;
-       int minor;
-};
-
-#define BINJECT_IOCTL_CHR      'J'
-#define B_IOCTL_ADD            _IOWR(BINJECT_IOCTL_CHR, 1, struct b_ioctl_cmd)
-#define B_IOCTL_DEL            _IOWR(BINJECT_IOCTL_CHR, 2, struct b_ioctl_cmd)
-
-enum {
-       B_TYPE_READ             = 0,
-       B_TYPE_WRITE,
-       B_TYPE_DISCARD,
-       B_TYPE_READVOID,
-       B_TYPE_WRITEZERO,
-       B_TYPE_READBARRIER,
-       B_TYPE_WRITEBARRIER,
-       B_TYPE_NR
-};
-
-enum {
-       __B_FLAG_SYNC   = 0,
-       __B_FLAG_UNPLUG,
-       __B_FLAG_NOIDLE,
-       __B_FLAG_BARRIER,
-       __B_FLAG_META,
-       __B_FLAG_RAHEAD,
-       __B_FLAG_FAILFAST_DEV,
-       __B_FLAG_FAILFAST_TRANSPORT,
-       __B_FLAG_FAILFAST_DRIVER,
-       __B_FLAG_NR,
-
-       B_FLAG_SYNC                     = 1 << __B_FLAG_SYNC,
-       B_FLAG_UNPLUG                   = 1 << __B_FLAG_UNPLUG,
-       B_FLAG_NOIDLE                   = 1 << __B_FLAG_NOIDLE,
-       B_FLAG_BARRIER                  = 1 << __B_FLAG_BARRIER,
-       B_FLAG_META                     = 1 << __B_FLAG_META,
-       B_FLAG_RAHEAD                   = 1 << __B_FLAG_RAHEAD,
-       B_FLAG_FAILFAST_DEV             = 1 << __B_FLAG_FAILFAST_DEV,
-       B_FLAG_FAILFAST_TRANSPORT       = 1 << __B_FLAG_FAILFAST_TRANSPORT,
-       B_FLAG_FAILFAST_DRIVER          = 1 << __B_FLAG_FAILFAST_DRIVER,
-};
-
-static inline void binject_buc_set_magic(struct b_user_cmd *buc)
-{
-       buc->magic = (BINJECT_MAGIC << BINJECT_MAGIC_SHIFT) | BINJECT_VER;
-}
-
-#endif
index bb590e4786fe3f713ed7e1a1914963ecc9dc1276..1483275e9e631aa751c690995308085a3a47fbca 100644 (file)
@@ -18,7 +18,6 @@
 #include <asm/byteorder.h>
 
 #include "./os-linux-syscall.h"
 #include <asm/byteorder.h>
 
 #include "./os-linux-syscall.h"
-#include "binject.h"
 #include "../file.h"
 
 #ifndef __has_builtin         // Optional of course.
 #include "../file.h"
 
 #ifndef __has_builtin         // Optional of course.
index 1d400a0d3aed1d10a31e564513ff19a1d92669f3..a550bba6e1b3d785d554564258840874c93e8104 100644 (file)
@@ -27,7 +27,6 @@
 #endif /* ARCH_HAVE_CRC_CRYPTO */
 
 #include "./os-linux-syscall.h"
 #endif /* ARCH_HAVE_CRC_CRYPTO */
 
 #include "./os-linux-syscall.h"
-#include "binject.h"
 #include "../file.h"
 
 #ifndef __has_builtin         // Optional of course.
 #include "../file.h"
 
 #ifndef __has_builtin         // Optional of course.
@@ -48,7 +47,6 @@
 #define FIO_HAVE_CGROUPS
 #define FIO_HAVE_FS_STAT
 #define FIO_HAVE_TRIM
 #define FIO_HAVE_CGROUPS
 #define FIO_HAVE_FS_STAT
 #define FIO_HAVE_TRIM
-#define FIO_HAVE_BINJECT
 #define FIO_HAVE_GETTID
 #define FIO_USE_GENERIC_INIT_RANDOM_STATE
 #define FIO_HAVE_PWRITEV2
 #define FIO_HAVE_GETTID
 #define FIO_USE_GENERIC_INIT_RANDOM_STATE
 #define FIO_HAVE_PWRITEV2