]> andersk Git - openssh.git/blame - defines.h
- (djm) Update X11-askpass to 1.0.2 in RPM spec file
[openssh.git] / defines.h
CommitLineData
76a8e733 1#ifndef _DEFINES_H
2#define _DEFINES_H
3
ea1970a3 4/* Necessary headers */
5
a8ed9fd9 6#include <sys/types.h> /* For [u]intxx_t */
cb807f40 7#include <sys/socket.h> /* For SHUT_XXXX */
509b1f88 8#include <sys/param.h> /* For MAXPATHLEN */
ba606eb2 9#include <sys/un.h> /* For SUN_LEN */
509b1f88 10#include <netinet/in_systm.h> /* For typedefs */
a8ed9fd9 11#include <netinet/in.h> /* For IPv6 macros */
18e92801 12#include <netinet/ip.h> /* For IPTOS macros */
5cdfe03f 13#ifdef HAVE_SYS_BITYPES_H
14# include <sys/bitypes.h> /* For u_intXX_t */
15#endif
cb807f40 16#ifdef HAVE_PATHS_H
17# include <paths.h> /* For _PATH_XXX */
18#endif
509b1f88 19#ifdef HAVE_LIMITS_H
20# include <limits.h> /* For PATH_MAX */
21#endif
cb807f40 22#ifdef HAVE_SYS_TIME_H
23# include <sys/time.h> /* For timersub */
24#endif
cb807f40 25#ifdef HAVE_MAILLOCK_H
d94aa2ae 26# include <maillock.h> /* For _PATH_MAILDIR */
cb807f40 27#endif
d94aa2ae 28#ifdef HAVE_SYS_CDEFS_H
29# include <sys/cdefs.h> /* For __P() */
30#endif
d468fc76 31#ifdef HAVE_SYS_SYSMACROS_H
32# include <sys/sysmacros.h> /* For MIN, MAX, etc */
33#endif
729bfe59 34#ifdef HAVE_SYS_STAT_H
35# include <sys/stat.h> /* For S_* constants and macros */
36#endif
e79b44e1 37#ifdef HAVE_NEXT
38# include <libc.h>
39#endif
729bfe59 40
41#include <unistd.h> /* For STDIN_FILENO, etc */
d468fc76 42
ea1970a3 43/* Constants */
44
cb807f40 45#ifndef SHUT_RDWR
46enum
47{
48 SHUT_RD = 0, /* No more receptions. */
49 SHUT_WR, /* No more transmissions. */
50 SHUT_RDWR /* No more receptions or transmissions. */
51};
52# define SHUT_RD SHUT_RD
53# define SHUT_WR SHUT_WR
54# define SHUT_RDWR SHUT_RDWR
55#endif
56
18e92801 57#ifndef IPTOS_LOWDELAY
58# define IPTOS_LOWDELAY 0x10
59# define IPTOS_THROUGHPUT 0x08
60# define IPTOS_RELIABILITY 0x04
61# define IPTOS_LOWCOST 0x02
62# define IPTOS_MINCOST IPTOS_LOWCOST
63#endif /* IPTOS_LOWDELAY */
64
509b1f88 65#ifndef MAXPATHLEN
66# ifdef PATH_MAX
67# define MAXPATHLEN PATH_MAX
68# else /* PATH_MAX */
69# define MAXPATHLEN 64 /* Should be safe */
70# endif /* PATH_MAX */
71#endif /* MAXPATHLEN */
72
729bfe59 73#ifndef STDIN_FILENO
74# define STDIN_FILENO 0
75#endif
76#ifndef STDOUT_FILENO
77# define STDOUT_FILENO 1
78#endif
79#ifndef STDERR_FILENO
80# define STDERR_FILENO 2
81#endif
82
83#ifndef S_ISREG
84# define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
85# define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
86#endif /* S_ISREG */
87
88#ifndef S_IXUSR
89# define S_IXUSR 0000100 /* execute/search permission, */
90# define S_IXGRP 0000010 /* execute/search permission, */
91# define S_IXOTH 0000001 /* execute/search permission, */
92# define _S_IWUSR 0000200 /* write permission, */
93# define S_IWUSR _S_IWUSR /* write permission, owner */
94# define S_IWGRP 0000020 /* write permission, group */
95# define S_IWOTH 0000002 /* write permission, other */
96# define S_IRUSR 0000400 /* read permission, owner */
97# define S_IRGRP 0000040 /* read permission, group */
98# define S_IROTH 0000004 /* read permission, other */
99# define S_IRWXU 0000700 /* read, write, execute */
100# define S_IRWXG 0000070 /* read, write, execute */
101# define S_IRWXO 0000007 /* read, write, execute */
102#endif /* S_IXUSR */
103
ea1970a3 104/* Types */
105
cb807f40 106/* If sys/types.h does not supply intXX_t, supply them ourselves */
107/* (or die trying) */
14a9a859 108
109#ifndef HAVE_U_INT
110typedef unsigned int u_int;
111#endif
112
cb807f40 113#ifndef HAVE_INTXX_T
976f7e19 114# if (SIZEOF_CHAR == 1)
115typedef char int8_t;
116# else
117# error "8 bit int type not found."
118# endif
cb807f40 119# if (SIZEOF_SHORT_INT == 2)
ea1970a3 120typedef short int int16_t;
cb807f40 121# else
122# error "16 bit int type not found."
123# endif
124# if (SIZEOF_INT == 4)
ea1970a3 125typedef int int32_t;
cb807f40 126# else
127# error "32 bit int type not found."
128# endif
cb807f40 129#endif
130
131/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
132#ifndef HAVE_U_INTXX_T
133# ifdef HAVE_UINTXX_T
976f7e19 134typedef uint8_t u_int8_t;
ea1970a3 135typedef uint16_t u_int16_t;
136typedef uint32_t u_int32_t;
76a8e733 137# define HAVE_U_INTXX_T 1
cb807f40 138# else
976f7e19 139# if (SIZEOF_CHAR == 1)
140typedef unsigned char u_int8_t;
141# else
142# error "8 bit int type not found."
143# endif
cb807f40 144# if (SIZEOF_SHORT_INT == 2)
ea1970a3 145typedef unsigned short int u_int16_t;
cb807f40 146# else
147# error "16 bit int type not found."
148# endif
149# if (SIZEOF_INT == 4)
ea1970a3 150typedef unsigned int u_int32_t;
cb807f40 151# else
152# error "32 bit int type not found."
153# endif
bd590612 154# endif
155#endif
156
157/* 64-bit types */
158#ifndef HAVE_INT64_T
159# if (SIZEOF_LONG_INT == 8)
160typedef long int int64_t;
161# else
162# if (SIZEOF_LONG_LONG_INT == 8)
163typedef long long int int64_t;
164# define HAVE_INTXX_T 1
cb807f40 165# else
bd590612 166# error "64 bit int type not found."
167# endif
168# endif
169#endif
170#ifndef HAVE_U_INT64_T
171# if (SIZEOF_LONG_INT == 8)
172typedef unsigned long int u_int64_t;
173# else
174# if (SIZEOF_LONG_LONG_INT == 8)
ea1970a3 175typedef unsigned long long int u_int64_t;
bd590612 176# define HAVE_U_INTXX_T 1
177# else
178# error "64 bit int type not found."
cb807f40 179# endif
180# endif
181#endif
182
ea1970a3 183#ifndef HAVE_SOCKLEN_T
184typedef unsigned int socklen_t;
a6ddc88b 185# define HAVE_SOCKLEN_T
ea1970a3 186#endif /* HAVE_SOCKLEN_T */
187
e3a93db0 188#ifndef HAVE_SIZE_T
189typedef unsigned int size_t;
a6ddc88b 190# define HAVE_SIZE_T
e3a93db0 191#endif /* HAVE_SIZE_T */
192
c04f75f1 193#ifndef HAVE_SSIZE_T
194typedef int ssize_t;
195# define HAVE_SSIZE_T
196#endif /* HAVE_SSIZE_T */
197
1c04b088 198#ifndef HAVE_SA_FAMILY_T
199typedef int sa_family_t;
200# define HAVE_SA_FAMILY_T
201#endif /* HAVE_SA_FAMILY_T */
202
729bfe59 203#ifndef HAVE_PID_T
204typedef int pid_t;
205# define HAVE_PID_T
206#endif /* HAVE_PID_T */
207
208#ifndef HAVE_MODE_T
209typedef int mode_t;
210# define HAVE_MODE_T
211#endif /* HAVE_MODE_T */
212
48e671d5 213#if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
214# define ss_family __ss_family
215#endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
216
ea1970a3 217/* Paths */
218
cb807f40 219#ifndef _PATH_BSHELL
220# define _PATH_BSHELL "/bin/sh"
221#endif
222
223#ifdef USER_PATH
224# ifdef _PATH_STDPATH
225# undef _PATH_STDPATH
226# endif
227# define _PATH_STDPATH USER_PATH
228#endif
229
230#ifndef _PATH_STDPATH
231# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
232#endif
233
234#ifndef _PATH_DEVNULL
235# define _PATH_DEVNULL "/dev/null"
236#endif
237
c04f75f1 238#ifndef MAIL_DIRECTORY
239# define MAIL_DIRECTORY "/var/spool/mail"
240#endif
241
cb807f40 242#ifndef MAILDIR
243# define MAILDIR MAIL_DIRECTORY
244#endif
245
246#if !defined(_PATH_MAILDIR) && defined(MAILDIR)
247# define _PATH_MAILDIR MAILDIR
248#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
249
ea1970a3 250#ifndef _PATH_RSH
251# ifdef RSH_PATH
252# define _PATH_RSH RSH_PATH
2f125ca1 253# else /* RSH_PATH */
254# define _PATH_RSH "/usr/bin/rsh"
ea1970a3 255# endif /* RSH_PATH */
256#endif /* _PATH_RSH */
257
2e73a022 258#ifndef _PATH_NOLOGIN
259# define _PATH_NOLOGIN "/etc/nologin"
260#endif
261
2f125ca1 262/* Define this to be the path of the xauth program. */
263#ifndef XAUTH_PATH
264#define XAUTH_PATH "/usr/X11R6/bin/xauth"
265#endif /* XAUTH_PATH */
266
ea1970a3 267/* Macros */
268
2e73a022 269#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
270# define HAVE_LOGIN_CAP
271#endif
272
cb807f40 273#ifndef MAX
274# define MAX(a,b) (((a)>(b))?(a):(b))
275# define MIN(a,b) (((a)<(b))?(a):(b))
276#endif
277
278#ifndef timersub
279#define timersub(a, b, result) \
280 do { \
281 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
282 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
283 if ((result)->tv_usec < 0) { \
284 --(result)->tv_sec; \
285 (result)->tv_usec += 1000000; \
286 } \
287 } while (0)
288#endif
289
cb807f40 290#ifndef __P
291# define __P(x) x
292#endif
293
a8ed9fd9 294#if !defined(IN6_IS_ADDR_V4MAPPED)
295# define IN6_IS_ADDR_V4MAPPED(a) \
84afc958 296 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
297 (((u_int32_t *) (a))[2] == htonl (0xffff)))
a8ed9fd9 298#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
299
cb807f40 300#if !defined(__GNUC__) || (__GNUC__ < 2)
976f7e19 301# define __attribute__(x)
cb807f40 302#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
303
ea1970a3 304#if defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM)
305# define USE_PAM
306#endif /* defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) */
307
ba606eb2 308#ifndef SUN_LEN
309#define SUN_LEN(su) \
310 (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))
311#endif /* SUN_LEN */
312
ea1970a3 313/* Function replacement / compatibility hacks */
314
315/* In older versions of libpam, pam_strerror takes a single argument */
316#ifdef HAVE_OLD_PAM
317# define PAM_STRERROR(a,b) pam_strerror((b))
318#else
319# define PAM_STRERROR(a,b) pam_strerror((a),(b))
320#endif
321
4c8ef3fb 322#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
323# undef HAVE_GETADDRINFO
324#endif /* defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO) */
325
c04f75f1 326#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
327# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
328#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
329
b9f446d1 330#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
331# define atexit(a) on_exit(a)
332#endif /* !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) */
333
3c62e7eb 334#if defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP)
335# define USE_VHANGUP
336#endif /* defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) */
337
7f8f5e00 338#ifndef GETPGRP_VOID
339# define getpgrp() getpgrp(0)
340#endif
341
2f125ca1 342/*
343 * Define this to use pipes instead of socketpairs for communicating with the
344 * client program. Socketpairs do not seem to work on all systems.
345 *
346 * configure.in sets this for a few OS's which are known to have problems
347 * but you may need to set it yourself
348 */
349/* #define USE_PIPES 1 */
350
1d7b9b20 351/**
352 ** login recorder definitions
353 **/
354
355/* preprocess */
356
357#ifdef HAVE_UTMP_H
358# ifdef HAVE_TIME_IN_UTMP
359# include <time.h>
360# endif
361# include <utmp.h>
362#endif
363#ifdef HAVE_UTMPX_H
364# ifdef HAVE_TV_IN_UTMPX
365# include <sys/time.h>
366# endif
367# include <utmpx.h>
368#endif
369#ifdef HAVE_LASTLOG_H
370# include <lastlog.h>
371#endif
372#ifdef HAVE_PATHS_H
373# include <paths.h>
374#endif
375
376/* FIXME: put default paths back in */
32eec038 377#ifndef UTMP_FILE
378# ifdef _PATH_UTMP
379# define UTMP_FILE _PATH_UTMP
380# else
381# ifdef CONF_UTMP_FILE
382# define UTMP_FILE CONF_UTMP_FILE
383# endif
384# endif
1d7b9b20 385#endif
32eec038 386#ifndef WTMP_FILE
387# ifdef _PATH_WTMP
388# define WTMP_FILE _PATH_WTMP
389# else
390# ifdef CONF_WTMP_FILE
391# define WTMP_FILE CONF_WTMP_FILE
392# endif
393# endif
1d7b9b20 394#endif
395/* pick up the user's location for lastlog if given */
32eec038 396#ifndef LASTLOG_FILE
397# ifdef _PATH_LASTLOG
398# define LASTLOG_FILE _PATH_LASTLOG
399# else
400# ifdef CONF_LASTLOG_FILE
401# define LASTLOG_FILE CONF_LASTLOG_FILE
402# endif
403# endif
d7c0f3d5 404#endif
1d7b9b20 405
406
407/* The login() library function in libutil is first choice */
408#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
409# define USE_LOGIN
410
411#else
412/* Simply select your favourite login types. */
413/* Can't do if-else because some systems use several... <sigh> */
414# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
415# define USE_UTMPX
416# endif
417# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
418# define USE_UTMP
419# endif
420# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
421# define USE_WTMPX
422# endif
423# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
424# define USE_WTMP
425# endif
426
427#endif
428
429/* I hope that the presence of LASTLOG_FILE is enough to detect this */
430#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
431# define USE_LASTLOG
432#endif
433
434/* which type of time to use? (api.c) */
435#ifdef HAVE_SYS_TIME_H
436# define USE_TIMEVAL
437#endif
438
439/** end of login recorder definitions */
440
76a8e733 441#endif /* _DEFINES_H */
This page took 0.126561 seconds and 5 git commands to generate.