2 * Copyright (c) 1999-2003 Damien Miller. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 /* $Id: defines.h,v 1.122 2005/07/14 07:22:11 dtucker Exp $ */
36 SHUT_RD
= 0, /* No more receptions. */
37 SHUT_WR
, /* No more transmissions. */
38 SHUT_RDWR
/* No more receptions or transmissions. */
40 # define SHUT_RD SHUT_RD
41 # define SHUT_WR SHUT_WR
42 # define SHUT_RDWR SHUT_RDWR
45 #ifndef IPTOS_LOWDELAY
46 # define IPTOS_LOWDELAY 0x10
47 # define IPTOS_THROUGHPUT 0x08
48 # define IPTOS_RELIABILITY 0x04
49 # define IPTOS_LOWCOST 0x02
50 # define IPTOS_MINCOST IPTOS_LOWCOST
51 #endif /* IPTOS_LOWDELAY */
55 # define MAXPATHLEN PATH_MAX
57 # define MAXPATHLEN 64
58 /* realpath uses a fixed buffer of size MAXPATHLEN, so force use of ours */
59 # ifndef BROKEN_REALPATH
60 # define BROKEN_REALPATH 1
61 # endif /* BROKEN_REALPATH */
62 # endif /* PATH_MAX */
63 #endif /* MAXPATHLEN */
66 # define STDIN_FILENO 0
69 # define STDOUT_FILENO 1
72 # define STDERR_FILENO 2
75 #ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
77 #define NGROUPS_MAX NGROUPS
83 #ifndef O_NONBLOCK /* Non Blocking Open */
84 # define O_NONBLOCK 00004
88 # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
92 # define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
96 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
100 # define S_IXUSR 0000100 /* execute/search permission, */
101 # define S_IXGRP 0000010 /* execute/search permission, */
102 # define S_IXOTH 0000001 /* execute/search permission, */
103 # define _S_IWUSR 0000200 /* write permission, */
104 # define S_IWUSR _S_IWUSR /* write permission, owner */
105 # define S_IWGRP 0000020 /* write permission, group */
106 # define S_IWOTH 0000002 /* write permission, other */
107 # define S_IRUSR 0000400 /* read permission, owner */
108 # define S_IRGRP 0000040 /* read permission, group */
109 # define S_IROTH 0000004 /* read permission, other */
110 # define S_IRWXU 0000700 /* read, write, execute */
111 # define S_IRWXG 0000070 /* read, write, execute */
112 # define S_IRWXO 0000007 /* read, write, execute */
115 #if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)
116 #define MAP_ANON MAP_ANONYMOUS
120 # define MAP_FAILED ((void *)-1)
123 /* *-*-nto-qnx doesn't define this constant in the system headers */
124 #ifdef MISSING_NFDBITS
125 # define NFDBITS (8 * sizeof(unsigned long))
129 SCO Open Server 3 has INADDR_LOOPBACK defined in rpc/rpc.h but
130 including rpc/rpc.h breaks Solaris 6
132 #ifndef INADDR_LOOPBACK
133 #define INADDR_LOOPBACK ((u_long)0x7f000001)
142 /* If sys/types.h does not supply intXX_t, supply them ourselves */
143 /* (or die trying) */
147 typedef unsigned int u_int
;
151 # if (SIZEOF_CHAR == 1)
154 # error "8 bit int type not found."
156 # if (SIZEOF_SHORT_INT == 2)
157 typedef short int int16_t;
160 # if (SIZEOF_SHORT_INT == 4)
161 typedef short int16_t;
163 typedef long int16_t;
166 # error "16 bit int type not found."
167 # endif /* _UNICOS */
169 # if (SIZEOF_INT == 4)
173 typedef long int32_t;
175 # error "32 bit int type not found."
176 # endif /* _UNICOS */
180 /* If sys/types.h does not supply u_intXX_t, supply them ourselves */
181 #ifndef HAVE_U_INTXX_T
182 # ifdef HAVE_UINTXX_T
183 typedef uint8_t u_int8_t
;
184 typedef uint16_t u_int16_t
;
185 typedef uint32_t u_int32_t
;
186 # define HAVE_U_INTXX_T 1
188 # if (SIZEOF_CHAR == 1)
189 typedef unsigned char u_int8_t
;
191 # error "8 bit int type not found."
193 # if (SIZEOF_SHORT_INT == 2)
194 typedef unsigned short int u_int16_t
;
197 # if (SIZEOF_SHORT_INT == 4)
198 typedef unsigned short u_int16_t
;
200 typedef unsigned long u_int16_t
;
203 # error "16 bit int type not found."
206 # if (SIZEOF_INT == 4)
207 typedef unsigned int u_int32_t
;
210 typedef unsigned long u_int32_t
;
212 # error "32 bit int type not found."
216 #define __BIT_TYPES_DEFINED__
221 # if (SIZEOF_LONG_INT == 8)
222 typedef long int int64_t;
224 # if (SIZEOF_LONG_LONG_INT == 8)
225 typedef long long int int64_t;
229 #ifndef HAVE_U_INT64_T
230 # if (SIZEOF_LONG_INT == 8)
231 typedef unsigned long int u_int64_t
;
233 # if (SIZEOF_LONG_LONG_INT == 8)
234 typedef unsigned long long int u_int64_t
;
240 typedef unsigned char u_char
;
242 #endif /* HAVE_U_CHAR */
245 #define SIZE_T_MAX ULONG_MAX
246 #endif /* SIZE_T_MAX */
249 typedef unsigned int size_t;
251 # define SIZE_T_MAX UINT_MAX
252 #endif /* HAVE_SIZE_T */
256 # define HAVE_SSIZE_T
257 #endif /* HAVE_SSIZE_T */
260 typedef long clock_t;
261 # define HAVE_CLOCK_T
262 #endif /* HAVE_CLOCK_T */
264 #ifndef HAVE_SA_FAMILY_T
265 typedef int sa_family_t
;
266 # define HAVE_SA_FAMILY_T
267 #endif /* HAVE_SA_FAMILY_T */
272 #endif /* HAVE_PID_T */
274 #ifndef HAVE_SIG_ATOMIC_T
275 typedef int sig_atomic_t;
276 # define HAVE_SIG_ATOMIC_T
277 #endif /* HAVE_SIG_ATOMIC_T */
282 #endif /* HAVE_MODE_T */
284 #if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
285 # define ss_family __ss_family
286 #endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
288 #ifndef HAVE_SYS_UN_H
290 short sun_family
; /* AF_UNIX */
291 char sun_path
[108]; /* path name (gag) */
293 #endif /* HAVE_SYS_UN_H */
295 #ifndef HAVE_IN_ADDR_T
296 typedef u_int32_t in_addr_t
;
299 #if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE)
300 #define _STRUCT_WINSIZE
302 unsigned short ws_row
; /* rows, in characters */
303 unsigned short ws_col
; /* columns, in character */
304 unsigned short ws_xpixel
; /* horizontal size, pixels */
305 unsigned short ws_ypixel
; /* vertical size, pixels */
309 /* *-*-nto-qnx does not define this type in the system headers */
310 #ifdef MISSING_FD_MASK
311 typedef unsigned long int fd_mask
;
317 # define _PATH_BSHELL "/bin/sh"
320 # define _PATH_CSHELL "/bin/csh"
323 # define _PATH_SHELLS "/etc/shells"
327 # ifdef _PATH_STDPATH
328 # undef _PATH_STDPATH
330 # define _PATH_STDPATH USER_PATH
333 #ifndef _PATH_STDPATH
334 # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
337 #ifndef SUPERUSER_PATH
338 # define SUPERUSER_PATH _PATH_STDPATH
341 #ifndef _PATH_DEVNULL
342 # define _PATH_DEVNULL "/dev/null"
345 #ifndef MAIL_DIRECTORY
346 # define MAIL_DIRECTORY "/var/spool/mail"
350 # define MAILDIR MAIL_DIRECTORY
353 #if !defined(_PATH_MAILDIR) && defined(MAILDIR)
354 # define _PATH_MAILDIR MAILDIR
355 #endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
357 #ifndef _PATH_NOLOGIN
358 # define _PATH_NOLOGIN "/etc/nologin"
361 /* Define this to be the path of the xauth program. */
363 #define _PATH_XAUTH XAUTH_PATH
364 #endif /* XAUTH_PATH */
366 /* derived from XF4/xc/lib/dps/Xlibnet.h */
369 # define X_UNIX_PATH "/var/spool/sockets/X11/%u"
371 # define X_UNIX_PATH "/tmp/.X11-unix/X%u"
373 #endif /* X_UNIX_PATH */
374 #define _PATH_UNIX_X X_UNIX_PATH
377 # define _PATH_TTY "/dev/tty"
382 #if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
383 # define HAVE_LOGIN_CAP
387 # define MAX(a,b) (((a)>(b))?(a):(b))
388 # define MIN(a,b) (((a)<(b))?(a):(b))
392 # define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
396 #define timersub(a, b, result) \
398 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
399 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
400 if ((result)->tv_usec < 0) { \
401 --(result)->tv_sec; \
402 (result)->tv_usec += 1000000; \
407 #ifndef TIMEVAL_TO_TIMESPEC
408 #define TIMEVAL_TO_TIMESPEC(tv, ts) { \
409 (ts)->tv_sec = (tv)->tv_sec; \
410 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
414 #ifndef TIMESPEC_TO_TIMEVAL
415 #define TIMESPEC_TO_TIMEVAL(tv, ts) { \
416 (tv)->tv_sec = (ts)->tv_sec; \
417 (tv)->tv_usec = (ts)->tv_nsec / 1000; \
425 #if !defined(IN6_IS_ADDR_V4MAPPED)
426 # define IN6_IS_ADDR_V4MAPPED(a) \
427 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
428 (((u_int32_t *) (a))[2] == htonl (0xffff)))
429 #endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
431 #if !defined(__GNUC__) || (__GNUC__ < 2)
432 # define __attribute__(x)
433 #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
436 # define __dead __attribute__((noreturn))
439 #if !defined(HAVE_ATTRIBUTE__SENTINEL__) && !defined(__sentinel__)
440 # define __sentinel__
443 /* *-*-nto-qnx doesn't define this macro in the system headers */
444 #ifdef MISSING_HOWMANY
445 # define howmany(x,y) (((x)+((y)-1))/(y))
448 #ifndef OSSH_ALIGNBYTES
449 #define OSSH_ALIGNBYTES (sizeof(int) - 1)
452 #define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES)
455 /* Length of the contents of a control message of length len */
457 #define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
460 /* Length of the space taken up by a padded control message of length len */
462 #define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
465 /* given pointer to struct cmsghdr, return pointer to data */
467 #define CMSG_DATA(cmsg) ((u_char *)(cmsg) + __CMSG_ALIGN(sizeof(struct cmsghdr)))
468 #endif /* CMSG_DATA */
471 * RFC 2292 requires to check msg_controllen, in case that the kernel returns
472 * an empty list for some reasons.
474 #ifndef CMSG_FIRSTHDR
475 #define CMSG_FIRSTHDR(mhdr) \
476 ((mhdr)->msg_controllen >= sizeof(struct cmsghdr) ? \
477 (struct cmsghdr *)(mhdr)->msg_control : \
478 (struct cmsghdr *)NULL)
479 #endif /* CMSG_FIRSTHDR */
482 # define offsetof(type, member) ((size_t) &((type *)0)->member)
485 /* Function replacement / compatibility hacks */
487 #if !defined(HAVE_GETADDRINFO) && (defined(HAVE_OGETADDRINFO) || defined(HAVE_NGETADDRINFO))
488 # define HAVE_GETADDRINFO
491 #ifndef HAVE_GETOPT_OPTRESET
498 # define getopt(ac, av, o) BSDgetopt(ac, av, o)
499 # define opterr BSDopterr
500 # define optind BSDoptind
501 # define optopt BSDoptopt
502 # define optreset BSDoptreset
503 # define optarg BSDoptarg
506 /* In older versions of libpam, pam_strerror takes a single argument */
508 # define PAM_STRERROR(a,b) pam_strerror((b))
510 # define PAM_STRERROR(a,b) pam_strerror((a),(b))
513 #ifdef PAM_SUN_CODEBASE
514 # define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
516 # define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
519 #if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
520 # undef HAVE_GETADDRINFO
522 #if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
523 # undef HAVE_FREEADDRINFO
525 #if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
526 # undef HAVE_GAI_STRERROR
529 #if defined(BROKEN_UPDWTMPX) && defined(HAVE_UPDWTMPX)
530 # undef HAVE_UPDWTMPX
533 #if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
534 # define memmove(s1, s2, n) bcopy((s2), (s1), (n))
535 #endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
537 #if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX)
539 #endif /* defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) */
542 # define getpgrp() getpgrp(0)
546 # define SSH_AUDIT_EVENTS
547 # define CUSTOM_SSH_AUDIT_EVENTS
550 /* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */
551 #if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f)
552 # define OPENSSL_free(x) Free(x)
555 #if !defined(HAVE___func__) && defined(HAVE___FUNCTION__)
556 # define __func__ __FUNCTION__
557 #elif !defined(HAVE___func__)
561 #if defined(KRB5) && !defined(HEIMDAL)
562 # define krb5_get_err_text(context,code) error_message(code)
565 #if defined(SKEYCHALLENGE_4ARG)
566 # define _compat_skeychallenge(a,b,c,d) skeychallenge(a,b,c,d)
568 # define _compat_skeychallenge(a,b,c,d) skeychallenge(a,b,c)
571 /* Maximum number of file descriptors available */
573 # define SSH_SYSFDMAX sysconf(_SC_OPEN_MAX)
575 # define SSH_SYSFDMAX 10000
580 * Define this to use pipes instead of socketpairs for communicating with the
581 * client program. Socketpairs do not seem to work on all systems.
583 * configure.ac sets this for a few OS's which are known to have problems
584 * but you may need to set it yourself
586 /* #define USE_PIPES 1 */
589 ** login recorder definitions
592 /* FIXME: put default paths back in */
595 # define UTMP_FILE _PATH_UTMP
597 # ifdef CONF_UTMP_FILE
598 # define UTMP_FILE CONF_UTMP_FILE
604 # define WTMP_FILE _PATH_WTMP
606 # ifdef CONF_WTMP_FILE
607 # define WTMP_FILE CONF_WTMP_FILE
611 /* pick up the user's location for lastlog if given */
613 # ifdef _PATH_LASTLOG
614 # define LASTLOG_FILE _PATH_LASTLOG
616 # ifdef CONF_LASTLOG_FILE
617 # define LASTLOG_FILE CONF_LASTLOG_FILE
622 #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
626 /* The login() library function in libutil is first choice */
627 #if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
631 /* Simply select your favourite login types. */
632 /* Can't do if-else because some systems use several... <sigh> */
633 # if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
636 # if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
639 # if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
642 # if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
649 # define UT_LINESIZE 8
652 /* I hope that the presence of LASTLOG_FILE is enough to detect this */
653 #if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
661 # define CUSTOM_SYS_AUTH_PASSWD 1
666 # define _PATH_BTMP BTMP_FILE
669 #if defined(USE_BTMP) && defined(_PATH_BTMP)
670 # define CUSTOM_FAILED_LOGIN
673 /** end of login recorder definitions */
675 #ifdef BROKEN_GETGROUPS
676 # define getgroups(a,b) ((a)==0 && (b)==NULL ? NGROUPS_MAX : getgroups((a),(b)))
679 #if defined(HAVE_MMAP) && defined(BROKEN_MMAP)
683 #endif /* _DEFINES_H */