]> git.proxmox.com Git - mirror_qemu.git/blame - aio-posix.c
usb-ccid: better bulk_out error handling
[mirror_qemu.git] / aio-posix.c
CommitLineData
a76bab49
AL
1/*
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 *
6b620ca3
PB
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
a76bab49
AL
14 */
15
d38ea87a 16#include "qemu/osdep.h"
a76bab49 17#include "qemu-common.h"
737e150e 18#include "block/block.h"
2bbf11d7 19#include "qemu/rcu_queue.h"
1de7afc9 20#include "qemu/sockets.h"
4a1cba38 21#include "qemu/cutils.h"
0ab8ed18 22#include "trace-root.h"
147dfab7 23#ifdef CONFIG_EPOLL_CREATE1
fbe3fc5c
FZ
24#include <sys/epoll.h>
25#endif
a76bab49 26
a76bab49
AL
27struct AioHandler
28{
cd9ba1eb 29 GPollFD pfd;
a76bab49
AL
30 IOHandler *io_read;
31 IOHandler *io_write;
4a1cba38 32 AioPollFn *io_poll;
684e508c
SH
33 IOHandler *io_poll_begin;
34 IOHandler *io_poll_end;
a76bab49
AL
35 int deleted;
36 void *opaque;
dca21ef2 37 bool is_external;
72cf2d4f 38 QLIST_ENTRY(AioHandler) node;
a76bab49
AL
39};
40
147dfab7 41#ifdef CONFIG_EPOLL_CREATE1
fbe3fc5c
FZ
42
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
2bbf11d7 69 QLIST_FOREACH_RCU(node, &ctx->aio_handlers, node) {
fbe3fc5c
FZ
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;
35dd66e2 89 int ctl;
fbe3fc5c
FZ
90
91 if (!ctx->epoll_enabled) {
92 return;
93 }
94 if (!node->pfd.events) {
35dd66e2 95 ctl = EPOLL_CTL_DEL;
fbe3fc5c
FZ
96 } else {
97 event.data.ptr = node;
98 event.events = epoll_events_from_pfd(node->pfd.events);
35dd66e2
PB
99 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);
fbe3fc5c
FZ
105 }
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
a915f4bc 190static AioHandler *find_aio_handler(AioContext *ctx, int fd)
a76bab49
AL
191{
192 AioHandler *node;
193
a915f4bc 194 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
cd9ba1eb 195 if (node->pfd.fd == fd)
79d5ca56
AG
196 if (!node->deleted)
197 return node;
a76bab49
AL
198 }
199
200 return NULL;
201}
202
a915f4bc
PB
203void aio_set_fd_handler(AioContext *ctx,
204 int fd,
dca21ef2 205 bool is_external,
a915f4bc
PB
206 IOHandler *io_read,
207 IOHandler *io_write,
f6a51c84 208 AioPollFn *io_poll,
a915f4bc 209 void *opaque)
a76bab49
AL
210{
211 AioHandler *node;
fbe3fc5c 212 bool is_new = false;
0ed39f3d 213 bool deleted = false;
a76bab49 214
2bbf11d7
PB
215 qemu_lockcnt_lock(&ctx->list_lock);
216
a915f4bc 217 node = find_aio_handler(ctx, fd);
a76bab49
AL
218
219 /* Are we deleting the fd handler? */
4a1cba38 220 if (!io_read && !io_write && !io_poll) {
36173ec5 221 if (node == NULL) {
2bbf11d7 222 qemu_lockcnt_unlock(&ctx->list_lock);
36173ec5
PB
223 return;
224 }
225
226 g_source_remove_poll(&ctx->source, &node->pfd);
227
228 /* If the lock is held, just mark the node as deleted */
2bbf11d7 229 if (qemu_lockcnt_count(&ctx->list_lock)) {
36173ec5
PB
230 node->deleted = 1;
231 node->pfd.revents = 0;
232 } else {
233 /* Otherwise, delete it for real. We can't just mark it as
2bbf11d7
PB
234 * deleted because deleted nodes are only cleaned up while
235 * no one is walking the handlers list.
36173ec5
PB
236 */
237 QLIST_REMOVE(node, node);
238 deleted = true;
a76bab49 239 }
4a1cba38
SH
240
241 if (!node->io_poll) {
242 ctx->poll_disable_cnt--;
243 }
a76bab49
AL
244 } else {
245 if (node == NULL) {
246 /* Alloc and insert if it's not already there */
3ba235a0 247 node = g_new0(AioHandler, 1);
cd9ba1eb 248 node->pfd.fd = fd;
2bbf11d7 249 QLIST_INSERT_HEAD_RCU(&ctx->aio_handlers, node, node);
e3713e00
PB
250
251 g_source_add_poll(&ctx->source, &node->pfd);
fbe3fc5c 252 is_new = true;
4a1cba38
SH
253
254 ctx->poll_disable_cnt += !io_poll;
255 } else {
256 ctx->poll_disable_cnt += !io_poll - !node->io_poll;
a76bab49 257 }
4a1cba38 258
a76bab49
AL
259 /* Update handler with latest information */
260 node->io_read = io_read;
261 node->io_write = io_write;
4a1cba38 262 node->io_poll = io_poll;
a76bab49 263 node->opaque = opaque;
dca21ef2 264 node->is_external = is_external;
cd9ba1eb 265
b5a01a70
SH
266 node->pfd.events = (io_read ? G_IO_IN | G_IO_HUP | G_IO_ERR : 0);
267 node->pfd.events |= (io_write ? G_IO_OUT | G_IO_ERR : 0);
a76bab49 268 }
7ed2b24c 269
fbe3fc5c 270 aio_epoll_update(ctx, node, is_new);
2bbf11d7 271 qemu_lockcnt_unlock(&ctx->list_lock);
7ed2b24c 272 aio_notify(ctx);
4a1cba38 273
0ed39f3d
FZ
274 if (deleted) {
275 g_free(node);
276 }
9958c351
PB
277}
278
684e508c
SH
279void aio_set_fd_poll(AioContext *ctx, int fd,
280 IOHandler *io_poll_begin,
281 IOHandler *io_poll_end)
282{
283 AioHandler *node = find_aio_handler(ctx, fd);
284
285 if (!node) {
286 return;
287 }
288
289 node->io_poll_begin = io_poll_begin;
290 node->io_poll_end = io_poll_end;
291}
292
a915f4bc
PB
293void aio_set_event_notifier(AioContext *ctx,
294 EventNotifier *notifier,
dca21ef2 295 bool is_external,
f6a51c84
SH
296 EventNotifierHandler *io_read,
297 AioPollFn *io_poll)
a76bab49 298{
f6a51c84
SH
299 aio_set_fd_handler(ctx, event_notifier_get_fd(notifier), is_external,
300 (IOHandler *)io_read, NULL, io_poll, notifier);
a76bab49
AL
301}
302
684e508c
SH
303void aio_set_event_notifier_poll(AioContext *ctx,
304 EventNotifier *notifier,
305 EventNotifierHandler *io_poll_begin,
306 EventNotifierHandler *io_poll_end)
307{
308 aio_set_fd_poll(ctx, event_notifier_get_fd(notifier),
309 (IOHandler *)io_poll_begin,
310 (IOHandler *)io_poll_end);
311}
312
313static void poll_set_started(AioContext *ctx, bool started)
314{
315 AioHandler *node;
316
317 if (started == ctx->poll_started) {
318 return;
319 }
320
321 ctx->poll_started = started;
322
2bbf11d7
PB
323 qemu_lockcnt_inc(&ctx->list_lock);
324 QLIST_FOREACH_RCU(node, &ctx->aio_handlers, node) {
684e508c
SH
325 IOHandler *fn;
326
327 if (node->deleted) {
328 continue;
329 }
330
331 if (started) {
332 fn = node->io_poll_begin;
333 } else {
334 fn = node->io_poll_end;
335 }
336
337 if (fn) {
338 fn(node->opaque);
339 }
340 }
2bbf11d7 341 qemu_lockcnt_dec(&ctx->list_lock);
684e508c
SH
342}
343
344
a3462c65
PB
345bool aio_prepare(AioContext *ctx)
346{
684e508c
SH
347 /* Poll mode cannot be used with glib's event loop, disable it. */
348 poll_set_started(ctx, false);
349
a3462c65
PB
350 return false;
351}
352
cd9ba1eb
PB
353bool aio_pending(AioContext *ctx)
354{
355 AioHandler *node;
2bbf11d7 356 bool result = false;
cd9ba1eb 357
2bbf11d7
PB
358 /*
359 * We have to walk very carefully in case aio_set_fd_handler is
360 * called while we're walking.
361 */
362 qemu_lockcnt_inc(&ctx->list_lock);
363
364 QLIST_FOREACH_RCU(node, &ctx->aio_handlers, node) {
cd9ba1eb
PB
365 int revents;
366
cd9ba1eb 367 revents = node->pfd.revents & node->pfd.events;
37989ced
FZ
368 if (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR) && node->io_read &&
369 aio_node_check(ctx, node->is_external)) {
2bbf11d7
PB
370 result = true;
371 break;
cd9ba1eb 372 }
37989ced
FZ
373 if (revents & (G_IO_OUT | G_IO_ERR) && node->io_write &&
374 aio_node_check(ctx, node->is_external)) {
2bbf11d7
PB
375 result = true;
376 break;
cd9ba1eb
PB
377 }
378 }
2bbf11d7 379 qemu_lockcnt_dec(&ctx->list_lock);
cd9ba1eb 380
2bbf11d7 381 return result;
cd9ba1eb
PB
382}
383
56d2c3c6 384static bool aio_dispatch_handlers(AioContext *ctx)
a76bab49 385{
abf90d39 386 AioHandler *node, *tmp;
d0c8d2c0 387 bool progress = false;
7c0628b2 388
cd9ba1eb 389 /*
87f68d31 390 * We have to walk very carefully in case aio_set_fd_handler is
cd9ba1eb
PB
391 * called while we're walking.
392 */
2bbf11d7 393 qemu_lockcnt_inc(&ctx->list_lock);
cd9ba1eb 394
2bbf11d7 395 QLIST_FOREACH_SAFE_RCU(node, &ctx->aio_handlers, node, tmp) {
abf90d39 396 int revents;
cd9ba1eb
PB
397
398 revents = node->pfd.revents & node->pfd.events;
399 node->pfd.revents = 0;
400
d0c8d2c0
SH
401 if (!node->deleted &&
402 (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR)) &&
37989ced 403 aio_node_check(ctx, node->is_external) &&
d0c8d2c0 404 node->io_read) {
cd9ba1eb 405 node->io_read(node->opaque);
164a101f
SH
406
407 /* aio_notify() does not count as progress */
408 if (node->opaque != &ctx->notifier) {
409 progress = true;
410 }
cd9ba1eb 411 }
d0c8d2c0
SH
412 if (!node->deleted &&
413 (revents & (G_IO_OUT | G_IO_ERR)) &&
37989ced 414 aio_node_check(ctx, node->is_external) &&
d0c8d2c0 415 node->io_write) {
cd9ba1eb
PB
416 node->io_write(node->opaque);
417 progress = true;
418 }
419
abf90d39 420 if (node->deleted) {
2bbf11d7 421 if (qemu_lockcnt_dec_if_lock(&ctx->list_lock)) {
abf90d39
PB
422 QLIST_REMOVE(node, node);
423 g_free(node);
2bbf11d7 424 qemu_lockcnt_inc_and_unlock(&ctx->list_lock);
abf90d39 425 }
cd9ba1eb
PB
426 }
427 }
438e1f47 428
2bbf11d7 429 qemu_lockcnt_dec(&ctx->list_lock);
56d2c3c6
PB
430 return progress;
431}
432
433/*
434 * Note that dispatch_fds == false has the side-effect of post-poning the
435 * freeing of deleted handlers.
436 */
437bool aio_dispatch(AioContext *ctx, bool dispatch_fds)
438{
439 bool progress;
440
441 /*
442 * If there are callbacks left that have been queued, we need to call them.
443 * Do not call select in this case, because it is possible that the caller
444 * does not need a complete flush (as is the case for aio_poll loops).
445 */
446 progress = aio_bh_poll(ctx);
447
448 if (dispatch_fds) {
449 progress |= aio_dispatch_handlers(ctx);
450 }
451
438e1f47
AB
452 /* Run our timers */
453 progress |= timerlistgroup_run_timers(&ctx->tlg);
454
d0c8d2c0
SH
455 return progress;
456}
457
e98ab097
PB
458/* These thread-local variables are used only in a small part of aio_poll
459 * around the call to the poll() system call. In particular they are not
460 * used while aio_poll is performing callbacks, which makes it much easier
461 * to think about reentrancy!
462 *
463 * Stack-allocated arrays would be perfect but they have size limitations;
464 * heap allocation is expensive enough that we want to reuse arrays across
465 * calls to aio_poll(). And because poll() has to be called without holding
466 * any lock, the arrays cannot be stored in AioContext. Thread-local data
467 * has none of the disadvantages of these three options.
468 */
469static __thread GPollFD *pollfds;
470static __thread AioHandler **nodes;
471static __thread unsigned npfd, nalloc;
472static __thread Notifier pollfds_cleanup_notifier;
473
474static void pollfds_cleanup(Notifier *n, void *unused)
475{
476 g_assert(npfd == 0);
477 g_free(pollfds);
478 g_free(nodes);
479 nalloc = 0;
480}
481
482static void add_pollfd(AioHandler *node)
483{
484 if (npfd == nalloc) {
485 if (nalloc == 0) {
486 pollfds_cleanup_notifier.notify = pollfds_cleanup;
487 qemu_thread_atexit_add(&pollfds_cleanup_notifier);
488 nalloc = 8;
489 } else {
490 g_assert(nalloc <= INT_MAX);
491 nalloc *= 2;
492 }
493 pollfds = g_renew(GPollFD, pollfds, nalloc);
494 nodes = g_renew(AioHandler *, nodes, nalloc);
495 }
496 nodes[npfd] = node;
497 pollfds[npfd] = (GPollFD) {
498 .fd = node->pfd.fd,
499 .events = node->pfd.events,
500 };
501 npfd++;
502}
503
684e508c
SH
504static bool run_poll_handlers_once(AioContext *ctx)
505{
506 bool progress = false;
507 AioHandler *node;
508
2bbf11d7 509 QLIST_FOREACH_RCU(node, &ctx->aio_handlers, node) {
684e508c 510 if (!node->deleted && node->io_poll &&
59c9f437
SH
511 aio_node_check(ctx, node->is_external) &&
512 node->io_poll(node->opaque)) {
684e508c
SH
513 progress = true;
514 }
515
516 /* Caller handles freeing deleted nodes. Don't do it here. */
517 }
518
519 return progress;
520}
521
4a1cba38
SH
522/* run_poll_handlers:
523 * @ctx: the AioContext
524 * @max_ns: maximum time to poll for, in nanoseconds
525 *
526 * Polls for a given time.
527 *
528 * Note that ctx->notify_me must be non-zero so this function can detect
529 * aio_notify().
530 *
2bbf11d7 531 * Note that the caller must have incremented ctx->list_lock.
4a1cba38
SH
532 *
533 * Returns: true if progress was made, false otherwise
534 */
535static bool run_poll_handlers(AioContext *ctx, int64_t max_ns)
536{
684e508c 537 bool progress;
4a1cba38
SH
538 int64_t end_time;
539
540 assert(ctx->notify_me);
2bbf11d7 541 assert(qemu_lockcnt_count(&ctx->list_lock) > 0);
4a1cba38
SH
542 assert(ctx->poll_disable_cnt == 0);
543
544 trace_run_poll_handlers_begin(ctx, max_ns);
545
546 end_time = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + max_ns;
547
548 do {
684e508c 549 progress = run_poll_handlers_once(ctx);
4a1cba38
SH
550 } while (!progress && qemu_clock_get_ns(QEMU_CLOCK_REALTIME) < end_time);
551
552 trace_run_poll_handlers_end(ctx, progress);
553
554 return progress;
555}
556
557/* try_poll_mode:
558 * @ctx: the AioContext
684e508c 559 * @blocking: busy polling is only attempted when blocking is true
4a1cba38 560 *
684e508c 561 * ctx->notify_me must be non-zero so this function can detect aio_notify().
4a1cba38 562 *
2bbf11d7 563 * Note that the caller must have incremented ctx->list_lock.
4a1cba38
SH
564 *
565 * Returns: true if progress was made, false otherwise
566 */
567static bool try_poll_mode(AioContext *ctx, bool blocking)
568{
569 if (blocking && ctx->poll_max_ns && ctx->poll_disable_cnt == 0) {
570 /* See qemu_soonest_timeout() uint64_t hack */
571 int64_t max_ns = MIN((uint64_t)aio_compute_timeout(ctx),
82a41186 572 (uint64_t)ctx->poll_ns);
4a1cba38
SH
573
574 if (max_ns) {
684e508c
SH
575 poll_set_started(ctx, true);
576
4a1cba38
SH
577 if (run_poll_handlers(ctx, max_ns)) {
578 return true;
579 }
580 }
581 }
582
684e508c
SH
583 poll_set_started(ctx, false);
584
585 /* Even if we don't run busy polling, try polling once in case it can make
586 * progress and the caller will be able to avoid ppoll(2)/epoll_wait(2).
587 */
588 return run_poll_handlers_once(ctx);
4a1cba38
SH
589}
590
d0c8d2c0
SH
591bool aio_poll(AioContext *ctx, bool blocking)
592{
d0c8d2c0 593 AioHandler *node;
4a1cba38
SH
594 int i;
595 int ret = 0;
164a101f 596 bool progress;
e98ab097 597 int64_t timeout;
82a41186 598 int64_t start = 0;
d0c8d2c0 599
49110174 600 aio_context_acquire(ctx);
d0c8d2c0
SH
601 progress = false;
602
0ceb849b
PB
603 /* aio_notify can avoid the expensive event_notifier_set if
604 * everything (file descriptors, bottom halves, timers) will
e4c7e2d1
PB
605 * be re-evaluated before the next blocking poll(). This is
606 * already true when aio_poll is called with blocking == false;
eabc9779
PB
607 * if blocking == true, it is only true after poll() returns,
608 * so disable the optimization now.
0ceb849b 609 */
eabc9779
PB
610 if (blocking) {
611 atomic_add(&ctx->notify_me, 2);
612 }
0ceb849b 613
2bbf11d7 614 qemu_lockcnt_inc(&ctx->list_lock);
a76bab49 615
82a41186
SH
616 if (ctx->poll_max_ns) {
617 start = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
618 }
619
4a1cba38
SH
620 if (try_poll_mode(ctx, blocking)) {
621 progress = true;
622 } else {
623 assert(npfd == 0);
a76bab49 624
4a1cba38 625 /* fill pollfds */
6b942468 626
4a1cba38 627 if (!aio_epoll_enabled(ctx)) {
2bbf11d7 628 QLIST_FOREACH_RCU(node, &ctx->aio_handlers, node) {
4a1cba38
SH
629 if (!node->deleted && node->pfd.events
630 && aio_node_check(ctx, node->is_external)) {
631 add_pollfd(node);
632 }
6b942468 633 }
9eb0bfca 634 }
a76bab49 635
4a1cba38 636 timeout = blocking ? aio_compute_timeout(ctx) : 0;
a76bab49 637
4a1cba38
SH
638 /* wait until next event */
639 if (timeout) {
640 aio_context_release(ctx);
641 }
642 if (aio_epoll_check_poll(ctx, pollfds, npfd, timeout)) {
643 AioHandler epoll_handler;
644
645 epoll_handler.pfd.fd = ctx->epollfd;
646 epoll_handler.pfd.events = G_IO_IN | G_IO_OUT | G_IO_HUP | G_IO_ERR;
647 npfd = 0;
648 add_pollfd(&epoll_handler);
649 ret = aio_epoll(ctx, pollfds, npfd, timeout);
650 } else {
651 ret = qemu_poll_ns(pollfds, npfd, timeout);
652 }
653 if (timeout) {
654 aio_context_acquire(ctx);
655 }
fbe3fc5c 656 }
4a1cba38 657
eabc9779
PB
658 if (blocking) {
659 atomic_sub(&ctx->notify_me, 2);
660 }
9eb0bfca 661
82a41186
SH
662 /* Adjust polling time */
663 if (ctx->poll_max_ns) {
664 int64_t block_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - start;
665
666 if (block_ns <= ctx->poll_ns) {
667 /* This is the sweet spot, no adjustment needed */
668 } else if (block_ns > ctx->poll_max_ns) {
669 /* We'd have to poll for too long, poll less */
670 int64_t old = ctx->poll_ns;
671
672 if (ctx->poll_shrink) {
673 ctx->poll_ns /= ctx->poll_shrink;
674 } else {
675 ctx->poll_ns = 0;
676 }
677
678 trace_poll_shrink(ctx, old, ctx->poll_ns);
679 } else if (ctx->poll_ns < ctx->poll_max_ns &&
680 block_ns < ctx->poll_max_ns) {
681 /* There is room to grow, poll longer */
682 int64_t old = ctx->poll_ns;
683 int64_t grow = ctx->poll_grow;
684
685 if (grow == 0) {
686 grow = 2;
687 }
688
689 if (ctx->poll_ns) {
690 ctx->poll_ns *= grow;
691 } else {
692 ctx->poll_ns = 4000; /* start polling at 4 microseconds */
693 }
694
695 if (ctx->poll_ns > ctx->poll_max_ns) {
696 ctx->poll_ns = ctx->poll_max_ns;
697 }
698
699 trace_poll_grow(ctx, old, ctx->poll_ns);
700 }
701 }
702
05e514b1 703 aio_notify_accept(ctx);
21a03d17 704
9eb0bfca
PB
705 /* if we have any readable fds, dispatch event */
706 if (ret > 0) {
e98ab097
PB
707 for (i = 0; i < npfd; i++) {
708 nodes[i]->pfd.revents = pollfds[i].revents;
a76bab49 709 }
438e1f47
AB
710 }
711
e98ab097 712 npfd = 0;
2bbf11d7 713 qemu_lockcnt_dec(&ctx->list_lock);
e98ab097 714
438e1f47 715 /* Run dispatch even if there were no readable fds to run timers */
721671ad 716 if (aio_dispatch(ctx, ret > 0)) {
438e1f47 717 progress = true;
9eb0bfca 718 }
bcdc1857 719
49110174
PB
720 aio_context_release(ctx);
721
164a101f 722 return progress;
a76bab49 723}
37fcee5d 724
7e003465 725void aio_context_setup(AioContext *ctx)
37fcee5d 726{
4a1cba38
SH
727 /* TODO remove this in final patch submission */
728 if (getenv("QEMU_AIO_POLL_MAX_NS")) {
729 fprintf(stderr, "The QEMU_AIO_POLL_MAX_NS environment variable has "
730 "been replaced with -object iothread,poll-max-ns=NUM\n");
731 exit(1);
732 }
733
147dfab7 734#ifdef CONFIG_EPOLL_CREATE1
fbe3fc5c
FZ
735 assert(!ctx->epollfd);
736 ctx->epollfd = epoll_create1(EPOLL_CLOEXEC);
737 if (ctx->epollfd == -1) {
7e003465 738 fprintf(stderr, "Failed to create epoll instance: %s", strerror(errno));
fbe3fc5c
FZ
739 ctx->epoll_available = false;
740 } else {
741 ctx->epoll_available = true;
742 }
743#endif
37fcee5d 744}
4a1cba38 745
82a41186
SH
746void aio_context_set_poll_params(AioContext *ctx, int64_t max_ns,
747 int64_t grow, int64_t shrink, Error **errp)
4a1cba38 748{
82a41186
SH
749 /* No thread synchronization here, it doesn't matter if an incorrect value
750 * is used once.
4a1cba38
SH
751 */
752 ctx->poll_max_ns = max_ns;
82a41186
SH
753 ctx->poll_ns = 0;
754 ctx->poll_grow = grow;
755 ctx->poll_shrink = shrink;
4a1cba38
SH
756
757 aio_notify(ctx);
758}