]> git.decadent.org.uk Git - nfs-utils.git/commit
mountd: fix is_subdirectory to understand '/'
authorNeilBrown <neilb@suse.de>
Mon, 17 Dec 2012 21:21:15 +0000 (16:21 -0500)
committerSteve Dickson <steved@redhat.com>
Mon, 17 Dec 2012 21:33:17 +0000 (16:33 -0500)
commit8e2fb3fc8e46e61eeba7978a03c9fb50ff01b666
tree971cc1099bc6876e780b2598114ea55cdb9a9543
parentffe1b3f8483c96e85409e5ea5ed69ab98128a3a1
mountd: fix is_subdirectory to understand '/'

The is_subdirectory() function checks if a given 'child' is a
subdirectory of the given 'parent'.  However it always fails
if 'parent' == "/" (because 'child' doesn't begin with 'parent'
followed by "/").

So change is_subdirectory() to special-case "/".

subexport() also tests if one directory is a subdirectory of the
other, and contains the same bug.  So change it to use
is_subdirectory().

Finally, move is_subdirectory() and related path_matches() and
export_matches() earlier in the file to avoid a forward-reference.

This patch fixes a bug wherein if you export "/" with 'crossmnt', the
crossmnt flag is ineffective and you can only access the root
filesystem, not any descendants.

Acked-by: J. Bruce Fields <bfields@fieldses.org>
Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/mountd/cache.c