diff options
author | Al Viro | 2006-05-06 14:26:27 +0200 |
---|---|---|
committer | Al Viro | 2006-06-20 11:25:22 +0200 |
commit | 3c66251e573219a0532a5a07381b2f60a412d9eb (patch) | |
tree | b047b25d28ae1abe6bb81daba886e44e0a82094f /kernel/auditsc.c | |
parent | [PATCH] log ppid (diff) | |
download | kernel-qcow2-linux-3c66251e573219a0532a5a07381b2f60a412d9eb.tar.gz kernel-qcow2-linux-3c66251e573219a0532a5a07381b2f60a412d9eb.tar.xz kernel-qcow2-linux-3c66251e573219a0532a5a07381b2f60a412d9eb.zip |
[PATCH] add filtering by ppid
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r-- | kernel/auditsc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 4fc3867fa25a..e4551659ad79 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c @@ -188,6 +188,10 @@ static int audit_filter_rules(struct task_struct *tsk, case AUDIT_PID: result = audit_comparator(tsk->pid, f->op, f->val); break; + case AUDIT_PPID: + if (ctx) + result = audit_comparator(ctx->ppid, f->op, f->val); + break; case AUDIT_UID: result = audit_comparator(tsk->uid, f->op, f->val); break; |