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