X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fexport%2Fclient.c;h=42bf45ad5724468c0f23beb33e27c839da909957;hp=833f4a9d954320565fce0aa6c01a83da8fa8ebd0;hb=a4e3d5c53195c789ae26697a0b2ecdf05d76a85b;hpb=6abde64e6a605443dfc283ffb2642cb853f8b5b0 diff --git a/support/export/client.c b/support/export/client.c index 833f4a9..42bf45a 100644 --- a/support/export/client.c +++ b/support/export/client.c @@ -350,6 +350,27 @@ check_fqdn(const nfs_client *clp, const struct hostent *hp) return 0; } +/* + * Check each address listed in @hp against the subnetwork or + * host address stored in @clp. Return 1 if an address in @hp + * matches the host address stored in @clp, otherwise zero. + */ +static int +check_subnetwork(const nfs_client *clp, const struct hostent *hp) +{ + struct in_addr addr; + char **ap; + + for (ap = hp->h_addr_list; *ap; ap++) { + addr = *(struct in_addr *)*ap; + + if (!((clp->m_addrlist[0].s_addr ^ addr.s_addr) & + clp->m_addrlist[1].s_addr)) + return 1; + } + return 0; +} + /* * Match a host (given its hostent record) to a client record. This * is usually called from mountd. @@ -365,11 +386,7 @@ client_check(nfs_client *clp, struct hostent *hp) 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)) - return 1; - } - return 0; + return check_subnetwork(clp, hp); case MCL_WILDCARD: if (wildmat(hname, cname)) return 1; @@ -434,11 +451,6 @@ client_check(nfs_client *clp, struct hostent *hp) static int client_checkaddr(nfs_client *clp, struct in_addr addr) { - switch (clp->m_type) { - case MCL_SUBNETWORK: - return !((clp->m_addrlist[0].s_addr ^ addr.s_addr) - & clp->m_addrlist[1].s_addr); - } return 0; }