1 /* $NetBSD: tip.h,v 1.29 2007/02/16 20:25:33 hubertf Exp $ */
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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
32 * @(#)tip.h 8.1 (Berkeley) 6/6/93
36 * tip - terminal interface program
39 #include <sys/param.h>
40 #include <sys/ioctl.h>
43 #include <machine/endian.h>
60 * Remote host attributes
62 char *DV
; /* UNIX device(s) to open */
63 char *EL
; /* chars marking an EOL */
64 char *CM
; /* initial connection message */
65 char *IE
; /* EOT to expect on input */
66 char *OE
; /* EOT to send to complete FT */
67 char *CU
; /* call unit if making a phone call */
68 char *AT
; /* acu type */
69 char *PN
; /* phone number(s) */
70 char *DI
; /* disconnect string */
71 char *PA
; /* parity to be generated */
73 char *PH
; /* phone number file */
74 char *RM
; /* remote file name */
75 char *HO
; /* host name */
77 long BR
; /* line speed for conversation */
78 long FS
; /* frame size for transfers */
80 long DU
; /* this host is dialed up */
81 long HW
; /* this device is hardwired, see hunt.c */
82 char *ES
; /* escape character */
83 char *EX
; /* exceptions */
84 char *FO
; /* force (literal next) char*/
85 char *RC
; /* raise character */
86 char *RE
; /* script record file */
87 char *PR
; /* remote prompt */
88 long DL
; /* line delay for file transfers to remote */
89 long CL
; /* char delay for file transfers to remote */
90 long ET
; /* echocheck timeout */
91 long HD
; /* this host is half duplex - do local echo */
92 char DC
; /* this host is directly connected. */
99 const char *v_name
; /* whose name is it */
100 uint8_t v_type
; /* for interpreting set's */
101 uint8_t v_access
; /* protection of touchy ones */
102 const char *v_abrev
; /* possible abreviation */
103 void *v_value
; /* casted to a union later */
105 * XXX: this assumes that the storage space
106 * of a pointer >= that of a long
111 #define STRING 01 /* string valued */
112 #define BOOL 02 /* true-false value */
113 #define NUMBER 04 /* numeric value */
114 #define CHAR 010 /* character value */
116 #define WRITE 01 /* write access to variable */
117 #define READ 02 /* read access */
119 #define CHANGED 01 /* low bit is used to show modification */
120 #define PUBLIC 1 /* public access rights */
121 #define PRIVATE 03 /* private to definer */
122 #define ROOT 05 /* root defined */
127 #define ENVIRON 020 /* initialize out of the environment */
128 #define IREMOTE 040 /* initialize out of remote structure */
129 #define INIT 0100 /* static data space used for initialization */
133 * Definition of ACU line description
137 const char *acu_name
;
138 int (*acu_dialer
)(char *, char *);
139 void (*acu_disconnect
)(void);
140 void (*acu_abort
)(void);
144 #define equal(a, b) (strcmp(a,b)==0)/* A nice function to string compare */
147 * variable manipulation stuff --
148 * if we defined the value entry in value_t, then we couldn't
149 * initialize it in vars.c, so we cast it as needed to keep lint
153 #define value(v) vtable[v].v_value
155 #define number(v) ((int)(intptr_t)(v))
156 #define boolean(v) ((short)(intptr_t)(v))
157 #define character(v) ((char)(intptr_t)(v))
158 #define address(v) ((long *)(intptr_t)(v))
160 #define setnumber(v,n) do { (v) = (char *)(intptr_t)(n); } while (/*CONSTCOND*/0)
161 #define setboolean(v,n) do { (v) = (char *)(intptr_t)(n); } while (/*CONSTCOND*/0)
162 #define setcharacter(v,n) do { (v) = (char *)(intptr_t)(n); } while (/*CONSTCOND*/0)
163 #define setaddress(v,n) do { (v) = (char *)(intptr_t)(n); } while (/*CONSTCOND*/0)
166 * Escape command table definitions --
167 * lookup in this table is performed when ``escapec'' is recognized
168 * at the begining of a line (as defined by the eolmarks variable).
173 char e_char
; /* char to match on */
174 char e_flags
; /* experimental, privileged */
175 const char *e_help
; /* help string */
176 void (*e_func
)(char); /* command */
180 #define NORM 00 /* normal protection, execute anyone */
181 #define EXP 01 /* experimental, mark it with a `*' on help */
182 #define PRIV 02 /* privileged, root execute only */
184 extern int vflag
; /* verbose during reading of .tiprc file */
185 extern value_t vtable
[]; /* variable table */
188 * Definition of indices into variable table so
189 * value(DEFINE) turns into a static address.
191 * XXX: keep in sync with vtable[] in vars.c
196 #define DIALTIMEOUT 2
217 #define DISCONNECT 23
223 #define HALFDUPLEX 29
226 #define HARDWAREFLOW 32
228 struct termios term
; /* current mode of terminal */
229 struct termios defterm
; /* initial mode of terminal */
230 struct termios defchars
; /* current mode with initial chars */
232 FILE *fscript
; /* FILE for scripting */
234 int attndes
[2]; /* coprocess wakeup channel */
235 int fildes
[2]; /* file transfer synchronization channel */
236 int repdes
[2]; /* read process synchronization channel */
237 int FD
; /* open file descriptor to remote host */
238 #ifndef __lint__ /* not used by hayes.c, but used by some other dialers */
239 int AC
; /* open file descriptor to dialer (v831 only) */
241 int vflag
; /* print .tiprc initialization sequence */
242 int sfd
; /* for ~< operation */
243 int pid
; /* pid of tipout */
244 uid_t uid
, euid
; /* real and effective user id's */
245 gid_t gid
, egid
; /* real and effective group id's */
246 int stop
; /* stop transfer session flag */
247 int quit
; /* same; but on other end */
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)
254 char fname
[80]; /* file name buffer for ~< */
255 char copyname
[80]; /* file name buffer for ~> */
256 char ccc
; /* synchronization character */
258 int odisc
; /* initial tty line discipline */
260 extern acu_t acutable
[];
261 extern esctable_t etable
[];
262 extern unsigned char evenpartab
[];
264 void alrmtimeout(int);
265 int any(char, const char *);
266 void chdirectory(char);
268 const char *tip_connect(void);
271 void cumain(int, char **);
274 void disconnect(const char *);
275 char *expand(char *);
279 char *getremote(char *);
280 void hardwareflow(const char *);
283 char *interp(const char *);
286 int prompt(const char *, char *, size_t);
287 void xpwrite(int, char *, size_t);
291 void setparity(const char *);
292 void setscript(void);
295 void tandem(const char *);
296 void tipabort(const char *);
298 int ttysetup(speed_t
);
302 char *vinterp(char *, char);
304 int vstring(const char *, char *);
306 void biz22_abort(void);
307 void biz22_disconnect(void);
308 int biz22f_dialer(char *, char *);
309 int biz22w_dialer(char *, char *);
310 void biz31_abort(void);
311 void biz31_disconnect(void);
312 int biz31f_dialer(char *, char *);
313 int biz31w_dialer(char *, char *);
314 void cour_abort(void);
315 int cour_dialer(char *, char *);
316 void cour_disconnect(void);
317 int df02_dialer(char *, char *);
318 int df03_dialer(char *, char *);
320 void df_disconnect(void);
322 int dn_dialer(char *, char *);
323 void dn_disconnect(void);
324 void hay_abort(void);
325 int hay_dialer(char *, char *);
326 void hay_disconnect(void);
327 void t3000_abort(void);
328 int t3000_dialer(char *, char *);
329 void t3000_disconnect(void);
330 void v3451_abort(void);
331 int v3451_dialer(char *, char *);
332 void v3451_disconnect(void);
333 void v831_abort(void);
334 int v831_dialer(char *, char *);
335 void v831_disconnect(void);
336 void ven_abort(void);
337 int ven_dialer(char *, char *);
338 void ven_disconnect(void);