blob: fc85e67781249d716e85643f8faec8b70c55466f [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 Millerd4a8b7e1999-10-27 13:42:43 +100024#include <stdio.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025#include <stdlib.h>
Damien Miller72c9a7e2000-09-24 11:10:13 +110026
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000027#ifdef HAVE_LIMITS_H
Tim Rice813f0452002-04-11 20:35:39 -070028# include <limits.h> /* For PATH_MAX */
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000029#endif
Damien Miller72c9a7e2000-09-24 11:10:13 +110030#ifdef HAVE_GETOPT_H
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000031# include <getopt.h>
Damien Millerbac2d8a2000-09-05 16:13:06 +110032#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110033#ifdef HAVE_BSTRING_H
34# include <bstring.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000035#endif
Ben Lindstrom45b14db2001-03-17 01:15:38 +000036#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
37 defined(GLOB_HAS_GL_MATCHC)
Damien Miller3c027682001-03-14 11:39:45 +110038# include <glob.h>
39#endif
Damien Millerab18c411999-11-11 10:40:23 +110040#ifdef HAVE_ENDIAN_H
41# include <endian.h>
42#endif
Damien Miller348c9b72000-08-15 10:01:22 +100043#ifdef HAVE_TTYENT_H
44# include <ttyent.h>
45#endif
Ben Lindstrom42202bc2001-01-15 02:34:37 +000046#ifdef HAVE_UTIME_H
47# include <utime.h>
48#endif
Tim Rice813f0452002-04-11 20:35:39 -070049#ifdef HAVE_MAILLOCK_H
50# include <maillock.h> /* For _PATH_MAILDIR */
51#endif
52#ifdef HAVE_NEXT
Damien Millerb0024912006-03-15 21:48:54 +110053# include <libc.h>
54#endif
55#ifdef HAVE_PATHS
56# include <paths.h>
Tim Rice813f0452002-04-11 20:35:39 -070057#endif
Tim Rice813f0452002-04-11 20:35:39 -070058
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
Tim Rice813f0452002-04-11 20:35:39 -070073# include <utmpx.h>
74#endif
75#ifdef HAVE_LASTLOG_H
76# include <lastlog.h>
77#endif
Tim Rice813f0452002-04-11 20:35:39 -070078
Tim Rice813f0452002-04-11 20:35:39 -070079#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#include <sys/param.h> /* For MAXPATHLEN and roundup() */
Tim Riceeae876e2002-07-18 11:49:32 -070086#ifdef HAVE_STDINT_H
87# include <stdint.h>
88#endif
Damien Miller6645e7a2006-03-15 14:42:54 +110089#include <termios.h>
Tim Rice813f0452002-04-11 20:35:39 -070090#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
Tim Rice7a4cf232006-03-14 21:04:18 -080096#ifdef HAVE_SYS_STAT_H
97# include <sys/stat.h> /* For S_* constants and macros */
98#endif
Tim Rice813f0452002-04-11 20:35:39 -070099#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
Darren Tucker5d0ccf32003-05-15 21:42:59 +1000105#ifdef HAVE_SYS_STRTIO_H
106#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
107#endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800108#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
Darren Tucker07459352004-02-06 21:29:41 +1100109# if defined(HAVE_SYS_STREAM_H)
110# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
111# endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800112#include <sys/ptms.h> /* for grantpt() and friends */
113#endif
Tim Rice813f0452002-04-11 20:35:39 -0700114
115#include <netinet/in_systm.h> /* For typedefs */
Tim Rice813f0452002-04-11 20:35:39 -0700116#ifdef HAVE_RPC_TYPES_H
117# include <rpc/types.h> /* For INADDR_LOOPBACK */
118#endif
119#ifdef USE_PAM
Damien Miller0f47c532004-01-02 18:01:30 +1100120#if defined(HAVE_SECURITY_PAM_APPL_H)
Tim Rice813f0452002-04-11 20:35:39 -0700121# include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +1100122#elif defined (HAVE_PAM_PAM_APPL_H)
123# include <pam/pam_appl.h>
124#endif
Tim Rice813f0452002-04-11 20:35:39 -0700125#endif
Damien Millerf71d2a52002-05-13 15:14:08 +1000126#ifdef HAVE_READPASSPHRASE_H
127# include <readpassphrase.h>
128#endif
Tim Rice813f0452002-04-11 20:35:39 -0700129
Tim Rice81ed5182002-09-25 17:38:46 -0700130#ifdef HAVE_IA_H
131# include <ia.h>
132#endif
133
Tim Rice2291c002005-08-26 13:15:19 -0700134#ifdef HAVE_IAF_H
135# include <iaf.h>
136#endif
137
Tim Rice81ed5182002-09-25 17:38:46 -0700138#ifdef HAVE_TMPDIR_H
139# include <tmpdir.h>
140#endif
141
Damien Miller7b3f58c2002-10-21 10:50:25 +1000142#ifdef HAVE_LIBUTIL_H
143# include <libutil.h> /* Openpty on FreeBSD at least */
144#endif
145
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100146#if defined(KRB5) && defined(USE_AFS)
Darren Tucker409cb322004-01-05 22:36:51 +1100147# include <krb5.h>
148# include <kafs.h>
149#endif
150
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000151#if defined(HAVE_SYS_SYSLOG_H)
152# include <sys/syslog.h>
153#endif
154
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000155/*
156 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
157 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
158 */
Darren Tuckera56f1912004-11-02 20:30:54 +1100159#ifdef GETSPNAM_CONFLICTING_DEFS
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000160# ifdef _INCLUDE__STDC__
161# undef _INCLUDE__STDC__
162# endif
163#endif
164
Tim Rice813f0452002-04-11 20:35:39 -0700165#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
166
167#include "defines.h"
168
Damien Miller3c027682001-03-14 11:39:45 +1100169#include "openbsd-compat/openbsd-compat.h"
Tim Rice813f0452002-04-11 20:35:39 -0700170#include "openbsd-compat/bsd-nextstep.h"
Damien Miller5f056372000-04-16 12:31:48 +1000171
Tim Rice813f0452002-04-11 20:35:39 -0700172#include "entropy.h"
Ben Lindstromdc0594c2002-04-06 04:11:28 +0000173
Damien Miller72c9a7e2000-09-24 11:10:13 +1100174#endif /* INCLUDES_H */