blob: 5216d82290f96125c4737c997963facbb4ee9820 [file] [log] [blame]
aliguoria76bab42008-09-22 19:17:18 +00001/*
2 * QEMU aio implementation
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
Paolo Bonzini6b620ca2012-01-13 17:44:23 +010012 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
aliguoria76bab42008-09-22 19:17:18 +000014 */
15
Peter Maydelld38ea872016-01-29 17:50:05 +000016#include "qemu/osdep.h"
aliguoria76bab42008-09-22 19:17:18 +000017#include "qemu-common.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010018#include "block/block.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010019#include "qemu/queue.h"
20#include "qemu/sockets.h"
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +000021#include "qemu/cutils.h"
22#include "trace.h"
Matthew Fortune147dfab2016-02-23 15:42:14 +000023#ifdef CONFIG_EPOLL_CREATE1
Fam Zhengfbe3fc52015-10-30 12:06:29 +080024#include <sys/epoll.h>
25#endif
aliguoria76bab42008-09-22 19:17:18 +000026
aliguoria76bab42008-09-22 19:17:18 +000027struct AioHandler
28{
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +020029 GPollFD pfd;
aliguoria76bab42008-09-22 19:17:18 +000030 IOHandler *io_read;
31 IOHandler *io_write;
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +000032 AioPollFn *io_poll;
Stefan Hajnoczi684e5082016-12-01 19:26:49 +000033 IOHandler *io_poll_begin;
34 IOHandler *io_poll_end;
aliguoria76bab42008-09-22 19:17:18 +000035 int deleted;
36 void *opaque;
Fam Zhengdca21ef2015-10-23 11:08:05 +080037 bool is_external;
Blue Swirl72cf2d42009-09-12 07:36:22 +000038 QLIST_ENTRY(AioHandler) node;
aliguoria76bab42008-09-22 19:17:18 +000039};
40
Matthew Fortune147dfab2016-02-23 15:42:14 +000041#ifdef CONFIG_EPOLL_CREATE1
Fam Zhengfbe3fc52015-10-30 12:06:29 +080042
43/* The fd number threashold to switch to epoll */
44#define EPOLL_ENABLE_THRESHOLD 64
45
46static void aio_epoll_disable(AioContext *ctx)
47{
48 ctx->epoll_available = false;
49 if (!ctx->epoll_enabled) {
50 return;
51 }
52 ctx->epoll_enabled = false;
53 close(ctx->epollfd);
54}
55
56static inline int epoll_events_from_pfd(int pfd_events)
57{
58 return (pfd_events & G_IO_IN ? EPOLLIN : 0) |
59 (pfd_events & G_IO_OUT ? EPOLLOUT : 0) |
60 (pfd_events & G_IO_HUP ? EPOLLHUP : 0) |
61 (pfd_events & G_IO_ERR ? EPOLLERR : 0);
62}
63
64static bool aio_epoll_try_enable(AioContext *ctx)
65{
66 AioHandler *node;
67 struct epoll_event event;
68
69 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
70 int r;
71 if (node->deleted || !node->pfd.events) {
72 continue;
73 }
74 event.events = epoll_events_from_pfd(node->pfd.events);
75 event.data.ptr = node;
76 r = epoll_ctl(ctx->epollfd, EPOLL_CTL_ADD, node->pfd.fd, &event);
77 if (r) {
78 return false;
79 }
80 }
81 ctx->epoll_enabled = true;
82 return true;
83}
84
85static void aio_epoll_update(AioContext *ctx, AioHandler *node, bool is_new)
86{
87 struct epoll_event event;
88 int r;
Paolo Bonzini35dd66e2016-11-08 14:55:24 +010089 int ctl;
Fam Zhengfbe3fc52015-10-30 12:06:29 +080090
91 if (!ctx->epoll_enabled) {
92 return;
93 }
94 if (!node->pfd.events) {
Paolo Bonzini35dd66e2016-11-08 14:55:24 +010095 ctl = EPOLL_CTL_DEL;
Fam Zhengfbe3fc52015-10-30 12:06:29 +080096 } else {
97 event.data.ptr = node;
98 event.events = epoll_events_from_pfd(node->pfd.events);
Paolo Bonzini35dd66e2016-11-08 14:55:24 +010099 ctl = is_new ? EPOLL_CTL_ADD : EPOLL_CTL_MOD;
100 }
101
102 r = epoll_ctl(ctx->epollfd, ctl, node->pfd.fd, &event);
103 if (r) {
104 aio_epoll_disable(ctx);
Fam Zhengfbe3fc52015-10-30 12:06:29 +0800105 }
106}
107
108static int aio_epoll(AioContext *ctx, GPollFD *pfds,
109 unsigned npfd, int64_t timeout)
110{
111 AioHandler *node;
112 int i, ret = 0;
113 struct epoll_event events[128];
114
115 assert(npfd == 1);
116 assert(pfds[0].fd == ctx->epollfd);
117 if (timeout > 0) {
118 ret = qemu_poll_ns(pfds, npfd, timeout);
119 }
120 if (timeout <= 0 || ret > 0) {
121 ret = epoll_wait(ctx->epollfd, events,
122 sizeof(events) / sizeof(events[0]),
123 timeout);
124 if (ret <= 0) {
125 goto out;
126 }
127 for (i = 0; i < ret; i++) {
128 int ev = events[i].events;
129 node = events[i].data.ptr;
130 node->pfd.revents = (ev & EPOLLIN ? G_IO_IN : 0) |
131 (ev & EPOLLOUT ? G_IO_OUT : 0) |
132 (ev & EPOLLHUP ? G_IO_HUP : 0) |
133 (ev & EPOLLERR ? G_IO_ERR : 0);
134 }
135 }
136out:
137 return ret;
138}
139
140static bool aio_epoll_enabled(AioContext *ctx)
141{
142 /* Fall back to ppoll when external clients are disabled. */
143 return !aio_external_disabled(ctx) && ctx->epoll_enabled;
144}
145
146static bool aio_epoll_check_poll(AioContext *ctx, GPollFD *pfds,
147 unsigned npfd, int64_t timeout)
148{
149 if (!ctx->epoll_available) {
150 return false;
151 }
152 if (aio_epoll_enabled(ctx)) {
153 return true;
154 }
155 if (npfd >= EPOLL_ENABLE_THRESHOLD) {
156 if (aio_epoll_try_enable(ctx)) {
157 return true;
158 } else {
159 aio_epoll_disable(ctx);
160 }
161 }
162 return false;
163}
164
165#else
166
167static void aio_epoll_update(AioContext *ctx, AioHandler *node, bool is_new)
168{
169}
170
171static int aio_epoll(AioContext *ctx, GPollFD *pfds,
172 unsigned npfd, int64_t timeout)
173{
174 assert(false);
175}
176
177static bool aio_epoll_enabled(AioContext *ctx)
178{
179 return false;
180}
181
182static bool aio_epoll_check_poll(AioContext *ctx, GPollFD *pfds,
183 unsigned npfd, int64_t timeout)
184{
185 return false;
186}
187
188#endif
189
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200190static AioHandler *find_aio_handler(AioContext *ctx, int fd)
aliguoria76bab42008-09-22 19:17:18 +0000191{
192 AioHandler *node;
193
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200194 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200195 if (node->pfd.fd == fd)
Alexander Graf79d5ca52009-05-06 02:58:48 +0200196 if (!node->deleted)
197 return node;
aliguoria76bab42008-09-22 19:17:18 +0000198 }
199
200 return NULL;
201}
202
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200203void aio_set_fd_handler(AioContext *ctx,
204 int fd,
Fam Zhengdca21ef2015-10-23 11:08:05 +0800205 bool is_external,
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200206 IOHandler *io_read,
207 IOHandler *io_write,
Stefan Hajnoczif6a51c82016-12-01 19:26:41 +0000208 AioPollFn *io_poll,
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200209 void *opaque)
aliguoria76bab42008-09-22 19:17:18 +0000210{
211 AioHandler *node;
Fam Zhengfbe3fc52015-10-30 12:06:29 +0800212 bool is_new = false;
Fam Zheng0ed39f3d2015-11-16 14:32:14 +0800213 bool deleted = false;
aliguoria76bab42008-09-22 19:17:18 +0000214
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200215 node = find_aio_handler(ctx, fd);
aliguoria76bab42008-09-22 19:17:18 +0000216
217 /* Are we deleting the fd handler? */
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000218 if (!io_read && !io_write && !io_poll) {
Paolo Bonzini36173ec2016-11-08 14:55:23 +0100219 if (node == NULL) {
220 return;
221 }
Paolo Bonzinie3713e02012-09-24 14:57:41 +0200222
Paolo Bonzini36173ec2016-11-08 14:55:23 +0100223 g_source_remove_poll(&ctx->source, &node->pfd);
224
225 /* If the lock is held, just mark the node as deleted */
226 if (ctx->walking_handlers) {
227 node->deleted = 1;
228 node->pfd.revents = 0;
229 } else {
230 /* Otherwise, delete it for real. We can't just mark it as
231 * deleted because deleted nodes are only cleaned up after
232 * releasing the walking_handlers lock.
233 */
234 QLIST_REMOVE(node, node);
235 deleted = true;
aliguoria76bab42008-09-22 19:17:18 +0000236 }
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000237
238 if (!node->io_poll) {
239 ctx->poll_disable_cnt--;
240 }
aliguoria76bab42008-09-22 19:17:18 +0000241 } else {
242 if (node == NULL) {
243 /* Alloc and insert if it's not already there */
Markus Armbruster3ba235a2014-12-04 13:55:09 +0100244 node = g_new0(AioHandler, 1);
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200245 node->pfd.fd = fd;
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200246 QLIST_INSERT_HEAD(&ctx->aio_handlers, node, node);
Paolo Bonzinie3713e02012-09-24 14:57:41 +0200247
248 g_source_add_poll(&ctx->source, &node->pfd);
Fam Zhengfbe3fc52015-10-30 12:06:29 +0800249 is_new = true;
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000250
251 ctx->poll_disable_cnt += !io_poll;
252 } else {
253 ctx->poll_disable_cnt += !io_poll - !node->io_poll;
aliguoria76bab42008-09-22 19:17:18 +0000254 }
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000255
aliguoria76bab42008-09-22 19:17:18 +0000256 /* Update handler with latest information */
257 node->io_read = io_read;
258 node->io_write = io_write;
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000259 node->io_poll = io_poll;
aliguoria76bab42008-09-22 19:17:18 +0000260 node->opaque = opaque;
Fam Zhengdca21ef2015-10-23 11:08:05 +0800261 node->is_external = is_external;
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200262
Stefan Hajnoczib5a01a72013-02-20 11:28:33 +0100263 node->pfd.events = (io_read ? G_IO_IN | G_IO_HUP | G_IO_ERR : 0);
264 node->pfd.events |= (io_write ? G_IO_OUT | G_IO_ERR : 0);
aliguoria76bab42008-09-22 19:17:18 +0000265 }
Paolo Bonzini7ed2b242012-09-25 10:22:39 +0200266
Fam Zhengfbe3fc52015-10-30 12:06:29 +0800267 aio_epoll_update(ctx, node, is_new);
Paolo Bonzini7ed2b242012-09-25 10:22:39 +0200268 aio_notify(ctx);
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000269
Fam Zheng0ed39f3d2015-11-16 14:32:14 +0800270 if (deleted) {
271 g_free(node);
272 }
aliguoria76bab42008-09-22 19:17:18 +0000273}
274
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000275void aio_set_fd_poll(AioContext *ctx, int fd,
276 IOHandler *io_poll_begin,
277 IOHandler *io_poll_end)
278{
279 AioHandler *node = find_aio_handler(ctx, fd);
280
281 if (!node) {
282 return;
283 }
284
285 node->io_poll_begin = io_poll_begin;
286 node->io_poll_end = io_poll_end;
287}
288
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200289void aio_set_event_notifier(AioContext *ctx,
290 EventNotifier *notifier,
Fam Zhengdca21ef2015-10-23 11:08:05 +0800291 bool is_external,
Stefan Hajnoczif6a51c82016-12-01 19:26:41 +0000292 EventNotifierHandler *io_read,
293 AioPollFn *io_poll)
Paolo Bonzini9958c352012-06-09 03:44:00 +0200294{
Stefan Hajnoczif6a51c82016-12-01 19:26:41 +0000295 aio_set_fd_handler(ctx, event_notifier_get_fd(notifier), is_external,
296 (IOHandler *)io_read, NULL, io_poll, notifier);
Paolo Bonzini9958c352012-06-09 03:44:00 +0200297}
298
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000299void aio_set_event_notifier_poll(AioContext *ctx,
300 EventNotifier *notifier,
301 EventNotifierHandler *io_poll_begin,
302 EventNotifierHandler *io_poll_end)
303{
304 aio_set_fd_poll(ctx, event_notifier_get_fd(notifier),
305 (IOHandler *)io_poll_begin,
306 (IOHandler *)io_poll_end);
307}
308
309static void poll_set_started(AioContext *ctx, bool started)
310{
311 AioHandler *node;
312
313 if (started == ctx->poll_started) {
314 return;
315 }
316
317 ctx->poll_started = started;
318
319 ctx->walking_handlers++;
320 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
321 IOHandler *fn;
322
323 if (node->deleted) {
324 continue;
325 }
326
327 if (started) {
328 fn = node->io_poll_begin;
329 } else {
330 fn = node->io_poll_end;
331 }
332
333 if (fn) {
334 fn(node->opaque);
335 }
336 }
337 ctx->walking_handlers--;
338}
339
340
Paolo Bonzinia3462c62014-07-09 11:53:08 +0200341bool aio_prepare(AioContext *ctx)
342{
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000343 /* Poll mode cannot be used with glib's event loop, disable it. */
344 poll_set_started(ctx, false);
345
Paolo Bonzinia3462c62014-07-09 11:53:08 +0200346 return false;
347}
348
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200349bool aio_pending(AioContext *ctx)
350{
351 AioHandler *node;
352
353 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
354 int revents;
355
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200356 revents = node->pfd.revents & node->pfd.events;
Fam Zheng37989ce2016-04-22 21:53:55 +0800357 if (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR) && node->io_read &&
358 aio_node_check(ctx, node->is_external)) {
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200359 return true;
360 }
Fam Zheng37989ce2016-04-22 21:53:55 +0800361 if (revents & (G_IO_OUT | G_IO_ERR) && node->io_write &&
362 aio_node_check(ctx, node->is_external)) {
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200363 return true;
364 }
365 }
366
367 return false;
368}
369
Stefan Hajnoczi721671a2016-12-01 19:26:40 +0000370/*
371 * Note that dispatch_fds == false has the side-effect of post-poning the
372 * freeing of deleted handlers.
373 */
374bool aio_dispatch(AioContext *ctx, bool dispatch_fds)
aliguoria76bab42008-09-22 19:17:18 +0000375{
Stefan Hajnoczi721671a2016-12-01 19:26:40 +0000376 AioHandler *node = NULL;
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100377 bool progress = false;
aliguoria76bab42008-09-22 19:17:18 +0000378
Kevin Wolf8febfa22009-10-22 17:54:36 +0200379 /*
Paolo Bonzinie4c7e2d2014-07-09 11:53:05 +0200380 * If there are callbacks left that have been queued, we need to call them.
381 * Do not call select in this case, because it is possible that the caller
382 * does not need a complete flush (as is the case for aio_poll loops).
383 */
384 if (aio_bh_poll(ctx)) {
385 progress = true;
386 }
387
388 /*
Paolo Bonzini87f68d32014-07-07 15:18:02 +0200389 * We have to walk very carefully in case aio_set_fd_handler is
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200390 * called while we're walking.
391 */
Stefan Hajnoczi721671a2016-12-01 19:26:40 +0000392 if (dispatch_fds) {
393 node = QLIST_FIRST(&ctx->aio_handlers);
394 }
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200395 while (node) {
396 AioHandler *tmp;
397 int revents;
398
399 ctx->walking_handlers++;
400
401 revents = node->pfd.revents & node->pfd.events;
402 node->pfd.revents = 0;
403
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100404 if (!node->deleted &&
405 (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR)) &&
Fam Zheng37989ce2016-04-22 21:53:55 +0800406 aio_node_check(ctx, node->is_external) &&
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100407 node->io_read) {
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200408 node->io_read(node->opaque);
Stefan Hajnoczi164a1012013-04-11 16:56:50 +0200409
410 /* aio_notify() does not count as progress */
411 if (node->opaque != &ctx->notifier) {
412 progress = true;
413 }
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200414 }
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100415 if (!node->deleted &&
416 (revents & (G_IO_OUT | G_IO_ERR)) &&
Fam Zheng37989ce2016-04-22 21:53:55 +0800417 aio_node_check(ctx, node->is_external) &&
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100418 node->io_write) {
Paolo Bonzinicd9ba1e2012-09-24 14:57:22 +0200419 node->io_write(node->opaque);
420 progress = true;
421 }
422
423 tmp = node;
424 node = QLIST_NEXT(node, node);
425
426 ctx->walking_handlers--;
427
428 if (!ctx->walking_handlers && tmp->deleted) {
429 QLIST_REMOVE(tmp, node);
430 g_free(tmp);
431 }
432 }
Alex Bligh438e1f42013-08-21 16:02:53 +0100433
434 /* Run our timers */
435 progress |= timerlistgroup_run_timers(&ctx->tlg);
436
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100437 return progress;
438}
439
Paolo Bonzinie98ab092015-02-20 17:26:50 +0100440/* These thread-local variables are used only in a small part of aio_poll
441 * around the call to the poll() system call. In particular they are not
442 * used while aio_poll is performing callbacks, which makes it much easier
443 * to think about reentrancy!
444 *
445 * Stack-allocated arrays would be perfect but they have size limitations;
446 * heap allocation is expensive enough that we want to reuse arrays across
447 * calls to aio_poll(). And because poll() has to be called without holding
448 * any lock, the arrays cannot be stored in AioContext. Thread-local data
449 * has none of the disadvantages of these three options.
450 */
451static __thread GPollFD *pollfds;
452static __thread AioHandler **nodes;
453static __thread unsigned npfd, nalloc;
454static __thread Notifier pollfds_cleanup_notifier;
455
456static void pollfds_cleanup(Notifier *n, void *unused)
457{
458 g_assert(npfd == 0);
459 g_free(pollfds);
460 g_free(nodes);
461 nalloc = 0;
462}
463
464static void add_pollfd(AioHandler *node)
465{
466 if (npfd == nalloc) {
467 if (nalloc == 0) {
468 pollfds_cleanup_notifier.notify = pollfds_cleanup;
469 qemu_thread_atexit_add(&pollfds_cleanup_notifier);
470 nalloc = 8;
471 } else {
472 g_assert(nalloc <= INT_MAX);
473 nalloc *= 2;
474 }
475 pollfds = g_renew(GPollFD, pollfds, nalloc);
476 nodes = g_renew(AioHandler *, nodes, nalloc);
477 }
478 nodes[npfd] = node;
479 pollfds[npfd] = (GPollFD) {
480 .fd = node->pfd.fd,
481 .events = node->pfd.events,
482 };
483 npfd++;
484}
485
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000486static bool run_poll_handlers_once(AioContext *ctx)
487{
488 bool progress = false;
489 AioHandler *node;
490
491 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
492 if (!node->deleted && node->io_poll &&
493 node->io_poll(node->opaque)) {
494 progress = true;
495 }
496
497 /* Caller handles freeing deleted nodes. Don't do it here. */
498 }
499
500 return progress;
501}
502
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000503/* run_poll_handlers:
504 * @ctx: the AioContext
505 * @max_ns: maximum time to poll for, in nanoseconds
506 *
507 * Polls for a given time.
508 *
509 * Note that ctx->notify_me must be non-zero so this function can detect
510 * aio_notify().
511 *
512 * Note that the caller must have incremented ctx->walking_handlers.
513 *
514 * Returns: true if progress was made, false otherwise
515 */
516static bool run_poll_handlers(AioContext *ctx, int64_t max_ns)
517{
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000518 bool progress;
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000519 int64_t end_time;
520
521 assert(ctx->notify_me);
522 assert(ctx->walking_handlers > 0);
523 assert(ctx->poll_disable_cnt == 0);
524
525 trace_run_poll_handlers_begin(ctx, max_ns);
526
527 end_time = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + max_ns;
528
529 do {
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000530 progress = run_poll_handlers_once(ctx);
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000531 } while (!progress && qemu_clock_get_ns(QEMU_CLOCK_REALTIME) < end_time);
532
533 trace_run_poll_handlers_end(ctx, progress);
534
535 return progress;
536}
537
538/* try_poll_mode:
539 * @ctx: the AioContext
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000540 * @blocking: busy polling is only attempted when blocking is true
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000541 *
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000542 * ctx->notify_me must be non-zero so this function can detect aio_notify().
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000543 *
544 * Note that the caller must have incremented ctx->walking_handlers.
545 *
546 * Returns: true if progress was made, false otherwise
547 */
548static bool try_poll_mode(AioContext *ctx, bool blocking)
549{
550 if (blocking && ctx->poll_max_ns && ctx->poll_disable_cnt == 0) {
551 /* See qemu_soonest_timeout() uint64_t hack */
552 int64_t max_ns = MIN((uint64_t)aio_compute_timeout(ctx),
553 (uint64_t)ctx->poll_max_ns);
554
555 if (max_ns) {
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000556 poll_set_started(ctx, true);
557
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000558 if (run_poll_handlers(ctx, max_ns)) {
559 return true;
560 }
561 }
562 }
563
Stefan Hajnoczi684e5082016-12-01 19:26:49 +0000564 poll_set_started(ctx, false);
565
566 /* Even if we don't run busy polling, try polling once in case it can make
567 * progress and the caller will be able to avoid ppoll(2)/epoll_wait(2).
568 */
569 return run_poll_handlers_once(ctx);
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000570}
571
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100572bool aio_poll(AioContext *ctx, bool blocking)
573{
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100574 AioHandler *node;
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000575 int i;
576 int ret = 0;
Stefan Hajnoczi164a1012013-04-11 16:56:50 +0200577 bool progress;
Paolo Bonzinie98ab092015-02-20 17:26:50 +0100578 int64_t timeout;
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100579
Paolo Bonzini49110172015-02-20 17:26:51 +0100580 aio_context_acquire(ctx);
Stefan Hajnoczid0c8d2c2013-02-20 11:28:31 +0100581 progress = false;
582
Paolo Bonzini0ceb8492014-07-07 15:18:04 +0200583 /* aio_notify can avoid the expensive event_notifier_set if
584 * everything (file descriptors, bottom halves, timers) will
Paolo Bonzinie4c7e2d2014-07-09 11:53:05 +0200585 * be re-evaluated before the next blocking poll(). This is
586 * already true when aio_poll is called with blocking == false;
Paolo Bonzinieabc9772015-07-21 16:07:51 +0200587 * if blocking == true, it is only true after poll() returns,
588 * so disable the optimization now.
Paolo Bonzini0ceb8492014-07-07 15:18:04 +0200589 */
Paolo Bonzinieabc9772015-07-21 16:07:51 +0200590 if (blocking) {
591 atomic_add(&ctx->notify_me, 2);
592 }
Paolo Bonzini0ceb8492014-07-07 15:18:04 +0200593
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200594 ctx->walking_handlers++;
aliguoria76bab42008-09-22 19:17:18 +0000595
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000596 if (try_poll_mode(ctx, blocking)) {
597 progress = true;
598 } else {
599 assert(npfd == 0);
Paolo Bonzini9eb0bfc2012-04-12 14:00:56 +0200600
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000601 /* fill pollfds */
Yaowei Bai6b942462016-09-14 07:03:39 -0400602
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000603 if (!aio_epoll_enabled(ctx)) {
604 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
605 if (!node->deleted && node->pfd.events
606 && aio_node_check(ctx, node->is_external)) {
607 add_pollfd(node);
608 }
Yaowei Bai6b942462016-09-14 07:03:39 -0400609 }
Paolo Bonzini9eb0bfc2012-04-12 14:00:56 +0200610 }
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000611
612 timeout = blocking ? aio_compute_timeout(ctx) : 0;
613
614 /* wait until next event */
615 if (timeout) {
616 aio_context_release(ctx);
617 }
618 if (aio_epoll_check_poll(ctx, pollfds, npfd, timeout)) {
619 AioHandler epoll_handler;
620
621 epoll_handler.pfd.fd = ctx->epollfd;
622 epoll_handler.pfd.events = G_IO_IN | G_IO_OUT | G_IO_HUP | G_IO_ERR;
623 npfd = 0;
624 add_pollfd(&epoll_handler);
625 ret = aio_epoll(ctx, pollfds, npfd, timeout);
626 } else {
627 ret = qemu_poll_ns(pollfds, npfd, timeout);
628 }
629 if (timeout) {
630 aio_context_acquire(ctx);
631 }
Paolo Bonzini9eb0bfc2012-04-12 14:00:56 +0200632 }
633
Paolo Bonzinieabc9772015-07-21 16:07:51 +0200634 if (blocking) {
635 atomic_sub(&ctx->notify_me, 2);
636 }
Paolo Bonzini9eb0bfc2012-04-12 14:00:56 +0200637
Paolo Bonzini05e514b2015-07-21 16:07:53 +0200638 aio_notify_accept(ctx);
Paolo Bonzini21a03d12015-07-21 16:07:52 +0200639
Paolo Bonzini9eb0bfc2012-04-12 14:00:56 +0200640 /* if we have any readable fds, dispatch event */
641 if (ret > 0) {
Paolo Bonzinie98ab092015-02-20 17:26:50 +0100642 for (i = 0; i < npfd; i++) {
643 nodes[i]->pfd.revents = pollfds[i].revents;
Stefan Hajnoczi6b5f8762013-02-20 11:28:32 +0100644 }
Alex Bligh438e1f42013-08-21 16:02:53 +0100645 }
646
Paolo Bonzinie98ab092015-02-20 17:26:50 +0100647 npfd = 0;
648 ctx->walking_handlers--;
649
Alex Bligh438e1f42013-08-21 16:02:53 +0100650 /* Run dispatch even if there were no readable fds to run timers */
Stefan Hajnoczi721671a2016-12-01 19:26:40 +0000651 if (aio_dispatch(ctx, ret > 0)) {
Alex Bligh438e1f42013-08-21 16:02:53 +0100652 progress = true;
Paolo Bonzini9eb0bfc2012-04-12 14:00:56 +0200653 }
Paolo Bonzinibcdc1852012-04-12 14:00:55 +0200654
Paolo Bonzini49110172015-02-20 17:26:51 +0100655 aio_context_release(ctx);
656
Stefan Hajnoczi164a1012013-04-11 16:56:50 +0200657 return progress;
aliguoria76bab42008-09-22 19:17:18 +0000658}
Fam Zheng37fcee52015-10-30 12:06:28 +0800659
Cao jin7e003462016-07-15 18:28:44 +0800660void aio_context_setup(AioContext *ctx)
Fam Zheng37fcee52015-10-30 12:06:28 +0800661{
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000662 /* TODO remove this in final patch submission */
663 if (getenv("QEMU_AIO_POLL_MAX_NS")) {
664 fprintf(stderr, "The QEMU_AIO_POLL_MAX_NS environment variable has "
665 "been replaced with -object iothread,poll-max-ns=NUM\n");
666 exit(1);
667 }
668
Matthew Fortune147dfab2016-02-23 15:42:14 +0000669#ifdef CONFIG_EPOLL_CREATE1
Fam Zhengfbe3fc52015-10-30 12:06:29 +0800670 assert(!ctx->epollfd);
671 ctx->epollfd = epoll_create1(EPOLL_CLOEXEC);
672 if (ctx->epollfd == -1) {
Cao jin7e003462016-07-15 18:28:44 +0800673 fprintf(stderr, "Failed to create epoll instance: %s", strerror(errno));
Fam Zhengfbe3fc52015-10-30 12:06:29 +0800674 ctx->epoll_available = false;
675 } else {
676 ctx->epoll_available = true;
677 }
678#endif
Fam Zheng37fcee52015-10-30 12:06:28 +0800679}
Stefan Hajnoczi4a1cba32016-12-01 19:26:42 +0000680
681void aio_context_set_poll_params(AioContext *ctx, int64_t max_ns, Error **errp)
682{
683 /* No thread synchronization here, it doesn't matter if an incorrect poll
684 * timeout is used once.
685 */
686 ctx->poll_max_ns = max_ns;
687
688 aio_notify(ctx);
689}