Damien Miller | af63951 | 2003-06-11 22:51:32 +1000 | [diff] [blame] | 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 | |
Damien Miller | 6b85a7f | 2000-01-02 11:45:33 +1100 | [diff] [blame] | 25 | #ifndef _DEFINES_H |
| 26 | #define _DEFINES_H |
| 27 | |
Darren Tucker | 9df3def | 2004-02-10 13:01:14 +1100 | [diff] [blame] | 28 | /* $Id: defines.h,v 1.110 2004/02/10 02:01:14 dtucker Exp $ */ |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 29 | |
| 30 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 31 | /* Constants */ |
| 32 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 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 | |
Damien Miller | bc7c7cc | 2000-04-08 17:48:56 +1000 | [diff] [blame] | 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 | |
Damien Miller | a66626b | 2000-06-13 18:57:53 +1000 | [diff] [blame] | 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 | |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 61 | #ifndef STDIN_FILENO |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 62 | # define STDIN_FILENO 0 |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 63 | #endif |
| 64 | #ifndef STDOUT_FILENO |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 65 | # define STDOUT_FILENO 1 |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 66 | #endif |
| 67 | #ifndef STDERR_FILENO |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 68 | # define STDERR_FILENO 2 |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 69 | #endif |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 70 | |
Ben Lindstrom | 03f07b4 | 2001-02-04 20:44:01 +0000 | [diff] [blame] | 71 | #ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */ |
Ben Lindstrom | 6aebb34 | 2001-05-09 00:38:19 +0000 | [diff] [blame] | 72 | #ifdef NGROUPS |
| 73 | #define NGROUPS_MAX NGROUPS |
| 74 | #else |
Ben Lindstrom | 03f07b4 | 2001-02-04 20:44:01 +0000 | [diff] [blame] | 75 | #define NGROUPS_MAX 0 |
Ben Lindstrom | 75713c9 | 2001-02-04 20:27:44 +0000 | [diff] [blame] | 76 | #endif |
Ben Lindstrom | 6aebb34 | 2001-05-09 00:38:19 +0000 | [diff] [blame] | 77 | #endif |
Ben Lindstrom | 75713c9 | 2001-02-04 20:27:44 +0000 | [diff] [blame] | 78 | |
Ben Lindstrom | 0d5af60 | 2001-01-09 00:50:29 +0000 | [diff] [blame] | 79 | #ifndef O_NONBLOCK /* Non Blocking Open */ |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 80 | # define O_NONBLOCK 00004 |
Ben Lindstrom | 0d5af60 | 2001-01-09 00:50:29 +0000 | [diff] [blame] | 81 | #endif |
| 82 | |
Ben Lindstrom | 03017ba | 2001-03-19 03:12:25 +0000 | [diff] [blame] | 83 | #ifndef S_ISDIR |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 84 | # define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR)) |
Ben Lindstrom | 03017ba | 2001-03-19 03:12:25 +0000 | [diff] [blame] | 85 | #endif /* S_ISDIR */ |
| 86 | |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 87 | #ifndef S_ISREG |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 88 | # define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG)) |
| 89 | #endif /* S_ISREG */ |
| 90 | |
Ben Lindstrom | 03017ba | 2001-03-19 03:12:25 +0000 | [diff] [blame] | 91 | #ifndef S_ISLNK |
Tim Rice | d14d702 | 2001-03-19 18:31:44 -0800 | [diff] [blame] | 92 | # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK) |
Ben Lindstrom | 03017ba | 2001-03-19 03:12:25 +0000 | [diff] [blame] | 93 | #endif /* S_ISLNK */ |
| 94 | |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 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 | |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 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 | |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 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 | |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 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 |
Tim Rice | b8b2304 | 2002-07-18 09:31:51 -0700 | [diff] [blame] | 129 | #define INADDR_LOOPBACK ((u_long)0x7f000001) |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 130 | #endif |
| 131 | |
Darren Tucker | 0234e86 | 2004-01-08 23:32:04 +1100 | [diff] [blame] | 132 | #ifndef __unused |
| 133 | #define __unused |
| 134 | #endif |
| 135 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 136 | /* Types */ |
| 137 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 138 | /* If sys/types.h does not supply intXX_t, supply them ourselves */ |
| 139 | /* (or die trying) */ |
Damien Miller | caf6dd6 | 2000-08-29 11:33:50 +1100 | [diff] [blame] | 140 | |
Damien Miller | 753b1c0 | 2001-03-19 12:56:14 +1100 | [diff] [blame] | 141 | |
Damien Miller | caf6dd6 | 2000-08-29 11:33:50 +1100 | [diff] [blame] | 142 | #ifndef HAVE_U_INT |
| 143 | typedef unsigned int u_int; |
| 144 | #endif |
| 145 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 146 | #ifndef HAVE_INTXX_T |
Damien Miller | e0f4574 | 2000-01-18 09:12:06 +1100 | [diff] [blame] | 147 | # if (SIZEOF_CHAR == 1) |
| 148 | typedef char int8_t; |
| 149 | # else |
| 150 | # error "8 bit int type not found." |
| 151 | # endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 152 | # if (SIZEOF_SHORT_INT == 2) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 153 | typedef short int int16_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 154 | # else |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 155 | # ifdef _UNICOS |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 156 | # if (SIZEOF_SHORT_INT == 4) |
| 157 | typedef short int16_t; |
| 158 | # else |
Ben Lindstrom | 38e6093 | 2001-02-24 00:55:04 +0000 | [diff] [blame] | 159 | typedef long int16_t; |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 160 | # endif |
Ben Lindstrom | 38e6093 | 2001-02-24 00:55:04 +0000 | [diff] [blame] | 161 | # else |
| 162 | # error "16 bit int type not found." |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 163 | # endif /* _UNICOS */ |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 164 | # endif |
| 165 | # if (SIZEOF_INT == 4) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 166 | typedef int int32_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 167 | # else |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 168 | # ifdef _UNICOS |
Ben Lindstrom | 38e6093 | 2001-02-24 00:55:04 +0000 | [diff] [blame] | 169 | typedef long int32_t; |
| 170 | # else |
| 171 | # error "32 bit int type not found." |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 172 | # endif /* _UNICOS */ |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 173 | # endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 174 | #endif |
| 175 | |
| 176 | /* If sys/types.h does not supply u_intXX_t, supply them ourselves */ |
| 177 | #ifndef HAVE_U_INTXX_T |
| 178 | # ifdef HAVE_UINTXX_T |
Damien Miller | e0f4574 | 2000-01-18 09:12:06 +1100 | [diff] [blame] | 179 | typedef uint8_t u_int8_t; |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 180 | typedef uint16_t u_int16_t; |
| 181 | typedef uint32_t u_int32_t; |
Damien Miller | 6b85a7f | 2000-01-02 11:45:33 +1100 | [diff] [blame] | 182 | # define HAVE_U_INTXX_T 1 |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 183 | # else |
Damien Miller | e0f4574 | 2000-01-18 09:12:06 +1100 | [diff] [blame] | 184 | # if (SIZEOF_CHAR == 1) |
| 185 | typedef unsigned char u_int8_t; |
| 186 | # else |
| 187 | # error "8 bit int type not found." |
| 188 | # endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 189 | # if (SIZEOF_SHORT_INT == 2) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 190 | typedef unsigned short int u_int16_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 191 | # else |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 192 | # ifdef _UNICOS |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 193 | # if (SIZEOF_SHORT_INT == 4) |
| 194 | typedef unsigned short u_int16_t; |
| 195 | # else |
Ben Lindstrom | 38e6093 | 2001-02-24 00:55:04 +0000 | [diff] [blame] | 196 | typedef unsigned long u_int16_t; |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 197 | # endif |
Ben Lindstrom | 38e6093 | 2001-02-24 00:55:04 +0000 | [diff] [blame] | 198 | # else |
| 199 | # error "16 bit int type not found." |
| 200 | # endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 201 | # endif |
| 202 | # if (SIZEOF_INT == 4) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 203 | typedef unsigned int u_int32_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 204 | # else |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 205 | # ifdef _UNICOS |
Ben Lindstrom | 38e6093 | 2001-02-24 00:55:04 +0000 | [diff] [blame] | 206 | typedef unsigned long u_int32_t; |
| 207 | # else |
| 208 | # error "32 bit int type not found." |
| 209 | # endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 210 | # endif |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 211 | # endif |
Ben Lindstrom | d7d7da1 | 2001-06-10 17:35:45 +0000 | [diff] [blame] | 212 | #define __BIT_TYPES_DEFINED__ |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 213 | #endif |
| 214 | |
| 215 | /* 64-bit types */ |
| 216 | #ifndef HAVE_INT64_T |
| 217 | # if (SIZEOF_LONG_INT == 8) |
| 218 | typedef long int int64_t; |
| 219 | # else |
| 220 | # if (SIZEOF_LONG_LONG_INT == 8) |
| 221 | typedef long long int int64_t; |
Damien Miller | 578783e | 2000-09-23 14:12:24 +1100 | [diff] [blame] | 222 | # endif |
| 223 | # endif |
| 224 | #endif |
| 225 | #ifndef HAVE_U_INT64_T |
| 226 | # if (SIZEOF_LONG_INT == 8) |
| 227 | typedef unsigned long int u_int64_t; |
| 228 | # else |
| 229 | # if (SIZEOF_LONG_LONG_INT == 8) |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 230 | typedef unsigned long long int u_int64_t; |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 231 | # endif |
| 232 | # endif |
| 233 | #endif |
| 234 | |
Damien Miller | 58be738 | 2001-09-15 21:31:54 +1000 | [diff] [blame] | 235 | #ifndef HAVE_U_CHAR |
| 236 | typedef unsigned char u_char; |
| 237 | # define HAVE_U_CHAR |
| 238 | #endif /* HAVE_U_CHAR */ |
| 239 | |
Ben Lindstrom | 3962119 | 2002-08-21 02:54:11 +0000 | [diff] [blame] | 240 | #ifndef SIZE_T_MAX |
| 241 | #define SIZE_T_MAX ULONG_MAX |
| 242 | #endif /* SIZE_T_MAX */ |
| 243 | |
Damien Miller | 9505851 | 1999-12-29 10:36:45 +1100 | [diff] [blame] | 244 | #ifndef HAVE_SIZE_T |
| 245 | typedef unsigned int size_t; |
Damien Miller | b2532b3 | 1999-12-31 09:18:12 +1100 | [diff] [blame] | 246 | # define HAVE_SIZE_T |
Darren Tucker | 3715be3 | 2003-12-19 10:58:43 +1100 | [diff] [blame] | 247 | # define SIZE_T_MAX UINT_MAX |
Damien Miller | 9505851 | 1999-12-29 10:36:45 +1100 | [diff] [blame] | 248 | #endif /* HAVE_SIZE_T */ |
| 249 | |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 250 | #ifndef HAVE_SSIZE_T |
| 251 | typedef int ssize_t; |
| 252 | # define HAVE_SSIZE_T |
| 253 | #endif /* HAVE_SSIZE_T */ |
| 254 | |
Ben Lindstrom | 0d5af60 | 2001-01-09 00:50:29 +0000 | [diff] [blame] | 255 | #ifndef HAVE_CLOCK_T |
| 256 | typedef long clock_t; |
| 257 | # define HAVE_CLOCK_T |
Kevin Steves | 69f8fb3 | 2001-01-09 18:09:13 +0000 | [diff] [blame] | 258 | #endif /* HAVE_CLOCK_T */ |
Ben Lindstrom | 0d5af60 | 2001-01-09 00:50:29 +0000 | [diff] [blame] | 259 | |
Damien Miller | b54b40e | 2000-06-23 08:23:34 +1000 | [diff] [blame] | 260 | #ifndef HAVE_SA_FAMILY_T |
| 261 | typedef int sa_family_t; |
| 262 | # define HAVE_SA_FAMILY_T |
| 263 | #endif /* HAVE_SA_FAMILY_T */ |
| 264 | |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 265 | #ifndef HAVE_PID_T |
| 266 | typedef int pid_t; |
| 267 | # define HAVE_PID_T |
| 268 | #endif /* HAVE_PID_T */ |
| 269 | |
Tim Rice | 4cec93f | 2002-02-26 08:40:48 -0800 | [diff] [blame] | 270 | #ifndef HAVE_SIG_ATOMIC_T |
| 271 | typedef int sig_atomic_t; |
| 272 | # define HAVE_SIG_ATOMIC_T |
| 273 | #endif /* HAVE_SIG_ATOMIC_T */ |
| 274 | |
Damien Miller | 0f91b4e | 2000-06-18 15:43:25 +1000 | [diff] [blame] | 275 | #ifndef HAVE_MODE_T |
| 276 | typedef int mode_t; |
| 277 | # define HAVE_MODE_T |
| 278 | #endif /* HAVE_MODE_T */ |
| 279 | |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 280 | #if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS) |
| 281 | # define ss_family __ss_family |
| 282 | #endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */ |
| 283 | |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 284 | #ifndef HAVE_SYS_UN_H |
| 285 | struct sockaddr_un { |
| 286 | short sun_family; /* AF_UNIX */ |
| 287 | char sun_path[108]; /* path name (gag) */ |
| 288 | }; |
| 289 | #endif /* HAVE_SYS_UN_H */ |
| 290 | |
| 291 | #if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE) |
| 292 | #define _STRUCT_WINSIZE |
| 293 | struct winsize { |
| 294 | unsigned short ws_row; /* rows, in characters */ |
| 295 | unsigned short ws_col; /* columns, in character */ |
| 296 | unsigned short ws_xpixel; /* horizontal size, pixels */ |
| 297 | unsigned short ws_ypixel; /* vertical size, pixels */ |
| 298 | }; |
| 299 | #endif |
| 300 | |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 301 | /* *-*-nto-qnx does not define this type in the system headers */ |
| 302 | #ifdef MISSING_FD_MASK |
| 303 | typedef unsigned long int fd_mask; |
| 304 | #endif |
| 305 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 306 | /* Paths */ |
| 307 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 308 | #ifndef _PATH_BSHELL |
| 309 | # define _PATH_BSHELL "/bin/sh" |
| 310 | #endif |
Damien Miller | 9de61e8 | 2001-03-19 10:09:27 +1100 | [diff] [blame] | 311 | #ifndef _PATH_CSHELL |
| 312 | # define _PATH_CSHELL "/bin/csh" |
| 313 | #endif |
| 314 | #ifndef _PATH_SHELLS |
| 315 | # define _PATH_SHELLS "/etc/shells" |
| 316 | #endif |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 317 | |
| 318 | #ifdef USER_PATH |
| 319 | # ifdef _PATH_STDPATH |
| 320 | # undef _PATH_STDPATH |
| 321 | # endif |
| 322 | # define _PATH_STDPATH USER_PATH |
| 323 | #endif |
| 324 | |
| 325 | #ifndef _PATH_STDPATH |
| 326 | # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin" |
| 327 | #endif |
| 328 | |
Darren Tucker | e1a790d | 2003-09-16 11:52:19 +1000 | [diff] [blame] | 329 | #ifndef SUPERUSER_PATH |
| 330 | # define SUPERUSER_PATH _PATH_STDPATH |
| 331 | #endif |
| 332 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 333 | #ifndef _PATH_DEVNULL |
| 334 | # define _PATH_DEVNULL "/dev/null" |
| 335 | #endif |
| 336 | |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 337 | #ifndef MAIL_DIRECTORY |
| 338 | # define MAIL_DIRECTORY "/var/spool/mail" |
| 339 | #endif |
| 340 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 341 | #ifndef MAILDIR |
| 342 | # define MAILDIR MAIL_DIRECTORY |
| 343 | #endif |
| 344 | |
| 345 | #if !defined(_PATH_MAILDIR) && defined(MAILDIR) |
| 346 | # define _PATH_MAILDIR MAILDIR |
| 347 | #endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */ |
| 348 | |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 349 | #ifndef _PATH_NOLOGIN |
| 350 | # define _PATH_NOLOGIN "/etc/nologin" |
| 351 | #endif |
| 352 | |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 353 | /* Define this to be the path of the xauth program. */ |
Kevin Steves | 37a777e | 2001-06-28 00:13:48 +0000 | [diff] [blame] | 354 | #ifdef XAUTH_PATH |
| 355 | #define _PATH_XAUTH XAUTH_PATH |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 356 | #endif /* XAUTH_PATH */ |
| 357 | |
Kevin Steves | f49a119 | 2002-01-06 02:32:57 +0000 | [diff] [blame] | 358 | /* derived from XF4/xc/lib/dps/Xlibnet.h */ |
| 359 | #ifndef X_UNIX_PATH |
Kevin Steves | 2f8f6e3 | 2002-01-08 21:59:06 +0000 | [diff] [blame] | 360 | # ifdef __hpux |
| 361 | # define X_UNIX_PATH "/var/spool/sockets/X11/%u" |
| 362 | # else |
| 363 | # define X_UNIX_PATH "/tmp/.X11-unix/X%u" |
| 364 | # endif |
Kevin Steves | f49a119 | 2002-01-06 02:32:57 +0000 | [diff] [blame] | 365 | #endif /* X_UNIX_PATH */ |
| 366 | #define _PATH_UNIX_X X_UNIX_PATH |
| 367 | |
Damien Miller | 4192c46 | 2001-02-09 22:55:16 +1100 | [diff] [blame] | 368 | #ifndef _PATH_TTY |
| 369 | # define _PATH_TTY "/dev/tty" |
| 370 | #endif |
| 371 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 372 | /* Macros */ |
| 373 | |
Damien Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 374 | #if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H) |
| 375 | # define HAVE_LOGIN_CAP |
| 376 | #endif |
| 377 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 378 | #ifndef MAX |
| 379 | # define MAX(a,b) (((a)>(b))?(a):(b)) |
| 380 | # define MIN(a,b) (((a)<(b))?(a):(b)) |
| 381 | #endif |
| 382 | |
Damien Miller | 79438cc | 2001-02-16 12:34:57 +1100 | [diff] [blame] | 383 | #ifndef roundup |
| 384 | # define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) |
| 385 | #endif |
| 386 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 387 | #ifndef timersub |
Damien Miller | 79438cc | 2001-02-16 12:34:57 +1100 | [diff] [blame] | 388 | #define timersub(a, b, result) \ |
| 389 | do { \ |
| 390 | (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ |
| 391 | (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ |
| 392 | if ((result)->tv_usec < 0) { \ |
| 393 | --(result)->tv_sec; \ |
| 394 | (result)->tv_usec += 1000000; \ |
| 395 | } \ |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 396 | } while (0) |
| 397 | #endif |
| 398 | |
Damien Miller | 3bc0c06 | 2003-01-24 11:50:32 +1100 | [diff] [blame] | 399 | #ifndef TIMEVAL_TO_TIMESPEC |
| 400 | #define TIMEVAL_TO_TIMESPEC(tv, ts) { \ |
| 401 | (ts)->tv_sec = (tv)->tv_sec; \ |
| 402 | (ts)->tv_nsec = (tv)->tv_usec * 1000; \ |
| 403 | } |
| 404 | #endif |
| 405 | |
| 406 | #ifndef TIMESPEC_TO_TIMEVAL |
| 407 | #define TIMESPEC_TO_TIMEVAL(tv, ts) { \ |
| 408 | (tv)->tv_sec = (ts)->tv_sec; \ |
| 409 | (tv)->tv_usec = (ts)->tv_nsec / 1000; \ |
| 410 | } |
| 411 | #endif |
| 412 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 413 | #ifndef __P |
| 414 | # define __P(x) x |
| 415 | #endif |
| 416 | |
Damien Miller | 1c67c99 | 2000-03-14 10:16:34 +1100 | [diff] [blame] | 417 | #if !defined(IN6_IS_ADDR_V4MAPPED) |
| 418 | # define IN6_IS_ADDR_V4MAPPED(a) \ |
Damien Miller | db81959 | 2000-03-14 13:44:01 +1100 | [diff] [blame] | 419 | ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \ |
| 420 | (((u_int32_t *) (a))[2] == htonl (0xffff))) |
Damien Miller | 1c67c99 | 2000-03-14 10:16:34 +1100 | [diff] [blame] | 421 | #endif /* !defined(IN6_IS_ADDR_V4MAPPED) */ |
| 422 | |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 423 | #if !defined(__GNUC__) || (__GNUC__ < 2) |
Damien Miller | e0f4574 | 2000-01-18 09:12:06 +1100 | [diff] [blame] | 424 | # define __attribute__(x) |
Damien Miller | 5a3e683 | 1999-12-27 09:48:56 +1100 | [diff] [blame] | 425 | #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */ |
| 426 | |
Ben Lindstrom | 19d7b8d | 2001-08-16 00:09:49 +0000 | [diff] [blame] | 427 | /* *-*-nto-qnx doesn't define this macro in the system headers */ |
| 428 | #ifdef MISSING_HOWMANY |
| 429 | # define howmany(x,y) (((x)+((y)-1))/(y)) |
| 430 | #endif |
| 431 | |
Damien Miller | d77facd | 2002-04-23 22:59:51 +1000 | [diff] [blame] | 432 | #ifndef OSSH_ALIGNBYTES |
| 433 | #define OSSH_ALIGNBYTES (sizeof(int) - 1) |
Kevin Steves | 219bef1 | 2002-03-22 20:53:32 +0000 | [diff] [blame] | 434 | #endif |
| 435 | #ifndef __CMSG_ALIGN |
Damien Miller | d77facd | 2002-04-23 22:59:51 +1000 | [diff] [blame] | 436 | #define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES) |
Kevin Steves | 219bef1 | 2002-03-22 20:53:32 +0000 | [diff] [blame] | 437 | #endif |
| 438 | |
| 439 | /* Length of the contents of a control message of length len */ |
| 440 | #ifndef CMSG_LEN |
| 441 | #define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len)) |
| 442 | #endif |
| 443 | |
| 444 | /* Length of the space taken up by a padded control message of length len */ |
| 445 | #ifndef CMSG_SPACE |
| 446 | #define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len)) |
| 447 | #endif |
| 448 | |
Darren Tucker | 8e3653d | 2003-08-21 16:49:41 +1000 | [diff] [blame] | 449 | /* given pointer to struct cmsghdr, return pointer to data */ |
| 450 | #ifndef CMSG_DATA |
| 451 | #define CMSG_DATA(cmsg) ((u_char *)(cmsg) + __CMSG_ALIGN(sizeof(struct cmsghdr))) |
| 452 | #endif /* CMSG_DATA */ |
| 453 | |
| 454 | /* |
| 455 | * RFC 2292 requires to check msg_controllen, in case that the kernel returns |
| 456 | * an empty list for some reasons. |
| 457 | */ |
| 458 | #ifndef CMSG_FIRSTHDR |
| 459 | #define CMSG_FIRSTHDR(mhdr) \ |
| 460 | ((mhdr)->msg_controllen >= sizeof(struct cmsghdr) ? \ |
| 461 | (struct cmsghdr *)(mhdr)->msg_control : \ |
| 462 | (struct cmsghdr *)NULL) |
| 463 | #endif /* CMSG_FIRSTHDR */ |
| 464 | |
| 465 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 466 | /* Function replacement / compatibility hacks */ |
| 467 | |
Damien Miller | 594a71b | 2002-04-23 20:22:59 +1000 | [diff] [blame] | 468 | #if !defined(HAVE_GETADDRINFO) && (defined(HAVE_OGETADDRINFO) || defined(HAVE_NGETADDRINFO)) |
| 469 | # define HAVE_GETADDRINFO |
| 470 | #endif |
| 471 | |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 472 | #ifndef HAVE_GETOPT_OPTRESET |
Ben Lindstrom | ee9ac35 | 2002-06-22 00:26:59 +0000 | [diff] [blame] | 473 | # undef getopt |
| 474 | # undef opterr |
| 475 | # undef optind |
| 476 | # undef optopt |
| 477 | # undef optreset |
| 478 | # undef optarg |
| 479 | # define getopt(ac, av, o) BSDgetopt(ac, av, o) |
| 480 | # define opterr BSDopterr |
| 481 | # define optind BSDoptind |
| 482 | # define optopt BSDoptopt |
| 483 | # define optreset BSDoptreset |
| 484 | # define optarg BSDoptarg |
Tim Rice | 813f045 | 2002-04-11 20:35:39 -0700 | [diff] [blame] | 485 | #endif |
| 486 | |
Damien Miller | 74d0d4a | 1999-12-29 02:24:35 +1100 | [diff] [blame] | 487 | /* In older versions of libpam, pam_strerror takes a single argument */ |
| 488 | #ifdef HAVE_OLD_PAM |
| 489 | # define PAM_STRERROR(a,b) pam_strerror((b)) |
| 490 | #else |
| 491 | # define PAM_STRERROR(a,b) pam_strerror((a),(b)) |
| 492 | #endif |
| 493 | |
Damien Miller | 82cf0ce | 2000-12-20 13:34:48 +1100 | [diff] [blame] | 494 | #ifdef PAM_SUN_CODEBASE |
| 495 | # define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member) |
| 496 | #else |
| 497 | # define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member) |
| 498 | #endif |
| 499 | |
Damien Miller | eca71f8 | 2000-01-20 22:38:27 +1100 | [diff] [blame] | 500 | #if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO) |
| 501 | # undef HAVE_GETADDRINFO |
Damien Miller | d54e55c | 2001-01-04 09:07:12 +1100 | [diff] [blame] | 502 | #endif |
| 503 | #if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO) |
| 504 | # undef HAVE_FREEADDRINFO |
| 505 | #endif |
| 506 | #if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR) |
| 507 | # undef HAVE_GAI_STRERROR |
| 508 | #endif |
Damien Miller | eca71f8 | 2000-01-20 22:38:27 +1100 | [diff] [blame] | 509 | |
Damien Miller | 615f939 | 2000-05-17 22:53:33 +1000 | [diff] [blame] | 510 | #if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) |
| 511 | # define memmove(s1, s2, n) bcopy((s2), (s1), (n)) |
| 512 | #endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */ |
| 513 | |
Kevin Steves | 86a52b3 | 2001-04-05 17:15:08 +0000 | [diff] [blame] | 514 | #if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 515 | # define USE_VHANGUP |
Kevin Steves | 86a52b3 | 2001-04-05 17:15:08 +0000 | [diff] [blame] | 516 | #endif /* defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) */ |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 517 | |
Damien Miller | 606f880 | 2000-09-16 15:39:56 +1100 | [diff] [blame] | 518 | #ifndef GETPGRP_VOID |
| 519 | # define getpgrp() getpgrp(0) |
| 520 | #endif |
| 521 | |
Damien Miller | 14a5c99 | 2001-11-01 09:32:34 +1100 | [diff] [blame] | 522 | /* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */ |
| 523 | #if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f) |
| 524 | # define OPENSSL_free(x) Free(x) |
| 525 | #endif |
| 526 | |
Ben Lindstrom | 03bab28 | 2002-06-07 03:19:35 +0000 | [diff] [blame] | 527 | #if !defined(HAVE___func__) && defined(HAVE___FUNCTION__) |
| 528 | # define __func__ __FUNCTION__ |
| 529 | #elif !defined(HAVE___func__) |
| 530 | # define __func__ "" |
Kevin Steves | 4846f4a | 2002-03-22 18:19:53 +0000 | [diff] [blame] | 531 | #endif |
| 532 | |
Darren Tucker | 49aaf4a | 2003-08-26 11:58:16 +1000 | [diff] [blame] | 533 | #if defined(KRB5) && !defined(HEIMDAL) |
| 534 | # define krb5_get_err_text(context,code) error_message(code) |
| 535 | #endif |
| 536 | |
Damien Miller | e00074a | 2003-11-24 13:07:45 +1100 | [diff] [blame] | 537 | /* Maximum number of file descriptors available */ |
| 538 | #ifdef HAVE_SYSCONF |
| 539 | # define SSH_SYSFDMAX sysconf(_SC_OPEN_MAX) |
| 540 | #else |
| 541 | # define SSH_SYSFDMAX 10000 |
| 542 | #endif |
| 543 | |
| 544 | |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 545 | /* |
| 546 | * Define this to use pipes instead of socketpairs for communicating with the |
| 547 | * client program. Socketpairs do not seem to work on all systems. |
| 548 | * |
Tim Rice | b89e694 | 2001-10-29 18:50:39 -0800 | [diff] [blame] | 549 | * configure.ac sets this for a few OS's which are known to have problems |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 550 | * but you may need to set it yourself |
| 551 | */ |
| 552 | /* #define USE_PIPES 1 */ |
| 553 | |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 554 | /** |
| 555 | ** login recorder definitions |
| 556 | **/ |
| 557 | |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 558 | /* FIXME: put default paths back in */ |
Damien Miller | 36ccb5c | 2000-08-09 16:34:27 +1000 | [diff] [blame] | 559 | #ifndef UTMP_FILE |
| 560 | # ifdef _PATH_UTMP |
| 561 | # define UTMP_FILE _PATH_UTMP |
| 562 | # else |
| 563 | # ifdef CONF_UTMP_FILE |
| 564 | # define UTMP_FILE CONF_UTMP_FILE |
| 565 | # endif |
| 566 | # endif |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 567 | #endif |
Damien Miller | 36ccb5c | 2000-08-09 16:34:27 +1000 | [diff] [blame] | 568 | #ifndef WTMP_FILE |
| 569 | # ifdef _PATH_WTMP |
| 570 | # define WTMP_FILE _PATH_WTMP |
| 571 | # else |
| 572 | # ifdef CONF_WTMP_FILE |
| 573 | # define WTMP_FILE CONF_WTMP_FILE |
| 574 | # endif |
| 575 | # endif |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 576 | #endif |
| 577 | /* pick up the user's location for lastlog if given */ |
Damien Miller | 36ccb5c | 2000-08-09 16:34:27 +1000 | [diff] [blame] | 578 | #ifndef LASTLOG_FILE |
| 579 | # ifdef _PATH_LASTLOG |
| 580 | # define LASTLOG_FILE _PATH_LASTLOG |
| 581 | # else |
| 582 | # ifdef CONF_LASTLOG_FILE |
| 583 | # define LASTLOG_FILE CONF_LASTLOG_FILE |
| 584 | # endif |
| 585 | # endif |
Damien Miller | 2994e08 | 2000-06-04 15:51:47 +1000 | [diff] [blame] | 586 | #endif |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 587 | |
Darren Tucker | 9df3def | 2004-02-10 13:01:14 +1100 | [diff] [blame] | 588 | #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) |
| 589 | # define USE_SHADOW |
| 590 | #endif |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 591 | |
| 592 | /* The login() library function in libutil is first choice */ |
| 593 | #if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN) |
| 594 | # define USE_LOGIN |
| 595 | |
| 596 | #else |
| 597 | /* Simply select your favourite login types. */ |
| 598 | /* Can't do if-else because some systems use several... <sigh> */ |
| 599 | # if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX) |
| 600 | # define USE_UTMPX |
| 601 | # endif |
| 602 | # if defined(UTMP_FILE) && !defined(DISABLE_UTMP) |
| 603 | # define USE_UTMP |
| 604 | # endif |
| 605 | # if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX) |
| 606 | # define USE_WTMPX |
| 607 | # endif |
| 608 | # if defined(WTMP_FILE) && !defined(DISABLE_WTMP) |
| 609 | # define USE_WTMP |
| 610 | # endif |
| 611 | |
| 612 | #endif |
| 613 | |
| 614 | /* I hope that the presence of LASTLOG_FILE is enough to detect this */ |
| 615 | #if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG) |
| 616 | # define USE_LASTLOG |
| 617 | #endif |
| 618 | |
andre | 2ff7b5d | 2000-06-03 14:57:40 +0000 | [diff] [blame] | 619 | /** end of login recorder definitions */ |
| 620 | |
Damien Miller | 6b85a7f | 2000-01-02 11:45:33 +1100 | [diff] [blame] | 621 | #endif /* _DEFINES_H */ |