]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
tcp_wrappers: Use getifaddrs(3) if it is available
authorChuck Lever <chuck.lever@oracle.com>
Fri, 15 Jan 2010 20:53:07 +0000 (15:53 -0500)
committerSteve Dickson <steved@redhat.com>
Sun, 17 Jan 2010 21:45:12 +0000 (16:45 -0500)
After glibc 2.3.3, getifaddrs(3) can return AF_INET6 addresses for
local network interfaces.  Using the library call is easier than
trying to update the open code in from_local(), and means we have
less to maintain in nfs-utils going forward.

And, since from_local() can now support IPv6, change its synopsis to
take a "struct sockaddr *" .

Note that the original code discovers local addresses once.  These
days, with wifi, DHCP, and NetworkManager, the local network
configuration can change dynamically over time.  So, call getifaddrs()
more often to ensure from_local() has up-to-date network configuration
information.

This implementation refreshes the list if from_local() has not been
called in the last second.  This is actually not terribly honerous.
check_default() invokes from_local() only when the remote host is not
in its access cache, or the access/deny files have changed.

So new hosts will cause a refresh, but previously seen hosts
(including localhost) should not.

On the other hand, it still may not be often enough.  After the first
call, if only previously seen hosts attempt to access our daemons,
from_local() would never be called, and the local list would never be
updated.  This might be possible during steady-state operation with
a small number of servers and clients.

It would also be nice if we could free the local interface address
list at shutdown time, but that would be a lot of trouble for little
gain.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
aclocal/ipv6.m4
configure.ac
support/include/tcpwrapper.h
support/misc/from_local.c
support/misc/tcpwrapper.c

