2 * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL
13 #include <sys/ioctl.h>
14 #include <sys/socket.h>
15 #include "kern_util.h"
16 #include "user_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 ttys and
55 * relay them inside UML to whatever might be running on the console and cares
56 * about the window size (since SIGWINCH notifies about terminal size changes).
58 * So, we have a separate thread for each host tty attached to a UML device
59 * (side-issue - I'm annoyed that one thread can't have multiple controlling
60 * ttys for purposed of handling SIGWINCH, but I imagine there are other reasons
61 * that doesn't make any sense).
63 * SIGWINCH can't be received synchronously, so you have to set up to receive it
64 * as a signal. That being the case, if you are going to wait for it, it is
65 * convenient to sit in sigsuspend() and wait for the signal to bounce you out of
66 * it (see below for how we make sure to exit only on SIGWINCH).
69 static void winch_handler(int sig)
79 static int winch_thread(void *arg)
81 struct winch_data *data = arg;
87 os_close_file(data->close_me);
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, err = %d\n", -err);
121 /* These are synchronization calls between various UML threads on the
122 * host - since they are not different kernel threads, we cannot use
123 * kernel semaphores. We don't use SysV semaphores because they are
125 count = os_read_file(pipe_fd, &c, sizeof(c));
126 if(count != sizeof(c))
127 printk("winch_thread : failed to read synchronization byte, "
128 "err = %d\n", -count);
131 /* This will be interrupted by SIGWINCH only, since other signals
135 count = os_write_file(pipe_fd, &c, sizeof(c));
136 if(count != sizeof(c))
137 printk("winch_thread : write failed, err = %d\n",
142 static int winch_tramp(int fd, struct tty_struct *tty, int *fd_out)
144 struct winch_data data;
149 err = os_pipe(fds, 1, 1);
151 printk("winch_tramp : os_pipe failed, err = %d\n", -err);
155 data = ((struct winch_data) { .pty_fd = fd,
157 .close_me = fds[0] } );
158 err = run_helper_thread(winch_thread, &data, 0, &stack, 0);
160 printk("fork of winch_thread failed - errno = %d\n", errno);
164 os_close_file(fds[1]);
166 n = os_read_file(fds[0], &c, sizeof(c));
168 printk("winch_tramp : failed to read synchronization byte\n");
169 printk("read failed, err = %d\n", -n);
170 printk("fd %d will not support SIGWINCH\n", fd);
177 os_close_file(fds[1]);
179 os_close_file(fds[0]);
184 void register_winch(int fd, struct tty_struct *tty)
186 int pid, thread, thread_fd = -1;
194 if(!CHOOSE_MODE_PROC(is_tracer_winch, is_skas_winch, pid, fd,
195 tty) && (pid == -1)){
196 thread = winch_tramp(fd, tty, &thread_fd);
198 register_winch_irq(thread_fd, fd, thread, tty);
200 count = os_write_file(thread_fd, &c, sizeof(c));
201 if(count != sizeof(c))
202 printk("register_winch : failed to write "
203 "synchronization byte, err = %d\n",
210 * Overrides for Emacs so that we follow Linus's tabbing style.
211 * Emacs will notice this stuff at the end of the file and automatically
212 * adjust the settings for this buffer only. This must remain at the end
214 * ---------------------------------------------------------------------------
216 * c-file-style: "linux"