blob: 9fcf1b023287c0965f0263086da78085cc666aee [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: includes.h,v 1.54 2006/07/22 20:48:23 stevesk Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003/*
Damien Miller95def091999-11-25 00:26:21 +11004 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11005 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11007 * This file includes most of the needed system headers.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * 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".
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#ifndef INCLUDES_H
17#define INCLUDES_H
18
Damien Miller4874c791999-11-16 13:29:26 +110019#include "config.h"
20
Darren Tuckerac0c8a52005-11-28 22:28:59 +110021#define _GNU_SOURCE /* activate extra prototypes for glibc */
22
Damien Miller9aec9192006-08-05 10:57:45 +100023#include <sys/types.h>
Damien Miller607aede2006-09-01 15:48:19 +100024#include <sys/socket.h> /* For CMSG_* */
Damien Miller72c9a7e2000-09-24 11:10:13 +110025
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000026#ifdef HAVE_LIMITS_H
Tim Rice813f0452002-04-11 20:35:39 -070027# include <limits.h> /* For PATH_MAX */
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000028#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110029#ifdef HAVE_BSTRING_H
30# include <bstring.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000031#endif
Ben Lindstrom45b14db2001-03-17 01:15:38 +000032#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
Darren Tucker096faec2006-09-01 20:29:10 +100033 defined(GLOB_HAS_GL_MATCHC) && \
34 defined(HAVE_DECL_GLOB_NOMATCH) && HAVE_DECL_GLOB_NOMATCH != 0
Damien Miller3c027682001-03-14 11:39:45 +110035# include <glob.h>
36#endif
Damien Millerab18c411999-11-11 10:40:23 +110037#ifdef HAVE_ENDIAN_H
38# include <endian.h>
39#endif
Damien Miller348c9b72000-08-15 10:01:22 +100040#ifdef HAVE_TTYENT_H
41# include <ttyent.h>
42#endif
Ben Lindstrom42202bc2001-01-15 02:34:37 +000043#ifdef HAVE_UTIME_H
44# include <utime.h>
45#endif
Tim Rice813f0452002-04-11 20:35:39 -070046#ifdef HAVE_MAILLOCK_H
47# include <maillock.h> /* For _PATH_MAILDIR */
48#endif
49#ifdef HAVE_NEXT
Damien Millerb0024912006-03-15 21:48:54 +110050# include <libc.h>
51#endif
Darren Tucker725286e2007-06-11 14:44:02 +100052#ifdef HAVE_PATHS_H
Damien Millerb0024912006-03-15 21:48:54 +110053# include <paths.h>
Tim Rice813f0452002-04-11 20:35:39 -070054#endif
Tim Rice813f0452002-04-11 20:35:39 -070055
56/*
57 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
58 */
59#ifdef HAVE_STRINGS_H
60# include <strings.h>
61#endif
62#ifdef HAVE_LOGIN_H
63# include <login.h>
64#endif
65
66#ifdef HAVE_UTMP_H
67# include <utmp.h>
68#endif
69#ifdef HAVE_UTMPX_H
Tim Rice813f0452002-04-11 20:35:39 -070070# include <utmpx.h>
71#endif
72#ifdef HAVE_LASTLOG_H
73# include <lastlog.h>
74#endif
Tim Rice813f0452002-04-11 20:35:39 -070075
Tim Rice813f0452002-04-11 20:35:39 -070076#ifdef HAVE_SYS_SELECT_H
77# include <sys/select.h>
78#endif
79#ifdef HAVE_SYS_BSDTTY_H
80# include <sys/bsdtty.h>
81#endif
Tim Riceeae876e2002-07-18 11:49:32 -070082#ifdef HAVE_STDINT_H
83# include <stdint.h>
84#endif
Damien Miller6645e7a2006-03-15 14:42:54 +110085#include <termios.h>
Tim Rice813f0452002-04-11 20:35:39 -070086#ifdef HAVE_SYS_BITYPES_H
87# include <sys/bitypes.h> /* For u_intXX_t */
88#endif
89#ifdef HAVE_SYS_CDEFS_H
90# include <sys/cdefs.h> /* For __P() */
91#endif
Tim Rice7a4cf232006-03-14 21:04:18 -080092#ifdef HAVE_SYS_STAT_H
93# include <sys/stat.h> /* For S_* constants and macros */
94#endif
Tim Rice813f0452002-04-11 20:35:39 -070095#ifdef HAVE_SYS_SYSMACROS_H
96# include <sys/sysmacros.h> /* For MIN, MAX, etc */
97#endif
98#ifdef HAVE_SYS_MMAN_H
99#include <sys/mman.h> /* for MAP_ANONYMOUS */
100#endif
Darren Tucker5d0ccf32003-05-15 21:42:59 +1000101#ifdef HAVE_SYS_STRTIO_H
102#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
103#endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800104#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
Darren Tucker07459352004-02-06 21:29:41 +1100105# if defined(HAVE_SYS_STREAM_H)
106# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
107# endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800108#include <sys/ptms.h> /* for grantpt() and friends */
109#endif
Tim Rice813f0452002-04-11 20:35:39 -0700110
Damien Miller607aede2006-09-01 15:48:19 +1000111#include <netinet/in.h>
Tim Rice813f0452002-04-11 20:35:39 -0700112#include <netinet/in_systm.h> /* For typedefs */
Tim Rice813f0452002-04-11 20:35:39 -0700113#ifdef HAVE_RPC_TYPES_H
114# include <rpc/types.h> /* For INADDR_LOOPBACK */
115#endif
116#ifdef USE_PAM
Damien Miller0f47c532004-01-02 18:01:30 +1100117#if defined(HAVE_SECURITY_PAM_APPL_H)
Tim Rice813f0452002-04-11 20:35:39 -0700118# include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +1100119#elif defined (HAVE_PAM_PAM_APPL_H)
120# include <pam/pam_appl.h>
121#endif
Tim Rice813f0452002-04-11 20:35:39 -0700122#endif
Damien Millerf71d2a52002-05-13 15:14:08 +1000123#ifdef HAVE_READPASSPHRASE_H
124# include <readpassphrase.h>
125#endif
Tim Rice813f0452002-04-11 20:35:39 -0700126
Tim Rice81ed5182002-09-25 17:38:46 -0700127#ifdef HAVE_IA_H
128# include <ia.h>
129#endif
130
Tim Rice2291c002005-08-26 13:15:19 -0700131#ifdef HAVE_IAF_H
132# include <iaf.h>
133#endif
134
Tim Rice81ed5182002-09-25 17:38:46 -0700135#ifdef HAVE_TMPDIR_H
136# include <tmpdir.h>
137#endif
138
Damien Miller7b3f58c2002-10-21 10:50:25 +1000139#ifdef HAVE_LIBUTIL_H
140# include <libutil.h> /* Openpty on FreeBSD at least */
141#endif
142
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100143#if defined(KRB5) && defined(USE_AFS)
Darren Tucker409cb322004-01-05 22:36:51 +1100144# include <krb5.h>
145# include <kafs.h>
146#endif
147
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000148#if defined(HAVE_SYS_SYSLOG_H)
149# include <sys/syslog.h>
150#endif
151
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000152/*
153 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
154 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
155 */
Darren Tuckera56f1912004-11-02 20:30:54 +1100156#ifdef GETSPNAM_CONFLICTING_DEFS
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000157# ifdef _INCLUDE__STDC__
158# undef _INCLUDE__STDC__
159# endif
160#endif
161
Tim Rice813f0452002-04-11 20:35:39 -0700162#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
163
164#include "defines.h"
165
Damien Miller1b06dc32006-08-31 03:24:41 +1000166#include "platform.h"
Damien Miller3c027682001-03-14 11:39:45 +1100167#include "openbsd-compat/openbsd-compat.h"
Tim Rice813f0452002-04-11 20:35:39 -0700168#include "openbsd-compat/bsd-nextstep.h"
Damien Miller5f056372000-04-16 12:31:48 +1000169
Tim Rice813f0452002-04-11 20:35:39 -0700170#include "entropy.h"
Ben Lindstromdc0594c2002-04-06 04:11:28 +0000171
Damien Miller72c9a7e2000-09-24 11:10:13 +1100172#endif /* INCLUDES_H */