]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
libexport.a: Factor FQDN checking out of check_client()
authorChuck Lever <chuck.lever@oracle.com>
Thu, 8 Apr 2010 14:50:41 +0000 (10:50 -0400)
committerSteve Dickson <steved@redhat.com>
Thu, 8 Apr 2010 15:16:17 +0000 (11:16 -0400)
Clean up:  Factor the MCL_FQDN case out of check_client() and
client_checkaddr().  This will make it easier to add IPv6 support
eventually.

The logic in the new helper function will get a little more tangled
once IPv6 support is introduced.  Each slot in the clp address list
eventually may contain an address from either address family.

Note that the switch statement in client_checkaddr() is redundant,
since clp->cl_mtype is loop invariant.  This change makes FQDN client
checking more computationally efficient, at the cost of a few extra
lines of code.

This commit should not change code behavior in any way.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
support/export/client.c

index 5e937b0adac158b6e781182b409882d141526b7b..833f4a9d954320565fce0aa6c01a83da8fa8ebd0 100644 (file)
@@ -328,6 +328,28 @@ add_name(char *old, const char *add)
        return new;
 }
 
        return new;
 }
 
+/*
+ * Check each address listed in @hp against each address
+ * stored in @clp.  Return 1 if a match is found, otherwise
+ * zero.
+ */
+static int
+check_fqdn(const nfs_client *clp, const struct hostent *hp)
+{
+       struct in_addr addr;
+       char **ap;
+       int i;
+
+       for (ap = hp->h_addr_list; *ap; ap++) {
+               addr = *(struct in_addr *)*ap;
+
+               for (i = 0; i < clp->m_naddr; i++)
+                       if (clp->m_addrlist[i].s_addr == addr.s_addr)
+                               return 1;
+       }
+       return 0;
+}
+
 /*
  * Match a host (given its hostent record) to a client record. This
  * is usually called from mountd.
 /*
  * Match a host (given its hostent record) to a client record. This
  * is usually called from mountd.
@@ -341,6 +363,7 @@ client_check(nfs_client *clp, struct hostent *hp)
 
        switch (clp->m_type) {
        case MCL_FQDN:
 
        switch (clp->m_type) {
        case MCL_FQDN:
+               return check_fqdn(clp, hp);
        case MCL_SUBNETWORK:
                for (ap = hp->h_addr_list; *ap; ap++) {
                        if (client_checkaddr(clp, *(struct in_addr *) *ap))
        case MCL_SUBNETWORK:
                for (ap = hp->h_addr_list; *ap; ap++) {
                        if (client_checkaddr(clp, *(struct in_addr *) *ap))
@@ -411,15 +434,7 @@ client_check(nfs_client *clp, struct hostent *hp)
 static int
 client_checkaddr(nfs_client *clp, struct in_addr addr)
 {
 static int
 client_checkaddr(nfs_client *clp, struct in_addr addr)
 {
-       int     i;
-
        switch (clp->m_type) {
        switch (clp->m_type) {
-       case MCL_FQDN:
-               for (i = 0; i < clp->m_naddr; i++) {
-                       if (clp->m_addrlist[i].s_addr == addr.s_addr)
-                               return 1;
-               }
-               return 0;
        case MCL_SUBNETWORK:
                return !((clp->m_addrlist[0].s_addr ^ addr.s_addr)
                        & clp->m_addrlist[1].s_addr);
        case MCL_SUBNETWORK:
                return !((clp->m_addrlist[0].s_addr ^ addr.s_addr)
                        & clp->m_addrlist[1].s_addr);