Remove usage of syslog(3)'s LOG_ODELAY because it is the default.
[dragonfly.git] / libexec / telnetd / defs.h
1 /*
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *      @(#)defs.h      8.1 (Berkeley) 6/4/93
30  * $FreeBSD: src/crypto/telnet/telnetd/defs.h,v 1.1.1.1.8.1 2002/04/13 10:59:08 markm Exp $
31  */
32
33 /*
34  * Telnet server defines
35  */
36 #include <sys/types.h>
37 #include <sys/param.h>
38
39 #ifndef BSD
40 # define        BSD 43
41 #endif
42
43 #if defined(PRINTOPTIONS) && defined(DIAGNOSTICS)
44 #define TELOPTS
45 #define TELCMDS
46 #define SLC_NAMES
47 #endif
48
49 #if     defined(SYSV_TERMIO) && !defined(USE_TERMIO)
50 # define        USE_TERMIO
51 #endif
52
53 #include <sys/socket.h>
54 #include <sys/wait.h>
55 #include <fcntl.h>
56 #include <sys/file.h>
57 #include <sys/stat.h>
58 #include <sys/time.h>
59 #ifndef FILIO_H
60 #include <sys/ioctl.h>
61 #else
62 #include <sys/filio.h>
63 #endif
64
65 #include <netinet/in.h>
66
67 #include <arpa/telnet.h>
68
69 #include <stdio.h>
70 #ifdef  __STDC__
71 #include <stdlib.h>
72 #endif
73 #include <signal.h>
74 #include <errno.h>
75 #include <netdb.h>
76 #include <syslog.h>
77 #ifndef LOG_DAEMON
78 #define LOG_DAEMON      0
79 #endif
80 #include <ctype.h>
81 #ifndef NO_STRING_H
82 #include <string.h>
83 #else
84 #include <strings.h>
85 #endif
86
87 #ifndef USE_TERMIO
88 #include <sgtty.h>
89 #else
90 # ifdef SYSV_TERMIO
91 # include <termio.h>
92 # else
93 # include <termios.h>
94 # endif
95 #endif
96 #if !defined(USE_TERMIO) || defined(NO_CC_T)
97 typedef unsigned char cc_t;
98 #endif
99
100 #ifdef  __STDC__
101 #include <unistd.h>
102 #endif
103
104 #ifndef _POSIX_VDISABLE
105 # ifdef VDISABLE
106 #  define _POSIX_VDISABLE VDISABLE
107 # else
108 #  define _POSIX_VDISABLE ((unsigned char)'\377')
109 # endif
110 #endif
111
112 #if     !defined(TIOCSCTTY) && defined(TCSETCTTY)
113 # define        TIOCSCTTY TCSETCTTY
114 #endif
115
116 #ifndef FD_SET
117 #ifndef HAVE_fd_set
118 typedef struct fd_set { int fds_bits[1]; } fd_set;
119 #endif
120
121 #define FD_SET(n, p)    ((p)->fds_bits[0] |= (1<<(n)))
122 #define FD_CLR(n, p)    ((p)->fds_bits[0] &= ~(1<<(n)))
123 #define FD_ISSET(n, p)  ((p)->fds_bits[0] & (1<<(n)))
124 #define FD_ZERO(p)      ((p)->fds_bits[0] = 0)
125 #endif  /* FD_SET */
126
127 /*
128  * I/O data buffers defines
129  */
130 #define NETSLOP 64
131
132 #define NIACCUM(c)      {   *netip++ = c; \
133                             ncc++; \
134                         }
135
136 /* clock manipulations */
137 #define settimer(x)     (clocks.x = ++clocks.system)
138 #define sequenceIs(x,y) (clocks.x < clocks.y)
139
140 /*
141  * Linemode support states, in decreasing order of importance
142  */
143 #define REAL_LINEMODE   0x04
144 #define KLUDGE_OK       0x03
145 #define NO_AUTOKLUDGE   0x02
146 #define KLUDGE_LINEMODE 0x01
147 #define NO_LINEMODE     0x00
148
149 /*
150  * Structures of information for each special character function.
151  */
152 typedef struct {
153         unsigned char   flag;           /* the flags for this function */
154         cc_t            val;            /* the value of the special character */
155 } slcent, *Slcent;
156
157 typedef struct {
158         slcent          defset;         /* the default settings */
159         slcent          current;        /* the current settings */
160         cc_t            *sptr;          /* a pointer to the char in */
161                                         /* system data structures */
162 } slcfun, *Slcfun;
163
164 #ifdef DIAGNOSTICS
165 /*
166  * Diagnostics capabilities
167  */
168 #define TD_REPORT       0x01    /* Report operations to client */
169 #define TD_EXERCISE     0x02    /* Exercise client's implementation */
170 #define TD_NETDATA      0x04    /* Display received data stream */
171 #define TD_PTYDATA      0x08    /* Display data passed to pty */
172 #define TD_OPTIONS      0x10    /* Report just telnet options */
173 #endif /* DIAGNOSTICS */
174
175 /*
176  * We keep track of each side of the option negotiation.
177  */
178
179 #define MY_STATE_WILL           0x01
180 #define MY_WANT_STATE_WILL      0x02
181 #define MY_STATE_DO             0x04
182 #define MY_WANT_STATE_DO        0x08
183
184 /*
185  * Macros to check the current state of things
186  */
187
188 #define my_state_is_do(opt)             (options[opt]&MY_STATE_DO)
189 #define my_state_is_will(opt)           (options[opt]&MY_STATE_WILL)
190 #define my_want_state_is_do(opt)        (options[opt]&MY_WANT_STATE_DO)
191 #define my_want_state_is_will(opt)      (options[opt]&MY_WANT_STATE_WILL)
192
193 #define my_state_is_dont(opt)           (!my_state_is_do(opt))
194 #define my_state_is_wont(opt)           (!my_state_is_will(opt))
195 #define my_want_state_is_dont(opt)      (!my_want_state_is_do(opt))
196 #define my_want_state_is_wont(opt)      (!my_want_state_is_will(opt))
197
198 #define set_my_state_do(opt)            (options[opt] |= MY_STATE_DO)
199 #define set_my_state_will(opt)          (options[opt] |= MY_STATE_WILL)
200 #define set_my_want_state_do(opt)       (options[opt] |= MY_WANT_STATE_DO)
201 #define set_my_want_state_will(opt)     (options[opt] |= MY_WANT_STATE_WILL)
202
203 #define set_my_state_dont(opt)          (options[opt] &= ~MY_STATE_DO)
204 #define set_my_state_wont(opt)          (options[opt] &= ~MY_STATE_WILL)
205 #define set_my_want_state_dont(opt)     (options[opt] &= ~MY_WANT_STATE_DO)
206 #define set_my_want_state_wont(opt)     (options[opt] &= ~MY_WANT_STATE_WILL)
207
208 /*
209  * Tricky code here.  What we want to know is if the MY_STATE_WILL
210  * and MY_WANT_STATE_WILL bits have the same value.  Since the two
211  * bits are adjacent, a little arithmatic will show that by adding
212  * in the lower bit, the upper bit will be set if the two bits were
213  * different, and clear if they were the same.
214  */
215 #define my_will_wont_is_changing(opt) \
216                         ((options[opt]+MY_STATE_WILL) & MY_WANT_STATE_WILL)
217
218 #define my_do_dont_is_changing(opt) \
219                         ((options[opt]+MY_STATE_DO) & MY_WANT_STATE_DO)
220
221 /*
222  * Make everything symetrical
223  */
224
225 #define HIS_STATE_WILL                  MY_STATE_DO
226 #define HIS_WANT_STATE_WILL             MY_WANT_STATE_DO
227 #define HIS_STATE_DO                    MY_STATE_WILL
228 #define HIS_WANT_STATE_DO               MY_WANT_STATE_WILL
229
230 #define his_state_is_do                 my_state_is_will
231 #define his_state_is_will               my_state_is_do
232 #define his_want_state_is_do            my_want_state_is_will
233 #define his_want_state_is_will          my_want_state_is_do
234
235 #define his_state_is_dont               my_state_is_wont
236 #define his_state_is_wont               my_state_is_dont
237 #define his_want_state_is_dont          my_want_state_is_wont
238 #define his_want_state_is_wont          my_want_state_is_dont
239
240 #define set_his_state_do                set_my_state_will
241 #define set_his_state_will              set_my_state_do
242 #define set_his_want_state_do           set_my_want_state_will
243 #define set_his_want_state_will         set_my_want_state_do
244
245 #define set_his_state_dont              set_my_state_wont
246 #define set_his_state_wont              set_my_state_dont
247 #define set_his_want_state_dont         set_my_want_state_wont
248 #define set_his_want_state_wont         set_my_want_state_dont
249
250 #define his_will_wont_is_changing       my_do_dont_is_changing
251 #define his_do_dont_is_changing         my_will_wont_is_changing