OSDN Git Service

Merge tag 'blob-stacking-security-next' of https://git.kernel.org/pub/scm/linux/kerne...
authorJames Morris <james.morris@microsoft.com>
Thu, 10 Jan 2019 19:42:58 +0000 (11:42 -0800)
committerJames Morris <james.morris@microsoft.com>
Thu, 10 Jan 2019 19:42:58 +0000 (11:42 -0800)
commit2233975cd7927672525361c4c6eebc0b8d018a74
tree94817828eb739a1ac2a659d73baf2d633b07c0ea
parent49e41801b335f64610bbfd23e8f2bbaf34d46276
parenta5e2fe7ede1268d2f80fe49ca1f717d0e3750995
Merge tag 'blob-stacking-security-next' of https://git./linux/kernel/git/kees/linux into next-general

LSM: Module stacking for SARA and Landlock

The combined series of LSM refactoring and addition of blob-sharing for
SARA and Landlock.

From Casey:

v5: Include Kees Cook's rework of the lsm command
    line interface.
v4: Finer granularity in the patches and other
    cleanups suggested by Kees Cook.
    Removed dead code created by the removal of SELinux
    credential blob poisoning.
v3: Add ipc blob for SARA and task blob for Landlock.
    Removing the SELinux cred blob pointer poisoning
    results selinux_is_enabled() being unused, so it and
    all it's overhead has been removed.
    Broke up the cred infrastructure patch.
v2: Reduce the patchset to what is required to support
    the proposed SARA and LandLock security modules

The SARA security module is intended to be used
in conjunction with other security modules. It requires
state to be maintained for the credential, which
in turn requires a mechanism for sharing the credential
security blob. It also uses the ipc security blob. The
module also requires mechanism for user space manipulation
of the credential information, hence an additional
subdirectory in /proc/.../attr.

The LandLock security module provides user configurable
policy in the secmark mechanism. It requires data in
the credential, file, inode and task security blobs. For
this to be used along side the existing "major" security
modules mechanism for sharing these blobs are provided.

A side effect of providing sharing of the crendential
security blob is that the TOMOYO module can be used at
the same time as the other "major" modules.

The mechanism for configuring which security modules are
enabled has to change when stacking in enabled. Any
module that uses just the security blobs that are shared
can be selected. Additionally, one other "major" module
can be selected.

The security module stacking issues around networking and
IPC are not addressed here as they are beyond what is
required for TOMOYO, SARA and LandLock.