diff options
author | Rafal Krypa <r.krypa@samsung.com> | 2015-01-08 18:52:45 +0100 |
---|---|---|
committer | Casey Schaufler <casey@schaufler-ca.com> | 2015-01-20 16:35:31 -0800 |
commit | 138a868f009bfca8633032cdb91e2b02e292658b (patch) | |
tree | 13ae57b0d8e77c1f11071b4a9c316ea76d8b23dc /security/smack | |
parent | 69f287ae6fc8357e0bc561353a2d585b89ee8cdc (diff) | |
download | linux-138a868f009bfca8633032cdb91e2b02e292658b.tar.gz linux-138a868f009bfca8633032cdb91e2b02e292658b.tar.bz2 linux-138a868f009bfca8633032cdb91e2b02e292658b.zip |
smack: Add missing logging in bidirectional UDS connect check
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>
Diffstat (limited to 'security/smack')
-rw-r--r-- | security/smack/smack_lsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 81b30e32c526..f60ded3a8da1 100644 --- 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); } |