]> andersk Git - openssh.git/blob - defines.h
- (djm) Merged cleanup patch from Mark Miller <markm@swoon.net>
[openssh.git] / defines.h
1 #ifndef _DEFINES_H
2 #define _DEFINES_H
3
4 /* Necessary headers */
5
6 #include <sys/types.h> /* For [u]intxx_t */
7 #include <sys/socket.h> /* For SHUT_XXXX */
8 #include <sys/param.h> /* For MAXPATHLEN */
9 #include <sys/un.h> /* For SUN_LEN */
10 #include <netinet/in_systm.h> /* For typedefs */
11 #include <netinet/in.h> /* For IPv6 macros */
12 #include <netinet/ip.h> /* For IPTOS macros */
13 #ifdef HAVE_SYS_BITYPES_H
14 # include <sys/bitypes.h> /* For u_intXX_t */
15 #endif 
16 #ifdef HAVE_PATHS_H
17 # include <paths.h> /* For _PATH_XXX */
18 #endif 
19 #ifdef HAVE_LIMITS_H
20 # include <limits.h> /* For PATH_MAX */
21 #endif 
22 #ifdef HAVE_SYS_TIME_H
23 # include <sys/time.h> /* For timersub */
24 #endif
25 #ifdef HAVE_MAILLOCK_H
26 # include <maillock.h> /* For _PATH_MAILDIR */
27 #endif
28 #ifdef HAVE_SYS_CDEFS_H
29 # include <sys/cdefs.h> /* For __P() */
30 #endif 
31 #ifdef HAVE_SYS_SYSMACROS_H
32 # include <sys/sysmacros.h> /* For MIN, MAX, etc */
33 #endif
34 #ifdef HAVE_SYS_STAT_H
35 # include <sys/stat.h> /* For S_* constants and macros */
36 #endif
37 #ifdef HAVE_NEXT
38 #  include <libc.h>
39 #endif
40
41 #include <unistd.h> /* For STDIN_FILENO, etc */
42
43 /* Constants */
44
45 #ifndef SHUT_RDWR
46 enum
47 {
48   SHUT_RD = 0,          /* No more receptions.  */
49   SHUT_WR,                      /* No more transmissions.  */
50   SHUT_RDWR                     /* No more receptions or transmissions.  */
51 };
52 # define SHUT_RD   SHUT_RD
53 # define SHUT_WR   SHUT_WR
54 # define SHUT_RDWR SHUT_RDWR
55 #endif
56
57 #ifndef IPTOS_LOWDELAY
58 # define IPTOS_LOWDELAY          0x10
59 # define IPTOS_THROUGHPUT        0x08
60 # define IPTOS_RELIABILITY       0x04
61 # define IPTOS_LOWCOST           0x02
62 # define IPTOS_MINCOST           IPTOS_LOWCOST
63 #endif /* IPTOS_LOWDELAY */
64
65 #ifndef MAXPATHLEN
66 # ifdef PATH_MAX
67 #  define MAXPATHLEN PATH_MAX
68 # else /* PATH_MAX */
69 #  define MAXPATHLEN 64 /* Should be safe */
70 # endif /* PATH_MAX */
71 #endif /* MAXPATHLEN */
72
73 #ifndef STDIN_FILENO     
74 # define STDIN_FILENO    0
75 #endif                   
76 #ifndef STDOUT_FILENO    
77 # define STDOUT_FILENO   1
78 #endif                   
79 #ifndef STDERR_FILENO    
80 # define STDERR_FILENO   2
81 #endif                   
82
83 #ifndef S_ISREG
84 # define S_ISDIR(mode)  (((mode) & (_S_IFMT)) == (_S_IFDIR))
85 # define S_ISREG(mode)  (((mode) & (_S_IFMT)) == (_S_IFREG))
86 #endif /* S_ISREG */
87
88 #ifndef S_IXUSR
89 # define S_IXUSR                        0000100 /* execute/search permission, */
90 # define S_IXGRP                        0000010 /* execute/search permission, */
91 # define S_IXOTH                        0000001 /* execute/search permission, */
92 # define _S_IWUSR                       0000200 /* write permission, */
93 # define S_IWUSR                        _S_IWUSR        /* write permission, owner */
94 # define S_IWGRP                        0000020 /* write permission, group */
95 # define S_IWOTH                        0000002 /* write permission, other */
96 # define S_IRUSR                        0000400 /* read permission, owner */
97 # define S_IRGRP                        0000040 /* read permission, group */
98 # define S_IROTH                        0000004 /* read permission, other */
99 # define S_IRWXU                        0000700 /* read, write, execute */
100 # define S_IRWXG                        0000070 /* read, write, execute */
101 # define S_IRWXO                        0000007 /* read, write, execute */
102 #endif /* S_IXUSR */
103
104 /* Types */
105
106 /* If sys/types.h does not supply intXX_t, supply them ourselves */
107 /* (or die trying) */
108
109 #ifndef HAVE_U_INT
110 typedef unsigned int u_int;
111 #endif
112
113 #ifndef HAVE_INTXX_T
114 # if (SIZEOF_CHAR == 1)
115 typedef char int8_t;
116 # else
117 #  error "8 bit int type not found."
118 # endif
119 # if (SIZEOF_SHORT_INT == 2)
120 typedef short int int16_t;
121 # else
122 #  error "16 bit int type not found."
123 # endif
124 # if (SIZEOF_INT == 4)
125 typedef int int32_t;
126 # else
127 #  error "32 bit int type not found."
128 # endif
129 #endif
130
131 /* If sys/types.h does not supply u_intXX_t, supply them ourselves */
132 #ifndef HAVE_U_INTXX_T
133 # ifdef HAVE_UINTXX_T
134 typedef uint8_t u_int8_t;
135 typedef uint16_t u_int16_t;
136 typedef uint32_t u_int32_t;
137 # define HAVE_U_INTXX_T 1
138 # else
139 #  if (SIZEOF_CHAR == 1)
140 typedef unsigned char u_int8_t;
141 #  else
142 #   error "8 bit int type not found."
143 #  endif
144 #  if (SIZEOF_SHORT_INT == 2)
145 typedef unsigned short int u_int16_t;
146 #  else
147 #   error "16 bit int type not found."
148 #  endif
149 #  if (SIZEOF_INT == 4)
150 typedef unsigned int u_int32_t;
151 #  else
152 #   error "32 bit int type not found."
153 #  endif
154 # endif
155 #endif
156
157 /* 64-bit types */
158 #ifndef HAVE_INT64_T
159 # if (SIZEOF_LONG_INT == 8)
160 typedef long int int64_t;
161 # else
162 #  if (SIZEOF_LONG_LONG_INT == 8)
163 typedef long long int int64_t;
164 #   define HAVE_INTXX_T 1
165 #  else
166 #   error "64 bit int type not found."
167 #  endif
168 # endif
169 #endif
170 #ifndef HAVE_U_INT64_T
171 # if (SIZEOF_LONG_INT == 8)
172 typedef unsigned long int u_int64_t;
173 # else
174 #  if (SIZEOF_LONG_LONG_INT == 8)
175 typedef unsigned long long int u_int64_t;
176 #   define HAVE_U_INTXX_T 1
177 #  else
178 #   error "64 bit int type not found."
179 #  endif
180 # endif
181 #endif
182
183 #ifndef HAVE_SOCKLEN_T
184 typedef unsigned int socklen_t;
185 # define HAVE_SOCKLEN_T
186 #endif /* HAVE_SOCKLEN_T */
187
188 #ifndef HAVE_SIZE_T
189 typedef unsigned int size_t;
190 # define HAVE_SIZE_T
191 #endif /* HAVE_SIZE_T */
192
193 #ifndef HAVE_SSIZE_T
194 typedef int ssize_t;
195 # define HAVE_SSIZE_T
196 #endif /* HAVE_SSIZE_T */
197
198 #ifndef HAVE_SA_FAMILY_T
199 typedef int sa_family_t;
200 # define HAVE_SA_FAMILY_T
201 #endif /* HAVE_SA_FAMILY_T */
202
203 #ifndef HAVE_PID_T
204 typedef int pid_t;
205 # define HAVE_PID_T
206 #endif /* HAVE_PID_T */
207
208 #ifndef HAVE_MODE_T
209 typedef int mode_t;
210 # define HAVE_MODE_T
211 #endif /* HAVE_MODE_T */
212
213 #if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
214 # define ss_family __ss_family
215 #endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
216
217 /* Paths */
218
219 #ifndef _PATH_BSHELL
220 # define _PATH_BSHELL "/bin/sh"
221 #endif
222
223 #ifdef USER_PATH
224 # ifdef _PATH_STDPATH
225 #  undef _PATH_STDPATH
226 # endif
227 # define _PATH_STDPATH USER_PATH
228 #endif
229
230 #ifndef _PATH_STDPATH
231 # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
232 #endif
233
234 #ifndef _PATH_DEVNULL
235 # define _PATH_DEVNULL "/dev/null"
236 #endif
237
238 #ifndef MAIL_DIRECTORY
239 # define MAIL_DIRECTORY "/var/spool/mail"
240 #endif
241
242 #ifndef MAILDIR
243 # define MAILDIR MAIL_DIRECTORY
244 #endif
245
246 #if !defined(_PATH_MAILDIR) && defined(MAILDIR)
247 # define _PATH_MAILDIR MAILDIR
248 #endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
249
250 #ifndef _PATH_RSH
251 # ifdef RSH_PATH
252 #  define _PATH_RSH RSH_PATH
253 # else /* RSH_PATH */
254 #  define _PATH_RSH "/usr/bin/rsh"
255 # endif /* RSH_PATH */
256 #endif /* _PATH_RSH */
257
258 #ifndef _PATH_NOLOGIN
259 # define _PATH_NOLOGIN "/etc/nologin"
260 #endif
261
262 /* Define this to be the path of the xauth program. */
263 #ifndef XAUTH_PATH
264 #define XAUTH_PATH "/usr/X11R6/bin/xauth"
265 #endif /* XAUTH_PATH */
266
267 /* Macros */
268
269 #if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
270 # define HAVE_LOGIN_CAP
271 #endif
272
273 #ifndef MAX
274 # define MAX(a,b) (((a)>(b))?(a):(b))
275 # define MIN(a,b) (((a)<(b))?(a):(b))
276 #endif
277
278 #ifndef timersub
279 #define timersub(a, b, result)                                                                            \
280    do {                                                                                                                                           \
281       (result)->tv_sec = (a)->tv_sec - (b)->tv_sec;           \
282       (result)->tv_usec = (a)->tv_usec - (b)->tv_usec;        \
283       if ((result)->tv_usec < 0) {                            \
284          --(result)->tv_sec;                                  \
285          (result)->tv_usec += 1000000;                        \
286       }                                                       \
287    } while (0)
288 #endif
289
290 #ifndef __P
291 # define __P(x) x
292 #endif
293
294 #if !defined(IN6_IS_ADDR_V4MAPPED)
295 # define IN6_IS_ADDR_V4MAPPED(a) \
296         ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
297          (((u_int32_t *) (a))[2] == htonl (0xffff)))
298 #endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
299
300 #if !defined(__GNUC__) || (__GNUC__ < 2)
301 # define __attribute__(x)
302 #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
303
304 #if defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM)
305 # define USE_PAM
306 #endif /* defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) */
307
308 #ifndef SUN_LEN
309 #define SUN_LEN(su) \
310         (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))
311 #endif /* SUN_LEN */
312
313 /* Function replacement / compatibility hacks */
314
315 /* In older versions of libpam, pam_strerror takes a single argument */
316 #ifdef HAVE_OLD_PAM
317 # define PAM_STRERROR(a,b) pam_strerror((b))
318 #else
319 # define PAM_STRERROR(a,b) pam_strerror((a),(b))
320 #endif
321
322 #if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
323 # undef HAVE_GETADDRINFO
324 #endif /* defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO) */
325
326 #if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
327 # define memmove(s1, s2, n) bcopy((s2), (s1), (n))
328 #endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
329
330 #if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
331 # define atexit(a) on_exit(a)
332 #endif /* !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) */
333
334 #if defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP)
335 #  define USE_VHANGUP
336 #endif /* defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) */
337
338 #ifndef GETPGRP_VOID
339 # define getpgrp() getpgrp(0)
340 #endif
341
342 /*
343  * Define this to use pipes instead of socketpairs for communicating with the
344  * client program.  Socketpairs do not seem to work on all systems.
345  *
346  * configure.in sets this for a few OS's which are known to have problems
347  * but you may need to set it yourself
348  */
349 /* #define USE_PIPES 1 */
350
351 /**
352  ** login recorder definitions
353  **/
354
355 /* preprocess */
356
357 #ifdef HAVE_UTMP_H
358 #  ifdef HAVE_TIME_IN_UTMP
359 #    include <time.h>
360 #  endif
361 #  include <utmp.h>
362 #endif
363 #ifdef HAVE_UTMPX_H
364 #  ifdef HAVE_TV_IN_UTMPX
365 #    include <sys/time.h>
366 #  endif
367 #  include <utmpx.h>
368 #endif
369 #ifdef HAVE_LASTLOG_H
370 #  include <lastlog.h>
371 #endif
372 #ifdef HAVE_PATHS_H
373 #  include <paths.h>
374 #endif
375
376 /* FIXME: put default paths back in */
377 #ifndef UTMP_FILE
378 #  ifdef _PATH_UTMP
379 #    define UTMP_FILE _PATH_UTMP
380 #  else
381 #    ifdef CONF_UTMP_FILE
382 #      define UTMP_FILE CONF_UTMP_FILE
383 #    endif
384 #  endif
385 #endif
386 #ifndef WTMP_FILE
387 #  ifdef _PATH_WTMP
388 #    define WTMP_FILE _PATH_WTMP
389 #  else
390 #    ifdef CONF_WTMP_FILE
391 #      define WTMP_FILE CONF_WTMP_FILE
392 #    endif
393 #  endif
394 #endif
395 /* pick up the user's location for lastlog if given */
396 #ifndef LASTLOG_FILE
397 #  ifdef _PATH_LASTLOG
398 #    define LASTLOG_FILE _PATH_LASTLOG
399 #  else
400 #    ifdef CONF_LASTLOG_FILE
401 #      define LASTLOG_FILE CONF_LASTLOG_FILE
402 #    endif
403 #  endif
404 #endif
405
406
407 /* The login() library function in libutil is first choice */
408 #if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
409 #  define USE_LOGIN
410
411 #else
412 /* Simply select your favourite login types. */
413 /* Can't do if-else because some systems use several... <sigh> */
414 #  if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
415 #    define USE_UTMPX
416 #  endif
417 #  if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
418 #    define USE_UTMP
419 #  endif
420 #  if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
421 #    define USE_WTMPX
422 #  endif
423 #  if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
424 #    define USE_WTMP
425 #  endif
426
427 #endif
428
429 /* I hope that the presence of LASTLOG_FILE is enough to detect this */
430 #if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
431 #  define USE_LASTLOG
432 #endif
433
434 /* which type of time to use? (api.c) */
435 #ifdef HAVE_SYS_TIME_H
436 #  define USE_TIMEVAL
437 #endif
438
439 /** end of login recorder definitions */
440
441 #endif /* _DEFINES_H */
This page took 0.068896 seconds and 5 git commands to generate.