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