blob: f7029abb487f9c5685cc895d6d381c51fc3a621b [file] [log] [blame]
Damien Milleraf639512003-06-11 22:51:32 +10001/*
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 Miller6b85a7f2000-01-02 11:45:33 +110025#ifndef _DEFINES_H
26#define _DEFINES_H
27
Darren Tucker4a422572005-07-14 17:22:11 +100028/* $Id: defines.h,v 1.122 2005/07/14 07:22:11 dtucker Exp $ */
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +000029
30
Damien Miller74d0d4a1999-12-29 02:24:35 +110031/* Constants */
32
Damien Miller5a3e6831999-12-27 09:48:56 +110033#ifndef SHUT_RDWR
34enum
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 Millerbc7c7cc2000-04-08 17:48:56 +100045#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 Millera66626b2000-06-13 18:57:53 +100053#ifndef MAXPATHLEN
54# ifdef PATH_MAX
55# define MAXPATHLEN PATH_MAX
56# else /* PATH_MAX */
Damien Miller287b4592005-05-27 19:36:56 +100057# define MAXPATHLEN 64
58/* realpath uses a fixed buffer of size MAXPATHLEN, so force use of ours */
59# ifndef BROKEN_REALPATH
60# define BROKEN_REALPATH 1
61# endif /* BROKEN_REALPATH */
Damien Millera66626b2000-06-13 18:57:53 +100062# endif /* PATH_MAX */
63#endif /* MAXPATHLEN */
64
Kevin Stevesef4eea92001-02-05 12:42:17 +000065#ifndef STDIN_FILENO
Damien Miller0f91b4e2000-06-18 15:43:25 +100066# define STDIN_FILENO 0
Kevin Stevesef4eea92001-02-05 12:42:17 +000067#endif
68#ifndef STDOUT_FILENO
Damien Miller0f91b4e2000-06-18 15:43:25 +100069# define STDOUT_FILENO 1
Kevin Stevesef4eea92001-02-05 12:42:17 +000070#endif
71#ifndef STDERR_FILENO
Damien Miller0f91b4e2000-06-18 15:43:25 +100072# define STDERR_FILENO 2
Kevin Stevesef4eea92001-02-05 12:42:17 +000073#endif
Damien Miller0f91b4e2000-06-18 15:43:25 +100074
Ben Lindstrom03f07b42001-02-04 20:44:01 +000075#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
Ben Lindstrom6aebb342001-05-09 00:38:19 +000076#ifdef NGROUPS
77#define NGROUPS_MAX NGROUPS
78#else
Ben Lindstrom03f07b42001-02-04 20:44:01 +000079#define NGROUPS_MAX 0
Ben Lindstrom75713c92001-02-04 20:27:44 +000080#endif
Ben Lindstrom6aebb342001-05-09 00:38:19 +000081#endif
Ben Lindstrom75713c92001-02-04 20:27:44 +000082
Ben Lindstrom0d5af602001-01-09 00:50:29 +000083#ifndef O_NONBLOCK /* Non Blocking Open */
Kevin Stevesef4eea92001-02-05 12:42:17 +000084# define O_NONBLOCK 00004
Ben Lindstrom0d5af602001-01-09 00:50:29 +000085#endif
86
Ben Lindstrom03017ba2001-03-19 03:12:25 +000087#ifndef S_ISDIR
Damien Miller0f91b4e2000-06-18 15:43:25 +100088# define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
Ben Lindstrom03017ba2001-03-19 03:12:25 +000089#endif /* S_ISDIR */
90
Damien Millera8e06ce2003-11-21 23:48:55 +110091#ifndef S_ISREG
Damien Miller0f91b4e2000-06-18 15:43:25 +100092# define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
93#endif /* S_ISREG */
94
Ben Lindstrom03017ba2001-03-19 03:12:25 +000095#ifndef S_ISLNK
Tim Riced14d7022001-03-19 18:31:44 -080096# define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
Ben Lindstrom03017ba2001-03-19 03:12:25 +000097#endif /* S_ISLNK */
98
Damien Miller0f91b4e2000-06-18 15:43:25 +100099#ifndef S_IXUSR
100# define S_IXUSR 0000100 /* execute/search permission, */
101# define S_IXGRP 0000010 /* execute/search permission, */
102# define S_IXOTH 0000001 /* execute/search permission, */
103# define _S_IWUSR 0000200 /* write permission, */
104# define S_IWUSR _S_IWUSR /* write permission, owner */
105# define S_IWGRP 0000020 /* write permission, group */
106# define S_IWOTH 0000002 /* write permission, other */
107# define S_IRUSR 0000400 /* read permission, owner */
108# define S_IRGRP 0000040 /* read permission, group */
109# define S_IROTH 0000004 /* read permission, other */
110# define S_IRWXU 0000700 /* read, write, execute */
111# define S_IRWXG 0000070 /* read, write, execute */
112# define S_IRWXO 0000007 /* read, write, execute */
113#endif /* S_IXUSR */
114
Tim Rice813f0452002-04-11 20:35:39 -0700115#if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)
116#define MAP_ANON MAP_ANONYMOUS
117#endif
118
119#ifndef MAP_FAILED
120# define MAP_FAILED ((void *)-1)
121#endif
122
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000123/* *-*-nto-qnx doesn't define this constant in the system headers */
124#ifdef MISSING_NFDBITS
125# define NFDBITS (8 * sizeof(unsigned long))
126#endif
127
Tim Rice4cec93f2002-02-26 08:40:48 -0800128/*
129SCO Open Server 3 has INADDR_LOOPBACK defined in rpc/rpc.h but
130including rpc/rpc.h breaks Solaris 6
131*/
132#ifndef INADDR_LOOPBACK
Tim Riceb8b23042002-07-18 09:31:51 -0700133#define INADDR_LOOPBACK ((u_long)0x7f000001)
Tim Rice4cec93f2002-02-26 08:40:48 -0800134#endif
135
Darren Tucker0234e862004-01-08 23:32:04 +1100136#ifndef __unused
137#define __unused
138#endif
139
Damien Miller74d0d4a1999-12-29 02:24:35 +1100140/* Types */
141
Damien Miller5a3e6831999-12-27 09:48:56 +1100142/* If sys/types.h does not supply intXX_t, supply them ourselves */
143/* (or die trying) */
Damien Millercaf6dd62000-08-29 11:33:50 +1100144
Damien Miller753b1c02001-03-19 12:56:14 +1100145
Damien Millercaf6dd62000-08-29 11:33:50 +1100146#ifndef HAVE_U_INT
147typedef unsigned int u_int;
148#endif
149
Damien Miller5a3e6831999-12-27 09:48:56 +1100150#ifndef HAVE_INTXX_T
Damien Millere0f45742000-01-18 09:12:06 +1100151# if (SIZEOF_CHAR == 1)
152typedef char int8_t;
153# else
154# error "8 bit int type not found."
155# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100156# if (SIZEOF_SHORT_INT == 2)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100157typedef short int int16_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100158# else
Tim Rice81ed5182002-09-25 17:38:46 -0700159# ifdef _UNICOS
Tim Rice4cec93f2002-02-26 08:40:48 -0800160# if (SIZEOF_SHORT_INT == 4)
161typedef short int16_t;
162# else
Ben Lindstrom38e60932001-02-24 00:55:04 +0000163typedef long int16_t;
Tim Rice4cec93f2002-02-26 08:40:48 -0800164# endif
Ben Lindstrom38e60932001-02-24 00:55:04 +0000165# else
166# error "16 bit int type not found."
Tim Rice81ed5182002-09-25 17:38:46 -0700167# endif /* _UNICOS */
Damien Miller5a3e6831999-12-27 09:48:56 +1100168# endif
169# if (SIZEOF_INT == 4)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100170typedef int int32_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100171# else
Tim Rice81ed5182002-09-25 17:38:46 -0700172# ifdef _UNICOS
Ben Lindstrom38e60932001-02-24 00:55:04 +0000173typedef long int32_t;
174# else
175# error "32 bit int type not found."
Tim Rice81ed5182002-09-25 17:38:46 -0700176# endif /* _UNICOS */
Damien Miller5a3e6831999-12-27 09:48:56 +1100177# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100178#endif
179
180/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
181#ifndef HAVE_U_INTXX_T
182# ifdef HAVE_UINTXX_T
Damien Millere0f45742000-01-18 09:12:06 +1100183typedef uint8_t u_int8_t;
Damien Miller74d0d4a1999-12-29 02:24:35 +1100184typedef uint16_t u_int16_t;
185typedef uint32_t u_int32_t;
Damien Miller6b85a7f2000-01-02 11:45:33 +1100186# define HAVE_U_INTXX_T 1
Damien Miller5a3e6831999-12-27 09:48:56 +1100187# else
Damien Millere0f45742000-01-18 09:12:06 +1100188# if (SIZEOF_CHAR == 1)
189typedef unsigned char u_int8_t;
190# else
191# error "8 bit int type not found."
192# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100193# if (SIZEOF_SHORT_INT == 2)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100194typedef unsigned short int u_int16_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100195# else
Tim Rice81ed5182002-09-25 17:38:46 -0700196# ifdef _UNICOS
Tim Rice4cec93f2002-02-26 08:40:48 -0800197# if (SIZEOF_SHORT_INT == 4)
198typedef unsigned short u_int16_t;
199# else
Ben Lindstrom38e60932001-02-24 00:55:04 +0000200typedef unsigned long u_int16_t;
Tim Rice4cec93f2002-02-26 08:40:48 -0800201# endif
Ben Lindstrom38e60932001-02-24 00:55:04 +0000202# else
203# error "16 bit int type not found."
204# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100205# endif
206# if (SIZEOF_INT == 4)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100207typedef unsigned int u_int32_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100208# else
Tim Rice81ed5182002-09-25 17:38:46 -0700209# ifdef _UNICOS
Ben Lindstrom38e60932001-02-24 00:55:04 +0000210typedef unsigned long u_int32_t;
211# else
212# error "32 bit int type not found."
213# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100214# endif
Damien Miller578783e2000-09-23 14:12:24 +1100215# endif
Ben Lindstromd7d7da12001-06-10 17:35:45 +0000216#define __BIT_TYPES_DEFINED__
Damien Miller578783e2000-09-23 14:12:24 +1100217#endif
218
219/* 64-bit types */
220#ifndef HAVE_INT64_T
221# if (SIZEOF_LONG_INT == 8)
222typedef long int int64_t;
223# else
224# if (SIZEOF_LONG_LONG_INT == 8)
225typedef long long int int64_t;
Damien Miller578783e2000-09-23 14:12:24 +1100226# endif
227# endif
228#endif
229#ifndef HAVE_U_INT64_T
230# if (SIZEOF_LONG_INT == 8)
231typedef unsigned long int u_int64_t;
232# else
233# if (SIZEOF_LONG_LONG_INT == 8)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100234typedef unsigned long long int u_int64_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100235# endif
236# endif
237#endif
238
Damien Miller58be7382001-09-15 21:31:54 +1000239#ifndef HAVE_U_CHAR
240typedef unsigned char u_char;
241# define HAVE_U_CHAR
242#endif /* HAVE_U_CHAR */
243
Ben Lindstrom39621192002-08-21 02:54:11 +0000244#ifndef SIZE_T_MAX
245#define SIZE_T_MAX ULONG_MAX
246#endif /* SIZE_T_MAX */
247
Damien Miller95058511999-12-29 10:36:45 +1100248#ifndef HAVE_SIZE_T
249typedef unsigned int size_t;
Damien Millerb2532b31999-12-31 09:18:12 +1100250# define HAVE_SIZE_T
Darren Tucker3715be32003-12-19 10:58:43 +1100251# define SIZE_T_MAX UINT_MAX
Damien Miller95058511999-12-29 10:36:45 +1100252#endif /* HAVE_SIZE_T */
253
Damien Miller615f9392000-05-17 22:53:33 +1000254#ifndef HAVE_SSIZE_T
255typedef int ssize_t;
256# define HAVE_SSIZE_T
257#endif /* HAVE_SSIZE_T */
258
Ben Lindstrom0d5af602001-01-09 00:50:29 +0000259#ifndef HAVE_CLOCK_T
260typedef long clock_t;
261# define HAVE_CLOCK_T
Kevin Steves69f8fb32001-01-09 18:09:13 +0000262#endif /* HAVE_CLOCK_T */
Ben Lindstrom0d5af602001-01-09 00:50:29 +0000263
Damien Millerb54b40e2000-06-23 08:23:34 +1000264#ifndef HAVE_SA_FAMILY_T
265typedef int sa_family_t;
266# define HAVE_SA_FAMILY_T
267#endif /* HAVE_SA_FAMILY_T */
268
Damien Miller0f91b4e2000-06-18 15:43:25 +1000269#ifndef HAVE_PID_T
270typedef int pid_t;
271# define HAVE_PID_T
272#endif /* HAVE_PID_T */
273
Tim Rice4cec93f2002-02-26 08:40:48 -0800274#ifndef HAVE_SIG_ATOMIC_T
275typedef int sig_atomic_t;
276# define HAVE_SIG_ATOMIC_T
277#endif /* HAVE_SIG_ATOMIC_T */
278
Damien Miller0f91b4e2000-06-18 15:43:25 +1000279#ifndef HAVE_MODE_T
280typedef int mode_t;
281# define HAVE_MODE_T
282#endif /* HAVE_MODE_T */
283
Damien Miller34132e52000-01-14 15:45:46 +1100284#if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
285# define ss_family __ss_family
286#endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
287
Damien Miller78315eb2000-09-29 23:01:36 +1100288#ifndef HAVE_SYS_UN_H
289struct sockaddr_un {
290 short sun_family; /* AF_UNIX */
291 char sun_path[108]; /* path name (gag) */
292};
293#endif /* HAVE_SYS_UN_H */
294
Darren Tuckerd9f88912005-02-20 21:01:48 +1100295#ifndef HAVE_IN_ADDR_T
296typedef u_int32_t in_addr_t;
297#endif
298
Damien Miller78315eb2000-09-29 23:01:36 +1100299#if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE)
300#define _STRUCT_WINSIZE
301struct 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
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000309/* *-*-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
Damien Miller74d0d4a1999-12-29 02:24:35 +1100314/* Paths */
315
Damien Miller5a3e6831999-12-27 09:48:56 +1100316#ifndef _PATH_BSHELL
317# define _PATH_BSHELL "/bin/sh"
318#endif
Damien Miller9de61e82001-03-19 10:09:27 +1100319#ifndef _PATH_CSHELL
320# define _PATH_CSHELL "/bin/csh"
321#endif
322#ifndef _PATH_SHELLS
323# define _PATH_SHELLS "/etc/shells"
324#endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100325
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
Darren Tuckere1a790d2003-09-16 11:52:19 +1000337#ifndef SUPERUSER_PATH
338# define SUPERUSER_PATH _PATH_STDPATH
339#endif
340
Damien Miller5a3e6831999-12-27 09:48:56 +1100341#ifndef _PATH_DEVNULL
342# define _PATH_DEVNULL "/dev/null"
343#endif
344
Damien Miller615f9392000-05-17 22:53:33 +1000345#ifndef MAIL_DIRECTORY
346# define MAIL_DIRECTORY "/var/spool/mail"
347#endif
348
Damien Miller5a3e6831999-12-27 09:48:56 +1100349#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
Damien Millerad833b32000-08-23 10:46:23 +1000357#ifndef _PATH_NOLOGIN
358# define _PATH_NOLOGIN "/etc/nologin"
359#endif
360
Damien Miller72c9a7e2000-09-24 11:10:13 +1100361/* Define this to be the path of the xauth program. */
Kevin Steves37a777e2001-06-28 00:13:48 +0000362#ifdef XAUTH_PATH
363#define _PATH_XAUTH XAUTH_PATH
Damien Miller72c9a7e2000-09-24 11:10:13 +1100364#endif /* XAUTH_PATH */
365
Kevin Stevesf49a1192002-01-06 02:32:57 +0000366/* derived from XF4/xc/lib/dps/Xlibnet.h */
367#ifndef X_UNIX_PATH
Kevin Steves2f8f6e32002-01-08 21:59:06 +0000368# 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
Kevin Stevesf49a1192002-01-06 02:32:57 +0000373#endif /* X_UNIX_PATH */
374#define _PATH_UNIX_X X_UNIX_PATH
375
Damien Miller4192c462001-02-09 22:55:16 +1100376#ifndef _PATH_TTY
377# define _PATH_TTY "/dev/tty"
378#endif
379
Damien Miller74d0d4a1999-12-29 02:24:35 +1100380/* Macros */
381
Damien Millerad833b32000-08-23 10:46:23 +1000382#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
383# define HAVE_LOGIN_CAP
384#endif
385
Damien Miller5a3e6831999-12-27 09:48:56 +1100386#ifndef MAX
387# define MAX(a,b) (((a)>(b))?(a):(b))
388# define MIN(a,b) (((a)<(b))?(a):(b))
389#endif
390
Damien Miller79438cc2001-02-16 12:34:57 +1100391#ifndef roundup
392# define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
393#endif
394
Damien Miller5a3e6831999-12-27 09:48:56 +1100395#ifndef timersub
Damien Miller79438cc2001-02-16 12:34:57 +1100396#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 } \
Damien Miller5a3e6831999-12-27 09:48:56 +1100404 } while (0)
405#endif
406
Damien Miller3bc0c062003-01-24 11:50:32 +1100407#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
Damien Miller5a3e6831999-12-27 09:48:56 +1100421#ifndef __P
422# define __P(x) x
423#endif
424
Damien Miller1c67c992000-03-14 10:16:34 +1100425#if !defined(IN6_IS_ADDR_V4MAPPED)
426# define IN6_IS_ADDR_V4MAPPED(a) \
Damien Millerdb819592000-03-14 13:44:01 +1100427 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
428 (((u_int32_t *) (a))[2] == htonl (0xffff)))
Damien Miller1c67c992000-03-14 10:16:34 +1100429#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
430
Damien Miller5a3e6831999-12-27 09:48:56 +1100431#if !defined(__GNUC__) || (__GNUC__ < 2)
Damien Millere0f45742000-01-18 09:12:06 +1100432# define __attribute__(x)
Damien Miller5a3e6831999-12-27 09:48:56 +1100433#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
434
Darren Tucker59bf4a92004-06-22 13:27:16 +1000435#ifndef __dead
436# define __dead __attribute__((noreturn))
437#endif
438
Darren Tucker4a422572005-07-14 17:22:11 +1000439#if !defined(HAVE_ATTRIBUTE__SENTINEL__) && !defined(__sentinel__)
440# define __sentinel__
441#endif
442
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000443/* *-*-nto-qnx doesn't define this macro in the system headers */
444#ifdef MISSING_HOWMANY
445# define howmany(x,y) (((x)+((y)-1))/(y))
446#endif
447
Damien Millerd77facd2002-04-23 22:59:51 +1000448#ifndef OSSH_ALIGNBYTES
449#define OSSH_ALIGNBYTES (sizeof(int) - 1)
Kevin Steves219bef12002-03-22 20:53:32 +0000450#endif
451#ifndef __CMSG_ALIGN
Damien Millerd77facd2002-04-23 22:59:51 +1000452#define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES)
Kevin Steves219bef12002-03-22 20:53:32 +0000453#endif
454
455/* Length of the contents of a control message of length len */
456#ifndef CMSG_LEN
457#define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
458#endif
459
460/* Length of the space taken up by a padded control message of length len */
461#ifndef CMSG_SPACE
462#define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
463#endif
464
Darren Tucker8e3653d2003-08-21 16:49:41 +1000465/* given pointer to struct cmsghdr, return pointer to data */
466#ifndef CMSG_DATA
467#define CMSG_DATA(cmsg) ((u_char *)(cmsg) + __CMSG_ALIGN(sizeof(struct cmsghdr)))
468#endif /* CMSG_DATA */
469
470/*
471 * RFC 2292 requires to check msg_controllen, in case that the kernel returns
472 * an empty list for some reasons.
473 */
474#ifndef CMSG_FIRSTHDR
475#define CMSG_FIRSTHDR(mhdr) \
476 ((mhdr)->msg_controllen >= sizeof(struct cmsghdr) ? \
477 (struct cmsghdr *)(mhdr)->msg_control : \
478 (struct cmsghdr *)NULL)
479#endif /* CMSG_FIRSTHDR */
480
Damien Miller0e220db2004-06-15 10:34:08 +1000481#ifndef offsetof
482# define offsetof(type, member) ((size_t) &((type *)0)->member)
483#endif
Darren Tucker8e3653d2003-08-21 16:49:41 +1000484
Damien Miller74d0d4a1999-12-29 02:24:35 +1100485/* Function replacement / compatibility hacks */
486
Damien Miller594a71b2002-04-23 20:22:59 +1000487#if !defined(HAVE_GETADDRINFO) && (defined(HAVE_OGETADDRINFO) || defined(HAVE_NGETADDRINFO))
488# define HAVE_GETADDRINFO
489#endif
490
Tim Rice813f0452002-04-11 20:35:39 -0700491#ifndef HAVE_GETOPT_OPTRESET
Ben Lindstromee9ac352002-06-22 00:26:59 +0000492# undef getopt
493# undef opterr
494# undef optind
495# undef optopt
496# undef optreset
497# undef optarg
498# define getopt(ac, av, o) BSDgetopt(ac, av, o)
499# define opterr BSDopterr
500# define optind BSDoptind
501# define optopt BSDoptopt
502# define optreset BSDoptreset
503# define optarg BSDoptarg
Tim Rice813f0452002-04-11 20:35:39 -0700504#endif
505
Damien Miller74d0d4a1999-12-29 02:24:35 +1100506/* In older versions of libpam, pam_strerror takes a single argument */
507#ifdef HAVE_OLD_PAM
508# define PAM_STRERROR(a,b) pam_strerror((b))
509#else
510# define PAM_STRERROR(a,b) pam_strerror((a),(b))
511#endif
512
Damien Miller82cf0ce2000-12-20 13:34:48 +1100513#ifdef PAM_SUN_CODEBASE
514# define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
515#else
516# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
517#endif
518
Damien Millereca71f82000-01-20 22:38:27 +1100519#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
520# undef HAVE_GETADDRINFO
Damien Millerd54e55c2001-01-04 09:07:12 +1100521#endif
522#if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
523# undef HAVE_FREEADDRINFO
524#endif
525#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
526# undef HAVE_GAI_STRERROR
527#endif
Damien Millereca71f82000-01-20 22:38:27 +1100528
Darren Tucker8db9a0f2004-04-06 21:31:12 +1000529#if defined(BROKEN_UPDWTMPX) && defined(HAVE_UPDWTMPX)
530# undef HAVE_UPDWTMPX
531#endif
532
Damien Miller615f9392000-05-17 22:53:33 +1000533#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
534# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
535#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
536
Kevin Steves86a52b32001-04-05 17:15:08 +0000537#if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100538# define USE_VHANGUP
Kevin Steves86a52b32001-04-05 17:15:08 +0000539#endif /* defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100540
Damien Miller606f8802000-09-16 15:39:56 +1100541#ifndef GETPGRP_VOID
542# define getpgrp() getpgrp(0)
543#endif
544
Darren Tuckerd9f88912005-02-20 21:01:48 +1100545#ifdef USE_BSM_AUDIT
546# define SSH_AUDIT_EVENTS
547# define CUSTOM_SSH_AUDIT_EVENTS
548#endif
549
Damien Miller14a5c992001-11-01 09:32:34 +1100550/* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */
551#if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f)
552# define OPENSSL_free(x) Free(x)
553#endif
554
Ben Lindstrom03bab282002-06-07 03:19:35 +0000555#if !defined(HAVE___func__) && defined(HAVE___FUNCTION__)
556# define __func__ __FUNCTION__
557#elif !defined(HAVE___func__)
558# define __func__ ""
Kevin Steves4846f4a2002-03-22 18:19:53 +0000559#endif
560
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000561#if defined(KRB5) && !defined(HEIMDAL)
562# define krb5_get_err_text(context,code) error_message(code)
563#endif
564
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000565#if defined(SKEYCHALLENGE_4ARG)
566# define _compat_skeychallenge(a,b,c,d) skeychallenge(a,b,c,d)
567#else
568# define _compat_skeychallenge(a,b,c,d) skeychallenge(a,b,c)
569#endif
570
Damien Millere00074a2003-11-24 13:07:45 +1100571/* Maximum number of file descriptors available */
572#ifdef HAVE_SYSCONF
573# define SSH_SYSFDMAX sysconf(_SC_OPEN_MAX)
574#else
575# define SSH_SYSFDMAX 10000
576#endif
577
578
Damien Miller72c9a7e2000-09-24 11:10:13 +1100579/*
580 * Define this to use pipes instead of socketpairs for communicating with the
581 * client program. Socketpairs do not seem to work on all systems.
582 *
Tim Riceb89e6942001-10-29 18:50:39 -0800583 * configure.ac sets this for a few OS's which are known to have problems
Damien Miller72c9a7e2000-09-24 11:10:13 +1100584 * but you may need to set it yourself
585 */
586/* #define USE_PIPES 1 */
587
andre2ff7b5d2000-06-03 14:57:40 +0000588/**
589 ** login recorder definitions
590 **/
591
andre2ff7b5d2000-06-03 14:57:40 +0000592/* FIXME: put default paths back in */
Damien Miller36ccb5c2000-08-09 16:34:27 +1000593#ifndef UTMP_FILE
594# ifdef _PATH_UTMP
595# define UTMP_FILE _PATH_UTMP
596# else
597# ifdef CONF_UTMP_FILE
598# define UTMP_FILE CONF_UTMP_FILE
599# endif
600# endif
andre2ff7b5d2000-06-03 14:57:40 +0000601#endif
Damien Miller36ccb5c2000-08-09 16:34:27 +1000602#ifndef WTMP_FILE
603# ifdef _PATH_WTMP
604# define WTMP_FILE _PATH_WTMP
605# else
606# ifdef CONF_WTMP_FILE
607# define WTMP_FILE CONF_WTMP_FILE
608# endif
609# endif
andre2ff7b5d2000-06-03 14:57:40 +0000610#endif
611/* pick up the user's location for lastlog if given */
Damien Miller36ccb5c2000-08-09 16:34:27 +1000612#ifndef LASTLOG_FILE
613# ifdef _PATH_LASTLOG
614# define LASTLOG_FILE _PATH_LASTLOG
615# else
616# ifdef CONF_LASTLOG_FILE
617# define LASTLOG_FILE CONF_LASTLOG_FILE
618# endif
619# endif
Damien Miller2994e082000-06-04 15:51:47 +1000620#endif
andre2ff7b5d2000-06-03 14:57:40 +0000621
Darren Tucker9df3def2004-02-10 13:01:14 +1100622#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
623# define USE_SHADOW
624#endif
andre2ff7b5d2000-06-03 14:57:40 +0000625
626/* The login() library function in libutil is first choice */
627#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
628# define USE_LOGIN
629
630#else
631/* Simply select your favourite login types. */
632/* Can't do if-else because some systems use several... <sigh> */
633# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
634# define USE_UTMPX
635# endif
636# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
637# define USE_UTMP
638# endif
639# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
640# define USE_WTMPX
641# endif
642# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
643# define USE_WTMP
644# endif
645
646#endif
647
Darren Tucker11f18292004-04-08 16:16:06 +1000648#ifndef UT_LINESIZE
649# define UT_LINESIZE 8
650#endif
651
andre2ff7b5d2000-06-03 14:57:40 +0000652/* I hope that the presence of LASTLOG_FILE is enough to detect this */
653#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
654# define USE_LASTLOG
655#endif
656
Darren Tucker91bf45c2004-03-04 22:59:36 +1100657#ifdef HAVE_OSF_SIA
658# ifdef USE_SHADOW
659# undef USE_SHADOW
660# endif
661# define CUSTOM_SYS_AUTH_PASSWD 1
662#endif
663
Darren Tucker2fba9932005-02-02 23:30:24 +1100664/* HP-UX 11.11 */
665#ifdef BTMP_FILE
666# define _PATH_BTMP BTMP_FILE
667#endif
668
669#if defined(USE_BTMP) && defined(_PATH_BTMP)
670# define CUSTOM_FAILED_LOGIN
671#endif
672
andre2ff7b5d2000-06-03 14:57:40 +0000673/** end of login recorder definitions */
674
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000675#ifdef BROKEN_GETGROUPS
676# define getgroups(a,b) ((a)==0 && (b)==NULL ? NGROUPS_MAX : getgroups((a),(b)))
677#endif
678
679#if defined(HAVE_MMAP) && defined(BROKEN_MMAP)
680# undef HAVE_MMAP
681#endif
682
Damien Miller6b85a7f2000-01-02 11:45:33 +1100683#endif /* _DEFINES_H */