blob: 77557e233f58f683586d71b5d918324591e53eb3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikee99525f2007-10-16 01:26:41 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <stdlib.h>
Jeff Dikee99525f2007-10-16 01:26:41 -07007#include <unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <errno.h>
Jeff Dike1d2ddcf2006-02-07 12:58:41 -08009#include <sched.h>
Jeff Dikee99525f2007-10-16 01:26:41 -070010#include <signal.h>
11#include <termios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <sys/ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "chan_user.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "os.h"
Jeff Dike89fe6472007-10-16 01:26:39 -070015#include "um_malloc.h"
Jeff Dikee99525f2007-10-16 01:26:41 -070016#include "user.h"
Jeff Dike89fe6472007-10-16 01:26:39 -070017
18void generic_close(int fd, void *unused)
19{
Jeff Dike8e2d10e2007-10-16 01:26:40 -070020 close(fd);
Jeff Dike89fe6472007-10-16 01:26:39 -070021}
22
23int generic_read(int fd, char *c_out, void *unused)
24{
25 int n;
26
Jeff Dike8e2d10e2007-10-16 01:26:40 -070027 n = read(fd, c_out, sizeof(*c_out));
28 if (n > 0)
29 return n;
30 else if (errno == EAGAIN)
Jeff Dike89fe6472007-10-16 01:26:39 -070031 return 0;
Jeff Dike8e2d10e2007-10-16 01:26:40 -070032 else if (n == 0)
Jeff Dike89fe6472007-10-16 01:26:39 -070033 return -EIO;
Jeff Dike8e2d10e2007-10-16 01:26:40 -070034 return -errno;
Jeff Dike89fe6472007-10-16 01:26:39 -070035}
36
Jeff Dike8e2d10e2007-10-16 01:26:40 -070037/* XXX Trivial wrapper around write */
Jeff Dike89fe6472007-10-16 01:26:39 -070038
39int generic_write(int fd, const char *buf, int n, void *unused)
40{
Jeff Dike8e2d10e2007-10-16 01:26:40 -070041 return write(fd, buf, n);
Jeff Dike89fe6472007-10-16 01:26:39 -070042}
43
44int generic_window_size(int fd, void *unused, unsigned short *rows_out,
45 unsigned short *cols_out)
46{
Jeff Dike8e2d10e2007-10-16 01:26:40 -070047 struct winsize size;
Jeff Dike89fe6472007-10-16 01:26:39 -070048 int ret;
49
Jeff Dikee99525f2007-10-16 01:26:41 -070050 if (ioctl(fd, TIOCGWINSZ, &size) < 0)
Jeff Dike8e2d10e2007-10-16 01:26:40 -070051 return -errno;
Jeff Dike89fe6472007-10-16 01:26:39 -070052
Jeff Dike8e2d10e2007-10-16 01:26:40 -070053 ret = ((*rows_out != size.ws_row) || (*cols_out != size.ws_col));
Jeff Dike89fe6472007-10-16 01:26:39 -070054
Jeff Dike8e2d10e2007-10-16 01:26:40 -070055 *rows_out = size.ws_row;
56 *cols_out = size.ws_col;
Jeff Dike89fe6472007-10-16 01:26:39 -070057
58 return ret;
59}
60
61void generic_free(void *data)
62{
63 kfree(data);
64}
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Paolo 'Blaisorblade' Giarrusso55c033c2005-11-13 16:07:11 -080066int generic_console_write(int fd, const char *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 struct termios save, new;
69 int err;
70
Jeff Dikee99525f2007-10-16 01:26:41 -070071 if (isatty(fd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 CATCH_EINTR(err = tcgetattr(fd, &save));
73 if (err)
74 goto error;
75 new = save;
76 /* The terminal becomes a bit less raw, to handle \n also as
77 * "Carriage Return", not only as "New Line". Otherwise, the new
78 * line won't start at the first column.*/
79 new.c_oflag |= OPOST;
80 CATCH_EINTR(err = tcsetattr(fd, TCSAFLUSH, &new));
81 if (err)
82 goto error;
83 }
84 err = generic_write(fd, buf, n, NULL);
85 /* Restore raw mode, in any case; we *must* ignore any error apart
86 * EINTR, except for debug.*/
Jeff Dikee99525f2007-10-16 01:26:41 -070087 if (isatty(fd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 CATCH_EINTR(tcsetattr(fd, TCSAFLUSH, &save));
Jeff Dikee99525f2007-10-16 01:26:41 -070089 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090error:
Jeff Dikee99525f2007-10-16 01:26:41 -070091 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94/*
95 * UML SIGWINCH handling
96 *
Jeff Dike42a359e2007-07-15 23:38:55 -070097 * The point of this is to handle SIGWINCH on consoles which have host
98 * ttys and relay them inside UML to whatever might be running on the
99 * console and cares about the window size (since SIGWINCH notifies
100 * about terminal size changes).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
Jeff Dike42a359e2007-07-15 23:38:55 -0700102 * So, we have a separate thread for each host tty attached to a UML
103 * device (side-issue - I'm annoyed that one thread can't have
104 * multiple controlling ttys for the purpose of handling SIGWINCH, but
105 * I imagine there are other reasons that doesn't make any sense).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 *
Jeff Dike42a359e2007-07-15 23:38:55 -0700107 * SIGWINCH can't be received synchronously, so you have to set up to
108 * receive it as a signal. That being the case, if you are going to
109 * wait for it, it is convenient to sit in sigsuspend() and wait for
110 * the signal to bounce you out of it (see below for how we make sure
111 * to exit only on SIGWINCH).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
113
114static void winch_handler(int sig)
115{
116}
117
118struct winch_data {
119 int pty_fd;
120 int pipe_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
123static int winch_thread(void *arg)
124{
125 struct winch_data *data = arg;
126 sigset_t sigs;
127 int pty_fd, pipe_fd;
128 int count, err;
129 char c = 1;
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 pty_fd = data->pty_fd;
132 pipe_fd = data->pipe_fd;
Jeff Dikea6ea4cc2007-05-06 14:51:43 -0700133 count = os_write_file(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700134 if (count != sizeof(c))
135 printk(UM_KERN_ERR "winch_thread : failed to write "
136 "synchronization byte, err = %d\n", -count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Jeff Dikee99525f2007-10-16 01:26:41 -0700138 /*
139 * We are not using SIG_IGN on purpose, so don't fix it as I thought to
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700140 * do! If using SIG_IGN, the sigsuspend() call below would not stop on
Jeff Dikee99525f2007-10-16 01:26:41 -0700141 * SIGWINCH.
142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 signal(SIGWINCH, winch_handler);
145 sigfillset(&sigs);
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700146 /* Block all signals possible. */
Jeff Dikee99525f2007-10-16 01:26:41 -0700147 if (sigprocmask(SIG_SETMASK, &sigs, NULL) < 0) {
148 printk(UM_KERN_ERR "winch_thread : sigprocmask failed, "
149 "errno = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 exit(1);
151 }
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700152 /* In sigsuspend(), block anything else than SIGWINCH. */
153 sigdelset(&sigs, SIGWINCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Jeff Dikee99525f2007-10-16 01:26:41 -0700155 if (setsid() < 0) {
156 printk(UM_KERN_ERR "winch_thread : setsid failed, errno = %d\n",
157 errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 exit(1);
159 }
160
161 err = os_new_tty_pgrp(pty_fd, os_getpid());
Jeff Dikee99525f2007-10-16 01:26:41 -0700162 if (err < 0) {
163 printk(UM_KERN_ERR "winch_thread : new_tty_pgrp failed on "
164 "fd %d err = %d\n", pty_fd, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 exit(1);
166 }
167
Jeff Dikee99525f2007-10-16 01:26:41 -0700168 /*
169 * These are synchronization calls between various UML threads on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * host - since they are not different kernel threads, we cannot use
171 * kernel semaphores. We don't use SysV semaphores because they are
Jeff Dikee99525f2007-10-16 01:26:41 -0700172 * persistent.
173 */
Jeff Dikea6ea4cc2007-05-06 14:51:43 -0700174 count = os_read_file(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700175 if (count != sizeof(c))
176 printk(UM_KERN_ERR "winch_thread : failed to read "
177 "synchronization byte, err = %d\n", -count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Jeff Dikee99525f2007-10-16 01:26:41 -0700179 while(1) {
180 /*
181 * This will be interrupted by SIGWINCH only, since
Jeff Dike42a359e2007-07-15 23:38:55 -0700182 * other signals are blocked.
183 */
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700184 sigsuspend(&sigs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Jeff Dikea6ea4cc2007-05-06 14:51:43 -0700186 count = os_write_file(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700187 if (count != sizeof(c))
188 printk(UM_KERN_ERR "winch_thread : write failed, "
189 "err = %d\n", -count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191}
192
Jeff Dike42a359e2007-07-15 23:38:55 -0700193static int winch_tramp(int fd, struct tty_struct *tty, int *fd_out,
194 unsigned long *stack_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 struct winch_data data;
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700197 int fds[2], n, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 char c;
199
200 err = os_pipe(fds, 1, 1);
Jeff Dikee99525f2007-10-16 01:26:41 -0700201 if (err < 0) {
202 printk(UM_KERN_ERR "winch_tramp : os_pipe failed, err = %d\n",
203 -err);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700204 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
207 data = ((struct winch_data) { .pty_fd = fd,
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800208 .pipe_fd = fds[1] } );
Jeff Dikee99525f2007-10-16 01:26:41 -0700209 /*
210 * CLONE_FILES so this thread doesn't hold open files which are open
Jeff Dike42a359e2007-07-15 23:38:55 -0700211 * now, but later closed in a different thread. This is a
212 * problem with /dev/net/tun, which if held open by this
213 * thread, prevents the TUN/TAP device from being reused.
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800214 */
Jeff Dikec4399012007-07-15 23:38:56 -0700215 err = run_helper_thread(winch_thread, &data, CLONE_FILES, stack_out);
Jeff Dikee99525f2007-10-16 01:26:41 -0700216 if (err < 0) {
217 printk(UM_KERN_ERR "fork of winch_thread failed - errno = %d\n",
218 -err);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700219 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *fd_out = fds[0];
Jeff Dikea6ea4cc2007-05-06 14:51:43 -0700223 n = os_read_file(fds[0], &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700224 if (n != sizeof(c)) {
225 printk(UM_KERN_ERR "winch_tramp : failed to read "
226 "synchronization byte\n");
227 printk(UM_KERN_ERR "read failed, err = %d\n", -n);
228 printk(UM_KERN_ERR "fd %d will not support SIGWINCH\n", fd);
229 err = -EINVAL;
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800230 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Eduard-Gabriel Munteanu89df6bf2007-07-15 23:38:51 -0700232
233 if (os_set_fd_block(*fd_out, 0)) {
Jeff Dikee99525f2007-10-16 01:26:41 -0700234 printk(UM_KERN_ERR "winch_tramp: failed to set thread_fd "
235 "non-blocking.\n");
Eduard-Gabriel Munteanu89df6bf2007-07-15 23:38:51 -0700236 goto out_close;
237 }
238
239 return err;
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700240
241 out_close:
242 os_close_file(fds[1]);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700243 os_close_file(fds[0]);
244 out:
245 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248void register_winch(int fd, struct tty_struct *tty)
249{
Jeff Dike42a359e2007-07-15 23:38:55 -0700250 unsigned long stack;
251 int pid, thread, count, thread_fd = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 char c = 1;
253
Jeff Dikee99525f2007-10-16 01:26:41 -0700254 if (!isatty(fd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return;
256
257 pid = tcgetpgrp(fd);
Jeff Dike42a359e2007-07-15 23:38:55 -0700258 if (!CHOOSE_MODE_PROC(is_tracer_winch, is_skas_winch, pid, fd, tty) &&
259 (pid == -1)) {
260 thread = winch_tramp(fd, tty, &thread_fd, &stack);
261 if (thread < 0)
262 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Jeff Dike42a359e2007-07-15 23:38:55 -0700264 register_winch_irq(thread_fd, fd, thread, tty, stack);
265
266 count = os_write_file(thread_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700267 if (count != sizeof(c))
268 printk(UM_KERN_ERR "register_winch : failed to write "
Jeff Dike42a359e2007-07-15 23:38:55 -0700269 "synchronization byte, err = %d\n", -count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271}