diff options
author | Chunwei Chen <[email protected]> | 2017-03-08 09:26:33 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-03-08 09:26:33 -0800 |
commit | 9b77d1c9585572b7ce3af204d40278752d5f5842 (patch) | |
tree | f833d83cdede67ba1a43f1729caa64ebf899a00a /lib | |
parent | 463009865fb4398b32a825d7c00cd8a942637fae (diff) |
Fix nfs snapdir automount
The current implementation for allowing nfs to access snapdir is very buggy.
It uses a special fh for snapdirs, such that the next time nfsd does
fh_to_dentry, it actually returns the root inode inside the snapshot. So nfsd
never knows it cross a mountpoint.
The problem is that nfsd will not hold a reference on the vfsmount of the
snapshot. This cause auto unmounter to unmount the snapshot even though nfs is
still holding dentries in it.
To fix this, we return the inode for the snapdirs themselves. However, we also
trigger automount upon fh_to_dentry, and return ESTALE so nfsd will revalidate
and see the mountpoint and do crossmnt.
Because nfsd will now be aware that these are different filesystems users
must add crossmnt to their export options to access snapshot directories.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Chunwei Chen <[email protected]>
Closes #3794
Closes #4716
Closes #5810
Closes #5833
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libshare/nfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libshare/nfs.c b/lib/libshare/nfs.c index 99dd7c1c4..0cfd42c1a 100644 --- a/lib/libshare/nfs.c +++ b/lib/libshare/nfs.c @@ -600,7 +600,7 @@ nfs_update_shareopts(sa_share_impl_t impl_share, const char *resource, old_shareopts = FSINFO(impl_share, nfs_fstype)->shareopts; if (strcmp(shareopts, "on") == 0) - shareopts = "rw"; + shareopts = "rw,crossmnt"; if (FSINFO(impl_share, nfs_fstype)->active && old_shareopts != NULL && strcmp(old_shareopts, shareopts) != 0) { |