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