2 * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL
14 #include <sys/ioctl.h>
15 #include <sys/socket.h>
16 #include "kern_util.h"
17 #include "chan_user.h"
20 #include "choose-mode.h"
23 int generic_console_write(int fd, const char *buf, int n)
25 struct termios save, new;
29 CATCH_EINTR(err = tcgetattr(fd, &save));
33 /* The terminal becomes a bit less raw, to handle \n also as
34 * "Carriage Return", not only as "New Line". Otherwise, the new
35 * line won't start at the first column.*/
37 CATCH_EINTR(err = tcsetattr(fd, TCSAFLUSH, &new));
41 err = generic_write(fd, buf, n, NULL);
42 /* Restore raw mode, in any case; we *must* ignore any error apart
43 * EINTR, except for debug.*/
45 CATCH_EINTR(tcsetattr(fd, TCSAFLUSH, &save));
52 * UML SIGWINCH handling
54 * The point of this is to handle SIGWINCH on consoles which have host
55 * ttys and relay them inside UML to whatever might be running on the
56 * console and cares about the window size (since SIGWINCH notifies
57 * about terminal size changes).
59 * So, we have a separate thread for each host tty attached to a UML
60 * device (side-issue - I'm annoyed that one thread can't have
61 * multiple controlling ttys for the purpose of handling SIGWINCH, but
62 * I imagine there are other reasons that doesn't make any sense).
64 * SIGWINCH can't be received synchronously, so you have to set up to
65 * receive it as a signal. That being the case, if you are going to
66 * wait for it, it is convenient to sit in sigsuspend() and wait for
67 * the signal to bounce you out of it (see below for how we make sure
68 * to exit only on SIGWINCH).
71 static void winch_handler(int sig)
80 static int winch_thread(void *arg)
82 struct winch_data *data = arg;
88 pty_fd = data->pty_fd;
89 pipe_fd = data->pipe_fd;
90 count = os_write_file(pipe_fd, &c, sizeof(c));
91 if(count != sizeof(c))
92 printk("winch_thread : failed to write synchronization "
93 "byte, err = %d\n", -count);
95 /* We are not using SIG_IGN on purpose, so don't fix it as I thought to
96 * do! If using SIG_IGN, the sigsuspend() call below would not stop on
99 signal(SIGWINCH, winch_handler);
101 /* Block all signals possible. */
102 if(sigprocmask(SIG_SETMASK, &sigs, NULL) < 0){
103 printk("winch_thread : sigprocmask failed, errno = %d\n",
107 /* In sigsuspend(), block anything else than SIGWINCH. */
108 sigdelset(&sigs, SIGWINCH);
111 printk("winch_thread : setsid failed, errno = %d\n", errno);
115 err = os_new_tty_pgrp(pty_fd, os_getpid());
117 printk("winch_thread : new_tty_pgrp failed on fd %d, "
118 "err = %d\n", pty_fd, -err);
122 /* These are synchronization calls between various UML threads on the
123 * host - since they are not different kernel threads, we cannot use
124 * kernel semaphores. We don't use SysV semaphores because they are
126 count = os_read_file(pipe_fd, &c, sizeof(c));
127 if(count != sizeof(c))
128 printk("winch_thread : failed to read synchronization byte, "
129 "err = %d\n", -count);
132 /* This will be interrupted by SIGWINCH only, since
133 * other signals are blocked.
137 count = os_write_file(pipe_fd, &c, sizeof(c));
138 if(count != sizeof(c))
139 printk("winch_thread : write failed, err = %d\n",
144 static int winch_tramp(int fd, struct tty_struct *tty, int *fd_out,
145 unsigned long *stack_out)
147 struct winch_data data;
151 err = os_pipe(fds, 1, 1);
153 printk("winch_tramp : os_pipe failed, err = %d\n", -err);
157 data = ((struct winch_data) { .pty_fd = fd,
158 .pipe_fd = fds[1] } );
159 /* CLONE_FILES so this thread doesn't hold open files which are open
160 * now, but later closed in a different thread. This is a
161 * problem with /dev/net/tun, which if held open by this
162 * thread, prevents the TUN/TAP device from being reused.
164 err = run_helper_thread(winch_thread, &data, CLONE_FILES, stack_out);
166 printk("fork of winch_thread failed - errno = %d\n", -err);
171 n = os_read_file(fds[0], &c, sizeof(c));
173 printk("winch_tramp : failed to read synchronization byte\n");
174 printk("read failed, err = %d\n", -n);
175 printk("fd %d will not support SIGWINCH\n", fd);
180 if (os_set_fd_block(*fd_out, 0)) {
181 printk("winch_tramp: failed to set thread_fd non-blocking.\n");
188 os_close_file(fds[1]);
189 os_close_file(fds[0]);
194 void register_winch(int fd, struct tty_struct *tty)
197 int pid, thread, count, thread_fd = -1;
204 if (!CHOOSE_MODE_PROC(is_tracer_winch, is_skas_winch, pid, fd, tty) &&
206 thread = winch_tramp(fd, tty, &thread_fd, &stack);
210 register_winch_irq(thread_fd, fd, thread, tty, stack);
212 count = os_write_file(thread_fd, &c, sizeof(c));
213 if(count != sizeof(c))
214 printk("register_winch : failed to write "
215 "synchronization byte, err = %d\n", -count);