Commit d0175790 authored by Lukasz Pawelczyk's avatar Lukasz Pawelczyk Committed by Casey Schaufler

Fix a bidirectional UDS connect check typo

The 54e70ec5 commit introduced a
bidirectional check that should have checked for mutual WRITE access
between two labels. Due to a typo the second check was incorrect.
Signed-off-by: default avatarLukasz Pawelczyk <l.pawelczyk@samsung.com>
parent e95ef49b
......@@ -3302,8 +3302,8 @@ static int smack_unix_stream_connect(struct sock *sock,
rc = smk_bu_note("UDS connect", skp, okp->smk_known,
MAY_WRITE, rc);
if (rc == 0) {
rc = smk_access(okp, okp->smk_known, MAY_WRITE, NULL);
rc = smk_bu_note("UDS connect", okp, okp->smk_known,
rc = smk_access(okp, skp->smk_known, MAY_WRITE, NULL);
rc = smk_bu_note("UDS connect", okp, skp->smk_known,
MAY_WRITE, rc);
}
}
......
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