* [Qemu-devel] [PATCH] Fix select loop to handle handler deletions
@ 2006-07-24 0:58 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2006-07-24 0:58 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 321 bytes --]
The current select loop can SEGV if a handler removes itself. The
following patch changes the select loop to be safe no matter how the io
handler list is changed.
It definitely changes the complexity of the dispatch but since there are
usually so few fds, I don't think it really matters.
Regards,
Anthony Liguori
[-- Attachment #2: select-loop.diff --]
[-- Type: text/x-patch, Size: 1889 bytes --]
# HG changeset patch
# User Anthony Liguori <anthony@codemonkey.ws>
# Node ID 2b8742c4699e6726de3fde00831a3b1248fe1a79
# Parent 14d871ce5717d63e4bea98bca85653aa1cecdcba
Fix dispatch loop. If a callback removes itself, it can lead to a SEGV.
diff -r 14d871ce5717 -r 2b8742c4699e vl.c
--- a/vl.c Sun Jul 23 18:14:01 2006 -0500
+++ b/vl.c Sun Jul 23 19:19:20 2006 -0500
@@ -4942,14 +4942,26 @@ void qemu_system_powerdown_request(void)
cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
}
+static IOHandlerRecord *find_io_handler(int fd)
+{
+ IOHandlerRecord *ioh;
+
+ for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
+ if (ioh->fd == fd)
+ break;
+ }
+
+ return ioh;
+}
+
void main_loop_wait(int timeout)
{
- IOHandlerRecord *ioh, *ioh_next;
+ IOHandlerRecord *ioh;
fd_set rfds, wfds, xfds;
int ret, nfds;
struct timeval tv;
PollingEntry *pe;
-
+ int i;
/* XXX: need to suppress polling by better using win32 events */
ret = 0;
@@ -5006,16 +5018,18 @@ void main_loop_wait(int timeout)
#endif
ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
if (ret > 0) {
- /* XXX: better handling of removal */
- for(ioh = first_io_handler; ioh != NULL; ioh = ioh_next) {
- ioh_next = ioh->next;
- if (FD_ISSET(ioh->fd, &rfds)) {
- ioh->fd_read(ioh->opaque);
- }
- if (FD_ISSET(ioh->fd, &wfds)) {
- ioh->fd_write(ioh->opaque);
- }
- }
+ for (i = 0; i < nfds + 1; i++) {
+ if (FD_ISSET(i, &rfds)) {
+ ioh = find_io_handler(i);
+ if (ioh && ioh->fd_read)
+ ioh->fd_read(ioh->opaque);
+ }
+ if (FD_ISSET(i, &wfds)) {
+ ioh = find_io_handler(i);
+ if (ioh && ioh->fd_write)
+ ioh->fd_write(ioh->opaque);
+ }
+ }
}
#if defined(CONFIG_SLIRP)
if (slirp_inited) {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-07-24 0:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-24 0:58 [Qemu-devel] [PATCH] Fix select loop to handle handler deletions Anthony Liguori
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).