blob: 07bcd89f2c42601f102002007d825e2ef890b108 [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 Tucker221b4b22013-03-22 12:51:09 +110021#ifndef _GNU_SOURCE
Darren Tuckerac0c8a52005-11-28 22:28:59 +110022#define _GNU_SOURCE /* activate extra prototypes for glibc */
Darren Tucker221b4b22013-03-22 12:51:09 +110023#endif
Darren Tuckerac0c8a52005-11-28 22:28:59 +110024
Damien Miller9aec9192006-08-05 10:57:45 +100025#include <sys/types.h>
Damien Miller607aede2006-09-01 15:48:19 +100026#include <sys/socket.h> /* For CMSG_* */
Damien Miller72c9a7e2000-09-24 11:10:13 +110027
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000028#ifdef HAVE_LIMITS_H
Tim Rice813f0452002-04-11 20:35:39 -070029# include <limits.h> /* For PATH_MAX */
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000030#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110031#ifdef HAVE_BSTRING_H
32# include <bstring.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000033#endif
Ben Lindstrom45b14db2001-03-17 01:15:38 +000034#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
Darren Tuckera5393932010-10-24 10:47:30 +110035 defined(GLOB_HAS_GL_MATCHC) && defined(GLOB_HAS_GL_STATV) && \
Darren Tucker2a5588d2009-08-20 16:16:01 +100036 defined(HAVE_DECL_GLOB_NOMATCH) && HAVE_DECL_GLOB_NOMATCH != 0 && \
37 !defined(BROKEN_GLOB)
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
Darren Tucker725286e2007-06-11 14:44:02 +100055#ifdef HAVE_PATHS_H
Damien Millerb0024912006-03-15 21:48:54 +110056# 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
Tim Riceeae876e2002-07-18 11:49:32 -070085#ifdef HAVE_STDINT_H
86# include <stdint.h>
87#endif
Damien Miller6645e7a2006-03-15 14:42:54 +110088#include <termios.h>
Tim Rice813f0452002-04-11 20:35:39 -070089#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
Tim Rice7a4cf232006-03-14 21:04:18 -080095#ifdef HAVE_SYS_STAT_H
96# include <sys/stat.h> /* For S_* constants and macros */
97#endif
Tim Rice813f0452002-04-11 20:35:39 -070098#ifdef HAVE_SYS_SYSMACROS_H
99# include <sys/sysmacros.h> /* For MIN, MAX, etc */
100#endif
101#ifdef HAVE_SYS_MMAN_H
102#include <sys/mman.h> /* for MAP_ANONYMOUS */
103#endif
Darren Tucker5d0ccf32003-05-15 21:42:59 +1000104#ifdef HAVE_SYS_STRTIO_H
105#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
106#endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800107#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
Darren Tucker07459352004-02-06 21:29:41 +1100108# if defined(HAVE_SYS_STREAM_H)
109# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
110# endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800111#include <sys/ptms.h> /* for grantpt() and friends */
112#endif
Tim Rice813f0452002-04-11 20:35:39 -0700113
Damien Miller607aede2006-09-01 15:48:19 +1000114#include <netinet/in.h>
Tim Rice813f0452002-04-11 20:35:39 -0700115#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 Millerb87f6b72013-02-23 09:12:23 +1100142#if defined(HAVE_BSD_LIBUTIL_H)
143# include <bsd/libutil.h>
144#elif defined(HAVE_LIBUTIL_H)
145# include <libutil.h>
Damien Miller7b3f58c2002-10-21 10:50:25 +1000146#endif
147
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100148#if defined(KRB5) && defined(USE_AFS)
Darren Tucker409cb322004-01-05 22:36:51 +1100149# include <krb5.h>
150# include <kafs.h>
151#endif
152
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000153#if defined(HAVE_SYS_SYSLOG_H)
154# include <sys/syslog.h>
155#endif
156
Damien Millerd8968ad2008-07-04 23:10:49 +1000157#include <errno.h>
158
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000159/*
160 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
161 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
162 */
Darren Tuckera56f1912004-11-02 20:30:54 +1100163#ifdef GETSPNAM_CONFLICTING_DEFS
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000164# ifdef _INCLUDE__STDC__
165# undef _INCLUDE__STDC__
166# endif
167#endif
168
Tim Rice813f0452002-04-11 20:35:39 -0700169#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
170
171#include "defines.h"
172
Damien Miller1b06dc32006-08-31 03:24:41 +1000173#include "platform.h"
Damien Miller3c027682001-03-14 11:39:45 +1100174#include "openbsd-compat/openbsd-compat.h"
Tim Rice813f0452002-04-11 20:35:39 -0700175#include "openbsd-compat/bsd-nextstep.h"
Damien Miller5f056372000-04-16 12:31:48 +1000176
Tim Rice813f0452002-04-11 20:35:39 -0700177#include "entropy.h"
Ben Lindstromdc0594c2002-04-06 04:11:28 +0000178
Damien Miller72c9a7e2000-09-24 11:10:13 +1100179#endif /* INCLUDES_H */