X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=utils%2Fmountd%2Fauth.c;h=330cab531ea5b7832c987b8824b3200f392650a7;hp=688bf78411808cff236c67415e402bf12dd1d479;hb=2a23164bf5283df1ff60d8b678ac12e2e3883350;hpb=236025253c6ec534cd816390464435ec18c499f7 diff --git a/utils/mountd/auth.c b/utils/mountd/auth.c index 688bf78..330cab5 100644 --- a/utils/mountd/auth.c +++ b/utils/mountd/auth.c @@ -10,10 +10,12 @@ #include #endif +#include #include #include #include #include +#include #include #include "sockaddr.h" @@ -21,7 +23,6 @@ #include "nfslib.h" #include "exportfs.h" #include "mountd.h" -#include "xmalloc.h" #include "v4root.h" enum auth_error @@ -112,15 +113,23 @@ auth_reload() return counter; } +static char *get_client_ipaddr_name(const struct sockaddr *caller) +{ + char buf[INET6_ADDRSTRLEN + 1]; + + buf[0] = '$'; + host_ntop(caller, buf + 1, sizeof(buf) - 1); + return strdup(buf); +} + static char * get_client_hostname(const struct sockaddr *caller, struct addrinfo *ai, enum auth_error *error) { - char buf[INET6_ADDRSTRLEN]; char *n; if (use_ipaddr) - return strdup(host_ntop(caller, buf, sizeof(buf))); + return get_client_ipaddr_name(caller); n = client_compose(ai); *error = unknown_host; if (!n) @@ -143,7 +152,7 @@ bool namelist_client_matches(nfs_export *exp, char *dom) bool client_matches(nfs_export *exp, char *dom, struct addrinfo *ai) { - if (use_ipaddr) + if (is_ipaddr_client(dom)) return ipaddr_client_matches(exp, ai); return namelist_client_matches(exp, dom); }