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