]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
Security: add get, set, and cloning of superblock security information
authorEric Paris <eparis@redhat.com>
Fri, 30 Nov 2007 18:00:35 +0000 (13:00 -0500)
committerJames Morris <jmorris@namei.org>
Fri, 25 Jan 2008 00:29:46 +0000 (11:29 +1100)
commitc9180a57a9ab2d5525faf8815a332364ee9e89b7
treec677ec33735f3529d478a2b71fcc732d4fe59adf
parent19c5fc198c369bb00f3ed9716ef40648865d8d94
Security: add get, set, and cloning of superblock security information

Adds security_get_sb_mnt_opts, security_set_sb_mnt_opts, and
security_clont_sb_mnt_opts to the LSM and to SELinux.  This will allow
filesystems to directly own and control all of their mount options if they
so choose.  This interface deals only with option identifiers and strings so
it should generic enough for any LSM which may come in the future.

Filesystems which pass text mount data around in the kernel (almost all of
them) need not currently make use of this interface when dealing with
SELinux since it will still parse those strings as it always has.  I assume
future LSM's would do the same.  NFS is the primary FS which does not use
text mount data and thus must make use of this interface.

An LSM would need to implement these functions only if they had mount time
options, such as selinux has context= or fscontext=.  If the LSM has no
mount time options they could simply not implement and let the dummy ops
take care of things.

An LSM other than SELinux would need to define new option numbers in
security.h and any FS which decides to own there own security options would
need to be patched to use this new interface for every possible LSM.  This
is because it was stated to me very clearly that LSM's should not attempt to
understand FS mount data and the burdon to understand security should be in
the FS which owns the options.

Signed-off-by: Eric Paris <eparis@redhat.com>
Acked-by: Stephen D. Smalley <sds@tycho.nsa.gov>
Signed-off-by: James Morris <jmorris@namei.org>
include/linux/security.h
security/dummy.c
security/security.c
security/selinux/hooks.c
security/selinux/include/objsec.h