2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com)
3 * Licensed under the GPL
12 #include <sys/ioctl.h>
13 #include "chan_user.h"
14 #include "kern_constants.h"
16 #include "um_malloc.h"
19 void generic_close(int fd
, void *unused
)
24 int generic_read(int fd
, char *c_out
, void *unused
)
28 n
= read(fd
, c_out
, sizeof(*c_out
));
31 else if (errno
== EAGAIN
)
38 /* XXX Trivial wrapper around write */
40 int generic_write(int fd
, const char *buf
, int n
, void *unused
)
44 err
= write(fd
, buf
, n
);
47 else if (errno
== EAGAIN
)
54 int generic_window_size(int fd
, void *unused
, unsigned short *rows_out
,
55 unsigned short *cols_out
)
60 if (ioctl(fd
, TIOCGWINSZ
, &size
) < 0)
63 ret
= ((*rows_out
!= size
.ws_row
) || (*cols_out
!= size
.ws_col
));
65 *rows_out
= size
.ws_row
;
66 *cols_out
= size
.ws_col
;
71 void generic_free(void *data
)
76 int generic_console_write(int fd
, const char *buf
, int n
)
78 sigset_t old
, no_sigio
;
79 struct termios save
, new;
83 sigemptyset(&no_sigio
);
84 sigaddset(&no_sigio
, SIGIO
);
85 if (sigprocmask(SIG_BLOCK
, &no_sigio
, &old
))
88 CATCH_EINTR(err
= tcgetattr(fd
, &save
));
93 * The terminal becomes a bit less raw, to handle \n also as
94 * "Carriage Return", not only as "New Line". Otherwise, the new
95 * line won't start at the first column.
98 CATCH_EINTR(err
= tcsetattr(fd
, TCSAFLUSH
, &new));
102 err
= generic_write(fd
, buf
, n
, NULL
);
104 * Restore raw mode, in any case; we *must* ignore any error apart
105 * EINTR, except for debug.
108 CATCH_EINTR(tcsetattr(fd
, TCSAFLUSH
, &save
));
109 sigprocmask(SIG_SETMASK
, &old
, NULL
);
118 * UML SIGWINCH handling
120 * The point of this is to handle SIGWINCH on consoles which have host
121 * ttys and relay them inside UML to whatever might be running on the
122 * console and cares about the window size (since SIGWINCH notifies
123 * about terminal size changes).
125 * So, we have a separate thread for each host tty attached to a UML
126 * device (side-issue - I'm annoyed that one thread can't have
127 * multiple controlling ttys for the purpose of handling SIGWINCH, but
128 * I imagine there are other reasons that doesn't make any sense).
130 * SIGWINCH can't be received synchronously, so you have to set up to
131 * receive it as a signal. That being the case, if you are going to
132 * wait for it, it is convenient to sit in sigsuspend() and wait for
133 * the signal to bounce you out of it (see below for how we make sure
134 * to exit only on SIGWINCH).
137 static void winch_handler(int sig
)
146 static int winch_thread(void *arg
)
148 struct winch_data
*data
= arg
;
154 pty_fd
= data
->pty_fd
;
155 pipe_fd
= data
->pipe_fd
;
156 count
= write(pipe_fd
, &c
, sizeof(c
));
157 if (count
!= sizeof(c
))
158 printk(UM_KERN_ERR
"winch_thread : failed to write "
159 "synchronization byte, err = %d\n", -count
);
162 * We are not using SIG_IGN on purpose, so don't fix it as I thought to
163 * do! If using SIG_IGN, the sigsuspend() call below would not stop on
167 signal(SIGWINCH
, winch_handler
);
169 /* Block all signals possible. */
170 if (sigprocmask(SIG_SETMASK
, &sigs
, NULL
) < 0) {
171 printk(UM_KERN_ERR
"winch_thread : sigprocmask failed, "
172 "errno = %d\n", errno
);
175 /* In sigsuspend(), block anything else than SIGWINCH. */
176 sigdelset(&sigs
, SIGWINCH
);
179 printk(UM_KERN_ERR
"winch_thread : setsid failed, errno = %d\n",
184 if (ioctl(pty_fd
, TIOCSCTTY
, 0) < 0) {
185 printk(UM_KERN_ERR
"winch_thread : TIOCSCTTY failed on "
186 "fd %d err = %d\n", pty_fd
, errno
);
190 if (tcsetpgrp(pty_fd
, os_getpid()) < 0) {
191 printk(UM_KERN_ERR
"winch_thread : tcsetpgrp failed on "
192 "fd %d err = %d\n", pty_fd
, errno
);
197 * These are synchronization calls between various UML threads on the
198 * host - since they are not different kernel threads, we cannot use
199 * kernel semaphores. We don't use SysV semaphores because they are
202 count
= read(pipe_fd
, &c
, sizeof(c
));
203 if (count
!= sizeof(c
))
204 printk(UM_KERN_ERR
"winch_thread : failed to read "
205 "synchronization byte, err = %d\n", errno
);
209 * This will be interrupted by SIGWINCH only, since
210 * other signals are blocked.
214 count
= write(pipe_fd
, &c
, sizeof(c
));
215 if (count
!= sizeof(c
))
216 printk(UM_KERN_ERR
"winch_thread : write failed, "
217 "err = %d\n", errno
);
221 static int winch_tramp(int fd
, struct tty_struct
*tty
, int *fd_out
,
222 unsigned long *stack_out
)
224 struct winch_data data
;
228 err
= os_pipe(fds
, 1, 1);
230 printk(UM_KERN_ERR
"winch_tramp : os_pipe failed, err = %d\n",
235 data
= ((struct winch_data
) { .pty_fd
= fd
,
236 .pipe_fd
= fds
[1] } );
238 * CLONE_FILES so this thread doesn't hold open files which are open
239 * now, but later closed in a different thread. This is a
240 * problem with /dev/net/tun, which if held open by this
241 * thread, prevents the TUN/TAP device from being reused.
243 err
= run_helper_thread(winch_thread
, &data
, CLONE_FILES
, stack_out
);
245 printk(UM_KERN_ERR
"fork of winch_thread failed - errno = %d\n",
251 n
= read(fds
[0], &c
, sizeof(c
));
252 if (n
!= sizeof(c
)) {
253 printk(UM_KERN_ERR
"winch_tramp : failed to read "
254 "synchronization byte\n");
255 printk(UM_KERN_ERR
"read failed, err = %d\n", errno
);
256 printk(UM_KERN_ERR
"fd %d will not support SIGWINCH\n", fd
);
261 if (os_set_fd_block(*fd_out
, 0)) {
262 printk(UM_KERN_ERR
"winch_tramp: failed to set thread_fd "
276 void register_winch(int fd
, struct tty_struct
*tty
)
279 int pid
, thread
, count
, thread_fd
= -1;
286 if (!is_skas_winch(pid
, fd
, tty
) && (pid
== -1)) {
287 thread
= winch_tramp(fd
, tty
, &thread_fd
, &stack
);
291 register_winch_irq(thread_fd
, fd
, thread
, tty
, stack
);
293 count
= write(thread_fd
, &c
, sizeof(c
));
294 if (count
!= sizeof(c
))
295 printk(UM_KERN_ERR
"register_winch : failed to write "
296 "synchronization byte, err = %d\n", errno
);