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