blob: 4eea2f9268bd68eb5eecdecfbcf42e01670ad88b [file] [log] [blame]
Jens Axboe2866c822006-10-09 15:57:48 +02001/*
gurudas paia31041e2007-10-23 15:12:30 +02002 * sync/psync engine
Jens Axboeda751ca2007-03-14 10:59:33 +01003 *
4 * IO engine that does regular read(2)/write(2) with lseek(2) to transfer
gurudas paia31041e2007-10-23 15:12:30 +02005 * data and IO engine that does regular pread(2)/pwrite(2) to transfer data.
Jens Axboe2866c822006-10-09 15:57:48 +02006 *
7 */
8#include <stdio.h>
9#include <stdlib.h>
10#include <unistd.h>
Jens Axboe5921e802008-05-30 15:02:38 +020011#include <sys/uio.h>
Jens Axboe2866c822006-10-09 15:57:48 +020012#include <errno.h>
13#include <assert.h>
Jens Axboe5f350952006-11-07 15:20:59 +010014
15#include "../fio.h"
Jens Axboe2866c822006-10-09 15:57:48 +020016
Jens Axboe1d2af022008-02-04 10:59:07 +010017struct syncio_data {
18 struct iovec *iovecs;
19 struct io_u **io_us;
20 unsigned int queued;
Jens Axboee51cf722008-05-30 22:03:46 +020021 unsigned int events;
Jens Axboe1d2af022008-02-04 10:59:07 +010022 unsigned long queued_bytes;
23
24 unsigned long long last_offset;
25 struct fio_file *last_file;
26 enum fio_ddir last_ddir;
27};
28
Jens Axboe2866c822006-10-09 15:57:48 +020029static int fio_syncio_prep(struct thread_data *td, struct io_u *io_u)
30{
Jens Axboe53cdc682006-10-18 11:50:58 +020031 struct fio_file *f = io_u->file;
32
Jens Axboeff58fce2010-08-25 12:02:08 +020033 if (!ddir_rw(io_u->ddir))
Jens Axboe87dc1ab2006-10-24 14:41:26 +020034 return 0;
35
Jens Axboee943b872010-02-02 09:48:13 +010036 if (f->file_pos != -1ULL && f->file_pos == io_u->offset)
37 return 0;
38
Jens Axboe53cdc682006-10-18 11:50:58 +020039 if (lseek(f->fd, io_u->offset, SEEK_SET) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +010040 td_verror(td, errno, "lseek");
Jens Axboe2866c822006-10-09 15:57:48 +020041 return 1;
42 }
43
44 return 0;
45}
46
Jens Axboe2bd3eab2008-02-04 09:35:30 +010047static int fio_io_end(struct thread_data *td, struct io_u *io_u, int ret)
Jens Axboe2866c822006-10-09 15:57:48 +020048{
Jens Axboeff58fce2010-08-25 12:02:08 +020049 if (io_u->file && ret >= 0 && ddir_rw(io_u->ddir))
Jens Axboee943b872010-02-02 09:48:13 +010050 io_u->file->file_pos = io_u->offset + ret;
51
Jens Axboecec6b552007-02-06 20:15:38 +010052 if (ret != (int) io_u->xfer_buflen) {
Jens Axboe22819ec2007-02-18 07:47:14 +010053 if (ret >= 0) {
Jens Axboecec6b552007-02-06 20:15:38 +010054 io_u->resid = io_u->xfer_buflen - ret;
55 io_u->error = 0;
Jens Axboe36167d82007-02-18 05:41:31 +010056 return FIO_Q_COMPLETED;
Jens Axboe2866c822006-10-09 15:57:48 +020057 } else
58 io_u->error = errno;
59 }
60
Jens Axboe36167d82007-02-18 05:41:31 +010061 if (io_u->error)
Jens Axboee1161c32007-02-22 19:36:48 +010062 td_verror(td, io_u->error, "xfer");
Jens Axboe2866c822006-10-09 15:57:48 +020063
Jens Axboe36167d82007-02-18 05:41:31 +010064 return FIO_Q_COMPLETED;
Jens Axboe2866c822006-10-09 15:57:48 +020065}
66
Jens Axboe2bd3eab2008-02-04 09:35:30 +010067static int fio_psyncio_queue(struct thread_data *td, struct io_u *io_u)
gurudas paia31041e2007-10-23 15:12:30 +020068{
Jens Axboe2bd3eab2008-02-04 09:35:30 +010069 struct fio_file *f = io_u->file;
70 int ret;
71
72 fio_ro_check(td, io_u);
73
74 if (io_u->ddir == DDIR_READ)
75 ret = pread(f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
76 else if (io_u->ddir == DDIR_WRITE)
77 ret = pwrite(f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
Jens Axboea5f30272010-07-19 16:19:55 -060078 else if (io_u->ddir == DDIR_TRIM)
79 ret = do_io_u_trim(td, io_u);
Jens Axboe2bd3eab2008-02-04 09:35:30 +010080 else
Jens Axboe0a28ecd2010-03-09 21:40:38 +010081 ret = do_io_u_sync(td, io_u);
Jens Axboe2bd3eab2008-02-04 09:35:30 +010082
83 return fio_io_end(td, io_u, ret);
84}
85
86static int fio_syncio_queue(struct thread_data *td, struct io_u *io_u)
87{
88 struct fio_file *f = io_u->file;
89 int ret;
90
91 fio_ro_check(td, io_u);
92
93 if (io_u->ddir == DDIR_READ)
94 ret = read(f->fd, io_u->xfer_buf, io_u->xfer_buflen);
95 else if (io_u->ddir == DDIR_WRITE)
96 ret = write(f->fd, io_u->xfer_buf, io_u->xfer_buflen);
Jens Axboea5f30272010-07-19 16:19:55 -060097 else if (io_u->ddir == DDIR_TRIM)
98 ret = do_io_u_trim(td, io_u);
Jens Axboe2bd3eab2008-02-04 09:35:30 +010099 else
Jens Axboe0a28ecd2010-03-09 21:40:38 +0100100 ret = do_io_u_sync(td, io_u);
Jens Axboe2bd3eab2008-02-04 09:35:30 +0100101
102 return fio_io_end(td, io_u, ret);
gurudas paia31041e2007-10-23 15:12:30 +0200103}
104
Jens Axboe1d2af022008-02-04 10:59:07 +0100105static int fio_vsyncio_getevents(struct thread_data *td, unsigned int min,
106 unsigned int max,
107 struct timespec fio_unused *t)
108{
109 struct syncio_data *sd = td->io_ops->data;
110 int ret;
111
112 if (min) {
Jens Axboee51cf722008-05-30 22:03:46 +0200113 ret = sd->events;
114 sd->events = 0;
Jens Axboe1d2af022008-02-04 10:59:07 +0100115 } else
116 ret = 0;
117
118 dprint(FD_IO, "vsyncio_getevents: min=%d,max=%d: %d\n", min, max, ret);
119 return ret;
120}
121
122static struct io_u *fio_vsyncio_event(struct thread_data *td, int event)
123{
124 struct syncio_data *sd = td->io_ops->data;
125
126 return sd->io_us[event];
127}
128
129static int fio_vsyncio_append(struct thread_data *td, struct io_u *io_u)
130{
131 struct syncio_data *sd = td->io_ops->data;
132
Jens Axboe5f9099e2009-06-16 22:40:26 +0200133 if (ddir_sync(io_u->ddir))
Jens Axboe1d2af022008-02-04 10:59:07 +0100134 return 0;
135
136 if (io_u->offset == sd->last_offset && io_u->file == sd->last_file &&
137 io_u->ddir == sd->last_ddir)
138 return 1;
139
140 return 0;
141}
142
143static void fio_vsyncio_set_iov(struct syncio_data *sd, struct io_u *io_u,
144 int index)
145{
146 sd->io_us[index] = io_u;
147 sd->iovecs[index].iov_base = io_u->xfer_buf;
148 sd->iovecs[index].iov_len = io_u->xfer_buflen;
149 sd->last_offset = io_u->offset + io_u->xfer_buflen;
150 sd->last_file = io_u->file;
151 sd->last_ddir = io_u->ddir;
152 sd->queued_bytes += io_u->xfer_buflen;
153 sd->queued++;
154}
155
156static int fio_vsyncio_queue(struct thread_data *td, struct io_u *io_u)
157{
158 struct syncio_data *sd = td->io_ops->data;
159
160 fio_ro_check(td, io_u);
161
162 if (!fio_vsyncio_append(td, io_u)) {
163 dprint(FD_IO, "vsyncio_queue: no append (%d)\n", sd->queued);
164 /*
165 * If we can't append and have stuff queued, tell fio to
166 * commit those first and then retry this io
167 */
168 if (sd->queued)
169 return FIO_Q_BUSY;
Jens Axboe0a28ecd2010-03-09 21:40:38 +0100170 if (ddir_sync(io_u->ddir)) {
171 int ret = do_io_u_sync(td, io_u);
172
173 return fio_io_end(td, io_u, ret);
174 }
Jens Axboecc9159c2008-02-04 15:58:24 +0100175
Jens Axboe1d2af022008-02-04 10:59:07 +0100176 sd->queued = 0;
177 sd->queued_bytes = 0;
178 fio_vsyncio_set_iov(sd, io_u, 0);
179 } else {
180 if (sd->queued == td->o.iodepth) {
181 dprint(FD_IO, "vsyncio_queue: max depth %d\n", sd->queued);
182 return FIO_Q_BUSY;
183 }
184
185 dprint(FD_IO, "vsyncio_queue: append\n");
186 fio_vsyncio_set_iov(sd, io_u, sd->queued);
187 }
188
189 dprint(FD_IO, "vsyncio_queue: depth now %d\n", sd->queued);
190 return FIO_Q_QUEUED;
191}
192
193/*
194 * Check that we transferred all bytes, or saw an error, etc
195 */
196static int fio_vsyncio_end(struct thread_data *td, ssize_t bytes)
197{
198 struct syncio_data *sd = td->io_ops->data;
199 struct io_u *io_u;
200 unsigned int i;
201 int err;
202
203 /*
204 * transferred everything, perfect
205 */
206 if (bytes == sd->queued_bytes)
207 return 0;
208
209 err = errno;
210 for (i = 0; i < sd->queued; i++) {
211 io_u = sd->io_us[i];
212
213 if (bytes == -1) {
214 io_u->error = err;
215 } else {
216 unsigned int this_io;
217
218 this_io = bytes;
219 if (this_io > io_u->xfer_buflen)
220 this_io = io_u->xfer_buflen;
221
222 io_u->resid = io_u->xfer_buflen - this_io;
223 io_u->error = 0;
224 bytes -= this_io;
225 }
226 }
227
228 if (bytes == -1) {
229 td_verror(td, err, "xfer vsync");
230 return -err;
231 }
232
233 return 0;
234}
235
236static int fio_vsyncio_commit(struct thread_data *td)
237{
238 struct syncio_data *sd = td->io_ops->data;
239 struct fio_file *f;
240 ssize_t ret;
241
242 if (!sd->queued)
243 return 0;
244
Jens Axboe838bc702008-05-22 13:08:23 +0200245 io_u_mark_submit(td, sd->queued);
Jens Axboe1d2af022008-02-04 10:59:07 +0100246 f = sd->last_file;
247
248 if (lseek(f->fd, sd->io_us[0]->offset, SEEK_SET) == -1) {
249 int err = -errno;
250
251 td_verror(td, errno, "lseek");
252 return err;
253 }
254
255 if (sd->last_ddir == DDIR_READ)
256 ret = readv(f->fd, sd->iovecs, sd->queued);
257 else
258 ret = writev(f->fd, sd->iovecs, sd->queued);
259
260 dprint(FD_IO, "vsyncio_commit: %d\n", (int) ret);
Jens Axboee51cf722008-05-30 22:03:46 +0200261 sd->events = sd->queued;
262 sd->queued = 0;
Jens Axboe1d2af022008-02-04 10:59:07 +0100263 return fio_vsyncio_end(td, ret);
264}
265
266static int fio_vsyncio_init(struct thread_data *td)
267{
268 struct syncio_data *sd;
269
270 sd = malloc(sizeof(*sd));
271 memset(sd, 0, sizeof(*sd));
272 sd->last_offset = -1ULL;
273 sd->iovecs = malloc(td->o.iodepth * sizeof(struct iovec));
274 sd->io_us = malloc(td->o.iodepth * sizeof(struct io_u *));
275
276 td->io_ops->data = sd;
277 return 0;
278}
279
280static void fio_vsyncio_cleanup(struct thread_data *td)
281{
282 struct syncio_data *sd = td->io_ops->data;
283
284 free(sd->iovecs);
285 free(sd->io_us);
286 free(sd);
Jens Axboe1d2af022008-02-04 10:59:07 +0100287}
288
gurudas paia31041e2007-10-23 15:12:30 +0200289static struct ioengine_ops ioengine_rw = {
Jens Axboe2866c822006-10-09 15:57:48 +0200290 .name = "sync",
291 .version = FIO_IOOPS_VERSION,
Jens Axboe2866c822006-10-09 15:57:48 +0200292 .prep = fio_syncio_prep,
293 .queue = fio_syncio_queue,
Jens Axboeb5af8292007-03-08 12:43:13 +0100294 .open_file = generic_open_file,
295 .close_file = generic_close_file,
Jens Axboedf9c26b2009-03-05 10:13:58 +0100296 .get_file_size = generic_get_file_size,
Jens Axboe2866c822006-10-09 15:57:48 +0200297 .flags = FIO_SYNCIO,
298};
Jens Axboe5f350952006-11-07 15:20:59 +0100299
gurudas paia31041e2007-10-23 15:12:30 +0200300static struct ioengine_ops ioengine_prw = {
301 .name = "psync",
302 .version = FIO_IOOPS_VERSION,
Jens Axboe2bd3eab2008-02-04 09:35:30 +0100303 .queue = fio_psyncio_queue,
gurudas paia31041e2007-10-23 15:12:30 +0200304 .open_file = generic_open_file,
305 .close_file = generic_close_file,
Jens Axboedf9c26b2009-03-05 10:13:58 +0100306 .get_file_size = generic_get_file_size,
gurudas paia31041e2007-10-23 15:12:30 +0200307 .flags = FIO_SYNCIO,
308};
309
Jens Axboe1d2af022008-02-04 10:59:07 +0100310static struct ioengine_ops ioengine_vrw = {
311 .name = "vsync",
312 .version = FIO_IOOPS_VERSION,
313 .init = fio_vsyncio_init,
314 .cleanup = fio_vsyncio_cleanup,
315 .queue = fio_vsyncio_queue,
316 .commit = fio_vsyncio_commit,
317 .event = fio_vsyncio_event,
318 .getevents = fio_vsyncio_getevents,
319 .open_file = generic_open_file,
320 .close_file = generic_close_file,
Jens Axboedf9c26b2009-03-05 10:13:58 +0100321 .get_file_size = generic_get_file_size,
Jens Axboe1d2af022008-02-04 10:59:07 +0100322 .flags = FIO_SYNCIO,
323};
324
Jens Axboe5f350952006-11-07 15:20:59 +0100325static void fio_init fio_syncio_register(void)
326{
gurudas paia31041e2007-10-23 15:12:30 +0200327 register_ioengine(&ioengine_rw);
328 register_ioengine(&ioengine_prw);
Jens Axboe1d2af022008-02-04 10:59:07 +0100329 register_ioengine(&ioengine_vrw);
Jens Axboe5f350952006-11-07 15:20:59 +0100330}
331
332static void fio_exit fio_syncio_unregister(void)
333{
gurudas paia31041e2007-10-23 15:12:30 +0200334 unregister_ioengine(&ioengine_rw);
335 unregister_ioengine(&ioengine_prw);
Jens Axboe1d2af022008-02-04 10:59:07 +0100336 unregister_ioengine(&ioengine_vrw);
Jens Axboe5f350952006-11-07 15:20:59 +0100337}