Damien Miller | 6b85a7f | 2000-01-02 11:45:33 +1100 | [diff] [blame] | 1 | #ifndef _DEFINES_H |
| 2 | #define _DEFINES_H |
| 3 | |
Damien Miller | b2033a4 | 2000-09-26 12:18:31 +1100 | [diff] [blame] | 4 | /* Some platforms need this for the _r() functions */ |
Damien Miller | 81fa28a | 2000-10-20 09:14:04 +1100 | [diff] [blame] | 5 | #if !defined(_REENTRANT) && !defined(SNI) |
Damien Miller | b2033a4 | 2000-09-26 12:18:31 +1100 | [diff] [blame] | 6 | # define _REENTRANT 1 |
| 7 | #endif |
| 8 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 9 | /* Necessary headers */ |
| 10 | |
Damien Miller | 1c67c99 | 2000-03-14 10:16:34 +1100 | [diff] [blame] | 11 | #include <sys/types.h> /* For [u]intxx_t */ |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 12 | #include <sys/socket.h> /* For SHUT_XXXX */ |
Damien Miller | a66626b | 2000-06-13 18:57:53 +1000 | [diff] [blame] | 13 | #include <sys/param.h> /* For MAXPATHLEN */ |
| 14 | #include <netinet/in_systm.h> /* For typedefs */ |
Damien Miller | 1c67c99 | 2000-03-14 10:16:34 +1100 | [diff] [blame] | 15 | #include <netinet/in.h> /* For IPv6 macros */ |
Damien Miller | bc7c7cc | 2000-04-08 17:48:56 +1000 | [diff] [blame] | 16 | #include <netinet/ip.h> /* For IPTOS macros */ |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 17 | #ifdef HAVE_SYS_UN_H |
| 18 | # include <sys/un.h> /* For SUN_LEN */ |
| 19 | #endif |
Damien Miller | b29ea91 | 2000-01-15 14:12:03 +1100 | [diff] [blame] | 20 | #ifdef HAVE_SYS_BITYPES_H |
| 21 | # include <sys/bitypes.h> /* For u_intXX_t */ |
| 22 | #endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 23 | #ifdef HAVE_PATHS_H |
| 24 | # include <paths.h> /* For _PATH_XXX */ |
| 25 | #endif |
Damien Miller | a66626b | 2000-06-13 18:57:53 +1000 | [diff] [blame] | 26 | #ifdef HAVE_LIMITS_H |
| 27 | # include <limits.h> /* For PATH_MAX */ |
| 28 | #endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 29 | #ifdef HAVE_SYS_TIME_H |
| 30 | # include <sys/time.h> /* For timersub */ |
| 31 | #endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 32 | #ifdef HAVE_MAILLOCK_H |
Damien Miller | beb4ba5 | 1999-12-28 15:09:35 +1100 | [diff] [blame] | 33 | # include <maillock.h> /* For _PATH_MAILDIR */ |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 34 | #endif |
Damien Miller | beb4ba5 | 1999-12-28 15:09:35 +1100 | [diff] [blame] | 35 | #ifdef HAVE_SYS_CDEFS_H |
| 36 | # include <sys/cdefs.h> /* For __P() */ |
| 37 | #endif |
Damien Miller | ee1c0b3 | 2000-01-21 00:18:15 +1100 | [diff] [blame] | 38 | #ifdef HAVE_SYS_SYSMACROS_H |
| 39 | # include <sys/sysmacros.h> /* For MIN, MAX, etc */ |
| 40 | #endif |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 41 | #ifdef HAVE_SYS_STAT_H |
| 42 | # include <sys/stat.h> /* For S_* constants and macros */ |
| 43 | #endif |
Damien Miller | b9c2ce8 | 2000-09-23 14:52:50 +1100 | [diff] [blame] | 44 | #ifdef HAVE_NEXT |
| 45 | # include <libc.h> |
| 46 | #endif |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 47 | |
| 48 | #include <unistd.h> /* For STDIN_FILENO, etc */ |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 49 | #include <termios.h> /* Struct winsize */ |
Damien Miller | ee1c0b3 | 2000-01-21 00:18:15 +1100 | [diff] [blame] | 50 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 51 | /* Constants */ |
| 52 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 53 | #ifndef SHUT_RDWR |
| 54 | enum |
| 55 | { |
| 56 | SHUT_RD = 0, /* No more receptions. */ |
| 57 | SHUT_WR, /* No more transmissions. */ |
| 58 | SHUT_RDWR /* No more receptions or transmissions. */ |
| 59 | }; |
| 60 | # define SHUT_RD SHUT_RD |
| 61 | # define SHUT_WR SHUT_WR |
| 62 | # define SHUT_RDWR SHUT_RDWR |
| 63 | #endif |
| 64 | |
Damien Miller | bc7c7cc | 2000-04-08 17:48:56 +1000 | [diff] [blame] | 65 | #ifndef IPTOS_LOWDELAY |
| 66 | # define IPTOS_LOWDELAY 0x10 |
| 67 | # define IPTOS_THROUGHPUT 0x08 |
| 68 | # define IPTOS_RELIABILITY 0x04 |
| 69 | # define IPTOS_LOWCOST 0x02 |
| 70 | # define IPTOS_MINCOST IPTOS_LOWCOST |
| 71 | #endif /* IPTOS_LOWDELAY */ |
| 72 | |
Damien Miller | a66626b | 2000-06-13 18:57:53 +1000 | [diff] [blame] | 73 | #ifndef MAXPATHLEN |
| 74 | # ifdef PATH_MAX |
| 75 | # define MAXPATHLEN PATH_MAX |
| 76 | # else /* PATH_MAX */ |
| 77 | # define MAXPATHLEN 64 /* Should be safe */ |
| 78 | # endif /* PATH_MAX */ |
| 79 | #endif /* MAXPATHLEN */ |
| 80 | |
Ben Lindstrom | beac3b4 | 2000-12-29 21:21:26 +0000 | [diff] [blame] | 81 | #ifndef MAXHOSTNAMELEN |
| 82 | # define MAXHOSTNAMELEN 64 |
| 83 | #endif /* MAXHOSTNAMELEN */ |
| 84 | |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 85 | #ifndef STDIN_FILENO |
| 86 | # define STDIN_FILENO 0 |
| 87 | #endif |
| 88 | #ifndef STDOUT_FILENO |
| 89 | # define STDOUT_FILENO 1 |
| 90 | #endif |
| 91 | #ifndef STDERR_FILENO |
| 92 | # define STDERR_FILENO 2 |
| 93 | #endif |
| 94 | |
| 95 | #ifndef S_ISREG |
| 96 | # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR)) |
| 97 | # define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG)) |
| 98 | #endif /* S_ISREG */ |
| 99 | |
| 100 | #ifndef S_IXUSR |
| 101 | # define S_IXUSR 0000100 /* execute/search permission, */ |
| 102 | # define S_IXGRP 0000010 /* execute/search permission, */ |
| 103 | # define S_IXOTH 0000001 /* execute/search permission, */ |
| 104 | # define _S_IWUSR 0000200 /* write permission, */ |
| 105 | # define S_IWUSR _S_IWUSR /* write permission, owner */ |
| 106 | # define S_IWGRP 0000020 /* write permission, group */ |
| 107 | # define S_IWOTH 0000002 /* write permission, other */ |
| 108 | # define S_IRUSR 0000400 /* read permission, owner */ |
| 109 | # define S_IRGRP 0000040 /* read permission, group */ |
| 110 | # define S_IROTH 0000004 /* read permission, other */ |
| 111 | # define S_IRWXU 0000700 /* read, write, execute */ |
| 112 | # define S_IRWXG 0000070 /* read, write, execute */ |
| 113 | # define S_IRWXO 0000007 /* read, write, execute */ |
| 114 | #endif /* S_IXUSR */ |
| 115 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 116 | /* Types */ |
| 117 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 118 | /* If sys/types.h does not supply intXX_t, supply them ourselves */ |
| 119 | /* (or die trying) */ |
Damien Miller | caf6dd6 | 2000-08-29 11:33:50 +1100 | [diff] [blame] | 120 | |
| 121 | #ifndef HAVE_U_INT |
| 122 | typedef unsigned int u_int; |
| 123 | #endif |
| 124 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 125 | #ifndef HAVE_INTXX_T |
Damien Miller | e0f4574 | 2000-01-18 09:12:06 +1100 | [diff] [blame] | 126 | # if (SIZEOF_CHAR == 1) |
| 127 | typedef char int8_t; |
| 128 | # else |
| 129 | # error "8 bit int type not found." |
| 130 | # endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 131 | # if (SIZEOF_SHORT_INT == 2) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 132 | typedef short int int16_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 133 | # else |
| 134 | # error "16 bit int type not found." |
| 135 | # endif |
| 136 | # if (SIZEOF_INT == 4) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 137 | typedef int int32_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 138 | # else |
| 139 | # error "32 bit int type not found." |
| 140 | # endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 141 | #endif |
| 142 | |
| 143 | /* If sys/types.h does not supply u_intXX_t, supply them ourselves */ |
| 144 | #ifndef HAVE_U_INTXX_T |
| 145 | # ifdef HAVE_UINTXX_T |
Damien Miller | e0f4574 | 2000-01-18 09:12:06 +1100 | [diff] [blame] | 146 | typedef uint8_t u_int8_t; |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 147 | typedef uint16_t u_int16_t; |
| 148 | typedef uint32_t u_int32_t; |
Damien Miller | 6b85a7f | 2000-01-02 11:45:33 +1100 | [diff] [blame] | 149 | # define HAVE_U_INTXX_T 1 |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 150 | # else |
Damien Miller | e0f4574 | 2000-01-18 09:12:06 +1100 | [diff] [blame] | 151 | # if (SIZEOF_CHAR == 1) |
| 152 | typedef unsigned char u_int8_t; |
| 153 | # else |
| 154 | # error "8 bit int type not found." |
| 155 | # endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 156 | # if (SIZEOF_SHORT_INT == 2) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 157 | typedef unsigned short int u_int16_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 158 | # else |
| 159 | # error "16 bit int type not found." |
| 160 | # endif |
| 161 | # if (SIZEOF_INT == 4) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 162 | typedef unsigned int u_int32_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 163 | # else |
| 164 | # error "32 bit int type not found." |
| 165 | # endif |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 166 | # endif |
| 167 | #endif |
| 168 | |
| 169 | /* 64-bit types */ |
| 170 | #ifndef HAVE_INT64_T |
| 171 | # if (SIZEOF_LONG_INT == 8) |
| 172 | typedef long int int64_t; |
| 173 | # else |
| 174 | # if (SIZEOF_LONG_LONG_INT == 8) |
| 175 | typedef long long int int64_t; |
| 176 | # define HAVE_INTXX_T 1 |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 177 | # endif |
| 178 | # endif |
| 179 | #endif |
| 180 | #ifndef HAVE_U_INT64_T |
| 181 | # if (SIZEOF_LONG_INT == 8) |
| 182 | typedef unsigned long int u_int64_t; |
| 183 | # else |
| 184 | # if (SIZEOF_LONG_LONG_INT == 8) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 185 | typedef unsigned long long int u_int64_t; |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 186 | # define HAVE_U_INTXX_T 1 |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 187 | # endif |
| 188 | # endif |
| 189 | #endif |
| 190 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 191 | #ifndef HAVE_SOCKLEN_T |
| 192 | typedef unsigned int socklen_t; |
Damien Miller | b2532b3 | 1999-12-31 09:18:12 +1100 | [diff] [blame] | 193 | # define HAVE_SOCKLEN_T |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 194 | #endif /* HAVE_SOCKLEN_T */ |
| 195 | |
Damien Miller | 9505851 | 1999-12-29 10:36:45 +1100 | [diff] [blame] | 196 | #ifndef HAVE_SIZE_T |
| 197 | typedef unsigned int size_t; |
Damien Miller | b2532b3 | 1999-12-31 09:18:12 +1100 | [diff] [blame] | 198 | # define HAVE_SIZE_T |
Damien Miller | 9505851 | 1999-12-29 10:36:45 +1100 | [diff] [blame] | 199 | #endif /* HAVE_SIZE_T */ |
| 200 | |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 201 | #ifndef HAVE_SSIZE_T |
| 202 | typedef int ssize_t; |
| 203 | # define HAVE_SSIZE_T |
| 204 | #endif /* HAVE_SSIZE_T */ |
| 205 | |
Damien Miller | b54b40e | 2000-06-23 08:23:34 +1000 | [diff] [blame] | 206 | #ifndef HAVE_SA_FAMILY_T |
| 207 | typedef int sa_family_t; |
| 208 | # define HAVE_SA_FAMILY_T |
| 209 | #endif /* HAVE_SA_FAMILY_T */ |
| 210 | |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 211 | #ifndef HAVE_PID_T |
| 212 | typedef int pid_t; |
| 213 | # define HAVE_PID_T |
| 214 | #endif /* HAVE_PID_T */ |
| 215 | |
| 216 | #ifndef HAVE_MODE_T |
| 217 | typedef int mode_t; |
| 218 | # define HAVE_MODE_T |
| 219 | #endif /* HAVE_MODE_T */ |
| 220 | |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 221 | #if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS) |
| 222 | # define ss_family __ss_family |
| 223 | #endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */ |
| 224 | |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 225 | #ifndef HAVE_SYS_UN_H |
| 226 | struct sockaddr_un { |
| 227 | short sun_family; /* AF_UNIX */ |
| 228 | char sun_path[108]; /* path name (gag) */ |
| 229 | }; |
| 230 | #endif /* HAVE_SYS_UN_H */ |
| 231 | |
| 232 | #if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE) |
| 233 | #define _STRUCT_WINSIZE |
| 234 | struct winsize { |
| 235 | unsigned short ws_row; /* rows, in characters */ |
| 236 | unsigned short ws_col; /* columns, in character */ |
| 237 | unsigned short ws_xpixel; /* horizontal size, pixels */ |
| 238 | unsigned short ws_ypixel; /* vertical size, pixels */ |
| 239 | }; |
| 240 | #endif |
| 241 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 242 | /* Paths */ |
| 243 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 244 | #ifndef _PATH_BSHELL |
| 245 | # define _PATH_BSHELL "/bin/sh" |
| 246 | #endif |
| 247 | |
| 248 | #ifdef USER_PATH |
| 249 | # ifdef _PATH_STDPATH |
| 250 | # undef _PATH_STDPATH |
| 251 | # endif |
| 252 | # define _PATH_STDPATH USER_PATH |
| 253 | #endif |
| 254 | |
| 255 | #ifndef _PATH_STDPATH |
| 256 | # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin" |
| 257 | #endif |
| 258 | |
| 259 | #ifndef _PATH_DEVNULL |
| 260 | # define _PATH_DEVNULL "/dev/null" |
| 261 | #endif |
| 262 | |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 263 | #ifndef MAIL_DIRECTORY |
| 264 | # define MAIL_DIRECTORY "/var/spool/mail" |
| 265 | #endif |
| 266 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 267 | #ifndef MAILDIR |
| 268 | # define MAILDIR MAIL_DIRECTORY |
| 269 | #endif |
| 270 | |
| 271 | #if !defined(_PATH_MAILDIR) && defined(MAILDIR) |
| 272 | # define _PATH_MAILDIR MAILDIR |
| 273 | #endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */ |
| 274 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 275 | #ifndef _PATH_RSH |
| 276 | # ifdef RSH_PATH |
| 277 | # define _PATH_RSH RSH_PATH |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 278 | # else /* RSH_PATH */ |
| 279 | # define _PATH_RSH "/usr/bin/rsh" |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 280 | # endif /* RSH_PATH */ |
| 281 | #endif /* _PATH_RSH */ |
| 282 | |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 283 | #ifndef _PATH_NOLOGIN |
| 284 | # define _PATH_NOLOGIN "/etc/nologin" |
| 285 | #endif |
| 286 | |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 287 | /* Define this to be the path of the xauth program. */ |
| 288 | #ifndef XAUTH_PATH |
| 289 | #define XAUTH_PATH "/usr/X11R6/bin/xauth" |
| 290 | #endif /* XAUTH_PATH */ |
| 291 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 292 | /* Macros */ |
| 293 | |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 294 | #if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H) |
| 295 | # define HAVE_LOGIN_CAP |
| 296 | #endif |
| 297 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 298 | #ifndef MAX |
| 299 | # define MAX(a,b) (((a)>(b))?(a):(b)) |
| 300 | # define MIN(a,b) (((a)<(b))?(a):(b)) |
| 301 | #endif |
| 302 | |
| 303 | #ifndef timersub |
| 304 | #define timersub(a, b, result) \ |
| 305 | do { \ |
| 306 | (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ |
| 307 | (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ |
| 308 | if ((result)->tv_usec < 0) { \ |
| 309 | --(result)->tv_sec; \ |
| 310 | (result)->tv_usec += 1000000; \ |
| 311 | } \ |
| 312 | } while (0) |
| 313 | #endif |
| 314 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 315 | #ifndef __P |
| 316 | # define __P(x) x |
| 317 | #endif |
| 318 | |
Damien Miller | 1c67c99 | 2000-03-14 10:16:34 +1100 | [diff] [blame] | 319 | #if !defined(IN6_IS_ADDR_V4MAPPED) |
| 320 | # define IN6_IS_ADDR_V4MAPPED(a) \ |
Damien Miller | db81959 | 2000-03-14 13:44:01 +1100 | [diff] [blame] | 321 | ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \ |
| 322 | (((u_int32_t *) (a))[2] == htonl (0xffff))) |
Damien Miller | 1c67c99 | 2000-03-14 10:16:34 +1100 | [diff] [blame] | 323 | #endif /* !defined(IN6_IS_ADDR_V4MAPPED) */ |
| 324 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 325 | #if !defined(__GNUC__) || (__GNUC__ < 2) |
Damien Miller | e0f4574 | 2000-01-18 09:12:06 +1100 | [diff] [blame] | 326 | # define __attribute__(x) |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 327 | #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */ |
| 328 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 329 | #if defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) |
| 330 | # define USE_PAM |
| 331 | #endif /* defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) */ |
| 332 | |
Damien Miller | 3241fa1 | 2000-08-18 14:59:59 +1000 | [diff] [blame] | 333 | #ifndef SUN_LEN |
| 334 | #define SUN_LEN(su) \ |
| 335 | (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path)) |
| 336 | #endif /* SUN_LEN */ |
| 337 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 338 | /* Function replacement / compatibility hacks */ |
| 339 | |
| 340 | /* In older versions of libpam, pam_strerror takes a single argument */ |
| 341 | #ifdef HAVE_OLD_PAM |
| 342 | # define PAM_STRERROR(a,b) pam_strerror((b)) |
| 343 | #else |
| 344 | # define PAM_STRERROR(a,b) pam_strerror((a),(b)) |
| 345 | #endif |
| 346 | |
Damien Miller | 82cf0ce | 2000-12-20 13:34:48 +1100 | [diff] [blame] | 347 | #ifdef PAM_SUN_CODEBASE |
| 348 | # define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member) |
| 349 | #else |
| 350 | # define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member) |
| 351 | #endif |
| 352 | |
Damien Miller | eca71f8 | 2000-01-20 22:38:27 +1100 | [diff] [blame] | 353 | #if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO) |
| 354 | # undef HAVE_GETADDRINFO |
| 355 | #endif /* defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO) */ |
| 356 | |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 357 | #if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) |
| 358 | # define memmove(s1, s2, n) bcopy((s2), (s1), (n)) |
| 359 | #endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */ |
| 360 | |
Damien Miller | be260a0 | 2000-05-30 12:57:46 +1000 | [diff] [blame] | 361 | #if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) |
| 362 | # define atexit(a) on_exit(a) |
Ben Lindstrom | b562864 | 2000-10-18 00:02:25 +0000 | [diff] [blame] | 363 | #else |
| 364 | # if defined(HAVE_XATEXIT) |
| 365 | # define atexit(a) xatexit(a) |
| 366 | # endif /* defined(HAVE_XATEXIT) */ |
Damien Miller | be260a0 | 2000-05-30 12:57:46 +1000 | [diff] [blame] | 367 | #endif /* !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) */ |
| 368 | |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 369 | #if defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) |
| 370 | # define USE_VHANGUP |
| 371 | #endif /* defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) */ |
| 372 | |
Damien Miller | 606f880 | 2000-09-16 15:39:56 +1100 | [diff] [blame] | 373 | #ifndef GETPGRP_VOID |
| 374 | # define getpgrp() getpgrp(0) |
| 375 | #endif |
| 376 | |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 377 | /* |
| 378 | * Define this to use pipes instead of socketpairs for communicating with the |
| 379 | * client program. Socketpairs do not seem to work on all systems. |
| 380 | * |
| 381 | * configure.in sets this for a few OS's which are known to have problems |
| 382 | * but you may need to set it yourself |
| 383 | */ |
| 384 | /* #define USE_PIPES 1 */ |
| 385 | |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 386 | /** |
| 387 | ** login recorder definitions |
| 388 | **/ |
| 389 | |
| 390 | /* preprocess */ |
| 391 | |
| 392 | #ifdef HAVE_UTMP_H |
| 393 | # ifdef HAVE_TIME_IN_UTMP |
| 394 | # include <time.h> |
| 395 | # endif |
| 396 | # include <utmp.h> |
| 397 | #endif |
| 398 | #ifdef HAVE_UTMPX_H |
| 399 | # ifdef HAVE_TV_IN_UTMPX |
| 400 | # include <sys/time.h> |
| 401 | # endif |
| 402 | # include <utmpx.h> |
| 403 | #endif |
| 404 | #ifdef HAVE_LASTLOG_H |
| 405 | # include <lastlog.h> |
| 406 | #endif |
| 407 | #ifdef HAVE_PATHS_H |
| 408 | # include <paths.h> |
| 409 | #endif |
| 410 | |
| 411 | /* FIXME: put default paths back in */ |
Damien Miller | 36ccb5c | 2000-08-09 16:34:27 +1000 | [diff] [blame] | 412 | #ifndef UTMP_FILE |
| 413 | # ifdef _PATH_UTMP |
| 414 | # define UTMP_FILE _PATH_UTMP |
| 415 | # else |
| 416 | # ifdef CONF_UTMP_FILE |
| 417 | # define UTMP_FILE CONF_UTMP_FILE |
| 418 | # endif |
| 419 | # endif |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 420 | #endif |
Damien Miller | 36ccb5c | 2000-08-09 16:34:27 +1000 | [diff] [blame] | 421 | #ifndef WTMP_FILE |
| 422 | # ifdef _PATH_WTMP |
| 423 | # define WTMP_FILE _PATH_WTMP |
| 424 | # else |
| 425 | # ifdef CONF_WTMP_FILE |
| 426 | # define WTMP_FILE CONF_WTMP_FILE |
| 427 | # endif |
| 428 | # endif |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 429 | #endif |
| 430 | /* pick up the user's location for lastlog if given */ |
Damien Miller | 36ccb5c | 2000-08-09 16:34:27 +1000 | [diff] [blame] | 431 | #ifndef LASTLOG_FILE |
| 432 | # ifdef _PATH_LASTLOG |
| 433 | # define LASTLOG_FILE _PATH_LASTLOG |
| 434 | # else |
| 435 | # ifdef CONF_LASTLOG_FILE |
| 436 | # define LASTLOG_FILE CONF_LASTLOG_FILE |
| 437 | # endif |
| 438 | # endif |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 439 | #endif |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 440 | |
| 441 | |
| 442 | /* The login() library function in libutil is first choice */ |
| 443 | #if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN) |
| 444 | # define USE_LOGIN |
| 445 | |
| 446 | #else |
| 447 | /* Simply select your favourite login types. */ |
| 448 | /* Can't do if-else because some systems use several... <sigh> */ |
| 449 | # if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX) |
| 450 | # define USE_UTMPX |
| 451 | # endif |
| 452 | # if defined(UTMP_FILE) && !defined(DISABLE_UTMP) |
| 453 | # define USE_UTMP |
| 454 | # endif |
| 455 | # if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX) |
| 456 | # define USE_WTMPX |
| 457 | # endif |
| 458 | # if defined(WTMP_FILE) && !defined(DISABLE_WTMP) |
| 459 | # define USE_WTMP |
| 460 | # endif |
| 461 | |
| 462 | #endif |
| 463 | |
| 464 | /* I hope that the presence of LASTLOG_FILE is enough to detect this */ |
| 465 | #if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG) |
| 466 | # define USE_LASTLOG |
| 467 | #endif |
| 468 | |
| 469 | /* which type of time to use? (api.c) */ |
| 470 | #ifdef HAVE_SYS_TIME_H |
| 471 | # define USE_TIMEVAL |
| 472 | #endif |
| 473 | |
| 474 | /** end of login recorder definitions */ |
| 475 | |
Damien Miller | 6b85a7f | 2000-01-02 11:45:33 +1100 | [diff] [blame] | 476 | #endif /* _DEFINES_H */ |