Commit 5951cab1 authored by Paul Moore's avatar Paul Moore Committed by David S. Miller

[XFRM]: Audit function arguments misordered

In several places the arguments to the xfrm_audit_start() function are
in the wrong order resulting in incorrect user information being
reported.  This patch corrects this by pacing the arguments in the
correct order.
Signed-off-by: default avatarPaul Moore <paul.moore@hp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f398035f
...@@ -2162,7 +2162,7 @@ xfrm_audit_policy_add(struct xfrm_policy *xp, int result, u32 auid, u32 sid) ...@@ -2162,7 +2162,7 @@ xfrm_audit_policy_add(struct xfrm_policy *xp, int result, u32 auid, u32 sid)
if (audit_enabled == 0) if (audit_enabled == 0)
return; return;
audit_buf = xfrm_audit_start(sid, auid); audit_buf = xfrm_audit_start(auid, sid);
if (audit_buf == NULL) if (audit_buf == NULL)
return; return;
audit_log_format(audit_buf, " op=SPD-add res=%u", result); audit_log_format(audit_buf, " op=SPD-add res=%u", result);
...@@ -2179,7 +2179,7 @@ xfrm_audit_policy_delete(struct xfrm_policy *xp, int result, u32 auid, u32 sid) ...@@ -2179,7 +2179,7 @@ xfrm_audit_policy_delete(struct xfrm_policy *xp, int result, u32 auid, u32 sid)
if (audit_enabled == 0) if (audit_enabled == 0)
return; return;
audit_buf = xfrm_audit_start(sid, auid); audit_buf = xfrm_audit_start(auid, sid);
if (audit_buf == NULL) if (audit_buf == NULL)
return; return;
audit_log_format(audit_buf, " op=SPD-delete res=%u", result); audit_log_format(audit_buf, " op=SPD-delete res=%u", result);
......
...@@ -2033,7 +2033,7 @@ xfrm_audit_state_add(struct xfrm_state *x, int result, u32 auid, u32 sid) ...@@ -2033,7 +2033,7 @@ xfrm_audit_state_add(struct xfrm_state *x, int result, u32 auid, u32 sid)
if (audit_enabled == 0) if (audit_enabled == 0)
return; return;
audit_buf = xfrm_audit_start(sid, auid); audit_buf = xfrm_audit_start(auid, sid);
if (audit_buf == NULL) if (audit_buf == NULL)
return; return;
audit_log_format(audit_buf, " op=SAD-add res=%u",result); audit_log_format(audit_buf, " op=SAD-add res=%u",result);
...@@ -2053,7 +2053,7 @@ xfrm_audit_state_delete(struct xfrm_state *x, int result, u32 auid, u32 sid) ...@@ -2053,7 +2053,7 @@ xfrm_audit_state_delete(struct xfrm_state *x, int result, u32 auid, u32 sid)
if (audit_enabled == 0) if (audit_enabled == 0)
return; return;
audit_buf = xfrm_audit_start(sid, auid); audit_buf = xfrm_audit_start(auid, sid);
if (audit_buf == NULL) if (audit_buf == NULL)
return; return;
audit_log_format(audit_buf, " op=SAD-delete res=%u",result); audit_log_format(audit_buf, " op=SAD-delete res=%u",result);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment