projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81fabb9
)
BACKPORT: 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
Rafal Krypa
<r.krypa@samsung.com>
Thu, 3 Nov 2016 16:41:48 +0000
(17:41 +0100)
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>
(cherry-picked from upstream
d01757904d9deb619e23c9450218829943a46822
)
security/smack/smack_lsm.c
patch
|
blob
|
history
diff --git
a/security/smack/smack_lsm.c
b/security/smack/smack_lsm.c
index 730267bf36842993550eee264ef308c460a6be24..54756704dc4807af5446da98624b23807cb6ba97 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);
}
}