blob: f46aece8b86b7fc27698521aa319afb1bf69f228 [file] [log] [blame]
Paolo Bonzinid3b12f52011-09-13 10:30:52 +02001/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020024
Stefan Weil0ec024f2011-10-25 22:23:17 +020025#include "qemu-common.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010026#include "qemu/timer.h"
Stefan Weil0ec024f2011-10-25 22:23:17 +020027#include "slirp/slirp.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010028#include "qemu/main-loop.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010029#include "block/aio.h"
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020030
31#ifndef _WIN32
32
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010033#include "qemu/compatfd.h"
Stefan Weil0ec024f2011-10-25 22:23:17 +020034
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020035/* If we have signalfd, we mask out the signals we want to handle and then
36 * use signalfd to listen for them. We rely on whatever the current signal
37 * handler is to dispatch the signals when we receive them.
38 */
39static void sigfd_handler(void *opaque)
40{
41 int fd = (intptr_t)opaque;
42 struct qemu_signalfd_siginfo info;
43 struct sigaction action;
44 ssize_t len;
45
46 while (1) {
47 do {
48 len = read(fd, &info, sizeof(info));
49 } while (len == -1 && errno == EINTR);
50
51 if (len == -1 && errno == EAGAIN) {
52 break;
53 }
54
55 if (len != sizeof(info)) {
56 printf("read from sigfd returned %zd: %m\n", len);
57 return;
58 }
59
60 sigaction(info.ssi_signo, NULL, &action);
61 if ((action.sa_flags & SA_SIGINFO) && action.sa_sigaction) {
62 action.sa_sigaction(info.ssi_signo,
63 (siginfo_t *)&info, NULL);
64 } else if (action.sa_handler) {
65 action.sa_handler(info.ssi_signo);
66 }
67 }
68}
69
70static int qemu_signal_init(void)
71{
72 int sigfd;
73 sigset_t set;
74
75 /*
76 * SIG_IPI must be blocked in the main thread and must not be caught
77 * by sigwait() in the signal thread. Otherwise, the cpu thread will
78 * not catch it reliably.
79 */
80 sigemptyset(&set);
81 sigaddset(&set, SIG_IPI);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020082 sigaddset(&set, SIGIO);
83 sigaddset(&set, SIGALRM);
84 sigaddset(&set, SIGBUS);
85 pthread_sigmask(SIG_BLOCK, &set, NULL);
86
Lai Jiangshan4aa75342012-01-12 17:05:35 +080087 sigdelset(&set, SIG_IPI);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020088 sigfd = qemu_signalfd(&set);
89 if (sigfd == -1) {
90 fprintf(stderr, "failed to create signalfd\n");
91 return -errno;
92 }
93
94 fcntl_setfl(sigfd, O_NONBLOCK);
95
96 qemu_set_fd_handler2(sigfd, NULL, sigfd_handler, NULL,
97 (void *)(intptr_t)sigfd);
98
99 return 0;
100}
101
102#else /* _WIN32 */
103
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200104static int qemu_signal_init(void)
105{
106 return 0;
107}
108#endif
109
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100110static AioContext *qemu_aio_context;
111
Stefan Hajnoczi5f3aa1f2013-03-07 13:41:44 +0100112AioContext *qemu_get_aio_context(void)
113{
114 return qemu_aio_context;
115}
116
Paolo Bonzini4c8d0d22010-05-24 17:27:14 +0200117void qemu_notify_event(void)
118{
119 if (!qemu_aio_context) {
120 return;
121 }
122 aio_notify(qemu_aio_context);
123}
124
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100125static GArray *gpollfds;
126
Paolo Bonzini172061a2012-10-29 15:28:36 +0100127int qemu_init_main_loop(void)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200128{
129 int ret;
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200130 GSource *src;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200131
Paolo Bonzini172061a2012-10-29 15:28:36 +0100132 init_clocks();
Paolo Bonzinif9ab4652012-11-02 15:43:23 +0100133 if (init_timer_alarm() < 0) {
134 fprintf(stderr, "could not initialize alarm timer\n");
135 exit(1);
136 }
Paolo Bonzini172061a2012-10-29 15:28:36 +0100137
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200138 ret = qemu_signal_init();
139 if (ret) {
140 return ret;
141 }
142
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100143 gpollfds = g_array_new(FALSE, FALSE, sizeof(GPollFD));
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100144 qemu_aio_context = aio_context_new();
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200145 src = aio_get_g_source(qemu_aio_context);
146 g_source_attach(src, NULL);
147 g_source_unref(src);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200148 return 0;
149}
150
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200151static int max_priority;
152
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100153#ifndef _WIN32
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100154static int glib_pollfds_idx;
155static int glib_n_poll_fds;
156
157static void glib_pollfds_fill(uint32_t *cur_timeout)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200158{
159 GMainContext *context = g_main_context_default();
Paolo Bonzini4dae83a2012-03-20 10:49:17 +0100160 int timeout = 0;
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100161 int n;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200162
163 g_main_context_prepare(context, &max_priority);
164
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100165 glib_pollfds_idx = gpollfds->len;
166 n = glib_n_poll_fds;
167 do {
168 GPollFD *pfds;
169 glib_n_poll_fds = n;
170 g_array_set_size(gpollfds, glib_pollfds_idx + glib_n_poll_fds);
171 pfds = &g_array_index(gpollfds, GPollFD, glib_pollfds_idx);
172 n = g_main_context_query(context, max_priority, &timeout, pfds,
173 glib_n_poll_fds);
174 } while (n != glib_n_poll_fds);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200175
Paolo Bonzini4dae83a2012-03-20 10:49:17 +0100176 if (timeout >= 0 && timeout < *cur_timeout) {
177 *cur_timeout = timeout;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200178 }
179}
180
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100181static void glib_pollfds_poll(void)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200182{
183 GMainContext *context = g_main_context_default();
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100184 GPollFD *pfds = &g_array_index(gpollfds, GPollFD, glib_pollfds_idx);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200185
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100186 if (g_main_context_check(context, max_priority, pfds, glib_n_poll_fds)) {
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200187 g_main_context_dispatch(context);
188 }
189}
190
Anthony Liguori893986f2013-04-05 08:46:00 -0500191#define MAX_MAIN_LOOP_SPIN (1000)
192
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100193static int os_host_main_loop_wait(uint32_t timeout)
Paolo Bonzini15455532012-03-20 10:49:18 +0100194{
Paolo Bonzini15455532012-03-20 10:49:18 +0100195 int ret;
Anthony Liguori893986f2013-04-05 08:46:00 -0500196 static int spin_counter;
Paolo Bonzini15455532012-03-20 10:49:18 +0100197
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100198 glib_pollfds_fill(&timeout);
Paolo Bonzini15455532012-03-20 10:49:18 +0100199
Anthony Liguori893986f2013-04-05 08:46:00 -0500200 /* If the I/O thread is very busy or we are incorrectly busy waiting in
201 * the I/O thread, this can lead to starvation of the BQL such that the
202 * VCPU threads never run. To make sure we can detect the later case,
203 * print a message to the screen. If we run into this condition, create
204 * a fake timeout in order to give the VCPU threads a chance to run.
205 */
206 if (spin_counter > MAX_MAIN_LOOP_SPIN) {
207 static bool notified;
208
209 if (!notified) {
210 fprintf(stderr,
211 "main-loop: WARNING: I/O thread spun for %d iterations\n",
212 MAX_MAIN_LOOP_SPIN);
213 notified = true;
214 }
215
216 timeout = 1;
217 }
218
Paolo Bonzini15455532012-03-20 10:49:18 +0100219 if (timeout > 0) {
Anthony Liguori893986f2013-04-05 08:46:00 -0500220 spin_counter = 0;
Paolo Bonzini15455532012-03-20 10:49:18 +0100221 qemu_mutex_unlock_iothread();
Anthony Liguori893986f2013-04-05 08:46:00 -0500222 } else {
223 spin_counter++;
Paolo Bonzini15455532012-03-20 10:49:18 +0100224 }
225
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100226 ret = g_poll((GPollFD *)gpollfds->data, gpollfds->len, timeout);
227
Paolo Bonzini15455532012-03-20 10:49:18 +0100228 if (timeout > 0) {
229 qemu_mutex_lock_iothread();
230 }
231
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100232 glib_pollfds_poll();
Paolo Bonzini15455532012-03-20 10:49:18 +0100233 return ret;
234}
235#else
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200236/***********************************************************/
237/* Polling handling */
238
239typedef struct PollingEntry {
240 PollingFunc *func;
241 void *opaque;
242 struct PollingEntry *next;
243} PollingEntry;
244
245static PollingEntry *first_polling_entry;
246
247int qemu_add_polling_cb(PollingFunc *func, void *opaque)
248{
249 PollingEntry **ppe, *pe;
250 pe = g_malloc0(sizeof(PollingEntry));
251 pe->func = func;
252 pe->opaque = opaque;
253 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
254 *ppe = pe;
255 return 0;
256}
257
258void qemu_del_polling_cb(PollingFunc *func, void *opaque)
259{
260 PollingEntry **ppe, *pe;
261 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
262 pe = *ppe;
263 if (pe->func == func && pe->opaque == opaque) {
264 *ppe = pe->next;
265 g_free(pe);
266 break;
267 }
268 }
269}
270
271/***********************************************************/
272/* Wait objects support */
273typedef struct WaitObjects {
274 int num;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100275 int revents[MAXIMUM_WAIT_OBJECTS + 1];
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200276 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
277 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
278 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
279} WaitObjects;
280
281static WaitObjects wait_objects = {0};
282
283int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
284{
285 WaitObjects *w = &wait_objects;
286 if (w->num >= MAXIMUM_WAIT_OBJECTS) {
287 return -1;
288 }
289 w->events[w->num] = handle;
290 w->func[w->num] = func;
291 w->opaque[w->num] = opaque;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100292 w->revents[w->num] = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200293 w->num++;
294 return 0;
295}
296
297void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
298{
299 int i, found;
300 WaitObjects *w = &wait_objects;
301
302 found = 0;
303 for (i = 0; i < w->num; i++) {
304 if (w->events[i] == handle) {
305 found = 1;
306 }
307 if (found) {
308 w->events[i] = w->events[i + 1];
309 w->func[i] = w->func[i + 1];
310 w->opaque[i] = w->opaque[i + 1];
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100311 w->revents[i] = w->revents[i + 1];
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200312 }
313 }
314 if (found) {
315 w->num--;
316 }
317}
318
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100319void qemu_fd_register(int fd)
320{
Paolo Bonzini4c8d0d22010-05-24 17:27:14 +0200321 WSAEventSelect(fd, event_notifier_get_handle(&qemu_aio_context->notifier),
322 FD_READ | FD_ACCEPT | FD_CLOSE |
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100323 FD_CONNECT | FD_WRITE | FD_OOB);
324}
325
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100326static int pollfds_fill(GArray *pollfds, fd_set *rfds, fd_set *wfds,
327 fd_set *xfds)
328{
329 int nfds = -1;
330 int i;
331
332 for (i = 0; i < pollfds->len; i++) {
333 GPollFD *pfd = &g_array_index(pollfds, GPollFD, i);
334 int fd = pfd->fd;
335 int events = pfd->events;
336 if (events & (G_IO_IN | G_IO_HUP | G_IO_ERR)) {
337 FD_SET(fd, rfds);
338 nfds = MAX(nfds, fd);
339 }
340 if (events & (G_IO_OUT | G_IO_ERR)) {
341 FD_SET(fd, wfds);
342 nfds = MAX(nfds, fd);
343 }
344 if (events & G_IO_PRI) {
345 FD_SET(fd, xfds);
346 nfds = MAX(nfds, fd);
347 }
348 }
349 return nfds;
350}
351
352static void pollfds_poll(GArray *pollfds, int nfds, fd_set *rfds,
353 fd_set *wfds, fd_set *xfds)
354{
355 int i;
356
357 for (i = 0; i < pollfds->len; i++) {
358 GPollFD *pfd = &g_array_index(pollfds, GPollFD, i);
359 int fd = pfd->fd;
360 int revents = 0;
361
362 if (FD_ISSET(fd, rfds)) {
363 revents |= G_IO_IN | G_IO_HUP | G_IO_ERR;
364 }
365 if (FD_ISSET(fd, wfds)) {
366 revents |= G_IO_OUT | G_IO_ERR;
367 }
368 if (FD_ISSET(fd, xfds)) {
369 revents |= G_IO_PRI;
370 }
371 pfd->revents = revents & pfd->events;
372 }
373}
374
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100375static int os_host_main_loop_wait(uint32_t timeout)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200376{
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100377 GMainContext *context = g_main_context_default();
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100378 GPollFD poll_fds[1024 * 2]; /* this is probably overkill */
Stefan Hajnoczi134a03e2013-02-20 11:28:24 +0100379 int select_ret = 0;
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100380 int g_poll_ret, ret, i, n_poll_fds;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200381 PollingEntry *pe;
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100382 WaitObjects *w = &wait_objects;
Stefan Weil42fe1c22012-04-27 17:02:08 +0200383 gint poll_timeout;
Paolo Bonzini15455532012-03-20 10:49:18 +0100384 static struct timeval tv0;
Stefan Hajnoczi9cbaacf2013-02-20 11:28:30 +0100385 fd_set rfds, wfds, xfds;
386 int nfds;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200387
388 /* XXX: need to suppress polling by better using win32 events */
389 ret = 0;
390 for (pe = first_polling_entry; pe != NULL; pe = pe->next) {
391 ret |= pe->func(pe->opaque);
392 }
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100393 if (ret != 0) {
394 return ret;
395 }
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200396
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100397 g_main_context_prepare(context, &max_priority);
Stefan Weil42fe1c22012-04-27 17:02:08 +0200398 n_poll_fds = g_main_context_query(context, max_priority, &poll_timeout,
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100399 poll_fds, ARRAY_SIZE(poll_fds));
400 g_assert(n_poll_fds <= ARRAY_SIZE(poll_fds));
401
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100402 for (i = 0; i < w->num; i++) {
Stefan Weil58b96302012-04-12 20:42:34 +0200403 poll_fds[n_poll_fds + i].fd = (DWORD_PTR)w->events[i];
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100404 poll_fds[n_poll_fds + i].events = G_IO_IN;
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100405 }
406
Stefan Weil3239ad02012-04-29 19:15:02 +0200407 if (poll_timeout < 0 || timeout < poll_timeout) {
408 poll_timeout = timeout;
409 }
410
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100411 qemu_mutex_unlock_iothread();
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100412 g_poll_ret = g_poll(poll_fds, n_poll_fds + w->num, poll_timeout);
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100413 qemu_mutex_lock_iothread();
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100414 if (g_poll_ret > 0) {
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100415 for (i = 0; i < w->num; i++) {
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100416 w->revents[i] = poll_fds[n_poll_fds + i].revents;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100417 }
418 for (i = 0; i < w->num; i++) {
419 if (w->revents[i] && w->func[i]) {
420 w->func[i](w->opaque[i]);
421 }
422 }
423 }
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100424
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100425 if (g_main_context_check(context, max_priority, poll_fds, n_poll_fds)) {
426 g_main_context_dispatch(context);
427 }
428
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100429 /* Call select after g_poll to avoid a useless iteration and therefore
430 * improve socket latency.
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100431 */
432
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100433 FD_ZERO(&rfds);
434 FD_ZERO(&wfds);
435 FD_ZERO(&xfds);
436 nfds = pollfds_fill(gpollfds, &rfds, &wfds, &xfds);
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100437 if (nfds >= 0) {
438 select_ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv0);
439 if (select_ret != 0) {
440 timeout = 0;
441 }
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100442 if (select_ret > 0) {
443 pollfds_poll(gpollfds, nfds, &rfds, &wfds, &xfds);
444 }
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100445 }
446
447 return select_ret || g_poll_ret;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200448}
449#endif
450
451int main_loop_wait(int nonblocking)
452{
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100453 int ret;
454 uint32_t timeout = UINT32_MAX;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200455
456 if (nonblocking) {
457 timeout = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200458 }
459
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200460 /* poll any events */
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100461 g_array_set_size(gpollfds, 0); /* reset for new iteration */
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200462 /* XXX: separate device handlers from system ones */
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200463#ifdef CONFIG_SLIRP
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100464 slirp_update_timeout(&timeout);
Stefan Hajnoczi8917c3b2013-02-20 11:28:28 +0100465 slirp_pollfds_fill(gpollfds);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200466#endif
Stefan Hajnoczia3e4b4a2013-02-20 11:28:29 +0100467 qemu_iohandler_fill(gpollfds);
Paolo Bonzini15455532012-03-20 10:49:18 +0100468 ret = os_host_main_loop_wait(timeout);
Stefan Hajnoczia3e4b4a2013-02-20 11:28:29 +0100469 qemu_iohandler_poll(gpollfds, ret);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200470#ifdef CONFIG_SLIRP
Stefan Hajnoczi8917c3b2013-02-20 11:28:28 +0100471 slirp_pollfds_poll(gpollfds, (ret < 0));
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200472#endif
473
474 qemu_run_all_timers();
475
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200476 return ret;
477}
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100478
479/* Functions to operate on the main QEMU AioContext. */
480
481QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
482{
483 return aio_bh_new(qemu_aio_context, cb, opaque);
484}
485
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200486bool qemu_aio_wait(void)
487{
Paolo Bonzini7c0628b2012-09-24 14:37:53 +0200488 return aio_poll(qemu_aio_context, true);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200489}
490
Paolo Bonzinif42b2202012-06-09 04:01:51 +0200491#ifdef CONFIG_POSIX
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200492void qemu_aio_set_fd_handler(int fd,
493 IOHandler *io_read,
494 IOHandler *io_write,
495 AioFlushHandler *io_flush,
496 void *opaque)
497{
498 aio_set_fd_handler(qemu_aio_context, fd, io_read, io_write, io_flush,
499 opaque);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200500}
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200501#endif
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200502
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200503void qemu_aio_set_event_notifier(EventNotifier *notifier,
504 EventNotifierHandler *io_read,
505 AioFlushEventNotifierHandler *io_flush)
506{
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200507 aio_set_event_notifier(qemu_aio_context, notifier, io_read, io_flush);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200508}