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