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