X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fexport%2Fclient.c;h=a89142de2e1cc11f173ab78e39dc5bc70251c9c4;hp=21001ce282dd85ecbe038fa0d53b98ac5e55a043;hb=03fc34b23c2bff48f54c2d889d7851a31fb64a3d;hpb=1bb84a09ff58d1314826945db2f3f1f63015e263 diff --git a/support/export/client.c b/support/export/client.c index 21001ce..a89142d 100644 --- a/support/export/client.c +++ b/support/export/client.c @@ -86,10 +86,8 @@ out_badprefix: static int init_subnetwork(nfs_client *clp) { - struct sockaddr_in sin = { - .sin_family = AF_INET, - }; static char slash32[] = "/32"; + struct addrinfo *ai; char *cp; cp = strchr(clp->m_hostname, '/'); @@ -97,9 +95,14 @@ init_subnetwork(nfs_client *clp) cp = slash32; *cp = '\0'; - sin.sin_addr.s_addr = inet_addr(clp->m_hostname); - set_addrlist_in(clp, 0, &sin); + ai = host_pton(clp->m_hostname); *cp = '/'; + if (ai == NULL) { + xlog(L_ERROR, "Invalid IP address %s", clp->m_hostname); + return false; + } + set_addrlist(clp, 0, ai->ai_addr); + freeaddrinfo(ai); return init_netmask(clp, cp); } @@ -602,7 +605,8 @@ client_check(const nfs_client *clp, const struct addrinfo *ai) int client_gettype(char *ident) { - char *sp; + struct addrinfo *ai; + char *sp; if (ident[0] == '\0' || strcmp(ident, "*")==0) return MCL_ANONYMOUS; @@ -622,12 +626,16 @@ client_gettype(char *ident) if (*sp == '\\' && sp[1]) sp++; } - /* check for N.N.N.N */ - sp = ident; - if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN; - sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN; - sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN; - sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '\0') return MCL_FQDN; - /* we lie here a bit. but technically N.N.N.N == N.N.N.N/32 :) */ - return MCL_SUBNETWORK; + + /* + * Treat unadorned IP addresses as MCL_SUBNETWORK. + * Everything else is MCL_FQDN. + */ + ai = host_pton(ident); + if (ai != NULL) { + freeaddrinfo(ai); + return MCL_SUBNETWORK; + } + + return MCL_FQDN; }