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