blob: e389b673709df4ee8fb49ffa9fd223c18403317d [file] [log] [blame]
Bruce Cranecc314b2011-01-04 10:59:30 +01001/*
2 * Native Windows async IO engine
Bruce Cranea4500d2011-05-04 07:54:13 -06003 * Copyright (C) 2011 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 Cranecc314b2011-01-04 10:59:30 +010017typedef struct {
18 OVERLAPPED o;
19 struct io_u *io_u;
20} FIO_OVERLAPPED;
21
Bruce Cran9b836562011-01-08 19:49:54 +010022struct windowsaio_data {
23 HANDLE *io_handles;
24 unsigned int io_index;
25 FIO_OVERLAPPED *ovls;
26
27 HANDLE iothread;
28 HANDLE iothread_stopped;
29 BOOL iothread_running;
30
31 struct io_u **aio_events;
32 HANDLE iocomplete_event;
Bruce Cranea4500d2011-05-04 07:54:13 -060033 CANCELIOEX pCancelIoEx;
34 BOOL useIOCP;
Bruce Cran9b836562011-01-08 19:49:54 +010035};
36
Bruce Cranecc314b2011-01-04 10:59:30 +010037struct thread_ctx {
Bruce Cran9b836562011-01-08 19:49:54 +010038 HANDLE iocp;
Bruce Cranecc314b2011-01-04 10:59:30 +010039 struct windowsaio_data *wd;
40};
41
42static void PrintError(LPCSTR lpszFunction);
43static int fio_windowsaio_cancel(struct thread_data *td,
44 struct io_u *io_u);
Bruce Cran9b836562011-01-08 19:49:54 +010045static BOOL TimedOut(DWORD start_count, DWORD end_count);
Bruce Cranecc314b2011-01-04 10:59:30 +010046static int fio_windowsaio_getevents(struct thread_data *td, unsigned int min,
47 unsigned int max, struct timespec *t);
48static struct io_u *fio_windowsaio_event(struct thread_data *td, int event);
49static int fio_windowsaio_queue(struct thread_data *td,
50 struct io_u *io_u);
51static void fio_windowsaio_cleanup(struct thread_data *td);
52static DWORD WINAPI IoCompletionRoutine(LPVOID lpParameter);
53static int fio_windowsaio_init(struct thread_data *td);
54static int fio_windowsaio_open_file(struct thread_data *td, struct fio_file *f);
55static int fio_windowsaio_close_file(struct thread_data fio_unused *td, struct fio_file *f);
56
Bruce Cran9b836562011-01-08 19:49:54 +010057int sync_file_range(int fd, off64_t offset, off64_t nbytes,
58 unsigned int flags)
59{
60 errno = ENOSYS;
61 return -1;
62}
63
Bruce Cranecc314b2011-01-04 10:59:30 +010064static void PrintError(LPCSTR lpszFunction)
65{
66 // Retrieve the system error message for the last-error code
67
68 LPSTR lpMsgBuf;
69 DWORD dw = GetLastError();
70
71 FormatMessage(
72 FORMAT_MESSAGE_ALLOCATE_BUFFER |
73 FORMAT_MESSAGE_FROM_SYSTEM |
74 FORMAT_MESSAGE_IGNORE_INSERTS,
75 NULL,
76 dw,
77 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
78 (LPTSTR)&lpMsgBuf,
79 0, NULL );
80
81 log_err("%s - %s", lpszFunction, lpMsgBuf);
82 LocalFree(lpMsgBuf);
83}
84
85static int fio_windowsaio_cancel(struct thread_data *td,
86 struct io_u *io_u)
87{
Bruce Cranecc314b2011-01-04 10:59:30 +010088 int rc = 0;
89
Bruce Cran9b836562011-01-08 19:49:54 +010090 struct windowsaio_data *wd = td->io_ops->data;
Bruce Cranecc314b2011-01-04 10:59:30 +010091
Bruce Cranea4500d2011-05-04 07:54:13 -060092 /* If we're running on Vista or newer, we can cancel individual IO requests */
93 if (wd->pCancelIoEx != NULL) {
Bruce Cran9b836562011-01-08 19:49:54 +010094 FIO_OVERLAPPED *ovl = io_u->engine_data;
Bruce Cranea4500d2011-05-04 07:54:13 -060095 if (!wd->pCancelIoEx(io_u->file->hFile, &ovl->o))
Bruce Cran9b836562011-01-08 19:49:54 +010096 rc = 1;
97 } else
Bruce Cranecc314b2011-01-04 10:59:30 +010098 rc = 1;
99
100 return rc;
101}
102
Bruce Cran9b836562011-01-08 19:49:54 +0100103static BOOL TimedOut(DWORD start_count, DWORD end_count)
Bruce Cranecc314b2011-01-04 10:59:30 +0100104{
105 BOOL expired = FALSE;
Bruce Cran9b836562011-01-08 19:49:54 +0100106 DWORD current_time;
Bruce Cranecc314b2011-01-04 10:59:30 +0100107
Bruce Cran9b836562011-01-08 19:49:54 +0100108 current_time = GetTickCount();
Bruce Cranecc314b2011-01-04 10:59:30 +0100109
Bruce Cran9b836562011-01-08 19:49:54 +0100110 if ((end_count > start_count) && current_time >= end_count)
Bruce Cranecc314b2011-01-04 10:59:30 +0100111 expired = TRUE;
Bruce Cran9b836562011-01-08 19:49:54 +0100112 else if (current_time < start_count && current_time > end_count)
Bruce Cranecc314b2011-01-04 10:59:30 +0100113 expired = TRUE;
114
Bruce Cranecc314b2011-01-04 10:59:30 +0100115 return expired;
116}
117
118static int fio_windowsaio_getevents(struct thread_data *td, unsigned int min,
119 unsigned int max, struct timespec *t)
120{
121 struct windowsaio_data *wd = td->io_ops->data;
122 struct flist_head *entry;
123 unsigned int dequeued = 0;
124 struct io_u *io_u;
Bruce Cran9b836562011-01-08 19:49:54 +0100125 DWORD start_count = 0, end_count = 0;
Bruce Cranecc314b2011-01-04 10:59:30 +0100126 BOOL timedout = FALSE;
Bruce Cran9b836562011-01-08 19:49:54 +0100127 unsigned int mswait = 100;
Bruce Cranecc314b2011-01-04 10:59:30 +0100128
129 if (t != NULL) {
Bruce Cran9b836562011-01-08 19:49:54 +0100130 mswait = (t->tv_sec * 1000) + (t->tv_nsec / 1000000);
131 start_count = GetTickCount();
132 end_count = start_count + (t->tv_sec * 1000) + (t->tv_nsec / 1000000);
Bruce Cranecc314b2011-01-04 10:59:30 +0100133 }
134
135 while (dequeued < min && !timedout) {
Bruce Cranecc314b2011-01-04 10:59:30 +0100136 flist_for_each(entry, &td->io_u_busylist) {
137 io_u = flist_entry(entry, struct io_u, list);
138
Bruce Cranea4500d2011-05-04 07:54:13 -0600139 if (io_u->seen == 0) {
140 io_u->seen = 1;
Bruce Cran9b836562011-01-08 19:49:54 +0100141 wd->aio_events[dequeued] = io_u;
142 dequeued++;
143 }
Bruce Cranecc314b2011-01-04 10:59:30 +0100144
145 if (dequeued == max)
146 break;
147 }
148
Bruce Cranea4500d2011-05-04 07:54:13 -0600149 if (dequeued < min)
Bruce Cran9b836562011-01-08 19:49:54 +0100150 WaitForSingleObject(wd->iocomplete_event, mswait);
Bruce Cran9b836562011-01-08 19:49:54 +0100151
152 if (t != NULL && TimedOut(start_count, end_count))
Bruce Cranecc314b2011-01-04 10:59:30 +0100153 timedout = TRUE;
Bruce Cranecc314b2011-01-04 10:59:30 +0100154 }
155
Bruce Cranecc314b2011-01-04 10:59:30 +0100156 return dequeued;
157}
158
159static struct io_u *fio_windowsaio_event(struct thread_data *td, int event)
160{
161 struct windowsaio_data *wd = td->io_ops->data;
162 return wd->aio_events[event];
163}
164
165static int fio_windowsaio_queue(struct thread_data *td,
166 struct io_u *io_u)
167{
Bruce Cran9b836562011-01-08 19:49:54 +0100168 struct windowsaio_data *wd;
Bruce Cranea4500d2011-05-04 07:54:13 -0600169 LPOVERLAPPED lpOvl;
Bruce Cran9b836562011-01-08 19:49:54 +0100170 DWORD iobytes;
171 BOOL success = TRUE;
172 int ind;
Bruce Cranecc314b2011-01-04 10:59:30 +0100173 int rc;
174
175 fio_ro_check(td, io_u);
176
Bruce Cran9b836562011-01-08 19:49:54 +0100177 wd = td->io_ops->data;
178 ind = wd->io_index;
Bruce Cranecc314b2011-01-04 10:59:30 +0100179
Bruce Cran9b836562011-01-08 19:49:54 +0100180 ResetEvent(wd->io_handles[ind]);
Bruce Cranea4500d2011-05-04 07:54:13 -0600181
182 if (wd->useIOCP) {
183 lpOvl = &wd->ovls[ind].o;
184
185 lpOvl->Internal = STATUS_PENDING;
186 lpOvl->InternalHigh = 0;
187 lpOvl->Offset = io_u->offset & 0xFFFFFFFF;
188 lpOvl->OffsetHigh = io_u->offset >> 32;
189 lpOvl->hEvent = wd->io_handles[ind];
190 lpOvl->Pointer = NULL;
191 wd->ovls[ind].io_u = io_u;
192 } else {
193 lpOvl = NULL;
194 }
Bruce Crane4db9fe2011-01-04 14:44:47 +0100195
Bruce Cran9b836562011-01-08 19:49:54 +0100196 io_u->engine_data = &wd->ovls[ind];
Bruce Cranecc314b2011-01-04 10:59:30 +0100197 io_u->seen = 0;
198
Bruce Cran9b836562011-01-08 19:49:54 +0100199 if (io_u->ddir == DDIR_WRITE) {
Bruce Cranea4500d2011-05-04 07:54:13 -0600200 success = WriteFile(io_u->file->hFile, io_u->xfer_buf, io_u->xfer_buflen, &iobytes, lpOvl);
Bruce Cran9b836562011-01-08 19:49:54 +0100201 } else if (io_u->ddir == DDIR_READ) {
Bruce Cranea4500d2011-05-04 07:54:13 -0600202 success = ReadFile(io_u->file->hFile, io_u->xfer_buf, io_u->xfer_buflen, &iobytes, lpOvl);
Bruce Cran9b836562011-01-08 19:49:54 +0100203 } else if (io_u->ddir == DDIR_SYNC ||
Bruce Cranea4500d2011-05-04 07:54:13 -0600204 io_u->ddir == DDIR_DATASYNC ||
205 io_u->ddir == DDIR_SYNC_FILE_RANGE)
Bruce Cranecc314b2011-01-04 10:59:30 +0100206 {
207 FlushFileBuffers(io_u->file->hFile);
208 return FIO_Q_COMPLETED;
209 } else if (io_u->ddir == DDIR_TRIM) {
Bruce Cranea4500d2011-05-04 07:54:13 -0600210 log_info("Manual TRIM isn't supported on Windows");
Bruce Cranecc314b2011-01-04 10:59:30 +0100211 return FIO_Q_COMPLETED;
Bruce Cran9b836562011-01-08 19:49:54 +0100212 } else
213 assert(0);
Bruce Cranecc314b2011-01-04 10:59:30 +0100214
Bruce Cranea4500d2011-05-04 07:54:13 -0600215 if (wd->useIOCP && (success || GetLastError() == ERROR_IO_PENDING)) {
216 wd->io_index = (wd->io_index + 1) % td->o.iodepth;
217 rc = FIO_Q_QUEUED;
218 } else if (success && !wd->useIOCP) {
Bruce Cran9b836562011-01-08 19:49:54 +0100219 io_u->resid = io_u->xfer_buflen - iobytes;
Bruce Cranecc314b2011-01-04 10:59:30 +0100220 io_u->error = 0;
221 rc = FIO_Q_COMPLETED;
Bruce Cranecc314b2011-01-04 10:59:30 +0100222 } else {
223 PrintError(__func__);
224 io_u->error = GetLastError();
225 io_u->resid = io_u->xfer_buflen;
226 rc = FIO_Q_COMPLETED;
227 }
228
Bruce Cranecc314b2011-01-04 10:59:30 +0100229 return rc;
230}
231
232static void fio_windowsaio_cleanup(struct thread_data *td)
233{
Bruce Cran9b836562011-01-08 19:49:54 +0100234 int i;
Bruce Cranecc314b2011-01-04 10:59:30 +0100235 struct windowsaio_data *wd;
236
Bruce Cranecc314b2011-01-04 10:59:30 +0100237 wd = td->io_ops->data;
Bruce Cranecc314b2011-01-04 10:59:30 +0100238
Bruce Cran9b836562011-01-08 19:49:54 +0100239 WaitForSingleObject(wd->iothread_stopped, INFINITE);
Bruce Cranecc314b2011-01-04 10:59:30 +0100240
241 if (wd != NULL) {
Bruce Cran9b836562011-01-08 19:49:54 +0100242 CloseHandle(wd->iothread);
243 CloseHandle(wd->iothread_stopped);
244 CloseHandle(wd->iocomplete_event);
245
Bruce Cranea4500d2011-05-04 07:54:13 -0600246 for (i = 0; i < td->o.iodepth; i++) {
Bruce Cran9b836562011-01-08 19:49:54 +0100247 CloseHandle(wd->io_handles[i]);
248 }
Bruce Crane4db9fe2011-01-04 14:44:47 +0100249
Bruce Cranecc314b2011-01-04 10:59:30 +0100250 free(wd->aio_events);
Bruce Cran9b836562011-01-08 19:49:54 +0100251 free(wd->io_handles);
252 free(wd->ovls);
Bruce Cranecc314b2011-01-04 10:59:30 +0100253 free(wd);
Bruce Crane4db9fe2011-01-04 14:44:47 +0100254
Bruce Cranecc314b2011-01-04 10:59:30 +0100255 td->io_ops->data = NULL;
256 }
Bruce Cranecc314b2011-01-04 10:59:30 +0100257}
258
Bruce Cran9b836562011-01-08 19:49:54 +0100259/* Runs as a thread and waits for queued IO to complete */
Bruce Cranecc314b2011-01-04 10:59:30 +0100260static DWORD WINAPI IoCompletionRoutine(LPVOID lpParameter)
261{
262 OVERLAPPED *ovl;
263 FIO_OVERLAPPED *fov;
264 struct io_u *io_u;
265 struct windowsaio_data *wd;
Bruce Cranecc314b2011-01-04 10:59:30 +0100266 struct thread_ctx *ctx;
267 ULONG_PTR ulKey = 0;
Bruce Cranecc314b2011-01-04 10:59:30 +0100268 DWORD bytes;
269
Bruce Cranecc314b2011-01-04 10:59:30 +0100270 ctx = (struct thread_ctx*)lpParameter;
271 wd = ctx->wd;
Bruce Cranecc314b2011-01-04 10:59:30 +0100272
Bruce Cranea4500d2011-05-04 07:54:13 -0600273 do {
Bruce Cran9b836562011-01-08 19:49:54 +0100274 if (!GetQueuedCompletionStatus(ctx->iocp, &bytes, &ulKey, &ovl, 250))
275 continue;
Bruce Cranecc314b2011-01-04 10:59:30 +0100276
277 fov = CONTAINING_RECORD(ovl, FIO_OVERLAPPED, o);
278 io_u = fov->io_u;
279
Bruce Cran1a958f02011-05-05 08:13:37 -0600280 /* We sometimes get an IO request that hasn't completed yet. Ignore it. */
281 if (ovl->Internal == STATUS_PENDING)
282 continue;
283
Bruce Cranecc314b2011-01-04 10:59:30 +0100284 if (ovl->Internal == ERROR_SUCCESS) {
285 io_u->resid = io_u->xfer_buflen - ovl->InternalHigh;
286 io_u->error = 0;
287 } else {
288 io_u->resid = io_u->xfer_buflen;
Bruce Cran9b836562011-01-08 19:49:54 +0100289 io_u->error = ovl->Internal;
Bruce Cranecc314b2011-01-04 10:59:30 +0100290 }
291
Bruce Cran9b836562011-01-08 19:49:54 +0100292 SetEvent(wd->iocomplete_event);
Bruce Cranea4500d2011-05-04 07:54:13 -0600293 } while (ctx->wd->iothread_running);
Bruce Cranecc314b2011-01-04 10:59:30 +0100294
Bruce Cran9b836562011-01-08 19:49:54 +0100295 CloseHandle(ctx->iocp);
296 SetEvent(ctx->wd->iothread_stopped);
Bruce Cranecc314b2011-01-04 10:59:30 +0100297 free(ctx);
Bruce Cran9b836562011-01-08 19:49:54 +0100298
Bruce Cranecc314b2011-01-04 10:59:30 +0100299 return 0;
300}
301
302static int fio_windowsaio_init(struct thread_data *td)
303{
Bruce Cranecc314b2011-01-04 10:59:30 +0100304 struct windowsaio_data *wd;
Bruce Cranea4500d2011-05-04 07:54:13 -0600305 HANDLE hKernel32Dll;
Bruce Cran9b836562011-01-08 19:49:54 +0100306 int rc = 0;
Bruce Cranecc314b2011-01-04 10:59:30 +0100307
Bruce Cranecc314b2011-01-04 10:59:30 +0100308 wd = malloc(sizeof(struct windowsaio_data));
Bruce Cran9b836562011-01-08 19:49:54 +0100309 if (wd != NULL)
310 ZeroMemory(wd, sizeof(struct windowsaio_data));
311 else
312 rc = 1;
Bruce Cranecc314b2011-01-04 10:59:30 +0100313
Bruce Cran9b836562011-01-08 19:49:54 +0100314 if (!rc) {
315 wd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u*));
316 if (wd->aio_events == NULL)
317 rc = 1;
Bruce Crane4db9fe2011-01-04 14:44:47 +0100318 }
319
Bruce Cran9b836562011-01-08 19:49:54 +0100320 if (!rc) {
Bruce Cranea4500d2011-05-04 07:54:13 -0600321 wd->io_handles = malloc(td->o.iodepth * sizeof(HANDLE));
Bruce Cran9b836562011-01-08 19:49:54 +0100322 if (wd->io_handles == NULL)
323 rc = 1;
Bruce Crane4db9fe2011-01-04 14:44:47 +0100324 }
325
Bruce Cran9b836562011-01-08 19:49:54 +0100326 if (!rc) {
Bruce Cranea4500d2011-05-04 07:54:13 -0600327 wd->ovls = malloc(td->o.iodepth * sizeof(FIO_OVERLAPPED));
Bruce Cran9b836562011-01-08 19:49:54 +0100328 if (wd->ovls == NULL)
329 rc = 1;
330 }
Bruce Crane4db9fe2011-01-04 14:44:47 +0100331
Bruce Cran9b836562011-01-08 19:49:54 +0100332 if (!rc) {
333 /* Create an auto-reset event */
334 wd->iocomplete_event = CreateEvent(NULL, FALSE, FALSE, NULL);
335 if (wd->iocomplete_event == NULL)
336 rc = 1;
337 }
338
Bruce Cran9b836562011-01-08 19:49:54 +0100339 if (rc) {
340 PrintError(__func__);
341 if (wd != NULL) {
342 if (wd->ovls != NULL)
343 free(wd->ovls);
344 if (wd->io_handles != NULL)
345 free(wd->io_handles);
346 if (wd->aio_events != NULL)
347 free(wd->aio_events);
348
349 free(wd);
350 }
351 }
Bruce Cranecc314b2011-01-04 10:59:30 +0100352
Bruce Cranea4500d2011-05-04 07:54:13 -0600353 hKernel32Dll = GetModuleHandle("kernel32.dll");
354 wd->pCancelIoEx = GetProcAddress(hKernel32Dll, "CancelIoEx");
355
Bruce Cranecc314b2011-01-04 10:59:30 +0100356 td->io_ops->data = wd;
Bruce Crane4db9fe2011-01-04 14:44:47 +0100357 return 0;
Bruce Cranecc314b2011-01-04 10:59:30 +0100358}
359
360static int fio_windowsaio_open_file(struct thread_data *td, struct fio_file *f)
361{
362 int rc = 0;
363 HANDLE hFile;
Bruce Cranea4500d2011-05-04 07:54:13 -0600364 DWORD flags = FILE_FLAG_POSIX_SEMANTICS;
Bruce Cranecc314b2011-01-04 10:59:30 +0100365 DWORD sharemode = FILE_SHARE_READ | FILE_SHARE_WRITE;
366 DWORD openmode = OPEN_ALWAYS;
367 DWORD access;
Bruce Cran9b836562011-01-08 19:49:54 +0100368 int i;
Bruce Cranecc314b2011-01-04 10:59:30 +0100369
370 dprint(FD_FILE, "fd open %s\n", f->file_name);
371
Bruce Cranecc314b2011-01-04 10:59:30 +0100372 if (f->filetype == FIO_TYPE_PIPE) {
373 log_err("fio: windowsaio doesn't support pipes\n");
374 return 1;
375 }
376
377 if (!strcmp(f->file_name, "-")) {
378 log_err("fio: can't read/write to stdin/out\n");
379 return 1;
380 }
381
Bruce Cranea4500d2011-05-04 07:54:13 -0600382 if (!td->o.odirect && !td->o.sync_io && td->io_ops->data != NULL)
383 flags |= FILE_FLAG_OVERLAPPED;
384
Bruce Cranecc314b2011-01-04 10:59:30 +0100385 if (td->o.odirect)
386 flags |= FILE_FLAG_NO_BUFFERING;
387 if (td->o.sync_io)
388 flags |= FILE_FLAG_WRITE_THROUGH;
389
390
391 if (td->o.td_ddir == TD_DDIR_READ ||
Bruce Cranea4500d2011-05-04 07:54:13 -0600392 td->o.td_ddir == TD_DDIR_WRITE)
Bruce Cranecc314b2011-01-04 10:59:30 +0100393 flags |= FILE_FLAG_SEQUENTIAL_SCAN;
Bruce Cranecc314b2011-01-04 10:59:30 +0100394 else
Bruce Cranecc314b2011-01-04 10:59:30 +0100395 flags |= FILE_FLAG_RANDOM_ACCESS;
Bruce Cranecc314b2011-01-04 10:59:30 +0100396
Bruce Cranea4500d2011-05-04 07:54:13 -0600397 if (!td_write(td) || read_only)
Bruce Cranecc314b2011-01-04 10:59:30 +0100398 access = GENERIC_READ;
399 else
400 access = (GENERIC_READ | GENERIC_WRITE);
401
402 if (td->o.create_on_open > 0)
403 openmode = OPEN_ALWAYS;
404 else
405 openmode = OPEN_EXISTING;
406
407 f->hFile = CreateFile(f->file_name, access, sharemode,
408 NULL, openmode, flags, NULL);
409
410 if (f->hFile == INVALID_HANDLE_VALUE) {
Bruce Cranecc314b2011-01-04 10:59:30 +0100411 PrintError(__func__);
412 rc = 1;
413 }
414
415 /* Only set up the competion port and thread if we're not just
416 * querying the device size */
Bruce Cranea4500d2011-05-04 07:54:13 -0600417 if (!rc && td->io_ops->data != NULL && !td->o.odirect && !td->o.sync_io) {
Bruce Cranecc314b2011-01-04 10:59:30 +0100418 struct thread_ctx *ctx;
Bruce Cranea4500d2011-05-04 07:54:13 -0600419 struct windowsaio_data *wd;
Bruce Cranecc314b2011-01-04 10:59:30 +0100420 hFile = CreateIoCompletionPort(f->hFile, NULL, 0, 0);
421
Bruce Cranea4500d2011-05-04 07:54:13 -0600422
423 wd = td->io_ops->data;
424
425 if (!td->o.odirect && !td->o.sync_io)
426 wd->useIOCP = 1;
427 else
428 wd->useIOCP = 0;
Bruce Cranecc314b2011-01-04 10:59:30 +0100429
Bruce Cran9b836562011-01-08 19:49:54 +0100430 wd->io_index = 0;
431 wd->iothread_running = TRUE;
432 /* Create a manual-reset event */
433 wd->iothread_stopped = CreateEvent(NULL, TRUE, FALSE, NULL);
Bruce Cranecc314b2011-01-04 10:59:30 +0100434
Bruce Cran9b836562011-01-08 19:49:54 +0100435 if (wd->iothread_stopped == NULL)
436 rc = 1;
Bruce Cranecc314b2011-01-04 10:59:30 +0100437
Bruce Cran9b836562011-01-08 19:49:54 +0100438 if (!rc) {
Bruce Cranea4500d2011-05-04 07:54:13 -0600439 for (i = 0; i < td->o.iodepth; i++) {
Bruce Cran9b836562011-01-08 19:49:54 +0100440 /* Create a manual-reset event for putting in OVERLAPPED */
441 wd->io_handles[i] = CreateEvent(NULL, TRUE, FALSE, NULL);
442 if (wd->io_handles[i] == NULL) {
443 PrintError(__func__);
444 rc = 1;
445 break;
446 }
447 }
448 }
449
450 if (!rc) {
451 ctx = malloc(sizeof(struct thread_ctx));
452 ctx->iocp = hFile;
453 ctx->wd = wd;
454
455 wd->iothread = CreateThread(NULL, 0, IoCompletionRoutine, ctx, 0, NULL);
456 }
457
458 if (rc || wd->iothread == NULL) {
Bruce Cranecc314b2011-01-04 10:59:30 +0100459 PrintError(__func__);
460 rc = 1;
461 }
462 }
463
Bruce Cranecc314b2011-01-04 10:59:30 +0100464 return rc;
465}
466
467static int fio_windowsaio_close_file(struct thread_data fio_unused *td, struct fio_file *f)
468{
Bruce Cran9b836562011-01-08 19:49:54 +0100469 struct windowsaio_data *wd;
470
471 dprint(FD_FILE, "fd close %s\n", f->file_name);
472
473 if (td->io_ops->data != NULL) {
474 wd = td->io_ops->data;
475 wd->iothread_running = FALSE;
476 WaitForSingleObject(wd->iothread_stopped, INFINITE);
477 }
Bruce Cranecc314b2011-01-04 10:59:30 +0100478
Bruce Cranecc314b2011-01-04 10:59:30 +0100479 if (f->hFile != INVALID_HANDLE_VALUE) {
Bruce Cran9b836562011-01-08 19:49:54 +0100480 if (!CloseHandle(f->hFile))
Bruce Cranecc314b2011-01-04 10:59:30 +0100481 PrintError(__func__);
482 }
483
484 f->hFile = INVALID_HANDLE_VALUE;
485 return 0;
486}
487
488static struct ioengine_ops ioengine = {
489 .name = "windowsaio",
490 .version = FIO_IOOPS_VERSION,
491 .init = fio_windowsaio_init,
492 .queue = fio_windowsaio_queue,
493 .cancel = fio_windowsaio_cancel,
494 .getevents = fio_windowsaio_getevents,
495 .event = fio_windowsaio_event,
496 .cleanup = fio_windowsaio_cleanup,
497 .open_file = fio_windowsaio_open_file,
498 .close_file = fio_windowsaio_close_file,
499 .get_file_size = generic_get_file_size
500};
501
502static void fio_init fio_posixaio_register(void)
503{
504 register_ioengine(&ioengine);
505}
506
507static void fio_exit fio_posixaio_unregister(void)
508{
509 unregister_ioengine(&ioengine);
510}