index 2490f3d0ea4e5567d5ae38441d04b277b374605a..5ee8fb6e85f1c54e39d2c1016b0b0abfb2aa7ea6 100644 (file)
@@ -15,8 +15,8 @@ AC_DEFUN([AC_IPV6], [
     fi
 
     dnl IPv6-enabled networking functions required for IPv6
-    AC_CHECK_FUNCS([getnameinfo bindresvport_sa], ,
-                   [AC_MSG_ERROR([Missing functions needed for IPv6.])])
+    AC_CHECK_FUNCS([getifaddrs getnameinfo bindresvport_sa], ,
+                   [AC_MSG_ERROR([Missing library functions needed for IPv6.])])
 
     dnl Need to detect presence of IPv6 networking at run time via
     dnl getaddrinfo(3); old versions of glibc do not support ADDRCONFIG
index c77c5baaf72c3b36339d310f0fcfaedaa2614aca..1dc42496af2459904ca37458da43ae130ae35630 100644 (file)
@@ -330,7 +330,7 @@ AC_FUNC_STAT
 AC_FUNC_VPRINTF
 AC_CHECK_FUNCS([alarm atexit dup2 fdatasync ftruncate getcwd \
                gethostbyaddr gethostbyname gethostname getmntent \
-               getnameinfo getrpcbyname \
+               getnameinfo getrpcbyname getifaddrs \
                gettimeofday hasmntopt inet_ntoa innetgr memset mkdir pathconf \
                realpath rmdir select socket strcasecmp strchr strdup \
                strerror strrchr strtol strtoul sigprocmask])
index 98cf80686bc2a9d720d43bedd5946c517e2e7ad0..f1145bdfa77fa31d162266d1031b77ac4ef1f3a1 100644 (file)
@@ -11,7 +11,7 @@ extern int allow_severity;
 extern int deny_severity;
 
 extern int good_client(char *daemon, struct sockaddr_in *addr);
-extern int from_local (struct sockaddr_in *addr);
+extern int from_local(const struct sockaddr *sap);
 extern int check_default(char *daemon, struct sockaddr_in *addr,
                         u_long proc, u_long prog);
 
index 3f46b998742b5be9e60979351c50840ed6b32cec..e2de969266754f3f6ca39615c90cf511b69c28da 100644 (file)
@@ -43,6 +43,7 @@ static char sccsid[] = "@(#) from_local.c 1.3 96/05/31 15:52:57";
 
 #include <sys/types.h>
 #include <sys/socket.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <unistd.h>
 #include <netdb.h>
@@ -52,6 +53,7 @@ static char sccsid[] = "@(#) from_local.c 1.3 96/05/31 15:52:57";
 #include <stdlib.h>
 #include <string.h>
 
+#include "sockaddr.h"
 #include "tcpwrapper.h"
 #include "xlog.h"
 
@@ -60,11 +62,75 @@ static char sccsid[] = "@(#) from_local.c 1.3 96/05/31 15:52:57";
 #define FALSE  0
 #endif
 
- /*
-  * With virtual hosting, each hardware network interface can have multiple
-  * network addresses. On such machines the number of machine addresses can
-  * be surprisingly large.
-  */
+#ifdef HAVE_GETIFADDRS
+
+#include <ifaddrs.h>
+#include <time.h>
+
+/**
+ * from_local - determine whether request comes from the local system
+ * @sap: pointer to socket address to check
+ *
+ * With virtual hosting, each hardware network interface can have
+ * multiple network addresses. On such machines the number of machine
+ * addresses can be surprisingly large.
+ *
+ * We also expect the local network configuration to change over time,
+ * so call getifaddrs(3) more than once, but not too often.
+ *
+ * Returns TRUE if the sockaddr contains an address of one of the local
+ * network interfaces.  Otherwise FALSE is returned.
+ */
+int
+from_local(const struct sockaddr *sap)
+{
+       static struct ifaddrs *ifaddr = NULL;
+       static time_t last_update = 0;
+       struct ifaddrs *ifa;
+       unsigned int count;
+       time_t now;
+
+       if (time(&now) == ((time_t)-1)) {
+               xlog(L_ERROR, "%s: time(2): %m", __func__);
+
+               /* If we don't know what time it is, use the
+                * existing ifaddr list, if one exists  */
+               now = last_update;
+               if (ifaddr == NULL)
+                       now++;
+       }
+       if (now != last_update) {
+               xlog(D_GENERAL, "%s: updating local if addr list", __func__);
+
+               if (ifaddr)
+                       freeifaddrs(ifaddr);
+
+               if (getifaddrs(&ifaddr) == -1) {
+                       xlog(L_ERROR, "%s: getifaddrs(3): %m", __func__);
+                       return FALSE;
+               }
+
+               last_update = now;
+       }
+
+       count = 0;
+       for (ifa = ifaddr; ifa; ifa = ifa->ifa_next) {
+               if ((ifa->ifa_flags & IFF_UP) &&
+                   nfs_compare_sockaddr(sap, ifa->ifa_addr)) {
+                       xlog(D_GENERAL, "%s: incoming address matches "
+                                       "local interface address", __func__);
+                       return TRUE;
+               } else
+                       count++;
+       }
+
+       xlog(D_GENERAL, "%s: checked %u local if addrs; "
+                       "incoming address not found", __func__, count);
+       return FALSE;
+}
+
+#else  /* !HAVE_GETIFADDRS */
+
 static int num_local;
 static int num_addrs;
 static struct in_addr *addrs;
@@ -155,12 +221,26 @@ find_local(void)
     return (num_local);
 }
 
-/* from_local - determine whether request comes from the local system */
+/**
+ * from_local - determine whether request comes from the local system
+ * @sap: pointer to socket address to check
+ *
+ * With virtual hosting, each hardware network interface can have
+ * multiple network addresses. On such machines the number of machine
+ * addresses can be surprisingly large.
+ *
+ * Returns TRUE if the sockaddr contains an address of one of the local
+ * network interfaces.  Otherwise FALSE is returned.
+ */
 int
-from_local(struct sockaddr_in *addr)
+from_local(const struct sockaddr *sap)
 {
+    const struct sockaddr_in *addr = (const struct sockaddr_in *)sap;
     int     i;
 
+    if (sap->sa_family != AF_INET)
+       return (FALSE);
+
     if (addrs == 0 && find_local() == 0)
        xlog(L_ERROR, "Cannot find any active local network interfaces");
 
@@ -184,3 +264,5 @@ int main(void)
 }
 
 #endif /* TEST */
+
+#endif /* !HAVE_GETIFADDRS */
index 1da60204c541a3ee178d9a8ec869bc277387de93..af626adc5b5cdb430f20c92549a0c02a813823f4 100644 (file)
@@ -202,7 +202,7 @@ u_long  prog;
        if (acc && changed == 0)
                return (acc->access);
 
-       if (!(from_local(addr) || good_client(daemon, addr))) {
+       if (!(from_local((struct sockaddr *)addr) || good_client(daemon, addr))) {
                log_bad_host(addr, proc, prog);
                if (acc)
                        acc->access = FALSE;