]> Pileus Git - ~andy/linux/commitdiff
audit: remove CONFIG_AUDIT_LOGINUID_IMMUTABLE
authorEric Paris <eparis@redhat.com>
Fri, 24 May 2013 13:39:29 +0000 (09:39 -0400)
committerEric Paris <eparis@redhat.com>
Tue, 5 Nov 2013 16:08:01 +0000 (11:08 -0500)
After trying to use this feature in Fedora we found the hard coding
policy like this into the kernel was a bad idea.  Surprise surprise.
We ran into these problems because it was impossible to launch a
container as a logged in user and run a login daemon inside that container.
This reverts back to the old behavior before this option was added.  The
option will be re-added in a userspace selectable manor such that
userspace can choose when it is and when it is not appropriate.

Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
Signed-off-by: Eric Paris <eparis@redhat.com>
init/Kconfig
kernel/auditsc.c

index fed81b576f29ad8003c48ed293bb9cd42bd95922..18a98c893d0783d59618f232356dc4be4e011058 100644 (file)
@@ -301,20 +301,6 @@ config AUDIT_TREE
        depends on AUDITSYSCALL
        select FSNOTIFY
 
-config AUDIT_LOGINUID_IMMUTABLE
-       bool "Make audit loginuid immutable"
-       depends on AUDIT
-       help
-         The config option toggles if a task setting its loginuid requires
-         CAP_SYS_AUDITCONTROL or if that task should require no special permissions
-         but should instead only allow setting its loginuid if it was never
-         previously set.  On systems which use systemd or a similar central
-         process to restart login services this should be set to true.  On older
-         systems in which an admin would typically have to directly stop and
-         start processes this should be set to false.  Setting this to true allows
-         one to drop potentially dangerous capabilites from the login tasks,
-         but may not be backwards compatible with older init systems.
-
 source "kernel/irq/Kconfig"
 source "kernel/time/Kconfig"
 
index 72684679e8bdd133f8f7e1091ee4af934445439e..b55788bf1607ee4f410486d20860583378691f05 100644 (file)
@@ -1968,15 +1968,13 @@ static atomic_t session_id = ATOMIC_INIT(0);
 
 static int audit_set_loginuid_perm(kuid_t loginuid)
 {
-#ifdef CONFIG_AUDIT_LOGINUID_IMMUTABLE
        /* if we are unset, we don't need privs */
        if (!audit_loginuid_set(current))
                return 0;
-#else  /* CONFIG_AUDIT_LOGINUID_IMMUTABLE */
-       if (capable(CAP_AUDIT_CONTROL))
-               return 0;
-#endif /* CONFIG_AUDIT_LOGINUID_IMMUTABLE */
-       return -EPERM;
+       /* it is set, you need permission */
+       if (!capable(CAP_AUDIT_CONTROL))
+               return -EPERM;
+       return 0;
 }
 
 static void audit_log_set_loginuid(kuid_t koldloginuid, kuid_t kloginuid,