Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 1 | /* $OpenBSD: includes.h,v 1.54 2006/07/22 20:48:23 stevesk Exp $ */ |
Ben Lindstrom | 36579d3 | 2001-01-29 07:39:26 +0000 | [diff] [blame] | 2 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 3 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 6 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 7 | * This file includes most of the needed system headers. |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 8 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 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". |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 14 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 15 | |
| 16 | #ifndef INCLUDES_H |
| 17 | #define INCLUDES_H |
| 18 | |
Damien Miller | 4874c79 | 1999-11-16 13:29:26 +1100 | [diff] [blame] | 19 | #include "config.h" |
| 20 | |
Darren Tucker | ac0c8a5 | 2005-11-28 22:28:59 +1100 | [diff] [blame] | 21 | #define _GNU_SOURCE /* activate extra prototypes for glibc */ |
| 22 | |
Damien Miller | 9aec919 | 2006-08-05 10:57:45 +1000 | [diff] [blame] | 23 | #include <sys/types.h> |
Damien Miller | 607aede | 2006-09-01 15:48:19 +1000 | [diff] [blame] | 24 | #include <sys/socket.h> /* For CMSG_* */ |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 25 | |
Ben Lindstrom | 603bdfd | 2001-02-12 07:29:45 +0000 | [diff] [blame] | 26 | #ifdef HAVE_LIMITS_H |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 27 | # include <limits.h> /* For PATH_MAX */ |
Ben Lindstrom | 603bdfd | 2001-02-12 07:29:45 +0000 | [diff] [blame] | 28 | #endif |
Damien Miller | beb4ba5 | 1999-12-28 15:09:35 +1100 | [diff] [blame] | 29 | #ifdef HAVE_BSTRING_H |
| 30 | # include <bstring.h> |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 31 | #endif |
Ben Lindstrom | 45b14db | 2001-03-17 01:15:38 +0000 | [diff] [blame] | 32 | #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \ |
Darren Tucker | a539393 | 2010-10-24 10:47:30 +1100 | [diff] [blame] | 33 | defined(GLOB_HAS_GL_MATCHC) && defined(GLOB_HAS_GL_STATV) && \ |
Darren Tucker | 2a5588d | 2009-08-20 16:16:01 +1000 | [diff] [blame] | 34 | defined(HAVE_DECL_GLOB_NOMATCH) && HAVE_DECL_GLOB_NOMATCH != 0 && \ |
| 35 | !defined(BROKEN_GLOB) |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 36 | # include <glob.h> |
| 37 | #endif |
Damien Miller | ab18c41 | 1999-11-11 10:40:23 +1100 | [diff] [blame] | 38 | #ifdef HAVE_ENDIAN_H |
| 39 | # include <endian.h> |
| 40 | #endif |
Damien Miller | 348c9b7 | 2000-08-15 10:01:22 +1000 | [diff] [blame] | 41 | #ifdef HAVE_TTYENT_H |
| 42 | # include <ttyent.h> |
| 43 | #endif |
Ben Lindstrom | 42202bc | 2001-01-15 02:34:37 +0000 | [diff] [blame] | 44 | #ifdef HAVE_UTIME_H |
| 45 | # include <utime.h> |
| 46 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 47 | #ifdef HAVE_MAILLOCK_H |
| 48 | # include <maillock.h> /* For _PATH_MAILDIR */ |
| 49 | #endif |
| 50 | #ifdef HAVE_NEXT |
Damien Miller | b002491 | 2006-03-15 21:48:54 +1100 | [diff] [blame] | 51 | # include <libc.h> |
| 52 | #endif |
Darren Tucker | 725286e | 2007-06-11 14:44:02 +1000 | [diff] [blame] | 53 | #ifdef HAVE_PATHS_H |
Damien Miller | b002491 | 2006-03-15 21:48:54 +1100 | [diff] [blame] | 54 | # include <paths.h> |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 55 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 56 | |
| 57 | /* |
| 58 | *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively |
| 59 | */ |
| 60 | #ifdef HAVE_STRINGS_H |
| 61 | # include <strings.h> |
| 62 | #endif |
| 63 | #ifdef HAVE_LOGIN_H |
| 64 | # include <login.h> |
| 65 | #endif |
| 66 | |
| 67 | #ifdef HAVE_UTMP_H |
| 68 | # include <utmp.h> |
| 69 | #endif |
| 70 | #ifdef HAVE_UTMPX_H |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 71 | # include <utmpx.h> |
| 72 | #endif |
| 73 | #ifdef HAVE_LASTLOG_H |
| 74 | # include <lastlog.h> |
| 75 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 76 | |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 77 | #ifdef HAVE_SYS_SELECT_H |
| 78 | # include <sys/select.h> |
| 79 | #endif |
| 80 | #ifdef HAVE_SYS_BSDTTY_H |
| 81 | # include <sys/bsdtty.h> |
| 82 | #endif |
Tim Rice | eae876e | 2002-07-18 11:49:32 -0700 | [diff] [blame] | 83 | #ifdef HAVE_STDINT_H |
| 84 | # include <stdint.h> |
| 85 | #endif |
Damien Miller | 6645e7a | 2006-03-15 14:42:54 +1100 | [diff] [blame] | 86 | #include <termios.h> |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 87 | #ifdef HAVE_SYS_BITYPES_H |
| 88 | # include <sys/bitypes.h> /* For u_intXX_t */ |
| 89 | #endif |
| 90 | #ifdef HAVE_SYS_CDEFS_H |
| 91 | # include <sys/cdefs.h> /* For __P() */ |
| 92 | #endif |
Tim Rice | 7a4cf23 | 2006-03-14 21:04:18 -0800 | [diff] [blame] | 93 | #ifdef HAVE_SYS_STAT_H |
| 94 | # include <sys/stat.h> /* For S_* constants and macros */ |
| 95 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 96 | #ifdef HAVE_SYS_SYSMACROS_H |
| 97 | # include <sys/sysmacros.h> /* For MIN, MAX, etc */ |
| 98 | #endif |
| 99 | #ifdef HAVE_SYS_MMAN_H |
| 100 | #include <sys/mman.h> /* for MAP_ANONYMOUS */ |
| 101 | #endif |
Darren Tucker | 5d0ccf3 | 2003-05-15 21:42:59 +1000 | [diff] [blame] | 102 | #ifdef HAVE_SYS_STRTIO_H |
| 103 | #include <sys/strtio.h> /* for TIOCCBRK on HP-UX */ |
| 104 | #endif |
Tim Rice | 2597bfd | 2004-01-26 19:03:39 -0800 | [diff] [blame] | 105 | #if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX) |
Darren Tucker | 0745935 | 2004-02-06 21:29:41 +1100 | [diff] [blame] | 106 | # if defined(HAVE_SYS_STREAM_H) |
| 107 | # include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */ |
| 108 | # endif |
Tim Rice | 2597bfd | 2004-01-26 19:03:39 -0800 | [diff] [blame] | 109 | #include <sys/ptms.h> /* for grantpt() and friends */ |
| 110 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 111 | |
Damien Miller | 607aede | 2006-09-01 15:48:19 +1000 | [diff] [blame] | 112 | #include <netinet/in.h> |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 113 | #include <netinet/in_systm.h> /* For typedefs */ |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 114 | #ifdef HAVE_RPC_TYPES_H |
| 115 | # include <rpc/types.h> /* For INADDR_LOOPBACK */ |
| 116 | #endif |
| 117 | #ifdef USE_PAM |
Damien Miller | 0f47c53 | 2004-01-02 18:01:30 +1100 | [diff] [blame] | 118 | #if defined(HAVE_SECURITY_PAM_APPL_H) |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 119 | # include <security/pam_appl.h> |
Damien Miller | 0f47c53 | 2004-01-02 18:01:30 +1100 | [diff] [blame] | 120 | #elif defined (HAVE_PAM_PAM_APPL_H) |
| 121 | # include <pam/pam_appl.h> |
| 122 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 123 | #endif |
Damien Miller | f71d2a5 | 2002-05-13 15:14:08 +1000 | [diff] [blame] | 124 | #ifdef HAVE_READPASSPHRASE_H |
| 125 | # include <readpassphrase.h> |
| 126 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 127 | |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 128 | #ifdef HAVE_IA_H |
| 129 | # include <ia.h> |
| 130 | #endif |
| 131 | |
Tim Rice | 2291c00 | 2005-08-26 13:15:19 -0700 | [diff] [blame] | 132 | #ifdef HAVE_IAF_H |
| 133 | # include <iaf.h> |
| 134 | #endif |
| 135 | |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 136 | #ifdef HAVE_TMPDIR_H |
| 137 | # include <tmpdir.h> |
| 138 | #endif |
| 139 | |
Damien Miller | 7b3f58c | 2002-10-21 10:50:25 +1000 | [diff] [blame] | 140 | #ifdef HAVE_LIBUTIL_H |
| 141 | # include <libutil.h> /* Openpty on FreeBSD at least */ |
| 142 | #endif |
| 143 | |
Darren Tucker | 3c78c5e | 2004-01-23 22:03:10 +1100 | [diff] [blame] | 144 | #if defined(KRB5) && defined(USE_AFS) |
Darren Tucker | 409cb32 | 2004-01-05 22:36:51 +1100 | [diff] [blame] | 145 | # include <krb5.h> |
| 146 | # include <kafs.h> |
| 147 | #endif |
| 148 | |
Darren Tucker | 2be1cbb | 2005-05-27 21:13:40 +1000 | [diff] [blame] | 149 | #if defined(HAVE_SYS_SYSLOG_H) |
| 150 | # include <sys/syslog.h> |
| 151 | #endif |
| 152 | |
Damien Miller | d8968ad | 2008-07-04 23:10:49 +1000 | [diff] [blame] | 153 | #include <errno.h> |
| 154 | |
Darren Tucker | 3d50c9b | 2004-08-15 00:01:48 +1000 | [diff] [blame] | 155 | /* |
| 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 Tucker | a56f191 | 2004-11-02 20:30:54 +1100 | [diff] [blame] | 159 | #ifdef GETSPNAM_CONFLICTING_DEFS |
Darren Tucker | 3d50c9b | 2004-08-15 00:01:48 +1000 | [diff] [blame] | 160 | # ifdef _INCLUDE__STDC__ |
| 161 | # undef _INCLUDE__STDC__ |
| 162 | # endif |
| 163 | #endif |
| 164 | |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 165 | #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */ |
| 166 | |
| 167 | #include "defines.h" |
| 168 | |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 169 | #include "platform.h" |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 170 | #include "openbsd-compat/openbsd-compat.h" |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 171 | #include "openbsd-compat/bsd-nextstep.h" |
Damien Miller | 5f05637 | 2000-04-16 12:31:48 +1000 | [diff] [blame] | 172 | |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 173 | #include "entropy.h" |
Ben Lindstrom | dc0594c | 2002-04-06 04:11:28 +0000 | [diff] [blame] | 174 | |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 175 | #endif /* INCLUDES_H */ |