blob: 7b68ff167672f991897311bafe1411e31aca2959 [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;
43 struct wl_event_source *enter_vt_source;
44 struct wl_event_source *leave_vt_source;
Kristian Høgsberg9396fc52011-05-06 15:15:37 -040045 tty_vt_func_t vt_func;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050046};
47
Kristian Høgsbergb1868472011-04-22 12:27:57 -040048static int on_enter_vt(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øgsberge4762a62011-01-14 14:59:13 -050052 ioctl(tty->fd, VT_RELDISP, VT_ACKACQ);
Kristian Høgsbergb1868472011-04-22 12:27:57 -040053
Kristian Høgsberg353e57f2012-01-16 10:57:14 -050054 tty->vt_func(tty->compositor, TTY_ENTER_VT);
55
Kristian Høgsbergb1868472011-04-22 12:27:57 -040056 return 1;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050057}
58
Kristian Høgsbergb1868472011-04-22 12:27:57 -040059static int
60on_leave_vt(int signal_number, void *data)
Kristian Høgsberge4762a62011-01-14 14:59:13 -050061{
62 struct tty *tty = data;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050063
Kristian Høgsberg9396fc52011-05-06 15:15:37 -040064 tty->vt_func(tty->compositor, TTY_LEAVE_VT);
65
Kristian Høgsberg353e57f2012-01-16 10:57:14 -050066 ioctl(tty->fd, VT_RELDISP, 1);
67
Kristian Høgsbergb1868472011-04-22 12:27:57 -040068 return 1;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050069}
70
Kristian Høgsbergb1868472011-04-22 12:27:57 -040071static int
Kristian Høgsberge4762a62011-01-14 14:59:13 -050072on_tty_input(int fd, uint32_t mask, void *data)
73{
74 struct tty *tty = data;
75
76 /* Ignore input to tty. We get keyboard events from evdev
77 */
78 tcflush(tty->fd, TCIFLUSH);
Kristian Høgsbergb1868472011-04-22 12:27:57 -040079
80 return 1;
Kristian Høgsberge4762a62011-01-14 14:59:13 -050081}
82
83struct tty *
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050084tty_create(struct weston_compositor *compositor, tty_vt_func_t vt_func,
Tiago Vignattifaee8012011-09-01 15:58:17 -040085 int tty_nr)
Kristian Høgsberge4762a62011-01-14 14:59:13 -050086{
87 struct termios raw_attributes;
88 struct vt_mode mode = { 0 };
89 int ret;
90 struct tty *tty;
91 struct wl_event_loop *loop;
Kristian Høgsberg1201b752012-01-15 14:27:10 -050092 struct stat buf;
Tiago Vignattifaee8012011-09-01 15:58:17 -040093 char filename[16];
Kristian Høgsberge4762a62011-01-14 14:59:13 -050094
95 tty = malloc(sizeof *tty);
96 if (tty == NULL)
97 return NULL;
98
99 memset(tty, 0, sizeof *tty);
100 tty->compositor = compositor;
Kristian Høgsberg9396fc52011-05-06 15:15:37 -0400101 tty->vt_func = vt_func;
Kristian Høgsberg1201b752012-01-15 14:27:10 -0500102 if (tty_nr > 0) {
103 snprintf(filename, sizeof filename, "/dev/tty%d", tty_nr);
104 fprintf(stderr, "compositor: using %s\n", filename);
105 tty->fd = open(filename, O_RDWR | O_NOCTTY | O_CLOEXEC);
106 } else {
107 tty->fd = fcntl(0, F_DUPFD_CLOEXEC, 0);
108 }
109
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500110 if (tty->fd <= 0) {
Kristian Høgsberg1201b752012-01-15 14:27:10 -0500111 fprintf(stderr, "failed to open tty: %m\n");
112 return NULL;
113 }
114
115 if (fstat(tty->fd, &buf) < 0 ||
116 major(buf.st_rdev) != TTY_MAJOR || minor(buf.st_rdev) == 0) {
117 fprintf(stderr, "stdin not a vt (%d, %d)\n",
118 major(buf.st_dev), minor(buf.st_dev));
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500119 return NULL;
120 }
121
122 if (tcgetattr(tty->fd, &tty->terminal_attributes) < 0) {
123 fprintf(stderr, "could not get terminal attributes: %m\n");
124 return NULL;
125 }
126
127 /* Ignore control characters and disable echo */
128 raw_attributes = tty->terminal_attributes;
129 cfmakeraw(&raw_attributes);
130
131 /* Fix up line endings to be normal (cfmakeraw hoses them) */
132 raw_attributes.c_oflag |= OPOST | OCRNL;
133
134 if (tcsetattr(tty->fd, TCSANOW, &raw_attributes) < 0)
135 fprintf(stderr, "could not put terminal into raw mode: %m\n");
136
137 loop = wl_display_get_event_loop(compositor->wl_display);
138 tty->input_source =
139 wl_event_loop_add_fd(loop, tty->fd,
140 WL_EVENT_READABLE, on_tty_input, tty);
141
142 ret = ioctl(tty->fd, KDSETMODE, KD_GRAPHICS);
143 if (ret) {
144 fprintf(stderr, "failed to set KD_GRAPHICS mode on tty: %m\n");
145 return NULL;
146 }
147
148 tty->compositor->focus = 1;
149 mode.mode = VT_PROCESS;
150 mode.relsig = SIGUSR1;
151 mode.acqsig = SIGUSR2;
David Herrmann7172d9e2011-12-02 16:16:40 +0100152 if (ioctl(tty->fd, VT_SETMODE, &mode) < 0) {
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500153 fprintf(stderr, "failed to take control of vt handling\n");
154 return NULL;
155 }
156
157 tty->leave_vt_source =
158 wl_event_loop_add_signal(loop, SIGUSR1, on_leave_vt, tty);
159 tty->enter_vt_source =
160 wl_event_loop_add_signal(loop, SIGUSR2, on_enter_vt, tty);
161
162 return tty;
163}
164
165void
166tty_destroy(struct tty *tty)
167{
Tim Wiederhake70af98c2011-01-25 12:01:00 +0100168 if(!tty)
169 return;
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500170
Tim Wiederhake70af98c2011-01-25 12:01:00 +0100171 if (ioctl(tty->fd, KDSETMODE, KD_TEXT))
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500172 fprintf(stderr,
Tim Wiederhake70af98c2011-01-25 12:01:00 +0100173 "failed to set KD_TEXT mode on tty: %m\n");
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500174
175 if (tcsetattr(tty->fd, TCSANOW, &tty->terminal_attributes) < 0)
176 fprintf(stderr,
177 "could not restore terminal to canonical mode\n");
178
Kristian Høgsberg00513ab2012-01-15 15:20:53 -0500179 close(tty->fd);
180
Kristian Høgsberge4762a62011-01-14 14:59:13 -0500181 free(tty);
182}