Damien Miller | 512bccb | 2002-02-05 12:11:02 +1100 | [diff] [blame] | 1 | /* $OpenBSD: includes.h,v 1.17 2002/01/26 16:44:22 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 | |
| 19 | #define RCSID(msg) \ |
| 20 | static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } |
| 21 | |
Damien Miller | 4874c79 | 1999-11-16 13:29:26 +1100 | [diff] [blame] | 22 | #include "config.h" |
| 23 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 24 | #include <stdio.h> |
| 25 | #include <ctype.h> |
| 26 | #include <errno.h> |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 27 | #include <fcntl.h> /* For O_NONBLOCK */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 28 | #include <signal.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 29 | #include <stdlib.h> |
| 30 | #include <string.h> |
| 31 | #include <stdarg.h> |
| 32 | #include <pwd.h> |
| 33 | #include <grp.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 34 | #include <time.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 35 | #include <dirent.h> |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 36 | |
Ben Lindstrom | 603bdfd | 2001-02-12 07:29:45 +0000 | [diff] [blame] | 37 | #ifdef HAVE_LIMITS_H |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 38 | # include <limits.h> /* For PATH_MAX */ |
Ben Lindstrom | 603bdfd | 2001-02-12 07:29:45 +0000 | [diff] [blame] | 39 | #endif |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 40 | #ifdef HAVE_GETOPT_H |
Ben Lindstrom | 603bdfd | 2001-02-12 07:29:45 +0000 | [diff] [blame] | 41 | # include <getopt.h> |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 42 | #endif |
Damien Miller | beb4ba5 | 1999-12-28 15:09:35 +1100 | [diff] [blame] | 43 | #ifdef HAVE_BSTRING_H |
| 44 | # include <bstring.h> |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 45 | #endif |
Ben Lindstrom | 45b14db | 2001-03-17 01:15:38 +0000 | [diff] [blame] | 46 | #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \ |
| 47 | defined(GLOB_HAS_GL_MATCHC) |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 48 | # include <glob.h> |
| 49 | #endif |
Damien Miller | 3bd49ec | 1999-11-15 15:40:55 +1100 | [diff] [blame] | 50 | #ifdef HAVE_NETGROUP_H |
| 51 | # include <netgroup.h> |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 52 | #endif |
Damien Miller | ab18c41 | 1999-11-11 10:40:23 +1100 | [diff] [blame] | 53 | #ifdef HAVE_ENDIAN_H |
| 54 | # include <endian.h> |
| 55 | #endif |
Damien Miller | 348c9b7 | 2000-08-15 10:01:22 +1000 | [diff] [blame] | 56 | #ifdef HAVE_TTYENT_H |
| 57 | # include <ttyent.h> |
| 58 | #endif |
Ben Lindstrom | 42202bc | 2001-01-15 02:34:37 +0000 | [diff] [blame] | 59 | #ifdef HAVE_UTIME_H |
| 60 | # include <utime.h> |
| 61 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 62 | #ifdef HAVE_MAILLOCK_H |
| 63 | # include <maillock.h> /* For _PATH_MAILDIR */ |
| 64 | #endif |
| 65 | #ifdef HAVE_NEXT |
| 66 | # include <libc.h> |
| 67 | #endif |
Damien Miller | 5fe46a4 | 2003-06-05 09:53:31 +1000 | [diff] [blame] | 68 | #define __USE_GNU /* before unistd.h, activate extra prototypes for glibc */ |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 69 | #include <unistd.h> /* For STDIN_FILENO, etc */ |
| 70 | #include <termios.h> /* Struct winsize */ |
| 71 | |
| 72 | /* |
| 73 | *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively |
| 74 | */ |
| 75 | #ifdef HAVE_STRINGS_H |
| 76 | # include <strings.h> |
| 77 | #endif |
| 78 | #ifdef HAVE_LOGIN_H |
| 79 | # include <login.h> |
| 80 | #endif |
| 81 | |
| 82 | #ifdef HAVE_UTMP_H |
| 83 | # include <utmp.h> |
| 84 | #endif |
| 85 | #ifdef HAVE_UTMPX_H |
| 86 | # ifdef HAVE_TV_IN_UTMPX |
| 87 | # include <sys/time.h> |
| 88 | # endif |
| 89 | # include <utmpx.h> |
| 90 | #endif |
| 91 | #ifdef HAVE_LASTLOG_H |
| 92 | # include <lastlog.h> |
| 93 | #endif |
| 94 | #ifdef HAVE_PATHS_H |
| 95 | # include <paths.h> /* For _PATH_XXX */ |
| 96 | #endif |
| 97 | |
| 98 | #include <sys/types.h> |
| 99 | #include <sys/socket.h> |
| 100 | #include <sys/ioctl.h> |
| 101 | #include <sys/wait.h> |
| 102 | #ifdef HAVE_SYS_TIME_H |
| 103 | # include <sys/time.h> /* For timersub */ |
| 104 | #endif |
| 105 | #include <sys/resource.h> |
| 106 | #ifdef HAVE_SYS_SELECT_H |
| 107 | # include <sys/select.h> |
| 108 | #endif |
| 109 | #ifdef HAVE_SYS_BSDTTY_H |
| 110 | # include <sys/bsdtty.h> |
| 111 | #endif |
| 112 | #include <sys/param.h> /* For MAXPATHLEN and roundup() */ |
| 113 | #ifdef HAVE_SYS_UN_H |
| 114 | # include <sys/un.h> /* For sockaddr_un */ |
| 115 | #endif |
Tim Rice | eae876e | 2002-07-18 11:49:32 -0700 | [diff] [blame] | 116 | #ifdef HAVE_STDINT_H |
| 117 | # include <stdint.h> |
| 118 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 119 | #ifdef HAVE_SYS_BITYPES_H |
| 120 | # include <sys/bitypes.h> /* For u_intXX_t */ |
| 121 | #endif |
| 122 | #ifdef HAVE_SYS_CDEFS_H |
| 123 | # include <sys/cdefs.h> /* For __P() */ |
| 124 | #endif |
| 125 | #ifdef HAVE_SYS_STAT_H |
| 126 | # include <sys/stat.h> /* For S_* constants and macros */ |
| 127 | #endif |
| 128 | #ifdef HAVE_SYS_SYSMACROS_H |
| 129 | # include <sys/sysmacros.h> /* For MIN, MAX, etc */ |
| 130 | #endif |
| 131 | #ifdef HAVE_SYS_MMAN_H |
| 132 | #include <sys/mman.h> /* for MAP_ANONYMOUS */ |
| 133 | #endif |
Darren Tucker | 5d0ccf3 | 2003-05-15 21:42:59 +1000 | [diff] [blame] | 134 | #ifdef HAVE_SYS_STRTIO_H |
| 135 | #include <sys/strtio.h> /* for TIOCCBRK on HP-UX */ |
| 136 | #endif |
Tim Rice | 2597bfd | 2004-01-26 19:03:39 -0800 | [diff] [blame] | 137 | #if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX) |
Darren Tucker | 0745935 | 2004-02-06 21:29:41 +1100 | [diff] [blame] | 138 | # if defined(HAVE_SYS_STREAM_H) |
| 139 | # include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */ |
| 140 | # endif |
Tim Rice | 2597bfd | 2004-01-26 19:03:39 -0800 | [diff] [blame] | 141 | #include <sys/ptms.h> /* for grantpt() and friends */ |
| 142 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 143 | |
| 144 | #include <netinet/in_systm.h> /* For typedefs */ |
| 145 | #include <netinet/in.h> /* For IPv6 macros */ |
| 146 | #include <netinet/ip.h> /* For IPTOS macros */ |
| 147 | #include <netinet/tcp.h> |
| 148 | #include <arpa/inet.h> |
Darren Tucker | cc9fd54 | 2003-06-29 21:23:37 +1000 | [diff] [blame] | 149 | #if defined(HAVE_NETDB_H) |
| 150 | # include <netdb.h> |
| 151 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 152 | #ifdef HAVE_RPC_TYPES_H |
| 153 | # include <rpc/types.h> /* For INADDR_LOOPBACK */ |
| 154 | #endif |
| 155 | #ifdef USE_PAM |
Damien Miller | 0f47c53 | 2004-01-02 18:01:30 +1100 | [diff] [blame] | 156 | #if defined(HAVE_SECURITY_PAM_APPL_H) |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 157 | # include <security/pam_appl.h> |
Damien Miller | 0f47c53 | 2004-01-02 18:01:30 +1100 | [diff] [blame] | 158 | #elif defined (HAVE_PAM_PAM_APPL_H) |
| 159 | # include <pam/pam_appl.h> |
| 160 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 161 | #endif |
Damien Miller | f71d2a5 | 2002-05-13 15:14:08 +1000 | [diff] [blame] | 162 | #ifdef HAVE_READPASSPHRASE_H |
| 163 | # include <readpassphrase.h> |
| 164 | #endif |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 165 | |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 166 | #ifdef HAVE_IA_H |
| 167 | # include <ia.h> |
| 168 | #endif |
| 169 | |
| 170 | #ifdef HAVE_TMPDIR_H |
| 171 | # include <tmpdir.h> |
| 172 | #endif |
| 173 | |
Damien Miller | 7b3f58c | 2002-10-21 10:50:25 +1000 | [diff] [blame] | 174 | #ifdef HAVE_LIBUTIL_H |
| 175 | # include <libutil.h> /* Openpty on FreeBSD at least */ |
| 176 | #endif |
| 177 | |
Darren Tucker | 3c78c5e | 2004-01-23 22:03:10 +1100 | [diff] [blame] | 178 | #if defined(KRB5) && defined(USE_AFS) |
Darren Tucker | 409cb32 | 2004-01-05 22:36:51 +1100 | [diff] [blame] | 179 | # include <krb5.h> |
| 180 | # include <kafs.h> |
| 181 | #endif |
| 182 | |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 183 | #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */ |
| 184 | |
| 185 | #include "defines.h" |
| 186 | |
Damien Miller | ab18c41 | 1999-11-11 10:40:23 +1100 | [diff] [blame] | 187 | #include "version.h" |
Damien Miller | 3c02768 | 2001-03-14 11:39:45 +1100 | [diff] [blame] | 188 | #include "openbsd-compat/openbsd-compat.h" |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 189 | #include "openbsd-compat/bsd-nextstep.h" |
Damien Miller | 5f05637 | 2000-04-16 12:31:48 +1000 | [diff] [blame] | 190 | |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 191 | #include "entropy.h" |
Ben Lindstrom | dc0594c | 2002-04-06 04:11:28 +0000 | [diff] [blame] | 192 | |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 193 | #endif /* INCLUDES_H */ |