File: main.c

package info (click to toggle)
hztty 2.0-6.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge
  • size: 2,032 kB
  • ctags: 296
  • sloc: ansic: 26,960; makefile: 163; sh: 109
file content (364 lines) | stat: -rw-r--r-- 7,432 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/* $Id: main.c,v 2.0 1995/01/29 08:10:04 ygz Exp $ */

/*
 * hztty -- version 2.0
 *
 * This program turns a tty session from one encoding to another.
 * For example, running hztty on cxterm can allow you to read/write
 * Chinese in HZ format, which was not supported by cxterm.
 * If you have many applications in different encodings but your
 * favor terminal program only supports one, hztty can make life easy.
 * For example, hztty can your GB cxterm into a HZ terminal, a
 * Unicode (16bit, or UTF8, or UTF7) terminal, or a Big5 terminal.
 * 
 * The idea is to open a new shell session on top of the current one
 * and to translate the encoding between the new tty and the orignal.
 * For example, if your application uses encoding A and your terminal
 * supports encoding B.  Hztty catches the output of the application
 * and converts them from A to B before sending to the terminal.
 * Similarly, hztty converts all the terminal input from B to A before
 * sending to the application.
 *
 * The conversion is implemented in a configurable I/O stream style.
 * Conversion modules are specified in command line options "-O" (for
 * output) and "-I" (for input).  In each direction, conversion modules
 * can be piped one to one using connection character ':'.  For example,
 * specifying "hz2gb:gb2big" in output stream translate the cxterm screen
 * output from zW/HZ to GB, then from GB to Big5.  
 *
 * One interesting application is to emulate a 16bit Unicode terminal
 * on a GB or Big5 terminal.  Although some information is lost (since
 * Unicode is a superset), you get a reasonable environment to try
 * running your Unicode program.
 * 
 *	Yongguang ZHANG 		(ygz@cs.purdue.edu)
 *	Purdue University		August 4, 1992
 * 
 *	Yongguang ZHANG 		(ygz@isl.hrl.hac.com)
 *	Hughes Research	Labs		January 28, 1995
 */

/*
 * Copyright 1992,1995 by Yongguang Zhang
 */

#ifndef lint
static char *rcs_id="$Id: main.c,v 2.0 1995/01/29 08:10:04 ygz Exp $";
#endif /* lint */

#include "config.h"
#include "io.h"

extern int get_pty();
extern int get_tty();
extern void get_term_mode();
extern void set_term_mode();
extern void make_raw();
extern void addutmp();
extern void rmutmp();

static int loginsh = 0;
static int utmp = 1;			/* update utmp by default */
static char *term = "vt100";

int	master;
int	slave;
int	child;
int	subchild = 0;
int	in_raw = 0;
char	*i_stream = NULL;
char	*o_stream = NULL;
int	debug = 0;		/* the debug flag */

static char *shell[] = { "sh", "-i", (char *)0 };
static char **cmdargv;
static char *cmd;
static char *progname;

static struct term_mode defmode, rawmode;

static void usage();
static void getmaster();
static void getslave();
static void doinput();
static void dooutput();
static void doshell();

#ifdef WINSIZE
static struct WINSIZE winsz;
static SIGNAL_T sigwinch ();
#endif
static SIGNAL_T finish ();
static void fail();
static void done();


main(argc, argv)
     int argc;
     char *argv[];
{
  extern int getopt();
  extern char *optarg;
  extern int optind;
  int ch;

	progname = *argv;
	while ((ch = getopt(argc, argv, "I:O:T:ludh")) != EOF)
		switch(ch) {
		case 'I':
			i_stream = optarg;
			break;
		case 'O':
			o_stream = optarg;
			break;
		case 'T':
			term = optarg;
			break;
		case 'l':
			loginsh = 1;
			break;
		case 'u':
			utmp = 0;	/* disable utmp */
			break;
		case 'd':
			debug = 1;
			break;
		case 'h':
		case '?':
		default:
			usage();
		}
	argc -= optind;
	argv += optind;

	if ((! i_stream) && (! o_stream)) {
		i_stream = DEF_ISTREAM;
		o_stream = DEF_OSTREAM;
	}

	if (argc == 0) {
		cmdargv = shell;
		cmd = (char *)getenv("SHELL");
		if (! cmd)  cmd = "/bin/sh";
	} else {
		cmdargv = argv;
		cmd = *argv;
	}
	if (loginsh)
		*cmdargv = "-";

	getmaster();

	get_term_mode(0, &defmode);
	make_raw(&defmode, &rawmode);
	set_term_mode(0, &rawmode);
	in_raw = 1;

	(void) signal(SIGCHLD, finish);
	child = fork();
	if (child < 0) {
		perror("fork");
		fail();
	}
	if (child == 0) {
		(void) signal(SIGCHLD, finish);
		subchild = child = fork();
		if (child < 0) {
			perror("fork");
			fail();
		}
		if (child == 0) {
			doshell();
		}
#if defined(SIGWINCH) && defined(WINSIZE)
		(void) signal(SIGWINCH, sigwinch);
#endif
		dooutput();
	}
	doinput();
	exit (0);
}

