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