diff options
Diffstat (limited to 'security/selinux/nlmsgtab.c')
-rw-r--r-- | security/selinux/nlmsgtab.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/security/selinux/nlmsgtab.c b/security/selinux/nlmsgtab.c index 69b9329b2054..d7c0e912c5f3 100644 --- a/security/selinux/nlmsgtab.c +++ b/security/selinux/nlmsgtab.c | |||
@@ -145,8 +145,10 @@ int selinux_nlmsg_lookup(u16 sclass, u16 nlmsg_type, u32 *perm) | |||
145 | break; | 145 | break; |
146 | 146 | ||
147 | case SECCLASS_NETLINK_AUDIT_SOCKET: | 147 | case SECCLASS_NETLINK_AUDIT_SOCKET: |
148 | if (nlmsg_type >= AUDIT_FIRST_USER_MSG && | 148 | if ((nlmsg_type >= AUDIT_FIRST_USER_MSG && |
149 | nlmsg_type <= AUDIT_LAST_USER_MSG) { | 149 | nlmsg_type <= AUDIT_LAST_USER_MSG) || |
150 | (nlmsg_type >= AUDIT_FIRST_USER_MSG2 && | ||
151 | nlmsg_type <= AUDIT_LAST_USER_MSG2)) { | ||
150 | *perm = NETLINK_AUDIT_SOCKET__NLMSG_RELAY; | 152 | *perm = NETLINK_AUDIT_SOCKET__NLMSG_RELAY; |
151 | } else { | 153 | } else { |
152 | err = nlmsg_perm(nlmsg_type, perm, nlmsg_audit_perms, | 154 | err = nlmsg_perm(nlmsg_type, perm, nlmsg_audit_perms, |