]> git.ipfire.org Git - thirdparty/qemu.git/blame - aio-win32.c
Update version for 2.7.1 release
[thirdparty/qemu.git] / aio-win32.c
CommitLineData
a76bab49
AL
1/*
2 * QEMU aio implementation
3 *
f42b2207
PB
4 * Copyright IBM Corp., 2008
5 * Copyright Red Hat Inc., 2012
a76bab49
AL
6 *
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
f42b2207 9 * Paolo Bonzini <pbonzini@redhat.com>
a76bab49
AL
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
13 *
6b620ca3
PB
14 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
a76bab49
AL
16 */
17
d38ea87a 18#include "qemu/osdep.h"
a76bab49 19#include "qemu-common.h"
737e150e 20#include "block/block.h"
1de7afc9
PB
21#include "qemu/queue.h"
22#include "qemu/sockets.h"
a76bab49 23
f42b2207
PB
24struct AioHandler {
25 EventNotifier *e;
b493317d
PB
26 IOHandler *io_read;
27 IOHandler *io_write;
f42b2207 28 EventNotifierHandler *io_notify;
cd9ba1eb 29 GPollFD pfd;
a76bab49 30 int deleted;
b493317d 31 void *opaque;
dca21ef2 32 bool is_external;
72cf2d4f 33 QLIST_ENTRY(AioHandler) node;
a76bab49
AL
34};
35
b493317d
PB
36void aio_set_fd_handler(AioContext *ctx,
37 int fd,
dca21ef2 38 bool is_external,
b493317d
PB
39 IOHandler *io_read,
40 IOHandler *io_write,
41 void *opaque)
42{
43 /* fd is a SOCKET in our case */
44 AioHandler *node;
45
46 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
47 if (node->pfd.fd == fd && !node->deleted) {
48 break;
49 }
50 }
51
52 /* Are we deleting the fd handler? */
53 if (!io_read && !io_write) {
54 if (node) {
55 /* If the lock is held, just mark the node as deleted */
56 if (ctx->walking_handlers) {
57 node->deleted = 1;
58 node->pfd.revents = 0;
59 } else {
60 /* Otherwise, delete it for real. We can't just mark it as
61 * deleted because deleted nodes are only cleaned up after
62 * releasing the walking_handlers lock.
63 */
64 QLIST_REMOVE(node, node);
65 g_free(node);
66 }
67 }
68 } else {
69 HANDLE event;
70
71 if (node == NULL) {
72 /* Alloc and insert if it's not already there */
3ba235a0 73 node = g_new0(AioHandler, 1);
b493317d
PB
74 node->pfd.fd = fd;
75 QLIST_INSERT_HEAD(&ctx->aio_handlers, node, node);
76 }
77
78 node->pfd.events = 0;
79 if (node->io_read) {
80 node->pfd.events |= G_IO_IN;
81 }
82 if (node->io_write) {
83 node->pfd.events |= G_IO_OUT;
84 }
85
86 node->e = &ctx->notifier;
87
88 /* Update handler with latest information */
89 node->opaque = opaque;
90 node->io_read = io_read;
91 node->io_write = io_write;
dca21ef2 92 node->is_external = is_external;
b493317d
PB
93
94 event = event_notifier_get_handle(&ctx->notifier);
95 WSAEventSelect(node->pfd.fd, event,
96 FD_READ | FD_ACCEPT | FD_CLOSE |
97 FD_CONNECT | FD_WRITE | FD_OOB);
98 }
99
100 aio_notify(ctx);
101}
102
f42b2207
PB
103void aio_set_event_notifier(AioContext *ctx,
104 EventNotifier *e,
dca21ef2 105 bool is_external,
f2e5dca4 106 EventNotifierHandler *io_notify)
a76bab49
AL
107{
108 AioHandler *node;
109
a915f4bc 110 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
f42b2207
PB
111 if (node->e == e && !node->deleted) {
112 break;
113 }
a76bab49
AL
114 }
115
a76bab49 116 /* Are we deleting the fd handler? */
f42b2207 117 if (!io_notify) {
a76bab49 118 if (node) {
e3713e00
PB
119 g_source_remove_poll(&ctx->source, &node->pfd);
120
a76bab49 121 /* If the lock is held, just mark the node as deleted */
cd9ba1eb 122 if (ctx->walking_handlers) {
a76bab49 123 node->deleted = 1;
cd9ba1eb
PB
124 node->pfd.revents = 0;
125 } else {
a76bab49
AL
126 /* Otherwise, delete it for real. We can't just mark it as
127 * deleted because deleted nodes are only cleaned up after
128 * releasing the walking_handlers lock.
129 */
72cf2d4f 130 QLIST_REMOVE(node, node);
7267c094 131 g_free(node);
a76bab49
AL
132 }
133 }
134 } else {
135 if (node == NULL) {
136 /* Alloc and insert if it's not already there */
3ba235a0 137 node = g_new0(AioHandler, 1);
f42b2207
PB
138 node->e = e;
139 node->pfd.fd = (uintptr_t)event_notifier_get_handle(e);
140 node->pfd.events = G_IO_IN;
dca21ef2 141 node->is_external = is_external;
a915f4bc 142 QLIST_INSERT_HEAD(&ctx->aio_handlers, node, node);
e3713e00
PB
143
144 g_source_add_poll(&ctx->source, &node->pfd);
a76bab49
AL
145 }
146 /* Update handler with latest information */
f42b2207 147 node->io_notify = io_notify;
a76bab49 148 }
7ed2b24c
PB
149
150 aio_notify(ctx);
9958c351
PB
151}
152
a3462c65
PB
153bool aio_prepare(AioContext *ctx)
154{
b493317d
PB
155 static struct timeval tv0;
156 AioHandler *node;
157 bool have_select_revents = false;
158 fd_set rfds, wfds;
159
160 /* fill fd sets */
161 FD_ZERO(&rfds);
162 FD_ZERO(&wfds);
163 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
164 if (node->io_read) {
165 FD_SET ((SOCKET)node->pfd.fd, &rfds);
166 }
167 if (node->io_write) {
168 FD_SET ((SOCKET)node->pfd.fd, &wfds);
169 }
170 }
171
172 if (select(0, &rfds, &wfds, NULL, &tv0) > 0) {
173 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
174 node->pfd.revents = 0;
175 if (FD_ISSET(node->pfd.fd, &rfds)) {
176 node->pfd.revents |= G_IO_IN;
177 have_select_revents = true;
178 }
179
180 if (FD_ISSET(node->pfd.fd, &wfds)) {
181 node->pfd.revents |= G_IO_OUT;
182 have_select_revents = true;
183 }
184 }
185 }
186
187 return have_select_revents;
a3462c65
PB
188}
189
cd9ba1eb
PB
190bool aio_pending(AioContext *ctx)
191{
192 AioHandler *node;
193
194 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
f42b2207 195 if (node->pfd.revents && node->io_notify) {
cd9ba1eb
PB
196 return true;
197 }
b493317d
PB
198
199 if ((node->pfd.revents & G_IO_IN) && node->io_read) {
200 return true;
201 }
202 if ((node->pfd.revents & G_IO_OUT) && node->io_write) {
203 return true;
204 }
cd9ba1eb
PB
205 }
206
207 return false;
208}
209
a398dea3 210static bool aio_dispatch_handlers(AioContext *ctx, HANDLE event)
a76bab49 211{
9eb0bfca 212 AioHandler *node;
a398dea3 213 bool progress = false;
7c0628b2 214
cd9ba1eb 215 /*
87f68d31 216 * We have to walk very carefully in case aio_set_fd_handler is
cd9ba1eb
PB
217 * called while we're walking.
218 */
219 node = QLIST_FIRST(&ctx->aio_handlers);
220 while (node) {
221 AioHandler *tmp;
b493317d 222 int revents = node->pfd.revents;
cd9ba1eb
PB
223
224 ctx->walking_handlers++;
225
a398dea3 226 if (!node->deleted &&
b493317d 227 (revents || event_notifier_get_handle(node->e) == event) &&
a398dea3 228 node->io_notify) {
f42b2207
PB
229 node->pfd.revents = 0;
230 node->io_notify(node->e);
164a101f
SH
231
232 /* aio_notify() does not count as progress */
8b2d42d2 233 if (node->e != &ctx->notifier) {
164a101f
SH
234 progress = true;
235 }
cd9ba1eb
PB
236 }
237
b493317d
PB
238 if (!node->deleted &&
239 (node->io_read || node->io_write)) {
240 node->pfd.revents = 0;
241 if ((revents & G_IO_IN) && node->io_read) {
242 node->io_read(node->opaque);
243 progress = true;
244 }
245 if ((revents & G_IO_OUT) && node->io_write) {
246 node->io_write(node->opaque);
247 progress = true;
248 }
249
250 /* if the next select() will return an event, we have progressed */
251 if (event == event_notifier_get_handle(&ctx->notifier)) {
252 WSANETWORKEVENTS ev;
253 WSAEnumNetworkEvents(node->pfd.fd, event, &ev);
254 if (ev.lNetworkEvents) {
255 progress = true;
256 }
257 }
258 }
259
cd9ba1eb
PB
260 tmp = node;
261 node = QLIST_NEXT(node, node);
262
263 ctx->walking_handlers--;
264
265 if (!ctx->walking_handlers && tmp->deleted) {
266 QLIST_REMOVE(tmp, node);
267 g_free(tmp);
268 }
269 }
270
a398dea3
PB
271 return progress;
272}
273
e4c7e2d1 274bool aio_dispatch(AioContext *ctx)
a398dea3
PB
275{
276 bool progress;
277
e4c7e2d1
PB
278 progress = aio_bh_poll(ctx);
279 progress |= aio_dispatch_handlers(ctx, INVALID_HANDLE_VALUE);
d397ec99 280 progress |= timerlistgroup_run_timers(&ctx->tlg);
a398dea3
PB
281 return progress;
282}
283
284bool aio_poll(AioContext *ctx, bool blocking)
285{
286 AioHandler *node;
287 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
eabc9779 288 bool progress, have_select_revents, first;
a398dea3
PB
289 int count;
290 int timeout;
291
49110174 292 aio_context_acquire(ctx);
a398dea3
PB
293 progress = false;
294
0a9dd166
PB
295 /* aio_notify can avoid the expensive event_notifier_set if
296 * everything (file descriptors, bottom halves, timers) will
297 * be re-evaluated before the next blocking poll(). This is
298 * already true when aio_poll is called with blocking == false;
eabc9779
PB
299 * if blocking == true, it is only true after poll() returns,
300 * so disable the optimization now.
0a9dd166 301 */
eabc9779
PB
302 if (blocking) {
303 atomic_add(&ctx->notify_me, 2);
304 }
0a9dd166 305
6493c975
PB
306 have_select_revents = aio_prepare(ctx);
307
a915f4bc 308 ctx->walking_handlers++;
a76bab49 309
9eb0bfca 310 /* fill fd sets */
f42b2207 311 count = 0;
a915f4bc 312 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
c1e1e5fa
FZ
313 if (!node->deleted && node->io_notify
314 && aio_node_check(ctx, node->is_external)) {
f42b2207 315 events[count++] = event_notifier_get_handle(node->e);
9eb0bfca
PB
316 }
317 }
a76bab49 318
a915f4bc 319 ctx->walking_handlers--;
3672fa50 320 first = true;
a76bab49 321
6493c975
PB
322 /* ctx->notifier is always registered. */
323 assert(count > 0);
324
325 /* Multiple iterations, all of them non-blocking except the first,
326 * may be necessary to process all pending events. After the first
327 * WaitForMultipleObjects call ctx->notify_me will be decremented.
328 */
329 do {
b493317d 330 HANDLE event;
438e1f47
AB
331 int ret;
332
6493c975 333 timeout = blocking && !have_select_revents
845ca10d 334 ? qemu_timeout_ns_to_ms(aio_compute_timeout(ctx)) : 0;
49110174
PB
335 if (timeout) {
336 aio_context_release(ctx);
337 }
438e1f47 338 ret = WaitForMultipleObjects(count, events, FALSE, timeout);
eabc9779
PB
339 if (blocking) {
340 assert(first);
341 atomic_sub(&ctx->notify_me, 2);
342 }
49110174
PB
343 if (timeout) {
344 aio_context_acquire(ctx);
345 }
f42b2207 346
21a03d17 347 if (first) {
05e514b1 348 aio_notify_accept(ctx);
21a03d17
PB
349 progress |= aio_bh_poll(ctx);
350 first = false;
3672fa50 351 }
3672fa50 352
f42b2207 353 /* if we have any signaled events, dispatch event */
b493317d
PB
354 event = NULL;
355 if ((DWORD) (ret - WAIT_OBJECT_0) < count) {
356 event = events[ret - WAIT_OBJECT_0];
a90d411e 357 events[ret - WAIT_OBJECT_0] = events[--count];
b493317d 358 } else if (!have_select_revents) {
f42b2207
PB
359 break;
360 }
361
b493317d 362 have_select_revents = false;
f42b2207 363 blocking = false;
9eb0bfca 364
b493317d 365 progress |= aio_dispatch_handlers(ctx, event);
6493c975 366 } while (count > 0);
bcdc1857 367
e4c7e2d1 368 progress |= timerlistgroup_run_timers(&ctx->tlg);
438e1f47 369
49110174 370 aio_context_release(ctx);
164a101f 371 return progress;
a76bab49 372}
37fcee5d 373
7e003465 374void aio_context_setup(AioContext *ctx)
37fcee5d
FZ
375{
376}