blob: c5e9e8a44e9e083d8abcdcd365059bc22480b3fa [file] [log] [blame]
Kristian Høgsberge4762a62011-01-14 14:59:13 -05001/*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation for any purpose is hereby granted without fee, provided
6 * that the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of the copyright holders not be used in
9 * advertising or publicity pertaining to distribution of the software
10 * without specific, written prior permission. The copyright holders make
11 * no representations about the suitability of this software for any
12 * purpose. It is provided "as is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 */
22
23#include <termios.h>
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <unistd.h>
28#include <fcntl.h>
29#include <signal.h>
30#include <linux/kd.h>
31#include <linux/vt.h>
Kristian Høgsberg1201b752012-01-15 14:27:10 -050032#include <linux/major.h>
Kristian Høgsberge4762a62011-01-14 14:59:13 -050033#include <sys/ioctl.h>
34
35#include "compositor.h"
36
37struct tty {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050038 struct weston_compositor *compositor;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050039 int fd;
40 struct termios terminal_attributes;
41
42 struct wl_event_source *input_source;
Kristian Høgsberg08fcbf02012-01-18 12:42:16 -050043 struct wl_event_source *vt_source;
Kristian Høgsberg9396fc52011-05-06 15:15:37 -040044 tty_vt_func_t vt_func;
Kristian Høgsberg62d27742012-01-18 12:38:33 -050045 int vt, starting_vt, has_vt;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050046};
47
Kristian Høgsberg08fcbf02012-01-18 12:42:16 -050048static int vt_handler(int signal_number, void *data)
Kristian Høgsberge4762a62011-01-14 14:59:13 -050049{
50 struct tty *tty = data;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050051
Kristian Høgsberg08fcbf02012-01-18 12:42:16 -050052 if (tty->has_vt) {
53 tty->vt_func(tty->compositor, TTY_LEAVE_VT);
54 tty->has_vt = 0;
Kristian Høgsbergb1868472011-04-22 12:27:57 -040055
Kristian Høgsberg08fcbf02012-01-18 12:42:16 -050056 ioctl(tty->fd, VT_RELDISP, 1);
57 } else {
58 ioctl(tty->fd, VT_RELDISP, VT_ACKACQ);
Kristian Høgsberg353e57f2012-01-16 10:57:14 -050059
Kristian Høgsberg08fcbf02012-01-18 12:42:16 -050060 tty->vt_func(tty->compositor, TTY_ENTER_VT);
61 tty->has_vt = 1;
62 }
Kristian Høgsberg353e57f2012-01-16 10:57:14 -050063
Kristian Høgsbergb1868472011-04-22 12:27:57 -040064 return 1;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050065}
66
Kristian Høgsbergb1868472011-04-22 12:27:57 -040067static int
Kristian Høgsberge4762a62011-01-14 14:59:13 -050068on_tty_input(int fd, uint32_t mask, void *data)
69{
70 struct tty *tty = data;
71
72 /* Ignore input to tty. We get keyboard events from evdev
73 */
74 tcflush(tty->fd, TCIFLUSH);
Kristian Høgsbergb1868472011-04-22 12:27:57 -040075
76 return 1;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050077}
78
Kristian Høgsberg39d908e2012-01-16 22:42:22 -050079static int
Kristian Høgsberg62d27742012-01-18 12:38:33 -050080try_open_vt(struct tty *tty)
Kristian Høgsberg39d908e2012-01-16 22:42:22 -050081{
Kristian Høgsberg62d27742012-01-18 12:38:33 -050082 int tty0, fd;
Kristian Høgsberg39d908e2012-01-16 22:42:22 -050083 char filename[16];
Kristian Høgsberg62d27742012-01-18 12:38:33 -050084 struct vt_stat vts;
Kristian Høgsberg39d908e2012-01-16 22:42:22 -050085
86 tty0 = open("/dev/tty0", O_WRONLY | O_CLOEXEC);
87 if (tty0 < 0) {
88 fprintf(stderr, "could not open tty0: %m\n");
89 return -1;
90 }
91
Kristian Høgsberg62d27742012-01-18 12:38:33 -050092 if (ioctl(tty0, VT_OPENQRY, &tty->vt) < 0 || tty->vt == -1) {
Kristian Høgsberg39d908e2012-01-16 22:42:22 -050093 fprintf(stderr, "could not open tty0: %m\n");
94 close(tty0);
95 return -1;
96 }
97
98 close(tty0);
Kristian Høgsberg62d27742012-01-18 12:38:33 -050099 snprintf(filename, sizeof filename, "/dev/tty%d", tty->vt);
Kristian Høgsberg39d908e2012-01-16 22:42:22 -0500100 fprintf(stderr, "compositor: using new vt %s\n", filename);
101 fd = open(filename, O_RDWR | O_NOCTTY | O_CLOEXEC);
102 if (fd < 0)
103 return fd;
104
Kristian Høgsberg62d27742012-01-18 12:38:33 -0500105 if (ioctl(fd, VT_GETSTATE, &vts) == 0)
106 tty->starting_vt = vts.v_active;
107 else
108 tty->starting_vt = tty->vt;
109
110 if (ioctl(fd, VT_ACTIVATE, tty->vt) < 0 ||
111 ioctl(fd, VT_WAITACTIVE, tty->vt) < 0) {
Kristian Høgsberg39d908e2012-01-16 22:42:22 -0500112 fprintf(stderr, "failed to swtich to new vt\n");
113 close(fd);
114 return -1;
115 }
116
117 return fd;
118}
119
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500120struct tty *
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500121tty_create(struct weston_compositor *compositor, tty_vt_func_t vt_func,
Tiago Vignattifaee8012011-09-01 15:58:17 -0400122 int tty_nr)
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500123{
124 struct termios raw_attributes;
125 struct vt_mode mode = { 0 };
126 int ret;
127 struct tty *tty;
128 struct wl_event_loop *loop;
Kristian Høgsberg1201b752012-01-15 14:27:10 -0500129 struct stat buf;
Tiago Vignattifaee8012011-09-01 15:58:17 -0400130 char filename[16];
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500131
132 tty = malloc(sizeof *tty);
133 if (tty == NULL)
134 return NULL;
135
136 memset(tty, 0, sizeof *tty);
137 tty->compositor = compositor;
Kristian Høgsberg9396fc52011-05-06 15:15:37 -0400138 tty->vt_func = vt_func;
Kristian Høgsberg1201b752012-01-15 14:27:10 -0500139 if (tty_nr > 0) {
140 snprintf(filename, sizeof filename, "/dev/tty%d", tty_nr);
141 fprintf(stderr, "compositor: using %s\n", filename);
142 tty->fd = open(filename, O_RDWR | O_NOCTTY | O_CLOEXEC);
Kristian Høgsberg39d908e2012-01-16 22:42:22 -0500143 } else if (fstat(tty->fd, &buf) == 0 &&
144 major(buf.st_rdev) == TTY_MAJOR &&
145 minor(buf.st_rdev) > 0) {
Kristian Høgsberg1201b752012-01-15 14:27:10 -0500146 tty->fd = fcntl(0, F_DUPFD_CLOEXEC, 0);
Kristian Høgsberg39d908e2012-01-16 22:42:22 -0500147 } else {
148 /* Fall back to try opening a new VT. This typically
149 * requires root. */
Kristian Høgsberg62d27742012-01-18 12:38:33 -0500150 tty->fd = try_open_vt(tty);
Kristian Høgsberg1201b752012-01-15 14:27:10 -0500151 }
152
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500153 if (tty->fd <= 0) {
Kristian Høgsberg1201b752012-01-15 14:27:10 -0500154 fprintf(stderr, "failed to open tty: %m\n");
155 return NULL;
156 }
157
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500158 if (tcgetattr(tty->fd, &tty->terminal_attributes) < 0) {
159 fprintf(stderr, "could not get terminal attributes: %m\n");
160 return NULL;
161 }
162
163 /* Ignore control characters and disable echo */
164 raw_attributes = tty->terminal_attributes;
165 cfmakeraw(&raw_attributes);
166
167 /* Fix up line endings to be normal (cfmakeraw hoses them) */
168 raw_attributes.c_oflag |= OPOST | OCRNL;
169
170 if (tcsetattr(tty->fd, TCSANOW, &raw_attributes) < 0)
171 fprintf(stderr, "could not put terminal into raw mode: %m\n");
172
173 loop = wl_display_get_event_loop(compositor->wl_display);
174 tty->input_source =
175 wl_event_loop_add_fd(loop, tty->fd,
176 WL_EVENT_READABLE, on_tty_input, tty);
177
178 ret = ioctl(tty->fd, KDSETMODE, KD_GRAPHICS);
179 if (ret) {
180 fprintf(stderr, "failed to set KD_GRAPHICS mode on tty: %m\n");
181 return NULL;
182 }
183
Kristian Høgsberg62d27742012-01-18 12:38:33 -0500184 tty->has_vt = 1;
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500185 mode.mode = VT_PROCESS;
186 mode.relsig = SIGUSR1;
Kristian Høgsberg08fcbf02012-01-18 12:42:16 -0500187 mode.acqsig = SIGUSR1;
David Herrmann7172d9e2011-12-02 16:16:40 +0100188 if (ioctl(tty->fd, VT_SETMODE, &mode) < 0) {
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500189 fprintf(stderr, "failed to take control of vt handling\n");
190 return NULL;
191 }
192
Kristian Høgsberg08fcbf02012-01-18 12:42:16 -0500193 tty->vt_source =
194 wl_event_loop_add_signal(loop, SIGUSR1, vt_handler, tty);
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500195
196 return tty;
197}
198
199void
200tty_destroy(struct tty *tty)
201{
Kristian Høgsberg62d27742012-01-18 12:38:33 -0500202 struct vt_mode mode = { 0 };
203
Tim Wiederhake70af98c2011-01-25 12:01:00 +0100204 if(!tty)
205 return;
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500206
Tim Wiederhake70af98c2011-01-25 12:01:00 +0100207 if (ioctl(tty->fd, KDSETMODE, KD_TEXT))
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500208 fprintf(stderr,
Tim Wiederhake70af98c2011-01-25 12:01:00 +0100209 "failed to set KD_TEXT mode on tty: %m\n");
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500210
211 if (tcsetattr(tty->fd, TCSANOW, &tty->terminal_attributes) < 0)
212 fprintf(stderr,
213 "could not restore terminal to canonical mode\n");
214
Kristian Høgsberg62d27742012-01-18 12:38:33 -0500215 mode.mode = VT_AUTO;
216 if (ioctl(tty->fd, VT_SETMODE, &mode) < 0)
217 fprintf(stderr, "could not reset vt handling\n");
218
219 if (tty->has_vt && tty->vt != tty->starting_vt) {
220 ioctl(tty->fd, VT_ACTIVATE, tty->starting_vt);
221 ioctl(tty->fd, VT_WAITACTIVE, tty->starting_vt);
222 }
223
Jonas Ådahlc97af922012-03-28 22:36:09 +0200224 wl_event_source_remove(tty->input_source);
225 wl_event_source_remove(tty->vt_source);
226
Kristian Høgsberg00513ab2012-01-15 15:20:53 -0500227 close(tty->fd);
228
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500229 free(tty);
230}