static void usage()
{
  struct mod_def *pmod = moduleTable;

	fprintf(stderr, "usage: %s [ -lu ] [-T term] [-I input_steams] [-O output_streams] [command ...]\n", progname);
	fprintf(stderr, "\n");
	fprintf(stderr, "input/output streams:   module[:module[...]]\n");
	fprintf(stderr, "conversion module supported:\n");
	while (pmod->name) {
		fprintf(stderr, "   %s%s\t\t%s\n", pmod->name,
			pmod->needarg ? "(arg)" : "", pmod->annotation);
		pmod++;
	}
	exit (1);
}


/* stdin --> pty */
static void doinput()
{
	register int cc;
	char ibuf[BUFSIZ];

	if (in_stream_setup (i_stream) < 0)
		fail ();
	for (;;) {
		cc = stream_read(0, ibuf, BUFSIZ);
		if (cc < 0)
			break;
		if (cc > 0)
			(void) write(master, ibuf, cc);
	}
	done();
}

/* pty --> stdout */
static void dooutput()
{
	register int cc;
	char obuf[BUFSIZ];

	if (out_stream_setup (o_stream) < 0)
		fail ();
	(void) close(0);
	for (;;) {
		cc = read(master, obuf, sizeof (obuf));
		if (cc <= 0)
			break;
		(void) stream_write(1, obuf, cc);
	}
	done();
}

/* tty <-> shell */
static void doshell()
{
  char envbuf[20];
  gid_t gid, egid;


	getslave();
	(void) close(master);
	(void) dup2(slave, 0);
	(void) dup2(slave, 1);
	(void) dup2(slave, 2);
	(void) close(slave);
	if (utmp)
		addutmp ();
#if defined(sequent) || defined(__convex__)
	setenv ("TERM", term, 1);
#else
	sprintf (envbuf, "TERM=%s", term);
	putenv (envbuf);
#endif
	printf ("[%s started]  [using %s]\n", progname, ttyname(0));
	sleep(1);

	gid = getgid();
        egid = getegid();

	/* now execute the shell command, dropping permissions first */
	setgid(egid);
        setegid(gid);
	execvp (cmd, cmdargv);
	setgid(gid);
+       setegid(egid);

	perror (cmd);
	fail();
}

static SIGNAL_T
finish()
{
#if defined(SYSV) || defined(POSIX)
	int status;
#else
	union wait status;
#endif
	register int pid;
	register int die = 0;

#if defined(SYSV) || defined(POSIX)
	while ((pid = waitpid(-1, &status, WNOHANG|WUNTRACED)) > 0)
#else
	while ((pid = wait3(&status, WNOHANG|WUNTRACED, (struct rusage *)0))>0)
#endif
		if (pid == child)
			die = 1;

	fflush (stdout);
	if (die)
		done();

	SIGNAL_RETURN;
}

static void fail()
{
	if (child) {
		kill (child, SIGTERM);
		sleep (1);	/* wait for the child to die */
		kill (child, SIGKILL);
	}
	done();
}

static void done()
{
	if (subchild) {
		(void) close(master);
		if (utmp)
			rmutmp (subchild);
	} else {
		if (in_raw)
			set_term_mode (0, &defmode);
		printf ("\n[%s exited]\n", progname);
	}
	exit (0);
}

static void getmaster()
{
	if (get_pty (&master) != 0) {
		fprintf(stderr, "Out of pty's\n");
		fail();
	}
#ifdef	GETWINSZ
	(void) ioctl(0, GETWINSZ, &winsz);
#endif
}

static void getslave()
{
	if (get_tty (master, &slave) != 0) {
		fprintf(stderr, "Fail to open tty\n");
		fail();
	}
#ifdef	SETWINSZ
	(void) ioctl (slave, SETWINSZ, &winsz);
#endif
	set_term_mode(slave, &defmode);
}

#ifdef WINSIZE
static SIGNAL_T
sigwinch ()
{
  struct WINSIZE ws;

	if (ioctl(1, GETWINSZ, &ws) != 0)
		SIGNAL_RETURN;
	(void) ioctl(master, SETWINSZ, &ws);
#ifdef notdef	/* SIGWINCH */
	{ int pgrp;
		if (ioctl (master, TIOCGPGRP, (char *)&pgrp))
			killpg (pgrp, SIGWINCH);
	}
#endif
	SIGNAL_RETURN;
}
#endif