blob: 497a038b23732d807fcdec6160b8476a00bb13a6 [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>
djm@openbsd.org48b68ce2014-12-11 08:20:09 +000026#include <sys/param.h>
Damien Miller607aede2006-09-01 15:48:19 +100027#include <sys/socket.h> /* For CMSG_* */
Damien Miller72c9a7e2000-09-24 11:10:13 +110028
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000029#ifdef HAVE_LIMITS_H
Damien Miller38806bd2015-02-24 16:50:06 -080030# include <limits.h> /* For PATH_MAX, _POSIX_HOST_NAME_MAX */
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000031#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110032#ifdef HAVE_BSTRING_H
33# include <bstring.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000034#endif
Damien Millerab18c411999-11-11 10:40:23 +110035#ifdef HAVE_ENDIAN_H
36# include <endian.h>
37#endif
Damien Miller348c9b72000-08-15 10:01:22 +100038#ifdef HAVE_TTYENT_H
39# include <ttyent.h>
40#endif
Ben Lindstrom42202bc2001-01-15 02:34:37 +000041#ifdef HAVE_UTIME_H
42# include <utime.h>
43#endif
Tim Rice813f0452002-04-11 20:35:39 -070044#ifdef HAVE_MAILLOCK_H
45# include <maillock.h> /* For _PATH_MAILDIR */
46#endif
47#ifdef HAVE_NEXT
Damien Millerb0024912006-03-15 21:48:54 +110048# include <libc.h>
49#endif
Darren Tucker725286e2007-06-11 14:44:02 +100050#ifdef HAVE_PATHS_H
Damien Millerb0024912006-03-15 21:48:54 +110051# include <paths.h>
Tim Rice813f0452002-04-11 20:35:39 -070052#endif
Tim Rice813f0452002-04-11 20:35:39 -070053
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
Tim Rice813f0452002-04-11 20:35:39 -070068# include <utmpx.h>
69#endif
70#ifdef HAVE_LASTLOG_H
71# include <lastlog.h>
72#endif
Tim Rice813f0452002-04-11 20:35:39 -070073
Tim Rice813f0452002-04-11 20:35:39 -070074#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
Tim Riceeae876e2002-07-18 11:49:32 -070080#ifdef HAVE_STDINT_H
81# include <stdint.h>
82#endif
Damien Miller6645e7a2006-03-15 14:42:54 +110083#include <termios.h>
Tim Rice813f0452002-04-11 20:35:39 -070084#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
Tim Rice7a4cf232006-03-14 21:04:18 -080090#ifdef HAVE_SYS_STAT_H
91# include <sys/stat.h> /* For S_* constants and macros */
92#endif
Tim Rice813f0452002-04-11 20:35:39 -070093#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
Darren Tucker5d0ccf32003-05-15 21:42:59 +100099#ifdef HAVE_SYS_STRTIO_H
100#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
101#endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800102#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
Darren Tucker07459352004-02-06 21:29:41 +1100103# if defined(HAVE_SYS_STREAM_H)
104# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
105# endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800106#include <sys/ptms.h> /* for grantpt() and friends */
107#endif
Tim Rice813f0452002-04-11 20:35:39 -0700108
Damien Miller607aede2006-09-01 15:48:19 +1000109#include <netinet/in.h>
Tim Rice813f0452002-04-11 20:35:39 -0700110#include <netinet/in_systm.h> /* For typedefs */
Tim Rice813f0452002-04-11 20:35:39 -0700111#ifdef HAVE_RPC_TYPES_H
112# include <rpc/types.h> /* For INADDR_LOOPBACK */
113#endif
114#ifdef USE_PAM
Damien Miller0f47c532004-01-02 18:01:30 +1100115#if defined(HAVE_SECURITY_PAM_APPL_H)
Tim Rice813f0452002-04-11 20:35:39 -0700116# include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +1100117#elif defined (HAVE_PAM_PAM_APPL_H)
118# include <pam/pam_appl.h>
119#endif
Tim Rice813f0452002-04-11 20:35:39 -0700120#endif
Damien Millerf71d2a52002-05-13 15:14:08 +1000121#ifdef HAVE_READPASSPHRASE_H
122# include <readpassphrase.h>
123#endif
Tim Rice813f0452002-04-11 20:35:39 -0700124
Tim Rice81ed5182002-09-25 17:38:46 -0700125#ifdef HAVE_IA_H
126# include <ia.h>
127#endif
128
Tim Rice2291c002005-08-26 13:15:19 -0700129#ifdef HAVE_IAF_H
130# include <iaf.h>
131#endif
132
Tim Rice81ed5182002-09-25 17:38:46 -0700133#ifdef HAVE_TMPDIR_H
134# include <tmpdir.h>
135#endif
136
Damien Millerb87f6b72013-02-23 09:12:23 +1100137#if defined(HAVE_BSD_LIBUTIL_H)
138# include <bsd/libutil.h>
139#elif defined(HAVE_LIBUTIL_H)
140# include <libutil.h>
Damien Miller7b3f58c2002-10-21 10:50:25 +1000141#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
Damien Millerd8968ad2008-07-04 23:10:49 +1000152#include <errno.h>
153
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000154/*
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 */
Darren Tuckera56f1912004-11-02 20:30:54 +1100158#ifdef GETSPNAM_CONFLICTING_DEFS
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000159# ifdef _INCLUDE__STDC__
160# undef _INCLUDE__STDC__
161# endif
162#endif
163
Damien Miller72ef7c12015-01-15 02:21:31 +1100164#ifdef WITH_OPENSSL
Tim Rice813f0452002-04-11 20:35:39 -0700165#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
Damien Miller72ef7c12015-01-15 02:21:31 +1100166#endif
Tim Rice813f0452002-04-11 20:35:39 -0700167
168#include "defines.h"
169
Damien Miller1b06dc32006-08-31 03:24:41 +1000170#include "platform.h"
Damien Miller3c027682001-03-14 11:39:45 +1100171#include "openbsd-compat/openbsd-compat.h"
Tim Rice813f0452002-04-11 20:35:39 -0700172#include "openbsd-compat/bsd-nextstep.h"
Damien Miller5f056372000-04-16 12:31:48 +1000173
Tim Rice813f0452002-04-11 20:35:39 -0700174#include "entropy.h"
Ben Lindstromdc0594c2002-04-06 04:11:28 +0000175
Damien Miller72c9a7e2000-09-24 11:10:13 +1100176#endif /* INCLUDES_H */