blob: 6f52ac39bc7f6bfede652230bbad4a80ce44b6c5 [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
Paolo Bonzini172061a2012-10-29 15:28:36 +0100120int qemu_init_main_loop(void)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200121{
122 int ret;
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200123 GSource *src;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200124
Paolo Bonzini172061a2012-10-29 15:28:36 +0100125 init_clocks();
Paolo Bonzinif9ab4652012-11-02 15:43:23 +0100126 if (init_timer_alarm() < 0) {
127 fprintf(stderr, "could not initialize alarm timer\n");
128 exit(1);
129 }
Paolo Bonzini172061a2012-10-29 15:28:36 +0100130
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200131 ret = qemu_signal_init();
132 if (ret) {
133 return ret;
134 }
135
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100136 qemu_aio_context = aio_context_new();
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200137 src = aio_get_g_source(qemu_aio_context);
138 g_source_attach(src, NULL);
139 g_source_unref(src);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200140 return 0;
141}
142
Paolo Bonzini15455532012-03-20 10:49:18 +0100143static fd_set rfds, wfds, xfds;
144static int nfds;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100145static GPollFD poll_fds[1024 * 2]; /* this is probably overkill */
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200146static int n_poll_fds;
147static int max_priority;
148
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100149#ifndef _WIN32
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200150static void glib_select_fill(int *max_fd, fd_set *rfds, fd_set *wfds,
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100151 fd_set *xfds, uint32_t *cur_timeout)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200152{
153 GMainContext *context = g_main_context_default();
154 int i;
Paolo Bonzini4dae83a2012-03-20 10:49:17 +0100155 int timeout = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200156
157 g_main_context_prepare(context, &max_priority);
158
159 n_poll_fds = g_main_context_query(context, max_priority, &timeout,
160 poll_fds, ARRAY_SIZE(poll_fds));
161 g_assert(n_poll_fds <= ARRAY_SIZE(poll_fds));
162
163 for (i = 0; i < n_poll_fds; i++) {
164 GPollFD *p = &poll_fds[i];
165
166 if ((p->events & G_IO_IN)) {
167 FD_SET(p->fd, rfds);
168 *max_fd = MAX(*max_fd, p->fd);
169 }
170 if ((p->events & G_IO_OUT)) {
171 FD_SET(p->fd, wfds);
172 *max_fd = MAX(*max_fd, p->fd);
173 }
174 if ((p->events & G_IO_ERR)) {
175 FD_SET(p->fd, xfds);
176 *max_fd = MAX(*max_fd, p->fd);
177 }
178 }
179
Paolo Bonzini4dae83a2012-03-20 10:49:17 +0100180 if (timeout >= 0 && timeout < *cur_timeout) {
181 *cur_timeout = timeout;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200182 }
183}
184
185static void glib_select_poll(fd_set *rfds, fd_set *wfds, fd_set *xfds,
186 bool err)
187{
188 GMainContext *context = g_main_context_default();
189
190 if (!err) {
191 int i;
192
193 for (i = 0; i < n_poll_fds; i++) {
194 GPollFD *p = &poll_fds[i];
195
196 if ((p->events & G_IO_IN) && FD_ISSET(p->fd, rfds)) {
197 p->revents |= G_IO_IN;
198 }
199 if ((p->events & G_IO_OUT) && FD_ISSET(p->fd, wfds)) {
200 p->revents |= G_IO_OUT;
201 }
202 if ((p->events & G_IO_ERR) && FD_ISSET(p->fd, xfds)) {
203 p->revents |= G_IO_ERR;
204 }
205 }
206 }
207
208 if (g_main_context_check(context, max_priority, poll_fds, n_poll_fds)) {
209 g_main_context_dispatch(context);
210 }
211}
212
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100213static int os_host_main_loop_wait(uint32_t timeout)
Paolo Bonzini15455532012-03-20 10:49:18 +0100214{
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100215 struct timeval tv, *tvarg = NULL;
Paolo Bonzini15455532012-03-20 10:49:18 +0100216 int ret;
217
218 glib_select_fill(&nfds, &rfds, &wfds, &xfds, &timeout);
219
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100220 if (timeout < UINT32_MAX) {
221 tvarg = &tv;
222 tv.tv_sec = timeout / 1000;
223 tv.tv_usec = (timeout % 1000) * 1000;
224 }
225
Paolo Bonzini15455532012-03-20 10:49:18 +0100226 if (timeout > 0) {
227 qemu_mutex_unlock_iothread();
228 }
229
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100230 ret = select(nfds + 1, &rfds, &wfds, &xfds, tvarg);
Paolo Bonzini15455532012-03-20 10:49:18 +0100231
232 if (timeout > 0) {
233 qemu_mutex_lock_iothread();
234 }
235
236 glib_select_poll(&rfds, &wfds, &xfds, (ret < 0));
237 return ret;
238}
239#else
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200240/***********************************************************/
241/* Polling handling */
242
243typedef struct PollingEntry {
244 PollingFunc *func;
245 void *opaque;
246 struct PollingEntry *next;
247} PollingEntry;
248
249static PollingEntry *first_polling_entry;
250
251int qemu_add_polling_cb(PollingFunc *func, void *opaque)
252{
253 PollingEntry **ppe, *pe;
254 pe = g_malloc0(sizeof(PollingEntry));
255 pe->func = func;
256 pe->opaque = opaque;
257 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
258 *ppe = pe;
259 return 0;
260}
261
262void qemu_del_polling_cb(PollingFunc *func, void *opaque)
263{
264 PollingEntry **ppe, *pe;
265 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
266 pe = *ppe;
267 if (pe->func == func && pe->opaque == opaque) {
268 *ppe = pe->next;
269 g_free(pe);
270 break;
271 }
272 }
273}
274
275/***********************************************************/
276/* Wait objects support */
277typedef struct WaitObjects {
278 int num;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100279 int revents[MAXIMUM_WAIT_OBJECTS + 1];
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200280 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
281 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
282 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
283} WaitObjects;
284
285static WaitObjects wait_objects = {0};
286
287int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
288{
289 WaitObjects *w = &wait_objects;
290 if (w->num >= MAXIMUM_WAIT_OBJECTS) {
291 return -1;
292 }
293 w->events[w->num] = handle;
294 w->func[w->num] = func;
295 w->opaque[w->num] = opaque;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100296 w->revents[w->num] = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200297 w->num++;
298 return 0;
299}
300
301void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
302{
303 int i, found;
304 WaitObjects *w = &wait_objects;
305
306 found = 0;
307 for (i = 0; i < w->num; i++) {
308 if (w->events[i] == handle) {
309 found = 1;
310 }
311 if (found) {
312 w->events[i] = w->events[i + 1];
313 w->func[i] = w->func[i + 1];
314 w->opaque[i] = w->opaque[i + 1];
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100315 w->revents[i] = w->revents[i + 1];
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200316 }
317 }
318 if (found) {
319 w->num--;
320 }
321}
322
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100323void qemu_fd_register(int fd)
324{
Paolo Bonzini4c8d0d22010-05-24 17:27:14 +0200325 WSAEventSelect(fd, event_notifier_get_handle(&qemu_aio_context->notifier),
326 FD_READ | FD_ACCEPT | FD_CLOSE |
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100327 FD_CONNECT | FD_WRITE | FD_OOB);
328}
329
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100330static int os_host_main_loop_wait(uint32_t timeout)
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200331{
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100332 GMainContext *context = g_main_context_default();
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100333 int select_ret, g_poll_ret, ret, i;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200334 PollingEntry *pe;
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100335 WaitObjects *w = &wait_objects;
Stefan Weil42fe1c22012-04-27 17:02:08 +0200336 gint poll_timeout;
Paolo Bonzini15455532012-03-20 10:49:18 +0100337 static struct timeval tv0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200338
339 /* XXX: need to suppress polling by better using win32 events */
340 ret = 0;
341 for (pe = first_polling_entry; pe != NULL; pe = pe->next) {
342 ret |= pe->func(pe->opaque);
343 }
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100344 if (ret != 0) {
345 return ret;
346 }
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200347
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100348 g_main_context_prepare(context, &max_priority);
Stefan Weil42fe1c22012-04-27 17:02:08 +0200349 n_poll_fds = g_main_context_query(context, max_priority, &poll_timeout,
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100350 poll_fds, ARRAY_SIZE(poll_fds));
351 g_assert(n_poll_fds <= ARRAY_SIZE(poll_fds));
352
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100353 for (i = 0; i < w->num; i++) {
Stefan Weil58b96302012-04-12 20:42:34 +0200354 poll_fds[n_poll_fds + i].fd = (DWORD_PTR)w->events[i];
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100355 poll_fds[n_poll_fds + i].events = G_IO_IN;
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100356 }
357
Stefan Weil3239ad02012-04-29 19:15:02 +0200358 if (poll_timeout < 0 || timeout < poll_timeout) {
359 poll_timeout = timeout;
360 }
361
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100362 qemu_mutex_unlock_iothread();
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100363 g_poll_ret = g_poll(poll_fds, n_poll_fds + w->num, poll_timeout);
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100364 qemu_mutex_lock_iothread();
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100365 if (g_poll_ret > 0) {
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100366 for (i = 0; i < w->num; i++) {
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100367 w->revents[i] = poll_fds[n_poll_fds + i].revents;
Paolo Bonzini06ac7d42012-03-20 10:49:20 +0100368 }
369 for (i = 0; i < w->num; i++) {
370 if (w->revents[i] && w->func[i]) {
371 w->func[i](w->opaque[i]);
372 }
373 }
374 }
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100375
Paolo Bonziniea26ce72012-03-20 10:49:21 +0100376 if (g_main_context_check(context, max_priority, poll_fds, n_poll_fds)) {
377 g_main_context_dispatch(context);
378 }
379
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100380 /* Call select after g_poll to avoid a useless iteration and therefore
381 * improve socket latency.
Paolo Bonzinid3385eb2012-03-20 10:49:19 +0100382 */
383
Fabien Chouteau5e3bc732013-01-08 16:30:56 +0100384 if (nfds >= 0) {
385 select_ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv0);
386 if (select_ret != 0) {
387 timeout = 0;
388 }
389 }
390
391 return select_ret || g_poll_ret;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200392}
393#endif
394
395int main_loop_wait(int nonblocking)
396{
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100397 int ret;
398 uint32_t timeout = UINT32_MAX;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200399
400 if (nonblocking) {
401 timeout = 0;
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200402 }
403
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200404 /* poll any events */
405 /* XXX: separate device handlers from system ones */
406 nfds = -1;
407 FD_ZERO(&rfds);
408 FD_ZERO(&wfds);
409 FD_ZERO(&xfds);
410
411#ifdef CONFIG_SLIRP
Stefano Stabellini7c7db752012-04-13 19:35:04 +0100412 slirp_update_timeout(&timeout);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200413 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
414#endif
415 qemu_iohandler_fill(&nfds, &rfds, &wfds, &xfds);
Paolo Bonzini15455532012-03-20 10:49:18 +0100416 ret = os_host_main_loop_wait(timeout);
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200417 qemu_iohandler_poll(&rfds, &wfds, &xfds, ret);
418#ifdef CONFIG_SLIRP
419 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
420#endif
421
422 qemu_run_all_timers();
423
Paolo Bonzinid3b12f52011-09-13 10:30:52 +0200424 return ret;
425}
Paolo Bonzinif627aab2012-10-29 23:45:23 +0100426
427/* Functions to operate on the main QEMU AioContext. */
428
429QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
430{
431 return aio_bh_new(qemu_aio_context, cb, opaque);
432}
433
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200434bool qemu_aio_wait(void)
435{
Paolo Bonzini7c0628b2012-09-24 14:37:53 +0200436 return aio_poll(qemu_aio_context, true);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200437}
438
Paolo Bonzinif42b2202012-06-09 04:01:51 +0200439#ifdef CONFIG_POSIX
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200440void qemu_aio_set_fd_handler(int fd,
441 IOHandler *io_read,
442 IOHandler *io_write,
443 AioFlushHandler *io_flush,
444 void *opaque)
445{
446 aio_set_fd_handler(qemu_aio_context, fd, io_read, io_write, io_flush,
447 opaque);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200448}
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200449#endif
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200450
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200451void qemu_aio_set_event_notifier(EventNotifier *notifier,
452 EventNotifierHandler *io_read,
453 AioFlushEventNotifierHandler *io_flush)
454{
Paolo Bonzini82cbbdc2012-09-24 15:07:08 +0200455 aio_set_event_notifier(qemu_aio_context, notifier, io_read, io_flush);
Paolo Bonzinia915f4b2012-09-13 12:28:51 +0200456}