blob: 8443d372f67c68faac86ec62c1306556a343e921 [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 Dikec59dbca2007-10-16 01:26:42 -070041 int err;
42
43 err = write(fd, buf, n);
44 if (err > 0)
45 return err;
46 else if (errno == EAGAIN)
47 return 0;
48 else if (err == 0)
49 return -EIO;
50 return -errno;
Jeff Dike89fe6472007-10-16 01:26:39 -070051}
52
53int generic_window_size(int fd, void *unused, unsigned short *rows_out,
54 unsigned short *cols_out)
55{
Jeff Dike8e2d10e2007-10-16 01:26:40 -070056 struct winsize size;
Jeff Dike89fe6472007-10-16 01:26:39 -070057 int ret;
58
Jeff Dikee99525f2007-10-16 01:26:41 -070059 if (ioctl(fd, TIOCGWINSZ, &size) < 0)
Jeff Dike8e2d10e2007-10-16 01:26:40 -070060 return -errno;
Jeff Dike89fe6472007-10-16 01:26:39 -070061
Jeff Dike8e2d10e2007-10-16 01:26:40 -070062 ret = ((*rows_out != size.ws_row) || (*cols_out != size.ws_col));
Jeff Dike89fe6472007-10-16 01:26:39 -070063
Jeff Dike8e2d10e2007-10-16 01:26:40 -070064 *rows_out = size.ws_row;
65 *cols_out = size.ws_col;
Jeff Dike89fe6472007-10-16 01:26:39 -070066
67 return ret;
68}
69
70void generic_free(void *data)
71{
72 kfree(data);
73}
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Paolo 'Blaisorblade' Giarrusso55c033c2005-11-13 16:07:11 -080075int generic_console_write(int fd, const char *buf, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 struct termios save, new;
78 int err;
79
Jeff Dikee99525f2007-10-16 01:26:41 -070080 if (isatty(fd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 CATCH_EINTR(err = tcgetattr(fd, &save));
82 if (err)
83 goto error;
84 new = save;
85 /* The terminal becomes a bit less raw, to handle \n also as
86 * "Carriage Return", not only as "New Line". Otherwise, the new
87 * line won't start at the first column.*/
88 new.c_oflag |= OPOST;
89 CATCH_EINTR(err = tcsetattr(fd, TCSAFLUSH, &new));
90 if (err)
91 goto error;
92 }
93 err = generic_write(fd, buf, n, NULL);
94 /* Restore raw mode, in any case; we *must* ignore any error apart
95 * EINTR, except for debug.*/
Jeff Dikee99525f2007-10-16 01:26:41 -070096 if (isatty(fd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 CATCH_EINTR(tcsetattr(fd, TCSAFLUSH, &save));
Jeff Dikee99525f2007-10-16 01:26:41 -070098 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099error:
Jeff Dikee99525f2007-10-16 01:26:41 -0700100 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103/*
104 * UML SIGWINCH handling
105 *
Jeff Dike42a359e2007-07-15 23:38:55 -0700106 * The point of this is to handle SIGWINCH on consoles which have host
107 * ttys and relay them inside UML to whatever might be running on the
108 * console and cares about the window size (since SIGWINCH notifies
109 * about terminal size changes).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 *
Jeff Dike42a359e2007-07-15 23:38:55 -0700111 * So, we have a separate thread for each host tty attached to a UML
112 * device (side-issue - I'm annoyed that one thread can't have
113 * multiple controlling ttys for the purpose of handling SIGWINCH, but
114 * I imagine there are other reasons that doesn't make any sense).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *
Jeff Dike42a359e2007-07-15 23:38:55 -0700116 * SIGWINCH can't be received synchronously, so you have to set up to
117 * receive it as a signal. That being the case, if you are going to
118 * wait for it, it is convenient to sit in sigsuspend() and wait for
119 * the signal to bounce you out of it (see below for how we make sure
120 * to exit only on SIGWINCH).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 */
122
123static void winch_handler(int sig)
124{
125}
126
127struct winch_data {
128 int pty_fd;
129 int pipe_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
132static int winch_thread(void *arg)
133{
134 struct winch_data *data = arg;
135 sigset_t sigs;
136 int pty_fd, pipe_fd;
Jeff Dike8ca842c2007-10-16 01:27:08 -0700137 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 char c = 1;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 pty_fd = data->pty_fd;
141 pipe_fd = data->pipe_fd;
Jeff Dike8ca842c2007-10-16 01:27:08 -0700142 count = write(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700143 if (count != sizeof(c))
144 printk(UM_KERN_ERR "winch_thread : failed to write "
145 "synchronization byte, err = %d\n", -count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Jeff Dikee99525f2007-10-16 01:26:41 -0700147 /*
148 * We are not using SIG_IGN on purpose, so don't fix it as I thought to
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700149 * do! If using SIG_IGN, the sigsuspend() call below would not stop on
Jeff Dikee99525f2007-10-16 01:26:41 -0700150 * SIGWINCH.
151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 signal(SIGWINCH, winch_handler);
154 sigfillset(&sigs);
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700155 /* Block all signals possible. */
Jeff Dikee99525f2007-10-16 01:26:41 -0700156 if (sigprocmask(SIG_SETMASK, &sigs, NULL) < 0) {
157 printk(UM_KERN_ERR "winch_thread : sigprocmask failed, "
158 "errno = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 exit(1);
160 }
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700161 /* In sigsuspend(), block anything else than SIGWINCH. */
162 sigdelset(&sigs, SIGWINCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Jeff Dikee99525f2007-10-16 01:26:41 -0700164 if (setsid() < 0) {
165 printk(UM_KERN_ERR "winch_thread : setsid failed, errno = %d\n",
166 errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 exit(1);
168 }
169
Jeff Dike8ca842c2007-10-16 01:27:08 -0700170 if(ioctl(pty_fd, TIOCSCTTY, 0) < 0){
171 printk(UM_KERN_ERR "winch_thread : TIOCSCTTY failed on "
172 "fd %d err = %d\n", pty_fd, errno);
173 exit(1);
174 }
175
176 if(tcsetpgrp(pty_fd, os_getpid()) < 0){
177 printk(UM_KERN_ERR "winch_thread : tcsetpgrp failed on "
178 "fd %d err = %d\n", pty_fd, errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 exit(1);
180 }
181
Jeff Dikee99525f2007-10-16 01:26:41 -0700182 /*
183 * These are synchronization calls between various UML threads on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * host - since they are not different kernel threads, we cannot use
185 * kernel semaphores. We don't use SysV semaphores because they are
Jeff Dikee99525f2007-10-16 01:26:41 -0700186 * persistent.
187 */
Jeff Dike8ca842c2007-10-16 01:27:08 -0700188 count = read(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700189 if (count != sizeof(c))
190 printk(UM_KERN_ERR "winch_thread : failed to read "
Jeff Dike8ca842c2007-10-16 01:27:08 -0700191 "synchronization byte, err = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Jeff Dikee99525f2007-10-16 01:26:41 -0700193 while(1) {
194 /*
195 * This will be interrupted by SIGWINCH only, since
Jeff Dike42a359e2007-07-15 23:38:55 -0700196 * other signals are blocked.
197 */
Bodo Stroessered1b58d2005-09-03 15:57:24 -0700198 sigsuspend(&sigs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Jeff Dike8ca842c2007-10-16 01:27:08 -0700200 count = write(pipe_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700201 if (count != sizeof(c))
202 printk(UM_KERN_ERR "winch_thread : write failed, "
Jeff Dike8ca842c2007-10-16 01:27:08 -0700203 "err = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205}
206
Jeff Dike42a359e2007-07-15 23:38:55 -0700207static int winch_tramp(int fd, struct tty_struct *tty, int *fd_out,
208 unsigned long *stack_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 struct winch_data data;
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700211 int fds[2], n, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 char c;
213
214 err = os_pipe(fds, 1, 1);
Jeff Dikee99525f2007-10-16 01:26:41 -0700215 if (err < 0) {
216 printk(UM_KERN_ERR "winch_tramp : os_pipe failed, err = %d\n",
217 -err);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700218 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220
221 data = ((struct winch_data) { .pty_fd = fd,
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800222 .pipe_fd = fds[1] } );
Jeff Dikee99525f2007-10-16 01:26:41 -0700223 /*
224 * CLONE_FILES so this thread doesn't hold open files which are open
Jeff Dike42a359e2007-07-15 23:38:55 -0700225 * now, but later closed in a different thread. This is a
226 * problem with /dev/net/tun, which if held open by this
227 * thread, prevents the TUN/TAP device from being reused.
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800228 */
Jeff Dikec4399012007-07-15 23:38:56 -0700229 err = run_helper_thread(winch_thread, &data, CLONE_FILES, stack_out);
Jeff Dikee99525f2007-10-16 01:26:41 -0700230 if (err < 0) {
231 printk(UM_KERN_ERR "fork of winch_thread failed - errno = %d\n",
232 -err);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700233 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 *fd_out = fds[0];
Jeff Dike8ca842c2007-10-16 01:27:08 -0700237 n = read(fds[0], &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700238 if (n != sizeof(c)) {
239 printk(UM_KERN_ERR "winch_tramp : failed to read "
240 "synchronization byte\n");
Jeff Dike8ca842c2007-10-16 01:27:08 -0700241 printk(UM_KERN_ERR "read failed, err = %d\n", errno);
Jeff Dikee99525f2007-10-16 01:26:41 -0700242 printk(UM_KERN_ERR "fd %d will not support SIGWINCH\n", fd);
243 err = -EINVAL;
Jeff Dike1d2ddcf2006-02-07 12:58:41 -0800244 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
Eduard-Gabriel Munteanu89df6bf2007-07-15 23:38:51 -0700246
247 if (os_set_fd_block(*fd_out, 0)) {
Jeff Dikee99525f2007-10-16 01:26:41 -0700248 printk(UM_KERN_ERR "winch_tramp: failed to set thread_fd "
249 "non-blocking.\n");
Eduard-Gabriel Munteanu89df6bf2007-07-15 23:38:51 -0700250 goto out_close;
251 }
252
253 return err;
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700254
255 out_close:
Jeff Dike8ca842c2007-10-16 01:27:08 -0700256 close(fds[1]);
257 close(fds[0]);
Jeff Dike1f96ddb2005-06-08 15:48:27 -0700258 out:
259 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262void register_winch(int fd, struct tty_struct *tty)
263{
Jeff Dike42a359e2007-07-15 23:38:55 -0700264 unsigned long stack;
265 int pid, thread, count, thread_fd = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 char c = 1;
267
Jeff Dikee99525f2007-10-16 01:26:41 -0700268 if (!isatty(fd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return;
270
271 pid = tcgetpgrp(fd);
Jeff Dike6aa802c2007-10-16 01:26:56 -0700272 if (!is_skas_winch(pid, fd, tty) && (pid == -1)) {
Jeff Dike42a359e2007-07-15 23:38:55 -0700273 thread = winch_tramp(fd, tty, &thread_fd, &stack);
274 if (thread < 0)
275 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Jeff Dike42a359e2007-07-15 23:38:55 -0700277 register_winch_irq(thread_fd, fd, thread, tty, stack);
278
Jeff Dike8ca842c2007-10-16 01:27:08 -0700279 count = write(thread_fd, &c, sizeof(c));
Jeff Dikee99525f2007-10-16 01:26:41 -0700280 if (count != sizeof(c))
281 printk(UM_KERN_ERR "register_winch : failed to write "
Jeff Dike8ca842c2007-10-16 01:27:08 -0700282 "synchronization byte, err = %d\n", errno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284}