blob: cfeb3f4a44afc0ef9cb6a5edf5e08d0d81ec32a1 [file] [log] [blame]
Jeff Dikecb8fa612007-10-16 01:27:34 -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"
Jeff Dike43f5b302008-05-12 14:01:52 -070014#include "kern_constants.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "os.h"
Jeff Dike89fe6472007-10-16 01:26:39 -070016#include "um_malloc.h"
Jeff Dikee99525f2007-10-16 01:26:41 -070017#include "user.h"
Jeff Dike89fe6472007-10-16 01:26:39 -070018
19void generic_close(int fd, void *unused)
20{
Jeff Dike8e2d10e2007-10-16 01:26:40 -070021 close(fd);
Jeff Dike89fe6472007-10-16 01:26:39 -070022}
23
24int generic_read(int fd, char *c_out, void *unused)
25{
26 int n;
27
Jeff Dike8e2d10e2007-10-16 01:26:40 -070028 n = read(fd, c_out, sizeof(*c_out));
29 if (n > 0)
30 return n;
31 else if (errno == EAGAIN)
Jeff Dike89fe6472007-10-16 01:26:39 -070032 return 0;
Jeff Dike8e2d10e2007-10-16 01:26:40 -070033 else if (n == 0)
Jeff Dike89fe6472007-10-16 01:26:39 -070034 return -EIO;
Jeff Dike8e2d10e2007-10-16 01:26:40 -070035 return -errno;
Jeff Dike89fe6472007-10-16 01:26:39 -070036}
37
Jeff Dike8e2d10e2007-10-16 01:26:40 -070038/* XXX Trivial wrapper around write */
Jeff Dike89fe6472007-10-16 01:26:39 -070039
40int generic_write(int fd, const char *buf, int n, void *unused)
41{
Jeff Dikec59dbca2007-10-16 01:26:42 -070042 int err;
43
44 err = write(fd, buf, n);
45 if (err > 0)
46 return err;
47 else if (errno == EAGAIN)
48 return 0;
49 else if (err == 0)
50 return -EIO;
51 return -errno;
Jeff Dike89fe6472007-10-16 01:26:39 -070052}
53
54int generic_window_size(int fd, void *unused, unsigned short *rows_out,
55 unsigned short *cols_out)
56{
Jeff Dike8e2d10e2007-10-16 01:26:40 -070057 struct winsize size;
Jeff Dike89fe6472007-10-16 01:26:39 -070058 int ret;
59
Jeff Dikee99525f2007-10-16 01:26:41 -070060 if (ioctl(fd, TIOCGWINSZ, &size) < 0)
Jeff Dike8e2d10e2007-10-16 01:26:40 -070061 return -errno;
Jeff Dike89fe6472007-10-16 01:26:39 -070062
Jeff Dike8e2d10e2007-10-16 01:26:40 -070063 ret = ((*rows_out != size.ws_row) || (*cols_out != size.ws_col));
Jeff Dike89fe6472007-10-16 01:26:39 -070064
Jeff Dike8e2d10e2007-10-16 01:26:40 -070065 *rows_out = size.ws_row;
66 *cols_out = size.ws_col;
Jeff Dike89fe6472007-10-16 01:26:39 -070067
68 return ret;
69}
70
71void generic_free(void *data)
72{
73 kfree(data);
74}
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Paolo 'Blaisorblade' Giarrusso55c033c2005-11-13 16:07:11 -080076int generic_console_write(int fd, const char *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Jeff Dikece3b6422007-12-01 12:16:30 -080078 sigset_t old, no_sigio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct termios save, new;
80 int err;
81
Jeff Dikee99525f2007-10-16 01:26:41 -070082 if (isatty(fd)) {
Jeff Dikece3b6422007-12-01 12:16:30 -080083 sigemptyset(&no_sigio);
84 sigaddset(&no_sigio, SIGIO);
85 if (sigprocmask(SIG_BLOCK, &no_sigio, &old))
86 goto error;
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 CATCH_EINTR(err = tcgetattr(fd, &save));
89 if (err)
90 goto error;
91 new = save;
Jeff Dikecb8fa612007-10-16 01:27:34 -070092 /*
93 * The terminal becomes a bit less raw, to handle \n also as
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * "Carriage Return", not only as "New Line". Otherwise, the new
Jeff Dikecb8fa612007-10-16 01:27:34 -070095 * line won't start at the first column.
96 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 new.c_oflag |= OPOST;
98 CATCH_EINTR(err = tcsetattr(fd, TCSAFLUSH, &new));
99 if (err)
100 goto error;
101 }
102 err = generic_write(fd, buf, n, NULL);
Jeff Dikecb8fa612007-10-16 01:27:34 -0700103 /*
104 * Restore raw mode, in any case; we *must* ignore any error apart
105 * EINTR, except for debug.
106 */
Jeff Dikece3b6422007-12-01 12:16:30 -0800107 if (isatty(fd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 CATCH_EINTR(tcsetattr(fd, TCSAFLUSH, &save));
Jeff Dikece3b6422007-12-01 12:16:30 -0800109 sigprocmask(SIG_SETMASK, &old, NULL);
110 }
111
Jeff Dikee99525f2007-10-16 01:26:41 -0700112 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113error:
Jeff Dikee99525f2007-10-16 01:26:41 -0700114 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117/*
118 * UML SIGWINCH handling
119 *
Jeff Dike42a359e2007-07-15 23:38:55 -0700120 * 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 *
Jeff Dike42a359e2007-07-15 23:38:55 -0700125 * 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 *
Jeff Dike42a359e2007-07-15 23:38:55 -0700130 * 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
136
137static void winch_handler(int sig)
138{
139}
140
141struct winch_data {
142 int pty_fd;
143 int pipe_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146static int winch_thread(void *arg)
147{
148 struct winch_data *data = arg;
149 sigset_t sigs;
150 int pty_fd, pipe_fd;
Jeff Dike8ca842c2007-10-16 01:27:08 -0700151 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 char c = 1;
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 pty_fd = data->pty_fd;
155 pipe_fd = data->pipe_fd;
Jeff Dike8ca842c2007-10-16 01:27:08 -0700156 count = write(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700157 if (count != sizeof(c))
158 printk(UM_KERN_ERR "winch_thread : failed to write "
159 "synchronization byte, err = %d\n", -count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Jeff Dikee99525f2007-10-16 01:26:41 -0700161 /*
162 * We are not using SIG_IGN on purpose, so don't fix it as I thought to
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700163 * do! If using SIG_IGN, the sigsuspend() call below would not stop on
Jeff Dikee99525f2007-10-16 01:26:41 -0700164 * SIGWINCH.
165 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 signal(SIGWINCH, winch_handler);
168 sigfillset(&sigs);
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700169 /* Block all signals possible. */
Jeff Dikee99525f2007-10-16 01:26:41 -0700170 if (sigprocmask(SIG_SETMASK, &sigs, NULL) < 0) {
171 printk(UM_KERN_ERR "winch_thread : sigprocmask failed, "
172 "errno = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 exit(1);
174 }
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700175 /* In sigsuspend(), block anything else than SIGWINCH. */
176 sigdelset(&sigs, SIGWINCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Jeff Dikee99525f2007-10-16 01:26:41 -0700178 if (setsid() < 0) {
179 printk(UM_KERN_ERR "winch_thread : setsid failed, errno = %d\n",
180 errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 exit(1);
182 }
183
Jeff Dikecb8fa612007-10-16 01:27:34 -0700184 if (ioctl(pty_fd, TIOCSCTTY, 0) < 0) {
Jeff Dike8ca842c2007-10-16 01:27:08 -0700185 printk(UM_KERN_ERR "winch_thread : TIOCSCTTY failed on "
186 "fd %d err = %d\n", pty_fd, errno);
187 exit(1);
188 }
189
Jeff Dikecb8fa612007-10-16 01:27:34 -0700190 if (tcsetpgrp(pty_fd, os_getpid()) < 0) {
Jeff Dike8ca842c2007-10-16 01:27:08 -0700191 printk(UM_KERN_ERR "winch_thread : tcsetpgrp failed on "
192 "fd %d err = %d\n", pty_fd, errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 exit(1);
194 }
195
Jeff Dikee99525f2007-10-16 01:26:41 -0700196 /*
197 * These are synchronization calls between various UML threads on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * host - since they are not different kernel threads, we cannot use
199 * kernel semaphores. We don't use SysV semaphores because they are
Jeff Dikee99525f2007-10-16 01:26:41 -0700200 * persistent.
201 */
Jeff Dike8ca842c2007-10-16 01:27:08 -0700202 count = read(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700203 if (count != sizeof(c))
204 printk(UM_KERN_ERR "winch_thread : failed to read "
Jeff Dike8ca842c2007-10-16 01:27:08 -0700205 "synchronization byte, err = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Jeff Dikee99525f2007-10-16 01:26:41 -0700207 while(1) {
208 /*
209 * This will be interrupted by SIGWINCH only, since
Jeff Dike42a359e2007-07-15 23:38:55 -0700210 * other signals are blocked.
211 */
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700212 sigsuspend(&sigs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Jeff Dike8ca842c2007-10-16 01:27:08 -0700214 count = write(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700215 if (count != sizeof(c))
216 printk(UM_KERN_ERR "winch_thread : write failed, "
Jeff Dike8ca842c2007-10-16 01:27:08 -0700217 "err = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219}
220
Jeff Dike42a359e2007-07-15 23:38:55 -0700221static int winch_tramp(int fd, struct tty_struct *tty, int *fd_out,
222 unsigned long *stack_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct winch_data data;
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700225 int fds[2], n, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 char c;
227
228 err = os_pipe(fds, 1, 1);
Jeff Dikee99525f2007-10-16 01:26:41 -0700229 if (err < 0) {
230 printk(UM_KERN_ERR "winch_tramp : os_pipe failed, err = %d\n",
231 -err);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700232 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
235 data = ((struct winch_data) { .pty_fd = fd,
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800236 .pipe_fd = fds[1] } );
Jeff Dikee99525f2007-10-16 01:26:41 -0700237 /*
238 * CLONE_FILES so this thread doesn't hold open files which are open
Jeff Dike42a359e2007-07-15 23:38:55 -0700239 * 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.
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800242 */
Jeff Dikec4399012007-07-15 23:38:56 -0700243 err = run_helper_thread(winch_thread, &data, CLONE_FILES, stack_out);
Jeff Dikee99525f2007-10-16 01:26:41 -0700244 if (err < 0) {
245 printk(UM_KERN_ERR "fork of winch_thread failed - errno = %d\n",
246 -err);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700247 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 *fd_out = fds[0];
Jeff Dike8ca842c2007-10-16 01:27:08 -0700251 n = read(fds[0], &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700252 if (n != sizeof(c)) {
253 printk(UM_KERN_ERR "winch_tramp : failed to read "
254 "synchronization byte\n");
Jeff Dike8ca842c2007-10-16 01:27:08 -0700255 printk(UM_KERN_ERR "read failed, err = %d\n", errno);
Jeff Dikee99525f2007-10-16 01:26:41 -0700256 printk(UM_KERN_ERR "fd %d will not support SIGWINCH\n", fd);
257 err = -EINVAL;
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800258 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Eduard-Gabriel Munteanu89df6bf2007-07-15 23:38:51 -0700260
261 if (os_set_fd_block(*fd_out, 0)) {
Jeff Dikee99525f2007-10-16 01:26:41 -0700262 printk(UM_KERN_ERR "winch_tramp: failed to set thread_fd "
263 "non-blocking.\n");
Eduard-Gabriel Munteanu89df6bf2007-07-15 23:38:51 -0700264 goto out_close;
265 }
266
267 return err;
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700268
269 out_close:
Jeff Dike8ca842c2007-10-16 01:27:08 -0700270 close(fds[1]);
271 close(fds[0]);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700272 out:
273 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
276void register_winch(int fd, struct tty_struct *tty)
277{
Jeff Dike42a359e2007-07-15 23:38:55 -0700278 unsigned long stack;
279 int pid, thread, count, thread_fd = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 char c = 1;
281
Jeff Dikee99525f2007-10-16 01:26:41 -0700282 if (!isatty(fd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return;
284
285 pid = tcgetpgrp(fd);
Jeff Dike6aa802c2007-10-16 01:26:56 -0700286 if (!is_skas_winch(pid, fd, tty) && (pid == -1)) {
Jeff Dike42a359e2007-07-15 23:38:55 -0700287 thread = winch_tramp(fd, tty, &thread_fd, &stack);
288 if (thread < 0)
289 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Jeff Dike42a359e2007-07-15 23:38:55 -0700291 register_winch_irq(thread_fd, fd, thread, tty, stack);
292
Jeff Dike8ca842c2007-10-16 01:27:08 -0700293 count = write(thread_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700294 if (count != sizeof(c))
295 printk(UM_KERN_ERR "register_winch : failed to write "
Jeff Dike8ca842c2007-10-16 01:27:08 -0700296 "synchronization byte, err = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298}