blob: ea899698b25e1474406e3c9a1fd7e3ddcc63c5a5 [file] [log] [blame]
Bruce Cranecc314b2011-01-04 10:59:30 +01001/*
2 * Native Windows async IO engine
Bruce Cran93bcfd22012-02-20 20:18:19 +01003 * Copyright (C) 2012 Bruce Cran <bruce@cran.org.uk>
Bruce Cranecc314b2011-01-04 10:59:30 +01004 */
5
Bruce Cranecc314b2011-01-04 10:59:30 +01006#include <stdio.h>
7#include <stdlib.h>
8#include <unistd.h>
9#include <signal.h>
10#include <errno.h>
11#include <windows.h>
12
13#include "../fio.h"
14
Bruce Cranea4500d2011-05-04 07:54:13 -060015typedef BOOL (WINAPI *CANCELIOEX)(HANDLE hFile, LPOVERLAPPED lpOverlapped);
16
Bruce Cran67897032011-05-12 10:06:10 +020017struct fio_overlapped {
18 OVERLAPPED o;
19 struct io_u *io_u;
20 BOOL io_complete;
Jens Axboe40c5db32012-02-01 23:03:44 +010021 BOOL io_free;
Bruce Cran67897032011-05-12 10:06:10 +020022};
Bruce Cranecc314b2011-01-04 10:59:30 +010023
Bruce Cran9b836562011-01-08 19:49:54 +010024struct windowsaio_data {
Bruce Cran67897032011-05-12 10:06:10 +020025 struct fio_overlapped *ovls;
Bruce Cran9b836562011-01-08 19:49:54 +010026 struct io_u **aio_events;
Bruce Cran67897032011-05-12 10:06:10 +020027 HANDLE iothread;
Bruce Cran9b836562011-01-08 19:49:54 +010028 HANDLE iocomplete_event;
Bruce Cranea4500d2011-05-04 07:54:13 -060029 CANCELIOEX pCancelIoEx;
Bruce Cran67897032011-05-12 10:06:10 +020030 BOOL iothread_running;
Bruce Cran9b836562011-01-08 19:49:54 +010031};
32
Bruce Cranecc314b2011-01-04 10:59:30 +010033struct thread_ctx {
Bruce Cran9b836562011-01-08 19:49:54 +010034 HANDLE iocp;
Bruce Cranecc314b2011-01-04 10:59:30 +010035 struct windowsaio_data *wd;
36};
37
Bruce Cranecc314b2011-01-04 10:59:30 +010038static int fio_windowsaio_cancel(struct thread_data *td,
39 struct io_u *io_u);
Bruce Cran67897032011-05-12 10:06:10 +020040static BOOL timeout_expired(DWORD start_count, DWORD end_count);
Bruce Cranecc314b2011-01-04 10:59:30 +010041static int fio_windowsaio_getevents(struct thread_data *td, unsigned int min,
42 unsigned int max, struct timespec *t);
43static struct io_u *fio_windowsaio_event(struct thread_data *td, int event);
44static int fio_windowsaio_queue(struct thread_data *td,
45 struct io_u *io_u);
46static void fio_windowsaio_cleanup(struct thread_data *td);
47static DWORD WINAPI IoCompletionRoutine(LPVOID lpParameter);
48static int fio_windowsaio_init(struct thread_data *td);
49static int fio_windowsaio_open_file(struct thread_data *td, struct fio_file *f);
50static int fio_windowsaio_close_file(struct thread_data fio_unused *td, struct fio_file *f);
51
Bruce Cran9b836562011-01-08 19:49:54 +010052int sync_file_range(int fd, off64_t offset, off64_t nbytes,
53 unsigned int flags)
54{
55 errno = ENOSYS;
56 return -1;
57}
58
Bruce Cranecc314b2011-01-04 10:59:30 +010059static int fio_windowsaio_init(struct thread_data *td)
60{
Bruce Cranecc314b2011-01-04 10:59:30 +010061 struct windowsaio_data *wd;
Bruce Cranea4500d2011-05-04 07:54:13 -060062 HANDLE hKernel32Dll;
Bruce Cran9b836562011-01-08 19:49:54 +010063 int rc = 0;
Bruce Cran67897032011-05-12 10:06:10 +020064 int i;
Bruce Cranecc314b2011-01-04 10:59:30 +010065
Bruce Cranecc314b2011-01-04 10:59:30 +010066 wd = malloc(sizeof(struct windowsaio_data));
Bruce Cran9b836562011-01-08 19:49:54 +010067 if (wd != NULL)
68 ZeroMemory(wd, sizeof(struct windowsaio_data));
69 else
70 rc = 1;
Bruce Cranecc314b2011-01-04 10:59:30 +010071
Bruce Cran9b836562011-01-08 19:49:54 +010072 if (!rc) {
73 wd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u*));
74 if (wd->aio_events == NULL)
75 rc = 1;
Bruce Crane4db9fe2011-01-04 14:44:47 +010076 }
77
Bruce Cran9b836562011-01-08 19:49:54 +010078 if (!rc) {
Bruce Cran67897032011-05-12 10:06:10 +020079 wd->ovls = malloc(td->o.iodepth * sizeof(struct fio_overlapped));
80 if (wd->ovls == NULL)
Bruce Cran9b836562011-01-08 19:49:54 +010081 rc = 1;
Bruce Crane4db9fe2011-01-04 14:44:47 +010082 }
83
Bruce Cran9b836562011-01-08 19:49:54 +010084 if (!rc) {
Bruce Cranf9a58c22012-04-04 08:35:13 -060085 for (i = 0; i < td->o.iodepth; i++) {
86 wd->ovls[i].io_free = TRUE;
87 wd->ovls[i].io_complete = FALSE;
Bruce Cran67897032011-05-12 10:06:10 +020088
89 wd->ovls[i].o.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
90 if (wd->ovls[i].o.hEvent == NULL) {
91 rc = 1;
92 break;
93 }
Bruce Cranf9a58c22012-04-04 08:35:13 -060094 }
Bruce Cran9b836562011-01-08 19:49:54 +010095 }
Bruce Crane4db9fe2011-01-04 14:44:47 +010096
Bruce Cran9b836562011-01-08 19:49:54 +010097 if (!rc) {
98 /* Create an auto-reset event */
99 wd->iocomplete_event = CreateEvent(NULL, FALSE, FALSE, NULL);
100 if (wd->iocomplete_event == NULL)
101 rc = 1;
102 }
103
Bruce Cran9b836562011-01-08 19:49:54 +0100104 if (rc) {
Bruce Cran9b836562011-01-08 19:49:54 +0100105 if (wd != NULL) {
106 if (wd->ovls != NULL)
107 free(wd->ovls);
Bruce Cran9b836562011-01-08 19:49:54 +0100108 if (wd->aio_events != NULL)
109 free(wd->aio_events);
110
111 free(wd);
112 }
113 }
Bruce Cranecc314b2011-01-04 10:59:30 +0100114
Bruce Cranea4500d2011-05-04 07:54:13 -0600115 hKernel32Dll = GetModuleHandle("kernel32.dll");
Bruce Cran93bcfd22012-02-20 20:18:19 +0100116 wd->pCancelIoEx = (CANCELIOEX)GetProcAddress(hKernel32Dll, "CancelIoEx");
Bruce Cranecc314b2011-01-04 10:59:30 +0100117 td->io_ops->data = wd;
Bruce Cran93bcfd22012-02-20 20:18:19 +0100118
Bruce Cran4e790982011-07-09 08:20:47 +0200119 return rc;
Bruce Cranecc314b2011-01-04 10:59:30 +0100120}
121
Bruce Cran67897032011-05-12 10:06:10 +0200122static void fio_windowsaio_cleanup(struct thread_data *td)
123{
124 int i;
125 struct windowsaio_data *wd;
126
127 wd = td->io_ops->data;
128
129 if (wd != NULL) {
Jens Axboe40c5db32012-02-01 23:03:44 +0100130 wd->iothread_running = FALSE;
131 WaitForSingleObject(wd->iothread, INFINITE);
Bruce Cran67897032011-05-12 10:06:10 +0200132
133 CloseHandle(wd->iothread);
134 CloseHandle(wd->iocomplete_event);
135
Bruce Cran93bcfd22012-02-20 20:18:19 +0100136 for (i = 0; i < td->o.iodepth; i++) {
Bruce Cran67897032011-05-12 10:06:10 +0200137 CloseHandle(wd->ovls[i].o.hEvent);
Bruce Cran93bcfd22012-02-20 20:18:19 +0100138 }
Bruce Cran67897032011-05-12 10:06:10 +0200139
140 free(wd->aio_events);
141 free(wd->ovls);
142 free(wd);
143
144 td->io_ops->data = NULL;
145 }
146}
147
148
Bruce Cranecc314b2011-01-04 10:59:30 +0100149static int fio_windowsaio_open_file(struct thread_data *td, struct fio_file *f)
150{
151 int rc = 0;
152 HANDLE hFile;
Bruce Cran4e790982011-07-09 08:20:47 +0200153 DWORD flags = FILE_FLAG_POSIX_SEMANTICS | FILE_FLAG_OVERLAPPED;
Bruce Cranecc314b2011-01-04 10:59:30 +0100154 DWORD sharemode = FILE_SHARE_READ | FILE_SHARE_WRITE;
155 DWORD openmode = OPEN_ALWAYS;
156 DWORD access;
157
158 dprint(FD_FILE, "fd open %s\n", f->file_name);
159
Bruce Cranecc314b2011-01-04 10:59:30 +0100160 if (f->filetype == FIO_TYPE_PIPE) {
161 log_err("fio: windowsaio doesn't support pipes\n");
162 return 1;
163 }
164
165 if (!strcmp(f->file_name, "-")) {
166 log_err("fio: can't read/write to stdin/out\n");
167 return 1;
168 }
169
170 if (td->o.odirect)
171 flags |= FILE_FLAG_NO_BUFFERING;
172 if (td->o.sync_io)
173 flags |= FILE_FLAG_WRITE_THROUGH;
174
Bruce Cran93bcfd22012-02-20 20:18:19 +0100175 /*
176 * Inform Windows whether we're going to be doing sequential or
177 * random io so it can tune the Cache Manager
178 */
Bruce Cranecc314b2011-01-04 10:59:30 +0100179 if (td->o.td_ddir == TD_DDIR_READ ||
Bruce Cranea4500d2011-05-04 07:54:13 -0600180 td->o.td_ddir == TD_DDIR_WRITE)
Bruce Cranecc314b2011-01-04 10:59:30 +0100181 flags |= FILE_FLAG_SEQUENTIAL_SCAN;
Bruce Cranecc314b2011-01-04 10:59:30 +0100182 else
Bruce Cranecc314b2011-01-04 10:59:30 +0100183 flags |= FILE_FLAG_RANDOM_ACCESS;
Bruce Cranecc314b2011-01-04 10:59:30 +0100184
Bruce Cranea4500d2011-05-04 07:54:13 -0600185 if (!td_write(td) || read_only)
Bruce Cranecc314b2011-01-04 10:59:30 +0100186 access = GENERIC_READ;
187 else
188 access = (GENERIC_READ | GENERIC_WRITE);
189
Bruce Cran93bcfd22012-02-20 20:18:19 +0100190 if (td->o.create_on_open)
Bruce Cranecc314b2011-01-04 10:59:30 +0100191 openmode = OPEN_ALWAYS;
192 else
193 openmode = OPEN_EXISTING;
194
195 f->hFile = CreateFile(f->file_name, access, sharemode,
196 NULL, openmode, flags, NULL);
197
Bruce Cran4e790982011-07-09 08:20:47 +0200198 if (f->hFile == INVALID_HANDLE_VALUE)
Bruce Cranecc314b2011-01-04 10:59:30 +0100199 rc = 1;
Bruce Cranecc314b2011-01-04 10:59:30 +0100200
Bruce Cran93bcfd22012-02-20 20:18:19 +0100201 /* Only set up the completion port and thread if we're not just
Bruce Cranecc314b2011-01-04 10:59:30 +0100202 * querying the device size */
Jens Axboe40c5db32012-02-01 23:03:44 +0100203 if (!rc && td->io_ops->data != NULL) {
Bruce Cranecc314b2011-01-04 10:59:30 +0100204 struct thread_ctx *ctx;
Jens Axboe40c5db32012-02-01 23:03:44 +0100205 struct windowsaio_data *wd;
206
Bruce Cranecc314b2011-01-04 10:59:30 +0100207 hFile = CreateIoCompletionPort(f->hFile, NULL, 0, 0);
208
Jens Axboe40c5db32012-02-01 23:03:44 +0100209 wd = td->io_ops->data;
Bruce Cran9b836562011-01-08 19:49:54 +0100210 wd->iothread_running = TRUE;
Bruce Cran9b836562011-01-08 19:49:54 +0100211
212 if (!rc) {
213 ctx = malloc(sizeof(struct thread_ctx));
214 ctx->iocp = hFile;
215 ctx->wd = wd;
216
217 wd->iothread = CreateThread(NULL, 0, IoCompletionRoutine, ctx, 0, NULL);
218 }
219
Bruce Cran4e790982011-07-09 08:20:47 +0200220 if (rc || wd->iothread == NULL)
Bruce Cranecc314b2011-01-04 10:59:30 +0100221 rc = 1;
Bruce Cranecc314b2011-01-04 10:59:30 +0100222 }
223
Bruce Cranecc314b2011-01-04 10:59:30 +0100224 return rc;
225}
226
227static int fio_windowsaio_close_file(struct thread_data fio_unused *td, struct fio_file *f)
228{
Bruce Cran4e790982011-07-09 08:20:47 +0200229 int rc = 0;
Bruce Cran1e42cc32012-02-01 21:46:55 +0100230
Bruce Cran9b836562011-01-08 19:49:54 +0100231 dprint(FD_FILE, "fd close %s\n", f->file_name);
232
Bruce Cranecc314b2011-01-04 10:59:30 +0100233 if (f->hFile != INVALID_HANDLE_VALUE) {
Bruce Cran9b836562011-01-08 19:49:54 +0100234 if (!CloseHandle(f->hFile))
Bruce Cran4e790982011-07-09 08:20:47 +0200235 rc = 1;
Bruce Cranecc314b2011-01-04 10:59:30 +0100236 }
237
238 f->hFile = INVALID_HANDLE_VALUE;
Bruce Cran4e790982011-07-09 08:20:47 +0200239 return rc;
Bruce Cranecc314b2011-01-04 10:59:30 +0100240}
241
Bruce Cran67897032011-05-12 10:06:10 +0200242static BOOL timeout_expired(DWORD start_count, DWORD end_count)
243{
244 BOOL expired = FALSE;
245 DWORD current_time;
246
247 current_time = GetTickCount();
248
249 if ((end_count > start_count) && current_time >= end_count)
250 expired = TRUE;
251 else if (current_time < start_count && current_time > end_count)
252 expired = TRUE;
253
254 return expired;
255}
256
257static struct io_u* fio_windowsaio_event(struct thread_data *td, int event)
258{
259 struct windowsaio_data *wd = td->io_ops->data;
260 return wd->aio_events[event];
261}
262
263static int fio_windowsaio_getevents(struct thread_data *td, unsigned int min,
264 unsigned int max, struct timespec *t)
265{
266 struct windowsaio_data *wd = td->io_ops->data;
267 struct flist_head *entry;
268 unsigned int dequeued = 0;
269 struct io_u *io_u;
270 struct fio_overlapped *fov;
271 DWORD start_count = 0;
272 DWORD end_count = 0;
273 DWORD status;
274 DWORD mswait = 250;
275
276 if (t != NULL) {
277 mswait = (t->tv_sec * 1000) + (t->tv_nsec / 1000000);
278 start_count = GetTickCount();
279 end_count = start_count + (t->tv_sec * 1000) + (t->tv_nsec / 1000000);
280 }
281
282 do {
283 flist_for_each(entry, &td->io_u_busylist) {
284 io_u = flist_entry(entry, struct io_u, list);
285 fov = (struct fio_overlapped*)io_u->engine_data;
286
287 if (fov->io_complete) {
Jens Axboe40c5db32012-02-01 23:03:44 +0100288 fov->io_complete = FALSE;
Bruce Cran67897032011-05-12 10:06:10 +0200289 fov->io_free = TRUE;
Bruce Cranf9a58c22012-04-04 08:35:13 -0600290 ResetEvent(fov->o.hEvent);
Bruce Cran67897032011-05-12 10:06:10 +0200291 wd->aio_events[dequeued] = io_u;
292 dequeued++;
293 }
294
295 if (dequeued >= min)
296 break;
297 }
298
Jens Axboe40c5db32012-02-01 23:03:44 +0100299 if (dequeued < min) {
Bruce Cran67897032011-05-12 10:06:10 +0200300 status = WaitForSingleObject(wd->iocomplete_event, mswait);
Bruce Cranf9a58c22012-04-04 08:35:13 -0600301 if (status != WAIT_OBJECT_0 && dequeued >= min)
Bruce Cran67897032011-05-12 10:06:10 +0200302 break;
303 }
304
305 if (dequeued >= min || (t != NULL && timeout_expired(start_count, end_count)))
306 break;
307 } while (1);
308
309 return dequeued;
310}
311
Jens Axboe40c5db32012-02-01 23:03:44 +0100312static int fio_windowsaio_queue(struct thread_data *td, struct io_u *io_u)
Bruce Cran67897032011-05-12 10:06:10 +0200313{
Bruce Cran1e42cc32012-02-01 21:46:55 +0100314 LPOVERLAPPED lpOvl = NULL;
Bruce Cran67897032011-05-12 10:06:10 +0200315 struct windowsaio_data *wd;
316 DWORD iobytes;
Bruce Cran93bcfd22012-02-20 20:18:19 +0100317 BOOL success = FALSE;
Bruce Cran67897032011-05-12 10:06:10 +0200318 int index;
319 int rc = FIO_Q_COMPLETED;
320
321 fio_ro_check(td, io_u);
322
323 wd = td->io_ops->data;
324
Bruce Cran1e42cc32012-02-01 21:46:55 +0100325 for (index = 0; index < td->o.iodepth; index++) {
Bruce Cranf9a58c22012-04-04 08:35:13 -0600326 if (wd->ovls[index].io_free)
Bruce Cran1e42cc32012-02-01 21:46:55 +0100327 break;
Bruce Cran1e42cc32012-02-01 21:46:55 +0100328 }
Bruce Cran67897032011-05-12 10:06:10 +0200329
Bruce Cran1e42cc32012-02-01 21:46:55 +0100330 assert(index < td->o.iodepth);
Bruce Cran67897032011-05-12 10:06:10 +0200331
Bruce Cranf9a58c22012-04-04 08:35:13 -0600332 wd->ovls[index].io_free = FALSE;
Bruce Cran1e42cc32012-02-01 21:46:55 +0100333 wd->ovls[index].io_u = io_u;
Bruce Cranf9a58c22012-04-04 08:35:13 -0600334 lpOvl = &wd->ovls[index].o;
Bruce Cran4e790982011-07-09 08:20:47 +0200335 lpOvl->Internal = STATUS_PENDING;
336 lpOvl->InternalHigh = 0;
337 lpOvl->Offset = io_u->offset & 0xFFFFFFFF;
338 lpOvl->OffsetHigh = io_u->offset >> 32;
Bruce Cran1e42cc32012-02-01 21:46:55 +0100339 io_u->engine_data = &wd->ovls[index];
Bruce Cran67897032011-05-12 10:06:10 +0200340
341 switch (io_u->ddir) {
Jens Axboe40c5db32012-02-01 23:03:44 +0100342 case DDIR_WRITE:
Bruce Cran67897032011-05-12 10:06:10 +0200343 success = WriteFile(io_u->file->hFile, io_u->xfer_buf, io_u->xfer_buflen, &iobytes, lpOvl);
344 break;
345 case DDIR_READ:
346 success = ReadFile(io_u->file->hFile, io_u->xfer_buf, io_u->xfer_buflen, &iobytes, lpOvl);
347 break;
348 case DDIR_SYNC:
349 case DDIR_DATASYNC:
350 case DDIR_SYNC_FILE_RANGE:
351 success = FlushFileBuffers(io_u->file->hFile);
352 if (!success)
353 io_u->error = GetLastError();
354
355 return FIO_Q_COMPLETED;
356 break;
357 case DDIR_TRIM:
358 log_err("manual TRIM isn't supported on Windows");
359 io_u->error = 1;
360 io_u->resid = io_u->xfer_buflen;
361 return FIO_Q_COMPLETED;
362 break;
363 default:
364 assert(0);
Bruce Cran93bcfd22012-02-20 20:18:19 +0100365 break;
Bruce Cran67897032011-05-12 10:06:10 +0200366 }
367
Jens Axboe40c5db32012-02-01 23:03:44 +0100368 if (success || GetLastError() == ERROR_IO_PENDING)
Bruce Cran67897032011-05-12 10:06:10 +0200369 rc = FIO_Q_QUEUED;
Jens Axboe40c5db32012-02-01 23:03:44 +0100370 else {
Bruce Cran67897032011-05-12 10:06:10 +0200371 io_u->error = GetLastError();
372 io_u->resid = io_u->xfer_buflen;
373 }
374
375 return rc;
376}
377
378/* Runs as a thread and waits for queued IO to complete */
379static DWORD WINAPI IoCompletionRoutine(LPVOID lpParameter)
380{
381 OVERLAPPED *ovl;
382 struct fio_overlapped *fov;
383 struct io_u *io_u;
384 struct windowsaio_data *wd;
385 struct thread_ctx *ctx;
386 ULONG_PTR ulKey = 0;
387 DWORD bytes;
388
389 ctx = (struct thread_ctx*)lpParameter;
390 wd = ctx->wd;
391
392 do {
393 if (!GetQueuedCompletionStatus(ctx->iocp, &bytes, &ulKey, &ovl, 250))
394 continue;
395
396 fov = CONTAINING_RECORD(ovl, struct fio_overlapped, o);
397 io_u = fov->io_u;
398
399 if (ovl->Internal == ERROR_SUCCESS) {
400 io_u->resid = io_u->xfer_buflen - ovl->InternalHigh;
401 io_u->error = 0;
402 } else {
403 io_u->resid = io_u->xfer_buflen;
404 io_u->error = ovl->Internal;
405 }
406
Jens Axboe40c5db32012-02-01 23:03:44 +0100407 fov->io_complete = TRUE;
Bruce Cran67897032011-05-12 10:06:10 +0200408 SetEvent(wd->iocomplete_event);
409 } while (ctx->wd->iothread_running);
410
411 CloseHandle(ctx->iocp);
412 free(ctx);
413 return 0;
414}
415
416static int fio_windowsaio_cancel(struct thread_data *td,
417 struct io_u *io_u)
418{
419 int rc = 0;
420
421 struct windowsaio_data *wd = td->io_ops->data;
422
423 /* If we're running on Vista or newer, we can cancel individual IO requests */
424 if (wd->pCancelIoEx != NULL) {
425 struct fio_overlapped *ovl = io_u->engine_data;
Jens Axboe40c5db32012-02-01 23:03:44 +0100426
Bruce Cran67897032011-05-12 10:06:10 +0200427 if (!wd->pCancelIoEx(io_u->file->hFile, &ovl->o))
428 rc = 1;
429 } else
430 rc = 1;
431
432 return rc;
433}
434
Bruce Cranecc314b2011-01-04 10:59:30 +0100435static struct ioengine_ops ioengine = {
436 .name = "windowsaio",
437 .version = FIO_IOOPS_VERSION,
438 .init = fio_windowsaio_init,
439 .queue = fio_windowsaio_queue,
440 .cancel = fio_windowsaio_cancel,
441 .getevents = fio_windowsaio_getevents,
442 .event = fio_windowsaio_event,
443 .cleanup = fio_windowsaio_cleanup,
444 .open_file = fio_windowsaio_open_file,
445 .close_file = fio_windowsaio_close_file,
446 .get_file_size = generic_get_file_size
447};
448
449static void fio_init fio_posixaio_register(void)
450{
451 register_ioengine(&ioengine);
452}
453
454static void fio_exit fio_posixaio_unregister(void)
455{
456 unregister_ioengine(&ioengine);
457}