]> andersk Git - openssh.git/blame_incremental - defines.h
- (stevesk) [auth-sia.c] cleanup
[openssh.git] / defines.h
... / ...
CommitLineData
1#ifndef _DEFINES_H
2#define _DEFINES_H
3
4/* $Id$ */
5
6/* Necessary headers */
7
8#include <sys/types.h> /* For [u]intxx_t */
9#include <sys/socket.h> /* For SHUT_XXXX */
10#include <sys/param.h> /* For MAXPATHLEN and roundup() */
11#include <netinet/in_systm.h> /* For typedefs */
12#include <netinet/in.h> /* For IPv6 macros */
13#include <netinet/ip.h> /* For IPTOS macros */
14#ifdef HAVE_RPC_TYPES_H
15# include <rpc/types.h> /* For INADDR_LOOPBACK */
16#endif
17#ifdef HAVE_SYS_UN_H
18# include <sys/un.h> /* For sockaddr_un */
19#endif
20#ifdef HAVE_SYS_BITYPES_H
21# include <sys/bitypes.h> /* For u_intXX_t */
22#endif
23#ifdef HAVE_PATHS_H
24# include <paths.h> /* For _PATH_XXX */
25#endif
26#ifdef HAVE_LIMITS_H
27# include <limits.h> /* For PATH_MAX */
28#endif
29#ifdef HAVE_SYS_TIME_H
30# include <sys/time.h> /* For timersub */
31#endif
32#ifdef HAVE_MAILLOCK_H
33# include <maillock.h> /* For _PATH_MAILDIR */
34#endif
35#ifdef HAVE_SYS_CDEFS_H
36# include <sys/cdefs.h> /* For __P() */
37#endif
38#ifdef HAVE_SYS_SYSMACROS_H
39# include <sys/sysmacros.h> /* For MIN, MAX, etc */
40#endif
41#ifdef HAVE_SYS_STAT_H
42# include <sys/stat.h> /* For S_* constants and macros */
43#endif
44#ifdef HAVE_NEXT
45# include <libc.h>
46#endif
47
48#include <unistd.h> /* For STDIN_FILENO, etc */
49#include <termios.h> /* Struct winsize */
50#include <fcntl.h> /* For O_NONBLOCK */
51#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
52
53/* *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively */
54#ifdef HAVE_STRINGS_H
55# include <strings.h>
56#endif
57#ifdef HAVE_LOGIN_H
58# include <login.h>
59#endif
60
61
62/* Constants */
63
64#ifndef SHUT_RDWR
65enum
66{
67 SHUT_RD = 0, /* No more receptions. */
68 SHUT_WR, /* No more transmissions. */
69 SHUT_RDWR /* No more receptions or transmissions. */
70};
71# define SHUT_RD SHUT_RD
72# define SHUT_WR SHUT_WR
73# define SHUT_RDWR SHUT_RDWR
74#endif
75
76#ifndef IPTOS_LOWDELAY
77# define IPTOS_LOWDELAY 0x10
78# define IPTOS_THROUGHPUT 0x08
79# define IPTOS_RELIABILITY 0x04
80# define IPTOS_LOWCOST 0x02
81# define IPTOS_MINCOST IPTOS_LOWCOST
82#endif /* IPTOS_LOWDELAY */
83
84#ifndef MAXPATHLEN
85# ifdef PATH_MAX
86# define MAXPATHLEN PATH_MAX
87# else /* PATH_MAX */
88# define MAXPATHLEN 64 /* Should be safe */
89# endif /* PATH_MAX */
90#endif /* MAXPATHLEN */
91
92#ifndef STDIN_FILENO
93# define STDIN_FILENO 0
94#endif
95#ifndef STDOUT_FILENO
96# define STDOUT_FILENO 1
97#endif
98#ifndef STDERR_FILENO
99# define STDERR_FILENO 2
100#endif
101
102#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
103#ifdef NGROUPS
104#define NGROUPS_MAX NGROUPS
105#else
106#define NGROUPS_MAX 0
107#endif
108#endif
109
110#ifndef O_NONBLOCK /* Non Blocking Open */
111# define O_NONBLOCK 00004
112#endif
113
114#ifndef S_ISDIR
115# define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
116#endif /* S_ISDIR */
117
118#ifndef S_ISREG
119# define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
120#endif /* S_ISREG */
121
122#ifndef S_ISLNK
123# define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
124#endif /* S_ISLNK */
125
126#ifndef S_IXUSR
127# define S_IXUSR 0000100 /* execute/search permission, */
128# define S_IXGRP 0000010 /* execute/search permission, */
129# define S_IXOTH 0000001 /* execute/search permission, */
130# define _S_IWUSR 0000200 /* write permission, */
131# define S_IWUSR _S_IWUSR /* write permission, owner */
132# define S_IWGRP 0000020 /* write permission, group */
133# define S_IWOTH 0000002 /* write permission, other */
134# define S_IRUSR 0000400 /* read permission, owner */
135# define S_IRGRP 0000040 /* read permission, group */
136# define S_IROTH 0000004 /* read permission, other */
137# define S_IRWXU 0000700 /* read, write, execute */
138# define S_IRWXG 0000070 /* read, write, execute */
139# define S_IRWXO 0000007 /* read, write, execute */
140#endif /* S_IXUSR */
141
142/* *-*-nto-qnx doesn't define this constant in the system headers */
143#ifdef MISSING_NFDBITS
144# define NFDBITS (8 * sizeof(unsigned long))
145#endif
146
147/*
148SCO Open Server 3 has INADDR_LOOPBACK defined in rpc/rpc.h but
149including rpc/rpc.h breaks Solaris 6
150*/
151#ifndef INADDR_LOOPBACK
152#define INADDR_LOOPBACK ((ulong)0x7f000001)
153#endif
154
155/* Types */
156
157/* If sys/types.h does not supply intXX_t, supply them ourselves */
158/* (or die trying) */
159
160
161#ifndef HAVE_U_INT
162typedef unsigned int u_int;
163#endif
164
165#ifndef HAVE_INTXX_T
166# if (SIZEOF_CHAR == 1)
167typedef char int8_t;
168# else
169# error "8 bit int type not found."
170# endif
171# if (SIZEOF_SHORT_INT == 2)
172typedef short int int16_t;
173# else
174# ifdef _CRAY
175# if (SIZEOF_SHORT_INT == 4)
176typedef short int16_t;
177# else
178typedef long int16_t;
179# endif
180# else
181# error "16 bit int type not found."
182# endif /* _CRAY */
183# endif
184# if (SIZEOF_INT == 4)
185typedef int int32_t;
186# else
187# ifdef _CRAY
188typedef long int32_t;
189# else
190# error "32 bit int type not found."
191# endif /* _CRAY */
192# endif
193#endif
194
195/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
196#ifndef HAVE_U_INTXX_T
197# ifdef HAVE_UINTXX_T
198typedef uint8_t u_int8_t;
199typedef uint16_t u_int16_t;
200typedef uint32_t u_int32_t;
201# define HAVE_U_INTXX_T 1
202# else
203# if (SIZEOF_CHAR == 1)
204typedef unsigned char u_int8_t;
205# else
206# error "8 bit int type not found."
207# endif
208# if (SIZEOF_SHORT_INT == 2)
209typedef unsigned short int u_int16_t;
210# else
211# ifdef _CRAY
212# if (SIZEOF_SHORT_INT == 4)
213typedef unsigned short u_int16_t;
214# else
215typedef unsigned long u_int16_t;
216# endif
217# else
218# error "16 bit int type not found."
219# endif
220# endif
221# if (SIZEOF_INT == 4)
222typedef unsigned int u_int32_t;
223# else
224# ifdef _CRAY
225typedef unsigned long u_int32_t;
226# else
227# error "32 bit int type not found."
228# endif
229# endif
230# endif
231#define __BIT_TYPES_DEFINED__
232#endif
233
234/* 64-bit types */
235#ifndef HAVE_INT64_T
236# if (SIZEOF_LONG_INT == 8)
237typedef long int int64_t;
238# define HAVE_INT64_T 1
239# else
240# if (SIZEOF_LONG_LONG_INT == 8)
241typedef long long int int64_t;
242# define HAVE_INT64_T 1
243# endif
244# endif
245#endif
246#ifndef HAVE_U_INT64_T
247# if (SIZEOF_LONG_INT == 8)
248typedef unsigned long int u_int64_t;
249# define HAVE_U_INT64_T 1
250# else
251# if (SIZEOF_LONG_LONG_INT == 8)
252typedef unsigned long long int u_int64_t;
253# define HAVE_U_INT64_T 1
254# endif
255# endif
256#endif
257#if !defined(HAVE_LONG_LONG_INT) && (SIZEOF_LONG_LONG_INT == 8)
258# define HAVE_LONG_LONG_INT 1
259#endif
260
261#ifndef HAVE_U_CHAR
262typedef unsigned char u_char;
263# define HAVE_U_CHAR
264#endif /* HAVE_U_CHAR */
265
266#ifndef HAVE_SIZE_T
267typedef unsigned int size_t;
268# define HAVE_SIZE_T
269#endif /* HAVE_SIZE_T */
270
271#ifndef HAVE_SSIZE_T
272typedef int ssize_t;
273# define HAVE_SSIZE_T
274#endif /* HAVE_SSIZE_T */
275
276#ifndef HAVE_CLOCK_T
277typedef long clock_t;
278# define HAVE_CLOCK_T
279#endif /* HAVE_CLOCK_T */
280
281#ifndef HAVE_SA_FAMILY_T
282typedef int sa_family_t;
283# define HAVE_SA_FAMILY_T
284#endif /* HAVE_SA_FAMILY_T */
285
286#ifndef HAVE_PID_T
287typedef int pid_t;
288# define HAVE_PID_T
289#endif /* HAVE_PID_T */
290
291#ifndef HAVE_SIG_ATOMIC_T
292typedef int sig_atomic_t;
293# define HAVE_SIG_ATOMIC_T
294#endif /* HAVE_SIG_ATOMIC_T */
295
296#ifndef HAVE_MODE_T
297typedef int mode_t;
298# define HAVE_MODE_T
299#endif /* HAVE_MODE_T */
300
301#if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
302# define ss_family __ss_family
303#endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
304
305#ifndef HAVE_SYS_UN_H
306struct sockaddr_un {
307 short sun_family; /* AF_UNIX */
308 char sun_path[108]; /* path name (gag) */
309};
310#endif /* HAVE_SYS_UN_H */
311
312#if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE)
313#define _STRUCT_WINSIZE
314struct winsize {
315 unsigned short ws_row; /* rows, in characters */
316 unsigned short ws_col; /* columns, in character */
317 unsigned short ws_xpixel; /* horizontal size, pixels */
318 unsigned short ws_ypixel; /* vertical size, pixels */
319};
320#endif
321
322/* *-*-nto-qnx does not define this type in the system headers */
323#ifdef MISSING_FD_MASK
324 typedef unsigned long int fd_mask;
325#endif
326
327/* Paths */
328
329#ifndef _PATH_BSHELL
330# define _PATH_BSHELL "/bin/sh"
331#endif
332#ifndef _PATH_CSHELL
333# define _PATH_CSHELL "/bin/csh"
334#endif
335#ifndef _PATH_SHELLS
336# define _PATH_SHELLS "/etc/shells"
337#endif
338
339#ifdef USER_PATH
340# ifdef _PATH_STDPATH
341# undef _PATH_STDPATH
342# endif
343# define _PATH_STDPATH USER_PATH
344#endif
345
346#ifndef _PATH_STDPATH
347# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
348#endif
349
350#ifndef _PATH_DEVNULL
351# define _PATH_DEVNULL "/dev/null"
352#endif
353
354#ifndef MAIL_DIRECTORY
355# define MAIL_DIRECTORY "/var/spool/mail"
356#endif
357
358#ifndef MAILDIR
359# define MAILDIR MAIL_DIRECTORY
360#endif
361
362#if !defined(_PATH_MAILDIR) && defined(MAILDIR)
363# define _PATH_MAILDIR MAILDIR
364#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
365
366#ifndef _PATH_RSH
367# ifdef RSH_PATH
368# define _PATH_RSH RSH_PATH
369# else /* RSH_PATH */
370# define _PATH_RSH "/usr/bin/rsh"
371# endif /* RSH_PATH */
372#endif /* _PATH_RSH */
373
374#ifndef _PATH_NOLOGIN
375# define _PATH_NOLOGIN "/etc/nologin"
376#endif
377
378/* Define this to be the path of the xauth program. */
379#ifdef XAUTH_PATH
380#define _PATH_XAUTH XAUTH_PATH
381#endif /* XAUTH_PATH */
382
383/* derived from XF4/xc/lib/dps/Xlibnet.h */
384#ifndef X_UNIX_PATH
385# ifdef __hpux
386# define X_UNIX_PATH "/var/spool/sockets/X11/%u"
387# else
388# define X_UNIX_PATH "/tmp/.X11-unix/X%u"
389# endif
390#endif /* X_UNIX_PATH */
391#define _PATH_UNIX_X X_UNIX_PATH
392
393#ifndef _PATH_TTY
394# define _PATH_TTY "/dev/tty"
395#endif
396
397/* Macros */
398
399#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
400# define HAVE_LOGIN_CAP
401#endif
402
403#ifndef MAX
404# define MAX(a,b) (((a)>(b))?(a):(b))
405# define MIN(a,b) (((a)<(b))?(a):(b))
406#endif
407
408#ifndef roundup
409# define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
410#endif
411
412#ifndef timersub
413#define timersub(a, b, result) \
414 do { \
415 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
416 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
417 if ((result)->tv_usec < 0) { \
418 --(result)->tv_sec; \
419 (result)->tv_usec += 1000000; \
420 } \
421 } while (0)
422#endif
423
424#ifndef __P
425# define __P(x) x
426#endif
427
428#if !defined(IN6_IS_ADDR_V4MAPPED)
429# define IN6_IS_ADDR_V4MAPPED(a) \
430 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
431 (((u_int32_t *) (a))[2] == htonl (0xffff)))
432#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
433
434#if !defined(__GNUC__) || (__GNUC__ < 2)
435# define __attribute__(x)
436#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
437
438/* *-*-nto-qnx doesn't define this macro in the system headers */
439#ifdef MISSING_HOWMANY
440# define howmany(x,y) (((x)+((y)-1))/(y))
441#endif
442
443#ifdef __hpux
444#define MAP_ANON MAP_ANONYMOUS
445#endif
446
447#ifndef ALIGNBYTES
448#define ALIGNBYTES (sizeof(int) - 1)
449#endif
450#ifndef ALIGN
451#define ALIGN(p) (((u_int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
452#endif
453#ifndef __CMSG_ALIGN
454#define __CMSG_ALIGN(len) ALIGN(len)
455#endif
456
457/* Length of the contents of a control message of length len */
458#ifndef CMSG_LEN
459#define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
460#endif
461
462/* Length of the space taken up by a padded control message of length len */
463#ifndef CMSG_SPACE
464#define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
465#endif
466
467/* Function replacement / compatibility hacks */
468
469/* In older versions of libpam, pam_strerror takes a single argument */
470#ifdef HAVE_OLD_PAM
471# define PAM_STRERROR(a,b) pam_strerror((b))
472#else
473# define PAM_STRERROR(a,b) pam_strerror((a),(b))
474#endif
475
476#ifdef PAM_SUN_CODEBASE
477# define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
478#else
479# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
480#endif
481
482#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
483# undef HAVE_GETADDRINFO
484#endif
485#if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
486# undef HAVE_FREEADDRINFO
487#endif
488#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
489# undef HAVE_GAI_STRERROR
490#endif
491
492#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
493# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
494#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
495
496#if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX)
497# define USE_VHANGUP
498#endif /* defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) */
499
500#ifndef GETPGRP_VOID
501# define getpgrp() getpgrp(0)
502#endif
503
504/* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */
505#if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f)
506# define OPENSSL_free(x) Free(x)
507#endif
508
509#if defined(HAVE___func__)
510# define __FUNCTION__ __func__
511#elif !defined(HAVE___FUNCTION__)
512# define __FUNCTION__ ""
513#endif
514
515/*
516 * Define this to use pipes instead of socketpairs for communicating with the
517 * client program. Socketpairs do not seem to work on all systems.
518 *
519 * configure.ac sets this for a few OS's which are known to have problems
520 * but you may need to set it yourself
521 */
522/* #define USE_PIPES 1 */
523
524/**
525 ** login recorder definitions
526 **/
527
528/* preprocess */
529
530#ifdef HAVE_UTMP_H
531# ifdef HAVE_TIME_IN_UTMP
532# include <time.h>
533# endif
534# include <utmp.h>
535#endif
536#ifdef HAVE_UTMPX_H
537# ifdef HAVE_TV_IN_UTMPX
538# include <sys/time.h>
539# endif
540# include <utmpx.h>
541#endif
542#ifdef HAVE_LASTLOG_H
543# include <lastlog.h>
544#endif
545#ifdef HAVE_PATHS_H
546# include <paths.h>
547#endif
548
549/* FIXME: put default paths back in */
550#ifndef UTMP_FILE
551# ifdef _PATH_UTMP
552# define UTMP_FILE _PATH_UTMP
553# else
554# ifdef CONF_UTMP_FILE
555# define UTMP_FILE CONF_UTMP_FILE
556# endif
557# endif
558#endif
559#ifndef WTMP_FILE
560# ifdef _PATH_WTMP
561# define WTMP_FILE _PATH_WTMP
562# else
563# ifdef CONF_WTMP_FILE
564# define WTMP_FILE CONF_WTMP_FILE
565# endif
566# endif
567#endif
568/* pick up the user's location for lastlog if given */
569#ifndef LASTLOG_FILE
570# ifdef _PATH_LASTLOG
571# define LASTLOG_FILE _PATH_LASTLOG
572# else
573# ifdef CONF_LASTLOG_FILE
574# define LASTLOG_FILE CONF_LASTLOG_FILE
575# endif
576# endif
577#endif
578
579
580/* The login() library function in libutil is first choice */
581#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
582# define USE_LOGIN
583
584#else
585/* Simply select your favourite login types. */
586/* Can't do if-else because some systems use several... <sigh> */
587# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
588# define USE_UTMPX
589# endif
590# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
591# define USE_UTMP
592# endif
593# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
594# define USE_WTMPX
595# endif
596# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
597# define USE_WTMP
598# endif
599
600#endif
601
602/* I hope that the presence of LASTLOG_FILE is enough to detect this */
603#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
604# define USE_LASTLOG
605#endif
606
607/* which type of time to use? (api.c) */
608#ifdef HAVE_SYS_TIME_H
609# define USE_TIMEVAL
610#endif
611
612/** end of login recorder definitions */
613
614#endif /* _DEFINES_H */
This page took 0.04106 seconds and 5 git commands to generate.