sg engine: errno return value fixes
[fio.git] / engines / guasi.c
1 /*
2  * guasi engine
3  *
4  * IO engine using the GUASI library.
5  *
6  * This is currently disabled. To enable it, execute:
7  *
8  * $ export EXTFLAGS="-DFIO_HAVE_GUASI"
9  * $ export EXTLIBS="-lguasi"
10  *
11  * before running make. You'll need the GUASI lib as well:
12  *
13  * http://www.xmailserver.org/guasi-lib.html
14  *
15  */
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <errno.h>
20 #include <assert.h>
21
22 #include "../fio.h"
23 #include "../os.h"
24
25 #ifdef FIO_HAVE_GUASI
26
27 #define GFIO_MIN_THREADS 32
28 #ifndef GFIO_MAX_THREADS
29 #define GFIO_MAX_THREADS 2000
30 #endif
31
32 #include <guasi.h>
33 #include <guasi_syscalls.h>
34
35 #ifdef GFIO_DEBUG
36 #define GDBG_PRINT(a) printf a
37 #else
38 #define GDBG_PRINT(a) (void) 0
39 #endif
40
41 #define STFU_GCC(a) a = a
42
43
44 struct guasi_data {
45         guasi_t hctx;
46         int max_reqs;
47         guasi_req_t *reqs;
48         struct io_u **io_us;
49         int queued_nr;
50         int reqs_nr;
51 };
52
53 static int fio_guasi_prep(struct thread_data fio_unused *td, struct io_u *io_u)
54 {
55
56         GDBG_PRINT(("fio_guasi_prep(%p)\n", io_u));
57         io_u->greq = NULL;
58
59         return 0;
60 }
61
62 static struct io_u *fio_guasi_event(struct thread_data *td, int event)
63 {
64         struct guasi_data *ld = td->io_ops->data;
65         struct io_u *io_u;
66         struct guasi_reqinfo rinf;
67
68         GDBG_PRINT(("fio_guasi_event(%d)\n", event));
69         if (guasi_req_info(ld->reqs[event], &rinf) < 0) {
70                 log_err("guasi_req_info(%d) FAILED!\n", event);
71                 return NULL;
72         }
73         io_u = rinf.asid;
74         io_u->error = EINPROGRESS;
75         GDBG_PRINT(("fio_guasi_event(%d) -> %p\n", event, io_u));
76         if (rinf.status == GUASI_STATUS_COMPLETE) {
77                 io_u->error = rinf.result;
78                 if (io_u->ddir == DDIR_READ ||
79                     io_u->ddir == DDIR_WRITE) {
80                         io_u->error = 0;
81                         if (rinf.result != (long) io_u->xfer_buflen) {
82                                 if (rinf.result >= 0)
83                                         io_u->resid = io_u->xfer_buflen - rinf.result;
84                                 else
85                                         io_u->error = rinf.error;
86                         }
87                 }
88         }
89
90         return io_u;
91 }
92
93 static int fio_guasi_getevents(struct thread_data *td, int min, int max,
94                                struct timespec *t)
95 {
96         struct guasi_data *ld = td->io_ops->data;
97         int n, r;
98         long timeo = -1;
99
100         GDBG_PRINT(("fio_guasi_getevents(%d, %d)\n", min, max));
101         if (min > ld->max_reqs)
102                 min = ld->max_reqs;
103         if (max > ld->max_reqs)
104                 max = ld->max_reqs;
105         if (t)
106                 timeo = t->tv_sec * 1000L + t->tv_nsec / 1000000L;
107         for (n = 0; n < ld->reqs_nr; n++)
108                 guasi_req_free(ld->reqs[n]);
109         n = 0;
110         do {
111                 r = guasi_fetch(ld->hctx, ld->reqs + n, min - n,
112                                 max - n, timeo);
113                 if (r < 0) {
114                         log_err("guasi_fetch() FAILED! (%d)\n", r);
115                         break;
116                 }
117                 n += r;
118                 if (n >= min)
119                         break;
120         } while (1);
121         ld->reqs_nr = n;
122         GDBG_PRINT(("fio_guasi_getevents() -> %d\n", n));
123
124         return n;
125 }
126
127 static int fio_guasi_queue(struct thread_data *td, struct io_u *io_u)
128 {
129         struct guasi_data *ld = td->io_ops->data;
130
131         GDBG_PRINT(("fio_guasi_queue(%p)\n", io_u));
132         if (ld->queued_nr == (int) td->o.iodepth)
133                 return FIO_Q_BUSY;
134
135         ld->io_us[ld->queued_nr] = io_u;
136         ld->queued_nr++;
137         return FIO_Q_QUEUED;
138 }
139
140 static void fio_guasi_queued(struct thread_data *td, struct io_u **io_us, int nr)
141 {
142         int i;
143         struct io_u *io_u;
144         struct timeval now;
145
146         fio_gettime(&now, NULL);
147         for (i = 0; i < nr; i++) {
148                 io_u = io_us[i];
149                 memcpy(&io_u->issue_time, &now, sizeof(now));
150                 io_u_queued(td, io_u);
151         }
152 }
153
154 static int fio_guasi_commit(struct thread_data *td)
155 {
156         struct guasi_data *ld = td->io_ops->data;
157         int i;
158         struct io_u *io_u;
159         struct fio_file *f;
160
161         GDBG_PRINT(("fio_guasi_commit(%d)\n", ld->queued_nr));
162         for (i = 0; i < ld->queued_nr; i++) {
163                 io_u = ld->io_us[i];
164                 GDBG_PRINT(("fio_guasi_commit(%d) --> %p\n", i, io_u));
165                 f = io_u->file;
166                 io_u->greq = NULL;
167                 if (io_u->ddir == DDIR_READ)
168                         io_u->greq = guasi__pread(ld->hctx, ld, io_u, 0,
169                                                   f->fd, io_u->xfer_buf, io_u->xfer_buflen,
170                                                   io_u->offset);
171                 else if (io_u->ddir == DDIR_WRITE)
172                         io_u->greq = guasi__pwrite(ld->hctx, ld, io_u, 0,
173                                                    f->fd, io_u->xfer_buf, io_u->xfer_buflen,
174                                                    io_u->offset);
175                 else if (io_u->ddir == DDIR_SYNC)
176                         io_u->greq = guasi__fsync(ld->hctx, ld, io_u, 0, f->fd);
177                 else {
178                         log_err("fio_guasi_commit() FAILED: unknow request %d\n",
179                                 io_u->ddir);
180                 }
181                 if (io_u->greq == NULL) {
182                         log_err("fio_guasi_commit() FAILED: submit failed (%s)\n",
183                                 strerror(errno));
184                         return -1;
185                 }
186         }
187         fio_guasi_queued(td, ld->io_us, i);
188         ld->queued_nr = 0;
189         GDBG_PRINT(("fio_guasi_commit() -> %d\n", i));
190
191         return 0;
192 }
193
194 static int fio_guasi_cancel(struct thread_data *td, struct io_u *io_u)
195 {
196         struct guasi_data *ld = td->io_ops->data;
197
198         STFU_GCC(ld);
199         GDBG_PRINT(("fio_guasi_cancel(%p) req=%p\n", io_u, io_u->greq));
200         if (io_u->greq != NULL)
201                 guasi_req_cancel(io_u->greq);
202
203         return 0;
204 }
205
206 static void fio_guasi_cleanup(struct thread_data *td)
207 {
208         struct guasi_data *ld = td->io_ops->data;
209         int n;
210
211         GDBG_PRINT(("fio_guasi_cleanup(%p)\n", ld));
212         if (ld) {
213                 for (n = 0; n < ld->reqs_nr; n++)
214                         guasi_req_free(ld->reqs[n]);
215                 guasi_free(ld->hctx);
216                 free(ld->reqs);
217                 free(ld->io_us);
218                 free(ld);
219                 td->io_ops->data = NULL;
220         }
221         GDBG_PRINT(("fio_guasi_cleanup(%p) DONE\n", ld));
222 }
223
224 static int fio_guasi_init(struct thread_data *td)
225 {
226         int maxthr;
227         struct guasi_data *ld = malloc(sizeof(*ld));
228
229         GDBG_PRINT(("fio_guasi_init(): depth=%d\n", td->o.iodepth));
230         memset(ld, 0, sizeof(*ld));
231         maxthr = td->o.iodepth > GFIO_MIN_THREADS ? td->o.iodepth: GFIO_MIN_THREADS;
232         if (maxthr > GFIO_MAX_THREADS)
233                 maxthr = GFIO_MAX_THREADS;
234         if ((ld->hctx = guasi_create(GFIO_MIN_THREADS, maxthr, 1, 0)) == NULL) {
235                 td_verror(td, errno, "guasi_create");
236                 free(ld);
237                 return 1;
238         }
239         ld->max_reqs = td->o.iodepth;
240         ld->reqs = malloc(ld->max_reqs * sizeof(guasi_req_t));
241         ld->io_us = malloc(ld->max_reqs * sizeof(struct io_u *));
242         memset(ld->io_us, 0, ld->max_reqs * sizeof(struct io_u *));
243         ld->queued_nr = 0;
244         ld->reqs_nr = 0;
245
246         td->io_ops->data = ld;
247         GDBG_PRINT(("fio_guasi_init(): depth=%d -> %p\n", td->o.iodepth, ld));
248
249         return 0;
250 }
251
252 static struct ioengine_ops ioengine = {
253         .name           = "guasi",
254         .version        = FIO_IOOPS_VERSION,
255         .init           = fio_guasi_init,
256         .prep           = fio_guasi_prep,
257         .queue          = fio_guasi_queue,
258         .commit         = fio_guasi_commit,
259         .cancel         = fio_guasi_cancel,
260         .getevents      = fio_guasi_getevents,
261         .event          = fio_guasi_event,
262         .cleanup        = fio_guasi_cleanup,
263         .open_file      = generic_open_file,
264         .close_file     = generic_close_file,
265 };
266
267 #else /* FIO_HAVE_GUASI */
268
269 /*
270  * When we have a proper configure system in place, we simply wont build
271  * and install this io engine. For now install a crippled version that
272  * just complains and fails to load.
273  */
274 static int fio_guasi_init(struct thread_data fio_unused *td)
275 {
276         fprintf(stderr, "fio: guasi not available\n");
277         return 1;
278 }
279
280 static struct ioengine_ops ioengine = {
281         .name           = "guasi",
282         .version        = FIO_IOOPS_VERSION,
283         .init           = fio_guasi_init,
284 };
285
286 #endif
287
288 static void fio_init fio_guasi_register(void)
289 {
290         register_ioengine(&ioengine);
291 }
292
293 static void fio_exit fio_guasi_unregister(void)
294 {
295         unregister_ioengine(&ioengine);
296 }
297