file reorg, pathnames.h, paths.h
[unix-history] / usr / src / usr.bin / tip / tip.h
CommitLineData
051b1e55 1/*
c9686c12
KB
2 * Copyright (c) 1983 The Regents of the University of California.
3 * All rights reserved.
051b1e55 4 *
c9686c12
KB
5 * Redistribution and use in source and binary forms are permitted
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16 *
17 * @(#)tip.h 5.4 (Berkeley) %G%
051b1e55 18 */
05862919 19
11adac90
BJ
20/*
21 * tip - terminal interface program
11adac90
BJ
22 */
23
05862919
SL
24#include <sys/types.h>
25#include <sys/file.h>
26
11adac90
BJ
27#include <sgtty.h>
28#include <signal.h>
29#include <stdio.h>
30#include <pwd.h>
c731dacc 31#include <ctype.h>
05862919
SL
32#include <setjmp.h>
33#include <errno.h>
11adac90
BJ
34
35/*
36 * Remote host attributes
37 */
38char *DV; /* UNIX device(s) to open */
39char *EL; /* chars marking an EOL */
40char *CM; /* initial connection message */
41char *IE; /* EOT to expect on input */
42char *OE; /* EOT to send to complete FT */
43char *CU; /* call unit if making a phone call */
44char *AT; /* acu type */
45char *PN; /* phone number(s) */
8b6d643c
RC
46char *DI; /* disconnect string */
47char *PA; /* parity to be generated */
11adac90
BJ
48
49char *PH; /* phone number file */
50char *RM; /* remote file name */
51char *HO; /* host name */
52
53int BR; /* line speed for conversation */
54int FS; /* frame size for transfers */
55
56char DU; /* this host is dialed up */
f0211bf2 57char HW; /* this device is hardwired, see hunt.c */
8b6d643c
RC
58char *ES; /* escape character */
59char *EX; /* exceptions */
60char *FO; /* force (literal next) char*/
61char *RC; /* raise character */
62char *RE; /* script record file */
63char *PR; /* remote prompt */
64int DL; /* line delay for file transfers to remote */
65int CL; /* char delay for file transfers to remote */
66int ET; /* echocheck timeout */
67char HD; /* this host is half duplex - do local echo */
11adac90
BJ
68
69/*
70 * String value table
71 */
72typedef
73 struct {
74 char *v_name; /* whose name is it */
75 char v_type; /* for interpreting set's */
76 char v_access; /* protection of touchy ones */
77 char *v_abrev; /* possible abreviation */
78 char *v_value; /* casted to a union later */
79 }
80 value_t;
81
82#define STRING 01 /* string valued */
83#define BOOL 02 /* true-false value */
84#define NUMBER 04 /* numeric value */
85#define CHAR 010 /* character value */
86
87#define WRITE 01 /* write access to variable */
88#define READ 02 /* read access */
89
90#define CHANGED 01 /* low bit is used to show modification */
91#define PUBLIC 1 /* public access rights */
92#define PRIVATE 03 /* private to definer */
93#define ROOT 05 /* root defined */
94
95#define TRUE 1
96#define FALSE 0
97
98#define ENVIRON 020 /* initialize out of the environment */
99#define IREMOTE 040 /* initialize out of remote structure */
100#define INIT 0100 /* static data space used for initialization */
101#define TMASK 017
102
103/*
104 * Definition of ACU line description
105 */
106typedef
107 struct {
108 char *acu_name;
109 int (*acu_dialer)();
110 int (*acu_disconnect)();
111 int (*acu_abort)();
112 }
113 acu_t;
114
115#define equal(a, b) (strcmp(a,b)==0)/* A nice function to string compare */
11adac90
BJ
116
117/*
118 * variable manipulation stuff --
119 * if we defined the value entry in value_t, then we couldn't
120 * initialize it in vars.c, so we cast it as needed to keep lint
121 * happy.
122 */
123typedef
124 union {
125 int zz_number;
f14fa07a
SL
126 short zz_boolean[2];
127 char zz_character[4];
11adac90
BJ
128 int *zz_address;
129 }
130 zzhack;
131
132#define value(v) vtable[v].v_value
133
11adac90 134#define number(v) ((((zzhack *)(&(v))))->zz_number)
f14fa07a
SL
135#ifdef vax
136#define boolean(v) ((((zzhack *)(&(v))))->zz_boolean[0])
137#define character(v) ((((zzhack *)(&(v))))->zz_character[0])
138#else
139#define boolean(v) ((((zzhack *)(&(v))))->zz_boolean[1])
140#define character(v) ((((zzhack *)(&(v))))->zz_character[3])
141#endif
11adac90
BJ
142#define address(v) ((((zzhack *)(&(v))))->zz_address)
143
144/*
145 * Escape command table definitions --
146 * lookup in this table is performed when ``escapec'' is recognized
147 * at the begining of a line (as defined by the eolmarks variable).
148*/
149
150typedef
151 struct {
152 char e_char; /* char to match on */
153 char e_flags; /* experimental, priviledged */
154 char *e_help; /* help string */
155 int (*e_func)(); /* command */
156 }
157 esctable_t;
158
159#define NORM 00 /* normal protection, execute anyone */
160#define EXP 01 /* experimental, mark it with a `*' on help */
161#define PRIV 02 /* priviledged, root execute only */
162
163extern int vflag; /* verbose during reading of .tiprc file */
164extern value_t vtable[]; /* variable table */
165
166#ifndef ACULOG
167#define logent(a, b, c, d)
168#define loginit()
169#endif
170
171/*
172 * Definition of indices into variable table so
173 * value(DEFINE) turns into a static address.
174 */
175
176#define BEAUTIFY 0
177#define BAUDRATE 1
178#define DIALTIMEOUT 2
179#define EOFREAD 3
180#define EOFWRITE 4
181#define EOL 5
182#define ESCAPE 6
183#define EXCEPTIONS 7
184#define FORCE 8
185#define FRAMESIZE 9
186#define HOST 10
05862919
SL
187#define LOG 11
188#define PHONES 12
189#define PROMPT 13
190#define RAISE 14
191#define RAISECHAR 15
192#define RECORD 16
193#define REMOTE 17
194#define SCRIPT 18
195#define TABEXPAND 19
196#define VERBOSE 20
197#define SHELL 21
198#define HOME 22
199#define ECHOCHECK 23
200#define DISCONNECT 24
201#define TAND 25
202#define LDELAY 26
203#define CDELAY 27
204#define ETIMEOUT 28
205#define RAWFTP 29
206#define HALFDUPLEX 30
207#define LECHO 31
208#define PARITY 32
11adac90
BJ
209
210#define NOVAL ((value_t *)NULL)
211#define NOACU ((acu_t *)NULL)
212#define NOSTR ((char *)NULL)
213#define NOFILE ((FILE *)NULL)
214#define NOPWD ((struct passwd *)0)
215
216struct sgttyb arg; /* current mode of local terminal */
217struct sgttyb defarg; /* initial mode of local terminal */
218struct tchars tchars; /* current state of terminal */
219struct tchars defchars; /* initial state of terminal */
c5d1037a
BJ
220struct ltchars ltchars; /* current local characters of terminal */
221struct ltchars deflchars; /* initial local characters of terminal */
11adac90
BJ
222
223FILE *fscript; /* FILE for scripting */
224
225int fildes[2]; /* file transfer synchronization channel */
226int repdes[2]; /* read process sychronization channel */
227int FD; /* open file descriptor to remote host */
8b6d643c 228int AC; /* open file descriptor to dialer (v831 only) */
11adac90
BJ
229int vflag; /* print .tiprc initialization sequence */
230int sfd; /* for ~< operation */
231int pid; /* pid of tipout */
f95c3446
MK
232uid_t uid, euid; /* real and effective user id's */
233gid_t gid, egid; /* real and effective group id's */
11adac90
BJ
234int stop; /* stop transfer session flag */
235int quit; /* same; but on other end */
236int intflag; /* recognized interrupt */
237int stoprompt; /* for interrupting a prompt session */
238int timedout; /* ~> transfer timedout */
257b33f8 239int cumode; /* simulating the "cu" program */
11adac90
BJ
240
241char fname[80]; /* file name buffer for ~< */
242char copyname[80]; /* file name buffer for ~> */
243char ccc; /* synchronization character */
244char ch; /* for tipout */
245char *uucplock; /* name of lock file for uucp's */
246
11adac90 247int odisc; /* initial tty line discipline */
05862919
SL
248extern int disc; /* current tty discpline */
249
250extern char *ctrl();
251extern char *ctime();
252extern long time();
253extern struct passwd *getpwuid();
254extern char *getlogin();
255extern char *vinterp();
256extern char *getenv();
257extern char *rindex();
258extern char *index();
259extern char *malloc();
260extern char *connect();