1 /* Client interface for General purpose Linux console save/restore server
2 Copyright (C) 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19 /** \file cons.handler.c
20 * \brief Source: client %interface for General purpose Linux console save/restore server
30 #include <sys/types.h>
32 # include <sys/consio.h>
33 # include <sys/ioctl.h>
39 #include "../src/tty/tty.h"
40 #include "../src/skin/skin.h" /* tty_set_normal_attrs */
41 #include "../src/tty/win.h"
43 #include "cons.saver.h"
45 signed char console_flag
= 0;
49 /* The cons saver can't have a pid of 1, used to prevent bunches of
52 int cons_saver_pid
= 1;
53 static int pipefd1
[2] = { -1, -1 };
54 static int pipefd2
[2] = { -1, -1 };
57 show_console_contents_linux (int starty
, unsigned char begin_line
,
58 unsigned char end_line
)
60 unsigned char message
= 0;
61 unsigned short bytes
= 0;
67 /* Paranoid: Is the cons.saver still running? */
68 if (cons_saver_pid
< 1 || kill (cons_saver_pid
, SIGCONT
)) {
74 /* Send command to the console handler */
75 message
= CONSOLE_CONTENTS
;
76 write (pipefd1
[1], &message
, 1);
77 /* Check for outdated cons.saver */
78 read (pipefd2
[0], &message
, 1);
79 if (message
!= CONSOLE_CONTENTS
)
82 /* Send the range of lines that we want */
83 write (pipefd1
[1], &begin_line
, 1);
84 write (pipefd1
[1], &end_line
, 1);
85 /* Read the corresponding number of bytes */
86 read (pipefd2
[0], &bytes
, 2);
88 /* Read the bytes and output them */
89 for (i
= 0; i
< bytes
; i
++) {
91 tty_gotoyx (starty
+ (i
/ COLS
), 0);
92 read (pipefd2
[0], &message
, 1);
93 tty_print_char (message
);
96 /* Read the value of the console_flag */
97 read (pipefd2
[0], &message
, 1);
101 handle_console_linux (unsigned char action
)
109 /* Close old pipe ends in case it is the 2nd time we run cons.saver */
112 /* Create two pipes for communication */
115 /* Get the console saver running */
116 cons_saver_pid
= fork ();
117 if (cons_saver_pid
< 0) {
125 } else if (cons_saver_pid
> 0) {
127 /* Close the extra pipe ends */
130 /* Was the child successful? */
131 read (pipefd2
[0], &console_flag
, 1);
135 waitpid (cons_saver_pid
, &status
, 0);
139 /* Close the extra pipe ends */
142 tty_name
= ttyname (0);
143 /* Bind the pipe 0 to the standard input */
147 /* Bind the pipe 1 to the standard output */
151 /* Bind standard error to /dev/null */
153 open ("/dev/null", O_WRONLY
);
155 /* Exec the console save/restore handler */
156 mc_conssaver
= concat_dir_and_file (SAVERDIR
, "cons.saver");
157 execl (mc_conssaver
, "cons.saver", tty_name
, (char *) NULL
);
159 /* Console is not a tty or execl() failed */
161 write (1, &console_flag
, 1);
163 } /* if (cons_saver_pid ...) */
168 case CONSOLE_RESTORE
:
169 /* Is tty console? */
172 /* Paranoid: Is the cons.saver still running? */
173 if (cons_saver_pid
< 1 || kill (cons_saver_pid
, SIGCONT
)) {
178 /* Send command to the console handler */
179 write (pipefd1
[1], &action
, 1);
180 if (action
!= CONSOLE_DONE
) {
181 /* Wait the console handler to do its job */
182 read (pipefd2
[0], &console_flag
, 1);
184 if (action
== CONSOLE_DONE
|| !console_flag
) {
185 /* We are done -> Let's clean up */
188 waitpid (cons_saver_pid
, &status
, 0);
195 #elif defined(__FreeBSD__)
198 * FreeBSD support copyright (C) 2003 Alexander Serkov <serkov@ukrpost.net>.
199 * Support for screenmaps by Max Khon <fjoe@FreeBSD.org>
204 static struct scrshot screen_shot
;
205 static struct vid_info screen_info
;
213 screen_info
.size
= sizeof (screen_info
);
214 if (ioctl (FD_OUT
, CONS_GETINFO
, &screen_info
) == -1)
217 memset (&screen_shot
, 0, sizeof (screen_shot
));
218 screen_shot
.xsize
= screen_info
.mv_csz
;
219 screen_shot
.ysize
= screen_info
.mv_rsz
;
220 screen_shot
.buf
= g_try_malloc (screen_info
.mv_csz
* screen_info
.mv_rsz
* 2);
221 if (screen_shot
.buf
!= NULL
)
226 set_attr (unsigned attr
)
229 * Convert color indices returned by SCRSHOT (red=4, green=2, blue=1)
230 * to indices for ANSI sequences (red=1, green=2, blue=4).
232 static const int color_map
[8] = { 0, 4, 2, 6, 1, 5, 3, 7 };
236 bc
= (attr
>> 4) & 0xF;
238 printf ("\x1B[%d;%d;3%d;4%dm", (bc
& 8) ? 5 : 25, (tc
& 8) ? 1 : 22,
239 color_map
[tc
& 7], color_map
[bc
& 7]);
242 #define cursor_to(x, y) do { \
243 printf("\x1B[%d;%df", (y) + 1, (x) + 1); \
248 console_restore (void)
257 /* restoring all content up to cursor position */
258 last
= screen_info
.mv_row
* screen_info
.mv_csz
+ screen_info
.mv_col
;
259 for (i
= 0; i
< last
; ++i
) {
260 set_attr ((screen_shot
.buf
[i
] >> 8) & 0xFF);
261 putc (screen_shot
.buf
[i
] & 0xFF, stdout
);
264 /* restoring cursor color */
265 set_attr ((screen_shot
.buf
[last
] >> 8) & 0xFF);
271 console_shutdown (void)
276 g_free (screen_shot
.buf
);
291 /* screen_info.size is already set in console_init() */
292 if (ioctl (FD_OUT
, CONS_GETINFO
, &screen_info
) == -1) {
297 /* handle console resize */
298 if (screen_info
.mv_csz
!= screen_shot
.xsize
299 || screen_info
.mv_rsz
!= screen_shot
.ysize
) {
304 if (ioctl (FD_OUT
, CONS_SCRSHOT
, &screen_shot
) == -1) {
309 if (ioctl (FD_OUT
, GIO_SCRNMAP
, &map
) == -1) {
314 for (i
= 0; i
< 256; i
++) {
315 char *p
= memchr (map
.scrmap
, i
, 256);
316 revmap
.scrmap
[i
] = p
? p
- map
.scrmap
: i
;
319 for (i
= 0; i
< screen_shot
.xsize
* screen_shot
.ysize
; i
++) {
321 (screen_shot
.buf
[i
] & 0xff00) | (unsigned char) revmap
.
322 scrmap
[screen_shot
.buf
[i
] & 0xff];
327 show_console_contents_freebsd (int starty
, unsigned char begin_line
,
328 unsigned char end_line
)
336 for (line
= begin_line
; line
<= end_line
; line
++) {
337 tty_gotoyx (starty
+ line
- begin_line
, 0);
338 for (col
= 0; col
< min (COLS
, screen_info
.mv_csz
); col
++) {
339 c
= screen_shot
.buf
[line
* screen_info
.mv_csz
+ col
] & 0xFF;
346 handle_console_freebsd (unsigned char action
)
361 case CONSOLE_RESTORE
:
366 #endif /* __FreeBSD__ */
369 show_console_contents (int starty
, unsigned char begin_line
,
370 unsigned char end_line
)
372 tty_set_normal_attrs ();
374 if (look_for_rxvt_extensions ()) {
375 show_rxvt_contents (starty
, begin_line
, end_line
);
379 show_console_contents_linux (starty
, begin_line
, end_line
);
380 #elif defined (__FreeBSD__)
381 show_console_contents_freebsd (starty
, begin_line
, end_line
);
388 handle_console (unsigned char action
)
392 if (look_for_rxvt_extensions ())
396 handle_console_linux (action
);
397 #elif defined (__FreeBSD__)
398 handle_console_freebsd (action
);