blob: 800868a339d0f8a7ecd833954f4598164fe3cb9c [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
Paolo Bonzini4c8d0d22010-05-24 17:27:14 +0200112void qemu_notify_event(void)
113{
114 if (!qemu_aio_context) {
115 return;
116 }
117 aio_notify(qemu_aio_context);
118}
119
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100120static GArray *gpollfds;
121
Paolo Bonzini172061a2012-10-29 15:28:36 +0100122int qemu_init_main_loop(void)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200123{
124 int ret;
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200125 GSource *src;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200126
Paolo Bonzini172061a2012-10-29 15:28:36 +0100127 init_clocks();
Paolo Bonzinif9ab4652012-11-02 15:43:23 +0100128 if (init_timer_alarm() < 0) {
129 fprintf(stderr, "could not initialize alarm timer\n");
130 exit(1);
131 }
Paolo Bonzini172061a2012-10-29 15:28:36 +0100132
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200133 ret = qemu_signal_init();
134 if (ret) {
135 return ret;
136 }
137
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100138 gpollfds = g_array_new(FALSE, FALSE, sizeof(GPollFD));
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100139 qemu_aio_context = aio_context_new();
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200140 src = aio_get_g_source(qemu_aio_context);
141 g_source_attach(src, NULL);
142 g_source_unref(src);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200143 return 0;
144}
145
Paolo Bonzini15455532012-03-20 10:49:18 +0100146static fd_set rfds, wfds, xfds;
147static int nfds;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200148static int max_priority;
149
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100150/* Load rfds/wfds/xfds into gpollfds. Will be removed a few commits later. */
151static void gpollfds_from_select(void)
152{
153 int fd;
154 for (fd = 0; fd <= nfds; fd++) {
155 int events = 0;
156 if (FD_ISSET(fd, &rfds)) {
157 events |= G_IO_IN | G_IO_HUP | G_IO_ERR;
158 }
159 if (FD_ISSET(fd, &wfds)) {
160 events |= G_IO_OUT | G_IO_ERR;
161 }
162 if (FD_ISSET(fd, &xfds)) {
163 events |= G_IO_PRI;
164 }
165 if (events) {
166 GPollFD pfd = {
167 .fd = fd,
168 .events = events,
169 };
170 g_array_append_val(gpollfds, pfd);
171 }
172 }
173}
174
175/* Store gpollfds revents into rfds/wfds/xfds. Will be removed a few commits
176 * later.
177 */
178static void gpollfds_to_select(int ret)
179{
180 int i;
181
182 FD_ZERO(&rfds);
183 FD_ZERO(&wfds);
184 FD_ZERO(&xfds);
185
186 if (ret <= 0) {
187 return;
188 }
189
190 for (i = 0; i < gpollfds->len; i++) {
191 int fd = g_array_index(gpollfds, GPollFD, i).fd;
192 int revents = g_array_index(gpollfds, GPollFD, i).revents;
193
194 if (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR)) {
195 FD_SET(fd, &rfds);
196 }
197 if (revents & (G_IO_OUT | G_IO_ERR)) {
198 FD_SET(fd, &wfds);
199 }
200 if (revents & G_IO_PRI) {
201 FD_SET(fd, &xfds);
202 }
203 }
204}
205
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100206#ifndef _WIN32
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100207static int glib_pollfds_idx;
208static int glib_n_poll_fds;
209
210static void glib_pollfds_fill(uint32_t *cur_timeout)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200211{
212 GMainContext *context = g_main_context_default();
Paolo Bonzini4dae83a2012-03-20 10:49:17 +0100213 int timeout = 0;
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100214 int n;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200215
216 g_main_context_prepare(context, &max_priority);
217
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100218 glib_pollfds_idx = gpollfds->len;
219 n = glib_n_poll_fds;
220 do {
221 GPollFD *pfds;
222 glib_n_poll_fds = n;
223 g_array_set_size(gpollfds, glib_pollfds_idx + glib_n_poll_fds);
224 pfds = &g_array_index(gpollfds, GPollFD, glib_pollfds_idx);
225 n = g_main_context_query(context, max_priority, &timeout, pfds,
226 glib_n_poll_fds);
227 } while (n != glib_n_poll_fds);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200228
Paolo Bonzini4dae83a2012-03-20 10:49:17 +0100229 if (timeout >= 0 && timeout < *cur_timeout) {
230 *cur_timeout = timeout;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200231 }
232}
233
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100234static void glib_pollfds_poll(void)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200235{
236 GMainContext *context = g_main_context_default();
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100237 GPollFD *pfds = &g_array_index(gpollfds, GPollFD, glib_pollfds_idx);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200238
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100239 if (g_main_context_check(context, max_priority, pfds, glib_n_poll_fds)) {
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200240 g_main_context_dispatch(context);
241 }
242}
243
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100244static int os_host_main_loop_wait(uint32_t timeout)
Paolo Bonzini15455532012-03-20 10:49:18 +0100245{
Paolo Bonzini15455532012-03-20 10:49:18 +0100246 int ret;
247
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100248 glib_pollfds_fill(&timeout);
Paolo Bonzini15455532012-03-20 10:49:18 +0100249
250 if (timeout > 0) {
251 qemu_mutex_unlock_iothread();
252 }
253
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100254 /* We'll eventually drop fd_set completely. But for now we still have
255 * *_fill() and *_poll() functions that use rfds/wfds/xfds.
256 */
257 gpollfds_from_select();
258
259 ret = g_poll((GPollFD *)gpollfds->data, gpollfds->len, timeout);
260
261 gpollfds_to_select(ret);
Paolo Bonzini15455532012-03-20 10:49:18 +0100262
263 if (timeout > 0) {
264 qemu_mutex_lock_iothread();
265 }
266
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100267 glib_pollfds_poll();
Paolo Bonzini15455532012-03-20 10:49:18 +0100268 return ret;
269}
270#else
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200271/***********************************************************/
272/* Polling handling */
273
274typedef struct PollingEntry {
275 PollingFunc *func;
276 void *opaque;
277 struct PollingEntry *next;
278} PollingEntry;
279
280static PollingEntry *first_polling_entry;
281
282int qemu_add_polling_cb(PollingFunc *func, void *opaque)
283{
284 PollingEntry **ppe, *pe;
285 pe = g_malloc0(sizeof(PollingEntry));
286 pe->func = func;
287 pe->opaque = opaque;
288 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
289 *ppe = pe;
290 return 0;
291}
292
293void qemu_del_polling_cb(PollingFunc *func, void *opaque)
294{
295 PollingEntry **ppe, *pe;
296 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
297 pe = *ppe;
298 if (pe->func == func && pe->opaque == opaque) {
299 *ppe = pe->next;
300 g_free(pe);
301 break;
302 }
303 }
304}
305
306/***********************************************************/
307/* Wait objects support */
308typedef struct WaitObjects {
309 int num;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100310 int revents[MAXIMUM_WAIT_OBJECTS + 1];
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200311 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
312 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
313 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
314} WaitObjects;
315
316static WaitObjects wait_objects = {0};
317
318int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
319{
320 WaitObjects *w = &wait_objects;
321 if (w->num >= MAXIMUM_WAIT_OBJECTS) {
322 return -1;
323 }
324 w->events[w->num] = handle;
325 w->func[w->num] = func;
326 w->opaque[w->num] = opaque;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100327 w->revents[w->num] = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200328 w->num++;
329 return 0;
330}
331
332void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
333{
334 int i, found;
335 WaitObjects *w = &wait_objects;
336
337 found = 0;
338 for (i = 0; i < w->num; i++) {
339 if (w->events[i] == handle) {
340 found = 1;
341 }
342 if (found) {
343 w->events[i] = w->events[i + 1];
344 w->func[i] = w->func[i + 1];
345 w->opaque[i] = w->opaque[i + 1];
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100346 w->revents[i] = w->revents[i + 1];
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200347 }
348 }
349 if (found) {
350 w->num--;
351 }
352}
353
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100354void qemu_fd_register(int fd)
355{
Paolo Bonzini4c8d0d22010-05-24 17:27:14 +0200356 WSAEventSelect(fd, event_notifier_get_handle(&qemu_aio_context->notifier),
357 FD_READ | FD_ACCEPT | FD_CLOSE |
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100358 FD_CONNECT | FD_WRITE | FD_OOB);
359}
360
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100361static int pollfds_fill(GArray *pollfds, fd_set *rfds, fd_set *wfds,
362 fd_set *xfds)
363{
364 int nfds = -1;
365 int i;
366
367 for (i = 0; i < pollfds->len; i++) {
368 GPollFD *pfd = &g_array_index(pollfds, GPollFD, i);
369 int fd = pfd->fd;
370 int events = pfd->events;
371 if (events & (G_IO_IN | G_IO_HUP | G_IO_ERR)) {
372 FD_SET(fd, rfds);
373 nfds = MAX(nfds, fd);
374 }
375 if (events & (G_IO_OUT | G_IO_ERR)) {
376 FD_SET(fd, wfds);
377 nfds = MAX(nfds, fd);
378 }
379 if (events & G_IO_PRI) {
380 FD_SET(fd, xfds);
381 nfds = MAX(nfds, fd);
382 }
383 }
384 return nfds;
385}
386
387static void pollfds_poll(GArray *pollfds, int nfds, fd_set *rfds,
388 fd_set *wfds, fd_set *xfds)
389{
390 int i;
391
392 for (i = 0; i < pollfds->len; i++) {
393 GPollFD *pfd = &g_array_index(pollfds, GPollFD, i);
394 int fd = pfd->fd;
395 int revents = 0;
396
397 if (FD_ISSET(fd, rfds)) {
398 revents |= G_IO_IN | G_IO_HUP | G_IO_ERR;
399 }
400 if (FD_ISSET(fd, wfds)) {
401 revents |= G_IO_OUT | G_IO_ERR;
402 }
403 if (FD_ISSET(fd, xfds)) {
404 revents |= G_IO_PRI;
405 }
406 pfd->revents = revents & pfd->events;
407 }
408}
409
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100410static int os_host_main_loop_wait(uint32_t timeout)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200411{
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100412 GMainContext *context = g_main_context_default();
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100413 GPollFD poll_fds[1024 * 2]; /* this is probably overkill */
Stefan Hajnoczi134a03e2013-02-20 11:28:24 +0100414 int select_ret = 0;
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100415 int g_poll_ret, ret, i, n_poll_fds;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200416 PollingEntry *pe;
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100417 WaitObjects *w = &wait_objects;
Stefan Weil42fe1c22012-04-27 17:02:08 +0200418 gint poll_timeout;
Paolo Bonzini15455532012-03-20 10:49:18 +0100419 static struct timeval tv0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200420
421 /* XXX: need to suppress polling by better using win32 events */
422 ret = 0;
423 for (pe = first_polling_entry; pe != NULL; pe = pe->next) {
424 ret |= pe->func(pe->opaque);
425 }
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100426 if (ret != 0) {
427 return ret;
428 }
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200429
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100430 g_main_context_prepare(context, &max_priority);
Stefan Weil42fe1c22012-04-27 17:02:08 +0200431 n_poll_fds = g_main_context_query(context, max_priority, &poll_timeout,
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100432 poll_fds, ARRAY_SIZE(poll_fds));
433 g_assert(n_poll_fds <= ARRAY_SIZE(poll_fds));
434
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100435 for (i = 0; i < w->num; i++) {
Stefan Weil58b96302012-04-12 20:42:34 +0200436 poll_fds[n_poll_fds + i].fd = (DWORD_PTR)w->events[i];
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100437 poll_fds[n_poll_fds + i].events = G_IO_IN;
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100438 }
439
Stefan Weil3239ad02012-04-29 19:15:02 +0200440 if (poll_timeout < 0 || timeout < poll_timeout) {
441 poll_timeout = timeout;
442 }
443
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100444 qemu_mutex_unlock_iothread();
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100445 g_poll_ret = g_poll(poll_fds, n_poll_fds + w->num, poll_timeout);
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100446 qemu_mutex_lock_iothread();
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100447 if (g_poll_ret > 0) {
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100448 for (i = 0; i < w->num; i++) {
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100449 w->revents[i] = poll_fds[n_poll_fds + i].revents;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100450 }
451 for (i = 0; i < w->num; i++) {
452 if (w->revents[i] && w->func[i]) {
453 w->func[i](w->opaque[i]);
454 }
455 }
456 }
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100457
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100458 if (g_main_context_check(context, max_priority, poll_fds, n_poll_fds)) {
459 g_main_context_dispatch(context);
460 }
461
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100462 /* Call select after g_poll to avoid a useless iteration and therefore
463 * improve socket latency.
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100464 */
465
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100466 /* This back-and-forth between GPollFDs and select(2) is temporary. We'll
467 * drop it in a couple of patches, I promise :).
468 */
469 gpollfds_from_select();
470 FD_ZERO(&rfds);
471 FD_ZERO(&wfds);
472 FD_ZERO(&xfds);
473 nfds = pollfds_fill(gpollfds, &rfds, &wfds, &xfds);
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100474 if (nfds >= 0) {
475 select_ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv0);
476 if (select_ret != 0) {
477 timeout = 0;
478 }
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100479 if (select_ret > 0) {
480 pollfds_poll(gpollfds, nfds, &rfds, &wfds, &xfds);
481 }
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100482 }
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100483 gpollfds_to_select(select_ret);
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100484
485 return select_ret || g_poll_ret;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200486}
487#endif
488
489int main_loop_wait(int nonblocking)
490{
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100491 int ret;
492 uint32_t timeout = UINT32_MAX;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200493
494 if (nonblocking) {
495 timeout = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200496 }
497
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200498 /* poll any events */
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100499 g_array_set_size(gpollfds, 0); /* reset for new iteration */
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200500 /* XXX: separate device handlers from system ones */
501 nfds = -1;
502 FD_ZERO(&rfds);
503 FD_ZERO(&wfds);
504 FD_ZERO(&xfds);
505
506#ifdef CONFIG_SLIRP
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100507 slirp_update_timeout(&timeout);
Stefan Hajnoczi8917c3b2013-02-20 11:28:28 +0100508 slirp_pollfds_fill(gpollfds);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200509#endif
Stefan Hajnoczia3e4b4a2013-02-20 11:28:29 +0100510 qemu_iohandler_fill(gpollfds);
Paolo Bonzini15455532012-03-20 10:49:18 +0100511 ret = os_host_main_loop_wait(timeout);
Stefan Hajnoczia3e4b4a2013-02-20 11:28:29 +0100512 qemu_iohandler_poll(gpollfds, ret);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200513#ifdef CONFIG_SLIRP
Stefan Hajnoczi8917c3b2013-02-20 11:28:28 +0100514 slirp_pollfds_poll(gpollfds, (ret < 0));
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200515#endif
516
517 qemu_run_all_timers();
518
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200519 return ret;
520}
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100521
522/* Functions to operate on the main QEMU AioContext. */
523
524QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
525{
526 return aio_bh_new(qemu_aio_context, cb, opaque);
527}
528
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200529bool qemu_aio_wait(void)
530{
Paolo Bonzini7c0628b2012-09-24 14:37:53 +0200531 return aio_poll(qemu_aio_context, true);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200532}
533
Paolo Bonzinif42b2202012-06-09 04:01:51 +0200534#ifdef CONFIG_POSIX
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200535void qemu_aio_set_fd_handler(int fd,
536 IOHandler *io_read,
537 IOHandler *io_write,
538 AioFlushHandler *io_flush,
539 void *opaque)
540{
541 aio_set_fd_handler(qemu_aio_context, fd, io_read, io_write, io_flush,
542 opaque);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200543}
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200544#endif
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200545
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200546void qemu_aio_set_event_notifier(EventNotifier *notifier,
547 EventNotifierHandler *io_read,
548 AioFlushEventNotifierHandler *io_flush)
549{
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200550 aio_set_event_notifier(qemu_aio_context, notifier, io_read, io_flush);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200551}