1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2012 */
6 /* See the file NOTICE for conditions of use and distribution. */
9 /* Source files for exim all #include this header, which drags in everything
10 that is needed. They don't all need everything, of course, but it's far too
11 messy to have each one importing its own list, and anyway, most of them need
12 most of these includes. */
14 /* Assume most systems have statfs() unless os.h undefines this macro */
18 /* Similarly, assume most systems have srandom() unless os.h undefines it.
19 This call dates back at least as far as SUSv2. */
23 /* This is primarily for the Gnu C library; we define it before os.h so that
24 os.h has a chance to hurriedly undef it, Just In Case. We need C99 for some
25 64-bit math support, and defining _ISOC99_SOURCE breaks <resolv.h> and friends.
30 /* First of all include the os-specific header, which might set things that
31 are needed by any of the other headers, including system headers. */
35 /* If it didn't define os_find_running_interfaces, use the common function. */
37 #ifndef os_find_running_interfaces
38 #define os_find_running_interfaces os_common_find_running_interfaces
41 /* If it didn't define the base for "base 62" numbers, we really do use 62.
42 This is the case for all real Unix and Unix-like OS. It's only Cygwin and
43 Darwin, with their case-insensitive file systems, that can't use base 62 for
44 making unique names. */
50 /* The maximum value of localhost_number depends on the base being used */
53 #define LOCALHOST_MAX 16
55 #define LOCALHOST_MAX 10
58 /* If not overriden by os.h, dynamic libraries have filenames ending .so */
60 # define DYNLIB_FN_EXT "so"
63 /* ANSI C standard includes */
79 #if defined(__svr4__) && defined(__sparc) && ! defined(__EXTENSIONS__)
80 #define __EXTENSIONS__ /* so that SunOS 5 gets NGROUPS_MAX */
87 /* C99 integer types, figure out how to undo this if needed for older systems */
91 /* Just in case some aged system doesn't define them... */
94 #define INT_MAX 2147483647
98 #define INT_MIN (-INT_MAX - 1)
102 #define SHRT_MAX 32767
106 #define UCHAR_MAX 255
109 /* Some systems have PATH_MAX and some have MAX_PATH_LEN. */
113 #define PATH_MAX MAX_PATH_LEN
115 #define PATH_MAX 1024
119 #include <sys/types.h>
120 #include <sys/file.h>
130 /* Not all systems have flock() available. Those that do must define LOCK_SH
137 #ifndef NO_SYSEXITS /* some OS don't have this */
138 #include <sysexits.h>
141 /* A few OS don't have socklen_t; their os.h files define EXIM_SOCKLEN_T to
142 be size_t or whatever. We used to use SOCKLEN_T, but then it was discovered
143 that this is used by the AIX include files. */
145 #ifndef EXIM_SOCKLEN_T
146 #define EXIM_SOCKLEN_T socklen_t
149 /* Ensure that the sysexits we reference are defined */
151 #ifndef EX_UNAVAILABLE
152 #define EX_UNAVAILABLE 69 /* service unavailable; used for execv fail */
155 #define EX_CANTCREAT 73 /* can't create file: treat as temporary */
158 #define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
161 #define EX_CONFIG 78 /* configuration error */
164 /* This one is not in any sysexits file that I've come across */
166 #define EX_EXECFAILED 127 /* execve() failed */
169 #include <sys/time.h>
170 #include <sys/param.h>
172 #ifndef NO_SYS_RESOURCE_H /* QNX doesn't have this */
173 #include <sys/resource.h>
176 #include <sys/socket.h>
178 /* If we are on an IPv6 system, the macro AF_INET6 will have been defined in
179 the sys/socket.h header. It is helpful to have this defined on an IPv4 system
180 so that it can appear in the code, even if it is never actually used when
181 the code is run. It saves some #ifdef occurrences. */
187 #include <sys/ioctl.h>
189 /* The new standard is statvfs; some OS have statfs. For statvfs the block
190 counts must be multiplied by the "fragment size" f_frsize to get the actual
191 size. In other cases the value seems to be f_bsize (which is sometimes the only
192 block size), so we use a macro to get that instead.
194 Also arrange to be able to cut it out altogether for way-out OS that don't have
195 anything. I've indented a bit here to try to make the mess a bit more
196 intelligible. Note that simply defining one name to be another when
197 HAVE_SYS_STATVFS_H is not set will not work if the system has a statvfs macro
198 or a macro with entries f_frsize and f_bsize. */
201 #ifdef HAVE_SYS_STATVFS_H
202 #include <sys/statvfs.h>
203 #define STATVFS statvfs
204 #define F_FRSIZE f_frsize
206 #define STATVFS statfs
207 #define F_FRSIZE f_bsize
208 #ifdef HAVE_SYS_VFS_H
210 #ifdef HAVE_SYS_STATFS_H
211 #include <sys/statfs.h>
214 #ifdef HAVE_SYS_MOUNT_H
215 #include <sys/mount.h>
219 /* Macros for the fields for the available space for non-superusers; define
220 these only if the OS header has not. Not all OS have f_favail; those that
221 are known to have it define F_FAVAIL as f_favail. The default is to use
225 #define F_BAVAIL f_bavail
229 #define F_FAVAIL f_ffree
232 /* All the systems I've been able to look at seem to have F_FILES */
235 #define F_FILES f_files
241 #ifndef SIOCGIFCONF /* HACK for SunOS 5 */
242 #include <sys/sockio.h>
245 #include <sys/stat.h>
246 #include <sys/wait.h>
247 #include <sys/utsname.h>
250 /* There's a shambles in IRIX6 - it defines EX_OK in unistd.h which conflicts
251 with the definition in sysexits.h. Exim does not actually use this macro, so we
252 just undefine it. It would be nice to be able to re-instate the definition from
253 sysexits.h if there is no definition in unistd.h, but I do not think there is a
254 way to do this in C because macro definitions are not scanned for other macros
255 at definition time. [The code here used to assume they were, until I was
256 disabused of the notion. Luckily, since EX_OK is not used, it didn't matter.] */
269 #include <netinet/in.h>
270 #include <netinet/tcp.h>
271 #include <arpa/inet.h>
272 #include <arpa/nameser.h>
275 /* If arpa/nameser.h defines a maximum name server packet size, use it,
276 provided it is greater than 2048. Otherwise go for a default. PACKETSZ was used
277 for this, but it seems that NS_PACKETSZ is coming into use. */
279 #if defined(NS_PACKETSZ) && NS_PACKETSZ >= 2048
280 #define MAXPACKET NS_PACKETSZ
281 #elif defined(PACKETSZ) && PACKETSZ >= 2048
282 #define MAXPACKET PACKETSZ
284 #define MAXPACKET 2048
287 /* While IPv6 is still young the definitions of T_AAAA and T_A6 may not be
288 included in arpa/nameser.h. Fudge them here. */
298 /* Ancient systems (e.g. SunOS4) don't appear to have T_TXT defined in their
299 header files. I don't suppose they have T_SRV either. */
309 /* Many systems do not have T_SPF. */
315 /* It seems that some versions of arpa/nameser.h don't define *any* of the
316 T_xxx macros, which seem to be non-standard nowadays. Just to be on the safe
317 side, put in definitions for all the ones that Exim uses. */
344 /* We define a few private types for special DNS lookups:
346 . T_ZNS gets the nameservers of the enclosing zone of a domain
348 . T_MXH gets the MX hostnames only (without their priorities)
350 . T_CSA gets the domain's Client SMTP Authorization SRV record
358 /* The resolv.h header defines __P(x) on some Solaris 2.5.1 systems (without
359 checking that it is already defined, in fact). This conflicts with other
360 headers that behave likewise (see below), leading to compiler warnings. Arrange
361 to undefine it if resolv.h defines it. */
364 #define __P_WAS_DEFINED_BEFORE_RESOLV
369 #if defined(__P) && ! defined (__P_WAS_DEFINED_BEFORE_RESOLV)
373 /* If not defined by os.h, we do nothing special to push DNS resolver state
374 back to be available by the classic resolver routines. Also, provide
375 prototype for our get routine, unless defined away. */
377 #ifndef os_put_dns_resolver_res
378 # define os_put_dns_resolver_res(R) do {/**/} while(0)
380 #ifndef os_get_dns_resolver_res
381 res_state os_get_dns_resolver_res(void);
384 /* These three are to support the IP option logging code. Linux is
385 different to everyone else and there are also other systems which don't
386 have netinet/ip_var.h, so there's a general macro to control its inclusion. */
388 #include <netinet/in_systm.h>
389 #include <netinet/ip.h>
392 #include <netinet/ip_var.h>
395 /* Linux (and some others) uses a different type for the 2nd argument of
396 iconv(). It's os.h file defines ICONV_ARG2_TYPE. For the rest, define a default
399 #ifndef ICONV_ARG2_TYPE
400 #define ICONV_ARG2_TYPE const char **
403 /* One OS uses a different type for the 5th argument of getsockopt */
405 #ifndef GETSOCKOPT_ARG5_TYPE
406 #define GETSOCKOPT_ARG5_TYPE socklen_t *
409 /* One operating system uses a different type for the 2nd argument of select().
410 Its os.h file defines SELECT_ARG2_TYPE. For the rest, define a default here. */
412 #ifndef SELECT_ARG2_TYPE
413 #define SELECT_ARG2_TYPE fd_set
416 /* One operating system uses a different type for the 4th argument of
417 dn_expand(). Its os.h file defines DN_EXPAND_ARG4_TYPE. For the rest, define a
420 #ifndef DN_EXPAND_ARG4_TYPE
421 #define DN_EXPAND_ARG4_TYPE char *
424 /* One operating system defines a different type for the yield of inet_addr().
425 In Exim code, its value is always assigned to the s_addr members of address
426 structures. Casting the yield to the type of s_addr should fix the problem,
427 since the size of the data is correct. Just in case this ever has to be
428 changed, use a macro for the type, and define it here so that it is possible to
429 use different values for specific OS if ever necessary. */
432 #define S_ADDR_TYPE u_long
435 /* (At least) one operating system (Solaris) defines a different type for the
436 second argument of pam_converse() - the difference is the absence of "const".
437 Its os.h file defines PAM_CONVERSE_ARG2_TYPE. For the rest, define a default
440 #ifndef PAM_CONVERSE_ARG2_TYPE
441 #define PAM_CONVERSE_ARG2_TYPE const struct pam_message
444 /* One operating system (SunOS4) defines getc, ungetc, feof, and ferror as
445 macros and not as functions. Exim needs them to be assignable functions. This
446 flag gets set to cause this to be sorted out here. */
448 #ifdef FUDGE_GETC_AND_FRIENDS
450 extern int getc(FILE *);
452 extern int ungetc(int, FILE *);
454 extern int feof(FILE *);
456 extern int ferror(FILE *);
459 /* The header from the PCRE regex package */
463 /* Exim includes are in several files. Note that local_scan.h #includes
464 config.h, mytypes.h, and store.h, so we don't need to mention them explicitly.
467 #include "local_scan.h"
472 #include "functions.h"
473 #include "dbfunctions.h"
474 #include "osfunctions.h"
476 #ifdef EXPERIMENTAL_BRIGHTMAIL
477 #include "bmi_spam.h"
479 #ifdef EXPERIMENTAL_SPF
482 #ifdef EXPERIMENTAL_SRS
489 /* The following stuff must follow the inclusion of config.h because it
490 requires various things that are set therein. */
492 #if HAVE_ICONV /* Not all OS have this */
496 #if defined(USE_READLINE) || defined(EXPAND_DLFUNC) || defined (LOOKUP_MODULE_DIR)
500 #ifdef ENABLE_DISABLE_FSYNC
501 #define EXIMfsync(f) (disable_fsync? 0 : fsync(f))
503 #define EXIMfsync(f) fsync(f)
506 /* Backward compatibility; LOOKUP_LSEARCH now includes all three */
508 #if (!defined LOOKUP_LSEARCH) && (defined LOOKUP_WILDLSEARCH || defined LOOKUP_NWILDLSEARCH)
509 #define LOOKUP_LSEARCH yes
512 /* Define a union to hold either an IPv4 or an IPv6 sockaddr structure; this
513 simplifies some of the coding. We include the sockaddr to reduce type-punning
517 struct sockaddr_in v4;
519 struct sockaddr_in6 v6;
524 /* If SUPPORT_TLS is not defined, ensure that USE_GNUTLS is also not defined
525 so that if USE_GNUTLS *is* set, we can assume SUPPORT_TLS is also set. */
531 /* If SPOOL_DIRECTORY, LOG_FILE_PATH or PID_FILE_PATH have not been defined,
532 set them to the null string. */
534 #ifndef SPOOL_DIRECTORY
535 #define SPOOL_DIRECTORY ""
537 #ifndef LOG_FILE_PATH
538 #define LOG_FILE_PATH ""
540 #ifndef PID_FILE_PATH
541 #define PID_FILE_PATH ""
544 /* The EDQUOT error code isn't universally available, though it is widespread.
545 There is a particular shambles in SunOS5, where it did not exist originally,
546 but got installed with a particular patch for Solaris 2.4. There is a
547 configuration variable for specifying what the system's "over quota" error is,
548 which will end up in config.h if supplied in OS/Makefile-xxx. If it is not set,
549 default to EDQUOT if it exists, otherwise ENOSPC. */
553 #define ERRNO_QUOTA EDQUOT
555 #define ERRNO_QUOTA ENOSPC
559 /* Ensure PATH_MAX is defined */
563 #define PATH_MAX MAXPATHLEN
565 #define PATH_MAX 1024