includes.h revision 295367
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/param.h>
27#include <sys/socket.h> /* For CMSG_* */
28
29#ifdef HAVE_LIMITS_H
30# include <limits.h> /* For PATH_MAX, _POSIX_HOST_NAME_MAX */
31#endif
32#ifdef HAVE_BSTRING_H
33# include <bstring.h>
34#endif
35#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
36    defined(GLOB_HAS_GL_MATCHC) && defined(GLOB_HAS_GL_STATV) && \
37    defined(HAVE_DECL_GLOB_NOMATCH) &&  HAVE_DECL_GLOB_NOMATCH != 0 && \
38    !defined(BROKEN_GLOB)
39# include <glob.h>
40#endif
41#ifdef HAVE_ENDIAN_H
42# include <endian.h>
43#endif
44#ifdef HAVE_TTYENT_H
45# include <ttyent.h>
46#endif
47#ifdef HAVE_UTIME_H
48# include <utime.h>
49#endif
50#ifdef HAVE_MAILLOCK_H
51# include <maillock.h> /* For _PATH_MAILDIR */
52#endif
53#ifdef HAVE_NEXT
54# include <libc.h>
55#endif
56#ifdef HAVE_PATHS_H
57# include <paths.h>
58#endif
59
60/*
61 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
62 */
63#ifdef HAVE_STRINGS_H
64# include <strings.h>
65#endif
66#ifdef HAVE_LOGIN_H
67# include <login.h>
68#endif
69
70#ifdef HAVE_UTMP_H
71#  include <utmp.h>
72#endif
73#ifdef HAVE_UTMPX_H
74#  include <utmpx.h>
75#endif
76#ifdef HAVE_LASTLOG_H
77#  include <lastlog.h>
78#endif
79
80#ifdef HAVE_SYS_SELECT_H
81# include <sys/select.h>
82#endif
83#ifdef HAVE_SYS_BSDTTY_H
84# include <sys/bsdtty.h>
85#endif
86#ifdef HAVE_STDINT_H
87# include <stdint.h>
88#endif
89#include <termios.h>
90#ifdef HAVE_SYS_BITYPES_H
91# include <sys/bitypes.h> /* For u_intXX_t */
92#endif
93#ifdef HAVE_SYS_CDEFS_H
94# include <sys/cdefs.h> /* For __P() */
95#endif
96#ifdef HAVE_SYS_STAT_H
97# include <sys/stat.h> /* For S_* constants and macros */
98#endif
99#ifdef HAVE_SYS_SYSMACROS_H
100# include <sys/sysmacros.h> /* For MIN, MAX, etc */
101#endif
102#ifdef HAVE_SYS_MMAN_H
103#include <sys/mman.h> /* for MAP_ANONYMOUS */
104#endif
105#ifdef HAVE_SYS_STRTIO_H
106#include <sys/strtio.h>	/* for TIOCCBRK on HP-UX */
107#endif
108#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
109# if defined(HAVE_SYS_STREAM_H)
110#  include <sys/stream.h>	/* reqd for queue_t on Solaris 2.5.1 */
111# endif
112#include <sys/ptms.h>	/* for grantpt() and friends */
113#endif
114
115#include <netinet/in.h>
116#include <netinet/in_systm.h> /* For typedefs */
117#ifdef HAVE_RPC_TYPES_H
118# include <rpc/types.h> /* For INADDR_LOOPBACK */
119#endif
120#ifdef USE_PAM
121#if defined(HAVE_SECURITY_PAM_APPL_H)
122# include <security/pam_appl.h>
123#elif defined (HAVE_PAM_PAM_APPL_H)
124# include <pam/pam_appl.h>
125#endif
126#endif
127#ifdef HAVE_READPASSPHRASE_H
128# include <readpassphrase.h>
129#endif
130
131#ifdef HAVE_IA_H
132# include <ia.h>
133#endif
134
135#ifdef HAVE_IAF_H
136# include <iaf.h>
137#endif
138
139#ifdef HAVE_TMPDIR_H
140# include <tmpdir.h>
141#endif
142
143#if defined(HAVE_BSD_LIBUTIL_H)
144# include <bsd/libutil.h>
145#elif defined(HAVE_LIBUTIL_H)
146# include <libutil.h>
147#endif
148
149#if defined(KRB5) && defined(USE_AFS)
150# include <krb5.h>
151# include <kafs.h>
152#endif
153
154#if defined(HAVE_SYS_SYSLOG_H)
155# include <sys/syslog.h>
156#endif
157
158#include <errno.h>
159
160/*
161 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
162 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
163 */
164#ifdef GETSPNAM_CONFLICTING_DEFS
165# ifdef _INCLUDE__STDC__
166#  undef _INCLUDE__STDC__
167# endif
168#endif
169
170#ifdef WITH_OPENSSL
171#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
172#endif
173
174#include "defines.h"
175
176#include "platform.h"
177#include "openbsd-compat/openbsd-compat.h"
178#include "openbsd-compat/bsd-nextstep.h"
179
180#include "entropy.h"
181
182#endif /* INCLUDES_H */
183