* [PATCH] auditctl -l listing with correct operators
@ 2006-05-17 19:07 Michael C Thompson
2006-05-17 19:14 ` Michael C Thompson
2006-05-18 21:25 ` Steve Grubb
0 siblings, 2 replies; 4+ messages in thread
From: Michael C Thompson @ 2006-05-17 19:07 UTC (permalink / raw)
To: Linux Audit, Steve Grubb
With the current version of audit, auditctl -l only prints an equal, not
equal operator when it displays rules, while the rules in the kernel are
operating correctly, this is most an inconvenience, since is not
possible to tell what rules are really in the kernel.
The problem lies in the audit_print_reply logic not detecting the type
of the message (either AUDIT_LIST or AUDIT_LIST_RULE).
Below is a patch which adds this detection.
Thanks,
Mike
----
Signed-off-by: Michael Thompson <mcthomps@us.ibm.com>
--- audit-1.2.2-orig/src/auditctl.c 2006-05-12 14:59:59.000000000 -0500
+++ audit-1.2.2/src/auditctl.c 2006-05-16 15:56:31.000000000 -0500
@@ -926,8 +926,14 @@ static int audit_print_reply(struct audi
for (i = 0; i < rep->rule->field_count; i++) {
int field = rep->rule->fields[i] &
~AUDIT_OPERATORS & ~AUDIT_NEGATE;
- int op = rep->rule->fields[i] &
- (AUDIT_OPERATORS | AUDIT_NEGATE);
+ int op;
+ if (rep->type == AUDIT_LIST_RULES) {
+ op = rep->ruledata->fieldflags[i] &
+ (AUDIT_OPERATORS | AUDIT_NEGATE);
+ } else {
+ op = rep->rule->fields[i] &
+ (AUDIT_OPERATORS | AUDIT_NEGATE);
+ }
const char *name = audit_field_to_name(field);
if (name) {
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] auditctl -l listing with correct operators
2006-05-17 19:07 [PATCH] auditctl -l listing with correct operators Michael C Thompson
@ 2006-05-17 19:14 ` Michael C Thompson
2006-05-18 21:11 ` Dustin Kirkland
2006-05-18 21:25 ` Steve Grubb
1 sibling, 1 reply; 4+ messages in thread
From: Michael C Thompson @ 2006-05-17 19:14 UTC (permalink / raw)
To: Michael C Thompson; +Cc: Linux Audit
Michael C Thompson wrote:
> With the current version of audit, auditctl -l only prints an equal, not
> equal operator when it displays rules, while the rules in the kernel are
> operating correctly, this is most an inconvenience, since is not
> possible to tell what rules are really in the kernel.
>
> The problem lies in the audit_print_reply logic not detecting the type
> of the message (either AUDIT_LIST or AUDIT_LIST_RULE).
>
> Below is a patch which adds this detection.
>
> Thanks,
> Mike
This thread is technically a repost, because I realized that hiding a
patch inside a big discussion thread is probably a no-no, and its just a
dumb idea to begin with. Oh well, live and be dumb.
Below is some testing between the original code and the patched code.
# auditctl -a entry,always -S chmod -F 'uid=100'
# auditctl -a entry,always -S chmod -F 'uid>200'
# auditctl -a entry,always -S chmod -F 'uid>=300'
# auditctl -a entry,always -S chmod -F 'uid!=400'
# auditctl -a entry,always -S chmod -F 'uid<500'
# auditctl -a entry,always -S chmod -F 'uid<=600'
# auditctl -l [ audit-1.2.2 auditctl pre-patch]
LIST_RULES: entry,always uid=100 (0x64) syscall=chmod
LIST_RULES: entry,always uid=200 (0xc8) syscall=chmod
LIST_RULES: entry,always uid=300 (0x12c) syscall=chmod
LIST_RULES: entry,always uid=400 (0x190) syscall=chmod
LIST_RULES: entry,always uid=500 (0x1f4) syscall=chmod
LIST_RULES: entry,always uid=600 (0x258) syscall=chmod
# auditctl -l [ audit-1.2.2 auditctl post-patch ]
LIST_RULES: entry,always uid=100 (0x64) syscall=chmod
LIST_RULES: entry,always uid>200 (0xc8) syscall=chmod
LIST_RULES: entry,always uid>=300 (0x12c) syscall=chmod
LIST_RULES: entry,always uid!=400 (0x190) syscall=chmod
LIST_RULES: entry,always uid<500 (0x1f4) syscall=chmod
LIST_RULES: entry,always uid<=600 (0x258) syscall=chmod
Thanks,
Mike
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] auditctl -l listing with correct operators
2006-05-17 19:14 ` Michael C Thompson
@ 2006-05-18 21:11 ` Dustin Kirkland
0 siblings, 0 replies; 4+ messages in thread
From: Dustin Kirkland @ 2006-05-18 21:11 UTC (permalink / raw)
To: Michael C Thompson; +Cc: Linux Audit
On 5/17/06, Michael C Thompson <thompsmc@us.ibm.com> wrote:
> Michael C Thompson wrote:
> > With the current version of audit, auditctl -l only prints an equal, not
> > equal operator when it displays rules, while the rules in the kernel are
> > operating correctly, this is most an inconvenience, since is not
> > possible to tell what rules are really in the kernel.
> >
> > The problem lies in the audit_print_reply logic not detecting the type
> > of the message (either AUDIT_LIST or AUDIT_LIST_RULE).
> >
> > Below is a patch which adds this detection.
> >
> > Thanks,
> > Mike
>
> This thread is technically a repost, because I realized that hiding a
> patch inside a big discussion thread is probably a no-no, and its just a
> dumb idea to begin with. Oh well, live and be dumb.
>
> Below is some testing between the original code and the patched code.
>
> # auditctl -a entry,always -S chmod -F 'uid=100'
> # auditctl -a entry,always -S chmod -F 'uid>200'
> # auditctl -a entry,always -S chmod -F 'uid>=300'
> # auditctl -a entry,always -S chmod -F 'uid!=400'
> # auditctl -a entry,always -S chmod -F 'uid<500'
> # auditctl -a entry,always -S chmod -F 'uid<=600'
>
> # auditctl -l [ audit-1.2.2 auditctl pre-patch]
> LIST_RULES: entry,always uid=100 (0x64) syscall=chmod
> LIST_RULES: entry,always uid=200 (0xc8) syscall=chmod
> LIST_RULES: entry,always uid=300 (0x12c) syscall=chmod
> LIST_RULES: entry,always uid=400 (0x190) syscall=chmod
> LIST_RULES: entry,always uid=500 (0x1f4) syscall=chmod
> LIST_RULES: entry,always uid=600 (0x258) syscall=chmod
>
>
> # auditctl -l [ audit-1.2.2 auditctl post-patch ]
> LIST_RULES: entry,always uid=100 (0x64) syscall=chmod
> LIST_RULES: entry,always uid>200 (0xc8) syscall=chmod
> LIST_RULES: entry,always uid>=300 (0x12c) syscall=chmod
> LIST_RULES: entry,always uid!=400 (0x190) syscall=chmod
> LIST_RULES: entry,always uid<500 (0x1f4) syscall=chmod
> LIST_RULES: entry,always uid<=600 (0x258) syscall=chmod
>
This looks good, Mike.
:-Dustin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] auditctl -l listing with correct operators
2006-05-17 19:07 [PATCH] auditctl -l listing with correct operators Michael C Thompson
2006-05-17 19:14 ` Michael C Thompson
@ 2006-05-18 21:25 ` Steve Grubb
1 sibling, 0 replies; 4+ messages in thread
From: Steve Grubb @ 2006-05-18 21:25 UTC (permalink / raw)
To: Michael C Thompson; +Cc: Linux Audit
On Wednesday 17 May 2006 15:07, Michael C Thompson wrote:
> Below is a patch which adds this detection.
Thanks. Applied.
-Steve
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-05-18 21:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-17 19:07 [PATCH] auditctl -l listing with correct operators Michael C Thompson
2006-05-17 19:14 ` Michael C Thompson
2006-05-18 21:11 ` Dustin Kirkland
2006-05-18 21:25 ` Steve Grubb
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox