]> andersk Git - openssh.git/blame - includes.h
- (djm) Implement paranoid priv dropping checks, based on:
[openssh.git] / includes.h
CommitLineData
f9314d9a 1/* $OpenBSD: includes.h,v 1.17 2002/01/26 16:44:22 stevesk Exp $ */
23c2a7a5 2
8efc0c15 3/*
5260325f 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
5260325f 7 * This file includes most of the needed system headers.
6ae2364d 8 *
bcbf86ec 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".
5260325f 14 */
8efc0c15 15
16#ifndef INCLUDES_H
17#define INCLUDES_H
18
19#define RCSID(msg) \
20static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
21
793edc37 22#include "config.h"
23
8efc0c15 24#include <stdio.h>
25#include <ctype.h>
26#include <errno.h>
7b0737a4 27#include <fcntl.h> /* For O_NONBLOCK */
8efc0c15 28#include <signal.h>
8efc0c15 29#include <stdlib.h>
30#include <string.h>
31#include <stdarg.h>
32#include <pwd.h>
33#include <grp.h>
8efc0c15 34#include <time.h>
8efc0c15 35#include <dirent.h>
2f125ca1 36
6f68f28a 37#ifdef HAVE_LIMITS_H
7b0737a4 38# include <limits.h> /* For PATH_MAX */
6f68f28a 39#endif
2f125ca1 40#ifdef HAVE_GETOPT_H
6f68f28a 41# include <getopt.h>
3c62e7eb 42#endif
d94aa2ae 43#ifdef HAVE_BSTRING_H
44# include <bstring.h>
2b87da3b 45#endif
40849fdb 46#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
47 defined(GLOB_HAS_GL_MATCHC)
84ceda19 48# include <glob.h>
49#endif
c75a1a66 50#ifdef HAVE_NETGROUP_H
51# include <netgroup.h>
2b87da3b 52#endif
0dd78cd8 53#if defined(HAVE_NETDB_H)
d94aa2ae 54# include <netdb.h>
2b87da3b 55#endif
4cca272e 56#ifdef HAVE_ENDIAN_H
57# include <endian.h>
58#endif
7b0737a4 59#ifdef HAVE_TTYENT_H
60# include <ttyent.h>
61#endif
62#ifdef HAVE_UTIME_H
63# include <utime.h>
64#endif
65#ifdef HAVE_MAILLOCK_H
66# include <maillock.h> /* For _PATH_MAILDIR */
67#endif
68#ifdef HAVE_NEXT
69# include <libc.h>
70#endif
688eed4a 71#define __USE_GNU /* before unistd.h, activate extra prototypes for glibc */
7b0737a4 72#include <unistd.h> /* For STDIN_FILENO, etc */
73#include <termios.h> /* Struct winsize */
74
75/*
76 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
77 */
78#ifdef HAVE_STRINGS_H
79# include <strings.h>
80#endif
81#ifdef HAVE_LOGIN_H
82# include <login.h>
83#endif
84
85#ifdef HAVE_UTMP_H
86# include <utmp.h>
87#endif
88#ifdef HAVE_UTMPX_H
89# ifdef HAVE_TV_IN_UTMPX
90# include <sys/time.h>
91# endif
92# include <utmpx.h>
93#endif
94#ifdef HAVE_LASTLOG_H
95# include <lastlog.h>
96#endif
97#ifdef HAVE_PATHS_H
98# include <paths.h> /* For _PATH_XXX */
793edc37 99#endif
7b0737a4 100
101#include <sys/types.h>
102#include <sys/socket.h>
103#include <sys/ioctl.h>
104#include <sys/wait.h>
b09a984b 105#ifdef HAVE_SYS_TIME_H
7b0737a4 106# include <sys/time.h> /* For timersub */
107#endif
108#include <sys/resource.h>
109#ifdef HAVE_SYS_SELECT_H
110# include <sys/select.h>
b09a984b 111#endif
a7effaac 112#ifdef HAVE_SYS_BSDTTY_H
113# include <sys/bsdtty.h>
114#endif
7b0737a4 115#include <sys/param.h> /* For MAXPATHLEN and roundup() */
116#ifdef HAVE_SYS_UN_H
117# include <sys/un.h> /* For sockaddr_un */
dbaa2e87 118#endif
5749e709 119#ifdef HAVE_STDINT_H
120# include <stdint.h>
121#endif
7b0737a4 122#ifdef HAVE_SYS_BITYPES_H
123# include <sys/bitypes.h> /* For u_intXX_t */
124#endif
125#ifdef HAVE_SYS_CDEFS_H
126# include <sys/cdefs.h> /* For __P() */
127#endif
128#ifdef HAVE_SYS_STAT_H
129# include <sys/stat.h> /* For S_* constants and macros */
beb43d31 130#endif
20af321f 131#ifdef HAVE_SYS_SYSMACROS_H
7b0737a4 132# include <sys/sysmacros.h> /* For MIN, MAX, etc */
20af321f 133#endif
7b0737a4 134#ifdef HAVE_SYS_MMAN_H
135#include <sys/mman.h> /* for MAP_ANONYMOUS */
136#endif
321735c7 137#ifdef HAVE_SYS_STRTIO_H
138#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
139#endif
7b0737a4 140
141#include <netinet/in_systm.h> /* For typedefs */
142#include <netinet/in.h> /* For IPv6 macros */
143#include <netinet/ip.h> /* For IPTOS macros */
144#include <netinet/tcp.h>
145#include <arpa/inet.h>
146#ifdef HAVE_RPC_TYPES_H
147# include <rpc/types.h> /* For INADDR_LOOPBACK */
148#endif
149#ifdef USE_PAM
150# include <security/pam_appl.h>
89c7e31c 151#endif
75817f90 152#ifdef HAVE_READPASSPHRASE_H
153# include <readpassphrase.h>
154#endif
7b0737a4 155
ef51930f 156#ifdef HAVE_IA_H
157# include <ia.h>
158#endif
159
160#ifdef HAVE_TMPDIR_H
161# include <tmpdir.h>
162#endif
163
cacd2e7a 164#ifdef HAVE_LIBUTIL_H
165# include <libutil.h> /* Openpty on FreeBSD at least */
166#endif
167
7b0737a4 168#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
169
170#include "defines.h"
171
4cca272e 172#include "version.h"
84ceda19 173#include "openbsd-compat/openbsd-compat.h"
7b0737a4 174#include "openbsd-compat/bsd-nextstep.h"
35484284 175
7b0737a4 176#include "entropy.h"
23aa1237 177
2f125ca1 178#endif /* INCLUDES_H */
This page took 1.151866 seconds and 5 git commands to generate.