]> andersk Git - openssh.git/blame - defines.h
- (dtucker) [session.c sshd.c] Bug #445: Propogate KRB5CCNAME if set to child
[openssh.git] / defines.h
CommitLineData
e52ca1e5 1/*
2 * Copyright (c) 1999-2003 Damien Miller. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
76a8e733 25#ifndef _DEFINES_H
26#define _DEFINES_H
27
0b202697 28/* $Id$ */
29
41cb4569 30
ea1970a3 31/* Constants */
32
cb807f40 33#ifndef SHUT_RDWR
34enum
35{
36 SHUT_RD = 0, /* No more receptions. */
37 SHUT_WR, /* No more transmissions. */
38 SHUT_RDWR /* No more receptions or transmissions. */
39};
40# define SHUT_RD SHUT_RD
41# define SHUT_WR SHUT_WR
42# define SHUT_RDWR SHUT_RDWR
43#endif
44
18e92801 45#ifndef IPTOS_LOWDELAY
46# define IPTOS_LOWDELAY 0x10
47# define IPTOS_THROUGHPUT 0x08
48# define IPTOS_RELIABILITY 0x04
49# define IPTOS_LOWCOST 0x02
50# define IPTOS_MINCOST IPTOS_LOWCOST
51#endif /* IPTOS_LOWDELAY */
52
509b1f88 53#ifndef MAXPATHLEN
54# ifdef PATH_MAX
55# define MAXPATHLEN PATH_MAX
56# else /* PATH_MAX */
57# define MAXPATHLEN 64 /* Should be safe */
58# endif /* PATH_MAX */
59#endif /* MAXPATHLEN */
60
2b87da3b 61#ifndef STDIN_FILENO
729bfe59 62# define STDIN_FILENO 0
2b87da3b 63#endif
64#ifndef STDOUT_FILENO
729bfe59 65# define STDOUT_FILENO 1
2b87da3b 66#endif
67#ifndef STDERR_FILENO
729bfe59 68# define STDERR_FILENO 2
2b87da3b 69#endif
729bfe59 70
99286dc8 71#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
b81c369b 72#ifdef NGROUPS
73#define NGROUPS_MAX NGROUPS
74#else
99286dc8 75#define NGROUPS_MAX 0
1fc243d1 76#endif
b81c369b 77#endif
1fc243d1 78
f1c4659d 79#ifndef O_NONBLOCK /* Non Blocking Open */
2b87da3b 80# define O_NONBLOCK 00004
f1c4659d 81#endif
82
610e8ff5 83#ifndef S_ISDIR
729bfe59 84# define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
610e8ff5 85#endif /* S_ISDIR */
86
aff51935 87#ifndef S_ISREG
729bfe59 88# define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
89#endif /* S_ISREG */
90
610e8ff5 91#ifndef S_ISLNK
3743cc2f 92# define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
610e8ff5 93#endif /* S_ISLNK */
94
729bfe59 95#ifndef S_IXUSR
96# define S_IXUSR 0000100 /* execute/search permission, */
97# define S_IXGRP 0000010 /* execute/search permission, */
98# define S_IXOTH 0000001 /* execute/search permission, */
99# define _S_IWUSR 0000200 /* write permission, */
100# define S_IWUSR _S_IWUSR /* write permission, owner */
101# define S_IWGRP 0000020 /* write permission, group */
102# define S_IWOTH 0000002 /* write permission, other */
103# define S_IRUSR 0000400 /* read permission, owner */
104# define S_IRGRP 0000040 /* read permission, group */
105# define S_IROTH 0000004 /* read permission, other */
106# define S_IRWXU 0000700 /* read, write, execute */
107# define S_IRWXG 0000070 /* read, write, execute */
108# define S_IRWXO 0000007 /* read, write, execute */
109#endif /* S_IXUSR */
110
7b0737a4 111#if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)
112#define MAP_ANON MAP_ANONYMOUS
113#endif
114
115#ifndef MAP_FAILED
116# define MAP_FAILED ((void *)-1)
117#endif
118
41cb4569 119/* *-*-nto-qnx doesn't define this constant in the system headers */
120#ifdef MISSING_NFDBITS
121# define NFDBITS (8 * sizeof(unsigned long))
122#endif
123
ddceb1c8 124/*
125SCO Open Server 3 has INADDR_LOOPBACK defined in rpc/rpc.h but
126including rpc/rpc.h breaks Solaris 6
127*/
128#ifndef INADDR_LOOPBACK
7f8e513b 129#define INADDR_LOOPBACK ((u_long)0x7f000001)
ddceb1c8 130#endif
131
b3f87f4f 132#ifndef __unused
133#define __unused
134#endif
135
ea1970a3 136/* Types */
137
cb807f40 138/* If sys/types.h does not supply intXX_t, supply them ourselves */
139/* (or die trying) */
14a9a859 140
30eac028 141
14a9a859 142#ifndef HAVE_U_INT
143typedef unsigned int u_int;
144#endif
145
cb807f40 146#ifndef HAVE_INTXX_T
976f7e19 147# if (SIZEOF_CHAR == 1)
148typedef char int8_t;
149# else
150# error "8 bit int type not found."
151# endif
cb807f40 152# if (SIZEOF_SHORT_INT == 2)
ea1970a3 153typedef short int int16_t;
cb807f40 154# else
ef51930f 155# ifdef _UNICOS
ddceb1c8 156# if (SIZEOF_SHORT_INT == 4)
157typedef short int16_t;
158# else
3d114925 159typedef long int16_t;
ddceb1c8 160# endif
3d114925 161# else
162# error "16 bit int type not found."
ef51930f 163# endif /* _UNICOS */
cb807f40 164# endif
165# if (SIZEOF_INT == 4)
ea1970a3 166typedef int int32_t;
cb807f40 167# else
ef51930f 168# ifdef _UNICOS
3d114925 169typedef long int32_t;
170# else
171# error "32 bit int type not found."
ef51930f 172# endif /* _UNICOS */
cb807f40 173# endif
cb807f40 174#endif
175
176/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
177#ifndef HAVE_U_INTXX_T
178# ifdef HAVE_UINTXX_T
976f7e19 179typedef uint8_t u_int8_t;
ea1970a3 180typedef uint16_t u_int16_t;
181typedef uint32_t u_int32_t;
76a8e733 182# define HAVE_U_INTXX_T 1
cb807f40 183# else
976f7e19 184# if (SIZEOF_CHAR == 1)
185typedef unsigned char u_int8_t;
186# else
187# error "8 bit int type not found."
188# endif
cb807f40 189# if (SIZEOF_SHORT_INT == 2)
ea1970a3 190typedef unsigned short int u_int16_t;
cb807f40 191# else
ef51930f 192# ifdef _UNICOS
ddceb1c8 193# if (SIZEOF_SHORT_INT == 4)
194typedef unsigned short u_int16_t;
195# else
3d114925 196typedef unsigned long u_int16_t;
ddceb1c8 197# endif
3d114925 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
ef51930f 205# ifdef _UNICOS
3d114925 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;
219# else
220# if (SIZEOF_LONG_LONG_INT == 8)
221typedef long long int int64_t;
bd590612 222# endif
223# endif
224#endif
225#ifndef HAVE_U_INT64_T
226# if (SIZEOF_LONG_INT == 8)
227typedef unsigned long int u_int64_t;
228# else
229# if (SIZEOF_LONG_LONG_INT == 8)
ea1970a3 230typedef unsigned long long int u_int64_t;
cb807f40 231# endif
232# endif
233#endif
234
0362750e 235#ifndef HAVE_U_CHAR
236typedef unsigned char u_char;
237# define HAVE_U_CHAR
238#endif /* HAVE_U_CHAR */
239
7d3b91a6 240#ifndef SIZE_T_MAX
241#define SIZE_T_MAX ULONG_MAX
242#endif /* SIZE_T_MAX */
243
e3a93db0 244#ifndef HAVE_SIZE_T
245typedef unsigned int size_t;
a6ddc88b 246# define HAVE_SIZE_T
56b13279 247# define SIZE_T_MAX UINT_MAX
e3a93db0 248#endif /* HAVE_SIZE_T */
249
c04f75f1 250#ifndef HAVE_SSIZE_T
251typedef int ssize_t;
252# define HAVE_SSIZE_T
253#endif /* HAVE_SSIZE_T */
254
f1c4659d 255#ifndef HAVE_CLOCK_T
256typedef long clock_t;
257# define HAVE_CLOCK_T
4f771a33 258#endif /* HAVE_CLOCK_T */
f1c4659d 259
1c04b088 260#ifndef HAVE_SA_FAMILY_T
261typedef int sa_family_t;
262# define HAVE_SA_FAMILY_T
263#endif /* HAVE_SA_FAMILY_T */
264
729bfe59 265#ifndef HAVE_PID_T
266typedef int pid_t;
267# define HAVE_PID_T
268#endif /* HAVE_PID_T */
269
ddceb1c8 270#ifndef HAVE_SIG_ATOMIC_T
271typedef int sig_atomic_t;
272# define HAVE_SIG_ATOMIC_T
273#endif /* HAVE_SIG_ATOMIC_T */
274
729bfe59 275#ifndef HAVE_MODE_T
276typedef int mode_t;
277# define HAVE_MODE_T
278#endif /* HAVE_MODE_T */
279
48e671d5 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
77bb0bca 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
41cb4569 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
ea1970a3 306/* Paths */
307
cb807f40 308#ifndef _PATH_BSHELL
309# define _PATH_BSHELL "/bin/sh"
310#endif
7cdb79d4 311#ifndef _PATH_CSHELL
312# define _PATH_CSHELL "/bin/csh"
313#endif
314#ifndef _PATH_SHELLS
315# define _PATH_SHELLS "/etc/shells"
316#endif
cb807f40 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
95b99395 329#ifndef SUPERUSER_PATH
330# define SUPERUSER_PATH _PATH_STDPATH
331#endif
332
cb807f40 333#ifndef _PATH_DEVNULL
334# define _PATH_DEVNULL "/dev/null"
335#endif
336
c04f75f1 337#ifndef MAIL_DIRECTORY
338# define MAIL_DIRECTORY "/var/spool/mail"
339#endif
340
cb807f40 341#ifndef MAILDIR
342# define MAILDIR MAIL_DIRECTORY
343#endif
344
345#if !defined(_PATH_MAILDIR) && defined(MAILDIR)
346# define _PATH_MAILDIR MAILDIR
347#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
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
1d2a4613 358/* derived from XF4/xc/lib/dps/Xlibnet.h */
359#ifndef X_UNIX_PATH
5cbceb3f 360# ifdef __hpux
361# define X_UNIX_PATH "/var/spool/sockets/X11/%u"
362# else
363# define X_UNIX_PATH "/tmp/.X11-unix/X%u"
364# endif
1d2a4613 365#endif /* X_UNIX_PATH */
366#define _PATH_UNIX_X X_UNIX_PATH
367
bc79ed5c 368#ifndef _PATH_TTY
369# define _PATH_TTY "/dev/tty"
370#endif
371
ea1970a3 372/* Macros */
373
2e73a022 374#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
375# define HAVE_LOGIN_CAP
376#endif
377
cb807f40 378#ifndef MAX
379# define MAX(a,b) (((a)>(b))?(a):(b))
380# define MIN(a,b) (((a)<(b))?(a):(b))
381#endif
382
0ae4fe1d 383#ifndef roundup
384# define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
385#endif
386
cb807f40 387#ifndef timersub
0ae4fe1d 388#define timersub(a, b, result) \
389 do { \
390 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
391 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
392 if ((result)->tv_usec < 0) { \
393 --(result)->tv_sec; \
394 (result)->tv_usec += 1000000; \
395 } \
cb807f40 396 } while (0)
397#endif
398
c7578bb6 399#ifndef TIMEVAL_TO_TIMESPEC
400#define TIMEVAL_TO_TIMESPEC(tv, ts) { \
401 (ts)->tv_sec = (tv)->tv_sec; \
402 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
403}
404#endif
405
406#ifndef TIMESPEC_TO_TIMEVAL
407#define TIMESPEC_TO_TIMEVAL(tv, ts) { \
408 (tv)->tv_sec = (ts)->tv_sec; \
409 (tv)->tv_usec = (ts)->tv_nsec / 1000; \
410}
411#endif
412
cb807f40 413#ifndef __P
414# define __P(x) x
415#endif
416
a8ed9fd9 417#if !defined(IN6_IS_ADDR_V4MAPPED)
418# define IN6_IS_ADDR_V4MAPPED(a) \
84afc958 419 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
420 (((u_int32_t *) (a))[2] == htonl (0xffff)))
a8ed9fd9 421#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
422
cb807f40 423#if !defined(__GNUC__) || (__GNUC__ < 2)
976f7e19 424# define __attribute__(x)
cb807f40 425#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
426
8a946417 427#ifndef __dead
428# define __dead __attribute__((noreturn))
429#endif
430
41cb4569 431/* *-*-nto-qnx doesn't define this macro in the system headers */
432#ifdef MISSING_HOWMANY
433# define howmany(x,y) (((x)+((y)-1))/(y))
434#endif
435
2805b943 436#ifndef OSSH_ALIGNBYTES
437#define OSSH_ALIGNBYTES (sizeof(int) - 1)
cfadc43b 438#endif
439#ifndef __CMSG_ALIGN
2805b943 440#define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES)
cfadc43b 441#endif
442
443/* Length of the contents of a control message of length len */
444#ifndef CMSG_LEN
445#define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
446#endif
447
448/* Length of the space taken up by a padded control message of length len */
449#ifndef CMSG_SPACE
450#define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
451#endif
452
a814ba4d 453/* given pointer to struct cmsghdr, return pointer to data */
454#ifndef CMSG_DATA
455#define CMSG_DATA(cmsg) ((u_char *)(cmsg) + __CMSG_ALIGN(sizeof(struct cmsghdr)))
456#endif /* CMSG_DATA */
457
458/*
459 * RFC 2292 requires to check msg_controllen, in case that the kernel returns
460 * an empty list for some reasons.
461 */
462#ifndef CMSG_FIRSTHDR
463#define CMSG_FIRSTHDR(mhdr) \
464 ((mhdr)->msg_controllen >= sizeof(struct cmsghdr) ? \
465 (struct cmsghdr *)(mhdr)->msg_control : \
466 (struct cmsghdr *)NULL)
467#endif /* CMSG_FIRSTHDR */
468
5e96b616 469#ifndef offsetof
470# define offsetof(type, member) ((size_t) &((type *)0)->member)
471#endif
a814ba4d 472
ea1970a3 473/* Function replacement / compatibility hacks */
474
520b41b2 475#if !defined(HAVE_GETADDRINFO) && (defined(HAVE_OGETADDRINFO) || defined(HAVE_NGETADDRINFO))
476# define HAVE_GETADDRINFO
477#endif
478
7b0737a4 479#ifndef HAVE_GETOPT_OPTRESET
d76aa6fb 480# undef getopt
481# undef opterr
482# undef optind
483# undef optopt
484# undef optreset
485# undef optarg
486# define getopt(ac, av, o) BSDgetopt(ac, av, o)
487# define opterr BSDopterr
488# define optind BSDoptind
489# define optopt BSDoptopt
490# define optreset BSDoptreset
491# define optarg BSDoptarg
7b0737a4 492#endif
493
ea1970a3 494/* In older versions of libpam, pam_strerror takes a single argument */
495#ifdef HAVE_OLD_PAM
496# define PAM_STRERROR(a,b) pam_strerror((b))
497#else
498# define PAM_STRERROR(a,b) pam_strerror((a),(b))
499#endif
500
adeebd37 501#ifdef PAM_SUN_CODEBASE
502# define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
503#else
504# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
505#endif
506
4c8ef3fb 507#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
508# undef HAVE_GETADDRINFO
488c06c8 509#endif
510#if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
511# undef HAVE_FREEADDRINFO
512#endif
513#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
514# undef HAVE_GAI_STRERROR
515#endif
4c8ef3fb 516
3d59832f 517#if defined(BROKEN_UPDWTMPX) && defined(HAVE_UPDWTMPX)
518# undef HAVE_UPDWTMPX
519#endif
520
c04f75f1 521#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
522# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
523#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
524
86c9e193 525#if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX)
3c62e7eb 526# define USE_VHANGUP
86c9e193 527#endif /* defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) */
3c62e7eb 528
7f8f5e00 529#ifndef GETPGRP_VOID
530# define getpgrp() getpgrp(0)
531#endif
532
58389b85 533/* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */
534#if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f)
535# define OPENSSL_free(x) Free(x)
536#endif
537
d4d77d64 538#if !defined(HAVE___func__) && defined(HAVE___FUNCTION__)
539# define __func__ __FUNCTION__
540#elif !defined(HAVE___func__)
541# define __func__ ""
c921ee00 542#endif
543
749560dd 544#if defined(KRB5) && !defined(HEIMDAL)
545# define krb5_get_err_text(context,code) error_message(code)
546#endif
547
f2b7b5c8 548#if defined(SKEYCHALLENGE_4ARG)
549# define _compat_skeychallenge(a,b,c,d) skeychallenge(a,b,c,d)
550#else
551# define _compat_skeychallenge(a,b,c,d) skeychallenge(a,b,c)
552#endif
553
341c3efe 554/* Maximum number of file descriptors available */
555#ifdef HAVE_SYSCONF
556# define SSH_SYSFDMAX sysconf(_SC_OPEN_MAX)
557#else
558# define SSH_SYSFDMAX 10000
559#endif
560
561
2f125ca1 562/*
563 * Define this to use pipes instead of socketpairs for communicating with the
564 * client program. Socketpairs do not seem to work on all systems.
565 *
40d0f6b9 566 * configure.ac sets this for a few OS's which are known to have problems
2f125ca1 567 * but you may need to set it yourself
568 */
569/* #define USE_PIPES 1 */
570
1d7b9b20 571/**
572 ** login recorder definitions
573 **/
574
1d7b9b20 575/* FIXME: put default paths back in */
32eec038 576#ifndef UTMP_FILE
577# ifdef _PATH_UTMP
578# define UTMP_FILE _PATH_UTMP
579# else
580# ifdef CONF_UTMP_FILE
581# define UTMP_FILE CONF_UTMP_FILE
582# endif
583# endif
1d7b9b20 584#endif
32eec038 585#ifndef WTMP_FILE
586# ifdef _PATH_WTMP
587# define WTMP_FILE _PATH_WTMP
588# else
589# ifdef CONF_WTMP_FILE
590# define WTMP_FILE CONF_WTMP_FILE
591# endif
592# endif
1d7b9b20 593#endif
594/* pick up the user's location for lastlog if given */
32eec038 595#ifndef LASTLOG_FILE
596# ifdef _PATH_LASTLOG
597# define LASTLOG_FILE _PATH_LASTLOG
598# else
599# ifdef CONF_LASTLOG_FILE
600# define LASTLOG_FILE CONF_LASTLOG_FILE
601# endif
602# endif
d7c0f3d5 603#endif
1d7b9b20 604
5a8bd0c3 605#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
606# define USE_SHADOW
607#endif
1d7b9b20 608
609/* The login() library function in libutil is first choice */
610#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
611# define USE_LOGIN
612
613#else
614/* Simply select your favourite login types. */
615/* Can't do if-else because some systems use several... <sigh> */
616# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
617# define USE_UTMPX
618# endif
619# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
620# define USE_UTMP
621# endif
622# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
623# define USE_WTMPX
624# endif
625# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
626# define USE_WTMP
627# endif
628
629#endif
630
074c4cbc 631#ifndef UT_LINESIZE
632# define UT_LINESIZE 8
633#endif
634
1d7b9b20 635/* I hope that the presence of LASTLOG_FILE is enough to detect this */
636#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
637# define USE_LASTLOG
638#endif
639
69a20cff 640#ifdef HAVE_OSF_SIA
641# ifdef USE_SHADOW
642# undef USE_SHADOW
643# endif
644# define CUSTOM_SYS_AUTH_PASSWD 1
645#endif
646
1d7b9b20 647/** end of login recorder definitions */
648
76a8e733 649#endif /* _DEFINES_H */
This page took 0.472928 seconds and 5 git commands to generate.