blob: e20d7a5191354bab6752f355a24cb7a91e2d724f [file] [log] [blame]
Damien Miller512bccb2002-02-05 12:11:02 +11001/* $OpenBSD: includes.h,v 1.17 2002/01/26 16:44:22 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
19#define RCSID(msg) \
20static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
21
Damien Miller4874c791999-11-16 13:29:26 +110022#include "config.h"
23
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024#include <stdio.h>
25#include <ctype.h>
26#include <errno.h>
Tim Rice813f0452002-04-11 20:35:39 -070027#include <fcntl.h> /* For O_NONBLOCK */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include <signal.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029#include <stdlib.h>
30#include <string.h>
31#include <stdarg.h>
32#include <pwd.h>
33#include <grp.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034#include <time.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035#include <dirent.h>
Damien Miller72c9a7e2000-09-24 11:10:13 +110036
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000037#ifdef HAVE_LIMITS_H
Tim Rice813f0452002-04-11 20:35:39 -070038# include <limits.h> /* For PATH_MAX */
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000039#endif
Damien Miller72c9a7e2000-09-24 11:10:13 +110040#ifdef HAVE_GETOPT_H
Ben Lindstrom603bdfd2001-02-12 07:29:45 +000041# include <getopt.h>
Damien Millerbac2d8a2000-09-05 16:13:06 +110042#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110043#ifdef HAVE_BSTRING_H
44# include <bstring.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000045#endif
Ben Lindstrom45b14db2001-03-17 01:15:38 +000046#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
47 defined(GLOB_HAS_GL_MATCHC)
Damien Miller3c027682001-03-14 11:39:45 +110048# include <glob.h>
49#endif
Damien Miller3bd49ec1999-11-15 15:40:55 +110050#ifdef HAVE_NETGROUP_H
51# include <netgroup.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000052#endif
Ben Lindstrom42717bf2000-12-28 15:46:20 +000053#if defined(HAVE_NETDB_H)
Damien Millerbeb4ba51999-12-28 15:09:35 +110054# include <netdb.h>
Kevin Stevesef4eea92001-02-05 12:42:17 +000055#endif
Damien Millerab18c411999-11-11 10:40:23 +110056#ifdef HAVE_ENDIAN_H
57# include <endian.h>
58#endif
Damien Miller348c9b72000-08-15 10:01:22 +100059#ifdef HAVE_TTYENT_H
60# include <ttyent.h>
61#endif
Ben Lindstrom42202bc2001-01-15 02:34:37 +000062#ifdef HAVE_UTIME_H
63# include <utime.h>
64#endif
Tim Rice813f0452002-04-11 20:35:39 -070065#ifdef HAVE_MAILLOCK_H
66# include <maillock.h> /* For _PATH_MAILDIR */
67#endif
68#ifdef HAVE_NEXT
69# include <libc.h>
70#endif
71#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
118#ifdef HAVE_SYS_BITYPES_H
119# include <sys/bitypes.h> /* For u_intXX_t */
120#endif
121#ifdef HAVE_SYS_CDEFS_H
122# include <sys/cdefs.h> /* For __P() */
123#endif
124#ifdef HAVE_SYS_STAT_H
125# include <sys/stat.h> /* For S_* constants and macros */
126#endif
127#ifdef HAVE_SYS_SYSMACROS_H
128# include <sys/sysmacros.h> /* For MIN, MAX, etc */
129#endif
130#ifdef HAVE_SYS_MMAN_H
131#include <sys/mman.h> /* for MAP_ANONYMOUS */
132#endif
133
134#include <netinet/in_systm.h> /* For typedefs */
135#include <netinet/in.h> /* For IPv6 macros */
136#include <netinet/ip.h> /* For IPTOS macros */
137#include <netinet/tcp.h>
138#include <arpa/inet.h>
139#ifdef HAVE_RPC_TYPES_H
140# include <rpc/types.h> /* For INADDR_LOOPBACK */
141#endif
142#ifdef USE_PAM
143# include <security/pam_appl.h>
144#endif
Damien Millerf71d2a52002-05-13 15:14:08 +1000145#ifdef HAVE_READPASSPHRASE_H
146# include <readpassphrase.h>
147#endif
Tim Rice813f0452002-04-11 20:35:39 -0700148
149#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
150
151#include "defines.h"
152
Damien Millerab18c411999-11-11 10:40:23 +1100153#include "version.h"
Damien Miller3c027682001-03-14 11:39:45 +1100154#include "openbsd-compat/openbsd-compat.h"
155#include "openbsd-compat/bsd-cygwin_util.h"
Tim Rice813f0452002-04-11 20:35:39 -0700156#include "openbsd-compat/bsd-nextstep.h"
Damien Miller5f056372000-04-16 12:31:48 +1000157
Tim Rice813f0452002-04-11 20:35:39 -0700158#include "entropy.h"
Ben Lindstromdc0594c2002-04-06 04:11:28 +0000159
Damien Miller72c9a7e2000-09-24 11:10:13 +1100160#endif /* INCLUDES_H */