2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
14 #include <sys/socket.h>
18 #include "kern_util.h"
19 #include "user_util.h"
22 #include "um_malloc.h"
24 /* Protected by sigio_lock(), also used by sigio_cleanup, which is an
27 static int write_sigio_pid
= -1;
29 /* These arrays are initialized before the sigio thread is started, and
30 * the descriptors closed after it is killed. So, it can't see them change.
31 * On the UML side, they are changed under the sigio_lock.
33 #define SIGIO_FDS_INIT {-1, -1}
35 static int write_sigio_fds
[2] = SIGIO_FDS_INIT
;
36 static int sigio_private
[2] = SIGIO_FDS_INIT
;
44 /* Protected by sigio_lock(). Used by the sigio thread, but the UML thread
45 * synchronizes with it.
47 static struct pollfds current_poll
;
48 static struct pollfds next_poll
;
49 static struct pollfds all_sigio_fds
;
51 static int write_sigio_thread(void *unused
)
53 struct pollfds
*fds
, tmp
;
58 signal(SIGWINCH
, SIG_IGN
);
61 n
= poll(fds
->poll
, fds
->used
, -1);
63 if(errno
== EINTR
) continue;
64 printk("write_sigio_thread : poll returned %d, "
65 "errno = %d\n", n
, errno
);
67 for(i
= 0; i
< fds
->used
; i
++){
69 if(p
->revents
== 0) continue;
70 if(p
->fd
== sigio_private
[1]){
71 n
= os_read_file(sigio_private
[1], &c
, sizeof(c
));
73 printk("write_sigio_thread : "
74 "read on socket failed, "
77 current_poll
= next_poll
;
79 respond_fd
= sigio_private
[1];
82 respond_fd
= write_sigio_fds
[1];
84 memmove(&fds
->poll
[i
], &fds
->poll
[i
+ 1],
85 (fds
->used
- i
) * sizeof(*fds
->poll
));
88 n
= os_write_file(respond_fd
, &c
, sizeof(c
));
90 printk("write_sigio_thread : write on socket "
91 "failed, err = %d\n", -n
);
98 static int need_poll(struct pollfds
*polls
, int n
)
100 if(n
<= polls
->size
){
105 polls
->poll
= um_kmalloc_atomic(n
* sizeof(struct pollfd
));
106 if(polls
->poll
== NULL
){
107 printk("need_poll : failed to allocate new pollfds\n");
117 /* Must be called with sigio_lock held, because it's needed by the marked
120 static void update_thread(void)
126 flags
= set_signals(0);
127 n
= os_write_file(sigio_private
[0], &c
, sizeof(c
));
129 printk("update_thread : write failed, err = %d\n", -n
);
133 n
= os_read_file(sigio_private
[0], &c
, sizeof(c
));
135 printk("update_thread : read failed, err = %d\n", -n
);
142 /* Critical section start */
143 if(write_sigio_pid
!= -1)
144 os_kill_process(write_sigio_pid
, 1);
145 write_sigio_pid
= -1;
146 close(sigio_private
[0]);
147 close(sigio_private
[1]);
148 close(write_sigio_fds
[0]);
149 close(write_sigio_fds
[1]);
150 /* Critical section end */
154 int add_sigio_fd(int fd
)
160 for(i
= 0; i
< all_sigio_fds
.used
; i
++){
161 if(all_sigio_fds
.poll
[i
].fd
== fd
)
164 if(i
== all_sigio_fds
.used
)
167 p
= &all_sigio_fds
.poll
[i
];
169 for(i
= 0; i
< current_poll
.used
; i
++){
170 if(current_poll
.poll
[i
].fd
== fd
)
174 n
= current_poll
.used
+ 1;
175 err
= need_poll(&next_poll
, n
);
179 for(i
= 0; i
< current_poll
.used
; i
++)
180 next_poll
.poll
[i
] = current_poll
.poll
[i
];
182 next_poll
.poll
[n
- 1] = *p
;
189 int ignore_sigio_fd(int fd
)
192 int err
= 0, i
, n
= 0;
194 /* This is called from exitcalls elsewhere in UML - if
195 * sigio_cleanup has already run, then update_thread will hang
196 * or fail because the thread is no longer running.
198 if(write_sigio_pid
== -1)
202 for(i
= 0; i
< current_poll
.used
; i
++){
203 if(current_poll
.poll
[i
].fd
== fd
) break;
205 if(i
== current_poll
.used
)
208 err
= need_poll(&next_poll
, current_poll
.used
- 1);
212 for(i
= 0; i
< current_poll
.used
; i
++){
213 p
= ¤t_poll
.poll
[i
];
215 next_poll
.poll
[n
++] = *p
;
224 static struct pollfd
*setup_initial_poll(int fd
)
228 p
= um_kmalloc(sizeof(struct pollfd
));
230 printk("setup_initial_poll : failed to allocate poll\n");
233 *p
= ((struct pollfd
) { .fd
= fd
,
239 static void write_sigio_workaround(void)
244 int l_write_sigio_fds
[2];
245 int l_sigio_private
[2];
246 int l_write_sigio_pid
;
248 /* We call this *tons* of times - and most ones we must just fail. */
250 l_write_sigio_pid
= write_sigio_pid
;
253 if (l_write_sigio_pid
!= -1)
256 err
= os_pipe(l_write_sigio_fds
, 1, 1);
258 printk("write_sigio_workaround - os_pipe 1 failed, "
262 err
= os_pipe(l_sigio_private
, 1, 1);
264 printk("write_sigio_workaround - os_pipe 2 failed, "
269 p
= setup_initial_poll(l_sigio_private
[1]);
275 /* Did we race? Don't try to optimize this, please, it's not so likely
276 * to happen, and no more than once at the boot. */
277 if(write_sigio_pid
!= -1)
280 current_poll
= ((struct pollfds
) { .poll
= p
,
284 if (write_sigio_irq(l_write_sigio_fds
[0]))
287 memcpy(write_sigio_fds
, l_write_sigio_fds
, sizeof(l_write_sigio_fds
));
288 memcpy(sigio_private
, l_sigio_private
, sizeof(l_sigio_private
));
290 write_sigio_pid
= run_helper_thread(write_sigio_thread
, NULL
,
291 CLONE_FILES
| CLONE_VM
, &stack
, 0);
293 if (write_sigio_pid
< 0)
300 write_sigio_pid
= -1;
301 write_sigio_fds
[0] = -1;
302 write_sigio_fds
[1] = -1;
303 sigio_private
[0] = -1;
304 sigio_private
[1] = -1;
306 current_poll
= ((struct pollfds
) { .poll
= NULL
,
313 close(l_sigio_private
[0]);
314 close(l_sigio_private
[1]);
316 close(l_write_sigio_fds
[0]);
317 close(l_write_sigio_fds
[1]);
320 void maybe_sigio_broken(int fd
, int read
)
327 if((read
|| pty_output_sigio
) && (!read
|| pty_close_sigio
))
330 write_sigio_workaround();
333 err
= need_poll(&all_sigio_fds
, all_sigio_fds
.used
+ 1);
335 printk("maybe_sigio_broken - failed to add pollfd\n");
338 all_sigio_fds
.poll
[all_sigio_fds
.used
++] =
339 ((struct pollfd
) { .fd
= fd
,
340 .events
= read
? POLLIN
: POLLOUT
,
346 static void sigio_cleanup(void)
348 if(write_sigio_pid
!= -1){
349 os_kill_process(write_sigio_pid
, 1);
350 write_sigio_pid
= -1;
354 __uml_exitcall(sigio_cleanup
);