xref: /freebsd/crypto/openssh/includes.h (revision cb2887746f8b9dd4ad6b1e757cdc053a08b25a2e)
1 /* $OpenBSD: includes.h,v 1.54 2006/07/22 20:48:23 stevesk Exp $ */
2 
3 /*
4  * Author: Tatu Ylonen <ylo@cs.hut.fi>
5  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6  *                    All rights reserved
7  * This file includes most of the needed system headers.
8  *
9  * As far as I am concerned, the code I have written for this software
10  * can be used freely for any purpose.  Any derived versions of this
11  * software must be clearly marked as such, and if the derived work is
12  * incompatible with the protocol description in the RFC file, it must be
13  * called by a name other than "ssh" or "Secure Shell".
14  */
15 
16 #ifndef INCLUDES_H
17 #define INCLUDES_H
18 
19 #include "config.h"
20 
21 #ifndef _GNU_SOURCE
22 #define _GNU_SOURCE /* activate extra prototypes for glibc */
23 #endif
24 
25 #include <sys/types.h>
26 #include <sys/socket.h> /* For CMSG_* */
27 
28 #ifdef HAVE_LIMITS_H
29 # include <limits.h> /* For PATH_MAX, _POSIX_HOST_NAME_MAX */
30 #endif
31 #ifdef HAVE_BSTRING_H
32 # include <bstring.h>
33 #endif
34 #ifdef HAVE_ENDIAN_H
35 # include <endian.h>
36 #endif
37 #ifdef HAVE_FCNTL_H
38 # include <fcntl.h>
39 #endif
40 #ifdef HAVE_TTYENT_H
41 # include <ttyent.h>
42 #endif
43 #ifdef HAVE_UTIME_H
44 # include <utime.h>
45 #endif
46 #ifdef HAVE_MAILLOCK_H
47 # include <maillock.h> /* For _PATH_MAILDIR */
48 #endif
49 #ifdef HAVE_NEXT
50 # include <libc.h>
51 #endif
52 #ifdef HAVE_PATHS_H
53 # include <paths.h>
54 #endif
55 #ifdef HAVE_FCNTL_H
56 # include <fcntl.h> /* For AT_FDCWD */
57 #endif
58 
59 /*
60  *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
61  */
62 #ifdef HAVE_STRINGS_H
63 # include <strings.h>
64 #endif
65 #ifdef HAVE_LOGIN_H
66 # include <login.h>
67 #endif
68 
69 #ifdef HAVE_UTMP_H
70 #  include <utmp.h>
71 #endif
72 #ifdef HAVE_UTMPX_H
73 #  include <utmpx.h>
74 #endif
75 #ifdef HAVE_LASTLOG_H
76 #  include <lastlog.h>
77 #endif
78 
79 #ifdef HAVE_SYS_SELECT_H
80 # include <sys/select.h>
81 #endif
82 #ifdef HAVE_SYS_BSDTTY_H
83 # include <sys/bsdtty.h>
84 #endif
85 #ifdef HAVE_STDINT_H
86 # include <stdint.h>
87 #endif
88 #include <termios.h>
89 #ifdef HAVE_SYS_BITYPES_H
90 # include <sys/bitypes.h> /* For u_intXX_t */
91 #endif
92 #ifdef HAVE_SYS_CDEFS_H
93 # include <sys/cdefs.h> /* For __P() */
94 #endif
95 #ifdef HAVE_SYS_STAT_H
96 # include <sys/stat.h> /* For S_* constants and macros */
97 #endif
98 #ifdef HAVE_SYS_SYSMACROS_H
99 # include <sys/sysmacros.h> /* For MIN, MAX, etc */
100 #endif
101 #ifdef HAVE_SYS_TIME_H
102 # include <sys/time.h> /* for timespeccmp if present */
103 #endif
104 #ifdef HAVE_SYS_MMAN_H
105 #include <sys/mman.h> /* for MAP_ANONYMOUS */
106 #endif
107 #ifdef HAVE_SYS_STRTIO_H
108 #include <sys/strtio.h>	/* for TIOCCBRK on HP-UX */
109 #endif
110 #if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
111 # if defined(HAVE_SYS_STREAM_H)
112 #  include <sys/stream.h>	/* reqd for queue_t on Solaris 2.5.1 */
113 # endif
114 #include <sys/ptms.h>	/* for grantpt() and friends */
115 #endif
116 
117 #include <netinet/in.h>
118 #include <netinet/in_systm.h> /* For typedefs */
119 #ifdef HAVE_RPC_TYPES_H
120 # include <rpc/types.h> /* For INADDR_LOOPBACK */
121 #endif
122 #ifdef USE_PAM
123 #if defined(HAVE_SECURITY_PAM_APPL_H)
124 # include <security/pam_appl.h>
125 #elif defined (HAVE_PAM_PAM_APPL_H)
126 # include <pam/pam_appl.h>
127 #endif
128 #endif
129 #ifdef HAVE_READPASSPHRASE_H
130 # include <readpassphrase.h>
131 #endif
132 
133 #ifdef HAVE_IA_H
134 # include <ia.h>
135 #endif
136 
137 #ifdef HAVE_IAF_H
138 # include <iaf.h>
139 #endif
140 
141 #ifdef HAVE_TMPDIR_H
142 # include <tmpdir.h>
143 #endif
144 
145 #if defined(HAVE_BSD_LIBUTIL_H)
146 # include <bsd/libutil.h>
147 #elif defined(HAVE_LIBUTIL_H)
148 # include <libutil.h>
149 #endif
150 
151 #if defined(KRB5) && defined(USE_AFS)
152 # include <krb5.h>
153 # include <kafs.h>
154 #endif
155 
156 #if defined(HAVE_SYS_SYSLOG_H)
157 # include <sys/syslog.h>
158 #endif
159 
160 #include <errno.h>
161 
162 /*
163  * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
164  * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
165  */
166 #ifdef GETSPNAM_CONFLICTING_DEFS
167 # ifdef _INCLUDE__STDC__
168 #  undef _INCLUDE__STDC__
169 # endif
170 #endif
171 
172 #ifdef WITH_OPENSSL
173 #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
174 #endif
175 
176 #include "defines.h"
177 
178 #include "platform.h"
179 #include "openbsd-compat/openbsd-compat.h"
180 #include "openbsd-compat/bsd-nextstep.h"
181 
182 #include "entropy.h"
183 
184 #endif /* INCLUDES_H */
185