Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 286067
b: refs/heads/master
c: b34b039
h: refs/heads/master
i:
  286065: 98988e8
  286063: 873641b
v: v3
  • Loading branch information
Eric Paris authored and Al Viro committed Jan 17, 2012
1 parent afcad2d commit 23edb97
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 02d86a568c6d2d335256864451ac8ce781bc5652
refs/heads/master: b34b039324bf081554ee8678f9b8c5d937e5206c
50 changes: 39 additions & 11 deletions trunk/kernel/auditsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,25 +463,53 @@ static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
return 0;
}

static int audit_compare_id(uid_t uid1,
struct audit_names *name,
unsigned long name_offset,
struct audit_field *f,
struct audit_context *ctx)
{
struct audit_names *n;
unsigned long addr;
uid_t uid2;
int rc;

if (name) {
addr = (unsigned long)name;
addr += name_offset;

uid2 = *(uid_t *)addr;
rc = audit_comparator(uid1, f->op, uid2);
if (rc)
return rc;
}

if (ctx) {
list_for_each_entry(n, &ctx->names_list, list) {
addr = (unsigned long)n;
addr += name_offset;

uid2 = *(uid_t *)addr;

rc = audit_comparator(uid1, f->op, uid2);
if (rc)
return rc;
}
}
return 0;
}

static int audit_field_compare(struct task_struct *tsk,
const struct cred *cred,
struct audit_field *f,
struct audit_context *ctx,
struct audit_names *name)
{
struct audit_names *n;

switch (f->val) {
case AUDIT_COMPARE_UID_TO_OBJ_UID:
if (name) {
return audit_comparator(cred->uid, f->op, name->uid);
} else if (ctx) {
list_for_each_entry(n, &ctx->names_list, list) {
if (audit_comparator(cred->uid, f->op, n->uid))
return 1;
}
}
break;
return audit_compare_id(cred->uid,
name, offsetof(struct audit_names, uid),
f, ctx);
default:
WARN(1, "Missing AUDIT_COMPARE define. Report as a bug\n");
return 0;
Expand Down

0 comments on commit 23edb97

Please sign in to comment.