1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2002 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com)
14 #include <kern_util.h>
18 #include <um_malloc.h>
21 * Protected by sigio_lock(), also used by sigio_cleanup, which is an
24 static int write_sigio_pid
= -1;
25 static unsigned long write_sigio_stack
;
28 * These arrays are initialized before the sigio thread is started, and
29 * the descriptors closed after it is killed. So, it can't see them change.
30 * On the UML side, they are changed under the sigio_lock.
32 #define SIGIO_FDS_INIT {-1, -1}
34 static int write_sigio_fds
[2] = SIGIO_FDS_INIT
;
35 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 os_fix_helper_signals();
61 n
= poll(fds
->poll
, fds
->used
, -1);
65 printk(UM_KERN_ERR
"write_sigio_thread : poll returned "
66 "%d, errno = %d\n", n
, errno
);
68 for (i
= 0; i
< fds
->used
; i
++) {
72 if (p
->fd
== sigio_private
[1]) {
73 CATCH_EINTR(n
= read(sigio_private
[1], &c
,
77 "write_sigio_thread : "
78 "read on socket failed, "
81 current_poll
= next_poll
;
83 respond_fd
= sigio_private
[1];
86 respond_fd
= write_sigio_fds
[1];
88 memmove(&fds
->poll
[i
], &fds
->poll
[i
+ 1],
89 (fds
->used
- i
) * sizeof(*fds
->poll
));
92 CATCH_EINTR(n
= write(respond_fd
, &c
, sizeof(c
)));
94 printk(UM_KERN_ERR
"write_sigio_thread : "
95 "write on socket failed, err = %d\n",
103 static int need_poll(struct pollfds
*polls
, int n
)
107 if (n
<= polls
->size
)
110 new = uml_kmalloc(n
* sizeof(struct pollfd
), UM_GFP_ATOMIC
);
112 printk(UM_KERN_ERR
"need_poll : failed to allocate new "
117 memcpy(new, polls
->poll
, polls
->used
* sizeof(struct pollfd
));
126 * Must be called with sigio_lock held, because it's needed by the marked
129 static void update_thread(void)
135 flags
= set_signals_trace(0);
136 CATCH_EINTR(n
= write(sigio_private
[0], &c
, sizeof(c
)));
137 if (n
!= sizeof(c
)) {
138 printk(UM_KERN_ERR
"update_thread : write failed, err = %d\n",
143 CATCH_EINTR(n
= read(sigio_private
[0], &c
, sizeof(c
)));
144 if (n
!= sizeof(c
)) {
145 printk(UM_KERN_ERR
"update_thread : read failed, err = %d\n",
150 set_signals_trace(flags
);
153 /* Critical section start */
154 if (write_sigio_pid
!= -1) {
155 os_kill_process(write_sigio_pid
, 1);
156 free_stack(write_sigio_stack
, 0);
158 write_sigio_pid
= -1;
159 close(sigio_private
[0]);
160 close(sigio_private
[1]);
161 close(write_sigio_fds
[0]);
162 close(write_sigio_fds
[1]);
163 /* Critical section end */
164 set_signals_trace(flags
);
167 int __add_sigio_fd(int fd
)
172 for (i
= 0; i
< all_sigio_fds
.used
; i
++) {
173 if (all_sigio_fds
.poll
[i
].fd
== fd
)
176 if (i
== all_sigio_fds
.used
)
179 p
= &all_sigio_fds
.poll
[i
];
181 for (i
= 0; i
< current_poll
.used
; i
++) {
182 if (current_poll
.poll
[i
].fd
== fd
)
186 n
= current_poll
.used
;
187 err
= need_poll(&next_poll
, n
+ 1);
191 memcpy(next_poll
.poll
, current_poll
.poll
,
192 current_poll
.used
* sizeof(struct pollfd
));
193 next_poll
.poll
[n
] = *p
;
194 next_poll
.used
= n
+ 1;
201 int add_sigio_fd(int fd
)
206 err
= __add_sigio_fd(fd
);
212 int __ignore_sigio_fd(int fd
)
218 * This is called from exitcalls elsewhere in UML - if
219 * sigio_cleanup has already run, then update_thread will hang
220 * or fail because the thread is no longer running.
222 if (write_sigio_pid
== -1)
225 for (i
= 0; i
< current_poll
.used
; i
++) {
226 if (current_poll
.poll
[i
].fd
== fd
)
229 if (i
== current_poll
.used
)
232 err
= need_poll(&next_poll
, current_poll
.used
- 1);
236 for (i
= 0; i
< current_poll
.used
; i
++) {
237 p
= ¤t_poll
.poll
[i
];
239 next_poll
.poll
[n
++] = *p
;
241 next_poll
.used
= current_poll
.used
- 1;
248 int ignore_sigio_fd(int fd
)
253 err
= __ignore_sigio_fd(fd
);
259 static struct pollfd
*setup_initial_poll(int fd
)
263 p
= uml_kmalloc(sizeof(struct pollfd
), UM_GFP_KERNEL
);
265 printk(UM_KERN_ERR
"setup_initial_poll : failed to allocate "
269 *p
= ((struct pollfd
) { .fd
= fd
,
275 static void write_sigio_workaround(void)
279 int l_write_sigio_fds
[2];
280 int l_sigio_private
[2];
281 int l_write_sigio_pid
;
283 /* We call this *tons* of times - and most ones we must just fail. */
285 l_write_sigio_pid
= write_sigio_pid
;
288 if (l_write_sigio_pid
!= -1)
291 err
= os_pipe(l_write_sigio_fds
, 1, 1);
293 printk(UM_KERN_ERR
"write_sigio_workaround - os_pipe 1 failed, "
297 err
= os_pipe(l_sigio_private
, 1, 1);
299 printk(UM_KERN_ERR
"write_sigio_workaround - os_pipe 2 failed, "
304 p
= setup_initial_poll(l_sigio_private
[1]);
311 * Did we race? Don't try to optimize this, please, it's not so likely
312 * to happen, and no more than once at the boot.
314 if (write_sigio_pid
!= -1)
317 current_poll
= ((struct pollfds
) { .poll
= p
,
321 if (write_sigio_irq(l_write_sigio_fds
[0]))
324 memcpy(write_sigio_fds
, l_write_sigio_fds
, sizeof(l_write_sigio_fds
));
325 memcpy(sigio_private
, l_sigio_private
, sizeof(l_sigio_private
));
327 write_sigio_pid
= run_helper_thread(write_sigio_thread
, NULL
,
328 CLONE_FILES
| CLONE_VM
,
331 if (write_sigio_pid
< 0)
338 write_sigio_pid
= -1;
339 write_sigio_fds
[0] = -1;
340 write_sigio_fds
[1] = -1;
341 sigio_private
[0] = -1;
342 sigio_private
[1] = -1;
344 current_poll
= ((struct pollfds
) { .poll
= NULL
,
351 close(l_sigio_private
[0]);
352 close(l_sigio_private
[1]);
354 close(l_write_sigio_fds
[0]);
355 close(l_write_sigio_fds
[1]);
358 void sigio_broken(int fd
)
362 write_sigio_workaround();
365 err
= need_poll(&all_sigio_fds
, all_sigio_fds
.used
+ 1);
367 printk(UM_KERN_ERR
"maybe_sigio_broken - failed to add pollfd "
368 "for descriptor %d\n", fd
);
372 all_sigio_fds
.poll
[all_sigio_fds
.used
++] =
373 ((struct pollfd
) { .fd
= fd
,
380 /* Changed during early boot */
381 static int pty_output_sigio
;
383 void maybe_sigio_broken(int fd
)
388 if (pty_output_sigio
)
394 static void sigio_cleanup(void)
396 if (write_sigio_pid
== -1)
399 os_kill_process(write_sigio_pid
, 1);
400 free_stack(write_sigio_stack
, 0);
401 write_sigio_pid
= -1;
404 __uml_exitcall(sigio_cleanup
);
406 /* Used as a flag during SIGIO testing early in boot */
407 static int got_sigio
;
409 static void __init
handler(int sig
)
420 static void openpty_cb(void *arg
)
422 struct openpty_arg
*info
= arg
;
425 if (openpty(&info
->master
, &info
->slave
, NULL
, NULL
, NULL
))
429 static int async_pty(int master
, int slave
)
433 flags
= fcntl(master
, F_GETFL
);
437 if ((fcntl(master
, F_SETFL
, flags
| O_NONBLOCK
| O_ASYNC
) < 0) ||
438 (fcntl(master
, F_SETOWN
, os_getpid()) < 0))
441 if ((fcntl(slave
, F_SETFL
, flags
| O_NONBLOCK
) < 0))
447 static void __init
check_one_sigio(void (*proc
)(int, int))
449 struct sigaction old
, new;
450 struct openpty_arg pty
= { .master
= -1, .slave
= -1 };
451 int master
, slave
, err
;
453 initial_thread_cb(openpty_cb
, &pty
);
455 printk(UM_KERN_ERR
"check_one_sigio failed, errno = %d\n",
463 if ((master
== -1) || (slave
== -1)) {
464 printk(UM_KERN_ERR
"check_one_sigio failed to allocate a "
469 /* Not now, but complain so we now where we failed. */
472 printk(UM_KERN_ERR
"check_one_sigio : raw failed, errno = %d\n",
477 err
= async_pty(master
, slave
);
479 printk(UM_KERN_ERR
"check_one_sigio : sigio_async failed, "
484 if (sigaction(SIGIO
, NULL
, &old
) < 0) {
485 printk(UM_KERN_ERR
"check_one_sigio : sigaction 1 failed, "
486 "errno = %d\n", errno
);
491 new.sa_handler
= handler
;
492 if (sigaction(SIGIO
, &new, NULL
) < 0) {
493 printk(UM_KERN_ERR
"check_one_sigio : sigaction 2 failed, "
494 "errno = %d\n", errno
);
499 (*proc
)(master
, slave
);
504 if (sigaction(SIGIO
, &old
, NULL
) < 0)
505 printk(UM_KERN_ERR
"check_one_sigio : sigaction 3 failed, "
506 "errno = %d\n", errno
);
509 static void tty_output(int master
, int slave
)
514 printk(UM_KERN_INFO
"Checking that host ptys support output SIGIO...");
516 memset(buf
, 0, sizeof(buf
));
518 while (write(master
, buf
, sizeof(buf
)) > 0) ;
520 printk(UM_KERN_ERR
"tty_output : write failed, errno = %d\n",
522 while (((n
= read(slave
, buf
, sizeof(buf
))) > 0) &&
523 !({ barrier(); got_sigio
; }))
527 printk(UM_KERN_CONT
"Yes\n");
528 pty_output_sigio
= 1;
529 } else if (n
== -EAGAIN
)
530 printk(UM_KERN_CONT
"No, enabling workaround\n");
532 printk(UM_KERN_CONT
"tty_output : read failed, err = %d\n", n
);
535 static void __init
check_sigio(void)
537 if ((access("/dev/ptmx", R_OK
) < 0) &&
538 (access("/dev/ptyp0", R_OK
) < 0)) {
539 printk(UM_KERN_WARNING
"No pseudo-terminals available - "
540 "skipping pty SIGIO check\n");
543 check_one_sigio(tty_output
);
546 /* Here because it only does the SIGIO testing for now */
547 void __init
os_check_bugs(void)