1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#include "config-host.h"
26#include "qemu-common.h"
27#include "qemu-char.h"
28#include "qemu-queue.h"
29#include "main-loop.h"
30
31#ifndef _WIN32
32#include <sys/wait.h>
33#endif
34
35typedef struct IOHandlerRecord {
36 IOCanReadHandler *fd_read_poll;
37 IOHandler *fd_read;
38 IOHandler *fd_write;
39 void *opaque;
40 QLIST_ENTRY(IOHandlerRecord) next;
41 int fd;
42 bool deleted;
43} IOHandlerRecord;
44
45static QLIST_HEAD(, IOHandlerRecord) io_handlers =
46 QLIST_HEAD_INITIALIZER(io_handlers);
47
48
49
50
51int qemu_set_fd_handler2(int fd,
52 IOCanReadHandler *fd_read_poll,
53 IOHandler *fd_read,
54 IOHandler *fd_write,
55 void *opaque)
56{
57 IOHandlerRecord *ioh;
58
59 if (!fd_read && !fd_write) {
60 QLIST_FOREACH(ioh, &io_handlers, next) {
61 if (ioh->fd == fd) {
62 ioh->deleted = 1;
63 break;
64 }
65 }
66 } else {
67 QLIST_FOREACH(ioh, &io_handlers, next) {
68 if (ioh->fd == fd)
69 goto found;
70 }
71 ioh = g_malloc0(sizeof(IOHandlerRecord));
72 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
73 found:
74 ioh->fd = fd;
75 ioh->fd_read_poll = fd_read_poll;
76 ioh->fd_read = fd_read;
77 ioh->fd_write = fd_write;
78 ioh->opaque = opaque;
79 ioh->deleted = 0;
80 qemu_notify_event();
81 }
82 return 0;
83}
84
85int qemu_set_fd_handler(int fd,
86 IOHandler *fd_read,
87 IOHandler *fd_write,
88 void *opaque)
89{
90 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
91}
92
93void qemu_iohandler_fill(int *pnfds, fd_set *readfds, fd_set *writefds, fd_set *xfds)
94{
95 IOHandlerRecord *ioh;
96
97 QLIST_FOREACH(ioh, &io_handlers, next) {
98 if (ioh->deleted)
99 continue;
100 if (ioh->fd_read &&
101 (!ioh->fd_read_poll ||
102 ioh->fd_read_poll(ioh->opaque) != 0)) {
103 FD_SET(ioh->fd, readfds);
104 if (ioh->fd > *pnfds)
105 *pnfds = ioh->fd;
106 }
107 if (ioh->fd_write) {
108 FD_SET(ioh->fd, writefds);
109 if (ioh->fd > *pnfds)
110 *pnfds = ioh->fd;
111 }
112 }
113}
114
115void qemu_iohandler_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds, int ret)
116{
117 if (ret > 0) {
118 IOHandlerRecord *pioh, *ioh;
119
120 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
121 if (!ioh->deleted && ioh->fd_read && FD_ISSET(ioh->fd, readfds)) {
122 ioh->fd_read(ioh->opaque);
123 }
124 if (!ioh->deleted && ioh->fd_write && FD_ISSET(ioh->fd, writefds)) {
125 ioh->fd_write(ioh->opaque);
126 }
127
128
129 if (ioh->deleted) {
130 QLIST_REMOVE(ioh, next);
131 g_free(ioh);
132 }
133 }
134 }
135}
136
137
138
139#ifndef _WIN32
140typedef struct ChildProcessRecord {
141 int pid;
142 QLIST_ENTRY(ChildProcessRecord) next;
143} ChildProcessRecord;
144
145static QLIST_HEAD(, ChildProcessRecord) child_watches =
146 QLIST_HEAD_INITIALIZER(child_watches);
147
148static QEMUBH *sigchld_bh;
149
150static void sigchld_handler(int signal)
151{
152 qemu_bh_schedule(sigchld_bh);
153}
154
155static void sigchld_bh_handler(void *opaque)
156{
157 ChildProcessRecord *rec, *next;
158
159 QLIST_FOREACH_SAFE(rec, &child_watches, next, next) {
160 if (waitpid(rec->pid, NULL, WNOHANG) == rec->pid) {
161 QLIST_REMOVE(rec, next);
162 g_free(rec);
163 }
164 }
165}
166
167static void qemu_init_child_watch(void)
168{
169 struct sigaction act;
170 sigchld_bh = qemu_bh_new(sigchld_bh_handler, NULL);
171
172 act.sa_handler = sigchld_handler;
173 act.sa_flags = SA_NOCLDSTOP;
174 sigaction(SIGCHLD, &act, NULL);
175}
176
177int qemu_add_child_watch(pid_t pid)
178{
179 ChildProcessRecord *rec;
180
181 if (!sigchld_bh) {
182 qemu_init_child_watch();
183 }
184
185 QLIST_FOREACH(rec, &child_watches, next) {
186 if (rec->pid == pid) {
187 return 1;
188 }
189 }
190 rec = g_malloc0(sizeof(ChildProcessRecord));
191 rec->pid = pid;
192 QLIST_INSERT_HEAD(&child_watches, rec, next);
193 return 0;
194}
195#endif
196