]> git.baikalelectronics.ru Git - kernel.git/commit
selinux: fix missing dput() before selinuxfs unmount
authorStephen Smalley <sds@tycho.nsa.gov>
Mon, 9 Apr 2018 18:36:05 +0000 (14:36 -0400)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 9 Apr 2018 18:52:56 +0000 (11:52 -0700)
commita7848498e1541dd160f39cce3931090d78bfa74f
treeb9c6028f1a132ec509c805eb63d8f16afc776e82
parentd770b17983428a4bc66f55455af1fed3ca956f4d
selinux: fix missing dput() before selinuxfs unmount

Commit 4ee632d1562f ("selinux: wrap selinuxfs state") triggers a BUG
when SELinux is runtime-disabled (i.e. systemd or equivalent disables
SELinux before initial policy load via /sys/fs/selinux/disable based on
/etc/selinux/config SELINUX=disabled).

This does not manifest if SELinux is disabled via kernel command line
argument or if SELinux is enabled (permissive or enforcing).

Before:
  SELinux:  Disabled at runtime.
  BUG: Dentry 000000006d77e5c7{i=17,n=null}  still in use (1) [unmount of selinuxfs selinuxfs]

After:
  SELinux:  Disabled at runtime.

Fixes: 4ee632d1562f ("selinux: wrap selinuxfs state")
Reported-by: Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp>
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
security/selinux/selinuxfs.c