1 /* $Cambridge: exim/src/src/exim.h,v 1.5 2004/12/21 09:40:01 ph10 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2004 */
8 /* See the file NOTICE for conditions of use and distribution. */
11 /* Source files for exim all #include this header, which drags in everything
12 that is needed. They don't all need everything, of course, but it's far too
13 messy to have each one importing its own list, and anyway, most of them need
14 most of these includes. */
16 /* Assume most systems have statfs() unless os.h undefines this macro */
20 /* First of all include the os-specific header, which might set things that
21 are needed by any of the other headers, including system headers. */
25 /* If it didn't define os_find_running_interfaces, use the common function. */
27 #ifndef os_find_running_interfaces
28 #define os_find_running_interfaces os_common_find_running_interfaces
31 /* If it didn't define the base for "base 62" numbers, we really do use 62.
32 This is the case for all real Unix and Unix-like OS. It's only Cygwin and
33 Darwin, with their case-insensitive file systems, that can't use base 62 for
34 making unique names. */
40 /* The maximum value of localhost_number depends on the base being used */
43 #define LOCALHOST_MAX 16
45 #define LOCALHOST_MAX 10
48 /* ANSI C standard includes */
63 #if defined(__svr4__) && defined(__sparc) && ! defined(__EXTENSIONS__)
64 #define __EXTENSIONS__ /* so that SunOS 5 gets NGROUPS_MAX */
71 /* Just in case some aged system doesn't define them... */
74 #define INT_MAX 2147483647
81 /* Some systems have PATH_MAX and some have MAX_PATH_LEN. */
85 #define PATH_MAX MAX_PATH_LEN
91 #include <sys/types.h>
99 /* Not all systems have flock() available. Those that do must define LOCK_SH
106 #ifndef NO_SYSEXITS /* some OS don't have this */
107 #include <sysexits.h>
110 /* A few OS don't have socklen_t; their os.h files define SOCKLEN_T to
111 be size_t or whatever. */
114 #define SOCKLEN_T socklen_t
117 /* Ensure that the sysexits we reference are defined */
119 #ifndef EX_UNAVAILABLE
120 #define EX_UNAVAILABLE 69 /* service unavailable; used for execv fail */
123 #define EX_CANTCREAT 73 /* can't create file: treat as temporary */
126 #define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
129 #define EX_CONFIG 78 /* configuration error */
132 /* This one is not in any sysexits file that I've come across */
134 #define EX_EXECFAILED 127 /* execve() failed */
137 #include <sys/time.h>
138 #include <sys/param.h>
140 #ifndef NO_SYS_RESOURCE_H /* QNX doesn't have this */
141 #include <sys/resource.h>
144 #include <sys/socket.h>
146 /* If we are on an IPv6 system, the macro AF_INET6 will have been defined in
147 the sys/socket.h header. It is helpful to have this defined on an IPv4 system
148 so that it can appear in the code, even if it is never actually used when
149 the code is run. It saves some #ifdef occurrences. */
155 #include <sys/ioctl.h>
157 /* The new standard is statvfs; some OS have statfs. For statvfs the block
158 counts must be multiplied by the "fragment size" f_frsize to get the actual
159 size. In other cases the value seems to be f_bsize (which is sometimes the only
160 block size), so we use a macro to get that instead.
162 Also arrange to be able to cut it out altogether for way-out OS that don't have
163 anything. I've indented a bit here to try to make the mess a bit more
164 intelligible. Note that simply defining one name to be another when
165 HAVE_SYS_STATVFS_H is not set will not work if the system has a statvfs macro
166 or a macro with entries f_frsize and f_bsize. */
169 #ifdef HAVE_SYS_STATVFS_H
170 #include <sys/statvfs.h>
171 #define STATVFS statvfs
172 #define F_FRSIZE f_frsize
174 #define STATVFS statfs
175 #define F_FRSIZE f_bsize
176 #ifdef HAVE_SYS_VFS_H
178 #ifdef HAVE_SYS_STATFS_H
179 #include <sys/statfs.h>
182 #ifdef HAVE_SYS_MOUNT_H
183 #include <sys/mount.h>
187 /* Macros for the fields for the available space for non-superusers; define
188 these only if the OS header has not. Not all OS have f_favail; those that
189 are known to have it define F_FAVAIL as f_favail. The default is to use
193 #define F_BAVAIL f_bavail
197 #define F_FAVAIL f_ffree
200 /* All the systems I've been able to look at seem to have F_FILES */
203 #define F_FILES f_files
209 #ifndef SIOCGIFCONF /* HACK for SunOS 5 */
210 #include <sys/sockio.h>
213 #include <sys/stat.h>
214 #include <sys/wait.h>
215 #include <sys/utsname.h>
218 /* There's a shambles in IRIX6 - it defines EX_OK in unistd.h which conflicts
219 with the definition in sysexits.h. Arrange to preserve it, even though at
220 present Exim doesn't actually use it. */
223 #define SAVE_EX_OK EX_OK
233 #define EX_OK SAVE_EX_OK
241 #include <netinet/in.h>
242 #include <netinet/tcp.h>
243 #include <arpa/inet.h>
244 #include <arpa/nameser.h>
247 /* If arpa/nameser.h defines a maximum name server packet size, use it,
248 provided it is greater than 2048. Otherwise go for a default. PACKETSZ was used
249 for this, but it seems that NS_PACKETSZ is coming into use. */
251 #if defined(NS_PACKETSZ) && NS_PACKETSZ >= 2048
252 #define MAXPACKET NS_PACKETSZ
253 #elif defined(PACKETSZ) && PACKETSZ >= 2048
254 #define MAXPACKET PACKETSZ
256 #define MAXPACKET 2048
259 /* While IPv6 is still young the definitions of T_AAAA and T_A6 may not be
260 included in arpa/nameser.h. Fudge them here. */
270 /* Ancient systems (e.g. SunOS4) don't appear to have T_TXT defined in their
271 header files. I don't suppose they have T_SRV either. */
281 /* We use the private type T_ZNS for retrieving the nameservers for the
282 enclosing zone of a domain, and the private type T_MXH for retrieving
283 the MX hostnames only (without their priorities). */
288 /* The resolv.h header defines __P(x) on some Solaris 2.5.1 systems (without
289 checking that it is already defined, in fact). This conflicts with other
290 headers that behave likewise (see below), leading to compiler warnings. Arrange
291 to undefine it if resolv.h defines it. */
294 #define __P_WAS_DEFINED_BEFORE_RESOLV
299 #if defined(__P) && ! defined (__P_WAS_DEFINED_BEFORE_RESOLV)
303 /* These three are to support the IP option logging code. Linux is
304 different to everyone else and there are also other systems which don't
305 have netinet/ip_var.h, so there's a general macro to control its inclusion. */
307 #include <netinet/in_systm.h>
308 #include <netinet/ip.h>
311 #include <netinet/ip_var.h>
314 /* Linux (and some others) uses a different type for the 2nd argument of
315 iconv(). It's os.h file defines ICONV_ARG2_TYPE. For the rest, define a default
318 #ifndef ICONV_ARG2_TYPE
319 #define ICONV_ARG2_TYPE const char **
322 /* One OS uses a different type for the 5th argument of getsockopt */
324 #ifndef GETSOCKOPT_ARG5_TYPE
325 #define GETSOCKOPT_ARG5_TYPE socklen_t *
328 /* One operating system uses a different type for the 2nd argument of select().
329 Its os.h file defines SELECT_ARG2_TYPE. For the rest, define a default here. */
331 #ifndef SELECT_ARG2_TYPE
332 #define SELECT_ARG2_TYPE fd_set
335 /* One operating system uses a different type for the 4th argument of
336 dn_expand(). Its os.h file defines DN_EXPAND_ARG4_TYPE. For the rest, define a
339 #ifndef DN_EXPAND_ARG4_TYPE
340 #define DN_EXPAND_ARG4_TYPE char *
343 /* One operating system defines a different type for the yield of inet_addr().
344 In Exim code, its value is always assigned to the s_addr members of address
345 structures. Casting the yield to the type of s_addr should fix the problem,
346 since the size of the data is correct. Just in case this ever has to be
347 changed, use a macro for the type, and define it here so that it is possible to
348 use different values for specific OS if ever necessary. */
351 #define S_ADDR_TYPE u_long
354 /* (At least) one operating system (Solaris) defines a different type for the
355 second argument of pam_converse() - the difference is the absence of "const".
356 Its os.h file defines PAM_CONVERSE_ARG2_TYPE. For the rest, define a default
359 #ifndef PAM_CONVERSE_ARG2_TYPE
360 #define PAM_CONVERSE_ARG2_TYPE const struct pam_message
363 /* One operating system (SunOS4) defines getc, ungetc, feof, and ferror as
364 macros and not as functions. Exim needs them to be assignable functions. This
365 flag gets set to cause this to be sorted out here. */
367 #ifdef FUDGE_GETC_AND_FRIENDS
369 extern int getc(FILE *);
371 extern int ungetc(int, FILE *);
373 extern int feof(FILE *);
375 extern int ferror(FILE *);
378 /* The header from the PCRE regex package */
380 #include "pcre/pcre.h"
382 /* Exim includes are in several files. Note that local_scan.h #includes
383 mytypes.h and store.h, so we don't need to mention them explicitly. */
387 /* Before including the rest of the Exim headers, let's clear up some content
388 scanning dependencies. */
390 #ifdef WITH_OLD_DEMIME
391 #define WITH_CONTENT_SCAN
394 #include "local_scan.h"
399 #include "functions.h"
400 #include "dbfunctions.h"
401 #include "osfunctions.h"
403 #ifdef EXPERIMENTAL_BRIGHTMAIL
404 #include "bmi_spam.h"
406 #ifdef EXPERIMENTAL_SPF
409 #ifdef EXPERIMENTAL_SRS
413 /* The following stuff must follow the inclusion of config.h because it
414 requires various things that are set therein. */
416 #if HAVE_ICONV /* Not all OS have this */
424 /* Backward compatibility; LOOKUP_LSEARCH now includes all three */
426 #if (!defined LOOKUP_LSEARCH) && (defined LOOKUP_WILDLSEARCH || defined LOOKUP_NWILDLSEARCH)
427 #define LOOKUP_LSEARCH yes
430 /* Define a union to hold either an IPv4 or an IPv6 sockaddr structure; this
431 simplifies some of the coding. */
434 struct sockaddr_in v4;
436 struct sockaddr_in6 v6;
440 /* If SUPPORT_TLS is not defined, ensure that USE_GNUTLS is also not defined
441 so that if USE_GNUTLS *is* set, we can assume SUPPORT_TLS is also set. */
447 /* If SPOOL_DIRECTORY, LOG_FILE_PATH or PID_FILE_PATH have not been defined,
448 set them to the null string. */
450 #ifndef SPOOL_DIRECTORY
451 #define SPOOL_DIRECTORY ""
453 #ifndef LOG_FILE_PATH
454 #define LOG_FILE_PATH ""
456 #ifndef PID_FILE_PATH
457 #define PID_FILE_PATH ""
460 /* The EDQUOT error code isn't universally available, though it is widespread.
461 There is a particular shambles in SunOS5, where it did not exist originally,
462 but got installed with a particular patch for Solaris 2.4. There is a
463 configuration variable for specifying what the system's "over quota" error is,
464 which will end up in config.h if supplied in OS/Makefile-xxx. If it is not set,
465 default to EDQUOT if it exists, otherwise ENOSPC. */
469 #define ERRNO_QUOTA EDQUOT
471 #define ERRNO_QUOTA ENOSPC
475 /* Ensure PATH_MAX is defined */
479 #define PATH_MAX MAXPATHLEN
481 #define PATH_MAX 1024