diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-05-06 12:26:27 (GMT) |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-06-20 09:25:22 (GMT) |
commit | 3c66251e573219a0532a5a07381b2f60a412d9eb (patch) | |
tree | b047b25d28ae1abe6bb81daba886e44e0a82094f /kernel | |
parent | f46038ff7d23ae092d61b366332c05aab8227b48 (diff) | |
download | linux-fsl-qoriq-3c66251e573219a0532a5a07381b2f60a412d9eb.tar.xz |
[PATCH] add filtering by ppid
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel')
-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 4fc3867..e455165 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; |