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