提交 5b713886 编写于 作者: O Ondrej Mosnáček 提交者: Paul Moore

audit: Fix wrong task in comparison of session ID

The audit_filter_rules() function in auditsc.c compared the session ID
with the credentials of the current task, while it should use the
credentials of the task given to audit_filter_rules() as a parameter
(tsk).

GitHub issue:
https://github.com/linux-audit/audit-kernel/issues/82

Fixes: 8fae4770 ("audit: add support for session ID user filter")
Signed-off-by: NOndrej Mosnacek <omosnace@redhat.com>
Reviewed-by: NRichard Guy Briggs <rgb@redhat.com>
[PM: not user visible, dropped stable]
Signed-off-by: NPaul Moore <paul@paul-moore.com>
上级 5c5b8d8b
......@@ -517,7 +517,7 @@ static int audit_filter_rules(struct task_struct *tsk,
result = audit_gid_comparator(cred->fsgid, f->op, f->gid);
break;
case AUDIT_SESSIONID:
sessionid = audit_get_sessionid(current);
sessionid = audit_get_sessionid(tsk);
result = audit_comparator(sessionid, f->op, f->val);
break;
case AUDIT_PERS:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册