X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=blobdiff_plain;f=src%2Fsrc%2Fos.c;h=96ee35562985ea6eb07d664696a7a483d2f5eb30;hp=6a9ed3b73a817b9611bbeb034abd7cf5ff936a72;hb=0a3df1d651b9e11c7c91bf095aebaf8c65d6c276;hpb=184e88237dea64ce48076cdd0184612d057cbafd;ds=sidebyside diff --git a/src/src/os.c b/src/src/os.c index 6a9ed3b73..96ee35562 100644 --- a/src/src/os.c +++ b/src/src/os.c @@ -1,10 +1,8 @@ -/* $Cambridge: exim/src/src/os.c,v 1.6 2007/01/08 10:50:18 ph10 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2007 */ +/* Copyright (c) University of Cambridge 1995 - 2009 */ /* See the file NOTICE for conditions of use and distribution. */ #ifdef STAND_ALONE @@ -167,8 +165,8 @@ that have nothing. It provides a basic translation for the common standard signal numbers. I've been extra cautious with the ifdef's here. Probably more than is necessary... */ -char * -os_strsignal(int n) +const char * +os_strsignal(const int n) { switch (n) { @@ -284,8 +282,8 @@ switch (n) exit codes into text, but this function is implemented this way so that if any OS does have such a thing, it could be used instead of this build-in one. */ -char * -os_strexit(int n) +const char * +os_strexit(const int n) { switch (n) { @@ -463,6 +461,75 @@ calls the common function; on Linux it calls the Linux function. This function finds the addresses of all the running interfaces on the machine. A chain of blocks containing the textual form of the addresses is returned. +getifaddrs() provides a sane consistent way to query this on modern OSs, +otherwise fall back to a maze of twisty ioctl() calls + +Arguments: none +Returns: a chain of ip_address_items, each pointing to a textual + version of an IP address, with the port field set to zero +*/ + + +#ifndef NO_FIND_INTERFACES + +#ifdef HAVE_GETIFADDRS + +#include + +ip_address_item * +os_common_find_running_interfaces(void) +{ +struct ifaddrs *ifalist = NULL; +ip_address_item *yield = NULL; +ip_address_item *last = NULL; +ip_address_item *next; + +if (getifaddrs(&ifalist) != 0) + log_write(0, LOG_PANIC_DIE, "Unable to call getifaddrs: %d %s", + errno, strerror(errno)); + +struct ifaddrs *ifa; +for (ifa = ifalist; ifa != NULL; ifa = ifa->ifa_next) + { + if (ifa->ifa_addr->sa_family != AF_INET +#if HAVE_IPV6 + && ifa->ifa_addr->sa_family != AF_INET6 +#endif /* HAVE_IPV6 */ + ) + continue; + + if ( !(ifa->ifa_flags & IFF_UP) ) /* Only want 'UP' interfaces */ + continue; + + /* Create a data block for the address, fill in the data, and put it on the + chain. */ + + next = store_get(sizeof(ip_address_item)); + next->next = NULL; + next->port = 0; + (void)host_ntoa(-1, ifa->ifa_addr, next->address, NULL); + + if (yield == NULL) + yield = last = next; + else + { + last->next = next; + last = next; + } + + DEBUG(D_interface) debug_printf("Actual local interface address is %s (%s)\n", + last->address, ifa->ifa_name); + } + +/* free the list of addresses, and return the chain of data blocks. */ + +freeifaddrs (ifalist); +return yield; +} + +#else /* HAVE_GETIFADDRS */ + +/* Problems: (1) Solaris 2 has the SIOGIFNUM call to get the number of interfaces, but @@ -486,15 +553,8 @@ Problems: the former, calling the latter does no harm, but it causes grief on Linux and BSD systems in the case of IP aliasing, so a means of cutting it out is provided. - -Arguments: none -Returns: a chain of ip_address_items, each pointing to a textual - version of an IP address, with the port field set to zero */ - -#ifndef NO_FIND_INTERFACES - /* If there is IPv6 support, and SIOCGLIFCONF is defined, define macros to use these new, longer versions of the old IPv4 interfaces. Otherwise, define the macros to use the historical versions. */ @@ -556,7 +616,7 @@ char *cp; char buf[MAX_INTERFACES*sizeof(struct V_ifreq)]; struct sockaddr *addrp; size_t len = 0; -char addrbuf[256]; +char addrbuf[512]; /* We have to create a socket in order to do ioctls on it to find out what we want to know. */ @@ -701,6 +761,8 @@ for (cp = buf; cp < buf + ifc.V_ifc_len; cp += len) return yield; } +#endif /* HAVE_GETIFADDRS */ + #else /* NO_FIND_INTERFACES */ /* Some experimental or developing OS (e.g. GNU/Hurd) do not have the ioctls, @@ -733,6 +795,50 @@ return yield; +/* ----------------------------------------------------------------------- */ + +/*********************************************************** +* DNS Resolver Base Finder * +***********************************************************/ + +/* We need to be able to set options for the system resolver(5), historically +made available as _res. At least one OS (NetBSD) now no longer provides this +directly, instead making you call a function per thread to get a handle. +Other OSs handle thread-safe resolver differently, in ways which fail if the +programmer creates their own structs. */ + +#if !defined(OS_GET_DNS_RESOLVER_RES) && !defined(COMPILE_UTILITY) + +#include + +/* confirmed that res_state is typedef'd as a struct* on BSD and Linux, will +find out how unportable it is on other OSes, but most resolver implementations +should be descended from ISC's bind. + +Linux and BSD do: + define _res (*__res_state()) +identically. We just can't rely on __foo functions. It's surprising that use +of _res has been as portable as it has, for so long. + +So, since _res works everywhere, and everything can decode the struct, I'm +going to gamble that res_state is a typedef everywhere and use that as the +return type. +*/ + +res_state +os_get_dns_resolver_res(void) +{ + return &_res; +} + +#endif /* OS_GET_DNS_RESOLVER_RES */ + + +/* ----------------------------------------------------------------------- */ + + + + /************************************************* **************************************************