projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e95ef49
)
Fix a bidirectional UDS connect check typo
author
Lukasz Pawelczyk
<l.pawelczyk@samsung.com>
Fri, 29 Aug 2014 15:02:54 +0000
(17:02 +0200)
committer
Casey Schaufler
<casey@schaufler-ca.com>
Fri, 29 Aug 2014 17:10:47 +0000
(10:10 -0700)
The
54e70ec5eb090193b03e69d551fa6771a5a217c4
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: Lukasz Pawelczyk <l.pawelczyk@samsung.com>
security/smack/smack_lsm.c
patch
|
blob
|
history
diff --git
a/security/smack/smack_lsm.c
b/security/smack/smack_lsm.c
index 478d99e0a0ebb3d0544bc7b3b34a0787bd27b42e..00443a9039b829fdb6886a2611e7c28075c2a182 100644
(file)
--- a/
security/smack/smack_lsm.c
+++ b/
security/smack/smack_lsm.c
@@
-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,
o
kp->smk_known, MAY_WRITE, NULL);
- rc = smk_bu_note("UDS connect", okp,
o
kp->smk_known,
+ rc = smk_access(okp,
s
kp->smk_known, MAY_WRITE, NULL);
+ rc = smk_bu_note("UDS connect", okp,
s
kp->smk_known,
MAY_WRITE, rc);
}
}