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