On Wed, 2008-04-09 at 12:08 -0400, Eric Paris wrote: > On Wed, 2008-04-09 at 11:25 -0400, Stephen Smalley wrote: > > On Wed, 2008-04-09 at 11:05 -0400, Eric Paris wrote: > > > When I wrote the new NFS/SELinux mount options code I was working under > > > the assumption that nfs_xdev_get_sb() would always give a new superblock > > > without the security struct initialized. I now have a report of a user > > > in which we hit BUG_ON(newsbsec->initialized) indicating to me that NFS > > > is reusing a superblock. The user says that he only has one mount to > > > the server in fstab, but doesn't know much about the server setup. Is > > > it expected that nfs_xdev_get_sb might reuse a superblock? If so maybe > > > we want this patch below? Instead of me BUGing every time selinux sees > > > a reused superblock we but only if the reused superblock has different > > > security options than the old one. I can't reproduce the issue so I > > > can't really test it.... > > > > > > comments? should NFS be reusing a superblock here? Can the NFS people > > > let me know how I can trigger it to make sure my patch fixes it? > > > > Looks to me like nfs_compare_mount_options() needs to also compare > > security options as part of the criteria for deciding when sharing is > > permissible. Otherwise, it seems quite possible that you'll still hit > > the new BUG. > > Making nfs_compare_mount_options() security aware is not the right > answer. Doing so means that we could end up with the same data 2 places > with different security options. This is just not what we want... > > I could make the _clone_ functions return -EINVAL instead of BUG but > since this is inside nfs_xdev_get_sb the user has no way to 'fix' it. > So that's not the right fix. (this is what I do with user controlled > mounts already which go through nfs_get_sb) > > I'm currently leaning towards changing all of this to > > if (newsbsec->initialized) > return; > > so the first sb wins and its mount options stick forever. At least we > know we did our best to maintain labeling of the data and nothing is > going to explode..... Yes, and that is consistent with how user-initiated mounts used to work, IIRC - first mount would determine the security options and all subsequent ones would just re-use them as the superblock security structure was already set up. -- Stephen Smalley National Security Agency -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html