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