BACKPORT: Smack: ignore null signal in smack_task_kill
authorRafal Krypa <r.krypa@samsung.com>
Mon, 4 Apr 2016 09:14:53 +0000 (11:14 +0200)
committerRafal Krypa <r.krypa@samsung.com>
Wed, 16 Nov 2016 12:40:59 +0000 (13:40 +0100)
Kill with signal number 0 is commonly used for checking PID existence.
Smack treated such cases like any other kills, although no signal is
actually delivered when sig == 0.

Checking permissions when sig == 0 didn't prevent an unprivileged caller
from learning whether PID exists or not. When it existed, kernel returned
EPERM, when it didn't - ESRCH. The only effect of policy check in such
case is noise in audit logs.

This change lets Smack silently ignore kill() invocations with sig == 0.

Signed-off-by: Rafal Krypa <r.krypa@samsung.com>
Acked-by: Casey Schaufler <casey@schaufler-ca.com>
(cherry-picked from upstream 18d872f77cecec2677a394170f26aaeb08562cee)

security/smack/smack_lsm.c

index 2e6c835c913f9e7101ae5b233957f8d38358d705..f99f2b2c766d4d02741eca53324ab5a102649613 100644 (file)
@@ -2232,6 +2232,9 @@ static int smack_task_kill(struct task_struct *p, struct siginfo *info,
        struct smack_known *tkp = smk_of_task_struct(p);
        int rc;
 
+       if (!sig)
+               return 0; /* null signal; existence test */
+
        smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
        smk_ad_setfield_u_tsk(&ad, p);
        /*