Currently, nfs clients can not cross server filesystems boundaries
even if the server filesystem is shared/visible to the client.
However, automounter could trigger mount points as if it could.
We need a complete story for this.
Example:
hypermedia# share
- /export sec=sys,rw ""
- /export/home sec=krb5,rw ""
fileset1# mount hypermedia:/export /mnt
fileset1# ls /mnt/home
(can not see contents in /mnt/home)
fileset1# cd /net/hypermedia/export
fileset1# ls home
fileset1.test foo lost+found
(has access to hypermedia:/export/home)
SRVSTUB and sv_savesec/secinfo_restore() are used to
work around this issue. Once we have the clients
mirror-mount the server filesystem and be able to
walk down the visible fs tree, we can remove
SRVSTUB and sv_savesec/secinfo_restore() code.