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