blob: e80158e39a14a10fec042483da4c8bcac11b1050 [file] [log] [blame]
Pascal Bellarda8b594f2010-06-21 02:17:29 +02001/* vi: set sw=4 ts=4: */
2/*
3 * A text-mode VNC like program for Linux virtual terminals.
4 *
5 * pascal.bellard@ads-lu.com
6 *
7 * Based on Russell Stuart's conspy.c
8 * http://ace-host.stuart.id.au/russell/files/conspy.c
9 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020010 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Pascal Bellarda8b594f2010-06-21 02:17:29 +020011 */
12
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010013//applet:IF_CONSPY(APPLET(conspy, BB_DIR_BIN, BB_SUID_DROP))
Pascal Bellarda8b594f2010-06-21 02:17:29 +020014
15//kbuild:lib-$(CONFIG_CONSPY) += conspy.o
16
17//config:config CONSPY
18//config: bool "conspy"
Denys Vlasenkoc97578d2011-08-13 09:00:29 +020019//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010020//config: select PLATFORM_LINUX
Pascal Bellarda8b594f2010-06-21 02:17:29 +020021//config: help
22//config: A text-mode VNC like program for Linux virtual terminals.
Denys Vlasenko1a3b0712010-06-27 20:42:17 +020023//config: example: conspy NUM shared access to console num
24//config: or conspy -nd NUM screenshot of console num
25//config: or conspy -cs NUM poor man's GNU screen like
Pascal Bellarda8b594f2010-06-21 02:17:29 +020026
27//usage:#define conspy_trivial_usage
Pascal Bellardf9e07e72011-09-13 18:39:04 +020028//usage: "[-vcsndfFQ] [-x COL] [-y LINE] [CONSOLE_NO]"
Pascal Bellarda8b594f2010-06-21 02:17:29 +020029//usage:#define conspy_full_usage "\n\n"
30//usage: "A text-mode VNC like program for Linux virtual consoles."
31//usage: "\nTo exit, quickly press ESC 3 times."
32//usage: "\n"
Pascal Bellarda8b594f2010-06-21 02:17:29 +020033//usage: "\n -v Don't send keystrokes to the console"
Pascal Bellardf9e07e72011-09-13 18:39:04 +020034//usage: "\n -c Create missing /dev/{tty,vcsa}N"
Pascal Bellarda8b594f2010-06-21 02:17:29 +020035//usage: "\n -s Open a SHELL session"
36//usage: "\n -n Black & white"
37//usage: "\n -d Dump console to stdout"
38//usage: "\n -f Follow cursor"
Pascal Bellardf9e07e72011-09-13 18:39:04 +020039//usage: "\n -F Assume console is on a framebuffer device"
40//usage: "\n -Q Disable exit on ESC-ESC-ESC"
Denys Vlasenko1a3b0712010-06-27 20:42:17 +020041//usage: "\n -x COL Starting column"
Pascal Bellarda8b594f2010-06-21 02:17:29 +020042//usage: "\n -y LINE Starting line"
43
44#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020045#include "common_bufsiz.h"
Pascal Bellarda8b594f2010-06-21 02:17:29 +020046#include <sys/kd.h>
47
Marek Polacek7b181072010-10-28 21:34:56 +020048#define ESC "\033"
Pascal Bellardf9e07e72011-09-13 18:39:04 +020049#define CURSOR_ON -1
50#define CURSOR_OFF 1
51
52#define DEV_TTY "/dev/tty"
53#define DEV_VCSA "/dev/vcsa"
Marek Polacek7b181072010-10-28 21:34:56 +020054
Pascal Bellarda8b594f2010-06-21 02:17:29 +020055struct screen_info {
Denys Vlasenko1a3b0712010-06-27 20:42:17 +020056 unsigned char lines, cols, cursor_x, cursor_y;
Pascal Bellarda8b594f2010-06-21 02:17:29 +020057};
58
Pascal Bellardfa5ea172010-06-30 07:05:31 +020059#define CHAR(x) (*(uint8_t*)(x))
60#define ATTR(x) (((uint8_t*)(x))[1])
61#define NEXT(x) ((x) += 2)
Denys Vlasenko51fa1472010-06-25 00:57:57 +020062#define DATA(x) (*(uint16_t*)(x))
Pascal Bellarda8b594f2010-06-21 02:17:29 +020063
64struct globals {
65 char* data;
66 int size;
67 int x, y;
68 int kbd_fd;
Pascal Bellard1b8e2b02010-06-23 20:25:00 +020069 int ioerror_count;
70 int key_count;
71 int escape_count;
72 int nokeys;
73 int current;
Pascal Bellardfa5ea172010-06-30 07:05:31 +020074 int first_line_offset;
75 int last_attr;
Pascal Bellardff377992010-06-28 15:50:22 +020076 // cached local tty parameters
77 unsigned width;
78 unsigned height;
79 unsigned col;
80 unsigned line;
Pascal Bellardfa5ea172010-06-30 07:05:31 +020081 smallint curoff; // unknown:0 cursor on:-1 cursor off:1
Pascal Bellardf9e07e72011-09-13 18:39:04 +020082 char attrbuf[sizeof("0;1;5;30;40m")];
Pascal Bellardff377992010-06-28 15:50:22 +020083 // remote console
Denys Vlasenko1a3b0712010-06-27 20:42:17 +020084 struct screen_info remote;
Pascal Bellardff377992010-06-28 15:50:22 +020085 // saved local tty terminfo
Pascal Bellarda8b594f2010-06-21 02:17:29 +020086 struct termios term_orig;
Pascal Bellardf9e07e72011-09-13 18:39:04 +020087 char vcsa_name[sizeof(DEV_VCSA "NN")];
Pascal Bellarda8b594f2010-06-21 02:17:29 +020088};
89
90#define G (*ptr_to_globals)
91#define INIT_G() do { \
92 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Pascal Bellardfa5ea172010-06-30 07:05:31 +020093 G.width = G.height = UINT_MAX; \
94 G.last_attr--; \
Pascal Bellarda8b594f2010-06-21 02:17:29 +020095} while (0)
96
Denys Vlasenko05a550b2010-06-21 04:00:16 +020097enum {
98 FLAG_v, // view only
99 FLAG_c, // create device if need
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200100 FLAG_Q, // never exit
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200101 FLAG_s, // session
102 FLAG_n, // no colors
103 FLAG_d, // dump screen
104 FLAG_f, // follow cursor
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200105 FLAG_F, // framebuffer
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200106};
107#define FLAG(x) (1 << FLAG_##x)
108#define BW (option_mask32 & FLAG(n))
109
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200110static void putcsi(const char *s)
111{
112 fputs(ESC"[", stdout);
113 fputs(s, stdout);
114}
115
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200116static void clrscr(void)
117{
118 // Home, clear till end of screen
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200119 putcsi("1;1H" ESC"[J");
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200120 G.col = G.line = 0;
121}
122
123static void set_cursor(int state)
124{
125 if (G.curoff != state) {
126 G.curoff = state;
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200127 putcsi("?25");
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200128 bb_putchar("h?l"[1 + state]);
129 }
130}
131
132static void gotoxy(int col, int line)
133{
134 if (G.col != col || G.line != line) {
135 G.col = col;
136 G.line = line;
Marek Polacek7b181072010-10-28 21:34:56 +0200137 printf(ESC"[%u;%uH", line + 1, col + 1);
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200138 }
139}
140
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200141static void cleanup(int code) NORETURN;
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200142static void cleanup(int code)
143{
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200144 set_cursor(CURSOR_ON);
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200145 tcsetattr(G.kbd_fd, TCSANOW, &G.term_orig);
146 if (ENABLE_FEATURE_CLEAN_UP) {
147 close(G.kbd_fd);
148 }
149 // Reset attributes
150 if (!BW)
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200151 putcsi("0m");
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200152 bb_putchar('\n');
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200153 if (code > EXIT_FAILURE)
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200154 kill_myself_with_sig(code);
155 exit(code);
156}
157
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200158static void screen_read_close(void)
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200159{
160 unsigned i, j;
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200161 int vcsa_fd;
162 char *data;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200163
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200164 // Close & re-open vcsa in case they have swapped virtual consoles
165 vcsa_fd = xopen(G.vcsa_name, O_RDONLY);
166 xread(vcsa_fd, &G.remote, 4);
167 i = G.remote.cols * 2;
168 G.first_line_offset = G.y * i;
169 i *= G.remote.lines;
170 if (G.data == NULL) {
171 G.size = i;
172 G.data = xzalloc(2 * i);
173 }
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200174 if (G.size != i) {
175 cleanup(EXIT_FAILURE);
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200176 }
177 data = G.data + G.current;
178 xread(vcsa_fd, data, G.size);
179 close(vcsa_fd);
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200180 for (i = 0; i < G.remote.lines; i++) {
181 for (j = 0; j < G.remote.cols; j++, NEXT(data)) {
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200182 unsigned x = j - G.x; // if will catch j < G.x too
183 unsigned y = i - G.y; // if will catch i < G.y too
184
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200185 if (y >= G.height || x >= G.width)
186 DATA(data) = 0;
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200187 else {
188 uint8_t ch = CHAR(data);
189 if (ch < ' ')
190 CHAR(data) = ch | 0x40;
191 else if (ch > 0x7e)
192 CHAR(data) = '?';
193 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200194 }
195 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200196}
197
198static void screen_char(char *data)
199{
Pascal Bellardff377992010-06-28 15:50:22 +0200200 if (!BW) {
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200201 uint8_t attr_diff;
Pascal Bellardff377992010-06-28 15:50:22 +0200202 uint8_t attr = ATTR(data);
Denys Vlasenkoa54985b2010-06-24 17:50:00 +0200203
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200204 if (option_mask32 & FLAG(F)) {
205 attr >>= 1;
206 }
207 attr_diff = G.last_attr ^ attr;
Pascal Bellardff377992010-06-28 15:50:22 +0200208 if (attr_diff) {
Denys Vlasenkoa54985b2010-06-24 17:50:00 +0200209// Attribute layout for VGA compatible text videobuffer:
210// blinking text
211// |red bkgd
212// ||green bkgd
213// |||blue bkgd
214// vvvv
215// 00000000 <- lsb bit on the right
216// bold text / text 8th bit
217// red text
218// green text
219// blue text
220// TODO: apparently framebuffer-based console uses different layout
221// (bug? attempt to get 8th text bit in better position?)
222// red bkgd
223// |green bkgd
224// ||blue bkgd
225// vvv
226// 00000000 <- lsb bit on the right
227// bold text
228// red text
229// green text
230// blue text
231// text 8th bit
Pascal Bellardff377992010-06-28 15:50:22 +0200232 // converting RGB color bit triad to BGR:
233 static const char color[8] = "04261537";
234 const uint8_t fg_mask = 0x07, bold_mask = 0x08;
235 const uint8_t bg_mask = 0x70, blink_mask = 0x80;
236 char *ptr;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200237
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200238 ptr = G.attrbuf;
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200239
Pascal Bellardff377992010-06-28 15:50:22 +0200240 // (G.last_attr & ~attr) has 1 only where
241 // G.last_attr has 1 but attr has 0.
242 // Here we check whether we have transition
243 // bold->non-bold or blink->non-blink:
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200244 if (G.last_attr < 0 // initial value
245 || ((G.last_attr & ~attr) & (bold_mask | blink_mask)) != 0
246 ) {
Pascal Bellardff377992010-06-28 15:50:22 +0200247 *ptr++ = '0'; // "reset all attrs"
248 *ptr++ = ';';
249 // must set fg & bg, maybe need to set bold or blink:
250 attr_diff = attr | ~(bold_mask | blink_mask);
251 }
Pascal Bellardff377992010-06-28 15:50:22 +0200252 G.last_attr = attr;
253 if (attr_diff & bold_mask) {
254 *ptr++ = '1';
255 *ptr++ = ';';
256 }
257 if (attr_diff & blink_mask) {
258 *ptr++ = '5';
259 *ptr++ = ';';
260 }
261 if (attr_diff & fg_mask) {
262 *ptr++ = '3';
263 *ptr++ = color[attr & fg_mask];
264 *ptr++ = ';';
265 }
266 if (attr_diff & bg_mask) {
267 *ptr++ = '4';
268 *ptr++ = color[(attr & bg_mask) >> 4];
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200269 ptr++; // last attribute
Pascal Bellardff377992010-06-28 15:50:22 +0200270 }
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200271 if (ptr != G.attrbuf) {
Pascal Bellardff377992010-06-28 15:50:22 +0200272 ptr[-1] = 'm';
273 *ptr = '\0';
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200274 putcsi(G.attrbuf);
Pascal Bellardff377992010-06-28 15:50:22 +0200275 }
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200276 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200277 }
Denys Vlasenkoa54985b2010-06-24 17:50:00 +0200278 putchar(CHAR(data));
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200279 G.col++;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200280}
281
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200282static void screen_dump(void)
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200283{
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200284 int linefeed_cnt;
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200285 int line, col;
286 int linecnt = G.remote.lines - G.y;
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200287 char *data = G.data + G.current + G.first_line_offset;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200288
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200289 linefeed_cnt = 0;
290 for (line = 0; line < linecnt && line < G.height; line++) {
291 int space_cnt = 0;
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200292 for (col = 0; col < G.remote.cols; col++, NEXT(data)) {
293 unsigned tty_col = col - G.x; // if will catch col < G.x too
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200294
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200295 if (tty_col >= G.width)
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200296 continue;
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200297 space_cnt++;
Denys Vlasenko51fa1472010-06-25 00:57:57 +0200298 if (BW && CHAR(data) == ' ')
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200299 continue;
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200300 while (linefeed_cnt != 0) {
Denys Vlasenko51fa1472010-06-25 00:57:57 +0200301 //bb_putchar('\r'); - tty driver does it for us
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200302 bb_putchar('\n');
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200303 linefeed_cnt--;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200304 }
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200305 while (--space_cnt)
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200306 bb_putchar(' ');
307 screen_char(data);
308 }
Denys Vlasenko05a550b2010-06-21 04:00:16 +0200309 linefeed_cnt++;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200310 }
311}
312
313static void curmove(void)
314{
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200315 unsigned cx = G.remote.cursor_x - G.x;
316 unsigned cy = G.remote.cursor_y - G.y;
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200317 int cursor = CURSOR_OFF;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200318
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200319 if (cx < G.width && cy < G.height) {
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200320 gotoxy(cx, cy);
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200321 cursor = CURSOR_ON;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200322 }
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200323 set_cursor(cursor);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200324}
325
326static void create_cdev_if_doesnt_exist(const char* name, dev_t dev)
327{
328 int fd = open(name, O_RDONLY);
329 if (fd != -1)
330 close(fd);
331 else if (errno == ENOENT)
332 mknod(name, S_IFCHR | 0660, dev);
333}
334
335static NOINLINE void start_shell_in_child(const char* tty_name)
336{
Pascal Bellard926031b2010-07-04 15:32:38 +0200337 int pid = xvfork();
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200338 if (pid == 0) {
339 struct termios termchild;
Denys Vlasenko681efe22011-03-08 21:00:36 +0100340 const char *shell = get_shell_name();
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200341
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200342 signal(SIGHUP, SIG_IGN);
343 // set tty as a controlling tty
344 setsid();
345 // make tty to be input, output, error
346 close(0);
347 xopen(tty_name, O_RDWR); // uses fd 0
348 xdup2(0, 1);
349 xdup2(0, 2);
350 ioctl(0, TIOCSCTTY, 1);
351 tcsetpgrp(0, getpid());
352 tcgetattr(0, &termchild);
353 termchild.c_lflag |= ECHO;
354 termchild.c_oflag |= ONLCR | XTABS;
355 termchild.c_iflag |= ICRNL;
356 termchild.c_iflag &= ~IXOFF;
357 tcsetattr_stdin_TCSANOW(&termchild);
358 execl(shell, shell, "-i", (char *) NULL);
359 bb_simple_perror_msg_and_die(shell);
360 }
361}
362
Denys Vlasenko51fa1472010-06-25 00:57:57 +0200363int conspy_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200364int conspy_main(int argc UNUSED_PARAM, char **argv)
365{
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200366 char tty_name[sizeof(DEV_TTY "NN")];
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200367 struct termios termbuf;
368 unsigned opts;
369 unsigned ttynum;
370 int poll_timeout_ms;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200371#if ENABLE_LONG_OPTS
372 static const char getopt_longopts[] ALIGN1 =
373 "viewonly\0" No_argument "v"
374 "createdevice\0" No_argument "c"
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200375 "neverquit\0" No_argument "Q"
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200376 "session\0" No_argument "s"
377 "nocolors\0" No_argument "n"
378 "dump\0" No_argument "d"
379 "follow\0" No_argument "f"
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200380 "framebuffer\0" No_argument "F"
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200381 ;
382
383 applet_long_options = getopt_longopts;
384#endif
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200385#define keybuf bb_common_bufsiz1
386 setup_common_bufsiz();
387
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200388 INIT_G();
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200389 strcpy(G.vcsa_name, DEV_VCSA);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200390
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200391 // numeric params
392 opts = getopt32(argv, "vcQsndfFx:+y:+", &G.x, &G.y);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200393 argv += optind;
394 ttynum = 0;
395 if (argv[0]) {
396 ttynum = xatou_range(argv[0], 0, 63);
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200397 sprintf(G.vcsa_name + sizeof(DEV_VCSA)-1, "%u", ttynum);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200398 }
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200399 sprintf(tty_name, "%s%u", DEV_TTY, ttynum);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200400 if (opts & FLAG(c)) {
401 if ((opts & (FLAG(s)|FLAG(v))) != FLAG(v))
402 create_cdev_if_doesnt_exist(tty_name, makedev(4, ttynum));
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200403 create_cdev_if_doesnt_exist(G.vcsa_name, makedev(7, 128 + ttynum));
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200404 }
405 if ((opts & FLAG(s)) && ttynum) {
406 start_shell_in_child(tty_name);
407 }
408
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200409 screen_read_close();
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200410 if (opts & FLAG(d)) {
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200411 screen_dump();
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200412 bb_putchar('\n');
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200413 return 0;
414 }
415
416 bb_signals(BB_FATAL_SIGS, cleanup);
Denys Vlasenko918f4442010-06-25 14:40:25 +0200417
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200418 // All characters must be passed through to us unaltered
Denys Vlasenko918f4442010-06-25 14:40:25 +0200419 G.kbd_fd = xopen(CURRENT_TTY, O_RDONLY);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200420 tcgetattr(G.kbd_fd, &G.term_orig);
421 termbuf = G.term_orig;
422 termbuf.c_iflag &= ~(BRKINT|INLCR|ICRNL|IXON|IXOFF|IUCLC|IXANY|IMAXBEL);
Denys Vlasenko51fa1472010-06-25 00:57:57 +0200423 //termbuf.c_oflag &= ~(OPOST); - no, we still want \n -> \r\n
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200424 termbuf.c_lflag &= ~(ISIG|ICANON|ECHO);
425 termbuf.c_cc[VMIN] = 1;
426 termbuf.c_cc[VTIME] = 0;
427 tcsetattr(G.kbd_fd, TCSANOW, &termbuf);
Pascal Bellardff377992010-06-28 15:50:22 +0200428
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200429 poll_timeout_ms = 250;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200430 while (1) {
431 struct pollfd pfd;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200432 int bytes_read;
433 int i, j;
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200434 char *data, *old;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200435
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200436 // in the first loop G.width = G.height = 0: refresh
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200437 i = G.width;
438 j = G.height;
439 get_terminal_width_height(G.kbd_fd, &G.width, &G.height);
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200440 if (option_mask32 & FLAG(f)) {
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200441 int nx = G.remote.cursor_x - G.width + 1;
442 int ny = G.remote.cursor_y - G.height + 1;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200443
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200444 if (G.remote.cursor_x < G.x) {
445 G.x = G.remote.cursor_x;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200446 i = 0; // force refresh
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200447 }
448 if (nx > G.x) {
449 G.x = nx;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200450 i = 0; // force refresh
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200451 }
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200452 if (G.remote.cursor_y < G.y) {
453 G.y = G.remote.cursor_y;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200454 i = 0; // force refresh
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200455 }
456 if (ny > G.y) {
457 G.y = ny;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200458 i = 0; // force refresh
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200459 }
460 }
461
462 // Scan console data and redraw our tty where needed
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200463 old = G.data + G.current;
464 G.current = G.size - G.current;
465 data = G.data + G.current;
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200466 screen_read_close();
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200467 if (i != G.width || j != G.height) {
468 clrscr();
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200469 screen_dump();
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200470 } else {
471 // For each remote line
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200472 old += G.first_line_offset;
473 data += G.first_line_offset;
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200474 for (i = G.y; i < G.remote.lines; i++) {
475 char *first = NULL; // first char which needs updating
476 char *last = last; // last char which needs updating
477 unsigned iy = i - G.y;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200478
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200479 if (iy >= G.height)
480 break;
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200481 for (j = 0; j < G.remote.cols; j++, NEXT(old), NEXT(data)) {
482 unsigned jx = j - G.x; // if will catch j >= G.x too
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200483
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200484 if (jx < G.width && DATA(data) != DATA(old)) {
485 last = data;
486 if (!first) {
487 first = data;
488 gotoxy(jx, iy);
489 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200490 }
491 }
Denys Vlasenko1a3b0712010-06-27 20:42:17 +0200492 if (first) {
493 // Rewrite updated data on the local screen
494 for (; first <= last; NEXT(first))
495 screen_char(first);
496 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200497 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200498 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200499 curmove();
500
501 // Wait for local user keypresses
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200502 fflush_all();
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200503 pfd.fd = G.kbd_fd;
504 pfd.events = POLLIN;
505 bytes_read = 0;
506 switch (poll(&pfd, 1, poll_timeout_ms)) {
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200507 char *k;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200508 case -1:
509 if (errno != EINTR)
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200510 goto abort;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200511 break;
512 case 0:
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200513 if (++G.nokeys >= 4)
514 G.nokeys = G.escape_count = 0;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200515 break;
516 default:
517 // Read the keys pressed
Pascal Bellard1b8e2b02010-06-23 20:25:00 +0200518 k = keybuf + G.key_count;
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200519 bytes_read = read(G.kbd_fd, k, COMMON_BUFSIZE - G.key_count);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200520 if (bytes_read < 0)
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200521 goto abort;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200522
523 // Do exit processing
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200524 if (!(option_mask32 & FLAG(Q))) {
525 for (i = 0; i < bytes_read; i++) {
526 if (k[i] != '\033')
527 G.escape_count = -1;
528 if (++G.escape_count >= 3)
529 cleanup(EXIT_SUCCESS);
530 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200531 }
532 }
533 poll_timeout_ms = 250;
Pascal Bellard6161cdb2011-04-11 03:52:53 +0200534 if (option_mask32 & FLAG(v)) continue;
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200535
536 // Insert all keys pressed into the virtual console's input
537 // buffer. Don't do this if the virtual console is in scan
538 // code mode - giving ASCII characters to a program expecting
539 // scan codes will confuse it.
Pascal Bellard6161cdb2011-04-11 03:52:53 +0200540 G.key_count += bytes_read;
541 if (G.escape_count == 0) {
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200542 int handle, result;
543 long kbd_mode;
544
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200545 handle = xopen(tty_name, O_WRONLY);
546 result = ioctl(handle, KDGKBMODE, &kbd_mode);
Pascal Bellard81199672010-07-01 07:18:41 +0200547 if (result >= 0) {
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200548 char *p = keybuf;
Pascal Bellard81199672010-07-01 07:18:41 +0200549
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200550 G.ioerror_count = 0;
Pascal Bellard81199672010-07-01 07:18:41 +0200551 if (kbd_mode != K_XLATE && kbd_mode != K_UNICODE) {
552 G.key_count = 0; // scan code mode
553 }
554 for (; G.key_count != 0; p++, G.key_count--) {
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200555 result = ioctl(handle, TIOCSTI, p);
Pascal Bellard81199672010-07-01 07:18:41 +0200556 if (result < 0) {
557 memmove(keybuf, p, G.key_count);
558 break;
559 }
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200560 // If there is an application on console which reacts
561 // to keypresses, we need to make our first sleep
562 // shorter to quickly redraw whatever it printed there.
563 poll_timeout_ms = 20;
564 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200565 }
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200566 // We sometimes get spurious IO errors on the TTY
567 // as programs close and re-open it
568 else if (errno != EIO || ++G.ioerror_count > 4) {
569 if (ENABLE_FEATURE_CLEAN_UP)
570 close(handle);
571 goto abort;
572 }
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200573 // Close & re-open tty in case they have
574 // swapped virtual consoles
575 close(handle);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200576 }
Pascal Bellardfa5ea172010-06-30 07:05:31 +0200577 } /* while (1) */
Pascal Bellardf9e07e72011-09-13 18:39:04 +0200578 abort:
579 cleanup(EXIT_FAILURE);
Pascal Bellarda8b594f2010-06-21 02:17:29 +0200580}