]> andersk Git - openssh.git/blob - defines.h
- (djm) OpenBSD CVS sync:
[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 # endif /* RSH_PATH */
254 #endif /* _PATH_RSH */
255
256 #ifndef _PATH_NOLOGIN
257 # define _PATH_NOLOGIN "/etc/nologin"
258 #endif
259
260 /* Macros */
261
262 #if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
263 # define HAVE_LOGIN_CAP
264 #endif
265
266 #ifndef MAX
267 # define MAX(a,b) (((a)>(b))?(a):(b))
268 # define MIN(a,b) (((a)<(b))?(a):(b))
269 #endif
270
271 #ifndef timersub
272 #define timersub(a, b, result)                                                                            \
273    do {                                                                                                                                           \
274       (result)->tv_sec = (a)->tv_sec - (b)->tv_sec;           \
275       (result)->tv_usec = (a)->tv_usec - (b)->tv_usec;        \
276       if ((result)->tv_usec < 0) {                            \
277          --(result)->tv_sec;                                  \
278          (result)->tv_usec += 1000000;                        \
279       }                                                       \
280    } while (0)
281 #endif
282
283 #ifndef __P
284 # define __P(x) x
285 #endif
286
287 #if !defined(IN6_IS_ADDR_V4MAPPED)
288 # define IN6_IS_ADDR_V4MAPPED(a) \
289         ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
290          (((u_int32_t *) (a))[2] == htonl (0xffff)))
291 #endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
292
293 #if !defined(__GNUC__) || (__GNUC__ < 2)
294 # define __attribute__(x)
295 #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
296
297 #if defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM)
298 # define USE_PAM
299 #endif /* defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) */
300
301 #ifndef SUN_LEN
302 #define SUN_LEN(su) \
303         (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))
304 #endif /* SUN_LEN */
305
306 /* Function replacement / compatibility hacks */
307
308 /* In older versions of libpam, pam_strerror takes a single argument */
309 #ifdef HAVE_OLD_PAM
310 # define PAM_STRERROR(a,b) pam_strerror((b))
311 #else
312 # define PAM_STRERROR(a,b) pam_strerror((a),(b))
313 #endif
314
315 #if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
316 # undef HAVE_GETADDRINFO
317 #endif /* defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO) */
318
319 #if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
320 # define memmove(s1, s2, n) bcopy((s2), (s1), (n))
321 #endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
322
323 #if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
324 # define atexit(a) on_exit(a)
325 #endif /* !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) */
326
327 #if defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP)
328 #  define USE_VHANGUP
329 #endif /* defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) */
330
331 #ifndef GETPGRP_VOID
332 # define getpgrp() getpgrp(0)
333 #endif
334
335 /**
336  ** login recorder definitions
337  **/
338
339 /* preprocess */
340
341 #ifdef HAVE_UTMP_H
342 #  ifdef HAVE_TIME_IN_UTMP
343 #    include <time.h>
344 #  endif
345 #  include <utmp.h>
346 #endif
347 #ifdef HAVE_UTMPX_H
348 #  ifdef HAVE_TV_IN_UTMPX
349 #    include <sys/time.h>
350 #  endif
351 #  include <utmpx.h>
352 #endif
353 #ifdef HAVE_LASTLOG_H
354 #  include <lastlog.h>
355 #endif
356 #ifdef HAVE_PATHS_H
357 #  include <paths.h>
358 #endif
359
360 /* FIXME: put default paths back in */
361 #ifndef UTMP_FILE
362 #  ifdef _PATH_UTMP
363 #    define UTMP_FILE _PATH_UTMP
364 #  else
365 #    ifdef CONF_UTMP_FILE
366 #      define UTMP_FILE CONF_UTMP_FILE
367 #    endif
368 #  endif
369 #endif
370 #ifndef WTMP_FILE
371 #  ifdef _PATH_WTMP
372 #    define WTMP_FILE _PATH_WTMP
373 #  else
374 #    ifdef CONF_WTMP_FILE
375 #      define WTMP_FILE CONF_WTMP_FILE
376 #    endif
377 #  endif
378 #endif
379 /* pick up the user's location for lastlog if given */
380 #ifndef LASTLOG_FILE
381 #  ifdef _PATH_LASTLOG
382 #    define LASTLOG_FILE _PATH_LASTLOG
383 #  else
384 #    ifdef CONF_LASTLOG_FILE
385 #      define LASTLOG_FILE CONF_LASTLOG_FILE
386 #    endif
387 #  endif
388 #endif
389
390
391 /* The login() library function in libutil is first choice */
392 #if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
393 #  define USE_LOGIN
394
395 #else
396 /* Simply select your favourite login types. */
397 /* Can't do if-else because some systems use several... <sigh> */
398 #  if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
399 #    define USE_UTMPX
400 #  endif
401 #  if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
402 #    define USE_UTMP
403 #  endif
404 #  if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
405 #    define USE_WTMPX
406 #  endif
407 #  if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
408 #    define USE_WTMP
409 #  endif
410
411 #endif
412
413 /* I hope that the presence of LASTLOG_FILE is enough to detect this */
414 #if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
415 #  define USE_LASTLOG
416 #endif
417
418 /* which type of time to use? (api.c) */
419 #ifdef HAVE_SYS_TIME_H
420 #  define USE_TIMEVAL
421 #endif
422
423 /** end of login recorder definitions */
424
425 #endif /* _DEFINES_H */
This page took 0.090114 seconds and 5 git commands to generate.