提交 41757106 编写于 作者: S Steve Grubb 提交者: Al Viro

[PATCH] make set_loginuid obey audit_enabled

Hi,

I was doing some testing and noticed that when the audit system was disabled,
I was still getting messages about the loginuid being set. The following patch
makes audit_set_loginuid look at in_syscall to determine if it should create
an audit event. The loginuid will continue to be set as long as there is a context.
Signed-off-by: NSteve Grubb <sgrubb@redhat.com>
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 9c937dcc
...@@ -1290,18 +1290,23 @@ void auditsc_get_stamp(struct audit_context *ctx, ...@@ -1290,18 +1290,23 @@ void auditsc_get_stamp(struct audit_context *ctx,
*/ */
int audit_set_loginuid(struct task_struct *task, uid_t loginuid) int audit_set_loginuid(struct task_struct *task, uid_t loginuid)
{ {
if (task->audit_context) { struct audit_context *context = task->audit_context;
struct audit_buffer *ab;
if (context) {
ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN); /* Only log if audit is enabled */
if (ab) { if (context->in_syscall) {
audit_log_format(ab, "login pid=%d uid=%u " struct audit_buffer *ab;
"old auid=%u new auid=%u",
task->pid, task->uid, ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
task->audit_context->loginuid, loginuid); if (ab) {
audit_log_end(ab); audit_log_format(ab, "login pid=%d uid=%u "
"old auid=%u new auid=%u",
task->pid, task->uid,
context->loginuid, loginuid);
audit_log_end(ab);
}
} }
task->audit_context->loginuid = loginuid; context->loginuid = loginuid;
} }
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册