]> andersk Git - openssh.git/blame_incremental - defines.h
- (bal) Last AIX patch. Moved aix_usrinfo() outside of do_setuserconext()
[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_RPC_H
15# include <rpc/rpc.h> /* For INADDR_LOOPBACK on SCO OSR3 */
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/* Types */
148
149/* If sys/types.h does not supply intXX_t, supply them ourselves */
150/* (or die trying) */
151
152
153#ifndef HAVE_U_INT
154typedef unsigned int u_int;
155#endif
156
157#ifndef HAVE_INTXX_T
158# if (SIZEOF_CHAR == 1)
159typedef char int8_t;
160# else
161# error "8 bit int type not found."
162# endif
163# if (SIZEOF_SHORT_INT == 2)
164typedef short int int16_t;
165# else
166# ifdef _CRAY
167typedef long int16_t;
168# else
169# error "16 bit int type not found."
170# endif /* _CRAY */
171# endif
172# if (SIZEOF_INT == 4)
173typedef int int32_t;
174# else
175# ifdef _CRAY
176typedef long int32_t;
177# else
178# error "32 bit int type not found."
179# endif /* _CRAY */
180# endif
181#endif
182
183/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
184#ifndef HAVE_U_INTXX_T
185# ifdef HAVE_UINTXX_T
186typedef uint8_t u_int8_t;
187typedef uint16_t u_int16_t;
188typedef uint32_t u_int32_t;
189# define HAVE_U_INTXX_T 1
190# else
191# if (SIZEOF_CHAR == 1)
192typedef unsigned char u_int8_t;
193# else
194# error "8 bit int type not found."
195# endif
196# if (SIZEOF_SHORT_INT == 2)
197typedef unsigned short int u_int16_t;
198# else
199# ifdef _CRAY
200typedef unsigned long u_int16_t;
201# else
202# error "16 bit int type not found."
203# endif
204# endif
205# if (SIZEOF_INT == 4)
206typedef unsigned int u_int32_t;
207# else
208# ifdef _CRAY
209typedef unsigned long u_int32_t;
210# else
211# error "32 bit int type not found."
212# endif
213# endif
214# endif
215#define __BIT_TYPES_DEFINED__
216#endif
217
218/* 64-bit types */
219#ifndef HAVE_INT64_T
220# if (SIZEOF_LONG_INT == 8)
221typedef long int int64_t;
222# define HAVE_INT64_T 1
223# else
224# if (SIZEOF_LONG_LONG_INT == 8)
225typedef long long int int64_t;
226# define HAVE_INT64_T 1
227# endif
228# endif
229#endif
230#ifndef HAVE_U_INT64_T
231# if (SIZEOF_LONG_INT == 8)
232typedef unsigned long int u_int64_t;
233# define HAVE_U_INT64_T 1
234# else
235# if (SIZEOF_LONG_LONG_INT == 8)
236typedef unsigned long long int u_int64_t;
237# define HAVE_U_INT64_T 1
238# endif
239# endif
240#endif
241#if !defined(HAVE_LONG_LONG_INT) && (SIZEOF_LONG_LONG_INT == 8)
242# define HAVE_LONG_LONG_INT 1
243#endif
244
245#ifndef HAVE_U_CHAR
246typedef unsigned char u_char;
247# define HAVE_U_CHAR
248#endif /* HAVE_U_CHAR */
249
250#ifndef HAVE_SIZE_T
251typedef unsigned int size_t;
252# define HAVE_SIZE_T
253#endif /* HAVE_SIZE_T */
254
255#ifndef HAVE_SSIZE_T
256typedef int ssize_t;
257# define HAVE_SSIZE_T
258#endif /* HAVE_SSIZE_T */
259
260#ifndef HAVE_CLOCK_T
261typedef long clock_t;
262# define HAVE_CLOCK_T
263#endif /* HAVE_CLOCK_T */
264
265#ifndef HAVE_SA_FAMILY_T
266typedef int sa_family_t;
267# define HAVE_SA_FAMILY_T
268#endif /* HAVE_SA_FAMILY_T */
269
270#ifndef HAVE_PID_T
271typedef int pid_t;
272# define HAVE_PID_T
273#endif /* HAVE_PID_T */
274
275#ifndef HAVE_MODE_T
276typedef int mode_t;
277# define HAVE_MODE_T
278#endif /* HAVE_MODE_T */
279
280#if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
281# define ss_family __ss_family
282#endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
283
284#ifndef HAVE_SYS_UN_H
285struct sockaddr_un {
286 short sun_family; /* AF_UNIX */
287 char sun_path[108]; /* path name (gag) */
288};
289#endif /* HAVE_SYS_UN_H */
290
291#if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE)
292#define _STRUCT_WINSIZE
293struct winsize {
294 unsigned short ws_row; /* rows, in characters */
295 unsigned short ws_col; /* columns, in character */
296 unsigned short ws_xpixel; /* horizontal size, pixels */
297 unsigned short ws_ypixel; /* vertical size, pixels */
298};
299#endif
300
301/* *-*-nto-qnx does not define this type in the system headers */
302#ifdef MISSING_FD_MASK
303 typedef unsigned long int fd_mask;
304#endif
305
306/* Paths */
307
308#ifndef _PATH_BSHELL
309# define _PATH_BSHELL "/bin/sh"
310#endif
311#ifndef _PATH_CSHELL
312# define _PATH_CSHELL "/bin/csh"
313#endif
314#ifndef _PATH_SHELLS
315# define _PATH_SHELLS "/etc/shells"
316#endif
317
318#ifdef USER_PATH
319# ifdef _PATH_STDPATH
320# undef _PATH_STDPATH
321# endif
322# define _PATH_STDPATH USER_PATH
323#endif
324
325#ifndef _PATH_STDPATH
326# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
327#endif
328
329#ifndef _PATH_DEVNULL
330# define _PATH_DEVNULL "/dev/null"
331#endif
332
333#ifndef MAIL_DIRECTORY
334# define MAIL_DIRECTORY "/var/spool/mail"
335#endif
336
337#ifndef MAILDIR
338# define MAILDIR MAIL_DIRECTORY
339#endif
340
341#if !defined(_PATH_MAILDIR) && defined(MAILDIR)
342# define _PATH_MAILDIR MAILDIR
343#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
344
345#ifndef _PATH_RSH
346# ifdef RSH_PATH
347# define _PATH_RSH RSH_PATH
348# else /* RSH_PATH */
349# define _PATH_RSH "/usr/bin/rsh"
350# endif /* RSH_PATH */
351#endif /* _PATH_RSH */
352
353#ifndef _PATH_NOLOGIN
354# define _PATH_NOLOGIN "/etc/nologin"
355#endif
356
357/* Define this to be the path of the xauth program. */
358#ifdef XAUTH_PATH
359#define _PATH_XAUTH XAUTH_PATH
360#endif /* XAUTH_PATH */
361
362/* derived from XF4/xc/lib/dps/Xlibnet.h */
363#ifndef X_UNIX_PATH
364# ifdef __hpux
365# define X_UNIX_PATH "/var/spool/sockets/X11/%u"
366# else
367# define X_UNIX_PATH "/tmp/.X11-unix/X%u"
368# endif
369#endif /* X_UNIX_PATH */
370#define _PATH_UNIX_X X_UNIX_PATH
371
372#ifndef _PATH_TTY
373# define _PATH_TTY "/dev/tty"
374#endif
375
376/* Macros */
377
378#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
379# define HAVE_LOGIN_CAP
380#endif
381
382#ifndef MAX
383# define MAX(a,b) (((a)>(b))?(a):(b))
384# define MIN(a,b) (((a)<(b))?(a):(b))
385#endif
386
387#ifndef roundup
388# define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
389#endif
390
391#ifndef timersub
392#define timersub(a, b, result) \
393 do { \
394 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
395 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
396 if ((result)->tv_usec < 0) { \
397 --(result)->tv_sec; \
398 (result)->tv_usec += 1000000; \
399 } \
400 } while (0)
401#endif
402
403#ifndef __P
404# define __P(x) x
405#endif
406
407#if !defined(IN6_IS_ADDR_V4MAPPED)
408# define IN6_IS_ADDR_V4MAPPED(a) \
409 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
410 (((u_int32_t *) (a))[2] == htonl (0xffff)))
411#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
412
413#if !defined(__GNUC__) || (__GNUC__ < 2)
414# define __attribute__(x)
415#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
416
417/* *-*-nto-qnx doesn't define this macro in the system headers */
418#ifdef MISSING_HOWMANY
419# define howmany(x,y) (((x)+((y)-1))/(y))
420#endif
421
422/* Function replacement / compatibility hacks */
423
424/* In older versions of libpam, pam_strerror takes a single argument */
425#ifdef HAVE_OLD_PAM
426# define PAM_STRERROR(a,b) pam_strerror((b))
427#else
428# define PAM_STRERROR(a,b) pam_strerror((a),(b))
429#endif
430
431#ifdef PAM_SUN_CODEBASE
432# define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
433#else
434# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
435#endif
436
437#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
438# undef HAVE_GETADDRINFO
439#endif
440#if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
441# undef HAVE_FREEADDRINFO
442#endif
443#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
444# undef HAVE_GAI_STRERROR
445#endif
446
447#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
448# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
449#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
450
451#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
452# define atexit(a) on_exit(a, NULL)
453#else
454# if defined(HAVE_XATEXIT)
455# define atexit(a) xatexit(a)
456# endif /* defined(HAVE_XATEXIT) */
457#endif /* !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) */
458
459#if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX)
460# define USE_VHANGUP
461#endif /* defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) */
462
463#ifndef GETPGRP_VOID
464# define getpgrp() getpgrp(0)
465#endif
466
467/* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */
468#if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f)
469# define OPENSSL_free(x) Free(x)
470#endif
471
472/*
473 * Define this to use pipes instead of socketpairs for communicating with the
474 * client program. Socketpairs do not seem to work on all systems.
475 *
476 * configure.ac sets this for a few OS's which are known to have problems
477 * but you may need to set it yourself
478 */
479/* #define USE_PIPES 1 */
480
481/**
482 ** login recorder definitions
483 **/
484
485/* preprocess */
486
487#ifdef HAVE_UTMP_H
488# ifdef HAVE_TIME_IN_UTMP
489# include <time.h>
490# endif
491# include <utmp.h>
492#endif
493#ifdef HAVE_UTMPX_H
494# ifdef HAVE_TV_IN_UTMPX
495# include <sys/time.h>
496# endif
497# include <utmpx.h>
498#endif
499#ifdef HAVE_LASTLOG_H
500# include <lastlog.h>
501#endif
502#ifdef HAVE_PATHS_H
503# include <paths.h>
504#endif
505
506/* FIXME: put default paths back in */
507#ifndef UTMP_FILE
508# ifdef _PATH_UTMP
509# define UTMP_FILE _PATH_UTMP
510# else
511# ifdef CONF_UTMP_FILE
512# define UTMP_FILE CONF_UTMP_FILE
513# endif
514# endif
515#endif
516#ifndef WTMP_FILE
517# ifdef _PATH_WTMP
518# define WTMP_FILE _PATH_WTMP
519# else
520# ifdef CONF_WTMP_FILE
521# define WTMP_FILE CONF_WTMP_FILE
522# endif
523# endif
524#endif
525/* pick up the user's location for lastlog if given */
526#ifndef LASTLOG_FILE
527# ifdef _PATH_LASTLOG
528# define LASTLOG_FILE _PATH_LASTLOG
529# else
530# ifdef CONF_LASTLOG_FILE
531# define LASTLOG_FILE CONF_LASTLOG_FILE
532# endif
533# endif
534#endif
535
536
537/* The login() library function in libutil is first choice */
538#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
539# define USE_LOGIN
540
541#else
542/* Simply select your favourite login types. */
543/* Can't do if-else because some systems use several... <sigh> */
544# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
545# define USE_UTMPX
546# endif
547# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
548# define USE_UTMP
549# endif
550# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
551# define USE_WTMPX
552# endif
553# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
554# define USE_WTMP
555# endif
556
557#endif
558
559/* I hope that the presence of LASTLOG_FILE is enough to detect this */
560#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
561# define USE_LASTLOG
562#endif
563
564/* which type of time to use? (api.c) */
565#ifdef HAVE_SYS_TIME_H
566# define USE_TIMEVAL
567#endif
568
569/** end of login recorder definitions */
570
571#endif /* _DEFINES_H */
This page took 0.226014 seconds and 5 git commands to generate.