blob: 2866d95f8002d47e4a5d6f2ed4ae713f16c5bb09 [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"
Michael Tokarev520b6dd2013-06-12 16:31:44 +040027#include "qemu/sockets.h" // struct in_addr needed for libslirp.h
28#include "slirp/libslirp.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010029#include "qemu/main-loop.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010030#include "block/aio.h"
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020031
32#ifndef _WIN32
33
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010034#include "qemu/compatfd.h"
Stefan Weil0ec024f2011-10-25 22:23:17 +020035
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020036/* If we have signalfd, we mask out the signals we want to handle and then
37 * use signalfd to listen for them. We rely on whatever the current signal
38 * handler is to dispatch the signals when we receive them.
39 */
40static void sigfd_handler(void *opaque)
41{
42 int fd = (intptr_t)opaque;
43 struct qemu_signalfd_siginfo info;
44 struct sigaction action;
45 ssize_t len;
46
47 while (1) {
48 do {
49 len = read(fd, &info, sizeof(info));
50 } while (len == -1 && errno == EINTR);
51
52 if (len == -1 && errno == EAGAIN) {
53 break;
54 }
55
56 if (len != sizeof(info)) {
57 printf("read from sigfd returned %zd: %m\n", len);
58 return;
59 }
60
61 sigaction(info.ssi_signo, NULL, &action);
62 if ((action.sa_flags & SA_SIGINFO) && action.sa_sigaction) {
63 action.sa_sigaction(info.ssi_signo,
64 (siginfo_t *)&info, NULL);
65 } else if (action.sa_handler) {
66 action.sa_handler(info.ssi_signo);
67 }
68 }
69}
70
71static int qemu_signal_init(void)
72{
73 int sigfd;
74 sigset_t set;
75
76 /*
77 * SIG_IPI must be blocked in the main thread and must not be caught
78 * by sigwait() in the signal thread. Otherwise, the cpu thread will
79 * not catch it reliably.
80 */
81 sigemptyset(&set);
82 sigaddset(&set, SIG_IPI);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020083 sigaddset(&set, SIGIO);
84 sigaddset(&set, SIGALRM);
85 sigaddset(&set, SIGBUS);
86 pthread_sigmask(SIG_BLOCK, &set, NULL);
87
Lai Jiangshan4aa75342012-01-12 17:05:35 +080088 sigdelset(&set, SIG_IPI);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +020089 sigfd = qemu_signalfd(&set);
90 if (sigfd == -1) {
91 fprintf(stderr, "failed to create signalfd\n");
92 return -errno;
93 }
94
95 fcntl_setfl(sigfd, O_NONBLOCK);
96
97 qemu_set_fd_handler2(sigfd, NULL, sigfd_handler, NULL,
98 (void *)(intptr_t)sigfd);
99
100 return 0;
101}
102
103#else /* _WIN32 */
104
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200105static int qemu_signal_init(void)
106{
107 return 0;
108}
109#endif
110
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100111static AioContext *qemu_aio_context;
112
Stefan Hajnoczi5f3aa1f2013-03-07 13:41:44 +0100113AioContext *qemu_get_aio_context(void)
114{
115 return qemu_aio_context;
116}
117
Paolo Bonzini4c8d0d22010-05-24 17:27:14 +0200118void qemu_notify_event(void)
119{
120 if (!qemu_aio_context) {
121 return;
122 }
123 aio_notify(qemu_aio_context);
124}
125
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100126static GArray *gpollfds;
127
Paolo Bonzini172061a2012-10-29 15:28:36 +0100128int qemu_init_main_loop(void)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200129{
130 int ret;
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200131 GSource *src;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200132
Paolo Bonzini172061a2012-10-29 15:28:36 +0100133 init_clocks();
Paolo Bonzinif9ab4652012-11-02 15:43:23 +0100134 if (init_timer_alarm() < 0) {
135 fprintf(stderr, "could not initialize alarm timer\n");
136 exit(1);
137 }
Paolo Bonzini172061a2012-10-29 15:28:36 +0100138
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200139 ret = qemu_signal_init();
140 if (ret) {
141 return ret;
142 }
143
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100144 gpollfds = g_array_new(FALSE, FALSE, sizeof(GPollFD));
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100145 qemu_aio_context = aio_context_new();
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200146 src = aio_get_g_source(qemu_aio_context);
147 g_source_attach(src, NULL);
148 g_source_unref(src);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200149 return 0;
150}
151
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200152static int max_priority;
153
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100154#ifndef _WIN32
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100155static int glib_pollfds_idx;
156static int glib_n_poll_fds;
157
Alex Bligh7b595f32013-08-21 16:02:54 +0100158static void glib_pollfds_fill(int64_t *cur_timeout)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200159{
160 GMainContext *context = g_main_context_default();
Paolo Bonzini4dae83a2012-03-20 10:49:17 +0100161 int timeout = 0;
Alex Bligh7b595f32013-08-21 16:02:54 +0100162 int64_t timeout_ns;
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100163 int n;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200164
165 g_main_context_prepare(context, &max_priority);
166
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100167 glib_pollfds_idx = gpollfds->len;
168 n = glib_n_poll_fds;
169 do {
170 GPollFD *pfds;
171 glib_n_poll_fds = n;
172 g_array_set_size(gpollfds, glib_pollfds_idx + glib_n_poll_fds);
173 pfds = &g_array_index(gpollfds, GPollFD, glib_pollfds_idx);
174 n = g_main_context_query(context, max_priority, &timeout, pfds,
175 glib_n_poll_fds);
176 } while (n != glib_n_poll_fds);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200177
Alex Bligh7b595f32013-08-21 16:02:54 +0100178 if (timeout < 0) {
179 timeout_ns = -1;
180 } else {
181 timeout_ns = (int64_t)timeout * (int64_t)SCALE_MS;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200182 }
Alex Bligh7b595f32013-08-21 16:02:54 +0100183
184 *cur_timeout = qemu_soonest_timeout(timeout_ns, *cur_timeout);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200185}
186
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100187static void glib_pollfds_poll(void)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200188{
189 GMainContext *context = g_main_context_default();
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100190 GPollFD *pfds = &g_array_index(gpollfds, GPollFD, glib_pollfds_idx);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200191
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100192 if (g_main_context_check(context, max_priority, pfds, glib_n_poll_fds)) {
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200193 g_main_context_dispatch(context);
194 }
195}
196
Anthony Liguori893986f2013-04-05 08:46:00 -0500197#define MAX_MAIN_LOOP_SPIN (1000)
198
Alex Bligh7b595f32013-08-21 16:02:54 +0100199static int os_host_main_loop_wait(int64_t timeout)
Paolo Bonzini15455532012-03-20 10:49:18 +0100200{
Paolo Bonzini15455532012-03-20 10:49:18 +0100201 int ret;
Anthony Liguori893986f2013-04-05 08:46:00 -0500202 static int spin_counter;
Paolo Bonzini15455532012-03-20 10:49:18 +0100203
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100204 glib_pollfds_fill(&timeout);
Paolo Bonzini15455532012-03-20 10:49:18 +0100205
Anthony Liguori893986f2013-04-05 08:46:00 -0500206 /* If the I/O thread is very busy or we are incorrectly busy waiting in
207 * the I/O thread, this can lead to starvation of the BQL such that the
208 * VCPU threads never run. To make sure we can detect the later case,
209 * print a message to the screen. If we run into this condition, create
210 * a fake timeout in order to give the VCPU threads a chance to run.
211 */
Alex Bligh7b595f32013-08-21 16:02:54 +0100212 if (!timeout && (spin_counter > MAX_MAIN_LOOP_SPIN)) {
Anthony Liguori893986f2013-04-05 08:46:00 -0500213 static bool notified;
214
215 if (!notified) {
216 fprintf(stderr,
217 "main-loop: WARNING: I/O thread spun for %d iterations\n",
218 MAX_MAIN_LOOP_SPIN);
219 notified = true;
220 }
221
Alex Bligh7b595f32013-08-21 16:02:54 +0100222 timeout = SCALE_MS;
Anthony Liguori893986f2013-04-05 08:46:00 -0500223 }
224
Alex Bligh7b595f32013-08-21 16:02:54 +0100225 if (timeout) {
Anthony Liguori893986f2013-04-05 08:46:00 -0500226 spin_counter = 0;
Paolo Bonzini15455532012-03-20 10:49:18 +0100227 qemu_mutex_unlock_iothread();
Anthony Liguori893986f2013-04-05 08:46:00 -0500228 } else {
229 spin_counter++;
Paolo Bonzini15455532012-03-20 10:49:18 +0100230 }
231
Alex Bligh7b595f32013-08-21 16:02:54 +0100232 ret = qemu_poll_ns((GPollFD *)gpollfds->data, gpollfds->len, timeout);
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100233
Alex Bligh7b595f32013-08-21 16:02:54 +0100234 if (timeout) {
Paolo Bonzini15455532012-03-20 10:49:18 +0100235 qemu_mutex_lock_iothread();
236 }
237
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100238 glib_pollfds_poll();
Paolo Bonzini15455532012-03-20 10:49:18 +0100239 return ret;
240}
241#else
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200242/***********************************************************/
243/* Polling handling */
244
245typedef struct PollingEntry {
246 PollingFunc *func;
247 void *opaque;
248 struct PollingEntry *next;
249} PollingEntry;
250
251static PollingEntry *first_polling_entry;
252
253int qemu_add_polling_cb(PollingFunc *func, void *opaque)
254{
255 PollingEntry **ppe, *pe;
256 pe = g_malloc0(sizeof(PollingEntry));
257 pe->func = func;
258 pe->opaque = opaque;
259 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
260 *ppe = pe;
261 return 0;
262}
263
264void qemu_del_polling_cb(PollingFunc *func, void *opaque)
265{
266 PollingEntry **ppe, *pe;
267 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
268 pe = *ppe;
269 if (pe->func == func && pe->opaque == opaque) {
270 *ppe = pe->next;
271 g_free(pe);
272 break;
273 }
274 }
275}
276
277/***********************************************************/
278/* Wait objects support */
279typedef struct WaitObjects {
280 int num;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100281 int revents[MAXIMUM_WAIT_OBJECTS + 1];
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200282 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
283 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
284 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
285} WaitObjects;
286
287static WaitObjects wait_objects = {0};
288
289int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
290{
291 WaitObjects *w = &wait_objects;
292 if (w->num >= MAXIMUM_WAIT_OBJECTS) {
293 return -1;
294 }
295 w->events[w->num] = handle;
296 w->func[w->num] = func;
297 w->opaque[w->num] = opaque;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100298 w->revents[w->num] = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200299 w->num++;
300 return 0;
301}
302
303void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
304{
305 int i, found;
306 WaitObjects *w = &wait_objects;
307
308 found = 0;
309 for (i = 0; i < w->num; i++) {
310 if (w->events[i] == handle) {
311 found = 1;
312 }
313 if (found) {
314 w->events[i] = w->events[i + 1];
315 w->func[i] = w->func[i + 1];
316 w->opaque[i] = w->opaque[i + 1];
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100317 w->revents[i] = w->revents[i + 1];
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200318 }
319 }
320 if (found) {
321 w->num--;
322 }
323}
324
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100325void qemu_fd_register(int fd)
326{
Paolo Bonzini4c8d0d22010-05-24 17:27:14 +0200327 WSAEventSelect(fd, event_notifier_get_handle(&qemu_aio_context->notifier),
328 FD_READ | FD_ACCEPT | FD_CLOSE |
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100329 FD_CONNECT | FD_WRITE | FD_OOB);
330}
331
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100332static int pollfds_fill(GArray *pollfds, fd_set *rfds, fd_set *wfds,
333 fd_set *xfds)
334{
335 int nfds = -1;
336 int i;
337
338 for (i = 0; i < pollfds->len; i++) {
339 GPollFD *pfd = &g_array_index(pollfds, GPollFD, i);
340 int fd = pfd->fd;
341 int events = pfd->events;
Stefan Hajnoczi8db165b2013-05-16 17:36:00 +0200342 if (events & G_IO_IN) {
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100343 FD_SET(fd, rfds);
344 nfds = MAX(nfds, fd);
345 }
Stefan Hajnoczi8db165b2013-05-16 17:36:00 +0200346 if (events & G_IO_OUT) {
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100347 FD_SET(fd, wfds);
348 nfds = MAX(nfds, fd);
349 }
350 if (events & G_IO_PRI) {
351 FD_SET(fd, xfds);
352 nfds = MAX(nfds, fd);
353 }
354 }
355 return nfds;
356}
357
358static void pollfds_poll(GArray *pollfds, int nfds, fd_set *rfds,
359 fd_set *wfds, fd_set *xfds)
360{
361 int i;
362
363 for (i = 0; i < pollfds->len; i++) {
364 GPollFD *pfd = &g_array_index(pollfds, GPollFD, i);
365 int fd = pfd->fd;
366 int revents = 0;
367
368 if (FD_ISSET(fd, rfds)) {
Stefan Hajnoczi8db165b2013-05-16 17:36:00 +0200369 revents |= G_IO_IN;
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100370 }
371 if (FD_ISSET(fd, wfds)) {
Stefan Hajnoczi8db165b2013-05-16 17:36:00 +0200372 revents |= G_IO_OUT;
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100373 }
374 if (FD_ISSET(fd, xfds)) {
375 revents |= G_IO_PRI;
376 }
377 pfd->revents = revents & pfd->events;
378 }
379}
380
Alex Bligh7b595f32013-08-21 16:02:54 +0100381static int os_host_main_loop_wait(int64_t timeout)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200382{
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100383 GMainContext *context = g_main_context_default();
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100384 GPollFD poll_fds[1024 * 2]; /* this is probably overkill */
Stefan Hajnoczi134a03e2013-02-20 11:28:24 +0100385 int select_ret = 0;
Stefan Hajnoczi48ce11f2013-02-20 11:28:26 +0100386 int g_poll_ret, ret, i, n_poll_fds;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200387 PollingEntry *pe;
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100388 WaitObjects *w = &wait_objects;
Stefan Weil42fe1c22012-04-27 17:02:08 +0200389 gint poll_timeout;
Alex Bligh7b595f32013-08-21 16:02:54 +0100390 int64_t poll_timeout_ns;
Paolo Bonzini15455532012-03-20 10:49:18 +0100391 static struct timeval tv0;
Stefan Hajnoczi9cbaacf2013-02-20 11:28:30 +0100392 fd_set rfds, wfds, xfds;
393 int nfds;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200394
395 /* XXX: need to suppress polling by better using win32 events */
396 ret = 0;
397 for (pe = first_polling_entry; pe != NULL; pe = pe->next) {
398 ret |= pe->func(pe->opaque);
399 }
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100400 if (ret != 0) {
401 return ret;
402 }
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200403
Stefan Hajnoczi3cb8c202013-05-16 17:36:01 +0200404 FD_ZERO(&rfds);
405 FD_ZERO(&wfds);
406 FD_ZERO(&xfds);
407 nfds = pollfds_fill(gpollfds, &rfds, &wfds, &xfds);
408 if (nfds >= 0) {
409 select_ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv0);
410 if (select_ret != 0) {
411 timeout = 0;
412 }
413 if (select_ret > 0) {
414 pollfds_poll(gpollfds, nfds, &rfds, &wfds, &xfds);
415 }
416 }
417
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100418 g_main_context_prepare(context, &max_priority);
Stefan Weil42fe1c22012-04-27 17:02:08 +0200419 n_poll_fds = g_main_context_query(context, max_priority, &poll_timeout,
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100420 poll_fds, ARRAY_SIZE(poll_fds));
421 g_assert(n_poll_fds <= ARRAY_SIZE(poll_fds));
422
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100423 for (i = 0; i < w->num; i++) {
Stefan Weil58b96302012-04-12 20:42:34 +0200424 poll_fds[n_poll_fds + i].fd = (DWORD_PTR)w->events[i];
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100425 poll_fds[n_poll_fds + i].events = G_IO_IN;
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100426 }
427
Alex Bligh7b595f32013-08-21 16:02:54 +0100428 if (poll_timeout < 0) {
429 poll_timeout_ns = -1;
430 } else {
431 poll_timeout_ns = (int64_t)poll_timeout * (int64_t)SCALE_MS;
Stefan Weil3239ad02012-04-29 19:15:02 +0200432 }
433
Alex Bligh7b595f32013-08-21 16:02:54 +0100434 poll_timeout_ns = qemu_soonest_timeout(poll_timeout_ns, timeout);
435
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100436 qemu_mutex_unlock_iothread();
Alex Bligh7b595f32013-08-21 16:02:54 +0100437 g_poll_ret = qemu_poll_ns(poll_fds, n_poll_fds + w->num, poll_timeout_ns);
438
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100439 qemu_mutex_lock_iothread();
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100440 if (g_poll_ret > 0) {
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100441 for (i = 0; i < w->num; i++) {
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100442 w->revents[i] = poll_fds[n_poll_fds + i].revents;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100443 }
444 for (i = 0; i < w->num; i++) {
445 if (w->revents[i] && w->func[i]) {
446 w->func[i](w->opaque[i]);
447 }
448 }
449 }
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100450
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100451 if (g_main_context_check(context, max_priority, poll_fds, n_poll_fds)) {
452 g_main_context_dispatch(context);
453 }
454
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100455 return select_ret || g_poll_ret;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200456}
457#endif
458
459int main_loop_wait(int nonblocking)
460{
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100461 int ret;
462 uint32_t timeout = UINT32_MAX;
Alex Bligh7b595f32013-08-21 16:02:54 +0100463 int64_t timeout_ns;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200464
465 if (nonblocking) {
466 timeout = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200467 }
468
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200469 /* poll any events */
Stefan Hajnoczicbff4b32013-02-20 11:28:25 +0100470 g_array_set_size(gpollfds, 0); /* reset for new iteration */
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200471 /* XXX: separate device handlers from system ones */
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200472#ifdef CONFIG_SLIRP
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100473 slirp_update_timeout(&timeout);
Stefan Hajnoczi8917c3b2013-02-20 11:28:28 +0100474 slirp_pollfds_fill(gpollfds);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200475#endif
Stefan Hajnoczia3e4b4a2013-02-20 11:28:29 +0100476 qemu_iohandler_fill(gpollfds);
Alex Bligh7b595f32013-08-21 16:02:54 +0100477
478 if (timeout == UINT32_MAX) {
479 timeout_ns = -1;
480 } else {
481 timeout_ns = (uint64_t)timeout * (int64_t)(SCALE_MS);
482 }
483
484 timeout_ns = qemu_soonest_timeout(timeout_ns,
485 timerlistgroup_deadline_ns(
486 &main_loop_tlg));
487
488 ret = os_host_main_loop_wait(timeout_ns);
Stefan Hajnoczia3e4b4a2013-02-20 11:28:29 +0100489 qemu_iohandler_poll(gpollfds, ret);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200490#ifdef CONFIG_SLIRP
Stefan Hajnoczi8917c3b2013-02-20 11:28:28 +0100491 slirp_pollfds_poll(gpollfds, (ret < 0));
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200492#endif
493
494 qemu_run_all_timers();
495
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200496 return ret;
497}
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100498
499/* Functions to operate on the main QEMU AioContext. */
500
501QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
502{
503 return aio_bh_new(qemu_aio_context, cb, opaque);
504}
505
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200506bool qemu_aio_wait(void)
507{
Paolo Bonzini7c0628b2012-09-24 14:37:53 +0200508 return aio_poll(qemu_aio_context, true);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200509}
510
Paolo Bonzinif42b2202012-06-09 04:01:51 +0200511#ifdef CONFIG_POSIX
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200512void qemu_aio_set_fd_handler(int fd,
513 IOHandler *io_read,
514 IOHandler *io_write,
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200515 void *opaque)
516{
Stefan Hajnoczif2e5dca2013-04-11 17:26:25 +0200517 aio_set_fd_handler(qemu_aio_context, fd, io_read, io_write, opaque);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200518}
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200519#endif
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200520
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200521void qemu_aio_set_event_notifier(EventNotifier *notifier,
Stefan Hajnoczif2e5dca2013-04-11 17:26:25 +0200522 EventNotifierHandler *io_read)
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200523{
Stefan Hajnoczif2e5dca2013-04-11 17:26:25 +0200524 aio_set_event_notifier(qemu_aio_context, notifier, io_read);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200525}