blob: 7758bc37a5bbf9f5c6c4195f7dc4d11ee5c1a909 [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 Tuckerd9f88912005-02-20 21:01:48 +110028/* $Id: defines.h,v 1.119 2005/02/20 10:01:49 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 */
57# define MAXPATHLEN 64 /* Should be safe */
58# endif /* PATH_MAX */
59#endif /* MAXPATHLEN */
60
Kevin Stevesef4eea92001-02-05 12:42:17 +000061#ifndef STDIN_FILENO
Damien Miller0f91b4e2000-06-18 15:43:25 +100062# define STDIN_FILENO 0
Kevin Stevesef4eea92001-02-05 12:42:17 +000063#endif
64#ifndef STDOUT_FILENO
Damien Miller0f91b4e2000-06-18 15:43:25 +100065# define STDOUT_FILENO 1
Kevin Stevesef4eea92001-02-05 12:42:17 +000066#endif
67#ifndef STDERR_FILENO
Damien Miller0f91b4e2000-06-18 15:43:25 +100068# define STDERR_FILENO 2
Kevin Stevesef4eea92001-02-05 12:42:17 +000069#endif
Damien Miller0f91b4e2000-06-18 15:43:25 +100070
Ben Lindstrom03f07b42001-02-04 20:44:01 +000071#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
Ben Lindstrom6aebb342001-05-09 00:38:19 +000072#ifdef NGROUPS
73#define NGROUPS_MAX NGROUPS
74#else
Ben Lindstrom03f07b42001-02-04 20:44:01 +000075#define NGROUPS_MAX 0
Ben Lindstrom75713c92001-02-04 20:27:44 +000076#endif
Ben Lindstrom6aebb342001-05-09 00:38:19 +000077#endif
Ben Lindstrom75713c92001-02-04 20:27:44 +000078
Ben Lindstrom0d5af602001-01-09 00:50:29 +000079#ifndef O_NONBLOCK /* Non Blocking Open */
Kevin Stevesef4eea92001-02-05 12:42:17 +000080# define O_NONBLOCK 00004
Ben Lindstrom0d5af602001-01-09 00:50:29 +000081#endif
82
Ben Lindstrom03017ba2001-03-19 03:12:25 +000083#ifndef S_ISDIR
Damien Miller0f91b4e2000-06-18 15:43:25 +100084# define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
Ben Lindstrom03017ba2001-03-19 03:12:25 +000085#endif /* S_ISDIR */
86
Damien Millera8e06ce2003-11-21 23:48:55 +110087#ifndef S_ISREG
Damien Miller0f91b4e2000-06-18 15:43:25 +100088# define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
89#endif /* S_ISREG */
90
Ben Lindstrom03017ba2001-03-19 03:12:25 +000091#ifndef S_ISLNK
Tim Riced14d7022001-03-19 18:31:44 -080092# define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
Ben Lindstrom03017ba2001-03-19 03:12:25 +000093#endif /* S_ISLNK */
94
Damien Miller0f91b4e2000-06-18 15:43:25 +100095#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 Rice813f0452002-04-11 20:35:39 -0700111#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 Lindstrom19d7b8d2001-08-16 00:09:49 +0000119/* *-*-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 Rice4cec93f2002-02-26 08:40:48 -0800124/*
125SCO Open Server 3 has INADDR_LOOPBACK defined in rpc/rpc.h but
126including rpc/rpc.h breaks Solaris 6
127*/
128#ifndef INADDR_LOOPBACK
Tim Riceb8b23042002-07-18 09:31:51 -0700129#define INADDR_LOOPBACK ((u_long)0x7f000001)
Tim Rice4cec93f2002-02-26 08:40:48 -0800130#endif
131
Darren Tucker0234e862004-01-08 23:32:04 +1100132#ifndef __unused
133#define __unused
134#endif
135
Damien Miller74d0d4a1999-12-29 02:24:35 +1100136/* Types */
137
Damien Miller5a3e6831999-12-27 09:48:56 +1100138/* If sys/types.h does not supply intXX_t, supply them ourselves */
139/* (or die trying) */
Damien Millercaf6dd62000-08-29 11:33:50 +1100140
Damien Miller753b1c02001-03-19 12:56:14 +1100141
Damien Millercaf6dd62000-08-29 11:33:50 +1100142#ifndef HAVE_U_INT
143typedef unsigned int u_int;
144#endif
145
Damien Miller5a3e6831999-12-27 09:48:56 +1100146#ifndef HAVE_INTXX_T
Damien Millere0f45742000-01-18 09:12:06 +1100147# if (SIZEOF_CHAR == 1)
148typedef char int8_t;
149# else
150# error "8 bit int type not found."
151# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100152# if (SIZEOF_SHORT_INT == 2)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100153typedef short int int16_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100154# else
Tim Rice81ed5182002-09-25 17:38:46 -0700155# ifdef _UNICOS
Tim Rice4cec93f2002-02-26 08:40:48 -0800156# if (SIZEOF_SHORT_INT == 4)
157typedef short int16_t;
158# else
Ben Lindstrom38e60932001-02-24 00:55:04 +0000159typedef long int16_t;
Tim Rice4cec93f2002-02-26 08:40:48 -0800160# endif
Ben Lindstrom38e60932001-02-24 00:55:04 +0000161# else
162# error "16 bit int type not found."
Tim Rice81ed5182002-09-25 17:38:46 -0700163# endif /* _UNICOS */
Damien Miller5a3e6831999-12-27 09:48:56 +1100164# endif
165# if (SIZEOF_INT == 4)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100166typedef int int32_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100167# else
Tim Rice81ed5182002-09-25 17:38:46 -0700168# ifdef _UNICOS
Ben Lindstrom38e60932001-02-24 00:55:04 +0000169typedef long int32_t;
170# else
171# error "32 bit int type not found."
Tim Rice81ed5182002-09-25 17:38:46 -0700172# endif /* _UNICOS */
Damien Miller5a3e6831999-12-27 09:48:56 +1100173# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100174#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 Millere0f45742000-01-18 09:12:06 +1100179typedef uint8_t u_int8_t;
Damien Miller74d0d4a1999-12-29 02:24:35 +1100180typedef uint16_t u_int16_t;
181typedef uint32_t u_int32_t;
Damien Miller6b85a7f2000-01-02 11:45:33 +1100182# define HAVE_U_INTXX_T 1
Damien Miller5a3e6831999-12-27 09:48:56 +1100183# else
Damien Millere0f45742000-01-18 09:12:06 +1100184# if (SIZEOF_CHAR == 1)
185typedef unsigned char u_int8_t;
186# else
187# error "8 bit int type not found."
188# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100189# if (SIZEOF_SHORT_INT == 2)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100190typedef unsigned short int u_int16_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100191# else
Tim Rice81ed5182002-09-25 17:38:46 -0700192# ifdef _UNICOS
Tim Rice4cec93f2002-02-26 08:40:48 -0800193# if (SIZEOF_SHORT_INT == 4)
194typedef unsigned short u_int16_t;
195# else
Ben Lindstrom38e60932001-02-24 00:55:04 +0000196typedef unsigned long u_int16_t;
Tim Rice4cec93f2002-02-26 08:40:48 -0800197# endif
Ben Lindstrom38e60932001-02-24 00:55:04 +0000198# else
199# error "16 bit int type not found."
200# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100201# endif
202# if (SIZEOF_INT == 4)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100203typedef unsigned int u_int32_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100204# else
Tim Rice81ed5182002-09-25 17:38:46 -0700205# ifdef _UNICOS
Ben Lindstrom38e60932001-02-24 00:55:04 +0000206typedef unsigned long u_int32_t;
207# else
208# error "32 bit int type not found."
209# endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100210# endif
Damien Miller578783e2000-09-23 14:12:24 +1100211# endif
Ben Lindstromd7d7da12001-06-10 17:35:45 +0000212#define __BIT_TYPES_DEFINED__
Damien Miller578783e2000-09-23 14:12:24 +1100213#endif
214
215/* 64-bit types */
216#ifndef HAVE_INT64_T
217# if (SIZEOF_LONG_INT == 8)
218typedef long int int64_t;
219# else
220# if (SIZEOF_LONG_LONG_INT == 8)
221typedef long long int int64_t;
Damien Miller578783e2000-09-23 14:12:24 +1100222# endif
223# endif
224#endif
225#ifndef HAVE_U_INT64_T
226# if (SIZEOF_LONG_INT == 8)
227typedef unsigned long int u_int64_t;
228# else
229# if (SIZEOF_LONG_LONG_INT == 8)
Damien Miller74d0d4a1999-12-29 02:24:35 +1100230typedef unsigned long long int u_int64_t;
Damien Miller5a3e6831999-12-27 09:48:56 +1100231# endif
232# endif
233#endif
234
Damien Miller58be7382001-09-15 21:31:54 +1000235#ifndef HAVE_U_CHAR
236typedef unsigned char u_char;
237# define HAVE_U_CHAR
238#endif /* HAVE_U_CHAR */
239
Ben Lindstrom39621192002-08-21 02:54:11 +0000240#ifndef SIZE_T_MAX
241#define SIZE_T_MAX ULONG_MAX
242#endif /* SIZE_T_MAX */
243
Damien Miller95058511999-12-29 10:36:45 +1100244#ifndef HAVE_SIZE_T
245typedef unsigned int size_t;
Damien Millerb2532b31999-12-31 09:18:12 +1100246# define HAVE_SIZE_T
Darren Tucker3715be32003-12-19 10:58:43 +1100247# define SIZE_T_MAX UINT_MAX
Damien Miller95058511999-12-29 10:36:45 +1100248#endif /* HAVE_SIZE_T */
249
Damien Miller615f9392000-05-17 22:53:33 +1000250#ifndef HAVE_SSIZE_T
251typedef int ssize_t;
252# define HAVE_SSIZE_T
253#endif /* HAVE_SSIZE_T */
254
Ben Lindstrom0d5af602001-01-09 00:50:29 +0000255#ifndef HAVE_CLOCK_T
256typedef long clock_t;
257# define HAVE_CLOCK_T
Kevin Steves69f8fb32001-01-09 18:09:13 +0000258#endif /* HAVE_CLOCK_T */
Ben Lindstrom0d5af602001-01-09 00:50:29 +0000259
Damien Millerb54b40e2000-06-23 08:23:34 +1000260#ifndef HAVE_SA_FAMILY_T
261typedef int sa_family_t;
262# define HAVE_SA_FAMILY_T
263#endif /* HAVE_SA_FAMILY_T */
264
Damien Miller0f91b4e2000-06-18 15:43:25 +1000265#ifndef HAVE_PID_T
266typedef int pid_t;
267# define HAVE_PID_T
268#endif /* HAVE_PID_T */
269
Tim Rice4cec93f2002-02-26 08:40:48 -0800270#ifndef HAVE_SIG_ATOMIC_T
271typedef int sig_atomic_t;
272# define HAVE_SIG_ATOMIC_T
273#endif /* HAVE_SIG_ATOMIC_T */
274
Damien Miller0f91b4e2000-06-18 15:43:25 +1000275#ifndef HAVE_MODE_T
276typedef int mode_t;
277# define HAVE_MODE_T
278#endif /* HAVE_MODE_T */
279
Damien Miller34132e52000-01-14 15:45:46 +1100280#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 Miller78315eb2000-09-29 23:01:36 +1100284#ifndef HAVE_SYS_UN_H
285struct sockaddr_un {
286 short sun_family; /* AF_UNIX */
287 char sun_path[108]; /* path name (gag) */
288};
289#endif /* HAVE_SYS_UN_H */
290
Darren Tuckerd9f88912005-02-20 21:01:48 +1100291#ifndef HAVE_IN_ADDR_T
292typedef u_int32_t in_addr_t;
293#endif
294
Damien Miller78315eb2000-09-29 23:01:36 +1100295#if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE)
296#define _STRUCT_WINSIZE
297struct winsize {
298 unsigned short ws_row; /* rows, in characters */
299 unsigned short ws_col; /* columns, in character */
300 unsigned short ws_xpixel; /* horizontal size, pixels */
301 unsigned short ws_ypixel; /* vertical size, pixels */
302};
303#endif
304
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000305/* *-*-nto-qnx does not define this type in the system headers */
306#ifdef MISSING_FD_MASK
307 typedef unsigned long int fd_mask;
308#endif
309
Damien Miller74d0d4a1999-12-29 02:24:35 +1100310/* Paths */
311
Damien Miller5a3e6831999-12-27 09:48:56 +1100312#ifndef _PATH_BSHELL
313# define _PATH_BSHELL "/bin/sh"
314#endif
Damien Miller9de61e82001-03-19 10:09:27 +1100315#ifndef _PATH_CSHELL
316# define _PATH_CSHELL "/bin/csh"
317#endif
318#ifndef _PATH_SHELLS
319# define _PATH_SHELLS "/etc/shells"
320#endif
Damien Miller5a3e6831999-12-27 09:48:56 +1100321
322#ifdef USER_PATH
323# ifdef _PATH_STDPATH
324# undef _PATH_STDPATH
325# endif
326# define _PATH_STDPATH USER_PATH
327#endif
328
329#ifndef _PATH_STDPATH
330# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
331#endif
332
Darren Tuckere1a790d2003-09-16 11:52:19 +1000333#ifndef SUPERUSER_PATH
334# define SUPERUSER_PATH _PATH_STDPATH
335#endif
336
Damien Miller5a3e6831999-12-27 09:48:56 +1100337#ifndef _PATH_DEVNULL
338# define _PATH_DEVNULL "/dev/null"
339#endif
340
Damien Miller615f9392000-05-17 22:53:33 +1000341#ifndef MAIL_DIRECTORY
342# define MAIL_DIRECTORY "/var/spool/mail"
343#endif
344
Damien Miller5a3e6831999-12-27 09:48:56 +1100345#ifndef MAILDIR
346# define MAILDIR MAIL_DIRECTORY
347#endif
348
349#if !defined(_PATH_MAILDIR) && defined(MAILDIR)
350# define _PATH_MAILDIR MAILDIR
351#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
352
Damien Millerad833b32000-08-23 10:46:23 +1000353#ifndef _PATH_NOLOGIN
354# define _PATH_NOLOGIN "/etc/nologin"
355#endif
356
Damien Miller72c9a7e2000-09-24 11:10:13 +1100357/* Define this to be the path of the xauth program. */
Kevin Steves37a777e2001-06-28 00:13:48 +0000358#ifdef XAUTH_PATH
359#define _PATH_XAUTH XAUTH_PATH
Damien Miller72c9a7e2000-09-24 11:10:13 +1100360#endif /* XAUTH_PATH */
361
Kevin Stevesf49a1192002-01-06 02:32:57 +0000362/* derived from XF4/xc/lib/dps/Xlibnet.h */
363#ifndef X_UNIX_PATH
Kevin Steves2f8f6e32002-01-08 21:59:06 +0000364# ifdef __hpux
365# define X_UNIX_PATH "/var/spool/sockets/X11/%u"
366# else
367# define X_UNIX_PATH "/tmp/.X11-unix/X%u"
368# endif
Kevin Stevesf49a1192002-01-06 02:32:57 +0000369#endif /* X_UNIX_PATH */
370#define _PATH_UNIX_X X_UNIX_PATH
371
Damien Miller4192c462001-02-09 22:55:16 +1100372#ifndef _PATH_TTY
373# define _PATH_TTY "/dev/tty"
374#endif
375
Damien Miller74d0d4a1999-12-29 02:24:35 +1100376/* Macros */
377
Damien Millerad833b32000-08-23 10:46:23 +1000378#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
379# define HAVE_LOGIN_CAP
380#endif
381
Damien Miller5a3e6831999-12-27 09:48:56 +1100382#ifndef MAX
383# define MAX(a,b) (((a)>(b))?(a):(b))
384# define MIN(a,b) (((a)<(b))?(a):(b))
385#endif
386
Damien Miller79438cc2001-02-16 12:34:57 +1100387#ifndef roundup
388# define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
389#endif
390
Damien Miller5a3e6831999-12-27 09:48:56 +1100391#ifndef timersub
Damien Miller79438cc2001-02-16 12:34:57 +1100392#define timersub(a, b, result) \
393 do { \
394 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
395 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
396 if ((result)->tv_usec < 0) { \
397 --(result)->tv_sec; \
398 (result)->tv_usec += 1000000; \
399 } \
Damien Miller5a3e6831999-12-27 09:48:56 +1100400 } while (0)
401#endif
402
Damien Miller3bc0c062003-01-24 11:50:32 +1100403#ifndef TIMEVAL_TO_TIMESPEC
404#define TIMEVAL_TO_TIMESPEC(tv, ts) { \
405 (ts)->tv_sec = (tv)->tv_sec; \
406 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
407}
408#endif
409
410#ifndef TIMESPEC_TO_TIMEVAL
411#define TIMESPEC_TO_TIMEVAL(tv, ts) { \
412 (tv)->tv_sec = (ts)->tv_sec; \
413 (tv)->tv_usec = (ts)->tv_nsec / 1000; \
414}
415#endif
416
Damien Miller5a3e6831999-12-27 09:48:56 +1100417#ifndef __P
418# define __P(x) x
419#endif
420
Damien Miller1c67c992000-03-14 10:16:34 +1100421#if !defined(IN6_IS_ADDR_V4MAPPED)
422# define IN6_IS_ADDR_V4MAPPED(a) \
Damien Millerdb819592000-03-14 13:44:01 +1100423 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
424 (((u_int32_t *) (a))[2] == htonl (0xffff)))
Damien Miller1c67c992000-03-14 10:16:34 +1100425#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
426
Damien Miller5a3e6831999-12-27 09:48:56 +1100427#if !defined(__GNUC__) || (__GNUC__ < 2)
Damien Millere0f45742000-01-18 09:12:06 +1100428# define __attribute__(x)
Damien Miller5a3e6831999-12-27 09:48:56 +1100429#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
430
Darren Tucker59bf4a92004-06-22 13:27:16 +1000431#ifndef __dead
432# define __dead __attribute__((noreturn))
433#endif
434
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +0000435/* *-*-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
Damien Millerd77facd2002-04-23 22:59:51 +1000440#ifndef OSSH_ALIGNBYTES
441#define OSSH_ALIGNBYTES (sizeof(int) - 1)
Kevin Steves219bef12002-03-22 20:53:32 +0000442#endif
443#ifndef __CMSG_ALIGN
Damien Millerd77facd2002-04-23 22:59:51 +1000444#define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES)
Kevin Steves219bef12002-03-22 20:53:32 +0000445#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
Darren Tucker8e3653d2003-08-21 16:49:41 +1000457/* 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
Damien Miller0e220db2004-06-15 10:34:08 +1000473#ifndef offsetof
474# define offsetof(type, member) ((size_t) &((type *)0)->member)
475#endif
Darren Tucker8e3653d2003-08-21 16:49:41 +1000476
Damien Miller74d0d4a1999-12-29 02:24:35 +1100477/* Function replacement / compatibility hacks */
478
Damien Miller594a71b2002-04-23 20:22:59 +1000479#if !defined(HAVE_GETADDRINFO) && (defined(HAVE_OGETADDRINFO) || defined(HAVE_NGETADDRINFO))
480# define HAVE_GETADDRINFO
481#endif
482
Tim Rice813f0452002-04-11 20:35:39 -0700483#ifndef HAVE_GETOPT_OPTRESET
Ben Lindstromee9ac352002-06-22 00:26:59 +0000484# undef getopt
485# undef opterr
486# undef optind
487# undef optopt
488# undef optreset
489# undef optarg
490# define getopt(ac, av, o) BSDgetopt(ac, av, o)
491# define opterr BSDopterr
492# define optind BSDoptind
493# define optopt BSDoptopt
494# define optreset BSDoptreset
495# define optarg BSDoptarg
Tim Rice813f0452002-04-11 20:35:39 -0700496#endif
497
Damien Miller74d0d4a1999-12-29 02:24:35 +1100498/* In older versions of libpam, pam_strerror takes a single argument */
499#ifdef HAVE_OLD_PAM
500# define PAM_STRERROR(a,b) pam_strerror((b))
501#else
502# define PAM_STRERROR(a,b) pam_strerror((a),(b))
503#endif
504
Damien Miller82cf0ce2000-12-20 13:34:48 +1100505#ifdef PAM_SUN_CODEBASE
506# define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
507#else
508# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
509#endif
510
Damien Millereca71f82000-01-20 22:38:27 +1100511#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
512# undef HAVE_GETADDRINFO
Damien Millerd54e55c2001-01-04 09:07:12 +1100513#endif
514#if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
515# undef HAVE_FREEADDRINFO
516#endif
517#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
518# undef HAVE_GAI_STRERROR
519#endif
Damien Millereca71f82000-01-20 22:38:27 +1100520
Darren Tucker8db9a0f2004-04-06 21:31:12 +1000521#if defined(BROKEN_UPDWTMPX) && defined(HAVE_UPDWTMPX)
522# undef HAVE_UPDWTMPX
523#endif
524
Damien Miller615f9392000-05-17 22:53:33 +1000525#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
526# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
527#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
528
Kevin Steves86a52b32001-04-05 17:15:08 +0000529#if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100530# define USE_VHANGUP
Kevin Steves86a52b32001-04-05 17:15:08 +0000531#endif /* defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100532
Damien Miller606f8802000-09-16 15:39:56 +1100533#ifndef GETPGRP_VOID
534# define getpgrp() getpgrp(0)
535#endif
536
Darren Tuckerd9f88912005-02-20 21:01:48 +1100537#ifdef USE_BSM_AUDIT
538# define SSH_AUDIT_EVENTS
539# define CUSTOM_SSH_AUDIT_EVENTS
540#endif
541
Damien Miller14a5c992001-11-01 09:32:34 +1100542/* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */
543#if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f)
544# define OPENSSL_free(x) Free(x)
545#endif
546
Ben Lindstrom03bab282002-06-07 03:19:35 +0000547#if !defined(HAVE___func__) && defined(HAVE___FUNCTION__)
548# define __func__ __FUNCTION__
549#elif !defined(HAVE___func__)
550# define __func__ ""
Kevin Steves4846f4a2002-03-22 18:19:53 +0000551#endif
552
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000553#if defined(KRB5) && !defined(HEIMDAL)
554# define krb5_get_err_text(context,code) error_message(code)
555#endif
556
Darren Tucker06a8cfe2004-04-14 17:24:30 +1000557#if defined(SKEYCHALLENGE_4ARG)
558# define _compat_skeychallenge(a,b,c,d) skeychallenge(a,b,c,d)
559#else
560# define _compat_skeychallenge(a,b,c,d) skeychallenge(a,b,c)
561#endif
562
Damien Millere00074a2003-11-24 13:07:45 +1100563/* Maximum number of file descriptors available */
564#ifdef HAVE_SYSCONF
565# define SSH_SYSFDMAX sysconf(_SC_OPEN_MAX)
566#else
567# define SSH_SYSFDMAX 10000
568#endif
569
570
Damien Miller72c9a7e2000-09-24 11:10:13 +1100571/*
572 * Define this to use pipes instead of socketpairs for communicating with the
573 * client program. Socketpairs do not seem to work on all systems.
574 *
Tim Riceb89e6942001-10-29 18:50:39 -0800575 * configure.ac sets this for a few OS's which are known to have problems
Damien Miller72c9a7e2000-09-24 11:10:13 +1100576 * but you may need to set it yourself
577 */
578/* #define USE_PIPES 1 */
579
andre2ff7b5d2000-06-03 14:57:40 +0000580/**
581 ** login recorder definitions
582 **/
583
andre2ff7b5d2000-06-03 14:57:40 +0000584/* FIXME: put default paths back in */
Damien Miller36ccb5c2000-08-09 16:34:27 +1000585#ifndef UTMP_FILE
586# ifdef _PATH_UTMP
587# define UTMP_FILE _PATH_UTMP
588# else
589# ifdef CONF_UTMP_FILE
590# define UTMP_FILE CONF_UTMP_FILE
591# endif
592# endif
andre2ff7b5d2000-06-03 14:57:40 +0000593#endif
Damien Miller36ccb5c2000-08-09 16:34:27 +1000594#ifndef WTMP_FILE
595# ifdef _PATH_WTMP
596# define WTMP_FILE _PATH_WTMP
597# else
598# ifdef CONF_WTMP_FILE
599# define WTMP_FILE CONF_WTMP_FILE
600# endif
601# endif
andre2ff7b5d2000-06-03 14:57:40 +0000602#endif
603/* pick up the user's location for lastlog if given */
Damien Miller36ccb5c2000-08-09 16:34:27 +1000604#ifndef LASTLOG_FILE
605# ifdef _PATH_LASTLOG
606# define LASTLOG_FILE _PATH_LASTLOG
607# else
608# ifdef CONF_LASTLOG_FILE
609# define LASTLOG_FILE CONF_LASTLOG_FILE
610# endif
611# endif
Damien Miller2994e082000-06-04 15:51:47 +1000612#endif
andre2ff7b5d2000-06-03 14:57:40 +0000613
Darren Tucker9df3def2004-02-10 13:01:14 +1100614#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
615# define USE_SHADOW
616#endif
andre2ff7b5d2000-06-03 14:57:40 +0000617
618/* The login() library function in libutil is first choice */
619#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
620# define USE_LOGIN
621
622#else
623/* Simply select your favourite login types. */
624/* Can't do if-else because some systems use several... <sigh> */
625# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
626# define USE_UTMPX
627# endif
628# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
629# define USE_UTMP
630# endif
631# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
632# define USE_WTMPX
633# endif
634# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
635# define USE_WTMP
636# endif
637
638#endif
639
Darren Tucker11f18292004-04-08 16:16:06 +1000640#ifndef UT_LINESIZE
641# define UT_LINESIZE 8
642#endif
643
andre2ff7b5d2000-06-03 14:57:40 +0000644/* I hope that the presence of LASTLOG_FILE is enough to detect this */
645#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
646# define USE_LASTLOG
647#endif
648
Darren Tucker91bf45c2004-03-04 22:59:36 +1100649#ifdef HAVE_OSF_SIA
650# ifdef USE_SHADOW
651# undef USE_SHADOW
652# endif
653# define CUSTOM_SYS_AUTH_PASSWD 1
654#endif
655
Darren Tucker2fba9932005-02-02 23:30:24 +1100656/* HP-UX 11.11 */
657#ifdef BTMP_FILE
658# define _PATH_BTMP BTMP_FILE
659#endif
660
661#if defined(USE_BTMP) && defined(_PATH_BTMP)
662# define CUSTOM_FAILED_LOGIN
663#endif
664
andre2ff7b5d2000-06-03 14:57:40 +0000665/** end of login recorder definitions */
666
Damien Miller6b85a7f2000-01-02 11:45:33 +1100667#endif /* _DEFINES_H */