diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | utils/mountd/auth.c | 6 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2000-11-27 Tobias Ringstrom <tori@tellus.mine.nu> + + * utils/mountd/auth.c (auth_authenticate): Log the bad path + warning. + 2000-11-24 Neil Brown <neilb@cse.unsw.edu.au> * support/nfs/exports.c (getexportent): Check for host name without option, diff --git a/utils/mountd/auth.c b/utils/mountd/auth.c index 2b4051e..6b6b7d7 100644 --- a/utils/mountd/auth.c +++ b/utils/mountd/auth.c @@ -158,7 +158,11 @@ auth_authenticate(char *what, struct sockaddr_in *caller, char *path) struct in_addr addr = caller->sin_addr; enum auth_error error; - if (path [0] != '/') return exp; + if (path [0] != '/') { + xlog(L_WARNING, "bad path in %s request from %s: \"%s\"", + what, inet_ntoa(addr), path); + return exp; + } strncpy(epath, path, sizeof (epath) - 1); epath[sizeof (epath) - 1] = '\0'; |