projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69f287a
)
smack: Add missing logging in bidirectional UDS connect check
author
Rafal Krypa
<r.krypa@samsung.com>
Thu, 8 Jan 2015 17:52:45 +0000
(18:52 +0100)
committer
Casey Schaufler
<casey@schaufler-ca.com>
Wed, 21 Jan 2015 00:35:31 +0000
(16:35 -0800)
During UDS connection check, both sides are checked for write access to
the other side. But only the first check is performed with audit support.
The second one didn't produce any audit logs. This simple patch fixes that.
Signed-off-by: Rafal Krypa <r.krypa@samsung.com>
security/smack/smack_lsm.c
patch
|
blob
|
blame
|
history
diff --git
a/security/smack/smack_lsm.c
b/security/smack/smack_lsm.c
index 81b30e32c52674659a787d59e5a4b29552ada839..f60ded3a8da17861d0c88f80498829b88db02b47 100644
(file)
--- a/
security/smack/smack_lsm.c
+++ b/
security/smack/smack_lsm.c
@@
-3333,7
+3333,7
@@
static int smack_unix_stream_connect(struct sock *sock,
if (rc == 0) {
okp = osp->smk_out;
skp = ssp->smk_in;
- rc = smk_access(okp, skp, MAY_WRITE,
NULL
);
+ rc = smk_access(okp, skp, MAY_WRITE,
&ad
);
rc = smk_bu_note("UDS connect", okp, skp,
MAY_WRITE, rc);
}