]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
AUDIT: Fix AVC_USER message passing.
authorSteve Grubb <sgrubb@redhat.com>
Fri, 20 May 2005 23:18:37 +0000 (00:18 +0100)
committerDavid Woodhouse <dwmw2@shinybook.infradead.org>
Fri, 20 May 2005 23:18:37 +0000 (00:18 +0100)
The original AVC_USER message wasn't consolidated with the new range of
user messages. The attached patch fixes the kernel so the old messages
work again.

Signed-off-by: Steve Grubb <sgrubb@redhat.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
kernel/audit.c

index 41581413529cf41071ea062e8a7cd053fe77030d..5e72895f4826df7bc2d0b794037022600ed5d968 100644 (file)
@@ -354,6 +354,7 @@ static int audit_netlink_ok(kernel_cap_t eff_cap, u16 msg_type)
                if (!cap_raised(eff_cap, CAP_AUDIT_CONTROL))
                        err = -EPERM;
                break;
+       case AUDIT_USER:
        case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG:
                if (!cap_raised(eff_cap, CAP_AUDIT_WRITE))
                        err = -EPERM;
@@ -432,6 +433,7 @@ static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
                        audit_set_backlog_limit(status_get->backlog_limit,
                                                        loginuid);
                break;
+       case AUDIT_USER:
        case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG:
                ab = audit_log_start(NULL, msg_type);
                if (!ab)