tip.h revision 1.23 1 /* $NetBSD: tip.h,v 1.23 2006/04/03 03:13:10 tls Exp $ */
2
3 /*
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)tip.h 8.1 (Berkeley) 6/6/93
33 */
34
35 /*
36 * tip - terminal interface program
37 */
38
39 #include <sys/param.h>
40 #include <sys/ioctl.h>
41 #include <sys/time.h>
42 #include <sys/wait.h>
43 #include <machine/endian.h>
44
45 #include <ctype.h>
46 #include <err.h>
47 #include <fcntl.h>
48 #include <errno.h>
49 #include <libgen.h>
50 #include <dirent.h>
51 #include <pwd.h>
52 #include <setjmp.h>
53 #include <signal.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <termios.h>
58 #include <time.h>
59 #include <unistd.h>
60
61 /*
62 * Remote host attributes
63 */
64 char *DV; /* UNIX device(s) to open */
65 char *EL; /* chars marking an EOL */
66 char *CM; /* initial connection message */
67 char *IE; /* EOT to expect on input */
68 char *OE; /* EOT to send to complete FT */
69 char *CU; /* call unit if making a phone call */
70 char *AT; /* acu type */
71 char *PN; /* phone number(s) */
72 char *DI; /* disconnect string */
73 char *PA; /* parity to be generated */
74
75 char *PH; /* phone number file */
76 char *RM; /* remote file name */
77 char *HO; /* host name */
78
79 long BR; /* line speed for conversation */
80 long FS; /* frame size for transfers */
81
82 int DU; /* this host is dialed up */
83 int HW; /* this device is hardwired, see hunt.c */
84 char *ES; /* escape character */
85 char *EX; /* exceptions */
86 char *FO; /* force (literal next) char*/
87 char *RC; /* raise character */
88 char *RE; /* script record file */
89 char *PR; /* remote prompt */
90 long DL; /* line delay for file transfers to remote */
91 long CL; /* char delay for file transfers to remote */
92 long ET; /* echocheck timeout */
93 int HD; /* this host is half duplex - do local echo */
94 char DC; /* this host is directly connected. */
95
96 /*
97 * String value table
98 */
99 typedef
100 struct {
101 const char *v_name; /* whose name is it */
102 char v_type; /* for interpreting set's */
103 char v_access; /* protection of touchy ones */
104 const char *v_abrev; /* possible abreviation */
105 char *v_value; /* casted to a union later */
106 /*
107 * XXX: this assumes that the storage space
108 * of a pointer >= that of a long
109 */
110 }
111 value_t;
112
113 #define STRING 01 /* string valued */
114 #define BOOL 02 /* true-false value */
115 #define NUMBER 04 /* numeric value */
116 #define CHAR 010 /* character value */
117
118 #define WRITE 01 /* write access to variable */
119 #define READ 02 /* read access */
120
121 #define CHANGED 01 /* low bit is used to show modification */
122 #define PUBLIC 1 /* public access rights */
123 #define PRIVATE 03 /* private to definer */
124 #define ROOT 05 /* root defined */
125
126 #define TRUE 1
127 #define FALSE 0
128
129 #define ENVIRON 020 /* initialize out of the environment */
130 #define IREMOTE 040 /* initialize out of remote structure */
131 #define INIT 0100 /* static data space used for initialization */
132 #define TMASK 017
133
134 /*
135 * Definition of ACU line description
136 */
137 typedef
138 struct {
139 const char *acu_name;
140 int (*acu_dialer)(char *, char *);
141 void (*acu_disconnect)(void);
142 void (*acu_abort)(void);
143 }
144 acu_t;
145
146 #define equal(a, b) (strcmp(a,b)==0)/* A nice function to string compare */
147
148 /*
149 * variable manipulation stuff --
150 * if we defined the value entry in value_t, then we couldn't
151 * initialize it in vars.c, so we cast it as needed to keep lint
152 * happy.
153 */
154
155 #define value(v) vtable[v].v_value
156
157 #define number(v) ((long)(v))
158 #define boolean(v) ((short)(long)(v))
159 #define character(v) ((char)(long)(v))
160 #define address(v) ((long *)(v))
161
162 #define setnumber(v,n) do { (v) = (char *)(long)(n); } while (0)
163 #define setboolean(v,n) do { (v) = (char *)(long)(n); } while (0)
164 #define setcharacter(v,n) do { (v) = (char *)(long)(n); } while (0)
165 #define setaddress(v,n) do { (v) = (char *)(n); } while (0)
166
167 /*
168 * Escape command table definitions --
169 * lookup in this table is performed when ``escapec'' is recognized
170 * at the begining of a line (as defined by the eolmarks variable).
171 */
172
173 typedef
174 struct {
175 char e_char; /* char to match on */
176 char e_flags; /* experimental, privileged */
177 const char *e_help; /* help string */
178 void (*e_func)(char); /* command */
179 }
180 esctable_t;
181
182 #define NORM 00 /* normal protection, execute anyone */
183 #define EXP 01 /* experimental, mark it with a `*' on help */
184 #define PRIV 02 /* privileged, root execute only */
185
186 extern int vflag; /* verbose during reading of .tiprc file */
187 extern value_t vtable[]; /* variable table */
188
189 /*
190 * Definition of indices into variable table so
191 * value(DEFINE) turns into a static address.
192 *
193 * XXX: keep in sync with vtable[] in vars.c
194 */
195
196 #define BEAUTIFY 0
197 #define BAUDRATE 1
198 #define DIALTIMEOUT 2
199 #define EOFREAD 3
200 #define EOFWRITE 4
201 #define EOL 5
202 #define ESCAPE 6
203 #define EXCEPTIONS 7
204 #define FORCE 8
205 #define FRAMESIZE 9
206 #define HOST 10
207 #define PHONES 11
208 #define PROMPT 12
209 #define RAISE 13
210 #define RAISECHAR 14
211 #define RECORD 15
212 #define REMOTE 16
213 #define SCRIPT 17
214 #define TABEXPAND 18
215 #define VERBOSE 19
216 #define SHELL 20
217 #define HOME 21
218 #define ECHOCHECK 22
219 #define DISCONNECT 23
220 #define TAND 24
221 #define LDELAY 25
222 #define CDELAY 26
223 #define ETIMEOUT 27
224 #define RAWFTP 28
225 #define HALFDUPLEX 29
226 #define LECHO 30
227 #define PARITY 31
228 #define HARDWAREFLOW 32
229
230 struct termios term; /* current mode of terminal */
231 struct termios defterm; /* initial mode of terminal */
232 struct termios defchars; /* current mode with initial chars */
233
234 FILE *fscript; /* FILE for scripting */
235
236 int fildes[2]; /* file transfer synchronization channel */
237 int repdes[2]; /* read process synchronization channel */
238 int FD; /* open file descriptor to remote host */
239 int AC; /* open file descriptor to dialer (v831 only) */
240 int vflag; /* print .tiprc initialization sequence */
241 int sfd; /* for ~< operation */
242 int pid; /* pid of tipout */
243 uid_t uid, euid; /* real and effective user id's */
244 gid_t gid, egid; /* real and effective group id's */
245 int stop; /* stop transfer session flag */
246 int quit; /* same; but on other end */
247 int intflag; /* recognized interrupt */
248 int stoprompt; /* for interrupting a prompt session */
249 int timedout; /* ~> transfer timedout */
250 int cumode; /* simulating the "cu" program */
251 int bits8; /* terminal is is 8-bit mode */
252 #define STRIP_PAR (bits8 ? 0377 : 0177)
253
254 char fname[80]; /* file name buffer for ~< */
255 char copyname[80]; /* file name buffer for ~> */
256 char ccc; /* synchronization character */
257 char ch; /* for tipout */
258
259 int odisc; /* initial tty line discipline */
260 extern int disc; /* current tty discpline */
261
262 extern acu_t acutable[];
263 extern esctable_t etable[];
264 extern unsigned char evenpartab[];
265
266 void alrmtimeout(int);
267 int any(char, const char *);
268 void chdirectory(char);
269 void cleanup(int);
270 const char *connect(void);
271 void consh(char);
272 char *ctrl(char);
273 void cumain(int, char **);
274 void cu_put(char);
275 void cu_take(char);
276 void disconnect(const char *);
277 char *expand(char *);
278 void finish(char);
279 void genbrk(char);
280 void getfl(char);
281 char *getremote(char *);
282 void hardwareflow(const char *);
283 void help(char);
284 int hunt(char *);
285 char *interp(const char *);
286 void pipefile(char);
287 void pipeout(char);
288 int prompt(const char *, char *, size_t);
289 void xpwrite(int, char *, int);
290 void raw(void);
291 void send(char);
292 void sendfile(char);
293 void setparity(const char *);
294 void setscript(void);
295 void shell(char);
296 void suspend(char);
297 void tandem(const char *);
298 void tipabort(const char *);
299 void tipout(void);
300 int ttysetup(int);
301 void unraw(void);
302 void variable(char);
303 void vinit(void);
304 char *vinterp(char *, char);
305 void vlex(char *);
306 int vstring(const char *, char *);
307
308 void biz22_abort(void);
309 void biz22_disconnect(void);
310 int biz22f_dialer(char *, char *);
311 int biz22w_dialer(char *, char *);
312 void biz31_abort(void);
313 void biz31_disconnect(void);
314 int biz31f_dialer(char *, char *);
315 int biz31w_dialer(char *, char *);
316 void cour_abort(void);
317 int cour_dialer(char *, char *);
318 void cour_disconnect(void);
319 int df02_dialer(char *, char *);
320 int df03_dialer(char *, char *);
321 void df_abort(void);
322 void df_disconnect(void);
323 void dn_abort(void);
324 int dn_dialer(char *, char *);
325 void dn_disconnect(void);
326 void hay_abort(void);
327 int hay_dialer(char *, char *);
328 void hay_disconnect(void);
329 void t3000_abort(void);
330 int t3000_dialer(char *, char *);
331 void t3000_disconnect(void);
332 void v3451_abort(void);
333 int v3451_dialer(char *, char *);
334 void v3451_disconnect(void);
335 void v831_abort(void);
336 int v831_dialer(char *, char *);
337 void v831_disconnect(void);
338 void ven_abort(void);
339 int ven_dialer(char *, char *);
340 void ven_disconnect(void);
341