blob: fa65aa38d6bbcbc8eafa17b37dfae78e162d0544 [file] [log] [blame]
Damien Miller459735a2005-05-26 12:13:42 +10001/* $OpenBSD: includes.h,v 1.19 2005/05/19 02:42:26 djm 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
19#define RCSID(msg) \
Damien Miller459735a2005-05-26 12:13:42 +100020static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Damien Miller4874c791999-11-16 13:29:26 +110022#include "config.h"
23
Darren Tucker93e7e8f2005-08-23 08:06:55 +100024#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025#include <stdio.h>
26#include <ctype.h>
27#include <errno.h>
Tim Rice813f0452002-04-11 20:35:39 -070028#include <fcntl.h> /* For O_NONBLOCK */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029#include <signal.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100030#include <stdlib.h>
31#include <string.h>
32#include <stdarg.h>
33#include <pwd.h>
34#include <grp.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035#include <time.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036#include <dirent.h>
Damien Miller0e220db2004-06-15 10:34:08 +100037#include <stddef.h>
Damien Miller72c9a7e2000-09-24 11:10:13 +110038
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000039#ifdef HAVE_LIMITS_H
Tim Rice813f0452002-04-11 20:35:39 -070040# include <limits.h> /* For PATH_MAX */
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000041#endif
Damien Miller72c9a7e2000-09-24 11:10:13 +110042#ifdef HAVE_GETOPT_H
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000043# include <getopt.h>
Damien Millerbac2d8a2000-09-05 16:13:06 +110044#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110045#ifdef HAVE_BSTRING_H
46# include <bstring.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000047#endif
Ben Lindstrom45b14db2001-03-17 01:15:38 +000048#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
49 defined(GLOB_HAS_GL_MATCHC)
Damien Miller3c027682001-03-14 11:39:45 +110050# include <glob.h>
51#endif
Damien Miller3bd49ec1999-11-15 15:40:55 +110052#ifdef HAVE_NETGROUP_H
53# include <netgroup.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000054#endif
Damien Millerab18c411999-11-11 10:40:23 +110055#ifdef HAVE_ENDIAN_H
56# include <endian.h>
57#endif
Damien Miller348c9b72000-08-15 10:01:22 +100058#ifdef HAVE_TTYENT_H
59# include <ttyent.h>
60#endif
Ben Lindstrom42202bc2001-01-15 02:34:37 +000061#ifdef HAVE_UTIME_H
62# include <utime.h>
63#endif
Tim Rice813f0452002-04-11 20:35:39 -070064#ifdef HAVE_MAILLOCK_H
65# include <maillock.h> /* For _PATH_MAILDIR */
66#endif
67#ifdef HAVE_NEXT
68# include <libc.h>
69#endif
Damien Miller5fe46a42003-06-05 09:53:31 +100070#define __USE_GNU /* before unistd.h, activate extra prototypes for glibc */
Tim Rice813f0452002-04-11 20:35:39 -070071#include <unistd.h> /* For STDIN_FILENO, etc */
72#include <termios.h> /* Struct winsize */
73
74/*
75 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
76 */
77#ifdef HAVE_STRINGS_H
78# include <strings.h>
79#endif
80#ifdef HAVE_LOGIN_H
81# include <login.h>
82#endif
83
84#ifdef HAVE_UTMP_H
85# include <utmp.h>
86#endif
87#ifdef HAVE_UTMPX_H
88# ifdef HAVE_TV_IN_UTMPX
89# include <sys/time.h>
90# endif
91# include <utmpx.h>
92#endif
93#ifdef HAVE_LASTLOG_H
94# include <lastlog.h>
95#endif
96#ifdef HAVE_PATHS_H
97# include <paths.h> /* For _PATH_XXX */
98#endif
99
100#include <sys/types.h>
101#include <sys/socket.h>
102#include <sys/ioctl.h>
103#include <sys/wait.h>
104#ifdef HAVE_SYS_TIME_H
105# include <sys/time.h> /* For timersub */
106#endif
107#include <sys/resource.h>
108#ifdef HAVE_SYS_SELECT_H
109# include <sys/select.h>
110#endif
111#ifdef HAVE_SYS_BSDTTY_H
112# include <sys/bsdtty.h>
113#endif
114#include <sys/param.h> /* For MAXPATHLEN and roundup() */
115#ifdef HAVE_SYS_UN_H
116# include <sys/un.h> /* For sockaddr_un */
117#endif
Tim Riceeae876e2002-07-18 11:49:32 -0700118#ifdef HAVE_STDINT_H
119# include <stdint.h>
120#endif
Tim Rice813f0452002-04-11 20:35:39 -0700121#ifdef HAVE_SYS_BITYPES_H
122# include <sys/bitypes.h> /* For u_intXX_t */
123#endif
124#ifdef HAVE_SYS_CDEFS_H
125# include <sys/cdefs.h> /* For __P() */
126#endif
127#ifdef HAVE_SYS_STAT_H
128# include <sys/stat.h> /* For S_* constants and macros */
129#endif
130#ifdef HAVE_SYS_SYSMACROS_H
131# include <sys/sysmacros.h> /* For MIN, MAX, etc */
132#endif
133#ifdef HAVE_SYS_MMAN_H
134#include <sys/mman.h> /* for MAP_ANONYMOUS */
135#endif
Darren Tucker5d0ccf32003-05-15 21:42:59 +1000136#ifdef HAVE_SYS_STRTIO_H
137#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
138#endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800139#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
Darren Tucker07459352004-02-06 21:29:41 +1100140# if defined(HAVE_SYS_STREAM_H)
141# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
142# endif
Tim Rice2597bfd2004-01-26 19:03:39 -0800143#include <sys/ptms.h> /* for grantpt() and friends */
144#endif
Tim Rice813f0452002-04-11 20:35:39 -0700145
146#include <netinet/in_systm.h> /* For typedefs */
147#include <netinet/in.h> /* For IPv6 macros */
148#include <netinet/ip.h> /* For IPTOS macros */
149#include <netinet/tcp.h>
150#include <arpa/inet.h>
Darren Tuckercc9fd542003-06-29 21:23:37 +1000151#if defined(HAVE_NETDB_H)
152# include <netdb.h>
153#endif
Tim Rice813f0452002-04-11 20:35:39 -0700154#ifdef HAVE_RPC_TYPES_H
155# include <rpc/types.h> /* For INADDR_LOOPBACK */
156#endif
157#ifdef USE_PAM
Damien Miller0f47c532004-01-02 18:01:30 +1100158#if defined(HAVE_SECURITY_PAM_APPL_H)
Tim Rice813f0452002-04-11 20:35:39 -0700159# include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +1100160#elif defined (HAVE_PAM_PAM_APPL_H)
161# include <pam/pam_appl.h>
162#endif
Tim Rice813f0452002-04-11 20:35:39 -0700163#endif
Damien Millerf71d2a52002-05-13 15:14:08 +1000164#ifdef HAVE_READPASSPHRASE_H
165# include <readpassphrase.h>
166#endif
Tim Rice813f0452002-04-11 20:35:39 -0700167
Tim Rice81ed5182002-09-25 17:38:46 -0700168#ifdef HAVE_IA_H
169# include <ia.h>
170#endif
171
Tim Rice2291c002005-08-26 13:15:19 -0700172#ifdef HAVE_IAF_H
173# include <iaf.h>
174#endif
175
Tim Rice81ed5182002-09-25 17:38:46 -0700176#ifdef HAVE_TMPDIR_H
177# include <tmpdir.h>
178#endif
179
Damien Miller7b3f58c2002-10-21 10:50:25 +1000180#ifdef HAVE_LIBUTIL_H
181# include <libutil.h> /* Openpty on FreeBSD at least */
182#endif
183
Darren Tucker3c78c5e2004-01-23 22:03:10 +1100184#if defined(KRB5) && defined(USE_AFS)
Darren Tucker409cb322004-01-05 22:36:51 +1100185# include <krb5.h>
186# include <kafs.h>
187#endif
188
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000189#if defined(HAVE_SYS_SYSLOG_H)
190# include <sys/syslog.h>
191#endif
192
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000193/*
194 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
195 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
196 */
Darren Tuckera56f1912004-11-02 20:30:54 +1100197#ifdef GETSPNAM_CONFLICTING_DEFS
Darren Tucker3d50c9b2004-08-15 00:01:48 +1000198# ifdef _INCLUDE__STDC__
199# undef _INCLUDE__STDC__
200# endif
201#endif
202
Tim Rice813f0452002-04-11 20:35:39 -0700203#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
204
205#include "defines.h"
206
Damien Millerab18c411999-11-11 10:40:23 +1100207#include "version.h"
Damien Miller3c027682001-03-14 11:39:45 +1100208#include "openbsd-compat/openbsd-compat.h"
Tim Rice813f0452002-04-11 20:35:39 -0700209#include "openbsd-compat/bsd-nextstep.h"
Damien Miller5f056372000-04-16 12:31:48 +1000210
Tim Rice813f0452002-04-11 20:35:39 -0700211#include "entropy.h"
Ben Lindstromdc0594c2002-04-06 04:11:28 +0000212
Damien Miller72c9a7e2000-09-24 11:10:13 +1100213#endif /* INCLUDES_H */